beathers 5.4.0 → 5.5.0

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 (42) hide show
  1. package/.prettierrc.js +8 -8
  2. package/CHANGELOG +191 -167
  3. package/css/beathers-icons.min.css +1 -1
  4. package/css/beathers-icons.min.css.map +1 -1
  5. package/css/beathers.min.css +2 -2
  6. package/css/beathers.min.css.map +1 -1
  7. package/data/colors.d.ts +2 -0
  8. package/data/colors.d.ts.map +1 -1
  9. package/data/colors.js +6 -0
  10. package/package.json +15 -14
  11. package/public/fonts/beathers.woff +0 -0
  12. package/readme.md +263 -256
  13. package/scripts/cli.js +0 -0
  14. package/scripts/commands/build.d.ts.map +1 -1
  15. package/scripts/commands/build.js +2 -1
  16. package/scripts/commands/fonts.d.ts.map +1 -1
  17. package/scripts/commands/init.d.ts.map +1 -1
  18. package/scripts/commands/init.js +7 -0
  19. package/scripts/helpers/BuildScssVariables.d.ts +1 -1
  20. package/scripts/helpers/BuildScssVariables.d.ts.map +1 -1
  21. package/scripts/helpers/BuildScssVariables.js +28 -5
  22. package/scripts/helpers/ReadDefaultValues.d.ts.map +1 -1
  23. package/scripts/helpers/ReadDefaultValues.js +11 -0
  24. package/scripts/types.d.ts +22 -3
  25. package/scripts/types.d.ts.map +1 -1
  26. package/scss/_variables.scss +1 -0
  27. package/scss/beathers-icons.min.scss +265 -265
  28. package/scss/beathers.min.scss +11 -11
  29. package/scss/functions/_colors.scss +230 -230
  30. package/scss/functions/_mediaQueries.scss +133 -133
  31. package/scss/functions/_others.scss +87 -87
  32. package/scss/functions/_typographic.scss +129 -129
  33. package/scss/functions/_validations.scss +251 -251
  34. package/scss/settings/_configs.scss +295 -295
  35. package/scss/settings/_defaults.scss +200 -178
  36. package/scss/settings/_index.scss +70 -68
  37. package/scss/style/_colors.scss +146 -146
  38. package/scss/style/_glass.scss +84 -0
  39. package/scss/style/_grid.scss +89 -89
  40. package/scss/style/_resets.scss +112 -110
  41. package/scss/style/_shaping.scss +388 -388
  42. package/scss/style/_typographic.scss +320 -319
package/.prettierrc.js CHANGED
@@ -1,8 +1,8 @@
1
- export default {
2
- trailingComma: 'es5',
3
- bracketSpacing: true,
4
- tabWidth: 2,
5
- printWidth: 120,
6
- semi: false,
7
- singleQuote: true,
8
- }
1
+ export default {
2
+ trailingComma: 'es5',
3
+ bracketSpacing: true,
4
+ tabWidth: 2,
5
+ printWidth: 120,
6
+ semi: false,
7
+ singleQuote: true,
8
+ }
package/CHANGELOG CHANGED
@@ -1,167 +1,191 @@
1
- # Changelog
2
-
3
- ## [5.4.0] - 2025-06-12
4
-
5
- ### Changed
6
-
7
- - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
8
- - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
9
- - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
10
- - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
11
-
12
- ### Fixed
13
-
14
- - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
15
-
16
- ## [5.3.6] - 2025-06-12
17
-
18
- ### Fixed
19
-
20
- - **CLI build paths**: Updated build paths to correctly reference package installation location
21
- - **Output directory logic**: Improved default output path handling for different execution contexts
22
-
23
- ## [5.3.5] - 2025-06-12
24
-
25
- ### Fixed
26
-
27
- - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
28
- - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
29
- - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
30
-
31
- ## [5.3.4] - 2025-06-12
32
-
33
- ### Updated
34
-
35
- - **Package maintenance**: Minor fixes
36
-
37
- ## [5.3.3] - 2025-06-12
38
-
39
- ### Fixed
40
-
41
- - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
42
- - **Import paths**: Fixed package.json exports field to properly expose css/_ and scss/_ files
43
-
44
- ## [5.3.2] - 2025-06-12
45
-
46
- ### Fixed
47
-
48
- - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
49
- - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
50
-
51
- ## [5.3.1] - 2025-06-12
52
-
53
- ### Fixed
54
-
55
- - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
56
-
57
- ## [5.3.0] - 2025-06-12
58
-
59
- ### Added
60
-
61
- - **Custom output path**: Added support for custom output path in build command for more flexible project structures
62
- - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
63
- - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
64
- - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
65
-
66
- ### Changed
67
-
68
- - **Code organization**: Moved functions to helper folder for better code structure and maintainability
69
- - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
70
- - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
71
- - **Path mapping**: Improved module importing with better path mapping
72
-
73
- ### Fixed
74
-
75
- - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
76
- - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
77
- - **Colors duplication**: Resolved issues with color duplication
78
- - **Default colors reading**: Fixed reading of default color values
79
- - **Help functions**: Updated and improved help command functions
80
-
81
- ## [5.2.2] - 2025-06-05
82
-
83
- ### Fixed
84
-
85
- - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
86
-
87
- ## [5.2.1] - 2025-06-05
88
-
89
- ### Fixed
90
-
91
- - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
92
- - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
93
-
94
- ## [5.2.0] - 2025-06-05
95
-
96
- ### Added
97
-
98
- - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
99
- - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
100
- - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
101
- - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
102
- - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
103
- - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
104
-
105
- ### Changed
106
-
107
- - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
108
- - **Better configuration merging**: Enhanced default theme loading and user config integration
109
- - **Improved code organization**: More consistent code structure across TypeScript files
110
- - **Enhanced error handling**: Better validation and error messages in configuration loading
111
-
112
- ### Fixed
113
-
114
- - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
115
- - **Type consistency**: Resolved type mismatches between different modules
116
- - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
117
-
118
- ## [5.1.1] - 2025-06-05
119
-
120
- ### Fixed
121
-
122
- - Small bug fixes and improvements
123
-
124
- ## [5.1.0] - 2025-06-05
125
-
126
- ### Added
127
-
128
- - Enhanced CSS utility documentation in README
129
- - Comprehensive configuration examples for TypeScript users
130
- - Improved color utility system with better dark/light mode support
131
- - Font weight and size utility examples
132
-
133
- ### Changed
134
-
135
- - Updated README with detailed configuration tables
136
- - Improved TypeScript configuration examples
137
- - Enhanced documentation structure and readability
138
-
139
- ### Fixed
140
-
141
- - Configuration file format consistency
142
- - TypeScript type definitions alignment
143
-
144
- ## [5.0.0] - Initial Release
145
-
146
- ### Added
147
-
148
- - Core SCSS framework with utility-first approach
149
- - Interactive CLI tool for theme configuration
150
- - Comprehensive color system with light/dark variants
151
- - Typography utilities with customizable font families and sizes
152
- - Responsive grid system with 12-column layout
153
- - Flexbox utilities for modern layouts
154
- - Spacing utilities with customizable gutters
155
- - Border and border-radius utilities
156
- - Shadow and blur effects
157
- - Position and sizing utilities
158
- - Opacity and overflow utilities
159
- - Transition utilities for smooth animations
160
- - Display utilities for various layout needs
161
- - Container/wrapper utilities for responsive layouts
162
- - Icon integration support
163
- - Complete customization through configuration files
164
- - Support for JSON, JS, and TypeScript config formats
165
- - CSS custom properties (CSS variables) generation
166
- - Media query utilities for responsive design
167
- - Text alignment and truncation utilities
1
+ # Changelog
2
+
3
+ ## [5.5.0] - 2025-07-04
4
+
5
+ ### Added
6
+
7
+ - **Glass effects**: New glassmorphism settings and utilities for modern UI effects
8
+ - **Bhoenix branding colors**: Added official Bhoenix Studio brand colors to the color palette
9
+
10
+ ### Fixed
11
+
12
+ - **Typography**: Updated font mixin parameters to include font key for better font handling
13
+ - **Build system**: Enhanced build process with proper isLocalBuild flag handling and improved font path resolution
14
+ - **Icon fonts**: Fixed icon font path references for reliable icon loading
15
+ - **Font families**: Updated font family definitions and color selections in reset styles
16
+ - **CSS validation**: Improved SizeUnit type to properly handle zero values as valid CSS units
17
+
18
+ ## [5.4.1] - 2025-06-15
19
+
20
+ ### Fixed
21
+
22
+ - Minor bug fixes and improvements
23
+ - Enhanced build process stability
24
+ - Improved CLI command reliability
25
+ - Fixed edge cases in configuration handling
26
+
27
+ ## [5.4.0] - 2025-06-12
28
+
29
+ ### Changed
30
+
31
+ - **BREAKING CHANGE**: Removed `dist` folder from package structure for cleaner imports
32
+ - **Import paths**: Updated import paths from `beathers/dist/css/beathers.min.css` to `beathers/css/beathers.min.css`
33
+ - **Package structure**: Moved CSS files from `dist/css/` to `css/` and SCSS files from `dist/scss/` to `scss/`
34
+ - **Build scripts**: Updated all build and CLI scripts to work with new folder structure
35
+
36
+ ### Fixed
37
+
38
+ - **Package exports**: Updated package.json exports to reflect new structure without `dist` folder
39
+
40
+ ## [5.3.6] - 2025-06-12
41
+
42
+ ### Fixed
43
+
44
+ - **CLI build paths**: Updated build paths to correctly reference package installation location
45
+ - **Output directory logic**: Improved default output path handling for different execution contexts
46
+
47
+ ## [5.3.5] - 2025-06-12
48
+
49
+ ### Fixed
50
+
51
+ - **CLI execution**: Fixed "Command failed: npm run build:pack" error when using `npx beathers` as library in other projects
52
+ - **Package dependencies**: Moved `sass` from devDependencies to dependencies to ensure it's available when package is installed
53
+ - **Build system**: CLI now uses sass compiler directly instead of trying to run npm scripts from user projects
54
+
55
+ ## [5.3.4] - 2025-06-12
56
+
57
+ ### Updated
58
+
59
+ - **Package maintenance**: Minor fixes
60
+
61
+ ## [5.3.3] - 2025-06-12
62
+
63
+ ### Fixed
64
+
65
+ - **Module exports**: Added CSS and SCSS files to package exports to fix "Module not found" error when importing CSS files
66
+ - **Import paths**: Fixed package.json exports field to properly expose css/_ and scss/_ files
67
+
68
+ ## [5.3.2] - 2025-06-12
69
+
70
+ ### Fixed
71
+
72
+ - **CLI version display**: Fixed version command to show correct package version (5.3.2) instead of incorrect version
73
+ - **NPM package structure**: Fixed SCSS file paths in distributed package by copying source SCSS files to scss/ directory
74
+
75
+ ## [5.3.1] - 2025-06-12
76
+
77
+ ### Fixed
78
+
79
+ - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
80
+
81
+ ## [5.3.0] - 2025-06-12
82
+
83
+ ### Added
84
+
85
+ - **Custom output path**: Added support for custom output path in build command for more flexible project structures
86
+ - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
87
+ - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
88
+ - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
89
+
90
+ ### Changed
91
+
92
+ - **Code organization**: Moved functions to helper folder for better code structure and maintainability
93
+ - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
94
+ - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
95
+ - **Path mapping**: Improved module importing with better path mapping
96
+
97
+ ### Fixed
98
+
99
+ - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
100
+ - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
101
+ - **Colors duplication**: Resolved issues with color duplication
102
+ - **Default colors reading**: Fixed reading of default color values
103
+ - **Help functions**: Updated and improved help command functions
104
+
105
+ ## [5.2.2] - 2025-06-05
106
+
107
+ ### Fixed
108
+
109
+ - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
110
+
111
+ ## [5.2.1] - 2025-06-05
112
+
113
+ ### Fixed
114
+
115
+ - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
116
+ - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
117
+
118
+ ## [5.2.0] - 2025-06-05
119
+
120
+ ### Added
121
+
122
+ - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
123
+ - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
124
+ - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
125
+ - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
126
+ - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
127
+ - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
128
+
129
+ ### Changed
130
+
131
+ - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
132
+ - **Better configuration merging**: Enhanced default theme loading and user config integration
133
+ - **Improved code organization**: More consistent code structure across TypeScript files
134
+ - **Enhanced error handling**: Better validation and error messages in configuration loading
135
+
136
+ ### Fixed
137
+
138
+ - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
139
+ - **Type consistency**: Resolved type mismatches between different modules
140
+ - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
141
+
142
+ ## [5.1.1] - 2025-06-05
143
+
144
+ ### Fixed
145
+
146
+ - Small bug fixes and improvements
147
+
148
+ ## [5.1.0] - 2025-06-05
149
+
150
+ ### Added
151
+
152
+ - Enhanced CSS utility documentation in README
153
+ - Comprehensive configuration examples for TypeScript users
154
+ - Improved color utility system with better dark/light mode support
155
+ - Font weight and size utility examples
156
+
157
+ ### Changed
158
+
159
+ - Updated README with detailed configuration tables
160
+ - Improved TypeScript configuration examples
161
+ - Enhanced documentation structure and readability
162
+
163
+ ### Fixed
164
+
165
+ - Configuration file format consistency
166
+ - TypeScript type definitions alignment
167
+
168
+ ## [5.0.0] - Initial Release
169
+
170
+ ### Added
171
+
172
+ - Core SCSS framework with utility-first approach
173
+ - Interactive CLI tool for theme configuration
174
+ - Comprehensive color system with light/dark variants
175
+ - Typography utilities with customizable font families and sizes
176
+ - Responsive grid system with 12-column layout
177
+ - Flexbox utilities for modern layouts
178
+ - Spacing utilities with customizable gutters
179
+ - Border and border-radius utilities
180
+ - Shadow and blur effects
181
+ - Position and sizing utilities
182
+ - Opacity and overflow utilities
183
+ - Transition utilities for smooth animations
184
+ - Display utilities for various layout needs
185
+ - Container/wrapper utilities for responsive layouts
186
+ - Icon integration support
187
+ - Complete customization through configuration files
188
+ - Support for JSON, JS, and TypeScript config formats
189
+ - CSS custom properties (CSS variables) generation
190
+ - Media query utilities for responsive design
191
+ - Text alignment and truncation utilities
@@ -1 +1 @@
1
- @font-face{font-family:"beathers";src:url("/fonts/beathers.woff") format("woff")}.be{font-family:"beathers",system-ui;font-size:1em;width:1em;height:1em;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.be.be-cart:before{content:""}.be.be-share:before{content:""}.be.be-tag-1:before{content:""}.be.be-facebook-messenger:before{content:""}.be.be-arrow-corner-up-left:before{content:""}.be.be-fastword:before{content:""}.be.be-tiktok:before{content:""}.be.be-database:before{content:""}.be.be-syrian-pound:before{content:""}.be.be-user-check:before{content:""}.be.be-server:before{content:""}.be.be-car:before{content:""}.be.be-times:before{content:""}.be.be-apple-store:before{content:""}.be.be-arrow-circle-up:before{content:""}.be.be-login:before{content:""}.be.be-settings:before{content:""}.be.be-instagram:before{content:""}.be.be-sun:before{content:""}.be.be-arrow-corner-left-up:before{content:""}.be.be-star-Half:before{content:""}.be.be-img:before{content:""}.be.be-gender:before{content:""}.be.be-amazon-payment:before{content:""}.be.be-pintrest:before{content:""}.be.be-arrow-droplist-down:before{content:""}.be.be-apple-pay:before{content:""}.be.be-whatsapp:before{content:""}.be.be-arrow-droplist-up:before{content:""}.be.be-pause:before{content:""}.be.be-arrow-corner-right-up:before{content:""}.be.be-save:before{content:""}.be.be-star:before{content:""}.be.be-arrow-corner-down-right:before{content:""}.be.be-moon:before{content:""}.be.be-arrow-classic-down-left:before{content:""}.be.be-logout:before{content:""}.be.be-certificate:before{content:""}.be.be-repeat:before{content:""}.be.be-rotate:before{content:""}.be.be-warning:before{content:""}.be.be-wallet:before{content:""}.be.be-headset:before{content:""}.be.be-plus:before{content:""}.be.be-double-check:before{content:""}.be.be-lock-opened:before{content:""}.be.be-arrow-classic-up-left:before{content:""}.be.be-chili:before{content:""}.be.be-github:before{content:""}.be.be-options:before{content:""}.be.be-volume-up:before{content:""}.be.be-flash:before{content:""}.be.be-usb:before{content:""}.be.be-shield-on:before{content:""}.be.be-copy:before{content:""}.be.be-stop:before{content:""}.be.be-warehouse:before{content:""}.be.be-user-delete:before{content:""}.be.be-target:before{content:""}.be.be-arrow-droplist-right:before{content:""}.be.be-arrow-sign-left:before{content:""}.be.be-check:before{content:""}.be.be-coin:before{content:""}.be.be-print:before{content:""}.be.be-arrow-lite-double-down:before{content:""}.be.be-card:before{content:""}.be.be-stackoverflow:before{content:""}.be.be-face-id:before{content:""}.be.be-signal:before{content:""}.be.be-arrow-droplist-left:before{content:""}.be.be-cart-1:before{content:""}.be.be-behance:before{content:""}.be.be-menu-1:before{content:""}.be.be-user-remove:before{content:""}.be.be-tag:before{content:""}.be.be-receipt:before{content:""}.be.be-check-1:before{content:""}.be.be-medal-1:before{content:""}.be.be-heart-rate:before{content:""}.be.be-coffee-1:before{content:""}.be.be-halal:before{content:""}.be.be-search-1:before{content:""}.be.be-power:before{content:""}.be.be-edit-1:before{content:""}.be.be-arrow-classic-right:before{content:""}.be.be-search:before{content:""}.be.be-phone:before{content:""}.be.be-saudi-riyal:before{content:""}.be.be-time:before{content:""}.be.be-btc:before{content:""}.be.be-play:before{content:""}.be.be-eye-closed:before{content:""}.be.be-shop:before{content:""}.be.be-menu:before{content:""}.be.be-facebook:before{content:""}.be.be-hackerrank:before{content:""}.be.be-gift-opened:before{content:""}.be.be-news:before{content:""}.be.be-medal:before{content:""}.be.be-finger-print:before{content:""}.be.be-Unlink:before{content:""}.be.be-huawei:before{content:""}.be.be-arrow-classic-up-right:before{content:""}.be.be-microsoft:before{content:""}.be.be-pdf:before{content:""}.be.be-dislike:before{content:""}.be.be-snapchat:before{content:""}.be.be-turkish:before{content:""}.be.be-bank:before{content:""}.be.be-home:before{content:""}.be.be-trash:before{content:""}.be.be-thermometer:before{content:""}.be.be-sort-up:before{content:""}.be.be-coffee-2:before{content:""}.be.be-scale-down:before{content:""}.be.be-lang-ar:before{content:""}.be.be-files:before{content:""}.be.be-archive:before{content:""}.be.be-like:before{content:""}.be.be-arrow-classic-down-right:before{content:""}.be.be-timer:before{content:""}.be.be-gold:before{content:""}.be.be-eye-opened:before{content:""}.be.be-arrow-circle-left:before{content:""}.be.be-telegram:before{content:""}.be.be-volume:before{content:""}.be.be-linkedin:before{content:""}.be.be-arrow-corner-down-left:before{content:""}.be.be-download:before{content:""}.be.be-inbox:before{content:""}.be.be-arrow-corner-right-down:before{content:""}.be.be-pin-2:before{content:""}.be.be-game-contraller:before{content:""}.be.be-users:before{content:""}.be.be-volume-down:before{content:""}.be.be-user:before{content:""}.be.be-info:before{content:""}.be.be-pin-1:before{content:""}.be.be-google-play:before{content:""}.be.be-arrow-sign-right:before{content:""}.be.be-ads:before{content:""}.be.be-car-1:before{content:""}.be.be-arrow-corner-left-down:before{content:""}.be.be-arrow-circle-down:before{content:""}.be.be-ship:before{content:""}.be.be-chart-3:before{content:""}.be.be-dribbble:before{content:""}.be.be-arrow-lite-double-right:before{content:""}.be.be-check-2:before{content:""}.be.be-arrow-classic-down:before{content:""}.be.be-question:before{content:""}.be.be-new-tab:before{content:""}.be.be-cart-2:before{content:""}.be.be-arrow-corner-up-right:before{content:""}.be.be-arrow-classic-left:before{content:""}.be.be-octagon:before{content:""}.be.be-rupee:before{content:""}.be.be-usb-1:before{content:""}.be.be-yuan:before{content:""}.be.be-cheeze:before{content:""}.be.be-arrow-lite-double-up:before{content:""}.be.be-dashboard:before{content:""}.be.be-android:before{content:""}.be.be-mail:before{content:""}.be.be-age:before{content:""}.be.be-filters:before{content:""}.be.be-chart-2:before{content:""}.be.be-drop:before{content:""}.be.be-gift-closed:before{content:""}.be.be-euro:before{content:""}.be.be-loading:before{content:""}.be.be-upload:before{content:""}.be.be-arrow-sign-up:before{content:""}.be.be-bell-off:before{content:""}.be.be-passport:before{content:""}.be.be-chart-1:before{content:""}.be.be-user-add:before{content:""}.be.be-edit:before{content:""}.be.be-Chipset:before{content:""}.be.be-youtube:before{content:""}.be.be-arrow-lite-left:before{content:""}.be.be-arrow-sign-down:before{content:""}.be.be-arrow-classic-up:before{content:""}.be.be-white-board:before{content:""}.be.be-grid:before{content:""}.be.be-pounds:before{content:""}.be.be-pin:before{content:""}.be.be-arrow-lite-right:before{content:""}.be.be-shield-off:before{content:""}.be.be-arrow-lite-up:before{content:""}.be.be-scale-up:before{content:""}.be.be-barcode:before{content:""}.be.be-plane:before{content:""}.be.be-quote:before{content:""}.be.be-ruble:before{content:""}.be.be-ice-cream:before{content:""}.be.be-move:before{content:""}.be.be-times-2:before{content:""}.be.be-link-1:before{content:""}.be.be-board:before{content:""}.be.be-mobile:before{content:""}.be.be-arrow-circle-right:before{content:""}.be.be-apple:before{content:""}.be.be-google:before{content:""}.be.be-arrow-outside:before{content:""}.be.be-compare:before{content:""}.be.be-mice:before{content:""}.be.be-cloud:before{content:""}.be.be-times-1:before{content:""}.be.be-calendar:before{content:""}.be.be-twitter:before{content:""}.be.be-motorbike:before{content:""}.be.be-categories:before{content:""}.be.be-app-gallery:before{content:""}.be.be-aws:before{content:""}.be.be-arrow-inside:before{content:""}.be.be-folder:before{content:""}.be.be-x:before{content:""}.be.be-camera:before{content:""}.be.be-minus:before{content:""}.be.be-link:before{content:""}.be.be-box:before{content:""}.be.be-color:before{content:""}.be.be-sort-down:before{content:""}.be.be-settings-1:before{content:""}.be.be-google-pay:before{content:""}.be.be-chart:before{content:""}.be.be-heart:before{content:""}.be.be-doller:before{content:""}.be.be-lock-closed:before{content:""}.be.be-umbrella:before{content:""}.be.be-arrow-lite-double-left:before{content:""}.be.be-gitlab:before{content:""}.be.be-arrow-lite-down:before{content:""}.be.be-bell:before{content:""}.be.be-git:before{content:""}.be.be-paypal:before{content:""}.be.be-coupon:before{content:""}/*# sourceMappingURL=beathers-icons.min.css.map */
1
+ @font-face{font-family:"beathers";src:url("../public/fonts/beathers.woff") format("woff")}.be{font-family:"beathers",system-ui;font-size:1em;width:1em;height:1em;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.be.be-cart:before{content:""}.be.be-share:before{content:""}.be.be-tag-1:before{content:""}.be.be-facebook-messenger:before{content:""}.be.be-arrow-corner-up-left:before{content:""}.be.be-fastword:before{content:""}.be.be-tiktok:before{content:""}.be.be-database:before{content:""}.be.be-syrian-pound:before{content:""}.be.be-user-check:before{content:""}.be.be-server:before{content:""}.be.be-car:before{content:""}.be.be-times:before{content:""}.be.be-apple-store:before{content:""}.be.be-arrow-circle-up:before{content:""}.be.be-login:before{content:""}.be.be-settings:before{content:""}.be.be-instagram:before{content:""}.be.be-sun:before{content:""}.be.be-arrow-corner-left-up:before{content:""}.be.be-star-Half:before{content:""}.be.be-img:before{content:""}.be.be-gender:before{content:""}.be.be-amazon-payment:before{content:""}.be.be-pintrest:before{content:""}.be.be-arrow-droplist-down:before{content:""}.be.be-apple-pay:before{content:""}.be.be-whatsapp:before{content:""}.be.be-arrow-droplist-up:before{content:""}.be.be-pause:before{content:""}.be.be-arrow-corner-right-up:before{content:""}.be.be-save:before{content:""}.be.be-star:before{content:""}.be.be-arrow-corner-down-right:before{content:""}.be.be-moon:before{content:""}.be.be-arrow-classic-down-left:before{content:""}.be.be-logout:before{content:""}.be.be-certificate:before{content:""}.be.be-repeat:before{content:""}.be.be-rotate:before{content:""}.be.be-warning:before{content:""}.be.be-wallet:before{content:""}.be.be-headset:before{content:""}.be.be-plus:before{content:""}.be.be-double-check:before{content:""}.be.be-lock-opened:before{content:""}.be.be-arrow-classic-up-left:before{content:""}.be.be-chili:before{content:""}.be.be-github:before{content:""}.be.be-options:before{content:""}.be.be-volume-up:before{content:""}.be.be-flash:before{content:""}.be.be-usb:before{content:""}.be.be-shield-on:before{content:""}.be.be-copy:before{content:""}.be.be-stop:before{content:""}.be.be-warehouse:before{content:""}.be.be-user-delete:before{content:""}.be.be-target:before{content:""}.be.be-arrow-droplist-right:before{content:""}.be.be-arrow-sign-left:before{content:""}.be.be-check:before{content:""}.be.be-coin:before{content:""}.be.be-print:before{content:""}.be.be-arrow-lite-double-down:before{content:""}.be.be-card:before{content:""}.be.be-stackoverflow:before{content:""}.be.be-face-id:before{content:""}.be.be-signal:before{content:""}.be.be-arrow-droplist-left:before{content:""}.be.be-cart-1:before{content:""}.be.be-behance:before{content:""}.be.be-menu-1:before{content:""}.be.be-user-remove:before{content:""}.be.be-tag:before{content:""}.be.be-receipt:before{content:""}.be.be-check-1:before{content:""}.be.be-medal-1:before{content:""}.be.be-heart-rate:before{content:""}.be.be-coffee-1:before{content:""}.be.be-halal:before{content:""}.be.be-search-1:before{content:""}.be.be-power:before{content:""}.be.be-edit-1:before{content:""}.be.be-arrow-classic-right:before{content:""}.be.be-search:before{content:""}.be.be-phone:before{content:""}.be.be-saudi-riyal:before{content:""}.be.be-time:before{content:""}.be.be-btc:before{content:""}.be.be-play:before{content:""}.be.be-eye-closed:before{content:""}.be.be-shop:before{content:""}.be.be-menu:before{content:""}.be.be-facebook:before{content:""}.be.be-hackerrank:before{content:""}.be.be-gift-opened:before{content:""}.be.be-news:before{content:""}.be.be-medal:before{content:""}.be.be-finger-print:before{content:""}.be.be-Unlink:before{content:""}.be.be-huawei:before{content:""}.be.be-arrow-classic-up-right:before{content:""}.be.be-microsoft:before{content:""}.be.be-pdf:before{content:""}.be.be-dislike:before{content:""}.be.be-snapchat:before{content:""}.be.be-turkish:before{content:""}.be.be-bank:before{content:""}.be.be-home:before{content:""}.be.be-trash:before{content:""}.be.be-thermometer:before{content:""}.be.be-sort-up:before{content:""}.be.be-coffee-2:before{content:""}.be.be-scale-down:before{content:""}.be.be-lang-ar:before{content:""}.be.be-files:before{content:""}.be.be-archive:before{content:""}.be.be-like:before{content:""}.be.be-arrow-classic-down-right:before{content:""}.be.be-timer:before{content:""}.be.be-gold:before{content:""}.be.be-eye-opened:before{content:""}.be.be-arrow-circle-left:before{content:""}.be.be-telegram:before{content:""}.be.be-volume:before{content:""}.be.be-linkedin:before{content:""}.be.be-arrow-corner-down-left:before{content:""}.be.be-download:before{content:""}.be.be-inbox:before{content:""}.be.be-arrow-corner-right-down:before{content:""}.be.be-pin-2:before{content:""}.be.be-game-contraller:before{content:""}.be.be-users:before{content:""}.be.be-volume-down:before{content:""}.be.be-user:before{content:""}.be.be-info:before{content:""}.be.be-pin-1:before{content:""}.be.be-google-play:before{content:""}.be.be-arrow-sign-right:before{content:""}.be.be-ads:before{content:""}.be.be-car-1:before{content:""}.be.be-arrow-corner-left-down:before{content:""}.be.be-arrow-circle-down:before{content:""}.be.be-ship:before{content:""}.be.be-chart-3:before{content:""}.be.be-dribbble:before{content:""}.be.be-arrow-lite-double-right:before{content:""}.be.be-check-2:before{content:""}.be.be-arrow-classic-down:before{content:""}.be.be-question:before{content:""}.be.be-new-tab:before{content:""}.be.be-cart-2:before{content:""}.be.be-arrow-corner-up-right:before{content:""}.be.be-arrow-classic-left:before{content:""}.be.be-octagon:before{content:""}.be.be-rupee:before{content:""}.be.be-usb-1:before{content:""}.be.be-yuan:before{content:""}.be.be-cheeze:before{content:""}.be.be-arrow-lite-double-up:before{content:""}.be.be-dashboard:before{content:""}.be.be-android:before{content:""}.be.be-mail:before{content:""}.be.be-age:before{content:""}.be.be-filters:before{content:""}.be.be-chart-2:before{content:""}.be.be-drop:before{content:""}.be.be-gift-closed:before{content:""}.be.be-euro:before{content:""}.be.be-loading:before{content:""}.be.be-upload:before{content:""}.be.be-arrow-sign-up:before{content:""}.be.be-bell-off:before{content:""}.be.be-passport:before{content:""}.be.be-chart-1:before{content:""}.be.be-user-add:before{content:""}.be.be-edit:before{content:""}.be.be-Chipset:before{content:""}.be.be-youtube:before{content:""}.be.be-arrow-lite-left:before{content:""}.be.be-arrow-sign-down:before{content:""}.be.be-arrow-classic-up:before{content:""}.be.be-white-board:before{content:""}.be.be-grid:before{content:""}.be.be-pounds:before{content:""}.be.be-pin:before{content:""}.be.be-arrow-lite-right:before{content:""}.be.be-shield-off:before{content:""}.be.be-arrow-lite-up:before{content:""}.be.be-scale-up:before{content:""}.be.be-barcode:before{content:""}.be.be-plane:before{content:""}.be.be-quote:before{content:""}.be.be-ruble:before{content:""}.be.be-ice-cream:before{content:""}.be.be-move:before{content:""}.be.be-times-2:before{content:""}.be.be-link-1:before{content:""}.be.be-board:before{content:""}.be.be-mobile:before{content:""}.be.be-arrow-circle-right:before{content:""}.be.be-apple:before{content:""}.be.be-google:before{content:""}.be.be-arrow-outside:before{content:""}.be.be-compare:before{content:""}.be.be-mice:before{content:""}.be.be-cloud:before{content:""}.be.be-times-1:before{content:""}.be.be-calendar:before{content:""}.be.be-twitter:before{content:""}.be.be-motorbike:before{content:""}.be.be-categories:before{content:""}.be.be-app-gallery:before{content:""}.be.be-aws:before{content:""}.be.be-arrow-inside:before{content:""}.be.be-folder:before{content:""}.be.be-x:before{content:""}.be.be-camera:before{content:""}.be.be-minus:before{content:""}.be.be-link:before{content:""}.be.be-box:before{content:""}.be.be-color:before{content:""}.be.be-sort-down:before{content:""}.be.be-settings-1:before{content:""}.be.be-google-pay:before{content:""}.be.be-chart:before{content:""}.be.be-heart:before{content:""}.be.be-doller:before{content:""}.be.be-lock-closed:before{content:""}.be.be-umbrella:before{content:""}.be.be-arrow-lite-double-left:before{content:""}.be.be-gitlab:before{content:""}.be.be-arrow-lite-down:before{content:""}.be.be-bell:before{content:""}.be.be-git:before{content:""}.be.be-paypal:before{content:""}.be.be-coupon:before{content:""}/*# sourceMappingURL=beathers-icons.min.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../src/scss/beathers-icons.min.scss"],"names":[],"mappings":"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","file":"beathers-icons.min.css","sourcesContent":["@use './settings/index' as settings;\r\n\r\n@if (settings.$useIcons) {\r\n $icons: (\r\n 'cart': '\\ea01',\r\n 'share': '\\ea02',\r\n 'tag-1': '\\ea03',\r\n 'facebook-messenger': '\\ea04',\r\n 'arrow-corner-up-left': '\\ea05',\r\n 'fastword': '\\ea06',\r\n 'tiktok': '\\ea07',\r\n 'database': '\\ea08',\r\n 'syrian-pound': '\\ea09',\r\n 'user-check': '\\ea0a',\r\n 'server': '\\ea0b',\r\n 'car': '\\ea0c',\r\n 'times': '\\ea0d',\r\n 'apple-store': '\\ea0e',\r\n 'arrow-circle-up': '\\ea0f',\r\n 'login': '\\ea10',\r\n 'settings': '\\ea11',\r\n 'instagram': '\\ea12',\r\n 'sun': '\\ea13',\r\n 'arrow-corner-left-up': '\\ea14',\r\n 'star-Half': '\\ea15',\r\n 'img': '\\ea16',\r\n 'gender': '\\ea17',\r\n 'amazon-payment': '\\ea18',\r\n 'pintrest': '\\ea19',\r\n 'arrow-droplist-down': '\\ea1a',\r\n 'apple-pay': '\\ea1b',\r\n 'whatsapp': '\\ea1c',\r\n 'arrow-droplist-up': '\\ea1d',\r\n 'pause': '\\ea1e',\r\n 'arrow-corner-right-up': '\\ea1f',\r\n 'save': '\\ea20',\r\n 'star': '\\ea21',\r\n 'arrow-corner-down-right': '\\ea22',\r\n 'moon': '\\ea23',\r\n 'arrow-classic-down-left': '\\ea24',\r\n 'logout': '\\ea25',\r\n 'certificate': '\\ea26',\r\n 'repeat': '\\ea27',\r\n 'rotate': '\\ea28',\r\n 'warning': '\\ea29',\r\n 'wallet': '\\ea2a',\r\n 'headset': '\\ea2b',\r\n 'plus': '\\ea2c',\r\n 'double-check': '\\ea2d',\r\n 'lock-opened': '\\ea2e',\r\n 'arrow-classic-up-left': '\\ea2f',\r\n 'chili': '\\ea30',\r\n 'github': '\\ea31',\r\n 'options': '\\ea32',\r\n 'volume-up': '\\ea33',\r\n 'flash': '\\ea34',\r\n 'usb': '\\ea35',\r\n 'shield-on': '\\ea36',\r\n 'copy': '\\ea37',\r\n 'stop': '\\ea38',\r\n 'warehouse': '\\ea39',\r\n 'user-delete': '\\ea3a',\r\n 'target': '\\ea3b',\r\n 'arrow-droplist-right': '\\ea3c',\r\n 'arrow-sign-left': '\\ea3d',\r\n 'check': '\\ea3e',\r\n 'coin': '\\ea3f',\r\n 'print': '\\ea40',\r\n 'arrow-lite-double-down': '\\ea41',\r\n 'card': '\\ea42',\r\n 'stackoverflow': '\\ea43',\r\n 'face-id': '\\ea44',\r\n 'signal': '\\ea45',\r\n 'arrow-droplist-left': '\\ea46',\r\n 'cart-1': '\\ea47',\r\n 'behance': '\\ea48',\r\n 'menu-1': '\\ea49',\r\n 'user-remove': '\\ea4a',\r\n 'tag': '\\ea4b',\r\n 'receipt': '\\ea4c',\r\n 'check-1': '\\ea4d',\r\n 'medal-1': '\\ea4e',\r\n 'heart-rate': '\\ea4f',\r\n 'coffee-1': '\\ea50',\r\n 'halal': '\\ea51',\r\n 'search-1': '\\ea52',\r\n 'power': '\\ea53',\r\n 'edit-1': '\\ea54',\r\n 'arrow-classic-right': '\\ea55',\r\n 'search': '\\ea56',\r\n 'phone': '\\ea57',\r\n 'saudi-riyal': '\\ea58',\r\n 'time': '\\ea59',\r\n 'btc': '\\ea5a',\r\n 'play': '\\ea5b',\r\n 'eye-closed': '\\ea5c',\r\n 'shop': '\\ea5d',\r\n 'menu': '\\ea5e',\r\n 'facebook': '\\ea5f',\r\n 'hackerrank': '\\ea60',\r\n 'gift-opened': '\\ea61',\r\n 'news': '\\ea62',\r\n 'medal': '\\ea63',\r\n 'finger-print': '\\ea64',\r\n 'Unlink': '\\ea65',\r\n 'huawei': '\\ea66',\r\n 'arrow-classic-up-right': '\\ea67',\r\n 'microsoft': '\\ea68',\r\n 'pdf': '\\ea69',\r\n 'dislike': '\\ea6a',\r\n 'snapchat': '\\ea6b',\r\n 'turkish': '\\ea6c',\r\n 'bank': '\\ea6d',\r\n 'home': '\\ea6e',\r\n 'trash': '\\ea6f',\r\n 'thermometer': '\\ea70',\r\n 'sort-up': '\\ea71',\r\n 'coffee-2': '\\ea72',\r\n 'scale-down': '\\ea73',\r\n 'lang-ar': '\\ea74',\r\n 'files': '\\ea75',\r\n 'archive': '\\ea76',\r\n 'like': '\\ea77',\r\n 'arrow-classic-down-right': '\\ea78',\r\n 'timer': '\\ea79',\r\n 'gold': '\\ea7a',\r\n 'eye-opened': '\\ea7b',\r\n 'arrow-circle-left': '\\ea7c',\r\n 'telegram': '\\ea7d',\r\n 'volume': '\\ea7e',\r\n 'linkedin': '\\ea7f',\r\n 'arrow-corner-down-left': '\\ea80',\r\n 'download': '\\ea81',\r\n 'inbox': '\\ea82',\r\n 'arrow-corner-right-down': '\\ea83',\r\n 'pin-2': '\\ea84',\r\n 'game-contraller': '\\ea85',\r\n 'users': '\\ea86',\r\n 'volume-down': '\\ea87',\r\n 'user': '\\ea88',\r\n 'info': '\\ea89',\r\n 'pin-1': '\\ea8a',\r\n 'google-play': '\\ea8b',\r\n 'arrow-sign-right': '\\ea8c',\r\n 'ads': '\\ea8d',\r\n 'car-1': '\\ea8e',\r\n 'arrow-corner-left-down': '\\ea8f',\r\n 'arrow-circle-down': '\\ea90',\r\n 'ship': '\\ea91',\r\n 'chart-3': '\\ea92',\r\n 'dribbble': '\\ea93',\r\n 'arrow-lite-double-right': '\\ea94',\r\n 'check-2': '\\ea95',\r\n 'arrow-classic-down': '\\ea96',\r\n 'question': '\\ea97',\r\n 'new-tab': '\\ea98',\r\n 'cart-2': '\\ea99',\r\n 'arrow-corner-up-right': '\\ea9a',\r\n 'arrow-classic-left': '\\ea9b',\r\n 'octagon': '\\ea9c',\r\n 'rupee': '\\ea9d',\r\n 'usb-1': '\\ea9e',\r\n 'yuan': '\\ea9f',\r\n 'cheeze': '\\eaa0',\r\n 'arrow-lite-double-up': '\\eaa1',\r\n 'dashboard': '\\eaa2',\r\n 'android': '\\eaa3',\r\n 'mail': '\\eaa4',\r\n 'age': '\\eaa5',\r\n 'filters': '\\eaa6',\r\n 'chart-2': '\\eaa7',\r\n 'drop': '\\eaa8',\r\n 'gift-closed': '\\eaa9',\r\n 'euro': '\\eaaa',\r\n 'loading': '\\eaab',\r\n 'upload': '\\eaac',\r\n 'arrow-sign-up': '\\eaad',\r\n 'bell-off': '\\eaae',\r\n 'passport': '\\eaaf',\r\n 'chart-1': '\\eab0',\r\n 'user-add': '\\eab1',\r\n 'edit': '\\eab2',\r\n 'Chipset': '\\eab3',\r\n 'youtube': '\\eab4',\r\n 'arrow-lite-left': '\\eab5',\r\n 'arrow-sign-down': '\\eab6',\r\n 'arrow-classic-up': '\\eab7',\r\n 'white-board': '\\eab8',\r\n 'grid': '\\eab9',\r\n 'pounds': '\\eaba',\r\n 'pin': '\\eabb',\r\n 'arrow-lite-right': '\\eabc',\r\n 'shield-off': '\\eabd',\r\n 'arrow-lite-up': '\\eabe',\r\n 'scale-up': '\\eabf',\r\n 'barcode': '\\eac0',\r\n 'plane': '\\eac1',\r\n 'quote': '\\eac2',\r\n 'ruble': '\\eac3',\r\n 'ice-cream': '\\eac4',\r\n 'move': '\\eac5',\r\n 'times-2': '\\eac6',\r\n 'link-1': '\\eac7',\r\n 'board': '\\eac8',\r\n 'mobile': '\\eac9',\r\n 'arrow-circle-right': '\\eaca',\r\n 'apple': '\\eacb',\r\n 'google': '\\eacc',\r\n 'arrow-outside': '\\eacd',\r\n 'compare': '\\eace',\r\n 'mice': '\\eacf',\r\n 'cloud': '\\ead0',\r\n 'times-1': '\\ead1',\r\n 'calendar': '\\ead2',\r\n 'twitter': '\\ead3',\r\n 'motorbike': '\\ead4',\r\n 'categories': '\\ead5',\r\n 'app-gallery': '\\ead6',\r\n 'aws': '\\ead7',\r\n 'arrow-inside': '\\ead8',\r\n 'folder': '\\ead9',\r\n 'x': '\\eada',\r\n 'camera': '\\eadb',\r\n 'minus': '\\eadc',\r\n 'link': '\\eadd',\r\n 'box': '\\eade',\r\n 'color': '\\eadf',\r\n 'sort-down': '\\eae0',\r\n 'settings-1': '\\eae1',\r\n 'google-pay': '\\eae2',\r\n 'chart': '\\eae3',\r\n 'heart': '\\eae4',\r\n 'doller': '\\eae5',\r\n 'lock-closed': '\\eae6',\r\n 'umbrella': '\\eae7',\r\n 'arrow-lite-double-left': '\\eae8',\r\n 'gitlab': '\\eae9',\r\n 'arrow-lite-down': '\\eaea',\r\n 'bell': '\\eaeb',\r\n 'git': '\\eaec',\r\n 'paypal': '\\eaed',\r\n 'coupon': '\\eaee',\r\n );\r\n\r\n @font-face {\r\n font-family: 'beathers';\r\n src: url('/fonts/beathers.woff') format('woff');\r\n }\r\n\r\n .be {\r\n font-family: 'beathers', system-ui;\r\n font-size: 1em;\r\n width: 1em;\r\n height: 1em;\r\n font-style: normal;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n\r\n @each $name, $glyph in $icons {\r\n &.be-#{$name}:before {\r\n content: $glyph;\r\n }\r\n }\r\n }\r\n}\r\n"]}
1
+ {"version":3,"sourceRoot":"","sources":["../src/scss/beathers-icons.min.scss"],"names":[],"mappings":"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","file":"beathers-icons.min.css","sourcesContent":["@use './settings/index' as settings;\n\n@if (settings.$useIcons) {\n $icons: (\n 'cart': '\\ea01',\n 'share': '\\ea02',\n 'tag-1': '\\ea03',\n 'facebook-messenger': '\\ea04',\n 'arrow-corner-up-left': '\\ea05',\n 'fastword': '\\ea06',\n 'tiktok': '\\ea07',\n 'database': '\\ea08',\n 'syrian-pound': '\\ea09',\n 'user-check': '\\ea0a',\n 'server': '\\ea0b',\n 'car': '\\ea0c',\n 'times': '\\ea0d',\n 'apple-store': '\\ea0e',\n 'arrow-circle-up': '\\ea0f',\n 'login': '\\ea10',\n 'settings': '\\ea11',\n 'instagram': '\\ea12',\n 'sun': '\\ea13',\n 'arrow-corner-left-up': '\\ea14',\n 'star-Half': '\\ea15',\n 'img': '\\ea16',\n 'gender': '\\ea17',\n 'amazon-payment': '\\ea18',\n 'pintrest': '\\ea19',\n 'arrow-droplist-down': '\\ea1a',\n 'apple-pay': '\\ea1b',\n 'whatsapp': '\\ea1c',\n 'arrow-droplist-up': '\\ea1d',\n 'pause': '\\ea1e',\n 'arrow-corner-right-up': '\\ea1f',\n 'save': '\\ea20',\n 'star': '\\ea21',\n 'arrow-corner-down-right': '\\ea22',\n 'moon': '\\ea23',\n 'arrow-classic-down-left': '\\ea24',\n 'logout': '\\ea25',\n 'certificate': '\\ea26',\n 'repeat': '\\ea27',\n 'rotate': '\\ea28',\n 'warning': '\\ea29',\n 'wallet': '\\ea2a',\n 'headset': '\\ea2b',\n 'plus': '\\ea2c',\n 'double-check': '\\ea2d',\n 'lock-opened': '\\ea2e',\n 'arrow-classic-up-left': '\\ea2f',\n 'chili': '\\ea30',\n 'github': '\\ea31',\n 'options': '\\ea32',\n 'volume-up': '\\ea33',\n 'flash': '\\ea34',\n 'usb': '\\ea35',\n 'shield-on': '\\ea36',\n 'copy': '\\ea37',\n 'stop': '\\ea38',\n 'warehouse': '\\ea39',\n 'user-delete': '\\ea3a',\n 'target': '\\ea3b',\n 'arrow-droplist-right': '\\ea3c',\n 'arrow-sign-left': '\\ea3d',\n 'check': '\\ea3e',\n 'coin': '\\ea3f',\n 'print': '\\ea40',\n 'arrow-lite-double-down': '\\ea41',\n 'card': '\\ea42',\n 'stackoverflow': '\\ea43',\n 'face-id': '\\ea44',\n 'signal': '\\ea45',\n 'arrow-droplist-left': '\\ea46',\n 'cart-1': '\\ea47',\n 'behance': '\\ea48',\n 'menu-1': '\\ea49',\n 'user-remove': '\\ea4a',\n 'tag': '\\ea4b',\n 'receipt': '\\ea4c',\n 'check-1': '\\ea4d',\n 'medal-1': '\\ea4e',\n 'heart-rate': '\\ea4f',\n 'coffee-1': '\\ea50',\n 'halal': '\\ea51',\n 'search-1': '\\ea52',\n 'power': '\\ea53',\n 'edit-1': '\\ea54',\n 'arrow-classic-right': '\\ea55',\n 'search': '\\ea56',\n 'phone': '\\ea57',\n 'saudi-riyal': '\\ea58',\n 'time': '\\ea59',\n 'btc': '\\ea5a',\n 'play': '\\ea5b',\n 'eye-closed': '\\ea5c',\n 'shop': '\\ea5d',\n 'menu': '\\ea5e',\n 'facebook': '\\ea5f',\n 'hackerrank': '\\ea60',\n 'gift-opened': '\\ea61',\n 'news': '\\ea62',\n 'medal': '\\ea63',\n 'finger-print': '\\ea64',\n 'Unlink': '\\ea65',\n 'huawei': '\\ea66',\n 'arrow-classic-up-right': '\\ea67',\n 'microsoft': '\\ea68',\n 'pdf': '\\ea69',\n 'dislike': '\\ea6a',\n 'snapchat': '\\ea6b',\n 'turkish': '\\ea6c',\n 'bank': '\\ea6d',\n 'home': '\\ea6e',\n 'trash': '\\ea6f',\n 'thermometer': '\\ea70',\n 'sort-up': '\\ea71',\n 'coffee-2': '\\ea72',\n 'scale-down': '\\ea73',\n 'lang-ar': '\\ea74',\n 'files': '\\ea75',\n 'archive': '\\ea76',\n 'like': '\\ea77',\n 'arrow-classic-down-right': '\\ea78',\n 'timer': '\\ea79',\n 'gold': '\\ea7a',\n 'eye-opened': '\\ea7b',\n 'arrow-circle-left': '\\ea7c',\n 'telegram': '\\ea7d',\n 'volume': '\\ea7e',\n 'linkedin': '\\ea7f',\n 'arrow-corner-down-left': '\\ea80',\n 'download': '\\ea81',\n 'inbox': '\\ea82',\n 'arrow-corner-right-down': '\\ea83',\n 'pin-2': '\\ea84',\n 'game-contraller': '\\ea85',\n 'users': '\\ea86',\n 'volume-down': '\\ea87',\n 'user': '\\ea88',\n 'info': '\\ea89',\n 'pin-1': '\\ea8a',\n 'google-play': '\\ea8b',\n 'arrow-sign-right': '\\ea8c',\n 'ads': '\\ea8d',\n 'car-1': '\\ea8e',\n 'arrow-corner-left-down': '\\ea8f',\n 'arrow-circle-down': '\\ea90',\n 'ship': '\\ea91',\n 'chart-3': '\\ea92',\n 'dribbble': '\\ea93',\n 'arrow-lite-double-right': '\\ea94',\n 'check-2': '\\ea95',\n 'arrow-classic-down': '\\ea96',\n 'question': '\\ea97',\n 'new-tab': '\\ea98',\n 'cart-2': '\\ea99',\n 'arrow-corner-up-right': '\\ea9a',\n 'arrow-classic-left': '\\ea9b',\n 'octagon': '\\ea9c',\n 'rupee': '\\ea9d',\n 'usb-1': '\\ea9e',\n 'yuan': '\\ea9f',\n 'cheeze': '\\eaa0',\n 'arrow-lite-double-up': '\\eaa1',\n 'dashboard': '\\eaa2',\n 'android': '\\eaa3',\n 'mail': '\\eaa4',\n 'age': '\\eaa5',\n 'filters': '\\eaa6',\n 'chart-2': '\\eaa7',\n 'drop': '\\eaa8',\n 'gift-closed': '\\eaa9',\n 'euro': '\\eaaa',\n 'loading': '\\eaab',\n 'upload': '\\eaac',\n 'arrow-sign-up': '\\eaad',\n 'bell-off': '\\eaae',\n 'passport': '\\eaaf',\n 'chart-1': '\\eab0',\n 'user-add': '\\eab1',\n 'edit': '\\eab2',\n 'Chipset': '\\eab3',\n 'youtube': '\\eab4',\n 'arrow-lite-left': '\\eab5',\n 'arrow-sign-down': '\\eab6',\n 'arrow-classic-up': '\\eab7',\n 'white-board': '\\eab8',\n 'grid': '\\eab9',\n 'pounds': '\\eaba',\n 'pin': '\\eabb',\n 'arrow-lite-right': '\\eabc',\n 'shield-off': '\\eabd',\n 'arrow-lite-up': '\\eabe',\n 'scale-up': '\\eabf',\n 'barcode': '\\eac0',\n 'plane': '\\eac1',\n 'quote': '\\eac2',\n 'ruble': '\\eac3',\n 'ice-cream': '\\eac4',\n 'move': '\\eac5',\n 'times-2': '\\eac6',\n 'link-1': '\\eac7',\n 'board': '\\eac8',\n 'mobile': '\\eac9',\n 'arrow-circle-right': '\\eaca',\n 'apple': '\\eacb',\n 'google': '\\eacc',\n 'arrow-outside': '\\eacd',\n 'compare': '\\eace',\n 'mice': '\\eacf',\n 'cloud': '\\ead0',\n 'times-1': '\\ead1',\n 'calendar': '\\ead2',\n 'twitter': '\\ead3',\n 'motorbike': '\\ead4',\n 'categories': '\\ead5',\n 'app-gallery': '\\ead6',\n 'aws': '\\ead7',\n 'arrow-inside': '\\ead8',\n 'folder': '\\ead9',\n 'x': '\\eada',\n 'camera': '\\eadb',\n 'minus': '\\eadc',\n 'link': '\\eadd',\n 'box': '\\eade',\n 'color': '\\eadf',\n 'sort-down': '\\eae0',\n 'settings-1': '\\eae1',\n 'google-pay': '\\eae2',\n 'chart': '\\eae3',\n 'heart': '\\eae4',\n 'doller': '\\eae5',\n 'lock-closed': '\\eae6',\n 'umbrella': '\\eae7',\n 'arrow-lite-double-left': '\\eae8',\n 'gitlab': '\\eae9',\n 'arrow-lite-down': '\\eaea',\n 'bell': '\\eaeb',\n 'git': '\\eaec',\n 'paypal': '\\eaed',\n 'coupon': '\\eaee',\n );\n\n @font-face {\n font-family: 'beathers';\n src: url('../public/fonts/beathers.woff') format('woff');\n }\n\n .be {\n font-family: 'beathers', system-ui;\n font-size: 1em;\n width: 1em;\n height: 1em;\n font-style: normal;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n\n @each $name, $glyph in $icons {\n &.be-#{$name}:before {\n content: $glyph;\n }\n }\n }\n}\n"]}