@devshack/react-circular-input
Version:
React components for easily composing a circular range input
23 lines (22 loc) • 533 B
TypeScript
import { SVGProps } from 'react';
export declare type Props = SVGProps<SVGCircleElement> & {
ref?: undefined;
cx?: undefined;
cy?: undefined;
r?: undefined;
};
export declare const defaultProps: {
stroke: string;
fill: string;
strokeWidth: number;
strokeLinecap: string;
};
export declare const CircularTrack: {
({ strokeWidth, ...props }: Props): JSX.Element;
defaultProps: {
stroke: string;
fill: string;
strokeWidth: number;
strokeLinecap: string;
};
};