UNPKG

flowtoken

Version:

![flow token demo](https://nextjs-omega-five-46.vercel.app/demo.gif)

15 lines (14 loc) 422 B
import React from 'react'; interface AnimatedImageProps { src: string; alt: string; animation: string; animationDuration: string; animationTimingFunction: string; animationIterationCount: number; height?: string; width?: string; objectFit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'; } declare const AnimatedImage: React.FC<AnimatedImageProps>; export default AnimatedImage;