<custom-alert icon="warn">
  <p>Something went wrong</p>
</custom-alert>
custom-alert {
  --bg: rebeccapurple;
  --text: white;
}
View Compiled
import { LitElement, html, css } from "https://cdn.skypack.dev/lit";

/**
 * An example custom alert component.
 *
 * @slot - This element has a slot, expecting a paragraph
 * @csspart button - The button
 */
export class CustomAlert extends LitElement {
  static get styles() {
    return css`
      :host {
        background: var(--bg, #f0f0f0);
        color: var(--text);
        display: grid;
        gap: 0.5rem;
        grid-template-columns: 1fr 24px auto 1fr;
        align-items: start;
        padding: 1rem 0.5rem;
      }
      :host([hidden]) {
        display: none;
      }
      :host([theme="danger"]) {
        --bg: red !important;
        --text: white !important;
      }
      :host([theme="warn"]) {
        --bg: gold !important;
        --text: black !important;
      }
      svg {
        grid-column: 2 / 3;
      }
      button {
        appearance: none;
        grid-column: 4;
        grid-row: 1;
        justify-self: end;
        margin-right: 8px;
      }
      ::slotted(*),
      p {
        grid-column: 3 / 4;
        margin: 0;
        max-width: 66ch;
        line-height: 1.6;
      }
    `;
  }

  static get properties() {
    return {
      /**
       * The icon to put next to the slot text
       */
      icon: { type: String },
      /**
       * The theme to apply to the alert
       */
      theme: { type: String }
    };
  }

  constructor() {
    super();
    this.setAttribute("role", "alert");
    this.setAttribute("aria-live", "polite");
  }

  _close() {
    this.hidden = true;
  }

  render() {
    return html`
      <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
        <symbol id="note" viewBox="0 0 24 24" fill="none" stroke="currentColor">
          <path
            strokeLinecap="round"
            strokeLinejoin="round"
            strokeWidth="2"
            d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"
          />
        </symbol>
        <symbol id="warn" viewBox="0 0 24 24" fill="none" stroke="currentColor">
          <path
            stroke-linecap="round"
            stroke-linejoin="round"
            stroke-width="2"
            d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
          />
        </symbol>
      </svg>

      <svg part="icon" height="24" width="24">
        <use href="#${this.icon}"></use>
      </svg>
      <slot></slot>
      <button part="button" @click="${this._close}">Close</button>
    `;
  }
}

window.customElements.define("custom-alert", CustomAlert);

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.