UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (9 loc) 328 B
"use client"; //#region packages/@mantine/core/src/components/Slider/utils/get-position/get-position.ts function getPosition({ value, min, max }) { const position = (value - min) / (max - min) * 100; return Math.min(Math.max(position, 0), 100); } //#endregion export { getPosition }; //# sourceMappingURL=get-position.mjs.map