@shopify/polaris
Version:
Shopify’s admin product component library
12 lines (11 loc) • 325 B
TypeScript
/// <reference types="react" />
declare type Size = 'small' | 'medium' | 'large';
export interface SkeletonThumbnailProps {
/**
* Size of the thumbnail
* @default 'medium'
*/
size?: Size;
}
export declare function SkeletonThumbnail({ size }: SkeletonThumbnailProps): JSX.Element;
export {};