@rhds/elements
Version:
Red Hat Design System Elements
17 lines • 655 B
JavaScript
import { __decorate } from "tslib";
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { css } from "lit";
const style = css `:host{flex:1 1 auto;display:block;width:100%}`;
const currentYear = new Date().getFullYear();
let RhFooterCopyright = class RhFooterCopyright extends LitElement {
render() {
return html `<slot>© ${currentYear} Red Hat, Inc.</slot>`;
}
};
RhFooterCopyright.styles = style;
RhFooterCopyright = __decorate([
customElement('rh-footer-copyright')
], RhFooterCopyright);
export { RhFooterCopyright };
//# sourceMappingURL=rh-footer-copyright.js.map