diff --git a/libs/components/src/search/search.component.html b/libs/components/src/search/search.component.html
index 2ba4ef525af..18fc48ee7ab 100644
--- a/libs/components/src/search/search.component.html
+++ b/libs/components/src/search/search.component.html
@@ -1,6 +1,6 @@
-
-
diff --git a/libs/components/src/search/search.component.ts b/libs/components/src/search/search.component.ts
index ffd8dc6947e..325a790e4e7 100644
--- a/libs/components/src/search/search.component.ts
+++ b/libs/components/src/search/search.component.ts
@@ -1,6 +1,6 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
-import { NgIf } from "@angular/common";
+import { NgIf, NgClass } from "@angular/common";
import { Component, ElementRef, Input, ViewChild } from "@angular/core";
import {
ControlValueAccessor,
@@ -32,7 +32,7 @@ let nextId = 0;
},
],
standalone: true,
- imports: [InputModule, ReactiveFormsModule, FormsModule, I18nPipe, NgIf],
+ imports: [InputModule, ReactiveFormsModule, FormsModule, I18nPipe, NgIf, NgClass],
})
export class SearchComponent implements ControlValueAccessor, FocusableElement {
private notifyOnChange: (v: string) => void;