- Accordion
- Alert Dialog
- Alert
- Aspect Ratio
- Avatar
- Badge
- Breadcrumb
- Button
- Calendar
- Card
- Carousel
- Chart
- Checkbox
- Collapsible
- Combobox
- Command
- Context Menu
- Data Table
- Date Picker
- Dialog
- Drawer
- Dropdown Menu
- Formsnap
- Hover Card
- Input OTP
- Input
- Label
- Menubar
- Navigation Menu
- Pagination
- Popover
- Progress
- Radio Group
- Range Calendar
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Switch
- Table
- Tabs
- Textarea
- Toggle Group
- Toggle
- Tooltip
- Typography
A vertically stacked set of interactive headings that each reveal a section of content.
Our flagship product combines cutting-edge technology with sleek design. Built with premium materials, it offers unparalleled performance and reliability.
Key features include advanced processing capabilities, and an intuitive user interface designed for both beginners and experts.
We offer worldwide shipping through trusted courier partners. Standard delivery takes 3-5 business days, while express shipping ensures delivery within 1-2 business days.
All orders are carefully packaged and fully insured. Track your shipment in real-time through our dedicated tracking portal.
We stand behind our products with a comprehensive 30-day return policy. If you're not completely satisfied, simply return the item in its original condition.
Our hassle-free return process includes free return shipping and full refunds processed within 48 hours of receiving the returned item.
<script lang="ts">
import * as Accordion from "$lib/components/ui/accordion/index.js";
</script>
<Accordion.Root type="single" class="w-full sm:max-w-[70%]" value="item-1">
<Accordion.Item value="item-1">
<Accordion.Trigger>Product Information</Accordion.Trigger>
<Accordion.Content class="flex flex-col gap-4 text-balance">
<p>
Our flagship product combines cutting-edge technology with sleek design.
Built with premium materials, it offers unparalleled performance and
reliability.
</p>
<p>
Key features include advanced processing capabilities, and an intuitive
user interface designed for both beginners and experts.
</p>
</Accordion.Content>
</Accordion.Item>
<Accordion.Item value="item-2">
<Accordion.Trigger>Shipping Details</Accordion.Trigger>
<Accordion.Content class="flex flex-col gap-4 text-balance">
<p>
We offer worldwide shipping through trusted courier partners. Standard
delivery takes 3-5 business days, while express shipping ensures
delivery within 1-2 business days.
</p>
<p>
All orders are carefully packaged and fully insured. Track your shipment
in real-time through our dedicated tracking portal.
</p>
</Accordion.Content>
</Accordion.Item>
<Accordion.Item value="item-3">
<Accordion.Trigger>Return Policy</Accordion.Trigger>
<Accordion.Content class="flex flex-col gap-4 text-balance">
<p>
We stand behind our products with a comprehensive 30-day return policy.
If you're not completely satisfied, simply return the item in its
original condition.
</p>
<p>
Our hassle-free return process includes free return shipping and full
refunds processed within 48 hours of receiving the returned item.
</p>
</Accordion.Content>
</Accordion.Item>
</Accordion.Root>
Installation
pnpm dlx shadcn-svelte@latest add accordion
npx shadcn-svelte@latest add accordion
bun x shadcn-svelte@latest add accordion
npx shadcn-svelte@latest add accordion
Install bits-ui
pnpm i bits-ui
npm i bits-ui
bun install bits-ui
yarn install bits-ui
Copy and paste the component source files linked at the top of this page into your project.
Usage
<script lang="ts">
import * as Accordion from "$lib/components/ui/accordion/index.js";
</script>
<Accordion.Root type="single">
<Accordion.Item value="item-1">
<Accordion.Trigger>Is it accessible?</Accordion.Trigger>
<Accordion.Content>
Yes. It adheres to the WAI-ARIA design pattern.
</Accordion.Content>
</Accordion.Item>
</Accordion.Root>