vega-frontend-monorepo/apps/trading/components/footer/footer.tsx
Matthew Russell 3ff5bbb5a7
chore: use trading header and tidy tailwind usage (#1313)
* 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
2022-09-13 09:19:41 +01:00

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