import { Paper, Typography } from "@mui/material"; import React, { PropsWithChildren } from "react"; export function VirtWebPaper( p: { label: string | React.ReactElement } & PropsWithChildren ): React.ReactElement { return ( {p.label} {p.children} ); }