UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

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