UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines (17 loc) 880 B
'use client'; import { withWebComponent } from '@ui5/webcomponents-react-base'; /** * The `TableHeaderCell` component represents a column in the `Table`. * * As it is tightly coupled to the `Table`, it should only be used in the `TableHeaderRow` * to ensure correct layout and design. * * * * __Note:__ This is a UI5 Web Component! [TableHeaderCell UI5 Web Component Documentation](https://ui5.github.io/webcomponents/components/TableHeaderCell) | [Repository](https://github.com/UI5/webcomponents) * * @since [2.0.0](https://github.com/UI5/webcomponents/releases/tag/v2.0.0) of __@ui5/webcomponents__. */ const TableHeaderCell = withWebComponent('ui5-table-header-cell', ['horizontalAlign', 'importance', 'minWidth', 'popinText', 'sortIndicator', 'width'], ['popinHidden'], ['action'], []); TableHeaderCell.displayName = 'TableHeaderCell'; export { TableHeaderCell };