isometrik-chat 1.2.4 → 1.2.6
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/build/index.js +21 -40
- package/isometrik-chat-1.2.4.tgz +0 -0
- package/package.json +17 -9
- package/webpack.dev.config.js +39 -0
- package/babel.config.js +0 -6
- package/public/Logo-192x192.png +0 -0
- package/public/Logo-512x512.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/BenjaminVictoria.ttf +0 -0
- package/public/icons/arrow_logo.svg +0 -9
- package/public/icons/assets/ic_placeholder_banner.svg +0 -1
- package/public/icons/attach-file.svg +0 -9
- package/public/icons/audio_pause.svg +0 -1
- package/public/icons/audio_play.svg +0 -6
- package/public/icons/back.svg +0 -3
- package/public/icons/bell.svg +0 -1
- package/public/icons/block.svg +0 -1
- package/public/icons/bottom-arrow.svg +0 -1
- package/public/icons/camera-switch.svg +0 -12
- package/public/icons/camera.svg +0 -4
- package/public/icons/cancel.svg +0 -1
- package/public/icons/chat empty placeholder.svg +0 -58
- package/public/icons/chat_audio_pause.png +0 -0
- package/public/icons/chat_audio_play.png +0 -0
- package/public/icons/close.svg +0 -5
- package/public/icons/crossCarousel.svg +0 -3
- package/public/icons/delete.svg +0 -3
- package/public/icons/disappear.svg +0 -24
- package/public/icons/document.png +0 -0
- package/public/icons/document.svg +0 -1
- package/public/icons/downloadCarousel.svg +0 -6
- package/public/icons/edit-pencil.svg +0 -6
- package/public/icons/emoji.svg +0 -8
- package/public/icons/emojiCarousel.svg +0 -3
- package/public/icons/filter.svg +0 -1
- package/public/icons/forwardCarousel.svg +0 -3
- package/public/icons/gallery.svg +0 -1
- package/public/icons/goToMessageCarousel.svg +0 -3
- package/public/icons/ic_uil_arrow-left.svg +0 -1
- package/public/icons/ic_uil_eye-slash.svg +0 -1
- package/public/icons/ic_uil_eye.svg +0 -1
- package/public/icons/leftArrowCarousel.svg +0 -6
- package/public/icons/light-mode.svg +0 -14
- package/public/icons/lock.svg +0 -1
- package/public/icons/login_background.png +0 -0
- package/public/icons/menu .svg +0 -5
- package/public/icons/menuCarousel.svg +0 -5
- package/public/icons/message.svg +0 -3
- package/public/icons/placeholder.svg +0 -958
- package/public/icons/poll.svg +0 -1
- package/public/icons/retake.png +0 -0
- package/public/icons/right-arrow.svg +0 -3
- package/public/icons/right.svg +0 -3
- package/public/icons/round-star.svg +0 -1
- package/public/icons/search.svg +0 -3
- package/public/icons/send.svg +0 -10
- package/public/icons/starCarousel.svg +0 -3
- package/public/icons/status.svg +0 -1
- package/public/icons/sticker.svg +0 -1
- package/public/icons/thumb-down.svg +0 -1
- package/public/icons/user.svg +0 -1
- package/public/icons/users.svg +0 -1
- package/public/icons/voice.png +0 -0
- package/public/index.html +0 -38
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +0 -25
- package/public/offline.html +0 -12
- package/public/robots.txt +0 -3
- package/public/service-worker.js +0 -81
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isometrik-chat",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"private": false,
|
|
6
6
|
"dependencies": {
|
|
@@ -18,33 +18,35 @@
|
|
|
18
18
|
"@testing-library/react": "^13.4.0",
|
|
19
19
|
"@testing-library/user-event": "^13.5.0",
|
|
20
20
|
"babel-loader": "^8.0.6",
|
|
21
|
+
"babel-preset-env": "^1.7.0",
|
|
22
|
+
"babel-preset-react": "^6.24.1",
|
|
21
23
|
"bootstrap": "^5.2.2",
|
|
22
24
|
"bootstrap-icons": "^1.10.2",
|
|
23
25
|
"css-loader": "^3.3.0",
|
|
24
26
|
"emoji-picker-react": "^4.4.7",
|
|
25
27
|
"file-loader": "^6.2.0",
|
|
26
28
|
"file-saver": "^2.0.5",
|
|
29
|
+
"html-webpack-plugin": "^4.0.0",
|
|
27
30
|
"js-cookie": "^2.2.1",
|
|
28
|
-
"react": "^18.2.0",
|
|
29
31
|
"react-cropper": "^2.3.3",
|
|
30
|
-
"react-dom": "^18.2.0",
|
|
31
32
|
"react-scripts": "5.0.1",
|
|
33
|
+
"sass-loader": "^13.3.2",
|
|
34
|
+
"source-map-loader": "^4.0.1",
|
|
32
35
|
"style-loader": "^1.0.1",
|
|
33
36
|
"styled-components": "^5.3.6",
|
|
34
37
|
"test-iso-chat-sdk": "^1.0.4",
|
|
38
|
+
"ts-loader": "^9.4.4",
|
|
35
39
|
"url-loader": "^4.1.1",
|
|
36
40
|
"wavesurfer.js": "^6.6.3",
|
|
37
41
|
"web-vitals": "^2.1.4",
|
|
38
|
-
"webpack": "^
|
|
39
|
-
"webpack-cli": "^3.3.10"
|
|
42
|
+
"webpack-node-externals": "^3.0.0"
|
|
40
43
|
},
|
|
41
44
|
"peerDependencies": {
|
|
42
45
|
"react": "^18.2.0",
|
|
43
46
|
"react-dom": "^18.2.0"
|
|
44
47
|
},
|
|
45
48
|
"scripts": {
|
|
46
|
-
"
|
|
47
|
-
"start": "webpack --watch --mode development",
|
|
49
|
+
"start": "npx webpack serve --open --config webpack.dev.config.js",
|
|
48
50
|
"build": "webpack --mode production",
|
|
49
51
|
"test": "react-scripts test",
|
|
50
52
|
"eject": "react-scripts eject",
|
|
@@ -70,6 +72,12 @@
|
|
|
70
72
|
},
|
|
71
73
|
"devDependencies": {
|
|
72
74
|
"@babel/cli": "^7.22.6",
|
|
73
|
-
"@babel/preset-react": "^7.22.5"
|
|
75
|
+
"@babel/preset-react": "^7.22.5",
|
|
76
|
+
"@webpack-cli/serve": "^2.0.5",
|
|
77
|
+
"react": "^18.2.0",
|
|
78
|
+
"react-dom": "^18.2.0",
|
|
79
|
+
"webpack": "^4.46.0",
|
|
80
|
+
"webpack-cli": "^4.10.0",
|
|
81
|
+
"webpack-dev-server": "^4.15.1"
|
|
74
82
|
}
|
|
75
|
-
}
|
|
83
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
|
|
3
|
+
module.exports = {
|
|
4
|
+
mode: 'development',
|
|
5
|
+
entry: './src/index.js',
|
|
6
|
+
output: {
|
|
7
|
+
path: path.resolve(__dirname, 'dist'),
|
|
8
|
+
filename: 'my-react-library.js',
|
|
9
|
+
},
|
|
10
|
+
devServer: {
|
|
11
|
+
port: 3000,
|
|
12
|
+
},
|
|
13
|
+
module: {
|
|
14
|
+
rules: [
|
|
15
|
+
{
|
|
16
|
+
test: /\.js$/,
|
|
17
|
+
exclude: /node_modules/,
|
|
18
|
+
use: {
|
|
19
|
+
loader: 'babel-loader',
|
|
20
|
+
options: {
|
|
21
|
+
presets: ['@babel/preset-env', '@babel/preset-react'],
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
test: /\.css$/,
|
|
27
|
+
loader: "style-loader!css-loader"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
test: /\.(png|jpe?g|gif|svg)$/i,
|
|
31
|
+
loader: 'file-loader',
|
|
32
|
+
options: {
|
|
33
|
+
publicPath: 'public',
|
|
34
|
+
outputPath: "public"
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
};
|
package/babel.config.js
DELETED
package/public/Logo-192x192.png
DELETED
|
Binary file
|
package/public/Logo-512x512.png
DELETED
|
Binary file
|
package/public/favicon.ico
DELETED
|
Binary file
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg id="Vector_Smart_Object_copy_5" data-name="Vector Smart Object copy 5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80.469" height="50.067" viewBox="0 0 118.469 71.067">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="linear-gradient" x1="0.74" y1="0.78" x2="0.5" y2="0.162" gradientUnits="objectBoundingBox">
|
|
4
|
-
<stop offset="0" stop-color="#f77062"/>
|
|
5
|
-
<stop offset="1" stop-color="#fe5196"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
</defs>
|
|
8
|
-
<path id="Gradient_Overlay" data-name="Gradient Overlay" d="M-318.865,101.331l-.006-9.142h-12.653a4.221,4.221,0,0,1-4.224-4.219,4.223,4.223,0,0,1,4.22-4.225l12.652-.008,16.14-.009a4.221,4.221,0,0,0,4.219-4.224,4.222,4.222,0,0,0-4.224-4.22h0l-9.713.006h-6.426l-26.187.016a4.222,4.222,0,0,1-4.223-4.219,4.221,4.221,0,0,1,4.219-4.224h0l32.613-.02a4.138,4.138,0,0,1,.613.062l16.214-.01a4.222,4.222,0,0,0,4.22-4.224,4.221,4.221,0,0,0-4.224-4.219h-7.111l-16.14.009-9.562.018a4.222,4.222,0,0,1-4.225-4.219,4.222,4.222,0,0,1,4.22-4.224l9.557-.006-.008-9.209a5.274,5.274,0,0,1,5.263-5.282,5.282,5.282,0,0,1,2.644.705l52.351,30.221a5.284,5.284,0,0,1,1.927,7.219,5.3,5.3,0,0,1-1.92,1.923l-52.314,30.281a5.219,5.219,0,0,1-2.629.718A5.283,5.283,0,0,1-318.865,101.331ZM-359.684,89.1a4.052,4.052,0,0,1,4.057-4.051,4.054,4.054,0,0,1,4.05,4.056,4.055,4.055,0,0,1-4.05,4.052A4.057,4.057,0,0,1-359.684,89.1Zm12.7-.333a4.054,4.054,0,0,1,4.056-4.051,4.054,4.054,0,0,1,4.052,4.057,4.055,4.055,0,0,1-4.052,4.051,4.056,4.056,0,0,1-4.056-4.057Zm-27.5-16.807a4.054,4.054,0,0,1,4.057-4.051,4.054,4.054,0,0,1,4.051,4.057,4.053,4.053,0,0,1-4.051,4.051A4.057,4.057,0,0,1-374.477,71.96Zm12.7-.332a4.052,4.052,0,0,1,4.057-4.051,4.054,4.054,0,0,1,4.051,4.056,4.055,4.055,0,0,1-4.051,4.052A4.057,4.057,0,0,1-361.775,71.628Zm5.4-17.354a4.054,4.054,0,0,1,4.056-4.051,4.052,4.052,0,0,1,4.05,4.057,4.053,4.053,0,0,1-4.052,4.051A4.056,4.056,0,0,1-356.376,54.274Zm12.5-.008a4.054,4.054,0,0,1,4.057-4.051,4.053,4.053,0,0,1,4.051,4.057,4.053,4.053,0,0,1-4.051,4.051,4.057,4.057,0,0,1-4.057-4.057Z" transform="translate(374.477 -35.54)" fill="url(#linear-gradient)"/>
|
|
9
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 303 172" width="360" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M229.565 160.229C262.212 149.245 286.931 118.241 283.39 73.4194C278.009 5.31929 212.365 -11.5738 171.472 8.48673C115.998 35.6999 108.972 40.1612 69.2388 40.1612C39.645 40.1612 9.51317 54.4147 5.74669 92.952C3.01662 120.885 13.9985 145.267 54.6373 157.716C128.599 180.373 198.017 170.844 229.565 160.229Z" fill="#364147"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M131.589 68.9422C131.593 68.9422 131.596 68.9422 131.599 68.9422C137.86 68.9422 142.935 63.6787 142.935 57.1859C142.935 50.6931 137.86 45.4297 131.599 45.4297C126.518 45.4297 122.218 48.8958 120.777 53.6723C120.022 53.4096 119.213 53.2672 118.373 53.2672C114.199 53.2672 110.815 56.7762 110.815 61.1047C110.815 65.4332 114.199 68.9422 118.373 68.9422C118.377 68.9422 118.381 68.9422 118.386 68.9422H131.589Z" fill="#F1F1F2" fill-opacity="0.38"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M105.682 128.716C109.186 128.716 112.026 125.908 112.026 122.446C112.026 118.983 109.186 116.176 105.682 116.176C104.526 116.176 103.442 116.481 102.509 117.015L102.509 116.959C102.509 110.467 97.1831 105.203 90.6129 105.203C85.3224 105.203 80.8385 108.616 79.2925 113.335C78.6052 113.143 77.88 113.041 77.1304 113.041C72.7503 113.041 69.1995 116.55 69.1995 120.878C69.1995 125.207 72.7503 128.716 77.1304 128.716C77.1341 128.716 77.1379 128.716 77.1416 128.716H105.682L105.682 128.716Z" fill="#F1F1F2" fill-opacity="0.38"></path><rect x="0.445307" y="0.549558" width="50.5797" height="100.068" rx="7.5" transform="matrix(0.994522 0.104528 -0.103907 0.994587 10.5547 41.6171)" fill="#42CBA5" stroke="#316474"></rect><rect x="0.445307" y="0.549558" width="50.4027" height="99.7216" rx="7.5" transform="matrix(0.994522 0.104528 -0.103907 0.994587 10.9258 37.9564)" fill="#EEFAF6" stroke="#316474"></rect><path d="M57.1609 51.7354L48.5917 133.759C48.2761 136.78 45.5713 138.972 42.5503 138.654L9.58089 135.189C6.55997 134.871 4.36688 132.165 4.68251 129.144L13.2517 47.1204C13.5674 44.0992 16.2722 41.9075 19.2931 42.2251L24.5519 42.7778L47.0037 45.1376L52.2625 45.6903C55.2835 46.0078 57.4765 48.7143 57.1609 51.7354Z" fill="#DFF3ED" stroke="#316474"></path><path d="M26.2009 102.937C27.0633 103.019 27.9323 103.119 28.8023 103.21C29.0402 101.032 29.2706 98.8437 29.4916 96.6638L26.8817 96.39C26.6438 98.5681 26.4049 100.755 26.2009 102.937ZM23.4704 93.3294L25.7392 91.4955L27.5774 93.7603L28.7118 92.8434L26.8736 90.5775L29.1434 88.7438L28.2248 87.6114L25.955 89.4452L24.1179 87.1806L22.9824 88.0974L24.8207 90.3621L22.5508 92.197L23.4704 93.3294ZM22.6545 98.6148C22.5261 99.9153 22.3893 101.215 22.244 102.514C23.1206 102.623 23.9924 102.697 24.8699 102.798C25.0164 101.488 25.1451 100.184 25.2831 98.8734C24.4047 98.7813 23.5298 98.6551 22.6545 98.6148ZM39.502 89.7779C38.9965 94.579 38.4833 99.3707 37.9862 104.174C38.8656 104.257 39.7337 104.366 40.614 104.441C41.1101 99.6473 41.6138 94.8633 42.1271 90.0705C41.2625 89.9282 40.3796 89.8786 39.502 89.7779ZM35.2378 92.4459C34.8492 96.2179 34.4351 99.9873 34.0551 103.76C34.925 103.851 35.7959 103.934 36.6564 104.033C37.1028 100.121 37.482 96.1922 37.9113 92.2783C37.0562 92.1284 36.18 92.0966 35.3221 91.9722C35.2812 92.1276 35.253 92.286 35.2378 92.4459ZM31.1061 94.1821C31.0635 94.341 31.0456 94.511 31.0286 94.6726C30.7324 97.5678 30.4115 100.452 30.1238 103.348L32.7336 103.622C32.8582 102.602 32.9479 101.587 33.0639 100.567C33.2611 98.5305 33.5188 96.4921 33.6905 94.4522C32.8281 94.3712 31.9666 94.2811 31.1061 94.1821Z" fill="#316474"></path><path d="M17.892 48.4889C17.7988 49.3842 18.4576 50.1945 19.3597 50.2923C20.2665 50.3906 21.0855 49.7332 21.1792 48.8333C21.2724 47.938 20.6136 47.1277 19.7115 47.0299C18.8047 46.9316 17.9857 47.5889 17.892 48.4889Z" fill="white" stroke="#316474"></path><path d="M231.807 136.678L197.944 139.04C197.65 139.06 197.404 139.02 197.249 138.96C197.208 138.945 197.179 138.93 197.16 138.918L196.456 128.876C196.474 128.862 196.5 128.843 196.538 128.822C196.683 128.741 196.921 128.668 197.215 128.647L231.078 126.285C231.372 126.265 231.618 126.305 231.773 126.365C231.814 126.381 231.842 126.395 231.861 126.407L232.566 136.449C232.548 136.463 232.522 136.482 232.484 136.503C232.339 136.584 232.101 136.658 231.807 136.678Z" fill="white" stroke="#316474"></path><path d="M283.734 125.679L144.864 135.363C141.994 135.563 139.493 133.4 139.293 130.54L133.059 41.6349C132.858 38.7751 135.031 36.2858 137.903 36.0856L276.773 26.4008C279.647 26.2005 282.144 28.364 282.345 31.2238L288.578 120.129C288.779 122.989 286.607 125.478 283.734 125.679Z" fill="#EEFAF6"></path><path d="M144.864 135.363C141.994 135.563 139.493 133.4 139.293 130.54L133.059 41.6349C132.858 38.7751 135.031 36.2858 137.903 36.0856L276.773 26.4008C279.647 26.2004 282.144 28.364 282.345 31.2238L288.578 120.129C288.779 122.989 286.607 125.478 283.734 125.679" stroke="#316474"></path><path d="M278.565 121.405L148.68 130.463C146.256 130.632 144.174 128.861 144.012 126.55L138.343 45.695C138.181 43.3846 139.994 41.3414 142.419 41.1723L272.304 32.1142C274.731 31.945 276.81 33.7166 276.972 36.0271L282.641 116.882C282.803 119.193 280.992 121.236 278.565 121.405Z" fill="#DFF3ED" stroke="#316474"></path><path d="M230.198 129.97L298.691 125.193L299.111 131.189C299.166 131.97 299.013 132.667 298.748 133.161C298.478 133.661 298.137 133.887 297.825 133.909L132.794 145.418C132.482 145.44 132.113 145.263 131.777 144.805C131.445 144.353 131.196 143.684 131.141 142.903L130.721 136.907L199.215 132.131C199.476 132.921 199.867 133.614 200.357 134.129C200.929 134.729 201.665 135.115 202.482 135.058L227.371 133.322C228.188 133.265 228.862 132.782 229.345 132.108C229.758 131.531 230.05 130.79 230.198 129.97Z" fill="#42CBA5" stroke="#316474"></path><path d="M230.367 129.051L300.275 124.175L300.533 127.851C300.591 128.681 299.964 129.403 299.13 129.461L130.858 141.196C130.025 141.254 129.303 140.627 129.245 139.797L128.987 136.121L198.896 131.245C199.485 132.391 200.709 133.147 202.084 133.051L227.462 131.281C228.836 131.185 229.943 130.268 230.367 129.051Z" fill="#EEFAF6" stroke="#316474"></path><ellipse rx="15.9969" ry="15.9971" transform="matrix(0.997577 -0.0695704 0.0699429 0.997551 210.659 83.553)" fill="#42CBA5" stroke="#316474"></ellipse><path d="M208.184 87.1094L204.777 84.3593C204.777 84.359 204.776 84.3587 204.776 84.3583C203.957 83.6906 202.744 83.8012 202.061 84.6073C201.374 85.4191 201.486 86.6265 202.31 87.2997L202.312 87.3011L207.389 91.4116C207.389 91.4119 207.389 91.4121 207.389 91.4124C208.278 92.1372 209.611 91.9373 210.242 90.9795L218.283 78.77C218.868 77.8813 218.608 76.6968 217.71 76.127C216.817 75.5606 215.624 75.8109 215.043 76.6939L208.184 87.1094Z" fill="white" stroke="#316474"></path></svg>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="47" height="47" viewBox="0 0 47 47">
|
|
2
|
-
<g id="Group_135643" data-name="Group 135643" transform="translate(-25 -15)">
|
|
3
|
-
<g id="Rectangle_109" data-name="Rectangle 109" transform="translate(25 15)" fill="#fff" stroke="#707070" stroke-width="1" opacity="0">
|
|
4
|
-
<rect width="47" height="47" stroke="none"/>
|
|
5
|
-
<rect x="0.5" y="0.5" width="46" height="46" fill="none"/>
|
|
6
|
-
</g>
|
|
7
|
-
<path id="Path_2169" data-name="Path 2169" d="M24.958,8.241a1.318,1.318,0,0,0-.132.55,5.783,5.783,0,0,1-1.61,2.891q-4.768,4.765-9.534,9.531a7.715,7.715,0,0,1-4.227,2.251,7.758,7.758,0,0,1-7.387-2.486A7.662,7.662,0,0,1,.051,14.741a7.8,7.8,0,0,1,2.338-4.8Q7.152,5.168,11.917.4a1.157,1.157,0,0,1,1.916.236A1.081,1.081,0,0,1,13.7,1.826a2.856,2.856,0,0,1-.247.269Q8.767,6.784,4.077,11.471a6.152,6.152,0,0,0-1.515,2.377A5.733,5.733,0,0,0,4.11,19.821,5.621,5.621,0,0,0,8.544,21.3a5.571,5.571,0,0,0,3.5-1.678q4.794-4.79,9.583-9.585A3.4,3.4,0,0,0,20.3,4.33a3.3,3.3,0,0,0-3.3.685c-.081.068-.156.142-.231.217q-4.353,4.352-8.707,8.7a1.161,1.161,0,0,0-.371,1.209,1.13,1.13,0,0,0,1.763.6,2.544,2.544,0,0,0,.271-.245q2.794-2.791,5.587-5.583a1.14,1.14,0,0,1,1.794,1.4,2.022,2.022,0,0,1-.194.218q-2.826,2.827-5.656,5.652a3.417,3.417,0,0,1-5.024-4.633q.131-.144.269-.282,4.292-4.292,8.583-8.586a5.74,5.74,0,0,1,3.54-1.767,5.553,5.553,0,0,1,4.321,1.318A5.6,5.6,0,0,1,24.895,6.73c.011.065-.025.153.064.2Z" transform="translate(36.824 26) rotate(2)" fill="#f53872"/>
|
|
8
|
-
</g>
|
|
9
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="24.572" viewBox="0 0 22.77 24.572" width="22.77" xmlns="http://www.w3.org/2000/svg"><path d="m-469.709 277.351q0-4.741 0-9.482c0-2.249 1.663-3.387 3.513-2.39q8.908 4.8 17.8 9.624a2.525 2.525 0 0 1 .863 3.9 3.051 3.051 0 0 1 -1 .783q-8.82 4.769-17.644 9.528c-1.866 1.005-3.531-.1-3.537-2.347-.001-3.205.005-6.41.005-9.616z" fill="#f53872" transform="translate(469.711 -265.117)"/></svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="19.059" height="24.256" viewBox="0 0 19.059 24.256">
|
|
2
|
-
<g id="Group_135733" data-name="Group 135733" transform="translate(611.805 -1556.98)">
|
|
3
|
-
<path id="Path_211412" data-name="Path 211412" d="M-611.8,1569.086q0-4.667,0-9.334a2.6,2.6,0,0,1,2.758-2.762c.785,0,1.569,0,2.354,0a2.592,2.592,0,0,1,2.683,2.672q0,9.456,0,18.912a2.591,2.591,0,0,1-2.662,2.667q-1.231.006-2.462,0a2.6,2.6,0,0,1-2.67-2.686Q-611.808,1573.82-611.8,1569.086Z" transform="translate(0 -0.008)" fill="#f53872"/>
|
|
4
|
-
<path id="Path_211413" data-name="Path 211413" d="M-448.367,1569.105q0,4.735,0,9.469a2.593,2.593,0,0,1-1.948,2.575,2.662,2.662,0,0,1-.7.085c-.83,0-1.66,0-2.489,0a2.593,2.593,0,0,1-2.661-2.668q0-9.455,0-18.912a2.6,2.6,0,0,1,2.684-2.672q1.218,0,2.435,0a2.594,2.594,0,0,1,2.674,2.682Q-448.363,1564.384-448.367,1569.105Z" transform="translate(-144.38 0)" fill="#f53872"/>
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
package/public/icons/back.svg
DELETED
package/public/icons/bell.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M21 19v1H3v-1l2-2v-6c0-3.1 2.03-5.83 5-6.71V4a2 2 0 0 1 2-2a2 2 0 0 1 2 2v.29c2.97.88 5 3.61 5 6.71v6l2 2m-7 2a2 2 0 0 1-2 2a2 2 0 0 1-2-2"/></svg>
|
package/public/icons/block.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="#f15c6d" d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10s10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8c1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M16.59 8.59L12 13.17L7.41 8.59L6 10l6 6l6-6l-1.41-1.41z"/></svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
4
|
-
<title>ic_fluent_camera_switch_24_regular</title>
|
|
5
|
-
<desc>Created with Sketch.</desc>
|
|
6
|
-
<g id="🔍-Product-Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
-
<g id="ic_fluent_camera_switch_24_regular" fill="#212121" fill-rule="nonzero">
|
|
8
|
-
<path d="M21.25,7.5 C21.6296958,7.5 21.943491,7.78215388 21.9931534,8.14822944 L22,8.25 L22,16.75 C22,18.4830315 20.6435452,19.8992459 18.9344239,19.9948552 L18.75,20 L6.061,20 L6.78033009,20.7196699 C7.04659665,20.9859365 7.0708027,21.4026002 6.85294824,21.6962117 L6.78033009,21.7803301 C6.51406352,22.0465966 6.09739984,22.0708027 5.80378835,21.8529482 L5.71966991,21.7803301 L3.71966991,19.7803301 L3.65627192,19.7083026 C3.65382253,19.7051341 3.65139794,19.7019455 3.64899844,19.698737 L3.71966991,19.7803301 C3.68261664,19.7432768 3.65025089,19.7033111 3.62257267,19.6611698 C3.60940783,19.6410149 3.59702767,19.6200275 3.58567096,19.5984182 C3.58083742,19.5892964 3.57648082,19.5805656 3.57230508,19.5717704 C3.55955796,19.5449819 3.54805336,19.5165221 3.53830293,19.4872605 C3.53604456,19.4803168 3.53412011,19.4742456 3.5322748,19.4681555 C3.51135317,19.3996769 3.5,19.3261643 3.5,19.25 C3.5,19.2116078 3.50288471,19.1738893 3.50844919,19.1370495 C3.51025385,19.1254819 3.51230949,19.1137722 3.51464433,19.1021073 C3.51958796,19.0771042 3.52576118,19.0528079 3.53308617,19.0290163 C3.53671273,19.0173565 3.54074464,19.0053071 3.54509073,18.993346 C3.55357499,18.9700484 3.56287686,18.9479798 3.57317314,18.9264782 C3.57866533,18.9148771 3.58496828,18.9025401 3.59163501,18.890349 C3.60487024,18.8663332 3.61897543,18.8436098 3.63421622,18.8217366 C3.63813751,18.8159949 3.64254279,18.8098653 3.64705176,18.8037883 C3.67217116,18.7705706 3.69507007,18.7442698 3.71966991,18.7196699 L5.71966991,16.7196699 C6.01256313,16.4267767 6.48743687,16.4267767 6.78033009,16.7196699 C7.04659665,16.9859365 7.0708027,17.4026002 6.85294824,17.6962117 L6.78033009,17.7803301 L6.06,18.5 L18.75,18.5 C19.6681734,18.5 20.4211923,17.7928897 20.4941988,16.8935272 L20.5,16.75 L20.5,8.25 C20.5,7.83578644 20.8357864,7.5 21.25,7.5 Z M18.1962117,2.14705176 L18.2803301,2.21966991 L20.2803301,4.21966991 C20.3057782,4.24511803 20.3294061,4.27238643 20.3510016,4.30126304 L20.2803301,4.21966991 C20.3173834,4.25672319 20.3497491,4.29668892 20.3774273,4.33883021 C20.3905922,4.35898514 20.4029723,4.37997247 20.414329,4.40158175 C20.4191626,4.41070362 20.4235192,4.41943437 20.4276949,4.42822959 C20.440442,4.45501812 20.4519466,4.48347789 20.4616971,4.51273953 C20.4639554,4.51968322 20.4658799,4.52575442 20.4677252,4.53184446 C20.4886468,4.60032314 20.5,4.67383573 20.5,4.75 C20.5,4.78839224 20.4971153,4.82611073 20.4915508,4.86295053 C20.490052,4.87249593 20.4883902,4.88219415 20.486537,4.89186294 C20.4814006,4.91897216 20.4748298,4.94527266 20.4669138,4.97098366 C20.4632873,4.98264346 20.4592554,4.99469294 20.4549093,5.00665398 C20.446425,5.02995161 20.4371231,5.05202019 20.4268269,5.07352179 C20.4213347,5.08512287 20.4150317,5.09745994 20.408365,5.10965102 C20.3951298,5.13366677 20.3810246,5.15639019 20.3657838,5.17826335 C20.3618625,5.18400509 20.3574572,5.19013473 20.3529482,5.19621165 C20.3291702,5.22765357 20.3078467,5.2523651 20.2850218,5.27559671 L20.2803301,5.28033009 L18.2803301,7.28033009 C17.9874369,7.5732233 17.5125631,7.5732233 17.2196699,7.28033009 C16.9534034,7.01406352 16.9291973,6.59739984 17.1470518,6.30378835 L17.2196699,6.21966991 L17.938,5.5 L5.25,5.5 C4.3318266,5.5 3.57880766,6.20711027 3.5058012,7.10647279 L3.5,7.25 L3.5,15.75 C3.5,16.1642136 3.16421356,16.5 2.75,16.5 C2.37030423,16.5 2.05650904,16.2178461 2.00684662,15.8517706 L2,15.75 L2,7.25 C2,5.51696854 3.35645477,4.10075407 5.06557609,4.00514479 L5.25,4 L17.939,4 L17.2196699,3.28033009 C16.9534034,3.01406352 16.9291973,2.59739984 17.1470518,2.30378835 L17.2196699,2.21966991 C17.4859365,1.95340335 17.9026002,1.9291973 18.1962117,2.14705176 Z M12,8 C14.209139,8 16,9.790861 16,12 C16,14.209139 14.209139,16 12,16 C9.790861,16 8,14.209139 8,12 C8,9.790861 9.790861,8 12,8 Z M12,9.5 C10.6192881,9.5 9.5,10.6192881 9.5,12 C9.5,13.3807119 10.6192881,14.5 12,14.5 C13.3807119,14.5 14.5,13.3807119 14.5,12 C14.5,10.6192881 13.3807119,9.5 12,9.5 Z" id="🎨-Color">
|
|
9
|
-
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
package/public/icons/camera.svg
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg id="Group_135679" data-name="Group 135679" xmlns="http://www.w3.org/2000/svg" width="18.715" height="15.229" viewBox="0 0 18.715 15.229">
|
|
2
|
-
<path id="Path_70973" data-name="Path 70973" d="M-200.684,319.159v-9.244c.063-.022.041-.083.052-.125a2.056,2.056,0,0,1,2.063-1.6q1.169-.008,2.338,0c.13,0,.161-.037.161-.163a3.5,3.5,0,0,1,.051-.963,1.8,1.8,0,0,1,1.845-1.4q2.1,0,4.2,0c.572,0,1.145-.009,1.716.012a1.8,1.8,0,0,1,1.571,1.225,3.374,3.374,0,0,1,.1,1.12c0,.135.031.173.17.172.834-.005,1.668-.014,2.5.007a2.034,2.034,0,0,1,1.907,1.709,9.239,9.239,0,0,1,.032,1.385c0,2.478,0,4.955,0,7.433a2.1,2.1,0,0,1-.2.973,2.051,2.051,0,0,1-1.972,1.192q-7.186,0-14.373,0c-.067,0-.133,0-.2-.006a2.058,2.058,0,0,1-1.871-1.442C-200.62,319.348-200.611,319.239-200.684,319.159Zm9.35-.051a4.585,4.585,0,0,0,4.57-4.556,4.578,4.578,0,0,0-4.563-4.58,4.582,4.582,0,0,0-4.572,4.553A4.587,4.587,0,0,0-191.334,319.108Z" transform="translate(200.684 -305.661)" fill="#1d1c21"/>
|
|
3
|
-
<path id="Path_70974" data-name="Path 70974" d="M-184.87,317.725a3.023,3.023,0,0,1-3.022,3.013,3.022,3.022,0,0,1-3.011-3.006,3.027,3.027,0,0,1,3.013-3.024A3.027,3.027,0,0,1-184.87,317.725Z" transform="translate(197.24 -308.847)" fill="#1d1c21"/>
|
|
4
|
-
</svg>
|
package/public/icons/cancel.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24"><path fill="brown" d="M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41z"/></svg>
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="409.797" height="167.75" viewBox="0 0 409.797 167.75">
|
|
2
|
-
<defs>
|
|
3
|
-
<filter id="Path_71192" x="39" y="0" width="315.551" height="163.752" filterUnits="userSpaceOnUse">
|
|
4
|
-
<feOffset dy="-4" input="SourceAlpha"/>
|
|
5
|
-
<feGaussianBlur stdDeviation="3" result="blur"/>
|
|
6
|
-
<feFlood flood-color="#f53872" flood-opacity="0.059"/>
|
|
7
|
-
<feComposite operator="in" in2="blur"/>
|
|
8
|
-
<feComposite in="SourceGraphic"/>
|
|
9
|
-
</filter>
|
|
10
|
-
<clipPath id="clip-path">
|
|
11
|
-
<ellipse id="Ellipse_16" data-name="Ellipse 16" cx="39.972" cy="39.977" rx="39.972" ry="39.977" transform="translate(0 79.942) rotate(-89.552)" fill="none"/>
|
|
12
|
-
</clipPath>
|
|
13
|
-
</defs>
|
|
14
|
-
<g id="Group_135648" data-name="Group 135648" transform="translate(17867 11096)">
|
|
15
|
-
<rect id="Rectangle_1731" data-name="Rectangle 1731" width="409.797" height="163.75" transform="translate(-17867 -11092)" fill="none"/>
|
|
16
|
-
<g id="Group_135678" data-name="Group 135678" transform="translate(-15178.743 -11571.425)">
|
|
17
|
-
<rect id="Rectangle_1756" data-name="Rectangle 1756" width="286.021" height="116.212" rx="23" transform="translate(-2611.708 515.123)" fill="#9e9cab" opacity="0.263"/>
|
|
18
|
-
<g transform="matrix(1, 0, 0, 1, -2688.26, 475.42)" filter="url(#Path_71192)">
|
|
19
|
-
<path id="Path_71192-2" data-name="Path 71192" d="M-2365.75,604.637h-166.167l8.989,29.54-47.4-29.54h-46.89a23.044,23.044,0,0,1-23.044-23.044V511.469a23.044,23.044,0,0,1,23.044-23.044h251.463a23.044,23.044,0,0,1,23.044,23.044v70.124A23.044,23.044,0,0,1-2365.75,604.637Z" transform="translate(2688.26 -475.42)" fill="#fff"/>
|
|
20
|
-
</g>
|
|
21
|
-
<g id="Group_135671" data-name="Group 135671" transform="translate(-2620.209 505.065)">
|
|
22
|
-
<g id="Group_135664" data-name="Group 135664" transform="translate(0.365 0.409)">
|
|
23
|
-
<path id="Path_71193" data-name="Path 71193" d="M-2491.38,586.008a39.923,39.923,0,0,1-39.923,39.923,39.857,39.857,0,0,1-31.675-15.618,39.75,39.75,0,0,1-8.249-24.3A39.923,39.923,0,0,1-2531.3,546.09a39.924,39.924,0,0,1,39.925,39.92Z" transform="translate(2571.224 -546.085)" fill="#ededed"/>
|
|
24
|
-
</g>
|
|
25
|
-
<g id="Group_135670" data-name="Group 135670">
|
|
26
|
-
<g id="Group_135669" data-name="Group 135669">
|
|
27
|
-
<g id="Group_135668" data-name="Group 135668" clip-path="url(#clip-path)">
|
|
28
|
-
<g id="Group_135665" data-name="Group 135665" transform="translate(12.132 57.924)">
|
|
29
|
-
<path id="Path_71194" data-name="Path 71194" d="M-2474.66,764.673l-6.158,1.159a120.088,120.088,0,0,1-44.454,0l-6.157-1.159,4.052-15.571a9.582,9.582,0,0,1,7.859-7.064l2.978-.445a91.442,91.442,0,0,1,26.99,0l2.978.445a9.581,9.581,0,0,1,7.859,7.064Z" transform="translate(2531.43 -740.593)" fill="#f53872"/>
|
|
30
|
-
</g>
|
|
31
|
-
<g id="Group_135666" data-name="Group 135666" transform="translate(34.283 47.1)">
|
|
32
|
-
<path id="Path_71195" data-name="Path 71195" d="M-2443.03,722.339l-.027.027a9.514,9.514,0,0,1-13.461-.027h0l1.035-8.452h11.417Z" transform="translate(2456.518 -710.959)" fill="#fad5a8"/>
|
|
33
|
-
<path id="Path_71196" data-name="Path 71196" d="M-2443.19,703.986a16.718,16.718,0,0,1-5.35.852h0a16.718,16.718,0,0,1-5.35-.852l-.877,7.154c1.807.7,8.2,2.2,12.639,1.515Z" transform="translate(2455.286 -703.986)" fill="#fad5a8" opacity="0.68"/>
|
|
34
|
-
</g>
|
|
35
|
-
<g id="Group_135667" data-name="Group 135667" transform="translate(12.259 7.464)">
|
|
36
|
-
<path id="Path_71197" data-name="Path 71197" d="M-2494.82,701.182s0-12.984,14.316-12.984,14.315,4,14.315,4l2.663-16.979h-35.955Z" transform="translate(2508.799 -644.086)" fill="#292929"/>
|
|
37
|
-
<path id="Path_71198" data-name="Path 71198" d="M-2486.84,574.053h0c-11.951,0-21.64,8.473-21.64,20.425V611.29l7.324,18.643V627.27l1.5-19.476,8.949-10.173a23.441,23.441,0,0,1,17.257-7.957l.927-.014v31.294l7.324-18.977v-7.491C-2465.2,582.526-2474.89,574.053-2486.84,574.053Z" transform="translate(2515.142 -572.838)" fill="#292929"/>
|
|
38
|
-
<path id="Path_71199" data-name="Path 71199" d="M-2469.4,638.389h0a14.316,14.316,0,0,1-14.316-14.315V601.657h28.631v22.416a14.316,14.316,0,0,1-14.316,14.316Z" transform="translate(2497.697 -592.28)" fill="#fad5a8"/>
|
|
39
|
-
<path id="Path_71200" data-name="Path 71200" d="M-2441.06,701.049a8.452,8.452,0,0,0,6.191-.339" transform="translate(2467.657 -662.043)" fill="none" stroke="#f2bb76" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2.424"/>
|
|
40
|
-
<path id="Path_71201" data-name="Path 71201" d="M-2502.7,569.944h0a21.64,21.64,0,0,0-21.64,21.64H-2531l2.788,5.715a13.554,13.554,0,0,0,12.693,7.6h0l8.948-10.173a23.443,23.443,0,0,1,17.258-7.957l.927-.014v31.294l7.324-18.977v-7.491a21.638,21.638,0,0,0-21.636-21.637Z" transform="translate(2531.001 -569.944)" fill="#454545"/>
|
|
41
|
-
</g>
|
|
42
|
-
</g>
|
|
43
|
-
</g>
|
|
44
|
-
</g>
|
|
45
|
-
</g>
|
|
46
|
-
<g id="Group_135674" data-name="Group 135674" transform="translate(-2516.532 528.832)" opacity="0.26">
|
|
47
|
-
<g id="Group_135672" data-name="Group 135672">
|
|
48
|
-
<line id="Line_8" data-name="Line 8" x2="128.013" transform="translate(0 3.545)" fill="#fff"/>
|
|
49
|
-
<rect id="Rectangle_1757" data-name="Rectangle 1757" width="128.013" height="7.09" fill="#9e9cab"/>
|
|
50
|
-
</g>
|
|
51
|
-
<g id="Group_135673" data-name="Group 135673" transform="translate(0 21.085)">
|
|
52
|
-
<line id="Line_9" data-name="Line 9" x2="82.317" transform="translate(0 3.545)" fill="#fff"/>
|
|
53
|
-
<rect id="Rectangle_1758" data-name="Rectangle 1758" width="82.317" height="7.09" fill="#9e9cab"/>
|
|
54
|
-
</g>
|
|
55
|
-
</g>
|
|
56
|
-
</g>
|
|
57
|
-
</g>
|
|
58
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
package/public/icons/close.svg
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="18.775" height="18.775" viewBox="0 0 18.775 18.775">
|
|
2
|
-
<g id="Group_135683" data-name="Group 135683" transform="translate(-0.002 -0.001)">
|
|
3
|
-
<path id="Path_44" data-name="Path 44" d="M-210.749,270.4h.33a1.652,1.652,0,0,1,.69.478q3.105,3.113,6.213,6.222c.122.123.179.144.315.007q3.113-3.13,6.24-6.247a.94.94,0,0,1,1.436-.011c.336.329.665.666,1.005.99a1.577,1.577,0,0,1,.49.725v.367a2.876,2.876,0,0,1-.739.908q-2.928,2.93-5.86,5.855c-.119.118-.136.172-.006.3q3.043,3.022,6.076,6.054a1.85,1.85,0,0,1,.53.741v.367a1.782,1.782,0,0,1-.5.7c-.32.311-.632.63-.947.945a.95.95,0,0,1-1.514,0q-3.111-3.11-6.219-6.224c-.111-.111-.163-.119-.279,0q-3.117,3.13-6.245,6.25a.94.94,0,0,1-1.462.006q-.559-.556-1.115-1.114a.952.952,0,0,1,0-1.5q3.1-3.118,6.209-6.234c.111-.112.13-.169.006-.292q-3.188-3.175-6.367-6.361a.933.933,0,0,1,0-1.435c.336-.338.678-.67,1.009-1.013A1.566,1.566,0,0,1-210.749,270.4Z" transform="translate(212.806 -270.399)" fill="#1d1c21"/>
|
|
4
|
-
</g>
|
|
5
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16.775" height="16.775" viewBox="0 0 16.775 16.775">
|
|
2
|
-
<path id="Path_71218" data-name="Path 71218" d="M-210.968,270.4h.295a1.476,1.476,0,0,1,.616.427q2.774,2.781,5.551,5.559c.109.109.16.128.281.006q2.782-2.8,5.575-5.581a.84.84,0,0,1,1.283-.01c.3.294.594.595.9.884a1.409,1.409,0,0,1,.438.647v.327a2.569,2.569,0,0,1-.661.811q-2.616,2.617-5.236,5.231c-.106.106-.121.154-.006.269q2.719,2.7,5.428,5.409a1.653,1.653,0,0,1,.474.662v.328a1.592,1.592,0,0,1-.45.626c-.286.278-.565.563-.846.844a.849.849,0,0,1-1.352,0q-2.78-2.779-5.557-5.56c-.1-.1-.146-.107-.249,0q-2.785,2.8-5.579,5.584a.84.84,0,0,1-1.306.005q-.5-.5-1-1a.85.85,0,0,1,0-1.342q2.773-2.786,5.548-5.569c.1-.1.116-.151.005-.261q-2.849-2.837-5.688-5.683a.834.834,0,0,1,0-1.282c.3-.3.606-.6.9-.9A1.4,1.4,0,0,1-210.968,270.4Z" transform="translate(212.806 -270.399)" fill="#9e9cab"/>
|
|
3
|
-
</svg>
|
package/public/icons/delete.svg
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="27" viewBox="0 0 21 27">
|
|
2
|
-
<path id="Path_71216" data-name="Path 71216" d="M11.5,30a3,3,0,0,0,3,3h12a3,3,0,0,0,3-3V12h-18ZM31,7.5H25.75L24.25,6h-7.5l-1.5,1.5H10v3H31Z" transform="translate(-10 -6)" fill="#f53872"/>
|
|
3
|
-
</svg>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
-
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
-
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width="32px" height="32px" viewBox="0 0 113.000000 63.000000"
|
|
6
|
-
preserveAspectRatio="xMidYMid meet">
|
|
7
|
-
|
|
8
|
-
<g transform="translate(0.000000,63.000000) scale(0.100000,-0.100000)"
|
|
9
|
-
fill="#000000" stroke="none">
|
|
10
|
-
<path d="M461 524 c-124 -62 -168 -213 -95 -331 37 -60 106 -104 174 -111 49
|
|
11
|
-
-4 50 -4 50 22 0 21 -5 26 -25 26 -34 0 -94 26 -124 53 -30 28 -60 93 -61 130
|
|
12
|
-
0 36 25 95 53 126 27 30 93 60 130 61 22 0 27 4 27 25 0 22 -4 25 -38 25 -21
|
|
13
|
-
0 -62 -12 -91 -26z"/>
|
|
14
|
-
<path d="M643 505 c-7 -19 13 -36 37 -32 8 1 15 11 15 22 0 26 -42 34 -52 10z"/>
|
|
15
|
-
<path d="M724 436 c-9 -24 4 -48 23 -44 12 2 18 12 18 28 0 29 -32 41 -41 16z"/>
|
|
16
|
-
<path d="M597 374 c-43 -34 -57 -52 -55 -68 2 -13 11 -22 24 -24 17 -2 33 12
|
|
17
|
-
68 57 73 94 57 110 -37 35z"/>
|
|
18
|
-
<path d="M763 343 c-17 -6 -16 -50 1 -56 15 -6 36 11 36 29 0 16 -22 32 -37
|
|
19
|
-
27z"/>
|
|
20
|
-
<path d="M724 226 c-9 -24 4 -48 23 -44 12 2 18 12 18 28 0 29 -32 41 -41 16z"/>
|
|
21
|
-
<path d="M651 151 c-21 -14 -5 -43 21 -39 15 2 23 10 23 23 0 22 -22 30 -44
|
|
22
|
-
16z"/>
|
|
23
|
-
</g>
|
|
24
|
-
</svg>
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M6 22q-.825 0-1.413-.588T4 20V4q0-.825.588-1.413T6 2h8l6 6v12q0 .825-.588 1.413T18 22H6Zm1-3h10q-.1-1.225-.75-2.25t-1.7-1.625l.95-1.7q.05-.1.025-.225t-.15-.175q-.1-.05-.213-.025t-.162.125l-.975 1.75q-.5-.2-1-.313T12 14.45q-.525 0-1.025.113t-1 .312L9 13.125Q8.95 13 8.838 13t-.238.05l-.1.375l.95 1.7q-1.05.6-1.7 1.625T7 19Zm2.75-1.5q-.2 0-.35-.15T9.25 17q0-.2.15-.35t.35-.15q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15Zm4.5 0q-.2 0-.35-.15t-.15-.35q0-.2.15-.35t.35-.15q.2 0 .35.15t.15.35q0 .2-.15.35t-.35.15ZM13 9h5l-5-5v5Z"/></svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="18.203" viewBox="0 0 14 18.203">
|
|
2
|
-
<g id="Group_135696" data-name="Group 135696" transform="translate(5272 4991.203)">
|
|
3
|
-
<path id="Path_71219" data-name="Path 71219" d="M-476.717,1438.966a.6.6,0,0,1,.455.642c-.008,1.812,0,3.624-.007,5.435,0,.141.021.192.2.19.84-.011,1.68,0,2.52-.007a.617.617,0,0,1,.618.307.51.51,0,0,1-.142.614q-2.752,3.017-5.5,6.035a.613.613,0,0,1-1.018.006q-2.79-3.021-5.581-6.042a.508.508,0,0,1-.141-.614.6.6,0,0,1,.6-.306c.84,0,1.68-.005,2.52.006.19,0,.217-.049.216-.207-.007-1.806,0-3.612-.008-5.418a.6.6,0,0,1,.455-.642Z" transform="translate(-4785.629 -6430.168)" fill="#9e9cab"/>
|
|
4
|
-
<rect id="Rectangle_1777" data-name="Rectangle 1777" width="14" height="3" transform="translate(-5272 -4976)" fill="#9e9cab"/>
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16.344" height="16.322" viewBox="0 0 16.344 16.322">
|
|
2
|
-
<g id="Group_135681" data-name="Group 135681" transform="translate(748.303 -128.882)">
|
|
3
|
-
<path id="Path_71148" data-name="Path 71148" d="M-748.3,224.815a9.894,9.894,0,0,0,.285-1.069c.24-.946.473-1.894.708-2.841a.511.511,0,0,1,.139-.246q4.435-4.433,8.867-8.871c.083-.083.119-.069.194.006q1.649,1.657,3.307,3.305c.089.088.075.127,0,.206q-4.421,4.414-8.837,8.833a.615.615,0,0,1-.3.168q-1.947.479-3.893.964c-.008,0-.012.015-.018.023h-.16a.426.426,0,0,1-.287-.287Z" transform="translate(0 -80.09)" fill="#1d1c21"/>
|
|
4
|
-
<path id="Path_71149" data-name="Path 71149" d="M-411.962,128.882a1.75,1.75,0,0,1,1.264.515c.325.322.651.642.969.971a1.761,1.761,0,0,1-.009,2.54c-.369.376-.746.743-1.114,1.119-.067.068-.1.074-.172,0q-1.665-1.673-3.339-3.338c-.076-.075-.058-.109.006-.172.375-.369.746-.743,1.118-1.115A1.751,1.751,0,0,1-411.962,128.882Z" transform="translate(-322.767)" fill="#1d1c21"/>
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
package/public/icons/emoji.svg
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="25.5" height="25.5" viewBox="0 0 25.5 25.5">
|
|
2
|
-
<g id="Group_135681" data-name="Group 135681" transform="translate(364.639 -257.775)">
|
|
3
|
-
<path id="Path_71179" data-name="Path 71179" d="M-351.882,257.775a12.748,12.748,0,0,0-12.757,12.742A12.751,12.751,0,0,0-351.9,283.275a12.75,12.75,0,0,0,12.758-12.743A12.746,12.746,0,0,0-351.882,257.775Zm-.006,23.719a10.967,10.967,0,0,1-10.971-10.968,10.966,10.966,0,0,1,10.968-10.971,10.964,10.964,0,0,1,10.971,10.967A10.966,10.966,0,0,1-351.887,281.494Z" transform="translate(0 0)" fill="#f53872"/>
|
|
4
|
-
<path id="Path_71180" data-name="Path 71180" d="M-324.931,321.241c-2.093.024-4.187.009-6.28.009h-.695q-2.862,0-5.725,0a.9.9,0,0,0-1,1.016,6.789,6.789,0,0,0,.08,1.023,7.419,7.419,0,0,0,8.395,6.188,7.435,7.435,0,0,0,6.35-7.1A1,1,0,0,0-324.931,321.241Zm-.775,2.059a5.665,5.665,0,0,1-5.514,4.485,5.664,5.664,0,0,1-5.528-4.5c-.045-.22-.008-.259.209-.258,1.779.008,3.557,0,5.336,0,1.76,0,3.52,0,5.28-.005C-325.687,323.023-325.66,323.077-325.705,323.3Z" transform="translate(-20.665 -50.433)" fill="#f53872"/>
|
|
5
|
-
<path id="Path_71181" data-name="Path 71181" d="M-337.243,297.5a2.068,2.068,0,0,1,2.506.005.889.889,0,0,0,1.252-.209.9.9,0,0,0-.237-1.249,3.827,3.827,0,0,0-2.26-.746,3.873,3.873,0,0,0-2.272.737.894.894,0,0,0-.26,1.244A.9.9,0,0,0-337.243,297.5Z" transform="translate(-20.639 -29.819)" fill="#f53872"/>
|
|
6
|
-
<path id="Path_71182" data-name="Path 71182" d="M-290.989,297.489a2.161,2.161,0,0,1,.861-.361,2.068,2.068,0,0,1,1.6.381.854.854,0,0,0,.966.064.832.832,0,0,0,.453-.771.9.9,0,0,0-.421-.769,3.858,3.858,0,0,0-4.467-.008.9.9,0,0,0-.287,1.278A.9.9,0,0,0-290.989,297.489Z" transform="translate(-57.37 -29.833)" fill="#f53872"/>
|
|
7
|
-
</g>
|
|
8
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="20.532" height="20.532" viewBox="0 0 20.532 20.532">
|
|
2
|
-
<path id="Path_71221" data-name="Path 71221" d="M1655.252,1220.784a10.266,10.266,0,1,0,10.266,10.266A10.266,10.266,0,0,0,1655.252,1220.784Zm3.213,6.606a1.7,1.7,0,1,1-1.7,1.7A1.7,1.7,0,0,1,1658.464,1227.39Zm-5.795,0a1.7,1.7,0,1,1-1.7,1.7A1.7,1.7,0,0,1,1652.669,1227.39Zm2.586,9.471a5.38,5.38,0,0,1-5.361-4h10.828A5.652,5.652,0,0,1,1655.256,1236.861Z" transform="translate(-1644.985 -1220.784)" fill="#9e9cab"/>
|
|
3
|
-
</svg>
|
package/public/icons/filter.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"/></svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="20.461" height="14.97" viewBox="0 0 20.461 14.97">
|
|
2
|
-
<path id="Path_71220" data-name="Path 71220" d="M1668.656,1232.676c.271-2.469,1.986-9.328,12.591-11.615l.016-2.579a.357.357,0,0,1,.6-.263l7,6.324a.787.787,0,0,1,.007,1.161l-7,6.46a.357.357,0,0,1-.6-.261l-.017-2.825s-4.652-2.381-11.967,3.925A.378.378,0,0,1,1668.656,1232.676Z" transform="translate(-1668.653 -1218.126)" fill="#9e9cab"/>
|
|
3
|
-
</svg>
|
package/public/icons/gallery.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="currentColor"><path d="M18 8a2 2 0 1 1-4 0a2 2 0 0 1 4 0Z"/><path fill-rule="evenodd" d="M11.943 1.25h.114c2.309 0 4.118 0 5.53.19c1.444.194 2.584.6 3.479 1.494c.895.895 1.3 2.035 1.494 3.48c.19 1.411.19 3.22.19 5.529v.088c0 1.909 0 3.471-.104 4.743c-.104 1.28-.317 2.347-.795 3.235c-.21.391-.47.742-.785 1.057c-.895.895-2.035 1.3-3.48 1.494c-1.411.19-3.22.19-5.529.19h-.114c-2.309 0-4.118 0-5.53-.19c-1.444-.194-2.584-.6-3.479-1.494c-.793-.793-1.203-1.78-1.42-3.006c-.215-1.203-.254-2.7-.262-4.558c-.002-.473-.002-.973-.002-1.501v-.058c0-2.309 0-4.118.19-5.53c.194-1.444.6-2.584 1.494-3.479c.895-.895 2.035-1.3 3.48-1.494c1.411-.19 3.22-.19 5.529-.19Zm-5.33 1.676c-1.278.172-2.049.5-2.618 1.069c-.57.57-.897 1.34-1.069 2.619c-.174 1.3-.176 3.008-.176 5.386v.844l1.001-.877a2.3 2.3 0 0 1 3.141.105l4.29 4.29a2 2 0 0 0 2.564.222l.298-.21a3 3 0 0 1 3.732.225l2.83 2.547c.286-.598.455-1.384.545-2.493c.098-1.205.099-2.707.099-4.653c0-2.378-.002-4.086-.176-5.386c-.172-1.279-.5-2.05-1.069-2.62c-.57-.569-1.34-.896-2.619-1.068c-1.3-.174-3.008-.176-5.386-.176s-4.086.002-5.386.176Z" clip-rule="evenodd"/></g></svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="19.778" height="19.304" viewBox="0 0 19.778 19.304">
|
|
2
|
-
<path id="Path_71223" data-name="Path 71223" d="M1525,1237.264a.891.891,0,0,1-.2-.025.815.815,0,0,1-.62-.787v-17.18a.819.819,0,0,1,.824-.812h17.63a.818.818,0,0,1,.824.813v14a.818.818,0,0,1-.824.812h-15.379l-1.529,2.754A.828.828,0,0,1,1525,1237.264Zm.824-17.18v13.193l.217-.392a.825.825,0,0,1,.723-.422h15.042v-12.379Z" transform="translate(-1523.931 -1218.21)" fill="#9e9cab" stroke="#9e9cab" stroke-width="0.5"/>
|
|
3
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="#2e7d32" d="M17 11H9.41l3.3-3.29a1 1 0 1 0-1.42-1.42l-5 5a1 1 0 0 0-.21.33a1 1 0 0 0 0 .76a1 1 0 0 0 .21.33l5 5a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.42L9.41 13H17a1 1 0 0 0 0-2Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M10.94 6.08A6.93 6.93 0 0 1 12 6c3.18 0 6.17 2.29 7.91 6a15.23 15.23 0 0 1-.9 1.64a1 1 0 0 0-.16.55a1 1 0 0 0 1.86.5a15.77 15.77 0 0 0 1.21-2.3a1 1 0 0 0 0-.79C19.9 6.91 16.1 4 12 4a7.77 7.77 0 0 0-1.4.12a1 1 0 1 0 .34 2ZM3.71 2.29a1 1 0 0 0-1.42 1.42l3.1 3.09a14.62 14.62 0 0 0-3.31 4.8a1 1 0 0 0 0 .8C4.1 17.09 7.9 20 12 20a9.26 9.26 0 0 0 5.05-1.54l3.24 3.25a1 1 0 0 0 1.42 0a1 1 0 0 0 0-1.42Zm6.36 9.19l2.45 2.45A1.81 1.81 0 0 1 12 14a2 2 0 0 1-2-2a1.81 1.81 0 0 1 .07-.52ZM12 18c-3.18 0-6.17-2.29-7.9-6a12.09 12.09 0 0 1 2.7-3.79L8.57 10A4 4 0 0 0 14 15.43L15.59 17A7.24 7.24 0 0 1 12 18Z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M21.92 11.6C19.9 6.91 16.1 4 12 4s-7.9 2.91-9.92 7.6a1 1 0 0 0 0 .8C4.1 17.09 7.9 20 12 20s7.9-2.91 9.92-7.6a1 1 0 0 0 0-.8ZM12 18c-3.17 0-6.17-2.29-7.9-6C5.83 8.29 8.83 6 12 6s6.17 2.29 7.9 6c-1.73 3.71-4.73 6-7.9 6Zm0-10a4 4 0 1 0 4 4a4 4 0 0 0-4-4Zm0 6a2 2 0 1 1 2-2a2 2 0 0 1-2 2Z"/></svg>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="47" height="47" viewBox="0 0 47 47">
|
|
2
|
-
<g id="Group_135732" data-name="Group 135732" transform="translate(7019 4637)">
|
|
3
|
-
<circle id="Ellipse_18" data-name="Ellipse 18" cx="23.5" cy="23.5" r="23.5" transform="translate(-7019 -4637)" fill="#9e9cab"/>
|
|
4
|
-
<path id="Path_71227" data-name="Path 71227" d="M1.223,16.261a2.7,2.7,0,0,1-.885-.718.9.9,0,0,1,0-1.4q2.946-2.947,5.9-5.89c.1-.1.091-.146,0-.241Q3.277,5.067.334,2.118A.862.862,0,0,1,.138.986,3.047,3.047,0,0,1,.984.138.833.833,0,0,1,2,.217c.045.037.088.076.129.117L9.223,7.427a.909.909,0,0,1,.211,1.149,1.212,1.212,0,0,1-.21.256Q5.676,12.38,2.131,15.928a1.313,1.313,0,0,1-.558.333Z" transform="matrix(-1, -0.017, 0.017, -1, -6992.447, -4605.574)" fill="#fff"/>
|
|
5
|
-
</g>
|
|
6
|
-
</svg>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="37.02" height="37.022" viewBox="0 0 37.02 37.022">
|
|
2
|
-
<g id="Group_135680" data-name="Group 135680" transform="translate(516.357 -229.719)">
|
|
3
|
-
<path id="Path_71203" data-name="Path 71203" d="M-516.358,410.714a1.333,1.333,0,0,1,1.444-.8c.622.039,1.249.005,1.874.009a1.092,1.092,0,0,1,1.165,1.066,1.091,1.091,0,0,1-1.165,1.1c-.625,0-1.251-.029-1.874.009a1.336,1.336,0,0,1-1.444-.8Z" transform="translate(0 -162.774)" fill="#1d1c21"/>
|
|
4
|
-
<path id="Path_71204" data-name="Path 71204" d="M-335.359,570.914a1.335,1.335,0,0,1-.8-1.448c.038-.624,0-1.253.009-1.879a1.091,1.091,0,0,1,1.079-1.156,1.089,1.089,0,0,1,1.088,1.147c.006.663-.021,1.326.007,1.988a1.222,1.222,0,0,1-.874,1.348Z" transform="translate(-162.777 -304.173)" fill="#1d1c21"/>
|
|
5
|
-
<path id="Path_71205" data-name="Path 71205" d="M-432.279,302.3a11.516,11.516,0,0,1,11.5,11.516,11.517,11.517,0,0,1-11.5,11.478,11.519,11.519,0,0,1-11.5-11.517A11.516,11.516,0,0,1-432.279,302.3Zm1.083,20.765.493-.079a9.363,9.363,0,0,0,7.659-10.521,9.356,9.356,0,0,0-7.8-7.889c-.34-.06-.361.04-.361.326q.011,8.893.006,17.786Z" transform="translate(-65.567 -65.565)" fill="#1d1c21"/>
|
|
6
|
-
<path id="Path_71206" data-name="Path 71206" d="M-459.252,285.76a1.079,1.079,0,0,1-.636.954.982.982,0,0,1-1.143-.155c-.607-.566-1.2-1.153-1.762-1.76a1.054,1.054,0,0,1,.053-1.469,1.054,1.054,0,0,1,1.47-.045c.6.557,1.166,1.147,1.739,1.732A1.069,1.069,0,0,1-459.252,285.76Z" transform="translate(-48.142 -48.14)" fill="#1d1c21"/>
|
|
7
|
-
<path id="Path_71207" data-name="Path 71207" d="M-223.339,283.015a1.079,1.079,0,0,1,.955.59.985.985,0,0,1-.125,1.178c-.572.617-1.166,1.217-1.785,1.787a1.044,1.044,0,0,1-1.466-.081,1.044,1.044,0,0,1-.04-1.442c.564-.608,1.165-1.183,1.757-1.765A1.079,1.079,0,0,1-223.339,283.015Z" transform="translate(-262.234 -48.146)" fill="#1d1c21"/>
|
|
8
|
-
<path id="Path_71208" data-name="Path 71208" d="M-460.319,520.05a1.077,1.077,0,0,1,.955.622.974.974,0,0,1-.138,1.144c-.572.617-1.167,1.216-1.785,1.787a1.05,1.05,0,0,1-1.467-.078,1.054,1.054,0,0,1-.04-1.443c.565-.607,1.164-1.184,1.758-1.764A1.049,1.049,0,0,1-460.319,520.05Z" transform="translate(-48.146 -262.274)" fill="#1d1c21"/>
|
|
9
|
-
<path id="Path_71209" data-name="Path 71209" d="M-224.88,520.091a1.083,1.083,0,0,1,.7.312c.548.541,1.1,1.079,1.633,1.634a1.077,1.077,0,0,1,0,1.552,1.076,1.076,0,0,1-1.527-.021q-.832-.8-1.633-1.634a1.038,1.038,0,0,1-.219-1.2A1.1,1.1,0,0,1-224.88,520.091Z" transform="translate(-262.27 -262.311)" fill="#1d1c21"/>
|
|
10
|
-
<path id="Path_71210" data-name="Path 71210" d="M-336.061,231.932c0-.373-.007-.746,0-1.119a1.088,1.088,0,0,1,1.065-1.094,1.083,1.083,0,0,1,1.1,1.1c.01.77.012,1.54,0,2.31a1.08,1.08,0,0,1-1.082,1.077,1.086,1.086,0,0,1-1.082-1.078C-336.069,232.726-336.061,232.329-336.061,231.932Z" transform="translate(-162.87 0)" fill="#1d1c21"/>
|
|
11
|
-
<path id="Path_71211" data-name="Path 71211" d="M-177.408,410.012c.385,0,.77-.007,1.155,0a1.087,1.087,0,0,1,1.094,1.066,1.082,1.082,0,0,1-1.1,1.1c-.77.01-1.54.012-2.31,0a1.08,1.08,0,0,1-1.076-1.083,1.086,1.086,0,0,1,1.078-1.082C-178.179,410-177.793,410.012-177.408,410.012Z" transform="translate(-304.177 -162.867)" fill="#1d1c21"/>
|
|
12
|
-
<path id="Path_71212" data-name="Path 71212" d="M-313.636,344.184v-.376q0-8.893-.006-17.786c0-.286.021-.387.361-.326a9.357,9.357,0,0,1,7.8,7.889,9.363,9.363,0,0,1-7.659,10.521Z" transform="translate(-183.126 -86.686)" fill="#fff"/>
|
|
13
|
-
</g>
|
|
14
|
-
</svg>
|
package/public/icons/lock.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" d="M6 22q-.825 0-1.413-.588T4 20V10q0-.825.588-1.413T6 8h1V6q0-2.075 1.463-3.538T12 1q2.075 0 3.538 1.463T17 6v2h1q.825 0 1.413.588T20 10v10q0 .825-.588 1.413T18 22H6Zm6-5q.825 0 1.413-.588T14 15q0-.825-.588-1.413T12 13q-.825 0-1.413.588T10 15q0 .825.588 1.413T12 17ZM9 8h6V6q0-1.25-.875-2.125T12 3q-1.25 0-2.125.875T9 6v2Z"/></svg>
|
|
Binary file
|
package/public/icons/menu .svg
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg id="Group_135683" data-name="Group 135683" xmlns="http://www.w3.org/2000/svg" width="5.5" height="21.983" viewBox="0 0 5.5 21.983">
|
|
2
|
-
<path id="Path_38" data-name="Path 38" d="M-239.6,420.384a2.736,2.736,0,0,0-.515-.169,2.768,2.768,0,0,1-1.793-2.831,2.752,2.752,0,0,1,2.343-2.461,2.75,2.75,0,0,1,3.1,2.205,2.767,2.767,0,0,1-2.145,3.2c-.07.015-.16-.034-.212.053Z" transform="translate(241.924 -398.401)" fill="#1d1c21"/>
|
|
3
|
-
<path id="Path_39" data-name="Path 39" d="M-239.109,176.2a2.761,2.761,0,0,1-2.742-2.747,2.761,2.761,0,0,1,2.764-2.748,2.761,2.761,0,0,1,2.731,2.758A2.761,2.761,0,0,1-239.109,176.2Z" transform="translate(241.856 -170.701)" fill="#1d1c21"/>
|
|
4
|
-
<path id="Path_40" data-name="Path 40" d="M-241.852,295.487a2.761,2.761,0,0,1,2.757-2.732,2.76,2.76,0,0,1,2.738,2.773,2.761,2.761,0,0,1-2.768,2.722A2.761,2.761,0,0,1-241.852,295.487Z" transform="translate(241.857 -284.511)" fill="#1d1c21"/>
|
|
5
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg id="Group_135695" data-name="Group 135695" xmlns="http://www.w3.org/2000/svg" width="4.145" height="16.567" viewBox="0 0 4.145 16.567">
|
|
2
|
-
<path id="Path_38" data-name="Path 38" d="M-240.173,419.032a2.065,2.065,0,0,0-.388-.128,2.086,2.086,0,0,1-1.352-2.133,2.074,2.074,0,0,1,1.766-1.854,2.072,2.072,0,0,1,2.333,1.662,2.085,2.085,0,0,1-1.616,2.414c-.053.011-.12-.025-.16.04Z" transform="translate(241.924 -402.465)" fill="#9e9cab"/>
|
|
3
|
-
<path id="Path_39" data-name="Path 39" d="M-239.784,174.843a2.081,2.081,0,0,1-2.067-2.071,2.081,2.081,0,0,1,2.083-2.071,2.081,2.081,0,0,1,2.059,2.079A2.081,2.081,0,0,1-239.784,174.843Z" transform="translate(241.855 -170.701)" fill="#9e9cab"/>
|
|
4
|
-
<path id="Path_40" data-name="Path 40" d="M-241.852,294.814a2.081,2.081,0,0,1,2.078-2.059,2.08,2.08,0,0,1,2.063,2.09A2.081,2.081,0,0,1-239.8,296.9,2.081,2.081,0,0,1-241.852,294.814Z" transform="translate(241.855 -286.542)" fill="#9e9cab"/>
|
|
5
|
-
</svg>
|
package/public/icons/message.svg
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg id="Group_135680" data-name="Group 135680" xmlns="http://www.w3.org/2000/svg" width="26.426" height="25.412" viewBox="0 0 26.426 25.412">
|
|
2
|
-
<path id="Path_37" data-name="Path 37" d="M-641.29,133.128V111.849c.093-.034.066-.124.083-.19a4.073,4.073,0,0,1,4.178-3.238q8.989,0,17.977,0a4.062,4.062,0,0,1,4.188,4.193q0,5.971,0,11.942a4.372,4.372,0,0,1-.1,1.008,4.061,4.061,0,0,1-4.12,3.182q-7.194,0-14.388,0a.818.818,0,0,0-.573.2q-2.688,2.255-5.39,4.494c-.729.606-1.278.517-1.8-.279C-641.247,133.142-641.272,133.137-641.29,133.128Zm13.215-16.577c2.021,0,4.042,0,6.063,0a1.011,1.011,0,0,0,1.048-1.006A1.023,1.023,0,0,0-622,114.52c-.074,0-.148,0-.222,0h-11.713a2.892,2.892,0,0,0-.349.01,1.022,1.022,0,0,0-.9.954,1.014,1.014,0,0,0,.8,1.042,2.127,2.127,0,0,0,.442.027Q-631.012,116.553-628.075,116.551Zm-2.034,4.066h3.872c.736,0,1.2-.391,1.208-1.007s-.469-1.024-1.224-1.025h-2.38q-2.714,0-5.427,0a1.037,1.037,0,0,0-1.032.6,1.007,1.007,0,0,0,.953,1.433C-632.8,120.624-631.453,120.616-630.11,120.617Z" transform="translate(641.29 -108.42)" fill="#1d1c21"/>
|
|
3
|
-
</svg>
|