@versini/ui-icons 4.17.0 → 4.18.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/dist/index.d.ts +4 -0
- package/dist/index.js +75 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -149,6 +149,10 @@ export declare const IconRewrite: ({ className, viewBox, title, monotone, ...res
|
|
|
149
149
|
|
|
150
150
|
export declare const IconRewriteLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
151
151
|
|
|
152
|
+
export declare const IconRotateLeft: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
153
|
+
|
|
154
|
+
export declare const IconRotateLeftLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
155
|
+
|
|
152
156
|
export declare const IconSearch: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
153
157
|
|
|
154
158
|
export declare const IconSearchLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-icons v4.
|
|
2
|
+
@versini/ui-icons v4.18.0
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
try {
|
|
6
6
|
if (!window.__VERSINI_UI_ICONS__) {
|
|
7
7
|
window.__VERSINI_UI_ICONS__ = {
|
|
8
|
-
version: "4.
|
|
9
|
-
buildTime: "01/
|
|
8
|
+
version: "4.18.0",
|
|
9
|
+
buildTime: "01/20/2026 06:10 PM EST",
|
|
10
10
|
homepage: "https://github.com/aversini/ui-icons",
|
|
11
11
|
license: "MIT",
|
|
12
12
|
};
|
|
@@ -30,7 +30,7 @@ import clsx from "clsx";
|
|
|
30
30
|
if (!window.__VERSINI_UI_SVGICON__) {
|
|
31
31
|
window.__VERSINI_UI_SVGICON__ = {
|
|
32
32
|
version: "4.3.0",
|
|
33
|
-
buildTime: "01/
|
|
33
|
+
buildTime: "01/20/2026 06:10 PM EST",
|
|
34
34
|
homepage: "https://github.com/aversini/ui-icons",
|
|
35
35
|
license: "MIT"
|
|
36
36
|
};
|
|
@@ -2427,6 +2427,73 @@ const IconRewriteLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
2427
2427
|
});
|
|
2428
2428
|
};
|
|
2429
2429
|
|
|
2430
|
+
;// CONCATENATED MODULE: ./src/components/Icons/IconRotateLeft.tsx
|
|
2431
|
+
|
|
2432
|
+
/**
|
|
2433
|
+
* This file was automatically generated.
|
|
2434
|
+
* Please do not edit manually.
|
|
2435
|
+
*
|
|
2436
|
+
* To update this file, run `yarn build:icons`.
|
|
2437
|
+
*
|
|
2438
|
+
* Original name: rotate-left.svg
|
|
2439
|
+
*
|
|
2440
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
2441
|
+
*
|
|
2442
|
+
*/
|
|
2443
|
+
const IconRotateLeft = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
2444
|
+
/* v8 ignore start */ const opacity = monotone ? "1" : "0.4";
|
|
2445
|
+
/* v8 ignore stop */ return /*#__PURE__*/ jsxs(SvgIcon, {
|
|
2446
|
+
defaultViewBox: "0 0 512 512",
|
|
2447
|
+
size: "size-5",
|
|
2448
|
+
viewBox: viewBox,
|
|
2449
|
+
className: className,
|
|
2450
|
+
title: title || "Rotate Left",
|
|
2451
|
+
...rest,
|
|
2452
|
+
children: [
|
|
2453
|
+
/*#__PURE__*/ jsx("path", {
|
|
2454
|
+
d: "M97.6 369.1c-12.5 12.5-12.5 32.8 0 45.3C141.3 458.1 198.7 480 256 480s114.7-21.9 158.4-65.6S480 313.3 480 256s-21.9-114.7-65.6-158.4c-87.2-87.2-228.3-87.5-315.8-1l45.3 45.3c62.6-61.5 163.1-61.2 225.3 1 62.5 62.5 62.5 163.8 0 226.3s-163.8 62.5-226.3 0c-12.5-12.5-32.8-12.5-45.3 0z",
|
|
2455
|
+
opacity: opacity
|
|
2456
|
+
}),
|
|
2457
|
+
/*#__PURE__*/ jsx("path", {
|
|
2458
|
+
d: "M168 224H40c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2S50.1 48.1 57 55l128 128c6.9 6.9 8.9 17.2 5.2 26.2S177.7 224 168 224"
|
|
2459
|
+
})
|
|
2460
|
+
]
|
|
2461
|
+
});
|
|
2462
|
+
};
|
|
2463
|
+
|
|
2464
|
+
;// CONCATENATED MODULE: ./src/components/Icons/IconRotateLeftLight.tsx
|
|
2465
|
+
|
|
2466
|
+
/**
|
|
2467
|
+
* This file was automatically generated.
|
|
2468
|
+
* Please do not edit manually.
|
|
2469
|
+
*
|
|
2470
|
+
* To update this file, run `yarn build:icons`.
|
|
2471
|
+
*
|
|
2472
|
+
* Original name: rotate-left.svg
|
|
2473
|
+
*
|
|
2474
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
2475
|
+
*
|
|
2476
|
+
*/
|
|
2477
|
+
const IconRotateLeftLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
2478
|
+
return /*#__PURE__*/ jsxs(SvgIcon, {
|
|
2479
|
+
defaultViewBox: "0 0 512 512",
|
|
2480
|
+
size: "size-5",
|
|
2481
|
+
viewBox: viewBox,
|
|
2482
|
+
className: className,
|
|
2483
|
+
title: title || "Rotate Left",
|
|
2484
|
+
...rest,
|
|
2485
|
+
children: [
|
|
2486
|
+
/*#__PURE__*/ jsx("path", {
|
|
2487
|
+
d: "M32 256c0-22.7 3.4-44.6 9.7-65.3 1.9.8 4.1 1.3 6.3 1.3h100.7c15.1 0 27.3-12.2 27.3-27.3 0-7.2-2.9-14.2-8-19.3l-36-36C165.5 81.1 208.7 64 256 64c106 0 192 86 192 192s-86 192-192 192c-67.6 0-127.1-35-161.3-87.8-3.2-5-8.7-8.2-14.7-8.2-12.2 0-20.1 12.5-13.9 22.8C44.5 340.4 32 299.7 32 256",
|
|
2488
|
+
opacity: ".4"
|
|
2489
|
+
}),
|
|
2490
|
+
/*#__PURE__*/ jsx("path", {
|
|
2491
|
+
d: "M94.7 360.2c-3.2-5-8.7-8.2-14.7-8.2-12.3 0-20.3 12.8-13.7 23.2C106 438.2 176.1 480 256 480c123.7 0 224-100.3 224-224S379.7 32 256 32c-56.1 0-107.4 20.6-146.7 54.7L78.6 56c-5.1-5.1-12.1-8-19.3-8C44.2 48 32 60.2 32 75.3V176c0 8.8 7.2 16 16 16h100.7c15.1 0 27.3-12.2 27.3-27.3 0-7.2-2.9-14.2-8-19.3l-36-36C165.5 81.1 208.7 64 256 64c106 0 192 86 192 192s-86 192-192 192c-67.6 0-127.1-35-161.3-87.8M64 86.6l73.4 73.4H64z"
|
|
2492
|
+
})
|
|
2493
|
+
]
|
|
2494
|
+
});
|
|
2495
|
+
};
|
|
2496
|
+
|
|
2430
2497
|
;// CONCATENATED MODULE: ./src/components/Icons/IconSearch.tsx
|
|
2431
2498
|
|
|
2432
2499
|
/**
|
|
@@ -3506,7 +3573,7 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3506
3573
|
/**
|
|
3507
3574
|
* This file is automatically generated.
|
|
3508
3575
|
* Do not edit it manually.
|
|
3509
|
-
* Last updated on 1/
|
|
3576
|
+
* Last updated on 1/20/2026, 6:06:21 PM.
|
|
3510
3577
|
*/
|
|
3511
3578
|
|
|
3512
3579
|
|
|
@@ -3616,4 +3683,6 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3616
3683
|
|
|
3617
3684
|
|
|
3618
3685
|
|
|
3619
|
-
|
|
3686
|
+
|
|
3687
|
+
|
|
3688
|
+
export { IconAdd, IconAddLight, IconAnthropic, IconBack, IconBackLight, IconBookSparkles, IconBookSparklesLight, IconBookmark, IconBookmarkLight, IconBranch, IconBranchLight, IconBrightness, IconBrightnessLight, IconChart, IconChartLight, IconChecked, IconCheckedLight, IconClose, IconCloseLight, IconCopied, IconCopiedLight, IconCopy, IconCopyLight, IconDelete, IconDeleteLight, IconDog, IconDown, IconDownLight, IconDownload, IconDownloadLight, IconEdit, IconEditLight, IconEditUser, IconEditUserLight, IconGitHub, IconGoogleGemini, IconHide, IconHideLight, IconHistory, IconHistoryLight, IconInfo, IconInfoLight, IconKey, IconKeyLight, IconLightBulb, IconLightBulbLight, IconList, IconListLight, IconLocked, IconLockedLight, IconMagic, IconMagicLight, IconMessages, IconMessagesLight, IconNext, IconNextLight, IconOpenAI, IconPasskey, IconPenField, IconPenFieldLight, IconPencilMechanical, IconPencilMechanicalLight, IconPrevious, IconPreviousLight, IconProfile, IconProfileLight, IconProofread, IconProofreadLight, IconRefresh, IconRefreshLight, IconRestore, IconRestoreLight, IconRewrite, IconRewriteLight, IconRotateLeft, IconRotateLeftLight, IconSearch, IconSearchLight, IconSelected, IconSelectedLight, IconSend, IconSendLight, IconSettings, IconSettingsLight, IconShow, IconShowLight, IconSliders, IconSlidersLight, IconSort, IconSortDown, IconSortDownLight, IconSortLight, IconSortUp, IconSortUpLight, IconStarInCircle, IconStarInCircleLight, IconUnChecked, IconUnCheckedLight, IconUnSelected, IconUnSelectedLight, IconUnlocked, IconUnlockedLight, IconUp, IconUpLight, IconUpload, IconUploadLight, IconUser, IconUserLight, IconWebSearch, IconWebSearchLight };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-icons",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.18.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"sideEffects": [
|
|
45
45
|
"**/*.css"
|
|
46
46
|
],
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "1f9dd7138723f8f1633cf8675b9dd4e53abc30e9"
|
|
48
48
|
}
|