UNPKG

@conductionnl/nl-design-system

Version:

NL design system components created by Conduction

9 lines (8 loc) 237 B
import * as React from "react"; interface TooltipProps { content: JSX.Element; placement?: "top" | "right" | "bottom" | "left"; layoutClassName?: string; } export declare const InfoTooltip: React.FC<TooltipProps>; export {};