Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const ClipboardCheck = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ClipboardCheck(props, ref) {
return (
<Icon {...props} name="ClipboardCheck">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M12 1C11.2636 1 10.6667 1.54747 10.6667 2.22283H8.83334C8.09697 2.22283 7.5 2.36269 7.5 3.03804V5L16.5 4.96196V3C16.5 2.32464 15.903 2.18478 15.1667 2.18478L13.3333 2.22283C13.3333 1.54747 12.7364 1 12 1Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M5 3C4.44772 3 4 3.44772 4 4V22C4 22.5523 4.44771 23 5 23H19C19.5523 23 20 22.5523 20 22L20 3.9849C20 3.43855 19.5615 2.99333 19.0152 2.98501L17.5 2.96196V5.96196L6.5 6V3H5ZM11.6086 17.917L16.9543 11.2513L15.3941 10L11.4487 14.9196L9.41828 12.8775L8 14.2876L11.6086 17.917Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
ClipboardCheck.displayName = 'ClipboardCheck'
export default ClipboardCheck
|