import { Property } from 'csstype'; import { cssProperty } from '../utils/style'; export const animation = cssProperty('animation'); export const animationDelay = cssProperty('animation-delay'); export const animationDirection = cssProperty('animation-direction'); export const animationDuration = cssProperty('animation-duration'); export const animationFillMode = cssProperty('animation-fill-mode'); export const animationIterationCount = cssProperty('animation-iteration-count'); export const animationName = cssProperty('animation-name'); export const animationPlayState = cssProperty('animation-play-state'); export const animationTimingFunction = cssProperty('animation-timing-function');