In normal React components if you have scss, you can import other scss files into them and gain access to scss variables like $color-primary: blue
...
What's the best method of doing that with styled-components?
Lets say I have some main variables for the app I want to use: font-size, font-family, colors, etc. And I want to be able to import those into a React Component and use them in the styled components of that file?
I know you can set variables in each individual file and use them, but that defeats the purpose of having "global variables" and using them.
Technically I know styled-components aren't scss, so you probably can't even import a scss file and use the variables from it - so how do you have global variables that all styled-components files can import and use?