Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
@skava/ui
/
dist
/
components
/
presets
/
B2B
/
DashboardOverview
/
DashboardCard
/
DashboardCard.d.ts
|
|---|
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;