react-animate-z
Version:
Lightweight React animation library with Animate and AnimateTyping components, built using styled-components.
16 lines (15 loc) • 525 B
TypeScript
import React from 'react';
interface IFCursorProps {
readonly cursorColor?: string | null;
}
export interface IFAnimateTypingProps extends IFCursorProps {
readonly heading?: string;
readonly className?: string;
readonly dataText?: string[] | string;
readonly children?: React.ReactNode | string[] | string;
readonly typingSpeed?: number;
readonly deletingSpeed?: number;
readonly pauseTime?: number;
}
declare const AnimateTyping: React.FC<IFAnimateTypingProps>;
export default AnimateTyping;