UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

11 lines (10 loc) 513 B
import React from "react"; import { TableRowProps as CarbonTableRowProps } from "@carbon/react/es/components/DataTable/TableRow"; export interface TableRowProps extends CarbonTableRowProps, React.TdHTMLAttributes<HTMLTableRowElement> { /** * Display this row with the styles from a zebra style-enabled table. */ useZebraStyle?: boolean; } export declare function TableRow({ className, children, useZebraStyle, ...otherTableRowProps }: TableRowProps): React.JSX.Element; export default TableRow;