@ng-icons/lets-icons 30.0.0 → 30.2.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 +13 -9
- package/duotone/index.d.ts +22 -22
- package/duotone-line/index.d.ts +75 -75
- package/fesm2022/ng-icons-lets-icons-duotone-line.mjs +75 -75
- package/fesm2022/ng-icons-lets-icons-duotone-line.mjs.map +1 -1
- package/fesm2022/ng-icons-lets-icons-duotone.mjs +22 -22
- package/fesm2022/ng-icons-lets-icons-duotone.mjs.map +1 -1
- package/fesm2022/ng-icons-lets-icons-fill.mjs +1 -1
- package/fesm2022/ng-icons-lets-icons-fill.mjs.map +1 -1
- package/fesm2022/ng-icons-lets-icons-light.mjs +1 -1
- package/fesm2022/ng-icons-lets-icons-light.mjs.map +1 -1
- package/fesm2022/ng-icons-lets-icons-regular.mjs +5 -5
- package/fesm2022/ng-icons-lets-icons-regular.mjs.map +1 -1
- package/fill/index.d.ts +1 -1
- package/light/index.d.ts +1 -1
- package/package.json +5 -5
- package/regular/index.d.ts +5 -5
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# Ng Icons
|
|
10
10
|
|
|
11
11
|
The all-in-one icon library for Angular. This allows you to use icons from multiple icon sets with a single icon component.
|
|
12
|
-
Containing over
|
|
12
|
+
Containing over 69,000 icons for you to use in your projects.
|
|
13
13
|
|
|
14
14
|
Currently, we support the following libraries:
|
|
15
15
|
|
|
@@ -41,6 +41,8 @@ Currently, we support the following libraries:
|
|
|
41
41
|
- [Devicon](https://github.com/devicons/devicon/)
|
|
42
42
|
- [Game Icons](https://game-icons.net/)
|
|
43
43
|
- [Flag Icons](https://flagicons.lipis.dev/)
|
|
44
|
+
- [Solar Icons](https://github.com/480-Design/Solar-Icon-Set)
|
|
45
|
+
- [SVGL](https://svgl.app)
|
|
44
46
|
|
|
45
47
|
Got suggestions for additional iconsets? Create an issue and we can consider adding them!
|
|
46
48
|
|
|
@@ -117,6 +119,8 @@ The following packages are available:
|
|
|
117
119
|
| `@ng-icons/huge-icons` | CC0-1.0 |
|
|
118
120
|
| `@ng-icons/devicon` | MIT |
|
|
119
121
|
| `@ng-icons/game-icons` | CC BY 3.0 |
|
|
122
|
+
| `@ng-icons/solar-icons` | CC BY 4.0 |
|
|
123
|
+
| `@ng-icons/svgl` | MIT |
|
|
120
124
|
|
|
121
125
|
## Usage
|
|
122
126
|
|
|
@@ -152,16 +156,16 @@ You can then use the icon in your templates:
|
|
|
152
156
|
As of version 18.0.0 Ng Icons nows supports standalone components. You can import icons using the `provideIcons` function which can be placed anywhere you can register providers. The optimal location
|
|
153
157
|
would be in the `@Component` providers array.
|
|
154
158
|
|
|
155
|
-
You can also import the component directly by importing `
|
|
159
|
+
You can also import the component directly by importing `NgIcon` or the `NG_ICON_DIRECTIVES` constant.
|
|
156
160
|
|
|
157
161
|
```ts
|
|
158
|
-
import {
|
|
162
|
+
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
159
163
|
import { featherAirplay } from '@ng-icons/feather-icons';
|
|
160
164
|
import { heroUsers } from '@ng-icons/heroicons/outline';
|
|
161
165
|
|
|
162
166
|
@Component({
|
|
163
167
|
standalone: true,
|
|
164
|
-
imports: [
|
|
168
|
+
imports: [NgIcon],
|
|
165
169
|
providers: [provideIcons({ featherAirplay, heroUsers })],
|
|
166
170
|
})
|
|
167
171
|
export class AppComponent {}
|
|
@@ -185,12 +189,12 @@ export class ParentComponent {
|
|
|
185
189
|
}
|
|
186
190
|
|
|
187
191
|
// child.component.ts
|
|
188
|
-
import {
|
|
192
|
+
import { NgIcon } from '@ng-icons/core';
|
|
189
193
|
|
|
190
194
|
@Component({
|
|
191
195
|
standalone: true,
|
|
192
196
|
selector: 'app-child',
|
|
193
|
-
imports: [
|
|
197
|
+
imports: [NgIcon],
|
|
194
198
|
template: '<ng-icon [svg]="icon" />',
|
|
195
199
|
})
|
|
196
200
|
export class ChildComponent {
|
|
@@ -223,7 +227,7 @@ export class AppModule {}
|
|
|
223
227
|
#### Standalone
|
|
224
228
|
|
|
225
229
|
```ts
|
|
226
|
-
import {
|
|
230
|
+
import { NgIcon, provideIcons, provideNgIconsConfig } from '@ng-icons/core';
|
|
227
231
|
|
|
228
232
|
bootstrapApplication(AppComponent, {
|
|
229
233
|
providers: [
|
|
@@ -239,7 +243,7 @@ bootstrapApplication(AppComponent, {
|
|
|
239
243
|
If your application has a strict Content Security Policy (CSP) you may need to add the following to your global configuration to ensure you do not get any errors.
|
|
240
244
|
|
|
241
245
|
```ts
|
|
242
|
-
import {
|
|
246
|
+
import { NgIcon, provideIcons, provideNgIconsConfig, withContentSecurityPolicy } from '@ng-icons/core';
|
|
243
247
|
|
|
244
248
|
bootstrapApplication(AppComponent, {
|
|
245
249
|
providers: [provideNgIconsConfig({}, withContentSecurityPolicy())],
|
|
@@ -254,7 +258,7 @@ Should you want stricter checks you can enable the `ExceptionLogger` which will
|
|
|
254
258
|
You can enable this by providing the `withExceptionLogger` function to the `provideNgIconsConfig` function.
|
|
255
259
|
|
|
256
260
|
```ts
|
|
257
|
-
import {
|
|
261
|
+
import { NgIcon, provideIcons, provideNgIconsConfig, withExceptionLogger } from '@ng-icons/core';
|
|
258
262
|
|
|
259
263
|
bootstrapApplication(AppComponent, {
|
|
260
264
|
providers: [provideNgIconsConfig({}, withExceptionLogger())],
|
package/duotone/index.d.ts
CHANGED
|
@@ -20,14 +20,14 @@ export declare const letsBlankAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/
|
|
|
20
20
|
export declare const letsBlankDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M2 19a2 2 0 0 0 2 2h10.75a.25.25 0 0 0 .25-.25V16a2 2 0 0 1 2-2h4.75a.25.25 0 0 0 .25-.25V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2z\"></path><path fill=\"currentColor\" d=\"M16 16v4.396c0 .223.27.335.427.177l5.146-5.146a.25.25 0 0 0-.177-.427H17a1 1 0 0 0-1 1\"></path></svg>";
|
|
21
21
|
export declare const letsBookCheckDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><rect width=\"16\" height=\"18\" x=\"4\" y=\"3\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\"></rect><path fill=\"currentColor\" d=\"M4 19a2 2 0 0 1 2-2h11c.932 0 1.398 0 1.765-.152a2 2 0 0 0 1.083-1.083C20 15.398 20 14.932 20 14v3c0 1.886 0 2.828-.586 3.414C18.828 21 17.886 21 16 21H6a2 2 0 0 1-2-2\"></path><path stroke=\"currentColor\" d=\"m9.5 10.5l1.894 1.894a.15.15 0 0 0 .212 0L15.5 8.5\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
22
22
|
export declare const letsBookDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><rect width=\"16\" height=\"18\" x=\"4\" y=\"3\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M8.5 6.5h7m-7 3h4m-4 3h6\"></path><path fill=\"currentColor\" d=\"M4 19a2 2 0 0 1 2-2h11c.932 0 1.398 0 1.765-.152a2 2 0 0 0 1.083-1.083C20 15.398 20 14.932 20 14v3c0 1.886 0 2.828-.586 3.414C18.828 21 17.886 21 16 21H6a2 2 0 0 1-2-2\"></path></g></svg>";
|
|
23
|
-
export declare const letsBookOpenAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"
|
|
23
|
+
export declare const letsBookOpenAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"ID_PLACEHOLDER_0\" width=\"9\" height=\"15\" x=\"3\" y=\"4\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><path fill=\"#222\" d=\"M12 19V6s-1-2-4.5-2S3 6 3 6v13s1-2 4.5-2s4.5 2 4.5 2\"></path></mask><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M12 19V6s-1-2-4.5-2S3 6 3 6v13s1-2 4.5-2s4.5 2 4.5 2\"></path><g mask=\"url(#ID_PLACEHOLDER_0)\"><path fill=\"currentColor\" d=\"M5 4.15A.15.15 0 0 1 5.15 4h2.7a.15.15 0 0 1 .15.15v4.246a.25.25 0 0 1-.427.177l-.896-.896a.25.25 0 0 0-.354 0l-.896.896A.25.25 0 0 1 5 8.396z\"></path></g><path fill=\"currentColor\" d=\"M13 19V6s.889-2 4-2c3.111 0 4 2 4 2v13s-.889-2-4-2c-3.111 0-4 2-4 2\"></path></g></svg>";
|
|
24
24
|
export declare const letsBookOpenDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 17h4a3 3 0 0 1 3 3V10c0-2.828 0-4.243-.879-5.121C10.243 4 8.828 4 6 4H5c-.943 0-1.414 0-1.707.293C3 4.586 3 5.057 3 6v9c0 .943 0 1.414.293 1.707C3.586 17 4.057 17 5 17\"></path><path fill=\"currentColor\" d=\"M19 17h-3a3 3 0 0 0-3 3V10c0-2.828 0-4.243.879-5.121C14.757 4 16.172 4 19 4c.943 0 1.414 0 1.707.293C21 4.586 21 5.057 21 6v9c0 .943 0 1.414-.293 1.707C20.414 17 19.943 17 19 17M5 4.15A.15.15 0 0 1 5.15 4h2.7a.15.15 0 0 1 .15.15v4.246a.25.25 0 0 1-.427.177l-.896-.896a.25.25 0 0 0-.354 0l-.896.896A.25.25 0 0 1 5 8.396z\"></path></svg>";
|
|
25
25
|
export declare const letsBookmarkDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" stroke=\"currentColor\" d=\"M4 9c0-2.828 0-4.243.879-5.121C5.757 3 7.172 3 10 3h4c2.828 0 4.243 0 5.121.879C20 4.757 20 6.172 20 9v6.828c0 2.683 0 4.024-.844 4.435c-.845.41-1.9-.419-4.01-2.076l-.675-.531c-1.186-.932-1.78-1.398-2.471-1.398c-.692 0-1.285.466-2.471 1.398l-.676.53c-2.11 1.658-3.164 2.487-4.009 2.077C4 19.853 4 18.51 4 15.828z\"></path></svg>";
|
|
26
|
-
export declare const letsBoxAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
26
|
+
export declare const letsBoxAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path stroke=\"#fff\" d=\"M4 7.657c0-.818 0-1.226.152-1.594c.152-.367.442-.657 1.02-1.235l.656-.656c.578-.578.868-.868 1.235-1.02C7.431 3 7.84 3 8.657 3h6.686c.818 0 1.226 0 1.594.152c.367.152.656.442 1.235 1.02l.656.656c.579.578.867.868 1.02 1.235c.152.368.152.776.152 1.594V17c0 1.886 0 2.828-.586 3.414C18.828 21 17.886 21 16 21H8c-1.886 0-2.828 0-3.414-.586C4 19.828 4 18.886 4 17z\"></path><path stroke=\"#fff\" stroke-linecap=\"round\" d=\"M4 7h16\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M9 11a3 3 0 0 0 6 0\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
27
27
|
export declare const letsBoxAltFillDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M4 9.3c0-.141 0-.212.044-.256C4.088 9 4.159 9 4.3 9h15.4c.141 0 .212 0 .256.044c.044.044.044.115.044.256V16c0 1.886 0 2.828-.586 3.414C18.828 20 17.886 20 16 20H8c-1.886 0-2.828 0-3.414-.586C4 18.828 4 17.886 4 16zM4.724 8c-.308 0-.462 0-.5-.093c-.039-.092.07-.201.288-.42l1.316-1.315c.578-.578.868-.868 1.235-1.02C7.431 5 7.84 5 8.657 5h6.686c.818 0 1.226 0 1.594.152c.367.152.656.442 1.235 1.02l1.316 1.316c.218.218.327.327.288.42c-.038.092-.192.092-.5.092z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 12.5a2.5 2.5 0 0 0 5 0\"></path></g></svg>";
|
|
28
|
-
export declare const letsBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
28
|
+
export declare const letsBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"#fff\" d=\"M4 9.657c0-.818 0-1.226.152-1.594c.152-.367.442-.657 1.02-1.235l.656-.656c.578-.578.868-.868 1.235-1.02C7.431 5 7.84 5 8.657 5h6.686c.818 0 1.226 0 1.594.152c.367.152.656.442 1.235 1.02l.656.656c.579.578.867.868 1.02 1.235c.152.368.152.776.152 1.594V16c0 1.886 0 2.828-.586 3.414C18.828 20 17.886 20 16 20H8c-1.886 0-2.828 0-3.414-.586C4 18.828 4 17.886 4 16z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M14.833 10H9.166c-.235 0-.353 0-.426.073c-.074.073-.074.191-.074.427v3.167c0 .765 0 1.147.1 1.352a1 1 0 0 0 1.231.51c.215-.075.486-.345 1.027-.886c.25-.25.375-.376.508-.446a1 1 0 0 1 .935 0c.133.07.259.196.51.446c.54.54.81.811 1.026.887a1 1 0 0 0 1.231-.51c.1-.206.1-.588.1-1.353V10.5c0-.236 0-.354-.074-.427c-.073-.073-.191-.073-.427-.073Z\"></path><path stroke=\"#fff\" d=\"M4 10h16v6c0 1.886 0 2.828-.586 3.414C18.828 20 17.886 20 16 20H8c-1.886 0-2.828 0-3.414-.586C4 18.828 4 17.886 4 16z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
29
29
|
export declare const letsBoxFillDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M4 9.3c0-.141 0-.212.044-.256C4.088 9 4.159 9 4.3 9h15.4c.141 0 .212 0 .256.044c.044.044.044.115.044.256V16c0 1.886 0 2.828-.586 3.414C18.828 20 17.886 20 16 20H8c-1.886 0-2.828 0-3.414-.586C4 18.828 4 17.886 4 16zM4.724 8c-.308 0-.462 0-.5-.093c-.039-.092.07-.201.288-.42l1.316-1.315c.578-.578.868-.868 1.235-1.02C7.431 5 7.84 5 8.657 5h6.686c.818 0 1.226 0 1.594.152c.367.152.656.442 1.235 1.02l1.316 1.316c.218.218.327.327.288.42c-.038.092-.192.092-.5.092z\"></path><path fill=\"currentColor\" d=\"M9 9.15A.15.15 0 0 1 9.15 9h5.7a.15.15 0 0 1 .15.15v4.916a.5.5 0 0 1-.777.416l-1.668-1.112a1 1 0 0 0-1.11 0l-1.668 1.112A.5.5 0 0 1 9 14.066z\"></path></svg>";
|
|
30
|
-
export declare const letsBoxOpenDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
30
|
+
export declare const letsBoxOpenDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M9 7L6.139 5.092a.25.25 0 0 0-.278 0L3.254 6.831a.25.25 0 0 0-.038.385l2.577 2.577a.707.707 0 0 1 .207.5v0c0 .39.317.707.707.707h10.586c.39 0 .707-.317.707-.707v0a.71.71 0 0 1 .207-.5l2.577-2.577a.25.25 0 0 0-.038-.385L18.14 5.092a.25.25 0 0 0-.278 0L15 7\"></path><path stroke=\"#fff\" d=\"m6 10l1.828-1.828c.578-.578.868-.868 1.235-1.02C9.431 7 9.84 7 10.657 7h2.686c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L18 10v6c0 1.886 0 2.828-.586 3.414C16.828 20 15.886 20 14 20h-4c-1.886 0-2.828 0-3.414-.586C6 18.828 6 17.886 6 16z\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
31
31
|
export declare const letsBoxOpenFillDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M5 12h14v4c0 1.886 0 2.828-.586 3.414C17.828 20 16.886 20 15 20H9c-1.886 0-2.828 0-3.414-.586C5 18.828 5 17.886 5 16z\"></path><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M2.815 7.815L5 10v1h14v-1l2.185-2.185a1 1 0 0 0-.107-1.507l-2.512-1.883a1 1 0 0 0-1.155-.033L15 6H9L6.589 4.392a1 1 0 0 0-1.155.032L2.922 6.309a1 1 0 0 0-.107 1.507M8.6 7.2h6.8l1.95 2.6H6.65z\" clip-rule=\"evenodd\"></path></svg>";
|
|
32
32
|
export declare const letsBrokenHeartDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path fill-opacity=\".25\" d=\"M10.476 5.894L8.5 9l4 3.5l-1 2.5l3.5-3l-3-3.5L14 6l-.57-.712a4.916 4.916 0 0 1 6.123.368a5.527 5.527 0 0 1 .093 8.122l-7.092 6.699c-.198.187-.297.28-.41.314a.5.5 0 0 1-.288 0c-.113-.034-.212-.127-.41-.314L4.08 13.52a5.18 5.18 0 0 1 .088-7.612l.307-.278c1.781-1.606 4.46-1.403 6.001.264\"></path><path d=\"M9.736 5.992c-1.58-1.047-3.839-.822-5.13.842l-.309.398a4.703 4.703 0 0 0 .496 6.312l6.953 6.53c.127.12.196.184.25.226l.004.003l.005-.003a3.99 3.99 0 0 0 .25-.225l6.952-6.531a4.703 4.703 0 0 0 .496-6.312l-.31-.398c-1.36-1.753-3.794-1.91-5.377-.662l-.619-.786c1.992-1.569 5.066-1.383 6.786.835l.31.398a5.703 5.703 0 0 1-.601 7.654l-6.953 6.53l-.014.014c-.108.1-.213.2-.31.275a1.004 1.004 0 0 1-.422.203a.999.999 0 0 1-.386 0a1.003 1.003 0 0 1-.422-.203a4.534 4.534 0 0 1-.31-.275l-.014-.013l-6.953-6.531a5.703 5.703 0 0 1-.6-7.654l.308-.398c1.77-2.281 4.97-2.413 6.955-.697l.361.313l-.296.375L9.8 7.525c-.337.428-.556.707-.688.933c-.125.214-.125.304-.115.36c.01.055.042.138.235.294c.203.164.507.348.974.628l1.253.752l.029.017c.397.239.738.443.988.644c.267.214.492.471.574.836c.082.364-.011.692-.161 1c-.14.288-.36.62-.618 1.005l-.019.028l-.836 1.255l-.832-.555l.837-1.254c.28-.422.462-.696.568-.915c.1-.206.097-.292.085-.345c-.012-.054-.045-.132-.224-.275c-.19-.153-.471-.323-.906-.584l-1.252-.751l-.03-.018c-.429-.257-.795-.477-1.06-.69c-.281-.229-.517-.504-.588-.893c-.072-.389.051-.73.234-1.043c.172-.294.436-.629.745-1.02l.022-.028z\"></path></g></svg>";
|
|
33
33
|
export declare const letsBugDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M7 14.333c0-1.246 0-1.869.268-2.333A2 2 0 0 1 8 11.268C8.464 11 9.087 11 10.333 11h3.334c1.246 0 1.869 0 2.333.268a2 2 0 0 1 .732.732c.268.464.268 1.087.268 2.333V16c0 .93 0 1.394-.077 1.78a4 4 0 0 1-3.143 3.143C13.394 21 12.93 21 12 21s-1.394 0-1.78-.077a4 4 0 0 1-3.143-3.143C7 17.394 7 16.93 7 16zM9 9c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C10.602 6 11.068 6 12 6c.932 0 1.398 0 1.765.152a2 2 0 0 1 1.083 1.083C15 7.602 15 8.068 15 9v2H9z\"></path><path d=\"M12 11v4m3-12l-2 3M9 3l2 3M7 16H2m20 0h-5m3-7v1a3 3 0 0 1-3 3m3 9a3 3 0 0 0-3-3M4 9v1a3 3 0 0 0 3 3m-3 9a3 3 0 0 1 3-3\"></path></g></svg>";
|
|
@@ -58,7 +58,7 @@ export declare const letsCloudDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg
|
|
|
58
58
|
export declare const letsCommentDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M5.172 6.172C4 7.343 4 9.229 4 13v5.586c0 .89 1.077 1.337 1.707.707l2.147-2.147c.072-.072.108-.108.154-.127c.046-.019.097-.019.2-.019H14c1.864 0 2.796 0 3.53-.305a4 4 0 0 0 2.165-2.164C20 13.796 20 12.864 20 11s0-2.796-.305-3.53a4 4 0 0 0-2.164-2.166C16.796 5 15.864 5 14 5h-2C8.229 5 6.343 5 5.172 6.172\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8.5 9.5h7m-7 3h5\"></path></g></svg>";
|
|
59
59
|
export declare const letsCompasMiniDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"m18.785 14.078l1.627-8.136a2 2 0 0 0-2.354-2.354L9.922 5.216a6 6 0 0 0-4.706 4.706l-1.628 8.136a2 2 0 0 0 2.354 2.354l8.136-1.627a6 6 0 0 0 4.707-4.707M12 17a5 5 0 1 0 0-10a5 5 0 0 0 0 10\" clip-rule=\"evenodd\"></path><circle cx=\"12\" cy=\"12\" r=\"2\" stroke=\"currentColor\" stroke-linecap=\"round\"></circle></g></svg>";
|
|
60
60
|
export declare const letsCompassDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"9\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path fill=\"currentColor\" d=\"M9.831 7.843c.85.458 3.097 1.764 3.901 3.157c.804 1.393.812 3.992.784 4.957a.233.233 0 0 1-.347.2c-.85-.458-3.097-1.764-3.901-3.157c-.804-1.393-.812-3.992-.784-4.957a.233.233 0 0 1 .347-.2\"></path></svg>";
|
|
61
|
-
export declare const letsCompassNorthDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
61
|
+
export declare const letsCompassNorthDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" fill-opacity=\".25\" stroke=\"#fff\" stroke-linecap=\"round\" d=\"m7.558 20.378l4.397-9.283a.05.05 0 0 1 .09 0l4.397 9.283a.05.05 0 0 1-.065.067L12.02 18.51a.05.05 0 0 0-.04 0l-4.357 1.936a.05.05 0 0 1-.065-.067Z\"></path><path stroke=\"#fff\" d=\"M12 11.5v7\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M10.5 8.5V3.68c0-.05.067-.069.093-.025l2.814 4.69c.026.044.093.025.093-.026V3.5\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
62
62
|
export declare const letsCreditCardDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 10c0-1.886 0-2.828.586-3.414C4.172 6 5.114 6 7 6h10c1.886 0 2.828 0 3.414.586C21 7.172 21 8.114 21 10v4c0 1.886 0 2.828-.586 3.414C19.828 18 18.886 18 17 18H7c-1.886 0-2.828 0-3.414-.586C3 16.828 3 15.886 3 14z\"></path><circle cx=\"6\" cy=\"15\" r=\"1\" fill=\"currentColor\"></circle><path fill=\"currentColor\" d=\"M3 9h18v2H3z\"></path></svg>";
|
|
63
63
|
export declare const letsCriticalDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path fill-opacity=\".25\" d=\"M18.52 10.186a.244.244 0 0 1 .36.013a9 9 0 0 1 2.117 5.55a.245.245 0 0 1-.247.25h-4.505a.263.263 0 0 1-.258-.25a3.995 3.995 0 0 0-.7-2.02a.262.262 0 0 1 .025-.334zm-.72-1.067c.11.092.115.258.014.36l-3.21 3.209a.262.262 0 0 1-.333.025a3.997 3.997 0 0 0-1.553-.643a.262.262 0 0 1-.218-.254V7.278c0-.144.12-.258.264-.246A9 9 0 0 1 17.8 9.12m-6.3-1.841a.244.244 0 0 0-.264-.246A9 9 0 0 0 6.2 9.12a.244.244 0 0 0-.013.36l3.21 3.209a.26.26 0 0 0 .333.025a3.996 3.996 0 0 1 1.553-.643a.262.262 0 0 0 .218-.254zm-2.786 6.45a.262.262 0 0 0-.026-.333l-3.209-3.21a.244.244 0 0 0-.36.014a9 9 0 0 0-2.115 5.55a.245.245 0 0 0 .246.25h4.505c.138 0 .25-.111.258-.25c.045-.727.29-1.426.7-2.02\"></path><path d=\"M12.5 11.806c0 .126.094.231.218.254a4 4 0 0 1 1.56.646a.262.262 0 0 0 .334-.026l3.91-3.91a.245.245 0 0 0-.01-.36a10 10 0 0 0-5.75-2.381a.245.245 0 0 0-.262.246z\"></path></g></svg>";
|
|
64
64
|
export declare const letsDatabaseDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 8a12.043 12.043 0 0 0 14 0v10a14.109 14.109 0 0 1-14 0z\"></path><ellipse cx=\"12\" cy=\"7\" stroke=\"currentColor\" rx=\"7\" ry=\"3\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></ellipse><path stroke=\"currentColor\" stroke-linecap=\"square\" d=\"M5 13v4c0 1.657 3.134 3 7 3s7-1.343 7-3v-4\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"currentColor\" d=\"M5 7v5c0 1.657 3.134 3 7 3s7-1.343 7-3V7\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
@@ -88,19 +88,19 @@ export declare const letsFavoritesDuotone = "<svg xmlns=\"http://www.w3.org/2000
|
|
|
88
88
|
export declare const letsFileDockDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 5a2 2 0 0 1 2-2h4.75a.25.25 0 0 1 .25.25V8a2 2 0 0 0 2 2h4.75a.25.25 0 0 1 .25.25V19a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2z\"></path><path fill=\"currentColor\" d=\"M13 8V3.604a.25.25 0 0 1 .427-.177l5.146 5.146a.25.25 0 0 1-.177.427H14a1 1 0 0 1-1-1\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M8.5 13.5h6m-6 3h5\"></path></g></svg>";
|
|
89
89
|
export declare const letsFileDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 5a2 2 0 0 1 2-2h4.75a.25.25 0 0 1 .25.25V8a2 2 0 0 0 2 2h4.75a.25.25 0 0 1 .25.25V19a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2z\"></path><path fill=\"currentColor\" d=\"M13 8V3.604a.25.25 0 0 1 .427-.177l5.146 5.146a.25.25 0 0 1-.177.427H14a1 1 0 0 1-1-1\"></path></svg>";
|
|
90
90
|
export declare const letsFilterAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M20 5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v1.586a1 1 0 0 0 .293.707l4.414 4.414a1 1 0 0 1 .293.707v6.892a.5.5 0 0 0 .658.475l5-1.667A.5.5 0 0 0 15 17.64v-5.226a1 1 0 0 1 .293-.707l4.414-4.414A1 1 0 0 0 20 6.586z\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"m9.658 19.78l.19.57zm5-1.666l.19.57zm5.05-10.821l.423.424zm-4.415 4.414l-.424-.424zM5 4.6h14V3.4H5zm-.4 1.986V5H3.4v1.586zm4.531 4.697L4.717 6.869l-.848.848l4.414 4.414zM8.4 12.414v6.892h1.2v-6.892zm0 6.892a1.1 1.1 0 0 0 1.448 1.044l-.38-1.139a.1.1 0 0 1 .132.095zm1.448 1.044l5-1.667l-.38-1.138l-5 1.666zm5-1.667a1.1 1.1 0 0 0 .752-1.043h-1.2a.1.1 0 0 1 .068-.095zm.752-1.043v-5.226h-1.2v5.226zm3.683-10.771l-4.414 4.414l.848.848l4.414-4.414zM19.4 5v1.586h1.2V5zm.731 2.717c.3-.3.469-.707.469-1.131h-1.2a.4.4 0 0 1-.117.283zM15.6 12.414a.4.4 0 0 1 .117-.283l-.848-.848a1.6 1.6 0 0 0-.469 1.131zm-7.317-.283a.4.4 0 0 1 .117.283h1.2a1.6 1.6 0 0 0-.469-1.131zM3.4 6.586c0 .424.169.831.469 1.131l.848-.848a.4.4 0 0 1-.117-.283zM19 4.6c.22 0 .4.18.4.4h1.2A1.6 1.6 0 0 0 19 3.4zM5 3.4A1.6 1.6 0 0 0 3.4 5h1.2c0-.22.18-.4.4-.4z\"></path></svg>";
|
|
91
|
-
export declare const letsFireAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
91
|
+
export declare const letsFireAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-opacity=\".25\" d=\"M9.5 10c0-.79-1.053-1-1.332-.26C7.492 11.53 7 13.134 7 14a5 5 0 0 0 10 0c0-.93-.568-2.711-1.322-4.663c-.975-2.528-1.463-3.792-2.066-3.86a1.026 1.026 0 0 0-.575.107C12.5 5.864 12.5 7.243 12.5 10a1.5 1.5 0 0 1-3 0Z\"></path><path stroke=\"#fff\" stroke-linecap=\"round\" d=\"M7 14a5 5 0 0 0 10 0\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
92
92
|
export declare const letsFlagAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M6 5.5V15h10.793c.514 0 .77 0 .834-.154c.064-.155-.117-.336-.48-.7l-3.864-3.863c-.133-.133-.2-.2-.2-.283c0-.083.066-.15.2-.283l3.863-3.863c.364-.364.545-.545.481-.7C17.564 5 17.307 5 16.793 5H6.5c-.236 0-.354 0-.427.073C6 5.146 6 5.264 6 5.5\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M6 15V5.5c0-.236 0-.354.073-.427C6.146 5 6.264 5 6.5 5h10.293c.514 0 .77 0 .834.154c.064.155-.117.336-.48.7l-3.864 3.863c-.133.133-.2.2-.2.283c0 .083.066.15.2.283l3.863 3.863c.364.364.545.545.481.7c-.063.154-.32.154-.834.154zm0 0v4\"></path></g></svg>";
|
|
93
93
|
export declare const letsFlagDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M16.577 8.526L6.658 5.219c-.3-.1-.45-.15-.554-.075C6 5.22 6 5.377 6 5.694V13l10.577-3.526c.588-.196.882-.294.882-.474s-.294-.278-.882-.474\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M6 13V5.694c0-.317 0-.475.104-.55c.104-.075.254-.025.554.075l9.919 3.307c.588.196.882.294.882.474s-.294.278-.882.474zm0 0v6\"></path></g></svg>";
|
|
94
94
|
export declare const letsFlagFinishDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M6 5.5V13h4.382c.3 0 .451 0 .572.075c.12.074.188.209.322.478l.448.894c.134.27.201.404.322.478c.121.075.271.075.572.075H17.5c.236 0 .354 0 .427-.073c.073-.073.073-.191.073-.427v-7c0-.236 0-.354-.073-.427C17.854 7 17.736 7 17.5 7h-4.882c-.3 0-.451 0-.572-.075c-.12-.074-.188-.209-.322-.478l-.448-.894c-.134-.27-.201-.404-.322-.478C10.833 5 10.683 5 10.382 5H6.5c-.236 0-.354 0-.427.073C6 5.146 6 5.264 6 5.5\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M6 13V5.5c0-.236 0-.354.073-.427C6.146 5 6.264 5 6.5 5h3.882c.3 0 .451 0 .572.075c.12.074.188.209.322.478l.448.894c.134.27.201.404.322.478c.121.075.271.075.572.075H17.5c.236 0 .354 0 .427.073c.073.073.073.191.073.427v7c0 .236 0 .354-.073.427c-.073.073-.191.073-.427.073h-4.882c-.3 0-.451 0-.572-.075c-.12-.074-.188-.209-.322-.478l-.448-.894c-.134-.27-.201-.404-.322-.478c-.121-.075-.271-.075-.572-.075zm0 0v6\"></path></g></svg>";
|
|
95
95
|
export declare const letsFolderAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M8 7H3v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9l-1 1h-9z\"></path><path stroke=\"currentColor\" d=\"M3 7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C5.28 3 6.12 3 7.8 3h8.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C21 5.28 21 6.12 21 7.8v8.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 21 17.88 21 16.2 21H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 18.72 3 17.88 3 16.2z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"currentColor\" d=\"M3 7h3c.981 0 1.472 0 1.894.211c.423.211.717.604 1.306 1.389l.6.8c.589.785.883 1.178 1.306 1.389c.422.211.913.211 1.894.211h5c.932 0 1.398 0 1.765-.152a2 2 0 0 0 1.083-1.083C21 9.398 21 8.932 21 8\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M7 16h8\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
96
96
|
export declare const letsFolderCheckDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 8h14.8c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C21 9.52 21 10.08 21 11.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C19.48 20 18.92 20 17.8 20H6.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C3 18.48 3 17.92 3 16.8zm0 0c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C4.602 5 5.068 5 6 5h2.343c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L13 8z\"></path><path stroke=\"currentColor\" d=\"m9 13.5l1.894 1.894a.15.15 0 0 0 .212 0L15 11.5\"></path></g></svg>";
|
|
97
|
-
export declare const letsFolderCopyDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
97
|
+
export declare const letsFolderCopyDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-miterlimit=\"1.414\" stroke-opacity=\".25\" d=\"M13 19.5h.5a2 2 0 0 0 2-2V17M6 19.5h-.5a2 2 0 0 1-2-2V17M6 7.5h-.5a2 2 0 0 0-2 2v.5m7.5 9.5H8M3.5 12v3\"></path><path fill=\"#fff\" d=\"M8 6.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C9.52 3 10.08 3 11.2 3h1.301c.551 0 .827 0 1.082.069a2 2 0 0 1 .631.295c.216.153.393.364.745.787L16.5 6h2.3c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C22 7.52 22 8.08 22 9.2v2.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C20.48 15 19.92 15 18.8 15h-7.6c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C8 13.48 8 12.92 8 11.8z\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
98
98
|
export declare const letsFolderDublicateDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M4 11.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C5.52 8 6.08 8 7.2 8h1.301c.551 0 .827 0 1.082.069a2 2 0 0 1 .631.295c.216.153.393.364.745.787L12.5 11h2.3c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C18 12.52 18 13.08 18 14.2v2.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C16.48 20 15.92 20 14.8 20H7.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C4 18.48 4 17.92 4 16.8z\"></path><path fill=\"currentColor\" d=\"M7 8.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C8.52 5 9.08 5 10.2 5h1.301c.551 0 .827 0 1.082.069a2 2 0 0 1 .631.295c.216.153.393.364.745.787L15.5 8h2.3c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C21 9.52 21 10.08 21 11.2v2.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C19.48 17 18.92 17 17.8 17h-7.6c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C7 15.48 7 14.92 7 13.8z\"></path></svg>";
|
|
99
99
|
export declare const letsFolderLineDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 7h16a2 2 0 0 1 2 2H3z\"></path><path fill=\"currentColor\" d=\"M3 10h18v4.2c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 19 17.88 19 16.2 19H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 16.72 3 15.88 3 14.2z\"></path><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 7c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C4.602 4 5.068 4 6 4h2.343c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L13 7z\"></path></svg>";
|
|
100
100
|
export declare const letsFolderSearchDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 8h14.8c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C21 9.52 21 10.08 21 11.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C19.48 20 18.92 20 17.8 20H6.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C3 18.48 3 17.92 3 16.8zm0 0c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C4.602 5 5.068 5 6 5h2.343c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L13 8z\"></path><circle cx=\"11.5\" cy=\"13.5\" r=\"2\" stroke=\"currentColor\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"m14 16l1.5 1.5\"></path></g></svg>";
|
|
101
101
|
export declare const letsFolderSendDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 8h14.8c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C21 9.52 21 10.08 21 11.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C19.48 20 18.92 20 17.8 20H6.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C3 18.48 3 17.92 3 16.8zm0 0c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C4.602 5 5.068 5 6 5h2.343c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L13 8z\"></path><path stroke=\"currentColor\" d=\"M10 14h5m0 0l-2.5-2.5M15 14l-2.5 2.5\"></path></g></svg>";
|
|
102
102
|
export declare const letsFolderUpDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 8h14.8c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C21 9.52 21 10.08 21 11.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C19.48 20 18.92 20 17.8 20H6.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C3 18.48 3 17.92 3 16.8zm0 0c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C4.602 5 5.068 5 6 5h2.343c.818 0 1.226 0 1.594.152c.368.152.657.442 1.235 1.02L13 8z\"></path><path stroke=\"currentColor\" d=\"m10 13.5l1.894-1.894a.15.15 0 0 1 .212 0L14 13.5M12 16v-4.5\"></path></g></svg>";
|
|
103
|
-
export declare const letsFoldersLineDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
103
|
+
export declare const letsFoldersLineDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-opacity=\".24\" d=\"M5.5 3v3.9c0 .56 0 .84.109 1.054a1 1 0 0 0 .437.437C6.26 8.5 6.54 8.5 7.1 8.5h4.4M5.5 5v11.9c0 .56 0 .84.109 1.054a1 1 0 0 0 .437.437c.214.109.494.109 1.054.109h4.4\"></path><path fill=\"#fff\" d=\"M11 6.6c0-.56 0-.84.109-1.054a1 1 0 0 1 .437-.437C11.76 5 12.04 5 12.6 5h.737c.245 0 .367 0 .482.028a1 1 0 0 1 .29.12c.1.061.187.148.36.32l.062.063c.173.173.26.26.36.322a1 1 0 0 0 .29.12c.115.027.237.027.482.027H17.4c.56 0 .84 0 1.054.109a1 1 0 0 1 .437.437C19 6.76 19 7.04 19 7.6v2.8c0 .56 0 .84-.109 1.054a1 1 0 0 1-.437.437C18.24 12 17.96 12 17.4 12h-4.8c-.56 0-.84 0-1.054-.109a1 1 0 0 1-.437-.437C11 11.24 11 10.96 11 10.4zm0 10c0-.56 0-.84.109-1.054a1 1 0 0 1 .437-.437C11.76 15 12.04 15 12.6 15h.737c.245 0 .367 0 .482.028c.102.024.2.064.29.12c.1.061.187.148.36.32l.062.063c.173.173.26.26.36.322c.09.055.188.095.29.12c.115.027.237.027.482.027H17.4c.56 0 .84 0 1.054.109a1 1 0 0 1 .437.437C19 16.76 19 17.04 19 17.6v2.8c0 .56 0 .84-.109 1.054a1 1 0 0 1-.437.437C18.24 22 17.96 22 17.4 22h-4.8c-.56 0-.84 0-1.054-.109a1 1 0 0 1-.437-.437C11 21.24 11 20.96 11 20.4z\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
104
104
|
export declare const letsFormDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M5.293 5.293C5 5.586 5 6.057 5 7v10c0 1.886 0 2.828.586 3.414c.326.327.764.471 1.414.535V19.5a1.5 1.5 0 0 1 3 0V21h4v-1.5a1.5 1.5 0 0 1 3 0v1.45c.65-.065 1.088-.21 1.414-.536C19 19.828 19 18.886 19 17V7c0-.943 0-1.414-.293-1.707C18.414 5 17.943 5 17 5H7c-.943 0-1.414 0-1.707.293\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M8.5 9.5h7m-7 3h4m-4 3h6\"></path></g></svg>";
|
|
105
105
|
export declare const letsGiftLightDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 8h14v8c0 1.886 0 2.828-.586 3.414C17.828 20 16.886 20 15 20H9c-1.886 0-2.828 0-3.414-.586C5 18.828 5 17.886 5 16z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"m12 8l-.24-2.153A2.654 2.654 0 0 0 9.124 3.5v0C7.683 3.5 6.5 4.667 6.5 6.106v0c0 .87.435 1.684 1.16 2.168L9.5 9.5M12 8l.24-2.153A2.654 2.654 0 0 1 14.876 3.5v0c1.44 0 2.623 1.167 2.623 2.606v0c0 .87-.435 1.684-1.16 2.168L14.5 9.5\"></path><rect width=\"16\" height=\"3\" x=\"4\" y=\"8\" fill=\"currentColor\" rx=\"1\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 11v4\"></path></g></svg>";
|
|
106
106
|
export declare const letsGpsFixedDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"3\" fill=\"currentColor\"></circle><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M12 2.4a.6.6 0 0 1 .6.6v2.025a7.002 7.002 0 0 1 6.375 6.375H21a.6.6 0 1 1 0 1.2h-2.025a7.002 7.002 0 0 1-6.376 6.375A11.462 11.462 0 0 1 12.6 19v2a.6.6 0 1 1-1.2 0v-2.025a7.002 7.002 0 0 1-6.375-6.376L5 12.6H3a.6.6 0 1 1 0-1.2h2.025A7.002 7.002 0 0 1 11.4 5.025V3a.6.6 0 0 1 .6-.6M12 18a6 6 0 1 0 0-12a6 6 0 0 0 0 12\" clip-rule=\"evenodd\"></path></svg>";
|
|
@@ -108,9 +108,9 @@ export declare const letsHeadphonesFillDuotone = "<svg xmlns=\"http://www.w3.org
|
|
|
108
108
|
export declare const letsHideEyeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M6.887 5.172c.578-.578.867-.868 1.235-1.02C8.49 4 8.898 4 9.716 4h4.61c.826 0 1.239 0 1.61.155c.37.155.66.45 1.239 1.037l1.674 1.699c.568.576.852.865 1.002 1.23c.149.364.149.768.149 1.578v4.644c0 .818 0 1.226-.152 1.594c-.152.368-.441.656-1.02 1.235l-1.656 1.656c-.579.579-.867.867-1.235 1.02c-.368.152-.776.152-1.594.152H9.7c-.81 0-1.214 0-1.579-.15c-.364-.149-.653-.433-1.229-1.001l-1.699-1.674c-.588-.58-.882-.87-1.037-1.24C4 15.565 4 15.152 4 14.326v-4.61c0-.818 0-1.226.152-1.594c.152-.368.442-.657 1.02-1.235z\"></path><path stroke-linecap=\"round\" d=\"m8 11l.422.211a8 8 0 0 0 7.156 0L16 11m-4 1.5V14m-3-2l-.5 1m6.5-1l.5 1\"></path></g></svg>";
|
|
109
109
|
export declare const letsHomeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 14.059c0-1.01 0-1.514.222-1.945c.221-.43.632-.724 1.453-1.31l4.163-2.974c.56-.4.842-.601 1.162-.601c.32 0 .601.2 1.162.601l4.163 2.973c.821.587 1.232.88 1.453 1.311c.222.43.222.935.222 1.944V19c0 .943 0 1.414-.293 1.707C18.414 21 17.943 21 17 21H7c-.943 0-1.414 0-1.707-.293C5 20.414 5 19.943 5 19z\"></path><path fill=\"currentColor\" d=\"M3 12.387c0 .266 0 .4.084.441c.084.041.19-.04.4-.205l7.288-5.668c.59-.459.885-.688 1.228-.688c.343 0 .638.23 1.228.688l7.288 5.668c.21.164.316.246.4.205c.084-.041.084-.175.084-.441v-.409c0-.48 0-.72-.102-.928c-.101-.208-.291-.356-.67-.65l-7-5.445c-.59-.459-.885-.688-1.228-.688c-.343 0-.638.23-1.228.688l-7 5.445c-.379.294-.569.442-.67.65c-.102.208-.102.448-.102.928zM12.5 15h-1a2 2 0 0 0-2 2v3.85c0 .083.067.15.15.15h4.7a.15.15 0 0 0 .15-.15V17a2 2 0 0 0-2-2\"></path><rect width=\"2\" height=\"4\" x=\"16\" y=\"5\" fill=\"currentColor\" rx=\".5\"></rect></svg>";
|
|
110
110
|
export declare const letsImgBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M4.172 4.172C3 5.343 3 7.229 3 11v2.484l1.734-1.486l.029-.025c.829-.71 1.49-1.276 2.056-1.645c.58-.377 1.144-.601 1.766-.513a2.5 2.5 0 0 1 .427.1c.598.195 1.004.645 1.358 1.24c.346.58.69 1.38 1.12 2.384l.014.035c.214.5.356.828.49 1.054c.13.218.208.262.254.279c.027.01.054.017.082.022c.048.008.138.01.36-.117c.232-.13.521-.346.959-.674l.02-.015c.46-.345.836-.627 1.165-.826c.343-.207.673-.349 1.049-.388c.074-.007.149-.012.223-.013c.378-.005.72.097 1.084.263c.348.16.75.394 1.245.682l.022.013l2.528 1.475C21 14.644 21 13.873 21 13v-2c0-3.771 0-5.657-1.172-6.828C18.657 3 16.771 3 13 3h-2C7.229 3 5.343 3 4.172 4.172m16.77 12.29l-2.99-1.744c-.52-.304-.88-.513-1.177-.649c-.288-.131-.479-.175-.656-.173c-.045 0-.09.003-.134.008l-.051-.497l.051.497c-.176.018-.36.084-.633.249c-.282.17-.617.421-1.103.785l-.027.02c-.403.303-.745.56-1.04.726c-.31.174-.648.297-1.027.23a1.5 1.5 0 0 1-.246-.066c-.362-.13-.593-.404-.774-.71c-.172-.29-.34-.68-.537-1.14l-.013-.03c-.449-1.047-.766-1.785-1.074-2.301c-.303-.509-.548-.716-.81-.802a1.504 1.504 0 0 0-.256-.06c-.273-.038-.585.04-1.081.362c-.504.328-1.115.85-1.98 1.59l-2.378 2.04c.03 2.606.197 4.063 1.166 5.031C5.343 21 7.229 21 11 21h2c3.771 0 5.657 0 6.828-1.172c.74-.74 1.013-1.763 1.113-3.367\" clip-rule=\"evenodd\"></path><circle cx=\"16\" cy=\"8\" r=\"2\" fill=\"currentColor\"></circle></svg>";
|
|
111
|
-
export declare const letsImgDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"
|
|
112
|
-
export declare const letsImgLoadBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"
|
|
113
|
-
export declare const letsImgOutBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"
|
|
111
|
+
export declare const letsImgDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"ID_PLACEHOLDER_0\" width=\"18\" height=\"18\" x=\"3\" y=\"3\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><path d=\"M3 11c0-3.771 0-5.657 1.172-6.828C5.343 3 7.229 3 11 3h2c3.771 0 5.657 0 6.828 1.172C21 5.343 21 7.229 21 11v2c0 3.771 0 5.657-1.172 6.828C18.657 21 16.771 21 13 21h-2c-3.771 0-5.657 0-6.828-1.172C3 18.657 3 16.771 3 13z\"></path></mask><g fill=\"none\"><g mask=\"url(#ID_PLACEHOLDER_0)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m12.689 14.57l-1.497-1.633c-1.27-1.385-1.904-2.078-2.73-2.115c-.825-.038-1.52.594-2.91 1.858l-1.921 1.747c-.299.271-.448.407-.533.583a.998.998 0 0 0-.024.056c-.074.18-.074.383-.074.786c0 3.669 0 5.503 1.083 6.657c.109.116.224.225.346.327c1.212 1.017 3.044.916 6.706.712l3.312-.184c2.61-.145 3.916-.218 4.85-.874c.441-.31.815-.704 1.1-1.161c.603-.97.603-2.278.603-4.892v-.194c0-.408 0-.612-.038-.805a2 2 0 0 0-.3-.72c-.108-.165-.253-.309-.54-.597c-.66-.659-.99-.988-1.357-1.14a2 2 0 0 0-1.53 0c-.368.152-.697.481-1.356 1.14l-.507.507c-.592.592-.889.889-1.248.922a.998.998 0 0 1-.228-.005c-.358-.049-.641-.358-1.207-.976\"></path></g><circle cx=\"16\" cy=\"9\" r=\"2\" fill=\"currentColor\"></circle></g></svg>";
|
|
112
|
+
export declare const letsImgLoadBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"ID_PLACEHOLDER_0\" width=\"18\" height=\"18\" x=\"3\" y=\"3\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><path d=\"M3 11c0-3.771 0-5.657 1.172-6.828C5.343 3 7.229 3 11 3h2c3.771 0 5.657 0 6.828 1.172C21 5.343 21 7.229 21 11v2c0 3.771 0 5.657-1.172 6.828C18.657 21 16.771 21 13 21h-2c-3.771 0-5.657 0-6.828-1.172C3 18.657 3 16.771 3 13z\"></path></mask><g fill=\"none\"><g mask=\"url(#ID_PLACEHOLDER_0)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m13.017 14.927l-2.164-2.36c-.943-1.03-1.415-1.543-2-1.689a2.001 2.001 0 0 0-.784-.035c-.596.091-1.113.56-2.145 1.499c-1.062.965-1.592 1.447-2.05 1.39a1 1 0 0 1-.524-.232C3 13.2 3 12.483 3 11.048v-3.48c0-3.584 0-5.376 1.094-6.533S6.978-.22 10.556-.42l2-.11c3.961-.221 5.942-.331 7.193.853C21 1.506 21 3.49 21 7.457v6.45c0 .564 0 .846-.055 1.004a1 1 0 0 1-1.383.574c-.15-.074-.35-.273-.75-.673c-.37-.37-.555-.555-.742-.673a2 2 0 0 0-2.14 0c-.187.118-.372.303-.742.673l-.159.159c-.27.27-.404.404-.547.476a1 1 0 0 1-.94-.02c-.14-.079-.268-.22-.525-.5\"></path></g><path fill=\"currentColor\" d=\"M8 16v-.6h.6v.6zm-5.576 6.424a.6.6 0 1 1-.848-.848zM7.4 21v-5h1.2v5zm.6-4.4H3v-1.2h5zm.424-.176l-6 6l-.848-.848l6-6z\"></path><circle cx=\"16\" cy=\"8\" r=\"2\" fill=\"currentColor\"></circle></g></svg>";
|
|
113
|
+
export declare const letsImgOutBoxDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><mask id=\"ID_PLACEHOLDER_0\" width=\"18\" height=\"18\" x=\"3\" y=\"3\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><path d=\"M3 11c0-3.771 0-5.657 1.172-6.828C5.343 3 7.229 3 11 3h2c3.771 0 5.657 0 6.828 1.172C21 5.343 21 7.229 21 11v2c0 3.771 0 5.657-1.172 6.828C18.657 21 16.771 21 13 21h-2c-3.771 0-5.657 0-6.828-1.172C3 18.657 3 16.771 3 13z\"></path></mask><g fill=\"none\"><g mask=\"url(#ID_PLACEHOLDER_0)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m12.689 14.57l-1.497-1.633c-1.27-1.385-1.904-2.078-2.73-2.115c-.825-.038-1.52.594-2.91 1.858l-1.921 1.747c-.299.271-.448.407-.533.583a.998.998 0 0 0-.024.056c-.074.18-.074.383-.074.786c0 3.669 0 5.503 1.083 6.657c.109.116.224.225.346.327c1.212 1.017 3.044.916 6.706.712l3.312-.184c2.61-.145 3.916-.218 4.85-.874c.441-.31.815-.704 1.1-1.161c.603-.97.603-2.278.603-4.892v-.194c0-.408 0-.612-.038-.805a2 2 0 0 0-.3-.72c-.108-.165-.253-.309-.54-.597c-.66-.659-.99-.988-1.357-1.14a2 2 0 0 0-1.53 0c-.368.152-.697.481-1.356 1.14l-.507.507c-.592.592-.889.889-1.248.922a.998.998 0 0 1-.228-.005c-.358-.049-.641-.358-1.207-.976\"></path></g><circle cx=\"6\" cy=\"6\" r=\"2\" fill=\"currentColor\"></circle><path fill=\"currentColor\" d=\"M20 4v-.6h.6V4zm-5.576 6.424a.6.6 0 0 1-.848-.848zM19.4 9V4h1.2v5zm.6-4.4h-5V3.4h5zm.424-.176l-6 6l-.848-.848l6-6z\"></path></g></svg>";
|
|
114
114
|
export declare const letsImgRolDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path fill-opacity=\".25\" d=\"M7 5.505C4.588 6.043 3 6.96 3 8s1.588 1.957 4 2.495zm10 4.99C19.412 9.957 21 9.04 21 8s-1.588-1.957-4-2.495z\"></path><path d=\"m19.736 18.331l-1.284-1.799c-.653-.913-.979-1.37-1.44-1.408a1.002 1.002 0 0 0-.08-.004c-.462-.002-.827.424-1.557 1.276c-.629.733-.943 1.1-1.357 1.13a1.025 1.025 0 0 1-.072.003c-.416.001-.757-.34-1.44-1.023l-1.092-1.092c-.666-.666-1-1-1.414-1c-.414 0-.748.334-1.414 1l-3.444 3.444c.235.107.505.213.81.315c1.502.5 3.64.827 6.048.827s4.546-.327 6.048-.827c.756-.252 1.296-.53 1.626-.79zM3 18V8c0 .496.36.964 1 1.376C5.496 10.34 8.517 11 12 11c3.483 0 6.504-.66 8-1.624c.64-.412 1-.88 1-1.376v10c0 1.657-4.03 3-9 3s-9-1.343-9-3\"></path></g></svg>";
|
|
115
115
|
export declare const letsImportDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><rect width=\"14\" height=\"6\" x=\"5\" y=\"13\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 13.5L12 16m0 0l2.5-2.5M12 16V6\"></path></g></svg>";
|
|
116
116
|
export declare const letsInfoAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><circle cx=\"8\" cy=\"8\" r=\"8\" fill=\"currentColor\" fill-opacity=\".25\" transform=\"matrix(-1 0 0 1 20 4)\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M11 10.5h.5a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h.5m-1-7h.01\"></path></g></svg>";
|
|
@@ -122,8 +122,8 @@ export declare const letsKeyAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/sv
|
|
|
122
122
|
export declare const letsKeyDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M18.896 10H8v4h6.732a.5.5 0 0 0 .416-.223l.436-.653a.5.5 0 0 1 .832 0l.376.564a.25.25 0 0 0 .416 0l.376-.564a.5.5 0 0 1 .832 0l.415.622a.25.25 0 0 0 .385.038l1.607-1.607a.25.25 0 0 0 0-.354l-1.75-1.75a.25.25 0 0 0-.177-.073\"></path><rect width=\"6\" height=\"1\" x=\"10\" y=\"11\" fill=\"currentColor\" rx=\".5\"></rect><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M3.586 8.586C3 9.172 3 10.114 3 12c0 1.886 0 2.828.586 3.414C4.172 16 5.114 16 7 16c1.886 0 2.828 0 3.414-.586C11 14.828 11 13.886 11 12c0-1.886 0-2.828-.586-3.414C9.828 8 8.886 8 7 8c-1.886 0-2.828 0-3.414.586M6 10a1 1 0 1 0 0 2a1 1 0 0 0 0-2\" clip-rule=\"evenodd\"></path></svg>";
|
|
123
123
|
export declare const letsLableDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"currentColor\" stroke=\"currentColor\"><path fill-opacity=\".25\" d=\"M3 8c0-.943 0-1.414.293-1.707C3.586 6 4.057 6 5 6h10.93c.524 0 .786 0 1.007.118c.22.119.366.337.657.773l2.666 4c.359.537.538.806.538 1.109c0 .303-.18.572-.538 1.11l-2.666 4c-.29.435-.436.653-.657.772c-.221.118-.483.118-1.007.118H5c-.943 0-1.414 0-1.707-.293C3 17.414 3 16.943 3 16z\"></path><circle cx=\"15\" cy=\"12\" r=\"1\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.4)\"></circle></g></svg>";
|
|
124
124
|
export declare const letsLayersDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" stroke=\"currentColor\" stroke-linejoin=\"round\" d=\"M12 4L5 7l7 3l7-3z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M10.834 9.5L12 10l1.166-.5L19 12l-7 3l-7-3z\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"m10.834 9.5l.236-.552a.6.6 0 0 0-.473 0zM12 10l-.236.551a.6.6 0 0 0 .472 0zm1.166-.5l.237-.552a.6.6 0 0 0-.473 0zM19 12l.236.552a.6.6 0 0 0 0-1.104zm-7 3l-.236.552a.6.6 0 0 0 .472 0zm-7-3l-.236-.552a.6.6 0 0 0 0 1.104zm5.597-1.949l1.167.5l.472-1.103l-1.166-.5zm1.64.5l1.166-.5l-.473-1.103l-1.166.5zm7 .897l-5.834-2.5l-.473 1.103l5.834 2.5zm-7 4.104l7-3l-.473-1.104l-7 3zm-7.473-3l7 3l.472-1.104l-7-3zm5.833-3.604l-5.833 2.5l.472 1.104l5.834-2.5z\"></path><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M10.833 14.5L12 15l1.167-.5L19 17l-7 3l-7-3z\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"m10.833 14.5l.237-.552a.6.6 0 0 0-.473 0zM12 15l-.236.552a.6.6 0 0 0 .472 0zm1.167-.5l.236-.552a.6.6 0 0 0-.473 0zM19 17l.236.552a.6.6 0 0 0 0-1.104zm-7 3l-.236.552a.6.6 0 0 0 .472 0zm-7-3l-.236-.552a.6.6 0 0 0 0 1.104zm5.597-1.948l1.167.5l.472-1.104l-1.166-.5zm1.64.5l1.166-.5l-.473-1.104l-1.166.5zm7 .896l-5.834-2.5l-.473 1.104l5.834 2.5zm-7 4.104l7-3l-.473-1.104l-7 3zm-7.473-3l7 3l.472-1.104l-7-3zm5.833-3.604l-5.833 2.5l.472 1.104l5.834-2.5z\"></path></svg>";
|
|
125
|
-
export declare const letsLightningAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
126
|
-
export declare const letsLightningDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
125
|
+
export declare const letsLightningAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" d=\"m10.415 18.923l.465-2.325c.056-.277.083-.415.008-.506C10.813 16 10.672 16 10.39 16H8.883c-.391 0-.587 0-.659-.127c-.072-.127.029-.294.23-.63l2.092-3.486c.201-.335.302-.503.23-.63c-.072-.127-.268-.127-.66-.127H7.723c-.328 0-.492 0-.567-.108c-.074-.107-.017-.26.098-.568l2.625-7c.06-.156.089-.235.153-.28C10.096 3 10.18 3 10.348 3h4.77c.391 0 .587 0 .659.127c.072.127-.029.295-.23.63l-2.092 3.486c-.201.335-.302.503-.23.63c.072.127.268.127.66.127H15c.436 0 .655 0 .724.138c.069.138-.062.313-.324.662l-1.8 2.4c-.262.35-.393.524-.324.662c.07.138.288.138.724.138h1.978c.444 0 .667 0 .735.14c.069.14-.068.316-.34.667L11.3 19.328c-.514.662-.771.992-.951.91c-.18-.082-.098-.493.066-1.315\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-opacity=\".25\" d=\"M18.5 4L17 6h2l-1.5 2m-11 8L5 18h2l-1.5 2\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
126
|
+
export declare const letsLightningDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" d=\"m9.556 13.323l-.12-.01c-1.528-.14-2.292-.209-2.535-.732c-.242-.522.198-1.15 1.077-2.407l3.583-5.119c.581-.83.872-1.245 1.123-1.157c.25.089.216.594.15 1.605l-.204 3.049c-.062.92-.092 1.38.172 1.69c.265.31.724.351 1.642.435l.12.01c1.528.14 2.292.209 2.535.732c.242.522-.198 1.15-1.078 2.407l-3.582 5.119c-.581.83-.872 1.245-1.123 1.157c-.25-.089-.216-.594-.15-1.605l.204-3.049c.062-.92.092-1.38-.172-1.69c-.265-.31-.724-.351-1.642-.435\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-opacity=\".25\" d=\"M18.5 4L17 6h2l-1.5 2m-11 8L5 18h2l-1.5 2\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
127
127
|
export declare const letsLightningRingDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M12 21a9 9 0 1 0 0-18a9 9 0 0 0 0 18m-1.563-7.2H11.5c.236 0 .354 0 .427.073c.073.073.073.191.073.427v2.808c0 .759 0 1.139.186 1.188c.186.049.374-.281.749-.941l2.367-4.167c.756-1.33 1.133-1.994.844-2.491c-.29-.497-1.054-.497-2.583-.497H12.5c-.236 0-.354 0-.427-.073C12 10.054 12 9.936 12 9.7V6.892c0-.759 0-1.138-.186-1.188c-.186-.049-.374.281-.749.941l-2.367 4.167c-.756 1.33-1.133 1.994-.844 2.491c.29.497 1.054.497 2.583.497\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" d=\"M11.5 13.8h-1.063c-1.53 0-2.294 0-2.583-.497c-.29-.497.088-1.162.844-2.491l2.367-4.167c.375-.66.563-.99.749-.94c.186.049.186.428.186 1.187V9.7c0 .236 0 .354.073.427c.073.073.191.073.427.073h1.063c1.53 0 2.294 0 2.583.497c.29.497-.088 1.162-.844 2.491l-2.367 4.167c-.375.66-.563.99-.749.94C12 18.247 12 17.868 12 17.109V14.3c0-.236 0-.354-.073-.427c-.073-.073-.191-.073-.427-.073Z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><circle cx=\"12\" cy=\"12\" r=\"9\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></circle></g></svg>";
|
|
128
128
|
export declare const letsLineDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M9 15v3c0 .943 0 1.414-.293 1.707C8.414 20 7.943 20 7 20H6c-.943 0-1.414 0-1.707-.293C4 19.414 4 18.943 4 18v-1c0-.943 0-1.414.293-1.707C4.586 15 5.057 15 6 15zm6-6V6c0-.943 0-1.414.293-1.707C15.586 4 16.057 4 17 4h1c.943 0 1.414 0 1.707.293C20 4.586 20 5.057 20 6v1c0 .943 0 1.414-.293 1.707C19.414 9 18.943 9 18 9z\"></path><path d=\"m15 9l-6 6\"></path></g></svg>";
|
|
129
129
|
export declare const letsLoadCircleDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><circle cx=\"6\" cy=\"6\" r=\"6\" fill=\"currentColor\" fill-opacity=\".25\" transform=\"matrix(0 -1 -1 0 18 20)\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 12.5L12 15m0 0l2.5-2.5M12 15V5\"></path></g></svg>";
|
|
@@ -142,30 +142,30 @@ export declare const letsMusicDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg
|
|
|
142
142
|
export declare const letsNavigateDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M9.01 12.093c-.274-.195-.41-.293-.546-.305a.5.5 0 0 0-.335.091c-.11.08-.179.233-.315.54l-3.039 6.837c-.243.548-.365.822-.313.998a.5.5 0 0 0 .31.33c.173.062.454-.044 1.015-.254l5.932-2.225c.104-.039.156-.058.21-.066a.504.504 0 0 1 .143 0c.053.008.105.027.209.066l5.932 2.225c.561.21.842.316 1.015.253a.5.5 0 0 0 .31-.329c.052-.176-.07-.45-.313-.998l-3.039-6.837c-.136-.307-.204-.46-.315-.54a.5.5 0 0 0-.335-.09c-.136.011-.272.109-.546.304l-2.409 1.72a1 1 0 0 1-1.162 0z\"></path><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M9.061 9.613a.06.06 0 0 0 .02.074l2.454 1.752c.167.12.251.18.342.203a.5.5 0 0 0 .246 0c.091-.023.175-.083.342-.203l2.454-1.752a.06.06 0 0 0 .02-.074L12.73 4.645c-.231-.52-.347-.781-.508-.861a.5.5 0 0 0-.445 0c-.162.08-.277.34-.509.861z\"></path></svg>";
|
|
143
143
|
export declare const letsNestingDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><rect width=\"4\" height=\"4\" x=\"18\" y=\"15\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\" transform=\"rotate(90 18 15)\"></rect><rect width=\"4\" height=\"4\" x=\"6\" y=\"8\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\" transform=\"rotate(-90 6 8)\"></rect><path d=\"M8 8v5c0 1.886 0 2.828.586 3.414C9.172 17 10.114 17 12 17h2\"></path></g></svg>";
|
|
144
144
|
export declare const letsNewsDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M5 10c0-1.87 0-2.804.402-3.5A3 3 0 0 1 6.5 5.402C7.196 5 8.13 5 10 5h4c1.87 0 2.804 0 3.5.402A3 3 0 0 1 18.598 6.5C19 7.196 19 8.13 19 10z\"></path><rect width=\"14\" height=\"14\" x=\"5\" y=\"5\" stroke=\"currentColor\" rx=\"3\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M5 10h14\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
145
|
-
export declare const letsNfcDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
145
|
+
export declare const letsNfcDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\" stroke-linecap=\"round\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><path stroke=\"#fff\" d=\"m5 8l5 8\"></path><path stroke=\"silver\" stroke-opacity=\".25\" d=\"M18.722 20.5a17 17 0 0 0 0-17M14.392 18a12 12 0 0 0 0-12\"></path><path stroke=\"#fff\" d=\"M9.928 16a8 8 0 0 0 0-8m-4.856 8a8 8 0 0 1 0-8\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
146
146
|
export declare const letsNotebookDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M3.5 7.5h4m-4 8h4m-4-4h4\"></path><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M5.01 5.695c-.003.143-.005.214.039.26c.044.045.116.045.26.045H7.5a1.5 1.5 0 1 1 0 3H5.3c-.141 0-.212 0-.256.044C5 9.088 5 9.159 5 9.3v.4c0 .141 0 .212.044.256c.044.044.115.044.256.044h2.2a1.5 1.5 0 0 1 0 3H5.3c-.141 0-.212 0-.256.044C5 13.088 5 13.159 5 13.3v.4c0 .141 0 .212.044.256c.044.044.115.044.256.044h2.2a1.5 1.5 0 0 1 0 3H5.3c-.141 0-.212 0-.256.044C5 17.088 5 17.159 5 17.3c.002 1.688.032 2.56.586 3.114C6.172 21 7.114 21 9 21h6c1.886 0 2.828 0 3.414-.586C19 19.828 19 18.886 19 17V7c0-1.886 0-2.828-.586-3.414C17.828 3 16.886 3 15 3H9c-1.886 0-2.828 0-3.414.586c-.432.431-.545 1.056-.575 2.11\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M15.5 10.5v-3\"></path></g></svg>";
|
|
147
147
|
export declare const letsOnButtonDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M10.5 6.576c0-.18 0-.27-.062-.315c-.062-.045-.145-.018-.31.036a6 6 0 1 0 3.743 0c-.165-.054-.247-.08-.309-.036c-.062.045-.062.135-.062.315V9a1.5 1.5 0 0 1-3 0z\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 9V4m6.01 1.99a8.5 8.5 0 1 1-12.02 0\"></path></g></svg>";
|
|
148
148
|
export declare const letsOrderDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><rect width=\"14\" height=\"18\" x=\"5\" y=\"3\" fill=\"currentColor\" fill-opacity=\".25\" rx=\"2\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 7.5h5m-5 3h3m-3 3h4m-4 3h3\"></path><rect width=\"1\" height=\"1\" x=\"7\" y=\"7\" fill=\"currentColor\" rx=\".5\"></rect><rect width=\"1\" height=\"1\" x=\"7\" y=\"10\" fill=\"currentColor\" rx=\".5\"></rect><rect width=\"1\" height=\"1\" x=\"7\" y=\"13\" fill=\"currentColor\" rx=\".5\"></rect><rect width=\"1\" height=\"1\" x=\"7\" y=\"16\" fill=\"currentColor\" rx=\".5\"></rect></g></svg>";
|
|
149
149
|
export declare const letsPaperDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M15 8.211v11.855c0 .411 0 .617-.132.687c-.132.071-.303-.043-.645-.271l-1.946-1.297c-.134-.09-.201-.134-.277-.134c-.076 0-.143.044-.277.134l-2.446 1.63c-.134.09-.201.134-.277.134c-.076 0-.143-.044-.277-.134l-2.446-1.63c-.134-.09-.201-.134-.277-.134c-.076 0-.143.044-.277.134l-1.946 1.297c-.342.228-.513.342-.645.271C3 20.683 3 20.477 3 20.066V7c0-1.886 0-2.828.586-3.414C4.172 3 5.114 3 7 3h11l-.328.219c-1.308.872-1.962 1.308-2.317 1.971C15 5.853 15 6.64 15 8.211\"></path><path fill=\"currentColor\" d=\"M15 6a3 3 0 1 1 6 0v2a1 1 0 0 1-1 1h-4.5a.5.5 0 0 1-.5-.5z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M5.5 9.5h7m-7 3h4m-4 3h6\"></path></g></svg>";
|
|
150
150
|
export declare const letsPhoneDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m17.707 13.707l2.648 2.648a.912.912 0 0 1 0 1.29a5.471 5.471 0 0 1-7.151.508l-1.575-1.182a22.996 22.996 0 0 1-4.6-4.6l-1.182-1.575a5.471 5.471 0 0 1 .508-7.151a.912.912 0 0 1 1.29 0l2.648 2.648a1 1 0 0 1 0 1.414L9.272 8.728a.533.533 0 0 0-.1.616a12.262 12.262 0 0 0 5.484 5.484a.533.533 0 0 0 .616-.1l1.02-1.02a1 1 0 0 1 1.415 0\"></path><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M20.355 17.645a.912.912 0 0 0 0-1.29l-2.648-2.648a1 1 0 0 0-1.414 0l-.793.793l3.905 3.905a5.51 5.51 0 0 0 .95-.76M5.595 4.595L9.5 8.5l.793-.793a1 1 0 0 0 0-1.414L7.645 3.645a.912.912 0 0 0-1.29 0a5.48 5.48 0 0 0-.76.95\" clip-rule=\"evenodd\"></path></svg>";
|
|
151
|
-
export declare const letsPinAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
151
|
+
export declare const letsPinAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M19.361 18c.746.456 1.139.973 1.139 1.5s-.393 1.044-1.139 1.5c-.746.456-1.819.835-3.111 1.098c-1.292.263-2.758.402-4.25.402s-2.958-.139-4.25-.402c-1.292-.263-2.365-.642-3.111-1.098c-.746-.456-1.139-.973-1.139-1.5s.393-1.044 1.139-1.5\"></path><path fill=\"#fff\" fill-opacity=\".25\" d=\"M19 10c0 5.016-5.119 8.035-6.602 8.804a.855.855 0 0 1-.796 0C10.119 18.034 5 15.016 5 10a7 7 0 0 1 14 0\"></path><circle cx=\"12\" cy=\"10\" r=\"3\" fill=\"#fff\"></circle></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
152
152
|
export declare const letsPinDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M14.636 3.91c.653-.436.98-.654 1.335-.618c.356.035.633.312 1.188.867l2.682 2.682c.555.555.832.832.867 1.188c.036.356-.182.682-.617 1.335l-1.65 2.473c-.561.843-.842 1.264-1.066 1.714a8.005 8.005 0 0 0-.427 1.031c-.16.477-.26.974-.458 1.967l-.19.955l-.002.006a1 1 0 0 1-1.547.625l-.005-.004l-.027-.018a35 35 0 0 1-8.85-8.858l-.004-.006a1 1 0 0 1 .625-1.547l.006-.001l.955-.191c.993-.199 1.49-.298 1.967-.458a7.997 7.997 0 0 0 1.03-.427c.45-.224.872-.505 1.715-1.067z\"></path><path stroke-linecap=\"round\" d=\"m5 19l4.5-4.5\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.4)\"></path></g></svg>";
|
|
153
153
|
export declare const letsPinedDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.4)\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M8 4.461c0-.43 0-.644.065-.815a1 1 0 0 1 .58-.581C8.818 3 9.033 3 9.462 3h5.078c.43 0 .644 0 .815.065a1 1 0 0 1 .581.58c.065.172.065.387.065.816c0 1.107 0 1.66.073 2.198a8 8 0 0 0 .732 2.416c.237.489.544.949 1.158 1.87l1.399 2.098a.81.81 0 0 1-.478 1.236a28.382 28.382 0 0 1-13.768 0a.81.81 0 0 1-.478-1.236l1.399-2.098c.614-.921.92-1.381 1.158-1.87a8 8 0 0 0 .732-2.416C8 6.12 8 5.568 8 4.46Z\"></path><path stroke-linecap=\"round\" d=\"M12 20v-4\"></path><path d=\"M6 20h12\"></path></g></svg>";
|
|
154
154
|
export declare const letsPipeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M5.965 15.17c-.552.148-.828.222-.917.464c-.09.243.059.46.356.893a8 8 0 1 0 7.219-12.502c-.524-.041-.786-.062-.951.137c-.166.2-.092.475.056 1.028l1.643 6.132l.003.01c.012.044.054.196.073.347a1.64 1.64 0 0 1-.202 1.04a1.646 1.646 0 0 1-.8.695c-.14.058-.292.098-.337.11l-.01.002z\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"M9.67 3.307c-.124-.464-.186-.695-.383-.796c-.198-.102-.407-.022-.827.136a10 10 0 0 0-6.33 10.964c.073.442.109.664.295.784c.187.12.418.059.882-.066l7.727-2.07c.455-.122.683-.183.787-.363c.103-.179.042-.407-.08-.862z\"></path></svg>";
|
|
155
155
|
export declare const letsPlayDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M16.211 11.106L9.737 7.868A1.2 1.2 0 0 0 8 8.942v6.116a1.2 1.2 0 0 0 1.737 1.074l6.474-3.238a1 1 0 0 0 0-1.788\"></path></svg>";
|
|
156
|
-
export declare const letsPointersDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
156
|
+
export declare const letsPointersDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" fill-opacity=\".25\" d=\"M13 4a1 1 0 1 0-2 0zm-2 0v1h2V4zm2 16a1 1 0 1 1-2 0zm-2 0v-5h2v5z\"></path><path stroke=\"silver\" stroke-opacity=\".25\" d=\"M12 9v2\"></path><path fill=\"#fff\" d=\"M16 12.6c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437C15.24 11 14.96 11 14.4 11H6.663c-.245 0-.367 0-.482.028a.998.998 0 0 0-.29.12c-.1.061-.187.148-.36.32l-.4.4c-.396.397-.594.595-.668.823a1 1 0 0 0 0 .618c.074.228.272.426.668.822l.4.4c.173.173.26.26.36.322c.09.055.188.095.29.12c.115.027.237.027.482.027H14.4c.56 0 .84 0 1.054-.109a1 1 0 0 0 .437-.437C16 14.24 16 13.96 16 13.4zm-9-6c0-.56 0-.84.109-1.054a1 1 0 0 1 .437-.437C7.76 5 8.04 5 8.6 5h7.737c.245 0 .367 0 .482.028a1 1 0 0 1 .29.12c.1.061.187.148.36.32l.4.4c.396.397.594.595.668.823a1 1 0 0 1 0 .618c-.074.228-.272.426-.668.822l-.4.4c-.173.173-.26.26-.36.322a1 1 0 0 1-.29.12C16.704 9 16.582 9 16.337 9H8.6c-.56 0-.84 0-1.054-.109a1 1 0 0 1-.437-.437C7 8.24 7 7.96 7 7.4z\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
157
157
|
export declare const letsPrintDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" d=\"M4 10c0-1.886 0-2.828.586-3.414C5.172 6 6.114 6 8 6h8c1.886 0 2.828 0 3.414.586C20 7.172 20 8.114 20 10v2c0 .943 0 1.414-.293 1.707C19.414 14 18.943 14 18 14h-.7c-.141 0-.212 0-.256-.044C17 13.912 17 13.841 17 13.7V13c0-.943 0-1.414-.293-1.707C16.414 11 15.943 11 15 11H9c-.943 0-1.414 0-1.707.293C7 11.586 7 12.057 7 13v.7c0 .141 0 .212-.044.256C6.912 14 6.841 14 6.7 14H5c-.471 0-.707 0-.854-.146C4 13.707 4 13.47 4 13z\"></path><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M7 20.262V13c0-.943 0-1.414.293-1.707C7.586 11 8.057 11 9 11h6c.943 0 1.414 0 1.707.293c.293.293.293.764.293 1.707v7.262c0 .334 0 .501-.11.576c-.11.074-.265.012-.576-.112l-1.628-.652a.53.53 0 0 0-.186-.055a.53.53 0 0 0-.186.055l-2.128.852a.53.53 0 0 1-.186.055a.53.53 0 0 1-.186-.055l-2.128-.852a.53.53 0 0 0-.186-.055a.53.53 0 0 0-.186.055l-1.628.652c-.311.124-.466.186-.576.112c-.11-.075-.11-.242-.11-.576\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 14.5h4m-4 3h5\"></path><path fill=\"currentColor\" d=\"M7 4.74c0-.693 0-1.039.164-1.288a1 1 0 0 1 .288-.288C7.702 3 8.047 3 8.739 3h6.522c.692 0 1.038 0 1.288.164a1 1 0 0 1 .287.288c.164.25.164.595.164 1.287c0 .104 0 .156-.025.193a.149.149 0 0 1-.043.043C16.895 5 16.842 5 16.74 5H7.261c-.104 0-.156 0-.193-.025a.15.15 0 0 1-.043-.043C7 4.895 7 4.842 7 4.74\"></path></g></svg>";
|
|
158
158
|
export declare const letsProgressDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><circle cx=\"12\" cy=\"12\" r=\"10\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M11.5 7a.5.5 0 0 0 1 0V4a.5.5 0 0 0-1 0zm0 13a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-1 0zm6-8a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5M4 11.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zm12.586-4.086a.5.5 0 0 1 0-.707L17.293 6a.5.5 0 1 1 .707.707l-.707.707a.5.5 0 0 1-.707 0M5.99 17.304a.5.5 0 1 0 .707.706l1.414-1.414a.5.5 0 1 0-.707-.707zm9.9-1.415a.5.5 0 0 1 .706 0l1.414 1.415a.5.5 0 1 1-.707.707l-1.414-1.415a.5.5 0 0 1 0-.707m-9.193-9.9a.5.5 0 1 0-.707.708l2.12 2.121a.5.5 0 1 0 .708-.707z\" clip-rule=\"evenodd\"></path></svg>";
|
|
159
159
|
export declare const letsQuestionDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\"><circle cx=\"12\" cy=\"12\" r=\"9\" fill=\"currentColor\" fill-opacity=\".25\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></circle><circle cx=\"12\" cy=\"18\" r=\".6\" fill=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, .2)\"></circle><path d=\"M12 16v-.857c0-.714.357-1.381.951-1.777l.599-.4a3.257 3.257 0 0 0 1.45-2.71V10a3 3 0 1 0-6 0\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
160
160
|
export declare const letsRainDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M6 13h12a3 3 0 1 0 0-6c-.64 0-1.174-.461-1.436-1.045a5 5 0 0 0-9.128 0C7.174 6.539 6.64 7 6 7a3 3 0 0 0 0 6\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"M12 12.4H6v1.2h6zm6 0h-6v1.2h6zm2.4-2.4a2.4 2.4 0 0 1-2.4 2.4v1.2a3.6 3.6 0 0 0 3.6-3.6zM18 7.6a2.4 2.4 0 0 1 2.4 2.4h1.2A3.6 3.6 0 0 0 18 6.4zm-.889-1.89A5.601 5.601 0 0 0 12 2.4v1.2a4.4 4.4 0 0 1 4.017 2.6zM12 2.4a5.601 5.601 0 0 0-5.111 3.31l1.094.49A4.401 4.401 0 0 1 12 3.6zm-6 4A3.6 3.6 0 0 0 2.4 10h1.2A2.4 2.4 0 0 1 6 7.6zM2.4 10A3.6 3.6 0 0 0 6 13.6v-1.2A2.4 2.4 0 0 1 3.6 10zm4.489-4.29c-.198.44-.555.69-.889.69v1.2c.946 0 1.657-.672 1.983-1.4zM18 6.4c-.334 0-.691-.25-.889-.69l-1.094.49c.326.728 1.037 1.4 1.983 1.4z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 18v-2m5 3v-3M7 20v-4\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
161
161
|
export declare const letsRemoveDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"9\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path stroke=\"currentColor\" d=\"M8 12h8\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
162
|
-
export declare const letsRoadAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
163
|
-
export declare const letsRoadDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
162
|
+
export declare const letsRoadAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M4 18L7 4m13 14L17 4m-5 7V9m0-3V4\"></path><path fill=\"#fff\" d=\"m9.158 19.54l2.118-4.502c.231-.49.347-.736.505-.813a.5.5 0 0 1 .438 0c.158.077.274.322.505.813l2.118 4.502c.347.737.52 1.106.455 1.298a.5.5 0 0 1-.368.326c-.198.043-.543-.173-1.235-.605l-1.27-.794c-.154-.096-.23-.144-.313-.163a.5.5 0 0 0-.222 0c-.082.019-.16.067-.313.163l-1.27.794c-.692.432-1.037.648-1.235.605a.5.5 0 0 1-.368-.326c-.066-.192.108-.56.455-1.298\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
163
|
+
export declare const letsRoadDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" d=\"m9.158 19.54l2.118-4.502c.231-.49.347-.736.505-.813a.5.5 0 0 1 .438 0c.158.077.274.322.505.813l2.118 4.502c.347.737.52 1.106.455 1.298a.5.5 0 0 1-.368.326c-.198.043-.543-.173-1.235-.605l-1.27-.794c-.154-.096-.23-.144-.313-.163a.5.5 0 0 0-.222 0c-.082.019-.16.067-.313.163l-1.27.794c-.692.432-1.037.648-1.235.605a.5.5 0 0 1-.368-.326c-.066-.192.108-.56.455-1.298\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M12 11V9\"></path><path fill=\"#fff\" fill-opacity=\".25\" d=\"M17.8 3H6.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C3 4.52 3 5.08 3 6.2v8.258c0 .504 0 .756.045.964a2 2 0 0 0 1.533 1.533c.208.045.46.045.964.045c.093 0 .14 0 .182-.007a.5.5 0 0 0 .357-.257a1.15 1.15 0 0 0 .064-.17l3.49-10.472c.131-.393.197-.59.319-.736a1 1 0 0 1 .4-.289c.177-.069.385-.069.8-.069h1.693c.415 0 .622 0 .798.07a1 1 0 0 1 .401.288c.122.146.188.343.319.736l3.49 10.471c.03.09.044.133.064.17a.5.5 0 0 0 .357.258c.042.007.089.007.182.007c.504 0 .756 0 .965-.045a2 2 0 0 0 1.532-1.532c.045-.21.045-.461.045-.965V6.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C19.48 3 18.92 3 17.8 3\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
164
164
|
export declare const letsRoadFinishDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 17v-3\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12 4v6\"></path><path fill=\"currentColor\" d=\"M11 3v4a1 1 0 0 0 1 1h5.793a.5.5 0 0 0 .353-.854l-1.97-1.97a.25.25 0 0 1 0-.353l1.97-1.97A.5.5 0 0 0 17.793 2H12a1 1 0 0 0-1 1\"></path><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M18.8 22H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 20.48 2 19.92 2 18.8v-5.6c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 10 4.08 10 5.2 10h1.824c.335 0 .502 0 .62.069a.5.5 0 0 1 .219.267c.044.129.011.293-.054.62l-1.426 7.13c-.131.656-.197.984-.108 1.24a1 1 0 0 0 .439.537c.234.137.569.137 1.238.137h8.096c.67 0 1.004 0 1.238-.137a1 1 0 0 0 .44-.536c.088-.257.022-.585-.109-1.24l-1.426-7.13c-.065-.328-.098-.492-.054-.62a.5.5 0 0 1 .22-.268c.117-.069.284-.069.619-.069H18.8c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C22 11.52 22 12.08 22 13.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C20.48 22 19.92 22 18.8 22\"></path></g></svg>";
|
|
165
165
|
export declare const letsSaveDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M3.879 3.879C3 4.757 3 6.172 3 9v6c0 2.828 0 4.243.879 5.121c.642.642 1.57.815 3.125.862C7 20.687 7 20.36 7 20v-1c0-1.886 0-2.828.586-3.414C8.172 15 9.114 15 11 15h1c1.886 0 2.828 0 3.414.586C16 16.172 16 17.114 16 19v1c0 .367 0 .698-.004.998c2.178-.012 3.356-.108 4.125-.877C21 19.243 21 17.828 21 15V7.828c0-.408 0-.613-.076-.796c-.076-.184-.22-.329-.51-.618l-2.828-2.828c-.29-.29-.434-.434-.617-.51C16.784 3 16.58 3 16.171 3H9c-2.828 0-4.243 0-5.121.879\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" d=\"M16 21v-2c0-1.886 0-2.828-.586-3.414C14.828 15 13.886 15 12 15h-1c-1.886 0-2.828 0-3.414.586C7 16.172 7 17.114 7 19v2\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M7 8h5\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path stroke=\"currentColor\" d=\"M3 9c0-2.828 0-4.243.879-5.121C4.757 3 6.172 3 9 3h7.172c.408 0 .613 0 .796.076c.184.076.329.22.618.51l2.828 2.828c.29.29.434.434.51.618c.076.183.076.388.076.796V15c0 2.828 0 4.243-.879 5.121C19.243 21 17.828 21 15 21H9c-2.828 0-4.243 0-5.121-.879C3 19.243 3 17.828 3 15z\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
166
166
|
export declare const letsSearchAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M11 17a6 6 0 1 0 0-12a6 6 0 0 0 0 12M9.852 8.228A3 3 0 0 1 11 8a.5.5 0 0 0 0-1a4 4 0 0 0-4 4a.5.5 0 0 0 1 0a3 3 0 0 1 1.852-2.772\"></path><path fill-opacity=\".25\" d=\"M17.928 15a.5.5 0 1 0-.866-.5a7 7 0 0 1-2.562 2.562a.5.5 0 1 0 .5.866A8.002 8.002 0 0 0 16.292 17l2.854 2.855a.5.5 0 0 0 .708-.708l-2.855-2.854A8 8 0 0 0 17.93 15\"></path></g></svg>";
|
|
167
167
|
export declare const letsSearchDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M12 19a7 7 0 1 0 0-14a7 7 0 0 0 0 14M10.087 7.38A5 5 0 0 1 12 7a.5.5 0 0 0 0-1a6 6 0 0 0-6 6a.5.5 0 0 0 1 0a5 5 0 0 1 3.087-4.62\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M20.5 20.5L17 17\"></path><circle cx=\"11\" cy=\"11\" r=\"8.5\" stroke=\"currentColor\"></circle></g></svg>";
|
|
168
|
-
export declare const letsSendDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><path id=\"
|
|
168
|
+
export declare const letsSendDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><path id=\"ID_PLACEHOLDER_0\" fill=\"currentColor\" d=\"m7.692 11.897l1.41.47c.932.31 1.397.466 1.731.8c.334.334.49.8.8 1.73l.47 1.41c.784 2.354 1.176 3.53 1.897 3.53c.72 0 1.113-1.176 1.897-3.53l2.838-8.512c.552-1.656.828-2.484.391-2.921c-.437-.437-1.265-.161-2.92.39l-8.515 2.84C5.34 8.887 4.162 9.279 4.162 10c0 .72 1.177 1.113 3.53 1.897\"></path></defs><use href=\"#letsIconsSendDuotone0\" fill-opacity=\".25\"></use><use href=\"#letsIconsSendDuotone0\" fill-opacity=\".25\"></use><path fill=\"currentColor\" d=\"m9.526 13.842l-2.062-.687a1 1 0 0 0-.87.116l-1.09.726a.8.8 0 0 0 .25 1.442l1.955.488a.5.5 0 0 1 .364.364l.488 1.955a.8.8 0 0 0 1.442.25l.726-1.09a1 1 0 0 0 .116-.87l-.687-2.062a1 1 0 0 0-.632-.632\"></path></svg>";
|
|
169
169
|
export declare const letsSendHorDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m16.066 10.184l-3.89-1.795c-2.154-.994-3.231-1.491-3.725-.982c-.493.509.038 1.572 1.101 3.698c.22.44.33.659.33.895s-.11.456-.33.895c-1.063 2.126-1.594 3.19-1.1 3.698c.493.51 1.57.012 3.725-.982l3.889-1.795c1.698-.784 2.548-1.176 2.548-1.816c0-.64-.85-1.032-2.549-1.816\"></path><path fill=\"currentColor\" d=\"M8.895 11.684L8.174 9.52a1 1 0 0 0-.707-.654l-1.78-.445a.8.8 0 0 0-.91 1.134l1.111 2.22a.5.5 0 0 1 0 .448l-1.11 2.22a.8.8 0 0 0 .91 1.134l1.78-.445a1 1 0 0 0 .706-.654l.72-2.163a1 1 0 0 0 0-.632\"></path></svg>";
|
|
170
170
|
export declare const letsServerDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M16.975 8.5c.028.276.249.5.525.5a3.5 3.5 0 1 1 0 7c-.466 0-.699 0-.883-.076a1 1 0 0 1-.54-.541C16 15.199 16 14.966 16 14.5v-1.444a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2V14.5c0 .466 0 .699-.076.883a1 1 0 0 1-.541.54C7.199 16 6.966 16 6.5 16a3.5 3.5 0 1 1 0-7a.542.542 0 0 0 .525-.5a5 5 0 0 1 9.95 0\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"m7.096 8.025l.589.117zm.937-2.069l-.476-.365zm1.756-1.44l.265.538zm4.422 0l-.265.538zm1.756 1.44l-.476.365zm.937 2.069l.588-.118zM7.025 8.5l-.597-.06zm.899 6.882l.554.23zm-.541.54l.23.555zm9.234 0l.23-.553zm-.54-.54l.553-.23zm.898-6.882l.597-.06zm.525 1.1a2.9 2.9 0 0 1 2.9 2.9h1.2a4.1 4.1 0 0 0-4.1-4.1zm2.9 2.9a2.9 2.9 0 0 1-2.9 2.9v1.2a4.1 4.1 0 0 0 4.1-4.1zm-3.8 2v-1.444h-1.2V14.5zm0-1.444a2.6 2.6 0 0 0-2.6-2.6v1.2a1.4 1.4 0 0 1 1.4 1.4zm-2.6-2.6h-4v1.2h4zm-4 0a2.6 2.6 0 0 0-2.6 2.6h1.2a1.4 1.4 0 0 1 1.4-1.4zm-2.6 2.6V14.5h1.2v-1.444zM6.5 15.4a2.9 2.9 0 0 1-2.9-2.9H2.4a4.1 4.1 0 0 0 4.1 4.1zm-2.9-2.9a2.9 2.9 0 0 1 2.9-2.9V8.4a4.1 4.1 0 0 0-4.1 4.1zm2.908-4.593a5.6 5.6 0 0 0-.08.534l1.194.12c.014-.14.035-.28.063-.42zm1.05-2.316a5.6 5.6 0 0 0-1.05 2.316l1.177.235a4.4 4.4 0 0 1 .824-1.82zm1.965-1.613A5.6 5.6 0 0 0 7.557 5.59l.952.73a4.4 4.4 0 0 1 1.545-1.267zM12 3.4a5.6 5.6 0 0 0-2.477.578l.53 1.076A4.4 4.4 0 0 1 12 4.6zm2.477.578A5.6 5.6 0 0 0 12 3.4v1.2a4.4 4.4 0 0 1 1.946.454zm1.966 1.613a5.6 5.6 0 0 0-1.966-1.613l-.53 1.076A4.4 4.4 0 0 1 15.49 6.32zm1.05 2.316a5.6 5.6 0 0 0-1.05-2.316l-.952.73c.41.536.693 1.159.825 1.82zm.079.534a5.585 5.585 0 0 0-.08-.534l-1.177.235c.028.139.049.278.063.419zM6.5 9.6c.62 0 1.067-.496 1.122-1.04l-1.194-.12c0-.003.002-.01.01-.017a.075.075 0 0 1 .023-.015A.101.101 0 0 1 6.5 8.4zm.9 4.9c0 .241 0 .392-.008.506a.507.507 0 0 1-.022.147l1.108.46c.074-.178.1-.355.111-.525c.011-.165.011-.363.011-.588zm-.9 2.1c.225 0 .423 0 .588-.01c.17-.012.347-.038.524-.112l-.459-1.108a.512.512 0 0 1-.147.022a8.392 8.392 0 0 1-.506.008zm.87-1.447a.4.4 0 0 1-.217.217l.46 1.108a1.6 1.6 0 0 0 .865-.866zm10.13.247c-.241 0-.392 0-.506-.008a.512.512 0 0 1-.147-.022l-.46 1.108c.178.074.355.1.525.111c.165.011.363.011.588.011zm-2.1-.9c0 .225 0 .423.01.588c.012.17.038.347.112.524l1.108-.459a.512.512 0 0 1-.022-.147a8.391 8.391 0 0 1-.008-.506zm1.447.87a.4.4 0 0 1-.217-.217l-1.108.46a1.6 1.6 0 0 0 .866.865zM17.5 8.4c.013 0 .027.003.039.008c.011.005.018.01.023.015c.008.007.01.014.01.018l-1.194.12c.055.543.501 1.039 1.122 1.039z\"></path><rect width=\"8\" height=\"10\" x=\"8\" y=\"11\" stroke=\"currentColor\" rx=\"2\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></rect><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M11.5 16h1\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
171
171
|
export declare const letsSettingAltLineDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"m5.31 6.693l-1.324 2.5C3.258 10.568 2.894 11.255 2.894 12c0 .745.364 1.432 1.092 2.807l1.324 2.5c.823 1.556 1.235 2.333 1.949 2.763c.714.43 1.594.43 3.354.43h2.774c1.76 0 2.64 0 3.354-.43s1.126-1.207 1.95-2.763l1.323-2.5c.728-1.375 1.092-2.062 1.092-2.807c0-.745-.364-1.432-1.092-2.807l-1.324-2.5c-.823-1.556-1.235-2.333-1.949-2.763c-.714-.43-1.594-.43-3.354-.43h-2.774c-1.76 0-2.64 0-3.354.43s-1.126 1.207-1.95 2.763\"></path><circle cx=\"12\" cy=\"12\" r=\"3\" fill=\"currentColor\"></circle></svg>";
|
|
@@ -199,7 +199,7 @@ export declare const letsTimeAtackDuotone = "<svg xmlns=\"http://www.w3.org/2000
|
|
|
199
199
|
export declare const letsTimeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><circle cx=\"12\" cy=\"12\" r=\"8\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 7v4.75c0 .138.112.25.25.25H15\"></path></g></svg>";
|
|
200
200
|
export declare const letsTimeProgressDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M12 3.3c0-.142 0-.214.046-.258c.045-.044.115-.042.254-.037a9 9 0 1 1-8.25 4.778c.064-.123.097-.184.158-.202c.061-.018.123.018.246.089l5.547 3.183c.118.068.177.101.196.154c.018.053-.01.124-.065.266a2.005 2.005 0 1 0 2.167-1.255c-.151-.023-.226-.034-.263-.076C12 9.9 12 9.832 12 9.696z\"></path><path fill=\"currentColor\" d=\"M8.65 17.802c-.071.124-.107.186-.09.247c.019.061.08.094.203.158a7 7 0 1 0 3.537-13.2c-.138-.006-.208-.01-.254.035C12 5.086 12 5.157 12 5.3v4.402c0 .136 0 .204.036.246c.037.043.112.054.263.077a2 2 0 0 1 1.63 2.492a1.997 1.997 0 0 1-2.658 1.343c-.142-.056-.213-.083-.265-.065c-.053.018-.087.077-.155.195z\"></path></svg>";
|
|
201
201
|
export declare const letsTrashDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M4 7.5c0-.236 0-.354.073-.427C4.146 7 4.264 7 4.5 7h15c.236 0 .354 0 .427.073c.073.073.073.191.073.427v.252c0 .09 0 .136-.014.176a.25.25 0 0 1-.057.092c-.03.03-.07.05-.151.091c-.651.325-.976.488-1.213.732a2 2 0 0 0-.453.733C18 9.896 18 10.26 18 10.988V16c0 1.886 0 2.828-.586 3.414C16.828 20 15.886 20 14 20h-4c-1.886 0-2.828 0-3.414-.586C6 18.828 6 17.886 6 16v-5.012c0-.728 0-1.092-.112-1.412a2 2 0 0 0-.453-.733c-.237-.244-.562-.407-1.213-.732a.559.559 0 0 1-.151-.091a.25.25 0 0 1-.057-.092C4 7.888 4 7.842 4 7.752z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M10.068 4.37c.114-.106.365-.2.715-.267A6.68 6.68 0 0 1 12 4c.44 0 .868.036 1.217.103c.35.067.6.161.715.268\"></path><rect width=\"1\" height=\"6\" x=\"14\" y=\"11\" fill=\"currentColor\" rx=\".5\"></rect><rect width=\"1\" height=\"6\" x=\"9\" y=\"11\" fill=\"currentColor\" rx=\".5\"></rect></g></svg>";
|
|
202
|
-
export declare const letsTreeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
202
|
+
export declare const letsTreeDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path stroke=\"silver\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-opacity=\".25\" d=\"M12 13.5v6\"></path><path fill=\"#fff\" fill-rule=\"evenodd\" d=\"M11 10a1 1 0 0 0-.8.4l-3 4A1 1 0 0 0 8 16h8a1 1 0 0 0 .8-1.6l-3-4a1 1 0 0 0-.8-.4z\" clip-rule=\"evenodd\"></path><path fill=\"#fff\" d=\"m8.64 7.032l2.592-3.11a1 1 0 0 1 1.536 0l2.592 3.11c.651.781.095 1.968-.922 1.968H9.562C8.545 9 7.989 7.813 8.64 7.032\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
203
203
|
export declare const letsTumerDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><circle cx=\"12\" cy=\"13\" r=\"8\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 13V8\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path><path fill=\"currentColor\" d=\"M20.354 5.354a.5.5 0 0 0-.707-.708zm-1.5 1.5l1.5-1.5l-.707-.708l-1.5 1.5z\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M10.068 3.37c.114-.106.365-.2.715-.267A6.68 6.68 0 0 1 12 3c.44 0 .868.036 1.217.103c.35.067.6.161.715.268\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
204
204
|
export declare const letsUnlockDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M4 12c0-.943 0-1.414.293-1.707C4.586 10 5.057 10 6 10h12c.943 0 1.414 0 1.707.293c.293.293.293.764.293 1.707v6.038c0 .38 0 .571-.029.74a2 2 0 0 1-1.164 1.49c-.156.07-.341.116-.71.208c-1.238.31-1.857.464-2.476.578c-2.394.44-4.848.44-7.243 0c-.618-.114-1.237-.269-2.474-.578c-.37-.092-.555-.139-.71-.207a2 2 0 0 1-1.165-1.492C4 18.61 4 18.42 4 18.037z\"></path><circle cx=\"12\" cy=\"15\" r=\"2\" fill=\"currentColor\"></circle><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M12 16v2.5\"></path><path stroke=\"currentColor\" d=\"M16.5 10V7a4.5 4.5 0 0 0-9 0v1\"></path></g></svg>";
|
|
205
205
|
export declare const letsUploadDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M6 13h12a3 3 0 1 0 0-6c-.28 0-.42 0-.517-.02c-.298-.06-.44-.151-.616-.399c-.058-.08-.14-.262-.303-.626a5 5 0 0 0-9.128 0c-.163.364-.245.545-.303.626c-.176.248-.318.34-.616.4C6.419 7 6.28 7 6 7a3 3 0 0 0 0 6\" clip-rule=\"evenodd\"></path><path stroke=\"currentColor\" stroke-linecap=\"round\" d=\"M9.5 11.5L12 9m0 0l2.5 2.5M12 9v10\"></path></g></svg>";
|
|
@@ -214,8 +214,8 @@ export declare const letsVideoDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg
|
|
|
214
214
|
export declare const letsVideoFileDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"M13 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V9h-3.5A2.5 2.5 0 0 1 13 6.5zm5.818 5a1.999 1.999 0 0 0-.41-.587L14.536 3.58a1.999 1.999 0 0 0-.537-.38v3.3A1.5 1.5 0 0 0 15.5 8z\" clip-rule=\"evenodd\"></path><path fill=\"currentColor\" d=\"M10 16.117v-4.234a.5.5 0 0 1 .757-.429l3.528 2.117a.5.5 0 0 1 0 .858l-3.528 2.117a.5.5 0 0 1-.757-.43\"></path></svg>";
|
|
215
215
|
export declare const letsViewAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M12 4c5.254 0 7.488 3.45 8.404 5.819c.338.875.507 1.312.209 1.746c-.298.435-.825.435-1.879.435H5.266c-1.054 0-1.58 0-1.879-.434c-.298-.435-.129-.872.21-1.747C4.511 7.45 6.746 4 12 4\"></path><circle cx=\"12\" cy=\"11\" r=\"4\" fill=\"currentColor\"></circle></svg>";
|
|
216
216
|
export declare const letsViewDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M20.188 10.934c.388.472.582.707.582 1.066c0 .359-.194.594-.582 1.066C18.768 14.79 15.636 18 12 18c-3.636 0-6.768-3.21-8.188-4.934c-.388-.472-.582-.707-.582-1.066c0-.359.194-.594.582-1.066C5.232 9.21 8.364 6 12 6c3.636 0 6.768 3.21 8.188 4.934\"></path><circle cx=\"12\" cy=\"12\" r=\"3\" fill=\"currentColor\"></circle></svg>";
|
|
217
|
-
export declare const letsViewHideDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><path id=\"
|
|
218
|
-
export declare const letsViewHorizontDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"
|
|
217
|
+
export declare const letsViewHideDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><path id=\"ID_PLACEHOLDER_0\" fill=\"currentColor\" d=\"M15.92 12.799a4 4 0 0 0-4.719-4.719zM8.667 9.788a4 4 0 0 0 5.545 5.545z\"></path></defs><g fill=\"none\"><use href=\"#letsIconsViewHideDuotone0\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"></use><path fill=\"currentColor\" fill-opacity=\".25\" fill-rule=\"evenodd\" d=\"m15.787 16.909l-8.929-8.93c-1.314.986-2.373 2.138-3.046 2.955c-.388.472-.582.707-.582 1.066c0 .359.194.594.582 1.066C5.232 14.79 8.364 18 12 18c1.353 0 2.636-.445 3.787-1.091M9.577 6.456A6.988 6.988 0 0 1 12 6c3.636 0 6.768 3.21 8.188 4.934c.388.472.582.707.582 1.066c0 .359-.194.594-.582 1.066a19.456 19.456 0 0 1-1.95 2.05z\" clip-rule=\"evenodd\"></path><use href=\"#letsIconsViewHideDuotone0\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"></use><path stroke=\"currentColor\" d=\"m8 5l12 12\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"></path></g></svg>";
|
|
218
|
+
export declare const letsViewHorizontDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs><mask id=\"ID_PLACEHOLDER_0\"><g fill=\"none\"><path fill=\"#fff\" fill-opacity=\".25\" d=\"M12.864 7.37a10 10 0 0 1-.143 9.523L4 12z\"></path><path stroke=\"#fff\" stroke-linecap=\"round\" d=\"M14.5 5.5c-2.781 3.708-9.86 6.127-10.877 6.46a.049.049 0 0 0-.005.092c1.001.446 8.097 3.663 10.882 6.448\"></path><path fill=\"#fff\" fill-rule=\"evenodd\" d=\"M13.55 9.033a10.001 10.001 0 0 1 0 5.933a3 3 0 0 1 0-5.933\" clip-rule=\"evenodd\"></path><path stroke=\"silver\" stroke-linecap=\"round\" stroke-opacity=\".25\" d=\"M16.5 12h4m-4-2.5l4-1.5m-4 6.5l4 1.5\"></path></g></mask></defs><path fill=\"currentColor\" d=\"M0 0h24v24H0z\" mask=\"url(#ID_PLACEHOLDER_0)\"></path></svg>";
|
|
219
219
|
export declare const letsWalletAltDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 10c0-2.828 0-4.243.879-5.121C4.757 4 6.172 4 9 4h6c2.828 0 4.243 0 5.121.879C21 5.757 21 7.172 21 10v1.7c0 .141 0 .212-.044.256c-.044.044-.115.044-.256.044h-4.2c-.465 0-.697 0-.89.038a2 2 0 0 0-1.572 1.572c-.038.193-.038.425-.038.89s0 .697.038.89a2 2 0 0 0 1.572 1.572c.193.038.425.038.89.038h4.357c.079 0 .143.064.143.143A2.857 2.857 0 0 1 18.143 20H9c-2.828 0-4.243 0-5.121-.879C3 18.243 3 16.828 3 14z\"></path><path fill=\"currentColor\" d=\"M14 14a2 2 0 0 1 2-2h4.85a.15.15 0 0 1 .15.15v4.7a.15.15 0 0 1-.15.15H16a2 2 0 0 1-2-2z\"></path><rect width=\"6\" height=\"1\" x=\"6\" y=\"7\" fill=\"currentColor\" rx=\".5\"></rect></svg>";
|
|
220
220
|
export declare const letsWalletDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M3 6a2 2 0 0 1 2-2h14.5a.5.5 0 0 1 .5.5V6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2\"></path><path fill=\"currentColor\" fill-opacity=\".25\" d=\"M3 16V6a2 2 0 0 0 2 2h14a2 2 0 0 1 2 2v2.85a.15.15 0 0 1-.15.15H18a2 2 0 1 0 0 4h2.85a.15.15 0 0 1 .15.15V18a2 2 0 0 1-2 2H7a4 4 0 0 1-4-4\"></path><path fill=\"currentColor\" d=\"M15 15a2 2 0 0 1 2-2h3.85a.15.15 0 0 1 .15.15v3.7a.15.15 0 0 1-.15.15H17a2 2 0 0 1-2-2\"></path><rect width=\"6\" height=\"1\" x=\"5\" y=\"10\" fill=\"currentColor\" rx=\".5\"></rect></svg>";
|
|
221
221
|
export declare const letsWinterDuotone = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><g fill=\"none\" stroke=\"currentColor\" style=\"stroke-width:var(--ng-icon__stroke-width, 1.2)\"><circle cx=\"12\" cy=\"12\" r=\"2.4\" fill=\"currentColor\" fill-opacity=\".25\"></circle><path stroke-linecap=\"round\" d=\"M12 9V7m0-3v3m0 0L9 5m3 2l3-2m0 7h2m3 0h-3m0 0l2-3m-2 3l2 3m-7 0v2m0 3v-3m0 0l-3 2m3-2l3 2m-6-7H7m-3 0h3m0 0L5 9m2 3l-2 3\"></path></g></svg>";
|