@postal-music/icons 0.1.13 → 0.1.14
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 +114 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +112 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +74 -0
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +72 -1
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/actions/Pencil02Icon.d.ts +9 -0
- package/dist/types/icons/actions/index.d.ts +1 -0
- package/dist/types/icons/general/Share06Icon.d.ts +10 -0
- package/dist/types/icons/general/index.d.ts +1 -0
- package/dist/types/icons/users/User02Icon.d.ts +9 -0
- package/dist/types/icons/users/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/actions/Pencil02Icon.native.tsx +33 -0
- package/src/icons/actions/Pencil02Icon.web.tsx +39 -0
- package/src/icons/actions/index.ts +1 -0
- package/src/icons/general/Share06Icon.native.tsx +30 -0
- package/src/icons/general/Share06Icon.web.tsx +41 -0
- package/src/icons/general/index.ts +1 -0
- package/src/icons/users/User02Icon.native.tsx +38 -0
- package/src/icons/users/User02Icon.web.tsx +44 -0
- package/src/icons/users/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -372,6 +372,43 @@ var PencilIcon = ({ size = 18, color = "currentColor", strokeWidth = 1.5, stroke
|
|
|
372
372
|
}
|
|
373
373
|
);
|
|
374
374
|
var PencilIcon_web_default = PencilIcon;
|
|
375
|
+
var Pencil02Icon = ({
|
|
376
|
+
size = 20,
|
|
377
|
+
color = "currentColor",
|
|
378
|
+
fill = "none",
|
|
379
|
+
strokeWidth = 2,
|
|
380
|
+
...props
|
|
381
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
382
|
+
"svg",
|
|
383
|
+
{
|
|
384
|
+
width: size,
|
|
385
|
+
height: size,
|
|
386
|
+
viewBox: "0 0 20 20",
|
|
387
|
+
fill: "none",
|
|
388
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
389
|
+
...props,
|
|
390
|
+
children: [
|
|
391
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
392
|
+
"path",
|
|
393
|
+
{
|
|
394
|
+
d: "M5.56613 17.2697C5.82058 17.2003 5.9478 17.1656 6.06644 17.1123C6.17178 17.065 6.27192 17.0069 6.36525 16.9389C6.47036 16.8623 6.56361 16.7691 6.7501 16.5826L15.3613 7.97143C15.5263 7.80642 15.6088 7.72391 15.6397 7.62878C15.6669 7.54509 15.6669 7.45495 15.6397 7.37126C15.6088 7.27613 15.5263 7.19362 15.3613 7.02862L12.9708 4.63809C12.8057 4.47308 12.7232 4.39058 12.6281 4.35967C12.5444 4.33248 12.4543 4.33248 12.3706 4.35967C12.2755 4.39058 12.193 4.47308 12.0279 4.63809L3.41677 13.2493C3.23027 13.4358 3.13703 13.529 3.06045 13.6341C2.99245 13.7274 2.93434 13.8276 2.88704 13.9329C2.83378 14.0516 2.79908 14.1788 2.72968 14.4332L1.66602 18.3334L5.56613 17.2697Z",
|
|
395
|
+
fill
|
|
396
|
+
}
|
|
397
|
+
),
|
|
398
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
399
|
+
"path",
|
|
400
|
+
{
|
|
401
|
+
d: "M14.9993 1.66669L18.3327 5.00002M1.66602 18.3334L2.72968 14.4332C2.79908 14.1788 2.83378 14.0516 2.88704 13.9329C2.93434 13.8276 2.99245 13.7274 3.06045 13.6341C3.13703 13.529 3.23027 13.4358 3.41677 13.2493L12.0279 4.63809C12.193 4.47308 12.2755 4.39058 12.3706 4.35967C12.4543 4.33248 12.5444 4.33248 12.6281 4.35967C12.7232 4.39058 12.8057 4.47308 12.9708 4.63809L15.3613 7.02862C15.5263 7.19362 15.6088 7.27613 15.6397 7.37126C15.6669 7.45495 15.6669 7.54509 15.6397 7.62878C15.6088 7.72391 15.5263 7.80642 15.3613 7.97143L6.7501 16.5826C6.56361 16.7691 6.47036 16.8623 6.36525 16.9389C6.27192 17.0069 6.17178 17.065 6.06644 17.1123C5.9478 17.1656 5.82058 17.2003 5.56613 17.2697L1.66602 18.3334Z",
|
|
402
|
+
stroke: color,
|
|
403
|
+
strokeWidth,
|
|
404
|
+
strokeLinecap: "round",
|
|
405
|
+
strokeLinejoin: "round"
|
|
406
|
+
}
|
|
407
|
+
)
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
);
|
|
411
|
+
var Pencil02Icon_web_default = Pencil02Icon;
|
|
375
412
|
var PlusCircleIcon = ({
|
|
376
413
|
size = 28,
|
|
377
414
|
color = "currentColor",
|
|
@@ -3322,6 +3359,38 @@ var Share01Icon = ({
|
|
|
3322
3359
|
)
|
|
3323
3360
|
}
|
|
3324
3361
|
);
|
|
3362
|
+
var Share06Icon = ({
|
|
3363
|
+
size = 18,
|
|
3364
|
+
color = "currentColor",
|
|
3365
|
+
fill = color,
|
|
3366
|
+
strokeWidth = 1,
|
|
3367
|
+
className,
|
|
3368
|
+
...props
|
|
3369
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3370
|
+
"svg",
|
|
3371
|
+
{
|
|
3372
|
+
width: size,
|
|
3373
|
+
height: size,
|
|
3374
|
+
viewBox: "0 0 18 18",
|
|
3375
|
+
fill: "none",
|
|
3376
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3377
|
+
className,
|
|
3378
|
+
role: "img",
|
|
3379
|
+
"aria-hidden": "true",
|
|
3380
|
+
...props,
|
|
3381
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3382
|
+
"path",
|
|
3383
|
+
{
|
|
3384
|
+
d: "M15.5935 9.45553C15.7766 9.29859 15.8682 9.22013 15.9017 9.12675C15.9311 9.0448 15.9311 8.95515 15.9017 8.8732C15.8682 8.77982 15.7766 8.70136 15.5935 8.54442L9.24047 3.09895C8.9253 2.82881 8.76772 2.69373 8.6343 2.69042C8.51835 2.68755 8.40759 2.73849 8.33432 2.8284C8.25 2.93185 8.25 3.1394 8.25 3.55451V6.77595C6.64899 7.05604 5.1837 7.86729 4.09478 9.08537C2.90762 10.4134 2.25093 12.1319 2.25 13.9132V14.3722C3.03701 13.4241 4.01963 12.6574 5.13057 12.1244C6.11002 11.6545 7.16881 11.3762 8.25 11.3029V14.4454C8.25 14.8605 8.25 15.0681 8.33432 15.1716C8.40759 15.2615 8.51835 15.3124 8.6343 15.3095C8.76772 15.3062 8.9253 15.1711 9.24047 14.901L15.5935 9.45553Z",
|
|
3385
|
+
fill,
|
|
3386
|
+
stroke: color,
|
|
3387
|
+
strokeWidth,
|
|
3388
|
+
strokeLinecap: "round",
|
|
3389
|
+
strokeLinejoin: "round"
|
|
3390
|
+
}
|
|
3391
|
+
)
|
|
3392
|
+
}
|
|
3393
|
+
);
|
|
3325
3394
|
var ShareIcon = React6__namespace.forwardRef(
|
|
3326
3395
|
({ size = 18, strokeWidth = 1.5, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3327
3396
|
"svg",
|
|
@@ -5879,6 +5948,48 @@ function AccountIcon({ size = 16, ...props }) {
|
|
|
5879
5948
|
}
|
|
5880
5949
|
);
|
|
5881
5950
|
}
|
|
5951
|
+
var User02Icon = ({
|
|
5952
|
+
size = 18,
|
|
5953
|
+
color = "currentColor",
|
|
5954
|
+
fill = color,
|
|
5955
|
+
strokeWidth = 2,
|
|
5956
|
+
...props
|
|
5957
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
5958
|
+
"svg",
|
|
5959
|
+
{
|
|
5960
|
+
width: size,
|
|
5961
|
+
height: size,
|
|
5962
|
+
viewBox: "0 0 14 14",
|
|
5963
|
+
fill: "none",
|
|
5964
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5965
|
+
...props,
|
|
5966
|
+
children: [
|
|
5967
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5968
|
+
"path",
|
|
5969
|
+
{
|
|
5970
|
+
d: "M7.00008 8.75C5.15086 8.75 3.50637 9.64287 2.45941 11.0285C2.23407 11.3267 2.1214 11.4758 2.12509 11.6773C2.12793 11.833 2.2257 12.0294 2.34821 12.1256C2.50677 12.25 2.7265 12.25 3.16596 12.25H10.8342C11.2737 12.25 11.4934 12.25 11.6519 12.1256C11.7744 12.0294 11.8722 11.833 11.8751 11.6773C11.8787 11.4758 11.7661 11.3267 11.5407 11.0285C10.4938 9.64287 8.84929 8.75 7.00008 8.75Z",
|
|
5971
|
+
fill,
|
|
5972
|
+
stroke: color,
|
|
5973
|
+
strokeWidth,
|
|
5974
|
+
strokeLinecap: "round",
|
|
5975
|
+
strokeLinejoin: "round"
|
|
5976
|
+
}
|
|
5977
|
+
),
|
|
5978
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5979
|
+
"path",
|
|
5980
|
+
{
|
|
5981
|
+
d: "M7.00008 7C8.44982 7 9.62508 5.82475 9.62508 4.375C9.62508 2.92525 8.44982 1.75 7.00008 1.75C5.55033 1.75 4.37508 2.92525 4.37508 4.375C4.37508 5.82475 5.55033 7 7.00008 7Z",
|
|
5982
|
+
fill,
|
|
5983
|
+
stroke: color,
|
|
5984
|
+
strokeWidth,
|
|
5985
|
+
strokeLinecap: "round",
|
|
5986
|
+
strokeLinejoin: "round"
|
|
5987
|
+
}
|
|
5988
|
+
)
|
|
5989
|
+
]
|
|
5990
|
+
}
|
|
5991
|
+
);
|
|
5992
|
+
var User02Icon_web_default = User02Icon;
|
|
5882
5993
|
var UserApproveIcon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5883
5994
|
"svg",
|
|
5884
5995
|
{
|
|
@@ -6334,6 +6445,7 @@ exports.NextTrackIcon = NextTrackIcon_web_default;
|
|
|
6334
6445
|
exports.NotificationTextIcon = NotificationTextIcon;
|
|
6335
6446
|
exports.PasswordInputIcon = PasswordInputIcon;
|
|
6336
6447
|
exports.PauseIcon = PauseIcon_web_default;
|
|
6448
|
+
exports.Pencil02Icon = Pencil02Icon_web_default;
|
|
6337
6449
|
exports.PencilIcon = PencilIcon_web_default;
|
|
6338
6450
|
exports.PinIcon = PinIcon_web_default;
|
|
6339
6451
|
exports.PlayIcon = PlayIcon_web_default;
|
|
@@ -6357,6 +6469,7 @@ exports.SearchIcon = SearchIcon_web_default;
|
|
|
6357
6469
|
exports.SendIcon = SendIcon_web_default;
|
|
6358
6470
|
exports.SettingsIcon = SettingsIcon_web_default;
|
|
6359
6471
|
exports.Share01Icon = Share01Icon;
|
|
6472
|
+
exports.Share06Icon = Share06Icon;
|
|
6360
6473
|
exports.ShareIcon = ShareIcon_web_default;
|
|
6361
6474
|
exports.ShazamIcon = ShazamIcon_web_default;
|
|
6362
6475
|
exports.Shuffle01Icon = Shuffle01Icon_web_default;
|
|
@@ -6390,6 +6503,7 @@ exports.UTurnIcon = UTurnIcon;
|
|
|
6390
6503
|
exports.Upload01Icon = Upload01Icon;
|
|
6391
6504
|
exports.UploadCloudIcon = UploadCloudIcon;
|
|
6392
6505
|
exports.UploadIcon = UploadIcon;
|
|
6506
|
+
exports.User02Icon = User02Icon_web_default;
|
|
6393
6507
|
exports.UserApproveIcon = UserApproveIcon_web_default;
|
|
6394
6508
|
exports.UserIcon = UserIcon_web_default;
|
|
6395
6509
|
exports.UserPlusIcon = UserPlusIcon;
|