Files
kentekengen/src_frontend_orig/components/PreviewCard.jsx
2026-03-01 13:23:49 +00:00

15 lines
314 B
JavaScript

import { motion } from 'framer-motion';
export function PreviewCard({ children }) {
return (
<motion.div
className="preview-card"
initial={{ opacity: 0, scale: 0.98 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ duration: 0.25 }}
>
{children}
</motion.div>
);
}