@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
11 lines (10 loc) • 339 B
TypeScript
import { LabelProps, Styles } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const Label: ({ content, label, isRequired, style, children }: {
content: ReactNode;
label?: string;
isRequired?: boolean;
style?: Styles;
children: (props: LabelProps) => ReactNode;
}) => ReactNode;
export default Label;