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

9 lines (8 loc) 270 B
import { LoaderProps, Styles } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const Loader: ({ text, style, children }: { text?: string; style?: Styles; children: (props: LoaderProps) => ReactNode; }) => ReactNode; export default Loader;