scroll-area-example.tsx — ui Source File
Architecture documentation for scroll-area-example.tsx, a tsx file in the ui codebase. 5 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 83eae948_86f4_cef2_105c_d95e6de62b6d["scroll-area-example.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] 83eae948_86f4_cef2_105c_d95e6de62b6d --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 3eb36dd7_f51a_1431_02e2_7abafe315718["image"] 83eae948_86f4_cef2_105c_d95e6de62b6d --> 3eb36dd7_f51a_1431_02e2_7abafe315718 da02b53a_0c1d_d1a1_af31_74d99f1cdd7a["example"] 83eae948_86f4_cef2_105c_d95e6de62b6d --> da02b53a_0c1d_d1a1_af31_74d99f1cdd7a c99aca11_bfab_9f8e_60e3_9cbb4c7b67d1["scroll-area"] 83eae948_86f4_cef2_105c_d95e6de62b6d --> c99aca11_bfab_9f8e_60e3_9cbb4c7b67d1 ce9c943c_1595_a786_2c59_160dbbb2ba0f["separator"] 83eae948_86f4_cef2_105c_d95e6de62b6d --> ce9c943c_1595_a786_2c59_160dbbb2ba0f style 83eae948_86f4_cef2_105c_d95e6de62b6d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import * as React from "react"
import Image from "next/image"
import {
Example,
ExampleWrapper,
} from "@/registry/bases/radix/components/example"
import { ScrollArea, ScrollBar } from "@/registry/bases/radix/ui/scroll-area"
import { Separator } from "@/registry/bases/radix/ui/separator"
const tags = Array.from({ length: 50 }).map(
(_, i, a) => `v1.2.0-beta.${a.length - i}`
)
const works = [
{
artist: "Ornella Binni",
art: "https://images.unsplash.com/photo-1465869185982-5a1a7522cbcb?auto=format&fit=crop&w=300&q=80",
},
{
artist: "Tom Byrom",
art: "https://images.unsplash.com/photo-1548516173-3cabfa4607e9?auto=format&fit=crop&w=300&q=80",
},
{
artist: "Vladimir Malyav",
art: "https://images.unsplash.com/photo-1494337480532-3725c85fd2ab?auto=format&fit=crop&w=300&q=80",
},
] as const
export default function ScrollAreaExample() {
return (
<ExampleWrapper>
<ScrollAreaVertical />
<ScrollAreaHorizontal />
</ExampleWrapper>
)
}
function ScrollAreaVertical() {
return (
<Example title="Vertical">
<ScrollArea className="mx-auto h-72 w-48 rounded-md border">
<div className="p-4">
<h4 className="mb-4 text-sm leading-none font-medium">Tags</h4>
{tags.map((tag) => (
<React.Fragment key={tag}>
<div className="text-sm">{tag}</div>
<Separator className="my-2" />
</React.Fragment>
))}
</div>
</ScrollArea>
</Example>
)
}
function ScrollAreaHorizontal() {
return (
<Example title="Horizontal">
<ScrollArea className="mx-auto w-full max-w-96 rounded-md border p-4">
<div className="flex gap-4">
{works.map((artwork) => (
<figure key={artwork.artist} className="shrink-0">
<div className="overflow-hidden rounded-md">
<Image
src={artwork.art}
alt={`Photo by ${artwork.artist}`}
className="aspect-[3/4] h-fit w-fit object-cover"
width={300}
height={400}
/>
</div>
<figcaption className="text-muted-foreground pt-2 text-xs">
Photo by{" "}
<span className="text-foreground font-semibold">
{artwork.artist}
</span>
</figcaption>
</figure>
))}
</div>
<ScrollBar orientation="horizontal" />
</ScrollArea>
</Example>
)
}
Domain
Subdomains
Dependencies
- example
- image
- react
- scroll-area
- separator
Source
Frequently Asked Questions
What does scroll-area-example.tsx do?
scroll-area-example.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in scroll-area-example.tsx?
scroll-area-example.tsx defines 4 function(s): ScrollAreaExample, ScrollAreaHorizontal, ScrollAreaVertical, tags.
What does scroll-area-example.tsx depend on?
scroll-area-example.tsx imports 5 module(s): example, image, react, scroll-area, separator.
Where is scroll-area-example.tsx in the architecture?
scroll-area-example.tsx is located at apps/v4/registry/bases/radix/examples/scroll-area-example.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/bases/radix/examples).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free