1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00
portainer/app/react/components/datatables/TableFooter.tsx
LP B 1ff19f8604
fix(app/home): env tile hover style [EE-5299] (#8765)
* fix(app/home): environment item hover

* fix(app/home): remove white border above env list footer

* fix(app/home): icon color on edit buttons hover in high contrast theme
2023-05-04 16:00:56 +02:00

9 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>;
}