import cx from "classnames"; interface ButtonsProps extends React.HTMLAttributes { /** On XS viewport, forces buttons to stack vertically and span the available width. */ isStackedOnXs?: boolean; className?: string; children?: React.ReactNode; } const CLASS_ROOT = "buttons"; const Buttons: React.FC = ({ isStackedOnXs, children, className, ...other }) => (
{children}
); Buttons.displayName = "Buttons"; export { Buttons };