import { Example, ExampleWrapper, } from "@/registry/bases/base/components/example" import { Field, FieldContent, FieldDescription, FieldLabel, FieldTitle, } from "@/registry/bases/base/ui/field" import { Label } from "@/registry/bases/base/ui/label" import { Switch } from "@/registry/bases/base/ui/switch" export default function SwitchExample() { return ( ) } function SwitchBasic() { return ( Airplane Mode ) } function SwitchWithLabel() { return (
) } function SwitchWithDescription() { return ( Share across devices Focus is shared across devices, and turns off when you leave the app. ) } function SwitchDisabled() { return (
) } function SwitchSizes() { return (
) }