aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
18 lines • 720 B
TypeScript
import React from "react";
import { Product } from "./GlassEcommerceProvider";
export interface ProductRecommendationsProps {
productId?: string;
title?: string;
subtitle?: string;
maxItems?: number;
variant?: "grid" | "carousel" | "list" | "compact";
showPrices?: boolean;
showRatings?: boolean;
showQuickActions?: boolean;
recommendationType?: "similar" | "trending" | "personalized" | "bought-together" | "viewed-together" | "all";
className?: string;
onProductClick?: (product: Product) => void;
"data-testid"?: string;
}
export declare const GlassProductRecommendations: React.FC<ProductRecommendationsProps>;
//# sourceMappingURL=GlassProductRecommendations.d.ts.map