@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) • 398 B
TypeScript
import { MenuItem } from '@open-tender/types';
import { FavsButtonProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const FavsButton: ({ title, path, item, navigate, children }: {
title: string;
path: string;
item: MenuItem;
navigate: (route: string) => void;
children: (props: FavsButtonProps) => ReactNode;
}) => ReactNode;
export default FavsButton;