3ff5bbb5a7
* fix: border too thick, use grid head component * fix: unused and superfluous classes, define border color in one place * fix: tooltip should be on data not label
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
export const Footer = () => {
|
|
return (
|
|
<footer className="px-4 py-2 text-xs border-t border-default bg-neutral-100 dark:bg-neutral-800">
|
|
<div className="flex justify-between">
|
|
<div>Status</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|