Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import { ReactNode } from 'react';
import { CardState } from 'organisms/ExpandableCard';
export interface InformationCardRenderProp extends Function {
(props: InformationCardProps, state: CardState): ReactNode;
}
export interface InformationCardProps {
className?: string;
renderToggleButton?: InformationCardRenderProp;
renderDefaultView?: InformationCardRenderProp;
renderExpandedView?: InformationCardRenderProp;
renderWrapper?: InformationCardRenderProp;
}