Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

NavItem.d.ts 269B

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;