'Reactjs styled-components return error ',' expected

[Reactjs] When I try to use styled-components to customize atlaskit button css return error ',' expected enter image description hereenter image description here

I tried to find a solution but no one seems to have the same error as me



Solution 1:[1]

Firstly, upload your actual code, not pictures of it when posting questions. Secondly, check the docs and examples for styled components library. You need to use backticks to wrap the CSS, not regular quotes or double quotes. i.e.

const b = styled(Button)`margin-top: 5px;`;

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jayce444