UNPKG

@commercelayer/react-components

Version:
13 lines (12 loc) 443 B
import { type JSX } from 'react'; import type { ChildrenFunction } from '../../typings/index'; interface ChildrenProps extends Omit<Props, 'children'> { quantity: number; text: string; } interface Props extends Omit<JSX.IntrinsicElements['span'], 'children'> { children?: ChildrenFunction<ChildrenProps>; text?: string; } export declare function LineItemsEmpty(props: Props): JSX.Element | null; export default LineItemsEmpty;