UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

11 lines (10 loc) 276 B
import React from "react"; export interface TableRowProps { children: React.ReactNode; onClick?: () => void; selected?: boolean; hoverable?: boolean; compact?: boolean; columnTemplate?: string; } export declare const TableRow: React.FC<TableRowProps>;