@agentiffai/design 1.4.8 → 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/{YouTubeIcon-C1e6LEOF.d.cts → YouTubeIcon-B7Y2MfN5.d.cts} +11 -1
- package/dist/{YouTubeIcon-C1e6LEOF.d.ts → YouTubeIcon-B7Y2MfN5.d.ts} +11 -1
- package/dist/icons/index.cjs +34 -0
- package/dist/icons/index.cjs.map +1 -1
- package/dist/icons/index.d.cts +1 -1
- package/dist/icons/index.d.ts +1 -1
- package/dist/icons/index.js +34 -1
- package/dist/icons/index.js.map +1 -1
- package/dist/index.cjs +34 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +34 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/icons/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
export { b as FacebookIcon, F as FacebookIconProps, a as FacebookIconVariant, d as GmailIcon, G as GmailIconProps, c as GmailIconVariant, f as InstagramIcon, I as InstagramIconProps, e as InstagramVariant, h as LinkedInIcon, L as LinkedInIconProps, g as LinkedInIconVariant, j as PostizIcon, P as PostizIconProps, i as PostizIconVariant, l as RedditIcon, R as RedditIconProps, k as RedditIconVariant, n as SlackIcon, S as SlackIconProps, m as SlackIconVariant, p as TelegramIcon, T as TelegramIconProps, o as TelegramIconVariant, r as WhatsAppIcon, W as WhatsAppIconProps,
|
|
3
|
+
export { b as FacebookIcon, F as FacebookIconProps, a as FacebookIconVariant, d as GmailIcon, G as GmailIconProps, c as GmailIconVariant, f as InstagramIcon, I as InstagramIconProps, e as InstagramVariant, h as LinkedInIcon, L as LinkedInIconProps, g as LinkedInIconVariant, j as PostizIcon, P as PostizIconProps, i as PostizIconVariant, l as RedditIcon, R as RedditIconProps, k as RedditIconVariant, n as SlackIcon, S as SlackIconProps, m as SlackIconVariant, p as TelegramIcon, T as TelegramIconProps, o as TelegramIconVariant, s as TwilioIcon, q as TwilioIconProps, r as TwilioIconVariant, u as WhatsAppIcon, W as WhatsAppIconProps, t as WhatsAppIconVariant, w as XIcon, X as XIconProps, v as XIconVariant, y as YouTubeIcon, Y as YouTubeIconProps, x as YouTubeIconVariant } from '../YouTubeIcon-B7Y2MfN5.cjs';
|
|
4
4
|
import '@react-aria/button';
|
|
5
5
|
|
|
6
6
|
type AirtableIconVariant = 'colored' | 'black' | 'white';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default from 'react';
|
|
3
|
-
export { b as FacebookIcon, F as FacebookIconProps, a as FacebookIconVariant, d as GmailIcon, G as GmailIconProps, c as GmailIconVariant, f as InstagramIcon, I as InstagramIconProps, e as InstagramVariant, h as LinkedInIcon, L as LinkedInIconProps, g as LinkedInIconVariant, j as PostizIcon, P as PostizIconProps, i as PostizIconVariant, l as RedditIcon, R as RedditIconProps, k as RedditIconVariant, n as SlackIcon, S as SlackIconProps, m as SlackIconVariant, p as TelegramIcon, T as TelegramIconProps, o as TelegramIconVariant, r as WhatsAppIcon, W as WhatsAppIconProps,
|
|
3
|
+
export { b as FacebookIcon, F as FacebookIconProps, a as FacebookIconVariant, d as GmailIcon, G as GmailIconProps, c as GmailIconVariant, f as InstagramIcon, I as InstagramIconProps, e as InstagramVariant, h as LinkedInIcon, L as LinkedInIconProps, g as LinkedInIconVariant, j as PostizIcon, P as PostizIconProps, i as PostizIconVariant, l as RedditIcon, R as RedditIconProps, k as RedditIconVariant, n as SlackIcon, S as SlackIconProps, m as SlackIconVariant, p as TelegramIcon, T as TelegramIconProps, o as TelegramIconVariant, s as TwilioIcon, q as TwilioIconProps, r as TwilioIconVariant, u as WhatsAppIcon, W as WhatsAppIconProps, t as WhatsAppIconVariant, w as XIcon, X as XIconProps, v as XIconVariant, y as YouTubeIcon, Y as YouTubeIconProps, x as YouTubeIconVariant } from '../YouTubeIcon-B7Y2MfN5.js';
|
|
4
4
|
import '@react-aria/button';
|
|
5
5
|
|
|
6
6
|
type AirtableIconVariant = 'colored' | 'black' | 'white';
|
package/dist/icons/index.js
CHANGED
|
@@ -2363,6 +2363,39 @@ function TrelloIcon({
|
|
|
2363
2363
|
] });
|
|
2364
2364
|
}
|
|
2365
2365
|
TrelloIcon.displayName = "TrelloIcon";
|
|
2366
|
+
var COLORS = {
|
|
2367
|
+
colored: { bg: "#F22F46", dot: "#FFFFFF" },
|
|
2368
|
+
black: { bg: "#111111", dot: "#FFFFFF" },
|
|
2369
|
+
white: { bg: "#FFFFFF", dot: "#111111" }
|
|
2370
|
+
};
|
|
2371
|
+
function TwilioIcon({
|
|
2372
|
+
size = 24,
|
|
2373
|
+
variant = "colored",
|
|
2374
|
+
"aria-label": ariaLabel = "Twilio",
|
|
2375
|
+
...props
|
|
2376
|
+
}) {
|
|
2377
|
+
const colors = COLORS[variant];
|
|
2378
|
+
return /* @__PURE__ */ jsxs(
|
|
2379
|
+
"svg",
|
|
2380
|
+
{
|
|
2381
|
+
width: size,
|
|
2382
|
+
height: size,
|
|
2383
|
+
viewBox: "0 0 24 24",
|
|
2384
|
+
role: props["aria-hidden"] ? void 0 : "img",
|
|
2385
|
+
"aria-label": props["aria-hidden"] ? void 0 : ariaLabel,
|
|
2386
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2387
|
+
...props,
|
|
2388
|
+
children: [
|
|
2389
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "11", fill: colors.bg }),
|
|
2390
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.25", cy: "8.25", r: "2.1", fill: colors.dot }),
|
|
2391
|
+
/* @__PURE__ */ jsx("circle", { cx: "15.75", cy: "8.25", r: "2.1", fill: colors.dot }),
|
|
2392
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.25", cy: "15.75", r: "2.1", fill: colors.dot }),
|
|
2393
|
+
/* @__PURE__ */ jsx("circle", { cx: "15.75", cy: "15.75", r: "2.1", fill: colors.dot })
|
|
2394
|
+
]
|
|
2395
|
+
}
|
|
2396
|
+
);
|
|
2397
|
+
}
|
|
2398
|
+
TwilioIcon.displayName = "TwilioIcon";
|
|
2366
2399
|
function WhatsAppIcon({
|
|
2367
2400
|
variant = "colored",
|
|
2368
2401
|
size = 24,
|
|
@@ -2820,6 +2853,6 @@ function ZohoMailIcon({
|
|
|
2820
2853
|
}
|
|
2821
2854
|
ZohoMailIcon.displayName = "ZohoMailIcon";
|
|
2822
2855
|
|
|
2823
|
-
export { AirtableIcon, AmazonIcon, AsanaIcon, CalendlyIcon, ClickUpIcon, DropboxIcon, FacebookIcon, GitHubIcon, GitLabIcon, GmailIcon, InstagramIcon, JiraIcon, LinkedInIcon, MicrosoftIcon, PinterestIcon, PipedriveIcon, PostizIcon, RedditIcon, SendGridIcon, SlackIcon, SupabaseIcon, TelegramIcon, TodoistIcon, TrelloIcon, WhatsAppIcon, XIcon, XeroIcon, YouTubeIcon, ZohoMailIcon };
|
|
2856
|
+
export { AirtableIcon, AmazonIcon, AsanaIcon, CalendlyIcon, ClickUpIcon, DropboxIcon, FacebookIcon, GitHubIcon, GitLabIcon, GmailIcon, InstagramIcon, JiraIcon, LinkedInIcon, MicrosoftIcon, PinterestIcon, PipedriveIcon, PostizIcon, RedditIcon, SendGridIcon, SlackIcon, SupabaseIcon, TelegramIcon, TodoistIcon, TrelloIcon, TwilioIcon, WhatsAppIcon, XIcon, XeroIcon, YouTubeIcon, ZohoMailIcon };
|
|
2824
2857
|
//# sourceMappingURL=index.js.map
|
|
2825
2858
|
//# sourceMappingURL=index.js.map
|