import { Sparkles } from "lucide-react"; export function ExamplePrompts({ title, prompts, onPick, }: { title: string; prompts: string[]; onPick: (p: string) => void; }) { return (

{title}

Try one of these to get started

{prompts.map((p) => ( ))}
); }