mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
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;
|