type Props = { step: number; totalSteps: number; title: string; tip: string; label?: string; optional?: boolean; }; export function PromptCard({ step, totalSteps, title, tip, label = 'Clip', optional }: Props) { return (