I need to style my input field border on the basis of input value length.
<div *ngFor="let o of options">
<input id="" type="text" [ngClass]="{{}}" placeholder="Search Value"(keyup)="search(o,$event)" />
</div>