ultraman-shop
Version:
A React component library for building e-commerce interfaces
31 lines (30 loc) • 761 B
TypeScript
import { FC, CSSProperties } from 'react';
interface IIndicatorShow {
className?: string;
style?: CSSProperties;
firstSection?: {
icon?: string;
title: string;
value: string | number;
unit: string;
onClick?: () => void;
};
secondSection?: {
icon?: string;
title: string;
value: string | number;
unit: string;
onClick?: () => void;
};
thirdSection?: {
title: string;
value: string | number;
unit: string;
icon?: string;
hoverText?: string;
onClick?: () => void;
};
}
/** 大屏标题组件 */
declare const IndicatorShow: FC<IIndicatorShow>;
export default IndicatorShow;