@arc-ui/components 10.6.0 → 10.7.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.
Files changed (34) hide show
  1. package/dist/Base/index.js +5 -2
  2. package/dist/Breadcrumbs/index.js +17 -10
  3. package/dist/Button/index.d.ts +1 -1
  4. package/dist/Button/index.js +3 -3
  5. package/dist/Card/index.d.ts +4 -0
  6. package/dist/Card/index.js +2 -2
  7. package/dist/Icon/index.d.ts +1 -1
  8. package/dist/Icon/index.js +2 -2
  9. package/dist/Poster/index.d.ts +5 -0
  10. package/dist/SiteFooter/index.js +1 -1
  11. package/dist/SiteHeader/index.js +3 -3
  12. package/dist/VisuallyHidden/index.js +1 -1
  13. package/dist/_shared/{Button-39e56303.d.ts → Button-2fcbd4ed.d.ts} +0 -0
  14. package/dist/_shared/{Button-39e56303.js → Button-2fcbd4ed.js} +1 -1
  15. package/dist/_shared/{Icon-cef09451.d.ts → Icon-b053f03d.d.ts} +0 -0
  16. package/dist/_shared/{Icon-cef09451.js → Icon-b053f03d.js} +1 -1
  17. package/dist/_shared/index.es-ff960629.js +286 -0
  18. package/dist/index.es.js +299 -289
  19. package/dist/index.es.js.map +1 -1
  20. package/dist/index.js +299 -289
  21. package/dist/index.js.map +1 -1
  22. package/dist/styles.css +1 -1
  23. package/dist/types/components/Base/Base.d.ts +2 -1
  24. package/dist/types/components/Card/Card.d.ts +4 -0
  25. package/dist/types/components/Modal/Modal.d.ts +28 -0
  26. package/dist/types/components/Modal/index.d.ts +1 -0
  27. package/dist/types/components/Poster/PosterImage.d.ts +5 -1
  28. package/dist/types/components/Select/Select.d.ts +21 -0
  29. package/dist/types/components/Select/index.d.ts +1 -0
  30. package/dist/types/components/Switch/Switch.d.ts +34 -0
  31. package/dist/types/components/Switch/index.d.ts +1 -0
  32. package/dist/types/styles.d.ts +5 -0
  33. package/package.json +12 -5
  34. package/dist/_shared/index.es-793935a1.js +0 -286
@@ -1,12 +1,15 @@
1
1
  import { _ as __rest, a as __assign, f as filterDataAttrs } from '../_shared/index-e3c83626.js';
2
- import React from 'react';
2
+ import React, { createContext } from 'react';
3
3
 
4
+ var ArcRootElementContext = createContext(null);
4
5
  /**
5
6
  * Use `Base` as the root component of the arc system.
6
7
  */
7
8
  var Base = function (_a) {
8
9
  var _b = _a.brand, brand = _b === void 0 ? "bt" : _b, children = _a.children, props = __rest(_a, ["brand", "children"]);
9
- return (React.createElement("div", __assign({ className: "arc".concat(brand ? " arc-".concat(brand) : "") }, filterDataAttrs(props)), children));
10
+ var _c = React.useState(null), arcRoot = _c[0], setArcRoot = _c[1];
11
+ return (React.createElement("div", __assign({ id: "arc-root", ref: setArcRoot, className: "arc".concat(brand ? " arc-".concat(brand) : "") }, filterDataAttrs(props)),
12
+ React.createElement(ArcRootElementContext.Provider, { value: arcRoot }, children)));
10
13
  };
11
14
 
12
15
  export { Base };
@@ -1,9 +1,9 @@
1
1
  import React, { useRef, useState, useEffect } from 'react';
2
- import { I as Icon } from '../_shared/Icon-cef09451.js';
2
+ import { I as Icon } from '../_shared/Icon-b053f03d.js';
3
3
  import { a as __assign } from '../_shared/index-e3c83626.js';
4
4
  import { c as classNames } from '../_shared/index-56d9df62.js';
5
5
  import { h as handleLinkClick } from '../_shared/handle-link-click-35e09d0c.js';
6
- import '../_shared/index.es-793935a1.js';
6
+ import '../_shared/index.es-ff960629.js';
7
7
  import '../_shared/suffix-modifier-2a93822c.js';
8
8
  import '../_shared/Surface-3fe44a2a.js';
9
9
 
@@ -551,7 +551,7 @@ var debounce_1 = debounce;
551
551
  var BreadcrumbsItem = function (_a) {
552
552
  var spacerIconAfter = _a.spacerIconAfter, spacerIconBefore = _a.spacerIconBefore, children = _a.children;
553
553
  return (React.createElement("li", { className: "arc-Breadcrumbs-item" },
554
- spacerIconBefore && (React.createElement("div", { className: "arc-Breadcrumbs-spacerIcon" },
554
+ spacerIconBefore && (React.createElement("div", { className: "arc-Breadcrumbs-spacerIcon", "data-testid": "arc-chevron-left-2px" },
555
555
  React.createElement(Icon, { icon: "btChevronLeft2px" }))),
556
556
  children,
557
557
  spacerIconAfter && (React.createElement("div", { className: "arc-Breadcrumbs-spacerIcon" },
@@ -589,6 +589,9 @@ var Breadcrumbs = function (_a) {
589
589
  if (window.innerWidth < 426) {
590
590
  setShowBackTrail(true);
591
591
  }
592
+ /**
593
+ * TODO! Revise this if statement
594
+ */
592
595
  if (children != null &&
593
596
  React.Children.count(children) > 2 &&
594
597
  breadcrumbsList.current != null &&
@@ -613,19 +616,23 @@ var Breadcrumbs = function (_a) {
613
616
  React.createElement("ul", { className: "arc-Breadcrumbs-list", ref: breadcrumbsList }, showBackTrail ? (React.createElement(React.Fragment, null, items.length < 3 ? (React.createElement(Breadcrumbs.Item, { spacerIconBefore: true }, items[0].props.children)) : (React.createElement(Breadcrumbs.Item, { spacerIconBefore: true }, items[items.length - 2].props.children)))) : (React.createElement(React.Fragment, null, isCompressed ? (React.createElement(React.Fragment, null,
614
617
  React.createElement(Breadcrumbs.Item, { spacerIconAfter: true }, items[0].props.children),
615
618
  React.createElement(Breadcrumbs.Item, { spacerIconAfter: true },
616
- React.createElement("button", { className: "arc-Breadcrumbs-expand arc-Breadcrumbs-text", onClick: function () { return setIsCompressed(false); }, "aria-label": "Expand Breadcrumbs", type: "button" }, "...")),
617
- React.createElement(Breadcrumbs.Item, null, React.cloneElement(items[items.length - 1].props.children, {
618
- isActive: true
619
- })))) : (React.createElement(React.Fragment, null,
619
+ React.createElement("button", { className: "arc-Breadcrumbs-expand arc-Breadcrumbs-text", onClick: function () { return setIsCompressed(false); }, "aria-label": "Expand Breadcrumbs", type: "button", "data-testid": "expand-ellipsis" }, "...")),
620
+ React.createElement(Breadcrumbs.Item, null, items[items.length - 1].props &&
621
+ items[items.length - 1].props.children &&
622
+ React.cloneElement(items[items.length - 1].props.children, {
623
+ isActive: true
624
+ })))) : (React.createElement(React.Fragment, null,
620
625
  items
621
626
  .slice(0, items.length - 1)
622
627
  .map(function (item, index) {
623
628
  return (React.createElement(React.Fragment, { key: "listItem-".concat(index) },
624
629
  React.createElement(Breadcrumbs.Item, { spacerIconAfter: true }, item.props.children)));
625
630
  }),
626
- React.createElement(Breadcrumbs.Item, null, React.cloneElement(items[items.length - 1].props.children, {
627
- isActive: items.length > 1
628
- })))))))));
631
+ React.createElement(Breadcrumbs.Item, null, items[items.length - 1].props &&
632
+ items[items.length - 1].props.children &&
633
+ React.cloneElement(items[items.length - 1].props.children, {
634
+ isActive: items.length > 1
635
+ })))))))));
629
636
  };
630
637
  BreadcrumbsItem.displayName = "Breadcrumbs.Item";
631
638
  BreadcrumbsLink.displayName = "Breadcrumbs.Link";
@@ -1 +1 @@
1
- export { Button } from "../_shared/Button-39e56303";
1
+ export { Button } from "../_shared/Button-2fcbd4ed";
@@ -1,8 +1,8 @@
1
- export { B as Button } from '../_shared/Button-39e56303.js';
1
+ export { B as Button } from '../_shared/Button-2fcbd4ed.js';
2
2
  import '../_shared/index-e3c83626.js';
3
3
  import '../_shared/index-56d9df62.js';
4
4
  import 'react';
5
5
  import '../_shared/suffix-modifier-2a93822c.js';
6
- import '../_shared/Icon-cef09451.js';
7
- import '../_shared/index.es-793935a1.js';
6
+ import '../_shared/Icon-b053f03d.js';
7
+ import '../_shared/index.es-ff960629.js';
8
8
  import '../_shared/Surface-3fe44a2a.js';
@@ -12,6 +12,10 @@ declare const Card: FC<CardProps> & {
12
12
  * Internal `Card.Block` component to section blocks of content within a Card.
13
13
  */
14
14
  declare const CardBlock: FC<{
15
+ /**
16
+ * Contents of the CardBlock.
17
+ */
18
+ children: React.ReactNode;
15
19
  /**
16
20
  * How should the content of the block be aligned?
17
21
  */
@@ -1,13 +1,13 @@
1
1
  import { _ as __rest, a as __assign, f as filterDataAttrs } from '../_shared/index-e3c83626.js';
2
2
  import { c as classNames } from '../_shared/index-56d9df62.js';
3
3
  import React, { useState, useEffect, useContext } from 'react';
4
- import { I as Icon } from '../_shared/Icon-cef09451.js';
4
+ import { I as Icon } from '../_shared/Icon-b053f03d.js';
5
5
  import { I as Image } from '../_shared/Image-a3225049.js';
6
6
  import { H as Heading } from '../_shared/Heading-8c640dd1.js';
7
7
  import { s as suffixModifier } from '../_shared/suffix-modifier-2a93822c.js';
8
8
  import { C as Context, S as Surface } from '../_shared/Surface-3fe44a2a.js';
9
9
  import { h as handleLinkClick } from '../_shared/handle-link-click-35e09d0c.js';
10
- import '../_shared/index.es-793935a1.js';
10
+ import '../_shared/index.es-ff960629.js';
11
11
 
12
12
  /**
13
13
  * Detect interaction mode
@@ -1 +1 @@
1
- export { Icon } from "../_shared/Icon-cef09451";
1
+ export { Icon } from "../_shared/Icon-b053f03d";
@@ -1,6 +1,6 @@
1
- export { I as Icon } from '../_shared/Icon-cef09451.js';
1
+ export { I as Icon } from '../_shared/Icon-b053f03d.js';
2
2
  import '../_shared/index-e3c83626.js';
3
- import '../_shared/index.es-793935a1.js';
3
+ import '../_shared/index.es-ff960629.js';
4
4
  import '../_shared/index-56d9df62.js';
5
5
  import 'react';
6
6
  import '../_shared/suffix-modifier-2a93822c.js';
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { FC, ReactNode } from "react";
2
3
  import { anchorPoints } from "../_shared/index-9483ad5f";
3
4
  import { loadingOptions } from "../_shared/Image-a3225049";
@@ -27,6 +28,10 @@ interface PosterImageProps {
27
28
  * A comma-separated list indicating a set of possible sources for the user agent to use for different screen sizes for the Poster.Image. Same format as [srcSet](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#Example_4_Using_the_srcset_and_sizes_attributes), i.e. `my-image-200.png 200w, my-image-200.png 200w`.
28
29
  */
29
30
  srcSet?: string;
31
+ /**
32
+ * Contents of the PosterImage.
33
+ */
34
+ children?: React.ReactNode;
30
35
  }
31
36
  declare const PosterVideo: FC<PosterVideoProps>;
32
37
  interface PosterVideoProps {
@@ -1,5 +1,5 @@
1
1
  import { _ as __rest, a as __assign, f as filterDataAttrs, d as __awaiter, e as __generator } from '../_shared/index-e3c83626.js';
2
- import { A as ArcBreakpointM } from '../_shared/index.es-793935a1.js';
2
+ import { A as ArcBreakpointM } from '../_shared/index.es-ff960629.js';
3
3
  import React, { useEffect, Fragment } from 'react';
4
4
  import { B as BrandLogo } from '../_shared/BrandLogo-6cc8202e.js';
5
5
  import { C as Curve } from '../_shared/Curve-5f476d0b.js';
@@ -1,15 +1,15 @@
1
1
  import { _ as __rest, a as __assign, f as filterDataAttrs, d as __awaiter, e as __generator } from '../_shared/index-e3c83626.js';
2
- import { a as ArcBreakpointL } from '../_shared/index.es-793935a1.js';
2
+ import { a as ArcBreakpointL } from '../_shared/index.es-ff960629.js';
3
3
  import { c as classNames } from '../_shared/index-56d9df62.js';
4
4
  import React, { useState, useEffect, Fragment, useContext, useRef, createContext } from 'react';
5
5
  import { B as BrandLogo } from '../_shared/BrandLogo-6cc8202e.js';
6
- import { B as Button } from '../_shared/Button-39e56303.js';
6
+ import { B as Button } from '../_shared/Button-2fcbd4ed.js';
7
7
  import { u as useMediaQuery } from '../_shared/use-media-query-f11805d4.js';
8
8
  import { S as Surface } from '../_shared/Surface-3fe44a2a.js';
9
9
  import { h as handleLinkClick } from '../_shared/handle-link-click-35e09d0c.js';
10
10
  import { s as suffixModifier } from '../_shared/suffix-modifier-2a93822c.js';
11
11
  import { T as Text } from '../_shared/Text-1c43d82b.js';
12
- import '../_shared/Icon-cef09451.js';
12
+ import '../_shared/Icon-b053f03d.js';
13
13
 
14
14
  var Item = function (_a) {
15
15
  var _b;
@@ -5,7 +5,7 @@ import React from 'react';
5
5
  */
6
6
  var VisuallyHidden = function (_a) {
7
7
  var children = _a.children;
8
- return React.createElement("div", { className: "arc-VisuallyHidden" }, children);
8
+ return (React.createElement("div", { "data-testid": "visually-hidden", className: "arc-VisuallyHidden" }, children));
9
9
  };
10
10
 
11
11
  export { VisuallyHidden };
@@ -2,7 +2,7 @@ import { _ as __rest, a as __assign, f as filterDataAttrs } from './index-e3c836
2
2
  import { c as classNames } from './index-56d9df62.js';
3
3
  import React, { forwardRef, useContext } from 'react';
4
4
  import { s as suffixModifier } from './suffix-modifier-2a93822c.js';
5
- import { I as Icon } from './Icon-cef09451.js';
5
+ import { I as Icon } from './Icon-b053f03d.js';
6
6
  import { C as Context } from './Surface-3fe44a2a.js';
7
7
 
8
8
  /**
@@ -1,5 +1,5 @@
1
1
  import { _ as __rest, a as __assign, f as filterDataAttrs } from './index-e3c83626.js';
2
- import { i as iconsSelected } from './index.es-793935a1.js';
2
+ import { i as iconsSelected } from './index.es-ff960629.js';
3
3
  import { c as classNames } from './index-56d9df62.js';
4
4
  import React, { useContext } from 'react';
5
5
  import { s as suffixModifier } from './suffix-modifier-2a93822c.js';
@@ -0,0 +1,286 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated file
4
+ */
5
+ var ArcBreakpointM = 768;
6
+ var ArcBreakpointL = 1024;
7
+ var iconsSelected = [
8
+ "bt3GFill",
9
+ "bt4GFill",
10
+ "bt5GFill",
11
+ "btAccessibilityFill",
12
+ "btAddFill",
13
+ "btAlertFill",
14
+ "btAlertTriangleFill",
15
+ "btAnswerPointFill",
16
+ "btArchitectureFill",
17
+ "btArchiveFill",
18
+ "btArrowAltDownFill",
19
+ "btArrowAltLeftFill",
20
+ "btArrowAltLeftRightFill",
21
+ "btArrowAltRightFill",
22
+ "btArrowAltUpFill",
23
+ "btArrowDownFill",
24
+ "btArrowLeftFill",
25
+ "btArrowLeftRightFill",
26
+ "btArrowRightFill",
27
+ "btArrowUpFill",
28
+ "btAttachmentAltFill",
29
+ "btAttachmentFill",
30
+ "btBagFill",
31
+ "btBasketFill",
32
+ "btBinFill",
33
+ "btBlockedNumberFill",
34
+ "btBoatFill",
35
+ "btBroadbandFill",
36
+ "btBuildingFill",
37
+ "btBurgerMenuFill",
38
+ "btCakeFill",
39
+ "btCalenderAcceptedFill",
40
+ "btCalenderAddEventFill",
41
+ "btCalenderFill",
42
+ "btCalenderPaymentPlanAltFill",
43
+ "btCalenderPaymentPlanFill",
44
+ "btCalenderSpecialDateFill",
45
+ "btCallRoutingFill",
46
+ "btCallerIdFill",
47
+ "btChatFill",
48
+ "btChatMessageFill",
49
+ "btChatTypingFill",
50
+ "btClipboardFill",
51
+ "btClipboardTickFill",
52
+ "btClockFill",
53
+ "btCloudAlertFill",
54
+ "btCloudDesktopFill",
55
+ "btCloudFill",
56
+ "btCloudLinkFill",
57
+ "btCloudMeetingFill",
58
+ "btCloudPhoneFill",
59
+ "btCloudSecurityFill",
60
+ "btCloudUploadFill",
61
+ "btCloudUserFill",
62
+ "btCollapseFill",
63
+ "btCompareFill",
64
+ "btComputerChipFill",
65
+ "btConnectedCareFill",
66
+ "btContactDetailsFill",
67
+ "btContactNoDetailsFill",
68
+ "btContactsFill",
69
+ "btCreditCardFill",
70
+ "btCrossAlt2pxFill",
71
+ "btCrossAltFill",
72
+ "btCrossFill",
73
+ "btDashboardFill",
74
+ "btDepositFill",
75
+ "btDesignFill",
76
+ "btDeskPhoneFill",
77
+ "btDetailsFill",
78
+ "btDetailsGroupFill",
79
+ "btDexterityFill",
80
+ "btDialPadFill",
81
+ "btDialPadWithHandFill",
82
+ "btDialledNumberDestinationFill",
83
+ "btDigitalCollaborationFill",
84
+ "btDisabilityFill",
85
+ "btDiscountFill",
86
+ "btDivertOnBusyFill",
87
+ "btDocumentAndPencilFill",
88
+ "btDocumentArticleFill",
89
+ "btDocumentBillsFill",
90
+ "btDocumentDownloadFill",
91
+ "btDocumentFill",
92
+ "btDocumentPdfFill",
93
+ "btDocumentWithCopyCrossedOutFill",
94
+ "btDocumentWithCopyFill",
95
+ "btDynamicCollaborationFill",
96
+ "btEducationFill",
97
+ "btEmailReadFill",
98
+ "btEmailUnreadFill",
99
+ "btEngagedFill",
100
+ "btEthernetFill",
101
+ "btFaceHappyFill",
102
+ "btFaceNeutralFill",
103
+ "btFaceSadFill",
104
+ "btFaceVeryHappyFill",
105
+ "btFirstAidFill",
106
+ "btFolderFill",
107
+ "btGamingFill",
108
+ "btGenderFemaleAndMaleFill",
109
+ "btGenderFemaleFill",
110
+ "btGenderMaleFill",
111
+ "btGenderNeutralFill",
112
+ "btGiftFill",
113
+ "btGlobalConnectivityFill",
114
+ "btGlobeFill",
115
+ "btGlossaryFill",
116
+ "btGondolaFill",
117
+ "btGraphBarAndPlotFill",
118
+ "btGraphBarChartFill",
119
+ "btGraphDownFill",
120
+ "btGraphUpAndDownFill",
121
+ "btGraphUpFill",
122
+ "btHeadsetFill",
123
+ "btHeartBrokenFill",
124
+ "btHeartCareFill",
125
+ "btHeartFill",
126
+ "btHoldingHeartFill",
127
+ "btHomeFill",
128
+ "btHomeTechExpertFill",
129
+ "btHometownFill",
130
+ "btHubAndMobileFill",
131
+ "btHubFill",
132
+ "btHubOldFill",
133
+ "btIpFill",
134
+ "btIPv6Fill",
135
+ "btIdeaFill",
136
+ "btInfoFill",
137
+ "btJsonFill",
138
+ "btJigsawFill",
139
+ "btJourneyFill",
140
+ "btKeyFill",
141
+ "btKnifeAndForkFill",
142
+ "btLanFill",
143
+ "btLaptopAndMobileFill",
144
+ "btLaptopConnectAndShareFill",
145
+ "btLaptopDetectionFill",
146
+ "btLaptopFill",
147
+ "btLaptopSecureFill",
148
+ "btLaptopVideoConferenceFill",
149
+ "btLaptopUsersFill",
150
+ "btLayoutGridLargeFill",
151
+ "btLayoutGridMediumFill",
152
+ "btLayoutGridSmallFill",
153
+ "btLayoutRowsLargeFill",
154
+ "btLayoutRowsMediumFill",
155
+ "btLayoutRowsSmallFill",
156
+ "btLeadershipFill",
157
+ "btLinkFill",
158
+ "btLiteracyNumeracyFill",
159
+ "btLocationFill",
160
+ "btLockedFill",
161
+ "btLogoutFill",
162
+ "btMedalFill",
163
+ "btMedalWithStarFill",
164
+ "btMeetingSpaceFill",
165
+ "btMegaphoneFill",
166
+ "btMicrophoneFill",
167
+ "btMobileFill",
168
+ "btMobileTransferCallFill",
169
+ "btMobileWithHandFill",
170
+ "btMobilityFill",
171
+ "btMoneyFill",
172
+ "btMonitorFill",
173
+ "btMonitorTickFill",
174
+ "btMoonFill",
175
+ "btMouseFill",
176
+ "btNamingFill",
177
+ "btNewWindowFill",
178
+ "btNoHearingFill",
179
+ "btNoHearingOrSpeechFill",
180
+ "btNoSpeechFill",
181
+ "btNoViewFill",
182
+ "btNotificationFill",
183
+ "btPaperTowelFill",
184
+ "btPasswordFIll",
185
+ "btPaymentMethodFill",
186
+ "btPayphoneFill",
187
+ "btPhoneBarredFill",
188
+ "btPhoneFill",
189
+ "btPictureFill",
190
+ "btPinAltFill",
191
+ "btPinFill",
192
+ "btPlaneFill",
193
+ "btPlanningFill",
194
+ "btPlantFill",
195
+ "btPlayFill",
196
+ "btPodcastFill",
197
+ "btPresentationFill",
198
+ "btPriceFill",
199
+ "btPrinterFill",
200
+ "btProcessFill",
201
+ "btProcessMiningFill",
202
+ "btProcessRolesFill",
203
+ "btProportionalCallDistributionFill",
204
+ "btQuestionFill",
205
+ "btRecyclingFill",
206
+ "btRefreshFill",
207
+ "btRefundFill",
208
+ "btReleaseFill",
209
+ "btResolution4KFill",
210
+ "btResolutionHdFill",
211
+ "btResolutionSdFill",
212
+ "btScaleFill",
213
+ "btSearchFill",
214
+ "btServerFill",
215
+ "btSettingsAlt2Fill",
216
+ "btSettingsAltFill",
217
+ "btSettingsFill",
218
+ "btShieldAddFill",
219
+ "btShieldFill",
220
+ "btShieldQuestionMarkFIll",
221
+ "btShieldSecurityFill",
222
+ "btShieldTickFill",
223
+ "btShipFill",
224
+ "btSignalFill",
225
+ "btSignatureFill",
226
+ "btSignpostFill",
227
+ "btSimFill",
228
+ "btSimpleFill",
229
+ "btSkiingFill",
230
+ "btSkisFill",
231
+ "btSnowboardingFill",
232
+ "btSpannerFill",
233
+ "btSpeakerFullVolumeFill",
234
+ "btSpeakerHalfVolumeFill",
235
+ "btSpeakerLowVolumeFill",
236
+ "btSpeakerMuteFill",
237
+ "btSpeedFasterFill",
238
+ "btSpeedFastestFill",
239
+ "btSpeedGuaranteeFill",
240
+ "btSpeedSlowFill",
241
+ "btSportFootballFill",
242
+ "btStarFill",
243
+ "btStopFill",
244
+ "btStopAltFill",
245
+ "btSuitcaseFill",
246
+ "btSunFill",
247
+ "btSwitchFill",
248
+ "btTvArialFill",
249
+ "btTvFill",
250
+ "btTvAndHubFill",
251
+ "btTvAndHubAndPhoneFill",
252
+ "btTabletFill",
253
+ "btTabletWithKeyboardFill",
254
+ "btTagFill",
255
+ "btTaxonomyFill",
256
+ "btTechBarFill",
257
+ "btTelemarkFill",
258
+ "btThumbsDownFill",
259
+ "btThumbsUpFill",
260
+ "btTickAlt2pxFill",
261
+ "btTickFill",
262
+ "btTickVariantFill",
263
+ "btTree1Fill",
264
+ "btTree2Fill",
265
+ "btTrophyFill",
266
+ "btUkFill",
267
+ "btUkHotspotsFill",
268
+ "btUsbFill",
269
+ "btUnlockedFill",
270
+ "btUserAddFill",
271
+ "btUserCloudFill",
272
+ "btUserDuplicateProfileFill",
273
+ "btUserFill",
274
+ "btUserGroupsFill",
275
+ "btUserParentAndChildFill",
276
+ "btUserWithQuestionmarkFill",
277
+ "btVanFill",
278
+ "btViewFill",
279
+ "btVirusFill",
280
+ "btWholeHomeWifiFill",
281
+ "btWiFiFill",
282
+ "btWizardFill",
283
+ "btWorkstationFill"
284
+ ];
285
+
286
+ export { ArcBreakpointM as A, ArcBreakpointL as a, iconsSelected as i };