@gear-js/vara-ui
Version:
React UI components used across Vara applications
10 lines (9 loc) • 455 B
TypeScript
import { ReactNode, ReactElement } from 'react';
type Props = {
children: ReactElement<any>;
value?: ReactNode;
position?: 'top-start' | 'top' | 'top-end' | 'right-start' | 'right' | 'right-end' | 'bottom-start' | 'bottom' | 'bottom-end' | 'left-start' | 'left' | 'left-end';
};
declare function Tooltip({ value, position, children }: Props): import("react/jsx-runtime").JSX.Element;
export { Tooltip };
export type { Props as TooltipProps };