Skip to content

Commit 89887b9

Browse files
Merge pull request #1288 from Canbow/feat/more-vert-icon-sistent
feat: add MoreVertIcon
2 parents 19eb389 + 0358d28 commit 89887b9

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH,KEPPEL_GREEN_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const MoreVertIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = KEPPEL_GREEN_FILL,
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+
data-testid="more-vert-icon-svg"
17+
{...props}
18+
>
19+
20+
<path
21+
d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2m0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2m0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2"
22+
fill={fill}
23+
/>
24+
</svg>
25+
);
26+
};
27+
28+
export default MoreVertIcon;

src/icons/MoreVert/index.ts

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ export * from './Lock';
8383
export * from './Logout';
8484
export * from './Mendeley';
8585
export * from './Menu';
86+
export * from './MoreVert';
8687
export * from './Meshery';
8788
export * from './MesheryFilter';
8889
export * from './MesheryOperator';

0 commit comments

Comments
 (0)