Skip to content

Commit

Permalink
feat: add clipboard checked icon (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
renemennab authored May 24, 2024
1 parent 41fed36 commit 81075f3
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/components/icons/ClipboardChecked.tsx
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>
))
1 change: 1 addition & 0 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export { default as CheckOutlineIcon } from './components/icons/CheckOutlineIcon
export { default as CheckRoundedIcon } from './components/icons/CheckRoundedIcon'
export { default as ChronjobIcon } from './components/icons/ChronjobIcon'
export { default as CliIcon } from './components/icons/CliIcon'
export { default as ClipboardChecked } from './components/icons/ClipboardChecked'
export { default as CloseIcon } from './components/icons/CloseIcon'
export { default as CloseRoundedIcon } from './components/icons/CloseRoundedIcon'
export { default as CloudIcon } from './components/icons/CloudIcon'
Expand Down

0 comments on commit 81075f3

Please sign in to comment.