UNPKG

oadp-material

Version:
19 lines (18 loc) 542 B
import * as React from 'react'; import './index.scss'; export interface OadpEntityButtonDeleteProps { 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 OadpEntityButtonDelete: React.FC<OadpEntityButtonDeleteProps>; export default OadpEntityButtonDelete;