lit-heroicons
Advanced tools
Comparing version 0.5.4 to 0.5.5
@@ -29,4 +29,4 @@ import { html, LitElement } from "lit"; | ||
> | ||
${icons[this.name.toLowerCase()][1].map((e) => { | ||
html`<path ${e}></path>`; | ||
${icons[this.name.toLowerCase()][1].map((e: any) => { | ||
html`<path d=${e.d}></path>`; | ||
})} | ||
@@ -41,4 +41,4 @@ </svg>` | ||
> | ||
${icons[this.name.toLowerCase()][0].map((e) => { | ||
html`<path ${e}></path>`; | ||
${icons[this.name.toLowerCase()][0].map((e: any) => { | ||
html`<path d=${e.d}></path>`; | ||
})} | ||
@@ -45,0 +45,0 @@ </svg>`}` |
{ | ||
"name": "lit-heroicons", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"description": "Heroicons for Lit (Project based on heroicons)", | ||
@@ -5,0 +5,0 @@ "main": "heroicon.ts", |
179190