Files
shop-front/src/components/PageLoading.tsx
T
hamid zarghami 09a210c943 order detail
2025-08-26 15:58:24 +03:30

16 lines
483 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client'
import { FC } from 'react'
const PageLoading: FC = () => {
return (
<div className="flex items-center justify-center py-20">
<div className="flex flex-col items-center gap-4">
<div className="size-10 border-4 border-primary/20 border-t-primary rounded-full animate-spin"></div>
<p className="text-gray-600">در حال بارگذاری...</p>
</div>
</div>
)
}
export default PageLoading