Typewriter Effect
Text that types itself out character by character with a blinking cursor.
Properties
Hello, World! Welcome to ReactΩ.
Text to type
50
Typing speed (ms)
true
Show blinking cursor
Installation
npm install @reactomega/uiUsage
Usage
import { TypewriterEffect } from '@reactomega/ui';
export default function App() {
return (
<TypewriterEffect
text="Hello, World!"
speed={50}
showCursor={true}
/>
);
}