import { LitElement, html, css } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; import Countries from '../data/countries.json'; @customElement('flag-input') export class FlagInput extends LitElement { @state() private flag: string = ''; static styles = css``; render() { return html`
`; } }