| /** |
| * @license |
| * Copyright 2022 Google LLC |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| import {css, html, LitElement} from 'lit'; |
| import {customElement, property} from 'lit/decorators.js'; |
| |
| declare global { |
| interface HTMLElementTagNameMap { |
| 'gr-icon': GrIcon; |
| } |
| } |
| |
| /** |
| * A material icon. The advantage of using gr-icon over a native span is that |
| * gr-icon uses :host::before trick to avoid that the icon name shows up in |
| * chrome search. |
| * TODO: Improve type-checking by restricting which strings can be passed into |
| * `icon`. |
| * |
| * @attr {String} icon - the icon to display |
| * @attr {Boolean} filled - whether the icon should be filled |
| * @attr {Boolean} small - whether the icon should be smaller than usual |
| */ |
| @customElement('gr-icon') |
| export class GrIcon extends LitElement { |
| @property({type: String, reflect: true}) |
| icon?: string; |
| |
| @property({type: Boolean, reflect: true}) |
| filled?: boolean; |
| |
| static override get styles() { |
| return [ |
| css` |
| :host { |
| /* Fallback rule for color */ |
| color: var(--deemphasized-text-color); |
| font-family: var(--icon-font-family, 'Material Symbols Outlined'); |
| font-weight: normal; |
| font-style: normal; |
| font-size: 20px; |
| line-height: 1; |
| letter-spacing: normal; |
| text-transform: none; |
| display: inline-block; |
| white-space: nowrap; |
| word-wrap: normal; |
| direction: ltr; |
| -webkit-font-feature-settings: 'liga'; |
| -webkit-font-smoothing: antialiased; |
| font-variation-settings: 'FILL' 0; |
| vertical-align: top; |
| } |
| :host([small]) { |
| font-size: 16px; |
| position: relative; |
| top: 2px; |
| } |
| :host([filled]) { |
| font-variation-settings: 'FILL' 1; |
| } |
| /* This is the trick such that the name of the icon doesn't appear in |
| * search |
| */ |
| :host::before { |
| content: attr(icon); |
| } |
| `, |
| ]; |
| } |
| |
| override render() { |
| return html``; |
| } |
| } |