UNPKG

467 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface NavProps extends React.HTMLAttributes<HTMLUListElement> {
5 [key: string]: any;
6 tabs?: boolean;
7 pills?: boolean;
8 vertical?: boolean | string;
9 horizontal?: string;
10 justified?: boolean;
11 fill?: boolean;
12 navbar?: boolean;
13 card?: boolean;
14 tag?: React.ElementType;
15 cssModule?: CSSModule;
16}
17
18declare class Nav extends React.Component<NavProps> {}
19export default Nav;