import { LineAccordion } from "@/components/ui/line-accordion"const items = [
{
id: "shipping",
title: "How quickly can I ship?",
content: "Copy the source, add your content, and adjust the classes.",
},
{
id: "control",
title: "Can I control the active item?",
content: "Yes. Pass value and onValueChange.",
},
]
export function Demo() {
return <LineAccordion items={items} defaultValue="shipping" />
}