tableFooter function

BloomNode tableFooter({
  1. required List<BloomNode> children,
  2. String extraClassName = '',
})

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,
  );
}