gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
4 lines • 497 B
text/typescript
import { generateIcon } from "../generate";
export function lightningChargeFill(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-lightning-charge-fill' viewBox='0 0 16 16'> <path d='M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z'/> </svg>`, height, width, className);
}