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 / dist / components / atoms / IFrame / IFrame.d.ts
Size: Mime:
import React from 'react';
import { IframeProps } from './typings';
declare class IFrame extends React.PureComponent<IframeProps> {
    static defaultProps: {
        src: string;
        layout: string;
        sandbox: string;
        frameBorder: string;
        width: string;
        height: string;
        nowrap: boolean;
    };
    render(): JSX.Element;
}
export { IFrame };
export default IFrame;