@mui/x-date-pickers
Version:
The community edition of the MUI X Date and Time Picker components.
13 lines • 363 B
JavaScript
import { styled } from '@mui/material/styles';
import { DIALOG_WIDTH, VIEW_HEIGHT } from "../../constants/dimensions.js";
export const PickerViewRoot = styled('div', {
slot: 'internal',
shouldForwardProp: undefined
})({
overflow: 'hidden',
width: DIALOG_WIDTH,
maxHeight: VIEW_HEIGHT,
display: 'flex',
flexDirection: 'column',
margin: '0 auto'
});