Drag 'n' drop some files here, or click to select files
\n *Drag and drop some files here, or click to select files
\n *= (props: P) => JSX.Element;\n\nexport default function withTooltip
(\n Component: FunctionComponent
\n): FunctionComponent
{\n function WrappedComponent({ tooltip, ignoreTooltip, tooltipIconColor, ...props }: WithTooltipProps) {\n function getTooltipStyle(): string {\n let result = \"lan-withtooltip__tooltipcontainer\";\n if (!tooltip) {\n result += \" lan-withtooltip__tooltipcontainer--hidden\";\n }\n\n if (ignoreTooltip) {\n result += \" lan-withtooltip__tooltipcontainer--none\";\n }\n\n return result;\n }\n\n return (\n