mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 14:35:45 +01:00
26 lines
442 B
JavaScript
26 lines
442 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import injectSheet from "react-jss";
|
|
import Icon from "./Icon";
|
|
|
|
type Props = {
|
|
classes: any
|
|
};
|
|
|
|
const styles = {
|
|
textinfo: {
|
|
color: "#98d8f3 !important"
|
|
}
|
|
};
|
|
|
|
class HelpIcon extends React.Component<Props> {
|
|
render() {
|
|
const { classes } = this.props;
|
|
return (
|
|
<Icon className={classes.textinfo} name="question-circle" />
|
|
);
|
|
}
|
|
}
|
|
|
|
export default injectSheet(styles)(HelpIcon);
|