Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
12345678910111213 |
- import * as React from 'react';
-
- import { BsPrefixComponent } from './helpers';
-
- export interface NavItemProps {
- role?: string;
- }
-
- declare class NavItem<
- As extends React.ElementType = 'div'
- > extends BsPrefixComponent<As, NavItemProps> {}
-
- export default NavItem;
|