From 483297f8451f3ac331207fff73b69ac6ff0beb54 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 19 May 2026 11:13:45 +0200 Subject: [PATCH] Trim Remix icon migration diff in changeset Show only import and icon param changes for the Remix Icon example. Signed-off-by: Patrik Oldsberg Co-authored-by: Cursor --- .changeset/remove-nav-item-blueprint-api.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.changeset/remove-nav-item-blueprint-api.md b/.changeset/remove-nav-item-blueprint-api.md index cff78131be..c032a05840 100644 --- a/.changeset/remove-nav-item-blueprint-api.md +++ b/.changeset/remove-nav-item-blueprint-api.md @@ -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: , - routeRef, - path: '/example', - loader: () => import('./Page').then(m => ), - }, - }); ```