From 103493843de42bd13a51675b30d1b42942f1bdfb Mon Sep 17 00:00:00 2001 From: pk Date: Tue, 11 Jun 2024 13:22:35 +0200 Subject: [PATCH] Fix name --- tp-avatar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tp-avatar.js b/tp-avatar.js index 5e2cd9b..1f0a7bd 100644 --- a/tp-avatar.js +++ b/tp-avatar.js @@ -8,7 +8,7 @@ import '@tp/tp-icon/tp-icon.js'; import { LitElement, html, css, svg } from 'lit'; import { classMap } from 'lit/directives/class-map.js'; -class EfAvatar extends LitElement { +class TpAvatar extends LitElement { static get styles() { return [ css` @@ -60,7 +60,7 @@ class EfAvatar extends LitElement { return html`
- + `; } @@ -125,4 +125,4 @@ class EfAvatar extends LitElement { } } -window.customElements.define('ef-avatar', EfAvatar); +window.customElements.define('tp-avatar', TpAvatar);