Table component based on MUI Table. Only meant for displaying data, not interacting with it.

```
type HeaderType = {
  label: string
  field: string
  align?: 'right' | 'center' | 'left'
  width?: string
}

type RowType = Record<string, any>
```
