soft-components
Version:
Simple soft flexible set of web components
40 lines (39 loc) • 835 B
JavaScript
import { Component, Host, h, Prop } from '@stencil/core';
export class ScColor {
constructor() {
/**
* Label for input
*/
this.label = '';
}
render() {
return (h(Host, null));
}
static get is() { return "sc-color"; }
static get originalStyleUrls() { return {
"$": ["sc-color.scss"]
}; }
static get styleUrls() { return {
"$": ["sc-color.css"]
}; }
static get properties() { return {
"label": {
"type": "string",
"mutable": false,
"complexType": {
"original": "string",
"resolved": "string",
"references": {}
},
"required": false,
"optional": true,
"docs": {
"tags": [],
"text": "Label for input"
},
"attribute": "label",
"reflect": false,
"defaultValue": "''"
}
}; }
}