gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
5 lines • 511 B
text/typescript
/// <reference path="./bellFill.d.ts" />
import { generateIcon } from "../generate";
export function bellFill(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-bell-fill' viewBox='0 0 16 16'> <path d='M8 16a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2m.995-14.901a1 1 0 1 0-1.99 0A5 5 0 0 0 3 6c0 1.098-.5 6-2 7h14c-1.5-1-2-5.902-2-7 0-2.42-1.72-4.44-4.005-4.901'/> </svg>`, height, width, className);
}