Last modified: 4/Oct/2024
Typing Indicator
Animation that indicates the user typing
#Usage
import { useState } from 'react'
import { TypingIndicator } from '@kinsta/stratus'
const MyComponent = () => {
const [typing, setTyping] = useState(false)
return typing ? <TypingIndicator /> : <HappyLittleMessage />
}
This component does not accept any props.