@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
10 lines (9 loc) • 321 B
TypeScript
import { ButtonLinkProps, Styles } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const ButtonLink: ({ onClick, label, children, style }: {
onClick: () => void;
label: string;
children: (props: ButtonLinkProps) => ReactNode;
style?: Styles;
}) => ReactNode;
export default ButtonLink;