| 2 | import { CSSModule } from './utils'; |
| 3 | |
| 4 | export 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 | |
| 18 | declare class Nav extends React.Component<NavProps> {} |
| 19 | export default Nav; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…