mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 00:24:20 +00:00
27 lines
751 B
TypeScript
27 lines
751 B
TypeScript
import {
|
|
ResizableHandle,
|
|
ResizablePanel,
|
|
ResizablePanelGroup,
|
|
} from "@/styles/base-nova/ui/resizable"
|
|
|
|
export function ResizableVertical() {
|
|
return (
|
|
<ResizablePanelGroup
|
|
orientation="vertical"
|
|
className="min-h-[200px] max-w-sm rounded-lg border"
|
|
>
|
|
<ResizablePanel defaultSize="25%">
|
|
<div className="flex h-full items-center justify-center p-6">
|
|
<span className="font-semibold">Header</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>
|
|
)
|
|
}
|