matt HOFFNER
init
3c3f089
raw
history blame contribute delete
200 Bytes
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 },
};