mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
|
import React from 'react';
|
||
|
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
||
|
export interface NavbarToggleProps extends BsPrefixPropsWithChildren {
|
||
|
label?: string;
|
||
|
onClick?: React.MouseEventHandler;
|
||
|
}
|
||
|
declare type NavbarToggle = BsPrefixRefForwardingComponent<'button', NavbarToggleProps>;
|
||
|
declare const NavbarToggle: NavbarToggle;
|
||
|
export default NavbarToggle;
|