@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
16 lines (15 loc) • 486 B
TypeScript
import React from 'react';
import { MenuProps } from '@mui/material/Menu';
type NumberFormatterMenuProps = MenuProps & {
/**
* If true, the overlay can be repositioned by dragging.
*/
draggable?: boolean;
};
/**
* A component that can be used to configure the value in a
* NumberFormatterContext. Updates will take effect in real-time
* as inputs in the menu are changed.
*/
export declare const NumberFormatterMenu: React.FC<NumberFormatterMenuProps>;
export {};