shadcn-react
Version:
A simple wrapper for shadcn/ui
13 lines (12 loc) • 527 B
TypeScript
import { ComponentProps } from 'react';
import { ResizablePanelGroup, ResizablePanel, ResizableHandle } from '../ui/resizable';
export interface ResizableProps extends ComponentProps<typeof ResizablePanelGroup> {
}
export interface ResizablePanelProps extends ComponentProps<typeof ResizablePanel> {
}
export interface ResizableHandleProps extends ComponentProps<typeof ResizableHandle> {
}
export declare const Resizable: typeof ResizablePanelGroup & {
Panel: typeof ResizablePanel;
Handle: typeof ResizableHandle;
};