"use client"; import { ComponentProps } from "react"; import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group"; import { cn } from "@/lib/style"; const ToggleGroup = ({ className, ...props }: ComponentProps) => ( ); ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName; const ToggleGroupItem = ({ className, children, ...props }: ComponentProps) => ( {children} ); export { ToggleGroup, ToggleGroupItem };