gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
5 lines • 591 B
text/typescript
/// <reference path="./suitClubFill.d.ts" />
import { generateIcon } from "../generate";
export function suitClubFill(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-suit-club-fill' viewBox='0 0 16 16'> <path d='M11.5 12.5a3.5 3.5 0 0 1-2.684-1.254 20 20 0 0 0 1.582 2.907c.231.35-.02.847-.438.847H6.04c-.419 0-.67-.497-.438-.847a20 20 0 0 0 1.582-2.907 3.5 3.5 0 1 1-2.538-5.743 3.5 3.5 0 1 1 6.708 0A3.5 3.5 0 1 1 11.5 12.5'/> </svg>`, height, width, className);
}