gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
4 lines • 455 B
text/typescript
import { generateIcon } from "../generate";
export function displayFill(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-display-fill' viewBox='0 0 16 16'> <path d='M6 12q0 1-.25 1.5H5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-.75Q10 13 10 12h4c2 0 2-2 2-2V4c0-2-2-2-2-2H2C0 2 0 4 0 4v6c0 2 2 2 2 2z'/> </svg>`, height, width, className);
}