File tree Expand file tree Collapse file tree 1 file changed +22
-11
lines changed Expand file tree Collapse file tree 1 file changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -5,26 +5,37 @@ export const WorkspaceIcon = ({
5
5
width = DEFAULT_WIDTH ,
6
6
height = DEFAULT_HEIGHT ,
7
7
secondaryFill = KEPPEL_GREEN_FILL ,
8
- opacity = 0.8 ,
8
+ fill = 'currentColor' ,
9
9
...props
10
10
} : CustomIconProps ) : JSX . Element => {
11
11
return (
12
12
< svg
13
13
xmlns = "http://www.w3.org/2000/svg"
14
14
height = { height }
15
- viewBox = "0 0 18 19 "
15
+ viewBox = "0 0 24 24 "
16
16
width = { width }
17
- fill = { props . fill }
17
+ fill = { fill }
18
+ stroke = { fill }
19
+ stroke-width = "2"
20
+ stroke-linecap = "round"
21
+ stroke-linejoin = "round"
22
+ { ...props }
18
23
>
19
24
< path
20
- d = "M4.5 18.4999C4.5 18.4999 3.375 18.4999 3.375 17.3749C3.375 16.2499 4.5 12.8749 9 12.8749C13.5 12.8749 14.625 16.2499 14.625 17.3749C14.625 18.4999 13.5 18.4999 13.5 18.4999H4.5ZM9 11.8062C9.74592 11.8062 10.4613 11.5098 10.9887 10.9824C11.5162 10.4549 11.8125 9.73957 11.8125 8.99365C11.8125 8.24773 11.5162 7.53236 10.9887 7.00491C10.4613 6.47747 9.74592 6.18115 9 6.18115C8.25408 6.18115 7.53871 6.47747 7.01126 7.00491C6.48382 7.53236 6.1875 8.24773 6.1875 8.99365C6.1875 9.73957 6.48382 10.4549 7.01126 10.9824C7.53871 11.5098 8.25408 11.8062 9 11.8062Z"
21
- fill = { props . fill }
22
- />
23
- < path
24
- opacity = { opacity }
25
- d = "M2.25 1.625C1.65326 1.625 1.08097 1.86205 0.65901 2.28401C0.237053 2.70597 0 3.27826 0 3.875L0 14.5625C0 15.0101 0.17779 15.4393 0.494257 15.7557C0.810725 16.0722 1.23995 16.25 1.6875 16.25H2.42213C2.65735 15.4233 3.0662 14.6562 3.62138 14H1.125V3.875C1.125 3.57663 1.24353 3.29048 1.4545 3.0795C1.66548 2.86853 1.95163 2.75 2.25 2.75H15.75C16.0484 2.75 16.3345 2.86853 16.5455 3.0795C16.7565 3.29048 16.875 3.57663 16.875 3.875V14H14.3786C15.0019 14.7358 15.3799 15.5446 15.5779 16.25H16.3125C16.7601 16.25 17.1893 16.0722 17.5057 15.7557C17.8222 15.4393 18 15.0101 18 14.5625V3.875C18 3.27826 17.7629 2.70597 17.341 2.28401C16.919 1.86205 16.3467 1.625 15.75 1.625H2.25Z"
26
- fill = { secondaryFill || KEPPEL_GREEN_FILL || props . fill }
27
- />
25
+ d = "M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"
26
+ stroke = { fill }
27
+ fill = { fill }
28
+ > </ path >
29
+ < rect
30
+ x = "3"
31
+ y = "14"
32
+ width = "7"
33
+ height = "7"
34
+ rx = "1"
35
+ stroke = { secondaryFill }
36
+ fill = { secondaryFill }
37
+ > </ rect >
38
+ < circle cx = "17.5" cy = "17.5" r = "3.5" stroke = { fill } fill = { fill } > </ circle >
28
39
</ svg >
29
40
) ;
30
41
} ;
You can’t perform that action at this time.
0 commit comments