@ossamaweb/react-circular-input
Version:
Forked react-circular-input
15 lines (14 loc) • 492 B
TypeScript
type DefaultHTMLProps = JSX.IntrinsicElements['svg'];
type Props = Omit<DefaultHTMLProps, 'onChange'> & {
value: number;
radius?: number;
onChange?: (value: number) => void;
onChangeEnd?: (value: number) => void;
ref?: undefined;
width?: undefined;
height?: undefined;
viewBox?: undefined;
onClick?: undefined;
};
export declare function CircularInput({ value, radius, onChange, onChangeEnd, tabIndex, children, ...props }: Props): JSX.Element;
export {};