@ant-design/x
Version:
Craft AI-driven interfaces effortlessly
11 lines (10 loc) • 320 B
TypeScript
import React from 'react';
import { FileCardProps } from '../FileCard';
export type ImageLoadingProps = {
prefixCls?: string;
style?: React.CSSProperties;
className?: string;
spinProps?: FileCardProps['spinProps'];
};
declare const ImageLoading: React.FC<ImageLoadingProps>;
export default ImageLoading;