Skip to content

Commit

Permalink
fix: listicon theme
Browse files Browse the repository at this point in the history
  • Loading branch information
rayan1810 committed Mar 3, 2021
1 parent e4ca3f5 commit a45f28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/primitives/List/ListIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IIconProps, default as Icon } from '../Icon';
import { useThemeProps } from '../../../hooks';

const ListIcon = React.memo((props: IIconProps) => {
const newProps = useThemeProps('List', props);
const newProps = useThemeProps('ListIcon', props);

return <Icon mr={2} {...newProps} />;
});
Expand Down

0 comments on commit a45f28f

Please sign in to comment.