ov25-ui
Version:
A UI configurator for OV25 product visualization
15 lines (14 loc) • 497 B
TypeScript
import React from 'react';
import type { DiningCatalogItem } from '../../types/dining-iframe-types.js';
interface DiningTableCardProps {
item: DiningCatalogItem;
onSelect?: (item: DiningCatalogItem) => void;
minHeight?: number;
imageHeight?: number;
}
/**
* Product card for table selection in the dining configurator.
* Shows table image with the reference-style title tab and selected badge.
*/
export declare const DiningTableCard: React.FC<DiningTableCardProps>;
export {};