UNPKG

@open-tender/store

Version:

A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API

12 lines (11 loc) 471 B
import { NutritionalInfo as NutritionalInfoType } from '@open-tender/types'; import { NutritionalInfoProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const NutritionalInfo: ({ title, subtitle, nutritionalInfo, close, children }: { title: string; subtitle?: string; nutritionalInfo: NutritionalInfoType; close: () => void; children: (props: NutritionalInfoProps) => ReactNode; }) => ReactNode; export default NutritionalInfo;