import * as React from 'react'; import { themeStyle } from '@joplin/lib/theme'; interface Props { themeId: number; } class ToolbarSpace extends React.Component { public render() { const theme = themeStyle(this.props.themeId); const style = Object.assign({}, theme.toolbarStyle); style.minWidth = style.height / 2; return ; } } export default ToolbarSpace;