norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
15 lines (11 loc) • 379 B
text/typescript
import { ReactNode } from 'react';
import { Theme } from '@emotion/react';
import { SxProps } from '@mui/material';
import { DropVariant, MuiDropDownBaseProps } from '../types';
export interface DropDownBaseProps extends MuiDropDownBaseProps {
sx?: SxProps<Theme>;
open: boolean;
onClose?: React.ReactEventHandler<{}>;
children?: ReactNode;
variant?: DropVariant;
}