import r2wc from "@r2wc/react-to-web-component"; import { Wrapper, Dashboard } from "@onvo-ai/react"; // @ts-ignore import css from '!!css-loader?{"sourceMap":false,"exportType":"string"}!./sonner.css'; const OnvoDashboard = ({ userToken, baseUrl, dashboardId, googleMapsApiKey, }: { userToken: string; baseUrl: string; dashboardId: string; googleMapsApiKey: string; }) => { return ( ); }; export const DashboardWC = r2wc(OnvoDashboard, { shadow: "closed", props: { userToken: "string", baseUrl: "string", dashboardId: "string", googleMapsApiKey: "string", }, });