prettier/tests/multiparser_js_css/styled-components.js

14 lines
173 B
JavaScript

const Button = styled.button`
color: palevioletred ;
font-size : 1em ;
`;
const TomatoButton = Button.extend`
color : tomato ;
border-color : tomato
;
`;