# table (Flowbite v4 kit)

> Use the table component to show text, images, links, and other elements inside a structured set of data made up of rows and columns of table cells

## Props for `Table`

| Name | Type | Description |
|------|------|-------------|
| `borderless` | `boolean` | Whether to hide the table borders. Defaults to `false` |

## Blocks for `Table`

- `content`: The table structure, typically includes `Table:Header`, `Table:Body`, and optionally `Table:Footer`

## Props for `Table:Body`

| Name | Type | Description |
|------|------|-------------|
| `highlight` | `'none'|'hover'|'striped'` | The visual row style highlight. Defaults to `hover` |

## Blocks for `Table:Body`

- `content`: The table body rows, typically `Table:Row` components

## Blocks for `Table:Caption`

- `content`: The table caption text

## Blocks for `Table:Cell`

- `content`: The cell content

## Blocks for `Table:Footer`

- `content`: The table footer rows, typically `Table:Row` components

## Blocks for `Table:Head`

- `content`: The header cell content

## Blocks for `Table:Header`

- `content`: The header row(s), typically a `Table:Row` with `Table:Head` cells

## Blocks for `Table:Row`

- `content`: The row cells, typically `Table:Cell` or `Table:Head` components

## Dependencies

- tales-from-a-dev/twig-tailwind-extra:^1.0.0

- [View component](https://ux.symfony.com/toolkit/kits/flowbite-4/components/table)
