UNPKG

512 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface NavbarProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 light?: boolean;
7 dark?: boolean;
8 full?: boolean;
9 fixed?: string;
10 sticky?: string;
11 color?: string;
12 container?: boolean | 'fluid' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
13 tag?: React.ElementType;
14 cssModule?: CSSModule;
15 expand?: boolean | string;
16}
17
18declare class Navbar extends React.Component<NavbarProps> {}
19export default Navbar;