1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/internals/components/PickerViewRoot/PickerViewRoot.js
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

16 lines
No EOL
457 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PickerViewRoot = void 0;
var _styles = require("@mui/material/styles");
var _dimensions = require("../../constants/dimensions");
const PickerViewRoot = exports.PickerViewRoot = (0, _styles.styled)('div')({
overflow: 'hidden',
width: _dimensions.DIALOG_WIDTH,
maxHeight: _dimensions.VIEW_HEIGHT,
display: 'flex',
flexDirection: 'column',
margin: '0 auto'
});