@agentiffai/design 1.4.9 → 1.5.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.
@@ -320,6 +320,16 @@ declare namespace WhatsAppIcon {
320
320
  var displayName: string;
321
321
  }
322
322
 
323
+ type TwilioIconVariant = 'colored' | 'black' | 'white';
324
+ interface TwilioIconProps extends Omit<SVGProps<SVGSVGElement>, 'children'> {
325
+ size?: number | string;
326
+ variant?: TwilioIconVariant;
327
+ }
328
+ declare function TwilioIcon({ size, variant, 'aria-label': ariaLabel, ...props }: TwilioIconProps): react_jsx_runtime.JSX.Element;
329
+ declare namespace TwilioIcon {
330
+ var displayName: string;
331
+ }
332
+
323
333
  type XIconVariant = 'colored' | 'black' | 'white';
324
334
  interface XIconProps {
325
335
  /**
@@ -395,4 +405,4 @@ declare namespace YouTubeIcon {
395
405
  var displayName: string;
396
406
  }
397
407
 
398
- export { type FacebookIconProps as F, type GmailIconProps as G, type InstagramIconProps as I, type LinkedInIconProps as L, type PostizIconProps as P, type RedditIconProps as R, type SlackIconProps as S, type TelegramIconProps as T, type WhatsAppIconProps as W, type XIconProps as X, type YouTubeIconProps as Y, type FacebookIconVariant as a, FacebookIcon as b, type GmailIconVariant as c, GmailIcon as d, type InstagramVariant as e, InstagramIcon as f, type LinkedInIconVariant as g, LinkedInIcon as h, type PostizIconVariant as i, PostizIcon as j, type RedditIconVariant as k, RedditIcon as l, type SlackIconVariant as m, SlackIcon as n, type TelegramIconVariant as o, TelegramIcon as p, type WhatsAppIconVariant as q, WhatsAppIcon as r, type XIconVariant as s, XIcon as t, type YouTubeIconVariant as u, YouTubeIcon as v };
408
+ export { type FacebookIconProps as F, type GmailIconProps as G, type InstagramIconProps as I, type LinkedInIconProps as L, type PostizIconProps as P, type RedditIconProps as R, type SlackIconProps as S, type TelegramIconProps as T, type WhatsAppIconProps as W, type XIconProps as X, type YouTubeIconProps as Y, type FacebookIconVariant as a, FacebookIcon as b, type GmailIconVariant as c, GmailIcon as d, type InstagramVariant as e, InstagramIcon as f, type LinkedInIconVariant as g, LinkedInIcon as h, type PostizIconVariant as i, PostizIcon as j, type RedditIconVariant as k, RedditIcon as l, type SlackIconVariant as m, SlackIcon as n, type TelegramIconVariant as o, TelegramIcon as p, type TwilioIconProps as q, type TwilioIconVariant as r, TwilioIcon as s, type WhatsAppIconVariant as t, WhatsAppIcon as u, type XIconVariant as v, XIcon as w, type YouTubeIconVariant as x, YouTubeIcon as y };
@@ -320,6 +320,16 @@ declare namespace WhatsAppIcon {
320
320
  var displayName: string;
321
321
  }
322
322
 
323
+ type TwilioIconVariant = 'colored' | 'black' | 'white';
324
+ interface TwilioIconProps extends Omit<SVGProps<SVGSVGElement>, 'children'> {
325
+ size?: number | string;
326
+ variant?: TwilioIconVariant;
327
+ }
328
+ declare function TwilioIcon({ size, variant, 'aria-label': ariaLabel, ...props }: TwilioIconProps): react_jsx_runtime.JSX.Element;
329
+ declare namespace TwilioIcon {
330
+ var displayName: string;
331
+ }
332
+
323
333
  type XIconVariant = 'colored' | 'black' | 'white';
324
334
  interface XIconProps {
325
335
  /**
@@ -395,4 +405,4 @@ declare namespace YouTubeIcon {
395
405
  var displayName: string;
396
406
  }
397
407
 
398
- export { type FacebookIconProps as F, type GmailIconProps as G, type InstagramIconProps as I, type LinkedInIconProps as L, type PostizIconProps as P, type RedditIconProps as R, type SlackIconProps as S, type TelegramIconProps as T, type WhatsAppIconProps as W, type XIconProps as X, type YouTubeIconProps as Y, type FacebookIconVariant as a, FacebookIcon as b, type GmailIconVariant as c, GmailIcon as d, type InstagramVariant as e, InstagramIcon as f, type LinkedInIconVariant as g, LinkedInIcon as h, type PostizIconVariant as i, PostizIcon as j, type RedditIconVariant as k, RedditIcon as l, type SlackIconVariant as m, SlackIcon as n, type TelegramIconVariant as o, TelegramIcon as p, type WhatsAppIconVariant as q, WhatsAppIcon as r, type XIconVariant as s, XIcon as t, type YouTubeIconVariant as u, YouTubeIcon as v };
408
+ export { type FacebookIconProps as F, type GmailIconProps as G, type InstagramIconProps as I, type LinkedInIconProps as L, type PostizIconProps as P, type RedditIconProps as R, type SlackIconProps as S, type TelegramIconProps as T, type WhatsAppIconProps as W, type XIconProps as X, type YouTubeIconProps as Y, type FacebookIconVariant as a, FacebookIcon as b, type GmailIconVariant as c, GmailIcon as d, type InstagramVariant as e, InstagramIcon as f, type LinkedInIconVariant as g, LinkedInIcon as h, type PostizIconVariant as i, PostizIcon as j, type RedditIconVariant as k, RedditIcon as l, type SlackIconVariant as m, SlackIcon as n, type TelegramIconVariant as o, TelegramIcon as p, type TwilioIconProps as q, type TwilioIconVariant as r, TwilioIcon as s, type WhatsAppIconVariant as t, WhatsAppIcon as u, type XIconVariant as v, XIcon as w, type YouTubeIconVariant as x, YouTubeIcon as y };
@@ -2369,6 +2369,39 @@ function TrelloIcon({
2369
2369
  ] });
2370
2370
  }
2371
2371
  TrelloIcon.displayName = "TrelloIcon";
2372
+ var COLORS = {
2373
+ colored: { bg: "#F22F46", dot: "#FFFFFF" },
2374
+ black: { bg: "#111111", dot: "#FFFFFF" },
2375
+ white: { bg: "#FFFFFF", dot: "#111111" }
2376
+ };
2377
+ function TwilioIcon({
2378
+ size = 24,
2379
+ variant = "colored",
2380
+ "aria-label": ariaLabel = "Twilio",
2381
+ ...props
2382
+ }) {
2383
+ const colors = COLORS[variant];
2384
+ return /* @__PURE__ */ jsxRuntime.jsxs(
2385
+ "svg",
2386
+ {
2387
+ width: size,
2388
+ height: size,
2389
+ viewBox: "0 0 24 24",
2390
+ role: props["aria-hidden"] ? void 0 : "img",
2391
+ "aria-label": props["aria-hidden"] ? void 0 : ariaLabel,
2392
+ xmlns: "http://www.w3.org/2000/svg",
2393
+ ...props,
2394
+ children: [
2395
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "11", fill: colors.bg }),
2396
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.25", cy: "8.25", r: "2.1", fill: colors.dot }),
2397
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15.75", cy: "8.25", r: "2.1", fill: colors.dot }),
2398
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "8.25", cy: "15.75", r: "2.1", fill: colors.dot }),
2399
+ /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "15.75", cy: "15.75", r: "2.1", fill: colors.dot })
2400
+ ]
2401
+ }
2402
+ );
2403
+ }
2404
+ TwilioIcon.displayName = "TwilioIcon";
2372
2405
  function WhatsAppIcon({
2373
2406
  variant = "colored",
2374
2407
  size = 24,
@@ -2850,6 +2883,7 @@ exports.SupabaseIcon = SupabaseIcon;
2850
2883
  exports.TelegramIcon = TelegramIcon;
2851
2884
  exports.TodoistIcon = TodoistIcon;
2852
2885
  exports.TrelloIcon = TrelloIcon;
2886
+ exports.TwilioIcon = TwilioIcon;
2853
2887
  exports.WhatsAppIcon = WhatsAppIcon;
2854
2888
  exports.XIcon = XIcon;
2855
2889
  exports.XeroIcon = XeroIcon;