@agentiffai/design 1.4.9 → 1.5.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/index.cjs CHANGED
@@ -9284,6 +9284,39 @@ function WhatsAppIcon({
9284
9284
  );
9285
9285
  }
9286
9286
  WhatsAppIcon.displayName = "WhatsAppIcon";
9287
+ var COLORS = {
9288
+ colored: { bg: "#F22F46", dot: "#FFFFFF" },
9289
+ black: { bg: "#111111", dot: "#FFFFFF" },
9290
+ white: { bg: "#FFFFFF", dot: "#111111" }
9291
+ };
9292
+ function TwilioIcon({
9293
+ size = 24,
9294
+ variant = "colored",
9295
+ "aria-label": ariaLabel = "Twilio",
9296
+ ...props
9297
+ }) {
9298
+ const colors = COLORS[variant];
9299
+ return /* @__PURE__ */ jsxRuntime.jsxs(
9300
+ "svg",
9301
+ {
9302
+ width: size,
9303
+ height: size,
9304
+ viewBox: "0 0 24 24",
9305
+ role: props["aria-hidden"] ? void 0 : "img",
9306
+ "aria-label": props["aria-hidden"] ? void 0 : ariaLabel,
9307
+ xmlns: "http://www.w3.org/2000/svg",
9308
+ ...props,
9309
+ children: [
9310
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "11", fill: colors.bg }),
9311
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.25", cy: "8.25", r: "2.1", fill: colors.dot }),
9312
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15.75", cy: "8.25", r: "2.1", fill: colors.dot }),
9313
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.25", cy: "15.75", r: "2.1", fill: colors.dot }),
9314
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15.75", cy: "15.75", r: "2.1", fill: colors.dot })
9315
+ ]
9316
+ }
9317
+ );
9318
+ }
9319
+ TwilioIcon.displayName = "TwilioIcon";
9287
9320
  var StyledXIcon = styled58__default.default.svg`
9288
9321
  display: inline-block;
9289
9322
  vertical-align: middle;
@@ -13768,6 +13801,7 @@ exports.TagInput = TagInput;
13768
13801
  exports.TelegramIcon = TelegramIcon;
13769
13802
  exports.TokenUsageCard = TokenUsageCard;
13770
13803
  exports.TrialPlanCard = TrialPlanCard;
13804
+ exports.TwilioIcon = TwilioIcon;
13771
13805
  exports.UserMessage = UserMessage;
13772
13806
  exports.WhatsAppIcon = WhatsAppIcon;
13773
13807
  exports.Window = Window;