forked from feast-dev/feast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFeatureServiceIcon.tsx
More file actions
42 lines (38 loc) · 930 Bytes
/
FeatureServiceIcon.tsx
File metadata and controls
42 lines (38 loc) · 930 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
import React from "react";
const FeatureServiceIcon = ({
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="M18 1.15L15.9 0L13.9 1.15L4.55 19L15.9 25L21.65 21.7L20.25 18.95L15.9 21.45L8.8 17.7L15.9 3.95L25.6 22.85L15.9 28.4L3.4 21.25L2 23.95L15.9 32L29.75 24L18 1.15Z"
fill="#0569EA"
/>
</svg>
);
};
const FeatureServiceIcon16 = () => {
return (
<FeatureServiceIcon size={16} className="euiSideNavItemButton__icon" />
);
};
const FeatureServiceIcon32 = () => {
return (
<FeatureServiceIcon
size={32}
className="euiIcon euiIcon--xLarge euiPageHeaderContent__titleIcon"
/>
);
};
export { FeatureServiceIcon, FeatureServiceIcon16, FeatureServiceIcon32 };