/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import '../../field/outlined-field.js'; import {literal} from 'lit/static-html.js'; import {Select} from './select.js'; // tslint:disable-next-line:enforce-comments-on-exported-symbols export abstract class OutlinedSelect extends Select { protected readonly fieldTag = literal`md-outlined-field`; }