UNPKG

@gluestack-ui/core

Version:

Universal UI components for React Native, Expo, and Next.js

9 lines 258 B
export const sliderIds = new WeakMap(); export function getSliderThumbId(state, index) { let id = sliderIds.get(state); if (!id) { throw new Error('Unknown slider state'); } return `${id}-${index}`; } //# sourceMappingURL=utils.js.map