-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathFeatureIcon.tsx
More file actions
31 lines (29 loc) · 890 Bytes
/
FeatureIcon.tsx
File metadata and controls
31 lines (29 loc) · 890 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 FeatureIcon = (props: React.SVGProps<SVGSVGElement>) => {
return (
<svg
{...props}
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M15.8385 0L29.677 7.99336V9.84182L15.8385 17.8352L2 9.84182V7.99336L15.8385 0ZM6.49626 8.61227L15.8275 3.29726L25.2807 8.61227L15.8275 13.9884L6.49626 8.61227Z"
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 { FeatureIcon };