@servesall/atoms 1.1.15 → 1.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/bundle.cjs.js +611 -529
  2. package/dist/bundle.esm.js +611 -531
  3. package/dist/bundle.umd.js +614 -533
  4. package/package.json +2 -3
  5. package/src/Layout/Box.js +1 -1
  6. package/src/Layout/Center.js +7 -7
  7. package/src/Layout/CenterLeft.js +7 -7
  8. package/src/Layout/CenterRight.js +7 -7
  9. package/src/Layout/Layout.style.js +25 -25
  10. package/src/Layout/Margin.js +7 -7
  11. package/src/Layout/MarginBottom.js +7 -7
  12. package/src/Layout/MarginHorizontal.js +7 -7
  13. package/src/Layout/MarginLeft.js +1 -1
  14. package/src/Layout/MarginRight.js +1 -1
  15. package/src/Layout/MarginTop.js +1 -1
  16. package/src/Layout/MarginVertical.js +7 -7
  17. package/src/Layout/Padding.js +7 -7
  18. package/src/Layout/PaddingBottom.js +1 -1
  19. package/src/Layout/PaddingHorizontal.js +7 -7
  20. package/src/Layout/PaddingLeft.js +1 -1
  21. package/src/Layout/PaddingRight.js +1 -1
  22. package/src/Layout/PaddingTop.js +1 -1
  23. package/src/Layout/PaddingVertical.js +7 -7
  24. package/src/Layout/RoundedTopBox.js +1 -1
  25. package/src/Layout/Stretch.js +7 -7
  26. package/src/Layout/WebSmallWrapper.js +7 -8
  27. package/src/SplashScreen/SplashScreen.style.js +6 -0
  28. package/src/SplashScreen/assets/bootsplash_logo.png +0 -0
  29. package/src/SplashScreen/assets/bootsplash_logo@1,5x.png +0 -0
  30. package/src/SplashScreen/assets/bootsplash_logo@2x.png +0 -0
  31. package/src/SplashScreen/assets/bootsplash_logo@3x.png +0 -0
  32. package/src/SplashScreen/assets/bootsplash_logo@4x.png +0 -0
  33. package/src/SplashScreen/assets/bootsplash_manifest.json +7 -0
  34. package/src/SplashScreen/assets/penguinOriginal.svg +20 -0
  35. package/src/SplashScreen/index.js +69 -0
  36. package/src/Theme/definitions/colors.js +1 -0
  37. package/src/index.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@servesall/atoms",
3
- "version": "1.1.15",
3
+ "version": "1.1.17",
4
4
  "description": "Atoms for react-native",
5
5
  "main": "dist/bundle.cjs.js",
6
6
  "module": "dist/bundle.esm.js",
@@ -32,11 +32,10 @@
32
32
  "@babel/preset-react": "^7.16.7",
33
33
  "@babel/runtime": "^7.17.9",
34
34
  "@rollup/plugin-babel": "^5.3.1",
35
- "@rollup/plugin-commonjs": "^22.0.0",
36
35
  "@rollup/plugin-image": "^2.1.1",
37
36
  "@rollup/plugin-json": "^4.1.0",
38
37
  "@rollup/plugin-node-resolve": "^13.3.0",
39
- "rollup": "^2.72.1",
38
+ "rollup": "^2.79.1",
40
39
  "rollup-plugin-node-polyfills": "^0.2.1"
41
40
  },
42
41
  "author": "",
package/src/Layout/Box.js CHANGED
@@ -5,7 +5,7 @@ const Box = ({ children, color = "", style, direction = false }) => {
5
5
  return (
6
6
  <BoxElement
7
7
  style={{ backgroundColor: color, ...style }}
8
- flexDirection={direction}
8
+ direction={direction}
9
9
  >
10
10
  {children}
11
11
  </BoxElement>
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { CenterElement } from './Layout.style';
1
+ import React from "react";
2
+ import { CenterElement } from "./Layout.style";
3
3
 
4
4
  const Center = ({ children, style, direction = false }) => {
5
- return (
6
- <CenterElement style={style} flexDirection={direction}>
7
- {children}
8
- </CenterElement>
9
- );
5
+ return (
6
+ <CenterElement style={style} direction={direction}>
7
+ {children}
8
+ </CenterElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default Center;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { CenterLeftElement } from './Layout.style';
1
+ import React from "react";
2
+ import { CenterLeftElement } from "./Layout.style";
3
3
 
4
4
  const CenterLeft = ({ children, style, direction = false }) => {
5
- return (
6
- <CenterLeftElement style={style} flexDirection={direction}>
7
- {children}
8
- </CenterLeftElement>
9
- );
5
+ return (
6
+ <CenterLeftElement style={style} direction={direction}>
7
+ {children}
8
+ </CenterLeftElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default CenterLeft;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { CenterRightElement } from './Layout.style';
1
+ import React from "react";
2
+ import { CenterRightElement } from "./Layout.style";
3
3
 
4
4
  const CenterRight = ({ children, style, direction = false }) => {
5
- return (
6
- <CenterRightElement style={style} flexDirection={direction}>
7
- {children}
8
- </CenterRightElement>
9
- );
5
+ return (
6
+ <CenterRightElement style={style} direction={direction}>
7
+ {children}
8
+ </CenterRightElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default CenterRight;
@@ -7,119 +7,119 @@ export const CenterElement = styled.View`
7
7
  align-items: center;
8
8
  justify-content: center;
9
9
  flex: 1;
10
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
10
+ flexdirection: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
11
11
  ${(props) => props.style};
12
12
  `;
13
13
 
14
14
  export const CenterLeftElement = styled.View`
15
15
  align-items: ${(props) =>
16
- (props.flexDirection || DEFAULT_FLEX_DIRECTION) === "row"
16
+ (props.direction || DEFAULT_FLEX_DIRECTION) === "row"
17
17
  ? "center"
18
18
  : "flex-start"};
19
19
  justify-content: ${(props) =>
20
- (props.flexDirection || DEFAULT_FLEX_DIRECTION) === "row"
20
+ (props.direction || DEFAULT_FLEX_DIRECTION) === "row"
21
21
  ? "flex-start"
22
22
  : "center"};
23
23
  flex: 1;
24
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
24
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
25
25
  ${(props) => props.style};
26
26
  `;
27
27
 
28
28
  export const CenterRightElement = styled.View`
29
29
  align-items: ${(props) =>
30
- (props.flexDirection || DEFAULT_FLEX_DIRECTION) === "row"
30
+ (props.direction || DEFAULT_FLEX_DIRECTION) === "row"
31
31
  ? "center"
32
32
  : "flex-end"};
33
33
  justify-content: ${(props) =>
34
- (props.flexDirection || DEFAULT_FLEX_DIRECTION) === "row"
34
+ (props.direction || DEFAULT_FLEX_DIRECTION) === "row"
35
35
  ? "flex-end"
36
36
  : "center"};
37
37
  flex: 1;
38
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
38
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
39
39
  ${(props) => props.style};
40
40
  `;
41
41
 
42
42
  export const MarginElement = styled.View`
43
43
  margin: ${(props) => props.theme.margin};
44
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
44
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
45
45
  ${(props) => props.style};
46
46
  `;
47
47
 
48
48
  export const MarginHorizontalElement = styled.View`
49
49
  margin: 0 ${(props) => props.theme.margin};
50
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
50
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
51
51
  ${(props) => props.style};
52
52
  `;
53
53
 
54
54
  export const MarginVerticalElement = styled.View`
55
55
  margin: ${(props) => props.theme.margin} 0;
56
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
56
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
57
57
  ${(props) => props.style};
58
58
  `;
59
59
 
60
60
  export const MarginBottomElement = styled.View`
61
61
  margin-bottom: ${(props) => props.theme.margin};
62
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
62
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
63
63
  ${(props) => props.style};
64
64
  `;
65
65
 
66
66
  export const MarginTopElement = styled.View`
67
67
  margin-top: ${(props) => props.theme.margin};
68
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
68
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
69
69
  ${(props) => props.style};
70
70
  `;
71
71
 
72
72
  export const MarginRightElement = styled.View`
73
73
  margin-right: ${(props) => props.theme.margin};
74
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
74
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
75
75
  ${(props) => props.style};
76
76
  `;
77
77
 
78
78
  export const MarginLeftElement = styled.View`
79
79
  margin-left: ${(props) => props.theme.margin};
80
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
80
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
81
81
  ${(props) => props.style};
82
82
  `;
83
83
 
84
84
  export const PaddingElement = styled.View`
85
85
  padding: ${(props) => props.theme.padding};
86
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
86
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
87
87
  ${(props) => props.style};
88
88
  `;
89
89
 
90
90
  export const PaddingHorizontalElement = styled.View`
91
91
  padding: 0 ${(props) => props.theme.padding};
92
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
92
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
93
93
  ${(props) => props.style};
94
94
  `;
95
95
 
96
96
  export const PaddingVerticalElement = styled.View`
97
97
  padding: ${(props) => props.theme.padding} 0;
98
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
98
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
99
99
  ${(props) => props.style};
100
100
  `;
101
101
 
102
102
  export const PaddingTopElement = styled.View`
103
103
  padding-top: ${(props) => props.theme.padding};
104
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
104
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
105
105
  ${(props) => props.style};
106
106
  `;
107
107
 
108
108
  export const PaddingBottomElement = styled.View`
109
109
  padding-bottom: ${(props) => props.theme.padding};
110
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
110
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
111
111
  ${(props) => props.style};
112
112
  `;
113
113
 
114
114
  export const PaddingLeftElement = styled.View`
115
115
  padding-left: ${(props) => props.theme.padding};
116
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
116
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
117
117
  ${(props) => props.style};
118
118
  `;
119
119
 
120
120
  export const PaddingRightElement = styled.View`
121
121
  padding-right: ${(props) => props.theme.padding};
122
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
122
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
123
123
  ${(props) => props.style};
124
124
  `;
125
125
 
@@ -131,13 +131,13 @@ export const RowElement = styled.View`
131
131
  export const StretchElement = styled.View`
132
132
  align-items: stretch;
133
133
  align-self: stretch;
134
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
134
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
135
135
  ${(props) => props.style};
136
136
  `;
137
137
 
138
138
  export const BoxElement = styled.View`
139
139
  flex: 1;
140
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
140
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
141
141
  ${(props) => props.style};
142
142
  `;
143
143
 
@@ -148,12 +148,12 @@ export const FullScreenElement = styled.View`
148
148
  left: 0;
149
149
  right: 0;
150
150
  z-index: 11;
151
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
151
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
152
152
  ${(props) => props.style};
153
153
  `;
154
154
 
155
155
  export const WebSmallWrapperElement = styled.View`
156
- flex-direction: ${(props) => props.flexDirection || DEFAULT_FLEX_DIRECTION};
156
+ flex-direction: ${(props) => props.direction || DEFAULT_FLEX_DIRECTION};
157
157
  width: 500px;
158
158
  ${(props) => props.style};
159
159
  `;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { MarginElement } from './Layout.style';
1
+ import React from "react";
2
+ import { MarginElement } from "./Layout.style";
3
3
 
4
4
  const Margin = ({ children, style, direction = false }) => {
5
- return (
6
- <MarginElement style={style} flexDirection={direction}>
7
- {children}
8
- </MarginElement>
9
- );
5
+ return (
6
+ <MarginElement style={style} direction={direction}>
7
+ {children}
8
+ </MarginElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default Margin;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { MarginBottomElement } from './Layout.style';
1
+ import React from "react";
2
+ import { MarginBottomElement } from "./Layout.style";
3
3
 
4
4
  const MarginBottom = ({ children, style, direction = false }) => {
5
- return (
6
- <MarginBottomElement style={style} flexDirection={direction}>
7
- {children}
8
- </MarginBottomElement>
9
- );
5
+ return (
6
+ <MarginBottomElement style={style} direction={direction}>
7
+ {children}
8
+ </MarginBottomElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default MarginBottom;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { MarginHorizontalElement } from './Layout.style';
1
+ import React from "react";
2
+ import { MarginHorizontalElement } from "./Layout.style";
3
3
 
4
4
  const MarginHorizontal = ({ children, style, direction = false }) => {
5
- return (
6
- <MarginHorizontalElement style={style} flexDirection={direction}>
7
- {children}
8
- </MarginHorizontalElement>
9
- );
5
+ return (
6
+ <MarginHorizontalElement style={style} direction={direction}>
7
+ {children}
8
+ </MarginHorizontalElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default MarginHorizontal;
@@ -3,7 +3,7 @@ import { MarginLeftElement } from "./Layout.style";
3
3
 
4
4
  const MarginLeft = ({ children, style, direction = false }) => {
5
5
  return (
6
- <MarginLeftElement style={style} flexDirection={direction}>
6
+ <MarginLeftElement style={style} direction={direction}>
7
7
  {children}
8
8
  </MarginLeftElement>
9
9
  );
@@ -3,7 +3,7 @@ import { MarginRightElement } from "./Layout.style";
3
3
 
4
4
  const MarginRight = ({ children, style, direction = false }) => {
5
5
  return (
6
- <MarginRightElement style={style} flexDirection={direction}>
6
+ <MarginRightElement style={style} direction={direction}>
7
7
  {children}
8
8
  </MarginRightElement>
9
9
  );
@@ -3,7 +3,7 @@ import { MarginTopElement } from "./Layout.style";
3
3
 
4
4
  const MarginTop = ({ children, style, direction = false }) => {
5
5
  return (
6
- <MarginTopElement style={style} flexDirection={direction}>
6
+ <MarginTopElement style={style} direction={direction}>
7
7
  {children}
8
8
  </MarginTopElement>
9
9
  );
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { MarginVerticalElement } from './Layout.style';
1
+ import React from "react";
2
+ import { MarginVerticalElement } from "./Layout.style";
3
3
 
4
4
  const MarginVertical = ({ children, style, direction = false }) => {
5
- return (
6
- <MarginVerticalElement style={style} flexDirection={direction}>
7
- {children}
8
- </MarginVerticalElement>
9
- );
5
+ return (
6
+ <MarginVerticalElement style={style} direction={direction}>
7
+ {children}
8
+ </MarginVerticalElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default MarginVertical;
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { PaddingElement } from './Layout.style';
1
+ import React from "react";
2
+ import { PaddingElement } from "./Layout.style";
3
3
 
4
4
  const Padding = ({ children, style, direction = false }) => {
5
- return (
6
- <PaddingElement style={style} flexDirection={direction}>
7
- {children}
8
- </PaddingElement>
9
- );
5
+ return (
6
+ <PaddingElement style={style} direction={direction}>
7
+ {children}
8
+ </PaddingElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default Padding;
@@ -3,7 +3,7 @@ import { PaddingBottomElement } from "./Layout.style";
3
3
 
4
4
  const PaddingBottom = ({ children, style, direction = false }) => {
5
5
  return (
6
- <PaddingBottomElement style={style} flexDirection={direction}>
6
+ <PaddingBottomElement style={style} direction={direction}>
7
7
  {children}
8
8
  </PaddingBottomElement>
9
9
  );
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { PaddingHorizontalElement } from './Layout.style';
1
+ import React from "react";
2
+ import { PaddingHorizontalElement } from "./Layout.style";
3
3
 
4
4
  const PaddingHorizontal = ({ children, style, direction = false }) => {
5
- return (
6
- <PaddingHorizontalElement style={style} flexDirection={direction}>
7
- {children}
8
- </PaddingHorizontalElement>
9
- );
5
+ return (
6
+ <PaddingHorizontalElement style={style} direction={direction}>
7
+ {children}
8
+ </PaddingHorizontalElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default PaddingHorizontal;
@@ -3,7 +3,7 @@ import { PaddingLeftElement } from "./Layout.style";
3
3
 
4
4
  const PaddingLeft = ({ children, style, direction = false }) => {
5
5
  return (
6
- <PaddingLeftElement style={style} flexDirection={direction}>
6
+ <PaddingLeftElement style={style} direction={direction}>
7
7
  {children}
8
8
  </PaddingLeftElement>
9
9
  );
@@ -3,7 +3,7 @@ import { PaddingRightElement } from "./Layout.style";
3
3
 
4
4
  const PaddingRight = ({ children, style, direction = false }) => {
5
5
  return (
6
- <PaddingRightElement style={style} flexDirection={direction}>
6
+ <PaddingRightElement style={style} direction={direction}>
7
7
  {children}
8
8
  </PaddingRightElement>
9
9
  );
@@ -3,7 +3,7 @@ import { PaddingTopElement } from "./Layout.style";
3
3
 
4
4
  const PaddingTop = ({ children, style, direction = false }) => {
5
5
  return (
6
- <PaddingTopElement style={style} flexDirection={direction}>
6
+ <PaddingTopElement style={style} direction={direction}>
7
7
  {children}
8
8
  </PaddingTopElement>
9
9
  );
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { PaddingVerticalElement } from './Layout.style';
1
+ import React from "react";
2
+ import { PaddingVerticalElement } from "./Layout.style";
3
3
 
4
4
  const PaddingVertical = ({ children, style, direction = false }) => {
5
- return (
6
- <PaddingVerticalElement style={style} flexDirection={direction}>
7
- {children}
8
- </PaddingVerticalElement>
9
- );
5
+ return (
6
+ <PaddingVerticalElement style={style} direction={direction}>
7
+ {children}
8
+ </PaddingVerticalElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default PaddingVertical;
@@ -11,7 +11,7 @@ const RoundedTopBox = ({ children, color = "", style, direction = false }) => {
11
11
  overflow: "hidden",
12
12
  ...style,
13
13
  }}
14
- flexDirection={direction}
14
+ direction={direction}
15
15
  >
16
16
  {children}
17
17
  </BoxElement>
@@ -1,12 +1,12 @@
1
- import React from 'react';
2
- import { StretchElement } from './Layout.style';
1
+ import React from "react";
2
+ import { StretchElement } from "./Layout.style";
3
3
 
4
4
  const Stretch = ({ children, style, direction = false }) => {
5
- return (
6
- <StretchElement style={style} flexDirection={direction}>
7
- {children}
8
- </StretchElement>
9
- );
5
+ return (
6
+ <StretchElement style={style} direction={direction}>
7
+ {children}
8
+ </StretchElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default Stretch;
@@ -1,13 +1,12 @@
1
- import React from 'react';
2
- import { WebSmallWrapperElement } from './Layout.style';
1
+ import React from "react";
2
+ import { WebSmallWrapperElement } from "./Layout.style";
3
3
 
4
4
  const WebSmallWrapper = ({ children, style, direction = false }) => {
5
- return (
6
- <WebSmallWrapperElement style={style} flexDirection={direction}>
7
- {children}
8
- </WebSmallWrapperElement>
9
- );
5
+ return (
6
+ <WebSmallWrapperElement style={style} direction={direction}>
7
+ {children}
8
+ </WebSmallWrapperElement>
9
+ );
10
10
  };
11
11
 
12
12
  export default WebSmallWrapper;
13
-
@@ -0,0 +1,6 @@
1
+ import styled from "styled-components/native";
2
+
3
+ export const Container = styled.View`
4
+ background-color: ${(props) => props.theme.color1};
5
+ flex: 1;
6
+ `;
@@ -0,0 +1,7 @@
1
+ {
2
+ "background": "#FFFFFF",
3
+ "logo": {
4
+ "width": 100,
5
+ "height": 97
6
+ }
7
+ }
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="117px" height="113px" viewBox="0 0 117 113" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 63 (92445) - https://sketch.com -->
4
+ <title>Group 2</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <g id="Group" transform="translate(-4.000000, 0.000000)" fill-rule="nonzero">
8
+ <g id="Group-2">
9
+ <g transform="translate(4.000000, 0.000000)">
10
+ <path d="M93,37 L115.038115,49.9970209 C117.698501,51.5664791 117.641518,55.4027364 114.938395,56.8945162 L93,69" id="Fill-1" fill="#ECBD65"></path>
11
+ <path d="M13.3056744,113 L82.6943256,113 C90.0415252,113 96,107.097393 96,99.8151823 L96,47.5631385 C96,21.2947904 74.5100141,0 47.9991188,0 L47.9991188,0 C21.4899859,0 0,21.2947904 0,47.5631385 L0,99.8151823 C0,107.097393 5.9567125,113 13.3056744,113" id="Fill-3" fill="#2D3436"></path>
12
+ <path d="M49,45.4177434 L49,95.3935959 C49,99.0427149 51.9719953,102 55.6371062,102 L81.3628938,102 C85.0280047,102 88,99.0427149 88,95.3935959 L88,46.3378651 C88,35.2754929 78.9002334,25.619443 67.7963827,26.0115403 C62.6925321,26.1927764 58.0892649,28.3257858 54.7129522,31.6873668 C51.1808635,35.204044 49,40.0555948 49,45.4177434" id="Fill-5" fill="#FFFFFF"></path>
13
+ <path d="M61,46 C61,49.8657244 64.1346712,53 68.0008835,53 C71.8670958,53 75,49.8657244 75,46 C75,42.1342756 71.8670958,39 68.0008835,39 C64.1346712,39 61,42.1342756 61,46" id="Fill-7" fill="#2D3436"></path>
14
+ <path d="M109.394929,73.4127436 L95.5342956,81.3603424 C93.4885681,82.533138 93.4885681,85.466862 95.5342956,86.6396576 L109.394929,94.5872564 C111.440657,95.760052 114,94.2940575 114,91.9467313 L114,76.0532687 C114,73.7059425 111.440657,72.239948 109.394929,73.4127436" id="Fill-9" fill="#2D3436"></path>
15
+ <path d="M74.8896913,73.4394613 L88.3698093,81.189527 C90.5433969,82.4382364 90.5433969,85.5617636 88.3698093,86.810473 L74.8896913,94.5605387 C72.7161037,95.809248 70,94.2483613 70,91.7491888 L70,76.2508112 C70,73.7516387 72.7161037,72.190752 74.8896913,73.4394613" id="Fill-11" fill="#2D3436"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>