Repository URL to install this package:
|
Version:
2.7.3 ▾
|
import { ReactNode } from 'react'
export interface PageBackgroundRenderProp extends Function {
(props: PageBackgroundProps): ReactNode
}
export interface PageBackgroundProps {
className?: string
children?: ReactNode
src?: string
shouldAutoPlay?: boolean
shouldLoop?: boolean
backgroundImage?: string
position?: string
backgroundColor?: string
isPageScroll?: boolean
// renderProps
renderBox?: PageBackgroundRenderProp
renderWrapper?: PageBackgroundRenderProp
}