@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: '920c8524ac48990e81ef9ba12cf72d533f824050' }, h("kv-icon", { key: 'def82cec1666feb0101bbe63531ca2ca7e270278', 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"]
};
}
}