<.live_component
module={Table}
headers={[id: "ID", name: "Name", lorem: "Lorem", actions: ""]}
filterable={[id: [odd: "Odd IDs", even: "Even IDs"]]}
sortable={[:id, :name]}
mobile_hidden={[:lorem, :actions]}
>
<%= for i <- 1..5 do %>
<.table_row>
<.table_cell>
<%= i %>
</.table_cell>
<.table_cell>
record #<%= i %>
</.table_cell>
<.table_cell class="hidden md:table-cell">
ipsum dolor sit amet
</.table_cell>
<.table_button_cell class="hidden md:table-cell">
<.table_button icon="fas fa-pencil-alt" />
<.table_button icon="fas fa-trash text-danger-txt" class="hover:bg-danger-bg-hover" />
</.table_button_cell>
</.table_row>
<% end %>
</.live_component>