import React from 'react';
import cn from 'classnames';
import cls from './infoLine.module.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;