shadcn-svelte
A framework for building UI, components, and design systems for Svelte. Components are added as source to the user's project via the CLI.
IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn-svelte@latest, pnpm dlx shadcn-svelte@latest, or bunx --bun shadcn-svelte@latest — based on the project's package manager. Examples below use npx shadcn-svelte@latest but substitute the correct runner for the project.
Current Project Context
Read components.json at the project root and, when you need the live file layout, list the directory given by the aliases.ui path (resolved with the same rules as the CLI).
Imports (Svelte)
Each component lives in its own folder with an index.ts barrel. Match the installation docs:
- Multi-part components (dialog, select, card, field, tabs, …):
import * as Dialog from "$lib/components/ui/dialog" then Dialog.Content, Dialog.Title, Card.Root, Card.Header, etc. — whatever the barrel exports (short names and/or Root as … aliases).
- Single-component barrels (only one meaningful component in the folder): named imports —
import { Button } from "$lib/components/ui/button" and <Button>, not import * as Button + Button.Root. Same pattern for { Input }, { Badge }, { Spinner }, { Checkbox }, { Separator }, { Skeleton }, etc.
import * as Dialog from "$lib/components/ui/dialog";
import { Button } from "$lib/components/ui/button";
import { Separator } from "$lib/components/ui/separator";
Use the real aliases from components.json (often $lib/components/ui/...), not hardcoded paths.
Principles
- Use existing components first. Run
npx shadcn-svelte@latest add with no arguments to browse available components, or check Components before writing custom UI.
- Compose, don't reinvent. Settings page = Tabs + Card + form controls. Dashboard = Sidebar + Card + Chart + Table.
- Use built-in variants before custom styles.
variant="outline", size="sm", etc.
- Use semantic colors.
bg-primary, text-muted-foreground — never raw values like bg-blue-500.
Critical Rules
These rules are always enforced. Each links to a file with Incorrect/Correct code pairs.
Styling & Tailwind → styling.md
class for layout, not styling. Never override component colors or typography.
- No
space-x-* or space-y-*. Use flex with gap-*. For vertical stacks, flex flex-col gap-*.
- Use
size-* when width and height are equal. size-10 not w-10 h-10.
- Use
truncate shorthand. Not overflow-hidden text-ellipsis whitespace-nowrap.
- No manual
dark: color overrides. Use semantic tokens (bg-background, text-muted-foreground).
- Use
cn() for conditional classes. Don't write manual template literal ternaries.
- No manual
z-index on overlay components. Dialog, Sheet, Popover, etc. handle their own stacking.
Forms & Inputs → forms.md
- Forms use
Field.FieldGroup + Field.Field. Never use raw div with space-y-* or grid gap-* for form layout.
InputGroup uses InputGroup.Input/InputGroup.Textarea. Never raw Input/Textarea inside InputGroup.Root.
- Buttons inside inputs use
InputGroup.Root + InputGroup.Addon.
- Option sets (2–7 choices) use
ToggleGroup. Don't loop Button with manual active state.
Field.FieldSet + Field.FieldLegend for grouping related checkboxes/radios. Don't use a div with a heading.
- Field validation uses
data-invalid + aria-invalid. data-invalid on Field, aria-invalid on the control. For disabled: data-disabled on Field, disabled on the control.
- Items always inside their Group.
Select.Item → Select.Group. DropdownMenu.Item → DropdownMenu.Group. Command.Item → Command.Group.
- Custom triggers. Wrap controls in
Dialog.Trigger / AlertDialog.Trigger, or control open state with bind:open on the root — see component docs.
- Dialog, Sheet, and Drawer always need a Title.
Dialog.Title, Sheet.Title, Drawer.Title required for accessibility. Use class="sr-only" if visually hidden.
- Use full Card composition.
Card.Header/Card.Title/Card.Description/Card.Content/Card.Footer. Don't dump everything in Card.Content.
- Button has no
isPending/isLoading. Compose with Spinner inside Button + disabled; use data-icon="inline-start" / inline-end on Spinner for correct spacing (import { Button }, import { Spinner }).
Tabs.Trigger must be inside Tabs.List. Never render triggers directly in Tabs.
Avatar always needs Avatar.Fallback. For when the image fails to load.
Use Components, Not Custom Markup → composition.md
- Use existing components before custom markup. Check if a component exists before writing a styled
div.
- Callouts use
Alert. Don't build custom styled divs.
- Empty states use
Empty. Don't build custom empty state markup.
- Toast via
svelte-sonner. Use toast() from svelte-sonner with the Sonner component from your UI folder.
- Use
Separator instead of <hr> or a div with border-only classes.
- Use
Skeleton for loading placeholders. No custom animate-pulse divs.
- Use
Badge instead of custom styled spans.
- Icons in
<Button> use data-icon. data-icon="inline-start" or data-icon="inline-end" on the icon.
- No sizing classes on icons inside components. Components handle icon sizing via CSS. No
size-4 or w-4 h-4.
- Pass icons as components. Import from the configured
iconLibrary (e.g. @lucide/svelte), not string keys.
CLI
- Presets — copy the encoded string from the design-system builder on shadcn-svelte.com and pass it to
npx shadcn-svelte@latest init --preset <code>.
Key Patterns
These are the most common patterns that differentiate correct shadcn-svelte code. For edge cases, see the linked rule files above.
<script lang="ts">
import * as Field from "$lib/components/ui/field";
import { Input } from "$lib/components/ui/input";
import { Button } from "$lib/components/ui/button";
import SearchIcon from "@lucide/svelte/icons/search";
import { Badge } from "$lib/components/ui/badge";
import * as Avatar from "$lib/components/ui/avatar";
</script>
<!-- Form layout: Field.FieldGroup + Field.Field, not div + Label. -->
<Field.FieldGroup>
<Field.Field>
<Field.FieldLabel for="email">Email</Field.FieldLabel>
<Input id="email" />
</Field.Field>
</Field.FieldGroup>
<!-- Validation: data-invalid on Field, aria-invalid on the control. -->
<Field.Field data-invalid>
<Field.FieldLabel for="email">Email</Field.FieldLabel>
<Input id="email" aria-invalid />
<Field.FieldDescription>Invalid email.</Field.FieldDescription>
</Field.Field>
<!-- Icons in buttons: data-icon, no sizing classes. -->
<Button>
<SearchIcon data-icon="inline-start" />
Search
</Button>
<!-- Spacing: gap-*, not space-y-*. -->
<div class="flex flex-col gap-4"></div>
<!-- Equal dimensions: size-*, not w-* h-*. -->
<Avatar.Root class="size-10">
<Avatar.Image src="/u.png" alt="User" />
<Avatar.Fallback>U</Avatar.Fallback>
</Avatar.Root>
<!-- Status colors: Badge variants or semantic tokens, not raw colors. -->
<Badge variant="secondary">+20.1%</Badge>
Component Selection
| Need |
Use |
| Button/action |
Button with appropriate variant (import { Button }) |
| Form inputs |
Input, Select, Combobox, Switch, Checkbox, RadioGroup, Textarea, InputOTP, Slider |
| Toggle between 2–5 options |
ToggleGroup.Root + ToggleGroup.Item |
| Data display |
Table, Card, Badge, Avatar |
| Navigation |
Sidebar, NavigationMenu, Breadcrumb, Tabs, Pagination |
| Overlays |
Dialog (modal), Sheet (side panel), Drawer (bottom sheet), AlertDialog (confirmation) |
| Feedback |
svelte-sonner (toast), Alert, Progress, Skeleton, Spinner |
| Command palette |
Command inside Dialog |
| Charts |
Chart (LayerChart) |
| Layout |
Card, Separator, Resizable, ScrollArea, Accordion, Collapsible |
| Empty states |
Empty |
| Menus |
DropdownMenu, ContextMenu, Menubar |
| Tooltips/info |
Tooltip, HoverCard, Popover |
Key Fields
Use components.json and the filesystem — not a separate info command:
aliases → use the actual alias prefix from config (e.g. $lib/), never hardcode unrelated projects.
tailwind.css → the global CSS file where theme variables live. Edit this file for theme tweaks; don't add a second globals file unless the user already uses one.
style → visual treatment (e.g. nova, vega, …) and registry style path.
iconLibrary → determines icon packages (@lucide/svelte, @tabler/icons-svelte, etc.). Never assume @lucide/svelte.
registry → where the CLI fetches components; default official registry at shadcn-svelte.com.
resolvedPaths (conceptual) → the CLI resolves aliases to absolute paths; list aliases.ui on disk to see installed components.
See cli.md for commands and flags.
Component Docs, Examples, and Usage
Open https://shadcn-svelte.com/docs/components/<name>.md for docs and examples. When creating, fixing, debugging, or using a component, read the official page first so you follow the documented APIs.
Workflow
- Get project context — read
components.json and list the UI components directory when needed.
- Check installed components first — before running
add, list files under the resolved ui path. Don't import components that haven't been added, and don't re-add ones already present unless updating.
- Discover components —
npx shadcn-svelte@latest add with no arguments (interactive list), or the docs site.
- Install or update —
npx shadcn-svelte@latest add <name> or a registry URL. To refresh existing files from the registry, use npx shadcn-svelte@latest update (see cli.md).
- Fix imports in third-party / URL-added items — After adding from a custom registry URL, check for hardcoded paths that don't match the project's
aliases. Rewrite imports to use the project's ui / lib aliases from components.json.
- Review added components — After adding, read the added files and verify composition (groups, titles, validation attrs). Align icon imports with
iconLibrary.
- Remote registry items — Adding by URL is explicit; if the user wants a component from an unknown source, confirm the registry URL or item before running
add.
Updating Components
Use the update command to pull the latest registry versions of components already in the project. Review changes with git diff after update.
- Commit or stash local work.
- Run
npx shadcn-svelte@latest update [component] or --all.
- Resolve merge conflicts if you had customized files.
- Never use
--overwrite on add without the user's explicit approval when it would destroy intentional edits.
Quick Reference
# Initialize shadcn-svelte in your project.
npx shadcn-svelte@latest init
# Initialize with a preset string from the docs site builder.
npx shadcn-svelte@latest init --preset <code>
# Add components (interactive when run with no names).
npx shadcn-svelte@latest add
npx shadcn-svelte@latest add button card dialog
npx shadcn-svelte@latest add --all
# Update components already installed.
npx shadcn-svelte@latest update button
npx shadcn-svelte@latest update --all --yes
# Build a custom registry (registry authors).
npx shadcn-svelte@latest registry build
Registry: default https://shadcn-svelte.com/registry — override in components.json if needed.
Docs: shadcn-svelte.com
Detailed References
- rules/forms.md — Field.FieldGroup, Field.Field, InputGroup, ToggleGroup, Field.FieldSet, validation states
- rules/composition.md — Groups, overlays, Card, Tabs, Avatar, Alert, Empty, Toast, Separator, Skeleton, Badge, Button loading
- rules/icons.md — data-icon, icon sizing, passing icon components
- rules/styling.md — Semantic colors, variants, class, spacing, size, truncate, dark mode, cn(), z-index
- cli.md — Commands, flags, registry
- customization.md — Theming, CSS variables, extending components
1---2name: shadcn-svelte3description: Manages shadcn-svelte components and projects — adding, updating, fixing, debugging, styling, and composing UI. Provides project context, component docs, and usage examples. Applies when working with shadcn-svelte, the CLI, design-system presets, or any project with a components.json file. Also triggers for "shadcn-svelte init", "add component", or registry URLs.4---56# shadcn-svelte78A framework for building UI, components, and design systems for Svelte. Components are added as source to the user's project via the CLI.910> **IMPORTANT:** Run all CLI commands using the project's package runner: `npx shadcn-svelte@latest`, `pnpm dlx shadcn-svelte@latest`, or `bunx --bun shadcn-svelte@latest` — based on the project's package manager. Examples below use `npx shadcn-svelte@latest` but substitute the correct runner for the project.1112## Current Project Context1314Read `components.json` at the project root and, when you need the live file layout, list the directory given by the `aliases.ui` path (resolved with the same rules as the CLI).1516## Imports (Svelte)1718Each component lives in its own folder with an `index.ts` barrel. Match the [installation docs](https://shadcn-svelte.com/docs/installation):1920- **Multi-part components** (dialog, select, card, field, tabs, …): `import * as Dialog from "$lib/components/ui/dialog"` then `Dialog.Content`, `Dialog.Title`, `Card.Root`, `Card.Header`, etc. — whatever the barrel exports (short names and/or `Root as …` aliases).21- **Single-component barrels** (only one meaningful component in the folder): **named imports** — `import { Button } from "$lib/components/ui/button"` and `<Button>`, not `import * as Button` + `Button.Root`. Same pattern for `{ Input }`, `{ Badge }`, `{ Spinner }`, `{ Checkbox }`, `{ Separator }`, `{ Skeleton }`, etc.2223```ts24import * as Dialog from "$lib/components/ui/dialog";25import { Button } from "$lib/components/ui/button";26import { Separator } from "$lib/components/ui/separator";27```2829Use the real aliases from `components.json` (often `$lib/components/ui/...`), not hardcoded paths.3031## Principles32331. **Use existing components first.** Run `npx shadcn-svelte@latest add` with no arguments to browse available components, or check [Components](https://shadcn-svelte.com/docs/components) before writing custom UI.342. **Compose, don't reinvent.** Settings page = Tabs + Card + form controls. Dashboard = Sidebar + Card + Chart + Table.353. **Use built-in variants before custom styles.** `variant="outline"`, `size="sm"`, etc.364. **Use semantic colors.** `bg-primary`, `text-muted-foreground` — never raw values like `bg-blue-500`.3738## Critical Rules3940These rules are **always enforced**. Each links to a file with Incorrect/Correct code pairs.4142### Styling & Tailwind → [styling.md](./rules/styling.md)4344- **`class` for layout, not styling.** Never override component colors or typography.45- **No `space-x-*` or `space-y-*`.** Use `flex` with `gap-*`. For vertical stacks, `flex flex-col gap-*`.46- **Use `size-*` when width and height are equal.** `size-10` not `w-10 h-10`.47- **Use `truncate` shorthand.** Not `overflow-hidden text-ellipsis whitespace-nowrap`.48- **No manual `dark:` color overrides.** Use semantic tokens (`bg-background`, `text-muted-foreground`).49- **Use `cn()` for conditional classes.** Don't write manual template literal ternaries.50- **No manual `z-index` on overlay components.** Dialog, Sheet, Popover, etc. handle their own stacking.5152### Forms & Inputs → [forms.md](./rules/forms.md)5354- **Forms use `Field.FieldGroup` + `Field.Field`.** Never use raw `div` with `space-y-*` or `grid gap-*` for form layout.55- **`InputGroup` uses `InputGroup.Input`/`InputGroup.Textarea`.** Never raw `Input`/`Textarea` inside `InputGroup.Root`.56- **Buttons inside inputs use `InputGroup.Root` + `InputGroup.Addon`.**57- **Option sets (2–7 choices) use `ToggleGroup`.** Don't loop `Button` with manual active state.58- **`Field.FieldSet` + `Field.FieldLegend` for grouping related checkboxes/radios.** Don't use a `div` with a heading.59- **Field validation uses `data-invalid` + `aria-invalid`.** `data-invalid` on `Field`, `aria-invalid` on the control. For disabled: `data-disabled` on `Field`, `disabled` on the control.6061### Component Structure → [composition.md](./rules/composition.md)6263- **Items always inside their Group.** `Select.Item` → `Select.Group`. `DropdownMenu.Item` → `DropdownMenu.Group`. `Command.Item` → `Command.Group`.64- **Custom triggers.** Wrap controls in `Dialog.Trigger` / `AlertDialog.Trigger`, or control open state with `bind:open` on the root — see component docs.65- **Dialog, Sheet, and Drawer always need a Title.** `Dialog.Title`, `Sheet.Title`, `Drawer.Title` required for accessibility. Use `class="sr-only"` if visually hidden.66- **Use full Card composition.** `Card.Header`/`Card.Title`/`Card.Description`/`Card.Content`/`Card.Footer`. Don't dump everything in `Card.Content`.67- **Button has no `isPending`/`isLoading`.** Compose with `Spinner` inside `Button` + `disabled`; use `data-icon="inline-start"` / `inline-end` on `Spinner` for correct spacing (`import { Button }`, `import { Spinner }`).68- **`Tabs.Trigger` must be inside `Tabs.List`.** Never render triggers directly in `Tabs`.69- **`Avatar` always needs `Avatar.Fallback`.** For when the image fails to load.7071### Use Components, Not Custom Markup → [composition.md](./rules/composition.md)7273- **Use existing components before custom markup.** Check if a component exists before writing a styled `div`.74- **Callouts use `Alert`.** Don't build custom styled divs.75- **Empty states use `Empty`.** Don't build custom empty state markup.76- **Toast via `svelte-sonner`.** Use `toast()` from `svelte-sonner` with the Sonner component from your UI folder.77- **Use `Separator`** instead of `<hr>` or a `div` with border-only classes.78- **Use `Skeleton`** for loading placeholders. No custom `animate-pulse` divs.79- **Use `Badge`** instead of custom styled spans.8081### Icons → [icons.md](./rules/icons.md)8283- **Icons in `<Button>` use `data-icon`.** `data-icon="inline-start"` or `data-icon="inline-end"` on the icon.84- **No sizing classes on icons inside components.** Components handle icon sizing via CSS. No `size-4` or `w-4 h-4`.85- **Pass icons as components.** Import from the configured `iconLibrary` (e.g. `@lucide/svelte`), not string keys.8687### CLI8889- **Presets** — copy the encoded string from the design-system builder on [shadcn-svelte.com](https://shadcn-svelte.com) and pass it to `npx shadcn-svelte@latest init --preset <code>`.9091## Key Patterns9293These are the most common patterns that differentiate correct shadcn-svelte code. For edge cases, see the linked rule files above.9495```svelte96<script lang="ts">97 import * as Field from "$lib/components/ui/field";98 import { Input } from "$lib/components/ui/input";99 import { Button } from "$lib/components/ui/button";100 import SearchIcon from "@lucide/svelte/icons/search";101 import { Badge } from "$lib/components/ui/badge";102 import * as Avatar from "$lib/components/ui/avatar";103</script>104105<!-- Form layout: Field.FieldGroup + Field.Field, not div + Label. -->106<Field.FieldGroup>107 <Field.Field>108 <Field.FieldLabel for="email">Email</Field.FieldLabel>109 <Input id="email" />110 </Field.Field>111</Field.FieldGroup>112113<!-- Validation: data-invalid on Field, aria-invalid on the control. -->114<Field.Field data-invalid>115 <Field.FieldLabel for="email">Email</Field.FieldLabel>116 <Input id="email" aria-invalid />117 <Field.FieldDescription>Invalid email.</Field.FieldDescription>118</Field.Field>119120<!-- Icons in buttons: data-icon, no sizing classes. -->121<Button>122 <SearchIcon data-icon="inline-start" />123 Search124</Button>125126<!-- Spacing: gap-*, not space-y-*. -->127<div class="flex flex-col gap-4"></div>128129<!-- Equal dimensions: size-*, not w-* h-*. -->130<Avatar.Root class="size-10">131 <Avatar.Image src="/u.png" alt="User" />132 <Avatar.Fallback>U</Avatar.Fallback>133</Avatar.Root>134135<!-- Status colors: Badge variants or semantic tokens, not raw colors. -->136<Badge variant="secondary">+20.1%</Badge>137```138139## Component Selection140141| Need | Use |142| -------------------------- | --------------------------------------------------------------------------------------------------- |143| Button/action | `Button` with appropriate variant (`import { Button }`) |144| Form inputs | `Input`, `Select`, `Combobox`, `Switch`, `Checkbox`, `RadioGroup`, `Textarea`, `InputOTP`, `Slider` |145| Toggle between 2–5 options | `ToggleGroup.Root` + `ToggleGroup.Item` |146| Data display | `Table`, `Card`, `Badge`, `Avatar` |147| Navigation | `Sidebar`, `NavigationMenu`, `Breadcrumb`, `Tabs`, `Pagination` |148| Overlays | `Dialog` (modal), `Sheet` (side panel), `Drawer` (bottom sheet), `AlertDialog` (confirmation) |149| Feedback | `svelte-sonner` (toast), `Alert`, `Progress`, `Skeleton`, `Spinner` |150| Command palette | `Command` inside `Dialog` |151| Charts | `Chart` (LayerChart) |152| Layout | `Card`, `Separator`, `Resizable`, `ScrollArea`, `Accordion`, `Collapsible` |153| Empty states | `Empty` |154| Menus | `DropdownMenu`, `ContextMenu`, `Menubar` |155| Tooltips/info | `Tooltip`, `HoverCard`, `Popover` |156157## Key Fields158159Use `components.json` and the filesystem — not a separate `info` command:160161- **`aliases`** → use the actual alias prefix from config (e.g. `$lib/`), never hardcode unrelated projects.162- **`tailwind.css`** → the global CSS file where theme variables live. Edit this file for theme tweaks; don't add a second globals file unless the user already uses one.163- **`style`** → visual treatment (e.g. `nova`, `vega`, …) and registry style path.164- **`iconLibrary`** → determines icon packages (`@lucide/svelte`, `@tabler/icons-svelte`, etc.). Never assume `@lucide/svelte`.165- **`registry`** → where the CLI fetches components; default official registry at `shadcn-svelte.com`.166- **`resolvedPaths`** (conceptual) → the CLI resolves `aliases` to absolute paths; list `aliases.ui` on disk to see installed components.167168See [cli.md](./cli.md) for commands and flags.169170## Component Docs, Examples, and Usage171172Open `https://shadcn-svelte.com/docs/components/<name>.md` for docs and examples. **When creating, fixing, debugging, or using a component, read the official page first** so you follow the documented APIs.173174## Workflow1751761. **Get project context** — read `components.json` and list the UI components directory when needed.1772. **Check installed components first** — before running `add`, list files under the resolved `ui` path. Don't import components that haven't been added, and don't re-add ones already present unless updating.1783. **Discover components** — `npx shadcn-svelte@latest add` with no arguments (interactive list), or the docs site.1794. **Install or update** — `npx shadcn-svelte@latest add <name>` or a registry **URL**. To refresh existing files from the registry, use `npx shadcn-svelte@latest update` (see [cli.md](./cli.md)).1805. **Fix imports in third-party / URL-added items** — After adding from a custom registry URL, check for hardcoded paths that don't match the project's `aliases`. Rewrite imports to use the project's `ui` / `lib` aliases from `components.json`.1816. **Review added components** — After adding, **read the added files** and verify composition (groups, titles, validation attrs). Align icon imports with `iconLibrary`.1827. **Remote registry items** — Adding by URL is explicit; if the user wants a component from an unknown source, confirm the registry URL or item before running `add`.183184## Updating Components185186Use the **`update`** command to pull the latest registry versions of components already in the project. Review changes with `git diff` after `update`.1871881. Commit or stash local work.1892. Run `npx shadcn-svelte@latest update [component]` or `--all`.1903. Resolve merge conflicts if you had customized files.1914. **Never use `--overwrite` on `add` without the user's explicit approval** when it would destroy intentional edits.192193## Quick Reference194195```bash196# Initialize shadcn-svelte in your project.197npx shadcn-svelte@latest init198199# Initialize with a preset string from the docs site builder.200npx shadcn-svelte@latest init --preset <code>201202# Add components (interactive when run with no names).203npx shadcn-svelte@latest add204npx shadcn-svelte@latest add button card dialog205npx shadcn-svelte@latest add --all206207# Update components already installed.208npx shadcn-svelte@latest update button209npx shadcn-svelte@latest update --all --yes210211# Build a custom registry (registry authors).212npx shadcn-svelte@latest registry build213```214215**Registry:** default `https://shadcn-svelte.com/registry` — override in `components.json` if needed. 216**Docs:** [shadcn-svelte.com](https://shadcn-svelte.com)217218## Detailed References219220- [rules/forms.md](./rules/forms.md) — Field.FieldGroup, Field.Field, InputGroup, ToggleGroup, Field.FieldSet, validation states221- [rules/composition.md](./rules/composition.md) — Groups, overlays, Card, Tabs, Avatar, Alert, Empty, Toast, Separator, Skeleton, Badge, Button loading222- [rules/icons.md](./rules/icons.md) — data-icon, icon sizing, passing icon components223- [rules/styling.md](./rules/styling.md) — Semantic colors, variants, class, spacing, size, truncate, dark mode, cn(), z-index224- [cli.md](./cli.md) — Commands, flags, registry225- [customization.md](./customization.md) — Theming, CSS variables, extending components