samling 0.13.1

App for managing apparel collections
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { ThColumnProps } from "../../../types/columns";
import { classNames } from "../../../utils";

export default function GenericThCell({ column, columnIndex }: ThColumnProps) {
  return (
    <th
      key={columnIndex}
      scope="col"
      className={classNames(
        "py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900",
        columnIndex === 0 ? "pl-6" : "",
      )}
    >
      {column.title}
    </th>
  );
}