spinner.tsx — ui Source File
Architecture documentation for spinner.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 7d245b2e_cdfe_e717_ed37_63db80064ce7["spinner.tsx"] 3d9438e8_7604_787c_4898_907262aff28b["utils"] 7d245b2e_cdfe_e717_ed37_63db80064ce7 --> 3d9438e8_7604_787c_4898_907262aff28b d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"] 7d245b2e_cdfe_e717_ed37_63db80064ce7 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3 style 7d245b2e_cdfe_e717_ed37_63db80064ce7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { cn } from "@/examples/base/lib/utils"
import { Loader2Icon } from "lucide-react"
function Spinner({ className, ...props }: React.ComponentProps<"svg">) {
return (
<Loader2Icon
role="status"
aria-label="Loading"
className={cn("size-4 animate-spin", className)}
{...props}
/>
)
}
export { Spinner }
Domain
Subdomains
Functions
Dependencies
- lucide-react
- utils
Source
Frequently Asked Questions
What does spinner.tsx do?
spinner.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, SearchAPI subdomain.
What functions are defined in spinner.tsx?
spinner.tsx defines 1 function(s): Spinner.
What does spinner.tsx depend on?
spinner.tsx imports 2 module(s): lucide-react, utils.
Where is spinner.tsx in the architecture?
spinner.tsx is located at apps/v4/examples/base/ui-rtl/spinner.tsx (domain: DocumentationAtlas, subdomain: SearchAPI, directory: apps/v4/examples/base/ui-rtl).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free