Interface representing the props for the PaperView component.

IPaperViewProps

interface IPaperViewProps {
    component?: any;
    outlinePaper?: boolean;
    transparentPaper?: boolean;
    [key: string]: PaperProps;
    [key: number]: PaperProps;
    [key: symbol]: PaperProps;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: PaperProps
  • [key: number]: PaperProps
  • [key: symbol]: PaperProps

Properties

component?: any
outlinePaper?: boolean
transparentPaper?: boolean