jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
21 lines (20 loc) • 482 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Displays a table row.
*/
import React, { MouseEvent } from 'react';
interface TableRowProps {
/**
* Text for the button
*
* @default null
*/
children?: React.ReactNode;
/**
* The event when clicking a row.
*/
onClick?: (event: React.MouseEvent<HTMLTableRowElement, MouseEvent> | any) => void;
}
export declare const TableRow: ({ children, onClick }: TableRowProps) => JSX.Element;
export {};