react-restyle-components 0.2.23 → 0.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +0 -6
  2. package/lib/package.json +15 -4
  3. package/lib/src/App.js +12 -1
  4. package/lib/src/assets/styles/colors.css +217 -0
  5. package/lib/src/assets/styles/decorations.css +15 -0
  6. package/lib/src/assets/styles/fontface.css +17 -0
  7. package/lib/src/assets/styles/scrollbars.css +70 -0
  8. package/lib/src/assets/styles/typography.css +3 -0
  9. package/lib/src/core-components/atoms/button/Button.stories.d.ts +320 -0
  10. package/lib/src/core-components/atoms/button/Button.stories.js +66 -0
  11. package/lib/src/core-components/atoms/button/Button.test.d.ts +1 -0
  12. package/lib/src/core-components/atoms/button/Button.test.js +31 -0
  13. package/lib/src/core-components/atoms/button/Button.types.d.ts +36 -0
  14. package/lib/src/core-components/atoms/button/Button.types.js +1 -0
  15. package/lib/src/core-components/atoms/button/LinkButton.stories.d.ts +302 -0
  16. package/lib/src/core-components/atoms/button/LinkButton.stories.js +52 -0
  17. package/lib/src/core-components/atoms/button/ToggleButton.stories.d.ts +337 -0
  18. package/lib/src/core-components/atoms/button/ToggleButton.stories.js +62 -0
  19. package/lib/src/core-components/atoms/button/button.component.d.ts +6 -0
  20. package/lib/src/core-components/atoms/button/button.component.js +19 -0
  21. package/lib/src/core-components/atoms/button/button.module.css +477 -0
  22. package/lib/src/core-components/atoms/button/buttonGroup/ButtonGroup.stories.d.ts +53 -0
  23. package/lib/src/core-components/atoms/button/buttonGroup/ButtonGroup.stories.js +271 -0
  24. package/lib/src/core-components/atoms/button/buttonGroup/buttonGroup.component.d.ts +9 -0
  25. package/lib/src/core-components/atoms/button/buttonGroup/buttonGroup.component.js +4 -0
  26. package/lib/src/core-components/atoms/button/linkButton.component.d.ts +9 -0
  27. package/lib/src/core-components/atoms/button/linkButton.component.js +20 -0
  28. package/lib/src/core-components/atoms/button/toggleButton.component.d.ts +10 -0
  29. package/lib/src/core-components/atoms/button/toggleButton.component.js +21 -0
  30. package/lib/src/core-components/atoms/icons/icons.component.js +1 -1
  31. package/lib/src/core-components/atoms/tabs/tabs.component.d.ts +9 -2
  32. package/lib/src/core-components/atoms/tabs/tabs.component.js +14 -9
  33. package/lib/src/core-components/atoms/tooltip/Tooltip.module.css +44 -0
  34. package/lib/src/core-components/atoms/tooltip/Tooltip.stories.d.ts +31 -0
  35. package/lib/src/core-components/atoms/tooltip/Tooltip.stories.js +100 -0
  36. package/lib/src/core-components/atoms/tooltip/Tooltip.types.d.ts +23 -0
  37. package/lib/src/core-components/atoms/tooltip/Tooltip.types.js +1 -0
  38. package/lib/src/core-components/atoms/tooltip/tooltip.component.d.ts +16 -9
  39. package/lib/src/core-components/atoms/tooltip/tooltip.component.js +26 -24
  40. package/lib/src/core-components/index.d.ts +4 -1
  41. package/lib/src/core-components/index.js +4 -1
  42. package/lib/tc.css +1 -1
  43. package/package.json +15 -4
  44. package/lib/src/core-components/atoms/buttons/button.stories.d.ts +0 -6
  45. package/lib/src/core-components/atoms/buttons/button.stories.js +0 -36
  46. package/lib/src/core-components/atoms/buttons/buttons.component.d.ts +0 -11
  47. package/lib/src/core-components/atoms/buttons/buttons.component.js +0 -8
  48. package/lib/src/core-components/atoms/tooltip/tooltip.stories.d.ts +0 -6
  49. package/lib/src/core-components/atoms/tooltip/tooltip.stories.js +0 -13
package/README.md CHANGED
@@ -13,17 +13,11 @@ yarn add react-restyle-components
13
13
 
14
14
  https://appasaheb4.github.io/react-restyle-components
15
15
 
16
- ### Why we use this lib: 👇
17
-
18
- <img src="https://github.com/appasaheb4/react-restyle-components/blob/master/assets/img/libWapper.png">
19
-
20
16
  ☆━━━━━━━━━━━━━━━━━━━☆☆━━━━━━━━━━━━━━━━━━━☆
21
17
  Github: www.github.com/appasaheb4 <br />
22
18
  Website: www.tech-abl.com
23
19
  ☆━━━━━━━━━━━━━━━━━━━☆☆━━━━━━━━━━━━━━━━━━━☆
24
20
 
25
- ### If you use pdf components ref : [a relative link](PDF-README.md)
26
-
27
21
  ## Contributes / Support
28
22
 
29
23
  1. More content here : https://www.youtube.com/@techabl
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-restyle-components",
3
- "version": "0.2.23",
3
+ "version": "0.2.24",
4
4
  "private": false,
5
5
  "description": "Easy use restyle components",
6
6
  "author": {
@@ -19,7 +19,6 @@
19
19
  "dev": "DISABLE_ESLINT_PLUGIN=true craco start",
20
20
  "serve-webapp": "craco build && craco start",
21
21
  "build": "rm -rf ./lib && tsc && chmod +x npm-publish.sh && sh ./npm-publish.sh",
22
- "test": "jest",
23
22
  "eject": "react-scripts eject",
24
23
  "precommit": "lint-staged --allow-empty",
25
24
  "storybook": "storybook dev -p 6006",
@@ -29,13 +28,18 @@
29
28
  "lint:fix": "eslint --fix .",
30
29
  "prettier": "prettier --write '**/*.{js,jsx}'",
31
30
  "format": "prettier --write \"**/*.+(js|jsx|json|css|md)\"",
32
- "go": "npm run build && npm publish"
31
+ "go": "npm run build && npm publish",
32
+ "local": "yarn add file:/Users/appasaheb4/Documents/project/npm/react-restyle-components/lib",
33
+ "test": "vitest",
34
+ "test:ui": "vitest --ui --coverage",
35
+ "coverage": "vitest run --coverage"
33
36
  },
34
37
  "dependencies": {
35
38
  "@emotion/react": "^11.13.3",
36
39
  "@emotion/styled": "^11.13.0",
37
40
  "@loadable/component": "^5.16.4",
38
41
  "@mui/material": "^5.15.19",
42
+ "@radix-ui/react-tooltip": "^1.1.5",
39
43
  "@react-pdf/renderer": "^4.1.4",
40
44
  "@testing-library/jest-dom": "^5.17.0",
41
45
  "@testing-library/user-event": "^13.5.0",
@@ -65,6 +69,7 @@
65
69
  "@storybook/addon-interactions": "^8.0.6",
66
70
  "@storybook/addon-links": "^8.0.6",
67
71
  "@storybook/addon-onboarding": "^8.0.6",
72
+ "@storybook/addon-themes": "^8.4.7",
68
73
  "@storybook/addon-webpack5-compiler-swc": "^1.0.2",
69
74
  "@storybook/blocks": "^8.0.6",
70
75
  "@storybook/react": "^8.0.6",
@@ -82,16 +87,22 @@
82
87
  "gh-pages": "^3.2.3",
83
88
  "husky": "^7.0.4",
84
89
  "jest": "^29.7.0",
90
+ "@vitest/coverage-c8": "^0.31.4",
91
+ "@vitest/ui": "^0.31.4",
85
92
  "lint-staged": "^12.4.0",
86
93
  "postcss-loader": "^8.1.1",
87
94
  "prettier": "^3.3.3",
95
+ "react-router-dom": "^7.0.2",
88
96
  "sass": "^1.77.5",
89
97
  "sass-loader": "^14.2.1",
90
98
  "storybook": "^8.0.6",
99
+ "storybook-multilevel-sort": "^2.0.1",
91
100
  "style-loader": "^4.0.0",
92
101
  "tailwindcss": "^3.4.14",
93
102
  "ts-jest": "^29.2.5",
94
- "webpack": "^5.72.0"
103
+ "webpack": "^5.72.0",
104
+ "vitest": "^0.31.4",
105
+ "vitest-dom": "^0.1.0"
95
106
  },
96
107
  "eslintConfig": {
97
108
  "extends": [
package/lib/src/App.js CHANGED
@@ -1,10 +1,21 @@
1
1
  import React, { useState } from 'react';
2
2
  import './App.css';
3
- import { ColorPickerModal, PdfMedium, } from './core-components';
3
+ import { ColorPickerModal, PdfMedium, Tab, Tabs, } from './core-components';
4
4
  function App() {
5
5
  const [color, setColor] = useState('#aabbcc');
6
6
  return (React.createElement("div", { className: "flex flex-col gap-4 p-4" },
7
7
  React.createElement("p", { style: { margin: '0 0 10px 0' } }, "Autocomplete Comp."),
8
+ React.createElement(Tabs, { options: [
9
+ { title: 'Work History', icon: 'FaHistory' },
10
+ { title: 'Book Order', icon: 'FaBook' },
11
+ { title: 'Make Frame', icon: 'MdFilterFrames' },
12
+ ], onSelect: (item) => {
13
+ console.log({ item });
14
+ } },
15
+ React.createElement(Tab, { label: "Work History" },
16
+ React.createElement("span", null, "HI")),
17
+ React.createElement(Tab, { label: "Book Order" },
18
+ React.createElement("span", null, "Welcome"))),
8
19
  React.createElement(ColorPickerModal, { color: color, onChange: setColor }),
9
20
  React.createElement(PdfMedium, null, "hi")));
10
21
  }
@@ -0,0 +1,217 @@
1
+ html.theme--dark {
2
+ color-scheme: dark;
3
+ }
4
+ html.theme--light {
5
+ color-scheme: light;
6
+ }
7
+
8
+ :root {
9
+ --B25: #ebf3ff;
10
+ --B50: #dbeaff;
11
+ --B100: #b2d2ff;
12
+ --B200: #9bc5ff;
13
+ --B300: #7ab1fd;
14
+ --B400: #337ee7;
15
+ --B500: #145bbf;
16
+ --B600: #0c489c;
17
+ --B700: #033273;
18
+ --Brand: var(--B700);
19
+
20
+ --A50: #e0feff;
21
+ --A100: #adf8fb;
22
+ --A200: #5ae8ed;
23
+ --A300: #36dbe0;
24
+ --A400: #1ac7cd;
25
+ --A500: #16a8ad;
26
+ --A600: #108b8f;
27
+ --A700: #075255;
28
+ --Accent: var(--A400);
29
+
30
+ --N0: #ffffff;
31
+ --N25: #f9f9f9;
32
+ --N50: #f2f2f2;
33
+ --N75: #e6e6e6;
34
+ --N100: #dbdbdb;
35
+ --N200: #cbcbcb;
36
+ --N300: #b5b5b5;
37
+ --N400: #a4a2a2;
38
+ --N500: #808080;
39
+ --N600: #4d4d4d;
40
+ --N700: #242323;
41
+ --N1000: #000000;
42
+ --Natural: var(--N700);
43
+
44
+ --Gl25: #f7f9fc;
45
+ --Gl50: #e7edf8;
46
+ --Gl100: #d6e1f4;
47
+ --Gl200: #b9c8e7;
48
+ --Gl300: #9babd1;
49
+ --Gl400: #7a89b1;
50
+ --Gl500: #566384;
51
+ --Gl600: #4a5777;
52
+ --Gl700: #3f4b6a;
53
+ --Gl800: #2e3750;
54
+ --Gl850: #262e43;
55
+ --Gl900: #1e2537;
56
+ --Gl950: #1b1d24;
57
+ --Glacious: var(--Gl800);
58
+
59
+ --HO50: #ffded5;
60
+ --HO100: #feb9a5;
61
+ --HO200: #ff906e;
62
+ --HO300: #ff784f;
63
+ --HO400: #ff5d2d;
64
+ --HO500: #eb4d13;
65
+ --HO600: #7e2600;
66
+ --HO700: #421604;
67
+ --HotOrange: var(--HO400);
68
+
69
+ --Y50: #fbf3e0;
70
+ --Y100: #f9e3b6;
71
+ --Y200: #fcc003;
72
+ --Y300: #e4a201;
73
+ --Y400: #ca8501;
74
+ --Y500: #a35803;
75
+ --Y600: #6f3400;
76
+ --Y700: #2e2204;
77
+ --Yellow: var(--Y200);
78
+
79
+ --Gr25: #eafae6;
80
+ --Gr50: #cdefc4;
81
+ --Gr100: #91db8b;
82
+ --Gr200: #45c65a;
83
+ --Gr300: #3ba755;
84
+ --Gr400: #2e844a;
85
+ --Gr500: #22683e;
86
+ --Gr600: #194e31;
87
+ --Gr700: #0e3522;
88
+ --Green: var(--Gr300);
89
+
90
+ --CB50: #cfe9fe;
91
+ --CB100: #90d0fe;
92
+ --CB200: #1ab9ff;
93
+ --CB300: #08abed;
94
+ --CB400: #0d9dda;
95
+ --CB500: #107cad;
96
+ --CB600: #084968;
97
+ --CB700: #023248;
98
+ --CloudBlue: var(--CB500);
99
+
100
+ --I50: #e0e5f8;
101
+ --I100: #bec7f6;
102
+ --I200: #9ea9f1;
103
+ --I300: #8e9bef;
104
+ --I400: #7f8ced;
105
+ --I500: #5867e8;
106
+ --I600: #3a49da;
107
+ --I700: #260f8f;
108
+ --Indigo: var(--I500);
109
+
110
+ --Pu50: #ece1f9;
111
+ --Pu100: #d7bff2;
112
+ --Pu200: #c29ef1;
113
+ --Pu300: #b78def;
114
+ --Pu400: #ad7bee;
115
+ --Pu500: #9050e9;
116
+ --Pu600: #7526e3;
117
+ --Pu700: #401075;
118
+ --Purple: var(--Pu500);
119
+
120
+ --V50: #f2defe;
121
+ --V100: #e5b9fe;
122
+ --V200: #d892fe;
123
+ --V300: #d384fe;
124
+ --V400: #cb65ff;
125
+ --V500: #ba01ff;
126
+ --V600: #7b119a;
127
+ --V700: #3d0157;
128
+ --Violet: var(--V500);
129
+
130
+ --Pi50: #fddde3;
131
+ --Pi100: #fdb6c5;
132
+ --Pi200: #fe8aa7;
133
+ --Pi300: #fe7298;
134
+ --Pi400: #ff538a;
135
+ --Pi500: #e3066a;
136
+ --Pi600: #b60554;
137
+ --Pi700: #61022a;
138
+ --Pink: var(--Pi400);
139
+
140
+ --R25: #fcece8;
141
+ --R50: #ffdfd7;
142
+ --R100: #feb8ab;
143
+ --R200: #fe8f7d;
144
+ --R300: #fe7765;
145
+ --R400: #fe5c4c;
146
+ --R500: #ee3e3e;
147
+ --R600: #ba0517;
148
+ --R700: #640103;
149
+ --Red: var(--R400);
150
+
151
+ --color-impersonation-start: #ec4b4b;
152
+ --color-bloomberg: #fe9c29;
153
+ }
154
+
155
+ .theme--dark {
156
+ --global-focus-color: var(--B300);
157
+ --global-window-border-color: var(--Gl800);
158
+ --global-text-primary: var(--N0);
159
+ --global-text-primary-inverse: var(--N1000);
160
+ --global-text-secondary: var(--Gl100);
161
+ --global-input-disabled-color: var(--Gl600);
162
+ --global-input-bg: var(--Gl800);
163
+ --global-input-disabled-bg: var(--Gl800);
164
+ --global-input-disabled-label-color: var(--Gl600);
165
+ --global-input-error-highlight: var(--R400);
166
+ --global-input-placeholder-color: rgb(from var(--N0) r g b / 0.4);
167
+ --global-input-caret-color: var(--B300);
168
+ --global-input-error-caret-color: var(--R400);
169
+ --global-input-border-color: var(--Gl600);
170
+ --global-input-color: var(--N0);
171
+ --global-input-label-color: var(--Gl100);
172
+ }
173
+
174
+ .theme--light {
175
+ --global-focus-color: var(--B400);
176
+ --global-window-border-color: var(--N100);
177
+ --global-text-primary: var(--N1000);
178
+ --global-text-primary-inverse: var(--N0);
179
+ --global-text-secondary: var(--N700);
180
+ --global-input-disabled-color: var(--N300);
181
+ --global-input-bg: var(--N0);
182
+ --global-input-disabled-bg: var(--N50);
183
+ --global-input-disabled-label-color: var(--N300);
184
+ --global-input-error-highlight: var(--R500);
185
+ --global-input-placeholder-color: var(--N300);
186
+ --global-input-caret-color: var(--B500);
187
+ --global-input-error-caret-color: var(--R500);
188
+ --global-input-border-color: var(--N200);
189
+ --global-input-color: var(--N1000);
190
+ --global-input-label-color: var(--N700);
191
+ }
192
+
193
+ /* Menu colors - used for Dropdowns, Context Menus, etc */
194
+ .theme--dark {
195
+ --menu-panel-bg-color: var(--Gl700);
196
+ --menu-panel-border-color: var(--Gl500);
197
+ --menu-button-bg-color-hover: var(--Gl500);
198
+ --menu-heading-color: var(--A400);
199
+ --menu-toggle_bg: var(--Gl400);
200
+ --menu-toggle_bg_disabled: var(--Gl800);
201
+ --menu-toggle_thumb_bg_disabled: var(--Gl500);
202
+ --menu-toggle_bg_active: var(--A400);
203
+ --menu-toggle_thumb_bg: var(--N0);
204
+ --menu-panel-shadow-color: rgba(0, 0, 0, 0.4);
205
+ }
206
+ .theme--light {
207
+ --menu-panel-bg-color: var(--N0);
208
+ --menu-panel-border-color: var(--N100);
209
+ --menu-button-bg-color-hover: var(--N50);
210
+ --menu-heading-color: var(--A500);
211
+ --menu-toggle_bg: var(--N200);
212
+ --menu-toggle_bg_disabled: var(--N50);
213
+ --menu-toggle_thumb_bg_disabled: var(--N300);
214
+ --menu-toggle_bg_active: var(--A500);
215
+ --menu-toggle_thumb_bg: var(--N0);
216
+ --menu-panel-shadow-color: rgba(0, 0, 0, 0.15);
217
+ }
@@ -0,0 +1,15 @@
1
+ /*
2
+ Consuming apps can expect these variables to exist and use them directly - much like the colors.css file.
3
+ We shouldn't resort to using this for every case where we want 2 or more components to share a style.
4
+ */
5
+ :root {
6
+ --menu-panel-border: 1px solid var(--menu-panel-border-color);
7
+ --menu-panel-shadow: 0px 16px 40px var(--menu-panel-shadow-color);
8
+ --menu-panel-radius: 4px;
9
+ --menu-panel-vertical-padding: 4px;
10
+ --menu-clickable-color: var(--global-text-primary);
11
+ --menu-clickable-font-size: 12px;
12
+ --menu-clickable-font-weight: 400;
13
+ --menu-clickable-disabled: 0.5;
14
+ --menu-clickable-vertical-padding: 6px;
15
+ }
@@ -0,0 +1,17 @@
1
+ /* // Inter (variable weight fonts) Main typeface used throughout the app */
2
+ @font-face {
3
+ font-family: 'Inter var';
4
+ font-weight: 100 900;
5
+ font-display: swap;
6
+ font-style: normal;
7
+ font-named-instance: 'Regular';
8
+ src: url('../fonts/Inter-roman.var.woff2?v=3.19') format('woff2');
9
+ }
10
+ @font-face {
11
+ font-family: 'Inter var';
12
+ font-weight: 100 900;
13
+ font-display: swap;
14
+ font-style: italic;
15
+ font-named-instance: 'Italic';
16
+ src: url('../fonts/Inter-italic.var.woff2?v=3.19') format('woff2');
17
+ }
@@ -0,0 +1,70 @@
1
+ .theme--dark {
2
+ --scrollbar-background: transparent;
3
+ --scrollbar-button-display: none;
4
+ --scrollbar-thumb: rgb(142 142 142);
5
+ }
6
+ .theme--light {
7
+ --scrollbar-background: transparent;
8
+ --scrollbar-button-display: none;
9
+ --scrollbar-thumb: rgb(163 179 221);
10
+ }
11
+ /* The bar/track */
12
+ ::-webkit-scrollbar {
13
+ background: var(--scrollbar-background);
14
+ width: var(--scrollbar-size, 20px);
15
+ height: var(--scrollbar-size, 20px);
16
+ }
17
+ /* The thumb/drag/pill */
18
+ ::-webkit-scrollbar-thumb {
19
+ border: calc(var(--scrollbar-size, 20px) * var(--scrollbar-inset, 0.2)) solid transparent;
20
+ border-radius: calc(var(--scrollbar-size, 20px) / 2);
21
+ background-color: rgb(from var(--scrollbar-thumb) r g b / 0.3);
22
+ background-clip: padding-box;
23
+ }
24
+ ::-webkit-scrollbar-thumb:hover {
25
+ background-color: rgb(from var(--scrollbar-thumb) r g b / 0.7);
26
+ }
27
+ /* The buttons */
28
+ ::-webkit-scrollbar-button:single-button {
29
+ display: var(--scrollbar-button-display, block);
30
+ background-color: transparent;
31
+ background-position: center center;
32
+ background-repeat: no-repeat;
33
+ background-size: var(--scrollbar-size, 20px);
34
+ width: var(--scrollbar-size, 20px);
35
+ height: var(--scrollbar-size, 20px);
36
+ }
37
+ ::-webkit-scrollbar-button:single-button:hover {
38
+ background-color: rgb(from var(--scrollbar-thumb) r g b / 0.25);
39
+ }
40
+ ::-webkit-scrollbar-button:not(:single-button) {
41
+ display: none;
42
+ }
43
+ /* Left button */
44
+ .theme--dark ::-webkit-scrollbar-button:horizontal:start {
45
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='12,6 12,14 8,10'/></svg>");
46
+ }
47
+ .theme--light ::-webkit-scrollbar-button:horizontal:start {
48
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='12,6 12,14 8,10'/></svg>");
49
+ }
50
+ /* Right button */
51
+ .theme--dark ::-webkit-scrollbar-button:horizontal:end {
52
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='8,6 8,14 12,10'/></svg>");
53
+ }
54
+ .theme--light ::-webkit-scrollbar-button:horizontal:end {
55
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='8,6 8,14 12,10'/></svg>");
56
+ }
57
+ /* Up button */
58
+ .theme--dark ::-webkit-scrollbar-button:vertical:start {
59
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='6,12 14,12 10,8'/></svg>");
60
+ }
61
+ .theme--light ::-webkit-scrollbar-button:vertical:start {
62
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='6,12 14,12 10,8'/></svg>");
63
+ }
64
+ /* Down button */
65
+ .theme--dark ::-webkit-scrollbar-button:vertical:end {
66
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(185, 200, 231)'><polygon points='6,8 14,8 10,12'/></svg>");
67
+ }
68
+ .theme--light ::-webkit-scrollbar-button:vertical:end {
69
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='rgb(77, 77, 77)'><polygon points='6,8 14,8 10,12'/></svg>");
70
+ }
@@ -0,0 +1,3 @@
1
+ :root {
2
+ font-family: 'Inter var', sans-serif;
3
+ }