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 (
{label} {String(step).padStart(2, '0')} of {String(totalSteps).padStart(2, '0')} {optional ? ' - optional' : ''}
{title}
{tip ? (
{tip}
) : null}
); }