Skip to content
Snippets Groups Projects
Commit dcd2c136 authored by Cam Saül's avatar Cam Saül
Browse files

fix lint error :scream_cat:

parent 695163c8
Branches
Tags
No related merge requests found
import React, { Component, PropTypes } from "react";
import cx from "classnames";
import Icon from 'metabase/components/Icon.jsx'
/*
Creates a bordered container for an <Icon /> component
based on the <Icon /> component's size.
Creates a bordered container for an <Icon /> component
based on the <Icon /> component's size.
usage:
<IconBorder {...props} >
<Icon name={chevrondown} width={12} height={12} />
</IconBorder>
*/
usage:
<IconBorder {...props} >
<Icon name={chevrondown} width={12} height={12} />
</IconBorder>
*/
export default class IconBorder extends Component {
......@@ -46,7 +45,7 @@ export default class IconBorder extends Component {
return (
<div className={cx('flex layout-centered', className)} style={styles}>
{children}
{children}
</div>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment