-}
diff --git a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.scss b/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.scss
deleted file mode 100644
index 71ad5e3cd6b0..000000000000
--- a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.scss
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-@use '@angular/material' as mat;
-
-.banner-container {
- @include mat.button-density(-1);
-
- .error-banner-message {
- word-break: break-word;
- }
-
- ul {
- list-style-type: disc;
- list-style-position: inside;
- }
-}
diff --git a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.spec.ts b/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.spec.ts
deleted file mode 100644
index a1d0d010e58b..000000000000
--- a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.spec.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { ErrorBanner } from './error-banner.component';
-
-describe('ErrorBanner', () => {
- let component: ErrorBanner;
- let fixture: ComponentFixture;
-
- beforeEach(() => {
- TestBed.configureTestingModule({
- imports: [ErrorBanner]
- });
- fixture = TestBed.createComponent(ErrorBanner);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.ts b/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.ts
deleted file mode 100644
index 831a907d287a..000000000000
--- a/nifi-frontend/src/main/frontend/libs/shared/src/components/error-banner/error-banner.component.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { Component, EventEmitter, Input, Output } from '@angular/core';
-import { NgClass } from '@angular/common';
-import { MatButtonModule } from '@angular/material/button';
-
-@Component({
- selector: 'error-banner',
- imports: [MatButtonModule, NgClass],
- templateUrl: './error-banner.component.html',
- styleUrls: ['./error-banner.component.scss'],
- standalone: true
-})
-export class ErrorBanner {
- @Input() messages: string[] | null = null;
- @Input() showErrorIcon = true;
- @Input() showBorder = true;
- @Input() allowDismiss = true;
-
- @Output() dismiss: EventEmitter = new EventEmitter();
-
- dismissClicked(): void {
- this.dismiss.next();
- }
-}
diff --git a/nifi-frontend/src/main/frontend/libs/shared/src/components/index.ts b/nifi-frontend/src/main/frontend/libs/shared/src/components/index.ts
index bfa603090294..d739d1076c2d 100644
--- a/nifi-frontend/src/main/frontend/libs/shared/src/components/index.ts
+++ b/nifi-frontend/src/main/frontend/libs/shared/src/components/index.ts
@@ -28,7 +28,6 @@ export * from './codemirror/themes/baseTheme';
export * from './yes-no-dialog/yes-no-dialog.component';
export * from './tooltips/property-hint-tip/property-hint-tip.component';
export * from './tooltips/text-tip/text-tip.component';
-export * from './error-banner/error-banner.component';
export * from './banner/banner.component';
export * from './wizard/wizard.component';
export * from './connector-wizard/connector-wizard.types';