15 lines
314 B
JavaScript
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>
|
|
);
|
|
}
|