All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Calendar.CalendarDateCell.jsx Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import React from 'react'
import classNames from 'classnames'
import PropTypes from 'prop-types'

import { isDayOff, isCurrentDay } from './utils'

export function CalendarDateCell({ children, value, markDaysOff }) {
    return (
        
{children}
) } CalendarDateCell.propTypes = { children: PropTypes.any, value: PropTypes.any, markDaysOff: PropTypes.any, } export default CalendarDateCell




© 2015 - 2025 Weber Informatics LLC | Privacy Policy