atum-icons 1.0.1 → 2.0.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/package.json +18 -20
- package/readme.md +11 -0
- package/src/IconBase.jsx +19 -0
- package/src/components/essential/TrashLinearIcon.jsx +48 -0
- package/src/icons/essential/trash-linear.svg +7 -0
- package/src/index.js +1 -0
- package/README.md +0 -102
- package/dist/bundle.js +0 -1
package/package.json
CHANGED
|
@@ -1,28 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "atum-icons",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "A scalable SVG-based React icon library",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"module": "src/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"src"
|
|
9
|
+
],
|
|
10
|
+
"sideEffects": false,
|
|
7
11
|
"scripts": {
|
|
8
|
-
"
|
|
9
|
-
"build": "webpack"
|
|
12
|
+
"generate": "node scripts/generate-icons.js"
|
|
10
13
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
"license": "ISC",
|
|
14
|
-
"description": "",
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"react": "^19.0.0",
|
|
17
|
-
"react-dom": "^19.0.0"
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"react": "^19.2.3"
|
|
18
16
|
},
|
|
19
17
|
"devDependencies": {
|
|
20
|
-
"@
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
18
|
+
"@svgr/core": "8.1.0",
|
|
19
|
+
"fs-extra": "^11.3.3",
|
|
20
|
+
"prettier": "3.7.4"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@svgr/plugin-jsx": "^8.1.0",
|
|
24
|
+
"react-dom": "^19.2.3"
|
|
27
25
|
}
|
|
28
26
|
}
|
package/readme.md
ADDED
package/src/IconBase.jsx
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const IconBase = React.forwardRef(
|
|
4
|
+
({ size, color, children, ...props }, ref) => (
|
|
5
|
+
<svg
|
|
6
|
+
ref={ref}
|
|
7
|
+
width={size}
|
|
8
|
+
height={size}
|
|
9
|
+
fill={color}
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
aria-hidden="true"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
{children}
|
|
15
|
+
</svg>
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
export default IconBase;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const TrashLinearIcon = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
width="1em"
|
|
5
|
+
height="1em"
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M21 5.97998C17.67 5.64998 14.32 5.47998 10.98 5.47998C9 5.47998 7.02 5.57998 5.04 5.77998L3 5.97998"
|
|
13
|
+
stroke="#171717"
|
|
14
|
+
strokeWidth={1.5}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M8.5 4.97L8.72 3.66C8.88 2.71 9 2 10.69 2H13.31C15 2 15.13 2.75 15.28 3.67L15.5 4.97"
|
|
20
|
+
stroke="#171717"
|
|
21
|
+
strokeWidth={1.5}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M18.8499 9.13989L18.1999 19.2099C18.0899 20.7799 17.9999 21.9999 15.2099 21.9999H8.7899C5.9999 21.9999 5.9099 20.7799 5.7999 19.2099L5.1499 9.13989"
|
|
27
|
+
stroke="#171717"
|
|
28
|
+
strokeWidth={1.5}
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
strokeLinejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M10.3301 16.5H13.6601"
|
|
34
|
+
stroke="#171717"
|
|
35
|
+
strokeWidth={1.5}
|
|
36
|
+
strokeLinecap="round"
|
|
37
|
+
strokeLinejoin="round"
|
|
38
|
+
/>
|
|
39
|
+
<path
|
|
40
|
+
d="M9.5 12.5H14.5"
|
|
41
|
+
stroke="#171717"
|
|
42
|
+
strokeWidth={1.5}
|
|
43
|
+
strokeLinecap="round"
|
|
44
|
+
strokeLinejoin="round"
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
47
|
+
);
|
|
48
|
+
export default TrashLinearIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21 5.97998C17.67 5.64998 14.32 5.47998 10.98 5.47998C9 5.47998 7.02 5.57998 5.04 5.77998L3 5.97998" stroke="#171717" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M8.5 4.97L8.72 3.66C8.88 2.71 9 2 10.69 2H13.31C15 2 15.13 2.75 15.28 3.67L15.5 4.97" stroke="#171717" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M18.8499 9.13989L18.1999 19.2099C18.0899 20.7799 17.9999 21.9999 15.2099 21.9999H8.7899C5.9999 21.9999 5.9099 20.7799 5.7999 19.2099L5.1499 9.13989" stroke="#171717" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M10.3301 16.5H13.6601" stroke="#171717" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M9.5 12.5H14.5" stroke="#171717" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
package/src/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TrashLinearIcon } from "./components/essential/TrashLinearIcon";
|
package/README.md
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
# React Icon Library - atum-icons
|
|
2
|
-
|
|
3
|
-
A highly customizable React icon library featuring multiple visual styles, including **linear**, **outline**, **bold**, **broken**, **bulk**, and **twotone**. This library makes it easy to integrate SVG icons into your React projects with various styles to suit your design needs.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
To install the library, use either npm or yarn:
|
|
10
|
-
|
|
11
|
-
### Using npm:
|
|
12
|
-
```bash
|
|
13
|
-
npm install atum-icons
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
### Using yarn:
|
|
17
|
-
```bash
|
|
18
|
-
yarn add atum-icons
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## Quickstart
|
|
24
|
-
|
|
25
|
-
After installing the package, you can import and use the icons in your React components with different variants.
|
|
26
|
-
|
|
27
|
-
### Example Usage:
|
|
28
|
-
```javascript
|
|
29
|
-
import React from 'react';
|
|
30
|
-
import { Icon } from 'atum-icons';
|
|
31
|
-
|
|
32
|
-
const App = () => (
|
|
33
|
-
<div>
|
|
34
|
-
<h1>React Icon Library - atum-icons</h1>
|
|
35
|
-
<Icon name="home" variant="linear" size={48} color="blue" />
|
|
36
|
-
<Icon name="home" variant="outline" size={48} color="red" />
|
|
37
|
-
<Icon name="home" variant="bold" size={48} color="green" />
|
|
38
|
-
<Icon name="home" variant="twotone" size={48} color="#FFA500" />
|
|
39
|
-
</div>
|
|
40
|
-
);
|
|
41
|
-
|
|
42
|
-
export default App;
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
## How to Use
|
|
48
|
-
|
|
49
|
-
1. **Import the Icon component:**
|
|
50
|
-
```javascript
|
|
51
|
-
import { Icon } from 'atum-icons';
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
2. **Choose the icon by name:**
|
|
55
|
-
The name should match the SVG file name, e.g., `home`, `user`, etc.
|
|
56
|
-
|
|
57
|
-
3. **Select the icon variant:**
|
|
58
|
-
Available variants are:
|
|
59
|
-
- `linear` (default)
|
|
60
|
-
- `outline`
|
|
61
|
-
- `bold`
|
|
62
|
-
- `broken`
|
|
63
|
-
- `bulk`
|
|
64
|
-
- `twotone`
|
|
65
|
-
|
|
66
|
-
4. **Customize the icon’s size and color:**
|
|
67
|
-
You can customize the size (default is 24px) and color (default is `currentColor`) by passing them as props.
|
|
68
|
-
|
|
69
|
-
Example:
|
|
70
|
-
```javascript
|
|
71
|
-
<Icon name="home" variant="linear" size={48} color="blue" />
|
|
72
|
-
<Icon name="user" variant="outline" size={48} color="red" />
|
|
73
|
-
<Icon name="settings" variant="bold" size={36} color="green" />
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
---
|
|
77
|
-
|
|
78
|
-
## Supported Variants
|
|
79
|
-
|
|
80
|
-
- `linear` (default)
|
|
81
|
-
- `outline`
|
|
82
|
-
- `bold`
|
|
83
|
-
- `broken`
|
|
84
|
-
- `bulk`
|
|
85
|
-
- `twotone`
|
|
86
|
-
|
|
87
|
-
Ensure that your icon set contains corresponding SVG files for each variant.
|
|
88
|
-
|
|
89
|
-
---
|
|
90
|
-
|
|
91
|
-
## License
|
|
92
|
-
|
|
93
|
-
This library is open source and available under the **MIT License**.
|
|
94
|
-
|
|
95
|
-
---
|
|
96
|
-
|
|
97
|
-
## Queries
|
|
98
|
-
|
|
99
|
-
For any queries or issues, feel free to reach out:
|
|
100
|
-
|
|
101
|
-
- Email: [fullstackdevnithish@gmail.com](mailto:fullstackdevnithish@gmail.com)
|
|
102
|
-
- LinkedIn: [Nithishkumar Thiruselvam](https://www.linkedin.com/in/fullstackdevnithishatum/)
|
package/dist/bundle.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react")):"function"==typeof define&&define.amd?define(["react"],e):"object"==typeof exports?exports.myIconLibrary=e(require("react")):t.myIconLibrary=e(t.react)}(self,(t=>(()=>{var e={364:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{fill:"#171717",d:"M12.93 4.79H7.35C3.25 4.79 2 6.04 2 10.14v3.72c0 4.1 1.25 5.35 5.35 5.35h5.58c4.1 0 5.35-1.25 5.35-5.35v-3.72c0-4.1-1.25-5.35-5.35-5.35M20.42 9c-.14-.01-.32-.02-.52-.02-.39 0-.7.31-.7.7v4.65c0 .39.31.7.7.7.2 0 .37-.01.54-.02C22 14.83 22 13.73 22 12.93v-1.86c0-.8 0-1.9-1.58-2.07"})))}},630:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.97 5H13c4 0 5 1 5 5v4c0 2-.25 3.25-1 4s-2 1-4 1H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5M20.5 9.5c.86 0 1.23.16 1.38.49.12.25.12.58.12 1.01v2c0 1 0 1.5-1.5 1.5"})))}},649:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{fill:"#171717",d:"M12.93 4.79H7.35C3.25 4.79 2 6.04 2 10.14v3.72c0 4.1 1.25 5.35 5.35 5.35h5.58c4.1 0 5.35-1.25 5.35-5.35v-3.72c0-4.1-1.25-5.35-5.35-5.35",opacity:.4})),c||(c=o.createElement("path",{fill:"#171717",d:"M20.42 9c-.14-.01-.32-.02-.52-.02-.39 0-.7.31-.7.7v4.65c0 .39.31.7.7.7.2 0 .37-.01.54-.02C22 14.83 22 13.73 22 12.93v-1.86c0-.8 0-1.9-1.58-2.07"})))}},746:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 19H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5h6c4 0 5 1 5 5v4c0 4-1 5-5 5M20.5 9.5C22 9.5 22 10 22 11v2c0 1 0 1.5-1.5 1.5"})))}},437:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{fill:"#171717",d:"M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25"})))}},701:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 19H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5h6c4 0 5 1 5 5v4c0 4-1 5-5 5"})),c||(c=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M20.5 9.5C22 9.5 22 10 22 11v2c0 1 0 1.5-1.5 1.5",opacity:.34})))}},42:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{fill:"#171717",d:"M20.42 9c-.14-.01-.32-.02-.52-.02-.39 0-.7.31-.7.7v4.65c0 .39.31.7.7.7.2 0 .37-.01.54-.02C22 14.83 22 13.73 22 12.93v-1.86c0-.8 0-1.9-1.58-2.07M12.93 4.79H7.35C3.25 4.79 2 6.04 2 10.14v3.72c0 4.1 1.25 5.35 5.35 5.35h5.58c4.1 0 5.35-1.25 5.35-5.35v-3.72c0-4.1-1.25-5.35-5.35-5.35M7.1 14.18c-.08.34-.39.57-.73.57-.06 0-.12-.01-.18-.02-.4-.1-.65-.51-.55-.91.3-1.19.3-2.45 0-3.64-.1-.4.14-.81.55-.91.4-.1.81.15.91.55.36 1.43.36 2.93 0 4.36"})))}},40:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.99 5H13c4 0 5 1 5 5v4c0 4-1 5-5 5H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5M20.5 9.5C22 9.5 22 10 22 11v2c0 1 0 1.5-1.5 1.5"})),c||(c=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.38 10c.24.98.31 1.99.19 2.99-.04.34-.1.68-.19 1.01"})))}},215:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{fill:"#171717",d:"M12.93 4.79H7.35C3.25 4.79 2 6.04 2 10.14v3.72c0 4.1 1.25 5.35 5.35 5.35h5.58c4.1 0 5.35-1.25 5.35-5.35v-3.72c0-4.1-1.25-5.35-5.35-5.35",opacity:.4})),c||(c=o.createElement("path",{fill:"#171717",d:"M20.42 9c-.14-.01-.32-.02-.52-.02-.39 0-.7.31-.7.7v4.65c0 .39.31.7.7.7.2 0 .37-.01.54-.02C22 14.83 22 13.73 22 12.93v-1.86c0-.8 0-1.9-1.58-2.07M6.38 14.75c-.06 0-.12-.01-.18-.02-.4-.1-.65-.51-.55-.91.3-1.19.3-2.45 0-3.64-.1-.4.14-.81.55-.91.39-.1.8.15.9.55.36 1.43.36 2.94 0 4.36-.08.34-.39.57-.72.57"})))}},240:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 19H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5h6c4 0 5 1 5 5v4c0 4-1 5-5 5M20.5 9.5C22 9.5 22 10 22 11v2c0 1 0 1.5-1.5 1.5"})),c||(c=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.38 10c.33 1.31.33 2.69 0 4"})))}},399:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{fill:"#171717",d:"M13 19.75H7c-4.41 0-5.75-1.34-5.75-5.75v-4c0-4.41 1.34-5.75 5.75-5.75h6c4.41 0 5.75 1.34 5.75 5.75v4c0 4.41-1.34 5.75-5.75 5.75m-6-14c-3.58 0-4.25.68-4.25 4.25v4c0 3.57.67 4.25 4.25 4.25h6c3.58 0 4.25-.68 4.25-4.25v-4c0-3.57-.67-4.25-4.25-4.25zM20.5 15.25c-.41 0-.75-.34-.75-.75s.34-.75.75-.75c.59 0 .72-.09.73-.09.02-.06.02-.41.02-.66v-2c0-.25 0-.59-.04-.68-.01.01-.16-.07-.71-.07-.41 0-.75-.34-.75-.75s.34-.75.75-.75c2.08 0 2.25 1.02 2.25 2.25v2c0 1.23-.17 2.25-2.25 2.25"})),c||(c=o.createElement("path",{fill:"#171717",d:"M6.38 14.75c-.06 0-.12-.01-.18-.02-.4-.1-.65-.51-.55-.91.3-1.19.3-2.45 0-3.64-.1-.4.14-.81.55-.91.39-.1.8.15.9.55.36 1.43.36 2.94 0 4.36-.08.34-.39.57-.72.57"})))}},159:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>l});var r,c,o=n(155);function a(){return a=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a.apply(null,arguments)}const l=function(t){return o.createElement("svg",a({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 19H7c-4 0-5-1-5-5v-4c0-4 1-5 5-5h6c4 0 5 1 5 5v4c0 4-1 5-5 5"})),c||(c=o.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M20.5 9.5C22 9.5 22 10 22 11v2c0 1 0 1.5-1.5 1.5M6.38 10c.33 1.31.33 2.69 0 4",opacity:.34})))}},915:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{fill:"#171717",d:"M21.07 5.23c-1.61-.16-3.22-.28-4.84-.37v-.01l-.22-1.3c-.15-.92-.37-2.3-2.71-2.3h-2.62c-2.33 0-2.55 1.32-2.71 2.29l-.21 1.28c-.93.06-1.86.12-2.79.21l-2.04.2c-.42.04-.72.41-.68.82s.4.71.82.67l2.04-.2c5.24-.52 10.52-.32 15.82.21h.08c.38 0 .71-.29.75-.68a.766.766 0 0 0-.69-.82M19.23 8.14c-.24-.25-.57-.39-.91-.39H5.68c-.34 0-.68.14-.91.39s-.36.59-.34.94l.62 10.26c.11 1.52.25 3.42 3.74 3.42h6.42c3.49 0 3.63-1.89 3.74-3.42l.62-10.25c.02-.36-.11-.7-.34-.95m-5.57 9.61h-3.33c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.33c.41 0 .75.34.75.75s-.34.75-.75.75m.84-4h-5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h5c.41 0 .75.34.75.75s-.34.75-.75.75"})))}},61:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M21 5.98c-3.33-.33-6.68-.5-10.02-.5q-2.97 0-5.94.3L3 5.98M8.5 4.97l.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3M15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14M18.85 9.14l-.65 10.07M10.33 16.5h3.33M12.82 12.5h1.68M9.5 12.5h.83"})))}},598:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>i});var r,c,o,a=n(155);function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l.apply(null,arguments)}const i=function(t){return a.createElement("svg",l({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=a.createElement("path",{fill:"#171717",d:"M21.07 5.23c-1.61-.16-3.22-.28-4.84-.37v-.01l-.22-1.3c-.15-.92-.37-2.3-2.71-2.3h-2.62c-2.33 0-2.55 1.32-2.71 2.29l-.21 1.28c-.93.06-1.86.12-2.79.21l-2.04.2c-.42.04-.72.41-.68.82s.4.71.82.67l2.04-.2c5.24-.52 10.52-.32 15.82.21h.08c.38 0 .71-.29.75-.68a.766.766 0 0 0-.69-.82"})),c||(c=a.createElement("path",{fill:"#171717",d:"M19.23 8.14c-.24-.25-.57-.39-.91-.39H5.68c-.34 0-.68.14-.91.39s-.36.59-.34.94l.62 10.26c.11 1.52.25 3.42 3.74 3.42h6.42c3.49 0 3.63-1.89 3.74-3.42l.62-10.25c.02-.36-.11-.7-.34-.95",opacity:.399})),o||(o=a.createElement("path",{fill:"#171717",fillRule:"evenodd",d:"M9.58 17a.75.75 0 0 1 .75-.75h3.33a.75.75 0 0 1 0 1.5h-3.33a.75.75 0 0 1-.75-.75M8.75 13a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75",clipRule:"evenodd"})))}},493:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>a});var r,c=n(155);function o(){return o=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},o.apply(null,arguments)}const a=function(t){return c.createElement("svg",o({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=c.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M21 5.98c-3.33-.33-6.68-.5-10.02-.5q-2.97 0-5.94.3L3 5.98M8.5 4.97l.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3M18.85 9.14l-.65 10.07C18.09 20.78 18 22 15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14M10.33 16.5h3.33M9.5 12.5h5"})))}},952:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>i});var r,c,o,a=n(155);function l(){return l=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l.apply(null,arguments)}const i=function(t){return a.createElement("svg",l({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=a.createElement("path",{fill:"#171717",d:"M21 6.73h-.08c-5.29-.53-10.57-.73-15.8-.2l-2.04.2a.755.755 0 0 1-.83-.68c-.04-.42.26-.78.67-.82l2.04-.2c5.32-.54 10.71-.33 16.11.2.41.04.71.41.67.82a.74.74 0 0 1-.74.68"})),c||(c=a.createElement("path",{fill:"#171717",d:"M8.5 5.72c-.04 0-.08 0-.13-.01a.753.753 0 0 1-.61-.86l.22-1.31c.16-.96.38-2.29 2.71-2.29h2.62c2.34 0 2.56 1.38 2.71 2.3l.22 1.3c.07.41-.21.8-.61.86-.41.07-.8-.21-.86-.61l-.22-1.3c-.14-.87-.17-1.04-1.23-1.04H10.7c-1.06 0-1.08.14-1.23 1.03l-.23 1.3a.75.75 0 0 1-.74.63M15.21 22.75H8.79c-3.49 0-3.63-1.93-3.74-3.49L4.4 9.19c-.03-.41.29-.77.7-.8.42-.02.77.29.8.7l.65 10.07c.11 1.52.15 2.09 2.24 2.09h6.42c2.1 0 2.14-.57 2.24-2.09l.65-10.07c.03-.41.39-.72.8-.7.41.03.73.38.7.8l-.65 10.07c-.11 1.56-.25 3.49-3.74 3.49"})),o||(o=a.createElement("path",{fill:"#171717",d:"M13.66 17.25h-3.33c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h3.33c.41 0 .75.34.75.75s-.34.75-.75.75M14.5 13.25h-5c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h5c.41 0 .75.34.75.75s-.34.75-.75.75"})))}},700:(t,e,n)=>{"use strict";n.r(e),n.d(e,{default:()=>s});var r,c,o,a,l=n(155);function i(){return i=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)({}).hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},i.apply(null,arguments)}const s=function(t){return l.createElement("svg",i({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,fill:"none"},t),r||(r=l.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M21 5.98c-3.33-.33-6.68-.5-10.02-.5q-2.97 0-5.94.3L3 5.98"})),c||(c=l.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.5 4.97.22-1.31C8.88 2.71 9 2 10.69 2h2.62c1.69 0 1.82.75 1.97 1.67l.22 1.3",opacity:.34})),o||(o=l.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m18.85 9.14-.65 10.07C18.09 20.78 18 22 15.21 22H8.79C6 22 5.91 20.78 5.8 19.21L5.15 9.14"})),a||(a=l.createElement("path",{stroke:"#171717",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.33 16.5h3.33M9.5 12.5h5",opacity:.34})))}},673:(t,e,n)=>{var r={"./Battery-bold.svg":364,"./Battery-broken.svg":630,"./Battery-bulk.svg":649,"./Battery-linear.svg":746,"./Battery-outline.svg":437,"./Battery-twotone.svg":701,"./Battery_empty-bold.svg":42,"./Battery_empty-broken.svg":40,"./Battery_empty-bulk.svg":215,"./Battery_empty-linear.svg":240,"./Battery_empty-outline.svg":399,"./Battery_empty-twotone.svg":159,"./Trashcan-bold.svg":915,"./Trashcan-broken.svg":61,"./Trashcan-bulk.svg":598,"./Trashcan-linear.svg":493,"./Trashcan-outine.svg":952,"./Trashcan-twotone.svg":700};function c(t){var e=o(t);return n(e)}function o(t){if(!n.o(r,t)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return r[t]}c.keys=function(){return Object.keys(r)},c.resolve=o,t.exports=c,c.id=673},155:e=>{"use strict";e.exports=t}},n={};function r(t){var c=n[t];if(void 0!==c)return c.exports;var o=n[t]={exports:{}};return e[t](o,o.exports,r),o.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var c={};return(()=>{"use strict";r.r(c),r.d(c,{Icon:()=>o});var t=r(155),e=r.n(t),n=r(673);const o=function(t){var r,c=t.name,o=t.variant,a=void 0===o?"linear":o,l=t.size,i=void 0===l?24:l,s=t.color,u=void 0===s?"currentColor":s,h="".concat(c,"-").concat(a);try{r=n("./".concat(h,".svg")).default}catch(t){console.warn('Icon "'.concat(h,'" not found. Defaulting to linear.'));try{r=n("./".concat(c,"-linear.svg")).default}catch(t){return console.error('Icon "'.concat(c,'" not found at all.')),null}}return e().createElement(r,{width:i,height:i,fill:u})}})(),c})()));
|