Spaces:
Running
Running
File size: 149 Bytes
8e494b0 |
1 2 3 4 5 6 |
export function isReducedMotion(window: Window) {
const { matchMedia } = window;
return matchMedia("(prefers-reduced-motion: reduce)").matches;
}
|