UNPKG

oadp-material

Version:
20 lines (19 loc) 561 B
import * as React from 'react'; import './index.scss'; export interface OadpEntityButtonUpdateProps { name?: string; id?: string; page?: string; entity?: string; tableComponentRefId?: string; label?: string; type?: 'primary' | 'secondary' | 'normal'; size?: 'small' | 'medium' | 'large'; text?: boolean; style?: React.CSSProperties; disabled?: boolean; onClick?: any; __designMode?: string; } declare const OadpEntityButtonUpdate: React.FC<OadpEntityButtonUpdateProps>; export default OadpEntityButtonUpdate;