skeleton-example.tsx — ui Source File
Architecture documentation for skeleton-example.tsx, a tsx file in the ui codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 57c8d182_e8c7_fc66_4636_f0be5761c1cf["skeleton-example.tsx"] f56be340_a522_c6f7_dec3_5906873d14c8["example"] 57c8d182_e8c7_fc66_4636_f0be5761c1cf --> f56be340_a522_c6f7_dec3_5906873d14c8 deffd1e6_798d_b7fd_c687_7ccabc947893["card"] 57c8d182_e8c7_fc66_4636_f0be5761c1cf --> deffd1e6_798d_b7fd_c687_7ccabc947893 ec7b3976_34ea_1d29_d37a_b602bd34823b["skeleton"] 57c8d182_e8c7_fc66_4636_f0be5761c1cf --> ec7b3976_34ea_1d29_d37a_b602bd34823b style 57c8d182_e8c7_fc66_4636_f0be5761c1cf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
Example,
ExampleWrapper,
} from "@/registry/bases/base/components/example"
import { Card, CardContent, CardHeader } from "@/registry/bases/base/ui/card"
import { Skeleton } from "@/registry/bases/base/ui/skeleton"
export default function SkeletonExample() {
return (
<ExampleWrapper>
<SkeletonAvatar />
<SkeletonCard />
<SkeletonText />
<SkeletonForm />
<SkeletonTable />
</ExampleWrapper>
)
}
function SkeletonAvatar() {
return (
<Example title="Avatar">
<div className="flex w-full items-center gap-4">
<Skeleton className="size-10 shrink-0 rounded-full" />
<div className="grid gap-2">
<Skeleton className="h-4 w-[150px]" />
<Skeleton className="h-4 w-[100px]" />
</div>
</div>
</Example>
)
}
function SkeletonCard() {
return (
<Example title="Card">
<Card className="w-full">
<CardHeader>
<Skeleton className="h-4 w-2/3" />
<Skeleton className="h-4 w-1/2" />
</CardHeader>
<CardContent>
<Skeleton className="aspect-square w-full" />
</CardContent>
</Card>
</Example>
)
}
function SkeletonText() {
return (
<Example title="Text">
<div className="flex w-full flex-col gap-2">
<Skeleton className="h-4 w-full" />
<Skeleton className="h-4 w-full" />
<Skeleton className="h-4 w-3/4" />
</div>
</Example>
)
}
function SkeletonForm() {
return (
<Example title="Form">
<div className="flex w-full flex-col gap-7">
<div className="flex flex-col gap-3">
<Skeleton className="h-4 w-20" />
<Skeleton className="h-10 w-full" />
</div>
<div className="flex flex-col gap-3">
<Skeleton className="h-4 w-24" />
<Skeleton className="h-10 w-full" />
</div>
<Skeleton className="h-9 w-24" />
</div>
</Example>
)
}
function SkeletonTable() {
return (
<Example title="Table">
<div className="flex w-full flex-col gap-2">
<div className="flex gap-4">
<Skeleton className="h-4 flex-1" />
<Skeleton className="h-4 w-24" />
<Skeleton className="h-4 w-20" />
</div>
<div className="flex gap-4">
<Skeleton className="h-4 flex-1" />
<Skeleton className="h-4 w-24" />
<Skeleton className="h-4 w-20" />
</div>
<div className="flex gap-4">
<Skeleton className="h-4 flex-1" />
<Skeleton className="h-4 w-24" />
<Skeleton className="h-4 w-20" />
</div>
</div>
</Example>
)
}
Domain
Subdomains
Functions
Dependencies
- card
- example
- skeleton
Source
Frequently Asked Questions
What does skeleton-example.tsx do?
skeleton-example.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, UIPrimitives subdomain.
What functions are defined in skeleton-example.tsx?
skeleton-example.tsx defines 6 function(s): SkeletonAvatar, SkeletonCard, SkeletonExample, SkeletonForm, SkeletonTable, SkeletonText.
What does skeleton-example.tsx depend on?
skeleton-example.tsx imports 3 module(s): card, example, skeleton.
Where is skeleton-example.tsx in the architecture?
skeleton-example.tsx is located at apps/v4/registry/bases/base/examples/skeleton-example.tsx (domain: ComponentRegistry, subdomain: UIPrimitives, directory: apps/v4/registry/bases/base/examples).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free