How should i organize Styled Components in React project? I mean for example - i have Navbar component to which i want add style. Should i create separate file NavbarStyle and import it to Navbar, create NavbarStyle in Navbar component or something else? Or it's just for general components like buttons?
And for this buttons and others - should i create separate files for example in styledComponents folder or one file with all of them and import just needed element? I know mostly it depends of our preference but i want hear some best practice advices (it look like StyledComponents docs say nothing about menage them in project).
