@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
21 lines • 673 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 * as React from 'react';
import { LabelProps } from 'recharts';
export type OverlappedLabelProps = LabelProps & {
barTextColors?: string[];
data: Record<string, number | string>[];
index: number;
innerBarTextColor?: string;
isOutsideBar?: boolean;
label: string;
textColor?: string;
outsideBarDataKey: string;
};
export declare const OverlappedLabel: React.FC<OverlappedLabelProps>;
export default OverlappedLabel;
//# sourceMappingURL=index.d.ts.map