phx-react
Version:
PHX REACT
14 lines (13 loc) • 423 B
TypeScript
import React from 'react';
interface PHXIframeProps {
srcDoc?: string;
src?: string;
title?: string;
isFullWidth?: boolean;
height?: 'small' | 'medium' | 'large' | 'full';
hasBorder?: boolean;
rounded?: boolean;
isMobile?: boolean;
}
export declare function PHXIframe({ hasBorder, height, isFullWidth, isMobile, rounded, src, srcDoc, title, }: PHXIframeProps): React.JSX.Element;
export {};