@versini/ui-icons 4.22.2 → 4.23.1

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 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/18/2026, 7:25:01 PM.
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";
@@ -0,0 +1,2 @@
1
+
2
+ export { IconAttachmentLight, default } from "./2911.js";
@@ -0,0 +1,2 @@
1
+
2
+ export { IconAttachment, default } from "./6437.js";
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import type { IconsProps } from './IconsTypes';
2
1
  import { JSX } from 'react/jsx-runtime';
3
2
 
4
3
  export declare const IconAdd: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
@@ -7,6 +6,10 @@ export declare const IconAddLight: ({ className, viewBox, title, monotone, ...re
7
6
 
8
7
  export declare const IconAnthropic: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
9
8
 
9
+ export declare const IconAttachment: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
10
+
11
+ export declare const IconAttachmentLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
12
+
10
13
  export declare const IconBack: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
11
14
 
12
15
  export declare const IconBackLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
@@ -191,6 +194,19 @@ export declare const IconSortUp: ({ className, viewBox, title, monotone, ...rest
191
194
 
192
195
  export declare const IconSortUpLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
193
196
 
197
+ export declare type IconsProps = {
198
+ /**
199
+ * Whether or not to render the icon in a single color
200
+ * @default false
201
+ */
202
+ monotone?: boolean;
203
+ /**
204
+ * The title to use for the icon. Each icon has a default title,
205
+ * but it can be overridden with this prop.
206
+ */
207
+ title?: string;
208
+ } & Partial<Pick<SvgIconProps, "semantic" | "size" | "className" | "viewBox">> & React.SVGAttributes<SVGElement>;
209
+
194
210
  export declare const IconStarInCircle: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
195
211
 
196
212
  export declare const IconStarInCircleLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
@@ -227,4 +243,46 @@ export declare const IconWebSearch: ({ className, viewBox, title, monotone, ...r
227
243
 
228
244
  export declare const IconWebSearchLight: ({ className, viewBox, title, monotone, ...rest }: IconsProps) => JSX.Element;
229
245
 
246
+ declare type SvgIconProps = {
247
+ /**
248
+ * The children to render.
249
+ */
250
+ children: React.ReactNode;
251
+ /**
252
+ * The default viewBox to use.
253
+ */
254
+ defaultViewBox: string;
255
+ /**
256
+ * The title to use for the icon. Each icon has a default title,
257
+ * but it can be overridden with this prop.
258
+ */
259
+ title: string;
260
+ /**
261
+ * CSS class(es) to add to the main component wrapper.
262
+ */
263
+ className?: string;
264
+ /**
265
+ * Update the "fill" property of the SVG.
266
+ * @default "currentColor"
267
+ */
268
+ fill?: string;
269
+ /**
270
+ * Whether or not the icon is semantic (visual and
271
+ * announced to assistive technologies).
272
+ * @default false
273
+ */
274
+ semantic?: boolean;
275
+ /**
276
+ * The size of the icon. This will set the width and height of the icon.
277
+ * It should be a valid Tailwind CSS size class, such as "size-6" or "size-px".
278
+ * It can also include breakpoints, such as "sm:size-6" or "md:size-px".
279
+ * @link https://tailwindcss.com/docs/size
280
+ */
281
+ size?: string;
282
+ /**
283
+ * The viewBox to use. If not provided, the default viewBox will be used.
284
+ */
285
+ viewBox?: string;
286
+ };
287
+
230
288
  export { }
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/18/2026, 7:25:01 PM.
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
- 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, 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 };
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.22.2",
3
+ "version": "4.23.1",
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": "85c2706ce9e267f57683ecb346a86b6f5b0cd6f3"
518
+ "gitHead": "89fa8dfdef1c9a12d010552ba4d26b47fd8e2baf"
511
519
  }