import { FC, ReactNode } from 'react'; import styles from './ActionButtonRow.module.scss'; export type ActionButtonRowProps = { children: ReactNode; }; export const ActionButtonRow: FC = ({ children }) => (
{children}
);