import { Check, Loader } from "lucide-react"; import { cls } from "@/lib/utils"; type Item = { label: string; detail: string }; const DELAYS = [ ["delay-150", "delay-200", "delay-[250ms]"], ["delay-[350ms]", "delay-[400ms]", "delay-[450ms]"], ["delay-[550ms]", "delay-[600ms]", "delay-[650ms]"], ]; const ChecklistTimeline = ({ heading, subheading, items, completedLabel }: { heading: string; subheading: string; items: [Item, Item, Item]; completedLabel: string }) => (
{heading}
{subheading}
{item.label}
{item.detail}
{completedLabel}