UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

17 lines (14 loc) 417 B
'use client'; import { useIsomorphicEffect } from '@mantine/hooks'; function useRespectReduceMotion({ respectReducedMotion, getRootElement }) { useIsomorphicEffect(() => { if (respectReducedMotion) { getRootElement()?.setAttribute("data-respect-reduced-motion", "true"); } }, [respectReducedMotion]); } export { useRespectReduceMotion }; //# sourceMappingURL=use-respect-reduce-motion.mjs.map