UNPKG

design-react-kit

Version:

Componenti React per Bootstrap 5

7 lines 314 B
import React from 'react'; import { Nav } from 'react-bootstrap'; export const TabNavItem = ({ tag = 'li', testId, ...attributes }) => { const Tag = tag; return React.createElement(Nav.Item, { as: Tag, role: 'presentation', "data-testid": testId, ...attributes }); }; //# sourceMappingURL=TabNavItem.js.map