UNPKG

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.

12 lines (11 loc) 386 B
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; }