UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

15 lines (14 loc) 497 B
import { CartItem, CartItemGroup } from '@open-tender/types'; import React from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface UpsellItemProps { config: ScreenConfig; handlers: Handlers; item: CartItem; isLast?: boolean; apiUrl: string; displayCals?: boolean; sizeGroup?: CartItemGroup; } declare const UpsellItem: ({ config, handlers, item, isLast, apiUrl, displayCals }: UpsellItemProps) => React.JSX.Element; export default UpsellItem;