diff --git a/docs/frontend-system/architecture/15-plugins.md b/docs/frontend-system/architecture/15-plugins.md
index 2d16223b68..1e2f2d45c7 100644
--- a/docs/frontend-system/architecture/15-plugins.md
+++ b/docs/frontend-system/architecture/15-plugins.md
@@ -130,7 +130,7 @@ A plugin might not always behave exactly the way you want. It could be that you
```tsx
import plugin from '@backstage/plugin-catalog';
import { PageBlueprint } from '@backstage/frontend-plugin-api';
-import CustomCatalogIcon from '@material-ui/icons/Category';
+import { RiLayoutGridLine } from '@remixicon/react';
export default plugin.withOverrides({
// These overrides are merged with the original extensions
@@ -139,7 +139,7 @@ export default plugin.withOverrides({
plugin.getExtension('page:catalog').override({
factory: origFactory =>
origFactory({
- icon: ,
+ icon: ,
loader: () =>
import('./CustomCatalogIndexPage').then(m => ),
}),