UNPKG
@plaso-design/pro-card
Version:
latest (2.5.32)
2.5.32
2.5.31
2.5.30
2.5.29
@plaso-design/pro-card
hongfei.hu.plaso.com.cn/pro-components-plaso/components/card
@plaso-design/pro-card
/
lib
/
components
/
Actions
/
index.d.ts
14 lines
(13 loc)
•
318 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
;
export
type
ProCardActionsProps
= {
/** * 自定义前缀 * *
@ignore
*/
prefixCls
?:
string
;
/** 操作按钮 */
actions
?:
React
.
ReactNode
[] |
React
.
ReactNode
; };
declare
const
ProCardActions
:
React
.
FC
<
ProCardActionsProps
>;
export
default
ProCardActions
;