UNPKG

@steambrew/client

Version:
12 lines (11 loc) 348 B
import { FC, ReactNode } from 'react'; export interface PanelSectionProps { title?: string; spinner?: boolean; children?: ReactNode; } export declare const PanelSection: FC<PanelSectionProps>; export interface PanelSectionRowProps { children?: ReactNode; } export declare const PanelSectionRow: FC<PanelSectionRowProps>;