1 |
|
2 |
|
3 |
|
4 | import React, { SVGProps } from 'react';
|
5 | interface PolarGridProps {
|
6 | cx?: number;
|
7 | cy?: number;
|
8 | innerRadius?: number;
|
9 | outerRadius?: number;
|
10 | polarAngles?: number[];
|
11 | polarRadius?: number[];
|
12 | gridType?: 'polygon' | 'circle';
|
13 | radialLines?: boolean;
|
14 | }
|
15 | export type Props = SVGProps<SVGPathElement> & PolarGridProps;
|
16 | export declare const PolarGrid: {
|
17 | ({ cx, cy, innerRadius, outerRadius, gridType, radialLines, ...props }: Props): React.JSX.Element;
|
18 | displayName: string;
|
19 | };
|
20 | export {};
|