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.
22 lines
836 B
22 lines
836 B
import * as React from 'react';
|
|
import { ButtonHTMLType } from '../button/button';
|
|
import { ButtonGroupProps } from '../button/button-group';
|
|
import { DropDownProps } from './dropdown';
|
|
declare type DropdownButtonType = 'primary' | 'ghost' | 'dashed';
|
|
export interface DropdownButtonProps extends ButtonGroupProps, DropDownProps {
|
|
type?: DropdownButtonType;
|
|
htmlType?: ButtonHTMLType;
|
|
disabled?: boolean;
|
|
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
icon?: React.ReactNode;
|
|
href?: string;
|
|
children?: React.ReactNode;
|
|
title?: string;
|
|
buttonsRender?: (buttons: React.ReactNode[]) => React.ReactNode[];
|
|
}
|
|
interface DropdownButtonInterface extends React.FC<DropdownButtonProps> {
|
|
__ANT_BUTTON: boolean;
|
|
}
|
|
declare const DropdownButton: DropdownButtonInterface;
|
|
export default DropdownButton;
|