您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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