mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
scm-ui: new repository layout
This commit is contained in:
25
scm-ui/ui-components/src/HelpIcon.js
Normal file
25
scm-ui/ui-components/src/HelpIcon.js
Normal file
@@ -0,0 +1,25 @@
|
||||
//@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);
|
||||
Reference in New Issue
Block a user