Trim Remix icon migration diff in changeset

Show only import and icon param changes for the Remix Icon example.

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Patrik Oldsberg
2026-05-19 11:13:45 +02:00
parent 7089280c6e
commit 483297f845
+2 -12
View File
@@ -26,17 +26,7 @@ If you were still using `NavItemBlueprint`, migrate by moving `title` and `icon`
```diff
-import ExampleIcon from '@material-ui/icons/Extension';
+import { RiPuzzleLine } from '@remixicon/react';
-const navItem = NavItemBlueprint.make({
- params: { title: 'Example', icon: ExampleIcon, routeRef },
-});
const page = PageBlueprint.make({
params: {
+ title: 'Example',
...
- icon: ExampleIcon,
+ icon: <RiPuzzleLine />,
routeRef,
path: '/example',
loader: () => import('./Page').then(m => <m.Page />),
},
});
```