Dashboard sipadu mbip
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.

123456789101112131415161718
  1. import * as React from 'react';
  2. import Button, { ButtonProps } from './Button';
  3. import { BsPrefixComponent, BsPrefixComponentClass } from './helpers';
  4. export interface DropdownToggleProps {
  5. id: string;
  6. split?: boolean;
  7. childBsPrefix?: string;
  8. }
  9. declare class DropdownToggle<
  10. // Need to use BsPrefixComponentClass to get proper type checking.
  11. As extends React.ElementType = BsPrefixComponentClass<'button', ButtonProps>
  12. > extends BsPrefixComponent<As, DropdownToggleProps> {}
  13. export default DropdownToggle;