-
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
225e2ee
commit e415e92
Showing
2 changed files
with
29 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,28 @@ | ||
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="M0.533325 1.27145C0.533325 0.871695 0.871573 0.533447 1.27132 0.533447L6.43732 0.533448C6.83707 0.533448 7.17533 0.871696 7.17533 1.27145L7.17533 6.43744C7.17533 6.83719 6.83707 7.17544 6.43732 7.17544L1.27132 7.17544C0.871573 7.17544 0.533325 6.83719 0.533325 6.43744L0.533325 1.27145ZM0.533325 9.38944C0.533325 8.98969 0.871573 8.65145 1.27132 8.65145L6.43732 8.65145C6.83707 8.65145 7.17533 8.98969 7.17533 9.38944L7.17533 14.5554C7.17533 14.9552 6.83707 15.2934 6.43732 15.2934L1.27132 15.2934C0.871573 15.2934 0.533325 14.9552 0.533325 14.5554L0.533325 9.38944ZM8.65132 1.27145C8.65132 0.871696 8.98957 0.533448 9.38932 0.533448L14.5553 0.533448C14.9551 0.533448 15.2933 0.871696 15.2933 1.27145L15.2933 6.43744C15.2933 6.83719 14.9551 7.17544 14.5553 7.17544L9.38932 7.17544C8.98957 7.17544 8.65132 6.83719 8.65132 6.43744L8.65132 1.27145Z" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M12.451 8.68897C12.451 6.67048 10.764 5 8.72548 5C6.68701 5 5 6.67048 5 8.68897C5 10.7075 6.68701 12.3779 8.72548 12.3779C10.764 12.3779 12.451 10.7075 12.451 8.68897Z" | ||
fill="#21242C" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M15.6137 14.7473L14.3484 16.0001L11.9585 13.6336C11.8179 13.4944 11.8179 13.2856 11.9585 13.216L13.2237 11.9631L15.6137 14.3296C15.6839 14.4688 15.6839 14.6081 15.6137 14.7473Z" | ||
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