UNPKG

artwork-design

Version:

artwork design master

12 lines (11 loc) 306 B
/// <reference types="react" /> import React from 'react'; export interface ButtonProps { type?: 'primary' | 'warning'; size?: 'large' | 'small'; activeStyle?: boolean | Object; disabled?: boolean; onClick?: (x?: any) => void; loading?: boolean; styles?: React.CSSProperties; }