feat: update error icon

This commit is contained in:
hanif salafi 2024-11-04 08:19:20 +07:00
parent eb52be9138
commit ab0f6282f0
1 changed files with 14 additions and 0 deletions

View File

@ -1504,3 +1504,17 @@ export const GoogleIcon = ({
</path>
</svg>
);
export const TimesIcon = ({
size,
height = 24,
width = 24,
fill = "currentColor",
...props
}: IconSvgProps) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" className="size-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
</svg>
);