import React, { useCallback } from 'react'; import { Icon } from '../base/icons'; type Props = { /** * Accessibility label for button. */ accessibilityLabel: string, /** * An extra class name to be added at the end of the element's class name * in order to enable custom styling. */ customClass?: string, /** * Whether or not the button is disabled. */ disabled?: boolean, /** * Click handler. */ onClick: Function, /** * Button icon. */ icon: Object, /** * Whether or not the button is toggled. */ toggled?: boolean } const ToolbarButton = ({ accessibilityLabel, customClass, disabled = false, onClick, icon, toggled = false }: Props) => { const onKeyPress = useCallback(event => { if (event.key === 'Enter' || event.key === ' ') { event.preventDefault(); onClick(); } }, [ onClick ]); return (
); }; export default ToolbarButton;