File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ import { DEFAULT_FILL_NONE , DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ export const VerifiedIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL_NONE ,
8+ ...props
9+ } : IconProps ) : JSX . Element => {
10+ return (
11+ < svg
12+ width = { width }
13+ height = { height }
14+ xmlns = "http://www.w3.org/2000/svg"
15+ viewBox = "0 0 24 24"
16+ data-testid = "verified-icon-svg"
17+ { ...props }
18+ >
19+ < path d = "m23 12-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69zm-12.91 4.72-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48z" fill = { fill } />
20+ </ svg >
21+ ) ;
22+ } ;
23+
24+ export default VerifiedIcon ;
Original file line number Diff line number Diff line change 1+ export * from './VerifiedIcon' ;
Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ export * from './Undeploy';
145145export * from './Undo' ;
146146export * from './Upgrade' ;
147147export * from './Validate' ;
148+ export * from './Verified' ;
148149export * from './View' ;
149150export * from './Visibility' ;
150151export * from './Visualizer' ;
You can’t perform that action at this time.
0 commit comments