import { html, LitElement } from "lit";
import { customElement, property } from "lit/decorators.js";
import { ifDefined } from "lit/directives/if-defined";
import { HeroIconName, icons } from "./generated/heroicons";
type HeroIconSize = "full" | "s" | "m" | "l";
@customElement("hero-icon")
export class Heroicon extends LitElement {
@property()
name: HeroIconName = "LightningBolt";
@property({ type: Boolean })
solid = false;
@property({ type: String })
size = "100%";
render() {
return html`
`;
}
createRenderRoot() {
return this;
}
}