import cn from 'classnames'; import cls from './infoLine.css'; const InfoLine = ({ children }) => (
{ children }
) const Point = ({ label, value, display=true, color, dotColor }) => display ?
{ dotColor != null &&
} { `${label}:` } { value }
: null; InfoLine.Point = Point; export default InfoLine;