UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines (6 loc) 289 B
/// <reference types="react" /> import { SkeletonElementProps } from './Element'; export interface SkeletonImageProps extends Omit<SkeletonElementProps, 'size' | 'shape' | 'active'> { } declare const SkeletonImage: (props: SkeletonImageProps) => JSX.Element; export default SkeletonImage;