-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc20fb5
commit a561456
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import createIcon from './createIcon' | ||
|
||
export default createIcon(({ size, color }) => ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 16 16" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M4.15619 8.79004C3.94557 8.79004 3.7876 8.96908 3.7876 9.20781V10.8789H11.844C12.0547 10.8789 12.2126 10.6998 12.2126 10.4611V8.79004H4.15619ZM4.94604 10.4611C4.6301 10.4611 4.41947 10.2224 4.41947 9.86431C4.41947 9.50622 4.6301 9.26749 4.94604 9.26749C5.26198 9.26749 5.4726 9.50622 5.4726 9.86431C5.4726 10.1627 5.26198 10.4611 4.94604 10.4611ZM10.3697 10.2224H6.94698V9.44654H10.3697V10.2224Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M11.3828 8.79002C11.3828 8.54352 11.3294 8.34017 11.2426 8.17341M4.61816 8.79002C4.61816 8.14005 5.19514 7.68275 5.48363 7.53534C5.48363 7.53534 5.34232 6.33495 6.41972 5.89339C7.49712 5.45183 8.23895 6.58158 8.23895 6.58158C8.23895 6.58158 8.85712 5.99938 9.52829 6.3173C10.1995 6.63522 10.0935 7.48301 10.0935 7.48301C10.2587 7.49206 10.4875 7.54115 10.7065 7.65436" | ||
stroke={color} | ||
strokeWidth="0.466875" | ||
/> | ||
<path | ||
d="M3.92539 14.5699L1.05347 6.92856M3.92539 14.5699H12.0195M3.92539 14.5699L5.72225 12.2849M1.05347 6.92856L8.04239 1.55371M1.05347 6.92856L3.45942 7.61601M8.04239 1.55371L15.0314 6.92856M8.04239 1.55371V4.00694M15.0314 6.92856L12.0195 14.5699M15.0314 6.92856L12.6253 7.61601M12.0195 14.5699L10.2644 12.2849" | ||
stroke={color} | ||
strokeWidth="0.578705" | ||
/> | ||
<path | ||
d="M4 15.5C4.55228 15.5 5 15.0523 5 14.5C5 13.9477 4.55228 13.5 4 13.5C3.44772 13.5 3 13.9477 3 14.5C3 15.0523 3.44772 15.5 4 15.5Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M8 2.5C8.55228 2.5 9 2.05228 9 1.5C9 0.947715 8.55228 0.5 8 0.5C7.44772 0.5 7 0.947715 7 1.5C7 2.05228 7.44772 2.5 8 2.5Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M12 15.5C12.5523 15.5 13 15.0523 13 14.5C13 13.9477 12.5523 13.5 12 13.5C11.4477 13.5 11 13.9477 11 14.5C11 15.0523 11.4477 15.5 12 15.5Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M1 8C1.55228 8 2 7.55228 2 7C2 6.44772 1.55228 6 1 6C0.447715 6 0 6.44772 0 7C0 7.55228 0.447715 8 1 8Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M15 8C15.5523 8 16 7.55228 16 7C16 6.44772 15.5523 6 15 6C14.4477 6 14 6.44772 14 7C14 7.55228 14.4477 8 15 8Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters