import { LitElement, html, css } from "lit"; import iconStyles from "../styles/icon.js"; export const tagName = "loading-icon"; export class LoadingIcon extends LitElement { static styles = [ iconStyles, css` svg { animation: spin 2s linear infinite; } @keyframes spin { 100% { transform: rotate(360deg); } } `, ]; render() { return html` `; } }