UNPKG

@commercelayer/react-components

Version:
9 lines (8 loc) 329 B
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;