/* ============================================================ GLASS TOGGLE — Apple-style glass toggle switch ============================================================ */ import { cn } from "@/lib/utils"; interface GlassToggleProps { checked: boolean; onChange: (checked: boolean) => void; disabled?: boolean; size?: "sm" | "md"; } export default function GlassToggle({ checked, onChange, disabled, size = "md" }: GlassToggleProps) { const isSmall = size === "sm"; return ( ); }