typing-text-no-cursor

PreviousNext
Docs
reuicomponent

Preview

Loading preview…
registry/default/components/typing-text/no-cursor.tsx
import { TypingText } from '@/registry/default/ui/typing-text';

export default function Component() {
  return (
    <div className="flex items-center justify-center">
      <TypingText
        text="Clean typing without cursor"
        className="text-2xl font-medium text-muted-foreground"
        speed={60}
        showCursor={false}
      />
    </div>
  );
}

Installation

npx shadcn@latest add @reui/typing-text-no-cursor

Usage

import { TypingTextNoCursor } from "@/components/typing-text-no-cursor"
<TypingTextNoCursor />