UNPKG

@tarojsx/ui

Version:

We reinvents the UI for Taro3+

12 lines (11 loc) 333 B
import React from 'react'; import '../style/Statistic.scss'; export interface StatisticProps { className?: string; title: React.ReactNode; value: string | number; valueStyle?: React.CSSProperties; prefix?: React.ReactNode; suffix?: React.ReactNode; } export declare const Statistic: React.FC<StatisticProps>;