UNPKG

@material/web

Version:
16 lines 475 B
/** * @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 class OutlinedSelect extends Select { constructor() { super(...arguments); this.fieldTag = literal `md-outlined-field`; } } //# sourceMappingURL=outlined-select.js.map