import type { FC } from 'react'; import type { TickRendererProps } from '@visx/axis'; import { Group } from '@cutting/svg'; import { SVGMathJax } from '@cutting/use-mathjax'; export const BottomAxis: FC = ({ formattedValue, x, y }) => { if (formattedValue === '$0$') { return <>; } return ( ); };