diff --git a/Example/examples/Circle.js b/Example/examples/Circle.js index 5fd3ee84..25fc8600 100644 --- a/Example/examples/Circle.js +++ b/Example/examples/Circle.js @@ -4,7 +4,7 @@ import React, { import Svg, { Circle -} from 'react-native-art-svg'; +} from 'react-native-svg'; class CircleExample extends Component{ static title = 'Circle'; diff --git a/Example/examples/Clipping.js b/Example/examples/Clipping.js index 3c4dba0b..59acfcc3 100644 --- a/Example/examples/Clipping.js +++ b/Example/examples/Clipping.js @@ -13,7 +13,7 @@ import Svg, { G, Polygon, Circle -} from 'react-native-art-svg'; +} from 'react-native-svg'; class ClipPathAttr extends Component{ static title = 'Clip by set clip-path with a path data'; diff --git a/Example/examples/Ellipse.js b/Example/examples/Ellipse.js index df8d0d39..37e0e4a8 100644 --- a/Example/examples/Ellipse.js +++ b/Example/examples/Ellipse.js @@ -4,7 +4,7 @@ import React, { import Svg, { Ellipse -} from 'react-native-art-svg'; +} from 'react-native-svg'; class EllipseExample extends Component{ static title = 'Ellipse'; diff --git a/Example/examples/G.js b/Example/examples/G.js index 4c591002..f46f2655 100644 --- a/Example/examples/G.js +++ b/Example/examples/G.js @@ -8,7 +8,7 @@ import Svg, { Line, Rect, Text -} from 'react-native-art-svg'; +} from 'react-native-svg'; class GExample extends Component{ static title = 'G children props inherit'; diff --git a/Example/examples/Gradients.js b/Example/examples/Gradients.js index edceb235..59497563 100644 --- a/Example/examples/Gradients.js +++ b/Example/examples/Gradients.js @@ -11,7 +11,7 @@ import Svg, { Circle, Text, Rect -} from 'react-native-art-svg'; +} from 'react-native-svg'; class LinearGradientHorizontal extends Component{ static title = 'Define an ellipse with a horizontal linear gradient from yellow to red'; diff --git a/Example/examples/Line.js b/Example/examples/Line.js index b7cd7752..6bafdbe4 100644 --- a/Example/examples/Line.js +++ b/Example/examples/Line.js @@ -4,7 +4,7 @@ import React, { import Svg, { Line -} from 'react-native-art-svg'; +} from 'react-native-svg'; class LineExample extends Component{ static title = 'Line'; diff --git a/Example/examples/Path.js b/Example/examples/Path.js index 857c035d..1353d03b 100644 --- a/Example/examples/Path.js +++ b/Example/examples/Path.js @@ -7,7 +7,7 @@ import Svg, { G, Circle, Text -} from 'react-native-art-svg'; +} from 'react-native-svg'; class PathExample extends Component{ static title = 'Path'; diff --git a/Example/examples/Polygon.js b/Example/examples/Polygon.js index ecf8985d..dbcb53a1 100644 --- a/Example/examples/Polygon.js +++ b/Example/examples/Polygon.js @@ -5,7 +5,7 @@ import React, { import Svg, { Polygon, G -} from 'react-native-art-svg'; +} from 'react-native-svg'; class PolygonExample extends Component{ static title = 'The following example creates a polygon with three sides'; diff --git a/Example/examples/Polyline.js b/Example/examples/Polyline.js index 2bf91230..c0917038 100644 --- a/Example/examples/Polyline.js +++ b/Example/examples/Polyline.js @@ -4,7 +4,7 @@ import React, { import Svg, { Polyline -} from 'react-native-art-svg'; +} from 'react-native-svg'; class PolylineExample extends Component{ static title = 'The element is used to create any shape that consists of only straight lines'; diff --git a/Example/examples/Rect.js b/Example/examples/Rect.js index 76ff591d..342619b1 100644 --- a/Example/examples/Rect.js +++ b/Example/examples/Rect.js @@ -4,7 +4,7 @@ import React, { import Svg, { Rect -} from 'react-native-art-svg'; +} from 'react-native-svg'; class RectExample extends Component{ static title = 'Rect'; diff --git a/Example/examples/Stroking.js b/Example/examples/Stroking.js index c31e158c..0f22d5bb 100644 --- a/Example/examples/Stroking.js +++ b/Example/examples/Stroking.js @@ -5,7 +5,7 @@ import React, { import Svg, { Path, G -} from 'react-native-art-svg'; +} from 'react-native-svg'; class StrokeExample extends Component{ static title = 'The stroke property defines the color of a line, text or outline of an element'; diff --git a/Example/examples/Svg.js b/Example/examples/Svg.js index 4adb0f63..d88865ea 100644 --- a/Example/examples/Svg.js +++ b/Example/examples/Svg.js @@ -6,7 +6,7 @@ import Svg, { Circle, Rect, Path -} from 'react-native-art-svg'; +} from 'react-native-svg'; class SvgExample extends Component{ static title = 'SVG'; diff --git a/Example/examples/Symbol.js b/Example/examples/Symbol.js index 3b0a0c82..d4bbed99 100644 --- a/Example/examples/Symbol.js +++ b/Example/examples/Symbol.js @@ -6,7 +6,7 @@ import Svg, { Symbol, Circle, Use -} from 'react-native-art-svg'; +} from 'react-native-svg'; class SymbolExample extends Component{ static title = 'Symbol example'; diff --git a/Example/examples/Text.js b/Example/examples/Text.js index 36e41190..bade1dc7 100644 --- a/Example/examples/Text.js +++ b/Example/examples/Text.js @@ -4,7 +4,7 @@ import React, { import Svg, { Text -} from 'react-native-art-svg'; +} from 'react-native-svg'; class TextExample extends Component{ static title = 'Text'; diff --git a/Example/examples/Use.js b/Example/examples/Use.js index 68f34bd1..6bb53997 100644 --- a/Example/examples/Use.js +++ b/Example/examples/Use.js @@ -9,7 +9,7 @@ import Svg, { Rect, Circle, Polyline -} from 'react-native-art-svg'; +} from 'react-native-svg'; class UseExample extends Component{ static title = 'Reuse svg code'; diff --git a/Example/main.js b/Example/main.js index 2f9fea27..5ad75de6 100644 --- a/Example/main.js +++ b/Example/main.js @@ -21,7 +21,7 @@ import { Svg, Circle, Line -} from 'react-native-art-svg'; +} from 'react-native-svg'; import * as examples from './examples'; import Modal from 'react-native-root-modal'; const hairline = StyleSheet.hairlineWidth; diff --git a/Example/package.json b/Example/package.json index c5261d9b..86d86fe6 100644 --- a/Example/package.json +++ b/Example/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "react-native": "^0.18.1", - "react-native-art-svg": "../", + "react-native-svg": "../", "react-native-root-modal": "^1.0.3" } }