Reputation: 2072
I want to get the result like shown in the image below. I'm using Button
from react-bootstrap
.
<Button size="lg" className={`${styles.premium} w-100 mt-5 mb-3`}>
Abonnement Premium
</Button>
How can i add a SVG
image to a Button as an icon in React?
Upvotes: 0
Views: 6136
Reputation: 623
import the image
import yourImg from '../to/your/image.svg';
Just add it in front of the words
<Button size="lg" className={`${styles.premium} w-100 mt-5 mb-3`}>
<img src={yourImg} /> Abonnement Premium
</Button>
Upvotes: 4