@postal-music/icons 0.1.14 → 0.1.16

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.js CHANGED
@@ -124,6 +124,35 @@ var CopyIcon = ({ size = 16, color = "currentColor", strokeWidth = 1.5, classNam
124
124
  }
125
125
  ) });
126
126
  var CopyIcon_web_default = CopyIcon;
127
+ var Download01Icon = ({
128
+ size = 16,
129
+ color = "currentColor",
130
+ fill = "none",
131
+ strokeWidth = 1.5,
132
+ ...props
133
+ }) => /* @__PURE__ */ jsxRuntime.jsx(
134
+ "svg",
135
+ {
136
+ width: size,
137
+ height: size,
138
+ viewBox: "0 0 16 16",
139
+ fill: "none",
140
+ xmlns: "http://www.w3.org/2000/svg",
141
+ ...props,
142
+ children: /* @__PURE__ */ jsxRuntime.jsx(
143
+ "path",
144
+ {
145
+ d: "M14 10V10.8C14 11.9201 14 12.4802 13.782 12.908C13.5903 13.2843 13.2843 13.5903 12.908 13.782C12.4802 14 11.9201 14 10.8 14H5.2C4.07989 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V10M4.66667 6.66667L8 10L11.3333 6.66667M8 10V2",
146
+ fill,
147
+ stroke: color,
148
+ strokeWidth,
149
+ strokeLinecap: "round",
150
+ strokeLinejoin: "round"
151
+ }
152
+ )
153
+ }
154
+ );
155
+ var Download01Icon_web_default = Download01Icon;
127
156
  var Expand01Icon = ({
128
157
  size = 18,
129
158
  stroke = "currentColor",
@@ -1365,6 +1394,35 @@ function LineChart03UpIcon({
1365
1394
  }
1366
1395
  );
1367
1396
  }
1397
+ var TrendUp01Icon = ({
1398
+ size = 20,
1399
+ color = "currentColor",
1400
+ fill = "none",
1401
+ strokeWidth = 2,
1402
+ ...props
1403
+ }) => /* @__PURE__ */ jsxRuntime.jsx(
1404
+ "svg",
1405
+ {
1406
+ width: size,
1407
+ height: size,
1408
+ viewBox: "0 0 20 20",
1409
+ fill: "none",
1410
+ xmlns: "http://www.w3.org/2000/svg",
1411
+ ...props,
1412
+ children: /* @__PURE__ */ jsxRuntime.jsx(
1413
+ "path",
1414
+ {
1415
+ d: "M18.3346 5.83337L11.7774 12.3906C11.4474 12.7206 11.2824 12.8856 11.0921 12.9474C10.9248 13.0018 10.7445 13.0018 10.5771 12.9474C10.3868 12.8856 10.2218 12.7206 9.89183 12.3906L7.61078 10.1095C7.28076 9.7795 7.11576 9.6145 6.92548 9.55267C6.75811 9.49829 6.57782 9.49829 6.41045 9.55267C6.22018 9.6145 6.05517 9.7795 5.72516 10.1095L1.66797 14.1667M18.3346 11.6667V5.83337H12.5013",
1416
+ fill,
1417
+ stroke: color,
1418
+ strokeWidth,
1419
+ strokeLinecap: "round",
1420
+ strokeLinejoin: "round"
1421
+ }
1422
+ )
1423
+ }
1424
+ );
1425
+ var TrendUp01Icon_web_default = TrendUp01Icon;
1368
1426
  var AnnotationInfoIcon = ({
1369
1427
  title = "Annotation info",
1370
1428
  size = 24,
@@ -1914,7 +1972,7 @@ var FolderPlusIcon = React6__namespace.forwardRef(
1914
1972
  title,
1915
1973
  ...rest
1916
1974
  }, ref) => {
1917
- const handleKeyDown2 = (e) => {
1975
+ const handleKeyDown3 = (e) => {
1918
1976
  if (onKeyDown) {
1919
1977
  onKeyDown(e);
1920
1978
  return;
@@ -1947,7 +2005,7 @@ var FolderPlusIcon = React6__namespace.forwardRef(
1947
2005
  ),
1948
2006
  tabIndex: interactive ? tabIndex ?? 0 : tabIndex,
1949
2007
  onClick,
1950
- onKeyDown: handleKeyDown2,
2008
+ onKeyDown: handleKeyDown3,
1951
2009
  ...ariaProps,
1952
2010
  ...rest,
1953
2011
  children: [
@@ -1974,7 +2032,7 @@ var Upload01Icon = React6__namespace.forwardRef(
1974
2032
  title,
1975
2033
  ...rest
1976
2034
  }, ref) => {
1977
- const handleKeyDown2 = (e) => {
2035
+ const handleKeyDown3 = (e) => {
1978
2036
  if (onKeyDown) {
1979
2037
  onKeyDown(e);
1980
2038
  return;
@@ -2007,7 +2065,7 @@ var Upload01Icon = React6__namespace.forwardRef(
2007
2065
  ),
2008
2066
  tabIndex: interactive ? tabIndex ?? 0 : tabIndex,
2009
2067
  onClick,
2010
- onKeyDown: handleKeyDown2,
2068
+ onKeyDown: handleKeyDown3,
2011
2069
  ...ariaProps,
2012
2070
  ...rest,
2013
2071
  children: [
@@ -2134,7 +2192,7 @@ var CoinsStacked03Icon = React6__namespace.forwardRef(
2134
2192
  ...props
2135
2193
  }, ref) => {
2136
2194
  const isInteractive = Boolean(onClick);
2137
- const handleKeyDown2 = (event) => {
2195
+ const handleKeyDown3 = (event) => {
2138
2196
  if (!isInteractive) return;
2139
2197
  if (event.key === "Enter" || event.key === " ") {
2140
2198
  event.preventDefault();
@@ -2161,7 +2219,7 @@ var CoinsStacked03Icon = React6__namespace.forwardRef(
2161
2219
  "aria-label": isInteractive ? title || "coins stacked icon" : void 0,
2162
2220
  "aria-hidden": isInteractive ? void 0 : title ? void 0 : true,
2163
2221
  onClick,
2164
- onKeyDown: handleKeyDown2,
2222
+ onKeyDown: handleKeyDown3,
2165
2223
  children: [
2166
2224
  title ? /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }) : null,
2167
2225
  /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.8337 4.16667C10.8337 5.08714 8.78163 5.83333 6.25033 5.83333C3.71902 5.83333 1.66699 5.08714 1.66699 4.16667M10.8337 4.16667C10.8337 3.24619 8.78163 2.5 6.25033 2.5C3.71902 2.5 1.66699 3.24619 1.66699 4.16667M10.8337 4.16667V5.41667M1.66699 4.16667V14.1667C1.66699 15.0871 3.71902 15.8333 6.25033 15.8333M6.25033 9.16667C6.10987 9.16667 5.97089 9.16437 5.83366 9.15987C3.49762 9.08332 1.66699 8.3694 1.66699 7.5M6.25033 12.5C3.71902 12.5 1.66699 11.7538 1.66699 10.8333M18.3337 9.58333C18.3337 10.5038 16.2816 11.25 13.7503 11.25C11.219 11.25 9.16699 10.5038 9.16699 9.58333M18.3337 9.58333C18.3337 8.66286 16.2816 7.91667 13.7503 7.91667C11.219 7.91667 9.16699 8.66286 9.16699 9.58333M18.3337 9.58333V15.8333C18.3337 16.7538 16.2816 17.5 13.7503 17.5C11.219 17.5 9.16699 16.7538 9.16699 15.8333V9.58333M18.3337 12.7083C18.3337 13.6288 16.2816 14.375 13.7503 14.375C11.219 14.375 9.16699 13.6288 9.16699 12.7083" })
@@ -2194,6 +2252,58 @@ var CreditCardIcon = ({ size = 18, color = "currentColor", ...props }) => /* @__
2194
2252
  }
2195
2253
  );
2196
2254
  var CreditCardIcon_web_default = CreditCardIcon;
2255
+ var handleKeyDown2 = (e) => {
2256
+ const isEnter = e.key === "Enter";
2257
+ const isSpace = e.key === " ";
2258
+ if (!isEnter && !isSpace) return;
2259
+ e.preventDefault();
2260
+ e.currentTarget?.click?.();
2261
+ };
2262
+ var CurrencyDollarIcon = React6__namespace.memo(
2263
+ React6__namespace.forwardRef(function CurrencyDollarIcon2({
2264
+ size = 20,
2265
+ strokeWidth = 1.5,
2266
+ className,
2267
+ ariaLabel,
2268
+ title,
2269
+ onClick,
2270
+ ...rest
2271
+ }, ref) {
2272
+ const interactive = typeof onClick === "function";
2273
+ return /* @__PURE__ */ jsxRuntime.jsxs(
2274
+ "svg",
2275
+ {
2276
+ ref,
2277
+ xmlns: "http://www.w3.org/2000/svg",
2278
+ viewBox: "0 0 20 20",
2279
+ width: size,
2280
+ height: size,
2281
+ role: "img",
2282
+ "aria-hidden": interactive ? void 0 : true,
2283
+ "aria-label": interactive ? ariaLabel ?? "currency dollar icon" : void 0,
2284
+ tabIndex: interactive ? 0 : -1,
2285
+ onKeyDown: interactive ? handleKeyDown2 : void 0,
2286
+ onClick,
2287
+ className: cn("fill-none stroke-current", className),
2288
+ ...rest,
2289
+ children: [
2290
+ title ? /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }) : null,
2291
+ /* @__PURE__ */ jsxRuntime.jsx(
2292
+ "path",
2293
+ {
2294
+ d: "M5 13.3334C5 15.1743 6.49239 16.6666 8.33334 16.6666H11.6667C13.5076 16.6666 15 15.1743 15 13.3334C15 11.4924 13.5076 10 11.6667 10H8.33334C6.49239 10 5 8.50761 5 6.66666C5 4.82571 6.49239 3.33333 8.33334 3.33333H11.6667C13.5076 3.33333 15 4.82571 15 6.66666M10 1.66666V18.3334",
2295
+ stroke: "currentColor",
2296
+ strokeWidth,
2297
+ strokeLinecap: "round",
2298
+ strokeLinejoin: "round"
2299
+ }
2300
+ )
2301
+ ]
2302
+ }
2303
+ );
2304
+ })
2305
+ );
2306
+ var CurrencyDollarIcon_web_default = CurrencyDollarIcon;
2197
2307
  var Wallet01Icon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
2198
2308
  "svg",
2199
2309
  {
@@ -3132,6 +3242,43 @@ var MoonIcon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__
3132
3242
  }
3133
3243
  );
3134
3244
  var MoonIcon_web_default = MoonIcon;
3245
+ var MusicNote02Icon = ({
3246
+ size = 18,
3247
+ color = "currentColor",
3248
+ fill = color,
3249
+ strokeWidth = 2,
3250
+ ...props
3251
+ }) => /* @__PURE__ */ jsxRuntime.jsxs(
3252
+ "svg",
3253
+ {
3254
+ width: size,
3255
+ height: size,
3256
+ viewBox: "0 0 14 14",
3257
+ fill: "none",
3258
+ xmlns: "http://www.w3.org/2000/svg",
3259
+ ...props,
3260
+ children: [
3261
+ /* @__PURE__ */ jsxRuntime.jsx(
3262
+ "path",
3263
+ {
3264
+ d: "M5.25 12.25C6.2165 12.25 7 11.4665 7 10.5C7 9.5335 6.2165 8.75 5.25 8.75C4.2835 8.75 3.5 9.5335 3.5 10.5C3.5 11.4665 4.2835 12.25 5.25 12.25Z",
3265
+ fill
3266
+ }
3267
+ ),
3268
+ /* @__PURE__ */ jsxRuntime.jsx(
3269
+ "path",
3270
+ {
3271
+ d: "M7 10.5V3.26016C7 2.76012 7 2.5101 7.10532 2.35952C7.19728 2.22803 7.33934 2.14023 7.49807 2.11678C7.67985 2.08992 7.90348 2.20174 8.35073 2.42536L10.5 3.5M7 10.5C7 11.4665 6.2165 12.25 5.25 12.25C4.2835 12.25 3.5 11.4665 3.5 10.5C3.5 9.5335 4.2835 8.75 5.25 8.75C6.2165 8.75 7 9.5335 7 10.5Z",
3272
+ stroke: color,
3273
+ strokeWidth,
3274
+ strokeLinecap: "round",
3275
+ strokeLinejoin: "round"
3276
+ }
3277
+ )
3278
+ ]
3279
+ }
3280
+ );
3281
+ var MusicNote02Icon_web_default = MusicNote02Icon;
3135
3282
  function MusicNoteIcon({
3136
3283
  size = 17,
3137
3284
  className,
@@ -4351,7 +4498,7 @@ var Shuffle01Icon = React6.forwardRef(
4351
4498
  }, ref) => {
4352
4499
  const isInteractive = Boolean(onClick);
4353
4500
  const ariaProps = label ? { role: "img", "aria-label": label } : { "aria-hidden": true };
4354
- const handleKeyDown2 = (e) => {
4501
+ const handleKeyDown3 = (e) => {
4355
4502
  if (!isInteractive) return;
4356
4503
  if (e.key === "Enter" || e.key === " ") {
4357
4504
  e.preventDefault();
@@ -4375,7 +4522,7 @@ var Shuffle01Icon = React6.forwardRef(
4375
4522
  className
4376
4523
  ),
4377
4524
  tabIndex: isInteractive ? 0 : void 0,
4378
- onKeyDown: handleKeyDown2,
4525
+ onKeyDown: handleKeyDown3,
4379
4526
  ...ariaProps,
4380
4527
  ...rest,
4381
4528
  children: /* @__PURE__ */ jsxRuntime.jsx(
@@ -6360,10 +6507,12 @@ exports.Copy02Icon = Copy02Icon_web_default;
6360
6507
  exports.Copy06Icon = Copy06Icon;
6361
6508
  exports.CopyIcon = CopyIcon_web_default;
6362
6509
  exports.CreditCardIcon = CreditCardIcon_web_default;
6510
+ exports.CurrencyDollarIcon = CurrencyDollarIcon_web_default;
6363
6511
  exports.DataIcon = DataIcon;
6364
6512
  exports.Dataflow03Icon = Dataflow03Icon_web_default;
6365
6513
  exports.Datapoints01Icon = Datapoints01Icon;
6366
6514
  exports.DotgridIcon = DotgridIcon;
6515
+ exports.Download01Icon = Download01Icon_web_default;
6367
6516
  exports.Download02Icon = Download02Icon_web_default;
6368
6517
  exports.Download03Icon = Download03Icon_web_default;
6369
6518
  exports.Download04Icon = Download04Icon_web_default;
@@ -6437,6 +6586,7 @@ exports.MinusIcon = MinusIcon_web_default;
6437
6586
  exports.MoonIcon = MoonIcon_web_default;
6438
6587
  exports.MoreOptionsIcon = MoreOptionsIcon_web_default;
6439
6588
  exports.MoveIcon = MoveIcon_web_default;
6589
+ exports.MusicNote02Icon = MusicNote02Icon_web_default;
6440
6590
  exports.MusicNoteIcon = MusicNoteIcon;
6441
6591
  exports.MusicNotePlusIcon = MusicNotePlusIcon;
6442
6592
  exports.MusoIcon = MusoIcon_web_default;
@@ -6498,6 +6648,7 @@ exports.ThumbsDownIcon = ThumbsDownIcon;
6498
6648
  exports.TiktokIcon = TiktokIcon_web_default;
6499
6649
  exports.Trash02Icon = Trash02Icon_web_default;
6500
6650
  exports.TrashIcon = TrashIcon_web_default;
6651
+ exports.TrendUp01Icon = TrendUp01Icon_web_default;
6501
6652
  exports.Type01Icon = Type01Icon_web_default;
6502
6653
  exports.UTurnIcon = UTurnIcon;
6503
6654
  exports.Upload01Icon = Upload01Icon;