Skip to content

Commit 47c52d0

Browse files
committed
feat: add new meshery filter icon
Signed-off-by: Amit Amrutiya <amitamrutiya2210@gmail.com>
1 parent afc3aa5 commit 47c52d0

3 files changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { FC } from 'react';
2+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
3+
import { CustomIconProps } from '../types';
4+
5+
const MesheryFilterIcon: FC<CustomIconProps> = ({
6+
width = DEFAULT_WIDTH,
7+
height = DEFAULT_HEIGHT,
8+
primaryFill = '#654ff0',
9+
secondaryFill = '#ffffff',
10+
...props
11+
}) => {
12+
return (
13+
<svg
14+
xmlns="http://www.w3.org/2000/svg"
15+
width={width}
16+
height={height}
17+
viewBox="0 0 120 120"
18+
{...props}
19+
>
20+
<path
21+
fill={primaryFill}
22+
d="M 73.726562 0 C 73.726562 0.210938 73.726562 0.421875 73.726562 0.648438 C 73.726562 8.246094 67.566406 14.40625 59.964844 14.40625 C 52.367188 14.40625 46.207031 8.246094 46.207031 0.648438 C 46.207031 0.421875 46.207031 0.210938 46.207031 0 L 0 0 L 0 120 L 120 120 L 120 0 Z M 73.726562 0 "
23+
/>
24+
<path
25+
fill={secondaryFill}
26+
d="M 27.875 64.667969 L 35.828125 64.667969 L 41.257812 93.585938 L 41.355469 93.585938 L 47.878906 64.667969 L 55.320312 64.667969 L 61.214844 93.9375 L 61.328125 93.9375 L 67.519531 64.667969 L 75.316406 64.667969 L 65.183594 107.15625 L 57.289062 107.15625 L 51.445312 78.242188 L 51.292969 78.242188 L 45.035156 107.15625 L 36.996094 107.15625 Z M 84.285156 64.667969 L 96.820312 64.667969 L 109.273438 107.15625 L 101.070312 107.15625 L 98.359375 97.703125 L 84.078125 97.703125 L 81.988281 107.15625 L 73.996094 107.15625 Z M 89.058594 75.140625 L 85.589844 90.730469 L 96.382812 90.730469 L 92.402344 75.140625 Z M 89.058594 75.140625 "
27+
/>
28+
</svg>
29+
);
30+
};
31+
32+
export default MesheryFilterIcon;

src/icons/MesheryFilter/index.tsx

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export * from './Kubernetes';
5555
export * from './LeftAngledArrow';
5656
export * from './LeftArrow';
5757
export * from './Menu';
58+
export * from './MesheryFilter';
5859
export * from './MesheryOperator';
5960
export * from './Open';
6061
export * from './PanTool';

0 commit comments

Comments
 (0)