JSFiddle - React, Tailwind, and code Playground

HTML

<button>Button with text</button><button><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M17 2H13.5L12.5 1H7.5L6.5 2H3V4H17V2ZM4 17C4 17.5304 4.21071 18.0391 4.58579 18.4142C4.96086 18.7893 5.46957 19 6 19H14C14.5304 19 15.0391 18.7893 15.4142 18.4142C15.7893 18.0391 16 17.5304 16 17V5H4V17Z"></path></svg></button>

CSS

button {
    line-height: 1.25;
    font-size: 16px;
    padding: 5px;
    border: 1px solid grey;
}

svg {
    width: 20px;
    height: 20px;
}