UNPKG

@masaischool/lotus

Version:

Masai UI component library designed to work seamlessly with Chakra UI

10 lines (9 loc) 310 B
import React from 'react'; import { PlacementWithLogical } from '@chakra-ui/react'; export interface Props { title?: string; body: string; trigger: React.ReactElement; type?: PlacementWithLogical; } export declare const Tooltip: ({ title, body, trigger, type }: Props) => JSX.Element;