mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
11 lines
147 B
TypeScript
11 lines
147 B
TypeScript
import { keyframes } from '@emotion/react';
|
|
|
|
export const fadeIn = keyframes({
|
|
'0%': {
|
|
opacity: 0,
|
|
},
|
|
'100%': {
|
|
opacity: 1,
|
|
},
|
|
});
|