From db70ba4b08ef73a84bd40154295050c3af6aebe5 Mon Sep 17 00:00:00 2001 From: Canbow Date: Tue, 3 Feb 2026 15:44:17 +0530 Subject: [PATCH] feat: add ArticleIcon Signed-off-by: Canbow --- src/icons/Article/ArticleIcon.tsx | 6 +++--- src/icons/index.ts | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/icons/Article/ArticleIcon.tsx b/src/icons/Article/ArticleIcon.tsx index 01de32647..3828cb626 100644 --- a/src/icons/Article/ArticleIcon.tsx +++ b/src/icons/Article/ArticleIcon.tsx @@ -1,10 +1,10 @@ -import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { DEFAULT_HEIGHT, DEFAULT_WIDTH ,KEPPEL_GREEN_FILL} from '../../constants/constants'; import { IconProps } from '../types'; export const ArticleIcon = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, - fill = DEFAULT_FILL_NONE, + fill = KEPPEL_GREEN_FILL, ...props }: IconProps): JSX.Element => { return ( @@ -17,7 +17,7 @@ export const ArticleIcon = ({ {...props} > diff --git a/src/icons/index.ts b/src/icons/index.ts index 47ac7acd4..741d1ad4b 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -5,6 +5,7 @@ export * from './Application'; export * from './ArrowBack'; export * from './ArrowCompress'; export * from './ArrowExpand'; +export *from './Article'; export * from './Bell'; export * from './Bus'; export * from './CatalogIcon'; @@ -130,4 +131,4 @@ export * from './View'; export * from './Visibility'; export * from './Visualizer'; export * from './Warning'; -export * from './Workspace'; +export * from './Workspace'; \ No newline at end of file