@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
16 lines (15 loc) • 705 B
JavaScript
'use client';
import { withWebComponent } from '@ui5/webcomponents-react-base';
/**
* 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! [TableCell UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/TableCell) | [Repository](https://github.com/UI5/webcomponents)
*
* @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__.
*/
const TableCell = withWebComponent('ui5-table-cell', ['horizontalAlign'], ['merged'], [], []);
TableCell.displayName = 'TableCell';
export { TableCell };