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 3680931e..53d067a3 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -145,6 +145,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';