@devinit/pdf-base
Version:
for creating DI print pdfs
19 lines (18 loc) • 397 B
TypeScript
/// <reference types="react" />
export interface Props {
config: {
labeling: {
prefix?: string;
autofit?: true;
showValues?: boolean;
};
};
data: Array<{
color?: string;
value: number;
name: string;
}>;
height: string;
}
declare const _default: (props: Props) => JSX.Element;
export default _default;