Files
copilot-toolbox-template-123/node_modules/@ant-design/pro-card/lib/components/Actions/index.d.ts
2026-01-09 14:52:46 +00:00

14 lines
318 B
TypeScript

import React from 'react';
export type ProCardActionsProps = {
/**
* 自定义前缀
*
* @ignore
*/
prefixCls?: string;
/** 操作按钮 */
actions?: React.ReactNode[] | React.ReactNode;
};
declare const ProCardActions: React.FC<ProCardActionsProps>;
export default ProCardActions;