"use client"; import * as React from "react"; import { cn } from "@/lib/utils"; export interface SwitchProps extends React.ButtonHTMLAttributes { checked?: boolean; } const Switch = React.forwardRef(({ className, checked, ...props }, ref) => ( )); Switch.displayName = "Switch"; export { Switch };