UNPKG

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