import { Label } from "@/registry/ui/label";
import { Switch } from "@/registry/ui/switch";
import React from "react";
const SwitchWithLabelDemo = () => {
return (
<div className="flex items-center gap-3">
<Switch id="enable-feature" />
<Label htmlFor="enable-feature">Enable Feature</Label>
</div>
);
};
export default SwitchWithLabelDemo;
npx shadcn@latest add @shadcnui-blocks/switch-02import { Switch02 } from "@/components/switch-02"<Switch02 />