UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

27 lines (26 loc) 1.18 kB
import '@ui5/webcomponents/dist/TableCell.js'; import type { ReactNode } from 'react'; import type { CommonProps, Ui5DomRef } from '../../types/index.js'; interface TableCellAttributes { } interface TableCellDomRef extends Required<TableCellAttributes>, Ui5DomRef { } interface TableCellPropTypes extends TableCellAttributes, Omit<CommonProps, 'children'> { /** * Defines the content of the component. */ children?: ReactNode | ReactNode[]; } /** * The `TableCell` represents a cell inside of a `Table`. * It is tightly coupled to the `Table` and thus should only be used in the table component. * * * * __Note__: This is a UI5 Web Component! [Repository](https://github.com/SAP/ui5-webcomponents) | [Documentation](https://sap.github.io/ui5-webcomponents/) * * @since [2.0.0](https://github.com/SAP/ui5-webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__. */ declare const TableCell: import("react").ForwardRefExoticComponent<TableCellPropTypes & import("../../internal/withWebComponent.js").WithWebComponentPropTypes & import("react").RefAttributes<TableCellDomRef>>; export { TableCell }; export type { TableCellDomRef, TableCellPropTypes };