import * as React from "react" import { cn } from "../../../lib/utils" export interface ToggleProps extends Omit, 'type'> { checked?: boolean; onCheckedChange?: (checked: boolean) => void; label?: string; } const Toggle = React.forwardRef( ({ className, checked, onCheckedChange, label, ...props }, ref) => { return (