elementa-icons 1.21.0 → 1.23.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/README.md +75 -0
  2. package/dist/icons/food-beverage/BeerMug.js +14 -0
  3. package/dist/icons/food-beverage/Cake.js +14 -0
  4. package/dist/icons/food-beverage/Cutlery.js +14 -0
  5. package/dist/icons/food-beverage/FoodTiffin.js +14 -0
  6. package/dist/icons/food-beverage/GreenTea.js +14 -0
  7. package/dist/icons/food-beverage/PotatoChips.js +80 -0
  8. package/dist/icons/food-beverage/index.js +7 -1
  9. package/dist/icons/household/Appliances.js +24 -0
  10. package/dist/icons/household/index.js +2 -1
  11. package/dist/icons/sports/Basketball.js +14 -0
  12. package/dist/icons/sports/index.js +2 -1
  13. package/dist/icons/transportation/Car1.js +14 -0
  14. package/dist/icons/transportation/Car2.js +13 -0
  15. package/dist/icons/transportation/CarService.js +13 -0
  16. package/dist/icons/transportation/FuelDispenserNozzle.js +13 -0
  17. package/dist/icons/transportation/Parking.js +13 -0
  18. package/dist/icons/transportation/Train.js +17 -0
  19. package/dist/icons/transportation/Tram.js +13 -0
  20. package/dist/index.esm.js +1 -1
  21. package/dist/index.js +6 -14
  22. package/dist/types/icons/food-beverage/BeerMug.d.ts +6 -0
  23. package/dist/types/icons/food-beverage/Cake.d.ts +6 -0
  24. package/dist/types/icons/food-beverage/Cutlery.d.ts +6 -0
  25. package/dist/types/icons/food-beverage/FoodTiffin.d.ts +6 -0
  26. package/dist/types/icons/food-beverage/GreenTea.d.ts +6 -0
  27. package/dist/types/icons/food-beverage/PotatoChips.d.ts +6 -0
  28. package/dist/types/icons/food-beverage/index.d.ts +7 -1
  29. package/dist/types/icons/household/Appliances.d.ts +6 -0
  30. package/dist/types/icons/household/index.d.ts +2 -1
  31. package/dist/types/icons/sports/Basketball.d.ts +6 -0
  32. package/dist/types/icons/sports/index.d.ts +2 -1
  33. package/dist/types/icons/transportation/Car1.d.ts +6 -0
  34. package/dist/types/icons/transportation/Car2.d.ts +6 -0
  35. package/dist/types/icons/transportation/CarService.d.ts +6 -0
  36. package/dist/types/icons/transportation/FuelDispenserNozzle.d.ts +6 -0
  37. package/dist/types/icons/transportation/Parking.d.ts +6 -0
  38. package/dist/types/icons/transportation/Train.d.ts +6 -0
  39. package/dist/types/icons/transportation/Tram.d.ts +6 -0
  40. package/dist/types/index.d.ts +6 -6
  41. package/package.json +2 -2
  42. package/src/index.ts +22 -14
package/README.md ADDED
@@ -0,0 +1,75 @@
1
+ ![](https://storage.googleapis.com/elementa-icons/logo-big.svg)
2
+ <p align="center">
3
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
4
+ <a href="https://badge.fury.io/js/elementa-icons"><img src="https://badge.fury.io/js/elementa-icons.svg" alt="npm version"></a>
5
+ <a href="https://github.com/YOUR_GITHUB_ORG/YOUR_GITHUB_REPO/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"></a>
6
+ </p>
7
+
8
+ ---
9
+ Elementa is a free and open-source icon library with over 200 icons. In a world, where every second day we have a new icon library, Elementa tries to provide a unique flavor to its design ideology which is fun, playful, and on-point.
10
+
11
+ Elementa is open to be used in personal and commercial projects, be it digital or non-digital enabling developers and designers to create beautiful apps and end-user experience rather than a new icon library.
12
+
13
+ ---
14
+
15
+ **NOTE:** Please support active development of Elementa icon library by sponsoring us. Please visit https://elementa.dev/donate
16
+
17
+ ---
18
+
19
+ ## ✨ **Key Features:**
20
+ * **Extensive Collection:** Hundreds of meticulously crafted icons covering a wide range of categories.
21
+ * **Fully Customizable:** Easily adjust size, color, stroke width, and more to match your brand.
22
+ * **React-Friendly:** Seamless integration with your React projects. More framework support soon to come.
23
+ * **Optimized for Performance:** Lightweight SVG files ensure fast loading times.
24
+ * **Open Source:** Free to use and contribute to!
25
+
26
+ # 🚀 Get Started
27
+ ## Installation
28
+
29
+ ```bash
30
+ npm install elementa-icons
31
+ # or
32
+ yarn add elementa-icons
33
+
34
+ import { MyIcon } from 'elementa-icons';
35
+
36
+ function MyComponent() {
37
+ return <MyIcon color="#007BFF" size="24px" />;
38
+ }
39
+ ```
40
+
41
+ ## 🛠️ Customization
42
+ Elementa Icons are designed to be highly customizable. You can modify the following properties:
43
+
44
+ - **color:** The fill color of the icon.
45
+ - **size:** The width and height of the icon.
46
+ - **strokeWidth:** The thickness of the icon's stroke.
47
+
48
+ Example:
49
+ ```TypeScript
50
+ <MyIcon color="#FF0000" size="32px" strokeWidth="2" />
51
+ ```
52
+
53
+ # ➕ Contributing
54
+ We welcome contributions! Please see our [CONTRIBUTING.md](https://github.com/deriva-inc/elementa-icons/blob/master/CONTRIBUTING) for guidelines on how to add new icons or improve existing ones.
55
+
56
+ # 📜 License
57
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/deriva-inc/elementa-icons/blob/master/LICENSE) file for details.
58
+
59
+ # 🛣️ Future Roadmap
60
+ - Vue support.
61
+ - Solid support.
62
+ - Svelte support.
63
+ - Figma plugin.
64
+ - Figma community file for all icons.
65
+
66
+ # Explore More from deriva
67
+ 1. [tallileo - track, save, share, invest. one app for all](https://tallileo.com)
68
+ 2. [khelo - community driven badminton app for grassroot players](https://khelo.app)
69
+ 3. [claro - personal okr and productivity app](https://claro.deriva.xyz)
70
+ 4. [WhySoSerious - camping videos](https://wss.deriva.xyz)
71
+
72
+ <p align="center">
73
+ Crafted with ❤️ by <a href="https://www.deriva.xyz/">Deriva Technologies Pvt. Ltd.</a>
74
+ </p>
75
+
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a beer mug.
5
+ */
6
+ const BeerMug = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 24 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m3.636 18.024-.58 10.19a2.67 2.67 0 0 0 .727 1.95 2.75 2.75 0 0 0 1.942.87c1.678.048 4.16.14 6.497.182 1.62.03 3.169.025 4.332.034.4-.004.792-.082 1.152-.237.357-.156.688-.378.962-.667.274-.287.491-.617.628-.98.135-.363.207-.749.191-1.142-.087-1.691-.195-4.238-.353-6.858a670 670 0 0 0-.718-10.286.037.037 0 0 0-.075.001s-.303 5.267-.502 10.299c-.104 2.622-.158 5.17-.21 6.864a1.08 1.08 0 0 1-.682.947c-.122.049-.255.071-.39.07-1.164.005-2.713-.004-4.332.02-2.338.036-4.82.123-6.498.165a1.245 1.245 0 0 1-.896-.318 1.322 1.322 0 0 1-.43-.901l-.373-10.199a.196.196 0 1 0-.392-.004" }), _jsx("path", { d: "M6.763 15.556s-.057.533-.13 1.378c-.05.574-.113 1.283-.163 2.067-.028.442-.05.906-.067 1.378-.01.304-.02.612-.019.919q.003.463.022.918a84.397 84.397 0 0 0 .175 2.756c.098 1.233.182 2.068.182 2.068a.121.121 0 0 0 .243 0s.083-.835.183-2.068c.033-.42.068-.883.1-1.378.027-.442.056-.904.074-1.378a23 23 0 0 0 .003-1.837c-.016-.472-.04-.936-.067-1.378-.05-.784-.113-1.493-.163-2.067a73 73 0 0 0-.13-1.378.122.122 0 1 0-.243 0M15.281 15.556s-.057.533-.13 1.378c-.05.574-.113 1.283-.163 2.067-.028.442-.05.906-.067 1.378-.01.304-.02.612-.019.919q.003.463.022.918a84.397 84.397 0 0 0 .175 2.756c.099 1.233.182 2.068.182 2.068a.121.121 0 0 0 .243 0s.084-.835.183-2.068c.033-.42.068-.883.1-1.378.027-.442.056-.904.074-1.378a23 23 0 0 0 .003-1.837c-.016-.472-.039-.936-.067-1.378-.05-.784-.113-1.493-.163-2.067a73 73 0 0 0-.13-1.378.122.122 0 1 0-.243 0M10.95 15.556s-.057.533-.13 1.378c-.05.574-.113 1.283-.163 2.067-.028.442-.05.906-.067 1.378-.01.304-.02.612-.018.919 0 .308.01.615.021.918a84.397 84.397 0 0 0 .175 2.756c.099 1.233.182 2.068.182 2.068a.121.121 0 0 0 .243 0s.084-.835.183-2.068c.033-.42.068-.883.1-1.378.028-.442.056-.904.074-1.378a23 23 0 0 0 .003-1.837c-.016-.472-.039-.936-.067-1.378-.05-.784-.113-1.493-.163-2.067a73 73 0 0 0-.13-1.378.122.122 0 1 0-.243 0M18.554 14.319l2.407.315c.394.047.706.28.938.568.205.255.272.593.239.944-.043.592-.093 1.163-.123 1.72a35 35 0 0 0-.063 1.72c-.004.605.015 1.18.045 1.717.037.627.106 1.196.15 1.717.04.348-.013.688-.211.95-.229.303-.533.557-.936.625l-2.444.451a.037.037 0 0 0-.037.039c.001.02.018.036.04.035l2.466.306c.685.073 1.307-.182 1.809-.58.538-.429.836-1.088.925-1.822v-.003c.046-.522.114-1.093.148-1.72q.047-.808.041-1.72a35 35 0 0 0-.069-1.718c-.031-.555-.083-1.126-.126-1.718-.073-.75-.38-1.425-.92-1.868-.51-.42-1.155-.688-1.863-.619l-2.411.268a.196.196 0 0 0-.198.195.196.196 0 0 0 .193.198" }), _jsx("path", { d: "m12.708 9.574.025 3.835a1.24 1.24 0 0 0 .368.895 1.24 1.24 0 0 0 .886.357h-.011.013c.336-.01.64-.143.854-.368a1.2 1.2 0 0 0 .34-.853l-.07-3.198.001-.039.038-.013c1.146.68 2.126.747 2.91.468.967-.344 1.646-1.216 1.947-2.143a.196.196 0 0 0-.37-.134c-.307.77-.912 1.49-1.752 1.727-.653.185-1.44.052-2.336-.567l-.012-.007a.81.81 0 0 0-.82-.018.83.83 0 0 0-.427.72l-.126 3.202c-.002.047-.03.084-.063.113-.026.025-.062.032-.1.032h-.016l-.091-.055-.021-.093.213-4.13a1.17 1.17 0 0 0-.458-.973 1.191 1.191 0 0 0-1.088-.193c-.066.02-.142.008-.215-.058a1 1 0 0 1-.206-.319.755.755 0 0 0-1.38.074c-.248.611-.52 1.017-.902 1.195-.38.178-.837.072-1.406-.153a.852.852 0 0 0-1.145.863c.034.59-.04 1.177-.487 1.471-.37.244-.932.237-1.739.03a.94.94 0 0 0-1.155.876l-.057 4.24c0-.005-.08.173-.08.173l-.178.068H3.59a.243.243 0 0 1-.243-.245L3.23 9.65a3.46 3.46 0 0 0-.395-1.506l-.013-.024c-.327-.57-.313-1.125.01-1.502.354-.409.972-.61 1.697-.489a.785.785 0 0 0 .93-.866c-.165-1.128.149-2.407 1.25-3.039.84-.482 2.07-.603 3.774-.146.174.052.36.015.5-.098.784-.678 1.9-1.019 2.867-.774.883.223 1.622.93 1.88 2.261a.313.313 0 0 0 .407.247c1.243-.468 2.474-.014 3.238.895.748.89 1.056 2.2.544 3.56-.008.017 0 .04.02.047a.037.037 0 0 0 .048-.02c.65-1.4.398-2.812-.327-3.81-.751-1.033-2.013-1.614-3.367-1.35-.288-1.5-1.173-2.323-2.204-2.658-1.141-.37-2.493-.107-3.54.578-1.97-.606-3.439-.44-4.478.08-1.382.694-2.06 2.055-2.18 3.454-.967.02-1.781.412-2.324.99-.796.845-1.043 2.133-.339 3.494a1.61 1.61 0 0 1 .148.701l-.029 6.685a2.24 2.24 0 0 0 2.241 2.236l.255-.033-.253.032a2.23 2.23 0 0 0 2.066-1.387c.11-.269.17-.559.168-.855l-.032-3.13c.886.027 1.545-.188 2.022-.527.642-.454 1.013-1.156 1.141-1.958.613.067 1.141-.023 1.599-.262.417-.218.793-.563 1.11-1.066q.093.049.184.083c.296.111.589.13.86.081" })] }));
13
+ };
14
+ export default BeerMug;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a cake.
5
+ */
6
+ const Cake = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 27 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m19.934 18.402-16.48-.476a2.72 2.72 0 0 0-1.943.77 2.76 2.76 0 0 0-.839 1.945l-.153 9.042a1.944 1.944 0 0 0 1.934 1.954c1.951.008 6.475.059 11 .048 4.524-.01 9.047-.083 11-.101a1.88 1.88 0 0 0 1.324-.558 1.85 1.85 0 0 0 .539-1.324l-.14-9.061a2.7 2.7 0 0 0-.814-1.908 2.68 2.68 0 0 0-1.908-.763l-1.377.025-.097-5.354a2.5 2.5 0 0 0-.761-1.765 2.47 2.47 0 0 0-1.765-.7l-12 .239a2.2 2.2 0 0 0-1.551.674c-.386.402-.622.95-.609 1.552l.108 5.035c0 .029.023.053.052.053a.053.053 0 0 0 .053-.053l.108-5.035a1.82 1.82 0 0 1 .562-1.277 1.79 1.79 0 0 1 1.277-.498l12 .239c.42.008.794.19 1.064.472.264.275.418.652.41 1.064l-.108 6c0 .35.284.634.634.634l2 .036c.364.006.687.166.922.408.229.238.362.565.356.922l-.14 9.06-.047.092-.091.027c-1.953-.021-6.476-.102-11-.121-4.524-.018-9.048.025-11 .03l-.065-.046-.153-9.042a1.24 1.24 0 0 1 .333-.886 1.27 1.27 0 0 1 .885-.4l16.48-.476a.239.239 0 1 0 0-.477" }), _jsx("path", { d: "M13.041 10.637s.09-.85.165-1.874c.028-.406.055-.836.07-1.25.02-.653.022-1.26.02-1.649l.369-.01.19 4.783a.179.179 0 1 0 .358.002l.258-5.205a.413.413 0 0 0-.412-.414l-1.212-.033a.445.445 0 0 0-.444.446s-.013.977.029 2.083c.015.414.045.843.077 1.25.079 1.022.174 1.872.174 1.872a.179.179 0 1 0 .358 0M13.567 1.088a.12.12 0 0 0-.112-.079.12.12 0 0 0-.113.08s-.393.814-.655 1.628c-.143.448-.231.895-.243 1.202a.996.996 0 0 0 1.01.997.98.98 0 0 0 .694-.305.96.96 0 0 0 .266-.692c-.012-.303-.113-.742-.249-1.187a20 20 0 0 0-.598-1.644m-.102.504c.091.322.214.786.31 1.24.087.412.152.813.14 1.087a.45.45 0 0 1-.149.311.431.431 0 0 1-.722-.31c-.009-.271.066-.666.147-1.072.09-.46.198-.932.274-1.256" })] }));
13
+ };
14
+ export default Cake;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of cutlery.
5
+ */
6
+ const Cutlery = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 32 29", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M3.902 24.472q-.007-.001-.017.007l-.235.235c-.4.398-.6.92-.606 1.444a2.1 2.1 0 0 0 .592 1.484l.142.148a2.13 2.13 0 0 0 1.534.656 2.2 2.2 0 0 0 1.571-.648l13.71-13.754a2.34 2.34 0 0 1 1.69-.682l.24.002a6.742 6.742 0 0 0 4.821-1.971l1.922-1.922a6.77 6.77 0 0 0 1.964-4.767v-.552A3.813 3.813 0 0 0 27.395.343l-.469.004a6.78 6.78 0 0 0-4.818 2.056l-1.888 1.964a6.66 6.66 0 0 0-1.87 4.731l.003.22a2.362 2.362 0 0 1-.728 1.756L4.168 24.011a.196.196 0 0 0 .265.29L18.46 11.98a3.649 3.649 0 0 0 1.212-2.663l.004-.22a5.35 5.35 0 0 1 1.59-3.699l1.94-1.913a5.202 5.202 0 0 1 3.721-1.513l.47.004c.6.003 1.14.252 1.533.646.391.393.633.934.633 1.533l.001.551a5.2 5.2 0 0 1-.37 1.958 5.2 5.2 0 0 1-1.08 1.682l-1.875 1.967a5.28 5.28 0 0 1-3.721 1.646l-.24.004a3.68 3.68 0 0 0-2.63 1.18L6.568 27.498a1.81 1.81 0 0 1-1.977.48 1.9 1.9 0 0 1-.622-.384l-.15-.139a1.88 1.88 0 0 1-.598-1.3 1.92 1.92 0 0 1 .496-1.377l.22-.263c-.018-.066-.033-.06-.036-.044" }), _jsx("path", { d: "m27.728 24.011-8.774-8.763a.712.712 0 0 0-.963 1.048l9.472 8.004a.196.196 0 0 0 .265-.289M8.675 5.957l-.179.191a.29.29 0 0 1-.33.072.3.3 0 0 1-.1-.067L5.054 2.975a1.054 1.054 0 0 0-1.529 0l-.28.3a1.045 1.045 0 0 0 .003 1.434l3 3.127a.575.575 0 0 1 .09.684L3.39 5.713a1.76 1.76 0 0 0-2.482.041.82.82 0 0 0-.019 1.13L4.72 11.07a6.533 6.533 0 0 0 4.755 2.132l.138.002a2.45 2.45 0 0 1 1.754.78l1.61 1.716a.585.585 0 0 0 .845-.807l-1.637-1.689a3.55 3.55 0 0 0-2.568-1.082l-.138.001a5.45 5.45 0 0 1-4.022-1.733L1.69 6.34a.8.8 0 0 1 1.027.074l3.04 2.944a.87.87 0 0 0 1.235-.028h.001a1.6 1.6 0 0 0 .002-2.202l-2.933-3.13.22-.23 2.94 3.176a1.45 1.45 0 0 0 1.057.466 1.466 1.466 0 0 0 1.069-.452l.585-.608a.59.59 0 0 0 .16-.418.6.6 0 0 0-.178-.41l-3.106-3.2a.64.64 0 0 1-.146-.65l3.863 3.682A5.3 5.3 0 0 1 12.17 9.23v.088a3.725 3.725 0 0 0 1.19 2.748l1.883 1.756a.75.75 0 1 0 1.015-1.104l-1.909-1.73a2.284 2.284 0 0 1-.75-1.67V9.23a6.69 6.69 0 0 0-2.14-4.867L7.286.494a.98.98 0 0 0-1.365.024V.52a1.9 1.9 0 0 0 0 2.677z" }), _jsx("path", { d: "M15.792 18.633s2.154 2.242 4.547 4.644c1.655 1.661 3.432 3.385 4.628 4.565a2.27 2.27 0 0 0 1.616.651 2.19 2.19 0 0 0 1.556-.682l.14-.149a2.12 2.12 0 0 0 .585-1.504 2.06 2.06 0 0 0-.62-1.442l-.238-.232c-.025-.024-.048.024-.048.024-.017-.059-.03-.046-.03-.029a.03.03 0 0 0 .03.03l.223.267c.348.394.507.891.481 1.38a1.87 1.87 0 0 1-.605 1.28l-.15.138a1.798 1.798 0 0 1-1.316.47 1.752 1.752 0 0 1-1.217-.589c-1.12-1.25-2.758-3.11-4.338-4.843-2.284-2.506-4.419-4.764-4.419-4.764a.569.569 0 1 0-.825.785" })] }));
13
+ };
14
+ export default Cutlery;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a food tiffin.
5
+ */
6
+ const FoodTiffin = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 23 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m2.11 24.332-.262 3.315c-.05.695.218 1.328.64 1.815.442.509 1.09.812 1.815.864 1.166.064 2.736.175 4.464.246.96.04 1.968.076 2.975.08a66 66 0 0 0 2.976-.054c1.729-.07 3.297-.21 4.464-.285.348-.028.686-.105.99-.261a2.6 2.6 0 0 0 .794-.608c.212-.255.384-.534.48-.846.093-.302.141-.616.11-.937l-.335-3.358a.037.037 0 0 0-.037-.037.037.037 0 0 0-.037.037l-.335 3.358c-.02.212-.096.41-.194.594a1.53 1.53 0 0 1-.894.712 1.4 1.4 0 0 1-.541.041c-1.167-.077-2.734-.219-4.463-.293a66 66 0 0 0-2.976-.06 80 80 0 0 0-2.976.076c-1.727.068-3.298.176-4.464.238-.381.027-.744-.077-1.011-.31-.289-.25-.5-.6-.529-1.012l-.262-3.315a.197.197 0 0 0-.393 0M2.502 9.727l.173-1.96c.036-.434.262-.798.57-1.06.282-.24.66-.348 1.06-.318 1.167.074 2.735.2 4.463.28.961.046 1.968.08 2.976.091q.749.008 1.488-.011a44 44 0 0 0 1.488-.065c1.73-.103 3.295-.252 4.464-.342a1.548 1.548 0 0 1 1.528.782c.107.197.186.407.21.633l.225 1.992a.037.037 0 1 0 .074 0l.226-1.992a2.3 2.3 0 0 0-.096-.898 2.425 2.425 0 0 0-1.207-1.423 2.5 2.5 0 0 0-.961-.264c-1.168-.088-2.734-.234-4.464-.336a43 43 0 0 0-2.976-.072 85 85 0 0 0-2.976.095c-1.728.082-3.297.211-4.463.286-.708.055-1.34.353-1.766.855-.406.477-.657 1.094-.601 1.767l.173 1.96a.196.196 0 0 0 .392 0M2.814 22.507s.005-.86-.059-1.835c-.083-1.288-.27-2.754-.27-2.754h-.358s-.187 1.466-.27 2.754c-.064.974-.059 1.835-.059 1.835zM2.814 16.12s.005-.861-.059-1.836c-.083-1.287-.27-2.753-.27-2.753h-.358s-.187 1.466-.27 2.753c-.064.975-.059 1.836-.059 1.836zM21.693 22.525s.005-.87-.059-1.854c-.083-1.3-.27-2.782-.27-2.782h-.358s-.187 1.481-.27 2.782c-.064.984-.059 1.854-.059 1.854zM21.693 16.137s.005-.87-.059-1.854c-.083-1.3-.27-2.782-.27-2.782h-.358s-.187 1.482-.27 2.782c-.064.984-.059 1.854-.059 1.854z" }), _jsx("path", { d: "M19.337 22.508 2.209 22.17a1.3 1.3 0 0 0-.473.088 1.25 1.25 0 0 0-.678.664q-.097.225-.101.476a1.24 1.24 0 0 0 .358.893 1.26 1.26 0 0 0 .894.38c1.308.017 3.933.067 6.861.088 1.492.01 3.062.019 4.575.008a186 186 0 0 0 3.05-.046c1.974-.046 3.631-.113 4.575-.141a1.113 1.113 0 0 0 1.086-1.146l-.003-.07a1.08 1.08 0 0 0-.339-.746 1.05 1.05 0 0 0-.745-.278l-1.587.084a.101.101 0 0 0 0 .202l1.587.08a.65.65 0 0 1 .445.214.62.62 0 0 1 .154.443l-.003.07a.6.6 0 0 1-.196.4.56.56 0 0 1-.399.136c-.944-.028-2.601-.095-4.575-.14-.958-.023-1.99-.04-3.05-.047-1.513-.01-3.083-.003-4.575.008-2.928.021-5.553.071-6.861.087a.47.47 0 0 1-.346-.133.5.5 0 0 1-.155-.346.503.503 0 0 1 .302-.48.5.5 0 0 1 .199-.044l17.128-.333q.016-.002.017-.017a.02.02 0 0 0-.017-.017M19.346 16.12l-17.128-.336a1.23 1.23 0 0 0-.877.352 1.25 1.25 0 0 0-.376.877q-.002.252.09.482a1.26 1.26 0 0 0 .677.69q.23.097.486.101c1.307.017 3.93.066 6.855.088 1.49.01 3.058.017 4.57.008a185 185 0 0 0 3.047-.048c1.967-.045 3.621-.112 4.57-.142.317-.014.603-.144.8-.362a1.1 1.1 0 0 0 .302-.8l-.001-.034c-.014-.3-.14-.57-.344-.757a1.05 1.05 0 0 0-.757-.283l-1.52.08a.1.1 0 0 0-.102.1c0 .057.046.101.102.101l1.52.08a.67.67 0 0 1 .459.22c.11.12.167.283.16.459l-.002.034a.6.6 0 0 1-.202.415.57.57 0 0 1-.415.14c-.949-.029-2.603-.096-4.57-.141a185 185 0 0 0-3.046-.047 339 339 0 0 0-4.57.008c-2.926.021-5.55.07-6.856.087a.48.48 0 0 1-.347-.133.5.5 0 0 1-.154-.346.52.52 0 0 1 .302-.48.5.5 0 0 1 .199-.044l17.128-.335q.015-.002.016-.017-.001-.016-.016-.017M19.346 9.732 2.218 9.396a1.23 1.23 0 0 0-.877.352 1.25 1.25 0 0 0-.376.877q-.002.252.09.482a1.26 1.26 0 0 0 .677.69q.23.098.486.101c1.307.017 3.931.066 6.857.088 1.49.01 3.059.017 4.571.008a185 185 0 0 0 3.048-.048c1.97-.045 3.624-.112 4.572-.142.316-.014.6-.144.796-.36.193-.21.314-.489.3-.796l-.001-.046a1.085 1.085 0 0 0-.342-.752 1.04 1.04 0 0 0-.753-.282l-1.526.08a.1.1 0 0 0-.102.1c0 .057.046.101.102.101l1.526.08a.65.65 0 0 1 .454.219.64.64 0 0 1 .158.454l-.002.046a.6.6 0 0 1-.2.41.56.56 0 0 1-.41.14c-.948-.03-2.602-.097-4.572-.142a185 185 0 0 0-3.048-.047c-1.512-.01-3.08-.003-4.571.008-2.926.021-5.55.07-6.857.087a.48.48 0 0 1-.347-.133.5.5 0 0 1-.154-.346.52.52 0 0 1 .302-.48.5.5 0 0 1 .199-.044l17.128-.335q.015-.002.016-.017-.001-.016-.016-.017M8.625 5.832l-.02-3.009a1.35 1.35 0 0 1 .378-.961 1.38 1.38 0 0 1 .959-.432l3.553-.14a1.54 1.54 0 0 1 1.12.4 1.627 1.627 0 0 1 .526 1.118l.122 3.024a.24.24 0 0 0 .478 0l.122-3.024a2.38 2.38 0 0 0-.651-1.717 2.45 2.45 0 0 0-1.72-.766L9.936.217A2.6 2.6 0 0 0 8.08.962a2.63 2.63 0 0 0-.787 1.861L7.27 5.832a.678.678 0 0 0 1.354 0" }), _jsx("path", { d: "M10.113 24.927q.449.422.89.593.364.139.72.121c.53-.027 1.042-.3 1.537-.792a.06.06 0 0 0 .004-.084.06.06 0 0 0-.085-.004c-.49.407-.975.62-1.459.607a1.6 1.6 0 0 1-.597-.14 2.6 2.6 0 0 1-.775-.545.17.17 0 1 0-.235.244M10.134 18.545q.449.422.89.593.364.139.72.12c.529-.026 1.042-.3 1.537-.791a.06.06 0 0 0 .004-.084.06.06 0 0 0-.085-.004c-.491.407-.975.62-1.46.607a1.6 1.6 0 0 1-.596-.141 2.6 2.6 0 0 1-.775-.544.17.17 0 1 0-.235.244M10.113 12.16c.3.28.595.48.89.592q.364.138.72.121c.53-.027 1.042-.3 1.537-.792a.06.06 0 0 0 .004-.084.06.06 0 0 0-.085-.004c-.49.407-.975.62-1.459.607a1.6 1.6 0 0 1-.597-.14 2.6 2.6 0 0 1-.775-.545.17.17 0 1 0-.235.244" })] }));
13
+ };
14
+ export default FoodTiffin;
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a green tea.
5
+ */
6
+ const GreenTea = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 30 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M22.291 11.493a9.4 9.4 0 0 1 .903 2.348c.192.81.272 1.64.24 2.477-.09 2.602-1.283 4.908-3.12 6.544a9.64 9.64 0 0 1-6.697 2.427 9.52 9.52 0 0 1-6.467-2.668A9.3 9.3 0 0 1 5.11 19.75a8.75 8.75 0 0 1-.672-5.158c.1-.573.25-1.136.46-1.68a1.2 1.2 0 0 1 .41-.54c.193-.136.42-.23.667-.237h.004l15.482-.705c.02 0 .037-.017.037-.037a.037.037 0 0 0-.037-.037s-4.823-.245-9.293-.434c-2.473-.104-4.831-.182-6.197-.23a2.7 2.7 0 0 0-1.495.409c-.45.273-.81.684-1.047 1.179l-.004.01c-.29.63-.511 1.287-.668 1.96-.157.677-.24 1.37-.257 2.068-.03 1.492.252 2.923.804 4.224a10.4 10.4 0 0 0 2.474 3.525c2.02 1.891 4.802 3.024 7.838 2.978 2.992-.081 5.687-1.283 7.61-3.22 1.931-1.948 3.092-4.607 2.992-7.507a9.86 9.86 0 0 0-1.592-5.026.196.196 0 1 0-.336.201" }), _jsx("path", { d: "M8.904 11.394s.01.99.06 2.111c.069 1.474.2 3.167.2 3.167a.258.258 0 1 0 .516 0s.125-1.695.187-3.168c.046-1.122.052-2.111.052-2.111a.509.509 0 0 0-1.015.001M24.546 15.142l1.486.234c.227.031.426.137.615.259.173.112.293.282.405.463.105.162.134.352.16.54.026.171-.018.343-.069.514v.004l-.554 1.838c-.095.351-.24.677-.398.991-.256.505-.538.977-.926 1.377-.71.732-1.552 1.298-2.599 1.519h-.007c-.233.068-.407.113-.494.137-.067.016-.054.087-.054.087-.02-.073-.037-.057-.037-.037s.016.037.037.037l.572.083a5.35 5.35 0 0 0 2.108-.098c.49-.118.935-.318 1.369-.567a5.25 5.25 0 0 0 1.68-1.55c.294-.418.493-.905.658-1.407l.001-.002c.084-.34.165-.689.224-1.052.056-.34.096-.688.132-1.047.033-.418.015-.836-.134-1.222-.144-.373-.336-.726-.634-1.006-.292-.266-.605-.487-.972-.601-.35-.109-.711-.17-1.083-.119l-1.486.234a.196.196 0 1 0 0 .391M.497 25.808c.202.956.72 1.773 1.424 2.375.728.62 1.659.983 2.664 1.032 1.641.063 3.796.178 6.145.235 1.326.033 2.71.057 4.096.047s2.771-.057 4.097-.106c2.35-.087 4.502-.216 6.144-.294a4.3 4.3 0 0 0 2.577-1.027 4.15 4.15 0 0 0 1.358-2.303l-.036.026c-.017-.065-.032-.061-.035-.046a3.93 3.93 0 0 1-1.53 2.007 3.76 3.76 0 0 1-2.334.636c-1.642-.078-3.794-.207-6.144-.294-1.326-.048-2.71-.095-4.097-.106-1.386-.01-2.77.014-4.096.047-2.35.058-4.504.172-6.145.235a3.66 3.66 0 0 1-2.248-.632 3.78 3.78 0 0 1-1.46-1.934s-.009-.046-.044-.098c-.233-.203-.343.04-.343.148q0 .026.007.052" }), _jsx("path", { d: "M10.898 20.404c-.385-.015-.936-.049-1.49-.057-.521-.009-1.043.005-1.423.007l-.163-2.872v-.073l1.719-2.367a.146.146 0 0 0-.016-.207.146.146 0 0 0-.207.016l-2.082 2.054a.9.9 0 0 0-.171.265.9.9 0 0 0-.07.312l-.17 2.98a1.092 1.092 0 0 0 1.082 1.107c.386.002.944.018 1.5.008.56-.009 1.117-.043 1.5-.057.29-.016.555-.126.734-.326.176-.194.298-.45.282-.732l-.221-2.945a.8.8 0 0 0-.206-.487l-1.812-1.817a.027.027 0 0 0-.04-.004.027.027 0 0 0-.003.04l1.45 2.117.023.151zM15.296.27c-1.012.668-1.585 1.483-1.75 2.462-.098.589-.016 1.238.256 1.926.138.35.353.697.602 1.064.248.303.438.574.58.836.178.329.305.608.351.896.12.753-.09 1.396-.352 2.125a.037.037 0 0 0 .064.036c.57-.678 1.046-1.298 1.186-2.159.076-.469.017-.984-.18-1.603-.095-.296-.246-.6-.427-.94a7.5 7.5 0 0 1-.457-.852c-.219-.457-.376-.86-.403-1.267-.05-.777.19-1.497.793-2.232a.196.196 0 0 0-.263-.291M12.233 3.853c-.53.302-.878.663-1.135 1.087-.135.221-.202.46-.254.717-.09.449-.039.945.162 1.475.099.263.264.522.451.796.179.201.321.375.427.55.131.219.244.389.287.582.119.537.018.988-.133 1.524a.037.037 0 0 0 .013.05c.017.01.04.004.05-.013.462-.483.823-.916.968-1.558.08-.357.04-.745-.09-1.226-.061-.226-.172-.454-.298-.716-.093-.15-.162-.303-.234-.442-.076-.148-.152-.281-.208-.416-.123-.297-.22-.555-.201-.832.029-.433.145-.848.458-1.286a.197.197 0 0 0-.263-.292" })] }));
13
+ };
14
+ export default GreenTea;
@@ -0,0 +1,80 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a potato chips packet.
5
+ */
6
+ const PotatoChips = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 30 31", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M4 5.39s3.99.003 8.515-.04c5.93-.054 12.773-.18 12.773-.18a.12.12 0 0 0 0-.238s-6.844-.125-12.773-.18C7.991 4.709 4 4.712 4 4.712a.338.338 0 1 0 0 .678M4.196 25.332s3.954.003 8.437-.04c5.875-.054 12.656-.18 12.656-.18a.12.12 0 0 0 .12-.12.12.12 0 0 0-.12-.118s-6.781-.125-12.656-.18c-4.483-.043-8.437-.04-8.437-.04a.338.338 0 1 0 0 .678" }), _jsx("path", { d: "M3.433 4.924 1.805 1.343c4.378.353 8.752.575 13.126.651 4.104.071 8.206.013 12.305-.163L25.82 4.638a.83.83 0 0 0-.08.442c.281 3.335.399 6.643.375 9.923a101 101 0 0 1-.54 9.9c-.018.18.013.363.09.527l1.202 2.527a169 169 0 0 0-11.97-.263c-4.22.063-8.42.305-12.607.681l1.426-3.135a.5.5 0 0 0 .045-.298 62 62 0 0 1-.945-9.476c-.07-3.101.08-6.28.477-9.551a.037.037 0 0 0-.03-.042.037.037 0 0 0-.042.031 66 66 0 0 0-.966 9.561c-.085 3.23.084 6.381.477 9.465L.766 28.811a.605.605 0 0 0 .59.863c4.502-.263 9.014-.337 13.544-.274 4.49.061 8.994.257 13.515.642a.993.993 0 0 0 .972-1.418l-1.799-3.803c.295-3.248.438-6.521.406-9.82-.03-3.263-.23-6.548-.574-9.857l1.785-3.804a.767.767 0 0 0-.741-1.102C23.96.61 19.45.829 14.931.911 10.415.993 5.895.94 1.365.737a.285.285 0 0 0-.275.406l1.99 3.95a.196.196 0 0 0 .353-.169" }), _jsx("path", { d: "M8.575 7.35a.84.84 0 0 1 .423-.16.8.8 0 0 1 .422.082c.127.06.224.162.298.276a.7.7 0 0 1 .1.368c.031.911.06 2.018.103 3.077.03.74.07 1.45.1 2.049a.35.35 0 0 1-.05.165c-.022.049-.07.081-.115.113a.3.3 0 0 1-.144.044.3.3 0 0 1-.14-.03c-.633-.25-1.391-.571-2.165-.853-.775-.283-1.56-.524-2.208-.742-.064-.02-.13-.038-.175-.086-.049-.05-.102-.104-.12-.175a.46.46 0 0 1-.018-.23.5.5 0 0 1 .104-.228l3.348-3.618a.03.03 0 0 0 .003-.04c-.01-.01-.028-.011-.039-.002l-3.965 2.93c-.21.16-.354.38-.455.614a1.576 1.576 0 0 0 .213 1.518c.16.223.389.385.645.504.625.275 1.37.625 2.133.937s1.54.583 2.175.825a1.72 1.72 0 0 0 1.652-.264 1.68 1.68 0 0 0 .61-1.516c-.093-.592-.2-1.294-.321-2.025-.175-1.046-.374-2.135-.53-3.033a1.3 1.3 0 0 0-.3-.64 1.25 1.25 0 0 0-.57-.375 1.2 1.2 0 0 0-.66-.02 1.17 1.17 0 0 0-.55.316.147.147 0 0 0 .196.22M16.408 8.238a.84.84 0 0 1 .074-.447c.059-.13.159-.24.283-.323a.74.74 0 0 1 .387-.12.7.7 0 0 1 .37.098c.803.431 1.774.962 2.712 1.456.656.346 1.29.666 1.822.942a.35.35 0 0 1 .119.125c.03.045.035.101.04.157a.3.3 0 0 1-.035.147.3.3 0 0 1-.097.106c-.533.421-1.192.916-1.823 1.444-.634.529-1.237 1.087-1.75 1.537-.05.046-.098.093-.162.109-.069.016-.141.036-.212.016a.46.46 0 0 1-.208-.1.5.5 0 0 1-.145-.204l-1.449-4.712a.03.03 0 0 0-.033-.023c-.014.003-.024.018-.021.033l.543 4.9c.034.262.152.497.304.701a1.576 1.576 0 0 0 1.42.577c.273-.026.528-.142.76-.304.551-.402 1.227-.87 1.88-1.374.652-.503 1.277-1.04 1.805-1.468a1.72 1.72 0 0 0 .601-1.56 1.68 1.68 0 0 0-1.005-1.29c-.56-.216-1.22-.477-1.913-.738-.992-.374-2.034-.748-2.89-1.063a1.3 1.3 0 0 0-.703-.062 1.25 1.25 0 0 0-.611.304c-.167.157-.29.347-.348.56a1.17 1.17 0 0 0-.003.636.147.147 0 0 0 .288-.06M19.437 16.379a.84.84 0 0 1 .399-.216.8.8 0 0 1 .428.026c.134.043.244.13.332.234.083.097.128.22.149.351.151.9.326 1.992.51 3.036.128.73.262 1.428.37 2.017a.35.35 0 0 1-.026.17c-.016.052-.058.09-.1.128a.3.3 0 0 1-.137.063.3.3 0 0 1-.143-.012c-.66-.164-1.454-.38-2.258-.557-.806-.177-1.617-.313-2.287-.443-.066-.01-.134-.02-.185-.061-.055-.044-.115-.09-.143-.158a.46.46 0 0 1-.048-.225.5.5 0 0 1 .073-.24l2.839-4.03a.03.03 0 0 0-.003-.04c-.011-.01-.03-.009-.039.002l-3.541 3.43c-.187.187-.3.424-.369.67A1.576 1.576 0 0 0 15.671 22c.188.2.436.33.706.414.656.19 1.44.437 2.238.646.797.207 1.603.373 2.265.528a1.72 1.72 0 0 0 1.603-.48 1.68 1.68 0 0 0 .404-1.585c-.172-.574-.37-1.256-.588-1.963-.312-1.014-.654-2.067-.929-2.936a1.3 1.3 0 0 0-.381-.595 1.25 1.25 0 0 0-.615-.296 1.2 1.2 0 0 0-.656.067 1.17 1.17 0 0 0-.504.387.147.147 0 0 0 .223.191M7.633 18.708a.84.84 0 0 1-.222-.395.8.8 0 0 1 .02-.429.74.74 0 0 1 .228-.335.7.7 0 0 1 .349-.154c.897-.166 1.987-.357 3.027-.557.728-.14 1.424-.285 2.012-.403a.35.35 0 0 1 .17.024c.052.016.091.057.13.098a.3.3 0 0 1 .064.136.3.3 0 0 1-.01.143c-.153.663-.358 1.46-.522 2.267-.164.809-.286 1.621-.406 2.294-.01.066-.019.134-.059.185-.043.056-.087.117-.155.146a.46.46 0 0 1-.225.051.5.5 0 0 1-.24-.07l-4.075-2.774a.03.03 0 0 0-.04.003c-.01.011-.007.03.004.039l3.485 3.487c.19.184.428.294.675.358.253.066.521.046.783-.023.267-.07.494-.226.686-.412.197-.191.323-.442.403-.713.18-.658.415-1.446.61-2.248.196-.8.35-1.608.494-2.273a1.72 1.72 0 0 0-.505-1.594 1.68 1.68 0 0 0-1.59-.38c-.572.18-1.251.39-1.955.619-1.009.327-2.056.685-2.921.974a1.3 1.3 0 0 0-.588.39 1.25 1.25 0 0 0-.288.62c-.032.226-.01.453.078.655.085.195.215.37.395.498a.147.147 0 0 0 .188-.226" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -207.127 -84.432)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
13
+ fill: 'none'
14
+ }, transform: "matrix(.53172 0 0 .53173 -207.127 -84.432)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 54.388 -222.277)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
15
+ fill: 'none'
16
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 54.388 -222.277)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 245.275 41.527)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
17
+ fill: 'none'
18
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 245.275 41.527)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -206.89 -82.035)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
19
+ fill: 'none'
20
+ }, transform: "matrix(.53172 0 0 .53173 -206.89 -82.035)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 53.33 -220.892)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
21
+ fill: 'none'
22
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 53.33 -220.892)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 244.008 40.557)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
23
+ fill: 'none'
24
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 244.008 40.557)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -208.412 -81.535)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
25
+ fill: 'none'
26
+ }, transform: "matrix(.53172 0 0 .53173 -208.412 -81.535)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 52.306 -221.805)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
27
+ fill: 'none'
28
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 52.306 -221.805)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 245.212 39.286)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
29
+ fill: 'none'
30
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 245.212 39.286)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -208.412 -83.277)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
31
+ fill: 'none'
32
+ }, transform: "matrix(.53172 0 0 .53173 -208.412 -83.277)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 53.08 -222.754)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
33
+ fill: 'none'
34
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 53.08 -222.754)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 246.126 40.272)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
35
+ fill: 'none'
36
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 246.126 40.272)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -209.875 -81.507)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
37
+ fill: 'none'
38
+ }, transform: "matrix(.53172 0 0 .53173 -209.875 -81.507)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 51.515 -223.794)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
39
+ fill: 'none'
40
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 51.515 -223.794)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 246.64 38.06)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
41
+ fill: 'none'
42
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 246.64 38.06)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 253.631 37.981)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
43
+ fill: 'none'
44
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 253.631 37.981)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.417 39.455)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
45
+ fill: 'none'
46
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.417 39.455)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 253.392 39.985)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
47
+ fill: 'none'
48
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 253.392 39.985)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 252.456 39.014)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
49
+ fill: 'none'
50
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 252.456 39.014)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 251.982 40.411)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
51
+ fill: 'none'
52
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 251.982 40.411)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 252.914 41.566)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
53
+ fill: 'none'
54
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 252.914 41.566)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 250.994 41.453)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
55
+ fill: 'none'
56
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 250.994 41.453)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.435 42.257)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
57
+ fill: 'none'
58
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.435 42.257)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.553 40.908)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
59
+ fill: 'none'
60
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 254.553 40.908)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -205.92 -80.89)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
61
+ fill: 'none'
62
+ }, transform: "matrix(.53172 0 0 .53173 -205.92 -80.89)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 51.016 -222.277)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
63
+ fill: 'none'
64
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 51.016 -222.277)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 244.935 37.966)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
65
+ fill: 'none'
66
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 244.935 37.966)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -206.16 -83.068)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
67
+ fill: 'none'
68
+ }, transform: "matrix(.53172 0 0 .53173 -206.16 -83.068)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 52.208 -219.832)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
69
+ fill: 'none'
70
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 52.208 -219.832)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 241.996 39.006)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
71
+ fill: 'none'
72
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 241.996 39.006)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.13867 .51333 -.51332 .13867 51.265 -220.616)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042.004.019c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.398-.267-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
73
+ fill: 'none'
74
+ }, transform: "matrix(.13867 .51333 -.51332 .13867 51.265 -220.616)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(-.50502 .1664 -.1664 -.50502 243.504 38.996)" }), _jsx("path", { d: "M405.45 174.574q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297l.004.005.023.042.017.042zm-.028-.021-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002m.382.22a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021", style: {
75
+ fill: 'none'
76
+ }, transform: "matrix(-.50502 .1664 -.1664 -.50502 243.504 38.996)" }), _jsx("ellipse", { cx: 405.402, cy: 174.569, rx: 0.447, ry: 0.47, transform: "matrix(.53172 0 0 .53173 -207.072 -80.437)" }), _jsx("path", { d: "M405.024 174.82c.032-.011.056-.011.05.022-.017.096.157-.156.16-.059.002.068.021-.063.089-.076q.147-.03.127-.133c.027-.047.2.283.161.159-.01-.034.062.053.049.019-.028-.075.068-.021.144.021a.44.44 0 0 1-.402.266.44.44 0 0 1-.378-.219m.382-.349.023.042.017.042.004.019q-.006.006-.005.025c.001.026-.015-.028-.023-.046v-.017l-.002-.027-.006-.02-.012-.021v-.002a.05.05 0 0 0-.027-.016c-.199-.032-.071-.094.027-.281v.297zm.016.082-.004-.005q-.002 0-.002.007c-.001.031.004.021.006-.002", style: {
77
+ fill: 'none'
78
+ }, transform: "matrix(.53172 0 0 .53173 -207.072 -80.437)" })] }));
79
+ };
80
+ export default PotatoChips;
@@ -1,2 +1,8 @@
1
+ import BeerMug from '@/src/icons/food-beverage/BeerMug';
2
+ import Cake from '@/src/icons/food-beverage/Cake';
3
+ import Cutlery from '@/src/icons/food-beverage/Cutlery';
1
4
  import EatenApple from '@/src/icons/food-beverage/EatenApple';
2
- export { EatenApple };
5
+ import FoodTiffin from '@/src/icons/food-beverage/FoodTiffin';
6
+ import GreenTea from '@/src/icons/food-beverage/GreenTea';
7
+ import PotatoChips from '@/src/icons/food-beverage/PotatoChips';
8
+ export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
@@ -0,0 +1,24 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of appliances.
5
+ */
6
+ const Appliances = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 32 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M21.678 19.534a3.92 3.92 0 0 0-2.109 2.396c-.337 1.046-.191 2.225.314 3.376a4.56 4.56 0 0 0 2.867 2.363c.613.17 1.267.202 1.905.097a4.7 4.7 0 0 0 1.768-.68c1.088-.725 1.821-1.791 2.05-2.984.218-1.14.034-2.366-.675-3.4-.666-.953-1.53-1.586-2.486-1.83a3.7 3.7 0 0 0-2.89.44.037.037 0 1 0 .033.066c.92-.364 1.851-.336 2.672.028.743.33 1.364.954 1.778 1.818.4.815.405 1.708.14 2.506a3.08 3.08 0 0 1-1.549 1.77 3.1 3.1 0 0 1-1.11.316c-.384.043-.767.01-1.137-.079-.738-.176-1.437-.573-1.866-1.267-.507-.735-.752-1.532-.683-2.31.076-.858.437-1.666 1.19-2.296a.196.196 0 1 0-.212-.33" }), _jsx("path", { d: "M704.341 50.63c-2.705 7.068-9.631 11.993-17.54 11.993-10.194 0-18.756-8.183-18.756-18.59s8.562-18.59 18.756-18.59c9.773 0 19.642 8.957 19.642 18.935 0 2.337-.78 4.499-2.102 6.252", style: {
13
+ fill: 'none'
14
+ }, transform: "matrix(-.0913 0 0 .09414 91.13 10.12)" }), _jsx("path", { d: "M704.341 50.63c-2.705 7.068-9.631 11.993-17.54 11.993-10.194 0-18.756-8.183-18.756-18.59s8.562-18.59 18.756-18.59c9.773 0 19.642 8.957 19.642 18.935 0 2.337-.78 4.499-2.102 6.252", style: {
15
+ fill: 'none'
16
+ }, transform: "matrix(-.0913 0 0 .09414 88.149 10.12)" }), _jsx("path", { d: "M11.484 28.865s0-5.193-.055-11.078c-.071-7.713-.225-16.623-.225-16.623a.34.34 0 0 0-.343-.341.34.34 0 0 0-.346.344s-.188 8.907-.288 16.615c-.077 5.887-.098 11.08-.098 11.08 0 .375.303.682.677.677.374.002.678-.3.678-.674" }), _jsx("path", { d: "M10.399 22.21s-1.602.008-3.418.07a231 231 0 0 0-5.127.247.346.346 0 0 0-.345.344c0 .19.155.345.345.345 0 0 2.743.176 5.124.267 1.816.069 3.418.082 3.418.082a.678.678 0 0 0 .003-1.354M30.221 15.662s-2.457.006-5.24.067c-3.652.079-7.863.241-7.863.241a.346.346 0 0 0-.346.344c.001.19.156.345.346.346 0 0 4.21.178 7.86.27 2.784.072 5.24.087 5.24.087a.678.678 0 0 0 .002-1.355" }), _jsx("path", { d: "M750.596 236.191a.19.19 0 0 0-.191-.191h-.382a.19.19 0 0 0-.192.191v1.864c0 .105.086.191.192.191h.382a.19.19 0 0 0 .191-.191zm-.191.677c-.049 0-.1.001-.144.019l.144-.144zm-.237-.425-.089.18-.056.058v-.199c.041-.022.079-.059.128-.042zm.111-.026.019-.008-.051.05-.008-.01-.012-.012zm-.227-.147.149.02-.002.005-.01.019.044.017-.051.086-.002-.001c-.053-.006-.02-.05.009-.102zm.264-.058-.063.087.133.024-.05.049-.103-.041.02-.032-.052-.009c.017-.034.026-.069.003-.099z", style: {
17
+ fill: 'none'
18
+ }, transform: "translate(-741.472 -225.113)" }), _jsx("path", { d: "M750.596 236.817v1.238a.19.19 0 0 1-.191.191h-.382a.19.19 0 0 1-.192-.191v-1.168l.075-.084.05.05.257-.257-.052-.019-.03-.014-.225.24-.075-.075v-.144l.076-.092.046.005q.032.005.059-.009l.043.032.076.043.11-.111q.026.031.043.073l.121-.121a.1.1 0 0 0-.045-.01q-.016.015-.044.008l-.042.017-.033.033-.002-.003-.012-.012a.1.1 0 0 1-.076.003c-.053-.018-.093.027-.139.048a1 1 0 0 1-.057-.053l-.048.057a.2.2 0 0 0-.076.008v-.309c0-.105.086-.191.192-.191h.382c.106 0 .191.086.191.191v.182l-.098-.025c.042.08.026.173-.096.278l-.061-.003-.009-.001c.016.021.035.029.063.011l.007-.007.003.001-.01.006-.372.287c.06-.042.129.062.176.01.112-.125.335-.002.397-.113m-.15-.626h.076q0-.002-.089.078l-.009-.009-.004-.002-.015.037-.029.026-.175-.031-.023.044-.087-.049-.004-.002.007-.008.107.015c.017-.034.026-.069.003-.099h.118l.035.02.063.047zm-.058.132.004.001-.025.06-.007.01-.019.001-.026.007-.018-.006-.023.023-.047.018a.1.1 0 0 0-.047-.021c-.046-.005-.027-.039-.002-.082l.096.054.023.008.079-.075z", style: {
19
+ fill: 'none'
20
+ }, transform: "matrix(0 -1 1 0 -230.997 775.045)" }), _jsx("path", { d: "M750.596 236.191a.19.19 0 0 0-.191-.191h-.382a.19.19 0 0 0-.192.191v1.864c0 .105.086.191.192.191h.382a.19.19 0 0 0 .191-.191zm-.191.677c-.049 0-.1.001-.144.019l.144-.144zm-.237-.425-.089.18-.056.058v-.199c.041-.022.079-.059.128-.042zm.111-.026.019-.008-.051.05-.008-.01-.012-.012zm-.227-.147.149.02-.002.005-.01.019.044.017-.051.086-.002-.001c-.053-.006-.02-.05.009-.102zm.264-.058-.063.087.133.024-.05.049-.103-.041.02-.032-.052-.009c.017-.034.026-.069.003-.099z", style: {
21
+ fill: 'none'
22
+ }, transform: "translate(-737.37 -225.113)" }), _jsx("path", { d: "m4.967.647-2.1-.055a1.273 1.273 0 0 0-1.292 1.25c-.066 2.53-.259 9.418-.403 15.61-.103 4.472-.177 8.577-.215 10.405a1.9 1.9 0 0 0 .55 1.348 1.9 1.9 0 0 0 1.348.567l13.527.091a1 1 0 0 0 .001-2l-13.528.08-.066-.019-.035-.066c-.037-1.829-.107-5.933-.207-10.406-.139-6.192-.326-13.08-.389-15.61a.71.71 0 0 1 .193-.515.73.73 0 0 1 .515-.233l2.101-.055a.196.196 0 0 0 0-.392M20.607 11.681l-.257-9.835a1.47 1.47 0 0 0-.932-1.344 1.4 1.4 0 0 0-.557-.098L5.891.847a.037.037 0 1 0 0 .074l12.973.368a.5.5 0 0 1 .21.052.52.52 0 0 1 .277.304.5.5 0 0 1 .03.201l-.257 9.835a.741.741 0 0 0 1.483 0" }), _jsx("path", { d: "m25.421 11.88-7.294-.26a1.46 1.46 0 0 0-1.046.41 1.5 1.5 0 0 0-.459 1.046c-.043 1.34-.135 3.865-.21 6.593-.105 3.813-.186 8.012-.229 9.889a1.945 1.945 0 0 0 1.937 1.958c1.262.01 3.547.052 5.833.044s4.57-.065 5.833-.083a1.92 1.92 0 0 0 1.341-.574 1.88 1.88 0 0 0 .538-1.34c-.041-1.342-.104-3.867-.2-6.593-.135-3.815-.325-8.007-.401-9.887a1.26 1.26 0 0 0-.401-.882 1.24 1.24 0 0 0-.883-.327l-3.658.193a.04.04 0 0 0-.037.037c0 .02.016.037.037.037l3.66.15a.77.77 0 0 1 .539.255.74.74 0 0 1 .19.537c-.077 1.88-.267 6.072-.402 9.887-.096 2.726-.159 5.251-.2 6.592l-.049.073-.073.012c-1.263-.019-3.548-.078-5.833-.087-2.286-.01-4.57.031-5.834.04l-.037-.005-.026-.037c-.042-1.876-.118-6.075-.22-9.889-.072-2.727-.163-5.252-.204-6.593a.5.5 0 0 1 .127-.367.53.53 0 0 1 .367-.176l7.294-.26a.196.196 0 0 0 0-.393" }), _jsx("path", { d: "M27.71 14.267c0 .414.32.75.713.75s.712-.336.712-.75-.319-.75-.712-.75c-.394 0-.794.369-.794.783M24.73 14.267c0 .414.319.75.712.75s.713-.336.713-.75-.32-.75-.713-.75-.793.369-.793.783M9.127 11.079a.19.19 0 0 0-.191-.191h-.382a.19.19 0 0 0-.192.19v1.865c0 .105.086.19.192.19h.382a.19.19 0 0 0 .19-.19zM5.195 24.452a.19.19 0 0 0-.19.19v.383c0 .106.085.192.19.192H7.06a.19.19 0 0 0 .191-.192v-.382a.19.19 0 0 0-.19-.191zM13.228 11.079a.19.19 0 0 0-.191-.191h-.382a.19.19 0 0 0-.192.19v1.865c0 .105.086.19.192.19h.382a.19.19 0 0 0 .19-.19z" })] }));
23
+ };
24
+ export default Appliances;
@@ -1,2 +1,3 @@
1
+ import Appliances from '@/src/icons/household/Appliances';
1
2
  import Sofa from '@/src/icons/household/Sofa';
2
- export { Sofa };
3
+ export { Appliances, Sofa };
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon of a basketball.
5
+ */
6
+ const Basketball = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 30 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M6.501 25.568c-2.681-2.433-4.11-5.717-4.29-9.072-.174-3.266.863-6.6 3.207-9.234 2.268-2.624 5.389-4.046 8.595-4.311 3.198-.263 6.504.626 9.165 2.836a12.99 12.99 0 0 1 4.676 8.562c.38 3.304-.51 6.718-2.86 9.386-2.407 2.747-5.211 4.329-8.25 4.74-2.993.403-6.202-.316-9.478-2.151a.077.077 0 0 0-.078.132c3.272 2.041 6.536 2.914 9.626 2.64 3.242-.287 6.29-1.835 8.973-4.633 2.716-2.848 3.845-6.59 3.556-10.258-.29-3.664-2.015-7.245-4.979-9.825C21.334 1.787 17.53.64 13.844.964c-3.68.323-7.222 2.105-9.75 5.18-2.45 3.07-3.468 6.833-3.045 10.452a13.76 13.76 0 0 0 5.2 9.272.196.196 0 1 0 .252-.3" }), _jsx("path", { d: "M6.897 25.873c-.012-2.897.384-5.53 1.079-7.932a26 26 0 0 1 1.973-4.907q.616-1.184 1.33-2.285c.483-.746.99-1.467 1.539-2.159a28 28 0 0 1 2.13-2.386 29.5 29.5 0 0 1 3.693-3.127c.008-.005.01-.017.005-.026-.006-.008-.018-.01-.026-.005a28 28 0 0 0-4.027 2.767q-1.265 1.05-2.376 2.266a22 22 0 0 0-1.727 2.139 20.1 20.1 0 0 0-2.52 4.886q-.457 1.272-.764 2.64c-.555 2.486-.735 5.195-.505 8.137a.098.098 0 1 0 .196-.008" }), _jsx("path", { d: "M4.972 7.814c1.274 1.677 3.314 3.557 5.673 5.387a57 57 0 0 0 2.101 1.549c.71.499 1.432.99 2.162 1.457.741.473 1.488.925 2.228 1.352a88.545 88.545 0 0 0 5.069 2.667c1.953.945 3.506 1.606 4.285 1.893a.02.02 0 0 0 .025-.01.02.02 0 0 0-.01-.024c-.946-.463-3.048-1.696-5.637-3.299-1.15-.712-2.392-1.501-3.677-2.317-.803-.509-1.624-1.025-2.446-1.545a137 137 0 0 1-3.633-2.366c-2.436-1.657-4.609-3.316-5.988-4.869a.097.097 0 0 0-.138-.013.1.1 0 0 0-.014.138M2.503 14.343c2.047-.719 4.082-.097 6.295 1.669.894.713 1.81 1.616 2.784 2.683.55.603 1.118 1.258 1.713 1.957.79.928 1.624 1.934 2.497 3.031A152 152 0 0 1 19.4 28.38c.005.008.017.011.025.005.01-.005.011-.017.006-.025a111 111 0 0 0-2.16-3.652 63 63 0 0 0-2.369-3.534 35 35 0 0 0-1.033-1.36 26.245 26.245 0 0 0-2.727-2.929q-1.606-1.473-3.106-2.273c-2.003-1.068-3.85-1.244-5.605-.451a.097.097 0 0 0-.055.127c.02.05.077.075.127.055M8.605 4.821c.174 2.385.97 4.043 2.161 5.214.917.901 2.071 1.513 3.367 1.929.88.283 1.828.473 2.811.6q.56.072 1.132.112.841.058 1.694.075c1.412.03 2.833.011 4.198.047 1.487.038 2.897.129 4.147.443q.017.004.023-.012a.02.02 0 0 0-.012-.023c-1.67-.629-3.69-.918-5.797-1.122-1.29-.124-2.606-.226-3.89-.356a37 37 0 0 1-2.54-.328c-1.306-.226-2.52-.556-3.57-1.134C10.556 9.292 9.26 7.651 8.8 4.798a.098.098 0 1 0-.195.023" })] }));
13
+ };
14
+ export default Basketball;
@@ -1,2 +1,3 @@
1
+ import Basketball from '@/src/icons/sports/Basketball';
1
2
  import Dart from '@/src/icons/sports/Dart';
2
- export { Dart };
3
+ export { Basketball, Dart };
@@ -0,0 +1,14 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Import styles.
3
+ /**
4
+ * This function renders an SVG icon.
5
+ */
6
+ const Car1 = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
7
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
8
+ fillRule: 'evenodd',
9
+ clipRule: 'evenodd',
10
+ strokeLinejoin: 'round',
11
+ strokeMiterlimit: 2
12
+ }, viewBox: "0 0 31 25", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M10.382 13.443a2.2 2.2 0 0 0-1.64.16c-.542.279-.921.793-1.084 1.412-.139.652.02 1.31.402 1.816.366.485.941.82 1.605.918.653.072 1.276-.088 1.752-.444.48-.36.823-.89.884-1.516a2.36 2.36 0 0 0-.54-1.678c-.363-.444-.871-.768-1.442-.816a.019.019 0 1 0-.006.036c.513.13.932.496 1.2.954.252.433.353.95.24 1.412-.103.43-.391.76-.756.97-.34.194-.757.256-1.179.161a1.63 1.63 0 0 1-.971-.606c-.238-.3-.391-.667-.343-1.066a1.52 1.52 0 0 1 .555-1.073 1.9 1.9 0 0 1 1.29-.446.098.098 0 1 0 .033-.194M23.387 13.443a2.2 2.2 0 0 0-1.64.16c-.543.279-.922.793-1.084 1.412-.14.652.019 1.31.402 1.816.365.485.94.82 1.605.918.652.072 1.276-.088 1.752-.444.48-.36.822-.89.884-1.516a2.36 2.36 0 0 0-.54-1.678c-.363-.444-.871-.768-1.442-.816a.019.019 0 1 0-.006.036c.513.13.932.496 1.199.954.253.433.354.95.24 1.412-.102.43-.39.76-.755.97-.34.194-.757.256-1.18.161a1.63 1.63 0 0 1-.97-.606c-.238-.3-.392-.667-.344-1.066a1.52 1.52 0 0 1 .555-1.073 1.9 1.9 0 0 1 1.292-.446.098.098 0 1 0 .032-.194" }), _jsx("path", { d: "M4.26 9.76a2.6 2.6 0 0 0-1.387.732 2.6 2.6 0 0 0-.756 1.85l.048 5.725a2.9 2.9 0 0 0 .86 2.037c.272.267.59.477.938.617.346.139.72.214 1.1.21l22.328-.275a2.6 2.6 0 0 0 1.833-.78c.461-.475.748-1.121.739-1.835l-.068-5.365a2.49 2.49 0 0 0-2.507-2.468l-20.182.272a.196.196 0 0 0 0 .392l20.182.273c.42.005.796.184 1.068.462.269.276.429.654.423 1.069l-.067 5.365c-.004.39-.171.74-.43.994a1.4 1.4 0 0 1-.992.392L5.06 19.199a1.13 1.13 0 0 1-1.029-.707 1.1 1.1 0 0 1-.077-.426L4 12.34a.715.715 0 0 1 .722-.705h.14a1.06 1.06 0 0 0 .986-.666l3.277-8.097a1.01 1.01 0 0 1 .928-.63c.932-.012 2.264-.018 3.736-.048 1.2-.025 2.491-.062 3.735-.106 1.967-.068 3.81-.16 4.98-.209.268-.013.53.035.755.161.234.132.44.319.572.566l3.681 6.668c.009.02.03.027.05.018a.037.037 0 0 0 .017-.049l-2.776-7.093a2.56 2.56 0 0 0-.906-1.114 2.6 2.6 0 0 0-1.394-.462C21.333.53 19.489.445 17.522.38a278 278 0 0 0-3.736-.095C12.314.26 10.983.258 10.05.248c-.613 0-1.194.186-1.68.515s-.874.8-1.101 1.369z" }), _jsx("path", { d: "M5.123 20.392v2.4a1 1 0 0 0 1 1H7.68a1 1 0 0 0 1-1v-2.4" }), _jsx("path", { d: "M7.68 22.791H6.123v-2.4a1 1 0 0 0-2 0v2.4a2 2 0 0 0 2 2H7.68c1.105 0 2-.896 2-2v-2.4a1 1 0 0 0-2 0zM24.223 20.392v2.4a1 1 0 0 0 1 1h1.322a1 1 0 0 0 1-1v-2.4" }), _jsx("path", { d: "M26.545 22.791h-1.322v-2.4a1 1 0 0 0-2 0v2.4a2 2 0 0 0 2 2h1.322a2 2 0 0 0 2-2v-2.4a1 1 0 0 0-2 0zM27.293 7.941s.925.149 1.79.258c.276.035.54.059.767.083.047.004.074.048.104.082.023.027.02.065.018.104l.006.635-.007.115c-.016.019-.022.046-.043.057-.025.014-.043.042-.072.045-.263.04-.572.079-.884.132-.691.114-1.328.245-1.328.245q-.017.002-.018.02c0 .01.009.018.018.018 0 0 .637.131 1.328.246.312.052.62.092.884.131a.99.99 0 0 0 .753-.258 1.02 1.02 0 0 0 .352-.755l.002-.635c-.017-.302-.133-.58-.344-.766-.207-.18-.472-.303-.767-.28-.225.024-.491.045-.767.08-.866.103-1.79.247-1.79.247a.097.097 0 0 0-.1.097c0 .055.045.099.098.099M4.727 7.743s-.979-.149-1.881-.254c-.293-.034-.572-.056-.807-.078-.29-.021-.552.1-.755.28a1.07 1.07 0 0 0-.336.753l.008.67a1.02 1.02 0 0 0 .344.742 1 1 0 0 0 .74.253c.264-.038.576-.078.891-.13.694-.114 1.337-.244 1.337-.244q.016-.001.018-.019c0-.01-.009-.019-.018-.019 0 0-.643-.13-1.337-.244-.314-.051-.627-.091-.89-.13-.028-.003-.044-.03-.068-.043-.02-.011-.025-.037-.04-.055l-.003-.107.011-.67c-.002-.032-.006-.066.013-.088.026-.028.047-.067.088-.07.234-.025.514-.048.806-.084.902-.111 1.88-.267 1.88-.267a.098.098 0 1 0 0-.196" })] }));
13
+ };
14
+ export default Car1;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const Car2 = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 32 18", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m22.395 9 1.553-.061a.175.175 0 0 0 0-.35l-1.552-.069a.24.24 0 0 0-.001.48M13.379 9.003l1.553-.062a.175.175 0 0 0 0-.35l-1.552-.068a.24.24 0 0 0-.001.48M.636 12.899l2.64-.092a.263.263 0 0 0 0-.526l-2.64-.102a.36.36 0 0 0 0 .72M30.037 7.892l-.008-.002-.069-.013c-.123-.022-.372-.072-.684-.124-.361-.06-.779-.119-1.143-.175-.336-.035-.644.097-.883.301-.246.21-.38.532-.398.88.003.17.03.337.101.487a1.18 1.18 0 0 0 .709.628c.152.04.304.07.462.046.226-.04.467-.078.708-.127a27 27 0 0 0 1.062-.238q.017-.001.019-.019a.02.02 0 0 0-.02-.018s-.486-.122-1.061-.238c-.24-.049-.482-.087-.708-.128-.051-.007-.088-.047-.131-.072-.039-.023-.058-.065-.086-.1-.02-.025-.023-.06-.036-.088a.3.3 0 0 1-.02-.129c-.003-.082.011-.162.06-.219.06-.068.124-.143.22-.153.364-.053.782-.11 1.143-.169.438-.071.763-.135.763-.135a.097.097 0 0 0 .097-.097.1.1 0 0 0-.097-.1z" }), _jsx("path", { d: "M5.934 11.557a2.27 2.27 0 0 1 1.518.835c.338.411.5.948.446 1.518-.037.524-.31.962-.674 1.288-.342.306-.796.48-1.29.462a1.9 1.9 0 0 1-.676-.12 2 2 0 0 1-.615-.341c-.375-.323-.663-.759-.71-1.29-.07-.586.033-1.119.318-1.54.32-.474.803-.811 1.44-.932a.027.027 0 0 0 .026-.03.027.027 0 0 0-.029-.025A2.44 2.44 0 0 0 3.832 12c-.513.453-.81 1.122-.903 1.91-.076.854.236 1.644.758 2.247.329.378.762.662 1.245.836.312.113.652.162 1.002.166.888-.033 1.697-.39 2.248-1.001a3.04 3.04 0 0 0 .794-2.248c-.077-.816-.434-1.538-1.022-2.02-.552-.449-1.257-.708-2.02-.628a.147.147 0 0 0 0 .294M23.95 11.557a2.27 2.27 0 0 1 1.519.835c.337.411.499.948.445 1.518-.037.524-.31.962-.674 1.288-.342.306-.796.48-1.29.462a1.9 1.9 0 0 1-.676-.12 2 2 0 0 1-.615-.341c-.375-.323-.663-.759-.71-1.29-.07-.586.033-1.119.318-1.54.32-.474.803-.811 1.44-.932a.027.027 0 0 0 .026-.03.027.027 0 0 0-.029-.025 2.44 2.44 0 0 0-1.856.618c-.512.453-.81 1.122-.903 1.91-.076.854.236 1.644.758 2.247.329.378.762.662 1.245.836.312.113.652.162 1.002.166.888-.033 1.697-.39 2.248-1.001a3.04 3.04 0 0 0 .794-2.248c-.076-.816-.434-1.538-1.022-2.02-.551-.449-1.257-.708-2.02-.628a.147.147 0 0 0 0 .294" }), _jsx("path", { d: "m3.236 13.713-1.613-.067a.696.696 0 0 1-.625-.47.7.7 0 0 1-.033-.26l.096-1.868a2.77 2.77 0 0 1 .597-1.58 2.7 2.7 0 0 1 1.366-.918l3.85-1.146a.7.7 0 0 0 .317-.218c1.417-1.621 2.851-2.705 4.517-3.455 1.587-.716 3.387-1.12 5.596-1.362 1.16-.144 2.38-.152 3.635-.11 2.437.083 4.997.393 7.472.613l-.46.901a.85.85 0 0 0 .031.853l1.748 2.648a2.1 2.1 0 0 1 .365 1.14l.033 1.884c.008.378-.055.75-.19 1.093a2.9 2.9 0 0 1-.605.948l-.698.72a.869.869 0 0 1-.595.274l-1.587.045a.532.532 0 0 0 0 1.063l1.588.044a2.05 2.05 0 0 0 1.443-.56l.734-.686a4.18 4.18 0 0 0 1.307-2.932l.058-1.883a3.7 3.7 0 0 0-.528-1.986l-1.373-2.28.919-1.648a.892.892 0 0 0-.712-1.31C27.415.957 24.824.526 22.312.337c-1.82-.138-3.598-.143-5.258.071-2.424.353-4.396.867-6.106 1.737-1.78.906-3.284 2.178-4.731 4.01l-3.549 1.34a3.73 3.73 0 0 0-1.79 1.406 3.65 3.65 0 0 0-.63 2.14l.06 1.869a1.3 1.3 0 0 0 .403.915 1.26 1.26 0 0 0 .912.348l1.613-.067a.196.196 0 0 0 0-.393" }), _jsx("path", { d: "m21.446 13.5-12.28.339a.07.07 0 0 0-.072.07c0 .04.032.072.072.072l12.28.338a.41.41 0 0 0 0-.819M7.657 7.313s2.55.152 5.639.274c1.212.048 2.506.093 3.76.115.868.015 1.717.022 2.505.012.838-.01 1.606-.042 2.257-.067.624-.023 1.139-.05 1.504-.067.245-.012.48-.08.68-.21.195-.127.363-.298.471-.513l1.996-4.05a.017.017 0 0 0-.007-.024.02.02 0 0 0-.025.007L23.95 6.557a.7.7 0 0 1-.628.308c-.364-.017-.879-.045-1.504-.07-.65-.024-1.418-.056-2.256-.067a83 83 0 0 0-2.506.01c-1.254.02-2.547.064-3.76.111-3.089.12-5.639.269-5.639.269a.098.098 0 1 0 0 .195" }), _jsx("path", { d: "M19.265 2.054s-.752 1.439-1.658 3.314a50 50 0 0 0-1.016 2.245c-.156.383-.303.77-.438 1.152-.142.399-.266.792-.386 1.172q-.24.764-.432 1.42c-.372 1.277-.6 2.147-.6 2.147-.004.009 0 .02.01.024q.016.004.025-.01s.438-.785 1.056-1.965c.21-.402.437-.844.673-1.321.177-.357.36-.726.535-1.112q.253-.555.483-1.133a45.979 45.979 0 0 0 .826-2.323c.646-1.98 1.103-3.538 1.103-3.538A.097.097 0 0 0 19.393 2a.1.1 0 0 0-.128.055" })] }));
12
+ };
13
+ export default Car2;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const CarService = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 33 33", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "m23.147 23.953 1.554-.062a.175.175 0 0 0 0-.35l-1.553-.068a.24.24 0 0 0 0 .48M14.13 23.956l1.553-.062a.175.175 0 0 0 0-.35l-1.552-.068a.24.24 0 0 0-.001.48M1.388 27.85l2.64-.092a.263.263 0 0 0 .001-.525l-2.64-.102a.36.36 0 0 0 0 .72M30.79 22.844l-.008-.001-.07-.013c-.122-.023-.372-.072-.684-.124-.36-.06-.778-.12-1.142-.175-.336-.035-.645.097-.883.3-.246.21-.38.533-.398.882.003.168.03.336.101.486a1.18 1.18 0 0 0 .709.628c.151.04.304.07.461.046.227-.04.468-.079.708-.127.576-.116 1.062-.238 1.062-.238.011 0 .02-.009.02-.019a.02.02 0 0 0-.02-.018s-.486-.122-1.062-.239c-.24-.048-.481-.087-.708-.128-.05-.007-.088-.046-.13-.071-.04-.023-.058-.065-.086-.1-.02-.026-.024-.06-.036-.088a.3.3 0 0 1-.02-.13c-.004-.082.01-.161.06-.218.06-.069.124-.143.22-.153.364-.054.782-.111 1.143-.17.438-.07.762-.134.762-.134a.097.097 0 0 0 .098-.098.1.1 0 0 0-.098-.098" }), _jsx("path", { d: "M6.685 26.509a2.27 2.27 0 0 1 1.518.835c.337.411.5.948.446 1.518-.037.524-.311.962-.674 1.288-.342.306-.796.48-1.29.462a1.9 1.9 0 0 1-.676-.119 2 2 0 0 1-.615-.342c-.375-.323-.663-.759-.71-1.289-.07-.587.033-1.12.318-1.541.32-.474.803-.811 1.44-.932a.027.027 0 0 0 .026-.029.027.027 0 0 0-.029-.026 2.44 2.44 0 0 0-1.856.618c-.513.453-.81 1.122-.904 1.91-.076.855.237 1.645.759 2.247.328.378.762.662 1.245.836.312.113.651.162 1.002.166.887-.033 1.697-.39 2.248-1.001a3.04 3.04 0 0 0 .794-2.248c-.077-.816-.434-1.538-1.023-2.02-.55-.449-1.256-.708-2.02-.627a.147.147 0 0 0 0 .294M24.702 26.509a2.27 2.27 0 0 1 1.52.835c.336.411.499.948.445 1.518-.037.524-.311.962-.674 1.288-.342.306-.796.48-1.29.462a1.9 1.9 0 0 1-.677-.119 2 2 0 0 1-.615-.342c-.374-.323-.662-.759-.71-1.289-.07-.587.034-1.12.319-1.541.32-.474.803-.811 1.44-.932a.027.027 0 0 0 .026-.029.027.027 0 0 0-.029-.026 2.44 2.44 0 0 0-1.856.618c-.513.453-.81 1.122-.904 1.91-.076.855.236 1.645.759 2.247.328.378.761.662 1.245.836.312.113.651.162 1.001.166.888-.033 1.698-.39 2.249-1.001a3.04 3.04 0 0 0 .794-2.248c-.077-.816-.434-1.538-1.023-2.02-.55-.449-1.257-.708-2.02-.627a.147.147 0 0 0 0 .294" }), _jsx("path", { d: "m3.989 28.666-1.614-.067a.696.696 0 0 1-.625-.47.7.7 0 0 1-.033-.26L1.813 26a2.77 2.77 0 0 1 .597-1.58 2.7 2.7 0 0 1 1.366-.918l3.85-1.145a.7.7 0 0 0 .317-.219c1.418-1.62 2.851-2.704 4.518-3.455 1.586-.716 3.386-1.12 5.595-1.362 1.16-.144 2.381-.151 3.635-.109 2.437.082 4.998.393 7.473.613l-.46.9a.85.85 0 0 0 .03.854l1.748 2.647a2.1 2.1 0 0 1 .365 1.141l.033 1.883c.008.378-.055.75-.19 1.094a2.9 2.9 0 0 1-.605.948l-.698.72a.869.869 0 0 1-.595.274l-1.587.044a.532.532 0 0 0 0 1.064l1.588.044a2.05 2.05 0 0 0 1.443-.56l.734-.686a4.18 4.18 0 0 0 1.307-2.932l.058-1.883a3.7 3.7 0 0 0-.528-1.987l-1.373-2.28.92-1.647a.892.892 0 0 0-.713-1.31c-2.474-.243-5.065-.674-7.577-.864-1.82-.138-3.598-.143-5.258.072-2.424.353-4.395.867-6.105 1.736-1.78.907-3.285 2.178-4.732 4.01l-3.549 1.34a3.73 3.73 0 0 0-1.79 1.406 3.65 3.65 0 0 0-.63 2.14l.06 1.87a1.3 1.3 0 0 0 .403.915 1.26 1.26 0 0 0 .912.348l1.614-.068a.196.196 0 0 0 0-.392" }), _jsx("path", { d: "m22.199 28.453-12.281.338a.07.07 0 0 0-.071.07c0 .041.031.072.07.072l12.282.339a.41.41 0 0 0 0-.82M8.409 22.266s2.55.152 5.639.274c1.212.048 2.506.092 3.76.114.868.016 1.717.023 2.505.013.838-.01 1.606-.042 2.257-.067.624-.023 1.138-.05 1.504-.067.245-.012.48-.08.68-.21.195-.127.363-.298.47-.513l1.997-4.05a.017.017 0 0 0-.007-.025.02.02 0 0 0-.026.007l-2.486 3.767a.7.7 0 0 1-.628.309c-.365-.017-.879-.045-1.504-.07-.651-.024-1.418-.057-2.256-.068a83 83 0 0 0-2.506.01c-1.254.021-2.547.064-3.76.112-3.089.12-5.639.268-5.639.268a.098.098 0 1 0 0 .196" }), _jsx("path", { d: "M20.017 17.006s-.751 1.44-1.658 3.314a50 50 0 0 0-1.015 2.246c-.157.382-.303.769-.439 1.152-.141.398-.265.792-.386 1.171q-.24.764-.431 1.42c-.373 1.278-.6 2.148-.6 2.148-.005.009 0 .02.01.024.009.003.02-.002.024-.01 0 0 .438-.785 1.056-1.965q.318-.605.673-1.322c.177-.357.36-.726.535-1.112q.252-.554.484-1.133a45.979 45.979 0 0 0 .826-2.323c.646-1.98 1.103-3.537 1.103-3.537a.097.097 0 0 0-.054-.128.1.1 0 0 0-.128.055M7.666 18.634l-.163 1.464a.906.906 0 1 0 1.802.18l.16-1.806a.9.9 0 0 0-.134-.561l-.233-.378a.88.88 0 0 0-.43-.38l-4.084-1.637-.12-.131a12.423 12.423 0 0 1-.11-3.67.25.25 0 0 1 .136-.194l3.987-1.866a.7.7 0 0 0 .324-.305l.215-.401a.68.68 0 0 0 .09-.432l-.628-4.356a.4.4 0 0 1 .017-.191.4.4 0 0 1 .107-.162q.714-.605 1.512-1.1a12.5 12.5 0 0 1 1.664-.869.46.46 0 0 1 .441.042l3.617 2.51c.082.06.183.09.284.086l.466-.015a.45.45 0 0 0 .278-.093l3.452-2.73a.63.63 0 0 1 .597-.107q.902.319 1.746.769a13 13 0 0 1 1.619 1.026.7.7 0 0 1 .22.274c.048.11.072.231.062.354l-.361 4.387a.197.197 0 0 0 .176.215.197.197 0 0 0 .214-.176l.514-4.372a1.28 1.28 0 0 0-.469-1.14v-.002A13.5 13.5 0 0 0 21.16.857h-.001a1.36 1.36 0 0 0-1.302.183l-3.414 2.526h-.19l-3.419-2.541a1.54 1.54 0 0 0-1.464-.193l-.006.001a13.6 13.6 0 0 0-3.533 2.048l-.004.003a1.6 1.6 0 0 0-.573 1.436l.483 4.141-.021.036-3.838 1.67a1.75 1.75 0 0 0-1.021 1.338v.007a13.8 13.8 0 0 0 .015 4.153 1.8 1.8 0 0 0 1.08 1.367zm10.277-8.337c.732.549 1.181 1.356 1.367 2.216a2.74 2.74 0 0 1-.432 2.191.906.906 0 0 0 1.582.882c.486-1.147.494-2.387-.032-3.462-.468-.958-1.26-1.765-2.294-2.17a.196.196 0 1 0-.19.343M29.554 15.948c.127-.757.189-1.566.18-2.38a14 14 0 0 0-.223-2.368v-.002a1.2 1.2 0 0 0-.751-.889l-3.955-1.454a.08.08 0 0 0-.1.043.08.08 0 0 0 .044.1l3.88 1.645a.81.81 0 0 1 .482.625c.106.74.148 1.522.133 2.298-.016.783-.093 1.56-.233 2.284a.276.276 0 1 0 .543.098" }), _jsx("path", { d: "M15.173 15.734c-.696-.333-1.178-.887-1.401-1.556a3.52 3.52 0 0 1 .039-2.347c.24-.663.865-1.324 1.658-1.75.776-.416 1.684-.624 2.562-.411a.077.077 0 0 0 .097-.049.076.076 0 0 0-.048-.097c-.914-.399-1.942-.337-2.864-.029-1.08.361-1.97 1.099-2.408 1.877a4.77 4.77 0 0 0-.512 3.188c.215 1.137.901 2.13 1.965 2.811a.937.937 0 1 0 .912-1.637" })] }));
12
+ };
13
+ export default CarService;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const FuelDispenserNozzle = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 33 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M14.286 9.997s.416-.46.815-1.04c.54-.78 1.04-1.721 1.04-1.721a.239.239 0 0 0-.358-.316s-.871.613-1.58 1.243c-.525.468-.932.937-.932.937a.678.678 0 0 0 1.015.897" }), _jsx("path", { d: "M20.34 30.564c-.204.049-.844.166-1.39-.227-.334-.24-.628-.657-.794-1.352l-2.98-13.42a.036.036 0 0 0-.043-.03.037.037 0 0 0-.03.043l2.204 13.586c.181.993.6 1.585 1.054 1.95.9.723 2.02.536 2.256.488l.142-.045 5.894-2.256a1.47 1.47 0 0 0 1.773.372l2.953-1.393a1.638 1.638 0 0 0 .79-2.101l-4.654-11.231.182-.235a2.08 2.08 0 0 0-.241-2.813L21.97 6.914a2.14 2.14 0 0 0-1.47-.555 2.13 2.13 0 0 0-1.449.601l-.626.613-5.598-4.443a.84.84 0 0 0-.318-.161L3.503.772A1.65 1.65 0 0 0 2.257.96a1.63 1.63 0 0 0-.733 1.01l-.317 1.403a1.57 1.57 0 0 0 1.064 1.858l7.897 2.33.04.017 3.53 2.853.065.098.966 4.475a.197.197 0 0 0 .386-.075l-.758-4.514a.81.81 0 0 0-.259-.458l-3.393-3.012-.322-.183-7.794-2.656a.36.36 0 0 1-.219-.435l.374-1.388.151-.18.223-.017 8.739 2.453 5.372 4.495c.36.299.805.433 1.243.419a1.84 1.84 0 0 0 1.212-.512l.647-.61a.22.22 0 0 1 .15-.054c.052 0 .101.025.142.062l5.442 5.034.014.124-.39.512a1.38 1.38 0 0 0-.173 1.386l5.097 11.434.014.018-2.893 1.515-.048.008-.196-.226a.93.93 0 0 0-1.073-.263z" }), _jsx("path", { d: "M19.416 19.171c.025-.16.134-.637.622-.857.306-.138.737-.162 1.343-.036l.035.005a1.27 1.27 0 0 1 .959.744l2.742 6.551-1.219.621-.011.018-.033-.008-2.472-6.04-.137-.187-1.48-1.128a.027.027 0 0 0-.039.003.027.027 0 0 0 .003.039l1.334 1.298.04.072 1.832 6.265a1.03 1.03 0 0 0 1.403.626l1.465-.604c.24-.1.408-.295.51-.514a1 1 0 0 0 .022-.731c-.247-.721-.823-2.465-1.469-4.158-.38-1-.796-1.976-1.133-2.734h-.001a2.69 2.69 0 0 0-2.124-1.552l.023.004c-.995-.163-1.692-.029-2.181.22-1.107.561-1.275 1.695-1.296 1.98l-.003.039.009.168 1.245 8.25a1.23 1.23 0 0 0 .654.91 1.167 1.167 0 0 0 1.085-.012l1.816-1a.147.147 0 1 0-.13-.264l-1.9.832a.66.66 0 0 1-.602-.048.613.613 0 0 1-.287-.49zm-.002-.03.001.019v-.019000000000000003M4.208 7.998s.971 2.37 1.626 4.667c.334 1.167.587 2.307.549 3.08-.019.466-.29.86-.669 1.14-.365.275-.85.42-1.373.405a2.18 2.18 0 0 1-1.322-.47c-.342-.273-.589-.642-.598-1.074-.048-.744.158-1.761.418-2.798.149-.595.305-1.188.466-1.744.425-1.466.824-2.616.824-2.616a.03.03 0 0 0-.015-.043.034.034 0 0 0-.044.015s-.676 1.027-1.4 2.386a24 24 0 0 0-.808 1.674c-.216.5-.402.999-.55 1.477A7 7 0 0 0 1 15.746c-.017.878.392 1.688 1.083 2.245.59.474 1.388.755 2.258.742.86-.025 1.637-.321 2.205-.808.65-.558 1.048-1.333 1.015-2.18-.044-.859-.415-2.105-.921-3.357-.906-2.245-2.167-4.517-2.167-4.517a.147.147 0 0 0-.196-.07.15.15 0 0 0-.069.197" })] }));
12
+ };
13
+ export default FuelDispenserNozzle;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const Parking = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 32 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M20.85 2.183c-1.582.832-2.575 2.15-2.998 3.66-.431 1.537-.207 3.259.582 4.907a6.6 6.6 0 0 0 4.142 3.34c.877.237 1.81.286 2.723.144a6.8 6.8 0 0 0 2.543-.948c1.59-1.013 2.65-2.553 3.018-4.264.358-1.658.103-3.454-.893-4.99-.95-1.443-2.225-2.408-3.634-2.813-1.425-.408-2.97-.258-4.389.551a.037.037 0 0 0-.016.05c.009.018.031.026.05.017 1.415-.61 2.876-.613 4.17-.084 1.196.49 2.229 1.447 2.926 2.8.688 1.316.762 2.782.359 4.097a5.16 5.16 0 0 1-2.518 3.05c-.599.328-1.242.506-1.885.584-.66.08-1.321.03-1.956-.126-1.26-.31-2.424-1.046-3.14-2.245-.79-1.23-1.114-2.572-.951-3.84.173-1.355.84-2.616 2.077-3.56a.196.196 0 1 0-.21-.33M21.105 30.82l-.003.026c0 .08.066.147.147.147 0 0 .133-.059.164-.247.03-.173.088-.53.148-.9.013-.09.059-.166.104-.242.04-.07.11-.117.175-.167.061-.046.137-.055.21-.074.065-.018.13.002.2.01.59.053 1.364.144 2.15.19.364.021.73.031 1.076.032.393.003.761-.014 1.075-.02.038-.002.076-.008.111.004.039.013.081.019.112.046.033.03.072.054.09.094.021.042.048.083.05.13l.012.16c-.443.061-1.092.151-1.786.254-1.662.247-3.56.555-3.56.555a.027.027 0 0 0-.027.03c.001.015.015.026.03.026 0 0 1.92.096 3.6.157 1.146.042 2.166.064 2.363.068l.001.002V31.1h.007c.067-.014.542-.127.585-.648l.048-.596a1.6 1.6 0 0 0-.1-.638 1.68 1.68 0 0 0-.88-.95 1.7 1.7 0 0 0-.656-.149c-.314-.006-.682-.023-1.075-.02-.346 0-.71.01-1.076.031-.785.047-1.56.137-2.15.189-.2.025-.395.064-.566.163a1.42 1.42 0 0 0-.697.841c-.045.171-.075.344-.05.523l.148.9a.4.4 0 0 0 .02.073" }), _jsx("path", { d: "m23.405 13.316.555 15.53a.445.445 0 1 0 .89 0l.555-15.53a1 1 0 0 0-2 0M5.539 19.51l2-.127a.35.35 0 0 0 .001-.7l-2-.134a.48.48 0 0 0-.001.96M24.229 10.34s.007-1.106-.078-2.358a65 65 0 0 0-.36-3.54.24.24 0 0 0-.24-.237.24.24 0 0 0-.238.237s-.249 1.884-.36 3.54c-.085 1.252-.079 2.358-.079 2.358 0 .374.303.676.678.676a.676.676 0 0 0 .677-.676M23.942 4.296c-.034-.056-.064-.018-.068.029a.126.126 0 0 0 .113.14s.832.283 1.485.84c.177.15.31.333.421.536q.125.228.112.53c.01.143.007.27-.022.387-.021.088-.03.174-.065.252a1.7 1.7 0 0 1-.267.437 3.3 3.3 0 0 1-1.013.746c-.176.079-.279.132-.296.12a.023.023 0 0 0-.033-.003.024.024 0 0 0-.004.034c.02.045.63.153 1.334-.003.31-.07.6-.211.877-.405.293-.204.51-.497.661-.86.089-.213.117-.459.127-.727a2 2 0 0 0-.108-.601 2.06 2.06 0 0 0-.848-1.048 3.3 3.3 0 0 0-1.172-.432 5 5 0 0 0-1.045-.064q-.079.004-.105.006c-.063.006-.084.042-.084.086M17.98 18.575s-1.004-.14-2.028-.252c-.298-.034-.594-.058-.868-.084-.451-.03-.867.14-1.175.424-.312.29-.492.713-.498 1.172v.002c.014.221.055.437.153.63.095.19.219.367.384.507.165.131.342.243.541.3.193.054.392.085.595.06l1.887-.294q.017-.002.019-.02a.02.02 0 0 0-.019-.017l-1.887-.296a.818.818 0 0 1-.533-.332.8.8 0 0 1-.127-.26.7.7 0 0 1-.025-.275v-.002a.7.7 0 0 1 .195-.486c.126-.135.288-.246.487-.258.274-.025.57-.047.87-.08a84 84 0 0 0 2.027-.242.1.1 0 0 0 .099-.098.1.1 0 0 0-.098-.099M1.655 8.483l2.277.2c.51.04.974.239 1.366.534.373.28.65.673.82 1.127.206.53.436 1.131.686 1.748.235.58.494 1.172.728 1.728.088.193.126.402.115.611a1.3 1.3 0 0 1-.165.607 1.3 1.3 0 0 1-.44.489c-.195.127-.411.224-.648.24-.704.06-1.446.122-2.155.188-1.747.173-3.23.357-3.23.357-.015 0-.029.01-.029.025s.014.031.03.031c0 0 1.482.178 3.229.352.71.071 1.45.127 2.155.188.442.03.874-.066 1.264-.25.402-.183.738-.489 1.007-.856a2.61 2.61 0 0 0 .23-2.6c-.264-.544-.539-1.125-.821-1.686-.3-.596-.603-1.162-.864-1.667-.331-.611-.806-1.116-1.392-1.437a3.34 3.34 0 0 0-1.886-.418l-2.277.199a.145.145 0 1 0 0 .29" }), _jsx("path", { d: "M12.708 28.16c-.186-.26-.311-.056-.311.177 0 .352.285.637.637.637l.491.023a3.7 3.7 0 0 0 2.091-.565 3.75 3.75 0 0 0 1.437-1.676c.432-.98.991-2.227 1.519-3.45.569-1.319 1.105-2.606 1.47-3.468a2.97 2.97 0 0 0-.413-2.978c-.916-1.115-2.541-3.129-4.193-5.106-1.688-2.02-3.398-3.996-4.283-5.037a2.6 2.6 0 0 0-.932-.7 2.55 2.55 0 0 0-1.127-.22l-7.508.344a.196.196 0 0 0 0 .392l7.508.344c.222.01.431.08.621.183.184.1.339.248.464.423.804 1.106 2.322 3.232 3.888 5.347 1.533 2.071 3.109 4.125 3.978 5.277.11.14.179.303.204.473.026.171.015.35-.05.516-.334.875-.839 2.175-1.341 3.521-.466 1.247-.926 2.533-1.294 3.54-.154.43-.418.798-.77 1.057a2.3 2.3 0 0 1-1.269.463l-.442.02c-.329.016-.404.221-.375.462" }), _jsx("path", { d: "M7.452 24.179c-1.004.455-1.63 1.239-1.94 2.156-.32.951-.187 2.028.263 3.085a4.17 4.17 0 0 0 2.624 2.176 4 4 0 0 0 1.75.088 4.3 4.3 0 0 0 1.62-.629c.992-.67 1.663-1.646 1.865-2.74.191-1.042.021-2.159-.633-3.097-.613-.86-1.397-1.43-2.268-1.643a3.34 3.34 0 0 0-2.605.418.037.037 0 1 0 .033.066c.826-.317 1.657-.283 2.387.05.658.299 1.2.86 1.56 1.63.346.72.336 1.504.098 2.204-.221.65-.703 1.196-1.364 1.526-.307.16-.637.23-.963.265a2.9 2.9 0 0 1-.98-.07c-.64-.151-1.25-.483-1.624-1.08-.453-.642-.684-1.335-.632-2.02.058-.763.36-1.485 1.02-2.054a.196.196 0 0 0-.21-.331" }), _jsx("path", { d: "m5.54 28.163-3.279.126a.048.048 0 1 0 0 .096l3.278.126a.173.173 0 0 0 .173-.174.173.173 0 0 0-.173-.174" })] }));
12
+ };
13
+ export default Parking;
@@ -0,0 +1,17 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const Train = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 28 32", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M7.738 18.35a1.68 1.68 0 0 0-1.273.085c-.44.206-.736.614-.88 1.101-.119.521.004 1.049.309 1.456.29.388.753.654 1.283.727.519.048 1.014-.077 1.385-.368.374-.292.642-.71.68-1.205a1.82 1.82 0 0 0-.442-1.292c-.287-.33-.676-.57-1.113-.595a.018.018 0 1 0-.006.037c.38.106.68.386.87.732.174.319.233.693.142 1.026-.078.299-.293.518-.55.659a1.13 1.13 0 0 1-.813.086 1.1 1.1 0 0 1-.65-.416c-.16-.2-.277-.438-.25-.706.014-.302.135-.57.35-.762.249-.22.56-.371.926-.37a.098.098 0 0 0 .032-.194M20.742 18.35a1.68 1.68 0 0 0-1.273.085c-.439.206-.735.614-.88 1.101-.118.521.005 1.049.31 1.456.29.388.753.654 1.282.727.52.048 1.014-.077 1.386-.368.374-.292.642-.71.68-1.205a1.82 1.82 0 0 0-.442-1.292c-.287-.33-.677-.57-1.113-.595a.018.018 0 1 0-.006.037c.379.106.68.386.869.732.175.319.234.693.142 1.026-.078.299-.292.518-.55.659a1.13 1.13 0 0 1-.812.086 1.1 1.1 0 0 1-.65-.416c-.16-.2-.278-.438-.25-.706.013-.302.135-.57.35-.762.249-.22.559-.371.925-.37a.098.098 0 0 0 .032-.194" }), _jsx("ellipse", { cx: 621.368, cy: 81.007, rx: 0.649, ry: 0.642, transform: "matrix(.86076 0 0 .86076 -516.298 -64.717)" }), _jsx("path", { d: "M621.188 80.391a.646.646 0 0 1 .829.616c0 .355-.29.643-.649.643v-.73c.062-.023.036.215.062.16.035-.073.246.009.216-.073-.042-.12.144-.279.038-.33-.137-.067-.159-.348-.316-.297a.5.5 0 0 1-.18.011", style: {
12
+ fill: 'none'
13
+ }, transform: "matrix(.86076 0 0 .86076 -516.298 -64.717)" }), _jsx("ellipse", { cx: 621.368, cy: 81.007, rx: 0.649, ry: 0.642, transform: "matrix(.86076 0 0 .86076 -525.415 -64.717)" }), _jsx("path", { d: "M621.188 80.391a.646.646 0 0 1 .829.616c0 .355-.29.643-.649.643v-.73c.062-.023.036.215.062.16.035-.073.246.009.216-.073-.042-.12.144-.279.038-.33-.137-.067-.159-.348-.316-.297a.5.5 0 0 1-.18.011", style: {
14
+ fill: 'none'
15
+ }, transform: "matrix(.86076 0 0 .86076 -525.415 -64.717)" }), _jsx("path", { d: "m11.777 5.51 4.39-.122a.377.377 0 1 0 .002-.755l-4.39-.139a.507.507 0 1 0-.002 1.016M11.386 19.268l5.21-.12a.378.378 0 0 0 .002-.755l-5.21-.14a.508.508 0 0 0-.002 1.015M11.386 21.316l5.21-.12a.378.378 0 0 0 .002-.756l-5.21-.14a.508.508 0 0 0-.002 1.016" }), _jsx("path", { d: "m14.569 1.003-.283-.001q-.142 0-.284.002c-3.01.039-6.011.58-8.89 1.593a2.73 2.73 0 0 0-1.836 2.616l.445 16.898a1.914 1.914 0 0 0 1.219 1.74c.228.087.473.13.722.124v-.392a1.47 1.47 0 0 1-1.015-.458 1.42 1.42 0 0 1-.383-1.014L4.71 5.213c.007-.271.107-.522.262-.728.152-.202.37-.35.623-.427l.003-.001a27 27 0 0 1 8.404-1.2 26.9 26.9 0 0 1 8.331 1.423l.094.03a.843.843 0 0 1 .574.788c.03 2.05.072 6.163.151 10.009.052 2.579.13 5.035.171 6.672.007.178-.017.354-.078.517a1.38 1.38 0 0 1-1.25.906l-15.546.54a.037.037 0 0 0-.037.037c0 .02.016.037.037.037l15.545.54c.344.01.68-.055.997-.174a2.63 2.63 0 0 0 1.675-2.403c.042-1.637.119-4.093.172-6.672.078-3.846.12-7.958.152-10.008a2.81 2.81 0 0 0-1.933-2.684l-.094-.032a28.1 28.1 0 0 0-8.394-1.38" }), _jsx("path", { d: "m6.575 6.993-.385 6.97c-.01.204.031.404.1.591a1.55 1.55 0 0 0 .82.863c.187.087.393.128.603.136.727.024 1.79.068 3.004.098.942.024 1.972.044 3.004.056.815.008 1.632.013 2.403.01 1.46-.009 2.761-.04 3.604-.052.466-.011.887-.197 1.186-.508.295-.309.484-.725.475-1.185l-.15-5.975a1.5 1.5 0 0 0-.455-1.042 1.47 1.47 0 0 0-1.042-.407l-11.758.417a.027.027 0 0 0-.027.028q.002.026.027.028l11.758.418a.56.56 0 0 1 .375.18.5.5 0 0 1 .13.376l-.18 5.974a.33.33 0 0 1-.111.227.32.32 0 0 1-.228.076c-.843-.013-2.144-.045-3.604-.053-.771-.004-1.587 0-2.403.008-1.032.012-2.062.03-3.004.055-1.214.03-2.277.073-3.004.097a.4.4 0 0 1-.165-.018.5.5 0 0 1-.15-.08.46.46 0 0 1-.161-.316l-.368-6.972a.147.147 0 1 0-.294 0M4.356 28.813c-.222-.015-.512-.031-.821-.04.192-.259.395-.536.598-.824 1.179-1.658 2.408-3.546 2.408-3.546a.195.195 0 0 0-.018-.276.195.195 0 0 0-.277.017s-1.71 1.467-3.2 2.854c-.907.845-1.705 1.656-2.04 1.983-.145.148-.214.343-.252.538-.04.196.004.399.08.592.077.193.227.338.39.454s.366.16.575.17c.31.007.896.042 1.469.033.651-.01 1.28-.07 1.469-.079.18-.016.36-.038.502-.138.143-.099.29-.205.368-.367.123-.275.735-1.562 1.294-2.886.629-1.492 1.171-2.962 1.171-2.962a.037.037 0 0 0-.012-.05.037.037 0 0 0-.051.013s-1.036 1.175-2.05 2.436a80 80 0 0 0-1.603 2.078m-1.88 1.366-.04.052.037-.048zm1.653-1.065q-.016.022-.033.043l-.064.087.098-.13zM24.465 29.039c-.312.009-.605.025-.83.04A77 77 0 0 0 22.025 27a81 81 0 0 0-2.056-2.436.04.04 0 0 0-.05-.013.037.037 0 0 0-.014.05s.547 1.472 1.18 2.962c.562 1.326 1.178 2.614 1.301 2.888.078.161.225.267.367.365.144.1.323.122.502.139.188.01.822.068 1.476.079.575.008 1.165-.027 1.475-.033.209-.01.413-.054.576-.172.162-.116.313-.26.39-.454.076-.193.118-.396.08-.591-.04-.195-.11-.39-.254-.54-.337-.326-1.137-1.138-2.048-1.983-1.495-1.385-3.211-2.851-3.211-2.851a.196.196 0 0 0-.295.259s1.237 1.89 2.421 3.547c.204.286.408.564.6.823m1.068 1.41.037.05-.04-.052zm-1.673-1.071.098.13-.063-.086-.033-.042zm2.3520000000000003-.30200000000000005zM8.66 27.558s3.629-.012 6.768-.154c2.407-.108 4.513-.304 4.513-.304a.343.343 0 0 0 0-.686s-2.106-.198-4.512-.31c-3.14-.144-6.768-.16-6.768-.16a.807.807 0 0 0-.001 1.614" })] }));
16
+ };
17
+ export default Train;
@@ -0,0 +1,13 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ const Tram = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
6
+ return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", style: {
7
+ fillRule: 'evenodd',
8
+ clipRule: 'evenodd',
9
+ strokeLinejoin: 'round',
10
+ strokeMiterlimit: 2
11
+ }, viewBox: "0 0 31 30", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: [_jsx("path", { d: "M14.692 10.46c-.065-.113-.11-.046-.11.032 0 .108.087.196.196.196 0 0 .082.173.598.6.073.059.112.09.2.134.066.033.125.066.2.07a.4.4 0 0 0 .2-.047c.102-.05.126-.086.2-.161.611-.612.602-.751.602-.751a.037.037 0 0 0 0-.074v.005a.6.6 0 0 0-.06-.094c-.144-.195-.112-.238-.539-.664-.075-.076-.098-.112-.199-.162a.4.4 0 0 0-.2-.049c-.075.004-.134.037-.2.07a1 1 0 0 0-.2.134c-.368.298-.41.393-.542.53a.54.54 0 0 0-.146.23" }), _jsx("path", { d: "M25.897 10.54c-1.804.018-4.963.033-8.352.082-4.77.067-9.99.186-12.528.234a2.65 2.65 0 0 0-2.536 2.042l-1.416 6.286-.062.595.149 5.752a2.29 2.29 0 0 0 .7 1.592 2.24 2.24 0 0 0 1.592.617l.34-.01.01-.016c.039-.074.18-.37-.043-.377l-.307-.009a1.77 1.77 0 0 1-1.24-.556 1.723 1.723 0 0 1-.469-1.24l.164-5.752.058-.372 1.716-6.21c.084-.304.272-.554.51-.73.235-.175.527-.263.834-.256 2.539.048 7.759.167 12.528.234 3.389.05 6.548.064 8.352.082a1.01 1.01 0 0 1 .97.762l1.623 6.237.04.255.116 5.75a1.18 1.18 0 0 1-.314.854 1.23 1.23 0 0 1-.853.392c-2.095.057-5.574.141-9.204.252-6.66.204-13.806.467-13.806.467a.04.04 0 0 0-.037.037c0 .02.017.037.037.037 0 0 7.146.263 13.806.467 3.63.111 7.109.195 9.204.252a2.76 2.76 0 0 0 1.977-.78 2.822 2.822 0 0 0 .856-1.979l.098-5.752-.08-.716-1.524-6.26a2.99 2.99 0 0 0-2.91-2.263" }), _jsx("path", { d: "m3.081 25.97 9.434-.078a.43.43 0 0 0 0-.86l-9.434-.078a.508.508 0 0 0 0 1.016M18.414 25.819l9.426-.178a.18.18 0 0 0 0-.358l-9.426-.176a.356.356 0 0 0 0 .712M7.46 2.353s3 .006 6.401-.078c4.46-.11 9.6-.36 9.6-.36a.239.239 0 0 0 0-.478s-5.14-.25-9.6-.361c-3.4-.085-6.4-.078-6.4-.078a.677.677 0 0 0 0 1.355" }), _jsx("path", { d: "M12.167 6.306q.167-.165.383-.392c.282-.3.611-.667.954-1.056.314-.357.63-.73.928-1.084.755-.902 1.359-1.66 1.359-1.66.007-.007.008-.02 0-.026a.02.02 0 0 0-.026 0s-.774.582-1.697 1.312c-.364.287-.744.593-1.109.897-.399.332-.776.65-1.082.925-.33.296-.573.538-.69.649a.6.6 0 0 0-.183.429.591.591 0 0 0 .183.429c.14.128.459.429.875.798.267.238.573.504.896.775a172 172 0 0 0 2.751 2.26c.04.038.102.037.139-.002a.097.097 0 0 0-.002-.138s-1.225-1.438-2.34-2.685a42 42 0 0 0-1.34-1.431" }), _jsx("path", { d: "M19.39 6.31A42.326 42.326 0 0 0 18.05 7.74a173 173 0 0 0-2.34 2.685.097.097 0 0 0-.003.138c.037.039.1.04.139.002 0 0 1.473-1.182 2.751-2.26.323-.271.63-.537.897-.775.415-.37.734-.67.874-.798a.6.6 0 0 0 .183-.43q-.001-.122-.047-.232a.6.6 0 0 0-.135-.196c-.118-.111-.361-.353-.691-.65a42 42 0 0 0-1.082-.924c-.365-.304-.745-.61-1.109-.897-.923-.73-1.697-1.312-1.697-1.312a.02.02 0 0 0-.026 0c-.008.007-.007.019 0 .026 0 0 .604.758 1.36 1.66.296.355.613.727.927 1.084.343.389.673.757.954 1.056.143.15.274.282.384.392M9.367 27.715a1.64 1.64 0 0 1-.692.909c-.339.218-.75.354-1.205.375a2.14 2.14 0 0 1-1.317-.327 2.27 2.27 0 0 1-.911-1.107.18.18 0 0 0-.345.1c.126.59.45 1.105.892 1.49.452.396 1.037.629 1.681.674.632.029 1.22-.102 1.706-.376.54-.304.943-.794 1.158-1.427a.509.509 0 0 0-.967-.31M14.976 27.524a2.06 2.06 0 0 1-.71 1.019c-.332.258-.734.439-1.186.46a2.14 2.14 0 0 1-1.319-.33 2.27 2.27 0 0 1-.91-1.108.18.18 0 0 0-.344.1c.125.59.45 1.104.893 1.49a2.83 2.83 0 0 0 1.68.67c.649.03 1.26-.158 1.758-.5.517-.354.9-.884 1.106-1.49a.507.507 0 1 0-.968-.31M21.367 27.524a2.06 2.06 0 0 1-.71 1.019c-.333.258-.735.439-1.187.46a2.14 2.14 0 0 1-1.318-.33 2.27 2.27 0 0 1-.91-1.108.18.18 0 0 0-.344.1c.125.59.45 1.104.893 1.49a2.83 2.83 0 0 0 1.68.67c.648.03 1.259-.158 1.757-.5.518-.354.901-.884 1.106-1.49a.507.507 0 1 0-.967-.31M26.976 27.524a2.06 2.06 0 0 1-.71 1.019c-.332.258-.734.439-1.186.46a2.14 2.14 0 0 1-1.319-.33 2.27 2.27 0 0 1-.91-1.108.18.18 0 0 0-.344.1c.125.59.45 1.104.893 1.49a2.83 2.83 0 0 0 1.68.67c.649.03 1.26-.158 1.758-.5.517-.354.9-.884 1.106-1.49a.507.507 0 1 0-.968-.31M19.364 19.692l8.094.255a.418.418 0 0 0 .4-.524l-1.255-5.277a1.592 1.592 0 0 0-1.519-1.197c-.944-.02-2.676-.066-4.74-.097-1.468-.022-3.103-.048-4.738-.049s-3.272.014-4.74.04c-2.073.034-3.81.096-4.738.119a1.58 1.58 0 0 0-.923.32 1.56 1.56 0 0 0-.552.791L3.5 18.113a1.39 1.39 0 0 0 .229 1.236c.135.17.302.309.494.397.19.087.398.136.612.127l6.997-.3a.03.03 0 0 0 .028-.028.03.03 0 0 0-.028-.028l-6.997-.3a.66.66 0 0 1-.511-.3.63.63 0 0 1-.056-.556L5.7 14.412a.44.44 0 0 1 .175-.21.42.42 0 0 1 .253-.062c.929.023 2.665.085 4.739.12 1.467.025 3.103.042 4.739.04 1.635 0 3.27-.024 4.739-.046 2.062-.031 3.795-.076 4.739-.094a.4.4 0 0 1 .25.068.42.42 0 0 1 .163.215l1.408 4.692-7.542.262a.147.147 0 0 0-.147.148.15.15 0 0 0 .148.147" }), _jsx("path", { d: "M7.122 14.05s-.003.888.04 1.894c.054 1.324.18 2.843.18 2.843 0 .066.053.12.118.12a.12.12 0 0 0 .12-.12s.125-1.519.18-2.843c.043-1.006.04-1.895.04-1.895a.339.339 0 0 0-.678 0M12.46 14.049s-.003 2.54.038 5.417c.057 3.773.181 8.128.181 8.128 0 .065.055.12.12.12a.12.12 0 0 0 .118-.12s.126-4.355.181-8.128c.043-2.877.039-5.417.039-5.417a.339.339 0 1 0-.678 0M17.832 14.049s-.003 2.54.039 5.417c.057 3.773.18 8.128.18 8.128 0 .065.055.12.12.12a.12.12 0 0 0 .119-.12s.125-4.355.18-8.128c.044-2.877.04-5.417.04-5.417a.339.339 0 1 0-.678 0M23.123 14.05s-.004.934.039 1.993a92 92 0 0 0 .18 2.992.12.12 0 1 0 .239 0s.125-1.599.18-2.992c.042-1.059.039-1.994.039-1.994a.34.34 0 0 0-.677 0" })] }));
12
+ };
13
+ export default Tram;