UNPKG

@etsoo/toolpad

Version:

Dashboard framework extention based on Toolpad Core

22 lines (21 loc) 580 B
import { jsx as _jsx } from "react/jsx-runtime"; import Box from "@mui/material/Box"; export /** * * Demos: * * - [Account](https://mui.com/toolpad/core/react-account/) * * API: * * - [AccountPopoverFooter API](https://mui.com/toolpad/core/api/account-popover-footer) */ function AccountPopoverFooter(props) { const { children, ...rest } = props; return (_jsx(Box, { ...rest, sx: { display: "flex", flexDirection: "row", p: 1, justifyContent: "flex-end", ...rest.sx }, children: children })); }