UNPKG

283 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface NavbarBrandProps {
6 href?: string;
7}
8
9declare class NavbarBrand<
10 As extends React.ElementType = 'a'
11> extends BsPrefixComponent<As, NavbarBrandProps> {}
12
13export default NavbarBrand;