import { html, LitElement, css } from "lit";
import { customElement } from "lit/decorators.js";
const tagName = "sonic-card-header-description";
@customElement(tagName)
export class CardHeaderDescription extends LitElement {
static styles = [
css`
:host() {
display: block;
font-size: 0.7em;
line-height: 1.1;
font-family: var(--sc-font-family-base, sans-serif);
font-weight: var(--sc-font-style-base, normal);
}
`,
];
render() {
return html``;
}
}