@versini/ui-icons 4.22.2 → 4.23.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/2911.js +31 -0
- package/dist/6437.js +33 -0
- package/dist/all.js +5 -1
- package/dist/icon-attachment-light.js +2 -0
- package/dist/icon-attachment.js +2 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +60 -2
- package/package.json +10 -2
package/dist/2911.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: paperclip-vertical.svg
|
|
11
|
+
*
|
|
12
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
const IconAttachmentLight = ({ 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 || "Attachment",
|
|
22
|
+
...rest,
|
|
23
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
24
|
+
d: "M64 96c0-53 43-96 96-96s96 43 96 96v256c0 35.3-28.7 64-64 64s-64-28.7-64-64V144c0-8.8 7.2-16 16-16s16 7.2 16 16v208c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-35.3-28.7-64-64-64S96 60.7 96 96v288c0 53 43 96 96 96s96-43 96-96V144c0-8.8 7.2-16 16-16s16 7.2 16 16v240c0 70.7-57.3 128-128 128S64 454.7 64 384z"
|
|
25
|
+
})
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
/* export default */ const Icons_IconAttachmentLight = (IconAttachmentLight);
|
|
29
|
+
|
|
30
|
+
export { IconAttachmentLight };
|
|
31
|
+
export default Icons_IconAttachmentLight;
|
package/dist/6437.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
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: paperclip-vertical.svg
|
|
11
|
+
*
|
|
12
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
const IconAttachment = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
16
|
+
/* v8 ignore start */ const opacity = monotone ? "1" : "0.4";
|
|
17
|
+
/* v8 ignore stop */ return /*#__PURE__*/ jsx(SvgIcon, {
|
|
18
|
+
defaultViewBox: "0 0 384 512",
|
|
19
|
+
size: "size-5",
|
|
20
|
+
viewBox: viewBox,
|
|
21
|
+
className: className,
|
|
22
|
+
title: title || "Attachment",
|
|
23
|
+
...rest,
|
|
24
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
25
|
+
d: "M32 128C32 57.3 89.3 0 160 0s128 57.3 128 128v192c0 44.2-35.8 80-80 80s-80-35.8-80-80V160c0-17.7 14.3-32 32-32s32 14.3 32 32v160c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-35.3-28.7-64-64-64s-64 28.7-64 64v208c0 61.9 50.1 112 112 112s112-50.1 112-112V160c0-17.7 14.3-32 32-32s32 14.3 32 32v176c0 97.2-78.8 176-176 176S32 433.2 32 336z",
|
|
26
|
+
opacity: opacity
|
|
27
|
+
})
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
/* export default */ const Icons_IconAttachment = (IconAttachment);
|
|
31
|
+
|
|
32
|
+
export { IconAttachment };
|
|
33
|
+
export default Icons_IconAttachment;
|
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/
|
|
5
|
+
* Last updated on 3/22/2026, 6:07:04 PM.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
|
|
@@ -114,12 +114,16 @@
|
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
|
|
117
|
+
|
|
118
|
+
|
|
117
119
|
|
|
118
120
|
|
|
119
121
|
|
|
120
122
|
export { IconAdd } from "./1387.js";
|
|
121
123
|
export { IconAddLight } from "./5861.js";
|
|
122
124
|
export { IconAnthropic } from "./3180.js";
|
|
125
|
+
export { IconAttachment } from "./6437.js";
|
|
126
|
+
export { IconAttachmentLight } from "./2911.js";
|
|
123
127
|
export { IconBack } from "./8787.js";
|
|
124
128
|
export { IconBackLight } from "./4605.js";
|
|
125
129
|
export { IconBookSparkles } from "./5506.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,10 @@ export declare const IconAddLight: ({ className, viewBox, title, monotone, ...re
|
|
|
7
7
|
|
|
8
8
|
export declare const IconAnthropic: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
9
9
|
|
|
10
|
+
export declare const IconAttachment: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
11
|
+
|
|
12
|
+
export declare const IconAttachmentLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
13
|
+
|
|
10
14
|
export declare const IconBack: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
|
11
15
|
|
|
12
16
|
export declare const IconBackLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -110,6 +110,62 @@ const IconAnthropic = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
110
110
|
/* export default */ const Icons_IconAnthropic = ((/* unused pure expression or super */ null && (IconAnthropic)));
|
|
111
111
|
|
|
112
112
|
|
|
113
|
+
/**
|
|
114
|
+
* This file was automatically generated.
|
|
115
|
+
* Please do not edit manually.
|
|
116
|
+
*
|
|
117
|
+
* To update this file, run `yarn build:icons`.
|
|
118
|
+
*
|
|
119
|
+
* Original name: paperclip-vertical.svg
|
|
120
|
+
*
|
|
121
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
122
|
+
*
|
|
123
|
+
*/
|
|
124
|
+
const IconAttachment = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
125
|
+
/* v8 ignore start */ const opacity = monotone ? "1" : "0.4";
|
|
126
|
+
/* v8 ignore stop */ return /*#__PURE__*/ jsx(SvgIcon, {
|
|
127
|
+
defaultViewBox: "0 0 384 512",
|
|
128
|
+
size: "size-5",
|
|
129
|
+
viewBox: viewBox,
|
|
130
|
+
className: className,
|
|
131
|
+
title: title || "Attachment",
|
|
132
|
+
...rest,
|
|
133
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
134
|
+
d: "M32 128C32 57.3 89.3 0 160 0s128 57.3 128 128v192c0 44.2-35.8 80-80 80s-80-35.8-80-80V160c0-17.7 14.3-32 32-32s32 14.3 32 32v160c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-35.3-28.7-64-64-64s-64 28.7-64 64v208c0 61.9 50.1 112 112 112s112-50.1 112-112V160c0-17.7 14.3-32 32-32s32 14.3 32 32v176c0 97.2-78.8 176-176 176S32 433.2 32 336z",
|
|
135
|
+
opacity: opacity
|
|
136
|
+
})
|
|
137
|
+
});
|
|
138
|
+
};
|
|
139
|
+
/* export default */ const Icons_IconAttachment = ((/* unused pure expression or super */ null && (IconAttachment)));
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* This file was automatically generated.
|
|
144
|
+
* Please do not edit manually.
|
|
145
|
+
*
|
|
146
|
+
* To update this file, run `yarn build:icons`.
|
|
147
|
+
*
|
|
148
|
+
* Original name: paperclip-vertical.svg
|
|
149
|
+
*
|
|
150
|
+
* ! Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.
|
|
151
|
+
*
|
|
152
|
+
*/
|
|
153
|
+
const IconAttachmentLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
154
|
+
return /*#__PURE__*/ jsx(SvgIcon, {
|
|
155
|
+
defaultViewBox: "0 0 384 512",
|
|
156
|
+
size: "size-5",
|
|
157
|
+
viewBox: viewBox,
|
|
158
|
+
className: className,
|
|
159
|
+
title: title || "Attachment",
|
|
160
|
+
...rest,
|
|
161
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
162
|
+
d: "M64 96c0-53 43-96 96-96s96 43 96 96v256c0 35.3-28.7 64-64 64s-64-28.7-64-64V144c0-8.8 7.2-16 16-16s16 7.2 16 16v208c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-35.3-28.7-64-64-64S96 60.7 96 96v288c0 53 43 96 96 96s96-43 96-96V144c0-8.8 7.2-16 16-16s16 7.2 16 16v240c0 70.7-57.3 128-128 128S64 454.7 64 384z"
|
|
163
|
+
})
|
|
164
|
+
});
|
|
165
|
+
};
|
|
166
|
+
/* export default */ const Icons_IconAttachmentLight = ((/* unused pure expression or super */ null && (IconAttachmentLight)));
|
|
167
|
+
|
|
168
|
+
|
|
113
169
|
/**
|
|
114
170
|
* This file was automatically generated.
|
|
115
171
|
* Please do not edit manually.
|
|
@@ -3642,7 +3698,7 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3642
3698
|
/**
|
|
3643
3699
|
* This file is automatically generated.
|
|
3644
3700
|
* Do not edit it manually.
|
|
3645
|
-
* Last updated on 3/
|
|
3701
|
+
* Last updated on 3/22/2026, 6:07:04 PM.
|
|
3646
3702
|
*/
|
|
3647
3703
|
|
|
3648
3704
|
|
|
@@ -3757,4 +3813,6 @@ const IconWebSearchLight = ({ className, viewBox, title, monotone, ...rest })=>{
|
|
|
3757
3813
|
|
|
3758
3814
|
|
|
3759
3815
|
|
|
3760
|
-
|
|
3816
|
+
|
|
3817
|
+
|
|
3818
|
+
export { IconAdd, IconAddLight, IconAnthropic, IconAttachment, IconAttachmentLight, 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, 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.23.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
"types": "./dist/index.d.ts",
|
|
36
36
|
"import": "./dist/icon-anthropic.js"
|
|
37
37
|
},
|
|
38
|
+
"./icon-attachment": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"import": "./dist/icon-attachment.js"
|
|
41
|
+
},
|
|
42
|
+
"./icon-attachment-light": {
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"import": "./dist/icon-attachment-light.js"
|
|
45
|
+
},
|
|
38
46
|
"./icon-back": {
|
|
39
47
|
"types": "./dist/index.d.ts",
|
|
40
48
|
"import": "./dist/icon-back.js"
|
|
@@ -507,5 +515,5 @@
|
|
|
507
515
|
"sideEffects": [
|
|
508
516
|
"**/*.css"
|
|
509
517
|
],
|
|
510
|
-
"gitHead": "
|
|
518
|
+
"gitHead": "0ccbca8586510e8619f039e193b68ef15ab795c5"
|
|
511
519
|
}
|