UNPKG

@razorpay/blade

Version:

The Design System that powers Razorpay

26 lines (22 loc) 748 B
import * as React from 'react'; import { forwardRef } from 'react'; import { arrayTooltipSearcher } from '../state/optionsSlice.js'; import { CartesianChart } from './CartesianChart.js'; var allowedTooltipTypes = ['axis']; /** * @consumes ResponsiveContainerContext * @provides CartesianViewBoxContext * @provides CartesianChartContext */ var LineChart = /*#__PURE__*/forwardRef((props, ref) => { return /*#__PURE__*/React.createElement(CartesianChart, { chartName: "LineChart", defaultTooltipEventType: "axis", validateTooltipEventTypes: allowedTooltipTypes, tooltipPayloadSearcher: arrayTooltipSearcher, categoricalChartProps: props, ref: ref }); }); export { LineChart }; //# sourceMappingURL=LineChart.js.map