gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
9 lines (8 loc) • 591 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.boundingBox = void 0;
var generate_1 = require("../generate");
function boundingBox(height, width, className) {
return (0, generate_1.generateIcon)("<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-bounding-box' viewBox='0 0 16 16'> <path d='M5 2V0H0v5h2v6H0v5h5v-2h6v2h5v-5h-2V5h2V0h-5v2zm6 1v2h2v6h-2v2H5v-2H3V5h2V3zm1-2h3v3h-3zm3 11v3h-3v-3zM4 15H1v-3h3zM1 4V1h3v3z'/> </svg>", height, width, className);
}
exports.boundingBox = boundingBox;