UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

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