Skip to main content
K
Last modified: 24/Jun/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.


#See also