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

  // renders an image
  renderFigureImage?: FigurePlaceholderRenderProps
  // renders the figure caption
  renderCaption?: FigurePlaceholderRenderProps
  // wrapper of the figure
  renderWrapper?: FigurePlaceholderRenderProps
}

export interface FigurePlaceholderState {}