File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+ import { SvgIcon , SvgIconProps } from '@mui/material' ;
3+
4+ export const MergeOutlinedIcon : React . FC < SvgIconProps > = ( props ) => {
5+ return (
6+ < SvgIcon { ...props } >
7+ < path 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" />
8+ </ SvgIcon >
9+ ) ;
10+ } ;
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export * from './Logout';
105105export * from './Mendeley' ;
106106export * from './Menu' ;
107107export { default as MergeActionIcon } from './MergeActionIcon' ;
108+ export * from './MergeOutlinedIcon' ;
108109export * from './Meshery' ;
109110export * from './MesheryFilter' ;
110111export * from './MesheryOperator' ;
You can’t perform that action at this time.
0 commit comments