import { component$, type PropsOf, Slot } from '@builder.io/qwik'; import { cn } from '@qwik-ui/utils'; import { ToggleGroup as HeadlessToggleGroup } from '@qwik-ui/headless'; import type { VariantProps } from 'class-variance-authority'; import { toggleVariants } from '../toggle/toggle'; type ToggleGroupRootProps = PropsOf; const Root = component$(({ ...props }) => { return ( ); }); type ToggleGroupItemProps = PropsOf & VariantProps; const Item = component$(({ size, look, ...props }) => { return ( ); }); export const ToggleGroup = { Root, Item, };