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.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							726 B
						
					
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							726 B
						
					
					
				import * as React from 'react';
 | 
						|
import { ButtonPropsType } from './PropsType';
 | 
						|
export interface ButtonProps extends ButtonPropsType {
 | 
						|
    prefixCls?: string;
 | 
						|
    className?: string;
 | 
						|
    role?: string;
 | 
						|
    inline?: boolean;
 | 
						|
    icon?: React.ReactNode;
 | 
						|
    activeClassName?: string;
 | 
						|
    activeStyle?: boolean | React.CSSProperties;
 | 
						|
    style?: React.CSSProperties;
 | 
						|
    onClick?: React.MouseEventHandler<HTMLAnchorElement>;
 | 
						|
}
 | 
						|
declare class Button extends React.Component<ButtonProps, any> {
 | 
						|
    static defaultProps: {
 | 
						|
        prefixCls: string;
 | 
						|
        size: string;
 | 
						|
        inline: boolean;
 | 
						|
        disabled: boolean;
 | 
						|
        loading: boolean;
 | 
						|
        activeStyle: {};
 | 
						|
    };
 | 
						|
    render(): JSX.Element;
 | 
						|
}
 | 
						|
export default Button;
 |