UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

16 lines 574 B
import { type RadarClasses } from "../radarClasses.js"; export interface RadarAxisHighlightProps { /** * A CSS class name applied to the root element. */ className?: string; /** * Override or extend the styles applied to the component. */ classes?: Partial<Pick<RadarClasses, 'axisHighlightRoot' | 'axisHighlightLine' | 'axisHighlightDot'>>; } declare function RadarAxisHighlight(props: RadarAxisHighlightProps): import("react/jsx-runtime").JSX.Element | null; declare namespace RadarAxisHighlight { var propTypes: any; } export { RadarAxisHighlight };