Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface NavItemProps {
  4. role?: string;
  5. }
  6. declare class NavItem<
  7. As extends React.ElementType = 'div'
  8. > extends BsPrefixComponent<As, NavItemProps> {}
  9. export default NavItem;