@chayns-components/date
Version:
A set of beautiful React components for developing your own applications with chayns.
16 lines • 379 B
JavaScript
import { motion } from 'motion/react';
import styled from 'styled-components';
export const StyledMonthWrapper = styled.div`
width: ${({
$width
}) => $width}px;
overflow-x: clip;
height: ${({
$height
}) => $height}px;
`;
export const StyledMotionWrapper = styled(motion.div)`
display: flex;
height: 100%;
`;
//# sourceMappingURL=MonthWrapper.styles.js.map