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-13 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
agileflow-projectquestorg/resizableRemovedComponent
shadcn/ui publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/projectquestorg/AgileFlow/main/apps/docs/public/r/styles/radix-nova/resizable.jsonSource
1"use client"23import * as React from "react"4import * as ResizablePrimitive from "react-resizable-panels"56import { cn } from "@/registry/bases/radix/lib/utils"78function ResizablePanelGroup({9 className,10 ...props11}: React.ComponentProps<typeof ResizablePrimitive.PanelGroup>) {12 return (13 <ResizablePrimitive.PanelGroup14 data-slot="resizable-panel-group"15 className={cn(16 "flex h-full w-full data-[panel-group-direction=vertical]:flex-col",17 className18 )}19 {...props}20 />21 )22}2324function ResizablePanel({25 ...props26}: React.ComponentProps<typeof ResizablePrimitive.Panel>) {27 return <ResizablePrimitive.Panel data-slot="resizable-panel" {...props} />28}2930function ResizableHandle({31 withHandle,32 className,33 ...props34}: React.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {35 withHandle?: boolean36}) {37 return (38 <ResizablePrimitive.PanelResizeHandle39 data-slot="resizable-handle"40 className={cn(41 "bg-border focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden 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-x-0 data-[panel-group-direction=vertical]:after:-translate-y-1/2 [&[data-panel-group-direction=vertical]>div]:rotate-90",42 className43 )}44 {...props}45 >46 {withHandle && (47 <div className="bg-border h-6 w-1 rounded-lg z-10 flex shrink-0" />48 )}49 </ResizablePrimitive.PanelResizeHandle>50 )51}5253export { ResizablePanelGroup, ResizablePanel, ResizableHandle }
What it pulls in
npm packages
