import * as React from "react" import * as TogglePrimitive from "@radix-ui/react-toggle" import { type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" import { toggleVariants } from "./toggle-variants" const Toggle = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & VariantProps >(({ className, variant, size, ...props }, ref) => ( )) Toggle.displayName = TogglePrimitive.Root.displayName export { Toggle }