mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
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} />;
|
|
}
|
|
}
|