sombreroEnPuntas/car-gallery

View on GitHub
components/wrappers/Earned.js

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'styled-components'
import { animations } from '.'

const Earned = styled.div`
  animation: ${animations.rotateIn} 1.4s ease-out forwards,
    ${animations.fadeOut} 2s ease-out forwards;

  position: absolute;
`

export default Earned