From baaae12ac6ce505c53f30c877c11173aff3526d8 Mon Sep 17 00:00:00 2001 From: kishore08-07 Date: Mon, 16 Feb 2026 19:05:36 +0530 Subject: [PATCH] added verified icon Signed-off-by: kishore08-07 --- src/icons/Verified/VerifiedIcon.tsx | 24 ++++++++++++++++++++++++ src/icons/Verified/index.ts | 1 + src/icons/index.ts | 1 + 3 files changed, 26 insertions(+) create mode 100644 src/icons/Verified/VerifiedIcon.tsx create mode 100644 src/icons/Verified/index.ts diff --git a/src/icons/Verified/VerifiedIcon.tsx b/src/icons/Verified/VerifiedIcon.tsx new file mode 100644 index 00000000..5050eeb5 --- /dev/null +++ b/src/icons/Verified/VerifiedIcon.tsx @@ -0,0 +1,24 @@ +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const VerifiedIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; + +export default VerifiedIcon; diff --git a/src/icons/Verified/index.ts b/src/icons/Verified/index.ts new file mode 100644 index 00000000..83678b76 --- /dev/null +++ b/src/icons/Verified/index.ts @@ -0,0 +1 @@ +export * from './VerifiedIcon'; diff --git a/src/icons/index.ts b/src/icons/index.ts index 15d4e8bb..94a43366 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -143,6 +143,7 @@ export * from './Undeploy'; export * from './Undo'; export * from './Upgrade'; export * from './Validate'; +export * from './Verified'; export * from './View'; export * from './Visibility'; export * from './Visualizer';