'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 = ({ type, }) => { return (
) } export default React.memo(LoadingAnim)