export const basicSwitch=`import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; const BasicSwitch = () => { return (
); }; export default BasicSwitch;` export const colorSwitch=`import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; const ColorSwitch = () => { return (
); }; export default ColorSwitch;` export const switchSize=`import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; const SwitchSize = () => { return (
); }; export default SwitchSize;` export const switchWithBadge=`import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; const SwitchWithBadge = () => { return (
); }; export default SwitchWithBadge;` export const switchWithIcon=`import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { Ban, Bell, Check, Lock, LockOpen, Moon, PhoneIncoming, PhoneMissed, Sun, Volume2, VolumeX, X } from "lucide-react"; const SwitchWithIcon = () => { return (
} endContent={} />
} endContent={} />
} endContent={} />
} endContent={} />
} endContent={} />
} endContent={} />
} endContent={} />
); }; export default SwitchWithIcon;`