import React, { ElementType, FC, HTMLAttributes } from 'react';
export interface BottomNavProps extends HTMLAttributes {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente BottomNav */
className?: string;
testId?: string;
}
export const BottomNav: FC = ({ tag = 'nav', testId, ...attributes }) => {
const Tag = tag;
return (
);
};