UNPKG

279 BTypeScriptView Raw
1import React, { SVGProps } from 'react';
2import { GeometrySector } from '../util/types';
3interface SectorProps extends GeometrySector {
4 className?: string;
5}
6export type Props = SVGProps<SVGPathElement> & SectorProps;
7export declare const Sector: React.FC<Props>;
8export {};