Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,34 @@
import type { ComponentProps } from 'react'
import { Loader } from '@/components/ui/loader'
import { cn } from '@/lib/utils'
interface PageLoaderProps extends Omit<ComponentProps<'div'>, 'children'> {
label?: string
}
export function PageLoader({
'aria-label': ariaLabel,
className,
label = 'Loading',
role = 'status',
...props
}: PageLoaderProps) {
return (
<div
{...props}
aria-label={ariaLabel ?? label}
className={cn('grid h-full place-items-center', className)}
role={role}
>
<Loader
aria-hidden="true"
className="size-10 text-primary/70"
pathSteps={220}
role="presentation"
strokeScale={0.72}
type="rose-curve"
/>
</div>
)
}