import { PropsWithChildren } from 'react'; import clsx from 'clsx'; import { useInputGroupContext } from './InputGroup'; export function InputGroupButtonWrapper({ children, }: PropsWithChildren) { useInputGroupContext(); return ( button]:!ml-0', // the button should be rounded at the end (right) if it's the last child and start (left) if it's the first child // if the button is in the middle of the group, it shouldn't be rounded '[&:first-child>button]:!rounded-l-[5px] [&:last-child>button]:!rounded-r-[5px] [&>button]:!rounded-none' )} > {children} ); }