-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathDatasetIcon.tsx
More file actions
31 lines (29 loc) · 870 Bytes
/
DatasetIcon.tsx
File metadata and controls
31 lines (29 loc) · 870 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
import React from "react";
const DatasetIcon = (props: React.SVGProps<SVGSVGElement>) => {
return (
<svg
{...props}
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M4 8.59285V5.39551H28.4797V8.59285H4Z" fill="#0569EA" />
<path d="M4 14.5878V11.2906H7.29726V14.5878H4Z" fill="#0569EA" />
<path
d="M10.0949 14.5878V11.2906H28.4797V14.5878H10.0949Z"
fill="#0569EA"
/>
<path d="M4 20.5829V17.2856H7.29726V20.5829H4Z" fill="#0569EA" />
<path
d="M10.0949 20.5829V17.2856H28.4797V20.5829H10.0949Z"
fill="#0569EA"
/>
<path d="M4 26.5779V23.2806H7.29726V26.5779H4Z" fill="#0569EA" />
<path
d="M10.0949 26.5779V23.2806H28.4797V26.5779H10.0949Z"
fill="#0569EA"
/>
</svg>
);
};
export { DatasetIcon };