import { faEllipsisV as menuIcon } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import type { FC, PropsWithChildren } from 'react'; import { DropdownBtn } from './DropdownBtn'; export type DropdownBtnMenuProps = PropsWithChildren<{ minWidth?: number; }>; export const RowDropdownBtn: FC = ({ children, minWidth }) => ( } size="sm" minWidth={minWidth} end noCaret inline > {children} );