UNPKG

zhu-jiang-yi-yuan-mobile

Version:

南方医科大学珠江医院移动端

12 lines (11 loc) 319 B
import { IBaseGemoProps } from 'bizcharts/es/interface'; import { HTMLAttributes } from 'react'; import { BarData } from './BarData'; export type BarProps = { title: string; data: Array<BarData>; percent?: boolean; height?: nubmer; } & Pick<HTMLAttributes<any>, 'className'> & Pick<IBaseGemoProps, 'color'>