import { Wrapper, Title, DividerUnderTitle, Characteristics, KeyValueWrapper, Key, Value, ColorCircleWrapper, ColorCircle, ZoneCenterLocation, SmallTitle, LatLngCenter, LabelAndLatLngWrapper, LatLngLabel, LatLngValue, ZoneCornersLocation, TableWrapper, } from './styles'; const ZoneSector = ({ name = '', hourlyRate = 0, from = 0, to = 0, color = '', centerLocation = null, coords = [], }) => { return ( Паркинг Зона Назив: {name ?? ''} Цена од Час: {hourlyRate ?? 0} ден. Работни часови: {from < 10 ? '0' + from : from}{' '} -{' '} {to < 10 ? '0' + to : to} Боја на зона: Центар на Зона Латитуда: {centerLocation?.lat ?? ''} Лонгитуда: {centerLocation?.lat ?? ''} Темиња на Зона {coords && coords.map(({ lat, lng }, index) => ( ))}
Латитуда Лонгитуда
{lat} {lng}
); }; export default ZoneSector;