Skip to content

Commit 67ce2c9

Browse files
Merge branch 'master' into feat/calculate-icon-sistent
2 parents 693b133 + 89887b9 commit 67ce2c9

File tree

7 files changed

+85
-0
lines changed

7 files changed

+85
-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/Refresh/RefreshIcon.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, KEPPEL_GREEN_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const RefreshIcon = ({
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+
viewBox="0 0 24 24"
15+
xmlns="http://www.w3.org/2000/svg"
16+
{...props}
17+
>
18+
<path
19+
d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4z"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
};
25+
26+
export default RefreshIcon;

src/icons/Refresh/index.ts

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

src/icons/Upgrade/UpgradeIcon.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_WIDTH, DEFAULT_HEIGHT, KEPPEL_GREEN_FILL } from "../../constants/constants";
2+
import { IconProps } from "../types";
3+
4+
export const UpgradeIcon = ({
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+
{...props}
17+
>
18+
<path
19+
d="M16 18v2H8v-2zM11 7.99V16h2V7.99h3L12 4 8 7.99z"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
}
25+
export default UpgradeIcon;

src/icons/Upgrade/index.ts

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

src/icons/index.ts

Lines changed: 3 additions & 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';
@@ -103,6 +104,7 @@ export * from './Question';
103104
export * from './Read';
104105
export * from './Rectangle';
105106
export * from './Redo';
107+
export * from './Refresh';
106108
export * from './Remove';
107109
export * from './Reset';
108110
export * from './Resize';
@@ -130,6 +132,7 @@ export * from './Triangle';
130132
export * from './Tropy';
131133
export * from './Undeploy';
132134
export * from './Undo';
135+
export * from './Upgrade';
133136
export * from './Validate';
134137
export * from './View';
135138
export * from './Visibility';

0 commit comments

Comments
 (0)