@chayns-components/date
Version:
A set of beautiful React components for developing your own applications with chayns.
26 lines (25 loc) • 840 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.StyledMonthName = exports.StyledMonthHead = exports.StyledMonth = void 0;
var _styledComponents = _interopRequireDefault(require("styled-components"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
const StyledMonth = exports.StyledMonth = _styledComponents.default.div`
height: ${({
$height
}) => $height}px;
aspect-ratio: 1;
`;
const StyledMonthHead = exports.StyledMonthHead = _styledComponents.default.div`
display: flex;
align-items: center;
justify-content: center;
column-gap: 7px;
`;
const StyledMonthName = exports.StyledMonthName = _styledComponents.default.div`
font-weight: bold;
text-align: center;
user-select: none;
`;
//# sourceMappingURL=Month.styles.js.map