mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
14 lines
557 B
TypeScript
14 lines
557 B
TypeScript
import { motion } from 'motion/react';
|
|
|
|
import { Flex, FlexProps } from '/@/shared/components/flex/flex';
|
|
import { Group, GroupProps } from '/@/shared/components/group/group';
|
|
import { Stack, StackProps } from '/@/shared/components/stack/stack';
|
|
|
|
export const MotionFlex = motion.create<FlexProps>(Flex, { forwardMotionProps: true });
|
|
|
|
export const MotionGroup = motion.create<GroupProps>(Group, { forwardMotionProps: true });
|
|
|
|
export const MotionStack = motion.create<StackProps>(Stack, { forwardMotionProps: true });
|
|
|
|
export const MotionDiv = motion.div;
|