Nebula/src/pages/Settings/Variants.tsx
2023-12-15 21:36:00 -06:00

30 lines
421 B
TypeScript

const tabContentVariant = {
active: {
display: "block",
transition: {
staggerChildren: 0.2
}
},
inactive: {
display: "none"
}
};
const settingsPageVariant = {
active: {
opacity: 1,
y: 0,
transition: {
duration: 0.5
}
},
inactive: {
opacity: 0,
y: 10,
transition: {
duration: 0.5
}
}
};
export { settingsPageVariant, tabContentVariant };