I'm setting up a design system in NextJS14 (React). We are using CSS modules and have all colors stored in CSS variables (custom properties).
We have these nice-looking buttons in our Figma design. I want to use the exported SVG for the shape of our text buttons. preview of custom button shape svg
I made some progress by setting the background-image:
to the url of the SVG. However, I have not found a way to dynamically change the fill and stroke colors of the SVG based on the props passed into the custom Button component.
Here are some options. In your case I guess that the first two examples could be used. The last one is an alternative approach that only works in some cases.
Embed the SVG
Embed the SVG into the HTML and style the SVG elements using CSS.
CSS background-image
Just repeat creating different CSS selectors with different background images.
CSS backgrounds with gradients only
Combine a background image (the SVG document) with a solid background color defined in CSS. The SVG image is just a gradient going from transparent to white.