From c10ab2a2cfa1b959b4098ba072bc5470a6b71e97 Mon Sep 17 00:00:00 2001 From: Bhumika Garg Date: Sat, 14 Feb 2026 21:58:16 +0530 Subject: [PATCH 1/2] add CompareArrow Icon Signed-off-by: Bhumika Garg --- src/icons/CompareArrows/CompareArrowsIcon.tsx | 27 +++++++++++++++++++ src/icons/CompareArrows/index.ts | 1 + src/icons/index.ts | 1 + 3 files changed, 29 insertions(+) create mode 100644 src/icons/CompareArrows/CompareArrowsIcon.tsx create mode 100644 src/icons/CompareArrows/index.ts diff --git a/src/icons/CompareArrows/CompareArrowsIcon.tsx b/src/icons/CompareArrows/CompareArrowsIcon.tsx new file mode 100644 index 00000000..cd833da7 --- /dev/null +++ b/src/icons/CompareArrows/CompareArrowsIcon.tsx @@ -0,0 +1,27 @@ +import { DEFAULT_FILL, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const CompareArrowsIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; + +export default CompareArrowsIcon; diff --git a/src/icons/CompareArrows/index.ts b/src/icons/CompareArrows/index.ts new file mode 100644 index 00000000..c1482f46 --- /dev/null +++ b/src/icons/CompareArrows/index.ts @@ -0,0 +1 @@ +export { default as CompareArrowsIcon } from './CompareArrowsIcon'; \ No newline at end of file diff --git a/src/icons/index.ts b/src/icons/index.ts index 15d4e8bb..c9a8db1b 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -18,6 +18,7 @@ export * from './Close'; export * from './Cloud'; export * from './CollapseAll'; export * from './Column'; +export * from './CompareArrows'; export * from './Component'; export * from './Configuration'; export * from './ContentFilter'; From 2f44ef36024d034be6b581cc02c6e101f682af18 Mon Sep 17 00:00:00 2001 From: Bhumika Garg Date: Tue, 17 Feb 2026 23:51:34 +0530 Subject: [PATCH 2/2] change to DEFAULT_FILL_NONE Signed-off-by: Bhumika Garg --- src/icons/CompareArrows/CompareArrowsIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/icons/CompareArrows/CompareArrowsIcon.tsx b/src/icons/CompareArrows/CompareArrowsIcon.tsx index cd833da7..87694065 100644 --- a/src/icons/CompareArrows/CompareArrowsIcon.tsx +++ b/src/icons/CompareArrows/CompareArrowsIcon.tsx @@ -1,10 +1,10 @@ -import { DEFAULT_FILL, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; import { IconProps } from '../types'; export const CompareArrowsIcon = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, - fill = DEFAULT_FILL, + fill = DEFAULT_FILL_NONE, ...props }: IconProps): JSX.Element => { return (