CipherStreamWeb converted to use Vite

This commit is contained in:
2025-08-13 23:31:29 -04:00
parent 70f9adb930
commit c9bddfa74d
120 changed files with 13931 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
import { TextArea } from "mattrixwv-components";
export default function InputMessage({
value,
onChange
}:{
value: string;
onChange: (value: string) => void;
}){
return (
<div
className="w-160"
>
<TextArea
placeholder="Input Message"
value={value}
onChange={(e) => onChange(e.target.value)}
inputClassName="h-40 w-160 [resize:none]"
labelClassName="bg-(--bg-color) text-(--text-color) peer-focus:bg-(--bg-color) peer-focus:text-(--text-color)"
/>
</div>
);
}