@fast-simon/storefront-kit
Version:
A comprehensive kit for developing storefronts with Fast Simon components, utilities, and React/Hydrogen support.
15 lines (14 loc) • 522 B
TypeScript
import React from 'react';
export declare function Widget({ title, products, renderProduct, breakpoints, carouselGap, RightArrowIcon, imageAspectRatio }: {
title?: React.ReactNode;
products: Promise<any>;
renderProduct?: (product: any, pos: number) => React.ReactNode;
breakpoints?: {
'mobile': number;
'tablet': number;
'desktop': number;
};
carouselGap?: number;
RightArrowIcon?: JSX.Element;
imageAspectRatio: string;
}): import("react/jsx-runtime").JSX.Element;