Skip to content
Snippets Groups Projects
loading-item.tsx 241 B
import { Icons } from "./icons"

export default function LoadingItem() {
    return (
        <div className="w-full m-6 flex items-center justify-center">
            <Icons.spinner className="h-6 w-6 animate-spin" />
        </div>
    )
}