UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

16 lines (13 loc) 307 B
interface Candidate{ firstName?: string; lastName? : string; photo? : string; salary? : number; selected? : boolean; } interface GraphicBarProps { candidates?: Candidate[]; multiplier: number; } declare const GraphicBar: React.ComponentType<GraphicBarProps>; export default GraphicBar;