import React from 'react'; import {IconButton} from '../../ui/buttons/icon-button'; import {UndoIcon} from '../../icons/material/Undo'; import {RedoIcon} from '../../icons/material/Redo'; import {MenubarButtonProps} from './menubar-button-props'; export function HistoryButtons({editor}: MenubarButtonProps) { return ( { editor.commands.focus(); editor.commands.undo(); }} > { editor.commands.focus(); editor.commands.redo(); }} > ); }