UNPKG

infinity-ui-elements

Version:

A React TypeScript component library with Tailwind CSS design system

25 lines 616 B
import * as React from "react"; export interface TableDetailPanelProps { /** * Whether the panel is open */ isOpen: boolean; /** * Callback to close the panel */ onClose?: () => void; /** * Content to display in the panel */ children: React.ReactNode; /** * Custom class name */ className?: string; /** * Panel width */ width?: string | number; } export declare const TableDetailPanel: React.ForwardRefExoticComponent<TableDetailPanelProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=TableDetailPanel.d.ts.map