monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
14 lines (13 loc) • 550 B
TypeScript
import React from "react";
import { SubIcon, VibeComponent, VibeComponentProps } from "../../../types";
export interface ITableHeaderCellProps extends VibeComponentProps {
title: string | React.ReactNode;
icon?: SubIcon;
infoContent?: string;
sortState?: "asc" | "desc" | "none";
onSortClicked?: (direction: "asc" | "desc" | "none") => void;
sortButtonAriaLabel?: string;
sticky?: boolean;
}
declare const TableHeaderCell: VibeComponent<ITableHeaderCellProps, HTMLDivElement>;
export default TableHeaderCell;