angular/adev/shared-docs/components/text-field/text-field.component.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
267 B
HTML
Raw Normal View History

@if (!hideIcon()) {
<docs-icon class="docs-icon_high-contrast">search</docs-icon>
}
<input
#inputRef
type="text"
[attr.placeholder]="placeholder()"
[attr.name]="name()"
[ngModel]="value()"
(ngModelChange)="setValue($event)"
class="docs-text-field"
/>