-
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
a9ba10c
commit 9521e37
Showing
11 changed files
with
265 additions
and
215 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
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
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
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
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,43 @@ | ||
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" | ||
> | ||
<g clipPath="url(#clip0_5765_6747)"> | ||
<path | ||
d="M2.25456 4.22454V6.62589C2.25456 7.34629 1.96106 7.79988 1.40075 7.95997C2.00108 8.14674 2.24122 8.52028 2.24122 9.28071V11.7354C2.24122 12.7226 2.57473 12.9895 3.32182 12.9895H3.7754V14.0034H3.30848C1.86767 14.0034 1.08057 13.4564 1.08057 11.7888V9.41412C1.08057 8.7871 0.787074 8.46692 -3.05176e-05 8.44024V7.46636C0.787074 7.42634 1.08057 7.1195 1.08057 6.50582V4.17117C1.08057 2.47689 1.86767 1.99662 3.30848 1.99662H3.7754V2.98384H3.32182C2.57473 2.98384 2.25456 3.25066 2.25456 4.22454Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M4.97594 8.55593C4.42008 8.55593 3.97539 8.11123 3.97539 7.55537C3.97539 6.9995 4.42008 6.5548 4.97594 6.5548C5.53181 6.5548 5.9765 6.9995 5.9765 7.55537C5.9765 8.11123 5.53181 8.55593 4.97594 8.55593Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M7.99996 8.55593C7.4441 8.55593 6.9994 8.11123 6.9994 7.55537C6.9994 6.9995 7.4441 6.5548 7.99996 6.5548C8.55582 6.5548 9.00052 6.9995 9.00052 7.55537C9.00052 8.11123 8.55582 8.55593 7.99996 8.55593Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M11.024 8.55593C10.4681 8.55593 10.0234 8.11123 10.0234 7.55537C10.0234 6.9995 10.4681 6.5548 11.024 6.5548C11.5798 6.5548 12.0245 6.9995 12.0245 7.55537C12.0245 8.11123 11.5798 8.55593 11.024 8.55593Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M13.7454 4.2245V6.62585C13.7454 7.34625 14.0389 7.79984 14.5992 7.95993C13.9989 8.1467 13.7587 8.52025 13.7587 9.28067V11.7354C13.7587 12.7226 13.4252 12.9894 12.6781 12.9894H12.2245V14.0033H12.6915C14.1323 14.0033 14.9194 13.4563 14.9194 11.7887V9.41408C14.9194 8.78706 15.2129 8.46688 16 8.4402V7.46632C15.2129 7.4263 14.9194 7.11946 14.9194 6.50578V4.17114C14.9194 2.47685 14.1323 1.99658 12.6915 1.99658H12.2245V2.9838H12.6781C13.4252 2.9838 13.7454 3.25062 13.7454 4.2245Z" | ||
fill={color} | ||
/> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_5765_6747"> | ||
<rect | ||
width={size} | ||
height={size} | ||
fill="white" | ||
/> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
)) |
Oops, something went wrong.