resizable
yyc3-knowledge-base/resizableUnverifiedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/YYC-Cube/YYC3-Knowledge-Base/main/YYC3-D/ui/apps/v4/resizable.jsonSource
1"use client"23import { GripVertical } from "lucide-react"4import * as ResizablePrimitive from "react-resizable-panels"56import { cn } from "@/lib/utils"78const ResizablePanelGroup = ({9 className,10 ...props11}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => (12 <ResizablePrimitive.PanelGroup13 className={cn(14 "flex h-full w-full data-[panel-group-direction=vertical]:flex-col",15 className16 )}17 {...props}18 />19)2021const ResizablePanel = ResizablePrimitive.Panel2223const ResizableHandle = ({24 withHandle,25 className,26 ...props27}: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {28 withHandle?: boolean29}) => (30 <ResizablePrimitive.PanelResizeHandle31 className={cn(32 "relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",33 className34 )}35 {...props}36 >37 {withHandle && (38 <div className="z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border">39 <GripVertical className="h-2.5 w-2.5" />40 </div>41 )}42 </ResizablePrimitive.PanelResizeHandle>43)4445export { ResizablePanelGroup, ResizablePanel, ResizableHandle }
What it pulls in
npm packages
Files it writes
More from shadcn/ui
All 411 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordionaccordion | shadcn/ui | Components | Unverified | 1 dep | |
| alertalert | shadcn/ui | Components | Unverified | no deps | |
| alert-dialogalert-dialog | shadcn/ui | Components | Unverified | 1 dep | |
| aspect-ratioaspect-ratio | shadcn/ui | Components | Unverified | 1 dep | |
| avataravatar | shadcn/ui | Components | Unverified | 1 dep | |
| badgebadge | shadcn/ui | Components | Unverified | 1 dep | |
| breadcrumbbreadcrumb | shadcn/ui | Components | Unverified | 1 dep | |
| buttonbutton | shadcn/ui | Components | Unverified | 1 dep |
