@mui/x-charts
Version:
The community edition of the charts components (MUI X).
21 lines (20 loc) • 464 B
TypeScript
import * as React from 'react';
export type ChartsClipPathProps = {
id: string;
offset?: {
top?: number;
right?: number;
bottom?: number;
left?: number;
};
};
/**
* API:
*
* - [ChartsClipPath API](https://mui.com/x/api/charts/charts-clip-path/)
*/
declare function ChartsClipPath(props: ChartsClipPathProps): React.JSX.Element;
declare namespace ChartsClipPath {
var propTypes: any;
}
export { ChartsClipPath };