gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
5 lines • 517 B
text/typescript
/// <reference path="./volumeOffFill.d.ts" />
import { generateIcon } from "../generate";
export function volumeOffFill(height?:number, width?:number, className?:string) {
return generateIcon(`<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-volume-off-fill' viewBox='0 0 16 16'> <path d='M10.717 3.55A.5.5 0 0 1 11 4v8a.5.5 0 0 1-.812.39L7.825 10.5H5.5A.5.5 0 0 1 5 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06'/> </svg>`, height, width, className);
}