import * as React from 'react'; import { themeStyle } from '@joplin/lib/theme'; interface Props { themeId: number; style: any; iconName: string; // eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied onClick: Function; } class IconButton extends React.Component { public render() { const style = this.props.style; const theme = themeStyle(this.props.themeId); const iconStyle = { color: theme.color, fontSize: theme.fontSize * 1.4, }; const icon = ; const rootStyle = { display: 'flex', textDecoration: 'none', padding: 10, width: theme.buttonMinHeight, height: theme.buttonMinHeight, boxSizing: 'border-box', alignItems: 'center', justifyContent: 'center', backgroundColor: theme.backgroundColor, cursor: 'default', ...style, }; return ( { if (this.props.onClick) this.props.onClick(); }} > {icon} ); } } export default IconButton;