import { Textarea } from "@/components/ui/textarea"; import { PencilIcon } from "lucide-react"; interface PromptInputProps { value: string; onChange: (value: string) => void; } export function PromptInput({ value, onChange }: PromptInputProps) { const handleChange = (val: string) => { onChange(val); }; return (
Write prompt