import { css, customElement, html, LitElement } from 'lit-element' @customElement('info-button') export class InfoButtonTemplate extends LitElement { static get styles() { return css` .asset-action-info { cursor: pointer; transition: 200ms; opacity: 0.4; backface-visibility: hidden; } .asset-action-info #info-icon:hover { opacity: 1; } ` } public render() { return html`
` } }