export const longhandCssPropObjectCallExpression = `
`; export const longhandCssPropTaggedTemplateExpression = ` `; export const longhandStyledObjectCallExpression = ` const StyledComponent = styled.div({ animationDuration: '2s', animationName: fadeOut, animationTimingFunction: 'ease-in-out', }); `; export const longhandStyledTaggedTemplateExpression = ` const StyledComponent = styled.div\` animation-duration: 2s; animation-name: \${fadeOut}; animation-timing-function: ease-in-out; \`; `; export const shorthandCssPropObjectCallExpression = ``; export const shorthandCssPropTaggedTemplateExpression = ``; export const shorthandStyledObjectCallExpression = ` const StyledComponent = styled.div({ animation: \`\${fadeOut} 2s ease-in-out\`, }); `; export const shorthandStyledTaggedTemplateExpression = ` const StyledComponent = styled.div\` animation: \${fadeOut} 2s ease-in-out; \`; `;