-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathNVM.tsx
More file actions
63 lines (61 loc) · 2.6 KB
/
NVM.tsx
File metadata and controls
63 lines (61 loc) · 2.6 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
53
54
55
56
57
58
59
60
61
62
63
import type { FC, SVGProps } from 'react';
const NVM: FC<SVGProps<SVGSVGElement>> = props => (
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g clipPath="url(#clip0_423_27755)">
<g clipPath="url(#clip1_423_27755)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M1.46 9.846H.104l.792 1.39H2.25l-.792-1.39Z"
fill="#333"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="m11.499 14.19-.299-.563-.914-1.565-1.002.017.263.475-2.567.018-.562-.967-1.882.017 10.18 16 3.816-6.822-3.06-5.257-.316-.545-.703-1.213-2.954.404Z"
fill="#333"
stroke="#333"
strokeWidth=".352"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M20.976 12.642c.809-1.39 1.617-2.778 2.409-4.167.175-.3.386-.422.738-.422 2.356.017 4.712 0 7.05 0 .669 0 .845.263.563.879-.738 1.248-1.494 2.479-2.163 3.762-.79 1.354-1.582 2.69-2.373 4.044-1.74 3.025-3.481 6.049-5.24 9.055-.861 1.442-1.705 2.884-2.69 4.255-.21.3-.44.598-.686.862-.632.668-1.16.668-1.793-.018-.299-.316-1.266-1.723-.756-.896-.826-1.301-1.829-2.778-2.655-4.08.264-.615 3.165-5.855 3.921-7.173.088-.088 2.567-4.185 3.675-6.101Z"
fill="#F4DD4B"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="m13.398 25.917 4.009-7.368-1.09-1.828"
fill="#000"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="m5.503 7.508-1.125.017.686 1.125h.404l.633 1.055 1.846-.035-1.125-1.864-1.125.036-.194-.334ZM5.345 2.075l-1.108.017.668 1.108 1.108-.018-.668-1.107ZM3.376 3.64l-.932.017.563.914.932-.017-.563-.915ZM7.314.193l-.773.018.404.668.774-.018-.405-.668ZM5.521 5.24l-.985.035.51.844.985-.036-.51-.844ZM10.303 5.785l-1.582.035-.264-.422-1.424.035.756 1.23.967-.017.739 1.213 2.04-.035-1.232-2.04ZM8.633 3.042l-1.372.035.721 1.196 1.372-.036-.721-1.195ZM2.567.527l-.633.018.334.545.633-.018-.334-.545ZM13.011 10.022l-2.514.053.51.809h.756l.475.756 1.74-.036-.967-1.582ZM3.147 5.714l-.773.018.404.668.774-.018-.405-.668Z"
fill="#333"
stroke="#333"
strokeWidth=".352"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
</g>
<defs>
<clipPath id="clip0_423_27755">
<path fill="#fff" d="M0 0h32v32H0z" />
</clipPath>
<clipPath id="clip1_423_27755">
<path fill="#fff" d="M0 0h32v31.473H0z" />
</clipPath>
</defs>
</svg>
);
export default NVM;