@element-plus_icons-vue.js 219 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278
  1. import { Vt as openBlock, W as createBaseVNode, nt as defineComponent, q as createElementBlock } from "./vue.runtime.esm-bundler-BjtQpYUU.js";
  2. //#region node_modules/@element-plus/icons-vue/dist/index.js
  3. /*! Element Plus Icons Vue v2.3.2 */
  4. var add_location_default = /* @__PURE__ */ defineComponent({
  5. name: "AddLocation",
  6. __name: "add-location",
  7. setup(__props) {
  8. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  9. xmlns: "http://www.w3.org/2000/svg",
  10. viewBox: "0 0 1024 1024"
  11. }, [
  12. createBaseVNode("path", {
  13. fill: "currentColor",
  14. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  15. }),
  16. createBaseVNode("path", {
  17. fill: "currentColor",
  18. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  19. }),
  20. createBaseVNode("path", {
  21. fill: "currentColor",
  22. d: "M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0z"
  23. })
  24. ]));
  25. }
  26. });
  27. var aim_default = /* @__PURE__ */ defineComponent({
  28. name: "Aim",
  29. __name: "aim",
  30. setup(__props) {
  31. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  32. xmlns: "http://www.w3.org/2000/svg",
  33. viewBox: "0 0 1024 1024"
  34. }, [createBaseVNode("path", {
  35. fill: "currentColor",
  36. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  37. }), createBaseVNode("path", {
  38. fill: "currentColor",
  39. d: "M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32m0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32M96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32m576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32"
  40. })]));
  41. }
  42. });
  43. var alarm_clock_default = /* @__PURE__ */ defineComponent({
  44. name: "AlarmClock",
  45. __name: "alarm-clock",
  46. setup(__props) {
  47. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  48. xmlns: "http://www.w3.org/2000/svg",
  49. viewBox: "0 0 1024 1024"
  50. }, [createBaseVNode("path", {
  51. fill: "currentColor",
  52. d: "M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"
  53. }), createBaseVNode("path", {
  54. fill: "currentColor",
  55. d: "m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128z"
  56. })]));
  57. }
  58. });
  59. var apple_default = /* @__PURE__ */ defineComponent({
  60. name: "Apple",
  61. __name: "apple",
  62. setup(__props) {
  63. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  64. xmlns: "http://www.w3.org/2000/svg",
  65. viewBox: "0 0 1024 1024"
  66. }, [createBaseVNode("path", {
  67. fill: "currentColor",
  68. d: "M599.872 203.776a189.4 189.4 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a427 427 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664m-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688s81.28 34.688 136.96 33.536c56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152"
  69. })]));
  70. }
  71. });
  72. var arrow_down_bold_default = /* @__PURE__ */ defineComponent({
  73. name: "ArrowDownBold",
  74. __name: "arrow-down-bold",
  75. setup(__props) {
  76. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  77. xmlns: "http://www.w3.org/2000/svg",
  78. viewBox: "0 0 1024 1024"
  79. }, [createBaseVNode("path", {
  80. fill: "currentColor",
  81. d: "M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496"
  82. })]));
  83. }
  84. });
  85. var arrow_down_default = /* @__PURE__ */ defineComponent({
  86. name: "ArrowDown",
  87. __name: "arrow-down",
  88. setup(__props) {
  89. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  90. xmlns: "http://www.w3.org/2000/svg",
  91. viewBox: "0 0 1024 1024"
  92. }, [createBaseVNode("path", {
  93. fill: "currentColor",
  94. d: "M831.872 340.864 512 652.672 192.128 340.864a30.59 30.59 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.59 30.59 0 0 0-42.752 0z"
  95. })]));
  96. }
  97. });
  98. var arrow_left_bold_default = /* @__PURE__ */ defineComponent({
  99. name: "ArrowLeftBold",
  100. __name: "arrow-left-bold",
  101. setup(__props) {
  102. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  103. xmlns: "http://www.w3.org/2000/svg",
  104. viewBox: "0 0 1024 1024"
  105. }, [createBaseVNode("path", {
  106. fill: "currentColor",
  107. d: "M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0"
  108. })]));
  109. }
  110. });
  111. var arrow_left_default = /* @__PURE__ */ defineComponent({
  112. name: "ArrowLeft",
  113. __name: "arrow-left",
  114. setup(__props) {
  115. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  116. xmlns: "http://www.w3.org/2000/svg",
  117. viewBox: "0 0 1024 1024"
  118. }, [createBaseVNode("path", {
  119. fill: "currentColor",
  120. d: "M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.59 30.59 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.59 30.59 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0"
  121. })]));
  122. }
  123. });
  124. var arrow_right_bold_default = /* @__PURE__ */ defineComponent({
  125. name: "ArrowRightBold",
  126. __name: "arrow-right-bold",
  127. setup(__props) {
  128. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  129. xmlns: "http://www.w3.org/2000/svg",
  130. viewBox: "0 0 1024 1024"
  131. }, [createBaseVNode("path", {
  132. fill: "currentColor",
  133. d: "M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0"
  134. })]));
  135. }
  136. });
  137. var arrow_right_default = /* @__PURE__ */ defineComponent({
  138. name: "ArrowRight",
  139. __name: "arrow-right",
  140. setup(__props) {
  141. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  142. xmlns: "http://www.w3.org/2000/svg",
  143. viewBox: "0 0 1024 1024"
  144. }, [createBaseVNode("path", {
  145. fill: "currentColor",
  146. d: "M340.864 149.312a30.59 30.59 0 0 0 0 42.752L652.736 512 340.864 831.872a30.59 30.59 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"
  147. })]));
  148. }
  149. });
  150. var arrow_up_bold_default = /* @__PURE__ */ defineComponent({
  151. name: "ArrowUpBold",
  152. __name: "arrow-up-bold",
  153. setup(__props) {
  154. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  155. xmlns: "http://www.w3.org/2000/svg",
  156. viewBox: "0 0 1024 1024"
  157. }, [createBaseVNode("path", {
  158. fill: "currentColor",
  159. d: "M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496"
  160. })]));
  161. }
  162. });
  163. var arrow_up_default = /* @__PURE__ */ defineComponent({
  164. name: "ArrowUp",
  165. __name: "arrow-up",
  166. setup(__props) {
  167. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  168. xmlns: "http://www.w3.org/2000/svg",
  169. viewBox: "0 0 1024 1024"
  170. }, [createBaseVNode("path", {
  171. fill: "currentColor",
  172. d: "m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"
  173. })]));
  174. }
  175. });
  176. var avatar_default = /* @__PURE__ */ defineComponent({
  177. name: "Avatar",
  178. __name: "avatar",
  179. setup(__props) {
  180. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  181. xmlns: "http://www.w3.org/2000/svg",
  182. viewBox: "0 0 1024 1024"
  183. }, [createBaseVNode("path", {
  184. fill: "currentColor",
  185. d: "M628.736 528.896A416 416 0 0 1 928 928H96a415.87 415.87 0 0 1 299.264-399.104L512 704zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0"
  186. })]));
  187. }
  188. });
  189. var back_default = /* @__PURE__ */ defineComponent({
  190. name: "Back",
  191. __name: "back",
  192. setup(__props) {
  193. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  194. xmlns: "http://www.w3.org/2000/svg",
  195. viewBox: "0 0 1024 1024"
  196. }, [createBaseVNode("path", {
  197. fill: "currentColor",
  198. d: "M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"
  199. }), createBaseVNode("path", {
  200. fill: "currentColor",
  201. d: "m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"
  202. })]));
  203. }
  204. });
  205. var baseball_default = /* @__PURE__ */ defineComponent({
  206. name: "Baseball",
  207. __name: "baseball",
  208. setup(__props) {
  209. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  210. xmlns: "http://www.w3.org/2000/svg",
  211. viewBox: "0 0 1024 1024"
  212. }, [createBaseVNode("path", {
  213. fill: "currentColor",
  214. d: "M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6m45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104"
  215. }), createBaseVNode("path", {
  216. fill: "currentColor",
  217. d: "M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896M108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1737 1737 0 0 1-11.392-65.728"
  218. })]));
  219. }
  220. });
  221. var basketball_default = /* @__PURE__ */ defineComponent({
  222. name: "Basketball",
  223. __name: "basketball",
  224. setup(__props) {
  225. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  226. xmlns: "http://www.w3.org/2000/svg",
  227. viewBox: "0 0 1024 1024"
  228. }, [createBaseVNode("path", {
  229. fill: "currentColor",
  230. d: "M778.752 788.224a382.46 382.46 0 0 0 116.032-245.632 256.51 256.51 0 0 0-241.728-13.952 762.9 762.9 0 0 1 125.696 259.584m-55.04 44.224a699.65 699.65 0 0 0-125.056-269.632 256.13 256.13 0 0 0-56.064 331.968 382.7 382.7 0 0 0 181.12-62.336m-254.08 61.248A320.13 320.13 0 0 1 557.76 513.6a716 716 0 0 0-48.192-48.128 320.13 320.13 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.13 256.13 0 0 0 331.072-56.448 699.65 699.65 0 0 0-268.8-124.352 382.66 382.66 0 0 0-62.272 180.8m106.56-235.84a762.9 762.9 0 0 1 258.688 125.056 256.51 256.51 0 0 0-13.44-241.088A382.46 382.46 0 0 0 235.84 245.248m318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a780 780 0 0 1 66.176 66.112 320.83 320.83 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6"
  231. })]));
  232. }
  233. });
  234. var bell_filled_default = /* @__PURE__ */ defineComponent({
  235. name: "BellFilled",
  236. __name: "bell-filled",
  237. setup(__props) {
  238. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  239. xmlns: "http://www.w3.org/2000/svg",
  240. viewBox: "0 0 1024 1024"
  241. }, [createBaseVNode("path", {
  242. fill: "currentColor",
  243. d: "M640 832a128 128 0 0 1-256 0zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.13 320.13 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8z"
  244. })]));
  245. }
  246. });
  247. var bell_default = /* @__PURE__ */ defineComponent({
  248. name: "Bell",
  249. __name: "bell",
  250. setup(__props) {
  251. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  252. xmlns: "http://www.w3.org/2000/svg",
  253. viewBox: "0 0 1024 1024"
  254. }, [
  255. createBaseVNode("path", {
  256. fill: "currentColor",
  257. d: "M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64"
  258. }),
  259. createBaseVNode("path", {
  260. fill: "currentColor",
  261. d: "M256 768h512V448a256 256 0 1 0-512 0zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320"
  262. }),
  263. createBaseVNode("path", {
  264. fill: "currentColor",
  265. d: "M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32m352 128h128a64 64 0 0 1-128 0"
  266. })
  267. ]));
  268. }
  269. });
  270. var bicycle_default = /* @__PURE__ */ defineComponent({
  271. name: "Bicycle",
  272. __name: "bicycle",
  273. setup(__props) {
  274. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  275. xmlns: "http://www.w3.org/2000/svg",
  276. viewBox: "0 0 1024 1024"
  277. }, [
  278. createBaseVNode("path", {
  279. fill: "currentColor",
  280. d: "M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  281. }),
  282. createBaseVNode("path", {
  283. fill: "currentColor",
  284. d: "M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  285. }),
  286. createBaseVNode("path", {
  287. fill: "currentColor",
  288. d: "M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  289. }),
  290. createBaseVNode("path", {
  291. fill: "currentColor",
  292. d: "M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384z"
  293. }),
  294. createBaseVNode("path", {
  295. fill: "currentColor",
  296. d: "m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"
  297. })
  298. ]));
  299. }
  300. });
  301. var bottom_left_default = /* @__PURE__ */ defineComponent({
  302. name: "BottomLeft",
  303. __name: "bottom-left",
  304. setup(__props) {
  305. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  306. xmlns: "http://www.w3.org/2000/svg",
  307. viewBox: "0 0 1024 1024"
  308. }, [createBaseVNode("path", {
  309. fill: "currentColor",
  310. d: "M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0z"
  311. }), createBaseVNode("path", {
  312. fill: "currentColor",
  313. d: "M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312z"
  314. })]));
  315. }
  316. });
  317. var bottom_right_default = /* @__PURE__ */ defineComponent({
  318. name: "BottomRight",
  319. __name: "bottom-right",
  320. setup(__props) {
  321. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  322. xmlns: "http://www.w3.org/2000/svg",
  323. viewBox: "0 0 1024 1024"
  324. }, [createBaseVNode("path", {
  325. fill: "currentColor",
  326. d: "M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416z"
  327. }), createBaseVNode("path", {
  328. fill: "currentColor",
  329. d: "M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312z"
  330. })]));
  331. }
  332. });
  333. var bottom_default = /* @__PURE__ */ defineComponent({
  334. name: "Bottom",
  335. __name: "bottom",
  336. setup(__props) {
  337. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  338. xmlns: "http://www.w3.org/2000/svg",
  339. viewBox: "0 0 1024 1024"
  340. }, [createBaseVNode("path", {
  341. fill: "currentColor",
  342. d: "M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"
  343. })]));
  344. }
  345. });
  346. var bowl_default = /* @__PURE__ */ defineComponent({
  347. name: "Bowl",
  348. __name: "bowl",
  349. setup(__props) {
  350. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  351. xmlns: "http://www.w3.org/2000/svg",
  352. viewBox: "0 0 1024 1024"
  353. }, [createBaseVNode("path", {
  354. fill: "currentColor",
  355. d: "M714.432 704a351.74 351.74 0 0 0 148.16-256H161.408a351.74 351.74 0 0 0 148.16 256zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424zM352 768v64h320v-64z"
  356. })]));
  357. }
  358. });
  359. var box_default = /* @__PURE__ */ defineComponent({
  360. name: "Box",
  361. __name: "box",
  362. setup(__props) {
  363. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  364. xmlns: "http://www.w3.org/2000/svg",
  365. viewBox: "0 0 1024 1024"
  366. }, [
  367. createBaseVNode("path", {
  368. fill: "currentColor",
  369. d: "M317.056 128 128 344.064V896h768V344.064L706.944 128zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64"
  370. }),
  371. createBaseVNode("path", {
  372. fill: "currentColor",
  373. d: "M64 320h896v64H64z"
  374. }),
  375. createBaseVNode("path", {
  376. fill: "currentColor",
  377. d: "M448 327.872V640h128V327.872L526.08 128h-28.16zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320z"
  378. })
  379. ]));
  380. }
  381. });
  382. var briefcase_default = /* @__PURE__ */ defineComponent({
  383. name: "Briefcase",
  384. __name: "briefcase",
  385. setup(__props) {
  386. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  387. xmlns: "http://www.w3.org/2000/svg",
  388. viewBox: "0 0 1024 1024"
  389. }, [createBaseVNode("path", {
  390. fill: "currentColor",
  391. d: "M320 320V128h384v192h192v192H128V320zM128 576h768v320H128zm256-256h256.064V192H384z"
  392. })]));
  393. }
  394. });
  395. var brush_filled_default = /* @__PURE__ */ defineComponent({
  396. name: "BrushFilled",
  397. __name: "brush-filled",
  398. setup(__props) {
  399. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  400. xmlns: "http://www.w3.org/2000/svg",
  401. viewBox: "0 0 1024 1024"
  402. }, [createBaseVNode("path", {
  403. fill: "currentColor",
  404. d: "M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128zM192 512V128.064h640V512z"
  405. })]));
  406. }
  407. });
  408. var brush_default = /* @__PURE__ */ defineComponent({
  409. name: "Brush",
  410. __name: "brush",
  411. setup(__props) {
  412. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  413. xmlns: "http://www.w3.org/2000/svg",
  414. viewBox: "0 0 1024 1024"
  415. }, [createBaseVNode("path", {
  416. fill: "currentColor",
  417. d: "M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a664 664 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168"
  418. })]));
  419. }
  420. });
  421. var burger_default = /* @__PURE__ */ defineComponent({
  422. name: "Burger",
  423. __name: "burger",
  424. setup(__props) {
  425. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  426. xmlns: "http://www.w3.org/2000/svg",
  427. viewBox: "0 0 1024 1024"
  428. }, [createBaseVNode("path", {
  429. fill: "currentColor",
  430. d: "M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44M832 448a320 320 0 0 0-640 0zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704z"
  431. })]));
  432. }
  433. });
  434. var calendar_default = /* @__PURE__ */ defineComponent({
  435. name: "Calendar",
  436. __name: "calendar",
  437. setup(__props) {
  438. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  439. xmlns: "http://www.w3.org/2000/svg",
  440. viewBox: "0 0 1024 1024"
  441. }, [createBaseVNode("path", {
  442. fill: "currentColor",
  443. d: "M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"
  444. })]));
  445. }
  446. });
  447. var camera_filled_default = /* @__PURE__ */ defineComponent({
  448. name: "CameraFilled",
  449. __name: "camera-filled",
  450. setup(__props) {
  451. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  452. xmlns: "http://www.w3.org/2000/svg",
  453. viewBox: "0 0 1024 1024"
  454. }, [createBaseVNode("path", {
  455. fill: "currentColor",
  456. d: "M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4m0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  457. })]));
  458. }
  459. });
  460. var camera_default = /* @__PURE__ */ defineComponent({
  461. name: "Camera",
  462. __name: "camera",
  463. setup(__props) {
  464. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  465. xmlns: "http://www.w3.org/2000/svg",
  466. viewBox: "0 0 1024 1024"
  467. }, [createBaseVNode("path", {
  468. fill: "currentColor",
  469. d: "M896 256H128v576h768zm-199.424-64-32.064-64h-304.96l-32 64zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32m416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320m0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448"
  470. })]));
  471. }
  472. });
  473. var caret_bottom_default = /* @__PURE__ */ defineComponent({
  474. name: "CaretBottom",
  475. __name: "caret-bottom",
  476. setup(__props) {
  477. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  478. xmlns: "http://www.w3.org/2000/svg",
  479. viewBox: "0 0 1024 1024"
  480. }, [createBaseVNode("path", {
  481. fill: "currentColor",
  482. d: "m192 384 320 384 320-384z"
  483. })]));
  484. }
  485. });
  486. var caret_left_default = /* @__PURE__ */ defineComponent({
  487. name: "CaretLeft",
  488. __name: "caret-left",
  489. setup(__props) {
  490. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  491. xmlns: "http://www.w3.org/2000/svg",
  492. viewBox: "0 0 1024 1024"
  493. }, [createBaseVNode("path", {
  494. fill: "currentColor",
  495. d: "M672 192 288 511.936 672 832z"
  496. })]));
  497. }
  498. });
  499. var caret_right_default = /* @__PURE__ */ defineComponent({
  500. name: "CaretRight",
  501. __name: "caret-right",
  502. setup(__props) {
  503. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  504. xmlns: "http://www.w3.org/2000/svg",
  505. viewBox: "0 0 1024 1024"
  506. }, [createBaseVNode("path", {
  507. fill: "currentColor",
  508. d: "M384 192v640l384-320.064z"
  509. })]));
  510. }
  511. });
  512. var caret_top_default = /* @__PURE__ */ defineComponent({
  513. name: "CaretTop",
  514. __name: "caret-top",
  515. setup(__props) {
  516. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  517. xmlns: "http://www.w3.org/2000/svg",
  518. viewBox: "0 0 1024 1024"
  519. }, [createBaseVNode("path", {
  520. fill: "currentColor",
  521. d: "M512 320 192 704h639.936z"
  522. })]));
  523. }
  524. });
  525. var cellphone_default = /* @__PURE__ */ defineComponent({
  526. name: "Cellphone",
  527. __name: "cellphone",
  528. setup(__props) {
  529. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  530. xmlns: "http://www.w3.org/2000/svg",
  531. viewBox: "0 0 1024 1024"
  532. }, [createBaseVNode("path", {
  533. fill: "currentColor",
  534. d: "M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64m128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64m128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"
  535. })]));
  536. }
  537. });
  538. var chat_dot_round_default = /* @__PURE__ */ defineComponent({
  539. name: "ChatDotRound",
  540. __name: "chat-dot-round",
  541. setup(__props) {
  542. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  543. xmlns: "http://www.w3.org/2000/svg",
  544. viewBox: "0 0 1024 1024"
  545. }, [createBaseVNode("path", {
  546. fill: "currentColor",
  547. d: "m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.06 461.06 0 0 1-206.912-48.384l-175.616 58.56z"
  548. }), createBaseVNode("path", {
  549. fill: "currentColor",
  550. d: "M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"
  551. })]));
  552. }
  553. });
  554. var chat_dot_square_default = /* @__PURE__ */ defineComponent({
  555. name: "ChatDotSquare",
  556. __name: "chat-dot-square",
  557. setup(__props) {
  558. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  559. xmlns: "http://www.w3.org/2000/svg",
  560. viewBox: "0 0 1024 1024"
  561. }, [createBaseVNode("path", {
  562. fill: "currentColor",
  563. d: "M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  564. }), createBaseVNode("path", {
  565. fill: "currentColor",
  566. d: "M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"
  567. })]));
  568. }
  569. });
  570. var chat_line_round_default = /* @__PURE__ */ defineComponent({
  571. name: "ChatLineRound",
  572. __name: "chat-line-round",
  573. setup(__props) {
  574. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  575. xmlns: "http://www.w3.org/2000/svg",
  576. viewBox: "0 0 1024 1024"
  577. }, [createBaseVNode("path", {
  578. fill: "currentColor",
  579. d: "m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.06 461.06 0 0 1-206.912-48.384l-175.616 58.56z"
  580. }), createBaseVNode("path", {
  581. fill: "currentColor",
  582. d: "M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"
  583. })]));
  584. }
  585. });
  586. var chat_line_square_default = /* @__PURE__ */ defineComponent({
  587. name: "ChatLineSquare",
  588. __name: "chat-line-square",
  589. setup(__props) {
  590. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  591. xmlns: "http://www.w3.org/2000/svg",
  592. viewBox: "0 0 1024 1024"
  593. }, [createBaseVNode("path", {
  594. fill: "currentColor",
  595. d: "M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  596. }), createBaseVNode("path", {
  597. fill: "currentColor",
  598. d: "M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"
  599. })]));
  600. }
  601. });
  602. var chat_round_default = /* @__PURE__ */ defineComponent({
  603. name: "ChatRound",
  604. __name: "chat-round",
  605. setup(__props) {
  606. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  607. xmlns: "http://www.w3.org/2000/svg",
  608. viewBox: "0 0 1024 1024"
  609. }, [createBaseVNode("path", {
  610. fill: "currentColor",
  611. d: "m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"
  612. })]));
  613. }
  614. });
  615. var chat_square_default = /* @__PURE__ */ defineComponent({
  616. name: "ChatSquare",
  617. __name: "chat-square",
  618. setup(__props) {
  619. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  620. xmlns: "http://www.w3.org/2000/svg",
  621. viewBox: "0 0 1024 1024"
  622. }, [createBaseVNode("path", {
  623. fill: "currentColor",
  624. d: "M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  625. })]));
  626. }
  627. });
  628. var check_default = /* @__PURE__ */ defineComponent({
  629. name: "Check",
  630. __name: "check",
  631. setup(__props) {
  632. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  633. xmlns: "http://www.w3.org/2000/svg",
  634. viewBox: "0 0 1024 1024"
  635. }, [createBaseVNode("path", {
  636. fill: "currentColor",
  637. d: "M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"
  638. })]));
  639. }
  640. });
  641. var checked_default = /* @__PURE__ */ defineComponent({
  642. name: "Checked",
  643. __name: "checked",
  644. setup(__props) {
  645. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  646. xmlns: "http://www.w3.org/2000/svg",
  647. viewBox: "0 0 1024 1024"
  648. }, [createBaseVNode("path", {
  649. fill: "currentColor",
  650. d: "M704 192h160v736H160V192h160.064v64H704zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024zM384 192V96h256v96z"
  651. })]));
  652. }
  653. });
  654. var cherry_default = /* @__PURE__ */ defineComponent({
  655. name: "Cherry",
  656. __name: "cherry",
  657. setup(__props) {
  658. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  659. xmlns: "http://www.w3.org/2000/svg",
  660. viewBox: "0 0 1024 1024"
  661. }, [createBaseVNode("path", {
  662. fill: "currentColor",
  663. d: "M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6M288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320m448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320"
  664. })]));
  665. }
  666. });
  667. var chicken_default = /* @__PURE__ */ defineComponent({
  668. name: "Chicken",
  669. __name: "chicken",
  670. setup(__props) {
  671. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  672. xmlns: "http://www.w3.org/2000/svg",
  673. viewBox: "0 0 1024 1024"
  674. }, [createBaseVNode("path", {
  675. fill: "currentColor",
  676. d: "M349.952 716.992 478.72 588.16a106.7 106.7 0 0 1-26.176-19.072 106.7 106.7 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112m57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84M244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52z"
  677. })]));
  678. }
  679. });
  680. var chrome_filled_default = /* @__PURE__ */ defineComponent({
  681. name: "ChromeFilled",
  682. __name: "chrome-filled",
  683. setup(__props) {
  684. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  685. xmlns: "http://www.w3.org/2000/svg",
  686. "xml:space": "preserve",
  687. viewBox: "0 0 1024 1024"
  688. }, [
  689. createBaseVNode("path", {
  690. fill: "currentColor",
  691. d: "M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.37 212.37 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67"
  692. }),
  693. createBaseVNode("path", {
  694. fill: "currentColor",
  695. d: "M576.79 401.63a127.9 127.9 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128 128 0 0 0-2.16 127.44l1.24 2.13a127.9 127.9 0 0 0 46.36 46.61 127.9 127.9 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.98 127.98 0 0 0 .29-127.46 127.96 127.96 0 0 0-46.36-46.91"
  696. }),
  697. createBaseVNode("path", {
  698. fill: "currentColor",
  699. d: "M394.45 333.96A213.34 213.34 0 0 1 512 298.67h369.58A426.5 426.5 0 0 0 512 85.34a425.6 425.6 0 0 0-171.74 35.98 425.6 425.6 0 0 0-142.62 102.22l118.14 204.63a213.4 213.4 0 0 1 78.67-94.21m117.56 604.72H512zm-97.25-236.73a213.3 213.3 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.3 213.3 0 0 1-122.77-21.91"
  700. })
  701. ]));
  702. }
  703. });
  704. var circle_check_filled_default = /* @__PURE__ */ defineComponent({
  705. name: "CircleCheckFilled",
  706. __name: "circle-check-filled",
  707. setup(__props) {
  708. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  709. xmlns: "http://www.w3.org/2000/svg",
  710. viewBox: "0 0 1024 1024"
  711. }, [createBaseVNode("path", {
  712. fill: "currentColor",
  713. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.27 38.27 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
  714. })]));
  715. }
  716. });
  717. var circle_check_default = /* @__PURE__ */ defineComponent({
  718. name: "CircleCheck",
  719. __name: "circle-check",
  720. setup(__props) {
  721. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  722. xmlns: "http://www.w3.org/2000/svg",
  723. viewBox: "0 0 1024 1024"
  724. }, [createBaseVNode("path", {
  725. fill: "currentColor",
  726. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  727. }), createBaseVNode("path", {
  728. fill: "currentColor",
  729. d: "M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752z"
  730. })]));
  731. }
  732. });
  733. var circle_close_filled_default = /* @__PURE__ */ defineComponent({
  734. name: "CircleCloseFilled",
  735. __name: "circle-close-filled",
  736. setup(__props) {
  737. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  738. xmlns: "http://www.w3.org/2000/svg",
  739. viewBox: "0 0 1024 1024"
  740. }, [createBaseVNode("path", {
  741. fill: "currentColor",
  742. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"
  743. })]));
  744. }
  745. });
  746. var circle_close_default = /* @__PURE__ */ defineComponent({
  747. name: "CircleClose",
  748. __name: "circle-close",
  749. setup(__props) {
  750. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  751. xmlns: "http://www.w3.org/2000/svg",
  752. viewBox: "0 0 1024 1024"
  753. }, [createBaseVNode("path", {
  754. fill: "currentColor",
  755. d: "m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"
  756. }), createBaseVNode("path", {
  757. fill: "currentColor",
  758. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  759. })]));
  760. }
  761. });
  762. var circle_plus_filled_default = /* @__PURE__ */ defineComponent({
  763. name: "CirclePlusFilled",
  764. __name: "circle-plus-filled",
  765. setup(__props) {
  766. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  767. xmlns: "http://www.w3.org/2000/svg",
  768. viewBox: "0 0 1024 1024"
  769. }, [createBaseVNode("path", {
  770. fill: "currentColor",
  771. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0z"
  772. })]));
  773. }
  774. });
  775. var circle_plus_default = /* @__PURE__ */ defineComponent({
  776. name: "CirclePlus",
  777. __name: "circle-plus",
  778. setup(__props) {
  779. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  780. xmlns: "http://www.w3.org/2000/svg",
  781. viewBox: "0 0 1024 1024"
  782. }, [
  783. createBaseVNode("path", {
  784. fill: "currentColor",
  785. d: "M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"
  786. }),
  787. createBaseVNode("path", {
  788. fill: "currentColor",
  789. d: "M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0"
  790. }),
  791. createBaseVNode("path", {
  792. fill: "currentColor",
  793. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  794. })
  795. ]));
  796. }
  797. });
  798. var clock_default = /* @__PURE__ */ defineComponent({
  799. name: "Clock",
  800. __name: "clock",
  801. setup(__props) {
  802. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  803. xmlns: "http://www.w3.org/2000/svg",
  804. viewBox: "0 0 1024 1024"
  805. }, [
  806. createBaseVNode("path", {
  807. fill: "currentColor",
  808. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  809. }),
  810. createBaseVNode("path", {
  811. fill: "currentColor",
  812. d: "M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"
  813. }),
  814. createBaseVNode("path", {
  815. fill: "currentColor",
  816. d: "M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"
  817. })
  818. ]));
  819. }
  820. });
  821. var close_bold_default = /* @__PURE__ */ defineComponent({
  822. name: "CloseBold",
  823. __name: "close-bold",
  824. setup(__props) {
  825. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  826. xmlns: "http://www.w3.org/2000/svg",
  827. viewBox: "0 0 1024 1024"
  828. }, [createBaseVNode("path", {
  829. fill: "currentColor",
  830. d: "M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496"
  831. })]));
  832. }
  833. });
  834. var close_default = /* @__PURE__ */ defineComponent({
  835. name: "Close",
  836. __name: "close",
  837. setup(__props) {
  838. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  839. xmlns: "http://www.w3.org/2000/svg",
  840. viewBox: "0 0 1024 1024"
  841. }, [createBaseVNode("path", {
  842. fill: "currentColor",
  843. d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
  844. })]));
  845. }
  846. });
  847. var cloudy_default = /* @__PURE__ */ defineComponent({
  848. name: "Cloudy",
  849. __name: "cloudy",
  850. setup(__props) {
  851. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  852. xmlns: "http://www.w3.org/2000/svg",
  853. viewBox: "0 0 1024 1024"
  854. }, [createBaseVNode("path", {
  855. fill: "currentColor",
  856. d: "M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"
  857. })]));
  858. }
  859. });
  860. var coffee_cup_default = /* @__PURE__ */ defineComponent({
  861. name: "CoffeeCup",
  862. __name: "coffee-cup",
  863. setup(__props) {
  864. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  865. xmlns: "http://www.w3.org/2000/svg",
  866. viewBox: "0 0 1024 1024"
  867. }, [createBaseVNode("path", {
  868. fill: "currentColor",
  869. d: "M768 192a192 192 0 1 1-8 383.808A256.13 256.13 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v256a128 128 0 1 0 0-256M96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192z"
  870. })]));
  871. }
  872. });
  873. var coffee_default = /* @__PURE__ */ defineComponent({
  874. name: "Coffee",
  875. __name: "coffee",
  876. setup(__props) {
  877. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  878. xmlns: "http://www.w3.org/2000/svg",
  879. viewBox: "0 0 1024 1024"
  880. }, [createBaseVNode("path", {
  881. fill: "currentColor",
  882. d: "M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304zm-64.128 0 4.544-64H260.736l4.544 64zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64zm68.736 64 36.544 512H708.16l36.544-512z"
  883. })]));
  884. }
  885. });
  886. var coin_default = /* @__PURE__ */ defineComponent({
  887. name: "Coin",
  888. __name: "coin",
  889. setup(__props) {
  890. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  891. xmlns: "http://www.w3.org/2000/svg",
  892. viewBox: "0 0 1024 1024"
  893. }, [
  894. createBaseVNode("path", {
  895. fill: "currentColor",
  896. d: "m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264"
  897. }),
  898. createBaseVNode("path", {
  899. fill: "currentColor",
  900. d: "m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264"
  901. }),
  902. createBaseVNode("path", {
  903. fill: "currentColor",
  904. d: "M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224m0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160"
  905. })
  906. ]));
  907. }
  908. });
  909. var cold_drink_default = /* @__PURE__ */ defineComponent({
  910. name: "ColdDrink",
  911. __name: "cold-drink",
  912. setup(__props) {
  913. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  914. xmlns: "http://www.w3.org/2000/svg",
  915. viewBox: "0 0 1024 1024"
  916. }, [createBaseVNode("path", {
  917. fill: "currentColor",
  918. d: "M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.06 192.06 0 0 1 768 64M656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928z"
  919. })]));
  920. }
  921. });
  922. var collection_tag_default = /* @__PURE__ */ defineComponent({
  923. name: "CollectionTag",
  924. __name: "collection-tag",
  925. setup(__props) {
  926. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  927. xmlns: "http://www.w3.org/2000/svg",
  928. viewBox: "0 0 1024 1024"
  929. }, [createBaseVNode("path", {
  930. fill: "currentColor",
  931. d: "M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32"
  932. })]));
  933. }
  934. });
  935. var collection_default = /* @__PURE__ */ defineComponent({
  936. name: "Collection",
  937. __name: "collection",
  938. setup(__props) {
  939. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  940. xmlns: "http://www.w3.org/2000/svg",
  941. viewBox: "0 0 1024 1024"
  942. }, [createBaseVNode("path", {
  943. fill: "currentColor",
  944. d: "M192 736h640V128H256a64 64 0 0 0-64 64zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64"
  945. }), createBaseVNode("path", {
  946. fill: "currentColor",
  947. d: "M240 800a48 48 0 1 0 0 96h592v-96zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224m144-608v250.88l96-76.8 96 76.8V128zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44z"
  948. })]));
  949. }
  950. });
  951. var comment_default = /* @__PURE__ */ defineComponent({
  952. name: "Comment",
  953. __name: "comment",
  954. setup(__props) {
  955. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  956. xmlns: "http://www.w3.org/2000/svg",
  957. viewBox: "0 0 1024 1024"
  958. }, [createBaseVNode("path", {
  959. fill: "currentColor",
  960. d: "M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112M128 128v640h192v160l224-160h352V128z"
  961. })]));
  962. }
  963. });
  964. var compass_default = /* @__PURE__ */ defineComponent({
  965. name: "Compass",
  966. __name: "compass",
  967. setup(__props) {
  968. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  969. xmlns: "http://www.w3.org/2000/svg",
  970. viewBox: "0 0 1024 1024"
  971. }, [createBaseVNode("path", {
  972. fill: "currentColor",
  973. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  974. }), createBaseVNode("path", {
  975. fill: "currentColor",
  976. d: "M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832"
  977. })]));
  978. }
  979. });
  980. var connection_default = /* @__PURE__ */ defineComponent({
  981. name: "Connection",
  982. __name: "connection",
  983. setup(__props) {
  984. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  985. xmlns: "http://www.w3.org/2000/svg",
  986. viewBox: "0 0 1024 1024"
  987. }, [createBaseVNode("path", {
  988. fill: "currentColor",
  989. d: "M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192z"
  990. }), createBaseVNode("path", {
  991. fill: "currentColor",
  992. d: "M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.06 192.06 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192z"
  993. })]));
  994. }
  995. });
  996. var coordinate_default = /* @__PURE__ */ defineComponent({
  997. name: "Coordinate",
  998. __name: "coordinate",
  999. setup(__props) {
  1000. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1001. xmlns: "http://www.w3.org/2000/svg",
  1002. viewBox: "0 0 1024 1024"
  1003. }, [createBaseVNode("path", {
  1004. fill: "currentColor",
  1005. d: "M480 512h64v320h-64z"
  1006. }), createBaseVNode("path", {
  1007. fill: "currentColor",
  1008. d: "M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64m64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128m256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  1009. })]));
  1010. }
  1011. });
  1012. var copy_document_default = /* @__PURE__ */ defineComponent({
  1013. name: "CopyDocument",
  1014. __name: "copy-document",
  1015. setup(__props) {
  1016. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1017. xmlns: "http://www.w3.org/2000/svg",
  1018. viewBox: "0 0 1024 1024"
  1019. }, [createBaseVNode("path", {
  1020. fill: "currentColor",
  1021. d: "M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64z"
  1022. }), createBaseVNode("path", {
  1023. fill: "currentColor",
  1024. d: "M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64"
  1025. })]));
  1026. }
  1027. });
  1028. var cpu_default = /* @__PURE__ */ defineComponent({
  1029. name: "Cpu",
  1030. __name: "cpu",
  1031. setup(__props) {
  1032. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1033. xmlns: "http://www.w3.org/2000/svg",
  1034. viewBox: "0 0 1024 1024"
  1035. }, [createBaseVNode("path", {
  1036. fill: "currentColor",
  1037. d: "M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128"
  1038. }), createBaseVNode("path", {
  1039. fill: "currentColor",
  1040. d: "M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32M64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32"
  1041. })]));
  1042. }
  1043. });
  1044. var credit_card_default = /* @__PURE__ */ defineComponent({
  1045. name: "CreditCard",
  1046. __name: "credit-card",
  1047. setup(__props) {
  1048. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1049. xmlns: "http://www.w3.org/2000/svg",
  1050. viewBox: "0 0 1024 1024"
  1051. }, [createBaseVNode("path", {
  1052. fill: "currentColor",
  1053. d: "M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.35 52.35 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.35 52.35 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.35 52.35 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.35 52.35 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448S852.928 864 795.968 864H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.3 116.3 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448s41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384s17.088 41.6 17.088 98.56z"
  1054. }), createBaseVNode("path", {
  1055. fill: "currentColor",
  1056. d: "M64 320h896v64H64zm0 128h896v64H64zm128 192h256v64H192z"
  1057. })]));
  1058. }
  1059. });
  1060. var crop_default = /* @__PURE__ */ defineComponent({
  1061. name: "Crop",
  1062. __name: "crop",
  1063. setup(__props) {
  1064. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1065. xmlns: "http://www.w3.org/2000/svg",
  1066. viewBox: "0 0 1024 1024"
  1067. }, [createBaseVNode("path", {
  1068. fill: "currentColor",
  1069. d: "M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0z"
  1070. }), createBaseVNode("path", {
  1071. fill: "currentColor",
  1072. d: "M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32"
  1073. })]));
  1074. }
  1075. });
  1076. var d_arrow_left_default = /* @__PURE__ */ defineComponent({
  1077. name: "DArrowLeft",
  1078. __name: "d-arrow-left",
  1079. setup(__props) {
  1080. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1081. xmlns: "http://www.w3.org/2000/svg",
  1082. viewBox: "0 0 1024 1024"
  1083. }, [createBaseVNode("path", {
  1084. fill: "currentColor",
  1085. d: "M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.59 30.59 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672zm256 0a29.12 29.12 0 0 1 41.728 0 30.59 30.59 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672z"
  1086. })]));
  1087. }
  1088. });
  1089. var d_arrow_right_default = /* @__PURE__ */ defineComponent({
  1090. name: "DArrowRight",
  1091. __name: "d-arrow-right",
  1092. setup(__props) {
  1093. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1094. xmlns: "http://www.w3.org/2000/svg",
  1095. viewBox: "0 0 1024 1024"
  1096. }, [createBaseVNode("path", {
  1097. fill: "currentColor",
  1098. d: "M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.59 30.59 0 0 1 0-42.752L764.736 512 452.864 192a30.59 30.59 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.59 30.59 0 0 1 0-42.752L508.736 512 196.864 192a30.59 30.59 0 0 1 0-42.688"
  1099. })]));
  1100. }
  1101. });
  1102. var d_caret_default = /* @__PURE__ */ defineComponent({
  1103. name: "DCaret",
  1104. __name: "d-caret",
  1105. setup(__props) {
  1106. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1107. xmlns: "http://www.w3.org/2000/svg",
  1108. viewBox: "0 0 1024 1024"
  1109. }, [createBaseVNode("path", {
  1110. fill: "currentColor",
  1111. d: "m512 128 288 320H224zM224 576h576L512 896z"
  1112. })]));
  1113. }
  1114. });
  1115. var data_analysis_default = /* @__PURE__ */ defineComponent({
  1116. name: "DataAnalysis",
  1117. __name: "data-analysis",
  1118. setup(__props) {
  1119. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1120. xmlns: "http://www.w3.org/2000/svg",
  1121. viewBox: "0 0 1024 1024"
  1122. }, [createBaseVNode("path", {
  1123. fill: "currentColor",
  1124. d: "m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32zM832 192H192v512h640zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32"
  1125. })]));
  1126. }
  1127. });
  1128. var data_board_default = /* @__PURE__ */ defineComponent({
  1129. name: "DataBoard",
  1130. __name: "data-board",
  1131. setup(__props) {
  1132. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1133. xmlns: "http://www.w3.org/2000/svg",
  1134. viewBox: "0 0 1024 1024"
  1135. }, [
  1136. createBaseVNode("path", {
  1137. fill: "currentColor",
  1138. d: "M32 128h960v64H32z"
  1139. }),
  1140. createBaseVNode("path", {
  1141. fill: "currentColor",
  1142. d: "M192 192v512h640V192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"
  1143. }),
  1144. createBaseVNode("path", {
  1145. fill: "currentColor",
  1146. d: "M322.176 960H248.32l144.64-250.56 55.424 32zm453.888 0h-73.856L576 741.44l55.424-32z"
  1147. })
  1148. ]));
  1149. }
  1150. });
  1151. var data_line_default = /* @__PURE__ */ defineComponent({
  1152. name: "DataLine",
  1153. __name: "data-line",
  1154. setup(__props) {
  1155. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1156. xmlns: "http://www.w3.org/2000/svg",
  1157. viewBox: "0 0 1024 1024"
  1158. }, [createBaseVNode("path", {
  1159. fill: "currentColor",
  1160. d: "M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32zM832 192H192v512h640zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"
  1161. })]));
  1162. }
  1163. });
  1164. var delete_filled_default = /* @__PURE__ */ defineComponent({
  1165. name: "DeleteFilled",
  1166. __name: "delete-filled",
  1167. setup(__props) {
  1168. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1169. xmlns: "http://www.w3.org/2000/svg",
  1170. viewBox: "0 0 1024 1024"
  1171. }, [createBaseVNode("path", {
  1172. fill: "currentColor",
  1173. d: "M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64zm64 0h192v-64H416zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32m192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32"
  1174. })]));
  1175. }
  1176. });
  1177. var delete_location_default = /* @__PURE__ */ defineComponent({
  1178. name: "DeleteLocation",
  1179. __name: "delete-location",
  1180. setup(__props) {
  1181. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1182. xmlns: "http://www.w3.org/2000/svg",
  1183. viewBox: "0 0 1024 1024"
  1184. }, [
  1185. createBaseVNode("path", {
  1186. fill: "currentColor",
  1187. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  1188. }),
  1189. createBaseVNode("path", {
  1190. fill: "currentColor",
  1191. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  1192. }),
  1193. createBaseVNode("path", {
  1194. fill: "currentColor",
  1195. d: "M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"
  1196. })
  1197. ]));
  1198. }
  1199. });
  1200. var delete_default = /* @__PURE__ */ defineComponent({
  1201. name: "Delete",
  1202. __name: "delete",
  1203. setup(__props) {
  1204. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1205. xmlns: "http://www.w3.org/2000/svg",
  1206. viewBox: "0 0 1024 1024"
  1207. }, [createBaseVNode("path", {
  1208. fill: "currentColor",
  1209. d: "M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"
  1210. })]));
  1211. }
  1212. });
  1213. var dessert_default = /* @__PURE__ */ defineComponent({
  1214. name: "Dessert",
  1215. __name: "dessert",
  1216. setup(__props) {
  1217. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1218. xmlns: "http://www.w3.org/2000/svg",
  1219. viewBox: "0 0 1024 1024"
  1220. }, [createBaseVNode("path", {
  1221. fill: "currentColor",
  1222. d: "M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416m287.104-32.064h193.792a143.81 143.81 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.81 143.81 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736M384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64"
  1223. })]));
  1224. }
  1225. });
  1226. var discount_default = /* @__PURE__ */ defineComponent({
  1227. name: "Discount",
  1228. __name: "discount",
  1229. setup(__props) {
  1230. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1231. xmlns: "http://www.w3.org/2000/svg",
  1232. viewBox: "0 0 1024 1024"
  1233. }, [createBaseVNode("path", {
  1234. fill: "currentColor",
  1235. d: "M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zm0 64v128h576V768zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"
  1236. }), createBaseVNode("path", {
  1237. fill: "currentColor",
  1238. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  1239. })]));
  1240. }
  1241. });
  1242. var dish_dot_default = /* @__PURE__ */ defineComponent({
  1243. name: "DishDot",
  1244. __name: "dish-dot",
  1245. setup(__props) {
  1246. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1247. xmlns: "http://www.w3.org/2000/svg",
  1248. viewBox: "0 0 1024 1024"
  1249. }, [createBaseVNode("path", {
  1250. fill: "currentColor",
  1251. d: "m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.19 448.19 0 0 1 955.392 768H68.544A448.19 448.19 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-128h768a384 384 0 1 0-768 0m447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256z"
  1252. })]));
  1253. }
  1254. });
  1255. var dish_default = /* @__PURE__ */ defineComponent({
  1256. name: "Dish",
  1257. __name: "dish",
  1258. setup(__props) {
  1259. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1260. xmlns: "http://www.w3.org/2000/svg",
  1261. viewBox: "0 0 1024 1024"
  1262. }, [createBaseVNode("path", {
  1263. fill: "currentColor",
  1264. d: "M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152M128 704h768a384 384 0 1 0-768 0M96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64"
  1265. })]));
  1266. }
  1267. });
  1268. var document_add_default = /* @__PURE__ */ defineComponent({
  1269. name: "DocumentAdd",
  1270. __name: "document-add",
  1271. setup(__props) {
  1272. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1273. xmlns: "http://www.w3.org/2000/svg",
  1274. viewBox: "0 0 1024 1024"
  1275. }, [createBaseVNode("path", {
  1276. fill: "currentColor",
  1277. d: "M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m320 512V448h64v128h128v64H544v128h-64V640H352v-64z"
  1278. })]));
  1279. }
  1280. });
  1281. var document_checked_default = /* @__PURE__ */ defineComponent({
  1282. name: "DocumentChecked",
  1283. __name: "document-checked",
  1284. setup(__props) {
  1285. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1286. xmlns: "http://www.w3.org/2000/svg",
  1287. viewBox: "0 0 1024 1024"
  1288. }, [createBaseVNode("path", {
  1289. fill: "currentColor",
  1290. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312z"
  1291. })]));
  1292. }
  1293. });
  1294. var document_copy_default = /* @__PURE__ */ defineComponent({
  1295. name: "DocumentCopy",
  1296. __name: "document-copy",
  1297. setup(__props) {
  1298. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1299. xmlns: "http://www.w3.org/2000/svg",
  1300. viewBox: "0 0 1024 1024"
  1301. }, [createBaseVNode("path", {
  1302. fill: "currentColor",
  1303. d: "M128 320v576h576V320zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32M960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32M256 672h320v64H256zm0-192h320v64H256z"
  1304. })]));
  1305. }
  1306. });
  1307. var document_delete_default = /* @__PURE__ */ defineComponent({
  1308. name: "DocumentDelete",
  1309. __name: "document-delete",
  1310. setup(__props) {
  1311. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1312. xmlns: "http://www.w3.org/2000/svg",
  1313. viewBox: "0 0 1024 1024"
  1314. }, [createBaseVNode("path", {
  1315. fill: "currentColor",
  1316. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248z"
  1317. })]));
  1318. }
  1319. });
  1320. var document_remove_default = /* @__PURE__ */ defineComponent({
  1321. name: "DocumentRemove",
  1322. __name: "document-remove",
  1323. setup(__props) {
  1324. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1325. xmlns: "http://www.w3.org/2000/svg",
  1326. viewBox: "0 0 1024 1024"
  1327. }, [createBaseVNode("path", {
  1328. fill: "currentColor",
  1329. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m192 512h320v64H352z"
  1330. })]));
  1331. }
  1332. });
  1333. var document_default = /* @__PURE__ */ defineComponent({
  1334. name: "Document",
  1335. __name: "document",
  1336. setup(__props) {
  1337. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1338. xmlns: "http://www.w3.org/2000/svg",
  1339. viewBox: "0 0 1024 1024"
  1340. }, [createBaseVNode("path", {
  1341. fill: "currentColor",
  1342. d: "M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"
  1343. })]));
  1344. }
  1345. });
  1346. var download_default = /* @__PURE__ */ defineComponent({
  1347. name: "Download",
  1348. __name: "download",
  1349. setup(__props) {
  1350. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1351. xmlns: "http://www.w3.org/2000/svg",
  1352. viewBox: "0 0 1024 1024"
  1353. }, [createBaseVNode("path", {
  1354. fill: "currentColor",
  1355. d: "M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z"
  1356. })]));
  1357. }
  1358. });
  1359. var drizzling_default = /* @__PURE__ */ defineComponent({
  1360. name: "Drizzling",
  1361. __name: "drizzling",
  1362. setup(__props) {
  1363. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1364. xmlns: "http://www.w3.org/2000/svg",
  1365. viewBox: "0 0 1024 1024"
  1366. }, [createBaseVNode("path", {
  1367. fill: "currentColor",
  1368. d: "m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672M959.552 480a256 256 0 0 1-256 256h-400A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M288 800h64v64h-64zm192 0h64v64h-64zm-96 96h64v64h-64zm192 0h64v64h-64zm96-96h64v64h-64z"
  1369. })]));
  1370. }
  1371. });
  1372. var edit_pen_default = /* @__PURE__ */ defineComponent({
  1373. name: "EditPen",
  1374. __name: "edit-pen",
  1375. setup(__props) {
  1376. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1377. xmlns: "http://www.w3.org/2000/svg",
  1378. viewBox: "0 0 1024 1024"
  1379. }, [createBaseVNode("path", {
  1380. fill: "currentColor",
  1381. d: "m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696zM455.04 229.248l193.92 112 56.704-98.112-193.984-112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336zm384 254.272v-64h448v64z"
  1382. })]));
  1383. }
  1384. });
  1385. var edit_default = /* @__PURE__ */ defineComponent({
  1386. name: "Edit",
  1387. __name: "edit",
  1388. setup(__props) {
  1389. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1390. xmlns: "http://www.w3.org/2000/svg",
  1391. viewBox: "0 0 1024 1024"
  1392. }, [createBaseVNode("path", {
  1393. fill: "currentColor",
  1394. d: "M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"
  1395. }), createBaseVNode("path", {
  1396. fill: "currentColor",
  1397. d: "m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"
  1398. })]));
  1399. }
  1400. });
  1401. var eleme_filled_default = /* @__PURE__ */ defineComponent({
  1402. name: "ElemeFilled",
  1403. __name: "eleme-filled",
  1404. setup(__props) {
  1405. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1406. xmlns: "http://www.w3.org/2000/svg",
  1407. viewBox: "0 0 1024 1024"
  1408. }, [createBaseVNode("path", {
  1409. fill: "currentColor",
  1410. d: "M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112m150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.69 330.69 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.55 47.55 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.3 234.3 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.55 47.55 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"
  1411. })]));
  1412. }
  1413. });
  1414. var eleme_default = /* @__PURE__ */ defineComponent({
  1415. name: "Eleme",
  1416. __name: "eleme",
  1417. setup(__props) {
  1418. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1419. xmlns: "http://www.w3.org/2000/svg",
  1420. viewBox: "0 0 1024 1024"
  1421. }, [createBaseVNode("path", {
  1422. fill: "currentColor",
  1423. d: "M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24m526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.23 63.23 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8z"
  1424. })]));
  1425. }
  1426. });
  1427. var element_plus_default = /* @__PURE__ */ defineComponent({
  1428. name: "ElementPlus",
  1429. __name: "element-plus",
  1430. setup(__props) {
  1431. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1432. xmlns: "http://www.w3.org/2000/svg",
  1433. viewBox: "0 0 1024 1024"
  1434. }, [createBaseVNode("path", {
  1435. fill: "currentColor",
  1436. d: "M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6q19.2-7.65 38.4 0s279 161.3 309.8 179.2c17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8M714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64z"
  1437. })]));
  1438. }
  1439. });
  1440. var expand_default = /* @__PURE__ */ defineComponent({
  1441. name: "Expand",
  1442. __name: "expand",
  1443. setup(__props) {
  1444. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1445. xmlns: "http://www.w3.org/2000/svg",
  1446. viewBox: "0 0 1024 1024"
  1447. }, [createBaseVNode("path", {
  1448. fill: "currentColor",
  1449. d: "M128 192h768v128H128zm0 256h512v128H128zm0 256h768v128H128zm576-352 192 160-192 128z"
  1450. })]));
  1451. }
  1452. });
  1453. var failed_default = /* @__PURE__ */ defineComponent({
  1454. name: "Failed",
  1455. __name: "failed",
  1456. setup(__props) {
  1457. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1458. xmlns: "http://www.w3.org/2000/svg",
  1459. viewBox: "0 0 1024 1024"
  1460. }, [createBaseVNode("path", {
  1461. fill: "currentColor",
  1462. d: "m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384zm-320 0V96h256v96z"
  1463. })]));
  1464. }
  1465. });
  1466. var female_default = /* @__PURE__ */ defineComponent({
  1467. name: "Female",
  1468. __name: "female",
  1469. setup(__props) {
  1470. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1471. xmlns: "http://www.w3.org/2000/svg",
  1472. viewBox: "0 0 1024 1024"
  1473. }, [
  1474. createBaseVNode("path", {
  1475. fill: "currentColor",
  1476. d: "M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  1477. }),
  1478. createBaseVNode("path", {
  1479. fill: "currentColor",
  1480. d: "M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32"
  1481. }),
  1482. createBaseVNode("path", {
  1483. fill: "currentColor",
  1484. d: "M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"
  1485. })
  1486. ]));
  1487. }
  1488. });
  1489. var files_default = /* @__PURE__ */ defineComponent({
  1490. name: "Files",
  1491. __name: "files",
  1492. setup(__props) {
  1493. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1494. xmlns: "http://www.w3.org/2000/svg",
  1495. viewBox: "0 0 1024 1024"
  1496. }, [createBaseVNode("path", {
  1497. fill: "currentColor",
  1498. d: "M128 384v448h768V384zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32m64-128h704v64H160zm96-128h512v64H256z"
  1499. })]));
  1500. }
  1501. });
  1502. var film_default = /* @__PURE__ */ defineComponent({
  1503. name: "Film",
  1504. __name: "film",
  1505. setup(__props) {
  1506. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1507. xmlns: "http://www.w3.org/2000/svg",
  1508. viewBox: "0 0 1024 1024"
  1509. }, [createBaseVNode("path", {
  1510. fill: "currentColor",
  1511. d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
  1512. }), createBaseVNode("path", {
  1513. fill: "currentColor",
  1514. d: "M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64z"
  1515. })]));
  1516. }
  1517. });
  1518. var filter_default = /* @__PURE__ */ defineComponent({
  1519. name: "Filter",
  1520. __name: "filter",
  1521. setup(__props) {
  1522. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1523. xmlns: "http://www.w3.org/2000/svg",
  1524. viewBox: "0 0 1024 1024"
  1525. }, [createBaseVNode("path", {
  1526. fill: "currentColor",
  1527. d: "M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288z"
  1528. })]));
  1529. }
  1530. });
  1531. var finished_default = /* @__PURE__ */ defineComponent({
  1532. name: "Finished",
  1533. __name: "finished",
  1534. setup(__props) {
  1535. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1536. xmlns: "http://www.w3.org/2000/svg",
  1537. viewBox: "0 0 1024 1024"
  1538. }, [createBaseVNode("path", {
  1539. fill: "currentColor",
  1540. d: "M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64z"
  1541. })]));
  1542. }
  1543. });
  1544. var first_aid_kit_default = /* @__PURE__ */ defineComponent({
  1545. name: "FirstAidKit",
  1546. __name: "first-aid-kit",
  1547. setup(__props) {
  1548. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1549. xmlns: "http://www.w3.org/2000/svg",
  1550. viewBox: "0 0 1024 1024"
  1551. }, [createBaseVNode("path", {
  1552. fill: "currentColor",
  1553. d: "M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"
  1554. }), createBaseVNode("path", {
  1555. fill: "currentColor",
  1556. d: "M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0zM352 128v64h320v-64zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  1557. })]));
  1558. }
  1559. });
  1560. var flag_default = /* @__PURE__ */ defineComponent({
  1561. name: "Flag",
  1562. __name: "flag",
  1563. setup(__props) {
  1564. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1565. xmlns: "http://www.w3.org/2000/svg",
  1566. viewBox: "0 0 1024 1024"
  1567. }, [createBaseVNode("path", {
  1568. fill: "currentColor",
  1569. d: "M288 128h608L736 384l160 256H288v320h-96V64h96z"
  1570. })]));
  1571. }
  1572. });
  1573. var fold_default = /* @__PURE__ */ defineComponent({
  1574. name: "Fold",
  1575. __name: "fold",
  1576. setup(__props) {
  1577. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1578. xmlns: "http://www.w3.org/2000/svg",
  1579. viewBox: "0 0 1024 1024"
  1580. }, [createBaseVNode("path", {
  1581. fill: "currentColor",
  1582. d: "M896 192H128v128h768zm0 256H384v128h512zm0 256H128v128h768zM320 384 128 512l192 128z"
  1583. })]));
  1584. }
  1585. });
  1586. var folder_add_default = /* @__PURE__ */ defineComponent({
  1587. name: "FolderAdd",
  1588. __name: "folder-add",
  1589. setup(__props) {
  1590. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1591. xmlns: "http://www.w3.org/2000/svg",
  1592. viewBox: "0 0 1024 1024"
  1593. }, [createBaseVNode("path", {
  1594. fill: "currentColor",
  1595. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m384 416V416h64v128h128v64H544v128h-64V608H352v-64z"
  1596. })]));
  1597. }
  1598. });
  1599. var folder_checked_default = /* @__PURE__ */ defineComponent({
  1600. name: "FolderChecked",
  1601. __name: "folder-checked",
  1602. setup(__props) {
  1603. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1604. xmlns: "http://www.w3.org/2000/svg",
  1605. viewBox: "0 0 1024 1024"
  1606. }, [createBaseVNode("path", {
  1607. fill: "currentColor",
  1608. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312z"
  1609. })]));
  1610. }
  1611. });
  1612. var folder_delete_default = /* @__PURE__ */ defineComponent({
  1613. name: "FolderDelete",
  1614. __name: "folder-delete",
  1615. setup(__props) {
  1616. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1617. xmlns: "http://www.w3.org/2000/svg",
  1618. viewBox: "0 0 1024 1024"
  1619. }, [createBaseVNode("path", {
  1620. fill: "currentColor",
  1621. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248z"
  1622. })]));
  1623. }
  1624. });
  1625. var folder_opened_default = /* @__PURE__ */ defineComponent({
  1626. name: "FolderOpened",
  1627. __name: "folder-opened",
  1628. setup(__props) {
  1629. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1630. xmlns: "http://www.w3.org/2000/svg",
  1631. viewBox: "0 0 1024 1024"
  1632. }, [createBaseVNode("path", {
  1633. fill: "currentColor",
  1634. d: "M878.08 448H241.92l-96 384h636.16zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896"
  1635. })]));
  1636. }
  1637. });
  1638. var folder_remove_default = /* @__PURE__ */ defineComponent({
  1639. name: "FolderRemove",
  1640. __name: "folder-remove",
  1641. setup(__props) {
  1642. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1643. xmlns: "http://www.w3.org/2000/svg",
  1644. viewBox: "0 0 1024 1024"
  1645. }, [createBaseVNode("path", {
  1646. fill: "currentColor",
  1647. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m256 416h320v64H352z"
  1648. })]));
  1649. }
  1650. });
  1651. var folder_default = /* @__PURE__ */ defineComponent({
  1652. name: "Folder",
  1653. __name: "folder",
  1654. setup(__props) {
  1655. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1656. xmlns: "http://www.w3.org/2000/svg",
  1657. viewBox: "0 0 1024 1024"
  1658. }, [createBaseVNode("path", {
  1659. fill: "currentColor",
  1660. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32"
  1661. })]));
  1662. }
  1663. });
  1664. var food_default = /* @__PURE__ */ defineComponent({
  1665. name: "Food",
  1666. __name: "food",
  1667. setup(__props) {
  1668. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1669. xmlns: "http://www.w3.org/2000/svg",
  1670. viewBox: "0 0 1024 1024"
  1671. }, [createBaseVNode("path", {
  1672. fill: "currentColor",
  1673. d: "M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0m128 0h192a96 96 0 0 0-192 0m439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352M672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288"
  1674. })]));
  1675. }
  1676. });
  1677. var football_default = /* @__PURE__ */ defineComponent({
  1678. name: "Football",
  1679. __name: "football",
  1680. setup(__props) {
  1681. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1682. xmlns: "http://www.w3.org/2000/svg",
  1683. viewBox: "0 0 1024 1024"
  1684. }, [createBaseVNode("path", {
  1685. fill: "currentColor",
  1686. d: "M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768"
  1687. }), createBaseVNode("path", {
  1688. fill: "currentColor",
  1689. d: "M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a386 386 0 0 1-80.448-91.648m653.696-5.312a385.9 385.9 0 0 1-83.776 96.96l-32.512-56.384a322.9 322.9 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184M465.984 445.248l11.136-63.104a323.6 323.6 0 0 0 69.76 0l11.136 63.104a388 388 0 0 1-92.032 0m-62.72-12.8A381.8 381.8 0 0 1 320 396.544l32-55.424a320 320 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.8 381.8 0 0 1-83.328 35.84l-11.2-63.552A320 320 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.9 385.9 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072m657.536.128a1443 1443 0 0 1-49.024 43.072 321.4 321.4 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408M465.92 578.752a388 388 0 0 1 92.032 0l-11.136 63.104a323.6 323.6 0 0 0-69.76 0zm-62.72 12.8 11.2 63.552a320 320 0 0 0-62.464 27.712L320 627.392a381.8 381.8 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.3 318.3 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"
  1690. })]));
  1691. }
  1692. });
  1693. var fork_spoon_default = /* @__PURE__ */ defineComponent({
  1694. name: "ForkSpoon",
  1695. __name: "fork-spoon",
  1696. setup(__props) {
  1697. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1698. xmlns: "http://www.w3.org/2000/svg",
  1699. viewBox: "0 0 1024 1024"
  1700. }, [createBaseVNode("path", {
  1701. fill: "currentColor",
  1702. d: "M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56M672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192"
  1703. })]));
  1704. }
  1705. });
  1706. var fries_default = /* @__PURE__ */ defineComponent({
  1707. name: "Fries",
  1708. __name: "fries",
  1709. setup(__props) {
  1710. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1711. xmlns: "http://www.w3.org/2000/svg",
  1712. viewBox: "0 0 1024 1024"
  1713. }, [createBaseVNode("path", {
  1714. fill: "currentColor",
  1715. d: "M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.74 95.74 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128 128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132 132 0 0 1 672 510.464V512zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480zm-128 96V224a32 32 0 0 0-64 0v160zh-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704z"
  1716. })]));
  1717. }
  1718. });
  1719. var full_screen_default = /* @__PURE__ */ defineComponent({
  1720. name: "FullScreen",
  1721. __name: "full-screen",
  1722. setup(__props) {
  1723. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1724. xmlns: "http://www.w3.org/2000/svg",
  1725. viewBox: "0 0 1024 1024"
  1726. }, [createBaseVNode("path", {
  1727. fill: "currentColor",
  1728. d: "m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"
  1729. })]));
  1730. }
  1731. });
  1732. var goblet_full_default = /* @__PURE__ */ defineComponent({
  1733. name: "GobletFull",
  1734. __name: "goblet-full",
  1735. setup(__props) {
  1736. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1737. xmlns: "http://www.w3.org/2000/svg",
  1738. viewBox: "0 0 1024 1024"
  1739. }, [createBaseVNode("path", {
  1740. fill: "currentColor",
  1741. d: "M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320m503.936 64H264.064a256.128 256.128 0 0 0 495.872 0M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4"
  1742. })]));
  1743. }
  1744. });
  1745. var goblet_square_full_default = /* @__PURE__ */ defineComponent({
  1746. name: "GobletSquareFull",
  1747. __name: "goblet-square-full",
  1748. setup(__props) {
  1749. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1750. xmlns: "http://www.w3.org/2000/svg",
  1751. viewBox: "0 0 1024 1024"
  1752. }, [createBaseVNode("path", {
  1753. fill: "currentColor",
  1754. d: "M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952 952 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96z"
  1755. })]));
  1756. }
  1757. });
  1758. var goblet_square_default = /* @__PURE__ */ defineComponent({
  1759. name: "GobletSquare",
  1760. __name: "goblet-square",
  1761. setup(__props) {
  1762. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1763. xmlns: "http://www.w3.org/2000/svg",
  1764. viewBox: "0 0 1024 1024"
  1765. }, [createBaseVNode("path", {
  1766. fill: "currentColor",
  1767. d: "M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912M256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256z"
  1768. })]));
  1769. }
  1770. });
  1771. var goblet_default = /* @__PURE__ */ defineComponent({
  1772. name: "Goblet",
  1773. __name: "goblet",
  1774. setup(__props) {
  1775. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1776. xmlns: "http://www.w3.org/2000/svg",
  1777. viewBox: "0 0 1024 1024"
  1778. }, [createBaseVNode("path", {
  1779. fill: "currentColor",
  1780. d: "M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4M256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320"
  1781. })]));
  1782. }
  1783. });
  1784. var gold_medal_default = /* @__PURE__ */ defineComponent({
  1785. name: "GoldMedal",
  1786. __name: "gold-medal",
  1787. setup(__props) {
  1788. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1789. xmlns: "http://www.w3.org/2000/svg",
  1790. "xml:space": "preserve",
  1791. viewBox: "0 0 1024 1024"
  1792. }, [createBaseVNode("path", {
  1793. fill: "currentColor",
  1794. d: "m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16M640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a360 360 0 0 0-32.36 4.79V128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98"
  1795. }), createBaseVNode("path", {
  1796. fill: "currentColor",
  1797. d: "M544 480H416v64h64v192h-64v64h192v-64h-64z"
  1798. })]));
  1799. }
  1800. });
  1801. var goods_filled_default = /* @__PURE__ */ defineComponent({
  1802. name: "GoodsFilled",
  1803. __name: "goods-filled",
  1804. setup(__props) {
  1805. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1806. xmlns: "http://www.w3.org/2000/svg",
  1807. viewBox: "0 0 1024 1024"
  1808. }, [createBaseVNode("path", {
  1809. fill: "currentColor",
  1810. d: "M192 352h640l64 544H128zm128 224h64V448h-64zm320 0h64V448h-64zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0"
  1811. })]));
  1812. }
  1813. });
  1814. var goods_default = /* @__PURE__ */ defineComponent({
  1815. name: "Goods",
  1816. __name: "goods",
  1817. setup(__props) {
  1818. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1819. xmlns: "http://www.w3.org/2000/svg",
  1820. viewBox: "0 0 1024 1024"
  1821. }, [createBaseVNode("path", {
  1822. fill: "currentColor",
  1823. d: "M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0z"
  1824. })]));
  1825. }
  1826. });
  1827. var grape_default = /* @__PURE__ */ defineComponent({
  1828. name: "Grape",
  1829. __name: "grape",
  1830. setup(__props) {
  1831. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1832. xmlns: "http://www.w3.org/2000/svg",
  1833. viewBox: "0 0 1024 1024"
  1834. }, [createBaseVNode("path", {
  1835. fill: "currentColor",
  1836. d: "M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192m-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192"
  1837. })]));
  1838. }
  1839. });
  1840. var grid_default = /* @__PURE__ */ defineComponent({
  1841. name: "Grid",
  1842. __name: "grid",
  1843. setup(__props) {
  1844. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1845. xmlns: "http://www.w3.org/2000/svg",
  1846. viewBox: "0 0 1024 1024"
  1847. }, [createBaseVNode("path", {
  1848. fill: "currentColor",
  1849. d: "M640 384v256H384V384zm64 0h192v256H704zm-64 512H384V704h256zm64 0V704h192v192zm-64-768v192H384V128zm64 0h192v192H704zM320 384v256H128V384zm0 512H128V704h192zm0-768v192H128V128z"
  1850. })]));
  1851. }
  1852. });
  1853. var guide_default = /* @__PURE__ */ defineComponent({
  1854. name: "Guide",
  1855. __name: "guide",
  1856. setup(__props) {
  1857. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1858. xmlns: "http://www.w3.org/2000/svg",
  1859. viewBox: "0 0 1024 1024"
  1860. }, [createBaseVNode("path", {
  1861. fill: "currentColor",
  1862. d: "M640 608h-64V416h64zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768zM384 608V416h64v192zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32z"
  1863. }), createBaseVNode("path", {
  1864. fill: "currentColor",
  1865. d: "m220.8 256-71.232 80 71.168 80H768V256zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192m678.784 496-71.104 80H266.816V608h547.2zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"
  1866. })]));
  1867. }
  1868. });
  1869. var handbag_default = /* @__PURE__ */ defineComponent({
  1870. name: "Handbag",
  1871. __name: "handbag",
  1872. setup(__props) {
  1873. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1874. xmlns: "http://www.w3.org/2000/svg",
  1875. "xml:space": "preserve",
  1876. viewBox: "0 0 1024 1024"
  1877. }, [createBaseVNode("path", {
  1878. fill: "currentColor",
  1879. d: "M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01M421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5M832 896H192V320h128v128h64V320h256v128h64V320h128z"
  1880. })]));
  1881. }
  1882. });
  1883. var headset_default = /* @__PURE__ */ defineComponent({
  1884. name: "Headset",
  1885. __name: "headset",
  1886. setup(__props) {
  1887. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1888. xmlns: "http://www.w3.org/2000/svg",
  1889. viewBox: "0 0 1024 1024"
  1890. }, [createBaseVNode("path", {
  1891. fill: "currentColor",
  1892. d: "M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848M896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0"
  1893. })]));
  1894. }
  1895. });
  1896. var help_filled_default = /* @__PURE__ */ defineComponent({
  1897. name: "HelpFilled",
  1898. __name: "help-filled",
  1899. setup(__props) {
  1900. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1901. xmlns: "http://www.w3.org/2000/svg",
  1902. viewBox: "0 0 1024 1024"
  1903. }, [createBaseVNode("path", {
  1904. fill: "currentColor",
  1905. d: "M926.784 480H701.312A192.51 192.51 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480m0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.51 192.51 0 0 0 701.312 544zM97.28 544h225.472A192.51 192.51 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.51 192.51 0 0 0 322.688 480H97.216z"
  1906. })]));
  1907. }
  1908. });
  1909. var help_default = /* @__PURE__ */ defineComponent({
  1910. name: "Help",
  1911. __name: "help",
  1912. setup(__props) {
  1913. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1914. xmlns: "http://www.w3.org/2000/svg",
  1915. viewBox: "0 0 1024 1024"
  1916. }, [createBaseVNode("path", {
  1917. fill: "currentColor",
  1918. d: "m759.936 805.248-90.944-91.008A254.9 254.9 0 0 1 512 768a254.9 254.9 0 0 1-156.992-53.76l-90.944 91.008A382.46 382.46 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752m45.312-45.312A382.46 382.46 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512s-20.096 113.6-53.76 156.992zm-45.312-541.184A382.46 382.46 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.9 254.9 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76zm-541.184 45.312A382.46 382.46 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.9 254.9 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992zm417.28 394.496a194.6 194.6 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.23 191.23 0 0 0-67.968-146.56A191.3 191.3 0 0 0 512 320a191.23 191.23 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.23 191.23 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1919. })]));
  1920. }
  1921. });
  1922. var hide_default = /* @__PURE__ */ defineComponent({
  1923. name: "Hide",
  1924. __name: "hide",
  1925. setup(__props) {
  1926. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1927. xmlns: "http://www.w3.org/2000/svg",
  1928. viewBox: "0 0 1024 1024"
  1929. }, [createBaseVNode("path", {
  1930. fill: "currentColor",
  1931. d: "M876.8 156.8c0-9.6-3.2-16-9.6-22.4s-12.8-9.6-22.4-9.6-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176S0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4m-646.4 528Q115.2 579.2 76.8 512q43.2-72 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4m140.8-96Q352 555.2 352 512c0-44.8 16-83.2 48-112s67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6q-43.2 72-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176S1024 528 1024 512s-48.001-73.6-134.401-176"
  1932. }), createBaseVNode("path", {
  1933. fill: "currentColor",
  1934. d: "M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112s-67.2 48-112 48"
  1935. })]));
  1936. }
  1937. });
  1938. var histogram_default = /* @__PURE__ */ defineComponent({
  1939. name: "Histogram",
  1940. __name: "histogram",
  1941. setup(__props) {
  1942. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1943. xmlns: "http://www.w3.org/2000/svg",
  1944. viewBox: "0 0 1024 1024"
  1945. }, [createBaseVNode("path", {
  1946. fill: "currentColor",
  1947. d: "M416 896V128h192v768zm-288 0V448h192v448zm576 0V320h192v576z"
  1948. })]));
  1949. }
  1950. });
  1951. var home_filled_default = /* @__PURE__ */ defineComponent({
  1952. name: "HomeFilled",
  1953. __name: "home-filled",
  1954. setup(__props) {
  1955. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1956. xmlns: "http://www.w3.org/2000/svg",
  1957. viewBox: "0 0 1024 1024"
  1958. }, [createBaseVNode("path", {
  1959. fill: "currentColor",
  1960. d: "M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"
  1961. })]));
  1962. }
  1963. });
  1964. var hot_water_default = /* @__PURE__ */ defineComponent({
  1965. name: "HotWater",
  1966. __name: "hot-water",
  1967. setup(__props) {
  1968. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1969. xmlns: "http://www.w3.org/2000/svg",
  1970. viewBox: "0 0 1024 1024"
  1971. }, [createBaseVNode("path", {
  1972. fill: "currentColor",
  1973. d: "M273.067 477.867h477.866V409.6H273.067zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134M512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133M375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133m273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133M170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267"
  1974. })]));
  1975. }
  1976. });
  1977. var house_default = /* @__PURE__ */ defineComponent({
  1978. name: "House",
  1979. __name: "house",
  1980. setup(__props) {
  1981. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1982. xmlns: "http://www.w3.org/2000/svg",
  1983. viewBox: "0 0 1024 1024"
  1984. }, [createBaseVNode("path", {
  1985. fill: "currentColor",
  1986. d: "M192 413.952V896h640V413.952L512 147.328zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576"
  1987. })]));
  1988. }
  1989. });
  1990. var ice_cream_round_default = /* @__PURE__ */ defineComponent({
  1991. name: "IceCreamRound",
  1992. __name: "ice-cream-round",
  1993. setup(__props) {
  1994. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  1995. xmlns: "http://www.w3.org/2000/svg",
  1996. viewBox: "0 0 1024 1024"
  1997. }, [createBaseVNode("path", {
  1998. fill: "currentColor",
  1999. d: "m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0"
  2000. })]));
  2001. }
  2002. });
  2003. var ice_cream_square_default = /* @__PURE__ */ defineComponent({
  2004. name: "IceCreamSquare",
  2005. __name: "ice-cream-square",
  2006. setup(__props) {
  2007. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2008. xmlns: "http://www.w3.org/2000/svg",
  2009. viewBox: "0 0 1024 1024"
  2010. }, [createBaseVNode("path", {
  2011. fill: "currentColor",
  2012. d: "M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96zm-64 0h-64v160a32 32 0 1 0 64 0z"
  2013. })]));
  2014. }
  2015. });
  2016. var ice_cream_default = /* @__PURE__ */ defineComponent({
  2017. name: "IceCream",
  2018. __name: "ice-cream",
  2019. setup(__props) {
  2020. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2021. xmlns: "http://www.w3.org/2000/svg",
  2022. viewBox: "0 0 1024 1024"
  2023. }, [createBaseVNode("path", {
  2024. fill: "currentColor",
  2025. d: "M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.13 208.13 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448zm64.256 0h286.208a144 144 0 0 0-286.208 0m351.36 0h286.272a144 144 0 0 0-286.272 0m-294.848 64 271.808 396.608L778.24 512zM511.68 352.64a207.87 207.87 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56"
  2026. })]));
  2027. }
  2028. });
  2029. var ice_drink_default = /* @__PURE__ */ defineComponent({
  2030. name: "IceDrink",
  2031. __name: "ice-drink",
  2032. setup(__props) {
  2033. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2034. xmlns: "http://www.w3.org/2000/svg",
  2035. viewBox: "0 0 1024 1024"
  2036. }, [createBaseVNode("path", {
  2037. fill: "currentColor",
  2038. d: "M512 448v128h239.68l16.064-128zm-64 0H256.256l16.064 128H448zm64-255.36V384h247.744A256.13 256.13 0 0 0 512 192.64m-64 8.064A256.45 256.45 0 0 0 264.256 384H448zm64-72.064A320.13 320.13 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.38 320.38 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32zM743.68 640H280.32l32.128 256h399.104z"
  2039. })]));
  2040. }
  2041. });
  2042. var ice_tea_default = /* @__PURE__ */ defineComponent({
  2043. name: "IceTea",
  2044. __name: "ice-tea",
  2045. setup(__props) {
  2046. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2047. xmlns: "http://www.w3.org/2000/svg",
  2048. viewBox: "0 0 1024 1024"
  2049. }, [createBaseVNode("path", {
  2050. fill: "currentColor",
  2051. d: "M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352M264.064 256h495.872a256.128 256.128 0 0 0-495.872 0m495.424 256H264.512l48 384h398.976zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32m160 192h64v64h-64zm192 64h64v64h-64zm-128 64h64v64h-64zm64-192h64v64h-64z"
  2052. })]));
  2053. }
  2054. });
  2055. var info_filled_default = /* @__PURE__ */ defineComponent({
  2056. name: "InfoFilled",
  2057. __name: "info-filled",
  2058. setup(__props) {
  2059. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2060. xmlns: "http://www.w3.org/2000/svg",
  2061. viewBox: "0 0 1024 1024"
  2062. }, [createBaseVNode("path", {
  2063. fill: "currentColor",
  2064. d: "M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.99 12.99 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"
  2065. })]));
  2066. }
  2067. });
  2068. var iphone_default = /* @__PURE__ */ defineComponent({
  2069. name: "Iphone",
  2070. __name: "iphone",
  2071. setup(__props) {
  2072. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2073. xmlns: "http://www.w3.org/2000/svg",
  2074. viewBox: "0 0 1024 1024"
  2075. }, [createBaseVNode("path", {
  2076. fill: "currentColor",
  2077. d: "M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0"
  2078. })]));
  2079. }
  2080. });
  2081. var key_default = /* @__PURE__ */ defineComponent({
  2082. name: "Key",
  2083. __name: "key",
  2084. setup(__props) {
  2085. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2086. xmlns: "http://www.w3.org/2000/svg",
  2087. viewBox: "0 0 1024 1024"
  2088. }, [createBaseVNode("path", {
  2089. fill: "currentColor",
  2090. d: "M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064M512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384"
  2091. })]));
  2092. }
  2093. });
  2094. var knife_fork_default = /* @__PURE__ */ defineComponent({
  2095. name: "KnifeFork",
  2096. __name: "knife-fork",
  2097. setup(__props) {
  2098. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2099. xmlns: "http://www.w3.org/2000/svg",
  2100. viewBox: "0 0 1024 1024"
  2101. }, [createBaseVNode("path", {
  2102. fill: "currentColor",
  2103. d: "M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56m384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256s32 177.152 32 288z"
  2104. })]));
  2105. }
  2106. });
  2107. var lightning_default = /* @__PURE__ */ defineComponent({
  2108. name: "Lightning",
  2109. __name: "lightning",
  2110. setup(__props) {
  2111. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2112. xmlns: "http://www.w3.org/2000/svg",
  2113. viewBox: "0 0 1024 1024"
  2114. }, [createBaseVNode("path", {
  2115. fill: "currentColor",
  2116. d: "M288 671.36v64.128A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"
  2117. }), createBaseVNode("path", {
  2118. fill: "currentColor",
  2119. d: "M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736z"
  2120. })]));
  2121. }
  2122. });
  2123. var link_default = /* @__PURE__ */ defineComponent({
  2124. name: "Link",
  2125. __name: "link",
  2126. setup(__props) {
  2127. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2128. xmlns: "http://www.w3.org/2000/svg",
  2129. viewBox: "0 0 1024 1024"
  2130. }, [createBaseVNode("path", {
  2131. fill: "currentColor",
  2132. d: "M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152z"
  2133. })]));
  2134. }
  2135. });
  2136. var list_default = /* @__PURE__ */ defineComponent({
  2137. name: "List",
  2138. __name: "list",
  2139. setup(__props) {
  2140. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2141. xmlns: "http://www.w3.org/2000/svg",
  2142. viewBox: "0 0 1024 1024"
  2143. }, [createBaseVNode("path", {
  2144. fill: "currentColor",
  2145. d: "M704 192h160v736H160V192h160v64h384zM288 512h448v-64H288zm0 256h448v-64H288zm96-576V96h256v96z"
  2146. })]));
  2147. }
  2148. });
  2149. var loading_default = /* @__PURE__ */ defineComponent({
  2150. name: "Loading",
  2151. __name: "loading",
  2152. setup(__props) {
  2153. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2154. xmlns: "http://www.w3.org/2000/svg",
  2155. viewBox: "0 0 1024 1024"
  2156. }, [createBaseVNode("path", {
  2157. fill: "currentColor",
  2158. d: "M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248m452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248M828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0"
  2159. })]));
  2160. }
  2161. });
  2162. var location_filled_default = /* @__PURE__ */ defineComponent({
  2163. name: "LocationFilled",
  2164. __name: "location-filled",
  2165. setup(__props) {
  2166. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2167. xmlns: "http://www.w3.org/2000/svg",
  2168. viewBox: "0 0 1024 1024"
  2169. }, [createBaseVNode("path", {
  2170. fill: "currentColor",
  2171. d: "M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928m0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6"
  2172. })]));
  2173. }
  2174. });
  2175. var location_information_default = /* @__PURE__ */ defineComponent({
  2176. name: "LocationInformation",
  2177. __name: "location-information",
  2178. setup(__props) {
  2179. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2180. xmlns: "http://www.w3.org/2000/svg",
  2181. viewBox: "0 0 1024 1024"
  2182. }, [
  2183. createBaseVNode("path", {
  2184. fill: "currentColor",
  2185. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  2186. }),
  2187. createBaseVNode("path", {
  2188. fill: "currentColor",
  2189. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  2190. }),
  2191. createBaseVNode("path", {
  2192. fill: "currentColor",
  2193. d: "M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"
  2194. })
  2195. ]));
  2196. }
  2197. });
  2198. var location_default = /* @__PURE__ */ defineComponent({
  2199. name: "Location",
  2200. __name: "location",
  2201. setup(__props) {
  2202. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2203. xmlns: "http://www.w3.org/2000/svg",
  2204. viewBox: "0 0 1024 1024"
  2205. }, [createBaseVNode("path", {
  2206. fill: "currentColor",
  2207. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  2208. }), createBaseVNode("path", {
  2209. fill: "currentColor",
  2210. d: "M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"
  2211. })]));
  2212. }
  2213. });
  2214. var lock_default = /* @__PURE__ */ defineComponent({
  2215. name: "Lock",
  2216. __name: "lock",
  2217. setup(__props) {
  2218. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2219. xmlns: "http://www.w3.org/2000/svg",
  2220. viewBox: "0 0 1024 1024"
  2221. }, [createBaseVNode("path", {
  2222. fill: "currentColor",
  2223. d: "M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"
  2224. }), createBaseVNode("path", {
  2225. fill: "currentColor",
  2226. d: "M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64"
  2227. })]));
  2228. }
  2229. });
  2230. var lollipop_default = /* @__PURE__ */ defineComponent({
  2231. name: "Lollipop",
  2232. __name: "lollipop",
  2233. setup(__props) {
  2234. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2235. xmlns: "http://www.w3.org/2000/svg",
  2236. viewBox: "0 0 1024 1024"
  2237. }, [createBaseVNode("path", {
  2238. fill: "currentColor",
  2239. d: "M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696m105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744m-54.464-36.032a322 322 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"
  2240. })]));
  2241. }
  2242. });
  2243. var magic_stick_default = /* @__PURE__ */ defineComponent({
  2244. name: "MagicStick",
  2245. __name: "magic-stick",
  2246. setup(__props) {
  2247. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2248. xmlns: "http://www.w3.org/2000/svg",
  2249. viewBox: "0 0 1024 1024"
  2250. }, [createBaseVNode("path", {
  2251. fill: "currentColor",
  2252. d: "M512 64h64v192h-64zm0 576h64v192h-64zM160 480v-64h192v64zm576 0v-64h192v64zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248z"
  2253. })]));
  2254. }
  2255. });
  2256. var magnet_default = /* @__PURE__ */ defineComponent({
  2257. name: "Magnet",
  2258. __name: "magnet",
  2259. setup(__props) {
  2260. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2261. xmlns: "http://www.w3.org/2000/svg",
  2262. viewBox: "0 0 1024 1024"
  2263. }, [createBaseVNode("path", {
  2264. fill: "currentColor",
  2265. d: "M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0"
  2266. })]));
  2267. }
  2268. });
  2269. var male_default = /* @__PURE__ */ defineComponent({
  2270. name: "Male",
  2271. __name: "male",
  2272. setup(__props) {
  2273. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2274. xmlns: "http://www.w3.org/2000/svg",
  2275. viewBox: "0 0 1024 1024"
  2276. }, [
  2277. createBaseVNode("path", {
  2278. fill: "currentColor",
  2279. d: "M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450m0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5m253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125"
  2280. }),
  2281. createBaseVNode("path", {
  2282. fill: "currentColor",
  2283. d: "M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125"
  2284. }),
  2285. createBaseVNode("path", {
  2286. fill: "currentColor",
  2287. d: "M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"
  2288. })
  2289. ]));
  2290. }
  2291. });
  2292. var management_default = /* @__PURE__ */ defineComponent({
  2293. name: "Management",
  2294. __name: "management",
  2295. setup(__props) {
  2296. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2297. xmlns: "http://www.w3.org/2000/svg",
  2298. viewBox: "0 0 1024 1024"
  2299. }, [createBaseVNode("path", {
  2300. fill: "currentColor",
  2301. d: "M576 128v288l96-96 96 96V128h128v768H320V128zm-448 0h128v768H128z"
  2302. })]));
  2303. }
  2304. });
  2305. var map_location_default = /* @__PURE__ */ defineComponent({
  2306. name: "MapLocation",
  2307. __name: "map-location",
  2308. setup(__props) {
  2309. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2310. xmlns: "http://www.w3.org/2000/svg",
  2311. viewBox: "0 0 1024 1024"
  2312. }, [createBaseVNode("path", {
  2313. fill: "currentColor",
  2314. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  2315. }), createBaseVNode("path", {
  2316. fill: "currentColor",
  2317. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256m345.6 192L960 960H672v-64H352v64H64l102.4-256zm-68.928 0H235.328l-76.8 192h706.944z"
  2318. })]));
  2319. }
  2320. });
  2321. var medal_default = /* @__PURE__ */ defineComponent({
  2322. name: "Medal",
  2323. __name: "medal",
  2324. setup(__props) {
  2325. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2326. xmlns: "http://www.w3.org/2000/svg",
  2327. viewBox: "0 0 1024 1024"
  2328. }, [createBaseVNode("path", {
  2329. fill: "currentColor",
  2330. d: "M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  2331. }), createBaseVNode("path", {
  2332. fill: "currentColor",
  2333. d: "M576 128H448v200a286.7 286.7 0 0 1 64-8c19.52 0 40.832 2.688 64 8zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96s-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64"
  2334. })]));
  2335. }
  2336. });
  2337. var memo_default = /* @__PURE__ */ defineComponent({
  2338. name: "Memo",
  2339. __name: "memo",
  2340. setup(__props) {
  2341. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2342. xmlns: "http://www.w3.org/2000/svg",
  2343. "xml:space": "preserve",
  2344. viewBox: "0 0 1024 1024"
  2345. }, [
  2346. createBaseVNode("path", {
  2347. fill: "currentColor",
  2348. d: "M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"
  2349. }),
  2350. createBaseVNode("path", {
  2351. fill: "currentColor",
  2352. d: "M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01M192 896V128h96v768zm640 0H352V128h480z"
  2353. }),
  2354. createBaseVNode("path", {
  2355. fill: "currentColor",
  2356. d: "M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32m0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"
  2357. })
  2358. ]));
  2359. }
  2360. });
  2361. var menu_default = /* @__PURE__ */ defineComponent({
  2362. name: "Menu",
  2363. __name: "menu",
  2364. setup(__props) {
  2365. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2366. xmlns: "http://www.w3.org/2000/svg",
  2367. viewBox: "0 0 1024 1024"
  2368. }, [createBaseVNode("path", {
  2369. fill: "currentColor",
  2370. d: "M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32z"
  2371. })]));
  2372. }
  2373. });
  2374. var message_box_default = /* @__PURE__ */ defineComponent({
  2375. name: "MessageBox",
  2376. __name: "message-box",
  2377. setup(__props) {
  2378. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2379. xmlns: "http://www.w3.org/2000/svg",
  2380. viewBox: "0 0 1024 1024"
  2381. }, [createBaseVNode("path", {
  2382. fill: "currentColor",
  2383. d: "M288 384h448v64H288zm96-128h256v64H384zM131.456 512H384v128h256V512h252.544L721.856 192H302.144zM896 576H704v128H320V576H128v256h768zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128"
  2384. })]));
  2385. }
  2386. });
  2387. var message_default = /* @__PURE__ */ defineComponent({
  2388. name: "Message",
  2389. __name: "message",
  2390. setup(__props) {
  2391. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2392. xmlns: "http://www.w3.org/2000/svg",
  2393. viewBox: "0 0 1024 1024"
  2394. }, [createBaseVNode("path", {
  2395. fill: "currentColor",
  2396. d: "M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64"
  2397. }), createBaseVNode("path", {
  2398. fill: "currentColor",
  2399. d: "M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224z"
  2400. })]));
  2401. }
  2402. });
  2403. var mic_default = /* @__PURE__ */ defineComponent({
  2404. name: "Mic",
  2405. __name: "mic",
  2406. setup(__props) {
  2407. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2408. xmlns: "http://www.w3.org/2000/svg",
  2409. viewBox: "0 0 1024 1024"
  2410. }, [createBaseVNode("path", {
  2411. fill: "currentColor",
  2412. d: "M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128z"
  2413. })]));
  2414. }
  2415. });
  2416. var microphone_default = /* @__PURE__ */ defineComponent({
  2417. name: "Microphone",
  2418. __name: "microphone",
  2419. setup(__props) {
  2420. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2421. xmlns: "http://www.w3.org/2000/svg",
  2422. viewBox: "0 0 1024 1024"
  2423. }, [createBaseVNode("path", {
  2424. fill: "currentColor",
  2425. d: "M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128m0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64m-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64z"
  2426. })]));
  2427. }
  2428. });
  2429. var milk_tea_default = /* @__PURE__ */ defineComponent({
  2430. name: "MilkTea",
  2431. __name: "milk-tea",
  2432. setup(__props) {
  2433. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2434. xmlns: "http://www.w3.org/2000/svg",
  2435. viewBox: "0 0 1024 1024"
  2436. }, [createBaseVNode("path", {
  2437. fill: "currentColor",
  2438. d: "M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64m493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12"
  2439. })]));
  2440. }
  2441. });
  2442. var minus_default = /* @__PURE__ */ defineComponent({
  2443. name: "Minus",
  2444. __name: "minus",
  2445. setup(__props) {
  2446. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2447. xmlns: "http://www.w3.org/2000/svg",
  2448. viewBox: "0 0 1024 1024"
  2449. }, [createBaseVNode("path", {
  2450. fill: "currentColor",
  2451. d: "M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"
  2452. })]));
  2453. }
  2454. });
  2455. var money_default = /* @__PURE__ */ defineComponent({
  2456. name: "Money",
  2457. __name: "money",
  2458. setup(__props) {
  2459. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2460. xmlns: "http://www.w3.org/2000/svg",
  2461. viewBox: "0 0 1024 1024"
  2462. }, [
  2463. createBaseVNode("path", {
  2464. fill: "currentColor",
  2465. d: "M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.06 29.06 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640z"
  2466. }),
  2467. createBaseVNode("path", {
  2468. fill: "currentColor",
  2469. d: "M768 192H128v448h640zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.06 29.06 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.06 29.06 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"
  2470. }),
  2471. createBaseVNode("path", {
  2472. fill: "currentColor",
  2473. d: "M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320m0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192"
  2474. })
  2475. ]));
  2476. }
  2477. });
  2478. var monitor_default = /* @__PURE__ */ defineComponent({
  2479. name: "Monitor",
  2480. __name: "monitor",
  2481. setup(__props) {
  2482. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2483. xmlns: "http://www.w3.org/2000/svg",
  2484. viewBox: "0 0 1024 1024"
  2485. }, [createBaseVNode("path", {
  2486. fill: "currentColor",
  2487. d: "M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64z"
  2488. })]));
  2489. }
  2490. });
  2491. var moon_night_default = /* @__PURE__ */ defineComponent({
  2492. name: "MoonNight",
  2493. __name: "moon-night",
  2494. setup(__props) {
  2495. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2496. xmlns: "http://www.w3.org/2000/svg",
  2497. viewBox: "0 0 1024 1024"
  2498. }, [createBaseVNode("path", {
  2499. fill: "currentColor",
  2500. d: "M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.3 448.3 0 0 1 384 512M171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"
  2501. }), createBaseVNode("path", {
  2502. fill: "currentColor",
  2503. d: "M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"
  2504. })]));
  2505. }
  2506. });
  2507. var moon_default = /* @__PURE__ */ defineComponent({
  2508. name: "Moon",
  2509. __name: "moon",
  2510. setup(__props) {
  2511. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2512. xmlns: "http://www.w3.org/2000/svg",
  2513. viewBox: "0 0 1024 1024"
  2514. }, [createBaseVNode("path", {
  2515. fill: "currentColor",
  2516. d: "M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 391 391 0 0 0-17.408 16.384m181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696"
  2517. })]));
  2518. }
  2519. });
  2520. var more_filled_default = /* @__PURE__ */ defineComponent({
  2521. name: "MoreFilled",
  2522. __name: "more-filled",
  2523. setup(__props) {
  2524. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2525. xmlns: "http://www.w3.org/2000/svg",
  2526. viewBox: "0 0 1024 1024"
  2527. }, [createBaseVNode("path", {
  2528. fill: "currentColor",
  2529. d: "M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"
  2530. })]));
  2531. }
  2532. });
  2533. var more_default = /* @__PURE__ */ defineComponent({
  2534. name: "More",
  2535. __name: "more",
  2536. setup(__props) {
  2537. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2538. xmlns: "http://www.w3.org/2000/svg",
  2539. viewBox: "0 0 1024 1024"
  2540. }, [createBaseVNode("path", {
  2541. fill: "currentColor",
  2542. d: "M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"
  2543. })]));
  2544. }
  2545. });
  2546. var mostly_cloudy_default = /* @__PURE__ */ defineComponent({
  2547. name: "MostlyCloudy",
  2548. __name: "mostly-cloudy",
  2549. setup(__props) {
  2550. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2551. xmlns: "http://www.w3.org/2000/svg",
  2552. viewBox: "0 0 1024 1024"
  2553. }, [createBaseVNode("path", {
  2554. fill: "currentColor",
  2555. d: "M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.81 207.81 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048m15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.81 271.81 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72"
  2556. })]));
  2557. }
  2558. });
  2559. var mouse_default = /* @__PURE__ */ defineComponent({
  2560. name: "Mouse",
  2561. __name: "mouse",
  2562. setup(__props) {
  2563. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2564. xmlns: "http://www.w3.org/2000/svg",
  2565. viewBox: "0 0 1024 1024"
  2566. }, [createBaseVNode("path", {
  2567. fill: "currentColor",
  2568. d: "M438.144 256c-68.352 0-92.736 4.672-117.76 18.112q-30.144 16.128-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76q16.128 30.144 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112q30.144-16.128 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.46 110.46 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.46 174.46 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.46 174.46 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.46 174.46 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"
  2569. }), createBaseVNode("path", {
  2570. fill: "currentColor",
  2571. d: "M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32m32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96z"
  2572. })]));
  2573. }
  2574. });
  2575. var mug_default = /* @__PURE__ */ defineComponent({
  2576. name: "Mug",
  2577. __name: "mug",
  2578. setup(__props) {
  2579. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2580. xmlns: "http://www.w3.org/2000/svg",
  2581. viewBox: "0 0 1024 1024"
  2582. }, [createBaseVNode("path", {
  2583. fill: "currentColor",
  2584. d: "M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64m64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32z"
  2585. })]));
  2586. }
  2587. });
  2588. var mute_notification_default = /* @__PURE__ */ defineComponent({
  2589. name: "MuteNotification",
  2590. __name: "mute-notification",
  2591. setup(__props) {
  2592. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2593. xmlns: "http://www.w3.org/2000/svg",
  2594. viewBox: "0 0 1024 1024"
  2595. }, [createBaseVNode("path", {
  2596. fill: "currentColor",
  2597. d: "m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.13 320.13 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.55 319.55 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0"
  2598. }), createBaseVNode("path", {
  2599. fill: "currentColor",
  2600. d: "M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056z"
  2601. })]));
  2602. }
  2603. });
  2604. var mute_default = /* @__PURE__ */ defineComponent({
  2605. name: "Mute",
  2606. __name: "mute",
  2607. setup(__props) {
  2608. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2609. xmlns: "http://www.w3.org/2000/svg",
  2610. viewBox: "0 0 1024 1024"
  2611. }, [createBaseVNode("path", {
  2612. fill: "currentColor",
  2613. d: "m412.16 592.128-45.44 45.44A191.23 191.23 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128m51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528zM314.88 779.968l46.144-46.08A223 223 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032M266.752 737.6A286.98 286.98 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288z"
  2614. }), createBaseVNode("path", {
  2615. fill: "currentColor",
  2616. d: "M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056z"
  2617. })]));
  2618. }
  2619. });
  2620. var no_smoking_default = /* @__PURE__ */ defineComponent({
  2621. name: "NoSmoking",
  2622. __name: "no-smoking",
  2623. setup(__props) {
  2624. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2625. xmlns: "http://www.w3.org/2000/svg",
  2626. viewBox: "0 0 1024 1024"
  2627. }, [createBaseVNode("path", {
  2628. fill: "currentColor",
  2629. d: "M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744zM768 576v128h128V576zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"
  2630. })]));
  2631. }
  2632. });
  2633. var notebook_default = /* @__PURE__ */ defineComponent({
  2634. name: "Notebook",
  2635. __name: "notebook",
  2636. setup(__props) {
  2637. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2638. xmlns: "http://www.w3.org/2000/svg",
  2639. viewBox: "0 0 1024 1024"
  2640. }, [createBaseVNode("path", {
  2641. fill: "currentColor",
  2642. d: "M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  2643. }), createBaseVNode("path", {
  2644. fill: "currentColor",
  2645. d: "M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32"
  2646. })]));
  2647. }
  2648. });
  2649. var notification_default = /* @__PURE__ */ defineComponent({
  2650. name: "Notification",
  2651. __name: "notification",
  2652. setup(__props) {
  2653. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2654. xmlns: "http://www.w3.org/2000/svg",
  2655. viewBox: "0 0 1024 1024"
  2656. }, [createBaseVNode("path", {
  2657. fill: "currentColor",
  2658. d: "M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128z"
  2659. }), createBaseVNode("path", {
  2660. fill: "currentColor",
  2661. d: "M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  2662. })]));
  2663. }
  2664. });
  2665. var odometer_default = /* @__PURE__ */ defineComponent({
  2666. name: "Odometer",
  2667. __name: "odometer",
  2668. setup(__props) {
  2669. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2670. xmlns: "http://www.w3.org/2000/svg",
  2671. viewBox: "0 0 1024 1024"
  2672. }, [
  2673. createBaseVNode("path", {
  2674. fill: "currentColor",
  2675. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  2676. }),
  2677. createBaseVNode("path", {
  2678. fill: "currentColor",
  2679. d: "M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0"
  2680. }),
  2681. createBaseVNode("path", {
  2682. fill: "currentColor",
  2683. d: "M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928"
  2684. })
  2685. ]));
  2686. }
  2687. });
  2688. var office_building_default = /* @__PURE__ */ defineComponent({
  2689. name: "OfficeBuilding",
  2690. __name: "office-building",
  2691. setup(__props) {
  2692. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2693. xmlns: "http://www.w3.org/2000/svg",
  2694. viewBox: "0 0 1024 1024"
  2695. }, [
  2696. createBaseVNode("path", {
  2697. fill: "currentColor",
  2698. d: "M192 128v704h384V128zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  2699. }),
  2700. createBaseVNode("path", {
  2701. fill: "currentColor",
  2702. d: "M256 256h256v64H256zm0 192h256v64H256zm0 192h256v64H256zm384-128h128v64H640zm0 128h128v64H640zM64 832h896v64H64z"
  2703. }),
  2704. createBaseVNode("path", {
  2705. fill: "currentColor",
  2706. d: "M640 384v448h192V384zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32"
  2707. })
  2708. ]));
  2709. }
  2710. });
  2711. var open_default = /* @__PURE__ */ defineComponent({
  2712. name: "Open",
  2713. __name: "open",
  2714. setup(__props) {
  2715. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2716. xmlns: "http://www.w3.org/2000/svg",
  2717. viewBox: "0 0 1024 1024"
  2718. }, [createBaseVNode("path", {
  2719. fill: "currentColor",
  2720. d: "M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36"
  2721. }), createBaseVNode("path", {
  2722. fill: "currentColor",
  2723. d: "M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"
  2724. })]));
  2725. }
  2726. });
  2727. var operation_default = /* @__PURE__ */ defineComponent({
  2728. name: "Operation",
  2729. __name: "operation",
  2730. setup(__props) {
  2731. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2732. xmlns: "http://www.w3.org/2000/svg",
  2733. viewBox: "0 0 1024 1024"
  2734. }, [createBaseVNode("path", {
  2735. fill: "currentColor",
  2736. d: "M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64z"
  2737. })]));
  2738. }
  2739. });
  2740. var opportunity_default = /* @__PURE__ */ defineComponent({
  2741. name: "Opportunity",
  2742. __name: "opportunity",
  2743. setup(__props) {
  2744. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2745. xmlns: "http://www.w3.org/2000/svg",
  2746. viewBox: "0 0 1024 1024"
  2747. }, [createBaseVNode("path", {
  2748. fill: "currentColor",
  2749. d: "M384 960v-64h192.064v64zm448-544a350.66 350.66 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.55 351.55 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416m-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288z"
  2750. })]));
  2751. }
  2752. });
  2753. var orange_default = /* @__PURE__ */ defineComponent({
  2754. name: "Orange",
  2755. __name: "orange",
  2756. setup(__props) {
  2757. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2758. xmlns: "http://www.w3.org/2000/svg",
  2759. viewBox: "0 0 1024 1024"
  2760. }, [createBaseVNode("path", {
  2761. fill: "currentColor",
  2762. d: "M544 894.72a382.34 382.34 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.34 382.34 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024zM894.656 480a382.34 382.34 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024zm-134.72-261.248A382.34 382.34 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696zM480 129.344a382.34 382.34 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696zm-261.248 134.72A382.34 382.34 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024zM129.344 544a382.34 382.34 0 0 0 89.408 215.936l182.976-182.912A127.2 127.2 0 0 1 388.032 544zm134.72 261.248A382.34 382.34 0 0 0 480 894.656V635.968a127.2 127.2 0 0 1-33.024-13.696zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128"
  2763. })]));
  2764. }
  2765. });
  2766. var paperclip_default = /* @__PURE__ */ defineComponent({
  2767. name: "Paperclip",
  2768. __name: "paperclip",
  2769. setup(__props) {
  2770. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2771. xmlns: "http://www.w3.org/2000/svg",
  2772. viewBox: "0 0 1024 1024"
  2773. }, [createBaseVNode("path", {
  2774. fill: "currentColor",
  2775. d: "M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744z"
  2776. })]));
  2777. }
  2778. });
  2779. var partly_cloudy_default = /* @__PURE__ */ defineComponent({
  2780. name: "PartlyCloudy",
  2781. __name: "partly-cloudy",
  2782. setup(__props) {
  2783. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2784. xmlns: "http://www.w3.org/2000/svg",
  2785. viewBox: "0 0 1024 1024"
  2786. }, [createBaseVNode("path", {
  2787. fill: "currentColor",
  2788. d: "M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"
  2789. }), createBaseVNode("path", {
  2790. fill: "currentColor",
  2791. d: "M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6004 6004 0 0 0-49.28 41.408"
  2792. })]));
  2793. }
  2794. });
  2795. var pear_default = /* @__PURE__ */ defineComponent({
  2796. name: "Pear",
  2797. __name: "pear",
  2798. setup(__props) {
  2799. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2800. xmlns: "http://www.w3.org/2000/svg",
  2801. viewBox: "0 0 1024 1024"
  2802. }, [createBaseVNode("path", {
  2803. fill: "currentColor",
  2804. d: "M542.336 258.816a443 443 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.69 162.69 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.69 162.69 0 0 0-130.112-133.12m-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a317 317 0 0 0-9.792 15.104 226.69 226.69 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"
  2805. })]));
  2806. }
  2807. });
  2808. var phone_filled_default = /* @__PURE__ */ defineComponent({
  2809. name: "PhoneFilled",
  2810. __name: "phone-filled",
  2811. setup(__props) {
  2812. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2813. xmlns: "http://www.w3.org/2000/svg",
  2814. viewBox: "0 0 1024 1024"
  2815. }, [createBaseVNode("path", {
  2816. fill: "currentColor",
  2817. d: "M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048"
  2818. })]));
  2819. }
  2820. });
  2821. var phone_default = /* @__PURE__ */ defineComponent({
  2822. name: "Phone",
  2823. __name: "phone",
  2824. setup(__props) {
  2825. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2826. xmlns: "http://www.w3.org/2000/svg",
  2827. viewBox: "0 0 1024 1024"
  2828. }, [createBaseVNode("path", {
  2829. fill: "currentColor",
  2830. d: "M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192m0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384"
  2831. })]));
  2832. }
  2833. });
  2834. var picture_filled_default = /* @__PURE__ */ defineComponent({
  2835. name: "PictureFilled",
  2836. __name: "picture-filled",
  2837. setup(__props) {
  2838. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2839. xmlns: "http://www.w3.org/2000/svg",
  2840. viewBox: "0 0 1024 1024"
  2841. }, [createBaseVNode("path", {
  2842. fill: "currentColor",
  2843. d: "M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"
  2844. })]));
  2845. }
  2846. });
  2847. var picture_rounded_default = /* @__PURE__ */ defineComponent({
  2848. name: "PictureRounded",
  2849. __name: "picture-rounded",
  2850. setup(__props) {
  2851. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2852. xmlns: "http://www.w3.org/2000/svg",
  2853. viewBox: "0 0 1024 1024"
  2854. }, [createBaseVNode("path", {
  2855. fill: "currentColor",
  2856. d: "M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768m0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896"
  2857. }), createBaseVNode("path", {
  2858. fill: "currentColor",
  2859. d: "M640 288q64 0 64 64t-64 64-64-64 64-64M214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"
  2860. })]));
  2861. }
  2862. });
  2863. var picture_default = /* @__PURE__ */ defineComponent({
  2864. name: "Picture",
  2865. __name: "picture",
  2866. setup(__props) {
  2867. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2868. xmlns: "http://www.w3.org/2000/svg",
  2869. viewBox: "0 0 1024 1024"
  2870. }, [createBaseVNode("path", {
  2871. fill: "currentColor",
  2872. d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
  2873. }), createBaseVNode("path", {
  2874. fill: "currentColor",
  2875. d: "M384 288q64 0 64 64t-64 64-64-64 64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"
  2876. })]));
  2877. }
  2878. });
  2879. var pie_chart_default = /* @__PURE__ */ defineComponent({
  2880. name: "PieChart",
  2881. __name: "pie-chart",
  2882. setup(__props) {
  2883. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2884. xmlns: "http://www.w3.org/2000/svg",
  2885. viewBox: "0 0 1024 1024"
  2886. }, [createBaseVNode("path", {
  2887. fill: "currentColor",
  2888. d: "M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.13 384.13 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.13 448.13 0 0 1 448 68.48"
  2889. }), createBaseVNode("path", {
  2890. fill: "currentColor",
  2891. d: "M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28M512 64V33.152A448 448 0 0 1 990.848 512H512z"
  2892. })]));
  2893. }
  2894. });
  2895. var place_default = /* @__PURE__ */ defineComponent({
  2896. name: "Place",
  2897. __name: "place",
  2898. setup(__props) {
  2899. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2900. xmlns: "http://www.w3.org/2000/svg",
  2901. viewBox: "0 0 1024 1024"
  2902. }, [
  2903. createBaseVNode("path", {
  2904. fill: "currentColor",
  2905. d: "M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  2906. }),
  2907. createBaseVNode("path", {
  2908. fill: "currentColor",
  2909. d: "M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32"
  2910. }),
  2911. createBaseVNode("path", {
  2912. fill: "currentColor",
  2913. d: "M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912"
  2914. })
  2915. ]));
  2916. }
  2917. });
  2918. var platform_default = /* @__PURE__ */ defineComponent({
  2919. name: "Platform",
  2920. __name: "platform",
  2921. setup(__props) {
  2922. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2923. xmlns: "http://www.w3.org/2000/svg",
  2924. viewBox: "0 0 1024 1024"
  2925. }, [createBaseVNode("path", {
  2926. fill: "currentColor",
  2927. d: "M448 832v-64h128v64h192v64H256v-64zM128 704V128h768v576z"
  2928. })]));
  2929. }
  2930. });
  2931. var plus_default = /* @__PURE__ */ defineComponent({
  2932. name: "Plus",
  2933. __name: "plus",
  2934. setup(__props) {
  2935. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2936. xmlns: "http://www.w3.org/2000/svg",
  2937. viewBox: "0 0 1024 1024"
  2938. }, [createBaseVNode("path", {
  2939. fill: "currentColor",
  2940. d: "M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"
  2941. })]));
  2942. }
  2943. });
  2944. var pointer_default = /* @__PURE__ */ defineComponent({
  2945. name: "Pointer",
  2946. __name: "pointer",
  2947. setup(__props) {
  2948. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2949. xmlns: "http://www.w3.org/2000/svg",
  2950. viewBox: "0 0 1024 1024"
  2951. }, [createBaseVNode("path", {
  2952. fill: "currentColor",
  2953. d: "M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.27 94.27 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128M359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.27 158.27 0 0 1 185.984 8.32z"
  2954. })]));
  2955. }
  2956. });
  2957. var position_default = /* @__PURE__ */ defineComponent({
  2958. name: "Position",
  2959. __name: "position",
  2960. setup(__props) {
  2961. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2962. xmlns: "http://www.w3.org/2000/svg",
  2963. viewBox: "0 0 1024 1024"
  2964. }, [createBaseVNode("path", {
  2965. fill: "currentColor",
  2966. d: "m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992z"
  2967. })]));
  2968. }
  2969. });
  2970. var postcard_default = /* @__PURE__ */ defineComponent({
  2971. name: "Postcard",
  2972. __name: "postcard",
  2973. setup(__props) {
  2974. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2975. xmlns: "http://www.w3.org/2000/svg",
  2976. viewBox: "0 0 1024 1024"
  2977. }, [createBaseVNode("path", {
  2978. fill: "currentColor",
  2979. d: "M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96"
  2980. }), createBaseVNode("path", {
  2981. fill: "currentColor",
  2982. d: "M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128M288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32m0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  2983. })]));
  2984. }
  2985. });
  2986. var pouring_default = /* @__PURE__ */ defineComponent({
  2987. name: "Pouring",
  2988. __name: "pouring",
  2989. setup(__props) {
  2990. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  2991. xmlns: "http://www.w3.org/2000/svg",
  2992. viewBox: "0 0 1024 1024"
  2993. }, [createBaseVNode("path", {
  2994. fill: "currentColor",
  2995. d: "m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672M959.552 480a256 256 0 0 1-256 256h-400A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32"
  2996. })]));
  2997. }
  2998. });
  2999. var present_default = /* @__PURE__ */ defineComponent({
  3000. name: "Present",
  3001. __name: "present",
  3002. setup(__props) {
  3003. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3004. xmlns: "http://www.w3.org/2000/svg",
  3005. viewBox: "0 0 1024 1024"
  3006. }, [
  3007. createBaseVNode("path", {
  3008. fill: "currentColor",
  3009. d: "M480 896V640H192v-64h288V320H192v576zm64 0h288V320H544v256h288v64H544zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"
  3010. }),
  3011. createBaseVNode("path", {
  3012. fill: "currentColor",
  3013. d: "M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32"
  3014. }),
  3015. createBaseVNode("path", {
  3016. fill: "currentColor",
  3017. d: "M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3018. }),
  3019. createBaseVNode("path", {
  3020. fill: "currentColor",
  3021. d: "M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3022. })
  3023. ]));
  3024. }
  3025. });
  3026. var price_tag_default = /* @__PURE__ */ defineComponent({
  3027. name: "PriceTag",
  3028. __name: "price-tag",
  3029. setup(__props) {
  3030. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3031. xmlns: "http://www.w3.org/2000/svg",
  3032. viewBox: "0 0 1024 1024"
  3033. }, [createBaseVNode("path", {
  3034. fill: "currentColor",
  3035. d: "M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"
  3036. }), createBaseVNode("path", {
  3037. fill: "currentColor",
  3038. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3039. })]));
  3040. }
  3041. });
  3042. var printer_default = /* @__PURE__ */ defineComponent({
  3043. name: "Printer",
  3044. __name: "printer",
  3045. setup(__props) {
  3046. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3047. xmlns: "http://www.w3.org/2000/svg",
  3048. viewBox: "0 0 1024 1024"
  3049. }, [createBaseVNode("path", {
  3050. fill: "currentColor",
  3051. d: "M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256zm64-192v320h384V576zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.3 23.3 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.3 23.3 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704zm64-448h384V128H320zm-64 128h64v64h-64zm128 0h64v64h-64z"
  3052. })]));
  3053. }
  3054. });
  3055. var promotion_default = /* @__PURE__ */ defineComponent({
  3056. name: "Promotion",
  3057. __name: "promotion",
  3058. setup(__props) {
  3059. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3060. xmlns: "http://www.w3.org/2000/svg",
  3061. viewBox: "0 0 1024 1024"
  3062. }, [createBaseVNode("path", {
  3063. fill: "currentColor",
  3064. d: "m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472zm256 512V657.024L512 768z"
  3065. })]));
  3066. }
  3067. });
  3068. var quartz_watch_default = /* @__PURE__ */ defineComponent({
  3069. name: "QuartzWatch",
  3070. __name: "quartz-watch",
  3071. setup(__props) {
  3072. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3073. xmlns: "http://www.w3.org/2000/svg",
  3074. "xml:space": "preserve",
  3075. viewBox: "0 0 1024 1024"
  3076. }, [
  3077. createBaseVNode("path", {
  3078. fill: "currentColor",
  3079. d: "M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51q-13.005.48-22.5 10.02c-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5.51-22.15-7.49-31.49zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01m6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01s-3.66-16.16-10.02-22.5c-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01q5.025 17.985 22.5 22.5m242.94 0q17.505-4.545 22.02-22.02c3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5q-9.54 9.51-10.02 22.5c-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49M512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01"
  3080. }),
  3081. createBaseVNode("path", {
  3082. fill: "currentColor",
  3083. d: "M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5M416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768"
  3084. }),
  3085. createBaseVNode("path", {
  3086. fill: "currentColor",
  3087. d: "M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02"
  3088. })
  3089. ]));
  3090. }
  3091. });
  3092. var question_filled_default = /* @__PURE__ */ defineComponent({
  3093. name: "QuestionFilled",
  3094. __name: "question-filled",
  3095. setup(__props) {
  3096. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3097. xmlns: "http://www.w3.org/2000/svg",
  3098. viewBox: "0 0 1024 1024"
  3099. }, [createBaseVNode("path", {
  3100. fill: "currentColor",
  3101. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592q0-64.416-42.24-101.376c-28.16-25.344-65.472-37.312-111.232-37.312m-12.672 406.208a54.27 54.27 0 0 0-38.72 14.784 49.4 49.4 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.85 54.85 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.97 51.97 0 0 0-15.488-38.016 55.94 55.94 0 0 0-39.424-14.784"
  3102. })]));
  3103. }
  3104. });
  3105. var rank_default = /* @__PURE__ */ defineComponent({
  3106. name: "Rank",
  3107. __name: "rank",
  3108. setup(__props) {
  3109. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3110. xmlns: "http://www.w3.org/2000/svg",
  3111. viewBox: "0 0 1024 1024"
  3112. }, [createBaseVNode("path", {
  3113. fill: "currentColor",
  3114. d: "m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544z"
  3115. })]));
  3116. }
  3117. });
  3118. var reading_lamp_default = /* @__PURE__ */ defineComponent({
  3119. name: "ReadingLamp",
  3120. __name: "reading-lamp",
  3121. setup(__props) {
  3122. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3123. xmlns: "http://www.w3.org/2000/svg",
  3124. viewBox: "0 0 1024 1024"
  3125. }, [createBaseVNode("path", {
  3126. fill: "currentColor",
  3127. d: "M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m-44.672-768-99.52 448h608.384l-99.52-448zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"
  3128. }), createBaseVNode("path", {
  3129. fill: "currentColor",
  3130. d: "M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32m-192-.064h64V960h-64z"
  3131. })]));
  3132. }
  3133. });
  3134. var reading_default = /* @__PURE__ */ defineComponent({
  3135. name: "Reading",
  3136. __name: "reading",
  3137. setup(__props) {
  3138. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3139. xmlns: "http://www.w3.org/2000/svg",
  3140. viewBox: "0 0 1024 1024"
  3141. }, [createBaseVNode("path", {
  3142. fill: "currentColor",
  3143. d: "m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36"
  3144. }), createBaseVNode("path", {
  3145. fill: "currentColor",
  3146. d: "M480 192h64v704h-64z"
  3147. })]));
  3148. }
  3149. });
  3150. var refresh_left_default = /* @__PURE__ */ defineComponent({
  3151. name: "RefreshLeft",
  3152. __name: "refresh-left",
  3153. setup(__props) {
  3154. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3155. xmlns: "http://www.w3.org/2000/svg",
  3156. viewBox: "0 0 1024 1024"
  3157. }, [createBaseVNode("path", {
  3158. fill: "currentColor",
  3159. d: "M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"
  3160. })]));
  3161. }
  3162. });
  3163. var refresh_right_default = /* @__PURE__ */ defineComponent({
  3164. name: "RefreshRight",
  3165. __name: "refresh-right",
  3166. setup(__props) {
  3167. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3168. xmlns: "http://www.w3.org/2000/svg",
  3169. viewBox: "0 0 1024 1024"
  3170. }, [createBaseVNode("path", {
  3171. fill: "currentColor",
  3172. d: "M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88"
  3173. })]));
  3174. }
  3175. });
  3176. var refresh_default = /* @__PURE__ */ defineComponent({
  3177. name: "Refresh",
  3178. __name: "refresh",
  3179. setup(__props) {
  3180. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3181. xmlns: "http://www.w3.org/2000/svg",
  3182. viewBox: "0 0 1024 1024"
  3183. }, [createBaseVNode("path", {
  3184. fill: "currentColor",
  3185. d: "M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"
  3186. })]));
  3187. }
  3188. });
  3189. var refrigerator_default = /* @__PURE__ */ defineComponent({
  3190. name: "Refrigerator",
  3191. __name: "refrigerator",
  3192. setup(__props) {
  3193. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3194. xmlns: "http://www.w3.org/2000/svg",
  3195. viewBox: "0 0 1024 1024"
  3196. }, [createBaseVNode("path", {
  3197. fill: "currentColor",
  3198. d: "M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96m32 224h64v96h-64zm0 288h64v96h-64z"
  3199. })]));
  3200. }
  3201. });
  3202. var remove_filled_default = /* @__PURE__ */ defineComponent({
  3203. name: "RemoveFilled",
  3204. __name: "remove-filled",
  3205. setup(__props) {
  3206. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3207. xmlns: "http://www.w3.org/2000/svg",
  3208. viewBox: "0 0 1024 1024"
  3209. }, [createBaseVNode("path", {
  3210. fill: "currentColor",
  3211. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896M288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512"
  3212. })]));
  3213. }
  3214. });
  3215. var remove_default = /* @__PURE__ */ defineComponent({
  3216. name: "Remove",
  3217. __name: "remove",
  3218. setup(__props) {
  3219. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3220. xmlns: "http://www.w3.org/2000/svg",
  3221. viewBox: "0 0 1024 1024"
  3222. }, [createBaseVNode("path", {
  3223. fill: "currentColor",
  3224. d: "M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"
  3225. }), createBaseVNode("path", {
  3226. fill: "currentColor",
  3227. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  3228. })]));
  3229. }
  3230. });
  3231. var right_default = /* @__PURE__ */ defineComponent({
  3232. name: "Right",
  3233. __name: "right",
  3234. setup(__props) {
  3235. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3236. xmlns: "http://www.w3.org/2000/svg",
  3237. viewBox: "0 0 1024 1024"
  3238. }, [createBaseVNode("path", {
  3239. fill: "currentColor",
  3240. d: "M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312z"
  3241. })]));
  3242. }
  3243. });
  3244. var scale_to_original_default = /* @__PURE__ */ defineComponent({
  3245. name: "ScaleToOriginal",
  3246. __name: "scale-to-original",
  3247. setup(__props) {
  3248. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3249. xmlns: "http://www.w3.org/2000/svg",
  3250. viewBox: "0 0 1024 1024"
  3251. }, [createBaseVNode("path", {
  3252. fill: "currentColor",
  3253. d: "M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.12 30.12 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.12 30.12 0 0 0-30.118-30.118m-361.412 0a30.12 30.12 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.12 30.12 0 0 0-30.118-30.118M512 361.412a30.12 30.12 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.12 30.12 0 0 0 512 361.412M512 512a30.12 30.12 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.12 30.12 0 0 0 512 512"
  3254. })]));
  3255. }
  3256. });
  3257. var school_default = /* @__PURE__ */ defineComponent({
  3258. name: "School",
  3259. __name: "school",
  3260. setup(__props) {
  3261. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3262. xmlns: "http://www.w3.org/2000/svg",
  3263. viewBox: "0 0 1024 1024"
  3264. }, [
  3265. createBaseVNode("path", {
  3266. fill: "currentColor",
  3267. d: "M224 128v704h576V128zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  3268. }),
  3269. createBaseVNode("path", {
  3270. fill: "currentColor",
  3271. d: "M64 832h896v64H64zm256-640h128v96H320z"
  3272. }),
  3273. createBaseVNode("path", {
  3274. fill: "currentColor",
  3275. d: "M384 832h256v-64a128 128 0 1 0-256 0zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192M320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"
  3276. })
  3277. ]));
  3278. }
  3279. });
  3280. var scissor_default = /* @__PURE__ */ defineComponent({
  3281. name: "Scissor",
  3282. __name: "scissor",
  3283. setup(__props) {
  3284. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3285. xmlns: "http://www.w3.org/2000/svg",
  3286. viewBox: "0 0 1024 1024"
  3287. }, [createBaseVNode("path", {
  3288. fill: "currentColor",
  3289. d: "m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248"
  3290. })]));
  3291. }
  3292. });
  3293. var search_default = /* @__PURE__ */ defineComponent({
  3294. name: "Search",
  3295. __name: "search",
  3296. setup(__props) {
  3297. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3298. xmlns: "http://www.w3.org/2000/svg",
  3299. viewBox: "0 0 1024 1024"
  3300. }, [createBaseVNode("path", {
  3301. fill: "currentColor",
  3302. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"
  3303. })]));
  3304. }
  3305. });
  3306. var select_default = /* @__PURE__ */ defineComponent({
  3307. name: "Select",
  3308. __name: "select",
  3309. setup(__props) {
  3310. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3311. xmlns: "http://www.w3.org/2000/svg",
  3312. viewBox: "0 0 1024 1024"
  3313. }, [createBaseVNode("path", {
  3314. fill: "currentColor",
  3315. d: "M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496"
  3316. })]));
  3317. }
  3318. });
  3319. var sell_default = /* @__PURE__ */ defineComponent({
  3320. name: "Sell",
  3321. __name: "sell",
  3322. setup(__props) {
  3323. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3324. xmlns: "http://www.w3.org/2000/svg",
  3325. viewBox: "0 0 1024 1024"
  3326. }, [createBaseVNode("path", {
  3327. fill: "currentColor",
  3328. d: "M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248"
  3329. })]));
  3330. }
  3331. });
  3332. var semi_select_default = /* @__PURE__ */ defineComponent({
  3333. name: "SemiSelect",
  3334. __name: "semi-select",
  3335. setup(__props) {
  3336. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3337. xmlns: "http://www.w3.org/2000/svg",
  3338. viewBox: "0 0 1024 1024"
  3339. }, [createBaseVNode("path", {
  3340. fill: "currentColor",
  3341. d: "M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64"
  3342. })]));
  3343. }
  3344. });
  3345. var service_default = /* @__PURE__ */ defineComponent({
  3346. name: "Service",
  3347. __name: "service",
  3348. setup(__props) {
  3349. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3350. xmlns: "http://www.w3.org/2000/svg",
  3351. viewBox: "0 0 1024 1024"
  3352. }, [createBaseVNode("path", {
  3353. fill: "currentColor",
  3354. d: "M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.06 192.06 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193 193 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128"
  3355. })]));
  3356. }
  3357. });
  3358. var set_up_default = /* @__PURE__ */ defineComponent({
  3359. name: "SetUp",
  3360. __name: "set-up",
  3361. setup(__props) {
  3362. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3363. xmlns: "http://www.w3.org/2000/svg",
  3364. viewBox: "0 0 1024 1024"
  3365. }, [
  3366. createBaseVNode("path", {
  3367. fill: "currentColor",
  3368. d: "M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96"
  3369. }),
  3370. createBaseVNode("path", {
  3371. fill: "currentColor",
  3372. d: "M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3373. }),
  3374. createBaseVNode("path", {
  3375. fill: "currentColor",
  3376. d: "M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32m160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3377. }),
  3378. createBaseVNode("path", {
  3379. fill: "currentColor",
  3380. d: "M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  3381. })
  3382. ]));
  3383. }
  3384. });
  3385. var setting_default = /* @__PURE__ */ defineComponent({
  3386. name: "Setting",
  3387. __name: "setting",
  3388. setup(__props) {
  3389. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3390. xmlns: "http://www.w3.org/2000/svg",
  3391. viewBox: "0 0 1024 1024"
  3392. }, [createBaseVNode("path", {
  3393. fill: "currentColor",
  3394. d: "M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357 357 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a352 352 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357 357 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294 294 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293 293 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294 294 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288 288 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293 293 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a288 288 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384m0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256"
  3395. })]));
  3396. }
  3397. });
  3398. var share_default = /* @__PURE__ */ defineComponent({
  3399. name: "Share",
  3400. __name: "share",
  3401. setup(__props) {
  3402. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3403. xmlns: "http://www.w3.org/2000/svg",
  3404. viewBox: "0 0 1024 1024"
  3405. }, [createBaseVNode("path", {
  3406. fill: "currentColor",
  3407. d: "m679.872 348.8-301.76 188.608a127.8 127.8 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"
  3408. })]));
  3409. }
  3410. });
  3411. var ship_default = /* @__PURE__ */ defineComponent({
  3412. name: "Ship",
  3413. __name: "ship",
  3414. setup(__props) {
  3415. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3416. xmlns: "http://www.w3.org/2000/svg",
  3417. viewBox: "0 0 1024 1024"
  3418. }, [createBaseVNode("path", {
  3419. fill: "currentColor",
  3420. d: "M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216zm0-70.272 144.768-65.792L512 171.84zM512 512H148.864l18.24 64H856.96l18.24-64zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2z"
  3421. })]));
  3422. }
  3423. });
  3424. var shop_default = /* @__PURE__ */ defineComponent({
  3425. name: "Shop",
  3426. __name: "shop",
  3427. setup(__props) {
  3428. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3429. xmlns: "http://www.w3.org/2000/svg",
  3430. viewBox: "0 0 1024 1024"
  3431. }, [createBaseVNode("path", {
  3432. fill: "currentColor",
  3433. d: "M704 704h64v192H256V704h64v64h384zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640z"
  3434. })]));
  3435. }
  3436. });
  3437. var shopping_bag_default = /* @__PURE__ */ defineComponent({
  3438. name: "ShoppingBag",
  3439. __name: "shopping-bag",
  3440. setup(__props) {
  3441. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3442. xmlns: "http://www.w3.org/2000/svg",
  3443. viewBox: "0 0 1024 1024"
  3444. }, [createBaseVNode("path", {
  3445. fill: "currentColor",
  3446. d: "M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zm64 0h256a128 128 0 1 0-256 0"
  3447. }), createBaseVNode("path", {
  3448. fill: "currentColor",
  3449. d: "M192 704h640v64H192z"
  3450. })]));
  3451. }
  3452. });
  3453. var shopping_cart_full_default = /* @__PURE__ */ defineComponent({
  3454. name: "ShoppingCartFull",
  3455. __name: "shopping-cart-full",
  3456. setup(__props) {
  3457. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3458. xmlns: "http://www.w3.org/2000/svg",
  3459. viewBox: "0 0 1024 1024"
  3460. }, [createBaseVNode("path", {
  3461. fill: "currentColor",
  3462. d: "M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44z"
  3463. }), createBaseVNode("path", {
  3464. fill: "currentColor",
  3465. d: "M699.648 256 608 145.984 516.352 256zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648z"
  3466. })]));
  3467. }
  3468. });
  3469. var shopping_cart_default = /* @__PURE__ */ defineComponent({
  3470. name: "ShoppingCart",
  3471. __name: "shopping-cart",
  3472. setup(__props) {
  3473. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3474. xmlns: "http://www.w3.org/2000/svg",
  3475. viewBox: "0 0 1024 1024"
  3476. }, [createBaseVNode("path", {
  3477. fill: "currentColor",
  3478. d: "M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44z"
  3479. })]));
  3480. }
  3481. });
  3482. var shopping_trolley_default = /* @__PURE__ */ defineComponent({
  3483. name: "ShoppingTrolley",
  3484. __name: "shopping-trolley",
  3485. setup(__props) {
  3486. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3487. xmlns: "http://www.w3.org/2000/svg",
  3488. "xml:space": "preserve",
  3489. viewBox: "0 0 1024 1024"
  3490. }, [createBaseVNode("path", {
  3491. fill: "currentColor",
  3492. d: "M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833m439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64zM256 192h622l-96 384H256zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833"
  3493. })]));
  3494. }
  3495. });
  3496. var smoking_default = /* @__PURE__ */ defineComponent({
  3497. name: "Smoking",
  3498. __name: "smoking",
  3499. setup(__props) {
  3500. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3501. xmlns: "http://www.w3.org/2000/svg",
  3502. viewBox: "0 0 1024 1024"
  3503. }, [createBaseVNode("path", {
  3504. fill: "currentColor",
  3505. d: "M256 576v128h640V576zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32"
  3506. }), createBaseVNode("path", {
  3507. fill: "currentColor",
  3508. d: "M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"
  3509. })]));
  3510. }
  3511. });
  3512. var soccer_default = /* @__PURE__ */ defineComponent({
  3513. name: "Soccer",
  3514. __name: "soccer",
  3515. setup(__props) {
  3516. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3517. xmlns: "http://www.w3.org/2000/svg",
  3518. viewBox: "0 0 1024 1024"
  3519. }, [createBaseVNode("path", {
  3520. fill: "currentColor",
  3521. d: "M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24m72.32-18.176a573.06 573.06 0 0 0 224.832-137.216 573.1 573.1 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.7 567.7 0 0 0 170.432 532.48zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944s-497.92 226.112-610.944 113.152m452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248z"
  3522. })]));
  3523. }
  3524. });
  3525. var sold_out_default = /* @__PURE__ */ defineComponent({
  3526. name: "SoldOut",
  3527. __name: "sold-out",
  3528. setup(__props) {
  3529. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3530. xmlns: "http://www.w3.org/2000/svg",
  3531. viewBox: "0 0 1024 1024"
  3532. }, [createBaseVNode("path", {
  3533. fill: "currentColor",
  3534. d: "M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"
  3535. })]));
  3536. }
  3537. });
  3538. var sort_down_default = /* @__PURE__ */ defineComponent({
  3539. name: "SortDown",
  3540. __name: "sort-down",
  3541. setup(__props) {
  3542. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3543. xmlns: "http://www.w3.org/2000/svg",
  3544. viewBox: "0 0 1024 1024"
  3545. }, [createBaseVNode("path", {
  3546. fill: "currentColor",
  3547. d: "M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"
  3548. })]));
  3549. }
  3550. });
  3551. var sort_up_default = /* @__PURE__ */ defineComponent({
  3552. name: "SortUp",
  3553. __name: "sort-up",
  3554. setup(__props) {
  3555. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3556. xmlns: "http://www.w3.org/2000/svg",
  3557. viewBox: "0 0 1024 1024"
  3558. }, [createBaseVNode("path", {
  3559. fill: "currentColor",
  3560. d: "M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"
  3561. })]));
  3562. }
  3563. });
  3564. var sort_default = /* @__PURE__ */ defineComponent({
  3565. name: "Sort",
  3566. __name: "sort",
  3567. setup(__props) {
  3568. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3569. xmlns: "http://www.w3.org/2000/svg",
  3570. viewBox: "0 0 1024 1024"
  3571. }, [createBaseVNode("path", {
  3572. fill: "currentColor",
  3573. d: "M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0z"
  3574. })]));
  3575. }
  3576. });
  3577. var stamp_default = /* @__PURE__ */ defineComponent({
  3578. name: "Stamp",
  3579. __name: "stamp",
  3580. setup(__props) {
  3581. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3582. xmlns: "http://www.w3.org/2000/svg",
  3583. viewBox: "0 0 1024 1024"
  3584. }, [createBaseVNode("path", {
  3585. fill: "currentColor",
  3586. d: "M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0M128 896v-64h768v64z"
  3587. })]));
  3588. }
  3589. });
  3590. var star_filled_default = /* @__PURE__ */ defineComponent({
  3591. name: "StarFilled",
  3592. __name: "star-filled",
  3593. setup(__props) {
  3594. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3595. xmlns: "http://www.w3.org/2000/svg",
  3596. viewBox: "0 0 1024 1024"
  3597. }, [createBaseVNode("path", {
  3598. fill: "currentColor",
  3599. d: "M313.6 924.48a70.4 70.4 0 0 1-74.152-5.365 70.4 70.4 0 0 1-27.992-68.875l37.888-220.928L88.96 472.96a70.4 70.4 0 0 1 3.788-104.225A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 100.246-28.595 70.4 70.4 0 0 1 25.962 28.595l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"
  3600. })]));
  3601. }
  3602. });
  3603. var star_default = /* @__PURE__ */ defineComponent({
  3604. name: "Star",
  3605. __name: "star",
  3606. setup(__props) {
  3607. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3608. xmlns: "http://www.w3.org/2000/svg",
  3609. viewBox: "0 0 1024 1024"
  3610. }, [createBaseVNode("path", {
  3611. fill: "currentColor",
  3612. d: "m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"
  3613. })]));
  3614. }
  3615. });
  3616. var stopwatch_default = /* @__PURE__ */ defineComponent({
  3617. name: "Stopwatch",
  3618. __name: "stopwatch",
  3619. setup(__props) {
  3620. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3621. xmlns: "http://www.w3.org/2000/svg",
  3622. viewBox: "0 0 1024 1024"
  3623. }, [createBaseVNode("path", {
  3624. fill: "currentColor",
  3625. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  3626. }), createBaseVNode("path", {
  3627. fill: "currentColor",
  3628. d: "M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"
  3629. })]));
  3630. }
  3631. });
  3632. var success_filled_default = /* @__PURE__ */ defineComponent({
  3633. name: "SuccessFilled",
  3634. __name: "success-filled",
  3635. setup(__props) {
  3636. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3637. xmlns: "http://www.w3.org/2000/svg",
  3638. viewBox: "0 0 1024 1024"
  3639. }, [createBaseVNode("path", {
  3640. fill: "currentColor",
  3641. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.27 38.27 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
  3642. })]));
  3643. }
  3644. });
  3645. var sugar_default = /* @__PURE__ */ defineComponent({
  3646. name: "Sugar",
  3647. __name: "sugar",
  3648. setup(__props) {
  3649. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3650. xmlns: "http://www.w3.org/2000/svg",
  3651. viewBox: "0 0 1024 1024"
  3652. }, [createBaseVNode("path", {
  3653. fill: "currentColor",
  3654. d: "m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16zm-548.8 198.72h447.168v2.24l60.8-60.8a63.8 63.8 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64 64 0 0 0-10.24 13.248zm0 64q4.128 7.104 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"
  3655. })]));
  3656. }
  3657. });
  3658. var suitcase_line_default = /* @__PURE__ */ defineComponent({
  3659. name: "SuitcaseLine",
  3660. __name: "suitcase-line",
  3661. setup(__props) {
  3662. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3663. xmlns: "http://www.w3.org/2000/svg",
  3664. "xml:space": "preserve",
  3665. viewBox: "0 0 1024 1024"
  3666. }, [createBaseVNode("path", {
  3667. fill: "currentColor",
  3668. d: "M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5S64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5M384 128h256v64H384zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128zm448 0H320V448h384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320z"
  3669. })]));
  3670. }
  3671. });
  3672. var suitcase_default = /* @__PURE__ */ defineComponent({
  3673. name: "Suitcase",
  3674. __name: "suitcase",
  3675. setup(__props) {
  3676. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3677. xmlns: "http://www.w3.org/2000/svg",
  3678. viewBox: "0 0 1024 1024"
  3679. }, [createBaseVNode("path", {
  3680. fill: "currentColor",
  3681. d: "M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"
  3682. }), createBaseVNode("path", {
  3683. fill: "currentColor",
  3684. d: "M384 128v64h256v-64zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64"
  3685. })]));
  3686. }
  3687. });
  3688. var sunny_default = /* @__PURE__ */ defineComponent({
  3689. name: "Sunny",
  3690. __name: "sunny",
  3691. setup(__props) {
  3692. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3693. xmlns: "http://www.w3.org/2000/svg",
  3694. viewBox: "0 0 1024 1024"
  3695. }, [createBaseVNode("path", {
  3696. fill: "currentColor",
  3697. d: "M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32M195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248m543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248M64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32m768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32M195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0m543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0"
  3698. })]));
  3699. }
  3700. });
  3701. var sunrise_default = /* @__PURE__ */ defineComponent({
  3702. name: "Sunrise",
  3703. __name: "sunrise",
  3704. setup(__props) {
  3705. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3706. xmlns: "http://www.w3.org/2000/svg",
  3707. viewBox: "0 0 1024 1024"
  3708. }, [createBaseVNode("path", {
  3709. fill: "currentColor",
  3710. d: "M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64m129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32m407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0m-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248"
  3711. })]));
  3712. }
  3713. });
  3714. var sunset_default = /* @__PURE__ */ defineComponent({
  3715. name: "Sunset",
  3716. __name: "sunset",
  3717. setup(__props) {
  3718. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3719. xmlns: "http://www.w3.org/2000/svg",
  3720. viewBox: "0 0 1024 1024"
  3721. }, [createBaseVNode("path", {
  3722. fill: "currentColor",
  3723. d: "M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  3724. })]));
  3725. }
  3726. });
  3727. var switch_button_default = /* @__PURE__ */ defineComponent({
  3728. name: "SwitchButton",
  3729. __name: "switch-button",
  3730. setup(__props) {
  3731. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3732. xmlns: "http://www.w3.org/2000/svg",
  3733. viewBox: "0 0 1024 1024"
  3734. }, [createBaseVNode("path", {
  3735. fill: "currentColor",
  3736. d: "M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128"
  3737. }), createBaseVNode("path", {
  3738. fill: "currentColor",
  3739. d: "M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32"
  3740. })]));
  3741. }
  3742. });
  3743. var switch_filled_default = /* @__PURE__ */ defineComponent({
  3744. name: "SwitchFilled",
  3745. __name: "switch-filled",
  3746. setup(__props) {
  3747. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3748. xmlns: "http://www.w3.org/2000/svg",
  3749. "xml:space": "preserve",
  3750. viewBox: "0 0 1024 1024"
  3751. }, [createBaseVNode("path", {
  3752. fill: "currentColor",
  3753. d: "M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36"
  3754. }), createBaseVNode("path", {
  3755. fill: "currentColor",
  3756. d: "M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.66 196.66 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.7 196.7 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42m-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.7 131.7 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57zm402.12-647.67a196.66 196.66 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.7 196.7 0 0 0 139.08-57.61A196.66 196.66 0 0 0 896 699.31V325.29a196.7 196.7 0 0 0-57.61-139.08m-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82"
  3757. })]));
  3758. }
  3759. });
  3760. var switch_default = /* @__PURE__ */ defineComponent({
  3761. name: "Switch",
  3762. __name: "switch",
  3763. setup(__props) {
  3764. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3765. xmlns: "http://www.w3.org/2000/svg",
  3766. viewBox: "0 0 1024 1024"
  3767. }, [createBaseVNode("path", {
  3768. fill: "currentColor",
  3769. d: "M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344M64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32"
  3770. })]));
  3771. }
  3772. });
  3773. var takeaway_box_default = /* @__PURE__ */ defineComponent({
  3774. name: "TakeawayBox",
  3775. __name: "takeaway-box",
  3776. setup(__props) {
  3777. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3778. xmlns: "http://www.w3.org/2000/svg",
  3779. viewBox: "0 0 1024 1024"
  3780. }, [createBaseVNode("path", {
  3781. fill: "currentColor",
  3782. d: "M832 384H192v448h640zM96 320h832V128H96zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64"
  3783. })]));
  3784. }
  3785. });
  3786. var ticket_default = /* @__PURE__ */ defineComponent({
  3787. name: "Ticket",
  3788. __name: "ticket",
  3789. setup(__props) {
  3790. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3791. xmlns: "http://www.w3.org/2000/svg",
  3792. viewBox: "0 0 1024 1024"
  3793. }, [createBaseVNode("path", {
  3794. fill: "currentColor",
  3795. d: "M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64zm0-416v192h64V416z"
  3796. })]));
  3797. }
  3798. });
  3799. var tickets_default = /* @__PURE__ */ defineComponent({
  3800. name: "Tickets",
  3801. __name: "tickets",
  3802. setup(__props) {
  3803. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3804. xmlns: "http://www.w3.org/2000/svg",
  3805. viewBox: "0 0 1024 1024"
  3806. }, [createBaseVNode("path", {
  3807. fill: "currentColor",
  3808. d: "M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h192v64H320zm0 384h384v64H320z"
  3809. })]));
  3810. }
  3811. });
  3812. var timer_default = /* @__PURE__ */ defineComponent({
  3813. name: "Timer",
  3814. __name: "timer",
  3815. setup(__props) {
  3816. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3817. xmlns: "http://www.w3.org/2000/svg",
  3818. viewBox: "0 0 1024 1024"
  3819. }, [
  3820. createBaseVNode("path", {
  3821. fill: "currentColor",
  3822. d: "M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"
  3823. }),
  3824. createBaseVNode("path", {
  3825. fill: "currentColor",
  3826. d: "M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32"
  3827. }),
  3828. createBaseVNode("path", {
  3829. fill: "currentColor",
  3830. d: "M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0m96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64z"
  3831. })
  3832. ]));
  3833. }
  3834. });
  3835. var toilet_paper_default = /* @__PURE__ */ defineComponent({
  3836. name: "ToiletPaper",
  3837. __name: "toilet-paper",
  3838. setup(__props) {
  3839. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3840. xmlns: "http://www.w3.org/2000/svg",
  3841. viewBox: "0 0 1024 1024"
  3842. }, [createBaseVNode("path", {
  3843. fill: "currentColor",
  3844. d: "M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224M736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224"
  3845. }), createBaseVNode("path", {
  3846. fill: "currentColor",
  3847. d: "M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96"
  3848. })]));
  3849. }
  3850. });
  3851. var tools_default = /* @__PURE__ */ defineComponent({
  3852. name: "Tools",
  3853. __name: "tools",
  3854. setup(__props) {
  3855. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3856. xmlns: "http://www.w3.org/2000/svg",
  3857. viewBox: "0 0 1024 1024"
  3858. }, [createBaseVNode("path", {
  3859. fill: "currentColor",
  3860. d: "M764.416 254.72a351.7 351.7 0 0 1 86.336 149.184H960v192.064H850.752a351.7 351.7 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.7 351.7 0 0 1-86.336-149.312H64v-192h109.248a351.7 351.7 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0"
  3861. })]));
  3862. }
  3863. });
  3864. var top_left_default = /* @__PURE__ */ defineComponent({
  3865. name: "TopLeft",
  3866. __name: "top-left",
  3867. setup(__props) {
  3868. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3869. xmlns: "http://www.w3.org/2000/svg",
  3870. viewBox: "0 0 1024 1024"
  3871. }, [createBaseVNode("path", {
  3872. fill: "currentColor",
  3873. d: "M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0z"
  3874. }), createBaseVNode("path", {
  3875. fill: "currentColor",
  3876. d: "M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312z"
  3877. })]));
  3878. }
  3879. });
  3880. var top_right_default = /* @__PURE__ */ defineComponent({
  3881. name: "TopRight",
  3882. __name: "top-right",
  3883. setup(__props) {
  3884. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3885. xmlns: "http://www.w3.org/2000/svg",
  3886. viewBox: "0 0 1024 1024"
  3887. }, [createBaseVNode("path", {
  3888. fill: "currentColor",
  3889. d: "M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"
  3890. }), createBaseVNode("path", {
  3891. fill: "currentColor",
  3892. d: "M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312z"
  3893. })]));
  3894. }
  3895. });
  3896. var top_default = /* @__PURE__ */ defineComponent({
  3897. name: "Top",
  3898. __name: "top",
  3899. setup(__props) {
  3900. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3901. xmlns: "http://www.w3.org/2000/svg",
  3902. viewBox: "0 0 1024 1024"
  3903. }, [createBaseVNode("path", {
  3904. fill: "currentColor",
  3905. d: "M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"
  3906. })]));
  3907. }
  3908. });
  3909. var trend_charts_default = /* @__PURE__ */ defineComponent({
  3910. name: "TrendCharts",
  3911. __name: "trend-charts",
  3912. setup(__props) {
  3913. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3914. xmlns: "http://www.w3.org/2000/svg",
  3915. viewBox: "0 0 1024 1024"
  3916. }, [createBaseVNode("path", {
  3917. fill: "currentColor",
  3918. d: "M128 896V128h768v768zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0"
  3919. })]));
  3920. }
  3921. });
  3922. var trophy_base_default = /* @__PURE__ */ defineComponent({
  3923. name: "TrophyBase",
  3924. __name: "trophy-base",
  3925. setup(__props) {
  3926. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3927. xmlns: "http://www.w3.org/2000/svg",
  3928. "xml:space": "preserve",
  3929. viewBox: "0 0 1024 1024"
  3930. }, [createBaseVNode("path", {
  3931. fill: "currentColor",
  3932. d: "M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4S745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6S256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6S96 217.6 96 224c3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6S352 790.4 352 800s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6s9.6-12.8 9.6-22.4-3.2-16-9.6-22.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4M256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6S320 438.4 320 384V128h384v256q0 81.6-57.6 134.4m172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2M768 896H256c-9.6 0-16 3.2-22.4 9.6S224 918.4 224 928s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6s9.6-12.8 9.6-22.4-3.2-16-9.6-22.4-12.8-9.6-22.4-9.6"
  3933. })]));
  3934. }
  3935. });
  3936. var trophy_default = /* @__PURE__ */ defineComponent({
  3937. name: "Trophy",
  3938. __name: "trophy",
  3939. setup(__props) {
  3940. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3941. xmlns: "http://www.w3.org/2000/svg",
  3942. viewBox: "0 0 1024 1024"
  3943. }, [createBaseVNode("path", {
  3944. fill: "currentColor",
  3945. d: "M480 896V702.08A256.26 256.26 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.26 256.26 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64zm224-448V128H320v320a192 192 0 1 0 384 0m64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448z"
  3946. })]));
  3947. }
  3948. });
  3949. var turn_off_default = /* @__PURE__ */ defineComponent({
  3950. name: "TurnOff",
  3951. __name: "turn-off",
  3952. setup(__props) {
  3953. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3954. xmlns: "http://www.w3.org/2000/svg",
  3955. viewBox: "0 0 1024 1024"
  3956. }, [createBaseVNode("path", {
  3957. fill: "currentColor",
  3958. d: "M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36"
  3959. }), createBaseVNode("path", {
  3960. fill: "currentColor",
  3961. d: "M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"
  3962. })]));
  3963. }
  3964. });
  3965. var umbrella_default = /* @__PURE__ */ defineComponent({
  3966. name: "Umbrella",
  3967. __name: "umbrella",
  3968. setup(__props) {
  3969. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3970. xmlns: "http://www.w3.org/2000/svg",
  3971. viewBox: "0 0 1024 1024"
  3972. }, [createBaseVNode("path", {
  3973. fill: "currentColor",
  3974. d: "M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0m570.688-320a384.128 384.128 0 0 0-757.376 0z"
  3975. })]));
  3976. }
  3977. });
  3978. var unlock_default = /* @__PURE__ */ defineComponent({
  3979. name: "Unlock",
  3980. __name: "unlock",
  3981. setup(__props) {
  3982. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3983. xmlns: "http://www.w3.org/2000/svg",
  3984. viewBox: "0 0 1024 1024"
  3985. }, [createBaseVNode("path", {
  3986. fill: "currentColor",
  3987. d: "M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"
  3988. }), createBaseVNode("path", {
  3989. fill: "currentColor",
  3990. d: "M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104z"
  3991. })]));
  3992. }
  3993. });
  3994. var upload_filled_default = /* @__PURE__ */ defineComponent({
  3995. name: "UploadFilled",
  3996. __name: "upload-filled",
  3997. setup(__props) {
  3998. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  3999. xmlns: "http://www.w3.org/2000/svg",
  4000. viewBox: "0 0 1024 1024"
  4001. }, [createBaseVNode("path", {
  4002. fill: "currentColor",
  4003. d: "M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.81 239.81 0 0 1 512 192a239.87 239.87 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6z"
  4004. })]));
  4005. }
  4006. });
  4007. var upload_default = /* @__PURE__ */ defineComponent({
  4008. name: "Upload",
  4009. __name: "upload",
  4010. setup(__props) {
  4011. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4012. xmlns: "http://www.w3.org/2000/svg",
  4013. viewBox: "0 0 1024 1024"
  4014. }, [createBaseVNode("path", {
  4015. fill: "currentColor",
  4016. d: "M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248z"
  4017. })]));
  4018. }
  4019. });
  4020. var user_filled_default = /* @__PURE__ */ defineComponent({
  4021. name: "UserFilled",
  4022. __name: "user-filled",
  4023. setup(__props) {
  4024. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4025. xmlns: "http://www.w3.org/2000/svg",
  4026. viewBox: "0 0 1024 1024"
  4027. }, [createBaseVNode("path", {
  4028. fill: "currentColor",
  4029. d: "M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0m544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"
  4030. })]));
  4031. }
  4032. });
  4033. var user_default = /* @__PURE__ */ defineComponent({
  4034. name: "User",
  4035. __name: "user",
  4036. setup(__props) {
  4037. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4038. xmlns: "http://www.w3.org/2000/svg",
  4039. viewBox: "0 0 1024 1024"
  4040. }, [createBaseVNode("path", {
  4041. fill: "currentColor",
  4042. d: "M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0"
  4043. })]));
  4044. }
  4045. });
  4046. var van_default = /* @__PURE__ */ defineComponent({
  4047. name: "Van",
  4048. __name: "van",
  4049. setup(__props) {
  4050. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4051. xmlns: "http://www.w3.org/2000/svg",
  4052. viewBox: "0 0 1024 1024"
  4053. }, [createBaseVNode("path", {
  4054. fill: "currentColor",
  4055. d: "M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672m48.128-192-14.72-96H704v96zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160m-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160"
  4056. })]));
  4057. }
  4058. });
  4059. var video_camera_filled_default = /* @__PURE__ */ defineComponent({
  4060. name: "VideoCameraFilled",
  4061. __name: "video-camera-filled",
  4062. setup(__props) {
  4063. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4064. xmlns: "http://www.w3.org/2000/svg",
  4065. viewBox: "0 0 1024 1024"
  4066. }, [createBaseVNode("path", {
  4067. fill: "currentColor",
  4068. d: "m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zM192 768v64h384v-64zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0m64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288m-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320m64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0"
  4069. })]));
  4070. }
  4071. });
  4072. var video_camera_default = /* @__PURE__ */ defineComponent({
  4073. name: "VideoCamera",
  4074. __name: "video-camera",
  4075. setup(__props) {
  4076. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4077. xmlns: "http://www.w3.org/2000/svg",
  4078. viewBox: "0 0 1024 1024"
  4079. }, [createBaseVNode("path", {
  4080. fill: "currentColor",
  4081. d: "M704 768V256H128v512zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 71.552v176.896l128 64V359.552zM192 320h192v64H192z"
  4082. })]));
  4083. }
  4084. });
  4085. var video_pause_default = /* @__PURE__ */ defineComponent({
  4086. name: "VideoPause",
  4087. __name: "video-pause",
  4088. setup(__props) {
  4089. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4090. xmlns: "http://www.w3.org/2000/svg",
  4091. viewBox: "0 0 1024 1024"
  4092. }, [createBaseVNode("path", {
  4093. fill: "currentColor",
  4094. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32m192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32"
  4095. })]));
  4096. }
  4097. });
  4098. var video_play_default = /* @__PURE__ */ defineComponent({
  4099. name: "VideoPlay",
  4100. __name: "video-play",
  4101. setup(__props) {
  4102. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4103. xmlns: "http://www.w3.org/2000/svg",
  4104. viewBox: "0 0 1024 1024"
  4105. }, [createBaseVNode("path", {
  4106. fill: "currentColor",
  4107. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-48-247.616L668.608 512 464 375.616zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"
  4108. })]));
  4109. }
  4110. });
  4111. var view_default = /* @__PURE__ */ defineComponent({
  4112. name: "View",
  4113. __name: "view",
  4114. setup(__props) {
  4115. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4116. xmlns: "http://www.w3.org/2000/svg",
  4117. viewBox: "0 0 1024 1024"
  4118. }, [createBaseVNode("path", {
  4119. fill: "currentColor",
  4120. d: "M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288m0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.19 160.19 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"
  4121. })]));
  4122. }
  4123. });
  4124. var wallet_filled_default = /* @__PURE__ */ defineComponent({
  4125. name: "WalletFilled",
  4126. __name: "wallet-filled",
  4127. setup(__props) {
  4128. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4129. xmlns: "http://www.w3.org/2000/svg",
  4130. viewBox: "0 0 1024 1024"
  4131. }, [createBaseVNode("path", {
  4132. fill: "currentColor",
  4133. d: "M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96m-80-544 128 160H384z"
  4134. })]));
  4135. }
  4136. });
  4137. var wallet_default = /* @__PURE__ */ defineComponent({
  4138. name: "Wallet",
  4139. __name: "wallet",
  4140. setup(__props) {
  4141. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4142. xmlns: "http://www.w3.org/2000/svg",
  4143. viewBox: "0 0 1024 1024"
  4144. }, [
  4145. createBaseVNode("path", {
  4146. fill: "currentColor",
  4147. d: "M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32z"
  4148. }),
  4149. createBaseVNode("path", {
  4150. fill: "currentColor",
  4151. d: "M128 320v512h768V320zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32"
  4152. }),
  4153. createBaseVNode("path", {
  4154. fill: "currentColor",
  4155. d: "M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"
  4156. })
  4157. ]));
  4158. }
  4159. });
  4160. var warn_triangle_filled_default = /* @__PURE__ */ defineComponent({
  4161. name: "WarnTriangleFilled",
  4162. __name: "warn-triangle-filled",
  4163. setup(__props) {
  4164. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4165. xmlns: "http://www.w3.org/2000/svg",
  4166. "xml:space": "preserve",
  4167. viewBox: "0 0 1024 1024"
  4168. }, [createBaseVNode("path", {
  4169. fill: "currentColor",
  4170. d: "M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49s12.92-44.91.01-65.03M554.67 768h-85.33v-85.33h85.33zm0-426.67v298.66h-85.33V341.32z"
  4171. })]));
  4172. }
  4173. });
  4174. var warning_filled_default = /* @__PURE__ */ defineComponent({
  4175. name: "WarningFilled",
  4176. __name: "warning-filled",
  4177. setup(__props) {
  4178. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4179. xmlns: "http://www.w3.org/2000/svg",
  4180. viewBox: "0 0 1024 1024"
  4181. }, [createBaseVNode("path", {
  4182. fill: "currentColor",
  4183. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.43 58.43 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.43 58.43 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"
  4184. })]));
  4185. }
  4186. });
  4187. var warning_default = /* @__PURE__ */ defineComponent({
  4188. name: "Warning",
  4189. __name: "warning",
  4190. setup(__props) {
  4191. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4192. xmlns: "http://www.w3.org/2000/svg",
  4193. viewBox: "0 0 1024 1024"
  4194. }, [createBaseVNode("path", {
  4195. fill: "currentColor",
  4196. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"
  4197. })]));
  4198. }
  4199. });
  4200. var watch_default = /* @__PURE__ */ defineComponent({
  4201. name: "Watch",
  4202. __name: "watch",
  4203. setup(__props) {
  4204. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4205. xmlns: "http://www.w3.org/2000/svg",
  4206. viewBox: "0 0 1024 1024"
  4207. }, [
  4208. createBaseVNode("path", {
  4209. fill: "currentColor",
  4210. d: "M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  4211. }),
  4212. createBaseVNode("path", {
  4213. fill: "currentColor",
  4214. d: "M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32"
  4215. }),
  4216. createBaseVNode("path", {
  4217. fill: "currentColor",
  4218. d: "M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32m128-256V128H416v128h-64V64h320v192zM416 768v128h192V768h64v192H352V768z"
  4219. })
  4220. ]));
  4221. }
  4222. });
  4223. var watermelon_default = /* @__PURE__ */ defineComponent({
  4224. name: "Watermelon",
  4225. __name: "watermelon",
  4226. setup(__props) {
  4227. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4228. xmlns: "http://www.w3.org/2000/svg",
  4229. viewBox: "0 0 1024 1024"
  4230. }, [createBaseVNode("path", {
  4231. fill: "currentColor",
  4232. d: "m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248zm231.552 141.056a448 448 0 1 1-632-632z"
  4233. })]));
  4234. }
  4235. });
  4236. var wind_power_default = /* @__PURE__ */ defineComponent({
  4237. name: "WindPower",
  4238. __name: "wind-power",
  4239. setup(__props) {
  4240. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4241. xmlns: "http://www.w3.org/2000/svg",
  4242. viewBox: "0 0 1024 1024"
  4243. }, [createBaseVNode("path", {
  4244. fill: "currentColor",
  4245. d: "M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32m416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96z"
  4246. })]));
  4247. }
  4248. });
  4249. var zoom_in_default = /* @__PURE__ */ defineComponent({
  4250. name: "ZoomIn",
  4251. __name: "zoom-in",
  4252. setup(__props) {
  4253. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4254. xmlns: "http://www.w3.org/2000/svg",
  4255. viewBox: "0 0 1024 1024"
  4256. }, [createBaseVNode("path", {
  4257. fill: "currentColor",
  4258. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"
  4259. })]));
  4260. }
  4261. });
  4262. var zoom_out_default = /* @__PURE__ */ defineComponent({
  4263. name: "ZoomOut",
  4264. __name: "zoom-out",
  4265. setup(__props) {
  4266. return (_ctx, _cache) => (openBlock(), createElementBlock("svg", {
  4267. xmlns: "http://www.w3.org/2000/svg",
  4268. viewBox: "0 0 1024 1024"
  4269. }, [createBaseVNode("path", {
  4270. fill: "currentColor",
  4271. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"
  4272. })]));
  4273. }
  4274. });
  4275. //#endregion
  4276. export { add_location_default as AddLocation, aim_default as Aim, alarm_clock_default as AlarmClock, apple_default as Apple, arrow_down_default as ArrowDown, arrow_down_bold_default as ArrowDownBold, arrow_left_default as ArrowLeft, arrow_left_bold_default as ArrowLeftBold, arrow_right_default as ArrowRight, arrow_right_bold_default as ArrowRightBold, arrow_up_default as ArrowUp, arrow_up_bold_default as ArrowUpBold, avatar_default as Avatar, back_default as Back, baseball_default as Baseball, basketball_default as Basketball, bell_default as Bell, bell_filled_default as BellFilled, bicycle_default as Bicycle, bottom_default as Bottom, bottom_left_default as BottomLeft, bottom_right_default as BottomRight, bowl_default as Bowl, box_default as Box, briefcase_default as Briefcase, brush_default as Brush, brush_filled_default as BrushFilled, burger_default as Burger, calendar_default as Calendar, camera_default as Camera, camera_filled_default as CameraFilled, caret_bottom_default as CaretBottom, caret_left_default as CaretLeft, caret_right_default as CaretRight, caret_top_default as CaretTop, cellphone_default as Cellphone, chat_dot_round_default as ChatDotRound, chat_dot_square_default as ChatDotSquare, chat_line_round_default as ChatLineRound, chat_line_square_default as ChatLineSquare, chat_round_default as ChatRound, chat_square_default as ChatSquare, check_default as Check, checked_default as Checked, cherry_default as Cherry, chicken_default as Chicken, chrome_filled_default as ChromeFilled, circle_check_default as CircleCheck, circle_check_filled_default as CircleCheckFilled, circle_close_default as CircleClose, circle_close_filled_default as CircleCloseFilled, circle_plus_default as CirclePlus, circle_plus_filled_default as CirclePlusFilled, clock_default as Clock, close_default as Close, close_bold_default as CloseBold, cloudy_default as Cloudy, coffee_default as Coffee, coffee_cup_default as CoffeeCup, coin_default as Coin, cold_drink_default as ColdDrink, collection_default as Collection, collection_tag_default as CollectionTag, comment_default as Comment, compass_default as Compass, connection_default as Connection, coordinate_default as Coordinate, copy_document_default as CopyDocument, cpu_default as Cpu, credit_card_default as CreditCard, crop_default as Crop, d_arrow_left_default as DArrowLeft, d_arrow_right_default as DArrowRight, d_caret_default as DCaret, data_analysis_default as DataAnalysis, data_board_default as DataBoard, data_line_default as DataLine, delete_default as Delete, delete_filled_default as DeleteFilled, delete_location_default as DeleteLocation, dessert_default as Dessert, discount_default as Discount, dish_default as Dish, dish_dot_default as DishDot, document_default as Document, document_add_default as DocumentAdd, document_checked_default as DocumentChecked, document_copy_default as DocumentCopy, document_delete_default as DocumentDelete, document_remove_default as DocumentRemove, download_default as Download, drizzling_default as Drizzling, edit_default as Edit, edit_pen_default as EditPen, eleme_default as Eleme, eleme_filled_default as ElemeFilled, element_plus_default as ElementPlus, expand_default as Expand, failed_default as Failed, female_default as Female, files_default as Files, film_default as Film, filter_default as Filter, finished_default as Finished, first_aid_kit_default as FirstAidKit, flag_default as Flag, fold_default as Fold, folder_default as Folder, folder_add_default as FolderAdd, folder_checked_default as FolderChecked, folder_delete_default as FolderDelete, folder_opened_default as FolderOpened, folder_remove_default as FolderRemove, food_default as Food, football_default as Football, fork_spoon_default as ForkSpoon, fries_default as Fries, full_screen_default as FullScreen, goblet_default as Goblet, goblet_full_default as GobletFull, goblet_square_default as GobletSquare, goblet_square_full_default as GobletSquareFull, gold_medal_default as GoldMedal, goods_default as Goods, goods_filled_default as GoodsFilled, grape_default as Grape, grid_default as Grid, guide_default as Guide, handbag_default as Handbag, headset_default as Headset, help_default as Help, help_filled_default as HelpFilled, hide_default as Hide, histogram_default as Histogram, home_filled_default as HomeFilled, hot_water_default as HotWater, house_default as House, ice_cream_default as IceCream, ice_cream_round_default as IceCreamRound, ice_cream_square_default as IceCreamSquare, ice_drink_default as IceDrink, ice_tea_default as IceTea, info_filled_default as InfoFilled, iphone_default as Iphone, key_default as Key, knife_fork_default as KnifeFork, lightning_default as Lightning, link_default as Link, list_default as List, loading_default as Loading, location_default as Location, location_filled_default as LocationFilled, location_information_default as LocationInformation, lock_default as Lock, lollipop_default as Lollipop, magic_stick_default as MagicStick, magnet_default as Magnet, male_default as Male, management_default as Management, map_location_default as MapLocation, medal_default as Medal, memo_default as Memo, menu_default as Menu, message_default as Message, message_box_default as MessageBox, mic_default as Mic, microphone_default as Microphone, milk_tea_default as MilkTea, minus_default as Minus, money_default as Money, monitor_default as Monitor, moon_default as Moon, moon_night_default as MoonNight, more_default as More, more_filled_default as MoreFilled, mostly_cloudy_default as MostlyCloudy, mouse_default as Mouse, mug_default as Mug, mute_default as Mute, mute_notification_default as MuteNotification, no_smoking_default as NoSmoking, notebook_default as Notebook, notification_default as Notification, odometer_default as Odometer, office_building_default as OfficeBuilding, open_default as Open, operation_default as Operation, opportunity_default as Opportunity, orange_default as Orange, paperclip_default as Paperclip, partly_cloudy_default as PartlyCloudy, pear_default as Pear, phone_default as Phone, phone_filled_default as PhoneFilled, picture_default as Picture, picture_filled_default as PictureFilled, picture_rounded_default as PictureRounded, pie_chart_default as PieChart, place_default as Place, platform_default as Platform, plus_default as Plus, pointer_default as Pointer, position_default as Position, postcard_default as Postcard, pouring_default as Pouring, present_default as Present, price_tag_default as PriceTag, printer_default as Printer, promotion_default as Promotion, quartz_watch_default as QuartzWatch, question_filled_default as QuestionFilled, rank_default as Rank, reading_default as Reading, reading_lamp_default as ReadingLamp, refresh_default as Refresh, refresh_left_default as RefreshLeft, refresh_right_default as RefreshRight, refrigerator_default as Refrigerator, remove_default as Remove, remove_filled_default as RemoveFilled, right_default as Right, scale_to_original_default as ScaleToOriginal, school_default as School, scissor_default as Scissor, search_default as Search, select_default as Select, sell_default as Sell, semi_select_default as SemiSelect, service_default as Service, set_up_default as SetUp, setting_default as Setting, share_default as Share, ship_default as Ship, shop_default as Shop, shopping_bag_default as ShoppingBag, shopping_cart_default as ShoppingCart, shopping_cart_full_default as ShoppingCartFull, shopping_trolley_default as ShoppingTrolley, smoking_default as Smoking, soccer_default as Soccer, sold_out_default as SoldOut, sort_default as Sort, sort_down_default as SortDown, sort_up_default as SortUp, stamp_default as Stamp, star_default as Star, star_filled_default as StarFilled, stopwatch_default as Stopwatch, success_filled_default as SuccessFilled, sugar_default as Sugar, suitcase_default as Suitcase, suitcase_line_default as SuitcaseLine, sunny_default as Sunny, sunrise_default as Sunrise, sunset_default as Sunset, switch_default as Switch, switch_button_default as SwitchButton, switch_filled_default as SwitchFilled, takeaway_box_default as TakeawayBox, ticket_default as Ticket, tickets_default as Tickets, timer_default as Timer, toilet_paper_default as ToiletPaper, tools_default as Tools, top_default as Top, top_left_default as TopLeft, top_right_default as TopRight, trend_charts_default as TrendCharts, trophy_default as Trophy, trophy_base_default as TrophyBase, turn_off_default as TurnOff, umbrella_default as Umbrella, unlock_default as Unlock, upload_default as Upload, upload_filled_default as UploadFilled, user_default as User, user_filled_default as UserFilled, van_default as Van, video_camera_default as VideoCamera, video_camera_filled_default as VideoCameraFilled, video_pause_default as VideoPause, video_play_default as VideoPlay, view_default as View, wallet_default as Wallet, wallet_filled_default as WalletFilled, warn_triangle_filled_default as WarnTriangleFilled, warning_default as Warning, warning_filled_default as WarningFilled, watch_default as Watch, watermelon_default as Watermelon, wind_power_default as WindPower, zoom_in_default as ZoomIn, zoom_out_default as ZoomOut };
  4277. //# sourceMappingURL=@element-plus_icons-vue.js.map