import { HTMLAttributes } from 'react';

export type OnValueProps = {
  title?: string;
  value: number | undefined;
  /** 是否同比 */
  isYearOnYear?: boolean;
  notPercent?: boolean;
}
  & Pick<HTMLAttributes<any>, 'className' | 'style'> 
