@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
12 lines (11 loc) • 409 B
TypeScript
import * as React from 'react';
import { Box, PropsOf } from '../box';
import { UseTooltipProps } from './hooks';
export declare type TooltipProps = PropsOf<typeof Box> & UseTooltipProps & {
children?: React.ReactNode;
label?: string;
'aria-label'?: string;
shouldWrapChildren?: boolean;
hasArrow?: boolean;
};
export declare function Tooltip(props: TooltipProps): JSX.Element;