| 123456789101112131415161718 |
- 'use client'
- import type { FC } from 'react'
- import React from 'react'
- import s from './style.module.css'
- import cn from '@/utils/classnames'
-
- export type ILoadingAnimProps = {
- type: 'text' | 'avatar'
- }
-
- const LoadingAnim: FC<ILoadingAnimProps> = ({
- type,
- }) => {
- return (
- <div className={cn(s['dot-flashing'], s[type])} />
- )
- }
- export default React.memo(LoadingAnim)
|