UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

28 lines (23 loc) 495 B
interface Skill { name: string; } interface SkillCandidate { name : string; scaleOrder: number; value : string; } interface Candidate { firstName: string; lastName: string; photo : string; selected: boolean; skillsCandidate: SkillCandidate[] } interface BubbleChartProps { max: number; skills: Skill[]; candidates: Candidate[]; skillWidth?: number | 'auto'; } declare const BubbleChart: React.ComponentType<BubbleChartProps>; export default BubbleChart;