UNPKG

soft-components

Version:

Simple soft flexible set of web components

20 lines (16 loc) 379 B
import { r as registerInstance, h, H as Host } from './index-d081c54b.js'; const scColorCss = ":host{display:block}"; const ScColor = class { constructor(hostRef) { registerInstance(this, hostRef); /** * Label for input */ this.label = ''; } render() { return (h(Host, null)); } }; ScColor.style = scColorCss; export { ScColor as sc_color };