diff --git a/src/BottomNav/BottomNavItem.tsx b/src/BottomNav/BottomNavItem.tsx index 71b983fee..be3e361a6 100644 --- a/src/BottomNav/BottomNavItem.tsx +++ b/src/BottomNav/BottomNavItem.tsx @@ -11,6 +11,8 @@ export interface BottomNavItemProps extends HTMLAttributes { active?: boolean; /** Indica l'URL a cui puntare (utilizzare o questo o onClick) */ url?: string; + /** Indica il link route a cui l'elemento deve puntare. */ + to?: string; /** Etichetta da associare all'elemento */ label?: string; /** Testo esplicativo per dispositivi screen reader. */ @@ -36,6 +38,7 @@ export const BottomNavItem: FC = ({ badge, alert = false, url, + to, srText, iconName = 'it-comment', label, @@ -59,7 +62,7 @@ export const BottomNavItem: FC = ({ ); return (
  • - + {badgeWrapper} {alertWrapper}