mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import Icon from "./Icon";
|
|
|
|
type Props = {
|
|
className?: string
|
|
};
|
|
|
|
export default class HelpIcon extends React.Component<Props> {
|
|
render() {
|
|
const { className } = this.props;
|
|
return (
|
|
<Icon name="question-circle" color="blue-light" className={className} />
|
|
);
|
|
}
|
|
}
|