@commercelayer/react-components
Version:
The Official Commerce Layer React Components
9 lines (8 loc) • 330 B
TypeScript
import type { PriceProps } from '../prices/Price';
import type { JSX } from "react";
export type PTemplateProps = {
formattedAmount?: string | null;
formattedCompare?: string | null;
} & Omit<PriceProps, 'children'>;
export declare function PriceTemplate(props: PTemplateProps): JSX.Element;
export default PriceTemplate;