/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {html} from 'lit'; import {Field} from './field.js'; /** * A filled field component. */ export class FilledField extends Field { protected override renderBackground() { return html`
`; } protected override renderStateLayer() { return html`
`; } protected override renderIndicator() { return html`
`; } }