@kelvininc/ui-components
Version:
Kelvin UI Components
23 lines (22 loc) • 681 B
JavaScript
import { Host, h } from "@stencil/core";
import { EIconName } from "../icon/icon.types";
/**
* @part dot - The dot container.
*/
export class KvDirtyDot {
render() {
return (h(Host, { key: '9744993691fcad91fb41cf486c42f06e626de62e' }, h("kv-icon", { key: '2e82415195d005db5067f183fedf48b142b76764', name: EIconName.Circle, class: "dot", part: "dot" })));
}
static get is() { return "kv-dirty-dot"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["dirty-dot.scss"]
};
}
static get styleUrls() {
return {
"$": ["dirty-dot.css"]
};
}
}