1
0
mirror of https://github.com/vercel/commerce.git synced 2025-08-09 18:31:23 +00:00
Files
commerce/components/icon/Check.tsx

22 lines
360 B
TypeScript

const Check = ({ ...props }) => {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
{...props}
>
<path
d="M20 6L9 17L4 12"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
)
}
export default Check