mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 22:26:05 +00:00
* feat: init * fix * fix * fix * feat * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: implement icons * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: update init command * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: dialog * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add registry:base item type * feat: rename frame to canva * fix * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fi * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add all colors * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add outfit font * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix
102 lines
2.6 KiB
TypeScript
102 lines
2.6 KiB
TypeScript
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 (
|
|
<ExampleWrapper>
|
|
<SwitchBasic />
|
|
<SwitchWithDescription />
|
|
<SwitchDisabled />
|
|
<SwitchSizes />
|
|
</ExampleWrapper>
|
|
)
|
|
}
|
|
|
|
function SwitchBasic() {
|
|
return (
|
|
<Example title="Basic">
|
|
<Field orientation="horizontal">
|
|
<Switch id="switch-basic" />
|
|
<FieldLabel htmlFor="switch-basic">Airplane Mode</FieldLabel>
|
|
</Field>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function SwitchWithLabel() {
|
|
return (
|
|
<Example title="With Label">
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-bluetooth" defaultChecked />
|
|
<Label htmlFor="switch-bluetooth">Bluetooth</Label>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function SwitchWithDescription() {
|
|
return (
|
|
<Example title="With Description">
|
|
<FieldLabel htmlFor="switch-focus-mode">
|
|
<Field orientation="horizontal">
|
|
<FieldContent>
|
|
<FieldTitle>Share across devices</FieldTitle>
|
|
<FieldDescription>
|
|
Focus is shared across devices, and turns off when you leave the
|
|
app.
|
|
</FieldDescription>
|
|
</FieldContent>
|
|
<Switch id="switch-focus-mode" />
|
|
</Field>
|
|
</FieldLabel>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function SwitchDisabled() {
|
|
return (
|
|
<Example title="Disabled">
|
|
<div className="flex flex-col gap-12">
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-disabled-unchecked" disabled />
|
|
<Label htmlFor="switch-disabled-unchecked">
|
|
Disabled (Unchecked)
|
|
</Label>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-disabled-checked" defaultChecked disabled />
|
|
<Label htmlFor="switch-disabled-checked">Disabled (Checked)</Label>
|
|
</div>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|
|
|
|
function SwitchSizes() {
|
|
return (
|
|
<Example title="Sizes">
|
|
<div className="flex flex-col gap-12">
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-size-sm" size="sm" />
|
|
<Label htmlFor="switch-size-sm">Small</Label>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Switch id="switch-size-default" size="default" />
|
|
<Label htmlFor="switch-size-default">Default</Label>
|
|
</div>
|
|
</div>
|
|
</Example>
|
|
)
|
|
}
|