UNPKG

@0xsplits/splits-kit

Version:

UI Components for working with 0xSplits contracts

15 lines (14 loc) 563 B
/// <reference types="react" /> export default function Tooltip({ children, content, position, delay, isDisabled, showTooltipOnContentHover, }: { children: JSX.Element; content: string | JSX.Element; position?: 'bottom' | 'left' | 'right'; delay?: number; isDisabled?: boolean; showTooltipOnContentHover?: boolean; }): JSX.Element; export declare const InformationLinkTooltip: ({ tooltipContent, linkHref, iconSize, }: { tooltipContent: string | JSX.Element; linkHref: string; iconSize?: string | undefined; }) => JSX.Element;