Files
shadcn-ui/apps/v4/examples/base/resizable-horizontal.tsx
2026-01-14 09:25:14 +04:00

27 lines
740 B
TypeScript

import {
ResizableHandle,
ResizablePanel,
ResizablePanelGroup,
} from "@/examples/base/ui/resizable"
export function ResizableHorizontal() {
return (
<ResizablePanelGroup
direction="horizontal"
className="min-h-[200px] rounded-lg border"
>
<ResizablePanel defaultSize={25}>
<div className="flex h-full items-center justify-center p-6">
<span className="font-semibold">Sidebar</span>
</div>
</ResizablePanel>
<ResizableHandle />
<ResizablePanel defaultSize={75}>
<div className="flex h-full items-center justify-center p-6">
<span className="font-semibold">Content</span>
</div>
</ResizablePanel>
</ResizablePanelGroup>
)
}