forked from software-mansion/react-native-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReactNativeSVG.ts
92 lines (90 loc) · 2.13 KB
/
ReactNativeSVG.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import Shape from './elements/Shape';
import Rect, { RNSVGRect } from './elements/Rect';
import Circle, { RNSVGCircle } from './elements/Circle';
import Ellipse, { RNSVGEllipse } from './elements/Ellipse';
import Polygon from './elements/Polygon';
import Polyline from './elements/Polyline';
import Line, { RNSVGLine } from './elements/Line';
import Svg, { RNSVGSvg } from './elements/Svg';
import Path, { RNSVGPath } from './elements/Path';
import G, { RNSVGGroup } from './elements/G';
import Text, { RNSVGText } from './elements/Text';
import TSpan, { RNSVGTSpan } from './elements/TSpan';
import TextPath, { RNSVGTextPath } from './elements/TextPath';
import Use, { RNSVGUse } from './elements/Use';
import Image, { RNSVGImage } from './elements/Image';
import Symbol, { RNSVGSymbol } from './elements/Symbol';
import Defs, { RNSVGDefs } from './elements/Defs';
import LinearGradient, { RNSVGLinearGradient } from './elements/LinearGradient';
import RadialGradient, { RNSVGRadialGradient } from './elements/RadialGradient';
import Stop from './elements/Stop';
import ClipPath, { RNSVGClipPath } from './elements/ClipPath';
import Pattern, { RNSVGPattern } from './elements/Pattern';
import Mask, { RNSVGMask } from './elements/Mask';
import Marker, { RNSVGMarker } from './elements/Marker';
import { parse, SvgAst, SvgFromUri, SvgFromXml, SvgUri, SvgXml } from './xml';
import {
SvgCss,
SvgCssUri,
SvgWithCss,
SvgWithCssUri,
inlineStyles,
} from './css';
export {
Svg,
Circle,
Ellipse,
G,
Text,
TSpan,
TextPath,
Path,
Polygon,
Polyline,
Line,
Rect,
Use,
Image,
Symbol,
Defs,
LinearGradient,
RadialGradient,
Stop,
ClipPath,
Pattern,
Mask,
Marker,
parse,
SvgAst,
SvgFromUri,
SvgFromXml,
SvgUri,
SvgXml,
SvgCss,
SvgCssUri,
SvgWithCss,
SvgWithCssUri,
inlineStyles,
Shape,
RNSVGMarker,
RNSVGMask,
RNSVGPattern,
RNSVGClipPath,
RNSVGRadialGradient,
RNSVGLinearGradient,
RNSVGDefs,
RNSVGSymbol,
RNSVGImage,
RNSVGUse,
RNSVGTextPath,
RNSVGTSpan,
RNSVGText,
RNSVGGroup,
RNSVGPath,
RNSVGLine,
RNSVGEllipse,
RNSVGCircle,
RNSVGRect,
RNSVGSvg,
};
export default Svg;