@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
23 lines • 762 B
TypeScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { TypographyProps } from '@mui/material';
import React from 'react';
import { XAxisProps } from 'recharts';
import { VariantType } from "../../../types";
interface PayloadProps {
value: string;
}
export type CustomizedAxisTickProps = XAxisProps & {
onClick?: (e: PayloadProps) => void;
payload?: PayloadProps;
textWidth?: number;
variant?: VariantType;
yAxisLabelTypographyProps?: TypographyProps;
};
export declare const CustomizedAxisTick: React.FC<CustomizedAxisTickProps>;
export default CustomizedAxisTick;
//# sourceMappingURL=index.d.ts.map