radh-ui
Version:
Stencil Component Starter
15 lines (14 loc) • 374 B
JavaScript
import { Component, h } from '@stencil/core';
export class RadhButton {
render() {
return (h("button", null,
h("slot", null)));
}
static get is() { return "radh-button"; }
static get originalStyleUrls() { return {
"$": ["radh-button.css"]
}; }
static get styleUrls() { return {
"$": ["radh-button.css"]
}; }
}