import { PropsWithChildren } from 'react';
import { useInputGroupContext } from './InputGroup';
/**
* Should wrap all buttons inside a InputGroup
*
* example:
* ```
*
*
*
*
*
*
* ```
*/
export function InputGroupButtonWrapper({
children,
}: PropsWithChildren) {
useInputGroupContext();
return {children};
}