https://www.npmjs.com/package/react-slot-machine-text
npm i react-slot-machine-text
import { SlotMachine } from 'react-slot-machine-text';
/* ... */
<SlotMachine
initialText={'Click Me!'}
textData={['Option #1', 'Option #2', ...]} // array of string
random={true} // whether the options are displayed in a random order (true) or in sequential order (false), true by default
/>
/* ... */
/* change the style of the inner text (<p>) */
.slotMachineText {
font-size: xx-large;
caret-color: transparent;
cursor: pointer;
}