UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

15 lines (14 loc) 386 B
import React from 'react'; import { ValueFormatter } from "../types/charts"; interface CustomYAxisTickProps { align: 'left' | 'right'; formatter: ValueFormatter; payload: { value: number; }; x: number; y: number; yAxisLabel?: boolean; } declare const CustomYAxisTick: React.NamedExoticComponent<CustomYAxisTickProps>; export default CustomYAxisTick;