17 lines
404 B
TypeScript
17 lines
404 B
TypeScript
|
import React from 'react';
|
||
|
import { Motion, MotionProps } from 'react-motion';
|
||
|
|
||
|
import { useSettings } from 'soapbox/hooks';
|
||
|
|
||
|
import ReducedMotion from './reduced_motion';
|
||
|
|
||
|
const OptionalMotion = (props: MotionProps) => {
|
||
|
const reduceMotion = useSettings().get('reduceMotion');
|
||
|
|
||
|
return (
|
||
|
reduceMotion ? <ReducedMotion {...props} /> : <Motion {...props} />
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default OptionalMotion;
|