import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import { cn } from "@reactive-resume/utils"; import type { VariantProps } from "class-variance-authority"; import { forwardRef } from "react"; import { toggleVariants } from "../variants/toggle"; export const ToggleGroup = ToggleGroupPrimitive.Root; export const ToggleGroupItem = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & VariantProps >(({ className, variant, size, ...props }, ref) => ( ));