#Label size for <NavLink>
11 messages · Page 1 of 1 (latest)
Use Styles API
This gives error:
<NavLink label="Home" styles={ label: { fontSize: '2rem' } } icon={<IconHome2 size="1rem" />} />
Found a solution:
<NavLink label="Home" styles={{"label": { "fontSize": '2rem' }}} icon={<IconHome2 size="1rem" />} />
Thank you!
But do I need to style that on per component basis? How can I set a default font size for all components?
Great! Thanks. Last thing, there seems to be no href attribute to NavLink and I see nothing about it in the docs.
Using that, when switching page the page reloads. If I use native <Link> the page does not refresh