Spaces:
Paused
Paused
| import { Variants } from "framer-motion"; | |
| export const modalVariant: Variants = { | |
| initial: { scale: 0.95, opacity: 0 }, | |
| animate: { scale: 1, opacity: 1 }, | |
| exit: { scale: 0.98, opacity: 0 }, | |
| }; | |