-
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.
feat: add clipboard checked icon (#596)
- Loading branch information
1 parent
41fed36
commit 81075f3
Showing
2 changed files
with
48 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,47 @@ | ||
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_490_7853)"> | ||
<path | ||
d="M3.06055 8.76V4.07074C3.06055 3.433 3.54823 2.94531 4.18597 2.94531" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M13.9396 7.44727V14.1998C13.9396 14.8375 13.452 15.3252 12.8142 15.3252H4.18597C3.54823 15.3252 3.06055 14.8375 3.06055 14.1998V11.0486" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M10.9395 2.94531H12.8152C13.4529 2.94531 13.9406 3.433 13.9406 4.07074V5.0461" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M9.81196 3.69616H7.18597C6.54823 3.69616 6.06055 3.20848 6.06055 2.57074C6.06055 1.933 6.54823 1.44531 7.18597 1.44531H9.81196C10.4497 1.44531 10.9374 1.933 10.9374 2.57074C10.9374 3.20848 10.4497 3.69616 9.81196 3.69616Z" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
/> | ||
<path | ||
d="M6.06055 9.69797L7.56111 11.1985L10.9374 7.82227" | ||
stroke={color} | ||
strokeMiterlimit="10" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</g> | ||
</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