@altinn/altinn-components 0.10.4 → 0.12.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 (168) hide show
  1. package/README.md +11 -1
  2. package/dist/assets/Breadcrumbs.css +1 -0
  3. package/dist/assets/BreadcrumbsLink.css +1 -0
  4. package/dist/assets/FieldBase.css +1 -0
  5. package/dist/assets/Flex.css +1 -0
  6. package/dist/assets/Grid.css +1 -0
  7. package/dist/assets/Heading.css +1 -1
  8. package/dist/assets/InputBase.css +1 -0
  9. package/dist/assets/ListItemBase.css +1 -1
  10. package/dist/assets/ListItemHeader.css +1 -1
  11. package/dist/assets/ListItemLabel.css +1 -1
  12. package/dist/assets/MenuItemMedia.css +1 -1
  13. package/dist/assets/QueryLabel.css +1 -1
  14. package/dist/assets/Section.css +1 -1
  15. package/dist/assets/SnackbarBase.css +1 -1
  16. package/dist/assets/SnackbarItem.css +1 -0
  17. package/dist/assets/Typography.css +1 -1
  18. package/dist/components/AccessAreaList/AccessAreaList.js +6 -5
  19. package/dist/components/AccessAreaList/AccessAreaListItem.js +13 -12
  20. package/dist/components/AccessPackageList/AccessPackageList.js +5 -4
  21. package/dist/components/AccessPackageList/AccessPackageListItem.js +6 -5
  22. package/dist/components/Autocomplete/AutocompleteItem.js +13 -12
  23. package/dist/components/Autocomplete/ScopeListItem.js +3 -2
  24. package/dist/components/Bookmarks/BookmarksListItem.js +69 -7
  25. package/dist/components/Bookmarks/BookmarksSection.js +33 -13
  26. package/dist/components/Bookmarks/QueryLabel.js +9 -9
  27. package/dist/components/Bookmarks/index.js +7 -9
  28. package/dist/components/Button/Button.js +16 -15
  29. package/dist/components/Button/IconButton.js +22 -10
  30. package/dist/components/Byline/Byline.js +4 -3
  31. package/dist/components/ContextMenu/ContextMenu.js +11 -10
  32. package/dist/components/Dialog/Dialog.js +16 -15
  33. package/dist/components/Dialog/DialogActions.js +3 -2
  34. package/dist/components/Dialog/DialogByline.js +5 -4
  35. package/dist/components/Dialog/DialogContent.js +8 -7
  36. package/dist/components/Dialog/DialogHeading.js +8 -7
  37. package/dist/components/Dialog/DialogHistory.js +6 -5
  38. package/dist/components/Dialog/DialogHistoryDetails.js +11 -10
  39. package/dist/components/Dialog/DialogHistoryItem.js +6 -5
  40. package/dist/components/Dialog/DialogList.js +3 -2
  41. package/dist/components/Dialog/DialogListGroup.js +8 -7
  42. package/dist/components/Dialog/DialogListItem.js +19 -18
  43. package/dist/components/Dialog/DialogMetadata.js +10 -9
  44. package/dist/components/Dialog/DialogSection.js +5 -4
  45. package/dist/components/Dialog/DialogTimeline.js +7 -6
  46. package/dist/components/Dialog/DialogTimelineItem.js +3 -2
  47. package/dist/components/Dialog/DialogTransmissions.js +3 -2
  48. package/dist/components/Dialog/DraftDialog.js +19 -18
  49. package/dist/components/Dropdown/DrawerButton.js +3 -2
  50. package/dist/components/Dropdown/DrawerOrDropdown.js +3 -2
  51. package/dist/components/Dropdown/DropdownBase.js +8 -7
  52. package/dist/components/GlobalMenu/AccountButton.js +3 -2
  53. package/dist/components/GlobalMenu/AccountMenu.js +12 -11
  54. package/dist/components/GlobalMenu/BackButton.js +3 -2
  55. package/dist/components/GlobalMenu/GlobalMenu.js +21 -20
  56. package/dist/components/Header/Header.js +3 -2
  57. package/dist/components/Header/HeaderBase.js +4 -3
  58. package/dist/components/Icon/iconsMap.js +16960 -739
  59. package/dist/components/Layout/Layout.js +7 -6
  60. package/dist/components/LayoutAction/ActionMenu.js +4 -3
  61. package/dist/components/List/List.js +5 -4
  62. package/dist/components/List/ListItemBase.js +11 -11
  63. package/dist/components/List/ListItemControls.js +15 -15
  64. package/dist/components/List/ListItemHeader.js +49 -49
  65. package/dist/components/List/ListItemLabel.js +8 -8
  66. package/dist/components/Menu/MenuItemMedia.js +5 -5
  67. package/dist/components/Menu/MenuItems.js +1 -0
  68. package/dist/components/Menu/MenuSearch.js +5 -4
  69. package/dist/components/Page/Article.js +4 -4
  70. package/dist/components/Page/Breadcrumbs.js +23 -0
  71. package/dist/components/Page/BreadcrumbsLink.js +28 -0
  72. package/dist/components/Page/Flex.js +42 -0
  73. package/dist/components/Page/Grid.js +34 -0
  74. package/dist/components/Page/PageHeader.js +11 -9
  75. package/dist/components/Page/PageNav.js +21 -17
  76. package/dist/components/Page/Section.js +12 -40
  77. package/dist/components/Page/index.js +18 -14
  78. package/dist/components/ResourceList/ResourceList.js +3 -2
  79. package/dist/components/ResourceList/ResourceListItem.js +3 -2
  80. package/dist/components/RootProvider/RootProvider.js +13 -12
  81. package/dist/components/Searchbar/SearchField.js +38 -28
  82. package/dist/components/Searchbar/Searchbar.js +3 -2
  83. package/dist/components/Snackbar/Snackbar.js +17 -8
  84. package/dist/components/Snackbar/SnackbarBase.js +5 -21
  85. package/dist/components/Snackbar/SnackbarItem.js +32 -0
  86. package/dist/components/Snackbar/index.js +2 -6
  87. package/dist/components/Snackbar/useSnackbar.js +47 -0
  88. package/dist/components/TextField/FieldBase.js +16 -0
  89. package/dist/components/TextField/InputBase.js +33 -0
  90. package/dist/components/TextField/TextField.js +7 -0
  91. package/dist/components/TextField/index.js +8 -0
  92. package/dist/components/Timeline/TimelineSection.js +3 -2
  93. package/dist/components/Toolbar/ToolbarAccountMenu.js +5 -4
  94. package/dist/components/Toolbar/ToolbarAdd.js +6 -5
  95. package/dist/components/Toolbar/ToolbarDaterange.js +11 -10
  96. package/dist/components/Toolbar/ToolbarFilter.js +12 -11
  97. package/dist/components/Toolbar/ToolbarMenu.js +3 -2
  98. package/dist/components/Toolbar/ToolbarOptions.js +10 -9
  99. package/dist/components/Toolbar/ToolbarSearch.js +5 -4
  100. package/dist/components/Transmission/TransmissionItem.js +3 -2
  101. package/dist/components/Transmission/TransmissionList.js +3 -2
  102. package/dist/components/Typography/Heading.js +3 -3
  103. package/dist/components/Typography/Typography.js +8 -9
  104. package/dist/components/index.js +270 -266
  105. package/dist/footer-BI7NNFeL.js +27 -0
  106. package/dist/globalMenu-A9dXKjrI.js +80 -0
  107. package/dist/header-B7oMg4iq.js +11 -0
  108. package/dist/inboxMenu-DXIoTtPz.js +48 -0
  109. package/dist/index.js +264 -260
  110. package/dist/types/lib/components/Bookmarks/BookmarksListItem.d.ts +18 -2
  111. package/dist/types/lib/components/Bookmarks/BookmarksListItem.stories.d.ts +2 -4
  112. package/dist/types/lib/components/Bookmarks/BookmarksSection.d.ts +8 -3
  113. package/dist/types/lib/components/Bookmarks/BookmarksSection.stories.d.ts +42 -3
  114. package/dist/types/lib/components/Bookmarks/index.d.ts +0 -1
  115. package/dist/types/lib/components/Button/Button.d.ts +2 -1
  116. package/dist/types/lib/components/Button/Button.stories.d.ts +1 -1
  117. package/dist/types/lib/components/Button/IconButton.d.ts +2 -1
  118. package/dist/types/lib/components/Button/IconButton.stories.d.ts +1 -1
  119. package/dist/types/lib/components/Layout/LayoutBase.d.ts +1 -1
  120. package/dist/types/lib/components/LayoutAction/ActionFooter.stories.d.ts +0 -2
  121. package/dist/types/lib/components/List/ListItemControls.d.ts +2 -1
  122. package/dist/types/lib/components/List/ListItemHeader.d.ts +2 -2
  123. package/dist/types/lib/components/Menu/MenuItemBase.d.ts +1 -1
  124. package/dist/types/lib/components/Page/Article.d.ts +1 -1
  125. package/dist/types/lib/components/Page/Breadcrumbs.d.ts +5 -0
  126. package/dist/types/lib/components/Page/BreadcrumbsLink.d.ts +11 -0
  127. package/dist/types/lib/components/Page/{PageBase.stories.d.ts → Examples.stories.d.ts} +2 -1
  128. package/dist/types/lib/components/Page/Flex.d.ts +29 -0
  129. package/dist/types/lib/components/Page/Grid.d.ts +22 -0
  130. package/dist/types/lib/components/Page/PageNav.d.ts +6 -3
  131. package/dist/types/lib/components/Page/PageNav.stories.d.ts +2 -1
  132. package/dist/types/lib/components/Page/Section.d.ts +6 -26
  133. package/dist/types/lib/components/Page/index.d.ts +4 -2
  134. package/dist/types/lib/components/Searchbar/Searchbar.stories.d.ts +6 -1
  135. package/dist/types/lib/components/Snackbar/Snackbar.d.ts +1 -16
  136. package/dist/types/lib/components/Snackbar/Snackbar.stories.d.ts +3 -8
  137. package/dist/types/lib/components/Snackbar/SnackbarBase.d.ts +6 -11
  138. package/dist/types/lib/components/Snackbar/SnackbarItem.d.ts +16 -0
  139. package/dist/types/lib/components/Snackbar/index.d.ts +2 -4
  140. package/dist/types/lib/components/Snackbar/useSnackbar.d.ts +39 -0
  141. package/dist/types/lib/components/TextField/FieldBase.d.ts +11 -0
  142. package/dist/types/lib/components/TextField/InputBase.d.ts +14 -0
  143. package/dist/types/lib/components/TextField/TextField.d.ts +7 -0
  144. package/dist/types/lib/components/TextField/index.d.ts +3 -0
  145. package/dist/types/lib/components/Typography/Heading.d.ts +2 -2
  146. package/dist/types/lib/components/Typography/Typography.d.ts +1 -1
  147. package/dist/types/lib/components/index.d.ts +1 -0
  148. package/dist/{useAccountMenu-ImwZYwks.js → useAccountMenu-DgXhBMw4.js} +19 -27
  149. package/package.json +7 -2
  150. package/dist/ZoomPlusFill-xyiiemTy.js +0 -17126
  151. package/dist/assets/ListItemMenu.css +0 -1
  152. package/dist/assets/SectionFooter.css +0 -1
  153. package/dist/assets/SnackbarLabel.css +0 -1
  154. package/dist/assets/SnackbarMedia.css +0 -1
  155. package/dist/components/Bookmarks/BookmarksList.js +0 -12
  156. package/dist/components/Icon/__AkselIcon.js +0 -1042
  157. package/dist/components/List/ListItemMenu.js +0 -8
  158. package/dist/components/Page/SectionFooter.js +0 -8
  159. package/dist/components/Page/SectionHeader.js +0 -12
  160. package/dist/components/Snackbar/SnackbarLabel.js +0 -7
  161. package/dist/components/Snackbar/SnackbarMedia.js +0 -11
  162. package/dist/types/lib/components/Bookmarks/BookmarksList.d.ts +0 -5
  163. package/dist/types/lib/components/Bookmarks/BookmarksList.stories.d.ts +0 -34
  164. package/dist/types/lib/components/List/ListItemMenu.d.ts +0 -8
  165. package/dist/types/lib/components/Page/SectionFooter.d.ts +0 -6
  166. package/dist/types/lib/components/Page/SectionHeader.d.ts +0 -6
  167. package/dist/types/lib/components/Snackbar/SnackbarLabel.d.ts +0 -5
  168. package/dist/types/lib/components/Snackbar/SnackbarMedia.d.ts +0 -6
@@ -1,1042 +0,0 @@
1
- "use client";
2
- import { nh as c, ng as S, nf as t, ne as v, nd as F, nc as I, nb as d, na as h, n9 as C, n8 as u, n7 as p, n6 as k, n5 as m, n4 as b, n3 as P, n2 as f, n1 as w, n0 as B, m$ as H, m_ as T, mZ as M, mY as R, mX as y, mW as L, mV as D, mU as E, mT as j, mS as O, mR as A, mQ as x, mP as q, mO as U, mN as z, mM as V, mL as W, mK as G, mJ as _, mI as K, mH as N, mG as Q, mF as X, mE as Z, mD as J, mC as $, mB as Y, mA as ll, mz as al, my as el, mx as ol, mw as nl, mv as il, mu as rl, mt as cl, ms as sl, mr as gl, mq as Sl, mp as tl, mo as vl, mn as Fl, mm as Il, ml as dl, mk as hl, mj as Cl, mi as ul, mh as pl, mg as kl, mf as ml, me as bl, md as Pl, mc as fl, mb as wl, ma as Bl, m9 as Hl, m8 as Tl, m7 as Ml, m6 as Rl, m5 as yl, m4 as Ll, m3 as Dl, m2 as El, m1 as jl, m0 as Ol, l$ as Al, l_ as xl, lZ as ql, lY as Ul, lX as zl, lW as Vl, lV as Wl, lU as Gl, lT as _l, lS as Kl, lR as Nl, lQ as Ql, lP as Xl, lO as Zl, lN as Jl, lM as $l, lL as Yl, lK as la, lJ as aa, lI as ea, lH as oa, lG as na, lF as ia, lE as ra, lD as ca, lC as sa, lB as ga, lA as Sa, lz as ta, ly as va, lx as Fa, lw as Ia, lv as da, lu as ha, lt as Ca, ls as ua, lr as pa, lq as ka, lp as ma, lo as ba, ln as Pa, lm as fa, ll as wa, lk as Ba, lj as Ha, li as Ta, lh as Ma, lg as Ra, lf as ya, le as La, ld as Da, lc as Ea, lb as ja, la as Oa, l9 as Aa, l8 as xa, l7 as qa, l5 as Ua, l4 as za, l6 as Va, l3 as Wa, l2 as Ga, l1 as _a, l0 as Ka, k$ as Na, k_ as Qa, kZ as Xa, kY as Za, kX as Ja, kW as $a, kV as Ya, kU as le, kT as ae, kS as ee, kR as oe, kQ as ne, kP as ie, kO as re, kN as ce, kM as se, kL as ge, kK as Se, kJ as te, kI as ve, kH as Fe, kG as Ie, kF as de, kE as he, kD as Ce, kC as ue, kB as pe, kA as ke, kz as me, ky as be, kx as Pe, kw as fe, kv as we, ku as Be, kt as He, ks as Te, kr as Me, kq as Re, kp as ye, ko as Le, kn as De, km as Ee, kl as je, kk as Oe, kj as Ae, ki as xe, kh as qe, kg as Ue, kf as ze, ke as Ve, kd as We, kc as Ge, kb as _e, ka as Ke, k9 as Ne, k8 as Qe, k7 as Xe, k6 as Ze, k5 as Je, k4 as $e, k3 as Ye, k2 as lo, k1 as ao, k0 as eo, j$ as oo, j_ as no, jZ as io, jY as ro, jX as co, jW as so, jV as go, jU as So, jT as to, jS as vo, jR as Fo, jQ as Io, jP as ho, jO as Co, jN as uo, jM as po, jL as ko, jK as mo, jJ as bo, jI as Po, jH as fo, jG as wo, jF as Bo, jE as Ho, jD as To, jC as Mo, jB as Ro, jA as yo, jz as Lo, jy as Do, jx as Eo, jw as jo, jv as Oo, ju as Ao, jt as xo, js as qo, jr as Uo, jq as zo, jp as Vo, jo as Wo, jn as Go, jm as _o, jl as Ko, jk as No, jj as Qo, ji as Xo, jh as Zo, jg as Jo, je as $o, jd as Yo, jf as ln, jc as an, jb as en, ja as on, j9 as nn, j8 as rn, j7 as cn, j6 as sn, j5 as gn, j4 as Sn, j3 as tn, j2 as vn, j1 as Fn, j0 as In, i$ as dn, i_ as hn, iZ as Cn, iY as un, iX as pn, iW as kn, iV as mn, iU as bn, iT as Pn, iS as fn, iR as wn, iQ as Bn, iP as Hn, iO as Tn, iN as Mn, iM as Rn, iL as yn, iK as Ln, iJ as Dn, iI as En, iH as jn, iG as On, iF as An, iE as xn, iD as qn, iC as Un, iB as zn, iA as Vn, iz as Wn, iy as Gn, ix as _n, iw as Kn, iv as Nn, iu as Qn, it as Xn, is as Zn, iq as Jn, ip as $n, ir as Yn, io as li, im as ai, il as ei, ik as oi, ij as ni, ii, ih as ri, ig as ci, ie as si, id as gi, ic as Si, ib as ti, ia as vi, i9 as Fi, i8 as Ii, i7 as di, i6 as hi, i5 as Ci, i4 as ui, i3 as pi, i2 as ki, i1 as mi, i0 as bi, h$ as Pi, h_ as fi, hZ as wi, hY as Bi, hX as Hi, hW as Ti, hV as Mi, hU as Ri, hT as yi, hS as Li, hR as Di, hQ as Ei, hP as ji, hO as Oi, hN as Ai, hM as xi, hL as qi, hK as Ui, hJ as zi, hI as Vi, hH as Wi, hG as Gi, hF as _i, hE as Ki, hD as Ni, hC as Qi, hB as Xi, hA as Zi, hz as Ji, hy as $i, hx as Yi, hw as lr, hv as ar, hu as er, ht as or, hs as nr, hr as ir, hq as rr, hp as cr, ho as sr, hn as gr, hm as Sr, hl as tr, hk as vr, hj as Fr, hi as Ir, hh as dr, hg as hr, hf as Cr, he as ur, hd as pr, hc as kr, hb as mr, ha as br, h9 as Pr, h8 as fr, h7 as wr, h6 as Br, h5 as Hr, h4 as Tr, h3 as Mr, h2 as Rr, h1 as yr, h0 as Lr, g$ as Dr, g_ as Er, gZ as jr, gY as Or, gX as Ar, gW as xr, gV as qr, gU as Ur, gT as zr, gS as Vr, gR as Wr, gQ as Gr, gP as _r, gO as Kr, gN as Nr, gM as Qr, gL as Xr, gK as Zr, gJ as Jr, gI as $r, gH as Yr, gG as lc, gF as ac, gE as ec, gD as oc, gC as nc, gB as ic, gA as rc, gz as cc, gy as sc, gx as gc, gw as Sc, gv as tc, gu as vc, gt as Fc, gs as Ic, gr as dc, gq as hc, gp as Cc, go as uc, gn as pc, gm as kc, gl as mc, gj as bc, gi as Pc, gk as fc, gh as wc, gg as Bc, gf as Hc, ge as Tc, gd as Mc, gc as Rc, gb as yc, ga as Lc, g9 as Dc, g8 as Ec, g7 as jc, g6 as Oc, g5 as Ac, g4 as xc, g3 as qc, g2 as Uc, g1 as zc, g0 as Vc, f_ as Wc, fZ as Gc, f$ as _c, fY as Kc, fX as Nc, fW as Qc, fV as Xc, fU as Zc, fT as Jc, fS as $c, fR as Yc, fQ as ls, fP as as, fO as es, fN as os, fM as ns, fL as is, fK as rs, fJ as cs, fI as ss, fH as gs, fG as Ss, fF as ts, fE as vs, fD as Fs, fC as Is, fB as ds, fA as hs, fz as Cs, fy as us, fx as ps, fw as ks, fv as ms, fu as bs, ft as Ps, fs, fr as ws, fq as Bs, fp as Hs, fo as Ts, fn as Ms, fm as Rs, fl as ys, fk as Ls, fj as Ds, fi as Es, fh as js, fg as Os, ff as As, fe as xs, fd as qs, fc as Us, fb as zs, fa as Vs, f9 as Ws, f8 as Gs, f7 as _s, f6 as Ks, f5 as Ns, f4 as Qs, f3 as Xs, f2 as Zs, f1 as Js, f0 as $s, e$ as Ys, e_ as lg, eZ as ag, eY as eg, eX as og, eW as ng, eV as ig, eU as rg, eT as cg, eS as sg, eR as gg, eQ as Sg, eP as tg, eO as vg, eN as Fg, eM as Ig, eL as dg, eK as hg, eJ as Cg, eI as ug, eH as pg, eG as kg, eF as mg, eE as bg, eD as Pg, eC as fg, eB as wg, eA as Bg, ez as Hg, ey as Tg, ex as Mg, ew as Rg, ev as yg, eu as Lg, et as Dg, es as Eg, er as jg, eq as Og, ep as Ag, eo as xg, en as qg, em as Ug, el as zg, ek as Vg, ej as Wg, ei as Gg, eh as _g, eg as Kg, ef as Ng, ee as Qg, ed as Xg, ec as Zg, eb as Jg, ea as $g, e9 as Yg, e8 as lS, e7 as aS, e6 as eS, e5 as oS, e4 as nS, e3 as iS, e2 as rS, e1 as cS, e0 as sS, d$ as gS, d_ as SS, dZ as tS, dY as vS, dX as FS, dW as IS, dV as dS, dU as hS, dT as CS, dS as uS, dR as pS, dQ as kS, dP as mS, dO as bS, dN as PS, dM as fS, dL as wS, dK as BS, dJ as HS, dI as TS, dH as MS, dG as RS, dF as yS, dE as LS, dD as DS, dC as ES, dB as jS, dA as OS, dz as AS, dx as xS, dw as qS, dv as US, du as zS, dt as VS, ds as WS, dy as GS, dr as _S, dq as KS, dp as NS, dn as QS, dm as XS, dl as ZS, dk as JS, dj as $S, di as YS, dh as lt, dg as at, df as et, de as ot, dd as nt, dc as it, db as rt, da as ct, d9 as st, d8 as gt, d7 as St, d6 as tt, d5 as vt, d4 as Ft, d3 as It, d2 as dt, d1 as ht, d0 as Ct, c$ as ut, c_ as pt, cZ as kt, cY as mt, cX as bt, cW as Pt, cV as ft, cU as wt, cT as Bt, cS as Ht, cR as Tt, cQ as Mt, cP as Rt, cO as yt, cN as Lt, cM as Dt, cL as Et, cK as jt, cJ as Ot, cI as At, cH as xt, cG as qt, cF as Ut, cE as zt, cD as Vt, cC as Wt, cB as Gt, cA as _t, cz as Kt, cy as Nt, cx as Qt, cw as Xt, cv as Zt, cu as Jt, ct as $t, cs as Yt, cr as lv, cq as av, cp as ev, co as ov, cn as nv, cm as iv, cl as rv, ck as cv, cj as sv, ci as gv, ch as Sv, cg as tv, cf as vv, ce as Fv, cd as Iv, cc as dv, cb as hv, c9 as Cv, c8 as uv, ca as pv, c7 as kv, c6 as mv, c5 as bv, c4 as Pv, c3 as fv, c2 as wv, c1 as Bv, c0 as Hv, b$ as Tv, b_ as Mv, bZ as Rv, bY as yv, bX as Lv, bW as Dv, bV as Ev, bU as jv, bT as Ov, bS as Av, bR as xv, bQ as qv, bP as Uv, bO as zv, bN as Vv, bM as Wv, bL as Gv, bK as _v, bJ as Kv, bI as Nv, bH as Qv, bG as Xv, bF as Zv, bE as Jv, bD as $v, bC as Yv, bB as lF, bA as aF, bz as eF, by as oF, bx as nF, bw as iF, bv as rF, bu as cF, bt as sF, bs as gF, br as SF, bq as tF, bp as vF, bo as FF, bn as IF, bm as dF, bl as hF, bk as CF, bj as uF, bi as pF, bh as kF, bg as mF, bf as bF, be as PF, bd as fF, bc as wF, bb as BF, ba as HF, b9 as TF, b8 as MF, b7 as RF, b6 as yF, b5 as LF, b4 as DF, b3 as EF, b2 as jF, b1 as OF, b0 as AF, a$ as xF, a_ as qF, aZ as UF, aY as zF, aX as VF, aW as WF, aV as GF, aU as _F, aT as KF, aS as NF, aR as QF, aQ as XF, aP as ZF, aO as JF, aN as $F, aM as YF, aL as lI, aK as aI, aJ as eI, aI as oI, aH as nI, aG as iI, aF as rI, aE as cI, aD as sI, aC as gI, aB as SI, aA as tI, az as vI, ay as FI, ax as II, aw as dI, av as hI, au as CI, at as uI, as as pI, ar as kI, aq as mI, ap as bI, ao as PI, an as fI, am as wI, al as BI, ak as HI, aj as TI, ai as MI, ah as RI, ag as yI, af as LI, ae as DI, ad as EI, ac as jI, ab as OI, aa as AI, a9 as xI, a8 as qI, a7 as UI, a6 as zI, a5 as VI, a4 as WI, a3 as GI, a2 as _I, a1 as KI, a0 as NI, $ as QI, _ as XI, Z as ZI, Y as JI, X as $I, W as YI, V as ld, U as ad, T as ed, R as od, Q as nd, P as id, O as rd, N as cd, M as sd, L as gd, K as Sd, J as td, I as vd, H as Fd, G as Id, F as dd, E as hd, D as Cd, C as ud, B as pd, A as kd, z as md, y as bd, x as Pd, w as fd, v as wd, u as Bd, t as Hd, s as Td, r as Md, q as Rd, p as yd, o as Ld, n as Dd, m as Ed, l as jd, k as Od, j as Ad, i as xd, h as qd, g as Ud, f as zd, e as Vd, d as Wd, c as Gd, b as _d, a as Kd, S as Nd } from "../../ZoomPlusFill-xyiiemTy.js";
3
- import * as r from "react";
4
- import { forwardRef as s } from "react";
5
- var Qd = function(a, n) {
6
- var o = {};
7
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
8
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
9
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
10
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
11
- return o;
12
- };
13
- const Xd = s((a, n) => {
14
- var { title: o, titleId: l } = a, e = Qd(a, ["title", "titleId"]);
15
- let i = c();
16
- return i = o ? l || "title-" + i : void 0, r.createElement(
17
- "svg",
18
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
19
- o ? r.createElement("title", { id: i }, o) : null,
20
- r.createElement("path", { fill: "currentColor", d: "M9.21 16.193h.693q.336 0 .532-.182a.65.65 0 0 0 .203-.497.63.63 0 0 0-.203-.49q-.195-.189-.532-.189H9.21z" }),
21
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M5.25 4.5c0-.69.56-1.25 1.25-1.25H14a.75.75 0 0 1 .53.22l4 4c.141.14.22.331.22.53v4.25H21a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75v-7a.75.75 0 0 1 .75-.75h2.25zm1.5 7.75h10.5v-3.5H14.5c-.69 0-1.25-.56-1.25-1.25V4.75h-6.5zm8-6.44 1.44 1.44h-1.44zM5.18 19.078q-.804 0-1.28-.434-.47-.44-.47-1.183h1.05q0 .322.19.518.188.189.51.189t.511-.182q.19-.189.19-.511V14.87H4.724v-.98H6.93v3.584q0 .743-.469 1.176-.469.427-1.28.427M8.16 19v-5.11h1.743q.54 0 .938.203.405.202.623.567.224.364.224.854 0 .483-.224.854-.224.364-.623.567a2.04 2.04 0 0 1-.938.203H9.21V19zm4.505 0v-5.11h3.15v.896h-2.121v1.148h1.876v.896h-1.876v1.274h2.121V19zm5.975.07q-.511 0-.896-.189a1.5 1.5 0 0 1-.602-.539 1.55 1.55 0 0 1-.21-.812v-2.17q0-.469.21-.812.218-.343.602-.532.386-.195.896-.196.518 0 .896.196.385.189.595.532.217.344.217.812h-1.05q0-.308-.175-.469-.168-.16-.483-.161-.315 0-.49.161-.168.161-.168.469v2.17q0 .3.168.469.175.16.49.161.315 0 .483-.161.175-.168.175-.469v-.441h-.756V16.2h1.806v1.33q0 .462-.217.812-.21.343-.595.539-.377.189-.896.189", clipRule: "evenodd" })
22
- );
23
- });
24
- var Zd = function(a, n) {
25
- var o = {};
26
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
27
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
28
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
29
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
30
- return o;
31
- };
32
- const Jd = s((a, n) => {
33
- var { title: o, titleId: l } = a, e = Zd(a, ["title", "titleId"]);
34
- let i = c();
35
- return i = o ? l || "title-" + i : void 0, r.createElement(
36
- "svg",
37
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
38
- o ? r.createElement("title", { id: i }, o) : null,
39
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M13 3.25a.25.25 0 0 1 .25.25v4c0 .69.56 1.25 1.25 1.25h4a.25.25 0 0 1 .25.25v1.5a.25.25 0 0 1-.25.25h-13a.25.25 0 0 1-.25-.25v-6c0-.69.56-1.25 1.25-1.25zm2.177.866a.25.25 0 0 0-.427.177V7c0 .138.112.25.25.25h2.707a.25.25 0 0 0 .177-.427z", clipRule: "evenodd" }),
40
- r.createElement("path", { fill: "currentColor", d: "M9.903 16.193H9.21v-1.358h.693q.336 0 .532.189a.63.63 0 0 1 .203.49.65.65 0 0 1-.203.497q-.195.182-.532.182" }),
41
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M3 12.25a.75.75 0 0 0-.75.75v7c0 .414.336.75.75.75h18a.75.75 0 0 0 .75-.75v-7a.75.75 0 0 0-.75-.75zm.9 6.393q.476.434 1.28.434.813 0 1.281-.427.47-.434.47-1.176V13.89H4.724v.98H5.88v2.604q0 .322-.189.511-.189.182-.51.182-.323 0-.512-.189a.72.72 0 0 1-.189-.518H3.43q0 .742.47 1.183m4.26-4.753V19h1.05v-1.862h.693q.54 0 .938-.203.399-.203.623-.567.224-.37.224-.854 0-.49-.224-.854a1.47 1.47 0 0 0-.623-.567 2.04 2.04 0 0 0-.938-.203zm4.505 0V19h3.15v-.896h-2.121V16.83h1.876v-.896h-1.876v-1.148h2.121v-.896zm5.08 4.991q.384.189.895.189.518 0 .896-.189.385-.195.595-.539a1.5 1.5 0 0 0 .217-.812V16.2h-1.806v.889h.756v.441q0 .3-.175.469-.168.16-.483.161-.315 0-.49-.161-.168-.168-.168-.469v-2.17q0-.308.168-.469.175-.16.49-.161.315 0 .483.161.175.161.175.469h1.05q0-.469-.217-.812a1.4 1.4 0 0 0-.595-.532 1.9 1.9 0 0 0-.896-.196q-.511 0-.896.196a1.45 1.45 0 0 0-.602.532q-.21.344-.21.812v2.17q0 .462.21.812a1.5 1.5 0 0 0 .602.539", clipRule: "evenodd" })
42
- );
43
- });
44
- var $d = function(a, n) {
45
- var o = {};
46
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
47
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
48
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
49
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
50
- return o;
51
- };
52
- const Yd = s((a, n) => {
53
- var { title: o, titleId: l } = a, e = $d(a, ["title", "titleId"]);
54
- let i = c();
55
- return i = o ? l || "title-" + i : void 0, r.createElement(
56
- "svg",
57
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
58
- o ? r.createElement("title", { id: i }, o) : null,
59
- r.createElement("path", { fill: "currentColor", d: "M7.006 16.193H7.7q.336 0 .532-.182a.65.65 0 0 0 .203-.497.63.63 0 0 0-.203-.49q-.196-.189-.532-.189h-.693z" }),
60
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M5.25 4.5c0-.69.56-1.25 1.25-1.25H14a.75.75 0 0 1 .53.22l4 4c.141.14.22.331.22.53v4.25H21a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75v-7a.75.75 0 0 1 .75-.75h2.25zm1.5 7.75h10.5v-3.5H14.5c-.69 0-1.25-.56-1.25-1.25V4.75h-6.5zm8-6.44 1.44 1.44h-1.44zM5.956 19v-5.11H7.7q.54 0 .938.203.405.202.623.567.225.364.224.854 0 .483-.224.854-.225.364-.623.567a2.04 2.04 0 0 1-.938.203h-.693V19zm4.365 0v-5.11h1.225l1.323 3.955-.049-.595a36 36 0 0 1-.049-.679q-.014-.343-.014-.581v-2.1h.924V19h-1.225l-1.309-3.955q.021.225.042.532t.035.623q.021.315.021.56V19zm6.116.07q-.512 0-.896-.189a1.5 1.5 0 0 1-.602-.539 1.55 1.55 0 0 1-.21-.812v-2.17q0-.469.21-.812.216-.343.602-.532a1.95 1.95 0 0 1 .896-.196q.518 0 .896.196.384.189.595.532.216.344.217.812h-1.05q0-.308-.175-.469-.168-.16-.483-.161-.316 0-.49.161-.168.161-.168.469v2.17q0 .3.168.469.174.16.49.161.314 0 .483-.161.174-.168.175-.469v-.441h-.756V16.2h1.806v1.33q0 .462-.217.812a1.45 1.45 0 0 1-.595.539q-.378.189-.896.189", clipRule: "evenodd" })
61
- );
62
- });
63
- var l1 = function(a, n) {
64
- var o = {};
65
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
66
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
67
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
68
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
69
- return o;
70
- };
71
- const a1 = s((a, n) => {
72
- var { title: o, titleId: l } = a, e = l1(a, ["title", "titleId"]);
73
- let i = c();
74
- return i = o ? l || "title-" + i : void 0, r.createElement(
75
- "svg",
76
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
77
- o ? r.createElement("title", { id: i }, o) : null,
78
- r.createElement("path", { fill: "currentColor", d: "M13.25 3.5a.25.25 0 0 0-.25-.25H6.5c-.69 0-1.25.56-1.25 1.25v6c0 .138.112.25.25.25h13a.25.25 0 0 0 .25-.25V9a.25.25 0 0 0-.25-.25h-4c-.69 0-1.25-.56-1.25-1.25z" }),
79
- r.createElement("path", { fill: "currentColor", d: "M14.75 4.293a.25.25 0 0 1 .427-.177l2.707 2.707a.25.25 0 0 1-.177.427H15a.25.25 0 0 1-.25-.25zM7.006 16.193H7.7q.336 0 .532-.182a.65.65 0 0 0 .203-.497.63.63 0 0 0-.203-.49q-.196-.189-.532-.189h-.693z" }),
80
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.25 13a.75.75 0 0 1 .75-.75h18a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75zm3.706 6v-5.11H7.7q.54 0 .938.203.405.202.623.567.225.364.224.854 0 .483-.224.854-.225.364-.623.567a2.04 2.04 0 0 1-.938.203h-.693V19zm4.365 0v-5.11h1.225l1.323 3.955-.049-.595a36 36 0 0 1-.049-.679q-.014-.343-.014-.581v-2.1h.924V19h-1.225l-1.309-3.955q.021.225.042.532t.035.623q.021.315.021.56V19zm6.116.07q-.512 0-.896-.189a1.5 1.5 0 0 1-.602-.539 1.55 1.55 0 0 1-.21-.812v-2.17q0-.469.21-.812.216-.343.602-.532a1.95 1.95 0 0 1 .896-.196q.518 0 .896.196.384.189.595.532.216.344.217.812h-1.05q0-.308-.175-.469-.168-.16-.483-.161-.316 0-.49.161-.168.161-.168.469v2.17q0 .3.168.469.174.16.49.161.314 0 .483-.161.174-.168.175-.469v-.441h-.756V16.2h1.806v1.33q0 .462-.217.812a1.45 1.45 0 0 1-.595.539q-.378.189-.896.189", clipRule: "evenodd" })
81
- );
82
- });
83
- var e1 = function(a, n) {
84
- var o = {};
85
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
86
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
87
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
88
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
89
- return o;
90
- };
91
- const o1 = s((a, n) => {
92
- var { title: o, titleId: l } = a, e = e1(a, ["title", "titleId"]);
93
- let i = c();
94
- return i = o ? l || "title-" + i : void 0, r.createElement(
95
- "svg",
96
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
97
- o ? r.createElement("title", { id: i }, o) : null,
98
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M15.763 3.177a1.75 1.75 0 0 1 2.474 0l2.586 2.586a1.75 1.75 0 0 1 0 2.474l-7.414 7.415a3.75 3.75 0 0 1-2.652 1.098H8.311l-1.28 1.28a.75.75 0 0 1-1.061-1.06l1.28-1.28v-2.447a3.75 3.75 0 0 1 1.098-2.652zm1.414 1.06a.25.25 0 0 0-.354 0L9.41 11.652a2.25 2.25 0 0 0-.659 1.59v2.008h2.007a2.25 2.25 0 0 0 1.591-.659l7.415-7.414a.25.25 0 0 0 0-.354zM17.03 6.97a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0m-12 12a.75.75 0 0 1 0 1.06l-1 1a.75.75 0 0 1-1.06-1.06l1-1a.75.75 0 0 1 1.06 0", clipRule: "evenodd" })
99
- );
100
- });
101
- var n1 = function(a, n) {
102
- var o = {};
103
- for (var l in a) Object.prototype.hasOwnProperty.call(a, l) && n.indexOf(l) < 0 && (o[l] = a[l]);
104
- if (a != null && typeof Object.getOwnPropertySymbols == "function")
105
- for (var e = 0, l = Object.getOwnPropertySymbols(a); e < l.length; e++)
106
- n.indexOf(l[e]) < 0 && Object.prototype.propertyIsEnumerable.call(a, l[e]) && (o[l[e]] = a[l[e]]);
107
- return o;
108
- };
109
- const i1 = s((a, n) => {
110
- var { title: o, titleId: l } = a, e = n1(a, ["title", "titleId"]);
111
- let i = c();
112
- return i = o ? l || "title-" + i : void 0, r.createElement(
113
- "svg",
114
- Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: !1, role: "img", ref: n, "aria-labelledby": i }, e),
115
- o ? r.createElement("title", { id: i }, o) : null,
116
- r.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M18.237 3.177a1.75 1.75 0 0 0-2.474 0L8.348 10.59a3.75 3.75 0 0 0-1.098 2.652v2.446l-1.28 1.28a.75.75 0 1 0 1.06 1.061l1.28-1.28h2.447a3.75 3.75 0 0 0 2.652-1.098l7.414-7.414a1.75 1.75 0 0 0 0-2.475zM17.03 8.03a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 1 0 1.06 1.06zm-12 12a.75.75 0 1 0-1.06-1.06l-1 1a.75.75 0 1 0 1.06 1.06z", clipRule: "evenodd" })
117
- );
118
- }), r1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
119
- __proto__: null,
120
- AirplaneFillIcon: S,
121
- AirplaneIcon: t,
122
- AlignBottomFillIcon: v,
123
- AlignBottomIcon: F,
124
- AlignCenterFillIcon: I,
125
- AlignCenterIcon: d,
126
- AlignLeftFillIcon: h,
127
- AlignLeftIcon: C,
128
- AlignMiddleFillIcon: u,
129
- AlignMiddleIcon: p,
130
- AlignRightFillIcon: k,
131
- AlignRightIcon: m,
132
- AlignTopFillIcon: b,
133
- AlignTopIcon: P,
134
- AllergensFillIcon: f,
135
- AllergensIcon: w,
136
- AngleIcon: B,
137
- AngleRulerCircleFillIcon: H,
138
- AngleRulerCircleIcon: T,
139
- AngleRulerTriangleFillIcon: M,
140
- AngleRulerTriangleIcon: R,
141
- ArchiveFillIcon: y,
142
- ArchiveIcon: L,
143
- AreaChartFillIcon: D,
144
- AreaChartIcon: E,
145
- ArrowCirclepathIcon: j,
146
- ArrowDownIcon: O,
147
- ArrowDownRightIcon: A,
148
- ArrowForwardFillIcon: x,
149
- ArrowForwardIcon: q,
150
- ArrowLeftIcon: U,
151
- ArrowRedoIcon: z,
152
- ArrowRightIcon: V,
153
- ArrowRightLeftIcon: W,
154
- ArrowUndoIcon: G,
155
- ArrowUpIcon: _,
156
- ArrowsCirclepathIcon: K,
157
- ArrowsSquarepathIcon: N,
158
- ArrowsUpDownIcon: Q,
159
- BabyWrappedFillIcon: X,
160
- BabyWrappedIcon: Z,
161
- BackpackFillIcon: J,
162
- BackpackIcon: $,
163
- BackwardFillIcon: Y,
164
- BackwardIcon: ll,
165
- BacteriaFillIcon: al,
166
- BacteriaIcon: el,
167
- BagdeFillIcon: ol,
168
- BagdeIcon: nl,
169
- BaggageFillIcon: il,
170
- BaggageIcon: rl,
171
- BandageFillIcon: cl,
172
- BandageIcon: sl,
173
- BankNoteFillIcon: gl,
174
- BankNoteIcon: Sl,
175
- BarChartFillIcon: tl,
176
- BarChartIcon: vl,
177
- BedFillIcon: Fl,
178
- BedIcon: Il,
179
- BellDotFillIcon: dl,
180
- BellDotIcon: hl,
181
- BellFillIcon: Cl,
182
- BellIcon: ul,
183
- BicycleIcon: pl,
184
- BoatFillIcon: kl,
185
- BoatIcon: ml,
186
- BoneBrokenIcon: bl,
187
- BoneFillIcon: Pl,
188
- BoneIcon: fl,
189
- BookFillIcon: wl,
190
- BookIcon: Bl,
191
- BookmarkDashIcon: Hl,
192
- BookmarkFillIcon: Tl,
193
- BookmarkIcon: Ml,
194
- BooksFillIcon: Rl,
195
- BooksIcon: yl,
196
- BowlFillIcon: Ll,
197
- BowlIcon: Dl,
198
- BrailleFillIcon: El,
199
- BrailleIcon: jl,
200
- BranchingIcon: Ol,
201
- BriefcaseClockFillIcon: Al,
202
- BriefcaseClockIcon: xl,
203
- BriefcaseFillIcon: ql,
204
- BriefcaseIcon: Ul,
205
- BroadcastIcon: zl,
206
- BroadcastMinusCircleFillIcon: Vl,
207
- BroadcastMinusCircleIcon: Wl,
208
- BroadcastPlusCircleFillIcon: Gl,
209
- BroadcastPlusCircleIcon: _l,
210
- BubbleChartFillIcon: Kl,
211
- BubbleChartIcon: Nl,
212
- BucketFillIcon: Ql,
213
- BucketIcon: Xl,
214
- BucketMopFillIcon: Zl,
215
- BucketMopIcon: Jl,
216
- BugFillIcon: $l,
217
- BugIcon: Yl,
218
- Buildings2FillIcon: la,
219
- Buildings2Icon: aa,
220
- Buildings3FillIcon: ea,
221
- Buildings3Icon: oa,
222
- BulletListIcon: na,
223
- BusFillIcon: ia,
224
- BusIcon: ra,
225
- CalculatorFillIcon: ca,
226
- CalculatorIcon: sa,
227
- CalendarFillIcon: ga,
228
- CalendarIcon: Sa,
229
- CameraFillIcon: ta,
230
- CameraIcon: va,
231
- CameraTriangleFillIcon: Fa,
232
- CameraTriangleIcon: Ia,
233
- CandleFillIcon: da,
234
- CandleIcon: ha,
235
- CaptionsFillIcon: Ca,
236
- CaptionsIcon: ua,
237
- CarFillIcon: pa,
238
- CarIcon: ka,
239
- CardFillIcon: ma,
240
- CardIcon: ba,
241
- CaretDownCircleFillIcon: Pa,
242
- CaretDownCircleIcon: fa,
243
- CaretDownFillIcon: wa,
244
- CaretDownIcon: Ba,
245
- CaretLeftCircleFillIcon: Ha,
246
- CaretLeftCircleIcon: Ta,
247
- CaretLeftFillIcon: Ma,
248
- CaretLeftIcon: Ra,
249
- CaretLeftRightFillIcon: ya,
250
- CaretLeftRightIcon: La,
251
- CaretRightCircleFillIcon: Da,
252
- CaretRightCircleIcon: Ea,
253
- CaretRightFillIcon: ja,
254
- CaretRightIcon: Oa,
255
- CaretUpCircleFillIcon: Aa,
256
- CaretUpCircleIcon: xa,
257
- CaretUpDownFillIcon: qa,
258
- CaretUpDownFilledDownIcon: Ua,
259
- CaretUpDownFilledUpIcon: za,
260
- CaretUpDownIcon: Va,
261
- CaretUpFillIcon: Wa,
262
- CaretUpIcon: Ga,
263
- ChangingRoomFillIcon: _a,
264
- ChangingRoomIcon: Ka,
265
- Chat2FillIcon: Na,
266
- Chat2Icon: Qa,
267
- ChatCheckmarkFillIcon: Xa,
268
- ChatCheckmarkIcon: Za,
269
- ChatElipsisFillIcon: Ja,
270
- ChatElipsisIcon: $a,
271
- ChatExclamationmarkFillIcon: Ya,
272
- ChatExclamationmarkIcon: le,
273
- ChatFillIcon: ae,
274
- ChatIcon: ee,
275
- CheckmarkCircleFillIcon: oe,
276
- CheckmarkCircleIcon: ne,
277
- CheckmarkIcon: ie,
278
- ChefHatFillIcon: re,
279
- ChefHatIcon: ce,
280
- ChevronDownCircleFillIcon: se,
281
- ChevronDownCircleIcon: ge,
282
- ChevronDownDoubleCircleFillIcon: Se,
283
- ChevronDownDoubleCircleIcon: te,
284
- ChevronDownDoubleIcon: ve,
285
- ChevronDownIcon: Fe,
286
- ChevronDownUpIcon: Ie,
287
- ChevronLeftCircleFillIcon: de,
288
- ChevronLeftCircleIcon: he,
289
- ChevronLeftDoubleCircleFillIcon: Ce,
290
- ChevronLeftDoubleCircleIcon: ue,
291
- ChevronLeftDoubleIcon: pe,
292
- ChevronLeftFirstCircleFillIcon: ke,
293
- ChevronLeftFirstCircleIcon: me,
294
- ChevronLeftFirstIcon: be,
295
- ChevronLeftIcon: Pe,
296
- ChevronRightCircleFillIcon: fe,
297
- ChevronRightCircleIcon: we,
298
- ChevronRightDoubleCircleFillIcon: Be,
299
- ChevronRightDoubleCircleIcon: He,
300
- ChevronRightDoubleIcon: Te,
301
- ChevronRightIcon: Me,
302
- ChevronRightLastCircleFillIcon: Re,
303
- ChevronRightLastCircleIcon: ye,
304
- ChevronRightLastIcon: Le,
305
- ChevronUpCircleFillIcon: De,
306
- ChevronUpCircleIcon: Ee,
307
- ChevronUpDoubleCircleFillIcon: je,
308
- ChevronUpDoubleCircleIcon: Oe,
309
- ChevronUpDoubleIcon: Ae,
310
- ChevronUpDownIcon: xe,
311
- ChevronUpIcon: qe,
312
- ChildEyesFillIcon: Ue,
313
- ChildEyesIcon: ze,
314
- ChildHairEyesFillIcon: Ve,
315
- ChildHairEyesIcon: We,
316
- CigaretteFillIcon: Ge,
317
- CigaretteIcon: _e,
318
- CircleBrokenIcon: Ke,
319
- CircleFillIcon: Ne,
320
- CircleIcon: Qe,
321
- CircleSlashFillIcon: Xe,
322
- CircleSlashIcon: Ze,
323
- ClipboardCheckmarkFillIcon: Je,
324
- ClipboardCheckmarkIcon: $e,
325
- ClipboardFillIcon: Ye,
326
- ClipboardIcon: lo,
327
- ClipboardLinkFillIcon: ao,
328
- ClipboardLinkIcon: eo,
329
- ClipboardXMarkFillIcon: oo,
330
- ClipboardXMarkIcon: no,
331
- ClockDashedIcon: io,
332
- ClockFillIcon: ro,
333
- ClockIcon: co,
334
- ClothingHangerFillIcon: so,
335
- ClothingHangerIcon: go,
336
- CloudDownFillIcon: So,
337
- CloudDownIcon: to,
338
- CloudFillIcon: vo,
339
- CloudIcon: Fo,
340
- CloudSlashFillIcon: Io,
341
- CloudSlashIcon: ho,
342
- CloudUpFillIcon: Co,
343
- CloudUpIcon: uo,
344
- CodeIcon: po,
345
- CoffeeFillIcon: ko,
346
- CoffeeIcon: mo,
347
- CogFillIcon: bo,
348
- CogIcon: Po,
349
- CogRotationFillIcon: fo,
350
- CogRotationIcon: wo,
351
- Combifridge1FillIcon: Bo,
352
- Combifridge1Icon: Ho,
353
- Combifridge2FillIcon: To,
354
- Combifridge2Icon: Mo,
355
- CompassFillIcon: Ro,
356
- CompassIcon: yo,
357
- ComponentFillIcon: Lo,
358
- ComponentIcon: Do,
359
- CurrencyExchangeIcon: Eo,
360
- CutleryFillIcon: jo,
361
- CutleryIcon: Oo,
362
- DatabaseFillIcon: Ao,
363
- DatabaseIcon: xo,
364
- Density1FillIcon: qo,
365
- Density1Icon: Uo,
366
- Density2FillIcon: zo,
367
- Density2Icon: Vo,
368
- Density3Icon: Wo,
369
- DiamondFillIcon: Go,
370
- DiamondIcon: _o,
371
- DishwasherFillIcon: Ko,
372
- DishwasherIcon: No,
373
- DivideIcon: Qo,
374
- DocPencilFillIcon: Xo,
375
- DocPencilIcon: Zo,
376
- DogFillIcon: Jo,
377
- DogHarnessFillIcon: $o,
378
- DogHarnessIcon: Yo,
379
- DogIcon: ln,
380
- DonutChartFillIcon: an,
381
- DonutChartIcon: en,
382
- DonutsFillIcon: on,
383
- DonutsIcon: nn,
384
- DoorFillIcon: rn,
385
- DoorIcon: cn,
386
- DoorOpenFillIcon: sn,
387
- DoorOpenIcon: gn,
388
- DownloadIcon: Sn,
389
- DragHorizontalIcon: tn,
390
- DragVerticalIcon: vn,
391
- EarFillIcon: Fn,
392
- EarIcon: In,
393
- EarSlashFillIcon: dn,
394
- EarSlashIcon: hn,
395
- EarSoundwavesFillIcon: Cn,
396
- EarSoundwavesIcon: un,
397
- EarthFillIcon: pn,
398
- EarthIcon: kn,
399
- ElevatorFillIcon: mn,
400
- ElevatorIcon: bn,
401
- EnterIcon: Pn,
402
- EnvelopeClosedFillIcon: fn,
403
- EnvelopeClosedIcon: wn,
404
- EnvelopeOpenFillIcon: Bn,
405
- EnvelopeOpenIcon: Hn,
406
- EqualsIcon: Tn,
407
- EraserFillIcon: Mn,
408
- EraserIcon: Rn,
409
- EscalatorIcon: yn,
410
- EthernetIcon: Ln,
411
- ExclamationmarkIcon: Dn,
412
- ExclamationmarkTriangleFillIcon: En,
413
- ExclamationmarkTriangleIcon: jn,
414
- ExpandIcon: On,
415
- ExternalLinkFillIcon: An,
416
- ExternalLinkIcon: xn,
417
- EyeClosedIcon: qn,
418
- EyeFillIcon: Un,
419
- EyeIcon: zn,
420
- EyeObfuscatedFillIcon: Vn,
421
- EyeObfuscatedIcon: Wn,
422
- EyeSlashFillIcon: Gn,
423
- EyeSlashIcon: _n,
424
- EyeWithPupilFillIcon: Kn,
425
- EyeWithPupilIcon: Nn,
426
- FaceCryFillIcon: Qn,
427
- FaceCryIcon: Xn,
428
- FaceFillIcon: Zn,
429
- FaceFrownFillIcon: Jn,
430
- FaceFrownIcon: $n,
431
- FaceIcon: Yn,
432
- FaceLaughFillIcon: li,
433
- FaceLaughIcon: ai,
434
- FaceSmileFillIcon: ei,
435
- FaceSmileIcon: oi,
436
- FeedingBottleFillIcon: ni,
437
- FeedingBottleIcon: ii,
438
- FigureChildFillIcon: ri,
439
- FigureChildIcon: ci,
440
- FigureCombinationFillIcon: si,
441
- FigureCombinationIcon: gi,
442
- FigureFillIcon: Si,
443
- FigureIcon: ti,
444
- FigureInwardFillIcon: vi,
445
- FigureInwardIcon: Fi,
446
- FigureOutwardFillIcon: Ii,
447
- FigureOutwardIcon: di,
448
- FileCheckmarkFillIcon: hi,
449
- FileCheckmarkIcon: Ci,
450
- FileCodeFillIcon: ui,
451
- FileCodeIcon: pi,
452
- FileCsvFillIcon: ki,
453
- FileCsvIcon: mi,
454
- FileExcelFillIcon: bi,
455
- FileExcelIcon: Pi,
456
- FileExportFillIcon: fi,
457
- FileExportIcon: wi,
458
- FileFillIcon: Bi,
459
- FileIcon: Hi,
460
- FileImageFillIcon: Ti,
461
- FileImageIcon: Mi,
462
- FileImportFillIcon: Ri,
463
- FileImportIcon: yi,
464
- FileJpegFillIcon: Jd,
465
- FileJpegIcon: Xd,
466
- FileJsonFillIcon: Li,
467
- FileJsonIcon: Di,
468
- FileLoadingFillIcon: Ei,
469
- FileLoadingIcon: ji,
470
- FileParagraphFillIcon: Oi,
471
- FileParagraphIcon: Ai,
472
- FilePdfFillIcon: xi,
473
- FilePdfIcon: qi,
474
- FilePlusFillIcon: Ui,
475
- FilePlusIcon: zi,
476
- FilePngFillIcon: a1,
477
- FilePngIcon: Yd,
478
- FileResetFillIcon: Vi,
479
- FileResetIcon: Wi,
480
- FileSearchFillIcon: Gi,
481
- FileSearchIcon: _i,
482
- FileShredderFillIcon: Ki,
483
- FileShredderIcon: Ni,
484
- FileTextFillIcon: Qi,
485
- FileTextIcon: Xi,
486
- FileWordFillIcon: Zi,
487
- FileWordIcon: Ji,
488
- FileXMarkFillIcon: $i,
489
- FileXMarkIcon: Yi,
490
- FilesFillIcon: lr,
491
- FilesIcon: ar,
492
- FilterIcon: er,
493
- FingerButtonFillIcon: or,
494
- FingerButtonIcon: nr,
495
- FingerMobileFillIcon: ir,
496
- FingerMobileIcon: rr,
497
- FirstAidFillIcon: cr,
498
- FirstAidIcon: sr,
499
- FirstAidKitFillIcon: gr,
500
- FirstAidKitIcon: Sr,
501
- FlagCrossFillIcon: tr,
502
- FlagCrossIcon: vr,
503
- FloppydiskFillIcon: Fr,
504
- FloppydiskIcon: Ir,
505
- FlowerFillIcon: dr,
506
- FlowerIcon: hr,
507
- FlowerPensionFillIcon: Cr,
508
- FlowerPensionIcon: ur,
509
- FlowerPetalFallingFillIcon: pr,
510
- FlowerPetalFallingIcon: kr,
511
- FlowerPetalsFillIcon: mr,
512
- FlowerPetalsIcon: br,
513
- FolderFileFillIcon: Pr,
514
- FolderFileIcon: fr,
515
- FolderFillIcon: wr,
516
- FolderIcon: Br,
517
- FolderMinusFillIcon: Hr,
518
- FolderMinusIcon: Tr,
519
- FolderPlusFillIcon: Mr,
520
- FolderPlusIcon: Rr,
521
- ForkFillIcon: yr,
522
- ForkIcon: Lr,
523
- ForwardFillIcon: Dr,
524
- ForwardIcon: Er,
525
- FreezerFillIcon: jr,
526
- FreezerIcon: Or,
527
- FunnelFillIcon: Ar,
528
- FunnelIcon: xr,
529
- GavelFillIcon: qr,
530
- GavelIcon: Ur,
531
- GavelSoundBlockFillIcon: zr,
532
- GavelSoundBlockIcon: Vr,
533
- GlassFillIcon: Wr,
534
- GlassIcon: Gr,
535
- GlassesFillIcon: _r,
536
- GlassesIcon: Kr,
537
- GlobeFillIcon: Nr,
538
- GlobeIcon: Qr,
539
- GlobeSlashFillIcon: Xr,
540
- GlobeSlashIcon: Zr,
541
- HandBandageFillIcon: Jr,
542
- HandBandageIcon: $r,
543
- HandFingerFillIcon: Yr,
544
- HandFingerIcon: lc,
545
- HandHeartFillIcon: ac,
546
- HandHeartIcon: ec,
547
- HandKnotFilledIcon: oc,
548
- HandKnotIcon: nc,
549
- HandShakeHeartFillIcon: ic,
550
- HandShakeHeartIcon: rc,
551
- HandshakeFillIcon: cc,
552
- HandshakeIcon: sc,
553
- HangerIcon: gc,
554
- HardHatFillIcon: Sc,
555
- HardHatIcon: tc,
556
- HashtagIcon: vc,
557
- HatSchoolFillIcon: Fc,
558
- HatSchoolIcon: Ic,
559
- HddDownFillIcon: dc,
560
- HddDownIcon: hc,
561
- HddUpFillIcon: Cc,
562
- HddUpIcon: uc,
563
- HeadCloudFillIcon: pc,
564
- HeadCloudIcon: kc,
565
- HeadFillIcon: mc,
566
- HeadHeartFillIcon: bc,
567
- HeadHeartIcon: Pc,
568
- HeadIcon: fc,
569
- HearingLoopFillIcon: wc,
570
- HearingLoopIcon: Bc,
571
- HearingLoopRadioFillIcon: Hc,
572
- HearingLoopRadioIcon: Tc,
573
- HeartBrokenFillIcon: Mc,
574
- HeartBrokenIcon: Rc,
575
- HeartFillIcon: yc,
576
- HeartIcon: Lc,
577
- HexagonGridFillIcon: Dc,
578
- HexagonGridIcon: Ec,
579
- HikingTrailSignFillIcon: jc,
580
- HikingTrailSignIcon: Oc,
581
- HospitalFillIcon: Ac,
582
- HospitalIcon: xc,
583
- HourglassBottomFilledIcon: qc,
584
- HourglassIcon: Uc,
585
- HourglassTopFilledIcon: zc,
586
- HouseFillIcon: Vc,
587
- HouseHeartFillIcon: Wc,
588
- HouseHeartIcon: Gc,
589
- HouseIcon: _c,
590
- ImageFillIcon: Kc,
591
- ImageIcon: Nc,
592
- InboxDownFillIcon: Qc,
593
- InboxDownIcon: Xc,
594
- InboxFillIcon: Zc,
595
- InboxIcon: Jc,
596
- InboxUpFillIcon: $c,
597
- InboxUpIcon: Yc,
598
- InformationIcon: ls,
599
- InformationSquareFillIcon: as,
600
- InformationSquareIcon: es,
601
- IvFluidBagFillIcon: os,
602
- IvFluidBagIcon: ns,
603
- KeyHorizontalFillIcon: is,
604
- KeyHorizontalIcon: rs,
605
- KeyVerticalFillIcon: cs,
606
- KeyVerticalIcon: ss,
607
- KnifeFillIcon: gs,
608
- KnifeIcon: Ss,
609
- KronerIcon: ts,
610
- LanguageIcon: vs,
611
- LaptopFillIcon: Fs,
612
- LaptopIcon: Is,
613
- LaptopTriangleFillIcon: ds,
614
- LaptopTriangleIcon: hs,
615
- LayerMinusFillIcon: Cs,
616
- LayerMinusIcon: us,
617
- LayersFillIcon: ps,
618
- LayersIcon: ks,
619
- LayersPlusFillIcon: ms,
620
- LayersPlusIcon: bs,
621
- LeaveIcon: Ps,
622
- LightBulbFillIcon: fs,
623
- LightBulbIcon: ws,
624
- LightningFillIcon: Bs,
625
- LightningIcon: Hs,
626
- LineGraphDotIcon: Ts,
627
- LineGraphIcon: Ms,
628
- LineGraphStackedIcon: Rs,
629
- LinkBrokenIcon: ys,
630
- LinkIcon: Ls,
631
- LocationPinFillIcon: Ds,
632
- LocationPinIcon: Es,
633
- MagnifyingGlassFillIcon: js,
634
- MagnifyingGlassIcon: Os,
635
- MeasuringTapeFillIcon: As,
636
- MeasuringTapeIcon: xs,
637
- MedicalThermometerFillIcon: i1,
638
- MedicalThermometerIcon: o1,
639
- MedicineBottleFillIcon: qs,
640
- MedicineBottleIcon: Us,
641
- MeetingLargeFillIcon: zs,
642
- MeetingLargeIcon: Vs,
643
- MeetingSmallFillIcon: Ws,
644
- MeetingSmallIcon: Gs,
645
- MegaphoneFillIcon: _s,
646
- MegaphoneIcon: Ks,
647
- MegaphoneSpeakingFillIcon: Ns,
648
- MegaphoneSpeakingIcon: Qs,
649
- MenuElipsisHorizontalCircleFillIcon: Xs,
650
- MenuElipsisHorizontalCircleIcon: Zs,
651
- MenuElipsisHorizontalIcon: Js,
652
- MenuElipsisHorizontalSquareFillIcon: $s,
653
- MenuElipsisHorizontalSquareIcon: Ys,
654
- MenuElipsisVerticalCircleFillIcon: lg,
655
- MenuElipsisVerticalCircleIcon: ag,
656
- MenuElipsisVerticalIcon: eg,
657
- MenuElipsisVerticalSquareFillIcon: og,
658
- MenuElipsisVerticalSquareIcon: ng,
659
- MenuGridIcon: ig,
660
- MenuHamburgerIcon: rg,
661
- MicrobeFillIcon: cg,
662
- MicrobeIcon: sg,
663
- MicrophoneFillIcon: gg,
664
- MicrophoneIcon: Sg,
665
- MicrophoneSlashFillIcon: tg,
666
- MicrophoneSlashIcon: vg,
667
- MigrationIcon: Fg,
668
- MinusCircleFillIcon: Ig,
669
- MinusCircleIcon: dg,
670
- MinusIcon: hg,
671
- MobileFillIcon: Cg,
672
- MobileIcon: ug,
673
- MobileSmallFillIcon: pg,
674
- MobileSmallIcon: kg,
675
- MobileTriangleFillIcon: mg,
676
- MobileTriangleIcon: bg,
677
- MonitorFillIcon: Pg,
678
- MonitorIcon: fg,
679
- MonitorTriangleFillIcon: wg,
680
- MonitorTriangleIcon: Bg,
681
- MoonFillIcon: Hg,
682
- MoonIcon: Tg,
683
- MotorcycleFillIcon: Mg,
684
- MotorcycleIcon: Rg,
685
- MountainFillIcon: yg,
686
- MountainIcon: Lg,
687
- MugFillIcon: Dg,
688
- MugIcon: Eg,
689
- MultiplyIcon: jg,
690
- NewspaperFillIcon: Og,
691
- NewspaperIcon: Ag,
692
- NoSmokingFillIcon: xg,
693
- NoSmokingIcon: qg,
694
- NokIcon: Ug,
695
- NotePencilDashIcon: zg,
696
- NotePencilFillIcon: Vg,
697
- NotePencilIcon: Wg,
698
- NumberListIcon: Gg,
699
- OpenSourceFillIcon: _g,
700
- OpenSourceIcon: Kg,
701
- Over18FillIcon: Ng,
702
- Over18Icon: Qg,
703
- PackageFillIcon: Xg,
704
- PackageIcon: Zg,
705
- PadlockLockedFillIcon: Jg,
706
- PadlockLockedIcon: $g,
707
- PadlockUnlockedFillIcon: Yg,
708
- PadlockUnlockedIcon: lS,
709
- PaletteFillIcon: aS,
710
- PaletteIcon: eS,
711
- PaperclipIcon: oS,
712
- PaperplaneFillIcon: nS,
713
- PaperplaneIcon: iS,
714
- ParagraphIcon: rS,
715
- ParasolBeachFillIcon: cS,
716
- ParasolBeachIcon: sS,
717
- ParkingFillIcon: gS,
718
- ParkingIcon: SS,
719
- PassportFillIcon: tS,
720
- PassportIcon: vS,
721
- PasswordHiddenIcon: FS,
722
- PauseFillIcon: IS,
723
- PauseIcon: dS,
724
- PencilBoardFillIcon: hS,
725
- PencilBoardIcon: CS,
726
- PencilFillIcon: uS,
727
- PencilIcon: pS,
728
- PencilLineFillIcon: kS,
729
- PencilLineIcon: mS,
730
- PencilWritingFillIcon: bS,
731
- PencilWritingIcon: PS,
732
- PentagonFillIcon: fS,
733
- PentagonIcon: wS,
734
- PercentIcon: BS,
735
- PersonChatFillIcon: HS,
736
- PersonChatIcon: TS,
737
- PersonCheckmarkFillIcon: MS,
738
- PersonCheckmarkIcon: RS,
739
- PersonCircleFillIcon: yS,
740
- PersonCircleIcon: LS,
741
- PersonCrossFillIcon: DS,
742
- PersonCrossIcon: ES,
743
- PersonEnvelopeFillIcon: jS,
744
- PersonEnvelopeIcon: OS,
745
- PersonFillIcon: AS,
746
- PersonGavelFillIcon: xS,
747
- PersonGavelIcon: qS,
748
- PersonGroupFillIcon: US,
749
- PersonGroupIcon: zS,
750
- PersonHeadsetFillIcon: VS,
751
- PersonHeadsetIcon: WS,
752
- PersonIcon: GS,
753
- PersonMinusFillIcon: _S,
754
- PersonMinusIcon: KS,
755
- PersonPencilFillIcon: NS,
756
- PersonPencilIcon: QS,
757
- PersonPlusFillIcon: XS,
758
- PersonPlusIcon: ZS,
759
- PersonPregnantFillIcon: JS,
760
- PersonPregnantIcon: $S,
761
- PersonRectangleFillIcon: YS,
762
- PersonRectangleIcon: lt,
763
- PersonSuitFillIcon: at,
764
- PersonSuitIcon: et,
765
- PersonTallShortFillIcon: ot,
766
- PersonTallShortIcon: nt,
767
- PhoneFillIcon: it,
768
- PhoneIcon: rt,
769
- PieChartFillIcon: ct,
770
- PieChartIcon: st,
771
- PiggybankFillIcon: gt,
772
- PiggybankIcon: St,
773
- PillCircleFillIcon: tt,
774
- PillCircleIcon: vt,
775
- PillCircleRectangleFillIcon: Ft,
776
- PillCircleRectangleIcon: It,
777
- PillRectangleFillIcon: dt,
778
- PillRectangleIcon: ht,
779
- PinFillIcon: Ct,
780
- PinIcon: ut,
781
- PlantFillIcon: pt,
782
- PlantIcon: kt,
783
- PlateFillIcon: mt,
784
- PlateIcon: bt,
785
- PlayFillIcon: Pt,
786
- PlayIcon: ft,
787
- PlusCircleFillIcon: wt,
788
- PlusCircleIcon: Bt,
789
- PlusIcon: Ht,
790
- PlusMinusSlashIcon: Tt,
791
- PortalFillIcon: Mt,
792
- PortalIcon: Rt,
793
- PresentationFillIcon: yt,
794
- PresentationIcon: Lt,
795
- PrinterLargeFillIcon: Dt,
796
- PrinterLargeIcon: Et,
797
- PrinterLargeTriangleFillIcon: jt,
798
- PrinterLargeTriangleIcon: Ot,
799
- PrinterSmallFillIcon: At,
800
- PrinterSmallIcon: xt,
801
- PrinterSmallTriangleFillIcon: qt,
802
- PrinterSmallTriangleIcon: Ut,
803
- PushPinFillIcon: zt,
804
- PushPinIcon: Vt,
805
- PuzzlePieceFillIcon: Wt,
806
- PuzzlePieceIcon: Gt,
807
- QrCodeFillIcon: _t,
808
- QrCodeIcon: Kt,
809
- QrCodeScanningFillIcon: Nt,
810
- QrCodeScanningIcon: Qt,
811
- QuestionmarkDiamondFillIcon: Xt,
812
- QuestionmarkDiamondIcon: Zt,
813
- QuestionmarkIcon: Jt,
814
- QuietZoneFillIcon: $t,
815
- QuietZoneIcon: Yt,
816
- RaindropFillIcon: lv,
817
- RaindropIcon: av,
818
- ReceiptFillIcon: ev,
819
- ReceiptIcon: ov,
820
- ReceptionFillIcon: nv,
821
- ReceptionIcon: iv,
822
- RecordFillIcon: rv,
823
- RecordIcon: cv,
824
- RectangleSectionsFillIcon: sv,
825
- RectangleSectionsIcon: gv,
826
- RecycleFillIcon: Sv,
827
- RecycleIcon: tv,
828
- RefrigeratorFillIcon: vv,
829
- RefrigeratorIcon: Fv,
830
- RoadblockFillIcon: Iv,
831
- RoadblockIcon: dv,
832
- RobotFillIcon: hv,
833
- RobotFrownFillIcon: Cv,
834
- RobotFrownIcon: uv,
835
- RobotIcon: pv,
836
- RobotSmileFillIcon: kv,
837
- RobotSmileIcon: mv,
838
- RocketFillIcon: bv,
839
- RocketIcon: Pv,
840
- RockingHorseFillIcon: fv,
841
- RockingHorseIcon: wv,
842
- RotateLeftFillIcon: Bv,
843
- RotateLeftIcon: Hv,
844
- RotateRightFillIcon: Tv,
845
- RotateRightIcon: Mv,
846
- RouterIcon: Rv,
847
- RulerFillIcon: yv,
848
- RulerIcon: Lv,
849
- RulersFillIcon: Dv,
850
- RulersIcon: Ev,
851
- SackFillIcon: jv,
852
- SackIcon: Ov,
853
- SackKronerFillIcon: Av,
854
- SackKronerIcon: xv,
855
- SackPensionFillIcon: qv,
856
- SackPensionIcon: Uv,
857
- SandboxFillIcon: zv,
858
- SandboxIcon: Vv,
859
- ScissorsFillIcon: Wv,
860
- ScissorsIcon: Gv,
861
- SealCheckmarkFillIcon: _v,
862
- SealCheckmarkIcon: Kv,
863
- SealFillIcon: Nv,
864
- SealIcon: Qv,
865
- SealXMarkFillIcon: Xv,
866
- SealXMarkIcon: Zv,
867
- SectorChartFillIcon: Jv,
868
- SectorChartIcon: $v,
869
- ShieldFillIcon: Yv,
870
- ShieldIcon: lF,
871
- ShieldLockFillIcon: aF,
872
- ShieldLockIcon: eF,
873
- ShoppingBasketFillIcon: oF,
874
- ShoppingBasketIcon: nF,
875
- ShowerFillIcon: iF,
876
- ShowerIcon: rF,
877
- ShrinkIcon: cF,
878
- SidebarBothFillIcon: sF,
879
- SidebarBothIcon: gF,
880
- SidebarLeftFillIcon: SF,
881
- SidebarLeftIcon: tF,
882
- SidebarRightFillIcon: vF,
883
- SidebarRightIcon: FF,
884
- SignLanguageSingleHandFillIcon: IF,
885
- SignLanguageSingleHandIcon: dF,
886
- SignLanguageTwoHandsFillIcon: hF,
887
- SignLanguageTwoHandsIcon: CF,
888
- SilhouetteFillIcon: uF,
889
- SilhouetteIcon: pF,
890
- SkipBackwardFillIcon: kF,
891
- SkipBackwardIcon: mF,
892
- SkipForwardFillIcon: bF,
893
- SkipForwardIcon: PF,
894
- SnowIcon: fF,
895
- SparkLargeIcon: wF,
896
- SparkSmallIcon: BF,
897
- SparklesFillIcon: HF,
898
- SparklesIcon: TF,
899
- SpeakerFillIcon: MF,
900
- SpeakerIcon: RF,
901
- SpeakerSlashFillIcon: yF,
902
- SpeakerSlashIcon: LF,
903
- SpeakerSoundWave1FillIcon: DF,
904
- SpeakerSoundWave1Icon: EF,
905
- SpeakerSoundWave2FillIcon: jF,
906
- SpeakerSoundWave2Icon: OF,
907
- SpeakerSoundWave3FillIcon: AF,
908
- SpeakerSoundWave3Icon: xF,
909
- SplitHorizontalFillIcon: qF,
910
- SplitHorizontalIcon: UF,
911
- SplitVerticalFillIcon: zF,
912
- SplitVerticalIcon: VF,
913
- SpoonFillIcon: WF,
914
- SpoonIcon: GF,
915
- SquareFillIcon: _F,
916
- SquareIcon: KF,
917
- SquarerootIcon: NF,
918
- StaircaseIcon: QF,
919
- StarFillIcon: XF,
920
- StarIcon: ZF,
921
- StarOfLifeFillIcon: JF,
922
- StarOfLifeIcon: $F,
923
- StarsEuIcon: YF,
924
- StethoscopeIcon: lI,
925
- StopFillIcon: aI,
926
- StopIcon: eI,
927
- StrollerFillIcon: oI,
928
- StrollerIcon: nI,
929
- SunFillIcon: iI,
930
- SunIcon: rI,
931
- TableFillIcon: cI,
932
- TableIcon: sI,
933
- TabletFillIcon: gI,
934
- TabletIcon: SI,
935
- TabsAddFillIcon: tI,
936
- TabsAddIcon: vI,
937
- TabsFillIcon: FI,
938
- TabsIcon: II,
939
- TabsRemoveFillIcon: dI,
940
- TabsRemoveIcon: hI,
941
- TagFillIcon: CI,
942
- TagIcon: uI,
943
- TapWaterFillIcon: pI,
944
- TapWaterIcon: kI,
945
- TasklistFillIcon: mI,
946
- TasklistIcon: bI,
947
- TasklistSaveFillIcon: PI,
948
- TasklistSaveIcon: fI,
949
- TasklistSendFillIcon: wI,
950
- TasklistSendIcon: BI,
951
- TasklistStartFillIcon: HI,
952
- TasklistStartIcon: TI,
953
- TeddyBearFillIcon: MI,
954
- TeddyBearIcon: RI,
955
- TenancyFillIcon: yI,
956
- TenancyIcon: LI,
957
- TerminalFillIcon: DI,
958
- TerminalIcon: EI,
959
- TestFlaskFillIcon: jI,
960
- TestFlaskIcon: OI,
961
- ThermometerFillIcon: AI,
962
- ThermometerIcon: xI,
963
- ThumbDownFillIcon: qI,
964
- ThumbDownIcon: UI,
965
- ThumbUpFillIcon: zI,
966
- ThumbUpIcon: VI,
967
- TimerFillIcon: WI,
968
- TimerIcon: GI,
969
- TimerPauseFillIcon: _I,
970
- TimerPauseIcon: KI,
971
- TimerStartFillIcon: NI,
972
- TimerStartIcon: QI,
973
- ToiletFillIcon: XI,
974
- ToiletIcon: ZI,
975
- TokenFillIcon: JI,
976
- TokenIcon: $I,
977
- ToothFillIcon: YI,
978
- ToothIcon: ld,
979
- TrainFillIcon: ad,
980
- TrainIcon: ed,
981
- TramFillIcon: od,
982
- TramIcon: nd,
983
- TrashFillIcon: id,
984
- TrashIcon: rd,
985
- TrayFoodFillIcon: cd,
986
- TrayFoodIcon: sd,
987
- TrendDownIcon: gd,
988
- TrendFlatIcon: Sd,
989
- TrendUpIcon: td,
990
- TriangleFillIcon: vd,
991
- TriangleIcon: Fd,
992
- TruckFillIcon: Id,
993
- TruckIcon: dd,
994
- UmbrellaFillIcon: hd,
995
- UmbrellaIcon: Cd,
996
- UploadIcon: ud,
997
- VideoFillIcon: pd,
998
- VideoIcon: kd,
999
- VideoSlashFillIcon: md,
1000
- VideoSlashIcon: bd,
1001
- VideoplayerFillIcon: Pd,
1002
- VideoplayerIcon: fd,
1003
- VirusFillIcon: wd,
1004
- VirusIcon: Bd,
1005
- VitalsIcon: Hd,
1006
- WaitingRoomFillIcon: Td,
1007
- WaitingRoomIcon: Md,
1008
- WalletFillIcon: Rd,
1009
- WalletIcon: yd,
1010
- WateringCanFillIcon: Ld,
1011
- WateringCanIcon: Dd,
1012
- WaveformIcon: Ed,
1013
- WavesIcon: jd,
1014
- WeightIcon: Od,
1015
- WheelchairFillIcon: Ad,
1016
- WheelchairIcon: xd,
1017
- WrenchFillIcon: qd,
1018
- WrenchIcon: Ud,
1019
- XMarkIcon: zd,
1020
- XMarkOctagonFillIcon: Vd,
1021
- XMarkOctagonIcon: Wd,
1022
- ZoomMinusFillIcon: Gd,
1023
- ZoomMinusIcon: _d,
1024
- ZoomPlusFillIcon: Kd,
1025
- ZoomPlusIcon: Nd
1026
- }, Symbol.toStringTag, { value: "Module" })), c1 = (a) => a.replace(/[A-Z]/g, (n) => `-${n.toLowerCase()}`), S1 = ({ name: a = "inbox" }) => {
1027
- const n = {}, o = ({ name: l, type: e, key: i }) => {
1028
- const g = `<${i} />`;
1029
- n[l] || (n[l] = {}), n[l] = {
1030
- ...n[l],
1031
- [e]: g
1032
- };
1033
- };
1034
- return Object.entries(r1).map(([l]) => {
1035
- const e = c1(l).substring(1);
1036
- let i;
1037
- e.includes("-fill-icon") ? (i = e.replace("-fill-icon", ""), o({ name: i, type: "solid", key: l })) : e.includes("-icon") && (i = e.replace("-icon", ""), o({ name: i, type: "outline", key: l }));
1038
- }), JSON.stringify(n);
1039
- };
1040
- export {
1041
- S1 as Icon
1042
- };