UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

10 lines 304 B
import { styled } from '@mui/material/styles'; import { DIALOG_WIDTH, VIEW_HEIGHT } from '../../constants/dimensions'; export const PickerViewRoot = styled('div')({ overflow: 'hidden', width: DIALOG_WIDTH, maxHeight: VIEW_HEIGHT, display: 'flex', flexDirection: 'column', margin: '0 auto' });