Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-09 14:52:46 +00:00
parent 42a0efe70b
commit 47fa6d98b2
28661 changed files with 2421771 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;