Home / File/ resizable-handle.tsx — ui Source File

resizable-handle.tsx — ui Source File

Architecture documentation for resizable-handle.tsx, a tsx file in the ui codebase. 1 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  592eea73_1097_f275_0c4c_02da12a39534["resizable-handle.tsx"]
  ae52c5ba_3960_103b_4faa_3683712f8cc3["resizable"]
  592eea73_1097_f275_0c4c_02da12a39534 --> ae52c5ba_3960_103b_4faa_3683712f8cc3
  style 592eea73_1097_f275_0c4c_02da12a39534 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {
  ResizableHandle,
  ResizablePanel,
  ResizablePanelGroup,
} from "@/registry/default/ui/resizable"

export function ResizableHandleDemo() {
  return (
    <ResizablePanelGroup
      direction="horizontal"
      className="min-h-[200px] max-w-md rounded-lg border md:min-w-[450px]"
    >
      <ResizablePanel defaultSize={25}>
        <div className="flex h-full items-center justify-center p-6">
          <span className="font-semibold">Sidebar</span>
        </div>
      </ResizablePanel>
      <ResizableHandle withHandle />
      <ResizablePanel defaultSize={75}>
        <div className="flex h-full items-center justify-center p-6">
          <span className="font-semibold">Content</span>
        </div>
      </ResizablePanel>
    </ResizablePanelGroup>
  )
}

Subdomains

Dependencies

  • resizable

Frequently Asked Questions

What does resizable-handle.tsx do?
resizable-handle.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 resizable-handle.tsx?
resizable-handle.tsx defines 1 function(s): ResizableHandleDemo.
What does resizable-handle.tsx depend on?
resizable-handle.tsx imports 1 module(s): resizable.
Where is resizable-handle.tsx in the architecture?
resizable-handle.tsx is located at deprecated/www/registry/default/internal/sink/components/resizable-handle.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/default/internal/sink/components).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free