soft-components
Version: 
Simple soft flexible set of web components
24 lines (18 loc) • 443 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-b7ded8f6.js');
const scColorCss = ":host{display:block}";
const ScColor = class {
  constructor(hostRef) {
    index.registerInstance(this, hostRef);
    /**
     * Label for input
     */
    this.label = '';
  }
  render() {
    return (index.h(index.Host, null));
  }
};
ScColor.style = scColorCss;
exports.sc_color = ScColor;