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 MoveRightIcon(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="M11.97 16a20.757 20.757 0 003.885-3.679.639.639 0 00.145-.404m-4.03-4.084a20.758 20.758 0 013.885 3.68.64.64 0 01.145.404m0 0H4M20 19V5"
/>
</svg>
);
}