'use client'
import { forwardRef } from 'react'
import { Stack } from '~/src/components/Stack'
import type { ButtonGroupProps } from './ButtonGroup.types'
/**
* `ButtonGroup` is a component that groups buttons together.
* @example
* ```tsx
*
*
*
*
* ```
*/
export const ButtonGroup = forwardRef(
function ButtonGroup(
{ children, justify = 'center', withoutSpacing = false, ...props },
forwardedRef
) {
return (
{children}
)
}
)