tableFooter function
Semantic <tfoot> table footer element.
Implementation
BloomNode tableFooter({
required List<BloomNode> children,
String extraClassName = '',
}) {
return El(
'tfoot',
className: cn(['border-t border-[var(--border)] bg-[var(--muted)]/50 font-medium', extraClassName]),
children: children,
);
}