File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 1+ export { default as UpgradeIcon } from "./UpgradeIcon" ;
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ export * from './Triangle';
130130export * from './Tropy' ;
131131export * from './Undeploy' ;
132132export * from './Undo' ;
133+ export * from './Upgrade' ;
133134export * from './Validate' ;
134135export * from './View' ;
135136export * from './Visibility' ;
You can’t perform that action at this time.
0 commit comments