File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , KEPPEL_GREEN_FILL } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ export const MoreVertIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = KEPPEL_GREEN_FILL ,
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 = "more-vert-icon-svg"
17+ { ...props }
18+ >
19+
20+ < path
21+ d = "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"
22+ fill = { fill }
23+ />
24+ </ svg >
25+ ) ;
26+ } ;
27+
28+ export default MoreVertIcon ;
Original file line number Diff line number Diff line change 1+ export { default as MoreVertIcon } from './MoreVertIcon' ;
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ export * from './Lock';
8383export * from './Logout' ;
8484export * from './Mendeley' ;
8585export * from './Menu' ;
86+ export * from './MoreVert' ;
8687export * from './Meshery' ;
8788export * from './MesheryFilter' ;
8889export * from './MesheryOperator' ;
You can’t perform that action at this time.
0 commit comments