Without setting an image color, it appears that the icon does not render: <img width="301" alt="Image" src="https://github.com/user-attachments/assets/765270af-93d1-4acb-89ca-7ebbb8fb9236" /> ```tsx const USER_MENU: MenuAction[] = [ { id: "add", title: "Add", image: "plus", // imageColor: "black", }, ]; ``` After setting a color: <img width="301" alt="Image" src="https://github.com/user-attachments/assets/caa6e697-9e5d-4111-a9ec-1f11810886cd" /> ```tsx const USER_MENU: MenuAction[] = [ { id: "add", title: "Add", image: "plus", imageColor: "black", }, ]; ``` I believe this may be due to the new architecture migration. In an older project of mine, I do not have the above issue.