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