From de21673b5e3d76dc1605171f2e628c9f89b39b8f Mon Sep 17 00:00:00 2001 From: Bhumika Garg Date: Fri, 13 Feb 2026 22:32:38 +0530 Subject: [PATCH] add Group Icon Signed-off-by: Bhumika Garg --- src/icons/Group/GroupIcon.tsx | 25 +++++++++++++++++++++++++ src/icons/Group/index.ts | 1 + src/icons/index.ts | 1 + 3 files changed, 27 insertions(+) create mode 100644 src/icons/Group/GroupIcon.tsx create mode 100644 src/icons/Group/index.ts diff --git a/src/icons/Group/GroupIcon.tsx b/src/icons/Group/GroupIcon.tsx new file mode 100644 index 000000000..c298631ab --- /dev/null +++ b/src/icons/Group/GroupIcon.tsx @@ -0,0 +1,25 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const GroupIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; +export default GroupIcon; diff --git a/src/icons/Group/index.ts b/src/icons/Group/index.ts new file mode 100644 index 000000000..06ccdbb42 --- /dev/null +++ b/src/icons/Group/index.ts @@ -0,0 +1 @@ +export { default as GroupIcon } from './GroupIcon'; \ No newline at end of file diff --git a/src/icons/index.ts b/src/icons/index.ts index 9ddd21a6f..627fc10df 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -74,6 +74,7 @@ export * from './GetStarted'; export * from './Github'; export * from './Google'; export * from './GridView'; +export * from './Group'; export * from './GroupAdd'; export * from './HelpIcon'; export * from './Idea';