UNPKG

reactstrap

Version:
20 lines (17 loc) 467 B
import * as React from 'react'; import { CSSModule } from './utils'; export interface NavProps extends React.HTMLAttributes<HTMLUListElement> { [key: string]: any; tabs?: boolean; pills?: boolean; vertical?: boolean | string; horizontal?: string; justified?: boolean; fill?: boolean; navbar?: boolean; card?: boolean; tag?: React.ElementType; cssModule?: CSSModule; } declare class Nav extends React.Component<NavProps> {} export default Nav;