mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
19 lines
443 B
TypeScript
19 lines
443 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface NavbarProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
light?: boolean;
|
|
dark?: boolean;
|
|
full?: boolean;
|
|
fixed?: string;
|
|
sticky?: string;
|
|
color?: string;
|
|
tag?: React.ElementType;
|
|
cssModule?: CSSModule;
|
|
expand?: boolean | string;
|
|
}
|
|
|
|
declare class Navbar extends React.Component<NavbarProps> {}
|
|
export default Navbar;
|