baseui
Version:
A React Component library implementing the Base design language
17 lines (14 loc) • 658 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SortableHeadCell = void 0;
var _table = require("../table");
var _styledComponents = require("./styled-components");
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
// @ts-expect-error todo(flow->ts) this assignment is not correct title property is declared as ReactNode but then it is used on div element… which is not correct
const SortableHeadCell = exports.SortableHeadCell = (0, _table.SortableHeadCellFactory)(_styledComponents.StyledHeadCell);