import { type PropsOf, Slot, component$ } from '@builder.io/qwik'; import { cn } from '@qwik-ui/utils'; const Root = component$>(({ ...props }) => { return (
); }); const Item = component$>(({ ...props }) => { return ( ); }); export const RadioGroup = { Root, Item, };