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