@mui/x-charts
Version:
The community edition of MUI X Charts components.
16 lines (15 loc) • 433 B
JavaScript
'use client';
import _extends from "@babel/runtime/helpers/esm/extends";
import { styled } from '@mui/material/styles';
export const StyledText = styled('text', {
slot: 'internal',
shouldForwardProp: undefined
})(({
theme
}) => _extends({}, theme.typography.body2, {
stroke: 'none',
fill: (theme.vars || theme).palette.text.primary,
shapeRendering: 'crispEdges',
textAnchor: 'middle',
dominantBaseline: 'middle'
}));