UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

36 lines (35 loc) 1.01 kB
'use client'; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["message"]; import * as React from 'react'; import { styled } from '@mui/material/styles'; import { useDrawingArea } from "../hooks/useDrawingArea.js"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledText = styled('text')(({ theme }) => _extends({}, theme.typography.body2, { stroke: 'none', fill: theme.palette.text.primary, shapeRendering: 'crispEdges', textAnchor: 'middle', dominantBaseline: 'middle' })); export function ChartsLoadingOverlay(props) { const { message } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const { top, left, height, width } = useDrawingArea(); return /*#__PURE__*/_jsx(StyledText, _extends({ x: left + width / 2, y: top + height / 2 }, other, { children: message ?? 'Loading data…' })); }