@universal-material/web
Version:
Material web components
22 lines • 641 B
JavaScript
import { __decorate } from "tslib";
import { html, LitElement } from 'lit';
import { property } from 'lit/decorators.js';
import { styles } from './set-base.styles.js';
export class UmSetBase extends LitElement {
constructor() {
super(...arguments);
/**
* Set the alignment of the set at the `start`, `center` or at the `end`.
*/
this.alignment = 'start';
}
static { this.styles = [styles]; }
render() {
return html `
<slot></slot>`;
}
}
__decorate([
property({ reflect: true })
], UmSetBase.prototype, "alignment", void 0);
//# sourceMappingURL=set-base.js.map