react-hacker-text-effect
v1.0.2
Published
Adding encryption effect to given text
Downloads
26
Readme
react-hacker-text-effect
react-hacker-text-effect is a react base component that add encryption effect to given text.
codesandbox demo -> Demo
Installation
Use the package manager npm to install react-hacker-text-effect.
npm install react-hacker-text-effect
Usage
import React from "react";
import { HackText } from "react-hacker-text-effect";
import "./styles.css";
export default function App() {
return (
<div className="App">
<h1>react-hacker-text-effect</h1>
<HackText word="Secret Message" textSize="28px" />,
</div>
);
}
props| default value| info
--- | --- | ---
word | Loading
| string, the text you want to apply the effect on.
textSize| 60px
| string, text font size.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.