gaoluyang
2026-06-24 bfdc0e0e6d5e47aa501f9b6fadd143d9c97cf00a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { ComponentStyle, DiyComponent } from '../../../util';
 
/** 用户资产属性 */
export interface UserWalletProperty {
  style: ComponentStyle; // 组件样式
}
 
/** 定义组件 */
export const component = {
  id: 'UserWallet',
  name: '用户资产',
  icon: 'lucide:wallet',
  property: {
    style: {
      bgType: 'color',
      bgColor: '',
      marginLeft: 8,
      marginRight: 8,
      marginBottom: 8,
    } as ComponentStyle,
  },
} as DiyComponent<UserWalletProperty>;