Components
ReUI Switch with the first 10 official ReUI examples, preserved from the MIT-licensed source registry.

import { Field, FieldLabel } from "@/components/ui/reui-switch-utils/field"
import { Switch } from "@/components/ui/reui-switch"
export default function Pattern() {
return (
<div className="flex items-center justify-center">
<Field orientation="horizontal">
<Switch id="switch-basic" />
<FieldLabel htmlFor="switch-basic">Airplane Mode</FieldLabel>
</Field>
</div>
)
}







