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