import { BaseAnimation } from 'components/AnimationBase'
import styled, { keyframes } from 'styled-components'

const {{pascalCase name}}Animation = keyframes``

export const {{pascalCase name}} = styled(BaseAnimation)`
  animation-name: ${ {{pascalCase name}}Animation };
`
