UNPKG

bulmil

Version:

![bulmil](https://user-images.githubusercontent.com/2362138/65766959-c721a080-e16f-11e9-9fb9-45a5a2ad0391.jpg)

25 lines (21 loc) 851 B
import { r as registerInstance, h } from './index-c5baf484.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}"; class Icon { constructor(hostRef) { registerInstance(this, hostRef); /** * CSS Classes */ this.class = ''; } render() { return (h("span", { class: { icon: true, [this.color]: Boolean(this.color), [this.size]: Boolean(this.size), [this.class]: Boolean(this.class), } }, h("slot", null))); } } Icon.style = iconCss; export { Icon as bm_icon };