Repository URL to install this package:
|
Version:
4.0.59 ▾
|
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 {
}