UNPKG

@anjuna/docs

Version:

Anjuna Documentation Web Components

21 lines (20 loc) 533 B
export class Nav { render() { return (h("nav", null, h("slot", null))); } static get is() { return "ad-nav"; } static get properties() { return { "active": { "type": Boolean, "attr": "active", "reflectToAttr": true }, "disabled": { "type": Boolean, "attr": "disabled", "reflectToAttr": true } }; } static get style() { return "/**style-placeholder:ad-nav:**/"; } }