summaryrefslogtreecommitdiffstats
path: root/src/generic-components/graph/SVGShape.jsx
diff options
context:
space:
mode:
authorArul.Nambi <arul.nambi@amdocs.com>2018-09-05 14:44:15 -0400
committerArul.Nambi <arul.nambi@amdocs.com>2018-09-05 14:46:13 -0400
commit6b408bc2ea74ffbe3985c7f90211e59a2f00fad2 (patch)
treed0e3bab15d5c5587ef857051cce68bd389f6d20f /src/generic-components/graph/SVGShape.jsx
parentb68cd9cee606372747f6fee4a864de994b0518a7 (diff)
Upgrade to react 16
Issue-ID: AAI-1576 Change-Id: I2a3035c7922ccabdca446e76341adf6ca8785155 Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'src/generic-components/graph/SVGShape.jsx')
-rw-r--r--src/generic-components/graph/SVGShape.jsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/generic-components/graph/SVGShape.jsx b/src/generic-components/graph/SVGShape.jsx
index 0ee31fd..b06c46f 100644
--- a/src/generic-components/graph/SVGShape.jsx
+++ b/src/generic-components/graph/SVGShape.jsx
@@ -19,15 +19,16 @@
* ============LICENSE_END=========================================================
*/
import React, {Component} from 'react';
+import { PropTypes } from 'prop-types';
import NodeVisualElementConstants from './NodeVisualElementConstants';
class SVGShape extends Component {
static propTypes = {
- shapeType: React.PropTypes.string.isRequired,
- shapeAttributes: React.PropTypes.object.isRequired,
- shapeClass: React.PropTypes.object.isRequired,
- textValue: React.PropTypes.string
+ shapeType: PropTypes.string.isRequired,
+ shapeAttributes: PropTypes.object.isRequired,
+ shapeClass: PropTypes.object.isRequired,
+ textValue: PropTypes.string
};
static defaultProps = {