Skip to content

Commit bd5f51e

Browse files
author
Mikhail Bashkirov
committed
fix(icon): use LitElement
1 parent c62d335 commit bd5f51e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/icon/src/LionIcon.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import { html, css, render, unsafeHTML, until } from '@lion/core';
2-
import { LionLitElement } from '@lion/core/src/LionLitElement.js';
1+
import { html, css, render, unsafeHTML, until, LitElement } from '@lion/core';
32

43
const isDefinedPromise = action => typeof action === 'object' && Promise.resolve(action) === action;
54

65
/**
76
* Custom element for rendering SVG icons
87
* @polymerElement
98
*/
10-
export class LionIcon extends LionLitElement {
9+
export class LionIcon extends LitElement {
1110
static get properties() {
1211
return {
1312
svg: {

0 commit comments

Comments
 (0)