summaryrefslogtreecommitdiffstats
path: root/src/components/ui/icon/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/icon/index.tsx')
-rw-r--r--src/components/ui/icon/index.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/ui/icon/index.tsx b/src/components/ui/icon/index.tsx
index 5b432a194..04a00d0e0 100644
--- a/src/components/ui/icon/index.tsx
+++ b/src/components/ui/icon/index.tsx
@@ -5,18 +5,18 @@ import injectStyle, { WithStylesProps } from 'react-jss';
5 5
6import { Theme } from '../../../themes'; 6import { Theme } from '../../../themes';
7 7
8interface IProps extends WithStylesProps<typeof styles> {
9 icon: string;
10 size?: number;
11 className?: string;
12}
13
14const styles = (theme: Theme) => ({ 8const styles = (theme: Theme) => ({
15 icon: { 9 icon: {
16 fill: theme.colorText, 10 fill: theme.colorText,
17 }, 11 },
18}); 12});
19 13
14interface IProps extends WithStylesProps<typeof styles> {
15 icon: string;
16 size?: number;
17 className?: string;
18}
19
20class IconComponent extends Component<IProps> { 20class IconComponent extends Component<IProps> {
21 render(): ReactElement { 21 render(): ReactElement {
22 const { classes, icon, size = 1, className } = this.props; 22 const { classes, icon, size = 1, className } = this.props;