@commercelayer/react-components
Version:
The Official Commerce Layer React Components
9 lines (8 loc) • 329 B
TypeScript
import { type JSX } from 'react';
export type TLineItem = 'gift_cards' | 'payment_methods' | 'promotions' | 'shipments' | 'skus' | 'bundles' | 'adjustments';
interface Props {
children: JSX.Element | JSX.Element[];
type?: TLineItem;
}
export declare function LineItem(props: Props): JSX.Element;
export default LineItem;