@TalluriRahulSubmitted almost 2 years ago
how can i include the svg cart icon?
how can i include the svg cart icon?
I know two ways you can do this.
On your button, you can simply put the svg
code aside to text: (this approach has more code, but leave you free to style other propperties of the svg with css, like the icon color, background...)
< button > < svg > < / svg > Add to Cart< / button>
or
You can put an < img />
tag and link to you svg file from outside (less code and not free to style the icon color) :
< button >
< img src="./images/icon-cart.svg" alt="Icon cart" />
Add to Cart
< / button>
Hope this helps.