JSFiddle - React, Tailwind, and code Playground

HTML

<svg class="triangle">
    <path d="M 24 4 L 43 37 L 5 37 z" />
</svg>

CSS

.triangle {
    background-color: transparent;
    height: 41px;
    width: 48px;
}
.triangle path {
    fill: #F27734;
    stroke: #F27734;
    stroke-linejoin: round;
    stroke-width: 8px;
}