UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

16 lines (15 loc) 423 B
import { jsx as _jsx } from "react/jsx-runtime"; import Stack from "@mui/material/Stack"; export /** * * Demos: * * - [Account](https://mui.com/toolpad/core/react-account/) * * API: * * - [AccountPopoverHeader API](https://mui.com/toolpad/core/api/account-popover-header) */ function AccountPopoverHeader(props) { const { children, ...rest } = props; return _jsx(Stack, { ...rest, children: children }); }