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

11 lines (10 loc) 385 B
import * as React from 'react'; import { type MenuItemProps } from '@mui/material/MenuItem'; import SvgIcon from '@mui/material/SvgIcon'; export type MdMenuItemProps = { children: string[] | string; startIcon?: typeof SvgIcon; loading?: boolean; } & Omit<MenuItemProps, 'children'>; declare const MdMenuItem: React.FC<MdMenuItemProps>; export default MdMenuItem;