diff --git a/libs/components/editor-blocks/src/components/source-view/SourceView.tsx b/libs/components/editor-blocks/src/components/source-view/SourceView.tsx
index 9b5c81367..f8264e8f1 100644
--- a/libs/components/editor-blocks/src/components/source-view/SourceView.tsx
+++ b/libs/components/editor-blocks/src/components/source-view/SourceView.tsx
@@ -135,10 +135,27 @@ const LazyIframe = ({
>
+ {show ? '' : fallback}
>
);
};
+const Loading = styled('div')(() => {
+ return {
+ width: '100%',
+ height: '100%',
+ display: 'flex',
+ lineHeight: '100%',
+ alignItems: 'center',
+ justifyContent: 'center',
+ border: '1px solid #EAEEF2',
+ };
+});
+
+const LoadingContiner = () => {
+ return loading...;
+};
+
export const SourceView: FC = props => {
const { link, isSelected, block, editorElement } = props;
const src = formatUrl(link);
@@ -151,7 +168,10 @@ export const SourceView: FC = props => {
-
+
);