UNPKG

@trellixio/roaster-coffee

Version:
13 lines 580 B
import * as React from 'react'; export interface ThumbnailProps { /** The URL of the thumbnail image (optional) */ src?: string | null; /** The alternate text to be displayed if the image cannot be loaded (optional) */ alt?: string; /** The name of the user or entity that the thumbnail represents (required) */ name: string; /** The size of the thumbnail image (optional) */ size?: number; } export declare const Thumbnail: React.ForwardRefExoticComponent<ThumbnailProps & React.RefAttributes<HTMLElement>>; //# sourceMappingURL=Thumbnail.d.ts.map