diff --git a/src/icons/BrushIcon/BrushIcon.tsx b/src/icons/BrushIcon/BrushIcon.tsx new file mode 100644 index 000000000..bf4b67a44 --- /dev/null +++ b/src/icons/BrushIcon/BrushIcon.tsx @@ -0,0 +1,23 @@ +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { IconProps } from '../types'; + +const BrushIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => ( + + + +); + +export default BrushIcon; diff --git a/src/icons/BrushIcon/index.ts b/src/icons/BrushIcon/index.ts new file mode 100644 index 000000000..20b351cd2 --- /dev/null +++ b/src/icons/BrushIcon/index.ts @@ -0,0 +1 @@ +export { default as BrushIcon } from './BrushIcon'; diff --git a/src/icons/index.ts b/src/icons/index.ts index 7fca8a010..387bbc777 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -15,6 +15,7 @@ export * from './Article'; export * from './Barchart'; export * from './Bell'; export * from './BuildRounded'; +export * from './BrushIcon'; export * from './Bus'; export * from './Cached'; export * from './Calculate';