mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2025-01-10 04:19:38 +02:00
fixed not showing fontawesome icons
This commit is contained in:
parent
eb112d4ad1
commit
b0ffa119b3
@ -5,18 +5,15 @@ import classNames from 'classnames';
|
||||
class FontAwesomeIcon extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
console.log("huhu");
|
||||
}
|
||||
|
||||
render() {
|
||||
let classes = classNames(this.props.prefix, {
|
||||
"fas": !this.props.prefix,
|
||||
}, 'fa-' + this.props.icon, this.props.className);
|
||||
console.log(classes);
|
||||
|
||||
return (
|
||||
<i className={classes} {...this.props}></i>
|
||||
<i className={classes}></i>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user