mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 09:14:56 +00:00
ORGANIZED INTO 4 MAIN CATEGORIES: - react/ React TypeScript components (145 components + Python bindings) - qml/ QML desktop components (104+ QML components) - python/ Python package implementations - legacy/ Utilities, contexts, and migration-in-progress code SUPPORTING FOLDERS (kept as-is): - icons/ 421 SVG icons - theming/ Material Design 3 theme system - styles/ SCSS modules and utilities - scss/ SCSS preprocessor files - docs/ Documentation files STRUCTURE IMPROVEMENTS: ✅ All code preserved (nothing deleted) ✅ Clear separation by implementation type ✅ Better navigation and discoverability ✅ Easy to find what you need ✅ Professional organization DOCUMENTATION: - Added STRUCTURE.md explaining the new layout - Updated folder organization with clear purpose - Maintained all original functionality All files reorganized while keeping full functionality intact. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
39 lines
749 B
TypeScript
39 lines
749 B
TypeScript
import React from 'react'
|
|
|
|
export interface IframeProps extends React.IframeHTMLAttributes<HTMLIFrameElement> {
|
|
src: string
|
|
title: string
|
|
width?: string | number
|
|
height?: string | number
|
|
allowFullScreen?: boolean
|
|
sandbox?: string
|
|
}
|
|
|
|
/**
|
|
* Iframe component for embedded content
|
|
* Used by scripted packages for embedding external content
|
|
*/
|
|
export const Iframe: React.FC<IframeProps> = ({
|
|
src,
|
|
title,
|
|
width = '100%',
|
|
height = 400,
|
|
allowFullScreen = true,
|
|
sandbox,
|
|
className = '',
|
|
...props
|
|
}) => (
|
|
<iframe
|
|
src={src}
|
|
title={title}
|
|
width={width}
|
|
height={height}
|
|
allowFullScreen={allowFullScreen}
|
|
sandbox={sandbox}
|
|
className={`iframe ${className}`}
|
|
{...props}
|
|
/>
|
|
)
|
|
|
|
export default Iframe
|