mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-07 14:05:44 +01:00
fixed missing classes prop
This commit is contained in:
@@ -4,6 +4,7 @@ import injectSheet from "react-jss";
|
|||||||
import classNames from "classnames";
|
import classNames from "classnames";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
|
classes: any
|
||||||
};
|
};
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
@@ -15,7 +16,7 @@ const styles = {
|
|||||||
class HelpIcon extends React.Component<Props> {
|
class HelpIcon extends React.Component<Props> {
|
||||||
render() {
|
render() {
|
||||||
const { classes } = this.props;
|
const { classes } = this.props;
|
||||||
return <i className={classNames("fa fa-question-circle has-text-info", classes.textinfo)}></i>
|
return <i className={classNames("fa fa-question-circle has-text-info", classes.textinfo)}></i>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user