Hex Core JS
    Preparing search index...

    Type Alias TooltipButtonProps

    TooltipButtonProps: {
        children: [
            (props: TooltipButtonTooltipProps) => JSX.Element,
            (props: TooltipButtonButtonProps) => JSX.Element,
        ];
        closeID?: any;
        disabled?: boolean;
        initialIsOpen?: boolean;
        openID?: any;
        toggleID?: any;
        tooltipContainerClassName?: string;
        tooltipContainerStyle?: React.CSSProperties;
    } & Omit<
        TooltipContainerProps,
        "isControlled"
        | "isOpen"
        | "className"
        | "style"
        | "children",
    > & Partial<ClassNameProps & StyleProps>

    Type Declaration

    • children: [
          (props: TooltipButtonTooltipProps) => JSX.Element,
          (props: TooltipButtonButtonProps) => JSX.Element,
      ]
    • OptionalcloseID?: any

      Changing the value of closeID will cause the tooltip to close.

    • Optionaldisabled?: boolean

      Passed on to the button, provided as a utility to avoid having to wrap the button rendering.

    • OptionalinitialIsOpen?: boolean

      Initial open state for the tooltip.

    • OptionalopenID?: any

      Changing the value of openID will cause the tooltip to open.

    • OptionaltoggleID?: any

      Changing the value of toggleID will cause the tooltip to toggle its open/closed state.

    • OptionaltooltipContainerClassName?: string

      CSS class name to pass to the tooltip container.

    • OptionaltooltipContainerStyle?: React.CSSProperties

      CSS properties to pass to the tooltip container.