import { FunctionComponent } from 'preact'; import { Icon, IconType } from './Icon'; type ButtonType = 'normal' | 'primary'; interface Props { /** * onClick - preventDefault is handled within the component */ onClick: () => void; type: ButtonType; className?: string; icon: IconType; } /** * IconButton component with an icon * preventDefault is already handled within the component */ export const RoundIconButton: FunctionComponent = ({ onClick, type, className, icon: iconType, }) => { const click = (e: MouseEvent) => { e.preventDefault(); onClick(); }; const classes = type === 'primary' ? 'info ' : ''; return ( ); };