1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| 'use client'
| import type { FC } from 'react'
| import React from 'react'
| import s from './style.module.css'
|
| export type ILoadingAnimProps = {
| type: 'text' | 'avatar'
| }
|
| const LoadingAnim: FC<ILoadingAnimProps> = ({
| type,
| }) => {
| return (
| <div className={`${s['dot-flashing']} ${s[type]}`}></div>
| )
| }
| export default React.memo(LoadingAnim)
|
|