UNPKG

@linkdesign/screen

Version:

屏组件库,但使用场景又不局限于屏。主要用于BI、大盘和屏

31 lines (30 loc) 594 B
import { EChartOption } from 'echarts'; import { UniversalStyle } from '../title'; interface IProps { /** * 类名 */ className?: string; /** * 通用样式 */ universalStyle?: UniversalStyle; /** * 数据项 */ dataSource: { name: string; value: number; }[]; /** * echarts options配置 */ options: EChartOption & { /** * 空态占位图 url */ placeholder?: string; }; } declare const MiniLineChart: (props: IProps) => JSX.Element; export default MiniLineChart;