aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/search-bar/search-bar.component.html
blob: 1f952c46f5403f334cd745f8a722b83a34d56c17 (plain)
1
2
3
4
5
<div class="sdc-search-bar-container {{class}}">
    <input class="sdc-search-bar-input" type="text" [placeholder]="placeholder" [(ngModel)]="searchQuery" (ngModelChange)="searchQueryChange($event)"/>
    <span class="sdc-clear-search-x" *ngIf="searchQuery" (click)="clearSearchQuery()">x</span>
    <button class="sdc-search-bar-button" (click)="searchButtonClick()"></button>
</div>