import React from "react"; type HelpIconProps = { title?: string; name?: string; id?: string; onClick?(): void; }; const ICON = ( ); export function HelpIcon(props: HelpIconProps) { return ( ); }