UNPKG

@open-iframe-resizer/react

Version:

Open-source modern iframe resizer component

12 lines (8 loc) 415 B
import { ForwardRefExoticComponent } from 'react'; import { IframeHTMLAttributes } from 'react'; import { RefAttributes } from 'react'; import { Settings } from '@open-iframe-resizer/core'; export declare const IframeResizer: ForwardRefExoticComponent<Props & RefAttributes<HTMLIFrameElement>>; declare interface Props extends IframeHTMLAttributes<HTMLIFrameElement>, Partial<Settings> { } export { }