Skip to content

Commit ea6926b

Browse files
Merge pull request #1291 from dpoppe7/feature/upgrade-icon-clean
feat: add UpgradeIcon to Sistent icon collection
2 parents 4926dfd + 4865084 commit ea6926b

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ export * from './Triangle';
130130
export * from './Tropy';
131131
export * from './Undeploy';
132132
export * from './Undo';
133+
export * from './Upgrade';
133134
export * from './Validate';
134135
export * from './View';
135136
export * from './Visibility';

0 commit comments

Comments
 (0)