UNPKG

react-life-design

Version:
18 lines (17 loc) 513 B
import * as React from 'react'; import { CSSProp } from 'styled-components'; export interface IProps { isType?: string; children: React.ReactNode; onClick?: () => any; css?: CSSProp; small?: string; 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;