@mui/x-charts
Version:
The community edition of MUI X Charts components.
21 lines • 792 B
TypeScript
import { type SxProps, type Theme } from '@mui/material/styles';
import * as React from 'react';
export interface ChartsSvgLayerProps extends Omit<React.SVGProps<SVGSVGElement>, 'id' | 'children' | 'className' | 'height' | 'width' | 'cx' | 'cy' | 'viewBox' | 'color' | 'ref'> {
className?: string;
sx?: SxProps<Theme>;
children?: React.ReactNode;
}
/**
* A layer that provides the drawing area SVG the chart elements.
* Must be wrapped in a `<ChartsLayerContainer>`.
*
* Demos:
*
* - [Composition](https://mui.com/x/api/charts/composition/)
*
* API:
*
* - [ChartsSvgLayer API](https://mui.com/x/api/charts/charts-svg-layer/)
*/
declare const ChartsSvgLayer: React.ForwardRefExoticComponent<ChartsSvgLayerProps & React.RefAttributes<SVGSVGElement>>;
export { ChartsSvgLayer };