UNPKG

@devinit/pdf-base

Version:
12 lines (11 loc) 302 B
/// <reference types="react" /> export declare type Orientation = 'horizontal' | 'vertical'; export interface Props { orientation: Orientation; data: Array<{ color: string; value: string; }>; } declare const _default: (props: Props) => JSX.Element; export default _default;