-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathDatasetIcon.tsx
More file actions
52 lines (48 loc) · 1.22 KB
/
DatasetIcon.tsx
File metadata and controls
52 lines (48 loc) · 1.22 KB
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
44
45
46
47
48
49
50
51
52
import React from "react";
const DatasetIcon = ({
size,
className,
}: {
size: number;
className?: string;
}) => {
return (
<svg
className={className}
width={size}
height={size}
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>
);
};
const DatasetIcon16 = () => {
return <DatasetIcon size={16} className="euiSideNavItemButton__icon" />;
};
const DatasetIcon32 = () => {
return (
<DatasetIcon
size={32}
className="euiIcon euiIcon--xLarge euiPageHeaderContent__titleIcon"
/>
);
};
export { DatasetIcon, DatasetIcon16, DatasetIcon32 };