lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
16 lines • 647 B
TypeScript
import React, { ReactNode } from "react";
export interface TypingTextProps {
children: ReactNode;
as?: any;
className?: string;
delay?: number;
duration?: number;
fontSize?: string;
fontWeight?: string;
color?: string;
letterSpacing?: string;
align?: "left" | "center" | "right";
loop?: boolean;
}
export declare const TypingText: ({ children, as: Component, className, delay, duration, fontSize, fontWeight, color, letterSpacing, align, loop, }: TypingTextProps) => React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
//# sourceMappingURL=typing-text.d.ts.map