From 66d94ed35d00ff9aaca552fc2551521e530221f5 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Tue, 30 Dec 2025 18:55:23 +0530 Subject: [PATCH] Fix formatting in customize-theme.md for icons section Signed-off-by: Ayush More --- docs/golden-path/create-app/customize-theme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/golden-path/create-app/customize-theme.md b/docs/golden-path/create-app/customize-theme.md index a79507de59f619..2d52a7f6711902 100644 --- a/docs/golden-path/create-app/customize-theme.md +++ b/docs/golden-path/create-app/customize-theme.md @@ -459,7 +459,7 @@ const app = createApp({ ### Adding Icons -You can add more icons, if the [default icons](https://github.com/backstage/backstage/blob/master/packages/app-defaults/src/defaults/icons.tsx) do not fit your needs, so that they can be used in other places like for Links in your entities. For this example we'll be using icons from[Material UI](https://v4.mui.com/components/material-icons/) and specifically the `AlarmIcon`. Here's how to do that: +You can add more icons, if the [default icons](https://github.com/backstage/backstage/blob/master/packages/app-defaults/src/defaults/icons.tsx) do not fit your needs, so that they can be used in other places like for Links in your entities. For this example we'll be using icons from [Material UI](https://v4.mui.com/components/material-icons/) and specifically the `AlarmIcon`. Here's how to do that: 1. First you will want to open your `App.tsx` in `/packages/app/src` 2. Then you want to import your icon, add this to the rest of your imports: `import AlarmIcon from '@material-ui/icons/Alarm';`