react-life-design
Version:
Life Design UI components
17 lines (16 loc) • 468 B
TypeScript
import * as React from 'react';
export interface IProps {
isType?: string;
children: React.ReactNode;
onClick?: () => any;
css?: string;
small?: boolean;
loading?: boolean;
response?: string | null;
disabled?: boolean;
type: 'button' | 'submit' | 'reset';
role?: string;
last?: boolean;
}
declare const _default: ({ children, isType, loading, response, disabled, ...props }: IProps) => JSX.Element;
export default _default;