UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

8 lines (7 loc) 295 B
import { Props as TooltipProps } from "./Tooltip"; type Props = Omit<TooltipProps, "children"> & { color?: "danger" | "warning" | "success" | "subdued"; icon?: React.ReactNode; }; export declare const VuiInfoTooltip: (props: Props) => import("react/jsx-runtime").JSX.Element; export {};