Files
2026-07-13 12:08:39 +08:00

10 lines
260 B
TypeScript

import clsx from 'clsx';
import { PropsWithChildren } from 'react';
export function TableFooter({
children,
className,
}: PropsWithChildren<unknown> & { className?: string }) {
return <footer className={clsx('footer', className)}>{children}</footer>;
}