fix(theme): Add explicit types to Framer Motion variants
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-19 19:05:42 -08:00
parent a7e0fa5579
commit 0e95f5fe5e

View file

@ -1,4 +1,6 @@
export const pageVariants = { import { Variants } from 'framer-motion';
export const pageVariants: Variants = {
initial: { initial: {
opacity: 0, opacity: 0,
y: 8, y: 8,
@ -24,7 +26,7 @@ export const pageVariants = {
}, },
}; };
export const itemVariants = { export const itemVariants: Variants = {
initial: { opacity: 0, y: 10 }, initial: { opacity: 0, y: 10 },
animate: { animate: {
opacity: 1, opacity: 1,