wca-designsystem 0.0.89 → 0.0.92
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/LICENSE +20 -20
- package/README.md +73 -73
- package/package.json +111 -111
- package/src/assets/imagens/icons/FlexaPassos.svg +3 -3
- package/src/assets/imagens/novos-icones/STI_logo_Cor.svg +9 -9
- package/src/components/atomos/Icone/index.tsx +56 -56
- package/src/components/molecules/Graficos/Area/Area.stories.tsx +94 -94
- package/src/components/molecules/Graficos/Area/Area.test.tsx +102 -102
- package/src/components/molecules/Graficos/Area/index.tsx +76 -76
- package/src/components/molecules/Graficos/Area/styles.ts +53 -53
- package/src/components/molecules/Graficos/Barras/Barras.stories.tsx +104 -104
- package/src/components/molecules/Graficos/Barras/Barras.test.tsx +99 -99
- package/src/components/molecules/Graficos/Barras/index.tsx +28 -28
- package/src/components/molecules/Graficos/Donut/Donut.stories.tsx +42 -42
- package/src/components/molecules/Graficos/Donut/Donut.test.tsx +57 -57
- package/src/components/molecules/Graficos/Donut/index.tsx +27 -27
- package/src/components/molecules/Graficos/Donut/styles.ts +34 -34
- package/src/components/molecules/Graficos/Linhas/Linhas.stories.tsx +63 -63
- package/src/components/molecules/Graficos/Linhas/Linhas.test.tsx +99 -99
- package/src/components/molecules/Graficos/Linhas/index.tsx +29 -29
- package/src/components/organismos/Calendario/index.tsx +16 -15
- package/src/test/render.tsx +84 -84
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024 André Luiz Santos
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 André Luiz Santos
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
# Documentação do Design System
|
|
2
|
-
|
|
3
|
-
## Visão Geral
|
|
4
|
-
Este projeto é um Design System baseado em React e TypeScript, utilizando TSDX para compilação, Storybook para documentação e Jest para testes automatizados.
|
|
5
|
-
|
|
6
|
-
## Requisitos
|
|
7
|
-
Antes de iniciar, certifique-se de ter instalado:
|
|
8
|
-
- [Node.js](https://nodejs.org/) (versão recomendada: 18 ou superior)
|
|
9
|
-
- [npm](https://www.npmjs.com/) ou [yarn](https://yarnpkg.com/)
|
|
10
|
-
|
|
11
|
-
## Instalação
|
|
12
|
-
Clone o repositório e instale as dependências:
|
|
13
|
-
```sh
|
|
14
|
-
# Clonar o repositório
|
|
15
|
-
git clone http://wcavmdevops:82/WCA/_git/WCA.DesignSystem
|
|
16
|
-
cd wca-designsystem
|
|
17
|
-
|
|
18
|
-
# Instalar dependências
|
|
19
|
-
npm install
|
|
20
|
-
# ou
|
|
21
|
-
yarn install
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Storybook, para poder ver os componentes
|
|
25
|
-
Para visualizar a documentação interativa dos componentes:
|
|
26
|
-
```sh
|
|
27
|
-
npm run storybook
|
|
28
|
-
# ou
|
|
29
|
-
yarn storybook
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
O Storybook estará disponível em `http://localhost:6006/`.
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
## Executando os Testes
|
|
36
|
-
Para rodar os testes unitários com Jest:
|
|
37
|
-
```sh
|
|
38
|
-
npm run test
|
|
39
|
-
# ou
|
|
40
|
-
yarn test
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## Linter e Formatação
|
|
44
|
-
Verifique o código com ESLint:
|
|
45
|
-
```sh
|
|
46
|
-
npm run lint
|
|
47
|
-
# ou
|
|
48
|
-
yarn lint
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
## Publicação
|
|
53
|
-
Para publicar uma nova versão do Design System no NPM:
|
|
54
|
-
```sh
|
|
55
|
-
npm run deploy
|
|
56
|
-
# ou
|
|
57
|
-
yarn deploy
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
---
|
|
61
|
-
Isso irá gerar uma nova versão irá atualizar a versão e subir para o NPM vinculado ao projeto.
|
|
62
|
-
```sh
|
|
63
|
-
https://www.npmjs.com/package/wca-designsystem
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
Para conseguir subir o projeto, o usuário tem que estar logado no NPM, e precisa fazer parte da organização acima.
|
|
67
|
-
|
|
68
|
-
```sh
|
|
69
|
-
npm login
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
1
|
+
# Documentação do Design System
|
|
2
|
+
|
|
3
|
+
## Visão Geral
|
|
4
|
+
Este projeto é um Design System baseado em React e TypeScript, utilizando TSDX para compilação, Storybook para documentação e Jest para testes automatizados.
|
|
5
|
+
|
|
6
|
+
## Requisitos
|
|
7
|
+
Antes de iniciar, certifique-se de ter instalado:
|
|
8
|
+
- [Node.js](https://nodejs.org/) (versão recomendada: 18 ou superior)
|
|
9
|
+
- [npm](https://www.npmjs.com/) ou [yarn](https://yarnpkg.com/)
|
|
10
|
+
|
|
11
|
+
## Instalação
|
|
12
|
+
Clone o repositório e instale as dependências:
|
|
13
|
+
```sh
|
|
14
|
+
# Clonar o repositório
|
|
15
|
+
git clone http://wcavmdevops:82/WCA/_git/WCA.DesignSystem
|
|
16
|
+
cd wca-designsystem
|
|
17
|
+
|
|
18
|
+
# Instalar dependências
|
|
19
|
+
npm install
|
|
20
|
+
# ou
|
|
21
|
+
yarn install
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Storybook, para poder ver os componentes
|
|
25
|
+
Para visualizar a documentação interativa dos componentes:
|
|
26
|
+
```sh
|
|
27
|
+
npm run storybook
|
|
28
|
+
# ou
|
|
29
|
+
yarn storybook
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
O Storybook estará disponível em `http://localhost:6006/`.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Executando os Testes
|
|
36
|
+
Para rodar os testes unitários com Jest:
|
|
37
|
+
```sh
|
|
38
|
+
npm run test
|
|
39
|
+
# ou
|
|
40
|
+
yarn test
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Linter e Formatação
|
|
44
|
+
Verifique o código com ESLint:
|
|
45
|
+
```sh
|
|
46
|
+
npm run lint
|
|
47
|
+
# ou
|
|
48
|
+
yarn lint
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
## Publicação
|
|
53
|
+
Para publicar uma nova versão do Design System no NPM:
|
|
54
|
+
```sh
|
|
55
|
+
npm run deploy
|
|
56
|
+
# ou
|
|
57
|
+
yarn deploy
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
Isso irá gerar uma nova versão irá atualizar a versão e subir para o NPM vinculado ao projeto.
|
|
62
|
+
```sh
|
|
63
|
+
https://www.npmjs.com/package/wca-designsystem
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Para conseguir subir o projeto, o usuário tem que estar logado no NPM, e precisa fazer parte da organização acima.
|
|
67
|
+
|
|
68
|
+
```sh
|
|
69
|
+
npm login
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
package/package.json
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.0.
|
|
3
|
-
"license": "MIT",
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"typings": "dist/index.d.ts",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist",
|
|
8
|
-
"src"
|
|
9
|
-
],
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=10"
|
|
12
|
-
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"start": "tsdx watch",
|
|
15
|
-
"build": "tsdx build",
|
|
16
|
-
"test": "jest --watchAll=false",
|
|
17
|
-
"lint": "tsdx lint",
|
|
18
|
-
"prepare": "tsdx build",
|
|
19
|
-
"size": "size-limit",
|
|
20
|
-
"analyze": "size-limit --why",
|
|
21
|
-
"storybook": "storybook dev -p 6006",
|
|
22
|
-
"build-storybook": "storybook build",
|
|
23
|
-
"deploy": "npm version patch && npm publish"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"react": ">=16"
|
|
27
|
-
},
|
|
28
|
-
"husky": {
|
|
29
|
-
"hooks": {
|
|
30
|
-
"pre-commit": "tsdx lint"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"prettier": {
|
|
34
|
-
"printWidth": 80,
|
|
35
|
-
"semi": true,
|
|
36
|
-
"singleQuote": true,
|
|
37
|
-
"trailingComma": "es5"
|
|
38
|
-
},
|
|
39
|
-
"name": "wca-designsystem",
|
|
40
|
-
"author": "wca.dev",
|
|
41
|
-
"module": "dist/components.esm.js",
|
|
42
|
-
"size-limit": [
|
|
43
|
-
{
|
|
44
|
-
"path": "dist/components.cjs.production.min.js",
|
|
45
|
-
"limit": "10 KB"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"path": "dist/components.esm.js",
|
|
49
|
-
"limit": "10 KB"
|
|
50
|
-
}
|
|
51
|
-
],
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@babel/core": "^7.13.10",
|
|
54
|
-
"@babel/preset-env": "^7.13.12",
|
|
55
|
-
"@babel/preset-react": "^7.13.13",
|
|
56
|
-
"@babel/preset-typescript": "^7.13.0",
|
|
57
|
-
"@chromatic-com/storybook": "^1.5.0",
|
|
58
|
-
"@size-limit/preset-small-lib": "^11.1.4",
|
|
59
|
-
"@storybook/addon-essentials": "^8.1.6",
|
|
60
|
-
"@storybook/addon-interactions": "^8.1.6",
|
|
61
|
-
"@storybook/addon-links": "^8.1.6",
|
|
62
|
-
"@storybook/addon-onboarding": "^8.1.6",
|
|
63
|
-
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
|
|
64
|
-
"@storybook/blocks": "^8.1.6",
|
|
65
|
-
"@storybook/react": "^8.1.6",
|
|
66
|
-
"@storybook/react-webpack5": "^8.1.6",
|
|
67
|
-
"@storybook/test": "^8.1.6",
|
|
68
|
-
"@testing-library/dom": "^10.1.0",
|
|
69
|
-
"@testing-library/react": "^11.2.6",
|
|
70
|
-
"@types/jest": "^29.5.12",
|
|
71
|
-
"@types/react": "^18.3.3",
|
|
72
|
-
"@types/react-dom": "^18.3.0",
|
|
73
|
-
"babel-jest": "^29.0.0",
|
|
74
|
-
"babel-loader": "^9.1.3",
|
|
75
|
-
"husky": "^9.0.11",
|
|
76
|
-
"identity-obj-proxy": "^3.0.0",
|
|
77
|
-
"jest": "^29.7.0",
|
|
78
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
79
|
-
"postcss-preset-mantine": "1.13.0",
|
|
80
|
-
"react": "^18.3.1",
|
|
81
|
-
"react-dom": "^18.3.1",
|
|
82
|
-
"react-is": "^18.3.1",
|
|
83
|
-
"size-limit": "^11.1.4",
|
|
84
|
-
"storybook": "^8.1.6",
|
|
85
|
-
"ts-jest": "^29.1.4",
|
|
86
|
-
"tsdx": "^0.14.1",
|
|
87
|
-
"tslib": "^2.6.3",
|
|
88
|
-
"typescript": "^5.4.5"
|
|
89
|
-
},
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"@fullcalendar/core": "^6.1.15",
|
|
92
|
-
"@fullcalendar/daygrid": "^6.1.15",
|
|
93
|
-
"@fullcalendar/interaction": "^6.1.15",
|
|
94
|
-
"@fullcalendar/react": "^6.1.15",
|
|
95
|
-
"@fullcalendar/timegrid": "^6.1.15",
|
|
96
|
-
"@mantine/charts": "^7.14.3",
|
|
97
|
-
"@mantine/core": "^7.14.3",
|
|
98
|
-
"@mantine/dates": "^7.14.3",
|
|
99
|
-
"@mantine/form": "^7.14.3",
|
|
100
|
-
"@mantine/hooks": "^7.14.3",
|
|
101
|
-
"@tanstack/query-sync-storage-persister": "^5.40.0",
|
|
102
|
-
"@tanstack/react-query": "^5.40.1",
|
|
103
|
-
"@tanstack/react-query-persist-client": "^5.40.1",
|
|
104
|
-
"axios": "^1.7.2",
|
|
105
|
-
"dayjs": "^1.11.13",
|
|
106
|
-
"react-router-dom": "^6.23.1",
|
|
107
|
-
"recharts": "^2.14.1",
|
|
108
|
-
"styled-components": "^6.1.11",
|
|
109
|
-
"xlsx": "^0.18.5"
|
|
110
|
-
}
|
|
111
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"version": "0.0.92",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"typings": "dist/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"src"
|
|
9
|
+
],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=10"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "tsdx watch",
|
|
15
|
+
"build": "tsdx build",
|
|
16
|
+
"test": "jest --watchAll=false",
|
|
17
|
+
"lint": "tsdx lint",
|
|
18
|
+
"prepare": "tsdx build",
|
|
19
|
+
"size": "size-limit",
|
|
20
|
+
"analyze": "size-limit --why",
|
|
21
|
+
"storybook": "storybook dev -p 6006",
|
|
22
|
+
"build-storybook": "storybook build",
|
|
23
|
+
"deploy": "npm version patch && npm publish"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"react": ">=16"
|
|
27
|
+
},
|
|
28
|
+
"husky": {
|
|
29
|
+
"hooks": {
|
|
30
|
+
"pre-commit": "tsdx lint"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"prettier": {
|
|
34
|
+
"printWidth": 80,
|
|
35
|
+
"semi": true,
|
|
36
|
+
"singleQuote": true,
|
|
37
|
+
"trailingComma": "es5"
|
|
38
|
+
},
|
|
39
|
+
"name": "wca-designsystem",
|
|
40
|
+
"author": "wca.dev",
|
|
41
|
+
"module": "dist/components.esm.js",
|
|
42
|
+
"size-limit": [
|
|
43
|
+
{
|
|
44
|
+
"path": "dist/components.cjs.production.min.js",
|
|
45
|
+
"limit": "10 KB"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "dist/components.esm.js",
|
|
49
|
+
"limit": "10 KB"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.13.10",
|
|
54
|
+
"@babel/preset-env": "^7.13.12",
|
|
55
|
+
"@babel/preset-react": "^7.13.13",
|
|
56
|
+
"@babel/preset-typescript": "^7.13.0",
|
|
57
|
+
"@chromatic-com/storybook": "^1.5.0",
|
|
58
|
+
"@size-limit/preset-small-lib": "^11.1.4",
|
|
59
|
+
"@storybook/addon-essentials": "^8.1.6",
|
|
60
|
+
"@storybook/addon-interactions": "^8.1.6",
|
|
61
|
+
"@storybook/addon-links": "^8.1.6",
|
|
62
|
+
"@storybook/addon-onboarding": "^8.1.6",
|
|
63
|
+
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
|
|
64
|
+
"@storybook/blocks": "^8.1.6",
|
|
65
|
+
"@storybook/react": "^8.1.6",
|
|
66
|
+
"@storybook/react-webpack5": "^8.1.6",
|
|
67
|
+
"@storybook/test": "^8.1.6",
|
|
68
|
+
"@testing-library/dom": "^10.1.0",
|
|
69
|
+
"@testing-library/react": "^11.2.6",
|
|
70
|
+
"@types/jest": "^29.5.12",
|
|
71
|
+
"@types/react": "^18.3.3",
|
|
72
|
+
"@types/react-dom": "^18.3.0",
|
|
73
|
+
"babel-jest": "^29.0.0",
|
|
74
|
+
"babel-loader": "^9.1.3",
|
|
75
|
+
"husky": "^9.0.11",
|
|
76
|
+
"identity-obj-proxy": "^3.0.0",
|
|
77
|
+
"jest": "^29.7.0",
|
|
78
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
79
|
+
"postcss-preset-mantine": "1.13.0",
|
|
80
|
+
"react": "^18.3.1",
|
|
81
|
+
"react-dom": "^18.3.1",
|
|
82
|
+
"react-is": "^18.3.1",
|
|
83
|
+
"size-limit": "^11.1.4",
|
|
84
|
+
"storybook": "^8.1.6",
|
|
85
|
+
"ts-jest": "^29.1.4",
|
|
86
|
+
"tsdx": "^0.14.1",
|
|
87
|
+
"tslib": "^2.6.3",
|
|
88
|
+
"typescript": "^5.4.5"
|
|
89
|
+
},
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@fullcalendar/core": "^6.1.15",
|
|
92
|
+
"@fullcalendar/daygrid": "^6.1.15",
|
|
93
|
+
"@fullcalendar/interaction": "^6.1.15",
|
|
94
|
+
"@fullcalendar/react": "^6.1.15",
|
|
95
|
+
"@fullcalendar/timegrid": "^6.1.15",
|
|
96
|
+
"@mantine/charts": "^7.14.3",
|
|
97
|
+
"@mantine/core": "^7.14.3",
|
|
98
|
+
"@mantine/dates": "^7.14.3",
|
|
99
|
+
"@mantine/form": "^7.14.3",
|
|
100
|
+
"@mantine/hooks": "^7.14.3",
|
|
101
|
+
"@tanstack/query-sync-storage-persister": "^5.40.0",
|
|
102
|
+
"@tanstack/react-query": "^5.40.1",
|
|
103
|
+
"@tanstack/react-query-persist-client": "^5.40.1",
|
|
104
|
+
"axios": "^1.7.2",
|
|
105
|
+
"dayjs": "^1.11.13",
|
|
106
|
+
"react-router-dom": "^6.23.1",
|
|
107
|
+
"recharts": "^2.14.1",
|
|
108
|
+
"styled-components": "^6.1.11",
|
|
109
|
+
"xlsx": "^0.18.5"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="40" height="16" viewBox="0 0 40 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M36.7071 8.70711C37.0976 8.31658 37.0976 7.68342 36.7071 7.29289L30.3431 0.928932C29.9526 0.538408 29.3195 0.538408 28.9289 0.928932C28.5384 1.31946 28.5384 1.95262 28.9289 2.34315L34.5858 8L28.9289 13.6569C28.5384 14.0474 28.5384 14.6805 28.9289 15.0711C29.3195 15.4616 29.9526 15.4616 30.3431 15.0711L36.7071 8.70711ZM4 9H36V7H4V9Z" fill="#CBCBCB"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg width="40" height="16" viewBox="0 0 40 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M36.7071 8.70711C37.0976 8.31658 37.0976 7.68342 36.7071 7.29289L30.3431 0.928932C29.9526 0.538408 29.3195 0.538408 28.9289 0.928932C28.5384 1.31946 28.5384 1.95262 28.9289 2.34315L34.5858 8L28.9289 13.6569C28.5384 14.0474 28.5384 14.6805 28.9289 15.0711C29.3195 15.4616 29.9526 15.4616 30.3431 15.0711L36.7071 8.70711ZM4 9H36V7H4V9Z" fill="#CBCBCB"/>
|
|
3
|
+
</svg>
|