"use client"; import { FC } from "react"; import Iframe from "react-iframe"; import { Box } from "@mui/material"; interface OpenSearchWrapperProps { url: string; margin?: number; } export const OpenSearchWrapper: FC = ({ url, margin = 50, }) => (