forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectView.tsx
More file actions
43 lines (42 loc) · 876 Bytes
/
ProjectView.tsx
File metadata and controls
43 lines (42 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React from 'react';
import IconBase from 'react-icons/IconBase';
export const ProjectViewIcon = props => (
<IconBase fill="none" viewBox="0 0 24 24" {...props}>
<rect
width={4.998}
height={4.998}
x={4.001}
y={12.078}
fill="#757575"
rx={1.129}
transform="rotate(-45 4.001 12.078)"
/>
<rect
width={4.998}
height={4.998}
x={8.544}
y={7.534}
fill="#757575"
rx={1.129}
transform="rotate(-45 8.544 7.534)"
/>
<rect
width={4.998}
height={4.998}
x={8.544}
y={16.622}
fill="#757575"
rx={1.129}
transform="rotate(-45 8.544 16.622)"
/>
<rect
width={4.998}
height={4.998}
x={13.089}
y={12.078}
fill="#757575"
rx={1.129}
transform="rotate(-45 13.089 12.078)"
/>
</IconBase>
);