update chat message form

This commit is contained in:
Ren Amamiya
2023-05-30 14:44:36 +07:00
parent 8256bc46a7
commit b856c2b8b5
13 changed files with 192 additions and 41 deletions

View File

@@ -0,0 +1,24 @@
import { SVGProps } from "react";
export function EnterIcon(
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="M3.75 4.75V15H20.25M20.25 15L16.25 11M20.25 15L16.25 19"
stroke="currentColor"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}