All components

Type Writter

Type Writter is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.

UI Layouts MIT other

What it is

Type Writter is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.

How to use it

Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.

Open in the catalogue

Five free copies a month. No card.

No packages beyond the project baseline

Licence

This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.

Type Writter

./registry/components/type-writter.tsx
'use client';
import { TypeWritter } from '@/components/ui/typing-writter';
import React, { useState } from 'react';

function TypeWritterDemo() {
  const [key, setKey] = useState(0);

  const handleComplete = () => {
    console.log('Typing complete');
    setKey((prev) => prev + 1);
  };

  return (
    <div>
      <TypeWritter key={key} text='New Role Detected' charDelay={55} onComplete={handleComplete} />
    </div>
  );
}

export default TypeWritterDemo;

Similar components