bulmil
Version:

24 lines (18 loc) • 812 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-8e7d875f.js');
const iconCss = ".icon{-ms-flex-align:center;align-items:center;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}";
const Icon = class {
constructor(hostRef) {
index.registerInstance(this, hostRef);
}
render() {
return (index.h("span", { class: {
icon: true,
[this.color]: Boolean(this.color),
[this.size]: Boolean(this.size),
} }, index.h("slot", null)));
}
};
Icon.style = iconCss;
exports.bm_icon = Icon;
;