mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { Flex, Group, Stack } from '@mantine/core';
|
|
import { motion } from 'framer-motion';
|
|
|
|
export const MotionFlex = motion(Flex);
|
|
|
|
export const MotionGroup = motion(Group);
|
|
|
|
export const MotionStack = motion(Stack);
|
|
|
|
export const MotionDiv = motion.div;
|