-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathHomebrew.tsx
More file actions
69 lines (67 loc) · 3.02 KB
/
Homebrew.tsx
File metadata and controls
69 lines (67 loc) · 3.02 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
64
65
66
67
68
69
import type { FC, SVGProps } from 'react';
const Homebrew: 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_429_2384)">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M14.175 5.943c.087-2.773-.847-4.408-3.533-5.488-.763 2.67 2.388 5.132 3.533 5.488Z"
fill="#D1D3D4"
stroke="#000"
strokeWidth=".566"
strokeLinejoin="round"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M21.458 10.643c.088-2.277-.488-3.196-.92-3.853-.437-.614-1.488-1.577-2.78-1.617-1.22-.039-1.514.636-2.64.677-.185-2.051 1.363-3.177 1.363-3.177s-.424-.598-.774-.745c-.504.448-1.89 1.941-1.57 3.863-1.036-.198-1.767-.792-2.856-.578-1.484.292-2.706 1.19-3.403 3.157-.697 1.968.246 4.264.45 4.92.206.656 1.723 3.444 2.912 3.854 1.188.41 1.189.225 1.824-.02.636-.247 1.6-.697 3.014-.185 1.414.512 1.599.635 2.48.061.882-.573 2.03-2.357 2.296-2.87.266-.512.41-.778.492-1.045.857-.427.033-.4.112-2.442Z"
fill="#D1D3D4"
stroke="#000"
strokeWidth=".566"
strokeLinejoin="round"
/>
<path
d="M23.76 27.287a2.128 2.128 0 0 0 2.133-2.125v-7.656a2.126 2.126 0 0 0-2.125-2.126h-1.753a.473.473 0 0 1-.472-.472v-1.113H7.724l.035 16.32a.472.472 0 0 0 .218.397c.616.357 2.589 1.034 6.732 1.034 4.23 0 6.12-.907 6.662-1.316a.471.471 0 0 0 .17-.361c.002-.452.002-1.498.002-2.117a.471.471 0 0 1 .482-.472c.52.007 1.143.008 1.735.007Zm-2.217-9.424a.591.591 0 0 1 .59-.59h1.505a.59.59 0 0 1 .59.59v6.87a.59.59 0 0 1-.59.591h-1.504a.591.591 0 0 1-.59-.59v-6.87Z"
fill="#fff"
stroke="#000"
strokeWidth=".566"
strokeLinejoin="round"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M9.086 13.658v14.64c0 .17.09.325.237.41.598.284 2.331.964 5.37.964 3.06 0 4.743-.826 5.306-1.166a.47.47 0 0 0 .216-.396V13.658H9.087Z"
fill="#FBB040"
/>
<path
d="M10.722 16.137v11.314"
stroke="#FFDB96"
strokeWidth="1.302"
strokeLinecap="round"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M17.01 16.662a.82.82 0 0 0-.367-.66 1.975 1.975 0 0 1-.82-.98c-3.022.102-5.78-.429-7.17-.803a11.605 11.605 0 0 0-1.082-.252 1.814 1.814 0 0 1-1.464-1.773c0-.967.767-1.752 1.725-1.787a2.189 2.189 0 1 1 4.217 1.117l.006.002a2.095 2.095 0 0 1 3.985-.016 2.277 2.277 0 0 1 4.436-.918l.199-.05a1.789 1.789 0 1 1 1.122 3.33 2.637 2.637 0 0 0-.578.15c-.518.195-1.048.357-1.584.491a1.964 1.964 0 0 1-.225.736 2.447 2.447 0 0 0-.281 1.33v.201c0 .585-.474.941-1.06.941a1.06 1.06 0 0 1-1.059-1.06Z"
fill="#fff"
stroke="#000"
strokeWidth=".566"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_429_2384">
<path fill="#fff" d="M5.373 0h21.255v32H5.373z" />
</clipPath>
</defs>
</svg>
);
export default Homebrew;