mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
# Summary Due to the large number of example apps in the repository, I decided to change the structure and move all applications into an "apps" folder to maintain a clear structure.
46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
import * as Circle from './Circle';
|
|
import * as Clipping from './Clipping';
|
|
import * as Ellipse from './Ellipse';
|
|
import * as G from './G';
|
|
import * as Gradients from './Gradients';
|
|
import * as Image from './Image';
|
|
import * as Line from './Line';
|
|
import * as Markers from './Markers';
|
|
import * as Mask from './Mask';
|
|
import * as PanResponder from './PanResponder';
|
|
import * as Path from './Path';
|
|
import * as Polygon from './Polygon';
|
|
import * as Polyline from './Polyline';
|
|
import * as Reanimated from './Reanimated';
|
|
import * as Rect from './Rect';
|
|
import * as Reusable from './Reusable';
|
|
import * as Stroking from './Stroking';
|
|
import * as Svg from './Svg';
|
|
import * as Text from './Text';
|
|
import * as TouchEvents from './TouchEvents';
|
|
import * as Transforms from './Transforms';
|
|
|
|
export const examples = {
|
|
Svg,
|
|
Rect,
|
|
Circle,
|
|
Ellipse,
|
|
Line,
|
|
Polygon,
|
|
Polyline,
|
|
Path,
|
|
Text,
|
|
Stroking,
|
|
G,
|
|
Gradients,
|
|
Clipping,
|
|
Image,
|
|
TouchEvents,
|
|
Reusable,
|
|
PanResponder,
|
|
Reanimated,
|
|
Transforms,
|
|
Markers,
|
|
Mask,
|
|
};
|