UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (10 loc) 283 B
interface GetChangeValue { value: number; containerWidth?: number; min: number; max: number; step: number; precision?: number; } export declare function getChangeValue({ value, containerWidth, min, max, step, precision, }: GetChangeValue): number; export {};