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:
892 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { m, MotionProps } from 'framer-motion';
|
---|
| 2 | // @mui
|
---|
| 3 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
| 4 | //
|
---|
| 5 | import { varContainer } from './variants';
|
---|
| 6 |
|
---|
| 7 | // ----------------------------------------------------------------------
|
---|
| 8 |
|
---|
| 9 | type IProps = BoxProps & MotionProps;
|
---|
| 10 |
|
---|
| 11 | export interface Props extends IProps {
|
---|
| 12 | animate?: boolean;
|
---|
| 13 | action?: boolean;
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | export 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.