@ossamaweb/react-circular-input
Version:
Forked react-circular-input
22 lines (21 loc) • 496 B
TypeScript
export 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;
};
};