Switch Uncontrolled

PreviousNext

switch-uncontrolled-demo

Docs
intentuipage

Preview

Loading preview…
components/docs/controls/switch/switch-uncontrolled-demo.tsx
"use client"

import { Description } from "@/components/ui/field"
import { Switch, SwitchLabel } from "@/components/ui/switch"

export default function SwitchUncontrolledDemo() {
  return (
    <Switch defaultSelected>
      {({ isSelected }) => (
        <>
          <SwitchLabel>Dark mode</SwitchLabel>
          <Description>Dark mode is {isSelected ? "enabled" : "disabled"}.</Description>
        </>
      )}
    </Switch>
  )
}

Installation

npx shadcn@latest add @intentui/switch-uncontrolled-demo

Usage

Usage varies by registry entry. Refer to the registry docs or source files below for details.