13 lines
265 B
JavaScript
Executable File
13 lines
265 B
JavaScript
Executable File
import { PolarGrid } from 'recharts';
|
|
|
|
import styleConfig from './config';
|
|
|
|
class CustomPolarGrid extends PolarGrid {
|
|
static defaultProps = {
|
|
...PolarGrid.defaultProps,
|
|
...styleConfig.polarGrid
|
|
}
|
|
}
|
|
|
|
export { CustomPolarGrid as PolarGrid };
|