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