language text full complated

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-11-10 17:21:28 +05:00
commit 0e8b310558
93 changed files with 12581 additions and 0 deletions

16
components/ui/spinner.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { Loader2Icon } from 'lucide-react'
import { cn } from '@/lib/utils'
function Spinner({ className, ...props }: React.ComponentProps<'svg'>) {
return (
<Loader2Icon
role="status"
aria-label="Loading"
className={cn('size-4 animate-spin', className)}
{...props}
/>
)
}
export { Spinner }