18 lines
410 B
TypeScript
18 lines
410 B
TypeScript
import * as React from 'react';
|
|
import { TypeAttributes, StandardProps } from '../@types/common';
|
|
|
|
export interface TooltipProps extends StandardProps {
|
|
/** Dispaly placement */
|
|
placement?: TypeAttributes.Placement;
|
|
|
|
/** Wheather visible */
|
|
visible?: boolean;
|
|
|
|
/** Primary content */
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
declare const Tooltip: React.ComponentType<TooltipProps>;
|
|
|
|
export default Tooltip;
|