gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
9 lines (8 loc) • 706 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.heptagonFill = void 0;
var generate_1 = require("../generate");
function heptagonFill(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-heptagon-fill' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M7.779.052a.5.5 0 0 1 .442 0l6.015 2.97a.5.5 0 0 1 .267.34l1.485 6.676a.5.5 0 0 1-.093.415l-4.162 5.354a.5.5 0 0 1-.395.193H4.662a.5.5 0 0 1-.395-.193L.105 10.453a.5.5 0 0 1-.093-.415l1.485-6.676a.5.5 0 0 1 .267-.34z'/> </svg>", height, width, className);
}
exports.heptagonFill = heptagonFill;