From bd5f51e3d7c3703a83dfec19b61f7fcdb7649f62 Mon Sep 17 00:00:00 2001 From: Mikhail Bashkirov Date: Thu, 27 Jun 2019 16:10:49 +0200 Subject: [PATCH] fix(icon): use LitElement --- packages/icon/src/LionIcon.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/icon/src/LionIcon.js b/packages/icon/src/LionIcon.js index a6b4fea4f..ea5cbf424 100644 --- a/packages/icon/src/LionIcon.js +++ b/packages/icon/src/LionIcon.js @@ -1,5 +1,4 @@ -import { html, css, render, unsafeHTML, until } from '@lion/core'; -import { LionLitElement } from '@lion/core/src/LionLitElement.js'; +import { html, css, render, unsafeHTML, until, LitElement } from '@lion/core'; const isDefinedPromise = action => typeof action === 'object' && Promise.resolve(action) === action; @@ -7,7 +6,7 @@ const isDefinedPromise = action => typeof action === 'object' && Promise.resolve * Custom element for rendering SVG icons * @polymerElement */ -export class LionIcon extends LionLitElement { +export class LionIcon extends LitElement { static get properties() { return { svg: {