mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 00:54:15 +00:00
27 lines
785 B
TypeScript
27 lines
785 B
TypeScript
import {
|
|
ResizableHandle,
|
|
ResizablePanel,
|
|
ResizablePanelGroup,
|
|
} from "@/examples/base/ui/resizable"
|
|
|
|
export default 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>
|
|
)
|
|
}
|