UNPKG

269 BTypeScriptView Raw
1import * as React from 'react';
2import type { SkeletonElementProps } from './Element';
3export interface SkeletonImageProps extends Omit<SkeletonElementProps, 'size' | 'shape'> {
4}
5declare const SkeletonImage: React.FC<SkeletonImageProps>;
6export default SkeletonImage;