Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / organisms / ConfirmationCard / ConfirmationCard.d.ts
Size: Mime:
import React from 'react';
import { NO_OP } from 'exotic';
import { RemoveCardProps } from './typings';
import { defaultRenderText, defaultRenderButtons, defaultRenderWrapper } from './renderProps';
declare class ConfirmationCard extends React.Component<RemoveCardProps> {
    static defaultProps: {
        className: string;
        confirmationText: string;
        confirmButtonLabel: string;
        cancelButtonLabel: string;
        onConfirmation: typeof NO_OP;
        onCancel: typeof NO_OP;
        renderText: typeof defaultRenderText;
        renderButtons: typeof defaultRenderButtons;
        renderWrapper: typeof defaultRenderWrapper;
    };
    render(): React.ReactNode;
}
export { ConfirmationCard };
export default ConfirmationCard;