import type { VariantProps } from 'class-variance-authority'; import { cva } from 'class-variance-authority'; import { Slot } from 'radix-ui'; import { cn, Separator } from '@spoon/ui'; const buttonGroupVariants = cva( "flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-lg [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1", { variants: { orientation: { horizontal: '[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-lg!', vertical: 'flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-lg!', }, }, defaultVariants: { orientation: 'horizontal', }, }, ); const ButtonGroup = ({ className, orientation, ...props }: React.ComponentProps<'div'> & VariantProps) => (
); const ButtonGroupText = ({ className, asChild = false, ...props }: React.ComponentProps<'div'> & { asChild?: boolean; }) => { const Comp = asChild ? Slot.Root : 'div'; return ( ); }; const ButtonGroupSeparator = ({ className, orientation = 'vertical', ...props }: React.ComponentProps) => ( ); export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, buttonGroupVariants, };