I have a source of the svg icon svgIcon. I need to add this icon to the button. It would look very similar to this
I tried this:
css
.btn {
border: none;
color: grey;
padding: 12px 16px;
font-size: 16px;
cursor: pointer;
background-image: url("http://alexfeds.com/wp-
content/uploads/2018/04/save_icon.svg");
background-repeat: repeat-y;
}
<button class="btn"> Save</button>
How to have the svg icon inside the button and text description beside it?