This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
resizable
accelya-ui-lib/resizableRemovedComponent
shadcn/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/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
