gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
6 lines (5 loc) • 594 B
JavaScript
/// <reference path="./bellSlashFill.d.ts" />
import { generateIcon } from "../generate";
export function bellSlashFill(height, width, className) {
return generateIcon(`<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-bell-slash-fill' viewBox='0 0 16 16'> <path d='M5.164 14H15c-1.5-1-2-5.902-2-7q0-.396-.06-.776zm6.288-10.617A5 5 0 0 0 8.995 2.1a1 1 0 1 0-1.99 0A5 5 0 0 0 3 7c0 .898-.335 4.342-1.278 6.113zM10 15a2 2 0 1 1-4 0zm-9.375.625a.53.53 0 0 0 .75.75l14.75-14.75a.53.53 0 0 0-.75-.75z'/> </svg>`, height, width, className);
}