Resizable
gymnopedies/resizableFreeComponent
Resizable — gymnopédies-themed shadcn primitive.
Install it
npx shadcn@latest add https://gymnopedies.shoota.work/r/resizable.jsonSource
1import * as ResizablePrimitive from "react-resizable-panels"23import { cn } from "@/lib/utils"45function ResizablePanelGroup({6 className,7 ...props8}: ResizablePrimitive.GroupProps) {9 return (10 <ResizablePrimitive.Group11 data-slot="resizable-panel-group"12 className={cn(13 "flex h-full w-full aria-[orientation=vertical]:flex-col",14 className15 )}16 {...props}17 />18 )19}2021function ResizablePanel({ ...props }: ResizablePrimitive.PanelProps) {22 return <ResizablePrimitive.Panel data-slot="resizable-panel" {...props} />23}2425function ResizableHandle({26 withHandle,27 className,28 ...props29}: ResizablePrimitive.SeparatorProps & {30 withHandle?: boolean31}) {32 return (33 <ResizablePrimitive.Separator34 data-slot="resizable-handle"35 className={cn(36 "relative flex w-px items-center justify-center bg-border ring-offset-background 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-ring focus-visible:outline-hidden aria-[orientation=horizontal]:h-px aria-[orientation=horizontal]:w-full aria-[orientation=horizontal]:after:left-0 aria-[orientation=horizontal]:after:h-1 aria-[orientation=horizontal]:after:w-full aria-[orientation=horizontal]:after:translate-x-0 aria-[orientation=horizontal]:after:-translate-y-1/2 [&[aria-orientation=horizontal]>div]:rotate-90",37 className38 )}39 {...props}40 >41 {withHandle && (42 <div className="z-10 flex h-6 w-1 shrink-0 rounded-lg bg-border" />43 )}44 </ResizablePrimitive.Separator>45 )46}4748export { ResizableHandle, ResizablePanel, ResizablePanelGroup }
What it pulls in
npm packages
Other registry items
Files it writes
More from gymnopedies
All 49 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | gymnopedies | Components | Free | 2 deps | |
| Alertalert | gymnopedies | Components | Free | 1 dep | |
| Alert Dialogalert-dialog | gymnopedies | Components | Free | 1 dep | |
| Articlearticle | gymnopedies | Components | Free | no deps | |
| Aspect Ratioaspect-ratio | gymnopedies | Components | Free | no deps | |
| Avataravatar | gymnopedies | Components | Free | 1 dep | |
| Badgebadge | gymnopedies | Components | Free | 2 deps | |
| Breadcrumbbreadcrumb | gymnopedies | Components | Free | 2 deps |
