import { BsDice3Fill } from "react-icons/bs"; export const Prompt = ({ value, onChange, onRandomize, }: { value: string; onChange: (value: string) => void; onRandomize: () => void; }) => { const handleChange = (e: React.ChangeEvent) => { onChange(e.target.value); }; return (

Prompt

); };