accordion
fulldev-ui/accordionFreeComponent
fulldev/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by fulldev/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://ui.full.dev/r/accordion.jsonSource
1---2import type { HTMLAttributes } from "astro/types"34import { cn } from "@/lib/utils"56type Props = HTMLAttributes<"div"> & {7 multiple?: boolean8 defaultValue?: string | string[]9 disabled?: boolean10 orientation?: "horizontal" | "vertical"11 loopFocus?: boolean12 hiddenUntilFound?: boolean13 collapsible?: boolean14}1516const {17 class: className,18 multiple,19 defaultValue,20 disabled,21 orientation = "vertical",22 loopFocus,23 hiddenUntilFound,24 collapsible,25 ...props26} = Astro.props2728const serializedDefaultValue = Array.isArray(defaultValue)29 ? JSON.stringify(defaultValue)30 : defaultValue31---3233<div34 data-slot="accordion"35 data-multiple={multiple}36 data-default-value={serializedDefaultValue}37 data-disabled={disabled}38 data-orientation={orientation}39 data-loop-focus={loopFocus}40 data-hidden-until-found={hiddenUntilFound}41 data-collapsible={collapsible}42 class={cn("flex w-full flex-col", className)}43 {...props}44>45 <slot />46</div>4748<script>49 import { create } from "@data-slot/accordion"5051 create()52</script>
What it pulls in
npm packages
Other registry items
Files it writes
More from fulldev/ui
All 144 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| alertalert | fulldev/ui | Components | Free | no deps · 5 files | |
| alert-dialogalert-dialog | fulldev/ui | Components | Free | 1 dep · 13 files | |
| avataravatar | fulldev/ui | Components | Free | no deps · 7 files | |
| badgebadge | fulldev/ui | Components | Free | no deps · 3 files | |
| bannerbanner | fulldev/ui | Components | Free | no deps · 3 files | |
| breadcrumbbreadcrumb | fulldev/ui | Components | Free | no deps · 8 files | |
| buttonbutton | fulldev/ui | Components | Free | no deps · 3 files | |
| cardcard | fulldev/ui | Components | Free | no deps · 8 files |
