/* Copyright 2026 Marimo. All rights reserved. */ import { cva, type VariantProps } from "class-variance-authority"; import { Toggle as TogglePrimitive } from "radix-ui"; import * as React from "react"; import { cn } from "@/utils/cn"; const toggleVariants = cva( cn( "inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", "data-[state=on]:bg-muted data-[state=on]:text-muted-foreground", ), { variants: { variant: { default: "bg-transparent", outline: "border border-input bg-transparent hover:bg-muted hover:text-muted-foreground", }, size: { default: "h-9 px-3", xs: "h-4 w-4", sm: "h-6 px-2", lg: "h-10 px-5", }, }, defaultVariants: { variant: "default", size: "default", }, }, ); const Toggle = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & VariantProps >(({ className, variant, size, ...props }, ref) => ( )); Toggle.displayName = TogglePrimitive.Root.displayName; export { Toggle, toggleVariants };