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    
@skava/ui-presets / dist / presets / Studio / PageBackground / PageBackground.d.ts
Size: Mime:
import React from 'react';
import { PageBackgroundProps } from './typings';
declare class PageBackground extends React.PureComponent<PageBackgroundProps> {
    static defaultProps: {
        className: string;
        mediaType: string;
        src: string;
        backgroundImage: string;
        backgroundColor: string;
        /**
         * @todo
         * isPageScroll -> shouldBeFixed
         * position -> gradientPosition
         */
        position: string;
        isPageScroll: boolean;
        renderImage: (item: PageBackgroundProps) => JSX.Element;
        renderVideo: (item: PageBackgroundProps) => JSX.Element;
    };
    render(): JSX.Element;
}
export { PageBackground };
export default PageBackground;