synapsecns/sanguine

View on GitHub
packages/explorer-ui/components/tailwind/TableHeaderCell.tsx

Summary

Maintainability
A
35 mins
Test Coverage
export const TableHeaderCell = ({ children }) => {
  return (
    <th
      scope="col"
      className="px-6 py-3 text-xs font-medium tracking-wider text-left text-gray-500 uppercase"
    >
      {children}
    </th>
  )
}