import { BaseAnimation } from 'components/AnimationBase' import styled, { keyframes } from 'styled-components' const FadeInAnimation = keyframes` from { opacity: 0; } to { opacity: 1; } ` export const FadeIn = styled(BaseAnimation)` animation-name: ${FadeInAnimation}; `