MCPcopy Create free account
hub / github.com/AntiHub-Project/AntiHub / Loader

Function Loader

components/ai-elements/loader.tsx:86–96  ·  view source on GitHub ↗
({ className, size = 16, ...props }: LoaderProps)

Source from the content-addressed store, hash-verified

84};
85
86export const Loader = ({ className, size = 16, ...props }: LoaderProps) => (
87 <div
88 className={cn(
89 "inline-flex animate-spin items-center justify-center",
90 className
91 )}
92 {...props}
93 >
94 <LoaderIcon size={size} />
95 </div>
96);

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected