interface IProps {
    value: number;
    reverse?: boolean;
    isVisibleValue?: boolean;
}
export default IProps;
