From eae270ae1726f60b0edd993b4ff58aa246787273 Mon Sep 17 00:00:00 2001 From: Navneet Anand Date: Thu, 7 May 2026 03:09:21 +0530 Subject: [PATCH 1/4] feat: Add BrushIcon to Icon Collection Signed-off-by: Navneet Anand --- src/icons/BrushIcon/BrushIcon.tsx | 23 +++++++++++++++++++++++ src/icons/BrushIcon/index.ts | 1 + 2 files changed, 24 insertions(+) create mode 100644 src/icons/BrushIcon/BrushIcon.tsx create mode 100644 src/icons/BrushIcon/index.ts diff --git a/src/icons/BrushIcon/BrushIcon.tsx b/src/icons/BrushIcon/BrushIcon.tsx new file mode 100644 index 000000000..4d7a63a84 --- /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'; From 51f2cd97f426ed04c96f5b9740e2fdee506a35ce Mon Sep 17 00:00:00 2001 From: Navneet Anand Date: Thu, 7 May 2026 03:18:03 +0530 Subject: [PATCH 2/4] fix: Use correct Brush icon SVG path Signed-off-by: Navneet Anand --- src/icons/BrushIcon/BrushIcon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icons/BrushIcon/BrushIcon.tsx b/src/icons/BrushIcon/BrushIcon.tsx index 4d7a63a84..bcbe45a65 100644 --- a/src/icons/BrushIcon/BrushIcon.tsx +++ b/src/icons/BrushIcon/BrushIcon.tsx @@ -16,7 +16,7 @@ const BrushIcon = ({ xmlns="http://www.w3.org/2000/svg" {...props} > - + ); From 6cf9f24194736bab80c84de772933e29c91c7025 Mon Sep 17 00:00:00 2001 From: Navneet Anand Date: Thu, 7 May 2026 07:58:30 +0530 Subject: [PATCH 3/4] fix: Finalize BrushIcon export and SVG path Signed-off-by: Navneet Anand --- src/icons/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/icons/index.ts b/src/icons/index.ts index 4c04716a4..315b6a03c 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'; From b94005454e529c98495e1615489e755869f3428c Mon Sep 17 00:00:00 2001 From: Navneet Anand Date: Fri, 8 May 2026 01:03:06 +0530 Subject: [PATCH 4/4] fix: Update BrushIcon SVG path Signed-off-by: Navneet Anand --- src/icons/BrushIcon/BrushIcon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icons/BrushIcon/BrushIcon.tsx b/src/icons/BrushIcon/BrushIcon.tsx index bcbe45a65..bf4b67a44 100644 --- a/src/icons/BrushIcon/BrushIcon.tsx +++ b/src/icons/BrushIcon/BrushIcon.tsx @@ -16,7 +16,7 @@ const BrushIcon = ({ xmlns="http://www.w3.org/2000/svg" {...props} > - + );