@nvq/flowtoken
Version:
Animated React components for streaming text and markdown with GitHub theme syntax highlighting (forked from flowtoken)
15 lines (14 loc) • 430 B
TypeScript
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 _default: React.NamedExoticComponent<AnimatedImageProps>;
export default _default;