You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
293 B

  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface NavbarToggleProps {
  4. label?: string;
  5. }
  6. declare class NavbarToggle<
  7. As extends React.ElementType = 'button'
  8. > extends BsPrefixComponent<As, NavbarToggleProps> {}
  9. export default NavbarToggle;