Files
icehrm/web/node_modules/antd/es/button/LoadingIcon.d.ts
2020-05-20 18:47:29 +02:00

8 lines
252 B
TypeScript

/// <reference types="react" />
export interface LoadingIconProps {
prefixCls: string;
existIcon: boolean;
loading?: boolean | object;
}
export default function LoadingIcon({ prefixCls, loading, existIcon }: LoadingIconProps): JSX.Element;