8 lines
252 B
TypeScript
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;
|