Skip to content

Commit 5c1349a

Browse files
committed
[Feature] Add MergeOutlinedIcon
Signed-off-by: Prarthana <226818177+prarii@users.noreply.github.com>
1 parent e0fc843 commit 5c1349a

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/icons/MergeOutlinedIcon.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ export * from './Logout';
105105
export * from './Mendeley';
106106
export * from './Menu';
107107
export { default as MergeActionIcon } from './MergeActionIcon';
108+
export * from './MergeOutlinedIcon';
108109
export * from './Meshery';
109110
export * from './MesheryFilter';
110111
export * from './MesheryOperator';

0 commit comments

Comments
 (0)