import React from 'react'; import PropTypes from 'prop-types'; import { Progress, InputGroupAddon, InputGroupText, Input, InputGroup } from './../../../components'; const MetricVsTarget = (props) => (

{ props.value }

Target: { props.targetValue }
Daily Target:
) MetricVsTarget.propTypes = { title: PropTypes.node, value: PropTypes.node, progressbarValue: PropTypes.string, progressbarColor: PropTypes.node, targetValue: PropTypes.node }; MetricVsTarget.defaultProps = { title: "Title", value: "000.000", progressbarValue: "24", progressbarColor: "secondary", targetValue: "000.000" }; export { MetricVsTarget };