UNPKG

@hackplan/polaris

Version:

Shopify’s product component library

11 lines (10 loc) 276 B
/// <reference types="react" /> export declare type Size = 'small' | 'medium' | 'large'; export interface Props { /** * Size of the thumbnail * @default 'medium' */ size?: Size; } export default function SkeletonThumbnail({ size }: Props): JSX.Element;