Typewriter
Animated typewriter effect that cycles through a list of words with a blinking cursor.
Preview
Interactive Preview
Orix is built for
|
Installation
Usage
tsx
import { Typewriter } from "@/components/ui/typewriter"
export default function Demo() {
return (
<h2 className="text-4xl font-bold">
Build{" "}
<Typewriter
words={["fast.", "beautiful.", "modern.", "with Orix."]}
typingSpeed={80}
className="text-primary"
/>
</h2>
)
}Props
| Prop | Type | Default |
|---|---|---|
| words | string[] | - |
| typingSpeed | number | 80 |
| deletingSpeed | number | 40 |
| pauseDuration | number | 1800 |
| cursorChar | string | | |
| loop | boolean | true |