UNPKG

@chayns-components/date

Version:

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

33 lines 824 B
import styled from 'styled-components'; export const StyledCalendar = styled.div` display: flex; width: 100%; opacity: ${({ $isDisabled }) => $isDisabled ? 0.5 : 1}; pointer-events: ${({ $isDisabled }) => $isDisabled ? 'none' : undefined}; user-select: none; `; export const StyledCalendarIconWrapper = styled.div` cursor: pointer; z-index: 2; `; export const StyledCalendarIconWrapperContent = styled.div` display: flex; flex-direction: row; flex-wrap: nowrap; height: fit-content; `; 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