admesh-ui-sdk
Version:
Beautiful, modern React components for displaying AI-powered product recommendations with citation-based conversation ads, auto-triggered widgets, floating chat, conversational interfaces, persistent sidebar, and built-in tracking. Includes zero-code SDK
17 lines • 650 B
TypeScript
import { default as React } from 'react';
import { AdMeshRecommendation, AdMeshTheme } from '../types/index';
export interface AdMeshInlineCardProps {
recommendation: AdMeshRecommendation;
theme?: AdMeshTheme;
variation?: 'default' | 'statement' | 'question';
expandable?: boolean;
className?: string;
style?: React.CSSProperties;
}
/**
* AdMeshInlineCard
* Compact inline card that uses the same card style as AdMeshProductCard,
* but with a smaller content footprint suitable for inline placements.
*/
export declare const AdMeshInlineCard: React.FC<AdMeshInlineCardProps>;
//# sourceMappingURL=AdMeshInlineCard.d.ts.map