chore: update dependencies

This commit is contained in:
2024-01-01 08:19:43 +07:00
parent 56fab1dda6
commit 499765c10a
18 changed files with 313 additions and 306 deletions

View File

@@ -0,0 +1,20 @@
export function MoveLeftIcon(props: JSX.IntrinsicElements["svg"]) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12.03 7.917a20.76 20.76 0 00-3.885 3.678A.64.64 0 008 12m4.03 4.083a20.758 20.758 0 01-3.885-3.678A.64.64 0 018 12m0 0h12M4 5v14"
/>
</svg>
);
}