UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines (6 loc) 276 B
import * as React from 'react'; import type { SkeletonNodeProps } from './Node'; export interface SkeletonImageProps extends Omit<SkeletonNodeProps, 'children' | 'internalClassName'> { } declare const SkeletonImage: React.FC<SkeletonImageProps>; export default SkeletonImage;