UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines (6 loc) 269 B
import * as React from 'react'; import type { SkeletonElementProps } from './Element'; export interface SkeletonImageProps extends Omit<SkeletonElementProps, 'size' | 'shape'> { } declare const SkeletonImage: React.FC<SkeletonImageProps>; export default SkeletonImage;