react-circular-input
Version:
React components for easily composing a circular range input
23 lines (22 loc) • 536 B
TypeScript
/// <reference types="react" />
export declare type Props = JSX.IntrinsicElements['circle'] & {
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;
};
};