gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
4 lines • 440 B
text/typescript
import { generateIcon } from "../generate";
export function windows(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-windows' viewBox='0 0 16 16'> <path d='M6.555 1.375 0 2.237v5.45h6.555zM0 13.795l6.555.933V8.313H0zm7.278-5.4.026 6.378L16 16V8.395zM16 0 7.33 1.244v6.414H16z'/> </svg>`, height, width, className);
}