@stokr/components-library 3.0.10 → 3.0.13
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.
- package/dist/index.js +9191 -9244
- package/dist/static/images/eth_logo.svg +9 -0
- package/package.json +148 -147
- package/dist/static/images/covers/blockchain.png +0 -0
- package/dist/static/images/covers/index.png +0 -0
- package/dist/static/images/covers/money.png +0 -0
- package/dist/static/images/covers/rocket.png +0 -0
- package/dist/static/images/favicon.svg +0 -57
- package/dist/static/images/google-logo.png +0 -0
- package/dist/static/images/mangopay.png +0 -0
- package/dist/static/images/sicos.png +0 -0
- package/dist/static/images/social/facebook.svg +0 -3
- package/dist/static/images/social/linkedin.svg +0 -3
- package/dist/static/images/social/medium.svg +0 -3
- package/dist/static/images/social/reddit.svg +0 -3
- package/dist/static/images/social/telegram.svg +0 -3
- package/dist/static/images/social/twitter.svg +0 -3
- package/dist/static/images/social/youtube.svg +0 -3
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="Eth--Streamline-Cryptocurrency-Black" height="16" width="16">
|
|
2
|
+
<desc>
|
|
3
|
+
Eth Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path fill="#000000" fill-rule="evenodd" d="M8 15.840000000000002C3.6698666666666666 15.840000000000002 0.16 12.330133333333334 0.16 8S3.6698666666666666 0.16 8 0.16 15.840000000000002 3.6698666666666666 15.840000000000002 8 12.330133333333334 15.840000000000002 8 15.840000000000002Zm3.9170424242424247 -7.732703030303031L8.244024242424242 2.1199999999999997 4.569987878787878 8.107781818181818l3.6740363636363638 2.1329939393939394 3.6730181818181817 -2.1334787878787878Zm0.002957575757575758 0.6845575757575757 -3.6759757575757575 2.1319757575757574 -3.6740363636363638 -2.131490909090909 3.6740363636363638 5.085236363636364 3.6759757575757575 -5.0857212121212125Z" clip-rule="evenodd" stroke-width="0.4848"></path>
|
|
6
|
+
<path fill="#000000" fill-opacity=".298" d="M8.244024242424242 2.1199999999999997v4.346278787878788l3.6735030303030305 1.6415030303030305 -3.6735030303030305 -5.987781818181818Zm0 8.804315151515151v2.953260606060606l3.6759757575757575 -5.0857212121212125 -3.6759757575757575 2.132460606060606Z" stroke-width="0.4848"></path>
|
|
7
|
+
<path fill="#000000" fill-opacity=".801" d="m8.244024242424242 10.240824242424242 3.6735030303030305 -2.1329939393939394 -3.6735030303030305 -1.6404848484848487v3.773478787878788Z" stroke-width="0.4848"></path>
|
|
8
|
+
<path fill="#000000" fill-opacity=".298" d="m4.569987878787878 8.107830303030303 3.6740363636363638 2.1329939393939394v-3.773478787878788l-3.6740363636363638 1.6404848484848487Z" stroke-width="0.4848"></path>
|
|
9
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,147 +1,148 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@stokr/components-library",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "STOKR - Components Library",
|
|
5
|
-
"author": "Bilal Hodzic <bilal@stokr.io>",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/index.umd.cjs",
|
|
9
|
-
"module": "./dist/index.js",
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md"
|
|
13
|
-
],
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": "./dist/index.js",
|
|
17
|
-
"require": "./dist/index.umd.cjs",
|
|
18
|
-
"default": "./dist/index.js"
|
|
19
|
-
},
|
|
20
|
-
"./styles.css": "./dist/index.css",
|
|
21
|
-
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
22
|
-
"./dist/*": "./dist/static/*"
|
|
23
|
-
},
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
27
|
-
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "vite build",
|
|
30
|
-
"build-storybook": "storybook build",
|
|
31
|
-
"build-storybook-docs": "storybook build -s public --docs",
|
|
32
|
-
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
33
|
-
"build:dist": "vite build && npm run copy:static",
|
|
34
|
-
"prepare": "npm run build:dist",
|
|
35
|
-
"storybook": "storybook dev -p 6006",
|
|
36
|
-
"start": "npm run storybook",
|
|
37
|
-
"format": "prettier --write ./src",
|
|
38
|
-
"lint": "eslint .",
|
|
39
|
-
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
40
|
-
"release": "auto shipit",
|
|
41
|
-
"pub": "npm run publish:build && npm publish --access public",
|
|
42
|
-
"publish:build": "npm run build:dist",
|
|
43
|
-
"dev": "vite dev",
|
|
44
|
-
"serve": "npx http-server ./storybook-static -p 9009"
|
|
45
|
-
},
|
|
46
|
-
"dependencies": {
|
|
47
|
-
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
48
|
-
"ajv": "^8.18.0",
|
|
49
|
-
"axios": "^1.13.5",
|
|
50
|
-
"bignumber.js": "^9.1.1",
|
|
51
|
-
"cross-env": "^10.1.0",
|
|
52
|
-
"d3": "^7.8.3",
|
|
53
|
-
"date-fns": "^4.1.0",
|
|
54
|
-
"date-fns-tz": "^3.2.0",
|
|
55
|
-
"depcheck": "^1.4.7",
|
|
56
|
-
"firebase": "^12.4.0",
|
|
57
|
-
"formik": "^2.2.9",
|
|
58
|
-
"formik-persist": "^1.1.0",
|
|
59
|
-
"html-react-parser": "^5.0.6",
|
|
60
|
-
"http-server": "^14.1.1",
|
|
61
|
-
"js-cookie": "^3.0.5",
|
|
62
|
-
"mixpanel-browser": "^2.74.0",
|
|
63
|
-
"mobile-detect": "^1.4.5",
|
|
64
|
-
"moment": "^2.30.1",
|
|
65
|
-
"moment-timezone": "^0.6.0",
|
|
66
|
-
"prop-types": "^15.8.1",
|
|
67
|
-
"qrcode.react": "^4.2.0",
|
|
68
|
-
"react-collapse": "^5.1.1",
|
|
69
|
-
"react-copy-to-clipboard": "^5.1.0",
|
|
70
|
-
"react-countup": "^6.4.1",
|
|
71
|
-
"react-custom-scrollbars-2": "^4.5.0",
|
|
72
|
-
"react-day-picker": "^9.11.1",
|
|
73
|
-
"react-device-detect": "^2.2.3",
|
|
74
|
-
"react-ga4": "^2.1.0",
|
|
75
|
-
"react-
|
|
76
|
-
"react-
|
|
77
|
-
"react-
|
|
78
|
-
"react-
|
|
79
|
-
"react-
|
|
80
|
-
"react-
|
|
81
|
-
"react-
|
|
82
|
-
"react-
|
|
83
|
-
"react-
|
|
84
|
-
"react-
|
|
85
|
-
"react-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"react
|
|
95
|
-
"react-
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"@
|
|
101
|
-
"@eslint/
|
|
102
|
-
"@
|
|
103
|
-
"@storybook/addon-
|
|
104
|
-
"@storybook/
|
|
105
|
-
"@storybook/
|
|
106
|
-
"@
|
|
107
|
-
"@types/
|
|
108
|
-
"@types/react
|
|
109
|
-
"@
|
|
110
|
-
"@typescript-eslint/
|
|
111
|
-
"@
|
|
112
|
-
"
|
|
113
|
-
"eslint
|
|
114
|
-
"eslint-
|
|
115
|
-
"eslint-plugin-
|
|
116
|
-
"eslint-plugin-react
|
|
117
|
-
"eslint-plugin-react-
|
|
118
|
-
"eslint-plugin-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"react
|
|
122
|
-
"react-
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"typescript
|
|
127
|
-
"
|
|
128
|
-
"vite
|
|
129
|
-
"vite-plugin-
|
|
130
|
-
"vite-plugin-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
|
|
147
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@stokr/components-library",
|
|
3
|
+
"version": "3.0.13",
|
|
4
|
+
"description": "STOKR - Components Library",
|
|
5
|
+
"author": "Bilal Hodzic <bilal@stokr.io>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.umd.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.umd.cjs",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./styles.css": "./dist/index.css",
|
|
21
|
+
"./ionicons.css": "./dist/static/fonts/Ionicons/ionicons.min.css",
|
|
22
|
+
"./dist/*": "./dist/static/*"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "http://46.101.229.186:3000/stokr/components-library"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "vite build",
|
|
30
|
+
"build-storybook": "storybook build",
|
|
31
|
+
"build-storybook-docs": "storybook build -s public --docs",
|
|
32
|
+
"copy:static": "node -e \"require('fs').cpSync('src/static', 'dist/static', {recursive: true})\"",
|
|
33
|
+
"build:dist": "vite build && npm run copy:static",
|
|
34
|
+
"prepare": "npm run build:dist",
|
|
35
|
+
"storybook": "storybook dev -p 6006",
|
|
36
|
+
"start": "npm run storybook",
|
|
37
|
+
"format": "prettier --write ./src",
|
|
38
|
+
"lint": "eslint .",
|
|
39
|
+
"chromatic": "CHROMATIC_APP_CODE=7kzdke5umep chromatic",
|
|
40
|
+
"release": "auto shipit",
|
|
41
|
+
"pub": "npm run publish:build && npm publish --access public",
|
|
42
|
+
"publish:build": "npm run build:dist",
|
|
43
|
+
"dev": "vite dev",
|
|
44
|
+
"serve": "npx http-server ./storybook-static -p 9009"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@lottiefiles/dotlottie-react": "^0.17.13",
|
|
48
|
+
"ajv": "^8.18.0",
|
|
49
|
+
"axios": "^1.13.5",
|
|
50
|
+
"bignumber.js": "^9.1.1",
|
|
51
|
+
"cross-env": "^10.1.0",
|
|
52
|
+
"d3": "^7.8.3",
|
|
53
|
+
"date-fns": "^4.1.0",
|
|
54
|
+
"date-fns-tz": "^3.2.0",
|
|
55
|
+
"depcheck": "^1.4.7",
|
|
56
|
+
"firebase": "^12.4.0",
|
|
57
|
+
"formik": "^2.2.9",
|
|
58
|
+
"formik-persist": "^1.1.0",
|
|
59
|
+
"html-react-parser": "^5.0.6",
|
|
60
|
+
"http-server": "^14.1.1",
|
|
61
|
+
"js-cookie": "^3.0.5",
|
|
62
|
+
"mixpanel-browser": "^2.74.0",
|
|
63
|
+
"mobile-detect": "^1.4.5",
|
|
64
|
+
"moment": "^2.30.1",
|
|
65
|
+
"moment-timezone": "^0.6.0",
|
|
66
|
+
"prop-types": "^15.8.1",
|
|
67
|
+
"qrcode.react": "^4.2.0",
|
|
68
|
+
"react-collapse": "^5.1.1",
|
|
69
|
+
"react-copy-to-clipboard": "^5.1.0",
|
|
70
|
+
"react-countup": "^6.4.1",
|
|
71
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
72
|
+
"react-day-picker": "^9.11.1",
|
|
73
|
+
"react-device-detect": "^2.2.3",
|
|
74
|
+
"react-ga4": "^2.1.0",
|
|
75
|
+
"react-dom": "^18.3.1",
|
|
76
|
+
"react-helmet": "^6.1.0",
|
|
77
|
+
"react-intersection-observer": "^10.0.2",
|
|
78
|
+
"react-otp-input": "^3.1.0",
|
|
79
|
+
"react-portal": "^4.2.2",
|
|
80
|
+
"react-qr-code": "^2.0.12",
|
|
81
|
+
"react-range": "^1.8.14",
|
|
82
|
+
"react-select": "^5.7.0",
|
|
83
|
+
"react-slick": "^0.31.0",
|
|
84
|
+
"react-table": "^7.8.0",
|
|
85
|
+
"react-tippy": "^1.4.0",
|
|
86
|
+
"react-transition-group": "^4.4.5",
|
|
87
|
+
"sanitize-html": "^2.17.1",
|
|
88
|
+
"scroll-to-element": "^2.0.3",
|
|
89
|
+
"semantic-ui-react": "^2.1.4",
|
|
90
|
+
"slick-carousel": "^1.8.1",
|
|
91
|
+
"yup": "^1.0.0"
|
|
92
|
+
},
|
|
93
|
+
"peerDependencies": {
|
|
94
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
95
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
96
|
+
"react-router-dom": "^6.0.0",
|
|
97
|
+
"styled-components": "^6.0.0"
|
|
98
|
+
},
|
|
99
|
+
"devDependencies": {
|
|
100
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
101
|
+
"@eslint-react/eslint-plugin": "^1.53.1",
|
|
102
|
+
"@eslint/js": "^9.39.2",
|
|
103
|
+
"@storybook/addon-docs": "^10.2.0",
|
|
104
|
+
"@storybook/addon-links": "^10.2.0",
|
|
105
|
+
"@storybook/builder-vite": "^10.2.0",
|
|
106
|
+
"@storybook/react-vite": "^10.2.0",
|
|
107
|
+
"@types/node": "^25.0.10",
|
|
108
|
+
"@types/react": "^19.2.9",
|
|
109
|
+
"@types/react-dom": "^19.2.3",
|
|
110
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
111
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
112
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
113
|
+
"eslint": "^9.39.2",
|
|
114
|
+
"eslint-config-prettier": "^10.1.8",
|
|
115
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
116
|
+
"eslint-plugin-react": "^7.37.2",
|
|
117
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
118
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
119
|
+
"eslint-plugin-storybook": "10.2.0",
|
|
120
|
+
"prettier": "^3.8.1",
|
|
121
|
+
"react": "^19.2.3",
|
|
122
|
+
"react-dom": "^19.2.3",
|
|
123
|
+
"react-router-dom": "^6.30.3",
|
|
124
|
+
"storybook": "^10.2.0",
|
|
125
|
+
"styled-components": "^6.0.7",
|
|
126
|
+
"typescript": "^5.9.3",
|
|
127
|
+
"typescript-eslint": "^8.54.0",
|
|
128
|
+
"vite": "^7.3.1",
|
|
129
|
+
"vite-plugin-dts": "^4.5.4",
|
|
130
|
+
"vite-plugin-lottie": "^1.0.1",
|
|
131
|
+
"vite-plugin-svgr": "4.5.0"
|
|
132
|
+
},
|
|
133
|
+
"overrides": {
|
|
134
|
+
"minimatch": "^10.2.1"
|
|
135
|
+
},
|
|
136
|
+
"browser": {
|
|
137
|
+
"[module-name]": false
|
|
138
|
+
},
|
|
139
|
+
"bugs": {
|
|
140
|
+
"url": "https://github.com/stokr-io/components-library/issues"
|
|
141
|
+
},
|
|
142
|
+
"homepage": "https://github.com/stokr-io/components-library#readme",
|
|
143
|
+
"keywords": [
|
|
144
|
+
"stokr",
|
|
145
|
+
"components-library",
|
|
146
|
+
"story-book"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
-
version="1.1"
|
|
11
|
-
viewBox="0 0 260 260.00001"
|
|
12
|
-
id="svg4"
|
|
13
|
-
sodipodi:docname="favicon.svg"
|
|
14
|
-
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
|
15
|
-
width="260"
|
|
16
|
-
height="260">
|
|
17
|
-
<metadata
|
|
18
|
-
id="metadata10">
|
|
19
|
-
<rdf:RDF>
|
|
20
|
-
<cc:Work
|
|
21
|
-
rdf:about="">
|
|
22
|
-
<dc:format>image/svg+xml</dc:format>
|
|
23
|
-
<dc:type
|
|
24
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
25
|
-
<dc:title></dc:title>
|
|
26
|
-
</cc:Work>
|
|
27
|
-
</rdf:RDF>
|
|
28
|
-
</metadata>
|
|
29
|
-
<defs
|
|
30
|
-
id="defs8" />
|
|
31
|
-
<sodipodi:namedview
|
|
32
|
-
pagecolor="#ffffff"
|
|
33
|
-
bordercolor="#666666"
|
|
34
|
-
borderopacity="1"
|
|
35
|
-
objecttolerance="10"
|
|
36
|
-
gridtolerance="10"
|
|
37
|
-
guidetolerance="10"
|
|
38
|
-
inkscape:pageopacity="0"
|
|
39
|
-
inkscape:pageshadow="2"
|
|
40
|
-
inkscape:window-width="1920"
|
|
41
|
-
inkscape:window-height="1017"
|
|
42
|
-
id="namedview6"
|
|
43
|
-
showgrid="false"
|
|
44
|
-
inkscape:zoom="1.6907321"
|
|
45
|
-
inkscape:cx="-80.400249"
|
|
46
|
-
inkscape:cy="117.54439"
|
|
47
|
-
inkscape:window-x="-8"
|
|
48
|
-
inkscape:window-y="-8"
|
|
49
|
-
inkscape:window-maximized="1"
|
|
50
|
-
inkscape:current-layer="svg4" />
|
|
51
|
-
<path
|
|
52
|
-
d="M 129.90126,29.998436 V 68.110169 C 184.49153,68.35932 211.58307,134.42443 172.89653,172.93156 134.21,211.4387 68.271138,184.04035 68.276163,129.44947 H 30.001121 C 29.599547,218.56567 137.22915,263.5612 200.3788,200.6961 263.52844,137.831 219.01935,29.999378 129.90232,29.998436 Z"
|
|
53
|
-
id="path2"
|
|
54
|
-
inkscape:connector-curvature="0"
|
|
55
|
-
sodipodi:nodetypes="ccsccscc"
|
|
56
|
-
style="stroke-width:10.46853065" />
|
|
57
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path id="Path" d="M11.338,0H.662A.662.662,0,0,0,0,.662V11.338A.662.662,0,0,0,.662,12H6.414V7.359H4.852V5.543H6.414V4.206a2.183,2.183,0,0,1,2.33-2.394,13.283,13.283,0,0,1,1.394.07V3.5H9.186c-.753,0-.9.356-.9.881V5.541h1.8L9.852,7.357H8.276V12h3.062A.662.662,0,0,0,12,11.338V.662A.662.662,0,0,0,11.338,0Z" fill="#fff"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path id="LinkedIn" d="m6.7205 11.596h-2.5675v-0.12089c0.00963-2.038 0.027815-6.8468 0-7.4244h2.5675v1.0698l-0.00749 0.00963-0.00963 0.013907h0.017117v-0.025677a2.5504 2.5504 0 0 1 2.3183-1.2463c1.854 0 2.9612 1.2699 2.9612 3.3956v4.3263h-2.5675v-4.0364c0-1.1158-0.45039-1.7063-1.3041-1.7063a1.425 1.425 0 0 0-1.3191 0.91789 1.6047 1.6047 0 0 0-0.085584 0.61193v4.214zm-3.9957 0h-2.5718v-7.5475h2.5675v7.5443zm-1.2838-8.5745h-0.019256a1.3223 1.3223 0 0 1-1.4218-1.3062 1.3255 1.3255 0 0 1 1.456-1.3041 1.3212 1.3212 0 0 1 1.4378 1.3041 1.3255 1.3255 0 0 1-1.4549 1.3041z" fill="#fff" stroke-width="1.0698"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path id="Shape" d="m1.4227 3.3343a0.42788 0.42788 0 0 0-0.1519-0.37119l-1.1189-1.2762v-0.19041h3.4787l2.6892 5.5764 2.3641-5.5764h3.3161v0.19041l-0.96274 0.8686a0.25887 0.25887 0 0 0-0.10697 0.25459v6.3808a0.2578 0.2578 0 0 0 0.10697 0.25352l0.936 0.8686v0.19041h-4.6992v-0.18934l0.96274-0.89c0.095204-0.08986 0.095204-0.1166 0.095204-0.25352v-5.1581l-2.6903 6.4696h-0.3637l-3.1385-6.4696v4.3366a0.57871 0.57871 0 0 0 0.17329 0.49742l1.2612 1.4462v0.18934h-3.5739v-0.18934l1.2601-1.4462a0.55625 0.55625 0 0 0 0.1626-0.49742z" fill="#fff" stroke-width="1.0697"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="m6.0451 11.201c-0.19209 0-0.39057-0.0064-0.59066-0.01921a6.0827 6.0827 0 0 1-3.3055-1.1205 2.9949 2.9949 0 0 1-1.419-2.6636 0.32414 0.32414 0 0 0-0.13606-0.2209 1.2886 1.2886 0 0 1 0.69391-2.3739 1.6399 1.6399 0 0 1 0.81396 0.2353 0.28893 0.28893 0 0 0 0.14006 0.030414 0.28573 0.28573 0 0 0 0.13926-0.030414 6.4437 6.4437 0 0 1 3.127-0.93802c0.18968-0.0064029 0.26732-0.074433 0.30654-0.27052 0.11845-0.58106 0.24971-1.1701 0.37617-1.74 0.071232-0.32014 0.14086-0.63548 0.20969-0.95242 0.041618-0.18968 0.13046-0.27452 0.28893-0.27452a0.65549 0.65549 0 0 1 0.14166 0.017608c0.32575 0.076034 0.65789 0.14006 0.97884 0.20409 0.28253 0.056825 0.57306 0.11525 0.85798 0.17688a0.50743 0.50743 0 0 0 0.10645 0.015207 0.26732 0.26732 0 0 0 0.2161-0.11445 0.94842 0.94842 0 0 1 0.72512-0.36576 1.0084 1.0084 0 0 1 0.4498 0.11285 0.93001 0.93001 0 0 1 0.49222 1.0549 0.98364 0.98364 0 0 1-0.85958 0.70271h-0.073633a1.002 1.002 0 0 1-0.92281-0.68671c-0.035216-0.093642-0.11205-0.20249-0.18328-0.2193-0.42979-0.094442-0.85798-0.17768-1.311-0.26572l-0.43459-0.085638c-0.19609 0.8972-0.38497 1.7608-0.58106 2.6652a6.659 6.659 0 0 1 3.4511 1.0589 1.5751 1.5751 0 0 1 0.91321-0.33535 1.3126 1.3126 0 0 1 0.33935 0.04562 1.2542 1.2542 0 0 1 0.96923 0.99484 1.1797 1.1797 0 0 1-0.50823 1.2806 0.43219 0.43219 0 0 0-0.21049 0.42259 2.9141 2.9141 0 0 1-1.3182 2.4483 6.2532 6.2532 0 0 1-3.8825 1.2109zm-0.059226-1.6007h0.2217a1.2726 1.2726 0 0 0 0.12726-0.0048 3.0253 3.0253 0 0 0 1.5487-0.4554c0.071232-0.05202 0.13606-0.20329 0.098444-0.26412a0.14166 0.14166 0 0 0-0.12566-0.07603 0.52824 0.52824 0 0 0-0.20969 0.07203h-4e-3l-0.041619 0.02081a2.7604 2.7604 0 0 1-0.62828 0.25371 5.0222 5.0222 0 0 1-1.0757 0.12726 3.0606 3.0606 0 0 1-1.6231-0.43299 0.11365 0.11365 0 0 0-0.058426-0.01281 0.61067 0.61067 0 0 0-0.11285 0.01601h-0.028006l-0.02161 4e-3a0.60907 0.60907 0 0 1-0.061627 0.01841 0.56025 0.56025 0 0 1 4e-3 0.06163v0.01361c0 0.05763 0 0.11685 0.036016 0.14727a1.5383 1.5383 0 0 0 0.39137 0.24011 3.6736 3.6736 0 0 0 1.4791 0.27132zm2.0009-3.2014a0.81156 0.81156 0 0 0-0.79395 0.80036 0.80036 0.80036 0 0 0 1.6007 0.0072 0.82517 0.82517 0 0 0-0.80036-0.80756zm-4.0018 0a0.82437 0.82437 0 0 0-0.79395 0.81076 0.80036 0.80036 0 0 0 0.80036 0.78995h0.0064a0.80036 0.80036 0 0 0 0.79396-0.80036 0.81236 0.81236 0 0 0-0.79635-0.80036z" fill="#fff" stroke-width=".80036" data-name="Fill 1"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="m9.5367 11.136a0.58633 0.58633 0 0 1-0.34559-0.11342c-0.97794-0.7158-2.7252-2.0329-2.799-2.0853l-1.5482 1.5001a0.42798 0.42798 0 0 1-0.40658 0.107 0.44831 0.44831 0 0 1-0.30173-0.29531c-0.36806-1.116-1.07-3.304-1.1042-3.3971-0.00535 0-1.5568-0.50716-2.738-0.86987a0.42798 0.42798 0 0 1-0.024609-0.80353c1.3567-0.51572 3.7106-1.4198 5.9917-2.2929h0.00642c2.1506-0.82493 4.1814-1.6049 5.201-1.9923a0.38839 0.38839 0 0 1 0.13481-0.028889 0.39481 0.39481 0 0 1 0.25786 0.097366 0.40444 0.40444 0 0 1 0.13054 0.38946c-0.19152 0.92765-0.53498 2.6299-0.89662 4.4328-0.37555 1.8692-0.76395 3.8026-0.98757 4.8811a0.59061 0.59061 0 0 1-0.36164 0.42798 0.57242 0.57242 0 0 1-0.20864 0.0428zm0.17226-8.4933a0.13909 0.13909 0 0 0-0.075967 0.022469l-5.9479 3.901 0.83991 2.845 0.18617-1.8061 5.094-4.7142a0.14551 0.14551 0 0 0 0.016049-0.19366 0.13802 0.13802 0 0 0-0.11128-0.054567z" fill="#fff" stroke-width="1.07"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path id="Twitter__x28_alt_x29_" d="m10.64 5.5733a1.4695 1.4695 0 0 0 1.3104-0.72537 2.2884 2.2884 0 0 1-1.4142 0.14695c-0.020592-0.093596-0.043055-0.17783-0.065518-0.25645a2.5552 2.5552 0 0 0-2.5477-1.8588c0.093596-0.034631 0.18719-0.067389 0.28079-0.093596 0.12542-0.042118 0.86109-0.1535 0.74877-0.39591-0.093596-0.2134-0.9968 0.16099-1.1662 0.20966 0.21808-0.080493 0.58779-0.21527 0.6271-0.45488a1.842 1.842 0 0 0-0.93596 0.41463 0.58779 0.58779 0 0 0 0.17783-0.33227 5.3481 5.3481 0 0 0-1.8775 2.7049 4.4383 4.4383 0 0 0-0.91069-0.68138 24.58 24.58 0 0 0-3.0765-1.2636 1.5191 1.5191 0 0 0 1.0296 1.4039 2.6843 2.6843 0 0 0-0.73848 0.082365c0.10296 0.50168 0.4371 0.91537 1.344 1.1147a1.1391 1.1391 0 0 0-0.82271 0.30325 1.4189 1.4189 0 0 0 1.477 0.67577c-0.92099 0.37439-0.37439 1.0558 0.37439 0.95375a3.347 3.347 0 0 1-4.4543 0.11325c3.0213 3.8375 9.589 2.2716 10.568-1.4283a1.8869 1.8869 0 0 0 1.432-0.50448 3.1186 3.1186 0 0 1-1.36-0.12823z" fill="#fff" stroke-width=".93596"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="12" version="1.1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="m6 9.857a39.238 39.238 0 0 1-4.6884-0.2297 1.4485 1.4485 0 0 1-1.0602-0.97539 13.269 13.269 0 0 1-0.25113-2.6519 13.269 13.269 0 0 1 0.25113-2.6519 1.4485 1.4485 0 0 1 1.0602-0.97539 39.238 39.238 0 0 1 4.6884-0.2297 39.226 39.226 0 0 1 4.6884 0.2297 1.4485 1.4485 0 0 1 1.0611 0.97539 13.269 13.269 0 0 1 0.25028 2.6519 13.269 13.269 0 0 1-0.25113 2.6519 1.4485 1.4485 0 0 1-1.0602 0.97539 39.226 39.226 0 0 1-4.6884 0.2297zm-1.7142-5.1426v3.4284l3.4284-1.7142z" fill="#fff" stroke-width=".85711" data-name="Fill 1"/>
|
|
3
|
-
</svg>
|