1import Circle from './Circle';
2import Clipping from './Clipping';
3import Ellipse from './Ellipse';
4import Example from './Example';
5import G from './G';
6import Gradients from './Gradients';
7import Image from './Image';
8import Line from './Line';
9import PanResponder from './PanResponder';
10import Path from './Path';
11import Polygon from './Polygon';
12import Polyline from './Polyline';
13import Rect from './Rect';
14import Reusable from './Reusable';
15import Stroking from './Stroking';
16import Svg from './Svg';
17import Text from './Text';
18import TouchEvents from './TouchEvents';
19
20const examples: { [key: string]: Example } = {
21  Svg,
22  Rect,
23  Circle,
24  Ellipse,
25  Line,
26  Polygon,
27  Polyline,
28  Path,
29  Text,
30  Stroking,
31  G,
32  Gradients,
33  Clipping,
34  Image,
35  TouchEvents,
36  Reusable,
37  PanResponder,
38};
39
40export default examples;
41