I'm trying to create custom nav links for my custom routes. I was following this demo code:
https://github.com/payloadcms/payload/blob/master/test/admin/components/AfterNavLinks/index.tsx
And it says I can import { Chevron } from 'payload/components/icons';, but when I try to do so, it throws Error: Cannot find module '../src/admin/components/icons/Chevron'
It seems like the built code in node_modules is trying to export from its src directory, but it's not present in my node_module. Can you advise on how to use Payload's icons?