File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { DEFAULT_HEIGHT , DEFAULT_WIDTH , DEFAULT_FILL_NONE } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ const MoreHorizIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL_NONE ,
8+ title,
9+ ...props
10+ } : IconProps ) : JSX . Element => {
11+ return (
12+ < svg
13+ width = { width }
14+ height = { height }
15+ xmlns = "http://www.w3.org/2000/svg"
16+ viewBox = "0 0 24 24"
17+ data-testid = "more-horiz-icon-svg"
18+ { ...props }
19+ >
20+ { title && < title > { title } </ title > }
21+ < path
22+ d = "M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
23+ fill = { fill }
24+ />
25+ </ svg >
26+ ) ;
27+ } ;
28+
29+ export default MoreHorizIcon ;
Original file line number Diff line number Diff line change 1+ export { default as MoreHorizIcon } from './MoreHorizIcon' ;
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ export * from './MesheryFilter';
116116export * from './MesheryOperator' ;
117117export * from './Mesh' ;
118118export { default as ModifiedApplicationFileIcon } from './ModifiedApplicationFileIcon' ;
119+ export * from './MoreHoriz' ;
119120export * from './MoreVert' ;
120121export * from './MoveFile' ;
121122export * from './Open' ;
You can’t perform that action at this time.
0 commit comments