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 { 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;
}