material-web/textfield/internal/outlined-text-field.ts
Andrew Jakubowicz 6ec3f06429 fix!: rename "lib" directory to "internal"
BREAKING CHANGE: Rename `@material/web/<component>/lib` to `@material/web/<component>/internal`. Prefer not using internal files.

PiperOrigin-RevId: 550633216
2023-07-24 12:02:59 -07:00

19 lines
376 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../field/outlined-field.js';
import {literal} from 'lit/static-html.js';
import {TextField} from './text-field.js';
/**
* An outlined text field component
*/
export class OutlinedTextField extends TextField {
protected readonly fieldTag = literal`md-outlined-field`;
}