elementa-icons 1.22.0 → 1.25.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.
- package/README.md +75 -0
- package/dist/icons/animals/DogPaw.js +14 -0
- package/dist/icons/animals/index.js +2 -0
- package/dist/icons/transportation/Car1.js +14 -0
- package/dist/icons/transportation/Car2.js +13 -0
- package/dist/icons/transportation/CarService.js +13 -0
- package/dist/icons/transportation/FuelDispenserNozzle.js +13 -0
- package/dist/icons/transportation/Parking.js +13 -0
- package/dist/icons/transportation/Train.js +17 -0
- package/dist/icons/transportation/Tram.js +13 -0
- package/dist/icons/transportation/index.js +8 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +5 -11
- package/dist/lib/icon-template.js +0 -2
- package/dist/types/icons/animals/DogPaw.d.ts +6 -0
- package/dist/types/icons/animals/index.d.ts +2 -0
- package/dist/types/icons/transportation/Car1.d.ts +6 -0
- package/dist/types/icons/transportation/Car2.d.ts +6 -0
- package/dist/types/icons/transportation/CarService.d.ts +6 -0
- package/dist/types/icons/transportation/FuelDispenserNozzle.d.ts +6 -0
- package/dist/types/icons/transportation/Parking.d.ts +6 -0
- package/dist/types/icons/transportation/Train.d.ts +6 -0
- package/dist/types/icons/transportation/Tram.d.ts +6 -0
- package/dist/types/icons/transportation/index.d.ts +8 -1
- package/dist/types/index.d.ts +4 -2
- package/package.json +2 -2
- package/src/index.ts +27 -11
package/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+

|
|
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 } from "react/jsx-runtime";
|
|
2
|
+
// Import styles.
|
|
3
|
+
/**
|
|
4
|
+
* This function renders an SVG icon.
|
|
5
|
+
*/
|
|
6
|
+
const DogPaw = ({ color = '#000000', height = '1em', strokeWidth = 1, width = '1em' }) => {
|
|
7
|
+
return (_jsx("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 29 27", height: height, width: width, stroke: color, strokeWidth: strokeWidth, fill: color, children: _jsx("path", { d: "M10.955 1.118c.713.064 1.301.488 1.759 1.107.239.324.407.71.55 1.132.191.56.272 1.188.24 1.856a4.6 4.6 0 0 1-.685 2.357c-.242.392-.528.72-.877.928-.218.13-.447.232-.7.252-.701.065-1.357-.307-1.85-.927a4.7 4.7 0 0 1-.969-2.419c-.144-1.243.152-2.54.733-3.496C9.641 1.11 10.303.55 11.071.457c.02-.001.036-.019.036-.039a.037.037 0 0 0-.039-.036c-.845-.039-1.66.452-2.323 1.227-.835.976-1.381 2.403-1.44 3.837-.046 1.532.469 2.899 1.253 3.836.722.864 1.706 1.32 2.754 1.337 1.07-.012 2.066-.527 2.796-1.418a4.8 4.8 0 0 0 .841-1.552 6.2 6.2 0 0 0 .266-2.5c-.163-1.242-.597-2.345-1.283-3.132-.825-.946-1.89-1.472-2.992-1.291a.196.196 0 0 0 .015.392M21.693 3.764c.533.381.796.988.872 1.689.04.366-.009.746-.09 1.145a4.6 4.6 0 0 1-.664 1.572 4.16 4.16 0 0 1-1.609 1.54c-.36.196-.727.326-1.09.333-.22.004-.44-.012-.643-.107-.573-.257-.921-.833-1.032-1.531a4.3 4.3 0 0 1 .31-2.357c.443-1.06 1.261-1.965 2.157-2.47.75-.42 1.532-.573 2.19-.302.018.01.04.003.05-.015a.037.037 0 0 0-.015-.05c-.66-.425-1.54-.409-2.434-.095-1.126.394-2.225 1.289-2.94 2.414-.753 1.215-.97 2.56-.774 3.682a3.41 3.41 0 0 0 1.623 2.382c.88.493 1.936.539 2.951.151.491-.187.974-.48 1.405-.873a5.8 5.8 0 0 0 1.368-1.91c.434-1.084.591-2.178.39-3.131-.24-1.147-.864-2.061-1.844-2.415a.196.196 0 0 0-.181.348M27.342 12.073c.282.456.273.99.109 1.542-.086.287-.248.55-.433.824-.243.362-.58.68-.985.962a3.33 3.33 0 0 1-1.645.654c-.309.038-.603.034-.862-.06-.15-.053-.298-.112-.41-.227-.34-.336-.441-.836-.334-1.362.119-.581.4-1.19.892-1.703.645-.691 1.527-1.16 2.363-1.294.702-.112 1.35-.01 1.785.389a.037.037 0 1 0 .055-.049c-.463-.661-1.388-.912-2.404-.836-.87.066-1.775.407-2.536.948-.99.721-1.58 1.724-1.785 2.678a2.98 2.98 0 0 0 .556 2.46c.56.688 1.41 1.066 2.363 1.073.456.004.939-.08 1.408-.266a4.9 4.9 0 0 0 1.68-1.116c.67-.745 1.132-1.567 1.249-2.395.14-.996-.081-1.91-.77-2.48a.196.196 0 0 0-.296.258M2.147 7.722c.502-.185 1.024-.07 1.533.2.264.14.489.352.722.587.306.31.551.704.748 1.156a3.33 3.33 0 0 1 .314 1.742c-.024.31-.086.598-.229.833-.083.137-.169.27-.304.357-.397.267-.907.267-1.402.057a3.47 3.47 0 0 1-1.492-1.21c-.55-.77-.834-1.728-.8-2.573.03-.711.258-1.327.735-1.673a.037.037 0 1 0-.037-.064c-.74.323-1.17 1.18-1.295 2.19-.109.866.047 1.821.425 2.674.512 1.113 1.377 1.89 2.272 2.281.851.371 1.743.317 2.521-.058.785-.413 1.325-1.17 1.52-2.104.094-.445.107-.935.019-1.432a4.9 4.9 0 0 0-.76-1.869c-.6-.804-1.313-1.419-2.101-1.698-.948-.335-1.889-.299-2.584.264a.196.196 0 0 0 .195.34M21.556 19.404l-3.054-5.332a6.5 6.5 0 0 0-1.715-1.924v-.002c-.933-.698-2.297-1.36-3.935-1.24-1.147.083-2.426.568-3.794 1.715a3.7 3.7 0 0 0-.68.754c-.597.85-1.16 1.647-1.663 2.378-1.132 1.642-1.984 2.925-2.445 3.61a3.958 3.958 0 0 0-.652 2.061v.008c-.014 1.051.208 2.534 1.251 3.53.717.685 1.822 1.191 3.548 1.087l.8-.128c1.45-.412 2.554-.815 3.953-.797 1.055.013 2.271.25 3.924.89h.001a3.5 3.5 0 0 0 1.193.238h.003c1.388.005 2.433-.436 3.115-1.133.794-.81 1.11-1.947.86-3.073a9 9 0 0 0-.228-.8c-.202-.617-.429-1.159-.429-1.159a.04.04 0 0 0-.047-.023.036.036 0 0 0-.023.047s.16.56.288 1.19c.054.266.101.544.128.796.11.982-.237 1.93-.986 2.546-.612.505-1.499.761-2.622.637a2.6 2.6 0 0 1-.82-.252c-1.775-.874-3.108-1.248-4.279-1.358-1.549-.145-2.812.197-4.453.537l-.44.042c-1.035.01-1.699-.255-2.114-.678-.589-.599-.642-1.477-.626-2.09a2.04 2.04 0 0 1 .315-1.039l3.864-6.139.36-.448q.002-.001.005-.004c1.004-.96 1.96-1.42 2.845-1.548 1.277-.185 2.377.27 3.15.76a5.5 5.5 0 0 1 1.563 1.505l3.507 5.046a.2.2 0 0 0 .271.061.197.197 0 0 0 .061-.27" }) }));
|
|
13
|
+
};
|
|
14
|
+
export default DogPaw;
|
|
@@ -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;
|
|
@@ -4,4 +4,11 @@
|
|
|
4
4
|
import Airplane from '@/src/icons/transportation/Airplane';
|
|
5
5
|
import Bus from '@/src/icons/transportation/Bus';
|
|
6
6
|
import Cab from '@/src/icons/transportation/Cab';
|
|
7
|
-
|
|
7
|
+
import Car1 from '@/src/icons/transportation/Car1';
|
|
8
|
+
import Car2 from '@/src/icons/transportation/Car2';
|
|
9
|
+
import CarService from '@/src/icons/transportation/CarService';
|
|
10
|
+
import FuelDispenserNozzle from '@/src/icons/transportation/FuelDispenserNozzle';
|
|
11
|
+
import Parking from '@/src/icons/transportation/Parking';
|
|
12
|
+
import Train from '@/src/icons/transportation/Train';
|
|
13
|
+
import Tram from '@/src/icons/transportation/Tram';
|
|
14
|
+
export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
|