@streamoid/ui 0.2.1 → 0.2.3

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.mjs CHANGED
@@ -455,7 +455,7 @@ var ScButton_default = {
455
455
 
456
456
  // src/SC-Button/ScButton.tsx
457
457
  import { SiconHome as SiconHome2 } from "@streamoid/icons";
458
- import { useMemo } from "react";
458
+ import { useMemo, isValidElement, cloneElement } from "react";
459
459
  import { Fragment as Fragment3, jsx as jsx9, jsxs as jsxs8 } from "react/jsx-runtime";
460
460
  if (typeof window !== "undefined" && CSS.registerProperty) {
461
461
  const props = [
@@ -534,6 +534,8 @@ var ScButton = ({
534
534
  ctx.putImageData(imageData, 0, 0);
535
535
  return canvas.toDataURL("image/png");
536
536
  }, [variant, type, state]);
537
+ const strokeWidth = size === "sm" ? 1.25 : 1.5;
538
+ const styledIcon = isValidElement(icon) ? cloneElement(icon, { color: "currentColor", strokeWidth }) : icon;
537
539
  const variantsClassName = ScButton_default["style-variant-" + styleVariant] + " " + ScButton_default["state-" + state] + " " + ScButton_default["variant-" + variant] + " " + ScButton_default["type-" + type] + " " + ScButton_default["size-" + size];
538
540
  return /* @__PURE__ */ jsxs8(
539
541
  "div",
@@ -549,12 +551,12 @@ var ScButton = ({
549
551
  }
550
552
  ),
551
553
  /* @__PURE__ */ jsxs8("div", { className: ScButton_default.container, children: [
552
- (styleVariant === "icon-left" || styleVariant === "icon-only") && /* @__PURE__ */ jsx9(Fragment3, { children: icon }),
554
+ (styleVariant === "icon-left" || styleVariant === "icon-only") && /* @__PURE__ */ jsx9(Fragment3, { children: styledIcon }),
553
555
  (styleVariant === "default" || styleVariant === "icon-right" || styleVariant === "icon-left") && /* @__PURE__ */ jsx9(Fragment3, { children: /* @__PURE__ */ jsxs8("div", { className: ScButton_default.label, children: [
554
556
  text,
555
557
  " "
556
558
  ] }) }),
557
- styleVariant === "icon-right" && /* @__PURE__ */ jsx9(Fragment3, { children: icon })
559
+ styleVariant === "icon-right" && /* @__PURE__ */ jsx9(Fragment3, { children: styledIcon })
558
560
  ] })
559
561
  ]
560
562
  }
@@ -774,6 +776,9 @@ var ScCalendar = ({
774
776
  ] });
775
777
  };
776
778
 
779
+ // src/SC-Credits usage card/ScCreditsUsageCard.tsx
780
+ import { useState } from "react";
781
+
777
782
  // src/SC-Credits usage card/ScCreditsUsageCard.module.css
778
783
  var ScCreditsUsageCard_default = {
779
784
  scCreditsUsageCard: "ScCreditsUsageCard_scCreditsUsageCard",
@@ -784,7 +789,9 @@ var ScCreditsUsageCard_default = {
784
789
  progressContainer: "ScCreditsUsageCard_progressContainer",
785
790
  scProgressBarInstance: "ScCreditsUsageCard_scProgressBarInstance",
786
791
  remainingText: "ScCreditsUsageCard_remainingText",
787
- scButtonInstance: "ScCreditsUsageCard_scButtonInstance"
792
+ scButtonInstance: "ScCreditsUsageCard_scButtonInstance",
793
+ buttonTooltipWrap: "ScCreditsUsageCard_buttonTooltipWrap",
794
+ buttonTooltip: "ScCreditsUsageCard_buttonTooltip"
788
795
  };
789
796
 
790
797
  // src/SC-Credits usage card/ScCreditsUsageCard.tsx
@@ -822,11 +829,14 @@ var ScCreditsUsageCard = ({
822
829
  remainingText = "60% Remaining",
823
830
  buyButtonText = "Buy credits",
824
831
  buyButtonState = "default",
832
+ buyButtonHoverText,
825
833
  onBuyClick,
826
834
  progress = 60,
827
835
  className,
828
836
  ...props
829
837
  }) => {
838
+ const [btnHovered, setBtnHovered] = useState(false);
839
+ const displayText = btnHovered && buyButtonHoverText ? buyButtonHoverText : buyButtonText;
830
840
  return /* @__PURE__ */ jsxs11("div", { className: ScCreditsUsageCard_default.scCreditsUsageCard + " " + className, ...props, children: [
831
841
  /* @__PURE__ */ jsxs11("div", { className: ScCreditsUsageCard_default.header, children: [
832
842
  /* @__PURE__ */ jsx14(
@@ -856,15 +866,23 @@ var ScCreditsUsageCard = ({
856
866
  " "
857
867
  ] }),
858
868
  /* @__PURE__ */ jsx14(
859
- ScButton,
869
+ "div",
860
870
  {
861
- icon: /* @__PURE__ */ jsx14(SiconHome3, { className: ScCreditsUsageCard_default.siconHomeInstance }),
862
- text: buyButtonText,
863
- variant: "secondary",
864
- size: "md",
865
- state: buyButtonState,
866
- className: ScCreditsUsageCard_default.scButtonInstance,
867
- onClick: onBuyClick
871
+ className: ScCreditsUsageCard_default.buttonTooltipWrap,
872
+ onMouseEnter: () => setBtnHovered(true),
873
+ onMouseLeave: () => setBtnHovered(false),
874
+ children: /* @__PURE__ */ jsx14(
875
+ ScButton,
876
+ {
877
+ icon: /* @__PURE__ */ jsx14(SiconHome3, { className: ScCreditsUsageCard_default.siconHomeInstance }),
878
+ text: displayText,
879
+ variant: "secondary",
880
+ size: "md",
881
+ state: buyButtonState,
882
+ className: ScCreditsUsageCard_default.scButtonInstance,
883
+ onClick: onBuyClick
884
+ }
885
+ )
868
886
  }
869
887
  )
870
888
  ] })
@@ -872,7 +890,21 @@ var ScCreditsUsageCard = ({
872
890
  };
873
891
 
874
892
  // src/SC-Dp/ScDp.tsx
875
- import { useState } from "react";
893
+ import { useState as useState2 } from "react";
894
+
895
+ // src/SC-Dp/ScDp.module.css
896
+ var ScDp_default = {
897
+ scDp: "ScDp_scDp",
898
+ variantWorkspace: "ScDp_variantWorkspace",
899
+ variantProfile: "ScDp_variantProfile",
900
+ typeInitial: "ScDp_typeInitial",
901
+ initials: "ScDp_initials",
902
+ image: "ScDp_image",
903
+ imageWorkspace: "ScDp_imageWorkspace",
904
+ imageProfile: "ScDp_imageProfile"
905
+ };
906
+
907
+ // src/SC-Dp/ScDp.tsx
876
908
  import { jsx as jsx15 } from "react/jsx-runtime";
877
909
  function ScDp({
878
910
  type = "initial",
@@ -883,63 +915,29 @@ function ScDp({
883
915
  className,
884
916
  style
885
917
  }) {
886
- const [imageFailed, setImageFailed] = useState(false);
918
+ const [imageFailed, setImageFailed] = useState2(false);
887
919
  const isProfile = variant === "profile";
888
- const borderRadius = isProfile ? "var(--radius-full)" : "var(--radius-md)";
889
920
  const showImage = type === "image" && imageUrl && !imageFailed;
890
- const containerStyle = {
921
+ const containerClass = [
922
+ ScDp_default.scDp,
923
+ isProfile ? ScDp_default.variantProfile : ScDp_default.variantWorkspace,
924
+ !showImage ? ScDp_default.typeInitial : "",
925
+ className || ""
926
+ ].filter(Boolean).join(" ");
927
+ const sizeStyle = {
891
928
  width: size,
892
929
  height: size,
893
- borderRadius,
894
- position: "relative",
895
- overflow: "hidden",
896
- flexShrink: 0,
897
- ...showImage ? {} : {
898
- backgroundColor: "var(--alias-fill-neutral-neutralselected)",
899
- display: "flex",
900
- alignItems: "center",
901
- justifyContent: "center"
902
- },
903
930
  ...style
904
931
  };
905
- return /* @__PURE__ */ jsx15("div", { className, style: containerStyle, children: showImage ? /* @__PURE__ */ jsx15(
932
+ return /* @__PURE__ */ jsx15("div", { className: containerClass, style: sizeStyle, children: showImage ? /* @__PURE__ */ jsx15(
906
933
  "img",
907
934
  {
908
935
  src: imageUrl,
909
936
  alt: "",
910
- style: {
911
- position: "absolute",
912
- inset: 0,
913
- width: "100%",
914
- height: "100%",
915
- objectFit: "cover",
916
- pointerEvents: "none"
917
- },
937
+ className: ScDp_default.image + " " + (isProfile ? ScDp_default.imageProfile : ScDp_default.imageWorkspace),
918
938
  onError: () => setImageFailed(true)
919
939
  }
920
- ) : /* @__PURE__ */ jsx15(
921
- "div",
922
- {
923
- style: {
924
- flex: 1,
925
- minWidth: 0,
926
- minHeight: 0,
927
- display: "flex",
928
- alignItems: "center",
929
- justifyContent: "center",
930
- overflow: "hidden",
931
- textOverflow: "ellipsis",
932
- whiteSpace: "nowrap",
933
- color: "var(--alias-text---icons-primary)",
934
- fontFamily: "var(--font-family-font-family-body)",
935
- fontSize: size <= 32 ? `${size * 0.4}px` : "var(--font-size-font-size-md)",
936
- fontWeight: 500,
937
- lineHeight: 1,
938
- textAlign: "center"
939
- },
940
- children: initial
941
- }
942
- ) });
940
+ ) : /* @__PURE__ */ jsx15("div", { className: ScDp_default.initials, children: initial }) });
943
941
  }
944
942
 
945
943
  // src/SC-Google sign in/ScGoogleSignIn.module.css
@@ -1312,7 +1310,7 @@ var ScPlanCard = ({
1312
1310
  SiconCredits2,
1313
1311
  {
1314
1312
  className: ScPlanCard_default.siconCreditsInstance,
1315
- color: "#f5f5f5",
1313
+ color: "var(--alias-text-and-icons-primary, #f5f5f5)",
1316
1314
  size: 24,
1317
1315
  strokeWidth: 1.5
1318
1316
  }
@@ -1339,7 +1337,7 @@ var ScPlanCard = ({
1339
1337
  "path",
1340
1338
  {
1341
1339
  d: "M3 4.5L6 7.5L9 4.5",
1342
- stroke: "#f5f5f5",
1340
+ stroke: "var(--alias-text-and-icons-primary, #f5f5f5)",
1343
1341
  strokeWidth: "1.5",
1344
1342
  strokeLinecap: "round",
1345
1343
  strokeLinejoin: "round"
@@ -1372,7 +1370,7 @@ var ScPlanCard = ({
1372
1370
  /* @__PURE__ */ jsxs16("div", { className: ScPlanCard_default.featuresSection, children: [
1373
1371
  /* @__PURE__ */ jsx22("div", { className: ScPlanCard_default.sectionTitle, children: section.section }),
1374
1372
  section.features.map((feature, fIdx) => /* @__PURE__ */ jsxs16("div", { className: ScPlanCard_default.featureRow, children: [
1375
- section.icon || /* @__PURE__ */ jsx22(SiconHome4, { color: "#9e9e9e", size: 24, strokeWidth: 1.5 }),
1373
+ section.icon || /* @__PURE__ */ jsx22(SiconHome4, { color: "var(--alias-text-and-icons-tertiary, #9e9e9e)", size: 24, strokeWidth: 1.5 }),
1376
1374
  /* @__PURE__ */ jsx22("span", { className: ScPlanCard_default.featureText, children: feature })
1377
1375
  ] }, fIdx))
1378
1376
  ] })
@@ -4366,25 +4364,25 @@ var ScWorkspaceCard = ({
4366
4364
  };
4367
4365
 
4368
4366
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4369
- import { useState as useState2 } from "react";
4367
+ import { useState as useState3 } from "react";
4370
4368
  import { SiconSwitch as SiconSwitch3, SiconSettings as SiconSettings3 } from "@streamoid/icons";
4371
4369
 
4372
4370
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.module.css
4373
4371
  var ScWorkspaceSwitchCard_default = {
4374
4372
  card: "ScWorkspaceSwitchCard_card",
4375
4373
  cardCurrent: "ScWorkspaceSwitchCard_cardCurrent",
4376
- cardHover: "ScWorkspaceSwitchCard_cardHover",
4377
- workspaceInfo: "ScWorkspaceSwitchCard_workspaceInfo",
4378
- avatarWrap: "ScWorkspaceSwitchCard_avatarWrap",
4379
- avatarCover: "ScWorkspaceSwitchCard_avatarCover",
4380
- avatarImg: "ScWorkspaceSwitchCard_avatarImg",
4374
+ cardOther: "ScWorkspaceSwitchCard_cardOther",
4375
+ cardOtherHover: "ScWorkspaceSwitchCard_cardOtherHover",
4376
+ wsInfo: "ScWorkspaceSwitchCard_wsInfo",
4377
+ dp: "ScWorkspaceSwitchCard_dp",
4381
4378
  infoCol: "ScWorkspaceSwitchCard_infoCol",
4382
4379
  wsName: "ScWorkspaceSwitchCard_wsName",
4383
4380
  detailsRow: "ScWorkspaceSwitchCard_detailsRow",
4384
4381
  detailItem: "ScWorkspaceSwitchCard_detailItem",
4385
4382
  detailItemFlex: "ScWorkspaceSwitchCard_detailItemFlex",
4386
4383
  detailLabel: "ScWorkspaceSwitchCard_detailLabel",
4387
- detailValueWarning: "ScWorkspaceSwitchCard_detailValueWarning",
4384
+ detailValueRole: "ScWorkspaceSwitchCard_detailValueRole",
4385
+ detailValueInfo: "ScWorkspaceSwitchCard_detailValueInfo",
4388
4386
  detailValueSecondary: "ScWorkspaceSwitchCard_detailValueSecondary",
4389
4387
  vDivider: "ScWorkspaceSwitchCard_vDivider",
4390
4388
  btnIcon: "ScWorkspaceSwitchCard_btnIcon"
@@ -4392,101 +4390,120 @@ var ScWorkspaceSwitchCard_default = {
4392
4390
 
4393
4391
  // src/SC-WorkspaceSwitchCard/ScWorkspaceSwitchCard.tsx
4394
4392
  import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
4395
- function deriveInitials2(name) {
4396
- return name.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
4397
- }
4398
- function ScWorkspaceSwitchCard({
4399
- name,
4393
+ function NscWorkspaceSwitch({
4394
+ wsName = "Workspace name is kepler",
4395
+ role = "Admin",
4396
+ plan = "Free",
4397
+ ownerId = "rohan@streamoid.com",
4400
4398
  initials,
4401
4399
  imageUrl,
4402
- role,
4403
- plan,
4404
- ownerEmail,
4405
- isCurrent = false,
4406
- variant = "switch",
4400
+ type = "currentWS",
4401
+ hover,
4402
+ className,
4407
4403
  onSwitch,
4408
4404
  onSettings
4409
4405
  }) {
4410
- const [hovered, setHovered] = useState2(false);
4411
- const showButtons = !isCurrent && hovered;
4412
- const displayInitials = initials || deriveInitials2(name);
4406
+ const [internalHover, setInternalHover] = useState3(false);
4407
+ const isHover = hover !== void 0 ? hover : internalHover;
4408
+ const isCurrent = type === "currentWS";
4409
+ const isOther = type === "otherWS";
4413
4410
  const isAdmin = role?.toLowerCase() === "admin";
4414
- const roleText = isAdmin ? "Admin" : "Member";
4411
+ const displayRole = role ? role.charAt(0).toUpperCase() + role.slice(1).toLowerCase() : role;
4412
+ const displayInitials = initials || wsName.split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || "WS";
4415
4413
  const cardClass = [
4416
4414
  ScWorkspaceSwitchCard_default.card,
4417
- isCurrent ? ScWorkspaceSwitchCard_default.cardCurrent : "",
4418
- hovered && !isCurrent ? ScWorkspaceSwitchCard_default.cardHover : ""
4415
+ isCurrent ? ScWorkspaceSwitchCard_default.cardCurrent : ScWorkspaceSwitchCard_default.cardOther,
4416
+ isHover && isOther ? ScWorkspaceSwitchCard_default.cardOtherHover : "",
4417
+ className || ""
4419
4418
  ].filter(Boolean).join(" ");
4419
+ const dpBg = isCurrent ? "var(--alias-fill-neutral-neutralactive, #313131)" : "var(--alias-fill-neutral-neutralselected, #242424)";
4420
+ const roleColorClass = isAdmin ? ScWorkspaceSwitchCard_default.detailValueRole : ScWorkspaceSwitchCard_default.detailValueInfo;
4420
4421
  return /* @__PURE__ */ jsx62(
4421
4422
  "div",
4422
4423
  {
4423
4424
  className: cardClass,
4424
- onMouseEnter: () => !isCurrent && setHovered(true),
4425
- onMouseLeave: () => setHovered(false),
4426
- children: /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.workspaceInfo, children: [
4427
- /* @__PURE__ */ jsx62("div", { className: ScWorkspaceSwitchCard_default.avatarWrap, children: imageUrl ? /* @__PURE__ */ jsx62("img", { src: imageUrl, alt: name, className: ScWorkspaceSwitchCard_default.avatarImg }) : /* @__PURE__ */ jsx62(
4428
- ScIntialProfileCover,
4425
+ onMouseEnter: () => setInternalHover(true),
4426
+ onMouseLeave: () => setInternalHover(false),
4427
+ children: /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.wsInfo, children: [
4428
+ /* @__PURE__ */ jsx62(
4429
+ ScDp,
4429
4430
  {
4430
- intial: displayInitials,
4431
- className: ScWorkspaceSwitchCard_default.avatarCover
4431
+ type: imageUrl ? "image" : "initial",
4432
+ variant: "workspace",
4433
+ initial: displayInitials,
4434
+ imageUrl,
4435
+ className: ScWorkspaceSwitchCard_default.dp,
4436
+ style: {
4437
+ backgroundColor: dpBg,
4438
+ borderRadius: "var(--radius-xl, 12px)"
4439
+ }
4432
4440
  }
4433
- ) }),
4441
+ ),
4434
4442
  /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.infoCol, children: [
4435
- /* @__PURE__ */ jsx62("p", { className: ScWorkspaceSwitchCard_default.wsName, children: name }),
4443
+ /* @__PURE__ */ jsx62("p", { className: ScWorkspaceSwitchCard_default.wsName, children: wsName }),
4436
4444
  /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.detailsRow, children: [
4437
4445
  /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4438
4446
  /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Role" }),
4439
- /* @__PURE__ */ jsx62(
4440
- "span",
4441
- {
4442
- className: isAdmin ? ScWorkspaceSwitchCard_default.detailValueWarning : ScWorkspaceSwitchCard_default.detailValueSecondary,
4443
- children: roleText
4444
- }
4445
- )
4447
+ /* @__PURE__ */ jsx62("span", { className: roleColorClass, children: displayRole })
4446
4448
  ] }),
4447
4449
  /* @__PURE__ */ jsx62(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4448
4450
  /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.detailItem, children: [
4449
4451
  /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Plan" }),
4450
- /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan || "\u2013" })
4452
+ /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: plan })
4451
4453
  ] }),
4452
4454
  /* @__PURE__ */ jsx62(ScVDivider, { className: ScWorkspaceSwitchCard_default.vDivider }),
4453
4455
  /* @__PURE__ */ jsxs53("div", { className: ScWorkspaceSwitchCard_default.detailItemFlex, children: [
4454
4456
  /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailLabel, children: "Workspace Owner" }),
4455
- /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerEmail || "\u2013" })
4457
+ /* @__PURE__ */ jsx62("span", { className: ScWorkspaceSwitchCard_default.detailValueSecondary, children: ownerId })
4456
4458
  ] })
4457
4459
  ] })
4458
4460
  ] }),
4459
- showButtons && /* @__PURE__ */ jsx62(
4460
- ScButton,
4461
+ isHover && isOther && /* @__PURE__ */ jsx62(
4462
+ "div",
4461
4463
  {
4462
- text: "Switch Workspace",
4463
- size: "sm",
4464
- styleVariant: "icon-left",
4465
- icon: /* @__PURE__ */ jsx62(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon }),
4466
4464
  onClick: (e) => {
4467
4465
  e.stopPropagation();
4468
4466
  onSwitch?.();
4469
- }
4467
+ },
4468
+ style: { cursor: "pointer" },
4469
+ children: /* @__PURE__ */ jsx62(
4470
+ ScButton,
4471
+ {
4472
+ text: "Switch Workspace",
4473
+ variant: "secondary",
4474
+ size: "sm",
4475
+ styleVariant: "icon-left",
4476
+ icon: /* @__PURE__ */ jsx62(SiconSwitch3, { className: ScWorkspaceSwitchCard_default.btnIcon })
4477
+ }
4478
+ )
4470
4479
  }
4471
4480
  ),
4472
- showButtons && variant === "settings" && /* @__PURE__ */ jsx62(
4473
- ScButton,
4481
+ isHover && isAdmin && /* @__PURE__ */ jsx62(
4482
+ "div",
4474
4483
  {
4475
- styleVariant: "icon-only",
4476
- variant: "outline",
4477
- size: "sm",
4478
- icon: /* @__PURE__ */ jsx62(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon }),
4479
4484
  onClick: (e) => {
4480
4485
  e.stopPropagation();
4481
4486
  onSettings?.();
4482
- }
4487
+ },
4488
+ style: { cursor: "pointer" },
4489
+ children: /* @__PURE__ */ jsx62(
4490
+ ScButton,
4491
+ {
4492
+ styleVariant: "icon-only",
4493
+ variant: "outline",
4494
+ size: "sm",
4495
+ icon: /* @__PURE__ */ jsx62(SiconSettings3, { className: ScWorkspaceSwitchCard_default.btnIcon })
4496
+ }
4497
+ )
4483
4498
  }
4484
4499
  )
4485
4500
  ] })
4486
4501
  }
4487
4502
  );
4488
4503
  }
4504
+ var ScWorkspaceSwitchCard = NscWorkspaceSwitch;
4489
4505
  export {
4506
+ NscWorkspaceSwitch,
4490
4507
  ScAccess,
4491
4508
  ScAppCard,
4492
4509
  ScAppField,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamoid/ui",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "react-dom": "^18.0.0"
24
24
  },
25
25
  "dependencies": {
26
- "@streamoid/icons": "^0.1.2"
26
+ "@streamoid/icons": "^0.2.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/react": "^18.0.0",