oadp-material
Version:
oadp-material
19 lines (18 loc) • 562 B
TypeScript
import * as React from 'react';
import './index.scss';
export interface OadpEntityButtonBatchDeleteProps {
name?: string;
id?: string;
entity?: string;
tableComponentRefId?: string;
label?: string;
type?: 'primary' | 'secondary' | 'normal';
size?: 'small' | 'medium' | 'large';
text?: boolean;
disabled?: boolean;
style?: React.CSSProperties;
onClick?: any;
__designMode?: string;
}
declare const OadpEntityButtonBatchDelete: React.FC<OadpEntityButtonBatchDeleteProps>;
export default OadpEntityButtonBatchDelete;