File tree Expand file tree Collapse file tree 5 files changed +55
-0
lines changed
Expand file tree Collapse file tree 5 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 1+ export { default as RefreshIcon } from './RefreshIcon' ;
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 @@ -104,6 +104,7 @@ export * from './Question';
104104export * from './Read' ;
105105export * from './Rectangle' ;
106106export * from './Redo' ;
107+ export * from './Refresh' ;
107108export * from './Remove' ;
108109export * from './Reset' ;
109110export * from './Resize' ;
@@ -131,6 +132,7 @@ export * from './Triangle';
131132export * from './Tropy' ;
132133export * from './Undeploy' ;
133134export * from './Undo' ;
135+ export * from './Upgrade' ;
134136export * from './Validate' ;
135137export * from './View' ;
136138export * from './Visibility' ;
You can’t perform that action at this time.
0 commit comments