Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 02:20:32 +00:00
parent a4605e311a
commit 71de1506ca
28603 changed files with 2179459 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import type { StatisticProps as AntdStatisticProps, BadgeProps } from 'antd';
import React from 'react';
export interface StatisticProps extends AntdStatisticProps {
/**
* 样式
*
* @ignore
*/
style?: React.CSSProperties;
/**
* ClassName
*
* @ignore
*/
className?: string;
/** 描述性标签 */
description?: React.ReactNode;
/** 标题提示 */
tip?: React.ReactNode;
/** 当前项显示的状态 */
status?: BadgeProps['status'];
/** Icon 图标 */
icon?: React.ReactNode;
/** Layout 布局 */
layout?: 'horizontal' | 'vertical' | 'inline';
/** 趋势 */
trend?: 'up' | 'down';
children?: any;
}
declare const Statistic: React.FC<StatisticProps>;
export default Statistic;