langflow-base-nightly 0.5.0.dev37__py3-none-any.whl → 0.5.0.dev39__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- langflow/__main__.py +1 -1
- langflow/alembic/versions/0882f9657f22_encrypt_existing_mcp_auth_settings_.py +122 -0
- langflow/alembic/versions/4e5980a44eaa_fix_date_times_again.py +24 -30
- langflow/alembic/versions/58b28437a398_modify_nullable.py +6 -6
- langflow/alembic/versions/79e675cb6752_change_datetime_type.py +24 -30
- langflow/alembic/versions/b2fa308044b5_add_unique_constraints.py +12 -13
- langflow/api/build.py +21 -26
- langflow/api/health_check_router.py +3 -3
- langflow/api/utils.py +3 -3
- langflow/api/v1/callback.py +2 -2
- langflow/api/v1/chat.py +19 -31
- langflow/api/v1/endpoints.py +10 -10
- langflow/api/v1/flows.py +1 -1
- langflow/api/v1/knowledge_bases.py +3 -3
- langflow/api/v1/mcp.py +12 -12
- langflow/api/v1/mcp_projects.py +405 -120
- langflow/api/v1/mcp_utils.py +8 -8
- langflow/api/v1/schemas.py +2 -7
- langflow/api/v1/store.py +1 -1
- langflow/api/v1/validate.py +2 -2
- langflow/api/v1/voice_mode.py +58 -62
- langflow/api/v2/files.py +2 -2
- langflow/api/v2/mcp.py +10 -9
- langflow/base/composio/composio_base.py +21 -2
- langflow/base/data/docling_utils.py +194 -0
- langflow/base/embeddings/aiml_embeddings.py +1 -1
- langflow/base/flow_processing/utils.py +1 -2
- langflow/base/io/__init__.py +0 -1
- langflow/base/langwatch/utils.py +2 -1
- langflow/base/mcp/util.py +49 -47
- langflow/base/prompts/api_utils.py +1 -1
- langflow/base/tools/flow_tool.py +2 -2
- langflow/base/tools/run_flow.py +2 -6
- langflow/components/FAISS/__init__.py +34 -0
- langflow/components/Notion/add_content_to_page.py +2 -2
- langflow/components/Notion/list_database_properties.py +2 -2
- langflow/components/Notion/list_pages.py +2 -2
- langflow/components/Notion/page_content_viewer.py +2 -2
- langflow/components/Notion/update_page_property.py +1 -1
- langflow/components/agentql/agentql_api.py +2 -10
- langflow/components/agents/agent.py +249 -55
- langflow/components/agents/mcp_component.py +14 -14
- langflow/components/anthropic/anthropic.py +5 -4
- langflow/components/assemblyai/assemblyai_get_subtitles.py +2 -2
- langflow/components/assemblyai/assemblyai_lemur.py +2 -2
- langflow/components/assemblyai/assemblyai_list_transcripts.py +2 -2
- langflow/components/assemblyai/assemblyai_poll_transcript.py +2 -2
- langflow/components/assemblyai/assemblyai_start_transcript.py +2 -2
- langflow/components/cassandra/__init__.py +40 -0
- langflow/components/chroma/__init__.py +34 -0
- langflow/components/clickhouse/__init__.py +34 -0
- langflow/components/couchbase/__init__.py +34 -0
- langflow/components/data/file.py +575 -55
- langflow/components/data/url.py +1 -1
- langflow/components/datastax/__init__.py +3 -3
- langflow/components/datastax/astra_assistant_manager.py +3 -3
- langflow/components/datastax/create_assistant.py +1 -2
- langflow/components/deactivated/merge_data.py +1 -2
- langflow/components/deactivated/sub_flow.py +6 -7
- langflow/components/deactivated/vectara_self_query.py +3 -3
- langflow/components/docling/__init__.py +0 -198
- langflow/components/docling/docling_inline.py +1 -1
- langflow/components/elastic/__init__.py +37 -0
- langflow/components/embeddings/text_embedder.py +3 -3
- langflow/components/firecrawl/firecrawl_extract_api.py +2 -9
- langflow/components/google/gmail.py +1 -1
- langflow/components/google/google_generative_ai.py +5 -11
- langflow/components/groq/groq.py +4 -3
- langflow/components/helpers/current_date.py +2 -3
- langflow/components/helpers/memory.py +1 -1
- langflow/components/ibm/watsonx.py +1 -1
- langflow/components/ibm/watsonx_embeddings.py +1 -1
- langflow/components/langwatch/langwatch.py +3 -3
- langflow/components/logic/flow_tool.py +2 -2
- langflow/components/logic/notify.py +1 -1
- langflow/components/logic/run_flow.py +2 -3
- langflow/components/logic/sub_flow.py +4 -5
- langflow/components/mem0/mem0_chat_memory.py +2 -8
- langflow/components/milvus/__init__.py +34 -0
- langflow/components/mongodb/__init__.py +34 -0
- langflow/components/nvidia/nvidia.py +3 -3
- langflow/components/olivya/olivya.py +7 -7
- langflow/components/ollama/ollama.py +9 -6
- langflow/components/perplexity/perplexity.py +3 -13
- langflow/components/pgvector/__init__.py +34 -0
- langflow/components/pinecone/__init__.py +34 -0
- langflow/components/processing/batch_run.py +8 -8
- langflow/components/processing/data_operations.py +2 -2
- langflow/components/processing/merge_data.py +1 -2
- langflow/components/processing/message_to_data.py +2 -3
- langflow/components/processing/parse_json_data.py +1 -1
- langflow/components/prototypes/python_function.py +2 -3
- langflow/components/qdrant/__init__.py +34 -0
- langflow/components/redis/__init__.py +36 -2
- langflow/components/redis/redis.py +75 -29
- langflow/components/redis/redis_chat.py +43 -0
- langflow/components/serpapi/serp.py +1 -1
- langflow/components/supabase/__init__.py +37 -0
- langflow/components/tavily/tavily_extract.py +1 -1
- langflow/components/tavily/tavily_search.py +1 -1
- langflow/components/tools/calculator.py +2 -2
- langflow/components/tools/python_code_structured_tool.py +3 -10
- langflow/components/tools/python_repl.py +2 -2
- langflow/components/tools/searxng.py +3 -3
- langflow/components/tools/serp_api.py +2 -2
- langflow/components/tools/tavily_search_tool.py +2 -2
- langflow/components/tools/yahoo_finance.py +1 -1
- langflow/components/twelvelabs/video_embeddings.py +4 -4
- langflow/components/upstash/__init__.py +34 -0
- langflow/components/vectara/__init__.py +37 -0
- langflow/components/vectorstores/__init__.py +0 -69
- langflow/components/vectorstores/local_db.py +2 -1
- langflow/components/weaviate/__init__.py +34 -0
- langflow/components/yahoosearch/yahoo.py +1 -1
- langflow/components/youtube/trending.py +3 -4
- langflow/custom/attributes.py +2 -1
- langflow/custom/code_parser/code_parser.py +1 -1
- langflow/custom/custom_component/base_component.py +1 -1
- langflow/custom/custom_component/component.py +16 -2
- langflow/custom/dependency_analyzer.py +165 -0
- langflow/custom/directory_reader/directory_reader.py +7 -7
- langflow/custom/directory_reader/utils.py +1 -2
- langflow/custom/utils.py +63 -45
- langflow/events/event_manager.py +1 -1
- langflow/frontend/assets/{SlackIcon-CnvyOamQ.js → SlackIcon-Cr3Q15Px.js} +1 -1
- langflow/frontend/assets/{Wikipedia-nyTEXdr2.js → Wikipedia-GxM5sPdM.js} +1 -1
- langflow/frontend/assets/{Wolfram-BYMQkNSq.js → Wolfram-BN3-VOCA.js} +1 -1
- langflow/frontend/assets/{index-DZTC5pdT.js → index-28oOcafk.js} +1 -1
- langflow/frontend/assets/{index-ChXJpBz4.js → index-2wSXqBtB.js} +1 -1
- langflow/frontend/assets/{index-BB15_iOb.js → index-3wW7BClE.js} +1 -1
- langflow/frontend/assets/{index-DKHNourL.js → index-6pyH3ZJB.js} +1 -1
- langflow/frontend/assets/{index-BvwZfF2i.js → index-AWCSdofD.js} +1 -1
- langflow/frontend/assets/{index-Bvxg4_ux.js → index-B2Zgv_xv.js} +1 -1
- langflow/frontend/assets/{index-Bd6WtbKA.js → index-B2ptVQGM.js} +1 -1
- langflow/frontend/assets/{index-C7QWbnLK.js → index-B3TANVes.js} +1 -1
- langflow/frontend/assets/{index-CpvYQ0ug.js → index-B4yCvZKV.js} +1 -1
- langflow/frontend/assets/{index-Dg-63Si_.js → index-BC65VuWx.js} +1 -1
- langflow/frontend/assets/{index-C6jri9Wm.js → index-BCDSei1q.js} +1 -1
- langflow/frontend/assets/{index-OazXJdEl.js → index-BJy50PvP.js} +1 -1
- langflow/frontend/assets/{index-CWdkbVsd.js → index-BKseQQ2I.js} +1 -1
- langflow/frontend/assets/{index-CaQ_H9ww.js → index-BLTxEeTi.js} +1 -1
- langflow/frontend/assets/{index-DGRMNe9n.js → index-BRg1f4Mu.js} +1 -1
- langflow/frontend/assets/{index-D8lOi1GI.js → index-BS8Vo8nc.js} +1 -1
- langflow/frontend/assets/{index-B748uLP1.js → index-BTKOU4xC.js} +1 -1
- langflow/frontend/assets/{index-Dqd4RjYA.js → index-BVwJDmw-.js} +1 -1
- langflow/frontend/assets/{index-DbMFlnHE.js → index-BWYuQ2Sj.js} +1 -1
- langflow/frontend/assets/{index-BEMw2Np8.js → index-BWdLILDG.js} +1 -1
- langflow/frontend/assets/{index-BmX5CoED.js → index-BZcw4827.js} +1 -1
- langflow/frontend/assets/{index-CyPvTB63.js → index-Bbi87Ve4.js} +1 -1
- langflow/frontend/assets/{index-BTEW9e8P.js → index-Bf0IYKLd.js} +1 -1
- langflow/frontend/assets/{index-BZgXW854.js → index-Bg5nrMRh.js} +1 -1
- langflow/frontend/assets/{index-BBxAPk1y.js → index-BiC280Nx.js} +1 -1
- langflow/frontend/assets/{index-BR0bkVqX.js → index-BiKKN6FR.js} +1 -1
- langflow/frontend/assets/{index-CTrt1Q_j.js → index-Bief6eyJ.js} +1 -1
- langflow/frontend/assets/{index-D5_DsUJc.js → index-BkXec1Yf.js} +1 -1
- langflow/frontend/assets/{index-CZQ9rXNa.js → index-Bnl6QHtP.js} +1 -1
- langflow/frontend/assets/{index-BChjg6Az.js → index-BpxbUiZD.js} +1979 -1979
- langflow/frontend/assets/{index-BOeo01QB.js → index-BrJV8psX.js} +1 -1
- langflow/frontend/assets/{index-DysKpOuj.js → index-BwLWcUXL.js} +1 -1
- langflow/frontend/assets/{index-Bnqod3vk.js → index-Bx7dBY26.js} +1 -1
- langflow/frontend/assets/{index-D3DDfngy.js → index-C-EdnFdA.js} +1 -1
- langflow/frontend/assets/{index-Bsa0xZyL.js → index-C-Xfg4cD.js} +1 -1
- langflow/frontend/assets/{index-BTrsh9LS.js → index-C1f2wMat.js} +1 -1
- langflow/frontend/assets/index-C1xroOlH.css +1 -0
- langflow/frontend/assets/{index-B1YN7oMV.js → index-C3KequvP.js} +1 -1
- langflow/frontend/assets/{index-DzW2mfkK.js → index-C3ZjKdCD.js} +1 -1
- langflow/frontend/assets/{index-ajRge-Mg.js → index-C3l0zYn0.js} +1 -1
- langflow/frontend/assets/{index-cvZdgWHQ.js → index-C3yvArUT.js} +1 -1
- langflow/frontend/assets/{index-C-2hghRJ.js → index-C9Cxnkl8.js} +1 -1
- langflow/frontend/assets/{index-BhIOhlCH.js → index-CBc8fEAE.js} +1 -1
- langflow/frontend/assets/{index-B3Sur4Z3.js → index-CBvrGgID.js} +1 -1
- langflow/frontend/assets/{index-CCePCqkT.js → index-CD-PqGCY.js} +1 -1
- langflow/frontend/assets/{index-8yMsjVV2.js → index-CGO1CiUr.js} +1 -1
- langflow/frontend/assets/{index-DF5VwgU6.js → index-CH5UVA9b.js} +1 -1
- langflow/frontend/assets/{index-dcnYpT9N.js → index-CLJeJYjH.js} +1 -1
- langflow/frontend/assets/{index-DfxYyS3M.js → index-CMZ79X-Y.js} +1 -1
- langflow/frontend/assets/{index-ya2uXE8v.js → index-CMzfJKiW.js} +1 -1
- langflow/frontend/assets/{index-DkelbYy7.js → index-CNw1H-Wc.js} +1 -1
- langflow/frontend/assets/{index-DytJENYD.js → index-CPHEscq9.js} +1 -1
- langflow/frontend/assets/{index-Bv8h2Z-q.js → index-CRPKJZw9.js} +1 -1
- langflow/frontend/assets/{index-D-9TI74R.js → index-CRPyCfYy.js} +1 -1
- langflow/frontend/assets/{index-BLGYN-9b.js → index-CRcMqCIj.js} +1 -1
- langflow/frontend/assets/{index-tVYiABdp.js → index-CUVDws8F.js} +1 -1
- langflow/frontend/assets/{index-CpcbQZIF.js → index-CVWQfRYZ.js} +1 -1
- langflow/frontend/assets/{index-DPCzHdsC.js → index-CVl6MbaM.js} +1 -1
- langflow/frontend/assets/{index-DkXy1WFo.js → index-CVwWoX99.js} +1 -1
- langflow/frontend/assets/{index-DK1Ptcc4.js → index-CWPzZtSx.js} +1 -1
- langflow/frontend/assets/{index-DHq8TQPB.js → index-CZqRL9DE.js} +1 -1
- langflow/frontend/assets/{index-DnEGCgih.js → index-CdIf07Rw.js} +1 -1
- langflow/frontend/assets/{index-BIQQCMvz.js → index-Cewy7JZE.js} +1 -1
- langflow/frontend/assets/{index-D8GJngXa.js → index-CfwLpbMM.js} +1 -1
- langflow/frontend/assets/{index-C_TdzfAn.js → index-CiR1dxI4.js} +1 -1
- langflow/frontend/assets/{index-BzL_EoKd.js → index-CiixOzDG.js} +1 -1
- langflow/frontend/assets/{index-Boso-xEw.js → index-ClsuDmR6.js} +1 -1
- langflow/frontend/assets/{index-8WdfSTTz.js → index-CmEYYRN1.js} +1 -1
- langflow/frontend/assets/{index-FUxmznS-.js → index-Co20d-eQ.js} +1 -1
- langflow/frontend/assets/{index-C82JjCPD.js → index-CpzXS6md.js} +1 -1
- langflow/frontend/assets/{index-DIDDfmlJ.js → index-Cqpzl1J4.js} +1 -1
- langflow/frontend/assets/{index-_UcqeEjm.js → index-CtVIONP2.js} +1 -1
- langflow/frontend/assets/{index-Gkrq-vzm.js → index-CuFXdTx4.js} +1 -1
- langflow/frontend/assets/{index-WPFivmdQ.js → index-Cyd2HtHK.js} +1 -1
- langflow/frontend/assets/{index-BFp_O-c9.js → index-D-1tA8Dt.js} +1 -1
- langflow/frontend/assets/{index-BqPpO6KG.js → index-D-KY3kkq.js} +1 -1
- langflow/frontend/assets/{index-Db71w3lq.js → index-D-_B1a8v.js} +1 -1
- langflow/frontend/assets/{index-BIzTEqFh.js → index-D14EWPyZ.js} +1 -1
- langflow/frontend/assets/{index-BbJjt5m4.js → index-D2N3l-cw.js} +1 -1
- langflow/frontend/assets/{index-DCRk27Tp.js → index-D5ETnvJa.js} +1 -1
- langflow/frontend/assets/{index-CvcEzq4x.js → index-D7kquVv2.js} +1 -1
- langflow/frontend/assets/{index-Q9vDw0Xl.js → index-DA6-bvgN.js} +1 -1
- langflow/frontend/assets/{index-l7bzB8Ex.js → index-DDWBeudF.js} +1 -1
- langflow/frontend/assets/{index-BCCGvqay.js → index-DDcMAaG4.js} +1 -1
- langflow/frontend/assets/{index-pCQ_yw8m.js → index-DHgomBdh.js} +1 -1
- langflow/frontend/assets/{index-BxEuHa76.js → index-DJP-ss47.js} +1 -1
- langflow/frontend/assets/{index-BbRm7beF.js → index-DQ7VYqQc.js} +1 -1
- langflow/frontend/assets/{index-Car-zdor.js → index-DTqbvGC0.js} +1 -1
- langflow/frontend/assets/{index-BRxvproo.js → index-DUpri6zF.js} +1 -1
- langflow/frontend/assets/{index-BQ6NUdMY.js → index-DV3utZDZ.js} +1 -1
- langflow/frontend/assets/{index-DjQETUy8.js → index-DXRfN4HV.js} +1 -1
- langflow/frontend/assets/{index-DfngcQxO.js → index-Db9dYSzy.js} +1 -1
- langflow/frontend/assets/{index-rXV1G1aB.js → index-DdtMEn6I.js} +1 -1
- langflow/frontend/assets/{index-DmMDPoi0.js → index-DfDhMHgQ.js} +1 -1
- langflow/frontend/assets/{index-DJB12jIC.js → index-Dfe7qfvf.js} +1 -1
- langflow/frontend/assets/{index-C_veJlEb.js → index-DhtZ5hx8.js} +1 -1
- langflow/frontend/assets/{index-CQMoqLAu.js → index-DiB3CTo8.js} +1 -1
- langflow/frontend/assets/{index-DVlceYFD.js → index-DiGWASY5.js} +1 -1
- langflow/frontend/assets/{index-Du_18NCU.js → index-Dl5amdBz.js} +1 -1
- langflow/frontend/assets/{index-CYDAYm-i.js → index-DlD4dXlZ.js} +1 -1
- langflow/frontend/assets/{index-CLPdN-q6.js → index-DmeiHnfl.js} +1 -1
- langflow/frontend/assets/index-Dmu-X5-4.js +1 -0
- langflow/frontend/assets/{index-BzEUlaw_.js → index-DpVWih90.js} +1 -1
- langflow/frontend/assets/{index-D6PSjHxP.js → index-DrDrcajG.js} +1 -1
- langflow/frontend/assets/{index-Dq5ilsem.js → index-Du-pc0KE.js} +1 -1
- langflow/frontend/assets/{index-CYe8Ipef.js → index-DwPkMTaY.js} +1 -1
- langflow/frontend/assets/{index-BVEZDXxS.js → index-DwQEZe3C.js} +1 -1
- langflow/frontend/assets/{index-BvT7L317.js → index-DyJFTK24.js} +1 -1
- langflow/frontend/assets/{index-HK3bVMYA.js → index-J38wh62w.js} +1 -1
- langflow/frontend/assets/{index-CCxGSSTT.js → index-Kwdl-e29.js} +1 -1
- langflow/frontend/assets/{index-BOB_zsjl.js → index-OwPvCmpW.js} +1 -1
- langflow/frontend/assets/{index-Dsps-jKu.js → index-Tw3Os-DN.js} +1 -1
- langflow/frontend/assets/{index-CFDvOtKC.js → index-X0guhYF8.js} +1 -1
- langflow/frontend/assets/{index-BX5D-USa.js → index-dJWNxIRH.js} +1 -1
- langflow/frontend/assets/{index-BRYjyhAd.js → index-dcJ8-agu.js} +1 -1
- langflow/frontend/assets/{index-Ui4xUImO.js → index-eo2mAtL-.js} +1 -1
- langflow/frontend/assets/{index-CxvP91st.js → index-hG24k5xJ.js} +1 -1
- langflow/frontend/assets/{index-CVQmT7ZL.js → index-h_aSZHf3.js} +1 -1
- langflow/frontend/assets/{index-BIXaW2aY.js → index-hbndqB9B.js} +1 -1
- langflow/frontend/assets/{index-DIkNW9Cd.js → index-iJngutFo.js} +1 -1
- langflow/frontend/assets/{index-BWmPX4iQ.js → index-lTpteg8t.js} +1 -1
- langflow/frontend/assets/{index-xuIrH2Dq.js → index-lZX9AvZW.js} +1 -1
- langflow/frontend/assets/{index-yCHsaqs8.js → index-m8QA6VNM.js} +1 -1
- langflow/frontend/assets/{index-BkPYpfgw.js → index-o0D2S7xW.js} +1 -1
- langflow/frontend/assets/{index-DpClkXIV.js → index-ovFJ_0J6.js} +1 -1
- langflow/frontend/assets/{index-CmplyEaa.js → index-pYJJOcma.js} +1 -1
- langflow/frontend/assets/{index-CJo_cyWW.js → index-sI75DsdM.js} +1 -1
- langflow/frontend/assets/{index-nVwHLjuV.js → index-xvFOmxx4.js} +1 -1
- langflow/frontend/assets/{index-LbYjHKkn.js → index-z3SRY-mX.js} +1 -1
- langflow/frontend/assets/lazyIconImports-D97HEZkE.js +2 -0
- langflow/frontend/assets/{use-post-add-user-BrBYH9eR.js → use-post-add-user-C0MdTpQ5.js} +1 -1
- langflow/frontend/index.html +2 -2
- langflow/graph/edge/base.py +2 -3
- langflow/graph/graph/base.py +15 -13
- langflow/graph/graph/constants.py +3 -0
- langflow/graph/utils.py +6 -6
- langflow/graph/vertex/base.py +4 -5
- langflow/graph/vertex/param_handler.py +1 -1
- langflow/graph/vertex/vertex_types.py +2 -2
- langflow/helpers/flow.py +1 -1
- langflow/initial_setup/setup.py +32 -30
- langflow/initial_setup/starter_projects/Basic Prompt Chaining.json +26 -0
- langflow/initial_setup/starter_projects/Basic Prompting.json +26 -0
- langflow/initial_setup/starter_projects/Blog Writer.json +58 -2
- langflow/initial_setup/starter_projects/Custom Component Generator.json +37 -2
- langflow/initial_setup/starter_projects/Document Q&A.json +27 -1
- langflow/initial_setup/starter_projects/Financial Report Parser.json +43 -0
- langflow/initial_setup/starter_projects/Hybrid Search RAG.json +83 -1
- langflow/initial_setup/starter_projects/Image Sentiment Analysis.json +43 -0
- langflow/initial_setup/starter_projects/Instagram Copywriter.json +51 -3
- langflow/initial_setup/starter_projects/Invoice Summarizer.json +40 -1
- langflow/initial_setup/starter_projects/Knowledge Ingestion.json +73 -2
- langflow/initial_setup/starter_projects/Knowledge Retrieval.json +63 -0
- langflow/initial_setup/starter_projects/Market Research.json +59 -3
- langflow/initial_setup/starter_projects/Meeting Summary.json +101 -6
- langflow/initial_setup/starter_projects/Memory Chatbot.json +37 -2
- langflow/initial_setup/starter_projects/News Aggregator.json +63 -3
- langflow/initial_setup/starter_projects/Nvidia Remix.json +69 -4
- langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +48 -1
- langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +44 -1
- langflow/initial_setup/starter_projects/Price Deal Finder.json +57 -5
- langflow/initial_setup/starter_projects/Research Agent.json +42 -3
- langflow/initial_setup/starter_projects/Research Translation Loop.json +66 -0
- langflow/initial_setup/starter_projects/SEO Keyword Generator.json +17 -0
- langflow/initial_setup/starter_projects/SaaS Pricing.json +27 -1
- langflow/initial_setup/starter_projects/Search agent.json +40 -1
- langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +76 -7
- langflow/initial_setup/starter_projects/Simple Agent.json +59 -3
- langflow/initial_setup/starter_projects/Social Media Agent.json +77 -1
- langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +35 -1
- langflow/initial_setup/starter_projects/Travel Planning Agents.json +51 -3
- langflow/initial_setup/starter_projects/Twitter Thread Generator.json +80 -0
- langflow/initial_setup/starter_projects/Vector Store RAG.json +110 -3
- langflow/initial_setup/starter_projects/Youtube Analysis.json +84 -3
- langflow/initial_setup/starter_projects/vector_store_rag.py +1 -1
- langflow/interface/components.py +23 -22
- langflow/interface/initialize/loading.py +5 -5
- langflow/interface/run.py +1 -1
- langflow/interface/utils.py +1 -1
- langflow/io/__init__.py +0 -1
- langflow/langflow_launcher.py +1 -1
- langflow/load/load.py +2 -7
- langflow/logging/__init__.py +0 -1
- langflow/logging/logger.py +191 -115
- langflow/logging/setup.py +1 -1
- langflow/main.py +37 -52
- langflow/memory.py +7 -7
- langflow/middleware.py +1 -1
- langflow/processing/process.py +6 -3
- langflow/schema/artifact.py +2 -2
- langflow/schema/data.py +10 -2
- langflow/schema/dataframe.py +1 -1
- langflow/schema/message.py +1 -1
- langflow/serialization/serialization.py +1 -1
- langflow/services/auth/mcp_encryption.py +104 -0
- langflow/services/auth/utils.py +2 -2
- langflow/services/cache/disk.py +1 -1
- langflow/services/cache/service.py +3 -3
- langflow/services/database/models/flow/model.py +2 -7
- langflow/services/database/models/transactions/crud.py +2 -2
- langflow/services/database/models/user/crud.py +2 -2
- langflow/services/database/service.py +8 -8
- langflow/services/database/utils.py +6 -5
- langflow/services/deps.py +2 -3
- langflow/services/factory.py +1 -1
- langflow/services/flow/flow_runner.py +7 -12
- langflow/services/job_queue/service.py +16 -15
- langflow/services/manager.py +3 -4
- langflow/services/settings/auth.py +1 -1
- langflow/services/settings/base.py +3 -8
- langflow/services/settings/feature_flags.py +1 -1
- langflow/services/settings/manager.py +1 -1
- langflow/services/settings/utils.py +1 -1
- langflow/services/socket/__init__.py +0 -1
- langflow/services/socket/service.py +3 -3
- langflow/services/socket/utils.py +4 -4
- langflow/services/state/service.py +1 -2
- langflow/services/storage/factory.py +1 -1
- langflow/services/storage/local.py +9 -8
- langflow/services/storage/s3.py +11 -10
- langflow/services/store/service.py +3 -3
- langflow/services/store/utils.py +3 -2
- langflow/services/task/temp_flow_cleanup.py +7 -7
- langflow/services/telemetry/service.py +10 -10
- langflow/services/tracing/arize_phoenix.py +2 -2
- langflow/services/tracing/langfuse.py +1 -1
- langflow/services/tracing/langsmith.py +1 -1
- langflow/services/tracing/langwatch.py +1 -1
- langflow/services/tracing/opik.py +1 -1
- langflow/services/tracing/service.py +25 -6
- langflow/services/tracing/traceloop.py +245 -0
- langflow/services/utils.py +7 -7
- langflow/services/variable/kubernetes.py +3 -3
- langflow/services/variable/kubernetes_secrets.py +2 -1
- langflow/services/variable/service.py +5 -5
- langflow/utils/component_utils.py +9 -6
- langflow/utils/util.py +5 -5
- langflow/utils/validate.py +3 -3
- langflow/utils/voice_utils.py +2 -2
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/METADATA +2 -1
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/RECORD +393 -374
- langflow/components/vectorstores/redis.py +0 -89
- langflow/frontend/assets/index-C26RqKWL.js +0 -1
- langflow/frontend/assets/index-CqS7zir1.css +0 -1
- langflow/frontend/assets/lazyIconImports-t6wEndt1.js +0 -2
- /langflow/components/{vectorstores → FAISS}/faiss.py +0 -0
- /langflow/components/{vectorstores → cassandra}/cassandra.py +0 -0
- /langflow/components/{datastax/cassandra.py → cassandra/cassandra_chat.py} +0 -0
- /langflow/components/{vectorstores → cassandra}/cassandra_graph.py +0 -0
- /langflow/components/{vectorstores → chroma}/chroma.py +0 -0
- /langflow/components/{vectorstores → clickhouse}/clickhouse.py +0 -0
- /langflow/components/{vectorstores → couchbase}/couchbase.py +0 -0
- /langflow/components/{vectorstores → datastax}/astradb.py +0 -0
- /langflow/components/{vectorstores → datastax}/astradb_graph.py +0 -0
- /langflow/components/{vectorstores → datastax}/graph_rag.py +0 -0
- /langflow/components/{vectorstores → datastax}/hcd.py +0 -0
- /langflow/components/{vectorstores → elastic}/elasticsearch.py +0 -0
- /langflow/components/{vectorstores → elastic}/opensearch.py +0 -0
- /langflow/components/{vectorstores → milvus}/milvus.py +0 -0
- /langflow/components/{vectorstores → mongodb}/mongodb_atlas.py +0 -0
- /langflow/components/{vectorstores → pgvector}/pgvector.py +0 -0
- /langflow/components/{vectorstores → pinecone}/pinecone.py +0 -0
- /langflow/components/{vectorstores → qdrant}/qdrant.py +0 -0
- /langflow/components/{vectorstores → supabase}/supabase.py +0 -0
- /langflow/components/{vectorstores → upstash}/upstash.py +0 -0
- /langflow/components/{vectorstores → vectara}/vectara.py +0 -0
- /langflow/components/{vectorstores → vectara}/vectara_rag.py +0 -0
- /langflow/components/{vectorstores → weaviate}/weaviate.py +0 -0
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/WHEEL +0 -0
- {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev39.dist-info}/entry_points.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as o,r}from"./index-BChjg6Az.js";const p=s=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",x:"0",y:"0",version:"1.1",viewBox:"0 0 588.1 604.9",...s,children:[o.jsxs("linearGradient",{id:"SVGOLIV_1_",x1:"465.383",x2:"912.298",y1:"2359.246",y2:"2617.273",gradientTransform:"matrix(-.239 .2282 .2631 .0186 -197.96 95.535)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_1_)",strokeMiterlimit:"10",strokeWidth:"10.3319",d:"M202.8 350.2c3.8 3.6 9.7 6 17.1 7.1 16.4 2.4 38.8-2 61.6-8.3 19.4-5.4 41.7-13 60.3-24.9 43.4-27.6 43.6-53.3 25.6-68.2-25.5-21-80.3-10.5-119.9 21.7-26.8 21.8-52.4 47.8-48.7 65.1.4 3 1.9 5.4 4 7.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000028318286484138508780000010327150227960584361_",x1:"649.932",x2:"1096.701",y1:"2194.804",y2:"2452.747",gradientTransform:"matrix(-.2358 .2682 .3092 -.0232 -221.463 118.996)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000028318286484138508780000010327150227960584361_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M196.8 365.1c5 3.1 12.3 4.5 21.1 4.4 19.5-.2 44.7-8.2 70-18.2 21.6-8.5 46.1-19.8 65.5-34.7 45.4-34.7 40.9-60.7 17.2-72.8-33.5-17.1-95.2 2.2-135.4 41-27.1 26.2-52.1 56.5-44.6 73.4 1.2 2.9 3.3 5.2 6.2 6.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000132773528077608087620000000941740443662469009_",x1:"780.542",x2:"1227.455",y1:"2011.592",y2:"2269.617",gradientTransform:"matrix(-.2246 .3079 .355 -.0728 -244.354 146.45)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000132773528077608087620000000941740443662469009_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M192.6 381.2c6.4 2.3 15.2 2.6 25.4 1.1 22.6-3.4 50.5-15.4 78-29.5 23.5-12.1 49.9-27.3 69.7-45.4 46.3-42.2 36.4-67.7 6.6-76.1-42.1-11.9-110.3 17.5-149.8 63-26.7 30.7-50.2 65.2-38.3 81.1 1.9 2.5 4.7 4.5 8.4 5.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000147183726487581896660000016077111679480586641_",x1:"861.41",x2:"1308.205",y1:"1816.571",y2:"2074.529",gradientTransform:"matrix(-.2043 .3462 .3991 -.13 -265.915 177.717)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000147183726487581896660000016077111679480586641_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M190.6 398c7.9 1.3 18.1.2 29.7-3 25.6-7 55.8-23.6 85.2-42.2 25.1-15.9 53-35.5 72.7-56.9 46-50 29.8-74-6.4-77.7-51.1-5.3-124.9 35.2-162.4 87.4-25.3 35.2-46.3 73.8-29.6 87.9 2.7 2.3 6.4 3.7 10.8 4.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000031911910229338081120000000029962339121350590_",x1:"899.682",x2:"1346.457",y1:"1617.081",y2:"1875.026",gradientTransform:"matrix(-.1737 .3815 .4399 -.1947 -285.295 212.66)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000031911910229338081120000000029962339121350590_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M191.5 415.2c9.4 0 21.1-2.7 33.9-7.7 28.5-11.1 60.5-32.7 91.2-56.1 26.2-20 55-44.2 74-68.9 44.3-57.7 21-79.4-21.7-77.3-60.4 2.9-138.7 55.4-172.7 114-22.9 39.5-40.2 81.7-18.2 93.3q5.4 2.7 13.5 2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000013179304289864300650000010789520586139200134_",x1:"901.453",x2:"1348.278",y1:"1419.033",y2:"1677.008",gradientTransform:"matrix(-.1316 .4122 .4753 -.2665 -301.284 251.039)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000013179304289864300650000010789520586139200134_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M195.6 432.5c10.9-1.5 24-6.1 38-13.2 31.1-15.8 64.3-42.6 95.7-71.1 26.8-24.4 55.8-53.4 73.3-81.3 40.8-65.2 9.8-83.3-39.5-74.5-69.6 12.5-150.9 78-179.7 142.4-19.4 43.5-31.7 88.8-4 97 4.5 1.3 10 1.5 16.2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000077314713149883013570000008498170906235921843_",x1:"872.247",x2:"1319.061",y1:"1227.275",y2:"1485.243",gradientTransform:"matrix(-.0771 .4365 .5032 -.3444 -312.808 292.205)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000077314713149883013570000008498170906235921843_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M203.6 449.2c12.4-3.2 26.8-10 41.7-19.4 33.2-20.9 66.8-53.2 98.1-87 26.7-28.9 55-62.7 70.2-93.6 35.5-72.3-3.9-85.5-59.6-68.8-78.6 23.7-161 102.7-182.6 172.2-14.5 47-20.4 94.5 13.2 98.4 5.5.7 12 0 19-1.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000065756110155121615190000003343827430780919682_",x1:"818.489",x2:"1265.246",y1:"1045.168",y2:"1303.103",gradientTransform:"matrix(-.0092 .4522 .5214 -.4275 -318.684 335.613)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000065756110155121615190000003343827430780919682_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M216 464.8c13.8-5.2 29.3-14.3 44.9-26.2 34.7-26.3 67.9-64.2 97.9-103.3 25.7-33.4 52.4-72 64.3-105.5 27.9-78.5-20.3-85.6-81.9-59.8-87 36.5-168.2 129.2-180.4 202.7-8.2 49.6-6.4 98.5 33.4 97 6.6-.2 13.9-1.9 21.8-4.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000012469361102575799340000003264233064296944020_",x1:"745.461",x2:"1192.29",y1:"876.299",y2:"1134.277",gradientTransform:"matrix(.0725 .4572 .5271 -.514 -317.426 380.176)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000012469361102575799340000003264233064296944020_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M233.2 478.5c15.1-7.5 31.4-19.1 47.4-33.5 35.5-32.1 67.1-75.6 94.8-119.7 23.7-37.7 47.6-80.9 55.3-116.6 18-83.6-39.4-83-106.1-47.2-94.4 50.6-171.7 157.1-172.4 233.1-.4 51.3 10.7 100.3 56.7 92.4 7.5-1.3 15.7-4.2 24.3-8.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000060019446214792813530000001840114263871061921_",x1:"658.243",x2:"1105.071",y1:"722.469",y2:"980.445",gradientTransform:"matrix(.1684 .4492 .5179 -.6022 -307.826 424.98)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000060019446214792813530000001840114263871061921_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M255.8 489.6c16.2-9.9 32.9-24.3 48.9-41.4 35.4-38 64-86.9 88.1-135.8 20.6-41.8 40.4-89.1 42.8-126.4 5.5-87.1-61-77.4-132-30.6C203.2 221.5 133 341.1 146.2 417.9c8.9 51.8 30.9 99.4 82.9 84.1 8.5-2.5 17.5-6.7 26.7-12.4z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000106138383444935956710000011214948857413435783_",x1:"561.238",x2:"1008.009",y1:"585.184",y2:"843.127",gradientTransform:"matrix(.2784 .4259 .491 -.6896 -288.431 468.608)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000106138383444935956710000011214948857413435783_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M284 497.2c17-12.6 33.8-29.7 49.2-49.5 34.1-43.9 58.4-97.8 77.4-150.9 16.2-45.4 30.6-96.3 26.5-134.2-9.6-88.6-85.1-68.2-159-9.8C173.7 235.4 114 367.2 143.5 442.4c19.9 50.8 54.3 95.2 111.8 71.5 9.4-3.8 19.1-9.5 28.7-16.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000049930197591990372350000017738021054741380767_",x1:"458.886",x2:"905.647",y1:"465.171",y2:"723.109",gradientTransform:"matrix(.4019 .3848 .4436 -.7734 -257.83 509.47)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000049930197591990372350000017738021054741380767_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M318.2 500.4c17.4-15.4 33.8-35.3 48-57.7 31.5-49.7 49.8-107.9 62.1-164.5 10.5-48.4 17.8-101.9 6-139.5-27.4-87.8-111.3-55.2-186.4 15.5-106.2 100-151.2 242.3-103.1 313.4 32.5 48 80.6 87.3 143.1 54.3 10.2-5.5 20.4-12.8 30.3-21.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000041984961206652126170000010685195358269274023_",x1:"354.636",x2:"801.419",y1:"362.583",y2:"620.533",gradientTransform:"matrix(.5378 .3236 .3731 -.8503 -214.764 545.752)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000041984961206652126170000010685195358269274023_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M358.6 498c17.4-18.3 32.8-41 45.2-65.9 27.5-55.1 38.1-116.7 41.9-175.7 3.3-50.4 2-105.6-18.6-141.5-48.1-84.1-139.7-37.8-214 45.4C108.1 278.1 82 428.7 151 492.7c46.6 43.2 109.7 75.2 176.2 31.8 11-7.1 21.5-16 31.4-26.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000046333153451202103420000007209590310843223729_",x1:"251.45",x2:"698.253",y1:"277.221",y2:"535.183",gradientTransform:"matrix(.6844 .2403 .2771 -.9165 -158.123 575.43)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000046333153451202103420000007209590310843223729_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M405 489.3c16.8-21.2 30.6-46.6 40.4-73.6 21.8-60 22.8-123.7 16.4-183.8-5.4-51.3-17.2-106.7-47.7-139.7-71.4-77.1-169.3-15.8-240.3 79.9-100.3 135.4-103 291.3-11 344.8 62.1 36.1 141.3 58.2 210.6 4 11.5-8.8 22.1-19.5 31.6-31.6z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000085214784022730279250000004563241609719432855_",x1:"151.621",x2:"598.429",y1:"208.348",y2:"466.313",gradientTransform:"matrix(.8395 .133 .1533 -.9679 -86.762 596.322)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000085214784022730279250000004563241609719432855_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M457.4 473c15.6-24.1 27-51.8 33.4-80.6 14.3-63.9 3.7-128.3-14.8-187.8-15.8-50.9-39.6-104.8-81.1-133.1-97.2-66.3-199.7 11-264.5 118.9-91.6 152.4-66 310.1 50.7 349.3 78.8 26.5 174.9 36.1 245.5-29.6 11.6-10.9 21.9-23.4 30.8-37.1z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000140707760598298352560000014678655576441594297_",x1:"57.255",x2:"504.045",y1:"154.911",y2:"412.866",gradientTransform:"matrix(1 0 0 -1 0 606)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000140707760598298352560000014678655576441594297_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M515.2 448.3c13.7-26.7 21.8-56.5 24-86.6 4.8-66.7-19.3-129.9-51.7-186.9-27.7-48.8-65.3-99.3-118.8-121.2-125.1-51.3-230 43-285.5 162-78.4 168.3-19.6 323 123.2 343.9 96.4 14.1 209.9 8.5 279.8-69 11.6-12.7 21.2-27 29-42.2z"})]}),e=r.forwardRef((s,t)=>o.jsx(p,{ref:t,...s}));export{e as OlivyaIcon};
|
|
1
|
+
import{j as o,r}from"./index-BpxbUiZD.js";const p=s=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",x:"0",y:"0",version:"1.1",viewBox:"0 0 588.1 604.9",...s,children:[o.jsxs("linearGradient",{id:"SVGOLIV_1_",x1:"465.383",x2:"912.298",y1:"2359.246",y2:"2617.273",gradientTransform:"matrix(-.239 .2282 .2631 .0186 -197.96 95.535)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_1_)",strokeMiterlimit:"10",strokeWidth:"10.3319",d:"M202.8 350.2c3.8 3.6 9.7 6 17.1 7.1 16.4 2.4 38.8-2 61.6-8.3 19.4-5.4 41.7-13 60.3-24.9 43.4-27.6 43.6-53.3 25.6-68.2-25.5-21-80.3-10.5-119.9 21.7-26.8 21.8-52.4 47.8-48.7 65.1.4 3 1.9 5.4 4 7.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000028318286484138508780000010327150227960584361_",x1:"649.932",x2:"1096.701",y1:"2194.804",y2:"2452.747",gradientTransform:"matrix(-.2358 .2682 .3092 -.0232 -221.463 118.996)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000028318286484138508780000010327150227960584361_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M196.8 365.1c5 3.1 12.3 4.5 21.1 4.4 19.5-.2 44.7-8.2 70-18.2 21.6-8.5 46.1-19.8 65.5-34.7 45.4-34.7 40.9-60.7 17.2-72.8-33.5-17.1-95.2 2.2-135.4 41-27.1 26.2-52.1 56.5-44.6 73.4 1.2 2.9 3.3 5.2 6.2 6.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000132773528077608087620000000941740443662469009_",x1:"780.542",x2:"1227.455",y1:"2011.592",y2:"2269.617",gradientTransform:"matrix(-.2246 .3079 .355 -.0728 -244.354 146.45)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000132773528077608087620000000941740443662469009_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M192.6 381.2c6.4 2.3 15.2 2.6 25.4 1.1 22.6-3.4 50.5-15.4 78-29.5 23.5-12.1 49.9-27.3 69.7-45.4 46.3-42.2 36.4-67.7 6.6-76.1-42.1-11.9-110.3 17.5-149.8 63-26.7 30.7-50.2 65.2-38.3 81.1 1.9 2.5 4.7 4.5 8.4 5.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000147183726487581896660000016077111679480586641_",x1:"861.41",x2:"1308.205",y1:"1816.571",y2:"2074.529",gradientTransform:"matrix(-.2043 .3462 .3991 -.13 -265.915 177.717)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000147183726487581896660000016077111679480586641_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M190.6 398c7.9 1.3 18.1.2 29.7-3 25.6-7 55.8-23.6 85.2-42.2 25.1-15.9 53-35.5 72.7-56.9 46-50 29.8-74-6.4-77.7-51.1-5.3-124.9 35.2-162.4 87.4-25.3 35.2-46.3 73.8-29.6 87.9 2.7 2.3 6.4 3.7 10.8 4.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000031911910229338081120000000029962339121350590_",x1:"899.682",x2:"1346.457",y1:"1617.081",y2:"1875.026",gradientTransform:"matrix(-.1737 .3815 .4399 -.1947 -285.295 212.66)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000031911910229338081120000000029962339121350590_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M191.5 415.2c9.4 0 21.1-2.7 33.9-7.7 28.5-11.1 60.5-32.7 91.2-56.1 26.2-20 55-44.2 74-68.9 44.3-57.7 21-79.4-21.7-77.3-60.4 2.9-138.7 55.4-172.7 114-22.9 39.5-40.2 81.7-18.2 93.3q5.4 2.7 13.5 2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000013179304289864300650000010789520586139200134_",x1:"901.453",x2:"1348.278",y1:"1419.033",y2:"1677.008",gradientTransform:"matrix(-.1316 .4122 .4753 -.2665 -301.284 251.039)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000013179304289864300650000010789520586139200134_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M195.6 432.5c10.9-1.5 24-6.1 38-13.2 31.1-15.8 64.3-42.6 95.7-71.1 26.8-24.4 55.8-53.4 73.3-81.3 40.8-65.2 9.8-83.3-39.5-74.5-69.6 12.5-150.9 78-179.7 142.4-19.4 43.5-31.7 88.8-4 97 4.5 1.3 10 1.5 16.2.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000077314713149883013570000008498170906235921843_",x1:"872.247",x2:"1319.061",y1:"1227.275",y2:"1485.243",gradientTransform:"matrix(-.0771 .4365 .5032 -.3444 -312.808 292.205)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000077314713149883013570000008498170906235921843_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M203.6 449.2c12.4-3.2 26.8-10 41.7-19.4 33.2-20.9 66.8-53.2 98.1-87 26.7-28.9 55-62.7 70.2-93.6 35.5-72.3-3.9-85.5-59.6-68.8-78.6 23.7-161 102.7-182.6 172.2-14.5 47-20.4 94.5 13.2 98.4 5.5.7 12 0 19-1.8z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000065756110155121615190000003343827430780919682_",x1:"818.489",x2:"1265.246",y1:"1045.168",y2:"1303.103",gradientTransform:"matrix(-.0092 .4522 .5214 -.4275 -318.684 335.613)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000065756110155121615190000003343827430780919682_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M216 464.8c13.8-5.2 29.3-14.3 44.9-26.2 34.7-26.3 67.9-64.2 97.9-103.3 25.7-33.4 52.4-72 64.3-105.5 27.9-78.5-20.3-85.6-81.9-59.8-87 36.5-168.2 129.2-180.4 202.7-8.2 49.6-6.4 98.5 33.4 97 6.6-.2 13.9-1.9 21.8-4.9z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000012469361102575799340000003264233064296944020_",x1:"745.461",x2:"1192.29",y1:"876.299",y2:"1134.277",gradientTransform:"matrix(.0725 .4572 .5271 -.514 -317.426 380.176)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000012469361102575799340000003264233064296944020_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M233.2 478.5c15.1-7.5 31.4-19.1 47.4-33.5 35.5-32.1 67.1-75.6 94.8-119.7 23.7-37.7 47.6-80.9 55.3-116.6 18-83.6-39.4-83-106.1-47.2-94.4 50.6-171.7 157.1-172.4 233.1-.4 51.3 10.7 100.3 56.7 92.4 7.5-1.3 15.7-4.2 24.3-8.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000060019446214792813530000001840114263871061921_",x1:"658.243",x2:"1105.071",y1:"722.469",y2:"980.445",gradientTransform:"matrix(.1684 .4492 .5179 -.6022 -307.826 424.98)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000060019446214792813530000001840114263871061921_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M255.8 489.6c16.2-9.9 32.9-24.3 48.9-41.4 35.4-38 64-86.9 88.1-135.8 20.6-41.8 40.4-89.1 42.8-126.4 5.5-87.1-61-77.4-132-30.6C203.2 221.5 133 341.1 146.2 417.9c8.9 51.8 30.9 99.4 82.9 84.1 8.5-2.5 17.5-6.7 26.7-12.4z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000106138383444935956710000011214948857413435783_",x1:"561.238",x2:"1008.009",y1:"585.184",y2:"843.127",gradientTransform:"matrix(.2784 .4259 .491 -.6896 -288.431 468.608)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000106138383444935956710000011214948857413435783_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M284 497.2c17-12.6 33.8-29.7 49.2-49.5 34.1-43.9 58.4-97.8 77.4-150.9 16.2-45.4 30.6-96.3 26.5-134.2-9.6-88.6-85.1-68.2-159-9.8C173.7 235.4 114 367.2 143.5 442.4c19.9 50.8 54.3 95.2 111.8 71.5 9.4-3.8 19.1-9.5 28.7-16.7z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000049930197591990372350000017738021054741380767_",x1:"458.886",x2:"905.647",y1:"465.171",y2:"723.109",gradientTransform:"matrix(.4019 .3848 .4436 -.7734 -257.83 509.47)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000049930197591990372350000017738021054741380767_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M318.2 500.4c17.4-15.4 33.8-35.3 48-57.7 31.5-49.7 49.8-107.9 62.1-164.5 10.5-48.4 17.8-101.9 6-139.5-27.4-87.8-111.3-55.2-186.4 15.5-106.2 100-151.2 242.3-103.1 313.4 32.5 48 80.6 87.3 143.1 54.3 10.2-5.5 20.4-12.8 30.3-21.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000041984961206652126170000010685195358269274023_",x1:"354.636",x2:"801.419",y1:"362.583",y2:"620.533",gradientTransform:"matrix(.5378 .3236 .3731 -.8503 -214.764 545.752)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000041984961206652126170000010685195358269274023_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M358.6 498c17.4-18.3 32.8-41 45.2-65.9 27.5-55.1 38.1-116.7 41.9-175.7 3.3-50.4 2-105.6-18.6-141.5-48.1-84.1-139.7-37.8-214 45.4C108.1 278.1 82 428.7 151 492.7c46.6 43.2 109.7 75.2 176.2 31.8 11-7.1 21.5-16 31.4-26.5z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000046333153451202103420000007209590310843223729_",x1:"251.45",x2:"698.253",y1:"277.221",y2:"535.183",gradientTransform:"matrix(.6844 .2403 .2771 -.9165 -158.123 575.43)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000046333153451202103420000007209590310843223729_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M405 489.3c16.8-21.2 30.6-46.6 40.4-73.6 21.8-60 22.8-123.7 16.4-183.8-5.4-51.3-17.2-106.7-47.7-139.7-71.4-77.1-169.3-15.8-240.3 79.9-100.3 135.4-103 291.3-11 344.8 62.1 36.1 141.3 58.2 210.6 4 11.5-8.8 22.1-19.5 31.6-31.6z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000085214784022730279250000004563241609719432855_",x1:"151.621",x2:"598.429",y1:"208.348",y2:"466.313",gradientTransform:"matrix(.8395 .133 .1533 -.9679 -86.762 596.322)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000085214784022730279250000004563241609719432855_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M457.4 473c15.6-24.1 27-51.8 33.4-80.6 14.3-63.9 3.7-128.3-14.8-187.8-15.8-50.9-39.6-104.8-81.1-133.1-97.2-66.3-199.7 11-264.5 118.9-91.6 152.4-66 310.1 50.7 349.3 78.8 26.5 174.9 36.1 245.5-29.6 11.6-10.9 21.9-23.4 30.8-37.1z"}),o.jsxs("linearGradient",{id:"SVGOLIV_00000140707760598298352560000014678655576441594297_",x1:"57.255",x2:"504.045",y1:"154.911",y2:"412.866",gradientTransform:"matrix(1 0 0 -1 0 606)",gradientUnits:"userSpaceOnUse",children:[o.jsx("stop",{offset:"0",stopColor:"#80A29E"}),o.jsx("stop",{offset:"0.034",stopColor:"#759E9A"}),o.jsx("stop",{offset:"0.094",stopColor:"#58948E"}),o.jsx("stop",{offset:"0.172",stopColor:"#29847B"}),o.jsx("stop",{offset:"0.232",stopColor:"#00766A"}),o.jsx("stop",{offset:"0.36",stopColor:"#006A5F"}),o.jsx("stop",{offset:"0.59",stopColor:"#014A43"}),o.jsx("stop",{offset:"0.645",stopColor:"#01413B"}),o.jsx("stop",{offset:"0.739",stopColor:"#015048"}),o.jsx("stop",{offset:"0.919",stopColor:"#007669"}),o.jsx("stop",{offset:"0.922",stopColor:"#00776A"}),o.jsx("stop",{offset:"1",stopColor:"#80A29E"})]}),o.jsx("path",{fill:"none",stroke:"url(#SVGOLIV_00000140707760598298352560000014678655576441594297_)",strokeMiterlimit:"10",strokeWidth:"10.332",d:"M515.2 448.3c13.7-26.7 21.8-56.5 24-86.6 4.8-66.7-19.3-129.9-51.7-186.9-27.7-48.8-65.3-99.3-118.8-121.2-125.1-51.3-230 43-285.5 162-78.4 168.3-19.6 323 123.2 343.9 96.4 14.1 209.9 8.5 279.8-69 11.6-12.7 21.2-27 29-42.2z"})]}),e=r.forwardRef((s,t)=>o.jsx(p,{ref:t,...s}));export{e as OlivyaIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as c,r as l}from"./index-
|
|
1
|
+
import{j as c,r as l}from"./index-BpxbUiZD.js";const r=e=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",style:{enableBackground:"new 0 0 304 182"},viewBox:"0 0 304 182",...e,children:[c.jsx("style",{children:".st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}"}),c.jsx("path",{d:"M86.4 66.4c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L83.2 92c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.8 9.2-17.6 13.8-29.4 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6 6.1-5.2 14.2-7.8 24.5-7.8 3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5.5-.7 1.4-1.4 2.8-2.1 3.5-1.8 7.7-3.3 12.6-4.5C41 1.9 46.2 1.3 51.7 1.3c11.9 0 20.6 2.7 26.2 8.1 5.5 5.4 8.3 13.6 8.3 24.6v32.4zM45.8 81.6c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7v-4.2c-2.9-.7-6-1.3-9.2-1.7-3.2-.4-6.3-.6-9.4-.6-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.5 5.9 3.7 10.5 3.7zm80.3 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L96.7 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.2 15.6-66.2c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 67 17.3-67c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24.1 77.3c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1h-8.6c-1.9 0-3.2-.3-4-1-.8-.7-1.5-2-1.9-4L156 23l-15.4 64.4c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1h-8.6zm128.5 2.7c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2L246 52c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1 1.8-3.2 4.2-6 7.2-8.2 3-2.3 6.4-4 10.4-5.2 4-1.2 8.2-1.7 12.6-1.7 2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6 1.8.6 3.2 1.2 4.2 1.8 1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z",fill:e.isDark?"#ffffff":"#252f3e"}),c.jsx("path",{d:"M273.5 143.7c-32.9 24.3-80.7 37.2-121.8 37.2-57.6 0-109.5-21.3-148.7-56.7-3.1-2.8-.3-6.6 3.4-4.4 42.4 24.6 94.7 39.5 148.8 39.5 36.5 0 76.6-7.6 113.5-23.2 5.5-2.5 10.2 3.6 4.8 7.6z",className:"st1"}),c.jsx("path",{d:"M287.2 128.1c-4.2-5.4-27.8-2.6-38.5-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.7-9.4 53.3-5 3.6 4.5-1 35.4-18.6 50.2-2.7 2.3-5.3 1.1-4.1-1.9 4-9.9 12.9-32.2 8.7-37.5z",className:"st1"})]}),a=l.forwardRef((e,s)=>c.jsx(r,{ref:s,...e}));export{a as AWSInvertedIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as a,r as o}from"./index-
|
|
1
|
+
import{j as a,r as o}from"./index-BpxbUiZD.js";const n=l=>a.jsxs("svg",{viewBox:"0 0 81 41",fill:"none",xmlns:"http://www.w3.org/2000/svg",...l,children:[a.jsx("path",{d:"M61.514 11.157a3.94 3.94 0 0 0-2.806 1.158l-3.018 3.01a3.95 3.95 0 0 0-1.147 3.095l.019.191a3.9 3.9 0 0 0 1.128 2.314 3.6 3.6 0 0 0 1.496.9q.046.263.047.53c0 .797-.31 1.546-.874 2.107l-.186.186c-1.008-.344-1.848-.847-2.607-1.604a6.9 6.9 0 0 1-1.927-3.67l-.034-.193-.153.124a4 4 0 0 0-.294.265l-3.018 3.01a3.957 3.957 0 0 0 2.807 6.757 3.96 3.96 0 0 0 2.806-1.158l3.019-3.01a3.96 3.96 0 0 0 0-5.599 3.9 3.9 0 0 0-1.462-.92 3.25 3.25 0 0 1 .924-2.855 6.9 6.9 0 0 1 2.664 1.656 6.9 6.9 0 0 1 1.926 3.67l.035.193.153-.124q.155-.125.296-.267l3.018-3.01a3.956 3.956 0 0 0-2.808-6.756z",fill:"CurrentColor"}),a.jsx("path",{d:"M59.897.149h-39.49C9.153.149 0 9.279 0 20.5c0 11.222 9.154 20.351 20.406 20.351h39.49c11.253 0 20.407-9.13 20.407-20.35C80.303 9.277 71.149.148 59.897.148M40.419 32.056c-.651.134-1.384.158-1.882-.36-.183.42-.612.199-.943.144-.03.085-.057.16-.085.246-1.1.073-1.925-1.046-2.449-1.89-1.04-.562-2.222-.904-3.285-1.492-.062.968.15 2.17-.774 2.794-.047 1.862 2.824.22 3.088 1.608-.204.022-.43-.033-.594.124-.749.726-1.608-.55-2.471-.023-1.16.582-1.276 1.059-2.71 1.179-.08-.12-.047-.2.02-.273.404-.468.433-1.02 1.122-1.22-.71-.111-1.303.28-1.901.59-.778.317-.772-.717-1.968.054-.132-.108-.069-.206.007-.289.304-.37.704-.425 1.155-.405-2.219-1.233-3.263 1.508-4.288.145-.308.081-.424.358-.618.553-.167-.183-.04-.405-.033-.62-.2-.094-.453-.139-.394-.459-.391-.132-.665.1-.957.32-.263-.203.178-.5.26-.712.234-.407.769-.084 1.04-.377.772-.437 1.847.273 2.729.153.68.085 1.52-.61 1.179-1.305-.726-.926-.598-2.137-.614-3.244-.09-.645-1.643-1.467-2.092-2.163-.555-.627-.987-1.353-1.42-2.068-1.561-3.014-1.07-6.886-3.037-9.685-.89.49-2.048.259-2.816-.399-.414.377-.432.87-.465 1.392-.994-.99-.87-2.863-.075-3.966a5.3 5.3 0 0 1 1.144-1.11c.098-.07.131-.14.129-.25.786-3.524 6.144-2.845 7.838-.348 1.229 1.537 1.6 3.57 2.994 4.997 1.875 2.047 4.012 3.85 5.742 6.03 1.637 1.992 2.806 4.328 3.826 6.683.416.782.42 1.74 1.037 2.408.304.403 1.79 1.5 1.467 1.888.186.403 1.573.959 1.092 1.35zm26.026-12.024-3.018 3.01a6.96 6.96 0 0 1-2.875 1.728l-.056.016-.02.053a6.9 6.9 0 0 1-1.585 2.446l-3.019 3.01a6.94 6.94 0 0 1-4.932 2.035 6.94 6.94 0 0 1-4.932-2.035 6.95 6.95 0 0 1 0-9.838l3.018-3.01a6.9 6.9 0 0 1 2.871-1.721l.055-.017.02-.053a6.9 6.9 0 0 1 1.59-2.454l3.019-3.01a6.94 6.94 0 0 1 4.932-2.035c1.865 0 3.616.723 4.932 2.035a6.9 6.9 0 0 1 2.04 4.92c0 1.86-.724 3.607-2.04 4.918z",fill:"CurrentColor"}),a.jsx("path",{d:"M28.142 28.413c-.265 1.03-.35 2.782-1.694 2.832-.11.595.413.819.89.627.472-.215.696.171.855.556.729.106 1.806-.242 1.847-1.103-1.088-.625-1.424-1.813-1.896-2.914z",fill:"CurrentColor"})]}),s=o.forwardRef((l,r)=>a.jsx(n,{ref:r,...l}));export{s as LangChainIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as L,r as o}from"./index-
|
|
1
|
+
import{j as L,r as o}from"./index-BpxbUiZD.js";const s=e=>L.jsxs("svg",{viewBox:"0 0 36 34",xmlns:"http://www.w3.org/2000/svg",className:"fill-accent-foreground transition-all group-hover:scale-110",...e,children:[L.jsx("title",{children:"Spider v0 Logo"}),L.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.13883 7.06589V0.164429L13.0938 0.164429V6.175L14.5178 7.4346C15.577 6.68656 16.7337 6.27495 17.945 6.27495C19.1731 6.27495 20.3451 6.69807 21.4163 7.46593L22.8757 6.175V0.164429L26.8307 0.164429V7.06589V7.95679L26.1634 8.54706L24.0775 10.3922C24.3436 10.8108 24.5958 11.2563 24.8327 11.7262L26.0467 11.4215L28.6971 8.08749L31.793 10.5487L28.7257 14.407L28.3089 14.9313L27.6592 15.0944L26.2418 15.4502C26.3124 15.7082 26.3793 15.9701 26.4422 16.2355L28.653 16.6566L29.092 16.7402L29.4524 17.0045L35.3849 21.355L33.0461 24.5444L27.474 20.4581L27.0719 20.3816C27.1214 21.0613 27.147 21.7543 27.147 22.4577C27.147 22.5398 27.1466 22.6214 27.1459 22.7024L29.5889 23.7911L30.3219 24.1177L30.62 24.8629L33.6873 32.5312L30.0152 34L27.246 27.0769L26.7298 26.8469C25.5612 32.2432 22.0701 33.8808 17.945 33.8808C13.8382 33.8808 10.3598 32.2577 9.17593 26.9185L8.82034 27.0769L6.05109 34L2.37897 32.5312L5.44629 24.8629L5.74435 24.1177L6.47743 23.7911L8.74487 22.7806C8.74366 22.6739 8.74305 22.5663 8.74305 22.4577C8.74305 21.7616 8.76804 21.0758 8.81654 20.4028L8.52606 20.4581L2.95395 24.5444L0.615112 21.355L6.54761 17.0045L6.908 16.7402L7.34701 16.6566L9.44264 16.2575C9.50917 15.9756 9.5801 15.6978 9.65528 15.4242L8.34123 15.0944L7.69155 14.9313L7.27471 14.407L4.20739 10.5487L7.30328 8.08749L9.95376 11.4215L11.0697 11.7016C11.3115 11.2239 11.5692 10.7716 11.8412 10.3473L9.80612 8.54706L9.13883 7.95679V7.06589Z"})]}),l=o.forwardRef((e,r)=>L.jsx(s,{ref:r,...e}));export{l as SpiderIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r as s}from"./index-BChjg6Az.js";const l=a=>t.jsxs("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 118 118",...a,children:[t.jsx("path",{d:"M0 0 C3.43739487 3.53029744 4.54420068 6.10015733 5 11 C5.66 11 6.32 11 7 11 C12.90150827 20.84310604 14.16501426 30.1571562 11.80859375 41.38671875 C10.70894187 44.94066614 9.07476326 47.97130203 7.12109375 51.125 C5.84466871 53.10693813 5.84466871 53.10693813 5 56 C5.75446855 57.93537584 6.51189439 59.86976625 7.296875 61.79296875 C8.40505709 65.27142921 8.19424994 68.37400115 8 72 C5.83125748 71.49396008 4.00032373 71.00016187 2 70 C1.7328418 70.59240479 1.46568359 71.18480957 1.19042969 71.79516602 C-0.01802166 74.0333785 -1.24858328 75.49278973 -3.046875 77.27734375 C-3.645 77.87353516 -4.243125 78.46972656 -4.859375 79.08398438 C-5.79523438 80.00147461 -5.79523438 80.00147461 -6.75 80.9375 C-7.3584375 81.54529297 -7.966875 82.15308594 -8.59375 82.77929688 C-10.37463485 84.54305783 -12.18295869 86.27360819 -14 88 C-14.52142578 88.52480957 -15.04285156 89.04961914 -15.58007812 89.59033203 C-17.99943473 91.87326468 -19.51367431 92.96289613 -22.8671875 93.21875 C-27.35298192 91.47365292 -30.52675552 88.64429156 -34.125 85.5 C-35.51818635 84.29598024 -36.91645186 83.09780658 -38.3203125 81.90625 C-38.93148926 81.37322266 -39.54266602 80.84019531 -40.17236328 80.29101562 C-43.12664512 78.20415451 -45.20212388 77.87306516 -48.75 78.4375 C-49.4925 78.623125 -50.235 78.80875 -51 79 C-52.25664978 76.09399739 -53 74.20395416 -53 71 C-53.763125 71.495 -54.52625 71.99 -55.3125 72.5 C-58 74 -58 74 -61 74 C-61.02698189 72.37509046 -61.04638757 70.75005367 -61.0625 69.125 C-61.07410156 68.22007813 -61.08570312 67.31515625 -61.09765625 66.3828125 C-61 64 -61 64 -60 62 C-60.99 61.67 -61.98 61.34 -63 61 C-62.69288414 56.42503267 -62.26984635 52.62604354 -60.4375 48.375 C-58.82717113 44.49487424 -58.93115181 41.17687245 -59.0625 37 C-59.30680053 24.77275823 -56.74335323 12.72222708 -48.546875 3.3359375 C-37.01797106 -8.02506978 -12.72743656 -10.12409726 0 0 Z ",fill:"#D6CF4C",transform:"translate(82,17)"}),t.jsx("path",{d:"M0 0 C0.81498562 1.6029053 1.62689927 3.20737278 2.4375 4.8125 C3.11619141 6.15248047 3.11619141 6.15248047 3.80859375 7.51953125 C6.21743422 12.53465814 6.21674323 16.73754683 6.25 22.1875 C6.270625 23.01314453 6.29125 23.83878906 6.3125 24.68945312 C6.34922614 30.51513648 5.20948343 34.62573923 3 40 C3.19822852 43.3038087 3.91828363 45.77888512 5.0625 48.875 C6.23249378 52.77497927 6.13998031 55.94057089 6 60 C3.83125748 59.49396008 2.00032373 59.00016187 0 58 C-0.2671582 58.59240479 -0.53431641 59.18480957 -0.80957031 59.79516602 C-2.01802166 62.0333785 -3.24858328 63.49278973 -5.046875 65.27734375 C-5.645 65.87353516 -6.243125 66.46972656 -6.859375 67.08398438 C-7.79523438 68.00147461 -7.79523438 68.00147461 -8.75 68.9375 C-9.3584375 69.54529297 -9.966875 70.15308594 -10.59375 70.77929688 C-12.37463485 72.54305783 -14.18295869 74.27360819 -16 76 C-16.52142578 76.52480957 -17.04285156 77.04961914 -17.58007812 77.59033203 C-20.0012327 79.87496127 -21.50990184 80.96394373 -24.8671875 81.2109375 C-29.33219884 79.4850603 -32.52219412 76.7264878 -36.125 73.625 C-37.52308219 72.4500979 -38.92150889 71.27560561 -40.3203125 70.1015625 C-41.23707764 69.31773193 -41.23707764 69.31773193 -42.17236328 68.51806641 C-44.06825104 66.94330951 -46.01716825 65.46319309 -48 64 C-47.34 64 -46.68 64 -46 64 C-45.7525 63.278125 -45.505 62.55625 -45.25 61.8125 C-44 59 -44 59 -42 56.5625 C-39.8317046 53.78437151 -38.94096937 51.37180689 -38 48 C-37.34 48 -36.68 48 -36 48 C-36 48.66 -36 49.32 -36 50 C-32.97592912 47.23889181 -32.09977117 45.22505907 -31.76171875 41.07421875 C-31.53352767 32.23109543 -31.53352767 32.23109543 -36 25 C-36.33 24.34 -36.66 23.68 -37 23 C-36.39671875 22.96003906 -35.7934375 22.92007813 -35.171875 22.87890625 C-32.53622323 22.5345711 -30.42786961 22.0978193 -28 21 C-26.55980288 18.8683321 -25.80563519 16.79357622 -24.9296875 14.37890625 C-22.51865071 8.20948859 -18.41263483 4.92345635 -12.5625 2.0625 C-8.10840177 0.2005409 -4.78183446 -0.53131494 0 0 Z ",fill:"#B81877",transform:"translate(84,29)"}),t.jsx("path",{d:"M0 0 C0.81498562 1.6029053 1.62689927 3.20737278 2.4375 4.8125 C3.11619141 6.15248047 3.11619141 6.15248047 3.80859375 7.51953125 C6.21743422 12.53465814 6.21674323 16.73754683 6.25 22.1875 C6.270625 23.01314453 6.29125 23.83878906 6.3125 24.68945312 C6.34922614 30.51513648 5.20948343 34.62573923 3 40 C3.19822852 43.3038087 3.91828363 45.77888512 5.0625 48.875 C6.23249378 52.77497927 6.13998031 55.94057089 6 60 C2.125 59.125 2.125 59.125 1 58 C0.60430892 55.98688551 0.25747809 53.96402792 -0.0625 51.9375 C-0.23910156 50.83277344 -0.41570312 49.72804687 -0.59765625 48.58984375 C-0.73042969 47.73519531 -0.86320312 46.88054687 -1 46 C-1.66 46 -2.32 46 -3 46 C-2.979375 45.05125 -2.95875 44.1025 -2.9375 43.125 C-2.77448174 40.09333717 -2.77448174 40.09333717 -4 38 C-4.52722656 38.15984375 -5.05445312 38.3196875 -5.59765625 38.484375 C-8.57890664 39.12425313 -11.38880912 39.20770602 -14.4375 39.25 C-16.10619141 39.28867188 -16.10619141 39.28867188 -17.80859375 39.328125 C-21.36004724 38.96298168 -23.16360065 38.12729951 -26 36 C-28.49520882 32.30020761 -29.66736937 28.85373066 -29.4765625 24.34375 C-27.97502038 16.9591166 -23.99212045 9.71183601 -17.91796875 5.1796875 C-11.97832005 1.52638015 -7.02323198 -0.59772187 0 0 Z ",fill:"#192342",transform:"translate(84,29)"}),t.jsx("path",{d:"M0 0 C4.8325314 2.37067578 7.76408623 5.09818904 10 10 C10.7762251 16.84647984 10.98839331 23.18359309 7 29 C6.34 29 5.68 29 5 29 C5 28.34 5 27.68 5 27 C4.34 27 3.68 27 3 27 C2.85884766 28.31871094 2.85884766 28.31871094 2.71484375 29.6640625 C1.9322283 33.31626793 0.73647182 35.36488517 -1.4375 38.375 C-2.05496094 39.24898437 -2.67242187 40.12296875 -3.30859375 41.0234375 C-3.86675781 41.67570312 -4.42492187 42.32796875 -5 43 C-5.66 43 -6.32 43 -7 43 C-7 43.66 -7 44.32 -7 45 C-9.475 45.495 -9.475 45.495 -12 46 C-13.25664978 43.09399739 -14 41.20395416 -14 38 C-14.763125 38.495 -15.52625 38.99 -16.3125 39.5 C-19 41 -19 41 -22 41 C-22.02698189 39.37509046 -22.04638757 37.75005367 -22.0625 36.125 C-22.07410156 35.22007813 -22.08570312 34.31515625 -22.09765625 33.3828125 C-22 31 -22 31 -21 29 C-21.99 28.67 -22.98 28.34 -24 28 C-23.38029501 18.19156581 -23.38029501 18.19156581 -20 14 C-19.34 14 -18.68 14 -18 14 C-18 12.989375 -18 11.97875 -18 10.9375 C-17.33343341 6.40114402 -14.81042181 4.10520123 -11.3203125 1.328125 C-7.49529833 -0.86127705 -4.24744824 -0.98502974 0 0 Z ",fill:"#1EA6CF",transform:"translate(43,50)"}),t.jsx("path",{d:"M0 0 C4 4.31578947 4 4.31578947 4 8 C3.195625 7.67 2.39125 7.34 1.5625 7 C-5.98576918 4.8811876 -11.01209358 5.77299686 -17.9609375 9.17578125 C-20.93510569 10.37798334 -22.90532882 9.72815793 -26 9 C-31.65481291 8.55418487 -36.40219219 8.21511196 -41.5625 10.75 C-42.7690625 11.86375 -42.7690625 11.86375 -44 13 C-44.639375 13.5775 -45.27875 14.155 -45.9375 14.75 C-47.57497023 18.21758402 -46.96157446 21.4172448 -46 25 C-44.53888984 27.79897943 -44.53888984 27.79897943 -43 30 C-43 30.66 -43 31.32 -43 32 C-42.34 32.33 -41.68 32.66 -41 33 C-41.59167969 33.08636719 -42.18335937 33.17273437 -42.79296875 33.26171875 C-48.2975583 34.240512 -51.55344351 35.30015024 -55 40 C-55.92345923 42.34267025 -56.46568619 44.52272687 -57 47 C-57.66 47 -58.32 47 -59 47 C-59.64722183 31.46667611 -59.27679357 15.6234249 -48.546875 3.3359375 C-37.01797106 -8.02506978 -12.72743656 -10.12409726 0 0 Z ",fill:"#63BA50",transform:"translate(82,17)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C4.125 6.75 4.125 6.75 3 9 C3.66 9 4.32 9 5 9 C7.02512352 13.17681725 7.70408743 16.38431573 7 21 C4.97381193 23.98805825 2.54369132 26.450976 0 29 C-0.825 29.99 -1.65 30.98 -2.5 32 C-5.78938167 34.63150533 -7.89283747 34.15353879 -12 34 C-12.02505615 33.38592285 -12.0501123 32.7718457 -12.07592773 32.13916016 C-12.19345264 29.30097366 -12.31545526 26.4629956 -12.4375 23.625 C-12.47681641 22.65949219 -12.51613281 21.69398437 -12.55664062 20.69921875 C-12.82980822 14.43737688 -13.30323128 8.22902691 -14 2 C-13.15695313 1.93941406 -12.31390625 1.87882812 -11.4453125 1.81640625 C-10.34960938 1.73261719 -9.25390625 1.64882812 -8.125 1.5625 C-7.03445312 1.48128906 -5.94390625 1.40007812 -4.8203125 1.31640625 C-2.05271029 1.16998297 -2.05271029 1.16998297 0 0 Z ",fill:"#EACD35",transform:"translate(78,66)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C4.3 3.35 7.6 1.7 11 0 C11.33 1.98 11.66 3.96 12 6 C14.38564077 5.42415568 16.66682784 4.77772405 19 4 C20.31626692 7.61973402 21 10.09567131 21 14 C21.66 14.33 22.32 14.66 23 15 C21.7260411 17.03833424 20.38938077 19.03852126 19 21 C18.34 21 17.68 21 17 21 C17 21.66 17 22.32 17 23 C15.35 23.33 13.7 23.66 12 24 C10.74335022 21.09399739 10 19.20395416 10 16 C9.236875 16.495 8.47375 16.99 7.6875 17.5 C5 19 5 19 2 19 C1.97301811 17.37509046 1.95361243 15.75005367 1.9375 14.125 C1.92589844 13.22007813 1.91429688 12.31515625 1.90234375 11.3828125 C2 9 2 9 3 7 C2.01 6.67 1.02 6.34 0 6 C0 4.02 0 2.04 0 0 Z ",fill:"#1F4A8C",transform:"translate(19,72)"}),t.jsx("path",{d:"M0 0 C0.96744141 -0.01611328 1.93488281 -0.03222656 2.93164062 -0.04882812 C8.33082764 -0.05252367 12.31240995 0.19113381 16.9375 3.3125 C17.4325 4.3025 17.4325 4.3025 17.9375 5.3125 C17.17566406 5.26609375 16.41382813 5.2196875 15.62890625 5.171875 C9.06785136 4.94252477 4.70499033 5.524537 -1.12890625 8.48828125 C-4.03103114 9.72534863 -6.02811833 9.02647216 -9.0625 8.3125 C-17.19553015 7.48591259 -17.19553015 7.48591259 -24.625 10.1875 C-25.429375 10.88875 -26.23375 11.59 -27.0625 12.3125 C-28.0525 12.9725 -29.0425 13.6325 -30.0625 14.3125 C-27.79030304 8.73528927 -23.36231107 4.96240554 -18.0625 2.3125 C-12.00860544 0.14869012 -6.39489827 -0.02138762 0 0 Z ",fill:"#4D619A",transform:"translate(65.0625,17.6875)"}),t.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C2.54591121 4.74339115 2.75830191 6.86468923 0.6171875 10.0703125 C-1.18733496 12.12481209 -3.06881924 14.06477065 -5 16 C-5.825 16.99 -6.65 17.98 -7.5 19 C-10.7807952 21.62463616 -12.9090117 21.40107728 -17 21 C-17 16.71 -17 12.42 -17 8 C-15.63875 7.896875 -14.2775 7.79375 -12.875 7.6875 C-8.70279004 7.21443052 -5.56128172 6.34523431 -2 4 C-0.59533047 1.94906855 -0.59533047 1.94906855 0 0 Z ",fill:"#E6622C",transform:"translate(83,79)"}),t.jsx("path",{d:"M0 0 C5.89469527 9.83174266 7.18180743 19.160854 4.8046875 30.37890625 C3.50999034 34.59609942 1.59215521 38.4274784 -1 42 C-1.99 42.495 -1.99 42.495 -3 43 C-2.7834375 42.49855469 -2.566875 41.99710938 -2.34375 41.48046875 C1.20607508 31.83349041 2.41912837 18.13436232 -1.9375 8.5625 C-2.29714844 7.94503906 -2.65679687 7.32757813 -3.02734375 6.69140625 C-4.10211735 4.82242244 -4.56122607 3.10149618 -5 1 C-12.68636026 2.35225523 -12.68636026 2.35225523 -20 5 C-20 4.34 -20 3.68 -20 3 C-13.45841601 -0.65111665 -7.36120371 -0.29887594 0 0 Z ",fill:"#A7A6A4",transform:"translate(89,28)"}),t.jsx("path",{d:"M0 0 C0.8971875 0.495 0.8971875 0.495 1.8125 1 C4.05386471 2.20787988 4.05386471 2.20787988 7 2 C7.66 1.67 8.32 1.34 9 1 C10.5 2.25 10.5 2.25 12 4 C12 5.32 12 6.64 12 8 C13.98 7.67 15.96 7.34 18 7 C17.34 8.32 16.68 9.64 16 11 C15.34 11 14.68 11 14 11 C14 10.34 14 9.68 14 9 C13.34 9 12.68 9 12 9 C11.87625 9.928125 11.7525 10.85625 11.625 11.8125 C11 15 11 15 9 18 C8.01 18 7.02 18 6 18 C5.01 15.03 4.02 12.06 3 9 C2.01 9.66 1.02 10.32 0 11 C-2.1875 10.625 -2.1875 10.625 -4 10 C-4.25 6.6875 -4.25 6.6875 -4 3 C-2 1.0625 -2 1.0625 0 0 Z ",fill:"#2774BA",transform:"translate(34,68)"}),t.jsx("path",{d:"M0 0 C0 0.99 0 1.98 0 3 C-0.70125 3.03738281 -1.4025 3.07476563 -2.125 3.11328125 C-6.89147838 3.44356712 -10.95037927 3.77966704 -15.3125 5.8125 C-16.529375 6.204375 -17.74625 6.59625 -19 7 C-22.5 5.1875 -22.5 5.1875 -25 3 C-24.67 2.01 -24.34 1.02 -24 0 C-15.51939583 -4.08886272 -8.386863 -4.28265345 0 0 Z ",fill:"#EA5934",transform:"translate(87,25)"}),t.jsx("path",{d:"M0 0 C1.0725 -0.01417969 2.145 -0.02835938 3.25 -0.04296875 C6 0.1875 6 0.1875 8 2.1875 C5.69 2.5175 3.38 2.8475 1 3.1875 C1.66 4.8375 2.32 6.4875 3 8.1875 C2.030625 8.001875 1.06125 7.81625 0.0625 7.625 C-0.948125 7.480625 -1.95875 7.33625 -3 7.1875 C-4.29633621 8.25395115 -4.29633621 8.25395115 -4.0625 10.75 C-4.041875 11.554375 -4.02125 12.35875 -4 13.1875 C-0.41672247 14.18967064 -0.41672247 14.18967064 3 13.1875 C2.67 14.1775 2.34 15.1675 2 16.1875 C-3.37313433 17.50093284 -3.37313433 17.50093284 -5.875 16.25 C-7.67836628 12.94382849 -7.18323695 9.91331793 -7 6.1875 C-9.64 7.8375 -12.28 9.4875 -15 11.1875 C-14.84817368 8.53053932 -14.52675976 6.74515476 -12.66796875 4.77734375 C-8.15385945 1.01009439 -5.79544929 0.03482842 0 0 Z ",fill:"#EEDF4B",transform:"translate(50,24.8125)"}),t.jsx("path",{d:"M0 0 C0.70253906 0.14308594 1.40507813 0.28617188 2.12890625 0.43359375 C4.04732904 0.81205811 5.97237089 1.15835381 7.90234375 1.47265625 C13.55141693 2.57048128 17.2289345 3.43112036 20.75 8.1875 C21.53390986 9.43770106 22.29727619 10.70242665 23 12 C20 13 20 13 16.6015625 11.5234375 C15.27036372 10.81790215 13.94500705 10.10125871 12.625 9.375 C11.965 9.03082031 11.305 8.68664063 10.625 8.33203125 C6.37639529 6.03846177 3.24765018 3.57366911 0 0 Z ",fill:"#0C1222",transform:"translate(59,52)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C5.66161816 6.61897168 6.3306901 10.82711812 6 17 C2.125 16.125 2.125 16.125 1 15 C0.60430892 12.98688551 0.25747809 10.96402792 -0.0625 8.9375 C-0.23910156 7.83277344 -0.41570312 6.72804688 -0.59765625 5.58984375 C-0.73042969 4.73519531 -0.86320312 3.88054687 -1 3 C-1.66 3 -2.32 3 -3 3 C-2 1 -2 1 0 0 Z ",fill:"#339A40",transform:"translate(84,72)"}),t.jsx("path",{d:"M0 0 C0.8971875 0.495 0.8971875 0.495 1.8125 1 C4.05386471 2.20787988 4.05386471 2.20787988 7 2 C7.66 1.67 8.32 1.34 9 1 C7.95125002 3.62187494 7.35068687 4.79371361 4.875 6.25 C4.25625 6.4975 3.6375 6.745 3 7 C3 7.66 3 8.32 3 9 C0 11 0 11 -2.1875 10.625 C-2.785625 10.41875 -3.38375 10.2125 -4 10 C-4.25 6.6875 -4.25 6.6875 -4 3 C-2 1.0625 -2 1.0625 0 0 Z ",fill:"#2381C4",transform:"translate(34,68)"}),t.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C2.56963205 4.90604833 2.73522899 6.91600854 0.4765625 10.24609375 C-1.28122373 12.25857962 -3.03661153 14.18727923 -5 16 C-5.33 16 -5.66 16 -6 16 C-6 12.7 -6 9.4 -6 6 C-4.68 5.34 -3.36 4.68 -2 4 C-0.73195434 1.9664052 -0.73195434 1.9664052 0 0 Z ",fill:"#DB8E22",transform:"translate(83,79)"}),t.jsx("path",{d:"M0 0 C0.336611 1.77021322 0.66917293 3.54119674 1 5.3125 C1.185625 6.29863281 1.37125 7.28476562 1.5625 8.30078125 C2 11 2 11 2 14 C1.34 13.67 0.68 13.34 0 13 C0 15.64 0 18.28 0 21 C-0.33 21 -0.66 21 -1 21 C-1.01417969 20.3709375 -1.02835938 19.741875 -1.04296875 19.09375 C-1.41572683 12.40425361 -3.10211236 8.37276404 -7 3 C-7.33 2.34 -7.66 1.68 -8 1 C-1.125 0 -1.125 0 0 0 Z ",fill:"#DB216C",transform:"translate(55,51)"}),t.jsx("path",{d:"M0 0 C4.55555556 0.55555556 4.55555556 0.55555556 6 2 C6.1875 4.4375 6.1875 4.4375 6 7 C5.34 7.66 4.68 8.32 4 9 C-0.55555556 8.44444444 -0.55555556 8.44444444 -2 7 C-2.1875 4.5625 -2.1875 4.5625 -2 2 C-1.34 1.34 -0.68 0.68 0 0 Z ",fill:"#0D0C1F",transform:"translate(47,31)"}),t.jsx("path",{d:"M0 0 C2.109375 4.7109375 2.109375 4.7109375 1.125 7.3125 C0.568125 8.1478125 0.568125 8.1478125 0 9 C-0.66 9 -1.32 9 -2 9 C-5 3.25 -5 3.25 -5 1 C-12.68636026 2.35225523 -12.68636026 2.35225523 -20 5 C-20 4.34 -20 3.68 -20 3 C-13.45841601 -0.65111665 -7.36120371 -0.29887594 0 0 Z ",fill:"#CCBFBC",transform:"translate(89,28)"}),t.jsx("path",{d:"M0 0 C0.66 1.32 1.32 2.64 2 4 C1.030625 3.814375 0.06125 3.62875 -0.9375 3.4375 C-1.948125 3.293125 -2.95875 3.14875 -4 3 C-5.29633621 4.06645115 -5.29633621 4.06645115 -5.0625 6.5625 C-5.041875 7.366875 -5.02125 8.17125 -5 9 C-1.41672247 10.00217064 -1.41672247 10.00217064 2 9 C1.67 9.99 1.34 10.98 1 12 C-4.4 13.32 -4.4 13.32 -6.875 12 C-8.61178961 8.91237402 -8.37142345 6.4666189 -8 3 C-5.91685466 -0.39881608 -3.78885018 -0.30720407 0 0 Z ",fill:"#FAF9ED",transform:"translate(51,29)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 7.26 1 14.52 1 22 C2.98 22 4.96 22 7 22 C3.375 26.875 3.375 26.875 0 28 C0 18.76 0 9.52 0 0 Z ",fill:"#BF2563",transform:"translate(65,78)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C4.36884358 5.51718381 3.47075246 8.58774263 2 13 C1.67 13 1.34 13 1 13 C0.34 9.7 -0.32 6.4 -1 3 C-1.66 3 -2.32 3 -3 3 C-2 1 -2 1 0 0 Z ",fill:"#38A549",transform:"translate(84,72)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C2.01 1.495 2.01 1.495 1 2 C1.66 2.66 2.32 3.32 3 4 C1.783125 4.4125 0.56625 4.825 -0.6875 5.25 C-4.36735474 6.6160562 -7.06918364 8.34394768 -10 11 C-7.99155908 6.07019047 -4.35894926 2.90596617 0 0 Z ",fill:"#475E88",transform:"translate(45,21)"}),t.jsx("path",{d:"M0 0 C3.35435922 1.38801071 5.11290303 2.88629 7 6 C7 6.99 7 7.98 7 9 C3.58841744 7.86280581 2.88145399 6.95657056 1 4 C1 3.34 1 2.68 1 2 C0.34 1.67 -0.32 1.34 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z ",fill:"#6AA83B",transform:"translate(79,16)"}),t.jsx("path",{d:"M0 0 C0 1.65 0 3.3 0 5 C-1.98 5.99 -1.98 5.99 -4 7 C-5.32 5.02 -6.64 3.04 -8 1 C-1.125 0 -1.125 0 0 0 Z ",fill:"#C01F60",transform:"translate(55,51)"}),t.jsx("path",{d:"M0 0 C2.125 0.375 2.125 0.375 4 1 C3.01 1.33 2.02 1.66 1 2 C1 3.32 1 4.64 1 6 C2.32 6.66 3.64 7.32 5 8 C3.1875 8.625 3.1875 8.625 1 9 C0.01 8.34 -0.98 7.68 -2 7 C-2.3125 4.5 -2.3125 4.5 -2 2 C-1.34 1.34 -0.68 0.68 0 0 Z ",fill:"#793CA7",transform:"translate(47,31)"}),t.jsx("path",{d:"M0 0 C1.98 0 3.96 0 6 0 C4.71937515 1.7074998 3.38232443 3.37373596 2 5 C1.34 5 0.68 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#C6342C",transform:"translate(66,100)"}),t.jsx("path",{d:"M0 0 C0.99 0 1.98 0 3 0 C3 0.99 3 1.98 3 3 C0.5 4.6875 0.5 4.6875 -2 6 C-1.125 1.125 -1.125 1.125 0 0 Z ",fill:"#F4E23F",transform:"translate(37,30)"}),t.jsx("path",{d:"M0 0 C0.33 1.32 0.66 2.64 1 4 C-1 5 -3 6 -5 7 C-5 5.68 -5 4.36 -5 3 C-2.5 1.25 -2.5 1.25 0 0 Z ",fill:"#1D5A9D",transform:"translate(29,72)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 4.29 1 8.58 1 13 C0.67 13 0.34 13 0 13 C0 8.71 0 4.42 0 0 Z ",fill:"#80E180",transform:"translate(21,47)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.98 1 3.96 1 6 C0.67 6 0.34 6 0 6 C0 4.02 0 2.04 0 0 Z ",fill:"#E9E9E9",transform:"translate(95,39)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#80CC80",transform:"translate(91,83)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#197F99",transform:"translate(19,82)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#1980B2",transform:"translate(17,73)"}),t.jsx("path",{d:"M0 0 C4 1 4 1 4 1 Z ",fill:"#9FBF60",transform:"translate(69,10)"}),t.jsx("path",{d:"M0 0 C4 1 4 1 4 1 Z ",fill:"#80FF80",transform:"translate(52,10)"}),t.jsx("path",{d:"",fill:"#2A6AAA",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80AA80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#1C637F",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#AAAAAA",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80D480",transform:"translate(0,0)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#400040",transform:"translate(60,111)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#7F407F",transform:"translate(44,101)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#008080",transform:"translate(32,97)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004080",transform:"translate(34,96)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004040",transform:"translate(36,95)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004080",transform:"translate(22,92)"}),t.jsx("path",{d:"",fill:"#406080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#40BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#609F60",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#40BFFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#407FFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#009595",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFFFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80BF40",transform:"translate(42,13)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#BFFF40",transform:"translate(45,12)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80BF80",transform:"translate(74,11)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80FF80",transform:"translate(48,11)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF00FF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#804080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF0000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFAA55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#000080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFAA00",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#55AA55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#AAAA00",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#499224",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#804080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF8040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"})]}),n=s.forwardRef((a,r)=>t.jsx(l,{ref:r,...a}));export{n as MaritalkIcon};
|
|
1
|
+
import{j as t,r as s}from"./index-BpxbUiZD.js";const l=a=>t.jsxs("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 118 118",...a,children:[t.jsx("path",{d:"M0 0 C3.43739487 3.53029744 4.54420068 6.10015733 5 11 C5.66 11 6.32 11 7 11 C12.90150827 20.84310604 14.16501426 30.1571562 11.80859375 41.38671875 C10.70894187 44.94066614 9.07476326 47.97130203 7.12109375 51.125 C5.84466871 53.10693813 5.84466871 53.10693813 5 56 C5.75446855 57.93537584 6.51189439 59.86976625 7.296875 61.79296875 C8.40505709 65.27142921 8.19424994 68.37400115 8 72 C5.83125748 71.49396008 4.00032373 71.00016187 2 70 C1.7328418 70.59240479 1.46568359 71.18480957 1.19042969 71.79516602 C-0.01802166 74.0333785 -1.24858328 75.49278973 -3.046875 77.27734375 C-3.645 77.87353516 -4.243125 78.46972656 -4.859375 79.08398438 C-5.79523438 80.00147461 -5.79523438 80.00147461 -6.75 80.9375 C-7.3584375 81.54529297 -7.966875 82.15308594 -8.59375 82.77929688 C-10.37463485 84.54305783 -12.18295869 86.27360819 -14 88 C-14.52142578 88.52480957 -15.04285156 89.04961914 -15.58007812 89.59033203 C-17.99943473 91.87326468 -19.51367431 92.96289613 -22.8671875 93.21875 C-27.35298192 91.47365292 -30.52675552 88.64429156 -34.125 85.5 C-35.51818635 84.29598024 -36.91645186 83.09780658 -38.3203125 81.90625 C-38.93148926 81.37322266 -39.54266602 80.84019531 -40.17236328 80.29101562 C-43.12664512 78.20415451 -45.20212388 77.87306516 -48.75 78.4375 C-49.4925 78.623125 -50.235 78.80875 -51 79 C-52.25664978 76.09399739 -53 74.20395416 -53 71 C-53.763125 71.495 -54.52625 71.99 -55.3125 72.5 C-58 74 -58 74 -61 74 C-61.02698189 72.37509046 -61.04638757 70.75005367 -61.0625 69.125 C-61.07410156 68.22007813 -61.08570312 67.31515625 -61.09765625 66.3828125 C-61 64 -61 64 -60 62 C-60.99 61.67 -61.98 61.34 -63 61 C-62.69288414 56.42503267 -62.26984635 52.62604354 -60.4375 48.375 C-58.82717113 44.49487424 -58.93115181 41.17687245 -59.0625 37 C-59.30680053 24.77275823 -56.74335323 12.72222708 -48.546875 3.3359375 C-37.01797106 -8.02506978 -12.72743656 -10.12409726 0 0 Z ",fill:"#D6CF4C",transform:"translate(82,17)"}),t.jsx("path",{d:"M0 0 C0.81498562 1.6029053 1.62689927 3.20737278 2.4375 4.8125 C3.11619141 6.15248047 3.11619141 6.15248047 3.80859375 7.51953125 C6.21743422 12.53465814 6.21674323 16.73754683 6.25 22.1875 C6.270625 23.01314453 6.29125 23.83878906 6.3125 24.68945312 C6.34922614 30.51513648 5.20948343 34.62573923 3 40 C3.19822852 43.3038087 3.91828363 45.77888512 5.0625 48.875 C6.23249378 52.77497927 6.13998031 55.94057089 6 60 C3.83125748 59.49396008 2.00032373 59.00016187 0 58 C-0.2671582 58.59240479 -0.53431641 59.18480957 -0.80957031 59.79516602 C-2.01802166 62.0333785 -3.24858328 63.49278973 -5.046875 65.27734375 C-5.645 65.87353516 -6.243125 66.46972656 -6.859375 67.08398438 C-7.79523438 68.00147461 -7.79523438 68.00147461 -8.75 68.9375 C-9.3584375 69.54529297 -9.966875 70.15308594 -10.59375 70.77929688 C-12.37463485 72.54305783 -14.18295869 74.27360819 -16 76 C-16.52142578 76.52480957 -17.04285156 77.04961914 -17.58007812 77.59033203 C-20.0012327 79.87496127 -21.50990184 80.96394373 -24.8671875 81.2109375 C-29.33219884 79.4850603 -32.52219412 76.7264878 -36.125 73.625 C-37.52308219 72.4500979 -38.92150889 71.27560561 -40.3203125 70.1015625 C-41.23707764 69.31773193 -41.23707764 69.31773193 -42.17236328 68.51806641 C-44.06825104 66.94330951 -46.01716825 65.46319309 -48 64 C-47.34 64 -46.68 64 -46 64 C-45.7525 63.278125 -45.505 62.55625 -45.25 61.8125 C-44 59 -44 59 -42 56.5625 C-39.8317046 53.78437151 -38.94096937 51.37180689 -38 48 C-37.34 48 -36.68 48 -36 48 C-36 48.66 -36 49.32 -36 50 C-32.97592912 47.23889181 -32.09977117 45.22505907 -31.76171875 41.07421875 C-31.53352767 32.23109543 -31.53352767 32.23109543 -36 25 C-36.33 24.34 -36.66 23.68 -37 23 C-36.39671875 22.96003906 -35.7934375 22.92007813 -35.171875 22.87890625 C-32.53622323 22.5345711 -30.42786961 22.0978193 -28 21 C-26.55980288 18.8683321 -25.80563519 16.79357622 -24.9296875 14.37890625 C-22.51865071 8.20948859 -18.41263483 4.92345635 -12.5625 2.0625 C-8.10840177 0.2005409 -4.78183446 -0.53131494 0 0 Z ",fill:"#B81877",transform:"translate(84,29)"}),t.jsx("path",{d:"M0 0 C0.81498562 1.6029053 1.62689927 3.20737278 2.4375 4.8125 C3.11619141 6.15248047 3.11619141 6.15248047 3.80859375 7.51953125 C6.21743422 12.53465814 6.21674323 16.73754683 6.25 22.1875 C6.270625 23.01314453 6.29125 23.83878906 6.3125 24.68945312 C6.34922614 30.51513648 5.20948343 34.62573923 3 40 C3.19822852 43.3038087 3.91828363 45.77888512 5.0625 48.875 C6.23249378 52.77497927 6.13998031 55.94057089 6 60 C2.125 59.125 2.125 59.125 1 58 C0.60430892 55.98688551 0.25747809 53.96402792 -0.0625 51.9375 C-0.23910156 50.83277344 -0.41570312 49.72804687 -0.59765625 48.58984375 C-0.73042969 47.73519531 -0.86320312 46.88054687 -1 46 C-1.66 46 -2.32 46 -3 46 C-2.979375 45.05125 -2.95875 44.1025 -2.9375 43.125 C-2.77448174 40.09333717 -2.77448174 40.09333717 -4 38 C-4.52722656 38.15984375 -5.05445312 38.3196875 -5.59765625 38.484375 C-8.57890664 39.12425313 -11.38880912 39.20770602 -14.4375 39.25 C-16.10619141 39.28867188 -16.10619141 39.28867188 -17.80859375 39.328125 C-21.36004724 38.96298168 -23.16360065 38.12729951 -26 36 C-28.49520882 32.30020761 -29.66736937 28.85373066 -29.4765625 24.34375 C-27.97502038 16.9591166 -23.99212045 9.71183601 -17.91796875 5.1796875 C-11.97832005 1.52638015 -7.02323198 -0.59772187 0 0 Z ",fill:"#192342",transform:"translate(84,29)"}),t.jsx("path",{d:"M0 0 C4.8325314 2.37067578 7.76408623 5.09818904 10 10 C10.7762251 16.84647984 10.98839331 23.18359309 7 29 C6.34 29 5.68 29 5 29 C5 28.34 5 27.68 5 27 C4.34 27 3.68 27 3 27 C2.85884766 28.31871094 2.85884766 28.31871094 2.71484375 29.6640625 C1.9322283 33.31626793 0.73647182 35.36488517 -1.4375 38.375 C-2.05496094 39.24898437 -2.67242187 40.12296875 -3.30859375 41.0234375 C-3.86675781 41.67570312 -4.42492187 42.32796875 -5 43 C-5.66 43 -6.32 43 -7 43 C-7 43.66 -7 44.32 -7 45 C-9.475 45.495 -9.475 45.495 -12 46 C-13.25664978 43.09399739 -14 41.20395416 -14 38 C-14.763125 38.495 -15.52625 38.99 -16.3125 39.5 C-19 41 -19 41 -22 41 C-22.02698189 39.37509046 -22.04638757 37.75005367 -22.0625 36.125 C-22.07410156 35.22007813 -22.08570312 34.31515625 -22.09765625 33.3828125 C-22 31 -22 31 -21 29 C-21.99 28.67 -22.98 28.34 -24 28 C-23.38029501 18.19156581 -23.38029501 18.19156581 -20 14 C-19.34 14 -18.68 14 -18 14 C-18 12.989375 -18 11.97875 -18 10.9375 C-17.33343341 6.40114402 -14.81042181 4.10520123 -11.3203125 1.328125 C-7.49529833 -0.86127705 -4.24744824 -0.98502974 0 0 Z ",fill:"#1EA6CF",transform:"translate(43,50)"}),t.jsx("path",{d:"M0 0 C4 4.31578947 4 4.31578947 4 8 C3.195625 7.67 2.39125 7.34 1.5625 7 C-5.98576918 4.8811876 -11.01209358 5.77299686 -17.9609375 9.17578125 C-20.93510569 10.37798334 -22.90532882 9.72815793 -26 9 C-31.65481291 8.55418487 -36.40219219 8.21511196 -41.5625 10.75 C-42.7690625 11.86375 -42.7690625 11.86375 -44 13 C-44.639375 13.5775 -45.27875 14.155 -45.9375 14.75 C-47.57497023 18.21758402 -46.96157446 21.4172448 -46 25 C-44.53888984 27.79897943 -44.53888984 27.79897943 -43 30 C-43 30.66 -43 31.32 -43 32 C-42.34 32.33 -41.68 32.66 -41 33 C-41.59167969 33.08636719 -42.18335937 33.17273437 -42.79296875 33.26171875 C-48.2975583 34.240512 -51.55344351 35.30015024 -55 40 C-55.92345923 42.34267025 -56.46568619 44.52272687 -57 47 C-57.66 47 -58.32 47 -59 47 C-59.64722183 31.46667611 -59.27679357 15.6234249 -48.546875 3.3359375 C-37.01797106 -8.02506978 -12.72743656 -10.12409726 0 0 Z ",fill:"#63BA50",transform:"translate(82,17)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C4.125 6.75 4.125 6.75 3 9 C3.66 9 4.32 9 5 9 C7.02512352 13.17681725 7.70408743 16.38431573 7 21 C4.97381193 23.98805825 2.54369132 26.450976 0 29 C-0.825 29.99 -1.65 30.98 -2.5 32 C-5.78938167 34.63150533 -7.89283747 34.15353879 -12 34 C-12.02505615 33.38592285 -12.0501123 32.7718457 -12.07592773 32.13916016 C-12.19345264 29.30097366 -12.31545526 26.4629956 -12.4375 23.625 C-12.47681641 22.65949219 -12.51613281 21.69398437 -12.55664062 20.69921875 C-12.82980822 14.43737688 -13.30323128 8.22902691 -14 2 C-13.15695313 1.93941406 -12.31390625 1.87882812 -11.4453125 1.81640625 C-10.34960938 1.73261719 -9.25390625 1.64882812 -8.125 1.5625 C-7.03445312 1.48128906 -5.94390625 1.40007812 -4.8203125 1.31640625 C-2.05271029 1.16998297 -2.05271029 1.16998297 0 0 Z ",fill:"#EACD35",transform:"translate(78,66)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C4.3 3.35 7.6 1.7 11 0 C11.33 1.98 11.66 3.96 12 6 C14.38564077 5.42415568 16.66682784 4.77772405 19 4 C20.31626692 7.61973402 21 10.09567131 21 14 C21.66 14.33 22.32 14.66 23 15 C21.7260411 17.03833424 20.38938077 19.03852126 19 21 C18.34 21 17.68 21 17 21 C17 21.66 17 22.32 17 23 C15.35 23.33 13.7 23.66 12 24 C10.74335022 21.09399739 10 19.20395416 10 16 C9.236875 16.495 8.47375 16.99 7.6875 17.5 C5 19 5 19 2 19 C1.97301811 17.37509046 1.95361243 15.75005367 1.9375 14.125 C1.92589844 13.22007813 1.91429688 12.31515625 1.90234375 11.3828125 C2 9 2 9 3 7 C2.01 6.67 1.02 6.34 0 6 C0 4.02 0 2.04 0 0 Z ",fill:"#1F4A8C",transform:"translate(19,72)"}),t.jsx("path",{d:"M0 0 C0.96744141 -0.01611328 1.93488281 -0.03222656 2.93164062 -0.04882812 C8.33082764 -0.05252367 12.31240995 0.19113381 16.9375 3.3125 C17.4325 4.3025 17.4325 4.3025 17.9375 5.3125 C17.17566406 5.26609375 16.41382813 5.2196875 15.62890625 5.171875 C9.06785136 4.94252477 4.70499033 5.524537 -1.12890625 8.48828125 C-4.03103114 9.72534863 -6.02811833 9.02647216 -9.0625 8.3125 C-17.19553015 7.48591259 -17.19553015 7.48591259 -24.625 10.1875 C-25.429375 10.88875 -26.23375 11.59 -27.0625 12.3125 C-28.0525 12.9725 -29.0425 13.6325 -30.0625 14.3125 C-27.79030304 8.73528927 -23.36231107 4.96240554 -18.0625 2.3125 C-12.00860544 0.14869012 -6.39489827 -0.02138762 0 0 Z ",fill:"#4D619A",transform:"translate(65.0625,17.6875)"}),t.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C2.54591121 4.74339115 2.75830191 6.86468923 0.6171875 10.0703125 C-1.18733496 12.12481209 -3.06881924 14.06477065 -5 16 C-5.825 16.99 -6.65 17.98 -7.5 19 C-10.7807952 21.62463616 -12.9090117 21.40107728 -17 21 C-17 16.71 -17 12.42 -17 8 C-15.63875 7.896875 -14.2775 7.79375 -12.875 7.6875 C-8.70279004 7.21443052 -5.56128172 6.34523431 -2 4 C-0.59533047 1.94906855 -0.59533047 1.94906855 0 0 Z ",fill:"#E6622C",transform:"translate(83,79)"}),t.jsx("path",{d:"M0 0 C5.89469527 9.83174266 7.18180743 19.160854 4.8046875 30.37890625 C3.50999034 34.59609942 1.59215521 38.4274784 -1 42 C-1.99 42.495 -1.99 42.495 -3 43 C-2.7834375 42.49855469 -2.566875 41.99710938 -2.34375 41.48046875 C1.20607508 31.83349041 2.41912837 18.13436232 -1.9375 8.5625 C-2.29714844 7.94503906 -2.65679687 7.32757813 -3.02734375 6.69140625 C-4.10211735 4.82242244 -4.56122607 3.10149618 -5 1 C-12.68636026 2.35225523 -12.68636026 2.35225523 -20 5 C-20 4.34 -20 3.68 -20 3 C-13.45841601 -0.65111665 -7.36120371 -0.29887594 0 0 Z ",fill:"#A7A6A4",transform:"translate(89,28)"}),t.jsx("path",{d:"M0 0 C0.8971875 0.495 0.8971875 0.495 1.8125 1 C4.05386471 2.20787988 4.05386471 2.20787988 7 2 C7.66 1.67 8.32 1.34 9 1 C10.5 2.25 10.5 2.25 12 4 C12 5.32 12 6.64 12 8 C13.98 7.67 15.96 7.34 18 7 C17.34 8.32 16.68 9.64 16 11 C15.34 11 14.68 11 14 11 C14 10.34 14 9.68 14 9 C13.34 9 12.68 9 12 9 C11.87625 9.928125 11.7525 10.85625 11.625 11.8125 C11 15 11 15 9 18 C8.01 18 7.02 18 6 18 C5.01 15.03 4.02 12.06 3 9 C2.01 9.66 1.02 10.32 0 11 C-2.1875 10.625 -2.1875 10.625 -4 10 C-4.25 6.6875 -4.25 6.6875 -4 3 C-2 1.0625 -2 1.0625 0 0 Z ",fill:"#2774BA",transform:"translate(34,68)"}),t.jsx("path",{d:"M0 0 C0 0.99 0 1.98 0 3 C-0.70125 3.03738281 -1.4025 3.07476563 -2.125 3.11328125 C-6.89147838 3.44356712 -10.95037927 3.77966704 -15.3125 5.8125 C-16.529375 6.204375 -17.74625 6.59625 -19 7 C-22.5 5.1875 -22.5 5.1875 -25 3 C-24.67 2.01 -24.34 1.02 -24 0 C-15.51939583 -4.08886272 -8.386863 -4.28265345 0 0 Z ",fill:"#EA5934",transform:"translate(87,25)"}),t.jsx("path",{d:"M0 0 C1.0725 -0.01417969 2.145 -0.02835938 3.25 -0.04296875 C6 0.1875 6 0.1875 8 2.1875 C5.69 2.5175 3.38 2.8475 1 3.1875 C1.66 4.8375 2.32 6.4875 3 8.1875 C2.030625 8.001875 1.06125 7.81625 0.0625 7.625 C-0.948125 7.480625 -1.95875 7.33625 -3 7.1875 C-4.29633621 8.25395115 -4.29633621 8.25395115 -4.0625 10.75 C-4.041875 11.554375 -4.02125 12.35875 -4 13.1875 C-0.41672247 14.18967064 -0.41672247 14.18967064 3 13.1875 C2.67 14.1775 2.34 15.1675 2 16.1875 C-3.37313433 17.50093284 -3.37313433 17.50093284 -5.875 16.25 C-7.67836628 12.94382849 -7.18323695 9.91331793 -7 6.1875 C-9.64 7.8375 -12.28 9.4875 -15 11.1875 C-14.84817368 8.53053932 -14.52675976 6.74515476 -12.66796875 4.77734375 C-8.15385945 1.01009439 -5.79544929 0.03482842 0 0 Z ",fill:"#EEDF4B",transform:"translate(50,24.8125)"}),t.jsx("path",{d:"M0 0 C0.70253906 0.14308594 1.40507813 0.28617188 2.12890625 0.43359375 C4.04732904 0.81205811 5.97237089 1.15835381 7.90234375 1.47265625 C13.55141693 2.57048128 17.2289345 3.43112036 20.75 8.1875 C21.53390986 9.43770106 22.29727619 10.70242665 23 12 C20 13 20 13 16.6015625 11.5234375 C15.27036372 10.81790215 13.94500705 10.10125871 12.625 9.375 C11.965 9.03082031 11.305 8.68664063 10.625 8.33203125 C6.37639529 6.03846177 3.24765018 3.57366911 0 0 Z ",fill:"#0C1222",transform:"translate(59,52)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C5.66161816 6.61897168 6.3306901 10.82711812 6 17 C2.125 16.125 2.125 16.125 1 15 C0.60430892 12.98688551 0.25747809 10.96402792 -0.0625 8.9375 C-0.23910156 7.83277344 -0.41570312 6.72804688 -0.59765625 5.58984375 C-0.73042969 4.73519531 -0.86320312 3.88054687 -1 3 C-1.66 3 -2.32 3 -3 3 C-2 1 -2 1 0 0 Z ",fill:"#339A40",transform:"translate(84,72)"}),t.jsx("path",{d:"M0 0 C0.8971875 0.495 0.8971875 0.495 1.8125 1 C4.05386471 2.20787988 4.05386471 2.20787988 7 2 C7.66 1.67 8.32 1.34 9 1 C7.95125002 3.62187494 7.35068687 4.79371361 4.875 6.25 C4.25625 6.4975 3.6375 6.745 3 7 C3 7.66 3 8.32 3 9 C0 11 0 11 -2.1875 10.625 C-2.785625 10.41875 -3.38375 10.2125 -4 10 C-4.25 6.6875 -4.25 6.6875 -4 3 C-2 1.0625 -2 1.0625 0 0 Z ",fill:"#2381C4",transform:"translate(34,68)"}),t.jsx("path",{d:"M0 0 C0.66 0.33 1.32 0.66 2 1 C2.56963205 4.90604833 2.73522899 6.91600854 0.4765625 10.24609375 C-1.28122373 12.25857962 -3.03661153 14.18727923 -5 16 C-5.33 16 -5.66 16 -6 16 C-6 12.7 -6 9.4 -6 6 C-4.68 5.34 -3.36 4.68 -2 4 C-0.73195434 1.9664052 -0.73195434 1.9664052 0 0 Z ",fill:"#DB8E22",transform:"translate(83,79)"}),t.jsx("path",{d:"M0 0 C0.336611 1.77021322 0.66917293 3.54119674 1 5.3125 C1.185625 6.29863281 1.37125 7.28476562 1.5625 8.30078125 C2 11 2 11 2 14 C1.34 13.67 0.68 13.34 0 13 C0 15.64 0 18.28 0 21 C-0.33 21 -0.66 21 -1 21 C-1.01417969 20.3709375 -1.02835938 19.741875 -1.04296875 19.09375 C-1.41572683 12.40425361 -3.10211236 8.37276404 -7 3 C-7.33 2.34 -7.66 1.68 -8 1 C-1.125 0 -1.125 0 0 0 Z ",fill:"#DB216C",transform:"translate(55,51)"}),t.jsx("path",{d:"M0 0 C4.55555556 0.55555556 4.55555556 0.55555556 6 2 C6.1875 4.4375 6.1875 4.4375 6 7 C5.34 7.66 4.68 8.32 4 9 C-0.55555556 8.44444444 -0.55555556 8.44444444 -2 7 C-2.1875 4.5625 -2.1875 4.5625 -2 2 C-1.34 1.34 -0.68 0.68 0 0 Z ",fill:"#0D0C1F",transform:"translate(47,31)"}),t.jsx("path",{d:"M0 0 C2.109375 4.7109375 2.109375 4.7109375 1.125 7.3125 C0.568125 8.1478125 0.568125 8.1478125 0 9 C-0.66 9 -1.32 9 -2 9 C-5 3.25 -5 3.25 -5 1 C-12.68636026 2.35225523 -12.68636026 2.35225523 -20 5 C-20 4.34 -20 3.68 -20 3 C-13.45841601 -0.65111665 -7.36120371 -0.29887594 0 0 Z ",fill:"#CCBFBC",transform:"translate(89,28)"}),t.jsx("path",{d:"M0 0 C0.66 1.32 1.32 2.64 2 4 C1.030625 3.814375 0.06125 3.62875 -0.9375 3.4375 C-1.948125 3.293125 -2.95875 3.14875 -4 3 C-5.29633621 4.06645115 -5.29633621 4.06645115 -5.0625 6.5625 C-5.041875 7.366875 -5.02125 8.17125 -5 9 C-1.41672247 10.00217064 -1.41672247 10.00217064 2 9 C1.67 9.99 1.34 10.98 1 12 C-4.4 13.32 -4.4 13.32 -6.875 12 C-8.61178961 8.91237402 -8.37142345 6.4666189 -8 3 C-5.91685466 -0.39881608 -3.78885018 -0.30720407 0 0 Z ",fill:"#FAF9ED",transform:"translate(51,29)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 7.26 1 14.52 1 22 C2.98 22 4.96 22 7 22 C3.375 26.875 3.375 26.875 0 28 C0 18.76 0 9.52 0 0 Z ",fill:"#BF2563",transform:"translate(65,78)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C4.36884358 5.51718381 3.47075246 8.58774263 2 13 C1.67 13 1.34 13 1 13 C0.34 9.7 -0.32 6.4 -1 3 C-1.66 3 -2.32 3 -3 3 C-2 1 -2 1 0 0 Z ",fill:"#38A549",transform:"translate(84,72)"}),t.jsx("path",{d:"M0 0 C0.99 0.33 1.98 0.66 3 1 C2.01 1.495 2.01 1.495 1 2 C1.66 2.66 2.32 3.32 3 4 C1.783125 4.4125 0.56625 4.825 -0.6875 5.25 C-4.36735474 6.6160562 -7.06918364 8.34394768 -10 11 C-7.99155908 6.07019047 -4.35894926 2.90596617 0 0 Z ",fill:"#475E88",transform:"translate(45,21)"}),t.jsx("path",{d:"M0 0 C3.35435922 1.38801071 5.11290303 2.88629 7 6 C7 6.99 7 7.98 7 9 C3.58841744 7.86280581 2.88145399 6.95657056 1 4 C1 3.34 1 2.68 1 2 C0.34 1.67 -0.32 1.34 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z ",fill:"#6AA83B",transform:"translate(79,16)"}),t.jsx("path",{d:"M0 0 C0 1.65 0 3.3 0 5 C-1.98 5.99 -1.98 5.99 -4 7 C-5.32 5.02 -6.64 3.04 -8 1 C-1.125 0 -1.125 0 0 0 Z ",fill:"#C01F60",transform:"translate(55,51)"}),t.jsx("path",{d:"M0 0 C2.125 0.375 2.125 0.375 4 1 C3.01 1.33 2.02 1.66 1 2 C1 3.32 1 4.64 1 6 C2.32 6.66 3.64 7.32 5 8 C3.1875 8.625 3.1875 8.625 1 9 C0.01 8.34 -0.98 7.68 -2 7 C-2.3125 4.5 -2.3125 4.5 -2 2 C-1.34 1.34 -0.68 0.68 0 0 Z ",fill:"#793CA7",transform:"translate(47,31)"}),t.jsx("path",{d:"M0 0 C1.98 0 3.96 0 6 0 C4.71937515 1.7074998 3.38232443 3.37373596 2 5 C1.34 5 0.68 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#C6342C",transform:"translate(66,100)"}),t.jsx("path",{d:"M0 0 C0.99 0 1.98 0 3 0 C3 0.99 3 1.98 3 3 C0.5 4.6875 0.5 4.6875 -2 6 C-1.125 1.125 -1.125 1.125 0 0 Z ",fill:"#F4E23F",transform:"translate(37,30)"}),t.jsx("path",{d:"M0 0 C0.33 1.32 0.66 2.64 1 4 C-1 5 -3 6 -5 7 C-5 5.68 -5 4.36 -5 3 C-2.5 1.25 -2.5 1.25 0 0 Z ",fill:"#1D5A9D",transform:"translate(29,72)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 4.29 1 8.58 1 13 C0.67 13 0.34 13 0 13 C0 8.71 0 4.42 0 0 Z ",fill:"#80E180",transform:"translate(21,47)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.98 1 3.96 1 6 C0.67 6 0.34 6 0 6 C0 4.02 0 2.04 0 0 Z ",fill:"#E9E9E9",transform:"translate(95,39)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#80CC80",transform:"translate(91,83)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#197F99",transform:"translate(19,82)"}),t.jsx("path",{d:"M0 0 C0.33 0 0.66 0 1 0 C1 1.65 1 3.3 1 5 C0.67 5 0.34 5 0 5 C0 3.35 0 1.7 0 0 Z ",fill:"#1980B2",transform:"translate(17,73)"}),t.jsx("path",{d:"M0 0 C4 1 4 1 4 1 Z ",fill:"#9FBF60",transform:"translate(69,10)"}),t.jsx("path",{d:"M0 0 C4 1 4 1 4 1 Z ",fill:"#80FF80",transform:"translate(52,10)"}),t.jsx("path",{d:"",fill:"#2A6AAA",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80AA80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#1C637F",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#AAAAAA",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80D480",transform:"translate(0,0)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#400040",transform:"translate(60,111)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#7F407F",transform:"translate(44,101)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#008080",transform:"translate(32,97)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004080",transform:"translate(34,96)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004040",transform:"translate(36,95)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#004080",transform:"translate(22,92)"}),t.jsx("path",{d:"",fill:"#406080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#40BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#609F60",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#40BFFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#407FFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#009595",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFFFF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80BF40",transform:"translate(42,13)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#BFFF40",transform:"translate(45,12)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80BF80",transform:"translate(74,11)"}),t.jsx("path",{d:"M0 0 C2 1 2 1 2 1 Z ",fill:"#80FF80",transform:"translate(48,11)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF00FF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#804080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF0000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF4080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF4040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#800080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FF8080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFAA55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#000080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFAA00",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#55AA55",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#AAAA00",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#008080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#499224",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#804080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BFBFBF",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#BF8040",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808080",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80BF40",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#FFFF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#808000",transform:"translate(0,0)"}),t.jsx("path",{d:"",fill:"#80FF80",transform:"translate(0,0)"})]}),n=s.forwardRef((a,r)=>t.jsx(l,{ref:r,...a}));export{n as MaritalkIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as s}from"./index-
|
|
1
|
+
import{j as r,r as s}from"./index-BpxbUiZD.js";const e=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M1.5 11.625C3.36396 11.625 4.875 10.114 4.875 8.25C4.875 10.114 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 13.136 4.875 15C4.875 13.136 3.36396 11.625 1.5 11.625Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.10509 4.16216 5.45424 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75 14.061M4.875 8.25C4.875 10.114 3.36396 11.625 1.5 11.625C3.36396 11.625 4.875 13.136 4.875 15C4.875 13.136 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 10.114 4.875 8.25Z",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),C=s.forwardRef((o,t)=>r.jsx(e,{ref:t,...o}));export{C as SearchHybridIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{U as le,a as ce,g as oe,r as i,j as e,c as v,C as he,A as de,B as M,F as E,$ as pe,b as k,d as P,e as $,f as F,E as K,h as Q,i as Y,k as X,l as fe,P as ee,m as se,u as te,n as je,o as Ne,p as ge,I as ve,q as Ce,S as W,s as h,t as ae,v as be,w as we,x as Se,y as _e,z as q,D as J,G as ne,H as ie,J as Ee}from"./index-BChjg6Az.js";import{u as Te}from"./use-post-add-user-BrBYH9eR.js";const Ue=r=>{const{mutate:l}=le();return l(["useDeleteUsers"],async({user_id:p})=>(await ce.delete(`${oe("USERS")}/${p}`)).data,r)},ye=r=>{const{mutate:l}=le();async function c({skip:p,limit:C}){const a=await ce.get(`${oe("USERS")}/?skip=${p}&limit=${C}`);return a.status===200?a.data:[]}return l(["useGetUsers"],c,r)},me=i.forwardRef(({className:r,...l},c)=>e.jsx("div",{className:"",children:e.jsx("table",{ref:c,className:v("w-full caption-bottom text-sm",r),...l})}));me.displayName="Table";const ue=i.forwardRef(({className:r,...l},c)=>e.jsx("thead",{ref:c,className:v("[&_tr]:border-b",r),...l}));ue.displayName="TableHeader";const xe=i.forwardRef(({className:r,...l},c)=>e.jsx("tbody",{ref:c,className:v("[&_tr:last-child]:border-0",r),...l}));xe.displayName="TableBody";const Re=i.forwardRef(({className:r,...l},c)=>e.jsx("tfoot",{ref:c,className:v("bg-primary font-medium text-primary-foreground",r),...l}));Re.displayName="TableFooter";const Z=i.forwardRef(({className:r,...l},c)=>e.jsx("tr",{ref:c,className:v("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",r),...l}));Z.displayName="TableRow";const N=i.forwardRef(({className:r,...l},c)=>e.jsx("th",{ref:c,className:v("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",r),...l}));N.displayName="TableHead";const g=i.forwardRef(({className:r,...l},c)=>e.jsx("td",{ref:c,className:v("p-4 align-middle [&:has([role=checkbox])]:pr-0",r),...l}));g.displayName="TableCell";const Ae=i.forwardRef(({className:r,...l},c)=>e.jsx("caption",{ref:c,className:v("mt-4 text-sm text-muted-foreground",r),...l}));Ae.displayName="TableCaption";function re({title:r,titleHeader:l,cancelText:c,confirmationText:S,children:p,icon:C,data:a,index:b,onConfirm:G,asChild:z}){const[f,L]=i.useState(!1),[u,O]=i.useState(!1),[d,T]=i.useState(!1),[m,U]=i.useState((a==null?void 0:a.password)??""),[w,_]=i.useState((a==null?void 0:a.username)??""),[j,H]=i.useState((a==null?void 0:a.password)??""),[x,y]=i.useState((a==null?void 0:a.is_active)??!1),[R,A]=i.useState((a==null?void 0:a.is_superuser)??!1),[B,V]=i.useState(he),{userData:D}=i.useContext(de);function s({target:{name:t,value:o}}){V(I=>({...I,[t]:o}))}i.useEffect(()=>{d&&(a?(_(a.username),y(a.is_active),A(a.is_superuser),s({target:{name:"username",value:w}}),s({target:{name:"is_active",value:x}}),s({target:{name:"is_superuser",value:R}})):n())},[d]);function n(){U(""),_(""),H(""),y(!1),A(!1)}return e.jsxs(M,{size:"medium-h-full",open:d,setOpen:T,children:[e.jsx(M.Trigger,{asChild:z,children:p}),e.jsxs(M.Header,{description:l,children:[e.jsx("span",{className:"pr-2",children:r}),e.jsx(E,{name:C,className:"h-6 w-6 pl-1 text-foreground","aria-hidden":"true"})]}),e.jsx(M.Content,{children:e.jsxs(pe,{onSubmit:t=>{if(m!==j){t.preventDefault();return}n(),G(1,B),T(!1),t.preventDefault()},children:[e.jsxs("div",{className:"grid gap-5",children:[e.jsxs(k,{name:"username",children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid",children:["Username"," ",e.jsx("span",{className:"font-medium text-destructive",children:"*"})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:({target:{value:t}})=>{s({target:{name:"username",value:t}}),_(t)},value:w,className:"primary-input",required:!0,placeholder:"Username"})}),e.jsx(F,{match:"valueMissing",className:"field-invalid",children:"Please enter your username"})]}),e.jsxs("div",{className:"flex flex-row",children:[e.jsx("div",{className:"mr-3 basis-1/2",children:e.jsxs(k,{name:"password",serverInvalid:m!=j,children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid flex",children:["Password"," ",e.jsx("span",{className:"ml-1 mr-1 font-medium text-destructive",children:"*"}),f&&e.jsx(K,{onClick:()=>L(!f),className:"h-5 cursor-pointer",strokeWidth:1.5}),!f&&e.jsx(Q,{onClick:()=>L(!f),className:"h-5 cursor-pointer",strokeWidth:1.5})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:({target:{value:t}})=>{s({target:{name:"password",value:t}}),U(t)},value:m,className:"primary-input",required:!a,type:f?"text":"password"})}),e.jsx(F,{className:"field-invalid",match:"valueMissing",children:"Please enter a password"}),m!=j&&e.jsx(F,{className:"field-invalid",children:"Passwords do not match"})]})}),e.jsx("div",{className:"basis-1/2",children:e.jsxs(k,{name:"confirmpassword",serverInvalid:m!=j,children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid flex",children:["Confirm password"," ",e.jsx("span",{className:"ml-1 mr-1 font-medium text-destructive",children:"*"}),u&&e.jsx(K,{onClick:()=>O(!u),className:"h-5 cursor-pointer",strokeWidth:1.5}),!u&&e.jsx(Q,{onClick:()=>O(!u),className:"h-5 cursor-pointer",strokeWidth:1.5})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:t=>{H(t.target.value)},value:j,className:"primary-input",required:!a,type:u?"text":"password"})}),e.jsx(F,{className:"field-invalid",match:"valueMissing",children:"Please confirm your password"})]})})]}),e.jsxs("div",{className:"flex gap-8",children:[e.jsx(k,{name:"is_active",children:e.jsxs("div",{children:[e.jsx(P,{className:"data-[invalid]:label-invalid mr-3",children:"Active"}),e.jsx($,{asChild:!0,children:e.jsx(Y,{value:x,checked:x,id:"is_active",className:"relative top-0.5",onCheckedChange:t=>{s({target:{name:"is_active",value:t}}),y(t)}})})]})}),(D==null?void 0:D.is_superuser)&&e.jsx(k,{name:"is_superuser",children:e.jsxs("div",{children:[e.jsx(P,{className:"data-[invalid]:label-invalid mr-3",children:"Superuser"}),e.jsx($,{asChild:!0,children:e.jsx(Y,{checked:R,value:R,id:"is_superuser",className:"relative top-0.5",onCheckedChange:t=>{s({target:{name:"is_superuser",value:t}}),A(t)}})})]})})]})]}),e.jsxs("div",{className:"float-right",children:[e.jsx(X,{variant:"outline",onClick:()=>{T(!1)},className:"mr-3",children:c}),e.jsx(fe,{asChild:!0,children:e.jsx(X,{className:"mt-8",children:S})})]})]})})]})}function ke(){const[r,l]=i.useState(""),[c,S]=i.useState(ee),[p,C]=i.useState(se),a=te(s=>s.setSuccessData),b=te(s=>s.setErrorData),{userData:G}=i.useContext(de),[z,f]=i.useState(0),{mutate:L}=Ue(),{mutate:u}=je(),{mutate:O}=Te(),d=i.useRef([]);i.useEffect(()=>{setTimeout(()=>{j()},500)},[]);const[T,m]=i.useState(d.current),{mutate:U,isPending:w,isIdle:_}=ye({});function j(){U({skip:c*(p-1),limit:c},{onSuccess:s=>{f(s.total_count),d.current=s.users,m(s.users)},onError:()=>{}})}function H(s,n){S(n),C(s),U({skip:n*(s-1),limit:n},{onSuccess:t=>{f(t.total_count),d.current=t.users,m(t.users)}})}function x(){C(se),S(ee),j()}function y(s){if(l(s),s==="")m(d.current);else{const n=d.current.filter(t=>t.username.toLowerCase().includes(s.toLowerCase()));m(n)}}function R(s){L({user_id:s.id},{onSuccess:()=>{x(),a({title:_e})},onError:n=>{b({title:Se,list:[n.response.data.detail]})}})}function A(s,n){u({user_id:s,user:n},{onSuccess:()=>{x(),a({title:J})},onError:t=>{b({title:q,list:[t.response.data.detail]})}})}function B(s,n,t){const o=ne.cloneDeep(t);o.is_active=!s,u({user_id:n,user:o},{onSuccess:()=>{x(),a({title:J})},onError:I=>{b({title:q,list:[I.response.data.detail]})}})}function V(s,n,t){const o=ne.cloneDeep(t);o.is_superuser=!s,u({user_id:n,user:o},{onSuccess:()=>{x(),a({title:J})},onError:I=>{b({title:q,list:[I.response.data.detail]})}})}function D(s){O(s,{onSuccess:n=>{u({user_id:n.id,user:{is_active:s.is_active,is_superuser:s.is_superuser}},{onSuccess:()=>{x(),a({title:Ee})},onError:t=>{b({title:ie,list:[t.response.data.detail]})}})},onError:n=>{b({title:ie,list:[n.response.data.detail]})}})}return e.jsx(e.Fragment,{children:G&&e.jsxs("div",{className:"admin-page-panel flex h-full flex-col pb-8",children:[e.jsx("div",{className:"main-page-nav-arrangement",children:e.jsxs("span",{className:"main-page-nav-title",children:[e.jsx(E,{name:"Shield",className:"w-6"}),Ne]})}),e.jsx("span",{className:"admin-page-description-text",children:ge}),e.jsxs("div",{className:"flex w-full justify-between px-4",children:[e.jsxs("div",{className:"flex w-96 items-center gap-4",children:[e.jsx(ve,{placeholder:"Search Username",value:r,onChange:s=>y(s.target.value)}),r.length>0?e.jsx("div",{className:"cursor-pointer",onClick:()=>{l(""),m(d.current)},children:e.jsx(E,{name:"X",className:"w-6 text-foreground"})}):e.jsx("div",{children:e.jsx(E,{name:"Search",className:"w-6 text-foreground"})})]}),e.jsx("div",{children:e.jsx(re,{title:"New User",titleHeader:"Add a new user",cancelText:"Cancel",confirmationText:"Save",icon:"UserPlus2",onConfirm:(s,n)=>{D(n)},asChild:!0,children:e.jsx(X,{variant:"primary",children:"New User"})})})]}),w||_?e.jsx("div",{className:"flex h-full w-full items-center justify-center",children:e.jsx(Ce,{remSize:12})}):d.current.length===0&&!_?e.jsx(e.Fragment,{children:e.jsx("div",{className:"m-4 flex items-center justify-between text-sm",children:"No users registered."})}):e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"m-4 h-fit overflow-x-hidden overflow-y-scroll rounded-md border-2 bg-background custom-scroll"+(w?" border-0":""),children:e.jsxs(me,{className:"table-fixed outline-1",children:[e.jsx(ue,{className:w?"hidden":"table-fixed bg-muted outline-1",children:e.jsxs(Z,{children:[e.jsx(N,{className:"h-10",children:"Id"}),e.jsx(N,{className:"h-10",children:"Username"}),e.jsx(N,{className:"h-10",children:"Active"}),e.jsx(N,{className:"h-10",children:"Superuser"}),e.jsx(N,{className:"h-10",children:"Created At"}),e.jsx(N,{className:"h-10",children:"Updated At"}),e.jsx(N,{className:"h-10 w-[100px] text-right"})]})}),!w&&e.jsx(xe,{children:T.map((s,n)=>e.jsxs(Z,{children:[e.jsx(g,{className:"truncate py-2 font-medium",children:e.jsx(W,{content:s.id,children:e.jsx("span",{className:"cursor-default",children:s.id})})}),e.jsx(g,{className:"truncate py-2",children:e.jsx(W,{content:s.username,children:e.jsx("span",{className:"cursor-default",children:s.username})})}),e.jsx(g,{className:"relative left-1 truncate py-2 text-align-last-left",children:e.jsxs(h,{size:"x-small",title:"Edit",titleHeader:`${s.username}`,modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Confirm",icon:"UserCog2",data:s,index:n,onConfirm:(t,o)=>{B(o.is_active,o.id,o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you completely confident about the changes you are making to this user?"})}),e.jsx(h.Trigger,{children:e.jsx("div",{className:"flex w-fit",children:e.jsx(ae,{checked:s.is_active})})})]})}),e.jsx(g,{className:"relative left-1 truncate py-2 text-align-last-left",children:e.jsxs(h,{size:"x-small",title:"Edit",titleHeader:`${s.username}`,modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Confirm",icon:"UserCog2",data:s,index:n,onConfirm:(t,o)=>{V(o.is_superuser,o.id,o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you completely confident about the changes you are making to this user?"})}),e.jsx(h.Trigger,{children:e.jsx("div",{className:"flex w-fit",children:e.jsx(ae,{checked:s.is_superuser})})})]})}),e.jsx(g,{className:"truncate py-2",children:new Date(s.create_at).toISOString().split("T")[0]}),e.jsx(g,{className:"truncate py-2",children:new Date(s.updated_at).toISOString().split("T")[0]}),e.jsx(g,{className:"flex w-[100px] py-2 text-right",children:e.jsxs("div",{className:"flex",children:[e.jsx(re,{title:"Edit",titleHeader:`${s.id}`,cancelText:"Cancel",confirmationText:"Save",icon:"UserPlus2",data:s,index:n,onConfirm:(t,o)=>{A(s.id,o)},children:e.jsx(W,{content:"Edit",side:"top",children:e.jsx(E,{name:"Pencil",className:"h-4 w-4 cursor-pointer"})})}),e.jsxs(h,{size:"x-small",title:"Delete",titleHeader:"Delete User",modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Delete",icon:"UserMinus2",data:s,index:n,onConfirm:(t,o)=>{R(o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you sure you want to delete this user? This action cannot be undone."})}),e.jsx(h.Trigger,{children:e.jsx(E,{name:"Trash2",className:"ml-2 h-4 w-4 cursor-pointer"})})]})]})})]},n))})]})}),e.jsx(be,{pageIndex:p,pageSize:c,totalRowsCount:z,paginate:H,rowsCount:we})]})]})})}export{ke as default};
|
|
1
|
+
import{U as le,a as ce,g as oe,r as i,j as e,c as v,C as he,A as de,B as M,F as E,$ as pe,b as k,d as P,e as $,f as F,E as K,h as Q,i as Y,k as X,l as fe,P as ee,m as se,u as te,n as je,o as Ne,p as ge,I as ve,q as Ce,S as W,s as h,t as ae,v as be,w as we,x as Se,y as _e,z as q,D as J,G as ne,H as ie,J as Ee}from"./index-BpxbUiZD.js";import{u as Te}from"./use-post-add-user-C0MdTpQ5.js";const Ue=r=>{const{mutate:l}=le();return l(["useDeleteUsers"],async({user_id:p})=>(await ce.delete(`${oe("USERS")}/${p}`)).data,r)},ye=r=>{const{mutate:l}=le();async function c({skip:p,limit:C}){const a=await ce.get(`${oe("USERS")}/?skip=${p}&limit=${C}`);return a.status===200?a.data:[]}return l(["useGetUsers"],c,r)},me=i.forwardRef(({className:r,...l},c)=>e.jsx("div",{className:"",children:e.jsx("table",{ref:c,className:v("w-full caption-bottom text-sm",r),...l})}));me.displayName="Table";const ue=i.forwardRef(({className:r,...l},c)=>e.jsx("thead",{ref:c,className:v("[&_tr]:border-b",r),...l}));ue.displayName="TableHeader";const xe=i.forwardRef(({className:r,...l},c)=>e.jsx("tbody",{ref:c,className:v("[&_tr:last-child]:border-0",r),...l}));xe.displayName="TableBody";const Re=i.forwardRef(({className:r,...l},c)=>e.jsx("tfoot",{ref:c,className:v("bg-primary font-medium text-primary-foreground",r),...l}));Re.displayName="TableFooter";const Z=i.forwardRef(({className:r,...l},c)=>e.jsx("tr",{ref:c,className:v("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",r),...l}));Z.displayName="TableRow";const N=i.forwardRef(({className:r,...l},c)=>e.jsx("th",{ref:c,className:v("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",r),...l}));N.displayName="TableHead";const g=i.forwardRef(({className:r,...l},c)=>e.jsx("td",{ref:c,className:v("p-4 align-middle [&:has([role=checkbox])]:pr-0",r),...l}));g.displayName="TableCell";const Ae=i.forwardRef(({className:r,...l},c)=>e.jsx("caption",{ref:c,className:v("mt-4 text-sm text-muted-foreground",r),...l}));Ae.displayName="TableCaption";function re({title:r,titleHeader:l,cancelText:c,confirmationText:S,children:p,icon:C,data:a,index:b,onConfirm:G,asChild:z}){const[f,L]=i.useState(!1),[u,O]=i.useState(!1),[d,T]=i.useState(!1),[m,U]=i.useState((a==null?void 0:a.password)??""),[w,_]=i.useState((a==null?void 0:a.username)??""),[j,H]=i.useState((a==null?void 0:a.password)??""),[x,y]=i.useState((a==null?void 0:a.is_active)??!1),[R,A]=i.useState((a==null?void 0:a.is_superuser)??!1),[B,V]=i.useState(he),{userData:D}=i.useContext(de);function s({target:{name:t,value:o}}){V(I=>({...I,[t]:o}))}i.useEffect(()=>{d&&(a?(_(a.username),y(a.is_active),A(a.is_superuser),s({target:{name:"username",value:w}}),s({target:{name:"is_active",value:x}}),s({target:{name:"is_superuser",value:R}})):n())},[d]);function n(){U(""),_(""),H(""),y(!1),A(!1)}return e.jsxs(M,{size:"medium-h-full",open:d,setOpen:T,children:[e.jsx(M.Trigger,{asChild:z,children:p}),e.jsxs(M.Header,{description:l,children:[e.jsx("span",{className:"pr-2",children:r}),e.jsx(E,{name:C,className:"h-6 w-6 pl-1 text-foreground","aria-hidden":"true"})]}),e.jsx(M.Content,{children:e.jsxs(pe,{onSubmit:t=>{if(m!==j){t.preventDefault();return}n(),G(1,B),T(!1),t.preventDefault()},children:[e.jsxs("div",{className:"grid gap-5",children:[e.jsxs(k,{name:"username",children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid",children:["Username"," ",e.jsx("span",{className:"font-medium text-destructive",children:"*"})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:({target:{value:t}})=>{s({target:{name:"username",value:t}}),_(t)},value:w,className:"primary-input",required:!0,placeholder:"Username"})}),e.jsx(F,{match:"valueMissing",className:"field-invalid",children:"Please enter your username"})]}),e.jsxs("div",{className:"flex flex-row",children:[e.jsx("div",{className:"mr-3 basis-1/2",children:e.jsxs(k,{name:"password",serverInvalid:m!=j,children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid flex",children:["Password"," ",e.jsx("span",{className:"ml-1 mr-1 font-medium text-destructive",children:"*"}),f&&e.jsx(K,{onClick:()=>L(!f),className:"h-5 cursor-pointer",strokeWidth:1.5}),!f&&e.jsx(Q,{onClick:()=>L(!f),className:"h-5 cursor-pointer",strokeWidth:1.5})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:({target:{value:t}})=>{s({target:{name:"password",value:t}}),U(t)},value:m,className:"primary-input",required:!a,type:f?"text":"password"})}),e.jsx(F,{className:"field-invalid",match:"valueMissing",children:"Please enter a password"}),m!=j&&e.jsx(F,{className:"field-invalid",children:"Passwords do not match"})]})}),e.jsx("div",{className:"basis-1/2",children:e.jsxs(k,{name:"confirmpassword",serverInvalid:m!=j,children:[e.jsx("div",{style:{display:"flex",alignItems:"baseline",justifyContent:"space-between"},children:e.jsxs(P,{className:"data-[invalid]:label-invalid flex",children:["Confirm password"," ",e.jsx("span",{className:"ml-1 mr-1 font-medium text-destructive",children:"*"}),u&&e.jsx(K,{onClick:()=>O(!u),className:"h-5 cursor-pointer",strokeWidth:1.5}),!u&&e.jsx(Q,{onClick:()=>O(!u),className:"h-5 cursor-pointer",strokeWidth:1.5})]})}),e.jsx($,{asChild:!0,children:e.jsx("input",{onChange:t=>{H(t.target.value)},value:j,className:"primary-input",required:!a,type:u?"text":"password"})}),e.jsx(F,{className:"field-invalid",match:"valueMissing",children:"Please confirm your password"})]})})]}),e.jsxs("div",{className:"flex gap-8",children:[e.jsx(k,{name:"is_active",children:e.jsxs("div",{children:[e.jsx(P,{className:"data-[invalid]:label-invalid mr-3",children:"Active"}),e.jsx($,{asChild:!0,children:e.jsx(Y,{value:x,checked:x,id:"is_active",className:"relative top-0.5",onCheckedChange:t=>{s({target:{name:"is_active",value:t}}),y(t)}})})]})}),(D==null?void 0:D.is_superuser)&&e.jsx(k,{name:"is_superuser",children:e.jsxs("div",{children:[e.jsx(P,{className:"data-[invalid]:label-invalid mr-3",children:"Superuser"}),e.jsx($,{asChild:!0,children:e.jsx(Y,{checked:R,value:R,id:"is_superuser",className:"relative top-0.5",onCheckedChange:t=>{s({target:{name:"is_superuser",value:t}}),A(t)}})})]})})]})]}),e.jsxs("div",{className:"float-right",children:[e.jsx(X,{variant:"outline",onClick:()=>{T(!1)},className:"mr-3",children:c}),e.jsx(fe,{asChild:!0,children:e.jsx(X,{className:"mt-8",children:S})})]})]})})]})}function ke(){const[r,l]=i.useState(""),[c,S]=i.useState(ee),[p,C]=i.useState(se),a=te(s=>s.setSuccessData),b=te(s=>s.setErrorData),{userData:G}=i.useContext(de),[z,f]=i.useState(0),{mutate:L}=Ue(),{mutate:u}=je(),{mutate:O}=Te(),d=i.useRef([]);i.useEffect(()=>{setTimeout(()=>{j()},500)},[]);const[T,m]=i.useState(d.current),{mutate:U,isPending:w,isIdle:_}=ye({});function j(){U({skip:c*(p-1),limit:c},{onSuccess:s=>{f(s.total_count),d.current=s.users,m(s.users)},onError:()=>{}})}function H(s,n){S(n),C(s),U({skip:n*(s-1),limit:n},{onSuccess:t=>{f(t.total_count),d.current=t.users,m(t.users)}})}function x(){C(se),S(ee),j()}function y(s){if(l(s),s==="")m(d.current);else{const n=d.current.filter(t=>t.username.toLowerCase().includes(s.toLowerCase()));m(n)}}function R(s){L({user_id:s.id},{onSuccess:()=>{x(),a({title:_e})},onError:n=>{b({title:Se,list:[n.response.data.detail]})}})}function A(s,n){u({user_id:s,user:n},{onSuccess:()=>{x(),a({title:J})},onError:t=>{b({title:q,list:[t.response.data.detail]})}})}function B(s,n,t){const o=ne.cloneDeep(t);o.is_active=!s,u({user_id:n,user:o},{onSuccess:()=>{x(),a({title:J})},onError:I=>{b({title:q,list:[I.response.data.detail]})}})}function V(s,n,t){const o=ne.cloneDeep(t);o.is_superuser=!s,u({user_id:n,user:o},{onSuccess:()=>{x(),a({title:J})},onError:I=>{b({title:q,list:[I.response.data.detail]})}})}function D(s){O(s,{onSuccess:n=>{u({user_id:n.id,user:{is_active:s.is_active,is_superuser:s.is_superuser}},{onSuccess:()=>{x(),a({title:Ee})},onError:t=>{b({title:ie,list:[t.response.data.detail]})}})},onError:n=>{b({title:ie,list:[n.response.data.detail]})}})}return e.jsx(e.Fragment,{children:G&&e.jsxs("div",{className:"admin-page-panel flex h-full flex-col pb-8",children:[e.jsx("div",{className:"main-page-nav-arrangement",children:e.jsxs("span",{className:"main-page-nav-title",children:[e.jsx(E,{name:"Shield",className:"w-6"}),Ne]})}),e.jsx("span",{className:"admin-page-description-text",children:ge}),e.jsxs("div",{className:"flex w-full justify-between px-4",children:[e.jsxs("div",{className:"flex w-96 items-center gap-4",children:[e.jsx(ve,{placeholder:"Search Username",value:r,onChange:s=>y(s.target.value)}),r.length>0?e.jsx("div",{className:"cursor-pointer",onClick:()=>{l(""),m(d.current)},children:e.jsx(E,{name:"X",className:"w-6 text-foreground"})}):e.jsx("div",{children:e.jsx(E,{name:"Search",className:"w-6 text-foreground"})})]}),e.jsx("div",{children:e.jsx(re,{title:"New User",titleHeader:"Add a new user",cancelText:"Cancel",confirmationText:"Save",icon:"UserPlus2",onConfirm:(s,n)=>{D(n)},asChild:!0,children:e.jsx(X,{variant:"primary",children:"New User"})})})]}),w||_?e.jsx("div",{className:"flex h-full w-full items-center justify-center",children:e.jsx(Ce,{remSize:12})}):d.current.length===0&&!_?e.jsx(e.Fragment,{children:e.jsx("div",{className:"m-4 flex items-center justify-between text-sm",children:"No users registered."})}):e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"m-4 h-fit overflow-x-hidden overflow-y-scroll rounded-md border-2 bg-background custom-scroll"+(w?" border-0":""),children:e.jsxs(me,{className:"table-fixed outline-1",children:[e.jsx(ue,{className:w?"hidden":"table-fixed bg-muted outline-1",children:e.jsxs(Z,{children:[e.jsx(N,{className:"h-10",children:"Id"}),e.jsx(N,{className:"h-10",children:"Username"}),e.jsx(N,{className:"h-10",children:"Active"}),e.jsx(N,{className:"h-10",children:"Superuser"}),e.jsx(N,{className:"h-10",children:"Created At"}),e.jsx(N,{className:"h-10",children:"Updated At"}),e.jsx(N,{className:"h-10 w-[100px] text-right"})]})}),!w&&e.jsx(xe,{children:T.map((s,n)=>e.jsxs(Z,{children:[e.jsx(g,{className:"truncate py-2 font-medium",children:e.jsx(W,{content:s.id,children:e.jsx("span",{className:"cursor-default",children:s.id})})}),e.jsx(g,{className:"truncate py-2",children:e.jsx(W,{content:s.username,children:e.jsx("span",{className:"cursor-default",children:s.username})})}),e.jsx(g,{className:"relative left-1 truncate py-2 text-align-last-left",children:e.jsxs(h,{size:"x-small",title:"Edit",titleHeader:`${s.username}`,modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Confirm",icon:"UserCog2",data:s,index:n,onConfirm:(t,o)=>{B(o.is_active,o.id,o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you completely confident about the changes you are making to this user?"})}),e.jsx(h.Trigger,{children:e.jsx("div",{className:"flex w-fit",children:e.jsx(ae,{checked:s.is_active})})})]})}),e.jsx(g,{className:"relative left-1 truncate py-2 text-align-last-left",children:e.jsxs(h,{size:"x-small",title:"Edit",titleHeader:`${s.username}`,modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Confirm",icon:"UserCog2",data:s,index:n,onConfirm:(t,o)=>{V(o.is_superuser,o.id,o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you completely confident about the changes you are making to this user?"})}),e.jsx(h.Trigger,{children:e.jsx("div",{className:"flex w-fit",children:e.jsx(ae,{checked:s.is_superuser})})})]})}),e.jsx(g,{className:"truncate py-2",children:new Date(s.create_at).toISOString().split("T")[0]}),e.jsx(g,{className:"truncate py-2",children:new Date(s.updated_at).toISOString().split("T")[0]}),e.jsx(g,{className:"flex w-[100px] py-2 text-right",children:e.jsxs("div",{className:"flex",children:[e.jsx(re,{title:"Edit",titleHeader:`${s.id}`,cancelText:"Cancel",confirmationText:"Save",icon:"UserPlus2",data:s,index:n,onConfirm:(t,o)=>{A(s.id,o)},children:e.jsx(W,{content:"Edit",side:"top",children:e.jsx(E,{name:"Pencil",className:"h-4 w-4 cursor-pointer"})})}),e.jsxs(h,{size:"x-small",title:"Delete",titleHeader:"Delete User",modalContentTitle:"Attention!",cancelText:"Cancel",confirmationText:"Delete",icon:"UserMinus2",data:s,index:n,onConfirm:(t,o)=>{R(o)},children:[e.jsx(h.Content,{children:e.jsx("span",{children:"Are you sure you want to delete this user? This action cannot be undone."})}),e.jsx(h.Trigger,{children:e.jsx(E,{name:"Trash2",className:"ml-2 h-4 w-4 cursor-pointer"})})]})]})})]},n))})]})}),e.jsx(be,{pageIndex:p,pageSize:c,totalRowsCount:z,paginate:H,rowsCount:we})]})]})})}export{ke as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as e}from"./index-
|
|
1
|
+
import{j as r,r as e}from"./index-BpxbUiZD.js";const t=s=>r.jsxs("svg",{fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",...s,children:[r.jsx("path",{d:"M16 8.016A8.522 8.522 0 008.016 16h-.032A8.521 8.521 0 000 8.016v-.032A8.521 8.521 0 007.984 0h.032A8.522 8.522 0 0016 7.984v.032z",fill:"url(#prefix__paint0_radial_980_20147)"}),r.jsx("defs",{children:r.jsxs("radialGradient",{id:"prefix__paint0_radial_980_20147",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(16.1326 5.4553 -43.70045 129.2322 1.588 6.503)",children:[r.jsx("stop",{offset:".067",stopColor:"#9168C0"}),r.jsx("stop",{offset:".343",stopColor:"#5684D1"}),r.jsx("stop",{offset:".672",stopColor:"#1BA1E3"})]})})]}),a=e.forwardRef((s,o)=>r.jsx(t,{ref:o,...s}));export{a as GoogleGenerativeAIIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as t}from"./index-
|
|
1
|
+
import{j as r,r as t}from"./index-BpxbUiZD.js";const i=C=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"512",height:"297",viewBox:"0 0 512 297",fill:"none",...C,children:r.jsx("path",{d:"M507.28 0.142623H502.4C476.721 0.10263 455.882 20.899 455.882 46.5745V150.416C455.882 171.153 438.743 187.95 418.344 187.95C406.224 187.95 394.125 181.851 386.945 171.613L280.889 20.1391C272.089 7.56133 257.77 0.0626373 242.271 0.0626373C218.091 0.0626373 196.332 20.6191 196.332 45.9946V150.436C196.332 171.173 179.333 187.97 158.794 187.97C146.634 187.97 134.555 181.871 127.375 171.633L8.69966 2.12228C6.01976 -1.71705 0 0.182617 0 4.8618V95.426C0 100.005 1.39995 104.444 4.01984 108.204L120.815 274.995C127.715 284.853 137.895 292.172 149.634 294.831C179.013 301.51 206.052 278.894 206.052 250.079V145.697C206.052 124.961 222.851 108.164 243.59 108.164H243.65C256.15 108.164 267.87 114.263 275.049 124.501L381.125 275.955C389.945 288.552 403.524 296.031 419.724 296.031C444.443 296.031 465.622 275.455 465.622 250.099V145.677C465.622 124.941 482.421 108.144 503.16 108.144H507.3C509.9 108.144 512 106.044 512 103.445V4.8418C512 2.24226 509.9 0.142623 507.3 0.142623H507.28Z",fill:C.isDark?"white":"black"})}),o=t.forwardRef((C,s)=>r.jsx(i,{ref:s,...C}));export{o as WindsurfIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as e}from"./index-
|
|
1
|
+
import{j as r,r as e}from"./index-BpxbUiZD.js";const s=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.1051 4.16216 5.45425 2.25 8.25001 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75001 14.061M2.25 14.25V11.25M2.25 14.25H5.25M2.25 14.25L7.5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),c=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{c as SearchVectorIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r}from"./index-
|
|
1
|
+
import{j as t,r}from"./index-BpxbUiZD.js";const h=s=>s.isDark?t.jsxs("svg",{width:"38",height:"38",viewBox:"0 0 280 196",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[t.jsx("path",{d:"M201.88 0H159.04L237.16 196H280L201.88 0Z",fill:"#FAFAF8"}),t.jsx("path",{d:"M78.12 0L0 196H43.68L59.6568 154.84H141.383L157.36 196H201.04L122.92 0H78.12ZM73.7856 118.44L100.52 49.56L127.254 118.44H73.7856Z",fill:"#FAFAF8"})]}):t.jsxs("svg",{width:"38",height:"38",viewBox:"0 0 280 196",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[t.jsx("path",{d:"M201.88 0H159.04L237.16 196H280L201.88 0Z",fill:"#1F1F1E"}),t.jsx("path",{d:"M78.12 0L0 196H43.68L59.6568 154.84H141.383L157.36 196H201.04L122.92 0H78.12ZM73.7856 118.44L100.52 49.56L127.254 118.44H73.7856Z",fill:"#1F1F1E"})]}),n=r.forwardRef((s,i)=>t.jsx(h,{ref:i,...s}));export{n as AnthropicIcon};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{j as s,r}from"./index-
|
|
1
|
+
import{j as s,r}from"./index-BpxbUiZD.js";const i=e=>s.jsxs("svg",{viewBox:"-33 0 255 255",xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",preserveAspectRatio:"xMidYMid",...e,children:[s.jsxs("defs",{children:[s.jsx("style",{children:`
|
|
2
2
|
.cls-3 {
|
|
3
3
|
fill: url(#linear-gradient-1);
|
|
4
4
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r as l}from"./index-
|
|
1
|
+
import{j as t,r as l}from"./index-BpxbUiZD.js";const o=s=>t.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",...s,children:[t.jsxs("defs",{children:[t.jsxs("linearGradient",{id:"Searx_logo_svg__b",children:[t.jsx("stop",{offset:0,style:{stopColor:"#fff",stopOpacity:1}}),t.jsx("stop",{offset:1,style:{stopColor:"#fff",stopOpacity:0}})]}),t.jsxs("linearGradient",{id:"Searx_logo_svg__a",children:[t.jsx("stop",{offset:0,style:{stopColor:"#a9a9a9",stopOpacity:1}}),t.jsx("stop",{offset:1,style:{stopColor:"#000",stopOpacity:1}})]}),t.jsx("linearGradient",{xlinkHref:"#Searx_logo_svg__b",id:"Searx_logo_svg__d",x1:120.689,x2:120.689,y1:239.618,y2:602.175,gradientUnits:"userSpaceOnUse"}),t.jsx("radialGradient",{xlinkHref:"#Searx_logo_svg__a",id:"Searx_logo_svg__c",cx:294.459,cy:208.38,r:107.581,fx:294.459,fy:208.38,gradientUnits:"userSpaceOnUse"}),t.jsx("filter",{id:"Searx_logo_svg__e",width:1.26,height:1.294,x:-.13,y:-.147,colorInterpolationFilters:"sRGB",children:t.jsx("feGaussianBlur",{stdDeviation:6.476})})]}),t.jsxs("g",{transform:"translate(-61.72 -34.87)",children:[t.jsx("path",{d:"M70.523 34.87c-7.12 15.244-10.178 31.78-8.225 48.815 5.016 43.774 41.675 79.325 91.536 95.163-6.626-22.407-5.341-44.936 2.64-65.844-47.738-14.183-81.646-42.809-85.95-78.133zM303.779 36.214c7.12 15.243 10.178 31.78 8.225 48.815-5.016 43.774-41.675 79.324-91.536 95.163 6.626-22.408 5.341-44.937-2.64-65.845 47.738-14.182 81.646-42.808 85.95-78.133z",style:{fill:"#000",fillOpacity:1,fillRule:"nonzero",stroke:"none"}}),t.jsx("path",{d:"M-5.09 259.06h18.416c6.22 0 11.228 16.683 11.228 37.404v172.837c0 20.722-5.007 37.404-11.228 37.404H-5.09c-6.22 0-11.228-16.682-11.228-37.404V296.464c0-20.721 5.008-37.403 11.228-37.403z",style:{fill:"#000",fillOpacity:1,fillRule:"nonzero",stroke:"none"},transform:"rotate(-49.03)"}),t.jsx("path",{d:"M402.04 208.38a107.581 107.581 0 1 1-215.162 0 107.581 107.581 0 1 1 215.163 0z",style:{fill:"url(#Searx_logo_svg__c)",fillOpacity:1,fillRule:"nonzero",stroke:"none"},transform:"translate(-107.076 -60.61)"}),t.jsx("path",{d:"M233.345 299.293a101.52 101.52 0 1 1-203.04 0 101.52 101.52 0 1 1 203.04 0z",style:{fill:"url(#Searx_logo_svg__d)",fillOpacity:1,fillRule:"nonzero",stroke:"none"},transform:"matrix(.76866 0 0 .76866 85.803 -82.536)"}),t.jsx("path",{d:"M210.617 156.357a27.274 27.274 0 1 1-54.548 0 27.274 27.274 0 1 1 54.548 0z",style:{fill:"#1a1a1a",fillOpacity:1,fillRule:"nonzero",stroke:"none"},transform:"translate(5 -7.143)"}),t.jsx("path",{d:"M203.546 203.329a5.556 5.556 0 1 1-11.112 0 5.556 5.556 0 1 1 11.112 0z",style:{fill:"#fff",fillOpacity:1,fillRule:"nonzero",stroke:"none"},transform:"translate(1.485 -63.565)"}),t.jsx("rect",{width:2.239,height:159.438,x:19.526,y:337.84,rx:2.867,ry:9.001,style:{fill:"#fff",fillOpacity:.82211531,fillRule:"nonzero",stroke:"none",filter:"url(#Searx_logo_svg__e)"},transform:"matrix(.74467 -.84318 .84318 .74467 -35.543 -26.35)"})]})]}),a=l.forwardRef((s,e)=>t.jsx(o,{ref:e,...s}));export{a as SearxIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as u,a3 as U,u as p,X as E,j as e,$ as P,M as y,b as m,d as f,e as I,I as D,f as n,a4 as h,l as L,k as j,a5 as A,a6 as R,Z as T,a7 as _}from"./index-
|
|
1
|
+
import{r as u,a3 as U,u as p,X as E,j as e,$ as P,M as y,b as m,d as f,e as I,I as D,f as n,a4 as h,l as L,k as j,a5 as A,a6 as R,Z as T,a7 as _}from"./index-BpxbUiZD.js";import{u as k}from"./use-post-add-user-C0MdTpQ5.js";function q(){const[x,w]=u.useState(U),[v,t]=u.useState(!0),{password:a,cnfPassword:r,username:i}=x,g=p(s=>s.setSuccessData),N=p(s=>s.setErrorData),b=E(),{mutate:S}=k();function l({target:{name:s,value:c}}){w(d=>({...d,[s]:c}))}u.useEffect(()=>{if(a!==r||a===""||r===""||i==="")return t(!0);t(!1)},[a,r,i,l]);function $(){const{username:s,password:c}=x,d={username:s.trim(),password:c.trim()};S(d,{onSuccess:o=>{T("User Signed Up",o),g({title:_}),b("/login")},onError:o=>{const{response:{data:{detail:C}}}=o;N({title:R,list:[C]})}})}return e.jsx(P,{onSubmit:s=>{if(a===""){s.preventDefault();return}Object.fromEntries(new FormData(s.currentTarget)),s.preventDefault()},className:"h-screen w-full",children:e.jsx("div",{className:"flex h-full w-full flex-col items-center justify-center bg-muted",children:e.jsxs("div",{className:"flex w-72 flex-col items-center justify-center gap-2",children:[e.jsx(y,{title:"Langflow logo",className:"mb-4 h-10 w-10 scale-[1.5]"}),e.jsx("span",{className:"mb-6 text-2xl font-semibold text-primary",children:"Sign up for Langflow"}),e.jsx("div",{className:"mb-3 w-full",children:e.jsxs(m,{name:"username",children:[e.jsxs(f,{className:"data-[invalid]:label-invalid",children:["Username ",e.jsx("span",{className:"font-medium text-destructive",children:"*"})]}),e.jsx(I,{asChild:!0,children:e.jsx(D,{type:"username",onChange:({target:{value:s}})=>{l({target:{name:"username",value:s}})},value:i,className:"w-full",required:!0,placeholder:"Username"})}),e.jsx(n,{match:"valueMissing",className:"field-invalid",children:"Please enter your username"})]})}),e.jsx("div",{className:"mb-3 w-full",children:e.jsxs(m,{name:"password",serverInvalid:a!=r,children:[e.jsxs(f,{className:"data-[invalid]:label-invalid",children:["Password ",e.jsx("span",{className:"font-medium text-destructive",children:"*"})]}),e.jsx(h,{onChange:s=>{l({target:{name:"password",value:s}})},value:a,isForm:!0,password:!0,required:!0,placeholder:"Password",className:"w-full"}),e.jsx(n,{className:"field-invalid",match:"valueMissing",children:"Please enter a password"}),a!=r&&e.jsx(n,{className:"field-invalid",children:"Passwords do not match"})]})}),e.jsx("div",{className:"w-full",children:e.jsxs(m,{name:"confirmpassword",serverInvalid:a!=r,children:[e.jsxs(f,{className:"data-[invalid]:label-invalid",children:["Confirm your password"," ",e.jsx("span",{className:"font-medium text-destructive",children:"*"})]}),e.jsx(h,{onChange:s=>{l({target:{name:"cnfPassword",value:s}})},value:r,isForm:!0,password:!0,required:!0,placeholder:"Confirm your password",className:"w-full"}),e.jsx(n,{className:"field-invalid",match:"valueMissing",children:"Please confirm your password"})]})}),e.jsx("div",{className:"w-full",children:e.jsx(L,{asChild:!0,children:e.jsx(j,{disabled:v,type:"submit",className:"mr-3 mt-6 w-full",onClick:()=>{$()},children:"Sign up"})})}),e.jsx("div",{className:"w-full",children:e.jsx(A,{to:"/login",children:e.jsxs(j,{className:"w-full",variant:"outline",children:["Already have an account? ",e.jsx("b",{children:"Sign in"})]})})})]})})})}export{q as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as c,r as t}from"./index-BChjg6Az.js";const a=s=>c.jsxs("svg",{width:"24",height:"24",viewBox:"0 -43.5 256 256",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[c.jsx("g",{fill:"#373535",children:c.jsx("path",{d:"M30.9 142.2c2.2 0 4.2.5 5.3 1.5.2 1.6-1.3 4.2-2.2 4.2-1.1-.4-2.1-.6-3.4-.6-5.2 0-7.8 5.4-7.8 10.7 0 3.3 1.1 5.3 3.8 5.3 2.8 0 5.6-1.9 7.2-3.3.4.3.9 1.2.9 2.2 0 1.1-.3 2.2-1.4 3.3-1.8 1.8-4.9 3.4-9.4 3.4-5.1 0-8.7-2.9-8.7-9.7.2-9 6-17 15.7-17ZM47.7 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1 0 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.3.1-5.4-2.7-5.4-8.3ZM78.9 142.2c2.3 0 4.6.9 5.6 1.9-.1 1.6-1.3 4.3-3.3 3.5-.9-.3-1.7-.5-2.9-.5-1.5 0-2.9.7-2.9 2.1 0 1.1.8 1.9 4.6 4.6 2.7 2 3.8 3.8 3.8 6.3 0 4.2-3.9 8.7-10.8 8.7-2.8 0-5.3-1.1-6-2.2-1-1.7-.2-5.1.9-4.5 1.5.7 3.9 1.5 5.9 1.5 1.9 0 3.1-.9 3.1-2 0-1-.9-1.8-4.3-4.3-2.9-2.2-3.8-4.2-3.8-6.4 0-4.8 4.1-8.7 10.1-8.7ZM98.6 142.2c2.3 0 4.6.9 5.6 1.9-.1 1.6-1.3 4.3-3.3 3.5-.9-.3-1.7-.5-2.9-.5-1.5 0-2.9.7-2.9 2.1 0 1.1.8 1.9 4.6 4.6 2.7 2 3.8 3.8 3.8 6.3 0 4.2-3.9 8.7-10.8 8.7-2.8 0-5.2-1.1-6-2.2-1-1.7-.2-5.1.9-4.5 1.5.7 3.9 1.5 5.9 1.5 1.9 0 3.1-.9 3.1-2 0-1-.9-1.8-4.3-4.3-2.9-2.2-3.8-4.2-3.8-6.4 0-4.8 4.1-8.7 10.1-8.7ZM116.5 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1.1 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.2.1-5.4-2.7-5.4-8.3ZM146.4 149.6c2.6-4.2 6-7.4 10.8-7.4 4.1 0 5.4 3.8 4.6 9.1-.4 2.5-1.1 6.1-1.5 9.4-.4 2.8-.7 5.3-.6 7-1.5.7-5.8 1-6.8 1-.4 0-.5-3.1.1-6.4.5-2.7 1.4-7.7 1.9-10.6.3-1.7.2-3.7-1.4-3.7-2.1 0-7.1 3.4-9.6 17.2-.2 1.1-.6 1.8-1.3 2.2-.9.5-2.7 1-6.4 1 .7-3.5 1.8-10.6 2.6-15.9.7-4.8 1-7.9.9-9.1 1-.3 6.1-1.4 6.6-1.4.6 0 .7 1.8.2 6-.1.4-.1 1-.2 1.4h.1v.2ZM175.4 162.9c2.5 0 7.6-4.7 9-13 .1-.5.2-1.3.3-1.8-.7-.7-1.7-1.1-3.3-1.1-5.8 0-8.3 6.9-8.3 11.9.1 2.6 1 4 2.3 4Zm-3.7 5.9c-3.7 0-5.9-3.3-5.9-8.8 0-9.2 5.8-17.7 15.5-17.7 1.7 0 3.3.5 4.2 1 .5-2.6 1.7-10.7 1.8-13.1 1.6-.3 5-.8 6.6-.8.6 0 .8.6.6 2.1-1.4 8.6-3.8 25-4.3 28.6-.3 3.1-.4 6.1-.3 7.8-1.8.8-5.5 1-6.5 1-.4 0-.6-2.6-.5-5 .1-.7.2-1.8.2-2-3.1 4.6-7 6.9-11.4 6.9ZM205.1 150.4c3-6.7 6.6-8.2 9-8.2.7 0 1.9.5 2.4 1 .2 1.9-1.3 5.6-2.6 7.1-.7-.3-1.5-.7-2.5-.7-1.9 0-5.8 3-8.2 16-.2 1.1-.5 1.5-1.1 1.8-1 .6-4.8 1-6.6 1.1.9-4.7 2.3-14.2 2.9-19.8.2-1.4.2-4.1.1-5.1 1.1-.5 5.4-1.5 6.3-1.5.5 0 .9 3.1.1 8.2h.2v.1ZM225.2 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1.1 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.2.1-5.4-2.7-5.4-8.3Z"})}),c.jsx("path",{fill:"#BBE6FB",d:"M205.5 45.5c1.9 21.9-32.6 42.8-77.1 46.6-44.5 3.8-82-10.9-83.9-32.8-1.9-21.9 32.6-42.8 77.1-46.6 44.4-3.8 82 10.8 83.9 32.8"}),c.jsx("path",{fill:"#FFF",d:"M122.8 15.2c-17-.3-36.8 6.5-51.6 12.8-1.5 4.4-2.4 9.1-2.4 14 0 26 23.5 47.1 52.5 47.1s52.6-21 52.6-47.1c0-8.2-2.4-16-6.5-22.7-11.8-1.8-28.1-3.8-44.6-4.1"}),c.jsx("path",{fill:"#FFF",d:"M121.4 15.2c-9.4-.6-25.6 4.3-39.1 9.2-2.1 4.8-3.2 10.1-3.2 15.7 0 22.8 20.7 41.3 42.5 41.3 21.7 0 40.9-18.5 42.5-41.3.5-7.4-2-14.4-5.6-20.4-13.9-2.4-28.7-3.9-37.1-4.5"}),c.jsx("path",{fill:"#373535",d:"M97.3 37.2c1.2-2.6 2.9-3.8 4.6-5.9-.2-.5-.6-2.2-.6-2.7 0-2.6 2.1-4.6 4.6-4.6.6 0 1.2.1 1.7.3 7.7-5.9 17.8-8.4 28-6.1.9.2 1.8.5 2.7.7-10-1.4-21.4 2.2-29.1 8.4.2.6.9 2.1.9 2.8 0 2.6-1.7 3.2-4.2 3.2-.6 0-1.1-.1-1.7-.3-1.7 2.3-3.9 6.8-4.9 9.6 4.3 3.8 8.1 5.2 13.1 7.1 0-.2.2-.5.2-.7 0-7.7 6.8-14 14.5-14 6.9 0 12.7 5 13.8 11.6 3.5-2.2 6.8-3.9 9.3-7.1-.6-.7-1.2-2.8-1.2-3.8 0-2.3 1.9-4.2 4.2-4.2.3 0 .6 0 1 .1 1.3-2.7 2.3-5.5 2.9-8.4-12.1-9-35.5-7.7-35.5-7.7s-18.6-1-31.2 5.2c.9 5.8 3.3 11.6 6.9 16.5"}),c.jsx("path",{fill:"#373535",d:"M155.1 33.7c.9.8 1.3 1.4 1.7 2.1 1.1 2-1.1 3.9-3.5 3.9-.2 0-.5 0-.7-.1-2.6 4.1-7.2 9.3-11.3 12 6.3 1 12.2 3.5 16.8 7.4 3.4-6.1 6-15 6-22.5 0-5.7-2.5-9.9-6.3-13-.1 3.1-1.8 7.4-2.7 10.2M104.3 72.5c2.1-5.8 7.2-10.2 12.1-14.1-.7-1-1.8-3.4-2.2-4.5-5.9-1.8-11.1-5.2-15.2-9.6 0 .1-.1.3-.1.4-.8 3.4-.9 6.9-.5 10.2 2.8.5 5 3 5 6 0 1.8-1.6 4.3-2.8 5.5 1.2 2.6 2.1 4 3.7 6.1"}),c.jsx("path",{fill:"#373535",d:"M103.9 77.3c-2.5-2.5-4.2-7.4-5.8-10.5-.3 0-.6.1-.9.1-3.4 0-6.9-2.8-6.1-6.1.4-1.8 1.7-3 3.7-4-.5-3.8-.6-9.1.3-13 .2-1.1.8-1.6 1.1-2.7-3.7-5.4-6.1-12.6-6.1-19.7v-.8c-6.3 3.2-11 8.1-11 15.9 0 17.3 10 34.3 24.8 40.9v-.1M140.4 53.4c-1.9 5.4-7.1 9.4-13.2 9.4-3.3 0-6.3-1.1-8.6-3-4.9 3.8-9.4 10.5-11.6 16.4 1 1.1 1.7 2 2.9 3 3.4.9 8.2 0 11.9 0 14.9 0 28.2-6.6 35.8-18.3-5.2-3.6-11.2-7-17.2-7.5"}),c.jsx("path",{fill:"#1287B1",d:"M96.9 39.2c1.2-2.6 2.6-4.9 4.3-7.1-.2-.5-.3-1.1-.3-1.6 0-2.6 2.1-4.6 4.6-4.6.6 0 1.2.1 1.7.3 7.7-5.9 17.8-8.4 28-6.1.9.2 1.8.5 2.7.7-10-1.4-20.4 1.7-28.1 7.9.2.6.4 1.2.4 1.8 0 2.6-2.1 4.6-4.6 4.6-.6 0-1.1-.1-1.7-.3-1.7 2.3-3.2 4.9-4.2 7.7 3.7 3.9 8.2 7.1 13.2 8.9v-.7c0-7.7 6.3-14 14-14 6.9 0 12.7 5 13.8 11.6 3.5-2.2 6.5-5 9.1-8.3-.6-.7-1-1.6-1-2.6 0-2.3 1.9-4.2 4.2-4.2.3 0 .6 0 1 .1 1.3-2.7 2.3-5.5 2.9-8.4-12.1-9-35.5-7.7-35.5-7.7s-18.6-1-31.2 5.2c.7 6.1 3.1 11.9 6.7 16.8"}),c.jsx("path",{fill:"#1287B1",d:"M155.7 34.4c.9.8 1.4 1.9 1.4 3.1 0 2.3-1.9 4.2-4.2 4.2-.2 0-.5 0-.7-.1-2.6 4.1-6.1 7.6-10.2 10.2 6 .9 11.7 3.5 16.4 7.4 3.4-6.1 5.4-13.2 5.4-20.7 0-5.7-2.5-9.9-6.3-13-.2 3.1-.8 6.1-1.8 8.9M104.9 73.8c2.1-5.8 5.7-10.9 10.6-14.8-.7-1-1.3-2-1.7-3.2-5.9-1.8-11.1-5.2-15.2-9.6 0 .1-.1.3-.1.4-.8 3.4-.9 6.9-.5 10.2 2.8.5 5 3 5 6 0 1.8-.8 3.4-2 4.5 1 2.3 2.4 4.5 3.9 6.5"}),c.jsx("path",{fill:"#1287B1",d:"M103.9 77.2c-2.5-2.5-4.6-5.3-6.2-8.4-.3 0-.6.1-.9.1-3.4 0-6.1-2.7-6.1-6.1 0-2.4 1.4-4.5 3.4-5.5-.5-3.8-.3-7.6.6-11.5.2-1.1.6-2.2.9-3.3-3.7-5.4-5.9-12-5.9-19.1v-.8c-6.3 3.2-11 8.1-11 15.9 0 17.3 10.3 32.2 25.1 38.8.1 0 .1 0 .1-.1M140 55.4c-1.9 5.4-7.1 9.4-13.2 9.4-3.3 0-6.3-1.1-8.6-3-4.9 3.8-8.6 9-10.9 14.9 1 1.1 2.1 2.1 3.2 3.1 3.4.9 7 1.4 10.7 1.4 14.9 0 28.1-7.7 35.7-19.4-5-3.6-10.9-5.9-16.9-6.4"}),c.jsx("path",{fill:"#FFF",d:"m140.5 51.8 12.9-3.1-13-.7 10.6-8-12 4.3 8.1-11.3-11.3 7.5 3.9-13.2-7.7 10.9-.2-13.8-5.1 12.3-4.2-12.4.2 14.6-7.3-13.1 4 13.9-11.9-8.6 9.3 11.7-14.8-5.4 11.6 8.6-14.9.5 15.3 3.9-15.3 3.3 15.1 1.1-12.7 8.1 13.1-4.7-9.1 11.5 11.5-9.3-4.1 15.4 8.9-12.6-1.2 14.8 5-13.5 4.3 14.1 1-14.2 6.4 12.1-3.8-13.8 11.6 9-7.5-11.5 12.8 5-9.8-9.6 13.1 1-12.8-4.8Z"}),c.jsx("path",{fill:"#373535",fillOpacity:".35",d:"M2.8 76.5C42.9 36.4 74.9 24 104 18.4c3.8-.7 4.6-9.2 4.6-9.2s.5 6.2 3.2 7c2.7.8 6.2-9.7 6.2-9.7s-3.2 9.4 0 10c3.2.5 9.2-9.2 9.2-9.2s-2.4 8.3-.8 8.9c1.6.5 9.7-12.1 9.7-12.1s-4.8 8.3-.3 9.2c4.6.8 11.3-5.7 11.3-5.7s-5.2 5.9-2.9 6.8c10 3.5 18-9.4 18-9.4s-1.9 5.7-6.7 11.9c10.5 2.7 18.3-13.1 18.3-13.1L166 19.6c4 2 20.1-16.6 20.1-16.6s-8.3 14.5-13.2 17.5c2.7 2.2 12.4-6.5 12.4-6.5s-7.8 9.7-4.8 10.2c4.3 3.5 20.2-18 20.2-18s-6.2 12.7-15.3 22.6C193 32.7 212 8.2 212 8.2s-.5 7.8-14.3 20.2c10.2-1.3 23.4-20.7 23.4-20.7s-4.8 14.5-16.4 24.8c10-1 26.1-25.8 26.1-25.8s-6.2 17.2-18.8 27.2c14 3.1 34.2-17.8 34.2-17.8s-7.9 14.8-18.3 20.9c11.6 4.4 27.5-13.9 27.5-13.9s-15.9 24.5-41.2 23.4c-8.3-.4-33.4-25.2-87.2-23.2C55.8 25.9 40.8 56.1 2.8 76.5"}),c.jsx("path",{fill:"#373535",d:"M4.4 73.5C44.5 33.4 76.5 21 105.6 15.4c3.8-.7 4.6-9.2 4.6-9.2s.5 6.2 3.2 7c2.7.8 6.2-9.7 6.2-9.7s-3.2 9.4 0 10c3.2.5 9.2-9.2 9.2-9.2s-2.4 8.3-.8 8.9c1.6.5 9.7-12.1 9.7-12.1s-4.8 8.3-.3 9.2c4.6.8 11.3-5.7 11.3-5.7s-5.2 5.9-2.9 6.8c10 3.5 18-9.4 18-9.4s-1.9 5.7-6.7 11.9C167.6 16.6 175.4.8 175.4.8l-7.8 15.8c4 2.2 20.2-16.4 20.2-16.4s-8.3 14.5-13.2 17.5C177.3 19.6 187 11 187 11s-7.8 9.7-4.8 10.2c4.3 3.5 20.2-18 20.2-18s-6.3 12.7-15.4 22.6c7.6 3.8 26.7-20.7 26.7-20.7s-.5 7.8-14.3 20.2c10.2-1.3 23.4-20.7 23.4-20.7s-4.8 14.5-16.4 24.8c10-1 26.1-25.8 26.1-25.8s-6.2 17.2-18.8 27.2c14 3.1 34.2-17.8 34.2-17.8s-7.9 14.8-18.3 20.9c11.6 4.4 27.5-13.9 27.5-13.9s-15.9 24.5-41.2 23.4c-8.3-.4-33.4-25.2-87.2-23.2C57.5 22.9 42.4 53 4.4 73.5"}),c.jsx("path",{fill:"#373535",fillOpacity:".35",d:"M1.8 80.9c21.2 10.6 40.6-1.6 65 5.3 18.6 5.2 41.2 11.7 71.9 7.2 30.7-4.4 56.9-17.8 69.5-41.6 3.9-10.6 19.8 2.4 19.8 2.4s-11.6-4.8-11.3-2.6c.3 2.3 17.4 10.2 17.4 10.2s-15.5-4.8-14.5-1.2c.9 3.6 19.4 18.2 19.4 18.2S217.9 63 216.2 65.2c-1.8 2.2 8.9 10.9 8.9 10.9s-17.6-10.9-23.8-7.7c-4.5 2.3 18.3 17.2 18.3 17.2s-14.8-11.3-18.3-8.3 16.7 27.2 16.7 27.2-23-24.8-25.3-23.6C190.4 82.1 199 94 199 94s-11.2-12.4-14.3-10.3c-3.1 2.2 16.2 34.3 16.2 34.3S180 85.1 171.3 90.6c13.5 29.7 8.5 33.9 8.5 33.9s-1.7-30.3-18.6-29.5c-8.5.4 4 22.6 4 22.6S153.7 97.3 146 97.7c14.1 26.8 9.1 37.6 9.1 37.6s2.3-22.9-16.8-35.6c7.3 6.5-4.6 35.6-4.6 35.6s10.4-42.9-7.7-34.7c-2.9 1.3-.2 21.4-.2 21.4s-3.6-23-9.1-21.8c-3.2.7-20.2 31.9-20.2 31.9s13.9-33.7 9.7-32.3c-3.1 1-8.9 14.9-8.9 14.9s2.8-13.7 0-14.5c-2.8-.8-18.6 14.5-18.6 14.5s11.7-13.7 9.7-16.6c-3.1-4.3-6.6-4.5-10.9-2.8C71.3 97.7 63 109 63 109s8.3-11.5 6.9-15.7c-2.3-6.9-26.2 13.3-26.2 13.3s14.1-13.3 10.9-16.2c-3.2-2.8-20.8-2-26.2-2-16.1.2-21.7-3.6-26.6-7.5"}),c.jsx("path",{fill:"#373535",d:"M.9 78.5c21.2 10.6 40.6-1.6 65 5.3 18.6 5.2 41.2 11.7 71.9 7.2 30.7-4.4 56.9-17.8 69.5-41.6 3.9-10.6 19.8 2.4 19.8 2.4s-11.6-4.8-11.3-2.6c.3 2.3 17.4 10.2 17.4 10.2s-15.5-4.8-14.5-1.2c.9 3.6 19.4 18.2 19.4 18.2s-20.9-15.9-22.6-13.7c-1.7 2.2 8.9 10.9 8.9 10.9s-17.6-10.9-23.8-7.7c-4.5 2.3 18.3 17.2 18.3 17.2s-14.8-11.3-18.3-8.3 16.7 27.2 16.7 27.2-22.9-24.8-25.2-23.6c-2.3 1.2 6.3 13.1 6.3 13.1S187 79.2 183.9 81.3c-3.1 2.2 16.1 34.3 16.1 34.3s-20.9-33-29.5-27.5c13.6 29.8 8.5 34 8.5 34s-1.7-30.3-18.6-29.5c-8.5.4 4 22.6 4 22.6S153 95 145.3 95.4c14.1 26.8 9.1 37.6 9.1 37.6s2.3-22.9-16.8-35.6c7.3 6.5-4.6 35.6-4.6 35.6s10.4-42.9-7.7-34.7c-2.9 1.3-.2 21.4-.2 21.4s-3.6-23-9.1-21.8c-3.2.7-20.2 31.9-20.2 31.9s13.9-33.7 9.7-32.3c-3.1 1-8.9 14.9-8.9 14.9s2.8-13.7 0-14.5c-2.8-.8-18.6 14.5-18.6 14.5s11.7-13.7 9.7-16.6c-3.1-4.3-6.6-4.5-10.9-2.8-6.2 2.4-14.5 13.7-14.5 13.7s8.3-11.5 6.9-15.7C66.9 84.1 43 104.3 43 104.3S57.1 91 53.9 88.1c-3.2-2.8-20.8-2-26.2-2-16.3.1-21.9-3.7-26.8-7.6"})]}),M=t.forwardRef((s,l)=>c.jsx(a,{ref:l,...s}));export{M as CassandraIcon};
|
|
1
|
+
import{j as c,r as t}from"./index-BpxbUiZD.js";const a=s=>c.jsxs("svg",{width:"24",height:"24",viewBox:"0 -43.5 256 256",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[c.jsx("g",{fill:"#373535",children:c.jsx("path",{d:"M30.9 142.2c2.2 0 4.2.5 5.3 1.5.2 1.6-1.3 4.2-2.2 4.2-1.1-.4-2.1-.6-3.4-.6-5.2 0-7.8 5.4-7.8 10.7 0 3.3 1.1 5.3 3.8 5.3 2.8 0 5.6-1.9 7.2-3.3.4.3.9 1.2.9 2.2 0 1.1-.3 2.2-1.4 3.3-1.8 1.8-4.9 3.4-9.4 3.4-5.1 0-8.7-2.9-8.7-9.7.2-9 6-17 15.7-17ZM47.7 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1 0 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.3.1-5.4-2.7-5.4-8.3ZM78.9 142.2c2.3 0 4.6.9 5.6 1.9-.1 1.6-1.3 4.3-3.3 3.5-.9-.3-1.7-.5-2.9-.5-1.5 0-2.9.7-2.9 2.1 0 1.1.8 1.9 4.6 4.6 2.7 2 3.8 3.8 3.8 6.3 0 4.2-3.9 8.7-10.8 8.7-2.8 0-5.3-1.1-6-2.2-1-1.7-.2-5.1.9-4.5 1.5.7 3.9 1.5 5.9 1.5 1.9 0 3.1-.9 3.1-2 0-1-.9-1.8-4.3-4.3-2.9-2.2-3.8-4.2-3.8-6.4 0-4.8 4.1-8.7 10.1-8.7ZM98.6 142.2c2.3 0 4.6.9 5.6 1.9-.1 1.6-1.3 4.3-3.3 3.5-.9-.3-1.7-.5-2.9-.5-1.5 0-2.9.7-2.9 2.1 0 1.1.8 1.9 4.6 4.6 2.7 2 3.8 3.8 3.8 6.3 0 4.2-3.9 8.7-10.8 8.7-2.8 0-5.2-1.1-6-2.2-1-1.7-.2-5.1.9-4.5 1.5.7 3.9 1.5 5.9 1.5 1.9 0 3.1-.9 3.1-2 0-1-.9-1.8-4.3-4.3-2.9-2.2-3.8-4.2-3.8-6.4 0-4.8 4.1-8.7 10.1-8.7ZM116.5 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1.1 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.2.1-5.4-2.7-5.4-8.3ZM146.4 149.6c2.6-4.2 6-7.4 10.8-7.4 4.1 0 5.4 3.8 4.6 9.1-.4 2.5-1.1 6.1-1.5 9.4-.4 2.8-.7 5.3-.6 7-1.5.7-5.8 1-6.8 1-.4 0-.5-3.1.1-6.4.5-2.7 1.4-7.7 1.9-10.6.3-1.7.2-3.7-1.4-3.7-2.1 0-7.1 3.4-9.6 17.2-.2 1.1-.6 1.8-1.3 2.2-.9.5-2.7 1-6.4 1 .7-3.5 1.8-10.6 2.6-15.9.7-4.8 1-7.9.9-9.1 1-.3 6.1-1.4 6.6-1.4.6 0 .7 1.8.2 6-.1.4-.1 1-.2 1.4h.1v.2ZM175.4 162.9c2.5 0 7.6-4.7 9-13 .1-.5.2-1.3.3-1.8-.7-.7-1.7-1.1-3.3-1.1-5.8 0-8.3 6.9-8.3 11.9.1 2.6 1 4 2.3 4Zm-3.7 5.9c-3.7 0-5.9-3.3-5.9-8.8 0-9.2 5.8-17.7 15.5-17.7 1.7 0 3.3.5 4.2 1 .5-2.6 1.7-10.7 1.8-13.1 1.6-.3 5-.8 6.6-.8.6 0 .8.6.6 2.1-1.4 8.6-3.8 25-4.3 28.6-.3 3.1-.4 6.1-.3 7.8-1.8.8-5.5 1-6.5 1-.4 0-.6-2.6-.5-5 .1-.7.2-1.8.2-2-3.1 4.6-7 6.9-11.4 6.9ZM205.1 150.4c3-6.7 6.6-8.2 9-8.2.7 0 1.9.5 2.4 1 .2 1.9-1.3 5.6-2.6 7.1-.7-.3-1.5-.7-2.5-.7-1.9 0-5.8 3-8.2 16-.2 1.1-.5 1.5-1.1 1.8-1 .6-4.8 1-6.6 1.1.9-4.7 2.3-14.2 2.9-19.8.2-1.4.2-4.1.1-5.1 1.1-.5 5.4-1.5 6.3-1.5.5 0 .9 3.1.1 8.2h.2v.1ZM225.2 163c2.8 0 7.9-4.9 9.3-14.3.1-.6.1-.7.2-1.3-.6-.2-1.5-.4-2.3-.4-2.1 0-4.3.6-6.2 3.3-2 2.8-2.9 6.3-2.9 9.1.1 2.3.7 3.6 1.9 3.6Zm-9.2-2.6c0-3.4 1.1-9.2 5.4-13.5 3.7-3.8 8.1-4.7 12.2-4.7 2.7 0 6.3.9 8.6 1.3-.6 2.5-1.9 12-2.6 17.5-.3 2.3-.4 5.6-.3 6.8-1.9.8-5.4 1-6.4 1-.5 0-.6-2.3-.5-4.6.1-.7.2-1.8.2-2.3-2.2 3.7-6.6 6.8-11.2 6.8-3.2.1-5.4-2.7-5.4-8.3Z"})}),c.jsx("path",{fill:"#BBE6FB",d:"M205.5 45.5c1.9 21.9-32.6 42.8-77.1 46.6-44.5 3.8-82-10.9-83.9-32.8-1.9-21.9 32.6-42.8 77.1-46.6 44.4-3.8 82 10.8 83.9 32.8"}),c.jsx("path",{fill:"#FFF",d:"M122.8 15.2c-17-.3-36.8 6.5-51.6 12.8-1.5 4.4-2.4 9.1-2.4 14 0 26 23.5 47.1 52.5 47.1s52.6-21 52.6-47.1c0-8.2-2.4-16-6.5-22.7-11.8-1.8-28.1-3.8-44.6-4.1"}),c.jsx("path",{fill:"#FFF",d:"M121.4 15.2c-9.4-.6-25.6 4.3-39.1 9.2-2.1 4.8-3.2 10.1-3.2 15.7 0 22.8 20.7 41.3 42.5 41.3 21.7 0 40.9-18.5 42.5-41.3.5-7.4-2-14.4-5.6-20.4-13.9-2.4-28.7-3.9-37.1-4.5"}),c.jsx("path",{fill:"#373535",d:"M97.3 37.2c1.2-2.6 2.9-3.8 4.6-5.9-.2-.5-.6-2.2-.6-2.7 0-2.6 2.1-4.6 4.6-4.6.6 0 1.2.1 1.7.3 7.7-5.9 17.8-8.4 28-6.1.9.2 1.8.5 2.7.7-10-1.4-21.4 2.2-29.1 8.4.2.6.9 2.1.9 2.8 0 2.6-1.7 3.2-4.2 3.2-.6 0-1.1-.1-1.7-.3-1.7 2.3-3.9 6.8-4.9 9.6 4.3 3.8 8.1 5.2 13.1 7.1 0-.2.2-.5.2-.7 0-7.7 6.8-14 14.5-14 6.9 0 12.7 5 13.8 11.6 3.5-2.2 6.8-3.9 9.3-7.1-.6-.7-1.2-2.8-1.2-3.8 0-2.3 1.9-4.2 4.2-4.2.3 0 .6 0 1 .1 1.3-2.7 2.3-5.5 2.9-8.4-12.1-9-35.5-7.7-35.5-7.7s-18.6-1-31.2 5.2c.9 5.8 3.3 11.6 6.9 16.5"}),c.jsx("path",{fill:"#373535",d:"M155.1 33.7c.9.8 1.3 1.4 1.7 2.1 1.1 2-1.1 3.9-3.5 3.9-.2 0-.5 0-.7-.1-2.6 4.1-7.2 9.3-11.3 12 6.3 1 12.2 3.5 16.8 7.4 3.4-6.1 6-15 6-22.5 0-5.7-2.5-9.9-6.3-13-.1 3.1-1.8 7.4-2.7 10.2M104.3 72.5c2.1-5.8 7.2-10.2 12.1-14.1-.7-1-1.8-3.4-2.2-4.5-5.9-1.8-11.1-5.2-15.2-9.6 0 .1-.1.3-.1.4-.8 3.4-.9 6.9-.5 10.2 2.8.5 5 3 5 6 0 1.8-1.6 4.3-2.8 5.5 1.2 2.6 2.1 4 3.7 6.1"}),c.jsx("path",{fill:"#373535",d:"M103.9 77.3c-2.5-2.5-4.2-7.4-5.8-10.5-.3 0-.6.1-.9.1-3.4 0-6.9-2.8-6.1-6.1.4-1.8 1.7-3 3.7-4-.5-3.8-.6-9.1.3-13 .2-1.1.8-1.6 1.1-2.7-3.7-5.4-6.1-12.6-6.1-19.7v-.8c-6.3 3.2-11 8.1-11 15.9 0 17.3 10 34.3 24.8 40.9v-.1M140.4 53.4c-1.9 5.4-7.1 9.4-13.2 9.4-3.3 0-6.3-1.1-8.6-3-4.9 3.8-9.4 10.5-11.6 16.4 1 1.1 1.7 2 2.9 3 3.4.9 8.2 0 11.9 0 14.9 0 28.2-6.6 35.8-18.3-5.2-3.6-11.2-7-17.2-7.5"}),c.jsx("path",{fill:"#1287B1",d:"M96.9 39.2c1.2-2.6 2.6-4.9 4.3-7.1-.2-.5-.3-1.1-.3-1.6 0-2.6 2.1-4.6 4.6-4.6.6 0 1.2.1 1.7.3 7.7-5.9 17.8-8.4 28-6.1.9.2 1.8.5 2.7.7-10-1.4-20.4 1.7-28.1 7.9.2.6.4 1.2.4 1.8 0 2.6-2.1 4.6-4.6 4.6-.6 0-1.1-.1-1.7-.3-1.7 2.3-3.2 4.9-4.2 7.7 3.7 3.9 8.2 7.1 13.2 8.9v-.7c0-7.7 6.3-14 14-14 6.9 0 12.7 5 13.8 11.6 3.5-2.2 6.5-5 9.1-8.3-.6-.7-1-1.6-1-2.6 0-2.3 1.9-4.2 4.2-4.2.3 0 .6 0 1 .1 1.3-2.7 2.3-5.5 2.9-8.4-12.1-9-35.5-7.7-35.5-7.7s-18.6-1-31.2 5.2c.7 6.1 3.1 11.9 6.7 16.8"}),c.jsx("path",{fill:"#1287B1",d:"M155.7 34.4c.9.8 1.4 1.9 1.4 3.1 0 2.3-1.9 4.2-4.2 4.2-.2 0-.5 0-.7-.1-2.6 4.1-6.1 7.6-10.2 10.2 6 .9 11.7 3.5 16.4 7.4 3.4-6.1 5.4-13.2 5.4-20.7 0-5.7-2.5-9.9-6.3-13-.2 3.1-.8 6.1-1.8 8.9M104.9 73.8c2.1-5.8 5.7-10.9 10.6-14.8-.7-1-1.3-2-1.7-3.2-5.9-1.8-11.1-5.2-15.2-9.6 0 .1-.1.3-.1.4-.8 3.4-.9 6.9-.5 10.2 2.8.5 5 3 5 6 0 1.8-.8 3.4-2 4.5 1 2.3 2.4 4.5 3.9 6.5"}),c.jsx("path",{fill:"#1287B1",d:"M103.9 77.2c-2.5-2.5-4.6-5.3-6.2-8.4-.3 0-.6.1-.9.1-3.4 0-6.1-2.7-6.1-6.1 0-2.4 1.4-4.5 3.4-5.5-.5-3.8-.3-7.6.6-11.5.2-1.1.6-2.2.9-3.3-3.7-5.4-5.9-12-5.9-19.1v-.8c-6.3 3.2-11 8.1-11 15.9 0 17.3 10.3 32.2 25.1 38.8.1 0 .1 0 .1-.1M140 55.4c-1.9 5.4-7.1 9.4-13.2 9.4-3.3 0-6.3-1.1-8.6-3-4.9 3.8-8.6 9-10.9 14.9 1 1.1 2.1 2.1 3.2 3.1 3.4.9 7 1.4 10.7 1.4 14.9 0 28.1-7.7 35.7-19.4-5-3.6-10.9-5.9-16.9-6.4"}),c.jsx("path",{fill:"#FFF",d:"m140.5 51.8 12.9-3.1-13-.7 10.6-8-12 4.3 8.1-11.3-11.3 7.5 3.9-13.2-7.7 10.9-.2-13.8-5.1 12.3-4.2-12.4.2 14.6-7.3-13.1 4 13.9-11.9-8.6 9.3 11.7-14.8-5.4 11.6 8.6-14.9.5 15.3 3.9-15.3 3.3 15.1 1.1-12.7 8.1 13.1-4.7-9.1 11.5 11.5-9.3-4.1 15.4 8.9-12.6-1.2 14.8 5-13.5 4.3 14.1 1-14.2 6.4 12.1-3.8-13.8 11.6 9-7.5-11.5 12.8 5-9.8-9.6 13.1 1-12.8-4.8Z"}),c.jsx("path",{fill:"#373535",fillOpacity:".35",d:"M2.8 76.5C42.9 36.4 74.9 24 104 18.4c3.8-.7 4.6-9.2 4.6-9.2s.5 6.2 3.2 7c2.7.8 6.2-9.7 6.2-9.7s-3.2 9.4 0 10c3.2.5 9.2-9.2 9.2-9.2s-2.4 8.3-.8 8.9c1.6.5 9.7-12.1 9.7-12.1s-4.8 8.3-.3 9.2c4.6.8 11.3-5.7 11.3-5.7s-5.2 5.9-2.9 6.8c10 3.5 18-9.4 18-9.4s-1.9 5.7-6.7 11.9c10.5 2.7 18.3-13.1 18.3-13.1L166 19.6c4 2 20.1-16.6 20.1-16.6s-8.3 14.5-13.2 17.5c2.7 2.2 12.4-6.5 12.4-6.5s-7.8 9.7-4.8 10.2c4.3 3.5 20.2-18 20.2-18s-6.2 12.7-15.3 22.6C193 32.7 212 8.2 212 8.2s-.5 7.8-14.3 20.2c10.2-1.3 23.4-20.7 23.4-20.7s-4.8 14.5-16.4 24.8c10-1 26.1-25.8 26.1-25.8s-6.2 17.2-18.8 27.2c14 3.1 34.2-17.8 34.2-17.8s-7.9 14.8-18.3 20.9c11.6 4.4 27.5-13.9 27.5-13.9s-15.9 24.5-41.2 23.4c-8.3-.4-33.4-25.2-87.2-23.2C55.8 25.9 40.8 56.1 2.8 76.5"}),c.jsx("path",{fill:"#373535",d:"M4.4 73.5C44.5 33.4 76.5 21 105.6 15.4c3.8-.7 4.6-9.2 4.6-9.2s.5 6.2 3.2 7c2.7.8 6.2-9.7 6.2-9.7s-3.2 9.4 0 10c3.2.5 9.2-9.2 9.2-9.2s-2.4 8.3-.8 8.9c1.6.5 9.7-12.1 9.7-12.1s-4.8 8.3-.3 9.2c4.6.8 11.3-5.7 11.3-5.7s-5.2 5.9-2.9 6.8c10 3.5 18-9.4 18-9.4s-1.9 5.7-6.7 11.9C167.6 16.6 175.4.8 175.4.8l-7.8 15.8c4 2.2 20.2-16.4 20.2-16.4s-8.3 14.5-13.2 17.5C177.3 19.6 187 11 187 11s-7.8 9.7-4.8 10.2c4.3 3.5 20.2-18 20.2-18s-6.3 12.7-15.4 22.6c7.6 3.8 26.7-20.7 26.7-20.7s-.5 7.8-14.3 20.2c10.2-1.3 23.4-20.7 23.4-20.7s-4.8 14.5-16.4 24.8c10-1 26.1-25.8 26.1-25.8s-6.2 17.2-18.8 27.2c14 3.1 34.2-17.8 34.2-17.8s-7.9 14.8-18.3 20.9c11.6 4.4 27.5-13.9 27.5-13.9s-15.9 24.5-41.2 23.4c-8.3-.4-33.4-25.2-87.2-23.2C57.5 22.9 42.4 53 4.4 73.5"}),c.jsx("path",{fill:"#373535",fillOpacity:".35",d:"M1.8 80.9c21.2 10.6 40.6-1.6 65 5.3 18.6 5.2 41.2 11.7 71.9 7.2 30.7-4.4 56.9-17.8 69.5-41.6 3.9-10.6 19.8 2.4 19.8 2.4s-11.6-4.8-11.3-2.6c.3 2.3 17.4 10.2 17.4 10.2s-15.5-4.8-14.5-1.2c.9 3.6 19.4 18.2 19.4 18.2S217.9 63 216.2 65.2c-1.8 2.2 8.9 10.9 8.9 10.9s-17.6-10.9-23.8-7.7c-4.5 2.3 18.3 17.2 18.3 17.2s-14.8-11.3-18.3-8.3 16.7 27.2 16.7 27.2-23-24.8-25.3-23.6C190.4 82.1 199 94 199 94s-11.2-12.4-14.3-10.3c-3.1 2.2 16.2 34.3 16.2 34.3S180 85.1 171.3 90.6c13.5 29.7 8.5 33.9 8.5 33.9s-1.7-30.3-18.6-29.5c-8.5.4 4 22.6 4 22.6S153.7 97.3 146 97.7c14.1 26.8 9.1 37.6 9.1 37.6s2.3-22.9-16.8-35.6c7.3 6.5-4.6 35.6-4.6 35.6s10.4-42.9-7.7-34.7c-2.9 1.3-.2 21.4-.2 21.4s-3.6-23-9.1-21.8c-3.2.7-20.2 31.9-20.2 31.9s13.9-33.7 9.7-32.3c-3.1 1-8.9 14.9-8.9 14.9s2.8-13.7 0-14.5c-2.8-.8-18.6 14.5-18.6 14.5s11.7-13.7 9.7-16.6c-3.1-4.3-6.6-4.5-10.9-2.8C71.3 97.7 63 109 63 109s8.3-11.5 6.9-15.7c-2.3-6.9-26.2 13.3-26.2 13.3s14.1-13.3 10.9-16.2c-3.2-2.8-20.8-2-26.2-2-16.1.2-21.7-3.6-26.6-7.5"}),c.jsx("path",{fill:"#373535",d:"M.9 78.5c21.2 10.6 40.6-1.6 65 5.3 18.6 5.2 41.2 11.7 71.9 7.2 30.7-4.4 56.9-17.8 69.5-41.6 3.9-10.6 19.8 2.4 19.8 2.4s-11.6-4.8-11.3-2.6c.3 2.3 17.4 10.2 17.4 10.2s-15.5-4.8-14.5-1.2c.9 3.6 19.4 18.2 19.4 18.2s-20.9-15.9-22.6-13.7c-1.7 2.2 8.9 10.9 8.9 10.9s-17.6-10.9-23.8-7.7c-4.5 2.3 18.3 17.2 18.3 17.2s-14.8-11.3-18.3-8.3 16.7 27.2 16.7 27.2-22.9-24.8-25.2-23.6c-2.3 1.2 6.3 13.1 6.3 13.1S187 79.2 183.9 81.3c-3.1 2.2 16.1 34.3 16.1 34.3s-20.9-33-29.5-27.5c13.6 29.8 8.5 34 8.5 34s-1.7-30.3-18.6-29.5c-8.5.4 4 22.6 4 22.6S153 95 145.3 95.4c14.1 26.8 9.1 37.6 9.1 37.6s2.3-22.9-16.8-35.6c7.3 6.5-4.6 35.6-4.6 35.6s10.4-42.9-7.7-34.7c-2.9 1.3-.2 21.4-.2 21.4s-3.6-23-9.1-21.8c-3.2.7-20.2 31.9-20.2 31.9s13.9-33.7 9.7-32.3c-3.1 1-8.9 14.9-8.9 14.9s2.8-13.7 0-14.5c-2.8-.8-18.6 14.5-18.6 14.5s11.7-13.7 9.7-16.6c-3.1-4.3-6.6-4.5-10.9-2.8-6.2 2.4-14.5 13.7-14.5 13.7s8.3-11.5 6.9-15.7C66.9 84.1 43 104.3 43 104.3S57.1 91 53.9 88.1c-3.2-2.8-20.8-2-26.2-2-16.3.1-21.9-3.7-26.8-7.6"})]}),M=t.forwardRef((s,l)=>c.jsx(a,{ref:l,...s}));export{M as CassandraIcon};
|