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

import { Label } from "@/components/ui/reui-switch-utils/label"
import { Switch } from "@/components/ui/reui-switch"
export default function Pattern() {
return (
<div className="flex flex-col items-start justify-start gap-3">
<div className="flex items-center gap-2">
<Switch id="switch-sm" size="sm" />
<Label htmlFor="switch-sm">Small Switch</Label>
</div>
<div className="flex items-center gap-2">
<Switch id="switch-default" size="default" />
<Label htmlFor="switch-default">Default Switch</Label>
</div>
</div>
)
}







