UNPKG

mui-tiptap

Version:

A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap

14 lines (13 loc) 707 B
import { type SelectProps } from "@mui/material/Select"; import { type SxProps } from "@mui/material/styles"; import { type MenuSelectClasses } from "./MenuSelect.classes"; export interface MenuSelectProps<T> extends Omit<SelectProps<T>, "margin" | "variant" | "size" | "classes"> { /** An optional tooltip to show when hovering over this Select. */ tooltipTitle?: string; /** Override or extend existing styles. */ classes?: Partial<MenuSelectClasses>; /** Provide custom styles. */ sx?: SxProps; } /** A Select that is styled to work well with other menu bar controls. */ export default function MenuSelect<T>(inProps: MenuSelectProps<T>): import("react/jsx-runtime").JSX.Element;