chatui2
Version:
The React library for Chatbot UI
10 lines (9 loc) • 326 B
TypeScript
import React from 'react';
export interface PriceProps extends React.HTMLAttributes<HTMLDivElement> {
price: number;
className?: string;
locale?: string;
currency?: string;
original?: boolean;
}
export declare const Price: React.ForwardRefExoticComponent<PriceProps & React.RefAttributes<HTMLDivElement>>;