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 { PlaceholderVectorProps } from 'atoms/Placeholder/typings';
export interface FigurePlaceholderRenderProps {
    (props?: FigurePlaceholderProps, state?: FigurePlaceholderState): ReactNode;
}
export interface FigurePlaceholderProps extends PlaceholderVectorProps {
    className?: string;
    children?: ReactNode;
    renderFigureImage?: FigurePlaceholderRenderProps;
    renderCaption?: FigurePlaceholderRenderProps;
    renderWrapper?: FigurePlaceholderRenderProps;
}
export interface FigurePlaceholderState {
}