UNPKG

@chayns-components/date

Version:

A set of beautiful React components for developing your own applications with chayns.

33 lines 741 B
import styled from 'styled-components'; export const StyledCalendar = styled.div` display: flex; width: 100%; opacity: ${_ref => { let { $isDisabled } = _ref; return $isDisabled ? 0.5 : 1; }}; pointer-events: ${_ref2 => { let { $isDisabled } = _ref2; return $isDisabled ? 'none' : undefined; }}; user-select: none; `; export const StyledCalendarIconWrapper = styled.div` cursor: pointer; z-index: 2; `; export const StyledCalendarIconWrapperPseudo = styled.div` width: 15px; `; export const StyledPseudoMonthYearPicker = styled.div` height: fit-content; width: 0; overflow: hidden; pointer-events: none; user-select: none; `; //# sourceMappingURL=Calendar.styles.js.map