@chayns-components/date
Version:
A set of beautiful React components for developing your own applications with chayns.
16 lines • 404 B
JavaScript
import { motion } from 'motion/react';
import styled, { css } from 'styled-components';
export const StyledOpeningInputs = styled(motion.div)`
display: flex;
${({
$editMode
}) => $editMode && css`
flex-direction: column;
`}
`;
export const StyledOpeningInputPreview = styled.div`
color: ${({
theme
}) => theme.text};
`;
//# sourceMappingURL=OpeningInputs.styles.js.map