UNPKG

@amaui/ui-react

Version:
10 lines (9 loc) 257 B
import React from 'react'; import { ILine } from '../Line/Line'; import { IPropsAny } from '../types'; export interface IIFrame extends ILine { id?: string; WrapperProps?: IPropsAny; } declare const IFrame: React.FC<IIFrame>; export default IFrame;