21 lines
390 B
TypeScript
21 lines
390 B
TypeScript
import { questionCircle } from "../components/icons";
|
|
|
|
type HelpIconProps = {
|
|
title?: string;
|
|
name?: string;
|
|
id?: string;
|
|
onClick?(): void;
|
|
};
|
|
|
|
export const HelpIcon = (props: HelpIconProps) => (
|
|
<button
|
|
className="help-icon"
|
|
onClick={props.onClick}
|
|
type="button"
|
|
title={`${props.title} — ?`}
|
|
aria-label={props.title}
|
|
>
|
|
{questionCircle}
|
|
</button>
|
|
);
|