"use client"; import * as React from "react"; import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import { type VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; import { toggleVariants } from "@/components/ui/toggle"; const ToggleGroupContext = React.createContext< VariantProps >({ size: "default", variant: "default", }); const ToggleGroup = ( { ref, className, variant, size, children, ...props } ) => ( {children} ); ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName; const ToggleGroupItem = ( { ref, className, children, variant, size, ...props } ) => { const context = React.useContext(ToggleGroupContext); return ( {children} ); }; ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName; export { ToggleGroup, ToggleGroupItem };