Skip to content

Commit 8a1461d

Browse files
committed
[Feature] MergeOutlinedIcon - template fixed
Signed-off-by: Prarthana <226818177+prarii@users.noreply.github.com>
1 parent 28119ba commit 8a1461d

4 files changed

Lines changed: 27 additions & 11 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path
19+
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"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
};
25+
export default MergeOutlinedIcon;

src/icons/MergeOutlined/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as MergeOutlinedIcon } from './MergeOutlinedIcon';

src/icons/MergeOutlinedIcon.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/icons/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export * from './Logout';
105105
export * from './Mendeley';
106106
export * from './Menu';
107107
export { default as MergeActionIcon } from './MergeActionIcon';
108-
export * from './MergeOutlinedIcon';
108+
export * from './MergeOutlined';
109109
export * from './Meshery';
110110
export * from './MesheryFilter';
111111
export * from './MesheryOperator';

0 commit comments

Comments
 (0)