initial composer

This commit is contained in:
Ren Amamiya
2023-05-08 21:20:49 +07:00
parent 09380e4fef
commit 93439abe33
6 changed files with 142 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
import { SVGProps } from 'react';
export default function ChevronDownIcon(props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) {
return (
<svg width={24} height={24} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path
d="M8 10L12 14L16 10"
stroke="currentColor"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}