GridFooter.tsx 432 B

12345678910111213141516
  1. import { PropsWithChildren } from 'react'
  2. import { cn } from 'ui'
  3. export const GridFooter = ({ children, className }: PropsWithChildren<{ className?: string }>) => {
  4. return (
  5. <div
  6. aria-label="Table grid footer"
  7. className={cn(
  8. 'flex min-h-10 h-10 overflow-hidden overflow-x-auto items-center justify-between px-2 w-full border-t gap-x-8',
  9. className
  10. )}
  11. >
  12. {children}
  13. </div>
  14. )
  15. }