| 87 | }; |
| 88 | |
| 89 | interface ButtonGroupProps extends Omit<ToggleButtonGroupProps, "orientation">, RefAttributes<HTMLDivElement> { |
| 90 | size?: ButtonSize; |
| 91 | className?: string; |
| 92 | } |
| 93 | |
| 94 | export const ButtonGroup = ({ children, size = "md", className, ...otherProps }: ButtonGroupProps) => { |
| 95 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected