@versini/ui-icons 4.25.0 → 4.26.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/1843.js +31 -0
- package/dist/all.js +3 -1
- package/dist/icon-bookmark-hollow.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +30 -2
- package/package.json +6 -2
package/dist/1843.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SvgIcon, jsx } from "./1787.js";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* This file was automatically generated.
|
|
6
|
+
* Please do not edit manually.
|
|
7
|
+
*
|
|
8
|
+
* To update this file, run `yarn build:icons`.
|
|
9
|
+
*
|
|
10
|
+
* Original name: bookmark-hollow.svg
|
|
11
|
+
*
|
|
12
|
+
* undefined
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
const IconBookmarkHollow = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
16
|
+
return /*#__PURE__*/ jsx(SvgIcon, {
|
|
17
|
+
defaultViewBox: "0 0 384 512",
|
|
18
|
+
size: "size-5",
|
|
19
|
+
viewBox: viewBox,
|
|
20
|
+
className: className,
|
|
21
|
+
title: title || "Bookmark Hollow",
|
|
22
|
+
...rest,
|
|
23
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
24
|
+
d: "M0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v441.9c0 12.2-9.9 22.1-22.1 22.1-4.4 0-8.6-1.3-12.3-3.7L192 403.2 34.4 508.3c-3.6 2.4-7.9 3.7-12.3 3.7C9.9 512 0 502.1 0 489.9zm32 423.4 151.1-100.7c5.4-3.6 12.4-3.6 17.8 0L352 471.4V48c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16z"
|
|
25
|
+
})
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
/* export default */ const Icons_IconBookmarkHollow = (IconBookmarkHollow);
|
|
29
|
+
|
|
30
|
+
export { IconBookmarkHollow };
|
|
31
|
+
export default Icons_IconBookmarkHollow;
|
package/dist/all.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* This file is automatically generated.
|
|
4
4
|
* Do not edit it manually.
|
|
5
|
-
* Last updated on 3/27/2026,
|
|
5
|
+
* Last updated on 3/27/2026, 9:25:41 PM.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
|
|
@@ -121,6 +121,7 @@
|
|
|
121
121
|
|
|
122
122
|
|
|
123
123
|
|
|
124
|
+
|
|
124
125
|
|
|
125
126
|
|
|
126
127
|
export { IconAdd } from "./1387.js";
|
|
@@ -133,6 +134,7 @@ export { IconBackLight } from "./4605.js";
|
|
|
133
134
|
export { IconBookSparkles } from "./5506.js";
|
|
134
135
|
export { IconBookSparklesLight } from "./6806.js";
|
|
135
136
|
export { IconBookmark } from "./3688.js";
|
|
137
|
+
export { IconBookmarkHollow } from "./1843.js";
|
|
136
138
|
export { IconBookmarkLight } from "./3772.js";
|
|
137
139
|
export { IconBrain } from "./9092.js";
|
|
138
140
|
export { IconBrainCircuit } from "./3951.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export declare const IconBackLight: ({ className, viewBox, title, monotone, ...r
|
|
|
16
16
|
|
|
17
17
|
export declare const IconBookmark: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
18
18
|
|
|
19
|
+
export declare const IconBookmarkHollow: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
20
|
+
|
|
19
21
|
export declare const IconBookmarkLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
20
22
|
|
|
21
23
|
export declare const IconBookSparkles: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -260,6 +260,33 @@ const IconBookmark = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
260
260
|
/* export default */ const Icons_IconBookmark = ((/* unused pure expression or super */ null && (IconBookmark)));
|
|
261
261
|
|
|
262
262
|
|
|
263
|
+
/**
|
|
264
|
+
* This file was automatically generated.
|
|
265
|
+
* Please do not edit manually.
|
|
266
|
+
*
|
|
267
|
+
* To update this file, run `yarn build:icons`.
|
|
268
|
+
*
|
|
269
|
+
* Original name: bookmark-hollow.svg
|
|
270
|
+
*
|
|
271
|
+
* undefined
|
|
272
|
+
*
|
|
273
|
+
*/
|
|
274
|
+
const IconBookmarkHollow = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
275
|
+
return /*#__PURE__*/ jsx(SvgIcon, {
|
|
276
|
+
defaultViewBox: "0 0 384 512",
|
|
277
|
+
size: "size-5",
|
|
278
|
+
viewBox: viewBox,
|
|
279
|
+
className: className,
|
|
280
|
+
title: title || "Bookmark Hollow",
|
|
281
|
+
...rest,
|
|
282
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
283
|
+
d: "M0 48C0 21.5 21.5 0 48 0h288c26.5 0 48 21.5 48 48v441.9c0 12.2-9.9 22.1-22.1 22.1-4.4 0-8.6-1.3-12.3-3.7L192 403.2 34.4 508.3c-3.6 2.4-7.9 3.7-12.3 3.7C9.9 512 0 502.1 0 489.9zm32 423.4 151.1-100.7c5.4-3.6 12.4-3.6 17.8 0L352 471.4V48c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16z"
|
|
284
|
+
})
|
|
285
|
+
});
|
|
286
|
+
};
|
|
287
|
+
/* export default */ const Icons_IconBookmarkHollow = ((/* unused pure expression or super */ null && (IconBookmarkHollow)));
|
|
288
|
+
|
|
289
|
+
|
|
263
290
|
/**
|
|
264
291
|
* This file was automatically generated.
|
|
265
292
|
* Please do not edit manually.
|
|
@@ -3832,7 +3859,7 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3832
3859
|
/**
|
|
3833
3860
|
* This file is automatically generated.
|
|
3834
3861
|
* Do not edit it manually.
|
|
3835
|
-
* Last updated on 3/27/2026,
|
|
3862
|
+
* Last updated on 3/27/2026, 9:25:41 PM.
|
|
3836
3863
|
*/
|
|
3837
3864
|
|
|
3838
3865
|
|
|
@@ -3953,4 +3980,5 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3953
3980
|
|
|
3954
3981
|
|
|
3955
3982
|
|
|
3956
|
-
|
|
3983
|
+
|
|
3984
|
+
export { IconAdd, IconAddLight, IconAnthropic, IconAttachment, IconAttachmentLight, IconBack, IconBackLight, IconBookSparkles, IconBookSparklesLight, IconBookmark, IconBookmarkHollow, IconBookmarkLight, IconBrain, IconBrainCircuit, IconBrainCircuitLight, IconBrainLight, 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, IconFrenchFlag, 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, IconVolume, IconVolumeLight, IconWebSearch, IconWebSearchLight };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-icons",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.26.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -63,6 +63,10 @@
|
|
|
63
63
|
"types": "./dist/index.d.ts",
|
|
64
64
|
"import": "./dist/icon-bookmark.js"
|
|
65
65
|
},
|
|
66
|
+
"./icon-bookmark-hollow": {
|
|
67
|
+
"types": "./dist/index.d.ts",
|
|
68
|
+
"import": "./dist/icon-bookmark-hollow.js"
|
|
69
|
+
},
|
|
66
70
|
"./icon-bookmark-light": {
|
|
67
71
|
"types": "./dist/index.d.ts",
|
|
68
72
|
"import": "./dist/icon-bookmark-light.js"
|
|
@@ -531,5 +535,5 @@
|
|
|
531
535
|
"sideEffects": [
|
|
532
536
|
"**/*.css"
|
|
533
537
|
],
|
|
534
|
-
"gitHead": "
|
|
538
|
+
"gitHead": "e3ad2e0e3ecd54e983ff24f8af870a8c61490db9"
|
|
535
539
|
}
|