synapsecns/sanguine

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

Summary

Maintainability
A
0 mins
Test Coverage
export const TableCell = ({ className, children, ...props }) => {
  return (
    <td
      className={`px-6 py-4 whitespace-nowrap text-sm text-gray-500 ${className}`}
      {...props}
    >
      {children}
    </td>
  )
}