UNPKG

gd-bs

Version:

Bootstrap JavaScript, TypeScript and Web Components library.

5 lines 518 B
/// <reference path="./heartbreakFill.d.ts" /> import { generateIcon } from "../generate"; export function heartbreakFill(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-heartbreak-fill' viewBox='0 0 16 16'> <path d='M8.931.586 7 3l1.5 4-2 3L8 15C22.534 5.396 13.757-2.21 8.931.586M7.358.77 5.5 3 7 7l-1.5 3 1.815 4.537C-6.533 4.96 2.685-2.467 7.358.77'/> </svg>`, height, width, className); }