source: src/components/animate/motion-container.tsx@ 5d6f37a

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

add customer

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