mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
const React = require('react');
|
|
const { themeStyle } = require('@joplin/lib/theme');
|
|
|
|
class ToolbarSpace extends React.Component {
|
|
render() {
|
|
const theme = themeStyle(this.props.themeId);
|
|
const style = Object.assign({}, theme.toolbarStyle);
|
|
style.minWidth = style.height / 2;
|
|
|
|
return <span style={style}></span>;
|
|
}
|
|
}
|
|
|
|
module.exports = ToolbarSpace;
|