UNPKG

338 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface NavbarBrandProps
5 extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
6 [key: string]: any;
7 tag?: React.ElementType;
8 cssModule?: CSSModule;
9}
10
11declare class NavbarBrand extends React.Component<NavbarBrandProps> {}
12export default NavbarBrand;