import { FC } from 'react'; import { ActionButton } from './action-button'; export const ActionButtonEdit: FC<{ disabled?: boolean; tooltip?: string; onClick?(): void; }> = props => ( Edit );