mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import styled from '@emotion/styled';
|
|
import { fadeInScale } from '~/styles/keyframes';
|
|
|
|
const TransitionLayout = styled.div(({ theme }) => ({
|
|
animation: `${theme.transition.delay} ${fadeInScale} both`,
|
|
}));
|
|
|
|
export default TransitionLayout;
|