@fluentui/react-northstar
Version:
A themable React component library.
24 lines (23 loc) • 799 B
JavaScript
import { compose } from '@fluentui/react-bindings';
import { commonPropTypes } from '../../utils';
import { Box } from '../Box/Box';
export var datepickerCalendarGridClassName = 'ui-datepicker__calendargrid';
/**
* A DatepickerCalendarGrid is used to display the whole calendar grid.
*/
export var DatepickerCalendarGrid = /*#__PURE__*/function () {
var DatepickerCalendarGrid = compose(Box, {
className: datepickerCalendarGridClassName,
displayName: 'DatepickerCalendarGrid',
overrideStyles: true,
shorthandConfig: {
mappedProp: 'content'
}
});
DatepickerCalendarGrid.defaultProps = {
as: 'table'
};
DatepickerCalendarGrid.propTypes = commonPropTypes.createCommon();
return DatepickerCalendarGrid;
}();
//# sourceMappingURL=DatepickerCalendarGrid.js.map