Auto Tying
Animates text to copy the behaviour of auto typing
// importing Auto typing component
import { Type } from "@wigxel/react-components/lib/typography";
// importing Auto typing component in a more discriptive way
import { Type as AutoTyping } from "@wigxel/react-components/lib/typography";import React from "react";
import { Type as AutoTyping } from "@wigxel/react-components/lib/typography";
const HeaderText = () => {
return (
<section>
<h1>
I am a
<AutoTyping
values={["Developer", "Gamer", "Advocate"]}
speed={100}
/>
</h1>
</section>
)
}Last updated