-
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
ca359f9
commit d1f31a7
Showing
3 changed files
with
112 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,55 @@ | ||
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="M7 4L4 7L1 4" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M7 12L4 9L1 12" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M4 1.3335L4 6.3335" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M4 14.6665L4 9.6665" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M10 4H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M8 8H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M10 12H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
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="M7 4L4 1L1 4" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M7 12L4 15L1 12" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M4 6.3335L4 1.3335" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M4 9.6665L4 14.6665" | ||
stroke={color} | ||
strokeWidth="1.1" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M10 4H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M8 8H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M10 12H16" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
</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