source: src/components/animate/motion-viewport.tsx

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 912 bytes
Line 
1import { m, MotionProps } from 'framer-motion';
2// @mui
3import Box, { BoxProps } from '@mui/material/Box';
4// hooks
5import { useResponsive } from 'src/hooks/use-responsive';
6//
7import { varContainer } from './variants';
8
9// ----------------------------------------------------------------------
10
11type IProps = BoxProps & MotionProps;
12
13interface Props extends IProps {
14 children: React.ReactNode;
15 disableAnimatedMobile?: boolean;
16}
17
18export default function MotionViewport({
19 children,
20 disableAnimatedMobile = true,
21 ...other
22}: Props) {
23 const smDown = useResponsive('down', 'sm');
24
25 if (smDown && disableAnimatedMobile) {
26 return <Box {...other}>{children}</Box>;
27 }
28
29 return (
30 <Box
31 component={m.div}
32 initial="initial"
33 whileInView="animate"
34 viewport={{ once: true, amount: 0.3 }}
35 variants={varContainer()}
36 {...other}
37 >
38 {children}
39 </Box>
40 );
41}
Note: See TracBrowser for help on using the repository browser.