UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

8 lines (7 loc) 273 B
import * as React from 'react'; import { TooltipProps } from '@mui/material/Tooltip'; export type MdTooltipProps = React.PropsWithChildren<{ type?: 'light' | 'dark'; }> & TooltipProps; declare const MdTooltip: React.FC<MdTooltipProps>; export default MdTooltip;