️ feat: create check icon for checkbox component

This commit is contained in:
Wahyu Kurniawan 2024-02-20 18:24:49 +07:00
parent 5e3a6ad2b5
commit 26260976fb
No known key found for this signature in database
GPG Key ID: 040A1549143A8E33
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
import React from 'react';
import { CustomIcon, CustomIconProps } from './CustomIcon';
export const CheckIcon = (props: CustomIconProps) => {
return (
<CustomIcon
width="12"
height="12"
viewBox="0 0 12 12"
fill="none"
{...props}
>
<path
d="M1.5 7.5L4.64706 10L10.5 2"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</CustomIcon>
);
};

View File

@ -1,2 +1,3 @@
export * from './PlusIcon';
export * from './CustomIcon';
export * from './CheckIcon';