UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

16 lines (15 loc) 492 B
import React from 'react'; import { ISingleAffix } from '../../../../../constants/single-style'; interface IValueContentProps { prefix: ISingleAffix; suffix: ISingleAffix; prefixStyle: IKeyValues; suffixStyle: IKeyValues; chartColor: string; displayData: React.ReactNode; defaulTitleStyle: IKeyValues; trendView?: React.ReactNode; minWidth?: number | string; } export default function ValueContent(props: IValueContentProps): React.JSX.Element; export {};