UNPKG

mfg-ui-components

Version:

React UI library with reusable components

11 lines (10 loc) 342 B
import "./ToolTip.scss"; export interface Props { tootTipContent: any; tooltipLabel: any; tooltipClass?: any; tooltipId?: any; tooltipClick?: any; } declare const ToolTip: ({ tootTipContent, tooltipLabel, tooltipClass, tooltipId, tooltipClick, }: Props) => import("react/jsx-runtime").JSX.Element; export default ToolTip;