import { cn } from '@/lib/utils'; 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) { const visibleTip = optional ? tip.replace(/^Optional\s*:\s*/i, '') : tip; return (