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    
Size: Mime:
import React from 'react';
import { NO_OP } from 'exotic';
import { DashboardCardProps } from './typings';
import { defaultRenderHeading, defaultRenderDescription, defaultRenderButton } from './renderProps';
declare class DashboardCard extends React.PureComponent<DashboardCardProps> {
    static defaultProps: {
        className: string;
        renderHeading: typeof defaultRenderHeading;
        renderDescription: typeof defaultRenderDescription;
        renderButton: typeof defaultRenderButton;
        onButtonClick: typeof NO_OP;
    };
    render(): JSX.Element;
}
export { DashboardCard };
export default DashboardCard;