@amaui/ui-react
Version:
UI for React
22 lines (21 loc) • 503 B
TypeScript
import React from 'react';
import { ILine } from '../Line/Line';
export interface IFrame extends ILine {
url?: string;
src?: string;
value?: any;
startOptions?: any;
endOptions?: any;
IconMobile?: any;
IconTable?: any;
IconLaptop?: any;
IconDesktop?: any;
iframeProps?: any;
IFrameProps?: any;
OptionProps?: any;
OptionsProps?: any;
OptionsWrapperProps?: any;
WrapperProps?: any;
}
declare const Frame: React.FC<IFrame>;
export default Frame;