import type { TickRendererProps } from '@visx/axis'; function Tick(props: TickRendererProps) { const { formattedValue, ...tickProps } = props; return ( /* Increase `dy` slightly to fix alignment and spacing with tick lines */ {formattedValue} ); } export default Tick;