Button3d 3D按钮
3D 效果按钮,基于 Building a Magical 3D Button 实现。
基础用法
尺寸
禁用状态
加载状态
API
Props
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
size | 尺寸 | Button3DSize | Button3DSizeType | default |
type | 类型 | Button3DType | Button3DType | |
disabled | 是否禁用 | boolean | - | false |
loading | 是否加载中 | boolean | - | false |
nativeType | 原生类型 | Button3DNativeType | Button3DNativeType | button |
Button-3d 类型定义
Button3DType
ts
export type Button3DType = 'primary'
| 'success'
| 'warning'
| 'danger'
| 'info'
Button3DSizeType
ts
export type Button3DSizeType = 'large' | 'default' | 'small'
Button3DNativeType
ts
export type Button3DNativeType = 'button' | 'submit' | 'reset'