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+ export const MergeOutlinedIcon = ( {
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+ fill = { fill }
15+ xmlns = "http://www.w3.org/2000/svg"
16+ viewBox = "0 0 24 24"
17+ { ...props }
18+ >
19+ < path
20+ d = "M6.41 21 5 19.59l4.83-4.83c.75-.75 1.17-1.77 1.17-2.83v-5.1L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83v5.1c0 1.06.42 2.08 1.17 2.83L19 19.59 17.59 21 12 15.41z"
21+ fill = { fill }
22+ />
23+ </ svg >
24+ ) ;
25+ } ;
26+ export default MergeOutlinedIcon ;
Original file line number Diff line number Diff line change 1+ export { default as MergeOutlinedIcon } from './MergeOutlinedIcon' ;
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ export * from './Logout';
117117export * from './Mendeley' ;
118118export * from './Menu' ;
119119export { default as MergeActionIcon } from './MergeActionIcon' ;
120+ export * from './MergeOutlined' ;
120121export * from './Meshery' ;
121122export * from './MesheryFilter' ;
122123export * from './MesheryOperator' ;
You can’t perform that action at this time.
0 commit comments