JSFiddle - React, Tailwind, and code Playground

by MD Hasan Patwary

HTML

<i class="my-svg-icon"></i>

CSS

.my-svg-icon {
    height: 25px;
    width: 25px;
    color: red !important;
    display: inline-block;
    background: none;
    -webkit-mask: url('/mysvg.svg') no-repeat center;
    mask: url('/mysvg.svg') no-repeat center;
    mask-size: contain;
    background-color: currentColor;
}