10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
export type TooltipProps = {
|
|
showArrow?: boolean;
|
|
};
|
|
export type PopoverDirection =
|
|
| 'none'
|
|
| 'left-top'
|
|
| 'left-bottom'
|
|
| 'right-top'
|
|
| 'right-bottom';
|