UNPKG

infocharts

Version:

<img src="https://raw.githubusercontent.com/garethslinn/public_infocharts/refs/heads/main/logo.svg" />

22 lines 569 B
import React from 'react'; import './styles/infocharts.scss'; interface HorizontalListItem { name: string; value: number; color?: string; valueColor?: string; } interface HorizontalListProps { title?: string; background?: string; foreground?: string; summary?: string; items: HorizontalListItem[]; labelColor?: string; valueType?: string; valueColor?: string; colors?: string[]; } declare const HorizontalList: React.FC<HorizontalListProps>; export default HorizontalList; //# sourceMappingURL=HorizontalList.d.ts.map