For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
0
Sponsor

Switch

A control that allows the user to toggle between checked and not checked.

import { Switch } from "@/components/switch/switch";

export function SwitchDemo() {
  return (
    <label style={{ alignItems: "center", display: "flex", gap: 8 }}>
      <Switch defaultChecked />

Installation

$ pnpm dlx shadcn@latest add https://shadcn-cssinjs.vercel.app/r/switch.json

Usage

import { Switch } from "@/components/ui/switch/switch";
<Switch defaultChecked />

RTL

To enable right-to-left support, see the RTL guide.

"use client";

import { useTranslation } from "@/components/language-selector";
import type { Translations } from "@/components/language-selector";
import { Switch } from "@/components/switch/switch";

API Reference

See the Base UI documentation for the full API.