UNPKG

@chatui/core

Version:

The React library for Chatbot UI

11 lines (10 loc) 304 B
import React from 'react'; export interface PriceProps { price: number; className?: string; locale?: string; currency?: string; original?: boolean; autoFit?: boolean; } export declare const Price: React.ForwardRefExoticComponent<PriceProps & React.RefAttributes<HTMLDivElement>>;