import { SizeKeyword } from '../../shared/scales'; import { BaseImageProps } from '../../shared/image'; import { GlobalProps } from '../../shared/global'; export interface ProductThumbnailProps extends GlobalProps, BaseImageProps { /** * Decorates the product thumbnail with the quantity of the product. */ badge?: number; /** * Adjusts the size the product thumbnail image. * * @default 'base' */ size?: SizeKeyword | 'fill'; }