mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-19 21:45:10 +00:00
20 lines
453 B
JavaScript
20 lines
453 B
JavaScript
import * as Svg from './examples/Svg';
|
|
import * as Rect from './examples/Rect';
|
|
import * as Circle from './examples/Circle';
|
|
import * as Ellipse from './examples/Ellipse';
|
|
import * as Line from './examples/Line';
|
|
import * as Polygon from './examples/Polygon';
|
|
import * as Polyline from './examples/Polyline';
|
|
import * as Path from './examples/Path';
|
|
|
|
export {
|
|
Svg,
|
|
Rect,
|
|
Circle,
|
|
Ellipse,
|
|
Line,
|
|
Polygon,
|
|
Polyline,
|
|
Path
|
|
};
|