src/components/Form/FormActions.tsx (8 lines of code) (raw):

import React from 'react'; import clsx from 'clsx'; export const FormActions: React.FC = (props) => { const { children, ...other } = props; return ( <div className={clsx('FormActions')} {...other}> {children} </div> ); };