1
0
mirror of https://github.com/flarum/core.git synced 2025-07-28 12:10:51 +02:00

Appearance tweaks

This commit is contained in:
Toby Zerner
2015-07-23 16:39:20 +09:30
parent e698e2220b
commit 52c9539be3
3 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ export default class Button extends Component {
const iconName = this.props.icon;
return [
iconName ? icon(iconName, {className: 'Button-icon'}) : '',
iconName ? icon(iconName, {className: 'Button-icon'}) : '', ' ',
this.props.children ? <span className="Button-label">{this.props.children}</span> : ''
];
}