{"version":3,"sources":["../../src/BottomNav/BottomNav.tsx"],"sourcesContent":["import React, { ElementType, FC, HTMLAttributes } from 'react';\n\nexport interface BottomNavProps extends HTMLAttributes<HTMLElement> {\n  /** Utilizzarlo in caso di utilizzo di componenti personalizzati */\n  tag?: ElementType;\n  /** Classi aggiuntive da usare per il componente BottomNav */\n  className?: string;\n  testId?: string;\n}\n\nexport const BottomNav: FC<BottomNavProps> = ({ tag = 'nav', testId, ...attributes }) => {\n  const Tag = tag;\n  return (\n    <Tag className='bottom-nav' data-testid={testId}>\n      <ul {...attributes} />\n    </Tag>\n  );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,IAAA,eAAAC,EAAAH,GAAA,IAAAI,EAAuD,sBAU1CF,EAAgC,CAAC,CAAE,IAAAG,EAAM,MAAO,OAAAC,EAAQ,GAAGC,CAAW,IAG/E,EAAAC,QAAA,cAFUH,EAET,CAAI,UAAU,aAAa,cAAaC,GACvC,EAAAE,QAAA,cAAC,MAAI,GAAGD,EAAY,CACtB","names":["BottomNav_exports","__export","BottomNav","__toCommonJS","import_react","tag","testId","attributes","React"]}