gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
9 lines (8 loc) • 694 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.capsulePill = void 0;
var generate_1 = require("../generate");
function capsulePill(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-capsule-pill' viewBox='0 0 16 16'> <path d='M11.02 5.364a3 3 0 0 0-4.242-4.243L1.121 6.778a3 3 0 1 0 4.243 4.243l5.657-5.657Zm-6.413-.657 2.878-2.879a2 2 0 1 1 2.829 2.829L7.435 7.536zM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8m-.5 1.042a3 3 0 0 0 0 5.917zm1 5.917a3 3 0 0 0 0-5.917z'/> </svg>", height, width, className);
}
exports.capsulePill = capsulePill;