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 => ), - }, - }); ```