diff --git a/src/components/routeMap/routeMap.js b/src/components/routeMap/routeMap.js index 79e65fc..4574bd1 100644 --- a/src/components/routeMap/routeMap.js +++ b/src/components/routeMap/routeMap.js @@ -9,6 +9,7 @@ import AZone from 'icons/icon-Zone-A'; import BZone from 'icons/icon-Zone-B'; import CZone from 'icons/icon-Zone-C'; import DZone from 'icons/icon-Zone-D'; +import EZone from 'icons/icon-Zone-E'; import { preventFromOverlap } from '../../util/terminals'; import { getTransformedCoord } from '../../util/arrows'; @@ -43,6 +44,8 @@ const getZoneIcon = (zone, size) => { return ; case 'D': return ; + case 'E': + return ; default: return
; } diff --git a/src/icons/icon-Zone-E.js b/src/icons/icon-Zone-E.js new file mode 100644 index 0000000..e284f51 --- /dev/null +++ b/src/icons/icon-Zone-E.js @@ -0,0 +1,39 @@ +import PropTypes from 'prop-types'; +import React from 'react'; + +const EZone = (props) => ( +
+ + icon-Zone-E + Created with Sketch. + + + + + + + + +
+); + +EZone.propTypes = { + size: PropTypes.string.isRequired, +}; + +export default EZone;