gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
6 lines (5 loc) • 431 B
JavaScript
/// <reference path="./borderAll.d.ts" />
import { generateIcon } from "../generate";
export function borderAll(height, width, className) {
return generateIcon(`<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-all' viewBox='0 0 16 16'> <path d='M0 0h16v16H0zm1 1v6.5h6.5V1zm7.5 0v6.5H15V1zM15 8.5H8.5V15H15zM7.5 15V8.5H1V15z'/> </svg>`, height, width, className);
}