beathers 5.2.2 → 5.3.1

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 (66) hide show
  1. package/CHANGELOG +119 -0
  2. package/dist/css/beathers-icons.min.css +1 -1
  3. package/dist/css/beathers-icons.min.css.map +1 -1
  4. package/dist/css/beathers.min.css +2 -2
  5. package/dist/css/beathers.min.css.map +1 -1
  6. package/dist/data/colors.d.ts +10 -0
  7. package/dist/data/colors.js +54 -0
  8. package/dist/data/font.d.ts +4 -0
  9. package/dist/data/font.js +32 -0
  10. package/dist/data/index.d.ts +3 -0
  11. package/dist/data/index.js +2 -0
  12. package/dist/index.d.ts +5 -2
  13. package/dist/index.js +4 -1
  14. package/dist/scripts/cli.d.ts +1 -0
  15. package/dist/scripts/cli.js +7 -220
  16. package/dist/scripts/commands/build.d.ts +2 -0
  17. package/dist/scripts/commands/build.js +128 -0
  18. package/dist/scripts/commands/colors.d.ts +5 -0
  19. package/dist/scripts/commands/colors.js +140 -0
  20. package/dist/scripts/commands/fonts.d.ts +4 -0
  21. package/dist/scripts/commands/fonts.js +124 -0
  22. package/dist/scripts/commands/help.d.ts +2 -0
  23. package/dist/scripts/commands/help.js +42 -0
  24. package/dist/scripts/commands/index.d.ts +14 -0
  25. package/dist/scripts/commands/index.js +95 -0
  26. package/dist/scripts/commands/init.d.ts +2 -0
  27. package/dist/scripts/commands/init.js +129 -0
  28. package/dist/scripts/commands/list.d.ts +3 -0
  29. package/dist/scripts/commands/list.js +29 -0
  30. package/dist/scripts/commands/version.d.ts +2 -0
  31. package/dist/scripts/commands/version.js +13 -0
  32. package/dist/scripts/helpers/BuildScssVariables.d.ts +3 -0
  33. package/dist/scripts/{BuildScssVariables.js → helpers/BuildScssVariables.js} +4 -4
  34. package/dist/scripts/{CallNewVariables.d.ts → helpers/CallNewVariables.d.ts} +1 -0
  35. package/dist/scripts/{LoadUserConfigs.d.ts → helpers/LoadUserConfigs.d.ts} +2 -1
  36. package/dist/scripts/{Merge.d.ts → helpers/Merge.d.ts} +2 -1
  37. package/dist/scripts/{ReadDefaultValues.d.ts → helpers/ReadDefaultValues.d.ts} +2 -1
  38. package/dist/scripts/{ReadDefaultValues.js → helpers/ReadDefaultValues.js} +6 -2
  39. package/dist/scripts/helpers/index.d.ts +6 -0
  40. package/dist/scripts/helpers/index.js +5 -0
  41. package/dist/scripts/types.d.ts +42 -4
  42. package/dist/scripts/types.js +1 -0
  43. package/package.json +90 -80
  44. package/readme.md +30 -1
  45. package/src/scss/_variables.scss +1 -305
  46. package/src/scss/beathers-icons.min.scss +245 -245
  47. package/src/scss/beathers.min.scss +2 -4
  48. package/src/scss/functions/_colors.scss +79 -68
  49. package/src/scss/functions/_mediaQueries.scss +22 -12
  50. package/src/scss/functions/_others.scss +31 -22
  51. package/src/scss/functions/_typographic.scss +11 -2
  52. package/src/scss/functions/_validations.scss +38 -43
  53. package/src/scss/settings/_configs.scss +1 -72
  54. package/src/scss/settings/_defaults.scss +139 -212
  55. package/src/scss/style/_colors.scss +39 -23
  56. package/src/scss/style/_grid.scss +23 -25
  57. package/src/scss/style/_resets.scss +119 -0
  58. package/src/scss/style/_shaping.scss +142 -89
  59. package/src/scss/style/_typographic.scss +79 -36
  60. package/dist/scripts/BuildScssVariables.d.ts +0 -2
  61. package/dist/scripts/BuildTheme.d.ts +0 -1
  62. package/dist/scripts/BuildTheme.js +0 -75
  63. package/src/scss/settings/_resets.scss +0 -103
  64. /package/dist/scripts/{CallNewVariables.js → helpers/CallNewVariables.js} +0 -0
  65. /package/dist/scripts/{LoadUserConfigs.js → helpers/LoadUserConfigs.js} +0 -0
  66. /package/dist/scripts/{Merge.js → helpers/Merge.js} +0 -0
package/CHANGELOG ADDED
@@ -0,0 +1,119 @@
1
+ # Changelog
2
+
3
+ ## [5.3.1] - 2025-06-12
4
+
5
+ ### Fixed
6
+
7
+ - **Module exports**: Fixed TypeScript path aliases in npm package exports to use relative paths for proper module resolution
8
+
9
+ ## [5.3.0] - 2025-06-12
10
+
11
+ ### Added
12
+
13
+ - **Custom output path**: Added support for custom output path in build command for more flexible project structures
14
+ - **Import commands**: New CLI import commands for colors and fonts to streamline workflow
15
+ - **Enhanced console messaging**: Improved console.log messages across all commands for better user experience and clarity
16
+ - **Type definitions enhancement**: Extended type definitions for typography and settings with new properties for font configurations, grid settings, and utility features
17
+
18
+ ### Changed
19
+
20
+ - **Code organization**: Moved functions to helper folder for better code structure and maintainability
21
+ - **CLI cleanup**: Cleaned up CLI file structure for improved readability and maintenance
22
+ - **Build script refactoring**: Refactored build scripts and removed stylelint configuration
23
+ - **Path mapping**: Improved module importing with better path mapping
24
+
25
+ ### Fixed
26
+
27
+ - **Colors commands**: Fixed `add`, `remove` and `import` commands for colors
28
+ - **Fonts commands**: Fixed `add`, `remove` and `import` commands for fonts
29
+ - **Colors duplication**: Resolved issues with color duplication
30
+ - **Default colors reading**: Fixed reading of default color values
31
+ - **Help functions**: Updated and improved help command functions
32
+
33
+ ## [5.2.2] - 2025-06-05
34
+
35
+ ### Fixed
36
+
37
+ - **README logo display**: Updated logo image source to use unpkg CDN for better compatibility and reliability on npm package page
38
+
39
+ ## [5.2.1] - 2025-06-05
40
+
41
+ ### Fixed
42
+
43
+ - **ES module compatibility**: Fixed config loading to use `pathToFileURL` for better compatibility with ES modules
44
+ - **Import resolution**: Enhanced module import handling in `LoadUserConfigs.ts` for cross-platform compatibility
45
+
46
+ ## [5.2.0] - 2025-06-05
47
+
48
+ ### Added
49
+
50
+ - **Enhanced theme building system**: Complete refactor of `ReadDefaultValues.ts` with improved SCSS variable parsing
51
+ - **Better default theme loading**: Added proper merging of default values with user configurations in `BuildTheme.ts`
52
+ - **Improved type definitions**: Consolidated and organized type exports in `types.ts` for better developer experience
53
+ - **Enhanced configuration handling**: Better support for nullish coalescing in `LoadUserConfigs.ts`
54
+ - **More robust SCSS parsing**: Enhanced parsing logic for colors, fonts, breakpoints, and wrappers
55
+ - **Better wrapper configuration**: Fixed wrapper property structure (size → width) for consistency
56
+
57
+ ### Changed
58
+
59
+ - **Type system overhaul**: Moved from separate type exports to consolidated type definitions
60
+ - **Better configuration merging**: Enhanced default theme loading and user config integration
61
+ - **Improved code organization**: More consistent code structure across TypeScript files
62
+ - **Enhanced error handling**: Better validation and error messages in configuration loading
63
+
64
+ ### Fixed
65
+
66
+ - **Configuration parsing bugs**: Fixed various issues with SCSS variable parsing
67
+ - **Type consistency**: Resolved type mismatches between different modules
68
+ - **Wrapper configuration**: Fixed property naming inconsistency in wrapper settings
69
+
70
+ ## [5.1.1] - 2025-06-05
71
+
72
+ ### Fixed
73
+
74
+ - Small bug fixes and improvements
75
+
76
+ ## [5.1.0] - 2025-06-05
77
+
78
+ ### Added
79
+
80
+ - Enhanced CSS utility documentation in README
81
+ - Comprehensive configuration examples for TypeScript users
82
+ - Improved color utility system with better dark/light mode support
83
+ - Font weight and size utility examples
84
+
85
+ ### Changed
86
+
87
+ - Updated README with detailed configuration tables
88
+ - Improved TypeScript configuration examples
89
+ - Enhanced documentation structure and readability
90
+
91
+ ### Fixed
92
+
93
+ - Configuration file format consistency
94
+ - TypeScript type definitions alignment
95
+
96
+ ## [5.0.0] - Initial Release
97
+
98
+ ### Added
99
+
100
+ - Core SCSS framework with utility-first approach
101
+ - Interactive CLI tool for theme configuration
102
+ - Comprehensive color system with light/dark variants
103
+ - Typography utilities with customizable font families and sizes
104
+ - Responsive grid system with 12-column layout
105
+ - Flexbox utilities for modern layouts
106
+ - Spacing utilities with customizable gutters
107
+ - Border and border-radius utilities
108
+ - Shadow and blur effects
109
+ - Position and sizing utilities
110
+ - Opacity and overflow utilities
111
+ - Transition utilities for smooth animations
112
+ - Display utilities for various layout needs
113
+ - Container/wrapper utilities for responsive layouts
114
+ - Icon integration support
115
+ - Complete customization through configuration files
116
+ - Support for JSON, JS, and TypeScript config formats
117
+ - CSS custom properties (CSS variables) generation
118
+ - Media query utilities for responsive design
119
+ - 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 !important;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("/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$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@if (settings.$useIcons) {\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 !important;\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;\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"]}