Files
SCM-Manager/scm-ui/ui-components/src/HelpIcon.js

17 lines
322 B
JavaScript
Raw Normal View History

2018-12-20 11:32:01 +01:00
//@flow
import React from "react";
import Icon from "./Icon";
2018-12-20 11:32:01 +01:00
type Props = {
className?: string
2018-12-20 11:32:01 +01:00
};
export default class HelpIcon extends React.Component<Props> {
2018-12-20 11:32:01 +01:00
render() {
const { className } = this.props;
return (
<Icon name="question-circle" color="blue-light" className={className} />
);
2018-12-20 11:32:01 +01:00
}
}