From 36e2264211ea75320bc256f0692f02e997da6876 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Mon, 27 May 2024 07:38:14 +0000 Subject: [PATCH 01/54] Initial commit with edited code --- src/fastapi_app/postgres_engine.py | 3 +- src/fastapi_app/postgres_models.py | 64 +++++++++++++++++++++++++--- src/fastapi_app/postgres_searcher.py | 14 +++--- src/fastapi_app/prompts/answer.txt | 18 ++++---- src/fastapi_app/prompts/query.txt | 4 +- src/fastapi_app/query_rewriter.py | 46 ++++++++++---------- src/fastapi_app/rag_advanced.py | 2 +- 7 files changed, 101 insertions(+), 50 deletions(-) diff --git a/src/fastapi_app/postgres_engine.py b/src/fastapi_app/postgres_engine.py index 54d159e5..8027e9c1 100644 --- a/src/fastapi_app/postgres_engine.py +++ b/src/fastapi_app/postgres_engine.py @@ -17,11 +17,12 @@ async def create_postgres_engine(*, host, username, database, password, sslmode, else: logger.info("Authenticating to PostgreSQL using password...") - DATABASE_URI = f"postgresql+asyncpg://{username}:{password}@{host}/{database}" + DATABASE_URI = f"postgresql+asyncpg://{username}:{password}@{host}:5432/{database}" # Specify SSL mode if needed if sslmode: DATABASE_URI += f"?ssl={sslmode}" + engine = create_async_engine( DATABASE_URI, echo=False, diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index fe7d8796..f719e69f 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -13,13 +13,47 @@ class Base(DeclarativeBase, MappedAsDataclass): class Item(Base): - __tablename__ = "items" + __tablename__ = "packages" id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True) - type: Mapped[str] = mapped_column() - brand: Mapped[str] = mapped_column() - name: Mapped[str] = mapped_column() - description: Mapped[str] = mapped_column() + package_name: Mapped[str] = mapped_column() + package_picture: Mapped[str] = mapped_column() + url: Mapped[str] = mapped_column() price: Mapped[float] = mapped_column() + cash_discount: Mapped[float] = mapped_column() + installment_month: Mapped[str] = mapped_column() + installment_limit: Mapped[str] = mapped_column() + price_to_reserve_for_this_package: Mapped[str] = mapped_column() + shop_name: Mapped[str] = mapped_column() + category: Mapped[str] = mapped_column() + category_tags: Mapped[str] = mapped_column() + preview_1_10: Mapped[str] = mapped_column() + selling_point: Mapped[str] = mapped_column() + meta_keywords: Mapped[str] = mapped_column() + brand: Mapped[str] = mapped_column() + min_max_age: Mapped[str] = mapped_column() + locations_time_open_close_how_to_transport_parking_google_maps: Mapped[str] = mapped_column() + meta_description: Mapped[str] = mapped_column() + price_details: Mapped[str] = mapped_column() + package_details: Mapped[str] = mapped_column() + important_info: Mapped[str] = mapped_column() + payment_booking_info: Mapped[str] = mapped_column() + general_info: Mapped[str] = mapped_column() + early_signs_for_diagnosis: Mapped[str] = mapped_column() + how_to_diagnose: Mapped[str] = mapped_column() + hdcare_summary: Mapped[str] = mapped_column() + common_question: Mapped[str] = mapped_column() + know_this_disease: Mapped[str] = mapped_column() + courses_of_action: Mapped[str] = mapped_column() + signals_to_proceed_surgery: Mapped[str] = mapped_column() + get_to_know_this_surgery: Mapped[str] = mapped_column() + comparisons: Mapped[str] = mapped_column() + getting_ready: Mapped[str] = mapped_column() + recovery: Mapped[str] = mapped_column() + side_effects: Mapped[str] = mapped_column() + review_4_5_stars: Mapped[str] = mapped_column() + brand_option_in_thai_name: Mapped[str] = mapped_column() + brand_ranking_position: Mapped[str] = mapped_column() + faq: Mapped[str] = mapped_column() embedding: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 def to_dict(self, include_embedding: bool = False): @@ -31,10 +65,26 @@ def to_dict(self, include_embedding: bool = False): return model_dict def to_str_for_rag(self): - return f"Name:{self.name} Description:{self.description} Price:{self.price} Brand:{self.brand} Type:{self.type}" + return f"""package_name: {self.package_name} +package_picture: {self.package_picture} +url: {self.url} +price: {self.price} +cash_discount: {self.cash_discount} +installment_month: {self.installment_month} +installment_limit: {self.installment_limit} +price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} +brand: {self.brand} +price_details: {self.price_details} +package_details: {self.package_details} +important_info: {self.important_info} +payment_booking_info: {self.payment_booking_info} +general_info: {self.general_info} +brand_ranking_position: {self.brand_ranking_position} +faq: {self.faq} +""" def to_str_for_embedding(self): - return f"Name: {self.name} Description: {self.description} Type: {self.type}" + return f"Name: {self.package_name} Description: {self.package_details} Type: {self.meta_keywords}" # Define HNSW index to support vector similarity search through the vector_cosine_ops access method (cosine distance). diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 5d13650e..90642912 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -46,19 +46,19 @@ async def search( vector_query = f""" SELECT id, RANK () OVER (ORDER BY embedding <=> :embedding) AS rank - FROM items + FROM packages {filter_clause_where} ORDER BY embedding <=> :embedding LIMIT 20 """ fulltext_query = f""" - SELECT id, RANK () OVER (ORDER BY ts_rank_cd(to_tsvector('english', description), query) DESC) - FROM items, plainto_tsquery('english', :query) query - WHERE to_tsvector('english', description) @@ query {filter_clause_and} - ORDER BY ts_rank_cd(to_tsvector('english', description), query) DESC - LIMIT 20 - """ + SELECT id, RANK () OVER (ORDER BY ts_rank_cd(to_tsvector('thai', package_details), query) DESC) + FROM packages, plainto_tsquery('thai', :query) query + WHERE to_tsvector('thai', package_details) @@ query {filter_clause_and} + ORDER BY ts_rank_cd(to_tsvector('thai', package_details), query) DESC + LIMIT 20 + """ hybrid_query = f""" WITH vector_search AS ( diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index 9d8878b1..6e50b547 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -1,9 +1,9 @@ -Assistant helps customers with questions about products. -Respond as if you are a salesperson helping a customer in a store. Do NOT respond with tables. -Answer ONLY with the product details listed in the products. -If there isn't enough information below, say you don't know. -Do not generate answers that don't use the sources below. -Each product has an ID in brackets followed by colon and the product details. -Always include the product ID for each product you use in the response. -Use square brackets to reference the source, for example [52]. -Don't combine citations, list each product separately, for example [27][51]. \ No newline at end of file +You are a woman name Jib (จิ๊บ), a sales consultant from HDmall which you need to convince the customers to buy some products from our store name HDmall, Please answer in casual and friendly manner. Don't recommend any product yet on the first conversation before the customer asking. You can use Emoji to make the conversation more friendly if you want. +Represent youself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai language. +Represent youself as Jib and the customer as you when the conversation is in English language. +When the customer asks about any packages, please make sure to provide brand, price , URL and location every time. +For EVERY URL that you provided, create a new line then wrap it with so the user can open it via UI +If customer wants to talk with admin, please provide the URL link in the datasource. +If the user is asking a question regarding location, proximity, or area, query relevant document from the source and ask where the user is at. please try to suggest services or answers closest to the location the user is asking as much as possible. +Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know. Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. +Each source has a name followed by colon and the actual information, always include the source name for each fact you use in the response. Use square brackets to reference the source, for example [info1.txt]. Don't combine sources, list each source separately, for example [info1.txt][info2.pdf]. \ No newline at end of file diff --git a/src/fastapi_app/prompts/query.txt b/src/fastapi_app/prompts/query.txt index 672b03be..04a0c7b6 100644 --- a/src/fastapi_app/prompts/query.txt +++ b/src/fastapi_app/prompts/query.txt @@ -1,6 +1,6 @@ Below is a history of the conversation so far, and a new question asked by the user that needs to be answered by searching database rows. -You have access to an Azure PostgreSQL database with an items table that has columns for title, description, brand, price, and type. +You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, installment_limit, price_to_reserve_for_this_package, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations_time_open_close_how_to_transport_parking_google_maps, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. Generate a search query based on the conversation and the new question. -If the question is not in English, translate the question to English before generating the search query. +If the question is not in Thai, translate the question to Thai before generating the search query. If you cannot generate a search query, return the original user question. DO NOT return anything besides the query. \ No newline at end of file diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 7eef8989..78794b97 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -34,20 +34,20 @@ def build_search_function() -> list[ChatCompletionToolParam]: }, }, }, - "brand_filter": { - "type": "object", - "description": "Filter search results based on brand of the product", - "properties": { - "comparison_operator": { - "type": "string", - "description": "Operator to compare the column value, either '==' or '!='", - }, - "value": { - "type": "string", - "description": "Value to compare against, e.g. AirStrider", - }, - }, - }, + # "brand_filter": { + # "type": "object", + # "description": "Filter search results based on brand of the product", + # "properties": { + # "comparison_operator": { + # "type": "string", + # "description": "Operator to compare the column value, either '==' or '!='", + # }, + # "value": { + # "type": "string", + # "description": "Value to compare against, e.g. AirStrider", + # }, + # }, + # }, }, "required": ["search_query"], }, @@ -77,15 +77,15 @@ def extract_search_arguments(chat_completion: ChatCompletion): "value": price_filter["value"], } ) - if "brand_filter" in arg and arg["brand_filter"]: - brand_filter = arg["brand_filter"] - filters.append( - { - "column": "brand", - "comparison_operator": brand_filter["comparison_operator"], - "value": brand_filter["value"], - } - ) + # if "brand_filter" in arg and arg["brand_filter"]: + # brand_filter = arg["brand_filter"] + # filters.append( + # { + # "column": "brand", + # "comparison_operator": brand_filter["comparison_operator"], + # "value": brand_filter["value"], + # } + # ) elif query_text := response_message.content: search_query = query_text.strip() return search_query, filters diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 426ae996..2c3d027c 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -71,7 +71,7 @@ async def run( results = await self.searcher.search_and_embed( query_text, top=top, - enable_vector_search=vector_search, + # enable_vector_search=vector_search, enable_text_search=text_search, filters=filters, ) From 64da932a87ea324ae9ad381b108c3f74ba515f6c Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Tue, 28 May 2024 02:48:53 +0000 Subject: [PATCH 02/54] fix indentation --- src/fastapi_app/postgres_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index f719e69f..049c24bb 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -65,7 +65,7 @@ def to_dict(self, include_embedding: bool = False): return model_dict def to_str_for_rag(self): - return f"""package_name: {self.package_name} + return f"""package_name: {self.package_name} package_picture: {self.package_picture} url: {self.url} price: {self.price} From 4f371d005c0f642176bd37e5ff1843c6b4483967 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Tue, 28 May 2024 07:00:56 +0000 Subject: [PATCH 03/54] fix data type of brand_ranking_position column of packages --- src/fastapi_app/postgres_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 049c24bb..7716125b 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -52,7 +52,7 @@ class Item(Base): side_effects: Mapped[str] = mapped_column() review_4_5_stars: Mapped[str] = mapped_column() brand_option_in_thai_name: Mapped[str] = mapped_column() - brand_ranking_position: Mapped[str] = mapped_column() + brand_ranking_position: Mapped[int] = mapped_column() faq: Mapped[str] = mapped_column() embedding: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 From f9efcb26d82123988eed5f2fd6aa8ab729992c15 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Tue, 28 May 2024 09:32:50 +0000 Subject: [PATCH 04/54] fix fulltext search --- src/fastapi_app/postgres_searcher.py | 115 ++++++++++++++++++++++++++- 1 file changed, 112 insertions(+), 3 deletions(-) diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 90642912..b377b5f4 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -53,10 +53,119 @@ async def search( """ fulltext_query = f""" - SELECT id, RANK () OVER (ORDER BY ts_rank_cd(to_tsvector('thai', package_details), query) DESC) + SELECT id, RANK () OVER (ORDER BY ts_rank_cd( + to_tsvector('thai', COALESCE(package_name, '')) || + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')), query) DESC) FROM packages, plainto_tsquery('thai', :query) query - WHERE to_tsvector('thai', package_details) @@ query {filter_clause_and} - ORDER BY ts_rank_cd(to_tsvector('thai', package_details), query) DESC + WHERE ( + to_tsvector('thai', COALESCE(package_name, '')) || + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')) + ) @@ query {filter_clause_and} + ORDER BY ts_rank_cd( + to_tsvector('thai', COALESCE(package_name, '')) || + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')), query) DESC LIMIT 20 """ From 2a170e7cf6ee7b235d24897efb11609c395169ea Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Thu, 30 May 2024 05:03:35 +0000 Subject: [PATCH 05/54] enable vector search on package_name and package_details columns --- src/fastapi_app/get_token.py | 13 +++++++++++++ src/fastapi_app/postgres_models.py | 2 +- src/fastapi_app/rag_advanced.py | 2 +- src/fastapi_app/update_embeddings.py | 9 ++++++--- 4 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 src/fastapi_app/get_token.py diff --git a/src/fastapi_app/get_token.py b/src/fastapi_app/get_token.py new file mode 100644 index 00000000..688911ab --- /dev/null +++ b/src/fastapi_app/get_token.py @@ -0,0 +1,13 @@ +import asyncio +import os + +from azure.identity import DefaultAzureCredential + +async def get_token(): + credential = DefaultAzureCredential() + token = credential.get_token("https://ossrdbms-aad.database.windows.net/.default") + return token.token + + +token = asyncio.run(get_token()) +print(token) \ No newline at end of file diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 7716125b..8db9602c 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -84,7 +84,7 @@ def to_str_for_rag(self): """ def to_str_for_embedding(self): - return f"Name: {self.package_name} Description: {self.package_details} Type: {self.meta_keywords}" + return f"Name: {self.package_name} Description: {self.package_details}" # Define HNSW index to support vector similarity search through the vector_cosine_ops access method (cosine distance). diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 2c3d027c..426ae996 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -71,7 +71,7 @@ async def run( results = await self.searcher.search_and_embed( query_text, top=top, - # enable_vector_search=vector_search, + enable_vector_search=vector_search, enable_text_search=text_search, filters=filters, ) diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 4a8d80d7..8813f1ef 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -1,18 +1,21 @@ import asyncio +from azure.identity.aio import DefaultAzureCredential from dotenv import load_dotenv from sqlalchemy import select from sqlalchemy.ext.asyncio import async_sessionmaker from fastapi_app.embeddings import compute_text_embedding from fastapi_app.openai_clients import create_openai_embed_client -from fastapi_app.postgres_engine import create_postgres_engine +from fastapi_app.postgres_engine import create_postgres_engine_from_env from fastapi_app.postgres_models import Item +load_dotenv() async def update_embeddings(): - engine = await create_postgres_engine() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client() + engine = await create_postgres_engine_from_env() + azure_credential = DefaultAzureCredential() + openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) async with async_sessionmaker(engine, expire_on_commit=False)() as session: async with session.begin(): From 1cffab345ab56cee81702c11a25314e0813aaf1f Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Thu, 30 May 2024 06:04:38 +0000 Subject: [PATCH 06/54] clean some codes --- src/fastapi_app/get_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/get_token.py b/src/fastapi_app/get_token.py index 688911ab..e9f5b2be 100644 --- a/src/fastapi_app/get_token.py +++ b/src/fastapi_app/get_token.py @@ -1,8 +1,8 @@ import asyncio -import os from azure.identity import DefaultAzureCredential + async def get_token(): credential = DefaultAzureCredential() token = credential.get_token("https://ossrdbms-aad.database.windows.net/.default") From c0d635a3574729edba4d85c99c781cc735176058 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Thu, 30 May 2024 08:02:14 +0000 Subject: [PATCH 07/54] clean some code --- src/fastapi_app/update_embeddings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 8813f1ef..72cbd282 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -15,7 +15,8 @@ async def update_embeddings(): engine = await create_postgres_engine_from_env() azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) + openai_embed_client, openai_embed_model, openai_embed_dimensions \ + = await create_openai_embed_client(azure_credential) async with async_sessionmaker(engine, expire_on_commit=False)() as session: async with session.begin(): From d2da7d3e7cab8aa9b776ebd7a5b0d33dc1568e46 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Tue, 4 Jun 2024 04:49:21 +0000 Subject: [PATCH 08/54] create vector search across all columns --- src/fastapi_app/postgres_models.py | 494 ++++++++++++++++++++++++++- src/fastapi_app/postgres_searcher.py | 62 +++- src/fastapi_app/prompts/query.txt | 2 +- src/fastapi_app/update_embeddings.py | 53 ++- 4 files changed, 578 insertions(+), 33 deletions(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 8db9602c..903fd52a 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -31,7 +31,7 @@ class Item(Base): meta_keywords: Mapped[str] = mapped_column() brand: Mapped[str] = mapped_column() min_max_age: Mapped[str] = mapped_column() - locations_time_open_close_how_to_transport_parking_google_maps: Mapped[str] = mapped_column() + locations: Mapped[str] = mapped_column() meta_description: Mapped[str] = mapped_column() price_details: Mapped[str] = mapped_column() package_details: Mapped[str] = mapped_column() @@ -54,14 +54,128 @@ class Item(Base): brand_option_in_thai_name: Mapped[str] = mapped_column() brand_ranking_position: Mapped[int] = mapped_column() faq: Mapped[str] = mapped_column() - embedding: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 + embedding_package_name: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 + embedding_package_picture: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_url: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_installment_month: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_installment_limit: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_price_to_reserve_for_this_package: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_shop_name: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_category: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_category_tags: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_preview_1_10: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_selling_point: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_meta_keywords: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_brand: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_min_max_age: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_locations: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_meta_description: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_price_details: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_package_details: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_important_info: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_payment_booking_info: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_general_info: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_early_signs_for_diagnosis: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_how_to_diagnose: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_hdcare_summary: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_common_question: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_know_this_disease: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_courses_of_action: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_signals_to_proceed_surgery: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_get_to_know_this_surgery: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_comparisons: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_getting_ready: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_recovery: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_side_effects: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_review_4_5_stars: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_brand_option_in_thai_name: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_faq: Mapped[Vector] = mapped_column(Vector(1536)) def to_dict(self, include_embedding: bool = False): model_dict = asdict(self) if include_embedding: - model_dict["embedding"] = model_dict["embedding"].tolist() + embedding_columns = [ + "embedding_package_name", + "embedding_package_picture", + "embedding_url", + "embedding_installment_month", + "embedding_installment_limit", + "embedding_price_to_reserve_for_this_package", + "embedding_shop_name", + "embedding_category", + "embedding_category_tags", + "embedding_preview_1_10", + "embedding_selling_point", + "embedding_meta_keywords", + "embedding_brand", + "embedding_min_max_age", + "embedding_locations", + "embedding_meta_description", + "embedding_price_details", + "embedding_package_details", + "embedding_important_info", + "embedding_payment_booking_info", + "embedding_general_info", + "embedding_early_signs_for_diagnosis", + "embedding_how_to_diagnose", + "embedding_hdcare_summary", + "embedding_common_question", + "embedding_know_this_disease", + "embedding_courses_of_action", + "embedding_signals_to_proceed_surgery", + "embedding_get_to_know_this_surgery", + "embedding_comparisons", + "embedding_getting_ready", + "embedding_recovery", + "embedding_side_effects", + "embedding_review_4_5_stars", + "embedding_brand_option_in_thai_name", + "embedding_faq", + ] + for col in embedding_columns: + model_dict[col] = model_dict[col].tolist() else: - del model_dict["embedding"] + # Remove embedding columns if not included + embedding_columns = [ + "embedding_package_name", + "embedding_package_picture", + "embedding_url", + "embedding_installment_month", + "embedding_installment_limit", + "embedding_price_to_reserve_for_this_package", + "embedding_shop_name", + "embedding_category", + "embedding_category_tags", + "embedding_preview_1_10", + "embedding_selling_point", + "embedding_meta_keywords", + "embedding_brand", + "embedding_min_max_age", + "embedding_locations", + "embedding_meta_description", + "embedding_price_details", + "embedding_package_details", + "embedding_important_info", + "embedding_payment_booking_info", + "embedding_general_info", + "embedding_early_signs_for_diagnosis", + "embedding_how_to_diagnose", + "embedding_hdcare_summary", + "embedding_common_question", + "embedding_know_this_disease", + "embedding_courses_of_action", + "embedding_signals_to_proceed_surgery", + "embedding_get_to_know_this_surgery", + "embedding_comparisons", + "embedding_getting_ready", + "embedding_recovery", + "embedding_side_effects", + "embedding_review_4_5_stars", + "embedding_brand_option_in_thai_name", + "embedding_faq", + ] + for col in embedding_columns: + del model_dict[col] return model_dict def to_str_for_rag(self): @@ -83,15 +197,367 @@ def to_str_for_rag(self): faq: {self.faq} """ - def to_str_for_embedding(self): - return f"Name: {self.package_name} Description: {self.package_details}" + def to_str_for_embedding_package_name(self): + return f"Package Name: {self.package_name}" if self.package_name else "" + def to_str_for_embedding_package_picture(self): + return f"Package Picture: {self.package_picture}" if self.package_picture else "" -# Define HNSW index to support vector similarity search through the vector_cosine_ops access method (cosine distance). -index = Index( - "hnsw_index_for_innerproduct_item_embedding", - Item.embedding, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding": "vector_ip_ops"}, -) + def to_str_for_embedding_url(https://github.com/self): + return f"URL: {self.url}" if self.url else "" + + def to_str_for_embedding_installment_month(self): + return f"Installment Month: {self.installment_month}" if self.installment_month else "" + + def to_str_for_embedding_installment_limit(self): + return f"Installment Limit: {self.installment_limit}" if self.installment_limit else "" + + def to_str_for_embedding_price_to_reserve_for_this_package(self): + return f"Price to Reserve for This Package: {self.price_to_reserve_for_this_package}" if self.price_to_reserve_for_this_package else "" + + def to_str_for_embedding_shop_name(self): + return f"Shop Name: {self.shop_name}" if self.shop_name else "" + + def to_str_for_embedding_category(self): + return f"Category: {self.category}" if self.category else "" + + def to_str_for_embedding_category_tags(self): + return f"Category Tags: {self.category_tags}" if self.category_tags else "" + + def to_str_for_embedding_preview_1_10(self): + return f"Preview 1-10: {self.preview_1_10}" if self.preview_1_10 else "" + + def to_str_for_embedding_selling_point(self): + return f"Selling Point: {self.selling_point}" if self.selling_point else "" + + def to_str_for_embedding_meta_keywords(self): + return f"Meta Keywords: {self.meta_keywords}" if self.meta_keywords else "" + + def to_str_for_embedding_brand(self): + return f"Brand: {self.brand}" if self.brand else "" + + def to_str_for_embedding_min_max_age(self): + return f"Min-Max Age: {self.min_max_age}" if self.min_max_age else "" + + def to_str_for_embedding_locations(self): + return f"Locations: {self.locations}" if self.locations else "" + + def to_str_for_embedding_meta_description(self): + return f"Meta Description: {self.meta_description}" if self.meta_description else "" + + def to_str_for_embedding_price_details(self): + return f"Price Details: {self.price_details}" if self.price_details else "" + + def to_str_for_embedding_package_details(self): + return f"Package Details: {self.package_details}" if self.package_details else "" + + def to_str_for_embedding_important_info(self): + return f"Important Info: {self.important_info}" if self.important_info else "" + + def to_str_for_embedding_payment_booking_info(self): + return f"Payment Booking Info: {self.payment_booking_info}" if self.payment_booking_info else "" + + def to_str_for_embedding_general_info(self): + return f"General Info: {self.general_info}" if self.general_info else "" + + def to_str_for_embedding_early_signs_for_diagnosis(self): + return f"Early Signs for Diagnosis: {self.early_signs_for_diagnosis}" if self.early_signs_for_diagnosis else "" + + def to_str_for_embedding_how_to_diagnose(self): + return f"How to Diagnose: {self.how_to_diagnose}" if self.how_to_diagnose else "" + + def to_str_for_embedding_hdcare_summary(self): + return f"Hdcare Summary: {self.hdcare_summary}" if self.hdcare_summary else "" + + def to_str_for_embedding_common_question(self): + return f"Common Question: {self.common_question}" if self.common_question else "" + + def to_str_for_embedding_know_this_disease(self): + return f"Know This Disease: {self.know_this_disease}" if self.know_this_disease else "" + + def to_str_for_embedding_courses_of_action(self): + return f"Courses of Action: {self.courses_of_action}" if self.courses_of_action else "" + + def to_str_for_embedding_signals_to_proceed_surgery(self): + return f"Signals to Proceed Surgery: {self.signals_to_proceed_surgery}" if self.signals_to_proceed_surgery else "" + + def to_str_for_embedding_get_to_know_this_surgery(self): + return f"Get to Know This Surgery: {self.get_to_know_this_surgery}" if self.get_to_know_this_surgery else "" + + def to_str_for_embedding_comparisons(self): + return f"Comparisons: {self.comparisons}" if self.comparisons else "" + + def to_str_for_embedding_getting_ready(self): + return f"Getting Ready: {self.getting_ready}" if self.getting_ready else "" + + def to_str_for_embedding_recovery(self): + return f"Recovery: {self.recovery}" if self.recovery else "" + + def to_str_for_embedding_side_effects(self): + return f"Side Effects: {self.side_effects}" if self.side_effects else "" + + def to_str_for_embedding_review_4_5_stars(self): + return f"Review 4-5 Stars: {self.review_4_5_stars}" if self.review_4_5_stars else "" + + def to_str_for_embedding_brand_option_in_thai_name(self): + return f"Brand Option in Thai Name: {self.brand_option_in_thai_name}" if self.brand_option_in_thai_name else "" + + def to_str_for_embedding_faq(self): + return f"FAQ: {self.faq}" if self.faq else "" + + +# Define HNSW indices to support vector similarity search for each embedding column +indices = [ + Index( + "hnsw_index_for_embedding_package_name", + Item.embedding_package_name, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_package_name": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_package_picture", + Item.embedding_package_picture, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_package_picture": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_url", + Item.embedding_url, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_url": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_installment_month", + Item.embedding_installment_month, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_installment_month": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_installment_limit", + Item.embedding_installment_limit, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_installment_limit": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_price_to_reserve_for_this_package", + Item.embedding_price_to_reserve_for_this_package, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_price_to_reserve_for_this_package": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_shop_name", + Item.embedding_shop_name, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_shop_name": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_category", + Item.embedding_category, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_category": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_category_tags", + Item.embedding_category_tags, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_category_tags": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_preview_1_10", + Item.embedding_preview_1_10, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_preview_1_10": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_selling_point", + Item.embedding_selling_point, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_selling_point": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_meta_keywords", + Item.embedding_meta_keywords, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_meta_keywords": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_brand", + Item.embedding_brand, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_brand": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_min_max_age", + Item.embedding_min_max_age, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_min_max_age": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_locations", + Item.embedding_locations, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_locations": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_meta_description", + Item.embedding_meta_description, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_meta_description": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_price_details", + Item.embedding_price_details, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_price_details": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_package_details", + Item.embedding_package_details, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_package_details": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_important_info", + Item.embedding_important_info, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_important_info": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_payment_booking_info", + Item.embedding_payment_booking_info, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_payment_booking_info": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_general_info", + Item.embedding_general_info, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_general_info": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_early_signs_for_diagnosis", + Item.embedding_early_signs_for_diagnosis, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_early_signs_for_diagnosis": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_how_to_diagnose", + Item.embedding_how_to_diagnose, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_how_to_diagnose": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_hdcare_summary", + Item.embedding_hdcare_summary, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_hdcare_summary": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_common_question", + Item.embedding_common_question, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_common_question": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_know_this_disease", + Item.embedding_know_this_disease, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_know_this_disease": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_courses_of_action", + Item.embedding_courses_of_action, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_courses_of_action": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_signals_to_proceed_surgery", + Item.embedding_signals_to_proceed_surgery, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_signals_to_proceed_surgery": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_get_to_know_this_surgery", + Item.embedding_get_to_know_this_surgery, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_get_to_know_this_surgery": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_comparisons", + Item.embedding_comparisons, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_comparisons": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_getting_ready", + Item.embedding_getting_ready, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_getting_ready": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_recovery", + Item.embedding_recovery, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_recovery": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_side_effects", + Item.embedding_side_effects, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_side_effects": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_review_4_5_stars", + Item.embedding_review_4_5_stars, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_review_4_5_stars": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_brand_option_in_thai_name", + Item.embedding_brand_option_in_thai_name, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_brand_option_in_thai_name": "vector_ip_ops"}, + ), + Index( + "hnsw_index_for_embedding_faq", + Item.embedding_faq, + postgresql_using="hnsw", + postgresql_with={"m": 16, "ef_construction": 64}, + postgresql_ops={"embedding_faq": "vector_ip_ops"}, + ), +] diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index b377b5f4..c9d422d6 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -45,11 +45,59 @@ async def search( filter_clause_where, filter_clause_and = self.build_filter_clause(filters) vector_query = f""" - SELECT id, RANK () OVER (ORDER BY embedding <=> :embedding) AS rank - FROM packages + WITH closest_embedding AS ( + SELECT + id, + LEAST( + COALESCE(embedding_package_name <=> :embedding, 1), + COALESCE(embedding_package_picture <=> :embedding, 1), + COALESCE(embedding_url <=> :embedding, 1), + COALESCE(embedding_installment_month <=> :embedding, 1), + COALESCE(embedding_installment_limit <=> :embedding, 1), + COALESCE(embedding_price_to_reserve_for_this_package <=> :embedding, 1), + COALESCE(embedding_shop_name <=> :embedding, 1), + COALESCE(embedding_category <=> :embedding, 1), + COALESCE(embedding_category_tags <=> :embedding, 1), + COALESCE(embedding_preview_1_10 <=> :embedding, 1), + COALESCE(embedding_selling_point <=> :embedding, 1), + COALESCE(embedding_meta_keywords <=> :embedding, 1), + COALESCE(embedding_brand <=> :embedding, 1), + COALESCE(embedding_min_max_age <=> :embedding, 1), + COALESCE(embedding_locations <=> :embedding, 1), + COALESCE(embedding_meta_description <=> :embedding, 1), + COALESCE(embedding_price_details <=> :embedding, 1), + COALESCE(embedding_package_details <=> :embedding, 1), + COALESCE(embedding_important_info <=> :embedding, 1), + COALESCE(embedding_payment_booking_info <=> :embedding, 1), + COALESCE(embedding_general_info <=> :embedding, 1), + COALESCE(embedding_early_signs_for_diagnosis <=> :embedding, 1), + COALESCE(embedding_how_to_diagnose <=> :embedding, 1), + COALESCE(embedding_hdcare_summary <=> :embedding, 1), + COALESCE(embedding_common_question <=> :embedding, 1), + COALESCE(embedding_know_this_disease <=> :embedding, 1), + COALESCE(embedding_courses_of_action <=> :embedding, 1), + COALESCE(embedding_signals_to_proceed_surgery <=> :embedding, 1), + COALESCE(embedding_get_to_know_this_surgery <=> :embedding, 1), + COALESCE(embedding_comparisons <=> :embedding, 1), + COALESCE(embedding_getting_ready <=> :embedding, 1), + COALESCE(embedding_recovery <=> :embedding, 1), + COALESCE(embedding_side_effects <=> :embedding, 1), + COALESCE(embedding_review_4_5_stars <=> :embedding, 1), + COALESCE(embedding_brand_option_in_thai_name <=> :embedding, 1), + COALESCE(embedding_faq <=> :embedding, 1) + ) AS min_distance + FROM + packages {filter_clause_where} - ORDER BY embedding <=> :embedding - LIMIT 20 + ) + SELECT + id, + RANK() OVER (ORDER BY min_distance) AS rank + FROM + closest_embedding + ORDER BY + min_distance + LIMIT 20 """ fulltext_query = f""" @@ -68,7 +116,7 @@ async def search( to_tsvector('thai', COALESCE(meta_keywords, '')) || to_tsvector('thai', COALESCE(brand, '')) || to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(locations, '')) || to_tsvector('thai', COALESCE(meta_description, '')) || to_tsvector('thai', COALESCE(price_details, '')) || to_tsvector('thai', COALESCE(package_details, '')) || @@ -106,7 +154,7 @@ async def search( to_tsvector('thai', COALESCE(meta_keywords, '')) || to_tsvector('thai', COALESCE(brand, '')) || to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(locations, '')) || to_tsvector('thai', COALESCE(meta_description, '')) || to_tsvector('thai', COALESCE(price_details, '')) || to_tsvector('thai', COALESCE(package_details, '')) || @@ -144,7 +192,7 @@ async def search( to_tsvector('thai', COALESCE(meta_keywords, '')) || to_tsvector('thai', COALESCE(brand, '')) || to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations_time_open_close_how_to_transport_parking_google_maps, '')) || + to_tsvector('thai', COALESCE(locations, '')) || to_tsvector('thai', COALESCE(meta_description, '')) || to_tsvector('thai', COALESCE(price_details, '')) || to_tsvector('thai', COALESCE(package_details, '')) || diff --git a/src/fastapi_app/prompts/query.txt b/src/fastapi_app/prompts/query.txt index 04a0c7b6..478f80ab 100644 --- a/src/fastapi_app/prompts/query.txt +++ b/src/fastapi_app/prompts/query.txt @@ -1,5 +1,5 @@ Below is a history of the conversation so far, and a new question asked by the user that needs to be answered by searching database rows. -You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, installment_limit, price_to_reserve_for_this_package, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations_time_open_close_how_to_transport_parking_google_maps, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. +You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, installment_limit, price_to_reserve_for_this_package, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. Generate a search query based on the conversation and the new question. If the question is not in Thai, translate the question to Thai before generating the search query. If you cannot generate a search query, return the original user question. diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 72cbd282..90c6f1aa 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -1,9 +1,11 @@ import asyncio +import logging from azure.identity.aio import DefaultAzureCredential from dotenv import load_dotenv from sqlalchemy import select from sqlalchemy.ext.asyncio import async_sessionmaker +from tqdm import tqdm from fastapi_app.embeddings import compute_text_embedding from fastapi_app.openai_clients import create_openai_embed_client @@ -12,27 +14,56 @@ load_dotenv() +# Set up logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +EMBEDDING_FIELDS = [ + 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', + 'price_to_reserve_for_this_package', 'shop_name', 'category', 'category_tags', + 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', + 'locations_time_open_close_how_to_transport_parking_google_maps', 'meta_description', + 'price_details', 'package_details', 'important_info', 'payment_booking_info', + 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', + 'common_question', 'know_this_disease', 'courses_of_action', 'signals_to_proceed_surgery', + 'get_to_know_this_surgery', 'comparisons', 'getting_ready', 'recovery', + 'side_effects', 'review_4_5_stars', 'brand_option_in_thai_name', 'faq' +] + +def get_to_str_method(item, field): + method_name = f"to_str_for_embedding_{field}" + return getattr(item, method_name, None) + async def update_embeddings(): engine = await create_postgres_engine_from_env() azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions \ - = await create_openai_embed_client(azure_credential) + openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) async with async_sessionmaker(engine, expire_on_commit=False)() as session: async with session.begin(): items = (await session.scalars(select(Item))).all() + logger.info(f"Found {len(items)} items to process.") - for item in items: - item.embedding = await compute_text_embedding( - item.to_str_for_embedding(), - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) + for item in tqdm(items, desc="Processing items"): + for field in EMBEDDING_FIELDS: + to_str_method = get_to_str_method(item, field) + if to_str_method: + field_value = to_str_method() + if field_value: + try: + embedding = await compute_text_embedding( + field_value, + openai_client=openai_embed_client, + embed_model=openai_embed_model, + embedding_dimensions=openai_embed_dimensions, + ) + setattr(item, f'embedding_{field}', embedding) + logger.info(f"Updated embedding for {field} of item {item.id}") + except Exception as e: + logger.error(f"Error updating embedding for {field} of item {item.id}: {e}") + session.add(item) await session.commit() - if __name__ == "__main__": - load_dotenv(override=True) asyncio.run(update_embeddings()) From 7461416b2bc764b49afc2fb164f3cecb84b4fead Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:55:27 +0000 Subject: [PATCH 09/54] Change from gpt-3.5 to gpt-4o --- infra/main.bicep | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/infra/main.bicep b/infra/main.bicep index bb1bee6a..050cece0 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -23,6 +23,8 @@ param principalId string = '' 'canadaeast' 'northcentralus' 'southcentralus' + 'eastus' + 'eastus2' ]) @metadata({ azd: { @@ -54,9 +56,9 @@ param azureOpenAiAPIVersion string = '2024-03-01-preview' // https://learn.microsoft.com/en-us/azure/ai-services/openai/quotas-limits param chatDeploymentCapacity int = 0 var chatConfig = { - modelName: !empty(chatModelName) ? chatModelName : deployAzureOpenAI ? 'gpt-35-turbo' : 'gpt-3.5-turbo' + modelName: !empty(chatModelName) ? chatModelName : deployAzureOpenAI ? 'gpt-4o' : 'gpt-4o' deploymentName: !empty(chatDeploymentName) ? chatDeploymentName : 'chat' - deploymentVersion: !empty(chatDeploymentVersion) ? chatDeploymentVersion : '0125' + deploymentVersion: !empty(chatDeploymentVersion) ? chatDeploymentVersion : '2024-05-13' deploymentCapacity: chatDeploymentCapacity != 0 ? chatDeploymentCapacity : 30 } @@ -195,7 +197,7 @@ module web 'web.bicep' = { } { name: 'OPENAICOM_CHAT_MODEL' - value: deployAzureOpenAI ? '' : 'gpt-3.5-turbo' + value: deployAzureOpenAI ? '' : 'gpt-4o' } { name: 'OPENAI_EMBED_HOST' From 93d624605fef72b99cfe9ed5df8f7204c9559224 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Wed, 5 Jun 2024 03:40:43 +0000 Subject: [PATCH 10/54] Add additional fields to Item model for RAG conversion --- src/fastapi_app/postgres_models.py | 58 +++++++++++++++++++++--------- 1 file changed, 41 insertions(+), 17 deletions(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 903fd52a..77e84de5 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -179,23 +179,47 @@ def to_dict(self, include_embedding: bool = False): return model_dict def to_str_for_rag(self): - return f"""package_name: {self.package_name} -package_picture: {self.package_picture} -url: {self.url} -price: {self.price} -cash_discount: {self.cash_discount} -installment_month: {self.installment_month} -installment_limit: {self.installment_limit} -price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} -brand: {self.brand} -price_details: {self.price_details} -package_details: {self.package_details} -important_info: {self.important_info} -payment_booking_info: {self.payment_booking_info} -general_info: {self.general_info} -brand_ranking_position: {self.brand_ranking_position} -faq: {self.faq} -""" + return f""" + package_name: {self.package_name} + package_picture: {self.package_picture} + url: {self.url} + price: {self.price} + cash_discount: {self.cash_discount} + installment_month: {self.installment_month} + installment_limit: {self.installment_limit} + price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} + shop_name: {self.shop_name} + category: {self.category} + category_tags: {self.category_tags} + preview_1_10: {self.preview_1_10} + selling_point: {self.selling_point} + meta_keywords: {self.meta_keywords} + brand: {self.brand} + min_max_age: {self.min_max_age} + locations: {self.locations} + meta_description: {self.meta_description} + price_details: {self.price_details} + package_details: {self.package_details} + important_info: {self.important_info} + payment_booking_info: {self.payment_booking_info} + general_info: {self.general_info} + early_signs_for_diagnosis: {self.early_signs_for_diagnosis} + how_to_diagnose: {self.how_to_diagnose} + hdcare_summary: {self.hdcare_summary} + common_question: {self.common_question} + know_this_disease: {self.know_this_disease} + courses_of_action: {self.courses_of_action} + signals_to_proceed_surgery: {self.signals_to_proceed_surgery} + get_to_know_this_surgery: {self.get_to_know_this_surgery} + comparisons: {self.comparisons} + getting_ready: {self.getting_ready} + recovery: {self.recovery} + side_effects: {self.side_effects} + review_4_5_stars: {self.review_4_5_stars} + brand_option_in_thai_name: {self.brand_option_in_thai_name} + brand_ranking_position: {self.brand_ranking_position} + faq: {self.faq} + """ def to_str_for_embedding_package_name(self): return f"Package Name: {self.package_name}" if self.package_name else "" From 1b189c6a227119d31a3947afc36d229cc0b2ac58 Mon Sep 17 00:00:00 2001 From: chatrtham <140840033+chatrtham@users.noreply.github.com> Date: Wed, 5 Jun 2024 04:23:40 +0000 Subject: [PATCH 11/54] Fix some prompts --- src/fastapi_app/prompts/answer.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index 6e50b547..be5f639b 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -6,4 +6,3 @@ For EVERY URL that you provided, create a new line then wrap it with If customer wants to talk with admin, please provide the URL link in the datasource. If the user is asking a question regarding location, proximity, or area, query relevant document from the source and ask where the user is at. please try to suggest services or answers closest to the location the user is asking as much as possible. Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know. Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. -Each source has a name followed by colon and the actual information, always include the source name for each fact you use in the response. Use square brackets to reference the source, for example [info1.txt]. Don't combine sources, list each source separately, for example [info1.txt][info2.pdf]. \ No newline at end of file From 5c0f06a000e092f0f7406bd684ea5580cc98ec21 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Mon, 17 Jun 2024 10:17:10 +0000 Subject: [PATCH 12/54] Enable GPT-4o image feature (for API only) --- src/fastapi_app/api_models.py | 18 ++- src/fastapi_app/postgres_models.py | 15 ++- src/fastapi_app/prompts/answer.txt | 3 +- src/fastapi_app/query_rewriter.py | 59 +++++---- src/fastapi_app/rag_advanced.py | 46 +++---- src/fastapi_app/seed_hd_data.py | 160 ++++++++++++++++++++++++ src/requirements.txt | 192 ++++++----------------------- 7 files changed, 281 insertions(+), 212 deletions(-) create mode 100644 src/fastapi_app/seed_hd_data.py diff --git a/src/fastapi_app/api_models.py b/src/fastapi_app/api_models.py index 0945cb10..57de91ba 100644 --- a/src/fastapi_app/api_models.py +++ b/src/fastapi_app/api_models.py @@ -1,15 +1,25 @@ -from typing import Any +from typing import Any, List, Union, Optional from pydantic import BaseModel +class TextContent(BaseModel): + type: str + text: str + +class ImageUrl(BaseModel): + url: str + detail: str = "auto" + +class ImageContent(BaseModel): + type: str + image_url: ImageUrl class Message(BaseModel): - content: str role: str = "user" - + content: Union[str, List[Union[TextContent, ImageContent]]] class ChatRequest(BaseModel): - messages: list[Message] + messages: List[Message] context: dict = {} diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 77e84de5..202e0ba2 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -14,7 +14,7 @@ class Base(DeclarativeBase, MappedAsDataclass): class Item(Base): __tablename__ = "packages" - id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True) + id: Mapped[int] = mapped_column(primary_key=True) package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() url: Mapped[str] = mapped_column() @@ -59,7 +59,7 @@ class Item(Base): embedding_url: Mapped[Vector] = mapped_column(Vector(1536)) embedding_installment_month: Mapped[Vector] = mapped_column(Vector(1536)) embedding_installment_limit: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_price_to_reserve_for_this_package: Mapped[Vector] = mapped_column(Vector(1536)) + embedding_price_to_reserve_for_this_package: Mapped[Vector] = (mapped_column(Vector(1536))) embedding_shop_name: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category_tags: Mapped[Vector] = mapped_column(Vector(1536)) @@ -178,7 +178,16 @@ def to_dict(self, include_embedding: bool = False): del model_dict[col] return model_dict - def to_str_for_rag(self): + def to_str_for_broad_rag(self): + return f""" + package_name: {self.package_name} + url: {self.url} + locations: {self.locations} + price: {self.price} + brand: {self.brand} + """ + + def to_str_for_narrow_rag(self): return f""" package_name: {self.package_name} package_picture: {self.package_picture} diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index be5f639b..f483a1d9 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -2,7 +2,8 @@ You are a woman name Jib (จิ๊บ), a sales consultant from HDmall which yo Represent youself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai language. Represent youself as Jib and the customer as you when the conversation is in English language. When the customer asks about any packages, please make sure to provide brand, price , URL and location every time. -For EVERY URL that you provided, create a new line then wrap it with so the user can open it via UI If customer wants to talk with admin, please provide the URL link in the datasource. +Note that some packages may have additional cost. If the user is asking a question regarding location, proximity, or area, query relevant document from the source and ask where the user is at. please try to suggest services or answers closest to the location the user is asking as much as possible. Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know. Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. +Answer in well-structured plain text, not a markdown. \ No newline at end of file diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 78794b97..0c89dafd 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -18,15 +18,15 @@ def build_search_function() -> list[ChatCompletionToolParam]: "properties": { "search_query": { "type": "string", - "description": "Query string to use for full text search, e.g. 'red shoes'", + "description": "Query string to use for full text search, e.g. 'ตรวจสุขภาพ'", }, "price_filter": { "type": "object", - "description": "Filter search results based on price of the product", + "description": "Filter search results based on price in Thai Baht of the package", "properties": { "comparison_operator": { "type": "string", - "description": "Operator to compare the column value, either '>', '<', '>=', '<=', '=='", # noqa + "description": "Operator to compare the column value, either '>', '<', '>=', '<=', '='", # noqa }, "value": { "type": "number", @@ -34,22 +34,25 @@ def build_search_function() -> list[ChatCompletionToolParam]: }, }, }, - # "brand_filter": { - # "type": "object", - # "description": "Filter search results based on brand of the product", - # "properties": { - # "comparison_operator": { - # "type": "string", - # "description": "Operator to compare the column value, either '==' or '!='", - # }, - # "value": { - # "type": "string", - # "description": "Value to compare against, e.g. AirStrider", - # }, - # }, - # }, + "url_filter": { + "type": "object", + "description": "Filter search results based on url of the package. The url is package specific.", + "properties": { + "comparison_operator": { + "type": "string", + "description": "Operator to compare the column value, either '=' or '!='", + }, + "value": { + "type": "string", + "description": """ + The package URL to compare against. + Don't pass anything if you can't specify the exact URL from user query. + """, + }, + }, + }, }, - "required": ["search_query"], + "required": ["search_query", "url_filter"], }, }, } @@ -67,6 +70,7 @@ def extract_search_arguments(chat_completion: ChatCompletion): function = tool.function if function.name == "search_database": arg = json.loads(function.arguments) + print(arg) search_query = arg.get("search_query") if "price_filter" in arg and arg["price_filter"]: price_filter = arg["price_filter"] @@ -77,15 +81,16 @@ def extract_search_arguments(chat_completion: ChatCompletion): "value": price_filter["value"], } ) - # if "brand_filter" in arg and arg["brand_filter"]: - # brand_filter = arg["brand_filter"] - # filters.append( - # { - # "column": "brand", - # "comparison_operator": brand_filter["comparison_operator"], - # "value": brand_filter["value"], - # } - # ) + if "url_filter" in arg and arg["url_filter"]: + url_filter = arg["url_filter"] + if url_filter["value"] != "https://hdmall.co.th/": + filters.append( + { + "column": "url", + "comparison_operator": url_filter["comparison_operator"], + "value": url_filter["value"], + } + ) elif query_text := response_message.content: search_query = query_text.strip() return search_query, filters diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 426ae996..10448d2a 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -1,3 +1,4 @@ +import copy import pathlib from collections.abc import AsyncGenerator from typing import ( @@ -8,7 +9,7 @@ from openai.types.chat import ( ChatCompletion, ) -from openai_messages_token_helper import build_messages, get_token_limit +from openai_messages_token_helper import get_token_limit from .api_models import ThoughtStep from .postgres_searcher import PostgresSearcher @@ -36,23 +37,21 @@ def __init__( async def run( self, messages: list[dict], overrides: dict[str, Any] = {} ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: + # Normalize the message format + for message in messages: + if isinstance(message['content'], str): + message['content'] = [{'type': 'text', 'text': message['content']}] + + # Determine the search mode and the number of results to return text_search = overrides.get("retrieval_mode") in ["text", "hybrid", None] vector_search = overrides.get("retrieval_mode") in ["vectors", "hybrid", None] top = overrides.get("top", 3) - original_user_query = messages[-1]["content"] - past_messages = messages[:-1] # Generate an optimized keyword search query based on the chat history and the last question + query_messages = copy.deepcopy(messages) + query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) query_response_token_limit = 500 - query_messages = build_messages( - model=self.chat_model, - system_prompt=self.query_prompt_template, - new_user_content=original_user_query, - past_messages=past_messages, - max_tokens=self.chat_token_limit - query_response_token_limit, # TODO: count functions - fallback_to_default=True, - ) chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( messages=query_messages, # type: ignore @@ -75,31 +74,32 @@ async def run( enable_text_search=text_search, filters=filters, ) - - sources_content = [f"[{(item.id)}]:{item.to_str_for_rag()}\n\n" for item in results] + + # Check if the url_filter is used to determine the context to send to the LLM + if any(f['column'] == 'url' and f['value'] != '' for f in filters): + sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] # all details + else: + sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] # important details + content = "\n".join(sources_content) - # Generate a contextual and content specific answer using the search results and chat history + # Build messages for the final chat completion + answer_messages = copy.deepcopy(messages) + answer_messages.insert(0, {"role": "system", "content": self.answer_prompt_template}) + answer_messages[-1]["content"].append({"type": "text", "text": "\n\nSources:\n" + content}) response_token_limit = 1024 - messages = build_messages( - model=self.chat_model, - system_prompt=overrides.get("prompt_template") or self.answer_prompt_template, - new_user_content=original_user_query + "\n\nSources:\n" + content, - past_messages=past_messages, - max_tokens=self.chat_token_limit - response_token_limit, - fallback_to_default=True, - ) chat_completion_response = await self.openai_chat_client.chat.completions.create( # Azure OpenAI takes the deployment name as the model name model=self.chat_deployment if self.chat_deployment else self.chat_model, - messages=messages, + messages=answer_messages, temperature=overrides.get("temperature", 0.3), max_tokens=response_token_limit, n=1, stream=False, ) chat_resp = chat_completion_response.model_dump() + chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, "thoughts": [ diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py new file mode 100644 index 00000000..5a2358c1 --- /dev/null +++ b/src/fastapi_app/seed_hd_data.py @@ -0,0 +1,160 @@ +import argparse +import asyncio +import logging +import os + +import numpy as np +import pandas as pd +import sqlalchemy.exc +from dotenv import load_dotenv +from sqlalchemy import select, text +from sqlalchemy.ext.asyncio import async_sessionmaker +from tqdm import tqdm + +from fastapi_app.postgres_engine import ( + create_postgres_engine_from_args, + create_postgres_engine_from_env, +) +from fastapi_app.postgres_models import Item + +logger = logging.getLogger("ragapp") + +embedding_fields = [ + 'embedding_package_name', 'embedding_package_picture', 'embedding_url', + 'embedding_installment_month', 'embedding_installment_limit', + 'embedding_price_to_reserve_for_this_package', 'embedding_shop_name', + 'embedding_category', 'embedding_category_tags', 'embedding_preview_1_10', + 'embedding_selling_point', 'embedding_meta_keywords', 'embedding_brand', + 'embedding_min_max_age', 'embedding_locations', 'embedding_meta_description', + 'embedding_price_details', 'embedding_package_details', 'embedding_important_info', + 'embedding_payment_booking_info', 'embedding_general_info', 'embedding_early_signs_for_diagnosis', + 'embedding_how_to_diagnose', 'embedding_hdcare_summary', 'embedding_common_question', + 'embedding_know_this_disease', 'embedding_courses_of_action', 'embedding_signals_to_proceed_surgery', + 'embedding_get_to_know_this_surgery', 'embedding_comparisons', 'embedding_getting_ready', + 'embedding_recovery', 'embedding_side_effects', 'embedding_review_4_5_stars', + 'embedding_brand_option_in_thai_name', 'embedding_faq' +] + +def convert_to_int(value): + try: + return int(value) + except (ValueError, TypeError): + return None + +def convert_to_float(value): + try: + return float(value) + except (ValueError, TypeError): + return None + +async def seed_data(engine): + logger.info("Checking if the packages table exists...") + async with engine.begin() as conn: + result = await conn.execute( + text( + """ + SELECT EXISTS + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages') + """ # noqa + ) + ) + if not result.scalar(): + logger.error("Packages table does not exist. Please run the database setup script first.") + return + + async with async_sessionmaker(engine, expire_on_commit=False)() as session: + # Read the CSV file + current_dir = os.path.dirname(os.path.realpath(__file__)) + csv_path = ( + os.path.join(current_dir, "packages.csv") + ) + + try: + df = pd.read_csv(csv_path, delimiter=',', quotechar='"', escapechar='\\', on_bad_lines='skip', encoding='utf-8') + except pd.errors.ParserError as e: + logger.error(f"Error reading CSV file: {e}") + return + + # Replace NaN values in string columns with None + str_columns = df.select_dtypes(include=[object]).columns + df[str_columns] = df[str_columns].replace({np.nan: None}) + + # Replace NaN values in numeric columns with None + num_columns = df.select_dtypes(include=[np.number]).columns + df[num_columns] = df[num_columns].replace({np.nan: None}) + + # Convert DataFrame to list of dictionaries + records = df.to_dict(orient='records') + + logger.info("Starting to insert records into the database...") + # Insert records into the database with progress bar + for record in tqdm(records, desc="Inserting records"): + try: + # Ensure the id is cast to integer + record["id"] = convert_to_int(record["id"]) + if record["id"] is None: + logger.error(f"Skipping record with invalid id: {record}") + continue + + # Explicitly cast other fields to the appropriate types + if "price" in record: + record["price"] = convert_to_float(record["price"]) + if "cash_discount" in record: + record["cash_discount"] = convert_to_float(record["cash_discount"]) + if "brand_ranking_position" in record: + record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) + + # Skip record if price or cash_discount cannot be converted to float + if record["price"] is None or record["cash_discount"] is None: + logger.error(f"Skipping record with invalid numeric fields: {record}") + continue + + item = await session.execute(select(Item).filter(Item.id == record["id"])) + if item.scalars().first(): + continue + + # Create a new Item instance without embedding columns + item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} + + # Set embedding fields to None + for field in embedding_fields: + item_data[field] = None + + item = Item(**item_data) + session.add(item) + + except Exception as e: + logger.error(f"Error inserting record with id {record['id']}: {e}") + await session.rollback() + continue + + try: + await session.commit() + logger.info("All records inserted successfully.") + except sqlalchemy.exc.IntegrityError as e: + logger.error(f"Integrity error during commit: {e}") + +async def main(): + parser = argparse.ArgumentParser(description="Seed database with CSV data") + parser.add_argument("--host", type=str, help="Postgres host") + parser.add_argument("--username", type=str, help="Postgres username") + parser.add_argument("--password", type=str, help="Postgres password") + parser.add_argument("--database", type=str, help="Postgres database") + parser.add_argument("--sslmode", type=str, help="Postgres sslmode") + + # if no args are specified, use environment variables + args = parser.parse_args() + if args.host is None: + engine = await create_postgres_engine_from_env() + else: + engine = await create_postgres_engine_from_args(args) + + await seed_data(engine) + + await engine.dispose() + +if __name__ == "__main__": + logging.basicConfig(level=logging.WARNING) + logger.setLevel(logging.INFO) + load_dotenv(override=True) + asyncio.run(main()) diff --git a/src/requirements.txt b/src/requirements.txt index 4ae104d4..f11c19c8 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -1,207 +1,91 @@ -# -# This file is autogenerated by pip-compile with Python 3.11 -# by the following command: -# -# pip-compile --output-file=requirements.txt pyproject.toml -# aiohttp==3.9.5 - # via fastapi_app (pyproject.toml) aiosignal==1.3.1 - # via aiohttp -annotated-types==0.6.0 - # via pydantic -anyio==4.3.0 - # via - # httpx - # openai - # starlette - # watchfiles +annotated-types==0.7.0 +anyio==4.4.0 async-timeout==4.0.3 - # via asyncpg asyncpg==0.29.0 - # via fastapi_app (pyproject.toml) attrs==23.2.0 - # via aiohttp azure-core==1.30.1 - # via azure-identity azure-identity==1.16.0 - # via fastapi_app (pyproject.toml) +build==1.2.1 certifi==2024.2.2 - # via - # httpcore - # httpx - # requests cffi==1.16.0 - # via cryptography +cfgv==3.4.0 charset-normalizer==3.3.2 - # via requests click==8.1.7 - # via - # typer - # uvicorn cryptography==42.0.7 - # via - # azure-identity - # msal - # pyjwt +distlib==0.3.8 distro==1.9.0 - # via openai dnspython==2.6.1 - # via email-validator -email-validator==2.1.1 - # via fastapi +email_validator==2.1.1 environs==11.0.0 - # via fastapi_app (pyproject.toml) fastapi==0.111.0 - # via - # fastapi-cli - # fastapi_app (pyproject.toml) -fastapi-cli==0.0.3 - # via fastapi +fastapi-cli==0.0.4 +-e git+https://github.com/azure-samples/rag-postgres-openai-python@1b189c6a227119d31a3947afc36d229cc0b2ac58#egg=fastapi_app&subdirectory=src +filelock==3.14.0 frozenlist==1.4.1 - # via - # aiohttp - # aiosignal +gitdb==4.0.11 +GitPython==3.1.41 greenlet==3.0.3 - # via sqlalchemy gunicorn==22.0.0 - # via fastapi_app (pyproject.toml) h11==0.14.0 - # via - # httpcore - # uvicorn httpcore==1.0.5 - # via httpx httptools==0.6.1 - # via uvicorn httpx==0.27.0 - # via - # fastapi - # openai +identify==2.5.36 idna==3.7 - # via - # anyio - # email-validator - # httpx - # requests - # yarl -jinja2==3.1.4 - # via fastapi +Jinja2==3.1.4 markdown-it-py==3.0.0 - # via rich -markupsafe==2.1.5 - # via jinja2 +MarkupSafe==2.1.5 marshmallow==3.21.2 - # via environs mdurl==0.1.2 - # via markdown-it-py msal==1.28.0 - # via - # azure-identity - # msal-extensions msal-extensions==1.1.0 - # via azure-identity multidict==6.0.5 - # via - # aiohttp - # yarl +nodeenv==1.9.1 numpy==1.26.4 - # via pgvector -openai==1.30.1 - # via - # fastapi_app (pyproject.toml) - # openai-messages-token-helper +openai==1.31.0 openai-messages-token-helper==0.1.4 - # via fastapi_app (pyproject.toml) orjson==3.10.3 - # via fastapi packaging==24.0 - # via - # gunicorn - # marshmallow - # msal-extensions +pandas==2.2.2 pgvector==0.2.5 - # via fastapi_app (pyproject.toml) pillow==10.3.0 - # via openai-messages-token-helper +pip-tools==7.4.1 +platformdirs==4.2.2 portalocker==2.8.2 - # via msal-extensions +pre-commit==3.7.1 pycparser==2.22 - # via cffi -pydantic==2.7.1 - # via - # fastapi - # openai -pydantic-core==2.18.2 - # via pydantic -pygments==2.18.0 - # via rich -pyjwt[crypto]==2.8.0 - # via - # msal - # pyjwt +pydantic==2.7.2 +pydantic_core==2.18.3 +Pygments==2.18.0 +PyJWT==2.8.0 +pyproject_hooks==1.1.0 +python-dateutil==2.9.0.post0 python-dotenv==1.0.1 - # via - # environs - # fastapi_app (pyproject.toml) - # uvicorn python-multipart==0.0.9 - # via fastapi -pyyaml==6.0.1 - # via uvicorn -regex==2024.5.10 - # via tiktoken -requests==2.31.0 - # via - # azure-core - # msal - # tiktoken +pytz==2024.1 +PyYAML==6.0.1 +regex==2024.5.15 +requests==2.32.3 rich==13.7.1 - # via typer +ruff==0.4.8 shellingham==1.5.4 - # via typer six==1.16.0 - # via azure-core +smmap==5.0.1 sniffio==1.3.1 - # via - # anyio - # httpx - # openai -sqlalchemy[asyncio]==2.0.30 - # via fastapi_app (pyproject.toml) +SQLAlchemy==2.0.30 starlette==0.37.2 - # via fastapi tiktoken==0.7.0 - # via - # fastapi_app (pyproject.toml) - # openai-messages-token-helper tqdm==4.66.4 - # via openai typer==0.12.3 - # via fastapi-cli -typing-extensions==4.11.0 - # via - # azure-core - # fastapi - # openai - # pydantic - # pydantic-core - # sqlalchemy - # typer +typing_extensions==4.12.0 +tzdata==2024.1 ujson==5.10.0 - # via fastapi urllib3==2.2.1 - # via requests -uvicorn[standard]==0.29.0 - # via - # fastapi - # fastapi-cli - # fastapi_app (pyproject.toml) +uvicorn==0.30.0 uvloop==0.19.0 - # via uvicorn -watchfiles==0.21.0 - # via uvicorn +virtualenv==20.26.2 +watchfiles==0.22.0 websockets==12.0 - # via uvicorn yarl==1.9.4 - # via aiohttp From 9d544c8574ca1f26a841aed3f05c7a6159c9af61 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Tue, 18 Jun 2024 09:55:57 +0000 Subject: [PATCH 13/54] fix seed_hd_data.py --- src/fastapi_app/seed_hd_data.py | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index 5a2358c1..8855b88c 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -47,6 +47,11 @@ def convert_to_float(value): except (ValueError, TypeError): return None +def convert_to_str(value): + if value is None: + return None + return str(value) + async def seed_data(engine): logger.info("Checking if the packages table exists...") async with engine.begin() as conn: @@ -63,11 +68,8 @@ async def seed_data(engine): return async with async_sessionmaker(engine, expire_on_commit=False)() as session: - # Read the CSV file current_dir = os.path.dirname(os.path.realpath(__file__)) - csv_path = ( - os.path.join(current_dir, "packages.csv") - ) + csv_path = os.path.join(current_dir, "packages.csv") try: df = pd.read_csv(csv_path, delimiter=',', quotechar='"', escapechar='\\', on_bad_lines='skip', encoding='utf-8') @@ -75,28 +77,22 @@ async def seed_data(engine): logger.error(f"Error reading CSV file: {e}") return - # Replace NaN values in string columns with None str_columns = df.select_dtypes(include=[object]).columns df[str_columns] = df[str_columns].replace({np.nan: None}) - # Replace NaN values in numeric columns with None num_columns = df.select_dtypes(include=[np.number]).columns df[num_columns] = df[num_columns].replace({np.nan: None}) - # Convert DataFrame to list of dictionaries records = df.to_dict(orient='records') logger.info("Starting to insert records into the database...") - # Insert records into the database with progress bar for record in tqdm(records, desc="Inserting records"): try: - # Ensure the id is cast to integer record["id"] = convert_to_int(record["id"]) if record["id"] is None: logger.error(f"Skipping record with invalid id: {record}") continue - # Explicitly cast other fields to the appropriate types if "price" in record: record["price"] = convert_to_float(record["price"]) if "cash_discount" in record: @@ -104,7 +100,6 @@ async def seed_data(engine): if "brand_ranking_position" in record: record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) - # Skip record if price or cash_discount cannot be converted to float if record["price"] is None or record["cash_discount"] is None: logger.error(f"Skipping record with invalid numeric fields: {record}") continue @@ -113,13 +108,15 @@ async def seed_data(engine): if item.scalars().first(): continue - # Create a new Item instance without embedding columns item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} - - # Set embedding fields to None + for field in embedding_fields: item_data[field] = None - + + for key, value in item_data.items(): + if key not in ["id", "price", "cash_discount", "brand_ranking_position"]: + item_data[key] = convert_to_str(value) + item = Item(**item_data) session.add(item) @@ -142,7 +139,6 @@ async def main(): parser.add_argument("--database", type=str, help="Postgres database") parser.add_argument("--sslmode", type=str, help="Postgres sslmode") - # if no args are specified, use environment variables args = parser.parse_args() if args.host is None: engine = await create_postgres_engine_from_env() @@ -150,11 +146,10 @@ async def main(): engine = await create_postgres_engine_from_args(args) await seed_data(engine) - await engine.dispose() if __name__ == "__main__": logging.basicConfig(level=logging.WARNING) logger.setLevel(logging.INFO) load_dotenv(override=True) - asyncio.run(main()) + asyncio.run(main()) \ No newline at end of file From e1e45a20bc7f0aebd5c64fa24bf3c9b2b77d8652 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 19 Jun 2024 04:46:49 +0000 Subject: [PATCH 14/54] Simplify building messages for ragadvanced's final chat completion --- src/fastapi_app/rag_advanced.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 10448d2a..39402435 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -84,15 +84,14 @@ async def run( content = "\n".join(sources_content) # Build messages for the final chat completion - answer_messages = copy.deepcopy(messages) - answer_messages.insert(0, {"role": "system", "content": self.answer_prompt_template}) - answer_messages[-1]["content"].append({"type": "text", "text": "\n\nSources:\n" + content}) + messages.insert(0, {"role": "system", "content": self.answer_prompt_template}) + messages[-1]["content"].append({"type": "text", "text": "\n\nSources:\n" + content}) response_token_limit = 1024 chat_completion_response = await self.openai_chat_client.chat.completions.create( # Azure OpenAI takes the deployment name as the model name model=self.chat_deployment if self.chat_deployment else self.chat_model, - messages=answer_messages, + messages=messages, temperature=overrides.get("temperature", 0.3), max_tokens=response_token_limit, n=1, From d2a59ff6bbbc96a8a971679f16248b54c8ff89dc Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 20 Jun 2024 07:39:33 +0000 Subject: [PATCH 15/54] =?UTF-8?q?=E0=B8=B4create=20package=20specifying=20?= =?UTF-8?q?agent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fastapi_app/postgres_searcher.py | 33 ++++- src/fastapi_app/prompts/answer.txt | 14 +- src/fastapi_app/prompts/specify_package.txt | 1 + src/fastapi_app/query_rewriter.py | 99 +++++++++---- src/fastapi_app/rag_advanced.py | 153 ++++++++++++-------- 5 files changed, 197 insertions(+), 103 deletions(-) create mode 100644 src/fastapi_app/prompts/specify_package.txt diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index c9d422d6..45f5cf0a 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -35,7 +35,7 @@ def build_filter_clause(self, filters) -> tuple[str, str]: return f"WHERE {filter_clause}", f"AND {filter_clause}" return "", "" - async def search( + async def hybrid_search( self, query_text: str | None, query_vector: list[float] | list, @@ -281,4 +281,33 @@ async def search_and_embed( if not enable_text_search: query_text = None - return await self.search(query_text, vector, top, filters) + return await self.hybrid_search(query_text, vector, top, filters) + + async def simple_sql_search( + self, + filters: list[dict] + ) -> list[Item]: + """ + Search items by simple SQL query with filters. + """ + filter_clause_where, _ = self.build_filter_clause(filters) + sql = f""" + SELECT id FROM packages + {filter_clause_where} + LIMIT 1 + """ + + async with self.async_session_maker() as session: + results = ( + await session.execute( + text(sql).columns(id=Integer) + ) + ).fetchall() + + # Convert results to Item models + items = [] + for result in results: + item_id = result.id + item = await session.execute(select(Item).where(Item.id == item_id)) + items.append(item.scalar()) + return items diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index f483a1d9..b502a5f0 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -1,9 +1,11 @@ You are a woman name Jib (จิ๊บ), a sales consultant from HDmall which you need to convince the customers to buy some products from our store name HDmall, Please answer in casual and friendly manner. Don't recommend any product yet on the first conversation before the customer asking. You can use Emoji to make the conversation more friendly if you want. Represent youself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai language. -Represent youself as Jib and the customer as you when the conversation is in English language. -When the customer asks about any packages, please make sure to provide brand, price , URL and location every time. -If customer wants to talk with admin, please provide the URL link in the datasource. -Note that some packages may have additional cost. +Represent youself as Jib and the customer as you when the conversation is in English or Non-Thai language. +Answer the customer's question in the same language as the customer's question. +It's not important whether the customer is male or female, you are woman named Jib, please end with "ค่ะ" when you chat with customer in Thai language. +If the customer want to buy a product or book a service, or having an strong intent of interested in some package, respond "QISCUS_INTEGRATION_TO_CX" to handover to customer service. +When the customer asks about any packages, please make sure to provide brand, price ,URL which in a new line, location with google maps link every time. If the user is asking a question regarding location, proximity, or area, query relevant document from the source and ask where the user is at. please try to suggest services or answers closest to the location the user is asking as much as possible. -Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know. Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. -Answer in well-structured plain text, not a markdown. \ No newline at end of file +Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know (in users' language). Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. +Since this is a text-based conversation in a chatroom, do not use markdown or any similar rich formatting. Also, don't wrap URL in a parentheses. +Note that some packages may have additional cost. diff --git a/src/fastapi_app/prompts/specify_package.txt b/src/fastapi_app/prompts/specify_package.txt new file mode 100644 index 00000000..a758ea1f --- /dev/null +++ b/src/fastapi_app/prompts/specify_package.txt @@ -0,0 +1 @@ +Please specify the exact URL or package name from past messages only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package, respond accordingly without specifying a package name. diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 0c89dafd..67d091d0 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -6,7 +6,7 @@ ) -def build_search_function() -> list[ChatCompletionToolParam]: +def build_hybrid_search_function() -> list[ChatCompletionToolParam]: return [ { "type": "function", @@ -26,7 +26,7 @@ def build_search_function() -> list[ChatCompletionToolParam]: "properties": { "comparison_operator": { "type": "string", - "description": "Operator to compare the column value, either '>', '<', '>=', '<=', '='", # noqa + "description": "Operator to compare the column value, either '>', '<', '>=', '<=', '='", }, "value": { "type": "number", @@ -34,31 +34,13 @@ def build_search_function() -> list[ChatCompletionToolParam]: }, }, }, - "url_filter": { - "type": "object", - "description": "Filter search results based on url of the package. The url is package specific.", - "properties": { - "comparison_operator": { - "type": "string", - "description": "Operator to compare the column value, either '=' or '!='", - }, - "value": { - "type": "string", - "description": """ - The package URL to compare against. - Don't pass anything if you can't specify the exact URL from user query. - """, - }, - }, - }, }, - "required": ["search_query", "url_filter"], + "required": ["search_query"], }, }, } ] - def extract_search_arguments(chat_completion: ChatCompletion): response_message = chat_completion.choices[0].message search_query = None @@ -70,7 +52,6 @@ def extract_search_arguments(chat_completion: ChatCompletion): function = tool.function if function.name == "search_database": arg = json.loads(function.arguments) - print(arg) search_query = arg.get("search_query") if "price_filter" in arg and arg["price_filter"]: price_filter = arg["price_filter"] @@ -81,16 +62,70 @@ def extract_search_arguments(chat_completion: ChatCompletion): "value": price_filter["value"], } ) - if "url_filter" in arg and arg["url_filter"]: - url_filter = arg["url_filter"] - if url_filter["value"] != "https://hdmall.co.th/": - filters.append( - { - "column": "url", - "comparison_operator": url_filter["comparison_operator"], - "value": url_filter["value"], - } - ) elif query_text := response_message.content: search_query = query_text.strip() return search_query, filters + + +def build_specify_package_function() -> list[ChatCompletionToolParam]: + return [ + { + "type": "function", + "function": { + "name": "specify_package", + "description": """ + Specify the exact URL or package name from past messages if they are relevant to the most recent user's message. + This tool is intended to find specific packages previously mentioned and should not be used for general inquiries or price-based requests. + """, + "parameters": { + "type": "object", + "properties": { + "url": { + "type": "string", + "description": """ + The exact URL of the package from past messages, + e.g. 'https://hdmall.co.th/dental-clinics/xray-for-orthodontics-1-csdc' + """ + }, + "package_name": { + "type": "string", + "description": """ + The exact package name from past messages, + always contains the package name and the hospital name, + e.g. 'เอกซเรย์สำหรับการจัดฟัน ที่ CSDC' + """ + } + }, + "required": [], + }, + }, + } + ] + +def handle_specify_package_function_call(chat_completion: ChatCompletion): + response_message = chat_completion.choices[0].message + filters = [] + if response_message.tool_calls: + for tool in response_message.tool_calls: + if tool.type == "function" and tool.function.name == "specify_package": + args = json.loads(tool.function.arguments) + url = args.get("url") + package_name = args.get("package_name") + if url: + filters.append( + { + "column": "url", + "comparison_operator": "=", + "value": url, + } + ) + if package_name: + filters.append( + { + "column": "package_name", + "comparison_operator": "=", + "value": package_name, + } + ) + return filters + diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 39402435..768e26b4 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -13,7 +13,12 @@ from .api_models import ThoughtStep from .postgres_searcher import PostgresSearcher -from .query_rewriter import build_search_function, extract_search_arguments +from .query_rewriter import ( + build_hybrid_search_function, + extract_search_arguments, + build_specify_package_function, + handle_specify_package_function_call +) class AdvancedRAGChat: @@ -31,6 +36,7 @@ def __init__( self.chat_deployment = chat_deployment self.chat_token_limit = get_token_limit(chat_model, default_to_minimum=True) current_dir = pathlib.Path(__file__).parent + self.specify_package_prompt_template = open(current_dir / "prompts/specify_package.txt").read() self.query_prompt_template = open(current_dir / "prompts/query.txt").read() self.answer_prompt_template = open(current_dir / "prompts/answer.txt").read() @@ -47,40 +53,95 @@ async def run( vector_search = overrides.get("retrieval_mode") in ["vectors", "hybrid", None] top = overrides.get("top", 3) + # Generate a prompt to specify the package if the user is referring to a specific package + specify_package_messages = copy.deepcopy(messages) + specify_package_messages.insert(0, {"role": "system", "content": self.specify_package_prompt_template}) + specify_package_token_limit = 300 - # Generate an optimized keyword search query based on the chat history and the last question - query_messages = copy.deepcopy(messages) - query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) - query_response_token_limit = 500 - - chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( - messages=query_messages, # type: ignore - # Azure OpenAI takes the deployment name as the model name + specify_package_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( + messages=specify_package_messages, model=self.chat_deployment if self.chat_deployment else self.chat_model, - temperature=0.0, # Minimize creativity for search query generation - max_tokens=query_response_token_limit, # Setting too low risks malformed JSON, too high risks performance + temperature=0.0, + max_tokens=specify_package_token_limit, n=1, - tools=build_search_function(), - tool_choice="auto", + tools=build_specify_package_function() ) - query_text, filters = extract_search_arguments(chat_completion) + specify_package_filters = handle_specify_package_function_call(specify_package_chat_completion) - # Retrieve relevant items from the database with the GPT optimized query - results = await self.searcher.search_and_embed( - query_text, - top=top, - enable_vector_search=vector_search, - enable_text_search=text_search, - filters=filters, - ) - - # Check if the url_filter is used to determine the context to send to the LLM - if any(f['column'] == 'url' and f['value'] != '' for f in filters): - sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] # all details + if specify_package_filters: + # Pass specify_package_filters to simple SQL search function + results = await self.searcher.simple_sql_search(filters=specify_package_filters) + sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] + + thought_steps = [ + ThoughtStep( + title="Prompt to specify package", + description=[str(message) for message in specify_package_messages], + props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} + ), + ThoughtStep( + title="Specified package filters", + description=specify_package_filters, + props={} + ), + ThoughtStep( + title="SQL search results", + description=[result.to_dict() for result in results], + props={} + ) + ] else: - sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] # important details - + # Generate an optimized keyword search query based on the chat history and the last question + query_messages = copy.deepcopy(messages) + query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) + query_response_token_limit = 500 + + query_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( + messages=query_messages, + model=self.chat_deployment if self.chat_deployment else self.chat_model, + temperature=0.0, + max_tokens=query_response_token_limit, + n=1, + tools=build_hybrid_search_function(), + tool_choice="auto", + ) + + query_text, filters = extract_search_arguments(query_chat_completion) + + # Retrieve relevant items from the database with the GPT optimized query + results = await self.searcher.search_and_embed( + query_text, + top=top, + enable_vector_search=vector_search, + enable_text_search=text_search, + filters=filters, + ) + + sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] + + thought_steps = [ + ThoughtStep( + title="Prompt to generate search arguments", + description=[str(message) for message in query_messages], + props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} + ), + ThoughtStep( + title="Generated search arguments", + description=query_text, + props={"filters": filters} + ), + ThoughtStep( + title="Hybrid Search results", + description=[result.to_dict() for result in results], + props={ + "top": top, + "vector_search": vector_search, + "text_search": text_search + } + ) + ] + content = "\n".join(sources_content) # Build messages for the final chat completion @@ -89,7 +150,6 @@ async def run( response_token_limit = 1024 chat_completion_response = await self.openai_chat_client.chat.completions.create( - # Azure OpenAI takes the deployment name as the model name model=self.chat_deployment if self.chat_deployment else self.chat_model, messages=messages, temperature=overrides.get("temperature", 0.3), @@ -101,39 +161,6 @@ async def run( chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, - "thoughts": [ - ThoughtStep( - title="Prompt to generate search arguments", - description=[str(message) for message in query_messages], - props=( - {"model": self.chat_model, "deployment": self.chat_deployment} - if self.chat_deployment - else {"model": self.chat_model} - ), - ), - ThoughtStep( - title="Search using generated search arguments", - description=query_text, - props={ - "top": top, - "vector_search": vector_search, - "text_search": text_search, - "filters": filters, - }, - ), - ThoughtStep( - title="Search results", - description=[result.to_dict() for result in results], - ), - ThoughtStep( - title="Prompt to generate answer", - description=[str(message) for message in messages], - props=( - {"model": self.chat_model, "deployment": self.chat_deployment} - if self.chat_deployment - else {"model": self.chat_model} - ), - ), - ], + "thoughts": thought_steps } return chat_resp From 7a91d2ab7d3814bb2ed6286a8b89255405309e94 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 20 Jun 2024 10:35:09 +0000 Subject: [PATCH 16/54] Add use_or parameter to build_filter_clause method + Fix run method in AdvancedRAGChat --- src/fastapi_app/postgres_searcher.py | 8 +- src/fastapi_app/rag_advanced.py | 152 ++++++++++++++------------- 2 files changed, 84 insertions(+), 76 deletions(-) diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 45f5cf0a..a680b62b 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -22,7 +22,7 @@ def __init__( self.embed_deployment = embed_deployment self.embed_dimensions = embed_dimensions - def build_filter_clause(self, filters) -> tuple[str, str]: + def build_filter_clause(self, filters, use_or=False) -> tuple[str, str]: if filters is None: return "", "" filter_clauses = [] @@ -30,7 +30,7 @@ def build_filter_clause(self, filters) -> tuple[str, str]: if isinstance(filter["value"], str): filter["value"] = f"'{filter['value']}'" filter_clauses.append(f"{filter['column']} {filter['comparison_operator']} {filter['value']}") - filter_clause = " AND ".join(filter_clauses) + filter_clause = f" {'OR' if use_or else 'AND'} ".join(filter_clauses) if len(filter_clause) > 0: return f"WHERE {filter_clause}", f"AND {filter_clause}" return "", "" @@ -290,11 +290,11 @@ async def simple_sql_search( """ Search items by simple SQL query with filters. """ - filter_clause_where, _ = self.build_filter_clause(filters) + filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" SELECT id FROM packages {filter_clause_where} - LIMIT 1 + LIMIT 2 """ async with self.async_session_maker() as session: diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 768e26b4..58886477 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -15,9 +15,9 @@ from .postgres_searcher import PostgresSearcher from .query_rewriter import ( build_hybrid_search_function, - extract_search_arguments, build_specify_package_function, - handle_specify_package_function_call + extract_search_arguments, + handle_specify_package_function_call, ) @@ -40,6 +40,58 @@ def __init__( self.query_prompt_template = open(current_dir / "prompts/query.txt").read() self.answer_prompt_template = open(current_dir / "prompts/answer.txt").read() + async def hybrid_search(self, messages, top, vector_search, text_search): + # Generate an optimized keyword search query based on the chat history and the last question + query_messages = copy.deepcopy(messages) + query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) + query_response_token_limit = 500 + + query_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( + messages=query_messages, + model=self.chat_deployment if self.chat_deployment else self.chat_model, + temperature=0.0, + max_tokens=query_response_token_limit, + n=1, + tools=build_hybrid_search_function(), + tool_choice="auto", + ) + + query_text, filters = extract_search_arguments(query_chat_completion) + + # Retrieve relevant items from the database with the GPT optimized query + results = await self.searcher.search_and_embed( + query_text, + top=top, + enable_vector_search=vector_search, + enable_text_search=text_search, + filters=filters, + ) + + sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] + + thought_steps = [ + ThoughtStep( + title="Prompt to generate search arguments", + description=[str(message) for message in query_messages], + props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} + ), + ThoughtStep( + title="Generated search arguments", + description=query_text, + props={"filters": filters} + ), + ThoughtStep( + title="Hybrid Search results", + description=[result.to_dict() for result in results], + props={ + "top": top, + "vector_search": vector_search, + "text_search": text_search + } + ) + ] + return sources_content, thought_steps + async def run( self, messages: list[dict], overrides: dict[str, Any] = {} ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: @@ -69,78 +121,34 @@ async def run( specify_package_filters = handle_specify_package_function_call(specify_package_chat_completion) - if specify_package_filters: - # Pass specify_package_filters to simple SQL search function + if specify_package_filters: # Simple SQL search results = await self.searcher.simple_sql_search(filters=specify_package_filters) - sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] - - thought_steps = [ - ThoughtStep( - title="Prompt to specify package", - description=[str(message) for message in specify_package_messages], - props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} - ), - ThoughtStep( - title="Specified package filters", - description=specify_package_filters, - props={} - ), - ThoughtStep( - title="SQL search results", - description=[result.to_dict() for result in results], - props={} - ) - ] - else: - # Generate an optimized keyword search query based on the chat history and the last question - query_messages = copy.deepcopy(messages) - query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) - query_response_token_limit = 500 - - query_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( - messages=query_messages, - model=self.chat_deployment if self.chat_deployment else self.chat_model, - temperature=0.0, - max_tokens=query_response_token_limit, - n=1, - tools=build_hybrid_search_function(), - tool_choice="auto", - ) - - query_text, filters = extract_search_arguments(query_chat_completion) - - # Retrieve relevant items from the database with the GPT optimized query - results = await self.searcher.search_and_embed( - query_text, - top=top, - enable_vector_search=vector_search, - enable_text_search=text_search, - filters=filters, - ) - sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] - - thought_steps = [ - ThoughtStep( - title="Prompt to generate search arguments", - description=[str(message) for message in query_messages], - props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} - ), - ThoughtStep( - title="Generated search arguments", - description=query_text, - props={"filters": filters} - ), - ThoughtStep( - title="Hybrid Search results", - description=[result.to_dict() for result in results], - props={ - "top": top, - "vector_search": vector_search, - "text_search": text_search - } - ) - ] + if results: + sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] + + thought_steps = [ + ThoughtStep( + title="Prompt to specify package", + description=[str(message) for message in specify_package_messages], + props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} + ), + ThoughtStep( + title="Specified package filters", + description=specify_package_filters, + props={} + ), + ThoughtStep( + title="SQL search results", + description=[result.to_dict() for result in results], + props={} + ) + ] + else: + # No results found with SQL search, fall back to the hybrid search + sources_content, thought_steps = await self.hybrid_search(messages, top, vector_search, text_search) + else: # Hybrid search + sources_content, thought_steps = await self.hybrid_search(messages, top, vector_search, text_search) content = "\n".join(sources_content) From c65972e42de84586a1e6d897c75543a34ab69efb Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 21 Jun 2024 04:15:59 +0000 Subject: [PATCH 17/54] Add retry logic for OpenAI chat completions --- src/fastapi_app/rag_advanced.py | 25 +++++++++++++++---------- src/requirements.txt | 3 ++- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 58886477..3b837fdc 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -1,15 +1,13 @@ import copy +import logging import pathlib from collections.abc import AsyncGenerator -from typing import ( - Any, -) +from typing import Any from openai import AsyncOpenAI -from openai.types.chat import ( - ChatCompletion, -) +from openai.types.chat import ChatCompletion from openai_messages_token_helper import get_token_limit +from tenacity import before_sleep_log, retry, stop_after_attempt, wait_random_exponential from .api_models import ThoughtStep from .postgres_searcher import PostgresSearcher @@ -20,6 +18,9 @@ handle_specify_package_function_call, ) +# Configure logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) class AdvancedRAGChat: def __init__( @@ -40,13 +41,17 @@ def __init__( self.query_prompt_template = open(current_dir / "prompts/query.txt").read() self.answer_prompt_template = open(current_dir / "prompts/answer.txt").read() + @retry(wait=wait_random_exponential(min=1, max=60), stop=stop_after_attempt(6), before_sleep=before_sleep_log(logger, logging.WARNING)) + async def openai_chat_completion(self, *args, **kwargs) -> ChatCompletion: + return await self.openai_chat_client.chat.completions.create(*args, **kwargs) + async def hybrid_search(self, messages, top, vector_search, text_search): # Generate an optimized keyword search query based on the chat history and the last question query_messages = copy.deepcopy(messages) query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) query_response_token_limit = 500 - query_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( + query_chat_completion: ChatCompletion = await self.openai_chat_completion( messages=query_messages, model=self.chat_deployment if self.chat_deployment else self.chat_model, temperature=0.0, @@ -110,7 +115,7 @@ async def run( specify_package_messages.insert(0, {"role": "system", "content": self.specify_package_prompt_template}) specify_package_token_limit = 300 - specify_package_chat_completion: ChatCompletion = await self.openai_chat_client.chat.completions.create( + specify_package_chat_completion: ChatCompletion = await self.openai_chat_completion( messages=specify_package_messages, model=self.chat_deployment if self.chat_deployment else self.chat_model, temperature=0.0, @@ -155,9 +160,9 @@ async def run( # Build messages for the final chat completion messages.insert(0, {"role": "system", "content": self.answer_prompt_template}) messages[-1]["content"].append({"type": "text", "text": "\n\nSources:\n" + content}) - response_token_limit = 1024 + response_token_limit = 4096 - chat_completion_response = await self.openai_chat_client.chat.completions.create( + chat_completion_response = await self.openai_chat_completion( model=self.chat_deployment if self.chat_deployment else self.chat_model, messages=messages, temperature=overrides.get("temperature", 0.3), diff --git a/src/requirements.txt b/src/requirements.txt index f11c19c8..67fc3d5f 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -21,7 +21,7 @@ email_validator==2.1.1 environs==11.0.0 fastapi==0.111.0 fastapi-cli==0.0.4 --e git+https://github.com/azure-samples/rag-postgres-openai-python@1b189c6a227119d31a3947afc36d229cc0b2ac58#egg=fastapi_app&subdirectory=src +-e git+https://github.com/chatrtham/rag-postgres-openai-python.git@7a91d2ab7d3814bb2ed6286a8b89255405309e94#egg=fastapi_app&subdirectory=src filelock==3.14.0 frozenlist==1.4.1 gitdb==4.0.11 @@ -76,6 +76,7 @@ smmap==5.0.1 sniffio==1.3.1 SQLAlchemy==2.0.30 starlette==0.37.2 +tenacity==8.4.1 tiktoken==0.7.0 tqdm==4.66.4 typer==0.12.3 From 4d365820d011215727e31cf3f89b810076537403 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 21 Jun 2024 08:32:00 +0000 Subject: [PATCH 18/54] Change specify_package prompt --- src/fastapi_app/prompts/specify_package.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/prompts/specify_package.txt b/src/fastapi_app/prompts/specify_package.txt index a758ea1f..59bc47da 100644 --- a/src/fastapi_app/prompts/specify_package.txt +++ b/src/fastapi_app/prompts/specify_package.txt @@ -1 +1 @@ -Please specify the exact URL or package name from past messages only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package, respond accordingly without specifying a package name. +Please specify the exact URL or package name from past messages only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package, respond by stating that you could not find a matching package and ask the user to provide more details or check previous messages for the exact package information. From 7c9397fc3ce9659b3b4e7c21619cd3c438307179 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 21 Jun 2024 08:38:24 +0000 Subject: [PATCH 19/54] Update LIMIT to 10 for simple_sql_search in PostgresSearcher --- src/fastapi_app/postgres_searcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index a680b62b..6687656a 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -294,7 +294,7 @@ async def simple_sql_search( sql = f""" SELECT id FROM packages {filter_clause_where} - LIMIT 2 + LIMIT 10 """ async with self.async_session_maker() as session: From 65b12c140760e4f0d7c939155e82f6b9b72c8efd Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Mon, 24 Jun 2024 04:33:05 +0000 Subject: [PATCH 20/54] Add a thought step for product cards --- src/fastapi_app/postgres_searcher.py | 22 ++++++++++++++++++++++ src/fastapi_app/rag_advanced.py | 22 ++++++++++++++++++++-- 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 6687656a..feb578cb 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -311,3 +311,25 @@ async def simple_sql_search( item = await session.execute(select(Item).where(Item.id == item_id)) items.append(item.scalar()) return items + + + async def get_product_cards_info(self, urls: list[str]) -> list[dict]: + """ + Fetch detailed information about items using their URLs as identifiers. + """ + sql = """ + SELECT package_name, package_picture, url, price FROM packages WHERE url = ANY(:urls) + """ + + async with self.async_session_maker() as session: + results = ( + await session.execute( + text(sql), {"urls": urls} + ) + ).fetchall() + + # Convert results to dictionaries + items = [] + for result in results: + items.append(dict(result._mapping)) + return items \ No newline at end of file diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 3b837fdc..61b8724b 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -1,3 +1,4 @@ +import re import copy import logging import pathlib @@ -97,6 +98,9 @@ async def hybrid_search(self, messages, top, vector_search, text_search): ] return sources_content, thought_steps + async def get_product_cards_details(self, urls: list[str]) -> list[dict]: + return await self.searcher.get_product_cards_info(urls) + async def run( self, messages: list[dict], overrides: dict[str, Any] = {} ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: @@ -172,8 +176,22 @@ async def run( ) chat_resp = chat_completion_response.model_dump() + chat_resp_content = chat_resp["choices"][0]["message"]["content"] + package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) + + if package_urls: + product_cards_details = await self.get_product_cards_details(package_urls) + else: + product_cards_details = [] + chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, - "thoughts": thought_steps + "thoughts": thought_steps + [ + ThoughtStep( + title="Additional details for mentioned URLs", + description=product_cards_details, + props={} + ) + ] } - return chat_resp + return chat_resp \ No newline at end of file From 49dd055a6e24cbd340add1f9f11192b2e3921bc6 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Mon, 24 Jun 2024 04:50:02 +0000 Subject: [PATCH 21/54] Update thought step title to "Product Cards Details" --- src/fastapi_app/rag_advanced.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 61b8724b..3dbc8115 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -188,7 +188,7 @@ async def run( "data_points": {"text": sources_content}, "thoughts": thought_steps + [ ThoughtStep( - title="Additional details for mentioned URLs", + title="Product Cards Details", description=product_cards_details, props={} ) From 293216f40914a57f95ee6f6ff02677d2d9113abf Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 26 Jun 2024 08:03:24 +0000 Subject: [PATCH 22/54] Update embedding field names in update_embeddings.py --- src/fastapi_app/fast_update_hd_data.py | 221 +++++++++++++++++++++++++ src/fastapi_app/update_embeddings.py | 11 +- 2 files changed, 226 insertions(+), 6 deletions(-) create mode 100644 src/fastapi_app/fast_update_hd_data.py diff --git a/src/fastapi_app/fast_update_hd_data.py b/src/fastapi_app/fast_update_hd_data.py new file mode 100644 index 00000000..fd8a6281 --- /dev/null +++ b/src/fastapi_app/fast_update_hd_data.py @@ -0,0 +1,221 @@ +import argparse +import asyncio +import logging +import os +import time + +import numpy as np +import pandas as pd + +from dotenv import load_dotenv +from sqlalchemy import select, text, delete +from sqlalchemy.ext.asyncio import async_sessionmaker +from tqdm import tqdm +from azure.identity.aio import DefaultAzureCredential + +from fastapi_app.embeddings import compute_text_embedding +from fastapi_app.openai_clients import create_openai_embed_client +from fastapi_app.postgres_engine import ( + create_postgres_engine_from_args, + create_postgres_engine_from_env, +) +from fastapi_app.postgres_models import Item + +load_dotenv() + +# Set up logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger("ragapp") + +EMBEDDING_FIELDS = [ + 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', + 'price_to_reserve_for_this_package', 'shop_name', 'category', 'category_tags', + 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', + 'locations', 'meta_description', 'price_details', 'package_details', + 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', + 'how_to_diagnose', 'hdcare_summary', 'common_question', 'know_this_disease', + 'courses_of_action', 'signals_to_proceed_surgery', 'get_to_know_this_surgery', + 'comparisons', 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', + 'brand_option_in_thai_name', 'faq' +] + +def get_to_str_method(item, field): + method_name = f"to_str_for_embedding_{field}" + return getattr(item, method_name, None) + +def convert_to_int(value): + try: + return int(value) + except (ValueError, TypeError): + return None + +def convert_to_float(value): + try: + return float(value) + except (ValueError, TypeError): + return None + +def convert_to_str(value): + if value is None: + return None + return str(value) + +async def fetch_existing_records(session, batch_size=1000): + offset = 0 + existing_records = {} + while True: + query = select(Item).offset(offset).limit(batch_size) + result = await session.execute(query) + items = result.scalars().all() + if not items: + break + for item in items: + existing_records[item.url] = item + offset += batch_size + logger.info(f"Fetched {len(items)} records, offset now {offset}") + return existing_records + +async def seed_and_update_embeddings(engine): + start_time = time.time() + logger.info("Checking if the packages table exists...") + async with engine.begin() as conn: + result = await conn.execute( + text( + """ + SELECT EXISTS + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages') + """ + ) + ) + if not result.scalar(): + logger.error("Packages table does not exist. Please run the database setup script first.") + return + + async with async_sessionmaker(engine, expire_on_commit=False)() as session: + current_dir = os.path.dirname(os.path.realpath(__file__)) + csv_path = os.path.join(current_dir, "packages.csv") + + try: + df = pd.read_csv(csv_path, delimiter=',', quotechar='"', escapechar='\\', on_bad_lines='skip', encoding='utf-8') + except pd.errors.ParserError as e: + logger.error(f"Error reading CSV file: {e}") + return + + logger.info("CSV file read successfully. Processing data...") + + str_columns = df.select_dtypes(include=[object]).columns + df[str_columns] = df[str_columns].replace({np.nan: None}) + + num_columns = df.select_dtypes(include=([np.number])).columns + df[num_columns] = df[num_columns].replace({np.nan: None}) + + records = df.to_dict(orient='records') + new_records = {record["url"]: record for record in records} + + logger.info("Fetching existing records from the database...") + + existing_records = await fetch_existing_records(session) + + logger.info(f"Fetched {len(existing_records)} existing records.") + + azure_credential = DefaultAzureCredential() + openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) + + logger.info("Starting to insert, update, or delete records in the database...") + + for url, record in tqdm(new_records.items(), desc="Processing new records"): + try: + record["id"] = convert_to_int(record.get("id")) + record["price"] = convert_to_float(record.get("price")) + record["cash_discount"] = convert_to_float(record.get("cash_discount")) + record["brand_ranking_position"] = convert_to_int(record.get("brand_ranking_position")) + + if record["price"] is None: + logger.error(f"Skipping record with invalid price: {record}") + continue + + existing_item = existing_records.get(url) + + if existing_item: + # Update only the price if there is a change + if existing_item.price != record["price"]: + existing_item.price = record["price"] + session.merge(existing_item) + await session.commit() + logger.info(f"Updated price for existing record with URL {url}") + else: + # Insert new item + item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} + for field in EMBEDDING_FIELDS: + item_data[f'embedding_{field}'] = None + + for key, value in item_data.items(): + if key not in ["id", "price", "cash_discount", "brand_ranking_position"]: + item_data[key] = convert_to_str(value) + + item = Item(**item_data) + + # Generate embeddings for the new item + for field in EMBEDDING_FIELDS: + to_str_method = get_to_str_method(item, field) + if to_str_method: + field_value = to_str_method() + if field_value: + try: + embedding = await compute_text_embedding( + field_value, + openai_client=openai_embed_client, + embed_model=openai_embed_model, + embedding_dimensions=openai_embed_dimensions, + ) + setattr(item, f'embedding_{field}', embedding) + logger.info(f"Updated embedding for {field} of item {item.id}") + except Exception as e: + logger.error(f"Error updating embedding for {field} of item {item.id}: {e}") + + session.merge(item) + await session.commit() + logger.info(f"Inserted new record with URL {url}") + + except Exception as e: + logger.error(f"Error processing record with URL {url}: {e}") + await session.rollback() + continue + + # Delete rows that are not in the new CSV + for url in tqdm(existing_records.keys() - new_records.keys(), desc="Deleting outdated records"): + try: + await session.execute(delete(Item).where(Item.url == url)) + await session.commit() + logger.info(f"Deleted outdated record with URL {url}") + except Exception as e: + logger.error(f"Error deleting record with URL {url}: {e}") + await session.rollback() + + logger.info("All records processed successfully.") + end_time = time.time() + elapsed_time = end_time - start_time + logger.info(f"Total time taken: {elapsed_time:.2f} seconds") + +async def main(): + parser = argparse.ArgumentParser(description="Seed database with CSV data") + parser.add_argument("--host", type=str, help="Postgres host") + parser.add_argument("--username", type=str, help="Postgres username") + parser.add_argument("--password", type=str, help="Postgres password") + parser.add_argument("--database", type=str, help="Postgres database") + parser.add_argument("--sslmode", type=str, help="Postgres sslmode") + + args = parser.parse_args() + if args.host is None: + engine = await create_postgres_engine_from_env() + else: + engine = await create_postgres_engine_from_args(args) + + await seed_and_update_embeddings(engine) + await engine.dispose() + +if __name__ == "__main__": + logging.basicConfig(level=logging.WARNING) + logger.setLevel(logging.INFO) + load_dotenv(override=True) + asyncio.run(main()) diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 90c6f1aa..10153da2 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -22,12 +22,11 @@ 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', 'price_to_reserve_for_this_package', 'shop_name', 'category', 'category_tags', 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', - 'locations_time_open_close_how_to_transport_parking_google_maps', 'meta_description', - 'price_details', 'package_details', 'important_info', 'payment_booking_info', - 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', - 'common_question', 'know_this_disease', 'courses_of_action', 'signals_to_proceed_surgery', - 'get_to_know_this_surgery', 'comparisons', 'getting_ready', 'recovery', - 'side_effects', 'review_4_5_stars', 'brand_option_in_thai_name', 'faq' + 'locations', 'meta_description','price_details', 'package_details', 'important_info', + 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', + 'hdcare_summary', 'common_question', 'know_this_disease', 'courses_of_action', + 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', 'getting_ready', + 'recovery', 'side_effects', 'review_4_5_stars', 'brand_option_in_thai_name', 'faq' ] def get_to_str_method(item, field): From 1d920303825d432dd40b1032f32e4ace4e8b94ba Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Mon, 1 Jul 2024 05:15:54 +0000 Subject: [PATCH 23/54] Add opentelemetry in api_routes.py --- src/fastapi_app/api_routes.py | 18 +++++++++--------- src/fastapi_app/prompts/answer.txt | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/fastapi_app/api_routes.py b/src/fastapi_app/api_routes.py index 8c03dda7..ef89e3ad 100644 --- a/src/fastapi_app/api_routes.py +++ b/src/fastapi_app/api_routes.py @@ -12,24 +12,24 @@ router = fastapi.APIRouter() -@router.get("/items/{id}") -async def item_handler(id: int): - """A simple API to get an item by ID.""" +@router.get("/items/{url}") +async def item_handler(url: str): + """A simple API to get an item by URL.""" async_session_maker = async_sessionmaker(global_storage.engine, expire_on_commit=False) async with async_session_maker() as session: - item = (await session.scalars(select(Item).where(Item.id == id))).first() + item = (await session.scalars(select(Item).where(Item.url == url))).first() return item.to_dict() @router.get("/similar") -async def similar_handler(id: int, n: int = 5): - """A similarity API to find items similar to items with given ID.""" +async def similar_handler(url: str, n: int = 5): + """A similarity API to find items similar to items with given URL.""" async_session_maker = async_sessionmaker(global_storage.engine, expire_on_commit=False) async with async_session_maker() as session: - item = (await session.scalars(select(Item).where(Item.id == id))).first() + item = (await session.scalars(select(Item).where(Item.url == url))).first() closest = await session.execute( select(Item, Item.embedding.l2_distance(item.embedding)) - .filter(Item.id != id) + .filter(Item.url != url) .order_by(Item.embedding.l2_distance(item.embedding)) .limit(n) ) @@ -80,4 +80,4 @@ async def chat_handler(chat_request: ChatRequest): ) response = await ragchat.run(messages, overrides=overrides) - return response + return response \ No newline at end of file diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index b502a5f0..ac8f3ae8 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -9,3 +9,4 @@ If the user is asking a question regarding location, proximity, or area, query r Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know (in users' language). Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. Since this is a text-based conversation in a chatroom, do not use markdown or any similar rich formatting. Also, don't wrap URL in a parentheses. Note that some packages may have additional cost. +If the user ask for any phone number tell them to contact HDmall at 0822164269, 0923992692 โทรได้ทุกวันเลยนะคะ มีแอดมินคอยให้บริการตั้งแต่ 9.00 -01.00. น. \ No newline at end of file From c63d4e04d0043c99fc0eafd55a2116f2f4e36b5a Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Mon, 1 Jul 2024 10:44:11 +0000 Subject: [PATCH 24/54] Create hd update file --- src/fastapi_app/fast2.py | 259 +++++++++++++++++++++++++ src/fastapi_app/fast_update_hd_data.py | 14 +- src/fastapi_app/postgres_models.py | 22 +-- src/fastapi_app/postgres_searcher.py | 34 ++-- src/fastapi_app/prompts/query.txt | 2 +- src/fastapi_app/rag_advanced.py | 13 +- src/fastapi_app/seed_hd_data.py | 29 ++- src/fastapi_app/update_embeddings.py | 56 +++--- 8 files changed, 344 insertions(+), 85 deletions(-) create mode 100644 src/fastapi_app/fast2.py diff --git a/src/fastapi_app/fast2.py b/src/fastapi_app/fast2.py new file mode 100644 index 00000000..01b7e18b --- /dev/null +++ b/src/fastapi_app/fast2.py @@ -0,0 +1,259 @@ +import argparse +import asyncio +import logging +import os +import time + +import numpy as np +import pandas as pd +from azure.identity.aio import DefaultAzureCredential +from dotenv import load_dotenv +from sqlalchemy import delete, select, text, inspect +from sqlalchemy.ext.asyncio import async_sessionmaker +from tqdm import tqdm + +from fastapi_app.embeddings import compute_text_embedding +from fastapi_app.openai_clients import create_openai_embed_client +from fastapi_app.postgres_engine import create_postgres_engine_from_args, create_postgres_engine_from_env +from fastapi_app.postgres_models import Item + +load_dotenv() + +# Set up logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger("ragapp") + +EMBEDDING_FIELDS = [ + 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', + 'shop_name', 'category', 'category_tags', 'preview_1_10', 'selling_point', 'meta_keywords', + 'brand', 'min_max_age', 'locations', 'meta_description', 'price_details', 'package_details', + 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', + 'how_to_diagnose', 'hdcare_summary', 'common_question', 'know_this_disease', + 'courses_of_action', 'signals_to_proceed_surgery', 'get_to_know_this_surgery', + 'comparisons', 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', + 'brand_option_in_thai_name', 'faq' +] + +def get_to_str_method(item, field): + method_name = f"to_str_for_embedding_{field}" + return getattr(item, method_name, None) + +def convert_to_int(value): + try: + return int(value) + except (ValueError, TypeError): + return None + +def convert_to_float(value): + try: + return float(value) + except (ValueError, TypeError): + return None + +def convert_to_str(value): + if value is None: + return None + return str(value) + +async def verify_database_connection(engine): + try: + async with engine.connect() as conn: + result = await conn.execute(text("SELECT 1")) + logger.info(f"Database connection test result: {result.scalar()}") + except Exception as e: + logger.error(f"Database connection failed: {e}") + raise + +async def verify_table_exists(engine, table_name): + try: + async with engine.begin() as conn: + def check_table(connection): + inspector = inspect(connection) + return table_name in inspector.get_table_names() + + exists = await conn.run_sync(check_table) + if exists: + logger.info(f"Table '{table_name}' exists in the database.") + else: + logger.error(f"Table '{table_name}' does not exist in the database.") + raise ValueError(f"Table '{table_name}' not found") + except Exception as e: + logger.error(f"Error verifying table existence: {e}") + raise + +async def count_records(engine, table_name): + try: + async with engine.begin() as conn: + result = await conn.execute(text(f"SELECT COUNT(*) FROM {table_name}")) + count = result.scalar() + logger.info(f"Total records in {table_name} after processing: {count}") + except Exception as e: + logger.error(f"Error counting records: {e}") + +async def fetch_existing_records(session, batch_size=1000): + offset = 0 + existing_records = {} + while True: + query = select(Item).offset(offset).limit(batch_size) + result = await session.execute(query) + items = result.scalars().all() + if not items: + break + for item in items: + existing_records[item.url] = item + offset += batch_size + logger.info(f"Fetched {len(items)} records, offset now {offset}") + return existing_records + +async def seed_and_update_embeddings(engine): + start_time = time.time() + + # Verify database connection + await verify_database_connection(engine) + + # Verify table exists + table_name = 'packages_all' # Replace with your actual table name + await verify_table_exists(engine, table_name) + + async_session = async_sessionmaker(engine, expire_on_commit=False) + + current_dir = os.path.dirname(os.path.realpath(__file__)) + csv_path = os.path.join(current_dir, "packages.csv") + + try: + df = pd.read_csv( + csv_path, delimiter=",", quotechar='"', escapechar="\\", on_bad_lines="skip", encoding="utf-8" + ) + logger.info(f"Read {len(df)} rows from CSV file") + logger.info(f"First few rows: {df.head().to_dict()}") + if len(df) == 0: + logger.error("CSV file is empty. No data to process.") + return + except pd.errors.ParserError as e: + logger.error(f"Error reading CSV file: {e}") + return + except FileNotFoundError: + logger.error(f"CSV file not found at path: {csv_path}") + return + + logger.info("CSV file read successfully. Processing data...") + + str_columns = df.select_dtypes(include=[object]).columns + df[str_columns] = df[str_columns].replace({np.nan: None}) + + num_columns = df.select_dtypes(include=([np.number])).columns + df[num_columns] = df[num_columns].replace({np.nan: None}) + + records = df.to_dict(orient="records") + new_records = {record["url"]: record for record in records} + + logger.info(f"Processed {len(new_records)} records from CSV") + + logger.info("Fetching existing records from the database...") + + async with async_session() as session: + existing_records = await fetch_existing_records(session) + + logger.info(f"Fetched {len(existing_records)} existing records.") + + azure_credential = DefaultAzureCredential() + openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client( + azure_credential + ) + + logger.info("Starting to insert, update, or delete records in the database...") + logger.info(f"Processing {len(new_records)} new records") + + async with async_session() as session: + # Test insertion + try: + test_item = Item(url="test_url", package_name="Test Package", price=100.0) + session.add(test_item) + await session.commit() + logger.info("Test insertion successful") + except Exception as e: + logger.error(f"Test insertion failed: {e}") + return + + insertion_count = 0 + update_count = 0 + error_count = 0 + + for url, record in tqdm(new_records.items(), desc="Processing new records"): + try: + record["price"] = convert_to_float(record.get("price")) + if record["price"] is None: + logger.warning(f"Skipping record with invalid price: {record}") + continue + + existing_item = existing_records.get(url) + + if existing_item: + if existing_item.price != record["price"]: + existing_item.price = record["price"] + session.merge(existing_item) + update_count += 1 + logger.info(f"Updated record with URL {url}") + else: + logger.info(f"Attempting to insert new record with URL {url}") + item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} + item = Item(**item_data) + session.add(item) + insertion_count += 1 + logger.info(f"New record added for URL {url}") + + if (insertion_count + update_count) % 100 == 0: + await session.commit() + logger.info(f"Committed batch: {insertion_count} insertions, {update_count} updates") + + except Exception as e: + logger.error(f"Error processing record with URL {url}: {e}") + error_count += 1 + continue + + try: + await session.commit() + logger.info(f"Final commit: {insertion_count} insertions, {update_count} updates, {error_count} errors") + except Exception as e: + logger.error(f"Error during final commit: {e}") + + # Count records at the end + await count_records(engine, table_name) + + logger.info("All records processed.") + end_time = time.time() + elapsed_time = end_time - start_time + logger.info(f"Total time taken: {elapsed_time:.2f} seconds") + + # Close the Azure credential client + await azure_credential.close() + + # Close the OpenAI client if needed + await openai_embed_client.close() + + +async def main(): + parser = argparse.ArgumentParser(description="Seed database with CSV data") + parser.add_argument("--host", type=str, help="Postgres host") + parser.add_argument("--username", type=str, help="Postgres username") + parser.add_argument("--password", type=str, help="Postgres password") + parser.add_argument("--database", type=str, help="Postgres database") + parser.add_argument("--sslmode", type=str, help="Postgres sslmode") + + args = parser.parse_args() + if args.host is None: + engine = await create_postgres_engine_from_env() + else: + engine = await create_postgres_engine_from_args(args) + + # Log the connection parameters (be careful not to log sensitive information) + logger.info(f"Connecting to database: {engine.url.database} on host: {engine.url.host}") + + await seed_and_update_embeddings(engine) + await engine.dispose() + +if __name__ == "__main__": + logging.basicConfig(level=logging.WARNING) + logger.setLevel(logging.INFO) + load_dotenv(override=True) + asyncio.run(main()) \ No newline at end of file diff --git a/src/fastapi_app/fast_update_hd_data.py b/src/fastapi_app/fast_update_hd_data.py index fd8a6281..1e4e51eb 100644 --- a/src/fastapi_app/fast_update_hd_data.py +++ b/src/fastapi_app/fast_update_hd_data.py @@ -29,9 +29,8 @@ EMBEDDING_FIELDS = [ 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', - 'price_to_reserve_for_this_package', 'shop_name', 'category', 'category_tags', - 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', - 'locations', 'meta_description', 'price_details', 'package_details', + 'shop_name', 'category', 'category_tags','preview_1_10', 'selling_point','meta_keywords', + 'brand', 'min_max_age','locations', 'meta_description', 'price_details','package_details', 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', 'common_question', 'know_this_disease', 'courses_of_action', 'signals_to_proceed_surgery', 'get_to_know_this_surgery', @@ -125,9 +124,10 @@ async def seed_and_update_embeddings(engine): for url, record in tqdm(new_records.items(), desc="Processing new records"): try: - record["id"] = convert_to_int(record.get("id")) record["price"] = convert_to_float(record.get("price")) record["cash_discount"] = convert_to_float(record.get("cash_discount")) + record["price_after_cash_discount"] = convert_to_float(record.get("price_after_cash_discount")) + record["price_to_reserve_for_this_package"] = convert_to_float(record.get("price_to_reserve_for_this_package")) record["brand_ranking_position"] = convert_to_int(record.get("brand_ranking_position")) if record["price"] is None: @@ -150,7 +150,7 @@ async def seed_and_update_embeddings(engine): item_data[f'embedding_{field}'] = None for key, value in item_data.items(): - if key not in ["id", "price", "cash_discount", "brand_ranking_position"]: + if key not in ["price", "cash_discount", "price_after_cash_discount", "price_to_reserve_for_this_package", "brand_ranking_position"]: item_data[key] = convert_to_str(value) item = Item(**item_data) @@ -169,9 +169,9 @@ async def seed_and_update_embeddings(engine): embedding_dimensions=openai_embed_dimensions, ) setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.id}") + logger.info(f"Updated embedding for {field} of item {item.url}") except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.id}: {e}") + logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") session.merge(item) await session.commit() diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 202e0ba2..1ea16cec 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -13,16 +13,16 @@ class Base(DeclarativeBase, MappedAsDataclass): class Item(Base): - __tablename__ = "packages" - id: Mapped[int] = mapped_column(primary_key=True) + __tablename__ = "packages_all" package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() - url: Mapped[str] = mapped_column() + url: Mapped[str] = mapped_column(primary_key=True) price: Mapped[float] = mapped_column() cash_discount: Mapped[float] = mapped_column() installment_month: Mapped[str] = mapped_column() + price_after_cash_discount: Mapped[float] = mapped_column() installment_limit: Mapped[str] = mapped_column() - price_to_reserve_for_this_package: Mapped[str] = mapped_column() + price_to_reserve_for_this_package: Mapped[float] = mapped_column() shop_name: Mapped[str] = mapped_column() category: Mapped[str] = mapped_column() category_tags: Mapped[str] = mapped_column() @@ -59,7 +59,6 @@ class Item(Base): embedding_url: Mapped[Vector] = mapped_column(Vector(1536)) embedding_installment_month: Mapped[Vector] = mapped_column(Vector(1536)) embedding_installment_limit: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_price_to_reserve_for_this_package: Mapped[Vector] = (mapped_column(Vector(1536))) embedding_shop_name: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category_tags: Mapped[Vector] = mapped_column(Vector(1536)) @@ -100,7 +99,6 @@ def to_dict(self, include_embedding: bool = False): "embedding_url", "embedding_installment_month", "embedding_installment_limit", - "embedding_price_to_reserve_for_this_package", "embedding_shop_name", "embedding_category", "embedding_category_tags", @@ -142,7 +140,6 @@ def to_dict(self, include_embedding: bool = False): "embedding_url", "embedding_installment_month", "embedding_installment_limit", - "embedding_price_to_reserve_for_this_package", "embedding_shop_name", "embedding_category", "embedding_category_tags", @@ -195,6 +192,7 @@ def to_str_for_narrow_rag(self): price: {self.price} cash_discount: {self.cash_discount} installment_month: {self.installment_month} + price_after_cash_discount: {self.price_after_cash_discount} installment_limit: {self.installment_limit} price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} shop_name: {self.shop_name} @@ -245,9 +243,6 @@ def to_str_for_embedding_installment_month(self): def to_str_for_embedding_installment_limit(self): return f"Installment Limit: {self.installment_limit}" if self.installment_limit else "" - def to_str_for_embedding_price_to_reserve_for_this_package(self): - return f"Price to Reserve for This Package: {self.price_to_reserve_for_this_package}" if self.price_to_reserve_for_this_package else "" - def to_str_for_embedding_shop_name(self): return f"Shop Name: {self.shop_name}" if self.shop_name else "" @@ -376,13 +371,6 @@ def to_str_for_embedding_faq(self): postgresql_with={"m": 16, "ef_construction": 64}, postgresql_ops={"embedding_installment_limit": "vector_ip_ops"}, ), - Index( - "hnsw_index_for_embedding_price_to_reserve_for_this_package", - Item.embedding_price_to_reserve_for_this_package, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_price_to_reserve_for_this_package": "vector_ip_ops"}, - ), Index( "hnsw_index_for_embedding_shop_name", Item.embedding_shop_name, diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index feb578cb..ec760235 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -1,6 +1,6 @@ from openai import AsyncOpenAI from pgvector.utils import to_db -from sqlalchemy import Float, Integer, select, text +from sqlalchemy import String, Float, Integer, select, text from sqlalchemy.ext.asyncio import async_sessionmaker from fastapi_app.embeddings import compute_text_embedding @@ -47,14 +47,13 @@ async def hybrid_search( vector_query = f""" WITH closest_embedding AS ( SELECT - id, + url, LEAST( COALESCE(embedding_package_name <=> :embedding, 1), COALESCE(embedding_package_picture <=> :embedding, 1), COALESCE(embedding_url <=> :embedding, 1), COALESCE(embedding_installment_month <=> :embedding, 1), COALESCE(embedding_installment_limit <=> :embedding, 1), - COALESCE(embedding_price_to_reserve_for_this_package <=> :embedding, 1), COALESCE(embedding_shop_name <=> :embedding, 1), COALESCE(embedding_category <=> :embedding, 1), COALESCE(embedding_category_tags <=> :embedding, 1), @@ -91,7 +90,7 @@ async def hybrid_search( {filter_clause_where} ) SELECT - id, + url, RANK() OVER (ORDER BY min_distance) AS rank FROM closest_embedding @@ -101,13 +100,12 @@ async def hybrid_search( """ fulltext_query = f""" - SELECT id, RANK () OVER (ORDER BY ts_rank_cd( + SELECT url, RANK () OVER (ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || to_tsvector('thai', COALESCE(package_picture, '')) || to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -145,7 +143,6 @@ async def hybrid_search( to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -183,7 +180,6 @@ async def hybrid_search( to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -225,21 +221,21 @@ async def hybrid_search( {fulltext_query} ) SELECT - COALESCE(vector_search.id, fulltext_search.id) AS id, + COALESCE(vector_search.url, fulltext_search.url) AS url, COALESCE(1.0 / (:k + vector_search.rank), 0.0) + COALESCE(1.0 / (:k + fulltext_search.rank), 0.0) AS score FROM vector_search - FULL OUTER JOIN fulltext_search ON vector_search.id = fulltext_search.id + FULL OUTER JOIN fulltext_search ON vector_search.url = fulltext_search.url ORDER BY score DESC LIMIT 20 """ if query_text is not None and len(query_vector) > 0: - sql = text(hybrid_query).columns(id=Integer, score=Float) + sql = text(hybrid_query).columns(url=String, score=Float) elif len(query_vector) > 0: - sql = text(vector_query).columns(id=Integer, rank=Integer) + sql = text(vector_query).columns(url=String, rank=Integer) elif query_text is not None: - sql = text(fulltext_query).columns(id=Integer, rank=Integer) + sql = text(fulltext_query).columns(url=String, rank=Integer) else: raise ValueError("Both query text and query vector are empty") @@ -253,8 +249,8 @@ async def hybrid_search( # Convert results to Item models items = [] - for id, _ in results[:top]: - item = await session.execute(select(Item).where(Item.id == id)) + for url, _ in results[:top]: + item = await session.execute(select(Item).where(Item.url == url)) items.append(item.scalar()) return items @@ -292,7 +288,7 @@ async def simple_sql_search( """ filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" - SELECT id FROM packages + SELECT url FROM packages {filter_clause_where} LIMIT 10 """ @@ -300,15 +296,15 @@ async def simple_sql_search( async with self.async_session_maker() as session: results = ( await session.execute( - text(sql).columns(id=Integer) + text(sql).columns(url=String) ) ).fetchall() # Convert results to Item models items = [] for result in results: - item_id = result.id - item = await session.execute(select(Item).where(Item.id == item_id)) + item_url = result.url + item = await session.execute(select(Item).where(Item.url == item_url)) items.append(item.scalar()) return items diff --git a/src/fastapi_app/prompts/query.txt b/src/fastapi_app/prompts/query.txt index 478f80ab..b2186035 100644 --- a/src/fastapi_app/prompts/query.txt +++ b/src/fastapi_app/prompts/query.txt @@ -1,5 +1,5 @@ Below is a history of the conversation so far, and a new question asked by the user that needs to be answered by searching database rows. -You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, installment_limit, price_to_reserve_for_this_package, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. +You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, price_after_cash_discount, installment_limit, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. Generate a search query based on the conversation and the new question. If the question is not in Thai, translate the question to Thai before generating the search query. If you cannot generate a search query, return the original user question. diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 3dbc8115..fba1bb93 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -73,7 +73,7 @@ async def hybrid_search(self, messages, top, vector_search, text_search): filters=filters, ) - sources_content = [f"[{(item.id)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] + sources_content = [f"[{(item.url)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] thought_steps = [ ThoughtStep( @@ -134,7 +134,7 @@ async def run( results = await self.searcher.simple_sql_search(filters=specify_package_filters) if results: - sources_content = [f"[{(item.id)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] + sources_content = [f"[{(item.url)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] thought_steps = [ ThoughtStep( @@ -187,6 +187,15 @@ async def run( chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, "thoughts": thought_steps + [ + ThoughtStep( + title="Prompt to generate answer", + description=[str(message) for message in messages], + props=( + {"model": self.chat_model, "deployment": self.chat_deployment} + if self.chat_deployment + else {"model": self.chat_model} + ), + ), ThoughtStep( title="Product Cards Details", description=product_cards_details, diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index 8855b88c..edef71fa 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -22,9 +22,8 @@ embedding_fields = [ 'embedding_package_name', 'embedding_package_picture', 'embedding_url', 'embedding_installment_month', 'embedding_installment_limit', - 'embedding_price_to_reserve_for_this_package', 'embedding_shop_name', - 'embedding_category', 'embedding_category_tags', 'embedding_preview_1_10', - 'embedding_selling_point', 'embedding_meta_keywords', 'embedding_brand', + 'embedding_shop_name', 'embedding_category', 'embedding_category_tags', + 'embedding_preview_1_10', 'embedding_selling_point', 'embedding_meta_keywords', 'embedding_brand', 'embedding_min_max_age', 'embedding_locations', 'embedding_meta_description', 'embedding_price_details', 'embedding_package_details', 'embedding_important_info', 'embedding_payment_booking_info', 'embedding_general_info', 'embedding_early_signs_for_diagnosis', @@ -53,13 +52,13 @@ def convert_to_str(value): return str(value) async def seed_data(engine): - logger.info("Checking if the packages table exists...") + logger.info("Checking if the packages_all table exists...") async with engine.begin() as conn: result = await conn.execute( text( """ SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all') """ # noqa ) ) @@ -88,23 +87,23 @@ async def seed_data(engine): logger.info("Starting to insert records into the database...") for record in tqdm(records, desc="Inserting records"): try: - record["id"] = convert_to_int(record["id"]) - if record["id"] is None: - logger.error(f"Skipping record with invalid id: {record}") + record["url"] = convert_to_str(record["url"]) + if record["url"] is None: + logger.error(f"Skipping record with invalid url: {record}") continue if "price" in record: record["price"] = convert_to_float(record["price"]) if "cash_discount" in record: record["cash_discount"] = convert_to_float(record["cash_discount"]) + if "price_after_cash_discount" in record: + record["price_after_cash_discount"] = convert_to_float(record["price_after_cash_discount"]) + if "price_to_reserve_for_this_package" in record: + record["price_to_reserve_for_this_package"] = convert_to_float(record["price_to_reserve_for_this_package"]) if "brand_ranking_position" in record: record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) - if record["price"] is None or record["cash_discount"] is None: - logger.error(f"Skipping record with invalid numeric fields: {record}") - continue - - item = await session.execute(select(Item).filter(Item.id == record["id"])) + item = await session.execute(select(Item).filter(Item.url == record["url"])) if item.scalars().first(): continue @@ -114,14 +113,14 @@ async def seed_data(engine): item_data[field] = None for key, value in item_data.items(): - if key not in ["id", "price", "cash_discount", "brand_ranking_position"]: + if key not in ["price", "price_to_reserve_for_this_package","cash_discount", "price_after_cash_discount", "brand_ranking_position"]: item_data[key] = convert_to_str(value) item = Item(**item_data) session.add(item) except Exception as e: - logger.error(f"Error inserting record with id {record['id']}: {e}") + logger.error(f"Error inserting record with url {record['url']}: {e}") await session.rollback() continue diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 10153da2..a1d2e43d 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -5,6 +5,7 @@ from dotenv import load_dotenv from sqlalchemy import select from sqlalchemy.ext.asyncio import async_sessionmaker +from sqlalchemy.ext.asyncio import AsyncSession from tqdm import tqdm from fastapi_app.embeddings import compute_text_embedding @@ -20,7 +21,7 @@ EMBEDDING_FIELDS = [ 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', - 'price_to_reserve_for_this_package', 'shop_name', 'category', 'category_tags', + 'shop_name', 'category', 'category_tags', 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', 'locations', 'meta_description','price_details', 'package_details', 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', @@ -38,31 +39,38 @@ async def update_embeddings(): azure_credential = DefaultAzureCredential() openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) - async with async_sessionmaker(engine, expire_on_commit=False)() as session: - async with session.begin(): - items = (await session.scalars(select(Item))).all() - logger.info(f"Found {len(items)} items to process.") + async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) - for item in tqdm(items, desc="Processing items"): - for field in EMBEDDING_FIELDS: - to_str_method = get_to_str_method(item, field) - if to_str_method: - field_value = to_str_method() - if field_value: - try: - embedding = await compute_text_embedding( - field_value, - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) - setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.id}") - except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.id}: {e}") + async with async_session_maker() as session: + try: + async with session.begin(): + items = (await session.scalars(select(Item))).all() + logger.info(f"Found {len(items)} items to process.") - session.add(item) - await session.commit() + for item in tqdm(items, desc="Processing items"): + for field in EMBEDDING_FIELDS: + to_str_method = get_to_str_method(item, field) + if to_str_method: + field_value = to_str_method() + if field_value: + try: + embedding = await compute_text_embedding( + field_value, + openai_client=openai_embed_client, + embed_model=openai_embed_model, + embedding_dimensions=openai_embed_dimensions, + ) + setattr(item, f'embedding_{field}', embedding) + logger.info(f"Updated embedding for {field} of item {item.url}") + except Exception as e: + logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") + + session.add(item) + await session.commit() + finally: + await session.close() + await engine.dispose() + await azure_credential.close() # Ensure the Azure credential client session is closed if __name__ == "__main__": asyncio.run(update_embeddings()) From 59b9cfe8759b74c1c7857146d83fb3f8dee59c01 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 11 Jul 2024 03:26:59 +0000 Subject: [PATCH 25/54] Use 2 tables for broad rag and narrow rag --- src/fastapi_app/fast2.py | 69 ++++++-- src/fastapi_app/postgres_models.py | 10 +- src/fastapi_app/postgres_searcher.py | 182 +++----------------- src/fastapi_app/prompts/answer.txt | 29 ++-- src/fastapi_app/prompts/specify_package.txt | 4 +- src/fastapi_app/query_rewriter.py | 34 +++- src/fastapi_app/rag_advanced.py | 47 +++-- src/fastapi_app/seed_hd_data.py | 79 ++++++--- src/fastapi_app/update_embeddings.py | 107 +++++++----- src/requirements.txt | 31 +++- 10 files changed, 316 insertions(+), 276 deletions(-) diff --git a/src/fastapi_app/fast2.py b/src/fastapi_app/fast2.py index 01b7e18b..f3ffea3c 100644 --- a/src/fastapi_app/fast2.py +++ b/src/fastapi_app/fast2.py @@ -8,11 +8,10 @@ import pandas as pd from azure.identity.aio import DefaultAzureCredential from dotenv import load_dotenv -from sqlalchemy import delete, select, text, inspect +from sqlalchemy import inspect, select, text from sqlalchemy.ext.asyncio import async_sessionmaker from tqdm import tqdm -from fastapi_app.embeddings import compute_text_embedding from fastapi_app.openai_clients import create_openai_embed_client from fastapi_app.postgres_engine import create_postgres_engine_from_args, create_postgres_engine_from_env from fastapi_app.postgres_models import Item @@ -24,37 +23,69 @@ logger = logging.getLogger("ragapp") EMBEDDING_FIELDS = [ - 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', - 'shop_name', 'category', 'category_tags', 'preview_1_10', 'selling_point', 'meta_keywords', - 'brand', 'min_max_age', 'locations', 'meta_description', 'price_details', 'package_details', - 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', - 'how_to_diagnose', 'hdcare_summary', 'common_question', 'know_this_disease', - 'courses_of_action', 'signals_to_proceed_surgery', 'get_to_know_this_surgery', - 'comparisons', 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', - 'brand_option_in_thai_name', 'faq' + "package_name", + "package_picture", + "url", + "installment_month", + "installment_limit", + "shop_name", + "category", + "category_tags", + "preview_1_10", + "selling_point", + "meta_keywords", + "brand", + "min_max_age", + "locations", + "meta_description", + "price_details", + "package_details", + "important_info", + "payment_booking_info", + "general_info", + "early_signs_for_diagnosis", + "how_to_diagnose", + "hdcare_summary", + "common_question", + "know_this_disease", + "courses_of_action", + "signals_to_proceed_surgery", + "get_to_know_this_surgery", + "comparisons", + "getting_ready", + "recovery", + "side_effects", + "review_4_5_stars", + "brand_option_in_thai_name", + "faq", ] + def get_to_str_method(item, field): method_name = f"to_str_for_embedding_{field}" return getattr(item, method_name, None) + def convert_to_int(value): try: return int(value) except (ValueError, TypeError): return None + def convert_to_float(value): try: return float(value) except (ValueError, TypeError): return None + def convert_to_str(value): if value is None: return None return str(value) + async def verify_database_connection(engine): try: async with engine.connect() as conn: @@ -64,9 +95,11 @@ async def verify_database_connection(engine): logger.error(f"Database connection failed: {e}") raise + async def verify_table_exists(engine, table_name): try: async with engine.begin() as conn: + def check_table(connection): inspector = inspect(connection) return table_name in inspector.get_table_names() @@ -81,6 +114,7 @@ def check_table(connection): logger.error(f"Error verifying table existence: {e}") raise + async def count_records(engine, table_name): try: async with engine.begin() as conn: @@ -90,6 +124,7 @@ async def count_records(engine, table_name): except Exception as e: logger.error(f"Error counting records: {e}") + async def fetch_existing_records(session, batch_size=1000): offset = 0 existing_records = {} @@ -105,14 +140,15 @@ async def fetch_existing_records(session, batch_size=1000): logger.info(f"Fetched {len(items)} records, offset now {offset}") return existing_records + async def seed_and_update_embeddings(engine): start_time = time.time() - + # Verify database connection await verify_database_connection(engine) - + # Verify table exists - table_name = 'packages_all' # Replace with your actual table name + table_name = "packages_all_staging" # Replace with your actual table name await verify_table_exists(engine, table_name) async_session = async_sessionmaker(engine, expire_on_commit=False) @@ -121,9 +157,7 @@ async def seed_and_update_embeddings(engine): csv_path = os.path.join(current_dir, "packages.csv") try: - df = pd.read_csv( - csv_path, delimiter=",", quotechar='"', escapechar="\\", on_bad_lines="skip", encoding="utf-8" - ) + df = pd.read_csv(csv_path, delimiter=",", quotechar='"', escapechar="\\", on_bad_lines="skip", encoding="utf-8") logger.info(f"Read {len(df)} rows from CSV file") logger.info(f"First few rows: {df.head().to_dict()}") if len(df) == 0: @@ -252,8 +286,9 @@ async def main(): await seed_and_update_embeddings(engine) await engine.dispose() + if __name__ == "__main__": logging.basicConfig(level=logging.WARNING) logger.setLevel(logging.INFO) load_dotenv(override=True) - asyncio.run(main()) \ No newline at end of file + asyncio.run(main()) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 1ea16cec..4a55700f 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -13,7 +13,7 @@ class Base(DeclarativeBase, MappedAsDataclass): class Item(Base): - __tablename__ = "packages_all" + __tablename__ = "packages_all_staging" package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() url: Mapped[str] = mapped_column(primary_key=True) @@ -178,7 +178,7 @@ def to_dict(self, include_embedding: bool = False): def to_str_for_broad_rag(self): return f""" package_name: {self.package_name} - url: {self.url} + url: {self.url}?utm_source=ai-chat locations: {self.locations} price: {self.price} brand: {self.brand} @@ -188,7 +188,7 @@ def to_str_for_narrow_rag(self): return f""" package_name: {self.package_name} package_picture: {self.package_picture} - url: {self.url} + url: {self.url}?utm_source=ai-chat price: {self.price} cash_discount: {self.cash_discount} installment_month: {self.installment_month} @@ -307,7 +307,9 @@ def to_str_for_embedding_courses_of_action(self): return f"Courses of Action: {self.courses_of_action}" if self.courses_of_action else "" def to_str_for_embedding_signals_to_proceed_surgery(self): - return f"Signals to Proceed Surgery: {self.signals_to_proceed_surgery}" if self.signals_to_proceed_surgery else "" + return ( + f"Signals to Proceed Surgery: {self.signals_to_proceed_surgery}" if self.signals_to_proceed_surgery else "" + ) def to_str_for_embedding_get_to_know_this_surgery(self): return f"Get to Know This Surgery: {self.get_to_know_this_surgery}" if self.get_to_know_this_surgery else "" diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index ec760235..dd2ebcfc 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -49,41 +49,8 @@ async def hybrid_search( SELECT url, LEAST( - COALESCE(embedding_package_name <=> :embedding, 1), - COALESCE(embedding_package_picture <=> :embedding, 1), - COALESCE(embedding_url <=> :embedding, 1), - COALESCE(embedding_installment_month <=> :embedding, 1), - COALESCE(embedding_installment_limit <=> :embedding, 1), - COALESCE(embedding_shop_name <=> :embedding, 1), - COALESCE(embedding_category <=> :embedding, 1), - COALESCE(embedding_category_tags <=> :embedding, 1), - COALESCE(embedding_preview_1_10 <=> :embedding, 1), - COALESCE(embedding_selling_point <=> :embedding, 1), - COALESCE(embedding_meta_keywords <=> :embedding, 1), - COALESCE(embedding_brand <=> :embedding, 1), - COALESCE(embedding_min_max_age <=> :embedding, 1), - COALESCE(embedding_locations <=> :embedding, 1), - COALESCE(embedding_meta_description <=> :embedding, 1), - COALESCE(embedding_price_details <=> :embedding, 1), - COALESCE(embedding_package_details <=> :embedding, 1), - COALESCE(embedding_important_info <=> :embedding, 1), - COALESCE(embedding_payment_booking_info <=> :embedding, 1), - COALESCE(embedding_general_info <=> :embedding, 1), - COALESCE(embedding_early_signs_for_diagnosis <=> :embedding, 1), - COALESCE(embedding_how_to_diagnose <=> :embedding, 1), - COALESCE(embedding_hdcare_summary <=> :embedding, 1), - COALESCE(embedding_common_question <=> :embedding, 1), - COALESCE(embedding_know_this_disease <=> :embedding, 1), - COALESCE(embedding_courses_of_action <=> :embedding, 1), - COALESCE(embedding_signals_to_proceed_surgery <=> :embedding, 1), - COALESCE(embedding_get_to_know_this_surgery <=> :embedding, 1), - COALESCE(embedding_comparisons <=> :embedding, 1), - COALESCE(embedding_getting_ready <=> :embedding, 1), - COALESCE(embedding_recovery <=> :embedding, 1), - COALESCE(embedding_side_effects <=> :embedding, 1), - COALESCE(embedding_review_4_5_stars <=> :embedding, 1), - COALESCE(embedding_brand_option_in_thai_name <=> :embedding, 1), - COALESCE(embedding_faq <=> :embedding, 1) + embedding_package_name <=> :embedding, + COALESCE(embedding_locations <=> :embedding, 1) ) AS min_distance FROM packages @@ -102,114 +69,15 @@ async def hybrid_search( fulltext_query = f""" SELECT url, RANK () OVER (ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')), query) DESC) + to_tsvector('thai', COALESCE(locations, '')), query) DESC) FROM packages, plainto_tsquery('thai', :query) query WHERE ( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')) + to_tsvector('thai', COALESCE(locations, '')) ) @@ query {filter_clause_and} ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')), query) DESC + to_tsvector('thai', COALESCE(locations, '')), query) DESC LIMIT 20 """ @@ -288,7 +156,7 @@ async def simple_sql_search( """ filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" - SELECT url FROM packages + SELECT url FROM packages_all_staging {filter_clause_where} LIMIT 10 """ @@ -309,23 +177,23 @@ async def simple_sql_search( return items - async def get_product_cards_info(self, urls: list[str]) -> list[dict]: - """ - Fetch detailed information about items using their URLs as identifiers. - """ - sql = """ - SELECT package_name, package_picture, url, price FROM packages WHERE url = ANY(:urls) - """ + # async def get_product_cards_info(self, urls: list[str]) -> list[dict]: + # """ + # Fetch detailed information about items using their URLs as identifiers. + # """ + # sql = """ + # SELECT package_name, package_picture, url, price FROM packages_all_staging WHERE url = ANY(:urls) + # """ - async with self.async_session_maker() as session: - results = ( - await session.execute( - text(sql), {"urls": urls} - ) - ).fetchall() - - # Convert results to dictionaries - items = [] - for result in results: - items.append(dict(result._mapping)) - return items \ No newline at end of file + # async with self.async_session_maker() as session: + # results = ( + # await session.execute( + # text(sql), {"urls": urls} + # ) + # ).fetchall() + + # # Convert results to dictionaries + # items = [] + # for result in results: + # items.append(dict(result._mapping)) + # return items \ No newline at end of file diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index ac8f3ae8..cffe7ced 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -1,12 +1,19 @@ -You are a woman name Jib (จิ๊บ), a sales consultant from HDmall which you need to convince the customers to buy some products from our store name HDmall, Please answer in casual and friendly manner. Don't recommend any product yet on the first conversation before the customer asking. You can use Emoji to make the conversation more friendly if you want. -Represent youself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai language. -Represent youself as Jib and the customer as you when the conversation is in English or Non-Thai language. +Output only plain text. Do not output markdown +You are a woman named Jib (จิ๊บ), a sales consultant from HDmall. +Convince customers to buy products from HDmall. +Answer in a casual and friendly manner. +You can use emojis to make the conversation more friendly. +Output only plain text. Do not output markdown +Represent yourself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai. +Represent yourself as Jib and the customer as you when the conversation is in English or a non-Thai language. Answer the customer's question in the same language as the customer's question. -It's not important whether the customer is male or female, you are woman named Jib, please end with "ค่ะ" when you chat with customer in Thai language. -If the customer want to buy a product or book a service, or having an strong intent of interested in some package, respond "QISCUS_INTEGRATION_TO_CX" to handover to customer service. -When the customer asks about any packages, please make sure to provide brand, price ,URL which in a new line, location with google maps link every time. -If the user is asking a question regarding location, proximity, or area, query relevant document from the source and ask where the user is at. please try to suggest services or answers closest to the location the user is asking as much as possible. -Answer ONLY with the facts listed in the list of sources below. If there isn't enough information below, say sorry you don't know (in users' language). Do not generate answers that don't use the sources below. If asking a clarifying question to the user would help, ask the question. -Since this is a text-based conversation in a chatroom, do not use markdown or any similar rich formatting. Also, don't wrap URL in a parentheses. -Note that some packages may have additional cost. -If the user ask for any phone number tell them to contact HDmall at 0822164269, 0923992692 โทรได้ทุกวันเลยนะคะ มีแอดมินคอยให้บริการตั้งแต่ 9.00 -01.00. น. \ No newline at end of file +It's not important whether the customer is male or female; you are a woman named Jib. +Use "คะ" or "ค่ะ" not "ครับ" when chatting with customers in Thai. +If the user asks for any phone number, tell them to contact HDmall at 0822164269, 0923992692. โทรได้ทุกวันเลยนะคะ มีแอดมินคอยให้บริการตั้งแต่ 9.00 - 01.00 น. +Output only plain text. Do not output markdown +Answer only with the facts listed in the sources provided. +If there isn't enough information in the sources, say sorry you don't know (in the user's language). +Do not generate answers that don't use the sources provided. +Ask clarifying questions if it helps. +Answer based on the chat history first if the sources are not relevant. +Output only plain text. Do not output markdown \ No newline at end of file diff --git a/src/fastapi_app/prompts/specify_package.txt b/src/fastapi_app/prompts/specify_package.txt index 59bc47da..9fe539e9 100644 --- a/src/fastapi_app/prompts/specify_package.txt +++ b/src/fastapi_app/prompts/specify_package.txt @@ -1 +1,3 @@ -Please specify the exact URL or package name from past messages only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package, respond by stating that you could not find a matching package and ask the user to provide more details or check previous messages for the exact package information. +If the user's message shows a strong intent to buy a particular package or service, only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information, or mentions coupon, booking, cancellation, scheduling, or rescheduling, or other post-purchase intents, respond by calling the `handover_to_cx` function. + +Otherwise, specify the exact URL or package name from past messages by calling the `specify_package` function only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information. diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 67d091d0..114b7e6f 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -115,17 +115,43 @@ def handle_specify_package_function_call(chat_completion: ChatCompletion): filters.append( { "column": "url", - "comparison_operator": "=", - "value": url, + "comparison_operator": "ILIKE", + "value": f"%{url}%", } ) if package_name: filters.append( { "column": "package_name", - "comparison_operator": "=", - "value": package_name, + "comparison_operator": "ILIKE", + "value": f"%{package_name}%", } ) return filters +def build_handover_to_cx_function() -> list[ChatCompletionToolParam]: + return [ + { + "type": "function", + "function": { + "name": "handover_to_cx", + "description": """ + This function is used to seamlessly transfer the current conversation to a live + customer support agent when the user's message indicates a strong intent to buy a + particular package or service, or mentions booking, cancellation, scheduling, + or rescheduling, or other post-purchase intents. Upon invocation, + this function will notify the customer support team to take over the conversation, + ensuring that the user's needs are promptly and accurately addressed by a human representative. + """, + "parameters": {}, + }, + } + ] + +def is_handover_to_cx(chat_completion: ChatCompletion): + response_message = chat_completion.choices[0].message + if response_message.tool_calls: + for tool in response_message.tool_calls: + if tool.type == "function" and tool.function.name == "handover_to_cx": + return True + return False \ No newline at end of file diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index fba1bb93..0ad6bac3 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -13,10 +13,12 @@ from .api_models import ThoughtStep from .postgres_searcher import PostgresSearcher from .query_rewriter import ( + build_handover_to_cx_function, build_hybrid_search_function, build_specify_package_function, extract_search_arguments, handle_specify_package_function_call, + is_handover_to_cx, ) # Configure logging @@ -98,8 +100,8 @@ async def hybrid_search(self, messages, top, vector_search, text_search): ] return sources_content, thought_steps - async def get_product_cards_details(self, urls: list[str]) -> list[dict]: - return await self.searcher.get_product_cards_info(urls) + # async def get_product_cards_details(self, urls: list[str]) -> list[dict]: + # return await self.searcher.get_product_cards_info(urls) async def run( self, messages: list[dict], overrides: dict[str, Any] = {} @@ -125,9 +127,26 @@ async def run( temperature=0.0, max_tokens=specify_package_token_limit, n=1, - tools=build_specify_package_function() + tools=build_handover_to_cx_function()+build_specify_package_function() ) + specify_package_resp = specify_package_chat_completion.model_dump() + if is_handover_to_cx(specify_package_chat_completion): + specify_package_resp["choices"][0]["message"]["content"] = "QISCUS_INTEGRATION_TO_CX" + + specify_package_resp["choices"][0]["context"] = { + "data_points": {"text": ""}, + "thoughts": [ + ThoughtStep( + title="Product Cards Details", + description=[], + props={} + ) + ] + } + + return specify_package_resp + specify_package_filters = handle_specify_package_function_call(specify_package_chat_completion) if specify_package_filters: # Simple SQL search @@ -176,13 +195,13 @@ async def run( ) chat_resp = chat_completion_response.model_dump() - chat_resp_content = chat_resp["choices"][0]["message"]["content"] - package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) + # chat_resp_content = chat_resp["choices"][0]["message"]["content"] + # package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) - if package_urls: - product_cards_details = await self.get_product_cards_details(package_urls) - else: - product_cards_details = [] + # if package_urls: + # product_cards_details = await self.get_product_cards_details(package_urls) + # else: + # product_cards_details = [] chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, @@ -196,11 +215,11 @@ async def run( else {"model": self.chat_model} ), ), - ThoughtStep( - title="Product Cards Details", - description=product_cards_details, - props={} - ) + # ThoughtStep( + # title="Product Cards Details", + # description=product_cards_details, + # props={} + # ) ] } return chat_resp \ No newline at end of file diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index edef71fa..f64bea5d 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -20,45 +20,72 @@ logger = logging.getLogger("ragapp") embedding_fields = [ - 'embedding_package_name', 'embedding_package_picture', 'embedding_url', - 'embedding_installment_month', 'embedding_installment_limit', - 'embedding_shop_name', 'embedding_category', 'embedding_category_tags', - 'embedding_preview_1_10', 'embedding_selling_point', 'embedding_meta_keywords', 'embedding_brand', - 'embedding_min_max_age', 'embedding_locations', 'embedding_meta_description', - 'embedding_price_details', 'embedding_package_details', 'embedding_important_info', - 'embedding_payment_booking_info', 'embedding_general_info', 'embedding_early_signs_for_diagnosis', - 'embedding_how_to_diagnose', 'embedding_hdcare_summary', 'embedding_common_question', - 'embedding_know_this_disease', 'embedding_courses_of_action', 'embedding_signals_to_proceed_surgery', - 'embedding_get_to_know_this_surgery', 'embedding_comparisons', 'embedding_getting_ready', - 'embedding_recovery', 'embedding_side_effects', 'embedding_review_4_5_stars', - 'embedding_brand_option_in_thai_name', 'embedding_faq' + "embedding_package_name", + "embedding_package_picture", + "embedding_url", + "embedding_installment_month", + "embedding_installment_limit", + "embedding_shop_name", + "embedding_category", + "embedding_category_tags", + "embedding_preview_1_10", + "embedding_selling_point", + "embedding_meta_keywords", + "embedding_brand", + "embedding_min_max_age", + "embedding_locations", + "embedding_meta_description", + "embedding_price_details", + "embedding_package_details", + "embedding_important_info", + "embedding_payment_booking_info", + "embedding_general_info", + "embedding_early_signs_for_diagnosis", + "embedding_how_to_diagnose", + "embedding_hdcare_summary", + "embedding_common_question", + "embedding_know_this_disease", + "embedding_courses_of_action", + "embedding_signals_to_proceed_surgery", + "embedding_get_to_know_this_surgery", + "embedding_comparisons", + "embedding_getting_ready", + "embedding_recovery", + "embedding_side_effects", + "embedding_review_4_5_stars", + "embedding_brand_option_in_thai_name", + "embedding_faq", ] + def convert_to_int(value): try: return int(value) except (ValueError, TypeError): return None + def convert_to_float(value): try: return float(value) except (ValueError, TypeError): return None + def convert_to_str(value): if value is None: return None return str(value) + async def seed_data(engine): - logger.info("Checking if the packages_all table exists...") + logger.info("Checking if the packages_all_staging table exists...") async with engine.begin() as conn: result = await conn.execute( text( """ SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all_staging') """ # noqa ) ) @@ -71,7 +98,9 @@ async def seed_data(engine): csv_path = os.path.join(current_dir, "packages.csv") try: - df = pd.read_csv(csv_path, delimiter=',', quotechar='"', escapechar='\\', on_bad_lines='skip', encoding='utf-8') + df = pd.read_csv( + csv_path, delimiter=",", quotechar='"', escapechar="\\", on_bad_lines="skip", encoding="utf-8" + ) except pd.errors.ParserError as e: logger.error(f"Error reading CSV file: {e}") return @@ -82,7 +111,7 @@ async def seed_data(engine): num_columns = df.select_dtypes(include=[np.number]).columns df[num_columns] = df[num_columns].replace({np.nan: None}) - records = df.to_dict(orient='records') + records = df.to_dict(orient="records") logger.info("Starting to insert records into the database...") for record in tqdm(records, desc="Inserting records"): @@ -91,7 +120,7 @@ async def seed_data(engine): if record["url"] is None: logger.error(f"Skipping record with invalid url: {record}") continue - + if "price" in record: record["price"] = convert_to_float(record["price"]) if "cash_discount" in record: @@ -99,7 +128,9 @@ async def seed_data(engine): if "price_after_cash_discount" in record: record["price_after_cash_discount"] = convert_to_float(record["price_after_cash_discount"]) if "price_to_reserve_for_this_package" in record: - record["price_to_reserve_for_this_package"] = convert_to_float(record["price_to_reserve_for_this_package"]) + record["price_to_reserve_for_this_package"] = convert_to_float( + record["price_to_reserve_for_this_package"] + ) if "brand_ranking_position" in record: record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) @@ -113,7 +144,13 @@ async def seed_data(engine): item_data[field] = None for key, value in item_data.items(): - if key not in ["price", "price_to_reserve_for_this_package","cash_discount", "price_after_cash_discount", "brand_ranking_position"]: + if key not in [ + "price", + "price_to_reserve_for_this_package", + "cash_discount", + "price_after_cash_discount", + "brand_ranking_position", + ]: item_data[key] = convert_to_str(value) item = Item(**item_data) @@ -130,6 +167,7 @@ async def seed_data(engine): except sqlalchemy.exc.IntegrityError as e: logger.error(f"Integrity error during commit: {e}") + async def main(): parser = argparse.ArgumentParser(description="Seed database with CSV data") parser.add_argument("--host", type=str, help="Postgres host") @@ -147,8 +185,9 @@ async def main(): await seed_data(engine) await engine.dispose() + if __name__ == "__main__": logging.basicConfig(level=logging.WARNING) logger.setLevel(logging.INFO) load_dotenv(override=True) - asyncio.run(main()) \ No newline at end of file + asyncio.run(main()) diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index a1d2e43d..95622d36 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -3,15 +3,15 @@ from azure.identity.aio import DefaultAzureCredential from dotenv import load_dotenv -from sqlalchemy import select -from sqlalchemy.ext.asyncio import async_sessionmaker -from sqlalchemy.ext.asyncio import AsyncSession -from tqdm import tqdm +from sqlalchemy import select, func +from sqlalchemy.ext.asyncio import async_sessionmaker, AsyncSession +from tqdm.asyncio import tqdm_asyncio, tqdm +from tqdm import trange -from fastapi_app.embeddings import compute_text_embedding -from fastapi_app.openai_clients import create_openai_embed_client -from fastapi_app.postgres_engine import create_postgres_engine_from_env -from fastapi_app.postgres_models import Item +from embeddings import compute_text_embedding +from openai_clients import create_openai_embed_client +from postgres_engine import create_postgres_engine_from_env +from postgres_models import Item load_dotenv() @@ -20,57 +20,70 @@ logger = logging.getLogger(__name__) EMBEDDING_FIELDS = [ - 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', - 'shop_name', 'category', 'category_tags', - 'preview_1_10', 'selling_point', 'meta_keywords', 'brand', 'min_max_age', - 'locations', 'meta_description','price_details', 'package_details', 'important_info', - 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', 'how_to_diagnose', - 'hdcare_summary', 'common_question', 'know_this_disease', 'courses_of_action', - 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', 'getting_ready', - 'recovery', 'side_effects', 'review_4_5_stars', 'brand_option_in_thai_name', 'faq' + 'package_name', 'locations' ] def get_to_str_method(item, field): method_name = f"to_str_for_embedding_{field}" return getattr(item, method_name, None) -async def update_embeddings(): +async def fetch_items(session, offset, batch_size): + return (await session.scalars(select(Item).where(Item.embedding_url.is_(None)).offset(offset).limit(batch_size))).all() + +async def process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions): + async with async_session_maker() as session: + async with session.begin(): + for item in items: + for field in EMBEDDING_FIELDS: + to_str_method = get_to_str_method(item, field) + if to_str_method: + field_value = to_str_method() + if field_value: + try: + embedding = await compute_text_embedding( + field_value, + openai_client=openai_embed_client, + embed_model=openai_embed_model, + embedding_dimensions=openai_embed_dimensions, + ) + setattr(item, f'embedding_{field}', embedding) + logger.info(f"Updated embedding for {field} of item {item.url}") + except Exception as e: + logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") + + session.add(item) + await session.commit() + +async def update_embeddings(batch_size=100): engine = await create_postgres_engine_from_env() azure_credential = DefaultAzureCredential() openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) - async with async_session_maker() as session: - try: - async with session.begin(): - items = (await session.scalars(select(Item))).all() - logger.info(f"Found {len(items)} items to process.") - - for item in tqdm(items, desc="Processing items"): - for field in EMBEDDING_FIELDS: - to_str_method = get_to_str_method(item, field) - if to_str_method: - field_value = to_str_method() - if field_value: - try: - embedding = await compute_text_embedding( - field_value, - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) - setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.url}") - except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") - - session.add(item) - await session.commit() - finally: - await session.close() - await engine.dispose() - await azure_credential.close() # Ensure the Azure credential client session is closed + async with async_session_maker() as fetch_session: + total_items = await fetch_session.scalar(select(func.count(Item.url)).where(Item.embedding_url.is_(None))) + logger.info(f"Found {total_items} items to process.") + + offset = 0 + with tqdm(total=total_items, desc="Updating embeddings") as pbar: + while offset < total_items: + async with async_session_maker() as fetch_session: + items = await fetch_items(fetch_session, offset, batch_size) + if not items: + break + + # Expunge items from the original session + for item in items: + fetch_session.expunge(item) + + logger.info(f"Processing batch of {len(items)} items (offset {offset})") + await process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions) + offset += batch_size + pbar.update(len(items)) + + await engine.dispose() + await azure_credential.close() # Ensure the Azure credential client session is closed if __name__ == "__main__": asyncio.run(update_embeddings()) diff --git a/src/requirements.txt b/src/requirements.txt index 67fc3d5f..0dc4f814 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -2,11 +2,13 @@ aiohttp==3.9.5 aiosignal==1.3.1 annotated-types==0.7.0 anyio==4.4.0 +asgiref==3.8.1 async-timeout==4.0.3 asyncpg==0.29.0 attrs==23.2.0 azure-core==1.30.1 azure-identity==1.16.0 +azure-monitor-opentelemetry-exporter==1.0.0b27 build==1.2.1 certifi==2024.2.2 cffi==1.16.0 @@ -14,6 +16,7 @@ cfgv==3.4.0 charset-normalizer==3.3.2 click==8.1.7 cryptography==42.0.7 +Deprecated==1.2.14 distlib==0.3.8 distro==1.9.0 dnspython==2.6.1 @@ -21,12 +24,15 @@ email_validator==2.1.1 environs==11.0.0 fastapi==0.111.0 fastapi-cli==0.0.4 --e git+https://github.com/chatrtham/rag-postgres-openai-python.git@7a91d2ab7d3814bb2ed6286a8b89255405309e94#egg=fastapi_app&subdirectory=src +-e git+https://github.com/chatrtham/rag-postgres-openai-python.git@c63d4e04d0043c99fc0eafd55a2116f2f4e36b5a#egg=fastapi_app&subdirectory=src filelock==3.14.0 +fixedint==0.1.6 frozenlist==1.4.1 gitdb==4.0.11 GitPython==3.1.41 +googleapis-common-protos==1.63.2 greenlet==3.0.3 +grpcio==1.64.1 gunicorn==22.0.0 h11==0.14.0 httpcore==1.0.5 @@ -34,6 +40,8 @@ httptools==0.6.1 httpx==0.27.0 identify==2.5.36 idna==3.7 +importlib_metadata==7.1.0 +isodate==0.6.1 Jinja2==3.1.4 markdown-it-py==3.0.0 MarkupSafe==2.1.5 @@ -41,11 +49,27 @@ marshmallow==3.21.2 mdurl==0.1.2 msal==1.28.0 msal-extensions==1.1.0 +msrest==0.7.1 multidict==6.0.5 nodeenv==1.9.1 numpy==1.26.4 +oauthlib==3.2.2 openai==1.31.0 openai-messages-token-helper==0.1.4 +opentelemetry-api==1.25.0 +opentelemetry-exporter-otlp==1.25.0 +opentelemetry-exporter-otlp-proto-common==1.25.0 +opentelemetry-exporter-otlp-proto-grpc==1.25.0 +opentelemetry-exporter-otlp-proto-http==1.25.0 +opentelemetry-instrumentation==0.46b0 +opentelemetry-instrumentation-asgi==0.46b0 +opentelemetry-instrumentation-fastapi==0.46b0 +opentelemetry-instrumentation-requests==0.46b0 +opentelemetry-instrumentation-sqlalchemy==0.46b0 +opentelemetry-proto==1.25.0 +opentelemetry-sdk==1.25.0 +opentelemetry-semantic-conventions==0.46b0 +opentelemetry-util-http==0.46b0 orjson==3.10.3 packaging==24.0 pandas==2.2.2 @@ -55,6 +79,8 @@ pip-tools==7.4.1 platformdirs==4.2.2 portalocker==2.8.2 pre-commit==3.7.1 +protobuf==4.25.3 +psutil==5.9.8 pycparser==2.22 pydantic==2.7.2 pydantic_core==2.18.3 @@ -68,6 +94,7 @@ pytz==2024.1 PyYAML==6.0.1 regex==2024.5.15 requests==2.32.3 +requests-oauthlib==2.0.0 rich==13.7.1 ruff==0.4.8 shellingham==1.5.4 @@ -89,4 +116,6 @@ uvloop==0.19.0 virtualenv==20.26.2 watchfiles==0.22.0 websockets==12.0 +wrapt==1.16.0 yarl==1.9.4 +zipp==3.19.2 From a6a63d83b6546e7dcf1bc3dd2c997887bb6dd62d Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 12 Jul 2024 04:44:12 +0000 Subject: [PATCH 26/54] Add prompts for promotions + Fix some prompts --- src/fastapi_app/postgres_models.py | 4 +- src/fastapi_app/postgres_searcher.py | 137 +++++++++++++++++++- src/fastapi_app/prompts/answer.txt | 25 +++- src/fastapi_app/prompts/query.txt | 1 + src/fastapi_app/prompts/specify_package.txt | 2 +- src/fastapi_app/query_rewriter.py | 1 + src/fastapi_app/rag_advanced.py | 25 +++- 7 files changed, 182 insertions(+), 13 deletions(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 4a55700f..0c397a26 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -178,7 +178,7 @@ def to_dict(self, include_embedding: bool = False): def to_str_for_broad_rag(self): return f""" package_name: {self.package_name} - url: {self.url}?utm_source=ai-chat + url: {self.url} locations: {self.locations} price: {self.price} brand: {self.brand} @@ -188,7 +188,7 @@ def to_str_for_narrow_rag(self): return f""" package_name: {self.package_name} package_picture: {self.package_picture} - url: {self.url}?utm_source=ai-chat + url: {self.url} price: {self.price} cash_discount: {self.cash_discount} installment_month: {self.installment_month} diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index dd2ebcfc..0196632d 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -49,8 +49,33 @@ async def hybrid_search( SELECT url, LEAST( - embedding_package_name <=> :embedding, - COALESCE(embedding_locations <=> :embedding, 1) + embedding_package_name <=> :embedding, + COALESCE(embedding_category <=> :embedding, 1), + COALESCE(embedding_category_tags <=> :embedding, 1), + COALESCE(embedding_meta_keywords <=> :embedding, 1), + COALESCE(embedding_brand <=> :embedding, 1), + COALESCE(embedding_locations <=> :embedding, 1), + COALESCE(embedding_meta_description <=> :embedding, 1), + COALESCE(embedding_price_details <=> :embedding, 1), + COALESCE(embedding_package_details <=> :embedding, 1), + COALESCE(embedding_important_info <=> :embedding, 1), + COALESCE(embedding_payment_booking_info <=> :embedding, 1), + COALESCE(embedding_general_info <=> :embedding, 1), + COALESCE(embedding_early_signs_for_diagnosis <=> :embedding, 1), + COALESCE(embedding_how_to_diagnose <=> :embedding, 1), + COALESCE(embedding_hdcare_summary <=> :embedding, 1), + COALESCE(embedding_common_question <=> :embedding, 1), + COALESCE(embedding_know_this_disease <=> :embedding, 1), + COALESCE(embedding_courses_of_action <=> :embedding, 1), + COALESCE(embedding_signals_to_proceed_surgery <=> :embedding, 1), + COALESCE(embedding_get_to_know_this_surgery <=> :embedding, 1), + COALESCE(embedding_comparisons <=> :embedding, 1), + COALESCE(embedding_getting_ready <=> :embedding, 1), + COALESCE(embedding_recovery <=> :embedding, 1), + COALESCE(embedding_side_effects <=> :embedding, 1), + COALESCE(embedding_review_4_5_stars <=> :embedding, 1), + COALESCE(embedding_brand_option_in_thai_name <=> :embedding, 1), + COALESCE(embedding_faq <=> :embedding, 1) ) AS min_distance FROM packages @@ -69,15 +94,117 @@ async def hybrid_search( fulltext_query = f""" SELECT url, RANK () OVER (ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(locations, '')), query) DESC) + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')), query) DESC) FROM packages, plainto_tsquery('thai', :query) query WHERE ( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(locations, '')) + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')) ) @@ query {filter_clause_and} ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(locations, '')), query) DESC + to_tsvector('thai', COALESCE(package_picture, '')) || + to_tsvector('thai', COALESCE(url, '')) || + to_tsvector('thai', COALESCE(installment_month, '')) || + to_tsvector('thai', COALESCE(installment_limit, '')) || + to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || + to_tsvector('thai', COALESCE(shop_name, '')) || + to_tsvector('thai', COALESCE(category, '')) || + to_tsvector('thai', COALESCE(category_tags, '')) || + to_tsvector('thai', COALESCE(preview_1_10, '')) || + to_tsvector('thai', COALESCE(selling_point, '')) || + to_tsvector('thai', COALESCE(meta_keywords, '')) || + to_tsvector('thai', COALESCE(brand, '')) || + to_tsvector('thai', COALESCE(min_max_age, '')) || + to_tsvector('thai', COALESCE(locations, '')) || + to_tsvector('thai', COALESCE(meta_description, '')) || + to_tsvector('thai', COALESCE(price_details, '')) || + to_tsvector('thai', COALESCE(package_details, '')) || + to_tsvector('thai', COALESCE(important_info, '')) || + to_tsvector('thai', COALESCE(payment_booking_info, '')) || + to_tsvector('thai', COALESCE(general_info, '')) || + to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || + to_tsvector('thai', COALESCE(how_to_diagnose, '')) || + to_tsvector('thai', COALESCE(hdcare_summary, '')) || + to_tsvector('thai', COALESCE(common_question, '')) || + to_tsvector('thai', COALESCE(know_this_disease, '')) || + to_tsvector('thai', COALESCE(courses_of_action, '')) || + to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || + to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || + to_tsvector('thai', COALESCE(comparisons, '')) || + to_tsvector('thai', COALESCE(getting_ready, '')) || + to_tsvector('thai', COALESCE(recovery, '')) || + to_tsvector('thai', COALESCE(side_effects, '')) || + to_tsvector('thai', COALESCE(review_4_5_stars, '')) || + to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || + to_tsvector('thai', COALESCE(faq, '')), query) DESC LIMIT 20 """ diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index cffe7ced..6b2ac737 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -1,13 +1,34 @@ Output only plain text. Do not output markdown You are a woman named Jib (จิ๊บ), a sales consultant from HDmall. Convince customers to buy products from HDmall. +Don't recommend any product yet on the first conversation before the customer asking. +Recommend current promotions before using the sources, so if the user mentions any of this, answer with promotions first, unless the user asks for a specific package or none of promotion is related to the question at all. +Each promotion includes many packages in the link. +Current promotions include: +- วัคซีน HPV: https://hdmall.co.th/highlight/msd-hpv-vaccine +- ตรวจสุขภาพก่อนแต่งงาน: https://hdmall.co.th/highlight/pre-pregnancy-one-price +- ตรวจสุขภาพการนอน (Sleep test): https://hdmall.co.th/highlight/sleep-test +- ตรวจต่อมไทรอยด์: https://hdmall.co.th/highlight/thyroid-screening-oneprice +- ตรวจสุขภาพทั่วไป: https://hdmall.co.th/highlight/health-checkup-oneprice +- ตรวจมะเร็งสำหรับผู้หญิง (มดลูก รังไข่ เต้านม): https://hdmall.co.th/highlight/women-cancer-hl +- ตรวจสุขภาพตับ (liver check): https://hdmall.co.th/highlight/liver-checkup-oneprice +- ฉีดวัคซีนไข้หวัดใหญ่ หรือฉีดวัคซีนไข้เลือดออก: https://hdmall.co.th/highlight/Influenza-Dengue-Vaccine +- ตรวจกระดูกพรุน หรือฉีดวิตามินดี: https://hdmall.co.th/highlight/osteoporosis +If the user ask medicine or pharmacist related questions, tell them to download the HDmall app and order via app at +- For IOS: https://apps.apple.com/app/id1468877608 +- For Andriods: https://play.google.com/store/apps/details?id=com.honestdocs.hd +- For Huawei: https://appgallery.huawei.com/#/app/C102781241 Answer in a casual and friendly manner. You can use emojis to make the conversation more friendly. Output only plain text. Do not output markdown Represent yourself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai. -Represent yourself as Jib and the customer as you when the conversation is in English or a non-Thai language. +If the user use Chinese, send them the following sentence: + ``` + 好喽哈喽,我们有中文客服啦,顾客可以加 HDmall 的官方微信哦~ + 微信号:hdcoth + ``` +Represent yourself as Jib and the customer as you when the conversation is in English or a non-Thai or non-Chinese language. Answer the customer's question in the same language as the customer's question. -It's not important whether the customer is male or female; you are a woman named Jib. Use "คะ" or "ค่ะ" not "ครับ" when chatting with customers in Thai. If the user asks for any phone number, tell them to contact HDmall at 0822164269, 0923992692. โทรได้ทุกวันเลยนะคะ มีแอดมินคอยให้บริการตั้งแต่ 9.00 - 01.00 น. Output only plain text. Do not output markdown diff --git a/src/fastapi_app/prompts/query.txt b/src/fastapi_app/prompts/query.txt index b2186035..c2f4cf80 100644 --- a/src/fastapi_app/prompts/query.txt +++ b/src/fastapi_app/prompts/query.txt @@ -1,6 +1,7 @@ Below is a history of the conversation so far, and a new question asked by the user that needs to be answered by searching database rows. You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, price_after_cash_discount, installment_limit, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. Generate a search query based on the conversation and the new question. +If there's a typo, fix it before generating search query. If the question is not in Thai, translate the question to Thai before generating the search query. If you cannot generate a search query, return the original user question. DO NOT return anything besides the query. \ No newline at end of file diff --git a/src/fastapi_app/prompts/specify_package.txt b/src/fastapi_app/prompts/specify_package.txt index 9fe539e9..82eb76b5 100644 --- a/src/fastapi_app/prompts/specify_package.txt +++ b/src/fastapi_app/prompts/specify_package.txt @@ -1,3 +1,3 @@ If the user's message shows a strong intent to buy a particular package or service, only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information, or mentions coupon, booking, cancellation, scheduling, or rescheduling, or other post-purchase intents, respond by calling the `handover_to_cx` function. -Otherwise, specify the exact URL or package name from past messages by calling the `specify_package` function only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information. +Otherwise, specify the exact URL or package name from past messages by calling the `specify_package` function only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information. Package names always contain hospital name or clinic name in it. diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 114b7e6f..dae5099f 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -142,6 +142,7 @@ def build_handover_to_cx_function() -> list[ChatCompletionToolParam]: or rescheduling, or other post-purchase intents. Upon invocation, this function will notify the customer support team to take over the conversation, ensuring that the user's needs are promptly and accurately addressed by a human representative. + Don't call this function if the user wants to talk to a pharmacist """, "parameters": {}, }, diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 0ad6bac3..566a4b45 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -99,7 +99,7 @@ async def hybrid_search(self, messages, top, vector_search, text_search): ) ] return sources_content, thought_steps - + # TODO: Product Cards # async def get_product_cards_details(self, urls: list[str]) -> list[dict]: # return await self.searcher.get_product_cards_info(urls) @@ -195,9 +195,27 @@ async def run( ) chat_resp = chat_completion_response.model_dump() - # chat_resp_content = chat_resp["choices"][0]["message"]["content"] - # package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) + chat_resp_content = chat_resp["choices"][0]["message"]["content"] + package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) + # Function to add UTM parameter to a URL + def add_utm_param(url): + if '?' in url: + return url + '&utm_source=ai-chat' + else: + return url + '?utm_source=ai-chat' + + # Add UTM parameter to all found URLs + updated_urls = [add_utm_param(url) for url in package_urls] + + # Replace old URLs with updated URLs in the content + for old_url, new_url in zip(package_urls, updated_urls): + chat_resp_content = chat_resp_content.replace(old_url, new_url) + + # Update the chat response with the modified content + chat_resp["choices"][0]["message"]["content"] = chat_resp_content + + # TODO: Product Cards # if package_urls: # product_cards_details = await self.get_product_cards_details(package_urls) # else: @@ -215,6 +233,7 @@ async def run( else {"model": self.chat_model} ), ), + # TODO: Product Cards # ThoughtStep( # title="Product Cards Details", # description=product_cards_details, From 06b324e5ba59c014c33d7b65058f401ab521de36 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 17 Jul 2024 04:03:30 +0000 Subject: [PATCH 27/54] Change database structure to do hybrid search on top-packages by category --- src/fastapi_app/fast2.py | 294 ------------------ src/fastapi_app/fast_update_hd_data.py | 221 ------------- src/fastapi_app/postgres_models.py | 109 +------ src/fastapi_app/postgres_searcher.py | 20 +- src/fastapi_app/prompts/query.txt | 2 +- src/fastapi_app/seed_hd_data.py | 12 +- src/fastapi_app/update_embeddings.py | 18 +- .../update_recommended_packages.py | 114 +++++++ 8 files changed, 143 insertions(+), 647 deletions(-) delete mode 100644 src/fastapi_app/fast2.py delete mode 100644 src/fastapi_app/fast_update_hd_data.py create mode 100644 src/fastapi_app/update_recommended_packages.py diff --git a/src/fastapi_app/fast2.py b/src/fastapi_app/fast2.py deleted file mode 100644 index f3ffea3c..00000000 --- a/src/fastapi_app/fast2.py +++ /dev/null @@ -1,294 +0,0 @@ -import argparse -import asyncio -import logging -import os -import time - -import numpy as np -import pandas as pd -from azure.identity.aio import DefaultAzureCredential -from dotenv import load_dotenv -from sqlalchemy import inspect, select, text -from sqlalchemy.ext.asyncio import async_sessionmaker -from tqdm import tqdm - -from fastapi_app.openai_clients import create_openai_embed_client -from fastapi_app.postgres_engine import create_postgres_engine_from_args, create_postgres_engine_from_env -from fastapi_app.postgres_models import Item - -load_dotenv() - -# Set up logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger("ragapp") - -EMBEDDING_FIELDS = [ - "package_name", - "package_picture", - "url", - "installment_month", - "installment_limit", - "shop_name", - "category", - "category_tags", - "preview_1_10", - "selling_point", - "meta_keywords", - "brand", - "min_max_age", - "locations", - "meta_description", - "price_details", - "package_details", - "important_info", - "payment_booking_info", - "general_info", - "early_signs_for_diagnosis", - "how_to_diagnose", - "hdcare_summary", - "common_question", - "know_this_disease", - "courses_of_action", - "signals_to_proceed_surgery", - "get_to_know_this_surgery", - "comparisons", - "getting_ready", - "recovery", - "side_effects", - "review_4_5_stars", - "brand_option_in_thai_name", - "faq", -] - - -def get_to_str_method(item, field): - method_name = f"to_str_for_embedding_{field}" - return getattr(item, method_name, None) - - -def convert_to_int(value): - try: - return int(value) - except (ValueError, TypeError): - return None - - -def convert_to_float(value): - try: - return float(value) - except (ValueError, TypeError): - return None - - -def convert_to_str(value): - if value is None: - return None - return str(value) - - -async def verify_database_connection(engine): - try: - async with engine.connect() as conn: - result = await conn.execute(text("SELECT 1")) - logger.info(f"Database connection test result: {result.scalar()}") - except Exception as e: - logger.error(f"Database connection failed: {e}") - raise - - -async def verify_table_exists(engine, table_name): - try: - async with engine.begin() as conn: - - def check_table(connection): - inspector = inspect(connection) - return table_name in inspector.get_table_names() - - exists = await conn.run_sync(check_table) - if exists: - logger.info(f"Table '{table_name}' exists in the database.") - else: - logger.error(f"Table '{table_name}' does not exist in the database.") - raise ValueError(f"Table '{table_name}' not found") - except Exception as e: - logger.error(f"Error verifying table existence: {e}") - raise - - -async def count_records(engine, table_name): - try: - async with engine.begin() as conn: - result = await conn.execute(text(f"SELECT COUNT(*) FROM {table_name}")) - count = result.scalar() - logger.info(f"Total records in {table_name} after processing: {count}") - except Exception as e: - logger.error(f"Error counting records: {e}") - - -async def fetch_existing_records(session, batch_size=1000): - offset = 0 - existing_records = {} - while True: - query = select(Item).offset(offset).limit(batch_size) - result = await session.execute(query) - items = result.scalars().all() - if not items: - break - for item in items: - existing_records[item.url] = item - offset += batch_size - logger.info(f"Fetched {len(items)} records, offset now {offset}") - return existing_records - - -async def seed_and_update_embeddings(engine): - start_time = time.time() - - # Verify database connection - await verify_database_connection(engine) - - # Verify table exists - table_name = "packages_all_staging" # Replace with your actual table name - await verify_table_exists(engine, table_name) - - async_session = async_sessionmaker(engine, expire_on_commit=False) - - current_dir = os.path.dirname(os.path.realpath(__file__)) - csv_path = os.path.join(current_dir, "packages.csv") - - try: - df = pd.read_csv(csv_path, delimiter=",", quotechar='"', escapechar="\\", on_bad_lines="skip", encoding="utf-8") - logger.info(f"Read {len(df)} rows from CSV file") - logger.info(f"First few rows: {df.head().to_dict()}") - if len(df) == 0: - logger.error("CSV file is empty. No data to process.") - return - except pd.errors.ParserError as e: - logger.error(f"Error reading CSV file: {e}") - return - except FileNotFoundError: - logger.error(f"CSV file not found at path: {csv_path}") - return - - logger.info("CSV file read successfully. Processing data...") - - str_columns = df.select_dtypes(include=[object]).columns - df[str_columns] = df[str_columns].replace({np.nan: None}) - - num_columns = df.select_dtypes(include=([np.number])).columns - df[num_columns] = df[num_columns].replace({np.nan: None}) - - records = df.to_dict(orient="records") - new_records = {record["url"]: record for record in records} - - logger.info(f"Processed {len(new_records)} records from CSV") - - logger.info("Fetching existing records from the database...") - - async with async_session() as session: - existing_records = await fetch_existing_records(session) - - logger.info(f"Fetched {len(existing_records)} existing records.") - - azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client( - azure_credential - ) - - logger.info("Starting to insert, update, or delete records in the database...") - logger.info(f"Processing {len(new_records)} new records") - - async with async_session() as session: - # Test insertion - try: - test_item = Item(url="test_url", package_name="Test Package", price=100.0) - session.add(test_item) - await session.commit() - logger.info("Test insertion successful") - except Exception as e: - logger.error(f"Test insertion failed: {e}") - return - - insertion_count = 0 - update_count = 0 - error_count = 0 - - for url, record in tqdm(new_records.items(), desc="Processing new records"): - try: - record["price"] = convert_to_float(record.get("price")) - if record["price"] is None: - logger.warning(f"Skipping record with invalid price: {record}") - continue - - existing_item = existing_records.get(url) - - if existing_item: - if existing_item.price != record["price"]: - existing_item.price = record["price"] - session.merge(existing_item) - update_count += 1 - logger.info(f"Updated record with URL {url}") - else: - logger.info(f"Attempting to insert new record with URL {url}") - item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} - item = Item(**item_data) - session.add(item) - insertion_count += 1 - logger.info(f"New record added for URL {url}") - - if (insertion_count + update_count) % 100 == 0: - await session.commit() - logger.info(f"Committed batch: {insertion_count} insertions, {update_count} updates") - - except Exception as e: - logger.error(f"Error processing record with URL {url}: {e}") - error_count += 1 - continue - - try: - await session.commit() - logger.info(f"Final commit: {insertion_count} insertions, {update_count} updates, {error_count} errors") - except Exception as e: - logger.error(f"Error during final commit: {e}") - - # Count records at the end - await count_records(engine, table_name) - - logger.info("All records processed.") - end_time = time.time() - elapsed_time = end_time - start_time - logger.info(f"Total time taken: {elapsed_time:.2f} seconds") - - # Close the Azure credential client - await azure_credential.close() - - # Close the OpenAI client if needed - await openai_embed_client.close() - - -async def main(): - parser = argparse.ArgumentParser(description="Seed database with CSV data") - parser.add_argument("--host", type=str, help="Postgres host") - parser.add_argument("--username", type=str, help="Postgres username") - parser.add_argument("--password", type=str, help="Postgres password") - parser.add_argument("--database", type=str, help="Postgres database") - parser.add_argument("--sslmode", type=str, help="Postgres sslmode") - - args = parser.parse_args() - if args.host is None: - engine = await create_postgres_engine_from_env() - else: - engine = await create_postgres_engine_from_args(args) - - # Log the connection parameters (be careful not to log sensitive information) - logger.info(f"Connecting to database: {engine.url.database} on host: {engine.url.host}") - - await seed_and_update_embeddings(engine) - await engine.dispose() - - -if __name__ == "__main__": - logging.basicConfig(level=logging.WARNING) - logger.setLevel(logging.INFO) - load_dotenv(override=True) - asyncio.run(main()) diff --git a/src/fastapi_app/fast_update_hd_data.py b/src/fastapi_app/fast_update_hd_data.py deleted file mode 100644 index 1e4e51eb..00000000 --- a/src/fastapi_app/fast_update_hd_data.py +++ /dev/null @@ -1,221 +0,0 @@ -import argparse -import asyncio -import logging -import os -import time - -import numpy as np -import pandas as pd - -from dotenv import load_dotenv -from sqlalchemy import select, text, delete -from sqlalchemy.ext.asyncio import async_sessionmaker -from tqdm import tqdm -from azure.identity.aio import DefaultAzureCredential - -from fastapi_app.embeddings import compute_text_embedding -from fastapi_app.openai_clients import create_openai_embed_client -from fastapi_app.postgres_engine import ( - create_postgres_engine_from_args, - create_postgres_engine_from_env, -) -from fastapi_app.postgres_models import Item - -load_dotenv() - -# Set up logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger("ragapp") - -EMBEDDING_FIELDS = [ - 'package_name', 'package_picture', 'url', 'installment_month', 'installment_limit', - 'shop_name', 'category', 'category_tags','preview_1_10', 'selling_point','meta_keywords', - 'brand', 'min_max_age','locations', 'meta_description', 'price_details','package_details', - 'important_info', 'payment_booking_info', 'general_info', 'early_signs_for_diagnosis', - 'how_to_diagnose', 'hdcare_summary', 'common_question', 'know_this_disease', - 'courses_of_action', 'signals_to_proceed_surgery', 'get_to_know_this_surgery', - 'comparisons', 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', - 'brand_option_in_thai_name', 'faq' -] - -def get_to_str_method(item, field): - method_name = f"to_str_for_embedding_{field}" - return getattr(item, method_name, None) - -def convert_to_int(value): - try: - return int(value) - except (ValueError, TypeError): - return None - -def convert_to_float(value): - try: - return float(value) - except (ValueError, TypeError): - return None - -def convert_to_str(value): - if value is None: - return None - return str(value) - -async def fetch_existing_records(session, batch_size=1000): - offset = 0 - existing_records = {} - while True: - query = select(Item).offset(offset).limit(batch_size) - result = await session.execute(query) - items = result.scalars().all() - if not items: - break - for item in items: - existing_records[item.url] = item - offset += batch_size - logger.info(f"Fetched {len(items)} records, offset now {offset}") - return existing_records - -async def seed_and_update_embeddings(engine): - start_time = time.time() - logger.info("Checking if the packages table exists...") - async with engine.begin() as conn: - result = await conn.execute( - text( - """ - SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages') - """ - ) - ) - if not result.scalar(): - logger.error("Packages table does not exist. Please run the database setup script first.") - return - - async with async_sessionmaker(engine, expire_on_commit=False)() as session: - current_dir = os.path.dirname(os.path.realpath(__file__)) - csv_path = os.path.join(current_dir, "packages.csv") - - try: - df = pd.read_csv(csv_path, delimiter=',', quotechar='"', escapechar='\\', on_bad_lines='skip', encoding='utf-8') - except pd.errors.ParserError as e: - logger.error(f"Error reading CSV file: {e}") - return - - logger.info("CSV file read successfully. Processing data...") - - str_columns = df.select_dtypes(include=[object]).columns - df[str_columns] = df[str_columns].replace({np.nan: None}) - - num_columns = df.select_dtypes(include=([np.number])).columns - df[num_columns] = df[num_columns].replace({np.nan: None}) - - records = df.to_dict(orient='records') - new_records = {record["url"]: record for record in records} - - logger.info("Fetching existing records from the database...") - - existing_records = await fetch_existing_records(session) - - logger.info(f"Fetched {len(existing_records)} existing records.") - - azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) - - logger.info("Starting to insert, update, or delete records in the database...") - - for url, record in tqdm(new_records.items(), desc="Processing new records"): - try: - record["price"] = convert_to_float(record.get("price")) - record["cash_discount"] = convert_to_float(record.get("cash_discount")) - record["price_after_cash_discount"] = convert_to_float(record.get("price_after_cash_discount")) - record["price_to_reserve_for_this_package"] = convert_to_float(record.get("price_to_reserve_for_this_package")) - record["brand_ranking_position"] = convert_to_int(record.get("brand_ranking_position")) - - if record["price"] is None: - logger.error(f"Skipping record with invalid price: {record}") - continue - - existing_item = existing_records.get(url) - - if existing_item: - # Update only the price if there is a change - if existing_item.price != record["price"]: - existing_item.price = record["price"] - session.merge(existing_item) - await session.commit() - logger.info(f"Updated price for existing record with URL {url}") - else: - # Insert new item - item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} - for field in EMBEDDING_FIELDS: - item_data[f'embedding_{field}'] = None - - for key, value in item_data.items(): - if key not in ["price", "cash_discount", "price_after_cash_discount", "price_to_reserve_for_this_package", "brand_ranking_position"]: - item_data[key] = convert_to_str(value) - - item = Item(**item_data) - - # Generate embeddings for the new item - for field in EMBEDDING_FIELDS: - to_str_method = get_to_str_method(item, field) - if to_str_method: - field_value = to_str_method() - if field_value: - try: - embedding = await compute_text_embedding( - field_value, - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) - setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.url}") - except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") - - session.merge(item) - await session.commit() - logger.info(f"Inserted new record with URL {url}") - - except Exception as e: - logger.error(f"Error processing record with URL {url}: {e}") - await session.rollback() - continue - - # Delete rows that are not in the new CSV - for url in tqdm(existing_records.keys() - new_records.keys(), desc="Deleting outdated records"): - try: - await session.execute(delete(Item).where(Item.url == url)) - await session.commit() - logger.info(f"Deleted outdated record with URL {url}") - except Exception as e: - logger.error(f"Error deleting record with URL {url}: {e}") - await session.rollback() - - logger.info("All records processed successfully.") - end_time = time.time() - elapsed_time = end_time - start_time - logger.info(f"Total time taken: {elapsed_time:.2f} seconds") - -async def main(): - parser = argparse.ArgumentParser(description="Seed database with CSV data") - parser.add_argument("--host", type=str, help="Postgres host") - parser.add_argument("--username", type=str, help="Postgres username") - parser.add_argument("--password", type=str, help="Postgres password") - parser.add_argument("--database", type=str, help="Postgres database") - parser.add_argument("--sslmode", type=str, help="Postgres sslmode") - - args = parser.parse_args() - if args.host is None: - engine = await create_postgres_engine_from_env() - else: - engine = await create_postgres_engine_from_args(args) - - await seed_and_update_embeddings(engine) - await engine.dispose() - -if __name__ == "__main__": - logging.basicConfig(level=logging.WARNING) - logger.setLevel(logging.INFO) - load_dotenv(override=True) - asyncio.run(main()) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 0c397a26..be8621f2 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -3,7 +3,7 @@ from dataclasses import asdict from pgvector.sqlalchemy import Vector -from sqlalchemy import Index +from sqlalchemy import Index, Boolean from sqlalchemy.orm import DeclarativeBase, Mapped, MappedAsDataclass, mapped_column @@ -13,7 +13,7 @@ class Base(DeclarativeBase, MappedAsDataclass): class Item(Base): - __tablename__ = "packages_all_staging" + __tablename__ = "packages_all" package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() url: Mapped[str] = mapped_column(primary_key=True) @@ -55,18 +55,10 @@ class Item(Base): brand_ranking_position: Mapped[int] = mapped_column() faq: Mapped[str] = mapped_column() embedding_package_name: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 - embedding_package_picture: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_url: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_installment_month: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_installment_limit: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_shop_name: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category: Mapped[Vector] = mapped_column(Vector(1536)) embedding_category_tags: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_preview_1_10: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_selling_point: Mapped[Vector] = mapped_column(Vector(1536)) embedding_meta_keywords: Mapped[Vector] = mapped_column(Vector(1536)) embedding_brand: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_min_max_age: Mapped[Vector] = mapped_column(Vector(1536)) embedding_locations: Mapped[Vector] = mapped_column(Vector(1536)) embedding_meta_description: Mapped[Vector] = mapped_column(Vector(1536)) embedding_price_details: Mapped[Vector] = mapped_column(Vector(1536)) @@ -89,24 +81,17 @@ class Item(Base): embedding_review_4_5_stars: Mapped[Vector] = mapped_column(Vector(1536)) embedding_brand_option_in_thai_name: Mapped[Vector] = mapped_column(Vector(1536)) embedding_faq: Mapped[Vector] = mapped_column(Vector(1536)) + is_recommended: Mapped[bool] = mapped_column(Boolean, default=False) def to_dict(self, include_embedding: bool = False): model_dict = asdict(self) if include_embedding: embedding_columns = [ "embedding_package_name", - "embedding_package_picture", - "embedding_url", - "embedding_installment_month", - "embedding_installment_limit", - "embedding_shop_name", "embedding_category", "embedding_category_tags", - "embedding_preview_1_10", - "embedding_selling_point", "embedding_meta_keywords", "embedding_brand", - "embedding_min_max_age", "embedding_locations", "embedding_meta_description", "embedding_price_details", @@ -136,18 +121,10 @@ def to_dict(self, include_embedding: bool = False): # Remove embedding columns if not included embedding_columns = [ "embedding_package_name", - "embedding_package_picture", - "embedding_url", - "embedding_installment_month", - "embedding_installment_limit", - "embedding_shop_name", "embedding_category", "embedding_category_tags", - "embedding_preview_1_10", - "embedding_selling_point", "embedding_meta_keywords", "embedding_brand", - "embedding_min_max_age", "embedding_locations", "embedding_meta_description", "embedding_price_details", @@ -231,42 +208,18 @@ def to_str_for_narrow_rag(self): def to_str_for_embedding_package_name(self): return f"Package Name: {self.package_name}" if self.package_name else "" - def to_str_for_embedding_package_picture(self): - return f"Package Picture: {self.package_picture}" if self.package_picture else "" - - def to_str_for_embedding_url(https://github.com/self): - return f"URL: {self.url}" if self.url else "" - - def to_str_for_embedding_installment_month(self): - return f"Installment Month: {self.installment_month}" if self.installment_month else "" - - def to_str_for_embedding_installment_limit(self): - return f"Installment Limit: {self.installment_limit}" if self.installment_limit else "" - - def to_str_for_embedding_shop_name(self): - return f"Shop Name: {self.shop_name}" if self.shop_name else "" - def to_str_for_embedding_category(self): return f"Category: {self.category}" if self.category else "" def to_str_for_embedding_category_tags(self): return f"Category Tags: {self.category_tags}" if self.category_tags else "" - def to_str_for_embedding_preview_1_10(self): - return f"Preview 1-10: {self.preview_1_10}" if self.preview_1_10 else "" - - def to_str_for_embedding_selling_point(self): - return f"Selling Point: {self.selling_point}" if self.selling_point else "" - def to_str_for_embedding_meta_keywords(self): return f"Meta Keywords: {self.meta_keywords}" if self.meta_keywords else "" def to_str_for_embedding_brand(self): return f"Brand: {self.brand}" if self.brand else "" - def to_str_for_embedding_min_max_age(self): - return f"Min-Max Age: {self.min_max_age}" if self.min_max_age else "" - def to_str_for_embedding_locations(self): return f"Locations: {self.locations}" if self.locations else "" @@ -345,41 +298,6 @@ def to_str_for_embedding_faq(self): postgresql_with={"m": 16, "ef_construction": 64}, postgresql_ops={"embedding_package_name": "vector_ip_ops"}, ), - Index( - "hnsw_index_for_embedding_package_picture", - Item.embedding_package_picture, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_package_picture": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_url", - Item.embedding_url, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_url": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_installment_month", - Item.embedding_installment_month, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_installment_month": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_installment_limit", - Item.embedding_installment_limit, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_installment_limit": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_shop_name", - Item.embedding_shop_name, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_shop_name": "vector_ip_ops"}, - ), Index( "hnsw_index_for_embedding_category", Item.embedding_category, @@ -394,20 +312,6 @@ def to_str_for_embedding_faq(self): postgresql_with={"m": 16, "ef_construction": 64}, postgresql_ops={"embedding_category_tags": "vector_ip_ops"}, ), - Index( - "hnsw_index_for_embedding_preview_1_10", - Item.embedding_preview_1_10, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_preview_1_10": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_selling_point", - Item.embedding_selling_point, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_selling_point": "vector_ip_ops"}, - ), Index( "hnsw_index_for_embedding_meta_keywords", Item.embedding_meta_keywords, @@ -422,13 +326,6 @@ def to_str_for_embedding_faq(self): postgresql_with={"m": 16, "ef_construction": 64}, postgresql_ops={"embedding_brand": "vector_ip_ops"}, ), - Index( - "hnsw_index_for_embedding_min_max_age", - Item.embedding_min_max_age, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_min_max_age": "vector_ip_ops"}, - ), Index( "hnsw_index_for_embedding_locations", Item.embedding_locations, diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 0196632d..1d5fc5d9 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -78,8 +78,10 @@ async def hybrid_search( COALESCE(embedding_faq <=> :embedding, 1) ) AS min_distance FROM - packages - {filter_clause_where} + packages_all + WHERE + is_recommended = true + {filter_clause_and} ) SELECT url, @@ -98,7 +100,6 @@ async def hybrid_search( to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -129,14 +130,13 @@ async def hybrid_search( to_tsvector('thai', COALESCE(review_4_5_stars, '')) || to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || to_tsvector('thai', COALESCE(faq, '')), query) DESC) - FROM packages, plainto_tsquery('thai', :query) query + FROM packages_all, plainto_tsquery('thai', :query) query WHERE ( to_tsvector('thai', COALESCE(package_name, '')) || to_tsvector('thai', COALESCE(package_picture, '')) || to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -167,14 +167,16 @@ async def hybrid_search( to_tsvector('thai', COALESCE(review_4_5_stars, '')) || to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || to_tsvector('thai', COALESCE(faq, '')) - ) @@ query {filter_clause_and} + ) @@ query + AND + is_recommended = true + {filter_clause_and} ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || to_tsvector('thai', COALESCE(package_picture, '')) || to_tsvector('thai', COALESCE(url, '')) || to_tsvector('thai', COALESCE(installment_month, '')) || to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(price_to_reserve_for_this_package, '')) || to_tsvector('thai', COALESCE(shop_name, '')) || to_tsvector('thai', COALESCE(category, '')) || to_tsvector('thai', COALESCE(category_tags, '')) || @@ -283,7 +285,7 @@ async def simple_sql_search( """ filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" - SELECT url FROM packages_all_staging + SELECT url FROM packages_all {filter_clause_where} LIMIT 10 """ @@ -309,7 +311,7 @@ async def simple_sql_search( # Fetch detailed information about items using their URLs as identifiers. # """ # sql = """ - # SELECT package_name, package_picture, url, price FROM packages_all_staging WHERE url = ANY(:urls) + # SELECT package_name, package_picture, url, price FROM packages_all WHERE url = ANY(:urls) # """ # async with self.async_session_maker() as session: diff --git a/src/fastapi_app/prompts/query.txt b/src/fastapi_app/prompts/query.txt index c2f4cf80..0e07649f 100644 --- a/src/fastapi_app/prompts/query.txt +++ b/src/fastapi_app/prompts/query.txt @@ -1,7 +1,7 @@ Below is a history of the conversation so far, and a new question asked by the user that needs to be answered by searching database rows. You have access to an Azure PostgreSQL database with an packages table that has columns for id, package_name, package_picture, url, price, cash_discount, installment_month, price_after_cash_discount, installment_limit, shop_name, category, category_tags, preview_1_10, selling_point, meta_keywords, brand, min_max_age, locations, meta_description, price_details, package_details, important_info, payment_booking_info, general_info, early_signs_for_diagnosis, how_to_diagnose, hdcare_summary, common_question, know_this_disease, courses_of_action, signals_to_proceed_surgery, get_to_know_this_surgery, comparisons, getting_ready, recovery, side_effects, review_4_5_stars, brand_option_in_thai_name, brand_ranking_position and faq. Generate a search query based on the conversation and the new question. -If there's a typo, fix it before generating search query. +If there's a typo in the chat history, the search query should fix the typo first. If the question is not in Thai, translate the question to Thai before generating the search query. If you cannot generate a search query, return the original user question. DO NOT return anything besides the query. \ No newline at end of file diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index f64bea5d..fd2532df 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -21,18 +21,10 @@ embedding_fields = [ "embedding_package_name", - "embedding_package_picture", - "embedding_url", - "embedding_installment_month", - "embedding_installment_limit", - "embedding_shop_name", "embedding_category", "embedding_category_tags", - "embedding_preview_1_10", - "embedding_selling_point", "embedding_meta_keywords", "embedding_brand", - "embedding_min_max_age", "embedding_locations", "embedding_meta_description", "embedding_price_details", @@ -79,13 +71,13 @@ def convert_to_str(value): async def seed_data(engine): - logger.info("Checking if the packages_all_staging table exists...") + logger.info("Checking if the packages_staging table exists...") async with engine.begin() as conn: result = await conn.execute( text( """ SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all_staging') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_staging') """ # noqa ) ) diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py index 95622d36..0e01f8be 100644 --- a/src/fastapi_app/update_embeddings.py +++ b/src/fastapi_app/update_embeddings.py @@ -5,8 +5,7 @@ from dotenv import load_dotenv from sqlalchemy import select, func from sqlalchemy.ext.asyncio import async_sessionmaker, AsyncSession -from tqdm.asyncio import tqdm_asyncio, tqdm -from tqdm import trange +from tqdm.asyncio import tqdm_asyncio from embeddings import compute_text_embedding from openai_clients import create_openai_embed_client @@ -20,7 +19,14 @@ logger = logging.getLogger(__name__) EMBEDDING_FIELDS = [ - 'package_name', 'locations' + 'package_name', 'locations', 'category', 'category_tags', 'meta_keywords', + 'brand', 'meta_description', 'price_details', 'package_details', + 'important_info', 'payment_booking_info', 'general_info', + 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', + 'common_question', 'know_this_disease', 'courses_of_action', + 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', + 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', + 'brand_option_in_thai_name', 'faq' ] def get_to_str_method(item, field): @@ -28,7 +34,7 @@ def get_to_str_method(item, field): return getattr(item, method_name, None) async def fetch_items(session, offset, batch_size): - return (await session.scalars(select(Item).where(Item.embedding_url.is_(None)).offset(offset).limit(batch_size))).all() + return (await session.scalars(select(Item).where(Item.embedding_package_name.is_(None)).offset(offset).limit(batch_size))).all() async def process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions): async with async_session_maker() as session: @@ -62,11 +68,11 @@ async def update_embeddings(batch_size=100): async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) async with async_session_maker() as fetch_session: - total_items = await fetch_session.scalar(select(func.count(Item.url)).where(Item.embedding_url.is_(None))) + total_items = await fetch_session.scalar(select(func.count(Item.url)).where(Item.embedding_package_name.is_(None))) logger.info(f"Found {total_items} items to process.") offset = 0 - with tqdm(total=total_items, desc="Updating embeddings") as pbar: + with tqdm_asyncio(total=total_items, desc="Updating embeddings") as pbar: while offset < total_items: async with async_session_maker() as fetch_session: items = await fetch_items(fetch_session, offset, batch_size) diff --git a/src/fastapi_app/update_recommended_packages.py b/src/fastapi_app/update_recommended_packages.py new file mode 100644 index 00000000..320ec727 --- /dev/null +++ b/src/fastapi_app/update_recommended_packages.py @@ -0,0 +1,114 @@ +import asyncio +import logging +import pandas as pd +from azure.identity.aio import DefaultAzureCredential +from dotenv import load_dotenv +from sqlalchemy import select, func +from sqlalchemy.ext.asyncio import async_sessionmaker, AsyncSession +from tqdm.asyncio import tqdm_asyncio + +from embeddings import compute_text_embedding +from openai_clients import create_openai_embed_client +from postgres_engine import create_postgres_engine_from_env +from postgres_models import Item + +load_dotenv() + +# Set up logging +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +EMBEDDING_FIELDS = [ + 'package_name', 'locations', 'category', 'category_tags', 'meta_keywords', + 'brand', 'meta_description', 'price_details', 'package_details', + 'important_info', 'payment_booking_info', 'general_info', + 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', + 'common_question', 'know_this_disease', 'courses_of_action', + 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', + 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', + 'brand_option_in_thai_name', 'faq' +] + +def get_to_str_method(item, field): + method_name = f"to_str_for_embedding_{field}" + return getattr(item, method_name, None) + +async def fetch_items(session, urls, offset, batch_size): + return ( + await session.scalars( + select(Item) + .where(Item.url.in_(urls)) + .where(Item.is_recommended.is_(False)) + .offset(offset) + .limit(batch_size) + ) + ).all() + +async def process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions): + async with async_session_maker() as session: + async with session.begin(): + for item in items: + for field in EMBEDDING_FIELDS: + to_str_method = get_to_str_method(item, field) + if to_str_method: + field_value = to_str_method() + if field_value: + try: + embedding = await compute_text_embedding( + field_value, + openai_client=openai_embed_client, + embed_model=openai_embed_model, + embedding_dimensions=openai_embed_dimensions, + ) + setattr(item, f'embedding_{field}', embedding) + logger.info(f"Updated embedding for {field} of item {item.url}") + except Exception as e: + logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") + item.is_recommended = True + session.add(item) + await session.commit() + +async def update_embeddings(batch_size=100): + engine = await create_postgres_engine_from_env() + azure_credential = DefaultAzureCredential() + openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) + + async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) + + # Read CSV file + df = pd.read_csv('recommended_packages.csv') + urls = df['package url'].tolist() + logger.info(f"Total URLs in CSV: {len(urls)}") + unique_urls = list(set(urls)) + logger.info(f"Unique URLs: {len(unique_urls)}") + + async with async_session_maker() as fetch_session: + total_items = await fetch_session.scalar( + select(func.count(Item.url)) + .where(Item.url.in_(unique_urls)) + .where(Item.is_recommended.is_(False)) + ) + logger.info(f"Found {total_items} items to process in database.") + + offset = 0 + with tqdm_asyncio(total=total_items, desc="Updating embeddings") as pbar: + while offset < total_items: + async with async_session_maker() as fetch_session: + items = await fetch_items(fetch_session, unique_urls, offset, batch_size) + if not items: + break + + # Expunge items from the original session + for item in items: + fetch_session.expunge(item) + + logger.info(f"Processing batch of {len(items)} items (offset {offset})") + await process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions) + offset += batch_size + pbar.update(len(items)) + + await engine.dispose() + await azure_credential.close() # Ensure the Azure credential client session is closed + +if __name__ == "__main__": + asyncio.run(update_embeddings()) From cb7625a8818af3f53b510015cfb5daab82a12df5 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 17 Jul 2024 09:43:48 +0000 Subject: [PATCH 28/54] Remove is_recommended filter from full text search --- src/fastapi_app/postgres_searcher.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 1d5fc5d9..b2ad8d51 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -168,8 +168,6 @@ async def hybrid_search( to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || to_tsvector('thai', COALESCE(faq, '')) ) @@ query - AND - is_recommended = true {filter_clause_and} ORDER BY ts_rank_cd( to_tsvector('thai', COALESCE(package_name, '')) || From 3d5b1bc37f1e2652136c6a3ee14b975d29ad4437 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 18 Jul 2024 07:46:57 +0000 Subject: [PATCH 29/54] Update Chinese prompt sentence for user --- src/fastapi_app/prompts/answer.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index 6b2ac737..84d25cac 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -22,7 +22,7 @@ Answer in a casual and friendly manner. You can use emojis to make the conversation more friendly. Output only plain text. Do not output markdown Represent yourself as จิ๊บ and the customer as คุณลูกค้า when the conversation is in Thai. -If the user use Chinese, send them the following sentence: +If the user use Chinese or you can tell that the user is Chinese, send them the following sentence: ``` 好喽哈喽,我们有中文客服啦,顾客可以加 HDmall 的官方微信哦~ 微信号:hdcoth From 346d0abf7a50056b23cfb9c3ffc671f8ffb57a2d Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 18 Jul 2024 08:35:21 +0000 Subject: [PATCH 30/54] Update app prompt for pharmacist consultation --- src/fastapi_app/prompts/answer.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/prompts/answer.txt b/src/fastapi_app/prompts/answer.txt index 84d25cac..2f918d8e 100644 --- a/src/fastapi_app/prompts/answer.txt +++ b/src/fastapi_app/prompts/answer.txt @@ -14,7 +14,7 @@ Current promotions include: - ตรวจสุขภาพตับ (liver check): https://hdmall.co.th/highlight/liver-checkup-oneprice - ฉีดวัคซีนไข้หวัดใหญ่ หรือฉีดวัคซีนไข้เลือดออก: https://hdmall.co.th/highlight/Influenza-Dengue-Vaccine - ตรวจกระดูกพรุน หรือฉีดวิตามินดี: https://hdmall.co.th/highlight/osteoporosis -If the user ask medicine or pharmacist related questions, tell them to download the HDmall app and order via app at +If the user ask medicine or pharmacist related questions, tell them to download the HDmall app and consult with our pharmacists via app at - For IOS: https://apps.apple.com/app/id1468877608 - For Andriods: https://play.google.com/store/apps/details?id=com.honestdocs.hd - For Huawei: https://appgallery.huawei.com/#/app/C102781241 From 5d4d171f987842ac59c3ac50ab131bc6bae88577 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 19 Jul 2024 10:39:02 +0000 Subject: [PATCH 31/54] Switch to google search --- src/fastapi_app/google_search.py | 40 +++++ src/fastapi_app/postgres_searcher.py | 254 ++------------------------- src/fastapi_app/rag_advanced.py | 37 +--- 3 files changed, 63 insertions(+), 268 deletions(-) create mode 100644 src/fastapi_app/google_search.py diff --git a/src/fastapi_app/google_search.py b/src/fastapi_app/google_search.py new file mode 100644 index 00000000..74fa7c56 --- /dev/null +++ b/src/fastapi_app/google_search.py @@ -0,0 +1,40 @@ +import requests +import os +from dotenv import load_dotenv + +# Load the environment variables +load_dotenv() + +def google_search_function(search_query): + # Replace with your actual API key + api_key = os.environ["GOOGLE_SEARCH_API_KEY"] + + # Custom search engine ID + cx = os.environ["GOOGLE_SEARCH_ENGINE_ID"] + + # Construct the URL + url = f"https://www.googleapis.com/customsearch/v1?key={api_key}&cx={cx}&q={search_query}" + + # Send the GET request + response = requests.get(url) + + links = [] + # Check if the request was successful + if response.status_code == 200: + # Parse the JSON response + data = response.json() + for item in data.get('items', []): + link = item.get('link') + if link: + links.append(link) + + return links + else: + return {"error": "An error occurred"} + + + +if __name__ == "__main__": + search_query = "ลดขนาดหน้าอก " + result = google_search_function(search_query) + print(result) \ No newline at end of file diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index b2ad8d51..df343e1c 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -5,6 +5,7 @@ from fastapi_app.embeddings import compute_text_embedding from fastapi_app.postgres_models import Item +from fastapi_app.google_search import google_search_function class PostgresSearcher: @@ -35,245 +36,6 @@ def build_filter_clause(self, filters, use_or=False) -> tuple[str, str]: return f"WHERE {filter_clause}", f"AND {filter_clause}" return "", "" - async def hybrid_search( - self, - query_text: str | None, - query_vector: list[float] | list, - top: int = 5, - filters: list[dict] | None = None, - ): - filter_clause_where, filter_clause_and = self.build_filter_clause(filters) - - vector_query = f""" - WITH closest_embedding AS ( - SELECT - url, - LEAST( - embedding_package_name <=> :embedding, - COALESCE(embedding_category <=> :embedding, 1), - COALESCE(embedding_category_tags <=> :embedding, 1), - COALESCE(embedding_meta_keywords <=> :embedding, 1), - COALESCE(embedding_brand <=> :embedding, 1), - COALESCE(embedding_locations <=> :embedding, 1), - COALESCE(embedding_meta_description <=> :embedding, 1), - COALESCE(embedding_price_details <=> :embedding, 1), - COALESCE(embedding_package_details <=> :embedding, 1), - COALESCE(embedding_important_info <=> :embedding, 1), - COALESCE(embedding_payment_booking_info <=> :embedding, 1), - COALESCE(embedding_general_info <=> :embedding, 1), - COALESCE(embedding_early_signs_for_diagnosis <=> :embedding, 1), - COALESCE(embedding_how_to_diagnose <=> :embedding, 1), - COALESCE(embedding_hdcare_summary <=> :embedding, 1), - COALESCE(embedding_common_question <=> :embedding, 1), - COALESCE(embedding_know_this_disease <=> :embedding, 1), - COALESCE(embedding_courses_of_action <=> :embedding, 1), - COALESCE(embedding_signals_to_proceed_surgery <=> :embedding, 1), - COALESCE(embedding_get_to_know_this_surgery <=> :embedding, 1), - COALESCE(embedding_comparisons <=> :embedding, 1), - COALESCE(embedding_getting_ready <=> :embedding, 1), - COALESCE(embedding_recovery <=> :embedding, 1), - COALESCE(embedding_side_effects <=> :embedding, 1), - COALESCE(embedding_review_4_5_stars <=> :embedding, 1), - COALESCE(embedding_brand_option_in_thai_name <=> :embedding, 1), - COALESCE(embedding_faq <=> :embedding, 1) - ) AS min_distance - FROM - packages_all - WHERE - is_recommended = true - {filter_clause_and} - ) - SELECT - url, - RANK() OVER (ORDER BY min_distance) AS rank - FROM - closest_embedding - ORDER BY - min_distance - LIMIT 20 - """ - - fulltext_query = f""" - SELECT url, RANK () OVER (ORDER BY ts_rank_cd( - to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')), query) DESC) - FROM packages_all, plainto_tsquery('thai', :query) query - WHERE ( - to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')) - ) @@ query - {filter_clause_and} - ORDER BY ts_rank_cd( - to_tsvector('thai', COALESCE(package_name, '')) || - to_tsvector('thai', COALESCE(package_picture, '')) || - to_tsvector('thai', COALESCE(url, '')) || - to_tsvector('thai', COALESCE(installment_month, '')) || - to_tsvector('thai', COALESCE(installment_limit, '')) || - to_tsvector('thai', COALESCE(shop_name, '')) || - to_tsvector('thai', COALESCE(category, '')) || - to_tsvector('thai', COALESCE(category_tags, '')) || - to_tsvector('thai', COALESCE(preview_1_10, '')) || - to_tsvector('thai', COALESCE(selling_point, '')) || - to_tsvector('thai', COALESCE(meta_keywords, '')) || - to_tsvector('thai', COALESCE(brand, '')) || - to_tsvector('thai', COALESCE(min_max_age, '')) || - to_tsvector('thai', COALESCE(locations, '')) || - to_tsvector('thai', COALESCE(meta_description, '')) || - to_tsvector('thai', COALESCE(price_details, '')) || - to_tsvector('thai', COALESCE(package_details, '')) || - to_tsvector('thai', COALESCE(important_info, '')) || - to_tsvector('thai', COALESCE(payment_booking_info, '')) || - to_tsvector('thai', COALESCE(general_info, '')) || - to_tsvector('thai', COALESCE(early_signs_for_diagnosis, '')) || - to_tsvector('thai', COALESCE(how_to_diagnose, '')) || - to_tsvector('thai', COALESCE(hdcare_summary, '')) || - to_tsvector('thai', COALESCE(common_question, '')) || - to_tsvector('thai', COALESCE(know_this_disease, '')) || - to_tsvector('thai', COALESCE(courses_of_action, '')) || - to_tsvector('thai', COALESCE(signals_to_proceed_surgery, '')) || - to_tsvector('thai', COALESCE(get_to_know_this_surgery, '')) || - to_tsvector('thai', COALESCE(comparisons, '')) || - to_tsvector('thai', COALESCE(getting_ready, '')) || - to_tsvector('thai', COALESCE(recovery, '')) || - to_tsvector('thai', COALESCE(side_effects, '')) || - to_tsvector('thai', COALESCE(review_4_5_stars, '')) || - to_tsvector('thai', COALESCE(brand_option_in_thai_name, '')) || - to_tsvector('thai', COALESCE(faq, '')), query) DESC - LIMIT 20 - """ - - hybrid_query = f""" - WITH vector_search AS ( - {vector_query} - ), - fulltext_search AS ( - {fulltext_query} - ) - SELECT - COALESCE(vector_search.url, fulltext_search.url) AS url, - COALESCE(1.0 / (:k + vector_search.rank), 0.0) + - COALESCE(1.0 / (:k + fulltext_search.rank), 0.0) AS score - FROM vector_search - FULL OUTER JOIN fulltext_search ON vector_search.url = fulltext_search.url - ORDER BY score DESC - LIMIT 20 - """ - - if query_text is not None and len(query_vector) > 0: - sql = text(hybrid_query).columns(url=String, score=Float) - elif len(query_vector) > 0: - sql = text(vector_query).columns(url=String, rank=Integer) - elif query_text is not None: - sql = text(fulltext_query).columns(url=String, rank=Integer) - else: - raise ValueError("Both query text and query vector are empty") - - async with self.async_session_maker() as session: - results = ( - await session.execute( - sql, - {"embedding": to_db(query_vector), "query": query_text, "k": 60}, - ) - ).fetchall() - - # Convert results to Item models - items = [] - for url, _ in results[:top]: - item = await session.execute(select(Item).where(Item.url == url)) - items.append(item.scalar()) - return items - - async def search_and_embed( - self, - query_text: str, - top: int = 5, - enable_vector_search: bool = False, - enable_text_search: bool = False, - filters: list[dict] | None = None, - ) -> list[Item]: - """ - Search items by query text. Optionally converts the query text to a vector if enable_vector_search is True. - """ - vector: list[float] = [] - if enable_vector_search: - vector = await compute_text_embedding( - query_text, - self.openai_embed_client, - self.embed_model, - self.embed_deployment, - self.embed_dimensions, - ) - if not enable_text_search: - query_text = None - - return await self.hybrid_search(query_text, vector, top, filters) - async def simple_sql_search( self, filters: list[dict] @@ -303,6 +65,20 @@ async def simple_sql_search( items.append(item.scalar()) return items + async def google_search(self, query_text: str, top: int) -> list[str]: + """ + Search items by query text using Google search. + """ + results = google_search_function(query_text) + async with self.async_session_maker() as session: + items = [] + for result in results: + item = await session.execute(select(Item).where(Item.url == result)) + item = item.scalar() + if item: + items.append(item) + return items[:top] + # async def get_product_cards_info(self, urls: list[str]) -> list[dict]: # """ diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 566a4b45..142e9cb0 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -47,8 +47,8 @@ def __init__( @retry(wait=wait_random_exponential(min=1, max=60), stop=stop_after_attempt(6), before_sleep=before_sleep_log(logger, logging.WARNING)) async def openai_chat_completion(self, *args, **kwargs) -> ChatCompletion: return await self.openai_chat_client.chat.completions.create(*args, **kwargs) - - async def hybrid_search(self, messages, top, vector_search, text_search): + + async def google_search(self, messages): # Generate an optimized keyword search query based on the chat history and the last question query_messages = copy.deepcopy(messages) query_messages.insert(0, {"role": "system", "content": self.query_prompt_template}) @@ -66,36 +66,20 @@ async def hybrid_search(self, messages, top, vector_search, text_search): query_text, filters = extract_search_arguments(query_chat_completion) - # Retrieve relevant items from the database with the GPT optimized query - results = await self.searcher.search_and_embed( - query_text, - top=top, - enable_vector_search=vector_search, - enable_text_search=text_search, - filters=filters, - ) + results = await self.searcher.google_search(query_text, top=3) sources_content = [f"[{(item.url)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] thought_steps = [ ThoughtStep( title="Prompt to generate search arguments", - description=[str(message) for message in query_messages], - props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} - ), - ThoughtStep( - title="Generated search arguments", description=query_text, - props={"filters": filters} + props={} ), ThoughtStep( - title="Hybrid Search results", + title="Google Search results", description=[result.to_dict() for result in results], - props={ - "top": top, - "vector_search": vector_search, - "text_search": text_search - } + props={} ) ] return sources_content, thought_steps @@ -111,11 +95,6 @@ async def run( if isinstance(message['content'], str): message['content'] = [{'type': 'text', 'text': message['content']}] - # Determine the search mode and the number of results to return - text_search = overrides.get("retrieval_mode") in ["text", "hybrid", None] - vector_search = overrides.get("retrieval_mode") in ["vectors", "hybrid", None] - top = overrides.get("top", 3) - # Generate a prompt to specify the package if the user is referring to a specific package specify_package_messages = copy.deepcopy(messages) specify_package_messages.insert(0, {"role": "system", "content": self.specify_package_prompt_template}) @@ -174,9 +153,9 @@ async def run( ] else: # No results found with SQL search, fall back to the hybrid search - sources_content, thought_steps = await self.hybrid_search(messages, top, vector_search, text_search) + sources_content, thought_steps = await self.google_search(messages) else: # Hybrid search - sources_content, thought_steps = await self.hybrid_search(messages, top, vector_search, text_search) + sources_content, thought_steps = await self.google_search(messages) content = "\n".join(sources_content) From 1a33ab7b530b10f807daeba162875accb4aab92e Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Tue, 23 Jul 2024 10:44:25 +0000 Subject: [PATCH 32/54] Replace vector search with google search --- src/fastapi_app/api_models.py | 2 +- src/fastapi_app/api_routes.py | 66 +-- src/fastapi_app/google_search.py | 11 +- src/fastapi_app/postgres_models.py | 384 +----------------- src/fastapi_app/postgres_searcher.py | 70 +--- src/fastapi_app/rag_advanced.py | 97 ++--- src/fastapi_app/rag_simple.py | 2 +- src/fastapi_app/seed_hd_data.py | 17 +- src/fastapi_app/setup_postgres_seeddata.py | 12 +- src/fastapi_app/update_embeddings.py | 95 ----- .../update_recommended_packages.py | 114 ------ src/fastapi_app/utils.py | 17 + src/frontend/src/components/Answer/Answer.tsx | 16 +- .../src/components/Answer/AnswerError.tsx | 4 +- .../src/components/Answer/AnswerLoading.tsx | 4 +- .../SupportingContentParser.ts | 6 +- 16 files changed, 117 insertions(+), 800 deletions(-) delete mode 100644 src/fastapi_app/update_embeddings.py delete mode 100644 src/fastapi_app/update_recommended_packages.py create mode 100644 src/fastapi_app/utils.py diff --git a/src/fastapi_app/api_models.py b/src/fastapi_app/api_models.py index 57de91ba..78f79b1b 100644 --- a/src/fastapi_app/api_models.py +++ b/src/fastapi_app/api_models.py @@ -1,4 +1,4 @@ -from typing import Any, List, Union, Optional +from typing import Any, List, Union from pydantic import BaseModel diff --git a/src/fastapi_app/api_routes.py b/src/fastapi_app/api_routes.py index ef89e3ad..af2e4afa 100644 --- a/src/fastapi_app/api_routes.py +++ b/src/fastapi_app/api_routes.py @@ -1,55 +1,27 @@ +import re + import fastapi from sqlalchemy import select from sqlalchemy.ext.asyncio import async_sessionmaker from fastapi_app.api_models import ChatRequest from fastapi_app.globals import global_storage -from fastapi_app.postgres_models import Item +from fastapi_app.postgres_models import Package from fastapi_app.postgres_searcher import PostgresSearcher from fastapi_app.rag_advanced import AdvancedRAGChat from fastapi_app.rag_simple import SimpleRAGChat +from fastapi_app.utils import update_urls_with_utm router = fastapi.APIRouter() -@router.get("/items/{url}") -async def item_handler(url: str): - """A simple API to get an item by URL.""" - async_session_maker = async_sessionmaker(global_storage.engine, expire_on_commit=False) - async with async_session_maker() as session: - item = (await session.scalars(select(Item).where(Item.url == url))).first() - return item.to_dict() - - -@router.get("/similar") -async def similar_handler(url: str, n: int = 5): - """A similarity API to find items similar to items with given URL.""" +@router.get("/packages/{url}") +async def package_handler(url: str): + """A simple API to get an package by URL.""" async_session_maker = async_sessionmaker(global_storage.engine, expire_on_commit=False) async with async_session_maker() as session: - item = (await session.scalars(select(Item).where(Item.url == url))).first() - closest = await session.execute( - select(Item, Item.embedding.l2_distance(item.embedding)) - .filter(Item.url != url) - .order_by(Item.embedding.l2_distance(item.embedding)) - .limit(n) - ) - return [item.to_dict() | {"distance": round(distance, 2)} for item, distance in closest] - - -@router.get("/search") -async def search_handler(query: str, top: int = 5, enable_vector_search: bool = True, enable_text_search: bool = True): - """A search API to find items based on a query.""" - searcher = PostgresSearcher( - global_storage.engine, - openai_embed_client=global_storage.openai_embed_client, - embed_deployment=global_storage.openai_embed_deployment, - embed_model=global_storage.openai_embed_model, - embed_dimensions=global_storage.openai_embed_dimensions, - ) - results = await searcher.search_and_embed( - query, top=top, enable_vector_search=enable_vector_search, enable_text_search=enable_text_search - ) - return [item.to_dict() for item in results] + package = (await session.scalars(select(Package).where(Package.url == url))).first() + return package.to_dict() @router.post("/chat") @@ -57,13 +29,7 @@ async def chat_handler(chat_request: ChatRequest): messages = [message.model_dump() for message in chat_request.messages] overrides = chat_request.context.get("overrides", {}) - searcher = PostgresSearcher( - global_storage.engine, - openai_embed_client=global_storage.openai_embed_client, - embed_deployment=global_storage.openai_embed_deployment, - embed_model=global_storage.openai_embed_model, - embed_dimensions=global_storage.openai_embed_dimensions, - ) + searcher = PostgresSearcher(global_storage.engine) if overrides.get("use_advanced_flow"): ragchat = AdvancedRAGChat( searcher=searcher, @@ -79,5 +45,13 @@ async def chat_handler(chat_request: ChatRequest): chat_deployment=global_storage.openai_chat_deployment, ) - response = await ragchat.run(messages, overrides=overrides) - return response \ No newline at end of file + chat_resp = await ragchat.run(messages, overrides=overrides) + chat_resp_content = chat_resp["choices"][0]["message"]["content"] + + # Update URLs with UTM parameters + url_pattern = r"https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+" + chat_resp_content = update_urls_with_utm(chat_resp_content, url_pattern) + + # Update the chat response with the modified content + chat_resp["choices"][0]["message"]["content"] = chat_resp_content + return chat_resp diff --git a/src/fastapi_app/google_search.py b/src/fastapi_app/google_search.py index 74fa7c56..fd45f83c 100644 --- a/src/fastapi_app/google_search.py +++ b/src/fastapi_app/google_search.py @@ -1,5 +1,6 @@ -import requests import os + +import requests from dotenv import load_dotenv # Load the environment variables @@ -23,18 +24,16 @@ def google_search_function(search_query): if response.status_code == 200: # Parse the JSON response data = response.json() - for item in data.get('items', []): - link = item.get('link') + for item in data.get("items", []): + link = item.get("link") if link: links.append(link) - return links else: return {"error": "An error occurred"} - if __name__ == "__main__": search_query = "ลดขนาดหน้าอก " result = google_search_function(search_query) - print(result) \ No newline at end of file + print(result) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index be8621f2..18df19ee 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -2,8 +2,6 @@ from dataclasses import asdict -from pgvector.sqlalchemy import Vector -from sqlalchemy import Index, Boolean from sqlalchemy.orm import DeclarativeBase, Mapped, MappedAsDataclass, mapped_column @@ -12,8 +10,8 @@ class Base(DeclarativeBase, MappedAsDataclass): pass -class Item(Base): - __tablename__ = "packages_all" +class Package(Base): + __tablename__ = "packages_all_staging" package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() url: Mapped[str] = mapped_column(primary_key=True) @@ -52,106 +50,10 @@ class Item(Base): side_effects: Mapped[str] = mapped_column() review_4_5_stars: Mapped[str] = mapped_column() brand_option_in_thai_name: Mapped[str] = mapped_column() - brand_ranking_position: Mapped[int] = mapped_column() faq: Mapped[str] = mapped_column() - embedding_package_name: Mapped[Vector] = mapped_column(Vector(1536)) # ada-002 - embedding_category: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_category_tags: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_meta_keywords: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_brand: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_locations: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_meta_description: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_price_details: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_package_details: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_important_info: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_payment_booking_info: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_general_info: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_early_signs_for_diagnosis: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_how_to_diagnose: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_hdcare_summary: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_common_question: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_know_this_disease: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_courses_of_action: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_signals_to_proceed_surgery: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_get_to_know_this_surgery: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_comparisons: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_getting_ready: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_recovery: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_side_effects: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_review_4_5_stars: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_brand_option_in_thai_name: Mapped[Vector] = mapped_column(Vector(1536)) - embedding_faq: Mapped[Vector] = mapped_column(Vector(1536)) - is_recommended: Mapped[bool] = mapped_column(Boolean, default=False) - - def to_dict(self, include_embedding: bool = False): - model_dict = asdict(self) - if include_embedding: - embedding_columns = [ - "embedding_package_name", - "embedding_category", - "embedding_category_tags", - "embedding_meta_keywords", - "embedding_brand", - "embedding_locations", - "embedding_meta_description", - "embedding_price_details", - "embedding_package_details", - "embedding_important_info", - "embedding_payment_booking_info", - "embedding_general_info", - "embedding_early_signs_for_diagnosis", - "embedding_how_to_diagnose", - "embedding_hdcare_summary", - "embedding_common_question", - "embedding_know_this_disease", - "embedding_courses_of_action", - "embedding_signals_to_proceed_surgery", - "embedding_get_to_know_this_surgery", - "embedding_comparisons", - "embedding_getting_ready", - "embedding_recovery", - "embedding_side_effects", - "embedding_review_4_5_stars", - "embedding_brand_option_in_thai_name", - "embedding_faq", - ] - for col in embedding_columns: - model_dict[col] = model_dict[col].tolist() - else: - # Remove embedding columns if not included - embedding_columns = [ - "embedding_package_name", - "embedding_category", - "embedding_category_tags", - "embedding_meta_keywords", - "embedding_brand", - "embedding_locations", - "embedding_meta_description", - "embedding_price_details", - "embedding_package_details", - "embedding_important_info", - "embedding_payment_booking_info", - "embedding_general_info", - "embedding_early_signs_for_diagnosis", - "embedding_how_to_diagnose", - "embedding_hdcare_summary", - "embedding_common_question", - "embedding_know_this_disease", - "embedding_courses_of_action", - "embedding_signals_to_proceed_surgery", - "embedding_get_to_know_this_surgery", - "embedding_comparisons", - "embedding_getting_ready", - "embedding_recovery", - "embedding_side_effects", - "embedding_review_4_5_stars", - "embedding_brand_option_in_thai_name", - "embedding_faq", - ] - for col in embedding_columns: - del model_dict[col] - return model_dict + def to_dict(self): + return asdict(self) def to_str_for_broad_rag(self): return f""" package_name: {self.package_name} @@ -201,283 +103,5 @@ def to_str_for_narrow_rag(self): side_effects: {self.side_effects} review_4_5_stars: {self.review_4_5_stars} brand_option_in_thai_name: {self.brand_option_in_thai_name} - brand_ranking_position: {self.brand_ranking_position} faq: {self.faq} """ - - def to_str_for_embedding_package_name(self): - return f"Package Name: {self.package_name}" if self.package_name else "" - - def to_str_for_embedding_category(self): - return f"Category: {self.category}" if self.category else "" - - def to_str_for_embedding_category_tags(self): - return f"Category Tags: {self.category_tags}" if self.category_tags else "" - - def to_str_for_embedding_meta_keywords(self): - return f"Meta Keywords: {self.meta_keywords}" if self.meta_keywords else "" - - def to_str_for_embedding_brand(self): - return f"Brand: {self.brand}" if self.brand else "" - - def to_str_for_embedding_locations(self): - return f"Locations: {self.locations}" if self.locations else "" - - def to_str_for_embedding_meta_description(self): - return f"Meta Description: {self.meta_description}" if self.meta_description else "" - - def to_str_for_embedding_price_details(self): - return f"Price Details: {self.price_details}" if self.price_details else "" - - def to_str_for_embedding_package_details(self): - return f"Package Details: {self.package_details}" if self.package_details else "" - - def to_str_for_embedding_important_info(self): - return f"Important Info: {self.important_info}" if self.important_info else "" - - def to_str_for_embedding_payment_booking_info(self): - return f"Payment Booking Info: {self.payment_booking_info}" if self.payment_booking_info else "" - - def to_str_for_embedding_general_info(self): - return f"General Info: {self.general_info}" if self.general_info else "" - - def to_str_for_embedding_early_signs_for_diagnosis(self): - return f"Early Signs for Diagnosis: {self.early_signs_for_diagnosis}" if self.early_signs_for_diagnosis else "" - - def to_str_for_embedding_how_to_diagnose(self): - return f"How to Diagnose: {self.how_to_diagnose}" if self.how_to_diagnose else "" - - def to_str_for_embedding_hdcare_summary(self): - return f"Hdcare Summary: {self.hdcare_summary}" if self.hdcare_summary else "" - - def to_str_for_embedding_common_question(self): - return f"Common Question: {self.common_question}" if self.common_question else "" - - def to_str_for_embedding_know_this_disease(self): - return f"Know This Disease: {self.know_this_disease}" if self.know_this_disease else "" - - def to_str_for_embedding_courses_of_action(self): - return f"Courses of Action: {self.courses_of_action}" if self.courses_of_action else "" - - def to_str_for_embedding_signals_to_proceed_surgery(self): - return ( - f"Signals to Proceed Surgery: {self.signals_to_proceed_surgery}" if self.signals_to_proceed_surgery else "" - ) - - def to_str_for_embedding_get_to_know_this_surgery(self): - return f"Get to Know This Surgery: {self.get_to_know_this_surgery}" if self.get_to_know_this_surgery else "" - - def to_str_for_embedding_comparisons(self): - return f"Comparisons: {self.comparisons}" if self.comparisons else "" - - def to_str_for_embedding_getting_ready(self): - return f"Getting Ready: {self.getting_ready}" if self.getting_ready else "" - - def to_str_for_embedding_recovery(self): - return f"Recovery: {self.recovery}" if self.recovery else "" - - def to_str_for_embedding_side_effects(self): - return f"Side Effects: {self.side_effects}" if self.side_effects else "" - - def to_str_for_embedding_review_4_5_stars(self): - return f"Review 4-5 Stars: {self.review_4_5_stars}" if self.review_4_5_stars else "" - - def to_str_for_embedding_brand_option_in_thai_name(self): - return f"Brand Option in Thai Name: {self.brand_option_in_thai_name}" if self.brand_option_in_thai_name else "" - - def to_str_for_embedding_faq(self): - return f"FAQ: {self.faq}" if self.faq else "" - - -# Define HNSW indices to support vector similarity search for each embedding column -indices = [ - Index( - "hnsw_index_for_embedding_package_name", - Item.embedding_package_name, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_package_name": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_category", - Item.embedding_category, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_category": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_category_tags", - Item.embedding_category_tags, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_category_tags": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_meta_keywords", - Item.embedding_meta_keywords, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_meta_keywords": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_brand", - Item.embedding_brand, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_brand": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_locations", - Item.embedding_locations, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_locations": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_meta_description", - Item.embedding_meta_description, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_meta_description": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_price_details", - Item.embedding_price_details, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_price_details": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_package_details", - Item.embedding_package_details, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_package_details": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_important_info", - Item.embedding_important_info, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_important_info": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_payment_booking_info", - Item.embedding_payment_booking_info, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_payment_booking_info": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_general_info", - Item.embedding_general_info, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_general_info": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_early_signs_for_diagnosis", - Item.embedding_early_signs_for_diagnosis, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_early_signs_for_diagnosis": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_how_to_diagnose", - Item.embedding_how_to_diagnose, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_how_to_diagnose": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_hdcare_summary", - Item.embedding_hdcare_summary, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_hdcare_summary": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_common_question", - Item.embedding_common_question, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_common_question": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_know_this_disease", - Item.embedding_know_this_disease, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_know_this_disease": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_courses_of_action", - Item.embedding_courses_of_action, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_courses_of_action": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_signals_to_proceed_surgery", - Item.embedding_signals_to_proceed_surgery, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_signals_to_proceed_surgery": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_get_to_know_this_surgery", - Item.embedding_get_to_know_this_surgery, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_get_to_know_this_surgery": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_comparisons", - Item.embedding_comparisons, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_comparisons": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_getting_ready", - Item.embedding_getting_ready, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_getting_ready": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_recovery", - Item.embedding_recovery, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_recovery": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_side_effects", - Item.embedding_side_effects, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_side_effects": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_review_4_5_stars", - Item.embedding_review_4_5_stars, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_review_4_5_stars": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_brand_option_in_thai_name", - Item.embedding_brand_option_in_thai_name, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_brand_option_in_thai_name": "vector_ip_ops"}, - ), - Index( - "hnsw_index_for_embedding_faq", - Item.embedding_faq, - postgresql_using="hnsw", - postgresql_with={"m": 16, "ef_construction": 64}, - postgresql_ops={"embedding_faq": "vector_ip_ops"}, - ), -] diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index df343e1c..83da911d 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -1,27 +1,16 @@ -from openai import AsyncOpenAI -from pgvector.utils import to_db -from sqlalchemy import String, Float, Integer, select, text +from sqlalchemy import String, select, text from sqlalchemy.ext.asyncio import async_sessionmaker -from fastapi_app.embeddings import compute_text_embedding -from fastapi_app.postgres_models import Item from fastapi_app.google_search import google_search_function +from fastapi_app.postgres_models import Package class PostgresSearcher: def __init__( self, engine, - openai_embed_client: AsyncOpenAI, - embed_deployment: str | None, # Not needed for non-Azure OpenAI or for retrieval_mode="text" - embed_model: str, - embed_dimensions: int, ): self.async_session_maker = async_sessionmaker(engine, expire_on_commit=False) - self.openai_embed_client = openai_embed_client - self.embed_model = embed_model - self.embed_deployment = embed_deployment - self.embed_dimensions = embed_dimensions def build_filter_clause(self, filters, use_or=False) -> tuple[str, str]: if filters is None: @@ -36,36 +25,29 @@ def build_filter_clause(self, filters, use_or=False) -> tuple[str, str]: return f"WHERE {filter_clause}", f"AND {filter_clause}" return "", "" - async def simple_sql_search( - self, - filters: list[dict] - ) -> list[Item]: + async def simple_sql_search(self, filters: list[dict]) -> list[Package]: """ Search items by simple SQL query with filters. """ filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" - SELECT url FROM packages_all + SELECT url FROM packages_all_staging {filter_clause_where} LIMIT 10 """ - + async with self.async_session_maker() as session: - results = ( - await session.execute( - text(sql).columns(url=String) - ) - ).fetchall() + results = (await session.execute(text(sql).columns(url=String))).fetchall() - # Convert results to Item models + # Convert results to Package models items = [] for result in results: item_url = result.url - item = await session.execute(select(Item).where(Item.url == item_url)) - items.append(item.scalar()) + package = await session.execute(select(Package).where(Package.url == item_url)) + items.append(package.scalar()) return items - - async def google_search(self, query_text: str, top: int) -> list[str]: + + async def google_search(self, query_text: str, top: int = 3) -> list[str]: """ Search items by query text using Google search. """ @@ -73,30 +55,8 @@ async def google_search(self, query_text: str, top: int) -> list[str]: async with self.async_session_maker() as session: items = [] for result in results: - item = await session.execute(select(Item).where(Item.url == result)) - item = item.scalar() - if item: - items.append(item) + package = await session.execute(select(Package).where(Package.url == result)) + package = package.scalar() + if package: + items.append(package) return items[:top] - - - # async def get_product_cards_info(self, urls: list[str]) -> list[dict]: - # """ - # Fetch detailed information about items using their URLs as identifiers. - # """ - # sql = """ - # SELECT package_name, package_picture, url, price FROM packages_all WHERE url = ANY(:urls) - # """ - - # async with self.async_session_maker() as session: - # results = ( - # await session.execute( - # text(sql), {"urls": urls} - # ) - # ).fetchall() - - # # Convert results to dictionaries - # items = [] - # for result in results: - # items.append(dict(result._mapping)) - # return items \ No newline at end of file diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 142e9cb0..63292514 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -1,7 +1,7 @@ -import re import copy import logging import pathlib +import re from collections.abc import AsyncGenerator from typing import Any @@ -25,6 +25,7 @@ logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) + class AdvancedRAGChat: def __init__( self, @@ -44,10 +45,14 @@ def __init__( self.query_prompt_template = open(current_dir / "prompts/query.txt").read() self.answer_prompt_template = open(current_dir / "prompts/answer.txt").read() - @retry(wait=wait_random_exponential(min=1, max=60), stop=stop_after_attempt(6), before_sleep=before_sleep_log(logger, logging.WARNING)) + @retry( + wait=wait_random_exponential(min=1, max=60), + stop=stop_after_attempt(6), + before_sleep=before_sleep_log(logger, logging.WARNING), + ) async def openai_chat_completion(self, *args, **kwargs) -> ChatCompletion: return await self.openai_chat_client.chat.completions.create(*args, **kwargs) - + async def google_search(self, messages): # Generate an optimized keyword search query based on the chat history and the last question query_messages = copy.deepcopy(messages) @@ -68,32 +73,21 @@ async def google_search(self, messages): results = await self.searcher.google_search(query_text, top=3) - sources_content = [f"[{(item.url)}]:{item.to_str_for_broad_rag()}\n\n" for item in results] + sources_content = [f"[{(package.url)}]:{package.to_str_for_broad_rag()}\n\n" for package in results] thought_steps = [ - ThoughtStep( - title="Prompt to generate search arguments", - description=query_text, - props={} - ), - ThoughtStep( - title="Google Search results", - description=[result.to_dict() for result in results], - props={} - ) + ThoughtStep(title="Prompt to generate search arguments", description=query_text, props={}), + ThoughtStep(title="Google Search results", description=[result.to_dict() for result in results], props={}), ] return sources_content, thought_steps - # TODO: Product Cards - # async def get_product_cards_details(self, urls: list[str]) -> list[dict]: - # return await self.searcher.get_product_cards_info(urls) async def run( self, messages: list[dict], overrides: dict[str, Any] = {} ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: # Normalize the message format for message in messages: - if isinstance(message['content'], str): - message['content'] = [{'type': 'text', 'text': message['content']}] + if isinstance(message["content"], str): + message["content"] = [{"type": "text", "text": message["content"]}] # Generate a prompt to specify the package if the user is referring to a specific package specify_package_messages = copy.deepcopy(messages) @@ -106,22 +100,16 @@ async def run( temperature=0.0, max_tokens=specify_package_token_limit, n=1, - tools=build_handover_to_cx_function()+build_specify_package_function() + tools=build_handover_to_cx_function() + build_specify_package_function(), ) specify_package_resp = specify_package_chat_completion.model_dump() if is_handover_to_cx(specify_package_chat_completion): specify_package_resp["choices"][0]["message"]["content"] = "QISCUS_INTEGRATION_TO_CX" - + specify_package_resp["choices"][0]["context"] = { "data_points": {"text": ""}, - "thoughts": [ - ThoughtStep( - title="Product Cards Details", - description=[], - props={} - ) - ] + "thoughts": [ThoughtStep(title="Product Cards Details", description=[], props={})], } return specify_package_resp @@ -132,24 +120,20 @@ async def run( results = await self.searcher.simple_sql_search(filters=specify_package_filters) if results: - sources_content = [f"[{(item.url)}]:{item.to_str_for_narrow_rag()}\n\n" for item in results] + sources_content = [f"[{(package.url)}]:{package.to_str_for_narrow_rag()}\n\n" for package in results] thought_steps = [ ThoughtStep( title="Prompt to specify package", description=[str(message) for message in specify_package_messages], - props={"model": self.chat_model, "deployment": self.chat_deployment} if self.chat_deployment else {"model": self.chat_model} + props={"model": self.chat_model, "deployment": self.chat_deployment} + if self.chat_deployment + else {"model": self.chat_model}, ), + ThoughtStep(title="Specified package filters", description=specify_package_filters, props={}), ThoughtStep( - title="Specified package filters", - description=specify_package_filters, - props={} + title="SQL search results", description=[result.to_dict() for result in results], props={} ), - ThoughtStep( - title="SQL search results", - description=[result.to_dict() for result in results], - props={} - ) ] else: # No results found with SQL search, fall back to the hybrid search @@ -174,35 +158,10 @@ async def run( ) chat_resp = chat_completion_response.model_dump() - chat_resp_content = chat_resp["choices"][0]["message"]["content"] - package_urls = re.findall(r'https:\/\/hdmall\.co\.th\/[\w.,@?^=%&:\/~+#-]+', chat_resp_content) - - # Function to add UTM parameter to a URL - def add_utm_param(url): - if '?' in url: - return url + '&utm_source=ai-chat' - else: - return url + '?utm_source=ai-chat' - - # Add UTM parameter to all found URLs - updated_urls = [add_utm_param(url) for url in package_urls] - - # Replace old URLs with updated URLs in the content - for old_url, new_url in zip(package_urls, updated_urls): - chat_resp_content = chat_resp_content.replace(old_url, new_url) - - # Update the chat response with the modified content - chat_resp["choices"][0]["message"]["content"] = chat_resp_content - - # TODO: Product Cards - # if package_urls: - # product_cards_details = await self.get_product_cards_details(package_urls) - # else: - # product_cards_details = [] - chat_resp["choices"][0]["context"] = { "data_points": {"text": sources_content}, - "thoughts": thought_steps + [ + "thoughts": thought_steps + + [ ThoughtStep( title="Prompt to generate answer", description=[str(message) for message in messages], @@ -212,12 +171,6 @@ def add_utm_param(url): else {"model": self.chat_model} ), ), - # TODO: Product Cards - # ThoughtStep( - # title="Product Cards Details", - # description=product_cards_details, - # props={} - # ) - ] + ], } return chat_resp \ No newline at end of file diff --git a/src/fastapi_app/rag_simple.py b/src/fastapi_app/rag_simple.py index 4cf328a7..04e4637d 100644 --- a/src/fastapi_app/rag_simple.py +++ b/src/fastapi_app/rag_simple.py @@ -43,7 +43,7 @@ async def run( original_user_query, top=top, enable_vector_search=vector_search, enable_text_search=text_search ) - sources_content = [f"[{(item.id)}]:{item.to_str_for_rag()}\n\n" for item in results] + sources_content = [f"[{(package.id)}]:{package.to_str_for_rag()}\n\n" for package in results] content = "\n".join(sources_content) # Generate a contextual and content specific answer using the search results and chat history diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index fd2532df..8775fb3e 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -15,7 +15,7 @@ create_postgres_engine_from_args, create_postgres_engine_from_env, ) -from fastapi_app.postgres_models import Item +from fastapi_app.postgres_models import Package logger = logging.getLogger("ragapp") @@ -71,13 +71,13 @@ def convert_to_str(value): async def seed_data(engine): - logger.info("Checking if the packages_staging table exists...") + logger.info("Checking if the packages_all_staging table exists...") async with engine.begin() as conn: result = await conn.execute( text( """ SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_staging') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all_staging') """ # noqa ) ) @@ -126,11 +126,11 @@ async def seed_data(engine): if "brand_ranking_position" in record: record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) - item = await session.execute(select(Item).filter(Item.url == record["url"])) - if item.scalars().first(): + package = await session.execute(select(Package).filter(Package.url == record["url"])) + if package.scalars().first(): continue - item_data = {key: value for key, value in record.items() if key in Item.__table__.columns} + item_data = {key: value for key, value in record.items() if key in Package.__table__.columns} for field in embedding_fields: item_data[field] = None @@ -141,12 +141,11 @@ async def seed_data(engine): "price_to_reserve_for_this_package", "cash_discount", "price_after_cash_discount", - "brand_ranking_position", ]: item_data[key] = convert_to_str(value) - item = Item(**item_data) - session.add(item) + package = Package(**item_data) + session.add(package) except Exception as e: logger.error(f"Error inserting record with url {record['url']}: {e}") diff --git a/src/fastapi_app/setup_postgres_seeddata.py b/src/fastapi_app/setup_postgres_seeddata.py index e8719c90..f697ed1a 100644 --- a/src/fastapi_app/setup_postgres_seeddata.py +++ b/src/fastapi_app/setup_postgres_seeddata.py @@ -13,13 +13,13 @@ create_postgres_engine_from_args, create_postgres_engine_from_env, ) -from fastapi_app.postgres_models import Item +from fastapi_app.postgres_models import Package logger = logging.getLogger("ragapp") async def seed_data(engine): - # Check if Item table exists + # Check if Package table exists async with engine.begin() as conn: result = await conn.execute( text( @@ -36,10 +36,10 @@ async def seed_data(engine): with open(os.path.join(current_dir, "seed_data.json")) as f: catalog_items = json.load(f) for catalog_item in catalog_items: - item = await session.execute(select(Item).filter(Item.id == catalog_item["Id"])) - if item.scalars().first(): + package = await session.execute(select(Package).filter(Package.id == catalog_item["Id"])) + if package.scalars().first(): continue - item = Item( + package = Package( id=catalog_item["Id"], type=catalog_item["Type"], brand=catalog_item["Brand"], @@ -48,7 +48,7 @@ async def seed_data(engine): price=catalog_item["Price"], embedding=catalog_item["Embedding"], ) - session.add(item) + session.add(package) try: await session.commit() except sqlalchemy.exc.IntegrityError: diff --git a/src/fastapi_app/update_embeddings.py b/src/fastapi_app/update_embeddings.py deleted file mode 100644 index 0e01f8be..00000000 --- a/src/fastapi_app/update_embeddings.py +++ /dev/null @@ -1,95 +0,0 @@ -import asyncio -import logging - -from azure.identity.aio import DefaultAzureCredential -from dotenv import load_dotenv -from sqlalchemy import select, func -from sqlalchemy.ext.asyncio import async_sessionmaker, AsyncSession -from tqdm.asyncio import tqdm_asyncio - -from embeddings import compute_text_embedding -from openai_clients import create_openai_embed_client -from postgres_engine import create_postgres_engine_from_env -from postgres_models import Item - -load_dotenv() - -# Set up logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -EMBEDDING_FIELDS = [ - 'package_name', 'locations', 'category', 'category_tags', 'meta_keywords', - 'brand', 'meta_description', 'price_details', 'package_details', - 'important_info', 'payment_booking_info', 'general_info', - 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', - 'common_question', 'know_this_disease', 'courses_of_action', - 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', - 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', - 'brand_option_in_thai_name', 'faq' -] - -def get_to_str_method(item, field): - method_name = f"to_str_for_embedding_{field}" - return getattr(item, method_name, None) - -async def fetch_items(session, offset, batch_size): - return (await session.scalars(select(Item).where(Item.embedding_package_name.is_(None)).offset(offset).limit(batch_size))).all() - -async def process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions): - async with async_session_maker() as session: - async with session.begin(): - for item in items: - for field in EMBEDDING_FIELDS: - to_str_method = get_to_str_method(item, field) - if to_str_method: - field_value = to_str_method() - if field_value: - try: - embedding = await compute_text_embedding( - field_value, - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) - setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.url}") - except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") - - session.add(item) - await session.commit() - -async def update_embeddings(batch_size=100): - engine = await create_postgres_engine_from_env() - azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) - - async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) - - async with async_session_maker() as fetch_session: - total_items = await fetch_session.scalar(select(func.count(Item.url)).where(Item.embedding_package_name.is_(None))) - logger.info(f"Found {total_items} items to process.") - - offset = 0 - with tqdm_asyncio(total=total_items, desc="Updating embeddings") as pbar: - while offset < total_items: - async with async_session_maker() as fetch_session: - items = await fetch_items(fetch_session, offset, batch_size) - if not items: - break - - # Expunge items from the original session - for item in items: - fetch_session.expunge(item) - - logger.info(f"Processing batch of {len(items)} items (offset {offset})") - await process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions) - offset += batch_size - pbar.update(len(items)) - - await engine.dispose() - await azure_credential.close() # Ensure the Azure credential client session is closed - -if __name__ == "__main__": - asyncio.run(update_embeddings()) diff --git a/src/fastapi_app/update_recommended_packages.py b/src/fastapi_app/update_recommended_packages.py deleted file mode 100644 index 320ec727..00000000 --- a/src/fastapi_app/update_recommended_packages.py +++ /dev/null @@ -1,114 +0,0 @@ -import asyncio -import logging -import pandas as pd -from azure.identity.aio import DefaultAzureCredential -from dotenv import load_dotenv -from sqlalchemy import select, func -from sqlalchemy.ext.asyncio import async_sessionmaker, AsyncSession -from tqdm.asyncio import tqdm_asyncio - -from embeddings import compute_text_embedding -from openai_clients import create_openai_embed_client -from postgres_engine import create_postgres_engine_from_env -from postgres_models import Item - -load_dotenv() - -# Set up logging -logging.basicConfig(level=logging.INFO) -logger = logging.getLogger(__name__) - -EMBEDDING_FIELDS = [ - 'package_name', 'locations', 'category', 'category_tags', 'meta_keywords', - 'brand', 'meta_description', 'price_details', 'package_details', - 'important_info', 'payment_booking_info', 'general_info', - 'early_signs_for_diagnosis', 'how_to_diagnose', 'hdcare_summary', - 'common_question', 'know_this_disease', 'courses_of_action', - 'signals_to_proceed_surgery', 'get_to_know_this_surgery', 'comparisons', - 'getting_ready', 'recovery', 'side_effects', 'review_4_5_stars', - 'brand_option_in_thai_name', 'faq' -] - -def get_to_str_method(item, field): - method_name = f"to_str_for_embedding_{field}" - return getattr(item, method_name, None) - -async def fetch_items(session, urls, offset, batch_size): - return ( - await session.scalars( - select(Item) - .where(Item.url.in_(urls)) - .where(Item.is_recommended.is_(False)) - .offset(offset) - .limit(batch_size) - ) - ).all() - -async def process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions): - async with async_session_maker() as session: - async with session.begin(): - for item in items: - for field in EMBEDDING_FIELDS: - to_str_method = get_to_str_method(item, field) - if to_str_method: - field_value = to_str_method() - if field_value: - try: - embedding = await compute_text_embedding( - field_value, - openai_client=openai_embed_client, - embed_model=openai_embed_model, - embedding_dimensions=openai_embed_dimensions, - ) - setattr(item, f'embedding_{field}', embedding) - logger.info(f"Updated embedding for {field} of item {item.url}") - except Exception as e: - logger.error(f"Error updating embedding for {field} of item {item.url}: {e}") - item.is_recommended = True - session.add(item) - await session.commit() - -async def update_embeddings(batch_size=100): - engine = await create_postgres_engine_from_env() - azure_credential = DefaultAzureCredential() - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client(azure_credential) - - async_session_maker = async_sessionmaker(engine, expire_on_commit=False, class_=AsyncSession) - - # Read CSV file - df = pd.read_csv('recommended_packages.csv') - urls = df['package url'].tolist() - logger.info(f"Total URLs in CSV: {len(urls)}") - unique_urls = list(set(urls)) - logger.info(f"Unique URLs: {len(unique_urls)}") - - async with async_session_maker() as fetch_session: - total_items = await fetch_session.scalar( - select(func.count(Item.url)) - .where(Item.url.in_(unique_urls)) - .where(Item.is_recommended.is_(False)) - ) - logger.info(f"Found {total_items} items to process in database.") - - offset = 0 - with tqdm_asyncio(total=total_items, desc="Updating embeddings") as pbar: - while offset < total_items: - async with async_session_maker() as fetch_session: - items = await fetch_items(fetch_session, unique_urls, offset, batch_size) - if not items: - break - - # Expunge items from the original session - for item in items: - fetch_session.expunge(item) - - logger.info(f"Processing batch of {len(items)} items (offset {offset})") - await process_batch(async_session_maker, items, openai_embed_client, openai_embed_model, openai_embed_dimensions) - offset += batch_size - pbar.update(len(items)) - - await engine.dispose() - await azure_credential.close() # Ensure the Azure credential client session is closed - -if __name__ == "__main__": - asyncio.run(update_embeddings()) diff --git a/src/fastapi_app/utils.py b/src/fastapi_app/utils.py new file mode 100644 index 00000000..a1ba90b3 --- /dev/null +++ b/src/fastapi_app/utils.py @@ -0,0 +1,17 @@ +import re + + +def update_urls_with_utm(content: str, pattern: str, utm_source: str = "ai-chat") -> str: + urls = re.findall(pattern, content) + updated_urls = [add_utm_param(url, utm_source) for url in urls] + + for old_url, new_url in zip(urls, updated_urls): + content = content.replace(old_url, new_url) + + return content + +def add_utm_param(url: str, utm_source: str = "ai-chat") -> str: + if "?" in url: + return f"{url}&utm_source={utm_source}" + else: + return f"{url}?utm_source={utm_source}" \ No newline at end of file diff --git a/src/frontend/src/components/Answer/Answer.tsx b/src/frontend/src/components/Answer/Answer.tsx index 4aaf8223..7ab29979 100644 --- a/src/frontend/src/components/Answer/Answer.tsx +++ b/src/frontend/src/components/Answer/Answer.tsx @@ -37,7 +37,7 @@ export const Answer = ({ return ( - +
@@ -59,14 +59,14 @@ export const Answer = ({ />
-
+ - +
-
+ {!!parsedAnswer.citations.length && ( - + Citations: {parsedAnswer.citations.map((x, i) => { @@ -77,11 +77,11 @@ export const Answer = ({ ); })} - + )} {!!followupQuestions?.length && showFollowupQuestions && onFollowupQuestionClicked && ( - + Follow-up questions: {followupQuestions.map((x, i) => { @@ -92,7 +92,7 @@ export const Answer = ({ ); })} - + )}
); diff --git a/src/frontend/src/components/Answer/AnswerError.tsx b/src/frontend/src/components/Answer/AnswerError.tsx index 49d3d2dc..7c0c6757 100644 --- a/src/frontend/src/components/Answer/AnswerError.tsx +++ b/src/frontend/src/components/Answer/AnswerError.tsx @@ -13,9 +13,9 @@ export const AnswerError = ({ error, onRetry }: Props) => { diff --git a/src/frontend/src/components/Answer/AnswerLoading.tsx b/src/frontend/src/components/Answer/AnswerLoading.tsx index 6df192a6..692d57e9 100644 --- a/src/frontend/src/components/Answer/AnswerLoading.tsx +++ b/src/frontend/src/components/Answer/AnswerLoading.tsx @@ -14,12 +14,12 @@ export const AnswerLoading = () => { - +

Generating answer

-
+
); diff --git a/src/frontend/src/components/SupportingContent/SupportingContentParser.ts b/src/frontend/src/components/SupportingContent/SupportingContentParser.ts index 2a0cd6ce..8fae26ae 100644 --- a/src/frontend/src/components/SupportingContent/SupportingContentParser.ts +++ b/src/frontend/src/components/SupportingContent/SupportingContentParser.ts @@ -5,10 +5,10 @@ type ParsedSupportingContentItem = { content: string; }; -export function parseSupportingContentItem(item: string): ParsedSupportingContentItem { - // Assumes the item starts with the file name followed by : and the content. +export function parseSupportingContentItem(package: string): ParsedSupportingContentItem { + // Assumes the package starts with the file name followed by : and the content. // Example: "sdp_corporate.pdf: this is the content that follows". - const parts = item.split(": "); + const parts = package.split(": "); const title = parts[0]; const content = DOMPurify.sanitize(parts.slice(1).join(": ")); From a9ab0f1b1333415d38949d7bdd7dfcbc52080794 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 03:36:52 +0000 Subject: [PATCH 33/54] Remove price_filter for hybird search and clean some codes --- src/fastapi_app/api_routes.py | 2 -- src/fastapi_app/query_rewriter.py | 14 +++----------- src/fastapi_app/rag_advanced.py | 3 +-- 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/src/fastapi_app/api_routes.py b/src/fastapi_app/api_routes.py index af2e4afa..3782f69f 100644 --- a/src/fastapi_app/api_routes.py +++ b/src/fastapi_app/api_routes.py @@ -1,5 +1,3 @@ -import re - import fastapi from sqlalchemy import select from sqlalchemy.ext.asyncio import async_sessionmaker diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index dae5099f..7f540018 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -44,7 +44,7 @@ def build_hybrid_search_function() -> list[ChatCompletionToolParam]: def extract_search_arguments(chat_completion: ChatCompletion): response_message = chat_completion.choices[0].message search_query = None - filters = [] + if response_message.tool_calls: for tool in response_message.tool_calls: if tool.type != "function": @@ -53,18 +53,10 @@ def extract_search_arguments(chat_completion: ChatCompletion): if function.name == "search_database": arg = json.loads(function.arguments) search_query = arg.get("search_query") - if "price_filter" in arg and arg["price_filter"]: - price_filter = arg["price_filter"] - filters.append( - { - "column": "price", - "comparison_operator": price_filter["comparison_operator"], - "value": price_filter["value"], - } - ) elif query_text := response_message.content: search_query = query_text.strip() - return search_query, filters + + return search_query def build_specify_package_function() -> list[ChatCompletionToolParam]: diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 63292514..3e346afa 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -1,7 +1,6 @@ import copy import logging import pathlib -import re from collections.abc import AsyncGenerator from typing import Any @@ -69,7 +68,7 @@ async def google_search(self, messages): tool_choice="auto", ) - query_text, filters = extract_search_arguments(query_chat_completion) + query_text = extract_search_arguments(query_chat_completion) results = await self.searcher.google_search(query_text, top=3) From 63a95d753912e9ecf34b6b2cfa2f802090d1e6bc Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 03:49:44 +0000 Subject: [PATCH 34/54] Remove codes related to hybrid search --- src/fastapi_app/query_rewriter.py | 18 ++---------------- src/fastapi_app/rag_advanced.py | 4 ++-- 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/query_rewriter.py index 7f540018..89db2e8a 100644 --- a/src/fastapi_app/query_rewriter.py +++ b/src/fastapi_app/query_rewriter.py @@ -6,13 +6,13 @@ ) -def build_hybrid_search_function() -> list[ChatCompletionToolParam]: +def build_google_search_function() -> list[ChatCompletionToolParam]: return [ { "type": "function", "function": { "name": "search_database", - "description": "Search PostgreSQL database for relevant products based on user query", + "description": "Search for relevant products based on user query", "parameters": { "type": "object", "properties": { @@ -20,20 +20,6 @@ def build_hybrid_search_function() -> list[ChatCompletionToolParam]: "type": "string", "description": "Query string to use for full text search, e.g. 'ตรวจสุขภาพ'", }, - "price_filter": { - "type": "object", - "description": "Filter search results based on price in Thai Baht of the package", - "properties": { - "comparison_operator": { - "type": "string", - "description": "Operator to compare the column value, either '>', '<', '>=', '<=', '='", - }, - "value": { - "type": "number", - "description": "Value to compare against, e.g. 30", - }, - }, - }, }, "required": ["search_query"], }, diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 3e346afa..5305d03e 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -13,7 +13,7 @@ from .postgres_searcher import PostgresSearcher from .query_rewriter import ( build_handover_to_cx_function, - build_hybrid_search_function, + build_google_search_function, build_specify_package_function, extract_search_arguments, handle_specify_package_function_call, @@ -64,7 +64,7 @@ async def google_search(self, messages): temperature=0.0, max_tokens=query_response_token_limit, n=1, - tools=build_hybrid_search_function(), + tools=build_google_search_function(), tool_choice="auto", ) From 33c426522ba5a7a809ae4fdb804912461e328490 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 03:53:08 +0000 Subject: [PATCH 35/54] Remove unused attributes from broad and narrow rag --- src/fastapi_app/postgres_models.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 18df19ee..2e36d20b 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -54,13 +54,13 @@ class Package(Base): def to_dict(self): return asdict(self) + def to_str_for_broad_rag(self): return f""" package_name: {self.package_name} url: {self.url} locations: {self.locations} price: {self.price} - brand: {self.brand} """ def to_str_for_narrow_rag(self): @@ -75,11 +75,9 @@ def to_str_for_narrow_rag(self): installment_limit: {self.installment_limit} price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} shop_name: {self.shop_name} - category: {self.category} category_tags: {self.category_tags} preview_1_10: {self.preview_1_10} selling_point: {self.selling_point} - meta_keywords: {self.meta_keywords} brand: {self.brand} min_max_age: {self.min_max_age} locations: {self.locations} From 1e6f63bfa627cc85f101fc1a2720d4b6872b329e Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 04:17:59 +0000 Subject: [PATCH 36/54] Remove embedding_columns from seed_hd_data.py --- src/fastapi_app/embeddings.py | 26 -------------------------- src/fastapi_app/seed_hd_data.py | 32 -------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 src/fastapi_app/embeddings.py diff --git a/src/fastapi_app/embeddings.py b/src/fastapi_app/embeddings.py deleted file mode 100644 index eb6942c4..00000000 --- a/src/fastapi_app/embeddings.py +++ /dev/null @@ -1,26 +0,0 @@ -from typing import ( - TypedDict, -) - - -async def compute_text_embedding( - q: str, openai_client, embed_model: str, embed_deployment: str = None, embedding_dimensions: int = 1536 -): - SUPPORTED_DIMENSIONS_MODEL = { - "text-embedding-ada-002": False, - "text-embedding-3-small": True, - "text-embedding-3-large": True, - } - - class ExtraArgs(TypedDict, total=False): - dimensions: int - - dimensions_args: ExtraArgs = {"dimensions": embedding_dimensions} if SUPPORTED_DIMENSIONS_MODEL[embed_model] else {} - - embedding = await openai_client.embeddings.create( - # Azure OpenAI takes the deployment name as the model name - model=embed_deployment if embed_deployment else embed_model, - input=q, - **dimensions_args, - ) - return embedding.data[0].embedding diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index 8775fb3e..9dc0223d 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -19,36 +19,6 @@ logger = logging.getLogger("ragapp") -embedding_fields = [ - "embedding_package_name", - "embedding_category", - "embedding_category_tags", - "embedding_meta_keywords", - "embedding_brand", - "embedding_locations", - "embedding_meta_description", - "embedding_price_details", - "embedding_package_details", - "embedding_important_info", - "embedding_payment_booking_info", - "embedding_general_info", - "embedding_early_signs_for_diagnosis", - "embedding_how_to_diagnose", - "embedding_hdcare_summary", - "embedding_common_question", - "embedding_know_this_disease", - "embedding_courses_of_action", - "embedding_signals_to_proceed_surgery", - "embedding_get_to_know_this_surgery", - "embedding_comparisons", - "embedding_getting_ready", - "embedding_recovery", - "embedding_side_effects", - "embedding_review_4_5_stars", - "embedding_brand_option_in_thai_name", - "embedding_faq", -] - def convert_to_int(value): try: @@ -132,8 +102,6 @@ async def seed_data(engine): item_data = {key: value for key, value in record.items() if key in Package.__table__.columns} - for field in embedding_fields: - item_data[field] = None for key, value in item_data.items(): if key not in [ From a9388d688f29e422905df8c3e50e1ae2aa161e72 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 05:00:41 +0000 Subject: [PATCH 37/54] Remove embed client related codes --- src/fastapi_app/__init__.py | 9 +-------- src/fastapi_app/openai_clients.py | 21 --------------------- src/fastapi_app/rag_advanced.py | 8 +------- 3 files changed, 2 insertions(+), 36 deletions(-) diff --git a/src/fastapi_app/__init__.py b/src/fastapi_app/__init__.py index 969a4271..35a333eb 100644 --- a/src/fastapi_app/__init__.py +++ b/src/fastapi_app/__init__.py @@ -8,7 +8,7 @@ from fastapi import FastAPI from .globals import global_storage -from .openai_clients import create_openai_chat_client, create_openai_embed_client +from .openai_clients import create_openai_chat_client from .postgres_engine import create_postgres_engine_from_env logger = logging.getLogger("ragapp") @@ -40,13 +40,6 @@ async def lifespan(app: FastAPI): global_storage.openai_chat_client = openai_chat_client global_storage.openai_chat_model = openai_chat_model - openai_embed_client, openai_embed_model, openai_embed_dimensions = await create_openai_embed_client( - azure_credential - ) - global_storage.openai_embed_client = openai_embed_client - global_storage.openai_embed_model = openai_embed_model - global_storage.openai_embed_dimensions = openai_embed_dimensions - yield await engine.dispose() diff --git a/src/fastapi_app/openai_clients.py b/src/fastapi_app/openai_clients.py index c3d4fd2d..72969f83 100644 --- a/src/fastapi_app/openai_clients.py +++ b/src/fastapi_app/openai_clients.py @@ -35,24 +35,3 @@ async def create_openai_chat_client(azure_credential): openai_chat_model = os.getenv("OPENAICOM_CHAT_MODEL") return openai_chat_client, openai_chat_model - - -async def create_openai_embed_client(azure_credential): - OPENAI_EMBED_HOST = os.getenv("OPENAI_EMBED_HOST") - if OPENAI_EMBED_HOST == "azure": - token_provider = azure.identity.aio.get_bearer_token_provider( - azure_credential, "https://cognitiveservices.azure.com/.default" - ) - openai_embed_client = openai.AsyncAzureOpenAI( - api_version=os.getenv("AZURE_OPENAI_VERSION"), - azure_endpoint=os.getenv("AZURE_OPENAI_ENDPOINT"), - azure_ad_token_provider=token_provider, - azure_deployment=os.getenv("AZURE_OPENAI_EMBED_DEPLOYMENT"), - ) - openai_embed_model = os.getenv("AZURE_OPENAI_EMBED_MODEL") - openai_embed_dimensions = os.getenv("AZURE_OPENAI_EMBED_DIMENSIONS") - else: - openai_embed_client = openai.AsyncOpenAI(api_key=os.getenv("OPENAICOM_KEY")) - openai_embed_model = os.getenv("OPENAICOM_EMBED_MODEL") - openai_embed_dimensions = os.getenv("OPENAICOM_EMBED_DIMENSIONS") - return openai_embed_client, openai_embed_model, openai_embed_dimensions diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 5305d03e..71a48007 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -12,8 +12,8 @@ from .api_models import ThoughtStep from .postgres_searcher import PostgresSearcher from .query_rewriter import ( - build_handover_to_cx_function, build_google_search_function, + build_handover_to_cx_function, build_specify_package_function, extract_search_arguments, handle_specify_package_function_call, @@ -105,12 +105,6 @@ async def run( specify_package_resp = specify_package_chat_completion.model_dump() if is_handover_to_cx(specify_package_chat_completion): specify_package_resp["choices"][0]["message"]["content"] = "QISCUS_INTEGRATION_TO_CX" - - specify_package_resp["choices"][0]["context"] = { - "data_points": {"text": ""}, - "thoughts": [ThoughtStep(title="Product Cards Details", description=[], props={})], - } - return specify_package_resp specify_package_filters = handle_specify_package_function_call(specify_package_chat_completion) From f9444c8901f74b9f1d2924b452157ab47ec4c33f Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 06:58:45 +0000 Subject: [PATCH 38/54] refactor: Remove SimpleRAGChat and related codes, use AdvancedRAGChat for chat handling --- src/fastapi_app/api_routes.py | 28 ++++++++++------------------ src/fastapi_app/rag_advanced.py | 4 ++-- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/src/fastapi_app/api_routes.py b/src/fastapi_app/api_routes.py index 3782f69f..e7e3ec8d 100644 --- a/src/fastapi_app/api_routes.py +++ b/src/fastapi_app/api_routes.py @@ -7,7 +7,6 @@ from fastapi_app.postgres_models import Package from fastapi_app.postgres_searcher import PostgresSearcher from fastapi_app.rag_advanced import AdvancedRAGChat -from fastapi_app.rag_simple import SimpleRAGChat from fastapi_app.utils import update_urls_with_utm router = fastapi.APIRouter() @@ -24,26 +23,19 @@ async def package_handler(url: str): @router.post("/chat") async def chat_handler(chat_request: ChatRequest): + """API to chat with the RAG model.""" messages = [message.model_dump() for message in chat_request.messages] - overrides = chat_request.context.get("overrides", {}) searcher = PostgresSearcher(global_storage.engine) - if overrides.get("use_advanced_flow"): - ragchat = AdvancedRAGChat( - searcher=searcher, - openai_chat_client=global_storage.openai_chat_client, - chat_model=global_storage.openai_chat_model, - chat_deployment=global_storage.openai_chat_deployment, - ) - else: - ragchat = SimpleRAGChat( - searcher=searcher, - openai_chat_client=global_storage.openai_chat_client, - chat_model=global_storage.openai_chat_model, - chat_deployment=global_storage.openai_chat_deployment, - ) - - chat_resp = await ragchat.run(messages, overrides=overrides) + + ragchat = AdvancedRAGChat( + searcher=searcher, + openai_chat_client=global_storage.openai_chat_client, + chat_model=global_storage.openai_chat_model, + chat_deployment=global_storage.openai_chat_deployment, + ) + + chat_resp = await ragchat.run(messages) chat_resp_content = chat_resp["choices"][0]["message"]["content"] # Update URLs with UTM parameters diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 71a48007..4851d002 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -81,7 +81,7 @@ async def google_search(self, messages): return sources_content, thought_steps async def run( - self, messages: list[dict], overrides: dict[str, Any] = {} + self, messages: list[dict] ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: # Normalize the message format for message in messages: @@ -144,7 +144,7 @@ async def run( chat_completion_response = await self.openai_chat_completion( model=self.chat_deployment if self.chat_deployment else self.chat_model, messages=messages, - temperature=overrides.get("temperature", 0.3), + temperature=0, max_tokens=response_token_limit, n=1, stream=False, From 7f1578f2d48381331570f68cc13167c3290ee097 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 07:04:06 +0000 Subject: [PATCH 39/54] Update google_search_function error message --- src/fastapi_app/google_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastapi_app/google_search.py b/src/fastapi_app/google_search.py index fd45f83c..0ab7e4c0 100644 --- a/src/fastapi_app/google_search.py +++ b/src/fastapi_app/google_search.py @@ -30,7 +30,7 @@ def google_search_function(search_query): links.append(link) return links else: - return {"error": "An error occurred"} + return {"error": "Google search failed"} if __name__ == "__main__": From 20f7f3c854b82bb3730dbdba419250595682f9ef Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Wed, 24 Jul 2024 09:30:35 +0000 Subject: [PATCH 40/54] Remove references to staging table in PostgresSearcher and PostgresModels --- src/fastapi_app/postgres_models.py | 4 ++-- src/fastapi_app/postgres_searcher.py | 2 +- src/fastapi_app/seed_hd_data.py | 5 ++--- src/frontend/src/components/Answer/Answer.tsx | 16 ++++++++-------- .../src/components/Answer/AnswerError.tsx | 4 ++-- .../src/components/Answer/AnswerLoading.tsx | 4 ++-- .../SupportingContent/SupportingContentParser.ts | 6 +++--- src/requirements.txt | 2 +- 8 files changed, 21 insertions(+), 22 deletions(-) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index 2e36d20b..b4480a63 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -11,7 +11,7 @@ class Base(DeclarativeBase, MappedAsDataclass): class Package(Base): - __tablename__ = "packages_all_staging" + __tablename__ = "packages_all" package_name: Mapped[str] = mapped_column() package_picture: Mapped[str] = mapped_column() url: Mapped[str] = mapped_column(primary_key=True) @@ -54,7 +54,7 @@ class Package(Base): def to_dict(self): return asdict(self) - + def to_str_for_broad_rag(self): return f""" package_name: {self.package_name} diff --git a/src/fastapi_app/postgres_searcher.py b/src/fastapi_app/postgres_searcher.py index 83da911d..3a77115e 100644 --- a/src/fastapi_app/postgres_searcher.py +++ b/src/fastapi_app/postgres_searcher.py @@ -31,7 +31,7 @@ async def simple_sql_search(self, filters: list[dict]) -> list[Package]: """ filter_clause_where, _ = self.build_filter_clause(filters, use_or=True) sql = f""" - SELECT url FROM packages_all_staging + SELECT url FROM packages_all {filter_clause_where} LIMIT 10 """ diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index 9dc0223d..461da43a 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -41,13 +41,13 @@ def convert_to_str(value): async def seed_data(engine): - logger.info("Checking if the packages_all_staging table exists...") + logger.info("Checking if the packages_all table exists...") async with engine.begin() as conn: result = await conn.execute( text( """ SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all_staging') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all') """ # noqa ) ) @@ -102,7 +102,6 @@ async def seed_data(engine): item_data = {key: value for key, value in record.items() if key in Package.__table__.columns} - for key, value in item_data.items(): if key not in [ "price", diff --git a/src/frontend/src/components/Answer/Answer.tsx b/src/frontend/src/components/Answer/Answer.tsx index 7ab29979..4aaf8223 100644 --- a/src/frontend/src/components/Answer/Answer.tsx +++ b/src/frontend/src/components/Answer/Answer.tsx @@ -37,7 +37,7 @@ export const Answer = ({ return ( - +
@@ -59,14 +59,14 @@ export const Answer = ({ />
-
+ - +
-
+ {!!parsedAnswer.citations.length && ( - + Citations: {parsedAnswer.citations.map((x, i) => { @@ -77,11 +77,11 @@ export const Answer = ({ ); })} - + )} {!!followupQuestions?.length && showFollowupQuestions && onFollowupQuestionClicked && ( - + Follow-up questions: {followupQuestions.map((x, i) => { @@ -92,7 +92,7 @@ export const Answer = ({ ); })} - + )}
); diff --git a/src/frontend/src/components/Answer/AnswerError.tsx b/src/frontend/src/components/Answer/AnswerError.tsx index 7c0c6757..49d3d2dc 100644 --- a/src/frontend/src/components/Answer/AnswerError.tsx +++ b/src/frontend/src/components/Answer/AnswerError.tsx @@ -13,9 +13,9 @@ export const AnswerError = ({ error, onRetry }: Props) => { diff --git a/src/frontend/src/components/Answer/AnswerLoading.tsx b/src/frontend/src/components/Answer/AnswerLoading.tsx index 692d57e9..6df192a6 100644 --- a/src/frontend/src/components/Answer/AnswerLoading.tsx +++ b/src/frontend/src/components/Answer/AnswerLoading.tsx @@ -14,12 +14,12 @@ export const AnswerLoading = () => { - +

Generating answer

-
+
); diff --git a/src/frontend/src/components/SupportingContent/SupportingContentParser.ts b/src/frontend/src/components/SupportingContent/SupportingContentParser.ts index 8fae26ae..2a0cd6ce 100644 --- a/src/frontend/src/components/SupportingContent/SupportingContentParser.ts +++ b/src/frontend/src/components/SupportingContent/SupportingContentParser.ts @@ -5,10 +5,10 @@ type ParsedSupportingContentItem = { content: string; }; -export function parseSupportingContentItem(package: string): ParsedSupportingContentItem { - // Assumes the package starts with the file name followed by : and the content. +export function parseSupportingContentItem(item: string): ParsedSupportingContentItem { + // Assumes the item starts with the file name followed by : and the content. // Example: "sdp_corporate.pdf: this is the content that follows". - const parts = package.split(": "); + const parts = item.split(": "); const title = parts[0]; const content = DOMPurify.sanitize(parts.slice(1).join(": ")); diff --git a/src/requirements.txt b/src/requirements.txt index 0dc4f814..f7942fb4 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -24,7 +24,7 @@ email_validator==2.1.1 environs==11.0.0 fastapi==0.111.0 fastapi-cli==0.0.4 --e git+https://github.com/chatrtham/rag-postgres-openai-python.git@c63d4e04d0043c99fc0eafd55a2116f2f4e36b5a#egg=fastapi_app&subdirectory=src +-e git+https://github.com/chatrtham/rag-postgres-openai-python.git@7f1578f2d48381331570f68cc13167c3290ee097#egg=fastapi_app&subdirectory=src filelock==3.14.0 fixedint==0.1.6 frozenlist==1.4.1 From 078bf669f66447bf167af4f4ea869133348d9e61 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 04:19:50 +0000 Subject: [PATCH 41/54] Remove unnecessary columns from postgres_models --- src/fastapi_app/google_search.py | 2 +- src/fastapi_app/postgres_models.py | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/src/fastapi_app/google_search.py b/src/fastapi_app/google_search.py index 0ab7e4c0..f9097404 100644 --- a/src/fastapi_app/google_search.py +++ b/src/fastapi_app/google_search.py @@ -34,6 +34,6 @@ def google_search_function(search_query): if __name__ == "__main__": - search_query = "ลดขนาดหน้าอก " + search_query = "ลดขนาดหน้าอก" result = google_search_function(search_query) print(result) diff --git a/src/fastapi_app/postgres_models.py b/src/fastapi_app/postgres_models.py index b4480a63..d7b81e3b 100644 --- a/src/fastapi_app/postgres_models.py +++ b/src/fastapi_app/postgres_models.py @@ -23,18 +23,12 @@ class Package(Base): price_to_reserve_for_this_package: Mapped[float] = mapped_column() shop_name: Mapped[str] = mapped_column() category: Mapped[str] = mapped_column() - category_tags: Mapped[str] = mapped_column() - preview_1_10: Mapped[str] = mapped_column() - selling_point: Mapped[str] = mapped_column() - meta_keywords: Mapped[str] = mapped_column() brand: Mapped[str] = mapped_column() min_max_age: Mapped[str] = mapped_column() locations: Mapped[str] = mapped_column() - meta_description: Mapped[str] = mapped_column() price_details: Mapped[str] = mapped_column() package_details: Mapped[str] = mapped_column() important_info: Mapped[str] = mapped_column() - payment_booking_info: Mapped[str] = mapped_column() general_info: Mapped[str] = mapped_column() early_signs_for_diagnosis: Mapped[str] = mapped_column() how_to_diagnose: Mapped[str] = mapped_column() @@ -49,7 +43,6 @@ class Package(Base): recovery: Mapped[str] = mapped_column() side_effects: Mapped[str] = mapped_column() review_4_5_stars: Mapped[str] = mapped_column() - brand_option_in_thai_name: Mapped[str] = mapped_column() faq: Mapped[str] = mapped_column() def to_dict(self): @@ -74,18 +67,12 @@ def to_str_for_narrow_rag(self): price_after_cash_discount: {self.price_after_cash_discount} installment_limit: {self.installment_limit} price_to_reserve_for_this_package: {self.price_to_reserve_for_this_package} - shop_name: {self.shop_name} - category_tags: {self.category_tags} - preview_1_10: {self.preview_1_10} - selling_point: {self.selling_point} brand: {self.brand} min_max_age: {self.min_max_age} locations: {self.locations} - meta_description: {self.meta_description} price_details: {self.price_details} package_details: {self.package_details} important_info: {self.important_info} - payment_booking_info: {self.payment_booking_info} general_info: {self.general_info} early_signs_for_diagnosis: {self.early_signs_for_diagnosis} how_to_diagnose: {self.how_to_diagnose} @@ -100,6 +87,5 @@ def to_str_for_narrow_rag(self): recovery: {self.recovery} side_effects: {self.side_effects} review_4_5_stars: {self.review_4_5_stars} - brand_option_in_thai_name: {self.brand_option_in_thai_name} faq: {self.faq} """ From 0daa773e5d603383afbb780e11406426c88ed1b2 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 04:44:49 +0000 Subject: [PATCH 42/54] Remove SimpleRAGChat and related codes, use AdvancedRAGChat for chat handling --- src/fastapi_app/rag_advanced.py | 4 +- src/fastapi_app/rag_simple.py | 97 --------------------------------- 2 files changed, 2 insertions(+), 99 deletions(-) delete mode 100644 src/fastapi_app/rag_simple.py diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 4851d002..581a6ee0 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -129,9 +129,9 @@ async def run( ), ] else: - # No results found with SQL search, fall back to the hybrid search + # No results found with SQL search, fall back to the google search sources_content, thought_steps = await self.google_search(messages) - else: # Hybrid search + else: # Google search sources_content, thought_steps = await self.google_search(messages) content = "\n".join(sources_content) diff --git a/src/fastapi_app/rag_simple.py b/src/fastapi_app/rag_simple.py deleted file mode 100644 index 04e4637d..00000000 --- a/src/fastapi_app/rag_simple.py +++ /dev/null @@ -1,97 +0,0 @@ -import pathlib -from collections.abc import AsyncGenerator -from typing import ( - Any, -) - -from openai import AsyncOpenAI -from openai_messages_token_helper import build_messages, get_token_limit - -from .api_models import ThoughtStep -from .postgres_searcher import PostgresSearcher - - -class SimpleRAGChat: - def __init__( - self, - *, - searcher: PostgresSearcher, - openai_chat_client: AsyncOpenAI, - chat_model: str, - chat_deployment: str | None, # Not needed for non-Azure OpenAI - ): - self.searcher = searcher - self.openai_chat_client = openai_chat_client - self.chat_model = chat_model - self.chat_deployment = chat_deployment - self.chat_token_limit = get_token_limit(chat_model, default_to_minimum=True) - current_dir = pathlib.Path(__file__).parent - self.answer_prompt_template = open(current_dir / "prompts/answer.txt").read() - - async def run( - self, messages: list[dict], overrides: dict[str, Any] = {} - ) -> dict[str, Any] | AsyncGenerator[dict[str, Any], None]: - text_search = overrides.get("retrieval_mode") in ["text", "hybrid", None] - vector_search = overrides.get("retrieval_mode") in ["vectors", "hybrid", None] - top = overrides.get("top", 3) - - original_user_query = messages[-1]["content"] - past_messages = messages[:-1] - - # Retrieve relevant items from the database - results = await self.searcher.search_and_embed( - original_user_query, top=top, enable_vector_search=vector_search, enable_text_search=text_search - ) - - sources_content = [f"[{(package.id)}]:{package.to_str_for_rag()}\n\n" for package in results] - content = "\n".join(sources_content) - - # Generate a contextual and content specific answer using the search results and chat history - response_token_limit = 1024 - messages = build_messages( - model=self.chat_model, - system_prompt=overrides.get("prompt_template") or self.answer_prompt_template, - new_user_content=original_user_query + "\n\nSources:\n" + content, - past_messages=past_messages, - max_tokens=self.chat_token_limit - response_token_limit, - fallback_to_default=True, - ) - - chat_completion_response = await self.openai_chat_client.chat.completions.create( - # Azure OpenAI takes the deployment name as the model name - model=self.chat_deployment if self.chat_deployment else self.chat_model, - messages=messages, - temperature=overrides.get("temperature", 0.3), - max_tokens=response_token_limit, - n=1, - stream=False, - ) - chat_resp = chat_completion_response.model_dump() - chat_resp["choices"][0]["context"] = { - "data_points": {"text": sources_content}, - "thoughts": [ - ThoughtStep( - title="Search query for database", - description=original_user_query if text_search else None, - props={ - "top": top, - "vector_search": vector_search, - "text_search": text_search, - }, - ), - ThoughtStep( - title="Search results", - description=[result.to_dict() for result in results], - ), - ThoughtStep( - title="Prompt to generate answer", - description=[str(message) for message in messages], - props=( - {"model": self.chat_model, "deployment": self.chat_deployment} - if self.chat_deployment - else {"model": self.chat_model} - ), - ), - ], - } - return chat_resp From 092af0c440fd6a3b353e0541b05d0cae69d23dff Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 04:46:27 +0000 Subject: [PATCH 43/54] Fix seed_hd_data.py --- src/fastapi_app/seed_hd_data.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/fastapi_app/seed_hd_data.py b/src/fastapi_app/seed_hd_data.py index 461da43a..b723372b 100644 --- a/src/fastapi_app/seed_hd_data.py +++ b/src/fastapi_app/seed_hd_data.py @@ -40,14 +40,14 @@ def convert_to_str(value): return str(value) -async def seed_data(engine): - logger.info("Checking if the packages_all table exists...") +async def seed_data(engine, table_name): + logger.info(f"Checking if the {table_name} table exists...") async with engine.begin() as conn: result = await conn.execute( text( - """ + f""" SELECT EXISTS - (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'packages_all') + (SELECT 1 FROM information_schema.tables WHERE table_schema = 'public' AND table_name = '{table_name}') """ # noqa ) ) @@ -93,8 +93,6 @@ async def seed_data(engine): record["price_to_reserve_for_this_package"] = convert_to_float( record["price_to_reserve_for_this_package"] ) - if "brand_ranking_position" in record: - record["brand_ranking_position"] = convert_to_int(record["brand_ranking_position"]) package = await session.execute(select(Package).filter(Package.url == record["url"])) if package.scalars().first(): @@ -140,7 +138,9 @@ async def main(): else: engine = await create_postgres_engine_from_args(args) - await seed_data(engine) + table_name = input("Insert table_name: ") # e.g. packages_all, packages_all_staging + + await seed_data(engine, table_name) await engine.dispose() From 761618948c20ecd770bbda26e093656b5a1372b3 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 07:31:59 +0000 Subject: [PATCH 44/54] Change file name for tools --- src/fastapi_app/{query_rewriter.py => llm_tools.py} | 0 src/fastapi_app/rag_advanced.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/fastapi_app/{query_rewriter.py => llm_tools.py} (100%) diff --git a/src/fastapi_app/query_rewriter.py b/src/fastapi_app/llm_tools.py similarity index 100% rename from src/fastapi_app/query_rewriter.py rename to src/fastapi_app/llm_tools.py diff --git a/src/fastapi_app/rag_advanced.py b/src/fastapi_app/rag_advanced.py index 581a6ee0..181634cd 100644 --- a/src/fastapi_app/rag_advanced.py +++ b/src/fastapi_app/rag_advanced.py @@ -10,8 +10,7 @@ from tenacity import before_sleep_log, retry, stop_after_attempt, wait_random_exponential from .api_models import ThoughtStep -from .postgres_searcher import PostgresSearcher -from .query_rewriter import ( +from .llm_tools import ( build_google_search_function, build_handover_to_cx_function, build_specify_package_function, @@ -19,6 +18,7 @@ handle_specify_package_function_call, is_handover_to_cx, ) +from .postgres_searcher import PostgresSearcher # Configure logging logging.basicConfig(level=logging.INFO) From 10265d5a8c9b63623e2e954cda06114c69e60b3d Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 07:39:55 +0000 Subject: [PATCH 45/54] Add a pormpt to specify_package tool's parameter to ignore UTM in search query --- src/fastapi_app/llm_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fastapi_app/llm_tools.py b/src/fastapi_app/llm_tools.py index 89db2e8a..470ed31a 100644 --- a/src/fastapi_app/llm_tools.py +++ b/src/fastapi_app/llm_tools.py @@ -63,6 +63,7 @@ def build_specify_package_function() -> list[ChatCompletionToolParam]: "description": """ The exact URL of the package from past messages, e.g. 'https://hdmall.co.th/dental-clinics/xray-for-orthodontics-1-csdc' + If it includes any UTM parameters, please remove them. """ }, "package_name": { From 93d0e24e0219ac9e667be7f3560f5eff84bf5d7b Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Thu, 25 Jul 2024 10:31:15 +0000 Subject: [PATCH 46/54] Change some prompts for specifying package --- src/fastapi_app/prompts/specify_package.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fastapi_app/prompts/specify_package.txt b/src/fastapi_app/prompts/specify_package.txt index 82eb76b5..5f85772e 100644 --- a/src/fastapi_app/prompts/specify_package.txt +++ b/src/fastapi_app/prompts/specify_package.txt @@ -1,3 +1,3 @@ -If the user's message shows a strong intent to buy a particular package or service, only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information, or mentions coupon, booking, cancellation, scheduling, or rescheduling, or other post-purchase intents, respond by calling the `handover_to_cx` function. +If the user's message shows a strong intent to buy a particular product or mentions coupon, booking, cancellation, scheduling, or rescheduling, or other post-purchase intents, respond by calling the `handover_to_cx` function. -Otherwise, specify the exact URL or package name from past messages by calling the `specify_package` function only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message does not clearly match a previously mentioned package or is too broad, ask the user to provide more details or check previous messages for the exact package information. Package names always contain hospital name or clinic name in it. +Otherwise, specify the exact URL or package name from past messages by calling the `specify_package` function only if the user's message directly references a known package. Do not attempt to identify packages based on general inquiries or price-related requests. If the user's message is too broad, ask the user to provide more details or check previous messages for the exact package information. Package names always contain hospital name or clinic name in it. \ No newline at end of file From 20d8fe30d4373e9290dbd18c012f6610393fd5e7 Mon Sep 17 00:00:00 2001 From: Chatrtham Chatramornrat Date: Fri, 26 Jul 2024 05:00:41 +0000 Subject: [PATCH 47/54] Remove static files from .gitignore --- .gitignore | 1 - src/static/assets/NoPage-0376421b.js | 2 + src/static/assets/NoPage-0376421b.js.map | 1 + src/static/assets/fluentui-icons-c58886a5.js | 2 + .../assets/fluentui-icons-c58886a5.js.map | 1 + src/static/assets/fluentui-react-ad752538.js | 6 + .../assets/fluentui-react-ad752538.js.map | 1 + src/static/assets/index-33bfd065.js | 2 + src/static/assets/index-33bfd065.js.map | 1 + src/static/assets/index-f140180c.css | 1 + src/static/assets/vendor-9c5496e3.js | 166 ++++++++++++++++++ src/static/assets/vendor-9c5496e3.js.map | 1 + src/static/favicon.ico | Bin 0 -> 4286 bytes src/static/index.html | 18 ++ 14 files changed, 202 insertions(+), 1 deletion(-) create mode 100644 src/static/assets/NoPage-0376421b.js create mode 100644 src/static/assets/NoPage-0376421b.js.map create mode 100644 src/static/assets/fluentui-icons-c58886a5.js create mode 100644 src/static/assets/fluentui-icons-c58886a5.js.map create mode 100644 src/static/assets/fluentui-react-ad752538.js create mode 100644 src/static/assets/fluentui-react-ad752538.js.map create mode 100644 src/static/assets/index-33bfd065.js create mode 100644 src/static/assets/index-33bfd065.js.map create mode 100644 src/static/assets/index-f140180c.css create mode 100644 src/static/assets/vendor-9c5496e3.js create mode 100644 src/static/assets/vendor-9c5496e3.js.map create mode 100644 src/static/favicon.ico create mode 100644 src/static/index.html diff --git a/.gitignore b/.gitignore index 20dda899..8092f448 100644 --- a/.gitignore +++ b/.gitignore @@ -144,5 +144,4 @@ cython_debug/ # NPM npm-debug.log* node_modules -static/ diff --git a/src/static/assets/NoPage-0376421b.js b/src/static/assets/NoPage-0376421b.js new file mode 100644 index 00000000..14516a78 --- /dev/null +++ b/src/static/assets/NoPage-0376421b.js @@ -0,0 +1,2 @@ +import{bp as o}from"./vendor-9c5496e3.js";function e(){return o.jsx("h1",{children:"404"})}e.displayName="NoPage";export{e as Component}; +//# sourceMappingURL=NoPage-0376421b.js.map diff --git a/src/static/assets/NoPage-0376421b.js.map b/src/static/assets/NoPage-0376421b.js.map new file mode 100644 index 00000000..0b6a6683 --- /dev/null +++ b/src/static/assets/NoPage-0376421b.js.map @@ -0,0 +1 @@ +{"version":3,"file":"NoPage-0376421b.js","sources":["../../frontend/src/pages/NoPage.tsx"],"sourcesContent":["export function Component(): JSX.Element {\n return

404

;\n}\n\nComponent.displayName = \"NoPage\";\n"],"names":["Component","jsx"],"mappings":"0CAAO,SAASA,GAAyB,CAC9B,OAAAC,EAAA,IAAC,MAAG,SAAG,KAAA,CAAA,CAClB,CAEAD,EAAU,YAAc"} \ No newline at end of file diff --git a/src/static/assets/fluentui-icons-c58886a5.js b/src/static/assets/fluentui-icons-c58886a5.js new file mode 100644 index 00000000..9c4fc349 --- /dev/null +++ b/src/static/assets/fluentui-icons-c58886a5.js @@ -0,0 +1,2 @@ +import{r as e,_ as u,m as g}from"./vendor-9c5496e3.js";const m=e.createContext(void 0),v={};m.Provider;const Z=()=>e.useContext(m)?e.useContext(m):v,p=u({root:{mc9l5x:"f1w7gpdv",Bg96gwp:"fez10in",ycbfsm:"fg4l7m0"},rtl:{Bz10aip:"f13rod7r"}},{d:[".f1w7gpdv{display:inline;}",".fez10in{line-height:0;}",".f13rod7r{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1);}"],t:["@media (forced-colors: active){.fg4l7m0{forced-color-adjust:auto;}}"]}),x=(i,a)=>{const{title:o,primaryFill:r="currentColor",...n}=i,l={...n,title:void 0,fill:r},s=p(),c=Z();return l.className=g(s.root,a?.flipInRtl&&c?.textDirection==="rtl"&&s.rtl,l.className),o&&(l["aria-label"]=o),!l["aria-label"]&&!l["aria-labelledby"]?l["aria-hidden"]=!0:l.role="img",l},t=(i,a,o,r)=>{const n=a==="1em"?"20":a,l=e.forwardRef((s,c)=>{const d={...x(s,{flipInRtl:r?.flipInRtl}),ref:c,width:a,height:a,viewBox:`0 0 ${n} ${n}`,xmlns:"http://www.w3.org/2000/svg"};return e.createElement("svg",d,...o.map(f=>e.createElement("path",{d:f,fill:d.fill})))});return l.displayName=i,l},C=t("SparkleFilled","1em",["M7.4 12.8a1.04 1.04 0 0 0 1.59-.51l.45-1.37a2.34 2.34 0 0 1 1.47-1.48l1.4-.45A1.04 1.04 0 0 0 12.25 7l-1.37-.45A2.34 2.34 0 0 1 9.4 5.08L8.95 3.7a1.03 1.03 0 0 0-.82-.68 1.04 1.04 0 0 0-1.15.7l-.46 1.4a2.34 2.34 0 0 1-1.44 1.45L3.7 7a1.04 1.04 0 0 0 .02 1.97l1.37.45a2.33 2.33 0 0 1 1.48 1.48l.46 1.4c.07.2.2.37.38.5Zm6.14 4.05a.8.8 0 0 0 1.22-.4l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.52l-.77-.25a1.08 1.08 0 0 1-.68-.68l-.25-.77a.8.8 0 0 0-1.52.01l-.24.76a1.1 1.1 0 0 1-.67.68l-.77.25a.8.8 0 0 0 0 1.52l.77.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Z"]),S=t("Delete24Regular","24",["M10 5h4a2 2 0 1 0-4 0ZM8.5 5a3.5 3.5 0 1 1 7 0h5.75a.75.75 0 0 1 0 1.5h-1.32l-1.17 12.11A3.75 3.75 0 0 1 15.03 22H8.97a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5H8.5Zm2 4.75a.75.75 0 0 0-1.5 0v7.5a.75.75 0 0 0 1.5 0v-7.5ZM14.25 9c.41 0 .75.34.75.75v7.5a.75.75 0 0 1-1.5 0v-7.5c0-.41.34-.75.75-.75Zm-7.52 9.47a2.25 2.25 0 0 0 2.24 2.03h6.06c1.15 0 2.12-.88 2.24-2.03L18.42 6.5H5.58l1.15 11.97Z"]),I=t("ErrorCircle24Regular","24",["M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.67a8.34 8.34 0 0 0 0 16.66 8.34 8.34 0 0 0 0-16.66Zm0 10.83a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM12 7c.37 0 .69.28.74.65v4.6a.75.75 0 0 1-1.48.1l-.01-.1v-4.5c0-.41.33-.75.74-.75Z"]),M=t("Send28Filled","28",["M3.79 2.62a1.25 1.25 0 0 0-1.75 1.46l2.02 7.53a1 1 0 0 0 .82.73l9.89 1.41c.28.04.28.46 0 .5l-9.88 1.4a1 1 0 0 0-.83.74l-2.02 7.54a1.25 1.25 0 0 0 1.75 1.45l21.5-10.25c.95-.45.95-1.8 0-2.26L3.79 2.62Z"],{flipInRtl:!0}),h=t("Settings24Regular","24",["M12.01 2.25c.74 0 1.47.1 2.18.25.32.07.55.33.59.65l.17 1.53a1.38 1.38 0 0 0 1.92 1.11l1.4-.61c.3-.13.64-.06.85.17a9.8 9.8 0 0 1 2.2 3.8c.1.3 0 .63-.26.82l-1.25.92a1.38 1.38 0 0 0 0 2.22l1.25.92c.26.19.36.52.27.82a9.8 9.8 0 0 1-2.2 3.8.75.75 0 0 1-.85.17l-1.4-.62a1.38 1.38 0 0 0-1.93 1.12l-.17 1.52a.75.75 0 0 1-.58.65 9.52 9.52 0 0 1-4.4 0 .75.75 0 0 1-.57-.65l-.17-1.52a1.38 1.38 0 0 0-1.93-1.11l-1.4.62a.75.75 0 0 1-.85-.18 9.8 9.8 0 0 1-2.2-3.8c-.1-.3 0-.63.26-.82l1.25-.92a1.38 1.38 0 0 0 0-2.22l-1.24-.92a.75.75 0 0 1-.28-.82 9.8 9.8 0 0 1 2.2-3.8c.23-.23.57-.3.86-.17l1.4.62c.4.17.86.15 1.25-.08.38-.22.63-.6.68-1.04l.17-1.53a.75.75 0 0 1 .58-.65c.72-.16 1.45-.24 2.2-.25Zm0 1.5c-.45 0-.9.04-1.35.12l-.11.97a2.89 2.89 0 0 1-4.03 2.33l-.9-.4A8.3 8.3 0 0 0 4.29 9.1l.8.59a2.88 2.88 0 0 1 0 4.64l-.8.59a8.3 8.3 0 0 0 1.35 2.32l.9-.4a2.88 2.88 0 0 1 4.02 2.32l.1.99c.9.15 1.8.15 2.7 0l.1-.99a2.88 2.88 0 0 1 4.02-2.32l.9.4a8.3 8.3 0 0 0 1.35-2.32l-.8-.59a2.88 2.88 0 0 1 0-4.64l.8-.59a8.3 8.3 0 0 0-1.35-2.32l-.9.4a2.88 2.88 0 0 1-4.02-2.32l-.1-.98c-.45-.08-.9-.11-1.34-.12ZM12 8.25a3.75 3.75 0 1 1 0 7.5 3.75 3.75 0 0 1 0-7.5Zm0 1.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z"]),w=t("Sparkle28Filled","28",["M10.06 18.7a1.63 1.63 0 0 0 2.43-.67l.77-2.34a3.82 3.82 0 0 1 2.42-2.42l2.23-.73a1.61 1.61 0 0 0 1.07-1.3 1.62 1.62 0 0 0-1.13-1.78l-2.21-.72a3.82 3.82 0 0 1-2.42-2.42l-.73-2.23a1.62 1.62 0 0 0-3.07.01l-.74 2.27a3.82 3.82 0 0 1-2.36 2.36l-2.24.73a1.63 1.63 0 0 0 .02 3.07l2.22.72a3.86 3.86 0 0 1 2.42 2.43l.73 2.23c.1.32.32.6.6.8Zm9.74 6.08a1.2 1.2 0 0 0 1.84-.6l.37-1.14a1.6 1.6 0 0 1 1.02-1.02l1.16-.38a1.21 1.21 0 0 0 .59-1.83 1.23 1.23 0 0 0-.62-.45L23 18.99A1.6 1.6 0 0 1 22 17.97l-.38-1.16a1.2 1.2 0 0 0-2.27.01l-.38 1.15a1.6 1.6 0 0 1-.99 1.02l-1.17.38a1.21 1.21 0 0 0-.58 1.83c.15.2.36.36.6.44l1.14.37A1.6 1.6 0 0 1 19 23.04l.37 1.16c.09.24.24.44.44.58Z"]);export{S as D,I as E,w as S,M as a,h as b,C as c}; +//# sourceMappingURL=fluentui-icons-c58886a5.js.map diff --git a/src/static/assets/fluentui-icons-c58886a5.js.map b/src/static/assets/fluentui-icons-c58886a5.js.map new file mode 100644 index 00000000..13368ad5 --- /dev/null +++ b/src/static/assets/fluentui-icons-c58886a5.js.map @@ -0,0 +1 @@ +{"version":3,"file":"fluentui-icons-c58886a5.js","sources":["../../frontend/node_modules/@fluentui/react-icons/lib/contexts/IconDirectionContext.js","../../frontend/node_modules/@fluentui/react-icons/lib/utils/useIconState.js","../../frontend/node_modules/@fluentui/react-icons/lib/utils/createFluentIcon.js","../../frontend/node_modules/@fluentui/react-icons/lib/icons/chunk-3.js","../../frontend/node_modules/@fluentui/react-icons/lib/sizedIcons/chunk-4.js","../../frontend/node_modules/@fluentui/react-icons/lib/sizedIcons/chunk-5.js","../../frontend/node_modules/@fluentui/react-icons/lib/sizedIcons/chunk-10.js","../../frontend/node_modules/@fluentui/react-icons/lib/sizedIcons/chunk-11.js"],"sourcesContent":["import * as React from 'react';\nconst IconDirectionContext = React.createContext(undefined);\nconst IconDirectionContextDefaultValue = {};\nexport const IconDirectionContextProvider = IconDirectionContext.Provider;\nexport const useIconContext = () => React.useContext(IconDirectionContext) ? React.useContext(IconDirectionContext) : IconDirectionContextDefaultValue;","import { useIconContext } from \"../contexts\";\nimport { __styles, mergeClasses } from \"@griffel/react\";\nconst useRootStyles = __styles({\n \"root\": {\n \"mc9l5x\": \"f1w7gpdv\",\n \"Bg96gwp\": \"fez10in\",\n \"ycbfsm\": \"fg4l7m0\"\n },\n \"rtl\": {\n \"Bz10aip\": \"f13rod7r\"\n }\n}, {\n \"d\": [\".f1w7gpdv{display:inline;}\", \".fez10in{line-height:0;}\", \".f13rod7r{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1);}\"],\n \"t\": [\"@media (forced-colors: active){.fg4l7m0{forced-color-adjust:auto;}}\"]\n});\nexport const useIconState = (props, options) => {\n const {\n title,\n primaryFill = \"currentColor\",\n ...rest\n } = props;\n const state = {\n ...rest,\n title: undefined,\n fill: primaryFill\n };\n const styles = useRootStyles();\n const iconContext = useIconContext();\n state.className = mergeClasses(styles.root, (options === null || options === void 0 ? void 0 : options.flipInRtl) && (iconContext === null || iconContext === void 0 ? void 0 : iconContext.textDirection) === 'rtl' && styles.rtl, state.className);\n if (title) {\n state['aria-label'] = title;\n }\n if (!state['aria-label'] && !state['aria-labelledby']) {\n state['aria-hidden'] = true;\n } else {\n state['role'] = 'img';\n }\n return state;\n};","import * as React from \"react\";\nimport { useIconState } from \"./useIconState\";\nexport const createFluentIcon = (displayName, width, paths, options) => {\n const viewBoxWidth = width === \"1em\" ? \"20\" : width;\n const Icon = React.forwardRef((props, ref) => {\n const state = {\n ...useIconState(props, {\n flipInRtl: options === null || options === void 0 ? void 0 : options.flipInRtl\n }),\n ref,\n width,\n height: width,\n viewBox: `0 0 ${viewBoxWidth} ${viewBoxWidth}`,\n xmlns: \"http://www.w3.org/2000/svg/"\n };\n return React.createElement(\"svg\", state, ...paths.map(d => React.createElement(\"path\", {\n d,\n fill: state.fill\n })));\n });\n Icon.displayName = displayName;\n return Icon;\n};","import { createFluentIcon } from \"../utils/createFluentIcon\";\nexport const PersonSquareRegular = /*#__PURE__*/createFluentIcon('PersonSquareRegular', \"1em\", [\"M10 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm2.5 5h-5c-.83 0-1.5.67-1.5 1.5 0 1.12.46 2.01 1.21 2.61.74.6 1.74.89 2.79.89s2.05-.29 2.79-.89c.75-.6 1.21-1.5 1.21-2.61 0-.83-.67-1.5-1.5-1.5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const PersonStarFilled = /*#__PURE__*/createFluentIcon('PersonStarFilled', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-5 9a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.41 0 .82-.02 1.21-.06a5.48 5.48 0 0 1 .05-6.94H4Zm15 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H12c-.48 0-.69.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const PersonStarRegular = /*#__PURE__*/createFluentIcon('PersonStarRegular', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8ZM6 6a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-2 5a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.41 0 .82-.02 1.21-.06A5.5 5.5 0 0 1 9.6 17 12 12 0 0 1 9 17a8.16 8.16 0 0 1-4.33-1.05A3.36 3.36 0 0 1 3 13a1 1 0 0 1 1-1h5.6c.18-.36.4-.7.66-1H4Zm15 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H12c-.48 0-.69.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const PersonStarburstFilled = /*#__PURE__*/createFluentIcon('PersonStarburstFilled', \"1em\", [\"M8.96 2.67c.4-.9 1.68-.9 2.08 0 .3.66 1.13.89 1.72.46.8-.57 1.9.07 1.8 1.05-.06.72.54 1.32 1.26 1.25.98-.1 1.62 1.01 1.05 1.81-.43.59-.2 1.42.46 1.72.9.4.9 1.68 0 2.08-.66.3-.89 1.13-.46 1.72.57.8-.07 1.9-1.05 1.8a1.15 1.15 0 0 0-1.25 1.26c.1.98-1.01 1.62-1.81 1.05a1.15 1.15 0 0 0-1.72.46c-.4.9-1.68.9-2.08 0a1.15 1.15 0 0 0-1.72-.46c-.8.57-1.9-.07-1.8-1.05a1.15 1.15 0 0 0-1.26-1.25c-.98.1-1.62-1.01-1.05-1.81.43-.59.2-1.42-.46-1.72-.9-.4-.9-1.68 0-2.08.66-.3.89-1.13.46-1.72-.57-.8.07-1.9 1.05-1.8.72.06 1.32-.54 1.25-1.26-.1-.98 1.01-1.62 1.81-1.05.59.43 1.42.2 1.72-.46ZM10 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm2.5 5h-5c-.83 0-1.5.67-1.5 1.5 0 1.11.45 2 1.2 2.61.75.6 1.74.89 2.8.89 1.05 0 2.04-.3 2.78-.89.76-.6 1.22-1.5 1.22-2.61 0-.83-.68-1.5-1.5-1.5Z\"]);\nexport const PersonStarburstRegular = /*#__PURE__*/createFluentIcon('PersonStarburstRegular', \"1em\", [\"M8 7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-.5 3h5c.82 0 1.5.67 1.5 1.5 0 1.11-.46 2-1.22 2.61-.74.6-1.73.89-2.78.89a4.43 4.43 0 0 1-2.8-.89A3.25 3.25 0 0 1 6 11.5c0-.83.67-1.5 1.5-1.5Zm3.94-7.07a1.57 1.57 0 0 0-2.88 0 .57.57 0 0 1-.85.23 1.57 1.57 0 0 0-2.49 1.43.57.57 0 0 1-.63.63 1.57 1.57 0 0 0-1.43 2.49c.2.3.1.7-.23.85a1.57 1.57 0 0 0 0 2.88c.33.14.44.56.23.85a1.57 1.57 0 0 0 1.43 2.49c.36-.04.67.27.63.63a1.57 1.57 0 0 0 2.49 1.43c.3-.2.7-.1.85.23a1.57 1.57 0 0 0 2.88 0 .57.57 0 0 1 .85-.23c1.1.8 2.62-.08 2.49-1.43a.57.57 0 0 1 .63-.63 1.57 1.57 0 0 0 1.43-2.49.57.57 0 0 1 .23-.85 1.57 1.57 0 0 0 0-2.88.57.57 0 0 1-.23-.85 1.57 1.57 0 0 0-1.43-2.49.57.57 0 0 1-.63-.63 1.57 1.57 0 0 0-2.49-1.43c-.3.2-.7.1-.85-.23Zm-1.96.4a.57.57 0 0 1 1.04 0c.41.91 1.55 1.22 2.36.64.4-.29.95.03.9.52-.1 1 .74 1.82 1.73 1.73.49-.05.81.5.52.9-.58.81-.27 1.95.63 2.36.45.2.45.84 0 1.04a1.57 1.57 0 0 0-.63 2.36c.29.4-.03.95-.52.9-1-.1-1.82.74-1.73 1.73.05.49-.5.81-.9.52a1.57 1.57 0 0 0-2.36.63.57.57 0 0 1-1.04 0 1.57 1.57 0 0 0-2.36-.63.57.57 0 0 1-.9-.52c.1-1-.74-1.82-1.73-1.73a.57.57 0 0 1-.52-.9c.58-.81.27-1.95-.63-2.36a.57.57 0 0 1 0-1.04c.9-.41 1.2-1.55.63-2.36a.57.57 0 0 1 .52-.9c1 .1 1.82-.74 1.73-1.73-.05-.49.5-.81.9-.52.81.58 1.95.27 2.36-.63Z\"]);\nexport const PersonSubtractFilled = /*#__PURE__*/createFluentIcon('PersonSubtractFilled', \"1em\", [\"M10 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-5 9a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8a9.14 9.14 0 0 0 5.13 1.2 5.48 5.48 0 0 1 0-7H5Zm14 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-7 0c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const PersonSubtractRegular = /*#__PURE__*/createFluentIcon('PersonSubtractRegular', \"1em\", [\"M10 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8ZM7 6a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-2 5a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8a9.14 9.14 0 0 0 5.13 1.2 5.5 5.5 0 0 1-.66-1 7.87 7.87 0 0 1-3.93-1.05A3.36 3.36 0 0 1 4 13a1 1 0 0 1 1-1h4.6c.18-.36.4-.7.66-1H5Zm14 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-7 0c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const PersonSupportFilled = /*#__PURE__*/createFluentIcon('PersonSupportFilled', \"1em\", [\"M10 14.5a2 2 0 0 1-2-1.84 6 6 0 1 1 7.98-6.16c.02.28-.2.5-.48.5a.54.54 0 0 1-.52-.5 5 5 0 1 0-6.8 5.16A2 2 0 1 1 10 14.5ZM5 12h.1a7.01 7.01 0 0 0 2.03 1.39A3 3 0 0 0 12.96 12H15a2 2 0 0 1 2 2c0 1.7-.83 2.97-2.13 3.8A9.14 9.14 0 0 1 10 19a9.14 9.14 0 0 1-4.87-1.2A4.35 4.35 0 0 1 3 14a2 2 0 0 1 2-2Zm9-5a4 4 0 0 1-1.87 3.39 3 3 0 0 0-4.26 0A4.01 4.01 0 0 1 6 7a4 4 0 1 1 8 0Z\"]);\nexport const PersonSupportRegular = /*#__PURE__*/createFluentIcon('PersonSupportRegular', \"1em\", [\"M10 14.5a2 2 0 0 1-2-1.84 6 6 0 1 1 7.98-6.16c.02.28-.2.5-.48.5a.54.54 0 0 1-.52-.5 5 5 0 1 0-6.8 5.16A2 2 0 1 1 10 14.5ZM5 12h.1c.39.38.82.72 1.3 1H5a1 1 0 0 0-1 1c0 1.3.62 2.28 1.67 2.95A8.16 8.16 0 0 0 10 18c1.74 0 3.26-.36 4.33-1.05A3.36 3.36 0 0 0 16 14a1 1 0 0 0-1-1h-2.04a3.02 3.02 0 0 0 0-1H15a2 2 0 0 1 2 2c0 1.7-.83 2.97-2.13 3.8A9.14 9.14 0 0 1 10 19a9.14 9.14 0 0 1-4.87-1.2A4.35 4.35 0 0 1 3 14a2 2 0 0 1 2-2Zm9-5a4 4 0 0 1-1.87 3.39 3 3 0 0 0-.93-.64 3 3 0 1 0-2.4 0 3 3 0 0 0-.93.64A4.01 4.01 0 0 1 6 7a4 4 0 1 1 8 0Z\"]);\nexport const PersonSwapFilled = /*#__PURE__*/createFluentIcon('PersonSwapFilled', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-5 9a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.29 0 .57 0 .85-.03l-1.41-1.4a1.5 1.5 0 0 1 0-2.13l2-2A1.5 1.5 0 0 1 12.9 14h1.18a1.5 1.5 0 0 1 1.65-1.98A2 2 0 0 0 14 11H4Zm7.85 6.85a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7L10.71 15h5.58l-1.14-1.15a.5.5 0 0 1 .7-.7l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L16.29 16h-5.58l1.14 1.15c.2.2.2.5 0 .7Z\"]);\nexport const PersonSwapRegular = /*#__PURE__*/createFluentIcon('PersonSwapRegular', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8ZM6 6a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-2 5a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.29 0 .57 0 .85-.03L8.88 17a8.07 8.07 0 0 1-4.2-1.05A3.36 3.36 0 0 1 3 13a1 1 0 0 1 1-1h10a1 1 0 0 1 .67.25c.32-.21.7-.3 1.07-.23A2 2 0 0 0 14 11H4Zm7.85 6.85a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7L10.71 15h5.58l-1.14-1.15a.5.5 0 0 1 .7-.7l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L16.29 16h-5.58l1.14 1.15c.2.2.2.5 0 .7Z\"]);\nexport const PersonSyncFilled = /*#__PURE__*/createFluentIcon('PersonSyncFilled', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-5 9a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.41 0 .82-.02 1.21-.06a5.48 5.48 0 0 1 .05-6.94H4Zm6 3.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const PersonSyncRegular = /*#__PURE__*/createFluentIcon('PersonSyncRegular', \"1em\", [\"M9 2a4 4 0 1 0 0 8 4 4 0 0 0 0-8ZM6 6a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-2 5a2 2 0 0 0-2 2c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.41 0 .82-.02 1.21-.06A5.5 5.5 0 0 1 9.6 17 12 12 0 0 1 9 17a8.16 8.16 0 0 1-4.33-1.05A3.36 3.36 0 0 1 3 13a1 1 0 0 1 1-1h5.6c.18-.36.4-.7.66-1H4Zm6 3.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const PersonTagFilled = /*#__PURE__*/createFluentIcon('PersonTagFilled', \"1em\", [\"M5 6a4 4 0 1 1 6.65 3h-.14c-.8 0-1.52.38-1.98.96A4 4 0 0 1 5 6Zm4.05 5H4.01A2 2 0 0 0 2 13c0 1.7.83 2.97 2.13 3.8A9.14 9.14 0 0 0 9 18c.8 0 1.58-.07 2.31-.22l-1.6-1.63A2.52 2.52 0 0 1 9 14.4v-2.87c0-.18.02-.35.05-.52Zm.95 3.4c0 .39.15.77.43 1.05l3.04 3.1c.58.59 1.52.6 2.12.03l2.95-2.84c.6-.58.62-1.55.02-2.15l-3.1-3.14a1.5 1.5 0 0 0-1.08-.45h-2.87c-.83 0-1.51.68-1.51 1.51v2.88Zm2.75-.9a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z\"]);\nexport const PersonTagRegular = /*#__PURE__*/createFluentIcon('PersonTagRegular', \"1em\", [\"M5 6a4 4 0 1 1 6.65 3h-.14c-.8 0-1.52.38-1.98.96A4 4 0 0 1 5 6Zm4-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm.05 8H4.01A2 2 0 0 0 2 13c0 1.7.83 2.97 2.14 3.8A9.14 9.14 0 0 0 9 18c.8 0 1.58-.07 2.31-.22l-.85-.87c-.47.06-.95.09-1.46.09a8.16 8.16 0 0 1-4.33-1.05A3.36 3.36 0 0 1 3 13a1 1 0 0 1 1-1h5v-.48c0-.18.02-.35.05-.52Zm.95 3.4c0 .39.15.77.43 1.05l3.04 3.1c.58.59 1.52.6 2.12.03l2.95-2.84c.6-.58.62-1.55.02-2.15l-3.1-3.14a1.5 1.5 0 0 0-1.08-.45h-2.87c-.83 0-1.51.68-1.51 1.51v2.88Zm2.75-.9a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Z\"]);\nexport const PersonVoiceFilled = /*#__PURE__*/createFluentIcon('PersonVoiceFilled', \"1em\", [\"M15.85 1.15a.5.5 0 0 0-.7.7 6.6 6.6 0 0 1 1.72 4.65 6.6 6.6 0 0 1-1.72 4.65.5.5 0 0 0 .7.7 7.6 7.6 0 0 0 2.03-5.35 7.6 7.6 0 0 0-2.03-5.35Zm-2 2a.5.5 0 0 0-.7.7c.63.64.97 1.62.97 2.65 0 1.03-.34 2.01-.97 2.65a.5.5 0 0 0 .7.7 4.76 4.76 0 0 0 1.28-3.35c0-1.22-.41-2.49-1.28-3.35ZM4 7a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm-3 7a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2c0 1.7-.83 2.97-2.13 3.8A9.14 9.14 0 0 1 8 19a9.14 9.14 0 0 1-4.87-1.2A4.35 4.35 0 0 1 1 14Z\"]);\nexport const PersonVoiceRegular = /*#__PURE__*/createFluentIcon('PersonVoiceRegular', \"1em\", [\"M15.85 1.15a.5.5 0 0 0-.7.7 6.6 6.6 0 0 1 1.72 4.65 6.6 6.6 0 0 1-1.72 4.65.5.5 0 0 0 .7.7 7.6 7.6 0 0 0 2.03-5.35 7.6 7.6 0 0 0-2.03-5.35Zm-2 2a.5.5 0 0 0-.7.7c.63.64.97 1.62.97 2.65 0 1.03-.34 2.01-.97 2.65a.5.5 0 0 0 .7.7 4.76 4.76 0 0 0 1.28-3.35c0-1.22-.41-2.49-1.28-3.35ZM4 7a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6ZM1 14a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2c0 1.7-.83 2.97-2.13 3.8A9.14 9.14 0 0 1 8 19a9.14 9.14 0 0 1-4.87-1.2A4.35 4.35 0 0 1 1 14Zm2-1a1 1 0 0 0-1 1c0 1.3.62 2.28 1.67 2.95A8.16 8.16 0 0 0 8 18c1.74 0 3.26-.36 4.33-1.05A3.36 3.36 0 0 0 14 14a1 1 0 0 0-1-1H3Z\"]);\nexport const PersonWalkingFilled = /*#__PURE__*/createFluentIcon('PersonWalkingFilled', \"1em\", [\"M11 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-2.52.18c.26-.05.52.07.73.23a2.99 2.99 0 0 0 2.7.45.95.95 0 0 1 .52-.05c.46.11.89.37 1.2.75l1.26 1.5a.5.5 0 0 0 .23.16l1.02.34a1.25 1.25 0 0 1-.78 2.37l-1.5-.5c-.22-.07-.42-.2-.57-.38l-.49-.59a.5.5 0 0 0-.86.17l-.15.44a.5.5 0 0 0 .06.44l1.05 1.6c.2.3.33.66.37 1.03l.22 2.5a1.25 1.25 0 1 1-2.49.22l-.2-2.3a.5.5 0 0 0-.09-.24l-.72-1.1a.5.5 0 0 0-.88.08L7.4 17.25a1.25 1.25 0 1 1-2.3-1L7.96 9.7a.5.5 0 0 0-.58-.69l-.12.03a.25.25 0 0 0-.17.15l-.5 1.13-.01.03-.45.94a1.25 1.25 0 0 1-2.26-1.08l.44-.92.5-1.12a2.75 2.75 0 0 1 1.87-1.56l1.73-.4c.02-.02.05-.02.07-.03Z\"]);\nexport const PersonWalkingRegular = /*#__PURE__*/createFluentIcon('PersonWalkingRegular', \"1em\", [\"M11.5 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM9 4.5a2.5 2.5 0 1 1 4.04 1.97c.49.2.91.55 1.21 1l.53.8 1.49 1.06a1.75 1.75 0 1 1-2.04 2.84l-1.75-1.25a1.67 1.67 0 0 1-.09-.06l-.01.04.94 1.43c.25.37.4.81.45 1.26l.22 2.5a1.75 1.75 0 0 1-3.48.32l-.21-2.31-.5-.75-1.43 3.55a1.75 1.75 0 0 1-3.24-1.3l1.34-3.35a1.75 1.75 0 0 1-1.7-2.4l1.1-2.75c.21-.52.66-.91 1.2-1.05l1.55-.38c.2-.05.42-.08.63-.08-.16-.33-.25-.7-.25-1.1Zm.32 2.02-2 .5a.75.75 0 0 0-.52.45l-1.1 2.75a.75.75 0 1 0 1.4.56l.86-2.16a.49.49 0 1 1 .9.36l-2.8 6.99a.75.75 0 1 0 1.39.56l1.42-3.55a1 1 0 0 1 1.77-.18l.6.9.04.12.22 2.5a.75.75 0 0 0 1.5-.14l-.23-2.5a1.75 1.75 0 0 0-.28-.8l-.93-1.4a1 1 0 0 1-.1-.9l.38-1.01a.42.42 0 0 1 .74-.09l.3.44c.05.07.1.14.18.19l1.75 1.25a.75.75 0 1 0 .88-1.22l-1.5-1.06a1 1 0 0 1-.24-.26l-.83-1.24a.75.75 0 0 0-.44-.3l-3-.76a.75.75 0 0 0-.36 0Z\"]);\nexport const PersonWrenchFilled = /*#__PURE__*/createFluentIcon('PersonWrenchFilled', \"1em\", [\"M6 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm5.23 5H5A2 2 0 0 0 3 13c0 1.7.83 2.97 2.13 3.8.82.51 1.8.86 2.9 1.04a2.5 2.5 0 0 1 .7-2.12l2.32-2.32c-.16-.8-.1-1.63.18-2.4Zm4.66-1.98c.37.05.47.48.21.75l-.97.97a1.5 1.5 0 1 0 2.13 2.13l.97-.97c.27-.26.7-.16.75.2a3.51 3.51 0 0 1-4.68 3.73l-2.73 2.73a1.5 1.5 0 1 1-2.13-2.13l2.73-2.73a3.52 3.52 0 0 1 3.72-4.68Z\"]);\nexport const PersonWrenchRegular = /*#__PURE__*/createFluentIcon('PersonWrenchRegular', \"1em\", [\"M6 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm5.23 5H5A2 2 0 0 0 3 13c0 1.7.83 2.97 2.13 3.8.82.51 1.8.86 2.9 1.04-.05-.33-.03-.67.06-1a6.71 6.71 0 0 1-2.42-.89A3.36 3.36 0 0 1 4 13a1 1 0 0 1 1-1h6c.03-.34.11-.67.23-1ZM10 3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.9 6.02c.36.05.46.48.2.75l-.97.97a1.5 1.5 0 1 0 2.13 2.13l.97-.97c.27-.26.7-.16.75.2a3.51 3.51 0 0 1-4.68 3.73l-2.73 2.73a1.5 1.5 0 1 1-2.13-2.13l2.73-2.73a3.52 3.52 0 0 1 3.72-4.68Z\"]);\nexport const PhoneFilled = /*#__PURE__*/createFluentIcon('PhoneFilled', \"1em\", [\"M6.5 2C5.67 2 5 2.67 5 3.5v13c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-7ZM9 14h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1 0-1Z\"]);\nexport const PhoneRegular = /*#__PURE__*/createFluentIcon('PhoneRegular', \"1em\", [\"M9 14a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9ZM7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4Z\"]);\nexport const PhoneAddFilled = /*#__PURE__*/createFluentIcon('PhoneAddFilled', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.47 5.47 0 0 1-1.24-3H7.5a.5.5 0 0 1 0-1h1.52A5.5 5.5 0 0 1 14 9.02V3.5c0-.83-.67-1.5-1.5-1.5h-7ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const PhoneAddRegular = /*#__PURE__*/createFluentIcon('PhoneAddRegular', \"1em\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h7c.83 0 1.5.67 1.5 1.5v5.52c-.34.03-.68.1-1 .19V3.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h4.1c.18.36.4.7.66 1H5.5A1.5 1.5 0 0 1 4 16.5v-13ZM9.02 14a5.57 5.57 0 0 0 0 1H7.5a.5.5 0 0 1 0-1h1.52Zm9.98.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const PhoneArrowRightFilled = /*#__PURE__*/createFluentIcon('PhoneArrowRightFilled', \"1em\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h7c.83 0 1.5.67 1.5 1.5v5.52A5.5 5.5 0 0 0 9.02 14H7.5a.5.5 0 0 0 0 1h1.52c.1 1.13.55 2.17 1.24 3H5.5A1.5 1.5 0 0 1 4 16.5v-13ZM14.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const PhoneArrowRightRegular = /*#__PURE__*/createFluentIcon('PhoneArrowRightRegular', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.5 5.5 0 0 1-.66-1H5.5a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5.7c.32-.08.66-.15 1-.18V3.5c0-.83-.67-1.5-1.5-1.5h-7ZM9 14.5c0-.17 0-.34.02-.5H7.5a.5.5 0 0 0 0 1h1.52a5.57 5.57 0 0 1-.02-.5Zm5.5-4.5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const PhoneChatFilled = /*#__PURE__*/createFluentIcon('PhoneChatFilled', \"1em\", [\"M6.5 2C5.67 2 5 2.67 5 3.5v13c0 .83.67 1.5 1.5 1.5h2.62l.37-1.23A5.48 5.48 0 0 1 15 9.02V3.5c0-.83-.67-1.5-1.5-1.5h-7Zm8 17a4.5 4.5 0 1 0-3.94-2.32l-.54 1.8c-.1.3.2.6.5.5l1.8-.54c.64.36 1.39.56 2.18.56ZM12 13.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1h-2Z\"]);\nexport const PhoneChatRegular = /*#__PURE__*/createFluentIcon('PhoneChatRegular', \"1em\", [\"M9.42 17H7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v5.02a5.57 5.57 0 0 1 1 0V4a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h2.12l.3-1Zm5.08 2a4.5 4.5 0 1 0-3.94-2.32l-.54 1.8c-.1.3.2.6.5.5l1.8-.54c.64.36 1.39.56 2.18.56ZM12 13.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1h-2Z\"]);\nexport const PhoneCheckmarkFilled = /*#__PURE__*/createFluentIcon('PhoneCheckmarkFilled', \"1em\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L12.5 6.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM6.5 2h2.76A5.5 5.5 0 0 0 15 10.8v5.7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5v-13C5 2.67 5.67 2 6.5 2ZM8 14.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5Z\"]);\nexport const PhoneCheckmarkRegular = /*#__PURE__*/createFluentIcon('PhoneCheckmarkRegular', \"1em\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L12.5 6.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM9.25 2H6.5C5.67 2 5 2.67 5 3.5v13c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-5.7c-.32.08-.66.15-1 .18v5.52a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h2.1c.18-.36.4-.7.66-1ZM8 14.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Z\"]);\nexport const PhoneDesktopFilled = /*#__PURE__*/createFluentIcon('PhoneDesktopFilled', \"1em\", [\"M6 2a2 2 0 0 0-2 2v3h2.5A2.5 2.5 0 0 1 9 9.5V13h3v2H9v1h5.5a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6ZM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-7C8 8.67 7.33 8 6.5 8h-3Zm.5 7.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const PhoneDesktopRegular = /*#__PURE__*/createFluentIcon('PhoneDesktopRegular', \"1em\", [\"M6 3h10a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H9v1h3v2H9v1h5.5a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3h1V4a1 1 0 0 1 1-1ZM4.5 15a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM2 9.5C2 8.67 2.67 8 3.5 8h3C7.33 8 8 8.67 8 9.5v7c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 2 16.5v-7ZM3.5 9a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-3Z\"]);\nexport const PhoneDesktopAddFilled = /*#__PURE__*/createFluentIcon('PhoneDesktopAddFilled', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-.5 7.5c1.33 0 2.55-.47 3.5-1.26V11a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1H9v-1h3v-2H9V9.5A2.5 2.5 0 0 0 6.5 7H4V4c0-1.1.9-2 2-2h4.26a5.5 5.5 0 0 0 4.24 9Zm-11-3C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-7C8 8.67 7.33 8 6.5 8h-3Zm.5 7.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const PhoneDesktopAddRegular = /*#__PURE__*/createFluentIcon('PhoneDesktopAddRegular', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm2 7.5v-.6c.36-.18.7-.4 1-.66V11a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1H9v-1h3v-2H9v-1h7a1 1 0 0 0 1-1Zm-6.74-9c-.26.3-.48.64-.66 1H6a1 1 0 0 0-1 1v3H4V4c0-1.1.9-2 2-2h4.26ZM4 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm-2-6C2 8.67 2.67 8 3.5 8h3C7.33 8 8 8.67 8 9.5v7c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 2 16.5v-7ZM3.5 9a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-3Z\"]);\nexport const PhoneDismissFilled = /*#__PURE__*/createFluentIcon('PhoneDismissFilled', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.47 5.47 0 0 1-1.24-3H7.5a.5.5 0 0 1 0-1h1.52A5.5 5.5 0 0 1 14 9.02V3.5c0-.83-.67-1.5-1.5-1.5h-7Zm9 17a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const PhoneDismissRegular = /*#__PURE__*/createFluentIcon('PhoneDismissRegular', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.5 5.5 0 0 1-.66-1H5.5a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5.7c.32-.08.66-.15 1-.18V3.5c0-.83-.67-1.5-1.5-1.5h-7ZM9 14.5c0-.17 0-.34.02-.5H7.5a.5.5 0 0 0 0 1h1.52a5.57 5.57 0 0 1-.02-.5Zm10 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const PhoneEditFilled = /*#__PURE__*/createFluentIcon('PhoneEditFilled', \"1em\", [\"m15.8 1.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Zm-5.53 4.12 3.62-3.62A1.5 1.5 0 0 0 13.5 2h-7C5.67 2 5 2.67 5 3.5v13c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5V9.06l-.67.67c-.4.4-.92.7-1.48.84l-1.5.37a1.89 1.89 0 0 1-2.3-2.29l.38-1.5a3.2 3.2 0 0 1 .84-1.48ZM9 14h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1 0-1Z\"]);\nexport const PhoneEditRegular = /*#__PURE__*/createFluentIcon('PhoneEditRegular', \"1em\", [\"m15.8 1.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64ZM12.95 3l.84-.84A2 2 0 0 0 13 2H7a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V9.06l-.67.67c-.1.1-.21.2-.33.29V16a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5.94ZM9 14a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Z\"]);\nexport const PhoneEraserFilled = /*#__PURE__*/createFluentIcon('PhoneEraserFilled', \"1em\", [\"M14.58 1.44a1.5 1.5 0 0 1 2.12 0l1.86 1.86a1.5 1.5 0 0 1 0 2.12l-5.14 5.14a1.5 1.5 0 0 1-2.12 0L9.44 8.7a1.5 1.5 0 0 1 0-2.12l5.14-5.14Zm-4.43 5.84a.5.5 0 0 0 0 .71L12 9.85c.2.2.51.2.7 0l1.3-1.29L11.44 6l-1.3 1.3ZM12.6 2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-5.11a2.5 2.5 0 0 1-3.4-.12L8.72 9.4a2.5 2.5 0 0 1 0-3.54L12.6 2Zm-2.1 12.5a.5.5 0 0 1-.5.5H8a.5.5 0 0 1 0-1h2c.28 0 .5.22.5.5Z\"]);\nexport const PhoneEraserRegular = /*#__PURE__*/createFluentIcon('PhoneEraserRegular', \"1em\", [\"M14.58 1.44a1.5 1.5 0 0 1 2.12 0l1.86 1.86a1.5 1.5 0 0 1 0 2.12l-5.14 5.14a1.5 1.5 0 0 1-2.12 0L9.44 8.7a1.5 1.5 0 0 1 0-2.12l5.14-5.14Zm-4.43 5.84a.5.5 0 0 0 0 .71L12 9.85c.2.2.51.2.7 0l1.3-1.29L11.44 6l-1.3 1.3Zm2.38-5.2A2 2 0 0 0 12 2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-4.61c-.3.26-.64.43-1 .53V16a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5.6l.93-.93ZM7.5 14.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H8a.5.5 0 0 1-.5-.5Z\"]);\nexport const PhoneKeyFilled = /*#__PURE__*/createFluentIcon('PhoneKeyFilled', \"1em\", [\"M6.5 2C5.67 2 5 2.67 5 3.5v13c0 .83.67 1.5 1.5 1.5H9v-1c0-.41.16-.78.44-1.06l.94-.94H9a.5.5 0 0 1 0-1h2c.1 0 .2.03.29.1l.73-.74a3.72 3.72 0 0 1 .31-1.98A4.1 4.1 0 0 1 15 9.13V3.5c0-.83-.67-1.5-1.5-1.5h-7Zm4 17a.48.48 0 0 1-.35-.15.48.48 0 0 1-.15-.35V17c0-.14.05-.25.15-.35l2.94-2.94a3.74 3.74 0 0 1-.09-.77c0-.4.08-.79.24-1.14a3.1 3.1 0 0 1 1.61-1.57 2.94 2.94 0 0 1 3.27.64A3 3 0 0 1 15 15.84V16.52a.65.65 0 0 1-.08.24.5.5 0 0 1-.15.17.46.46 0 0 1-.27.07H14c0 .24 0 .43-.02.56a.46.46 0 0 1-.11.3.47.47 0 0 1-.3.12L13 18v.27c0 .08 0 .17-.02.25a.86.86 0 0 1-.06.24.37.37 0 0 1-.15.17.57.57 0 0 1-.27.07h-2Zm7-6.75c0-.2-.07-.39-.22-.53a.72.72 0 0 0-.53-.22c-.2 0-.39.07-.53.22a.72.72 0 0 0-.22.53c0 .2.07.39.22.53.14.15.32.22.53.22.2 0 .39-.07.53-.22a.72.72 0 0 0 .22-.53Z\"]);\nexport const PhoneKeyRegular = /*#__PURE__*/createFluentIcon('PhoneKeyRegular', \"1em\", [\"M7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h2v-1H7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v5.54a3.97 3.97 0 0 1 1-.4V4a2 2 0 0 0-2-2H7Zm3.38 13 .91-.9A.5.5 0 0 0 11 14H9a.5.5 0 0 0 0 1h1.38Zm.12 4a.48.48 0 0 1-.35-.15.48.48 0 0 1-.15-.35V17c0-.14.05-.25.15-.35l2.94-2.94a3.74 3.74 0 0 1-.09-.77c0-.4.08-.79.24-1.14a3.1 3.1 0 0 1 1.61-1.57 2.94 2.94 0 0 1 3.27.64A3 3 0 0 1 15 15.84V16.52a.65.65 0 0 1-.08.24.5.5 0 0 1-.15.17.46.46 0 0 1-.27.07H14c0 .24 0 .43-.02.56a.46.46 0 0 1-.11.3.47.47 0 0 1-.3.12L13 18v.27c0 .08 0 .17-.02.25a.86.86 0 0 1-.06.24.37.37 0 0 1-.15.17.57.57 0 0 1-.27.07h-2Zm7-6.75c0-.2-.07-.39-.22-.53a.72.72 0 0 0-.53-.22c-.2 0-.39.07-.53.22a.72.72 0 0 0-.22.53c0 .2.07.39.22.53.14.15.32.22.53.22.2 0 .39-.07.53-.22a.72.72 0 0 0 .22-.53Z\"]);\nexport const PhoneLaptopFilled = /*#__PURE__*/createFluentIcon('PhoneLaptopFilled', \"1em\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H10V8a2 2 0 0 0-2-2H3V4.5ZM10 15h7.5a.5.5 0 0 0 0-1H10v1ZM2 8.5C2 7.67 2.67 7 3.5 7h4C8.33 7 9 7.67 9 8.5v8c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 2 16.5v-8ZM5 15a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1H5Z\"]);\nexport const PhoneLaptopRegular = /*#__PURE__*/createFluentIcon('PhoneLaptopRegular', \"1em\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H10v-1h5.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5V6H3V4.5ZM10 15h7.5a.5.5 0 0 0 0-1H10v1Zm-5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1H5ZM2 8.5C2 7.67 2.67 7 3.5 7h4C8.33 7 9 7.67 9 8.5v8c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 2 16.5v-8ZM3.5 8a.5.5 0 0 0-.5.5v8c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const PhoneLinkSetupFilled = /*#__PURE__*/createFluentIcon('PhoneLinkSetupFilled', \"1em\", [\"M5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v5.52A5.5 5.5 0 0 0 10.26 18H6.5A1.5 1.5 0 0 1 5 16.5v-13Zm7.07 7.94a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const PhoneLinkSetupRegular = /*#__PURE__*/createFluentIcon('PhoneLinkSetupRegular', \"1em\", [\"M7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h3.26a5.5 5.5 0 0 1-.66-1H7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v5.02a5.57 5.57 0 0 1 1 0V4a2 2 0 0 0-2-2H7Zm5.07 9.44a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const PhoneLockFilled = /*#__PURE__*/createFluentIcon('PhoneLockFilled', \"1em\", [\"M5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v5.54A3 3 0 0 0 11.5 12v.06A2 2 0 0 0 10 14H8.5a.5.5 0 0 0 0 1H10v3H6.5A1.5 1.5 0 0 1 5 16.5v-13Zm7.5 8.5v1H12a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const PhoneLockRegular = /*#__PURE__*/createFluentIcon('PhoneLockRegular', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v5.04a3.02 3.02 0 0 0-1 0V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3v1H7a2 2 0 0 1-2-2V4Zm3.5 10H10v1H8.5a.5.5 0 0 1 0-1Zm4-2v1H12a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const PhonePageHeaderFilled = /*#__PURE__*/createFluentIcon('PhonePageHeaderFilled', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v1H5V4Zm0 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V6H5Z\"]);\nexport const PhonePageHeaderRegular = /*#__PURE__*/createFluentIcon('PhonePageHeaderRegular', \"1em\", [\"M7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 5h8v11a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5Z\"]);\nexport const PhonePaginationFilled = /*#__PURE__*/createFluentIcon('PhonePaginationFilled', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4Zm3 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Z\"]);\nexport const PhonePaginationRegular = /*#__PURE__*/createFluentIcon('PhonePaginationRegular', \"1em\", [\"M8 15a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4Z\"]);\nexport const PhoneScreenTimeFilled = /*#__PURE__*/createFluentIcon('PhoneScreenTimeFilled', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.47 5.47 0 0 1-1.24-3H7.5a.5.5 0 0 1 0-1h1.52A5.5 5.5 0 0 1 14 9.02V3.5c0-.83-.67-1.5-1.5-1.5h-7ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const PhoneScreenTimeRegular = /*#__PURE__*/createFluentIcon('PhoneScreenTimeRegular', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.5 5.5 0 0 1-.66-1H5.5a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v5.7c.32-.08.66-.15 1-.18V3.5c0-.83-.67-1.5-1.5-1.5h-7ZM9 14.5c0 .17 0 .34.02.5H7.5a.5.5 0 0 1 0-1h1.52l-.02.5Zm10 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const PhoneShakeFilled = /*#__PURE__*/createFluentIcon('PhoneShakeFilled', \"1em\", [\"M15.37 2.93a.5.5 0 1 1 .5-.86 4.25 4.25 0 0 1 1.63 5.66.5.5 0 0 1-.88-.47 3.25 3.25 0 0 0-1.25-4.33Zm-1 1.74a.5.5 0 1 1 .5-.87c1.02.59 1.4 1.86.91 2.9a.5.5 0 0 1-.9-.42c.27-.58.06-1.29-.5-1.61Zm-9.74 12.4a.5.5 0 1 1-.5.86 4.25 4.25 0 0 1-1.63-5.66.5.5 0 1 1 .88.46 3.25 3.25 0 0 0 1.25 4.33Zm1-1.74a.5.5 0 1 1-.5.87 2.25 2.25 0 0 1-.92-2.9.5.5 0 0 1 .9.42c-.26.58-.05 1.28.52 1.61Zm4.54-12.26a1.95 1.95 0 0 1 2.4 1.4l2.37 8.97a2.04 2.04 0 0 1-1.42 2.48l-3.69 1a1.95 1.95 0 0 1-2.4-1.4L5.08 6.57a2.04 2.04 0 0 1 1.42-2.49l3.68-1Zm-.49 11.3c.07.27.34.43.6.36l1.79-.48a.51.51 0 0 0 .36-.62.49.49 0 0 0-.6-.36l-1.78.49a.51.51 0 0 0-.37.62Z\"]);\nexport const PhoneShakeRegular = /*#__PURE__*/createFluentIcon('PhoneShakeRegular', \"1em\", [\"M15.37 2.93a.5.5 0 1 1 .5-.86 4.25 4.25 0 0 1 1.63 5.66.5.5 0 0 1-.88-.47 3.25 3.25 0 0 0-1.25-4.33Zm-1 1.74a.5.5 0 1 1 .5-.87c1.02.59 1.4 1.86.91 2.9a.5.5 0 0 1-.9-.42c.27-.58.06-1.29-.5-1.61Zm-9.74 12.4a.5.5 0 1 1-.5.86 4.25 4.25 0 0 1-1.63-5.66.5.5 0 1 1 .88.46 3.25 3.25 0 0 0 1.25 4.33Zm1-1.74a.5.5 0 1 1-.5.87 2.25 2.25 0 0 1-.92-2.9.5.5 0 0 1 .9.42c-.26.58-.05 1.28.52 1.61Zm5.97-10.6a.96.96 0 0 0-1.17-.7l-3.7 1.01c-.52.14-.84.7-.7 1.25l2.37 8.98c.14.53.67.83 1.18.7l3.68-1.01c.53-.15.85-.7.7-1.25L11.6 4.73Zm-1.43-1.66a1.95 1.95 0 0 1 2.4 1.4l2.36 8.97a2.04 2.04 0 0 1-1.41 2.48l-3.69 1a1.95 1.95 0 0 1-2.4-1.4L5.07 6.57a2.04 2.04 0 0 1 1.41-2.49l3.69-1Zm-.49 11.3a.51.51 0 0 1 .36-.61l1.79-.48c.26-.08.53.08.6.35.07.27-.1.54-.36.62l-1.78.48a.49.49 0 0 1-.6-.35Z\"]);\nexport const PhoneSpanInFilled = /*#__PURE__*/createFluentIcon('PhoneSpanInFilled', \"1em\", [\"M7 2a2 2 0 0 0-2 2v3.09a1.5 1.5 0 0 1 1.56.35l2 2a1.5 1.5 0 0 1 0 2.12l-2 2a1.5 1.5 0 0 1-1.56.35V16c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2.09a1.5 1.5 0 0 1-1.56-.35l-2-2a1.5 1.5 0 0 1 0-2.12l2-2A1.5 1.5 0 0 1 15 7.09V4a2 2 0 0 0-2-2H7Zm7.85 6.15c.2.2.2.5 0 .7L13.71 10h2.79a.5.5 0 0 1 0 1h-2.8l1.15 1.15a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2c.2-.2.5-.2.7 0Zm-9.7.7a.5.5 0 1 1 .7-.7l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L6.29 11H3.5a.5.5 0 0 1 0-1h2.8L5.14 8.85Z\"]);\nexport const PhoneSpanInRegular = /*#__PURE__*/createFluentIcon('PhoneSpanInRegular', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v3.09a1.5 1.5 0 0 0-1 0V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v3.09a1.5 1.5 0 0 0-1 0V4Zm0 9.91V16c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2.09a1.5 1.5 0 0 1-1 0V16a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2.09a1.5 1.5 0 0 1-1 0Zm2.85-3.06-2 2a.5.5 0 0 1-.7-.7L6.29 11H3.5a.5.5 0 0 1 0-1h2.8L5.14 8.85a.5.5 0 1 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35Zm6.3-2.7-2 2a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 11h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7Z\"]);\nexport const PhoneSpanOutFilled = /*#__PURE__*/createFluentIcon('PhoneSpanOutFilled', \"1em\", [\"M7 2a2 2 0 0 0-2 2v3.09A1.5 1.5 0 0 1 6.91 9h.59a1.5 1.5 0 1 1 0 3h-.59A1.5 1.5 0 0 1 5 13.91V16c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2.09A1.5 1.5 0 0 1 13.09 12h-.59a1.5 1.5 0 0 1 0-3h.59A1.5 1.5 0 0 1 15 7.09V4a2 2 0 0 0-2-2H7Zm7.85 6.15a.5.5 0 0 0-.7.7L15.29 10H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2ZM4.71 10l1.14-1.15h.01a.5.5 0 0 0-.71-.7l-2 2a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 11H7.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5H4.7Z\"]);\nexport const PhoneSpanOutRegular = /*#__PURE__*/createFluentIcon('PhoneSpanOutRegular', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v3.09a1.5 1.5 0 0 0-1 0V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v3.09a1.5 1.5 0 0 0-1 0V4Zm0 9.91c.32.12.68.12 1 0V16a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2.09c.32.12.68.12 1 0V16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-2.09Zm-1.85-3.76 2-2a.5.5 0 1 1 .7.7L4.71 10H7.5a.5.5 0 0 1 0 1H4.7l1.15 1.15a.5.5 0 0 1-.7.7l-2-2A.5.5 0 0 1 3 10.5a.5.5 0 0 1 .14-.35Zm11.7 2.7 2-2a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 10H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7Z\"]);\nexport const PhoneSpeakerFilled = /*#__PURE__*/createFluentIcon('PhoneSpeakerFilled', \"1em\", [\"M5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.99A1.5 1.5 0 0 1 9 16.5V15H8a.5.5 0 0 1 0-1h1.09c.2-.58.76-1 1.41-1h.38l1.56-1.56a1.5 1.5 0 0 1 1.56-.35V3.5c0-.83-.67-1.5-1.5-1.5h-7Zm8.2 10.04c.18.08.3.26.3.46v6a.5.5 0 0 1-.85.35L11.29 17h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm3.95.16c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 0 1 .8-.6Zm-1.43 1.77c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.6 4.6 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53Z\"]);\nexport const PhoneSpeakerRegular = /*#__PURE__*/createFluentIcon('PhoneSpeakerRegular', \"1em\", [\"M8 14a.5.5 0 0 0 0 1h1v-.5c0-.18.03-.34.09-.5H8Zm-2 3h3.09c.2.58.75 1 1.4 1H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v7.09a1.5 1.5 0 0 0-1 0V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Zm7.7-4.96c.18.08.3.26.3.46v6a.5.5 0 0 1-.85.35L11.29 17h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm3.95.16c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 0 1 .8-.6Zm-1.43 1.77c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.6 4.6 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53Z\"]);\nexport const PhoneStatusBarFilled = /*#__PURE__*/createFluentIcon('PhoneStatusBarFilled', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4Zm2.5 0a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const PhoneStatusBarRegular = /*#__PURE__*/createFluentIcon('PhoneStatusBarRegular', \"1em\", [\"M7.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4Z\"]);\nexport const PhoneTabletFilled = /*#__PURE__*/createFluentIcon('PhoneTabletFilled', \"1em\", [\"M4 4.8C4 3.8 4.84 3 5.84 3h10.32c1 0 1.84.8 1.84 1.8v7.4c0 1-.84 1.8-1.84 1.8H10v-2h2.5a.5.5 0 0 0 0-1H10V8a2 2 0 0 0-2-2H4V4.8ZM3.5 7C2.67 7 2 7.67 2 8.5v8c0 .83.67 1.5 1.5 1.5h4c.83 0 1.5-.67 1.5-1.5v-8C9 7.67 8.33 7 7.5 7h-4Zm1 8.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Z\"]);\nexport const PhoneTabletRegular = /*#__PURE__*/createFluentIcon('PhoneTabletRegular', \"1em\", [\"M5.84 4a.83.83 0 0 0-.84.8V6H4V4.8C4 3.8 4.84 3 5.84 3h10.32c1 0 1.84.8 1.84 1.8v7.4c0 1-.84 1.8-1.84 1.8H10v-1h6.16c.48 0 .84-.37.84-.8V4.8c0-.43-.36-.8-.84-.8H5.84ZM10 12h2.5a.5.5 0 0 0 0-1H10v1Zm-5 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1H5ZM2 8.5C2 7.67 2.67 7 3.5 7h4C8.33 7 9 7.67 9 8.5v8c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 2 16.5v-8ZM3.5 8a.5.5 0 0 0-.5.5v8c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const PhoneUpdateFilled = /*#__PURE__*/createFluentIcon('PhoneUpdateFilled', \"1em\", [\"M5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5v-13Zm5.5 3a.5.5 0 0 0-1 0v5.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l2-2a.5.5 0 0 0-.7-.7l-1.15 1.14V6.5Z\"]);\nexport const PhoneUpdateRegular = /*#__PURE__*/createFluentIcon('PhoneUpdateRegular', \"1em\", [\"M10 6c.28 0 .5.22.5.5v5.8l1.15-1.15a.5.5 0 0 1 .7.7l-2 2A.5.5 0 0 1 10 14a.5.5 0 0 1-.35-.15l-2-2a.5.5 0 0 1 .7-.7l1.15 1.14V6.5c0-.28.22-.5.5-.5ZM5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5v-13ZM6.5 3a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const PhoneUpdateCheckmarkFilled = /*#__PURE__*/createFluentIcon('PhoneUpdateCheckmarkFilled', \"1em\", [\"M5 16c0 1.1.9 2 2 2h3.26a5.48 5.48 0 0 1-.76-5.8v-5L8.35 8.36a.5.5 0 1 1-.7-.7l2-2c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7L10.5 7.21v3.52a5.48 5.48 0 0 1 4.5-1.7V4a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v12Zm14-1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const PhoneUpdateCheckmarkRegular = /*#__PURE__*/createFluentIcon('PhoneUpdateCheckmarkRegular', \"1em\", [\"M6 16a1 1 0 0 0 1 1h2.6c.18.36.4.7.66 1H7a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v5.02a5.57 5.57 0 0 0-1 0V4a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v12Zm3.5-3.8c.25-.54.6-1.04 1-1.47V7.2l1.15 1.14a.5.5 0 0 0 .7-.7l-2-2a.5.5 0 0 0-.7 0l-2 2a.5.5 0 1 0 .7.7L9.5 7.21v5Zm9.5 2.3a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const PhoneVerticalScrollFilled = /*#__PURE__*/createFluentIcon('PhoneVerticalScrollFilled', \"1em\", [\"M5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5v-13Zm7.35 5.35a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.7 0l-2 2a.5.5 0 1 0 .7.7L10 7.21l1.65 1.64c.2.2.5.2.7 0Zm-4.7 2.3a.5.5 0 0 0 0 .7l2 2c.2.2.5.2.7 0l2-2a.5.5 0 0 0-.7-.7L10 12.79l-1.65-1.64a.5.5 0 0 0-.7 0Z\"]);\nexport const PhoneVerticalScrollRegular = /*#__PURE__*/createFluentIcon('PhoneVerticalScrollRegular', \"1em\", [\"M7.65 11.15c.2-.2.5-.2.7 0L10 12.79l1.65-1.64a.5.5 0 0 1 .7.7l-2 2a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7Zm4-2.3a.5.5 0 0 0 .7-.7l-2-2a.5.5 0 0 0-.7 0l-2 2a.5.5 0 1 0 .7.7L10 7.21l1.65 1.64ZM5 3.5C5 2.67 5.67 2 6.5 2h7c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5v-13ZM6.5 3a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const PhoneVibrateFilled = /*#__PURE__*/createFluentIcon('PhoneVibrateFilled', \"1em\", [\"M5 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4Zm3.5 10.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM2.92 7.22a.5.5 0 0 0-.84.56l.38.57c.29.42.32.97.1 1.43-.4.78-.34 1.7.14 2.43l.38.57a.5.5 0 1 0 .84-.56l-.38-.57a1.43 1.43 0 0 1-.1-1.43c.4-.78.34-1.7-.14-2.43l-.38-.57Zm13.3-.14a.5.5 0 0 1 .7.14l.38.57c.48.73.54 1.65.15 2.43-.23.46-.2 1 .09 1.43l.38.57a.5.5 0 1 1-.84.56l-.38-.57a2.43 2.43 0 0 1-.15-2.43c.23-.46.2-1-.09-1.43l-.38-.57a.5.5 0 0 1 .14-.7Z\"]);\nexport const PhoneVibrateRegular = /*#__PURE__*/createFluentIcon('PhoneVibrateRegular', \"1em\", [\"M8.5 14.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4ZM2.92 7.22a.5.5 0 0 0-.84.56l.38.57c.29.42.32.97.1 1.43-.4.78-.34 1.7.14 2.43l.38.57a.5.5 0 1 0 .84-.56l-.38-.57a1.43 1.43 0 0 1-.1-1.43c.4-.78.34-1.7-.14-2.43l-.38-.57Zm13.3-.14a.5.5 0 0 1 .7.14l.38.57c.48.73.54 1.65.15 2.43-.23.46-.2 1 .09 1.43l.38.57a.5.5 0 1 1-.84.56l-.38-.57a2.43 2.43 0 0 1-.15-2.43c.23-.46.2-1-.09-1.43l-.38-.57a.5.5 0 0 1 .14-.7Z\"]);\nexport const PhotoFilterFilled = /*#__PURE__*/createFluentIcon('PhotoFilterFilled', \"1em\", [\"M6.26 13.74a6 6 0 1 1 7.48-7.48 6 6 0 1 1-7.48 7.48ZM3.5 8A4.5 4.5 0 0 0 6 12.03V12a6 6 0 0 1 6.03-6A4.5 4.5 0 0 0 3.5 8Zm4.47 6A4.5 4.5 0 1 0 14 7.97V8a6 6 0 0 1-6 6h-.03Z\"]);\nexport const PhotoFilterRegular = /*#__PURE__*/createFluentIcon('PhotoFilterRegular', \"1em\", [\"M2 8a6 6 0 0 0 4.26 5.74 6 6 0 1 0 7.48-7.48A6 6 0 0 0 2 8Zm6-5a5 5 0 0 1 4.6 3.03L12 6a6 6 0 0 0-5.97 6.6A5 5 0 0 1 8 3Zm9 9a5 5 0 0 1-9.6 1.97L8 14a6 6 0 0 0 5.97-6.6A5 5 0 0 1 17 12Z\"]);\nexport const PiFilled = /*#__PURE__*/createFluentIcon('PiFilled', \"1em\", [\"M3.4 4.78c-.17.32-.18.76-.12 1.07a.75.75 0 1 1-1.47.3c-.1-.52-.11-1.34.26-2.06.41-.79 1.22-1.34 2.47-1.34H16.5a.75.75 0 0 1 0 1.5h-2.25v9.42c0 1.5.45 1.89.7 2 .32.15.8.08 1.21-.13a.75.75 0 0 1 .68 1.34c-.6.3-1.6.58-2.53.15-1.01-.47-1.56-1.61-1.56-3.36V4.25H8.24a90.75 90.75 0 0 1-.6 6.32 44.66 44.66 0 0 1-.61 3.55 12.38 12.38 0 0 1-.86 2.72.75.75 0 1 1-1.34-.68c.26-.5.5-1.33.73-2.36.23-1.03.42-2.21.58-3.42.31-2.28.5-4.62.6-6.13h-2.2c-.74 0-1.01.28-1.14.53Z\"]);\nexport const PiRegular = /*#__PURE__*/createFluentIcon('PiRegular', \"1em\", [\"M3.18 4.67a2 2 0 0 0-.14 1.23.5.5 0 1 1-.98.2 3 3 0 0 1 .23-1.9C2.66 3.5 3.38 3 4.54 3H16.5a.5.5 0 1 1 0 1H14v9.67c0 1.54.47 2.05.84 2.23.42.2 1 .09 1.43-.14a.5.5 0 1 1 .46.9c-.56.28-1.49.53-2.32.14-.88-.41-1.41-1.42-1.41-3.13V4H8v.03a90.2 90.2 0 0 1-.62 6.51 44.43 44.43 0 0 1-.6 3.52c-.23 1.06-.5 2-.83 2.66a.5.5 0 1 1-.9-.44c.27-.55.53-1.39.76-2.43.22-1.03.42-2.22.58-3.44.33-2.42.53-4.92.6-6.41H4.55c-.83 0-1.18.33-1.36.67Z\"]);\nexport const PictureInPictureFilled = /*#__PURE__*/createFluentIcon('PictureInPictureFilled', \"1em\", [\"M4.75 3A2.75 2.75 0 0 0 2 5.75v6.5A2.75 2.75 0 0 0 4.75 15H9v-2.5a2.5 2.5 0 0 1 2.5-2.5h6c.17 0 .34.02.5.05v-4.3A2.75 2.75 0 0 0 15.25 3H4.75ZM18 11.09a1.5 1.5 0 0 0-.5-.09h-6c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.65-.42-1.2-1-1.41Z\"]);\nexport const PictureInPictureRegular = /*#__PURE__*/createFluentIcon('PictureInPictureRegular', \"1em\", [\"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75V10h-1V5.75C17 4.78 16.22 4 15.25 4H4.75C3.78 4 3 4.78 3 5.75v6.5c0 .97.78 1.75 1.75 1.75H9v1H4.75A2.75 2.75 0 0 1 2 12.25v-6.5ZM11.5 11c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-6Z\"]);\nexport const PictureInPictureEnterFilled = /*#__PURE__*/createFluentIcon('PictureInPictureEnterFilled', \"1em\", [\"M4.75 3A2.75 2.75 0 0 0 2 5.75v6.5A2.75 2.75 0 0 0 4.75 15H9v-2.5a2.5 2.5 0 0 1 2.5-2.5h6c.17 0 .34.02.5.05v-4.3A2.75 2.75 0 0 0 15.25 3H4.75Zm.6 2.65L8 8.29V6.5a.5.5 0 0 1 1 0v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h1.8L4.64 6.35a.5.5 0 1 1 .7-.7ZM18 11.09a1.5 1.5 0 0 0-.5-.09h-6c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.65-.42-1.2-1-1.41Z\"]);\nexport const PictureInPictureEnterRegular = /*#__PURE__*/createFluentIcon('PictureInPictureEnterRegular', \"1em\", [\"M2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75V10h-1V5.75C17 4.78 16.22 4 15.25 4H4.75C3.78 4 3 4.78 3 5.75v6.5c0 .97.78 1.75 1.75 1.75H9v1H4.75A2.75 2.75 0 0 1 2 12.25v-6.5ZM11.5 11c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-6ZM4.65 5.65c.2-.2.5-.2.7 0L8 8.29V6.5a.5.5 0 0 1 1 0v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h1.8L4.64 6.35a.5.5 0 0 1 0-.7Z\"]);\nexport const PictureInPictureExitFilled = /*#__PURE__*/createFluentIcon('PictureInPictureExitFilled', \"1em\", [\"M8.5 9c.83 0 1.5-.67 1.5-1.5v-4C10 2.67 9.33 2 8.5 2h-6C1.67 2 1 2.67 1 3.5v4A1.5 1.5 0 0 0 2.5 9h6Zm0 1h-6c-.17 0-.34-.02-.5-.05v4.3A2.75 2.75 0 0 0 4.75 17h10.5A2.75 2.75 0 0 0 18 14.25v-6.5A2.75 2.75 0 0 0 15.25 5H11v2.5A2.5 2.5 0 0 1 8.5 10Zm3.85.65L15 13.29V11.5a.5.5 0 0 1 1 0v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h1.8l-2.65-2.65a.5.5 0 0 1 .7-.7Z\"]);\nexport const PictureInPictureExitRegular = /*#__PURE__*/createFluentIcon('PictureInPictureExitRegular', \"1em\", [\"M8.5 9c.83 0 1.5-.67 1.5-1.5v-4C10 2.67 9.33 2 8.5 2h-6C1.67 2 1 2.67 1 3.5v4c0 .65.42 1.2 1 1.41l.02.01c.15.05.31.08.48.08h6Zm6.75-3H11V5h4.25A2.75 2.75 0 0 1 18 7.75v6.5A2.75 2.75 0 0 1 15.25 17H4.75A2.75 2.75 0 0 1 2 14.25v-4.3c.16.03.33.05.5.05H3v4.25c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 6.78 16.22 6 15.25 6ZM14 12.3l-2.65-2.65a.5.5 0 0 0-.7.7L13.29 13H11.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-1 0v1.8Z\"]);\nexport const PillFilled = /*#__PURE__*/createFluentIcon('PillFilled', \"1em\", [\"M11.15 3.15a4.04 4.04 0 1 1 5.7 5.7l-8 8a4.04 4.04 0 1 1-5.7-5.7l8-8Zm5 .7a3.04 3.04 0 0 0-4.3 0L8.21 7.5l4.29 4.3 3.65-3.65a3.04 3.04 0 0 0 0-4.3Zm-7.3 10.3a.5.5 0 0 0-.7 0l-1.5 1.5a.91.91 0 0 1-1.3 0 .5.5 0 0 0-.85.35c0 .14.06.27.15.36.75.74 1.96.74 2.7 0l1.5-1.5a.5.5 0 0 0 0-.71Z\"]);\nexport const PillRegular = /*#__PURE__*/createFluentIcon('PillRegular', \"1em\", [\"M8.85 13.15c.2.2.2.5 0 .7l-1.5 1.5c-.74.75-1.95.75-2.7 0A.5.5 0 0 1 5 14.5a.5.5 0 0 1 .35.15c.36.35.94.35 1.3 0l1.5-1.5c.2-.2.5-.2.7 0Zm2.3-10a4.04 4.04 0 1 1 5.7 5.7l-8 8a4.04 4.04 0 1 1-5.7-5.7l8-8Zm5 .7a3.04 3.04 0 0 0-4.3 0L8.21 7.5l4.29 4.3 3.65-3.65a3.04 3.04 0 0 0 0-4.3Zm-4.36 8.65L7.5 8.2l-3.65 3.65a3.04 3.04 0 0 0 4.3 4.3l3.64-3.65Z\"]);\nexport const PinFilled = /*#__PURE__*/createFluentIcon('PinFilled', \"1em\", [\"M13.33 2.62a2 2 0 0 0-3.2.52L8.38 6.6a1.5 1.5 0 0 1-.78.72L4 8.75a1 1 0 0 0-.33 1.64l2.61 2.6L3 16.3v.7h.7L7 13.72l2.61 2.6a1 1 0 0 0 1.64-.33l1.43-3.59c.14-.34.4-.62.72-.78l3.46-1.73a2 2 0 0 0 .52-3.2l-4.05-4.06Z\"]);\nexport const PinRegular = /*#__PURE__*/createFluentIcon('PinRegular', \"1em\", [\"M10.12 3.14a2 2 0 0 1 3.2-.52l4.06 4.05a2 2 0 0 1-.52 3.2l-3.46 1.74a1.5 1.5 0 0 0-.72.78L11.25 16a1 1 0 0 1-1.64.33L7 13.7 3.7 17H3v-.7L6.3 13l-2.62-2.61a1 1 0 0 1 .34-1.64L7.6 7.32c.34-.14.62-.4.78-.72l1.73-3.46Zm2.5.18a1 1 0 0 0-1.6.26L9.29 7.04a2.5 2.5 0 0 1-1.31 1.2L4.39 9.69l5.93 5.93 1.43-3.59a2.5 2.5 0 0 1 1.2-1.3l3.46-1.74a1 1 0 0 0 .26-1.6l-4.05-4.06Z\"]);\nexport const PinOffFilled = /*#__PURE__*/createFluentIcon('PinOffFilled', \"1em\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L6.9 7.6 4.02 8.75a1 1 0 0 0-.34 1.64L6.3 13 3 16.3v.7h.7L7 13.7l2.61 2.62a1 1 0 0 0 1.64-.34l1.15-2.88 4.75 4.75a.5.5 0 0 0 .7-.7l-15-15Zm14.01 7.73-3.24 1.62L8.5 6.38l1.62-3.24a2 2 0 0 1 3.2-.52l4.06 4.05a2 2 0 0 1-.52 3.2Z\"]);\nexport const PinOffRegular = /*#__PURE__*/createFluentIcon('PinOffRegular', \"1em\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L6.9 7.6 4.02 8.75a1 1 0 0 0-.34 1.64L6.3 13 3 16.3v.7h.7L7 13.7l2.61 2.62a1 1 0 0 0 1.64-.34l1.15-2.88 4.75 4.75a.5.5 0 0 0 .7-.7l-15-15Zm8.78 10.18-1.31 3.28-5.93-5.93 3.28-1.3 3.96 3.95Zm1.33-1.62-.08.04.74.75 3.24-1.62a2 2 0 0 0 .52-3.2l-4.05-4.06a2 2 0 0 0-3.2.52L8.5 6.38l.75.74.04-.08 1.73-3.45a1 1 0 0 1 1.6-.26l4.05 4.05a1 1 0 0 1-.26 1.6l-3.45 1.73Z\"]);\nexport const PipelineFilled = /*#__PURE__*/createFluentIcon('PipelineFilled', \"1em\", [\"M2 5.5a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Zm13 0v9a1.5 1.5 0 0 0 3 0v-9a1.5 1.5 0 0 0-3 0ZM14 14V6H6v8h8Z\"]);\nexport const PipelineRegular = /*#__PURE__*/createFluentIcon('PipelineRegular', \"1em\", [\"M2 5.5a1.5 1.5 0 1 1 3 0V6h10v-.5a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0V14H5v.5a1.5 1.5 0 0 1-3 0v-9Zm2 0a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9ZM15 7H5v6h10V7Zm2-1.5a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Z\"]);\nexport const PipelineAddFilled = /*#__PURE__*/createFluentIcon('PipelineAddFilled', \"1em\", [\"M2 5.5a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Zm12 3.52A5.5 5.5 0 0 0 9.02 14H6V6h8v3.02Zm1-3.52v3.52c1.13.1 2.17.55 3 1.24V5.5a1.5 1.5 0 0 0-3 0Zm4 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const PipelineAddRegular = /*#__PURE__*/createFluentIcon('PipelineAddRegular', \"1em\", [\"M2 5.5a1.5 1.5 0 1 1 3 0V6h10v-.5a1.5 1.5 0 0 1 3 0v4.76a5.5 5.5 0 0 0-1-.66V5.5a.5.5 0 0 0-1 0v3.7c-.32-.08-.66-.15-1-.18V7H5v6h4.2c-.08.32-.15.66-.18 1H5v.5a1.5 1.5 0 0 1-3 0v-9Zm2 0a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Zm15 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const PipelineArrowCurveDownFilled = /*#__PURE__*/createFluentIcon('PipelineArrowCurveDownFilled', \"1em\", [\"M1 5.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm6.4.9-.9.9V5.74A2.75 2.75 0 0 0 3.75 3H3.5a.5.5 0 1 0 0 1h.25c.97 0 1.75.78 1.75 1.75v1.54l-.9-.9a.5.5 0 0 0-.7.71l1.75 1.76a.5.5 0 0 0 .7 0L8.12 7.1a.5.5 0 1 0-.71-.7ZM2 9.74a5.48 5.48 0 0 0 3 1.24v3.52a1.5 1.5 0 0 1-3 0V9.74ZM10.97 6A5.5 5.5 0 0 1 6 10.98V14h8V6h-3.02Zm5.52-2c-.83 0-1.5.67-1.5 1.5v9a1.5 1.5 0 0 0 3 0v-9c0-.83-.67-1.5-1.5-1.5Z\"]);\nexport const PipelineArrowCurveDownRegular = /*#__PURE__*/createFluentIcon('PipelineArrowCurveDownRegular', \"1em\", [\"M10.98 6c-.03.34-.1.68-.18 1H15v6H5v-2.02c-.35-.03-.68-.1-1-.19v3.71a.5.5 0 0 1-1 0v-4.1c-.37-.19-.7-.4-1-.66v4.76a1.5 1.5 0 0 0 3 0V14h10v.5a1.5 1.5 0 0 0 3 0v-9a1.5 1.5 0 0 0-3 0V6h-4.02Zm5.52-1c.28 0 .5.22.5.5v9a.5.5 0 0 1-1 0v-9c0-.28.22-.5.5-.5Zm-11-4a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm2.6 5.4c.2.2.2.5 0 .7L6.37 8.85a.5.5 0 0 1-.7 0L3.9 7.1a.5.5 0 1 1 .7-.7l.9.9V5.74C5.5 4.78 4.72 4 3.75 4H3.5a.5.5 0 1 1 0-1h.25A2.75 2.75 0 0 1 6.5 5.75v1.54l.9-.9c.2-.19.51-.19.7 0Z\"]);\nexport const PipelinePlayFilled = /*#__PURE__*/createFluentIcon('PipelinePlayFilled', \"1em\", [\"M2 5.5a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Zm12 3.52A5.5 5.5 0 0 0 9.02 14H6V6h8v3.02Zm1-3.52v3.52c1.13.1 2.17.55 3 1.24V5.5a1.5 1.5 0 0 0-3 0Zm4 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const PipelinePlayRegular = /*#__PURE__*/createFluentIcon('PipelinePlayRegular', \"1em\", [\"M2 5.5a1.5 1.5 0 1 1 3 0V6h10v-.5a1.5 1.5 0 0 1 3 0v4.76a5.5 5.5 0 0 0-1-.66V5.5a.5.5 0 0 0-1 0v3.7c-.32-.08-.66-.15-1-.18V7H5v6h4.2c-.08.32-.15.66-.18 1H5v.5a1.5 1.5 0 0 1-3 0v-9Zm2 0a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Zm15 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const PivotFilled = /*#__PURE__*/createFluentIcon('PivotFilled', \"1em\", [\"M3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.59a1.5 1.5 0 0 1 .35-1.56l1-1a1.5 1.5 0 0 1 2.47.56h.59a.5.5 0 0 0 .5-.5v-.59a1.5 1.5 0 0 1-.56-2.47l1-1a1.5 1.5 0 0 1 1.56-.35V5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5ZM6 5h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Zm3 1a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V6ZM7 9a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h1Zm9.85 2.15a.5.5 0 0 0-.7 0l-1 1a.5.5 0 0 0 .7.7l.15-.14v1.79c0 .83-.67 1.5-1.5 1.5h-1.8l.15-.15a.5.5 0 0 0-.7-.7l-1 1a.5.5 0 0 0 0 .7l1 1a.5.5 0 0 0 .7-.7l-.14-.15h1.79a2.5 2.5 0 0 0 2.5-2.5v-1.8l.15.15a.5.5 0 0 0 .7-.7l-1-1Z\"]);\nexport const PivotRegular = /*#__PURE__*/createFluentIcon('PivotRegular', \"1em\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h4.59a1.5 1.5 0 0 0 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v4.59a1.5 1.5 0 0 0-1 0V5.5c0-.83-.67-1.5-1.5-1.5h-9ZM6 5a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6Zm4 0a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-4ZM6 9a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H6Zm10.85 2.15a.5.5 0 0 0-.7 0l-1 1a.5.5 0 0 0 .7.7l.15-.14v1.79c0 .83-.67 1.5-1.5 1.5h-1.8l.15-.15a.5.5 0 0 0-.7-.7l-1 1a.5.5 0 0 0 0 .7l1 1a.5.5 0 0 0 .7-.7l-.14-.15h1.79a2.5 2.5 0 0 0 2.5-2.5v-1.8l.15.15a.5.5 0 0 0 .7-.7l-1-1Z\"]);\nexport const PlantGrassFilled = /*#__PURE__*/createFluentIcon('PlantGrassFilled', \"1em\", [\"M6.85 3.15h.02l.02.04a7.35 7.35 0 0 1 .47.52c.3.36.7.87 1.12 1.52C9.02 6.06 9.6 7.1 10 8.3a13.95 13.95 0 0 1 2.64-4.6 11.72 11.72 0 0 1 .47-.52l.02-.03.01-.01a.5.5 0 0 1 .86.35v5.1c.25-.52.52-.94.8-1.28a4.97 4.97 0 0 1 1.5-1.28h.01a.5.5 0 0 1 .69.46V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6.5a.5.5 0 0 1 .69-.46h.02a1.34 1.34 0 0 1 .13.07c.1.05.2.12.35.22.28.2.64.5 1.02.99.27.34.54.76.79 1.29V3.5a.5.5 0 0 1 .85-.35Z\"]);\nexport const PlantGrassRegular = /*#__PURE__*/createFluentIcon('PlantGrassRegular', \"1em\", [\"M6.85 3.15h.02l.02.04a7.35 7.35 0 0 1 .47.52c.3.36.7.87 1.12 1.52C9.02 6.06 9.6 7.1 10 8.3a13.95 13.95 0 0 1 2.64-4.6 11.72 11.72 0 0 1 .47-.52l.02-.03.01-.01a.5.5 0 0 1 .86.35v5.1c.25-.52.52-.94.8-1.28a4.97 4.97 0 0 1 1.5-1.28h.01a.5.5 0 0 1 .69.46V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6.5a.5.5 0 0 1 .69-.46h.02a1.34 1.34 0 0 1 .13.07c.1.05.2.12.35.22.28.2.64.5 1.02.99.27.34.54.76.79 1.29V3.5a.5.5 0 0 1 .85-.35ZM4 7.47V14c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.47a4.5 4.5 0 0 0-.42.46c-.62.8-1.34 2.2-1.58 4.62a.5.5 0 0 1-1-.05V4.86c-.2.26-.42.57-.64.91a11.65 11.65 0 0 0-1.86 4.8.5.5 0 0 1-1 0 11.64 11.64 0 0 0-1.86-4.8c-.22-.34-.44-.65-.64-.91v7.64a.5.5 0 0 1-1 .05c-.24-2.42-.96-3.83-1.58-4.62A4.5 4.5 0 0 0 4 7.47Z\"]);\nexport const PlantRagweedFilled = /*#__PURE__*/createFluentIcon('PlantRagweedFilled', \"1em\", [\"M7.5 4.5a2.5 2.5 0 1 1 4.94.55 2 2 0 0 1 .88 3.45A2 2 0 0 1 12 12h-1.5v4.3l3.15-3.15a.5.5 0 0 1 .7.7l-3.85 3.86v.79a.5.5 0 0 1-1 0v-.8l-3.85-3.85a.5.5 0 0 1 .7-.7l3.15 3.14V12H8a2 2 0 0 1-1.32-3.5 2 2 0 0 1 .88-3.45 2.5 2.5 0 0 1-.06-.55Z\"]);\nexport const PlantRagweedRegular = /*#__PURE__*/createFluentIcon('PlantRagweedRegular', \"1em\", [\"M10 2a2.5 2.5 0 0 0-2.44 3.05 2 2 0 0 0-.88 3.45A2 2 0 0 0 8 12h1.5v4.3l-3.15-3.15a.5.5 0 0 0-.7.7l3.85 3.86v.79a.5.5 0 0 0 1 0v-.8l3.85-3.85a.5.5 0 0 0-.7-.7l-3.15 3.14V12H12a2 2 0 0 0 1.32-3.5 2 2 0 0 0-.88-3.45A2.5 2.5 0 0 0 10 2Zm2 9H8a1 1 0 1 1 0-2 .5.5 0 0 0 0-1 1 1 0 0 1 0-2h.27a.5.5 0 0 0 .43-.75 1.5 1.5 0 1 1 2.6 0 .5.5 0 0 0 .43.75H12a1 1 0 1 1 0 2 .5.5 0 0 0 0 1 1 1 0 1 1 0 2Z\"]);\nexport const PlayFilled = /*#__PURE__*/createFluentIcon('PlayFilled', \"1em\", [\"M17.22 8.68a1.5 1.5 0 0 1 0 2.63l-10 5.5A1.5 1.5 0 0 1 5 15.5v-11A1.5 1.5 0 0 1 7.22 3.2l10 5.5Z\"]);\nexport const PlayRegular = /*#__PURE__*/createFluentIcon('PlayRegular', \"1em\", [\"M17.22 8.69a1.5 1.5 0 0 1 0 2.62l-10 5.5A1.5 1.5 0 0 1 5 15.5v-11A1.5 1.5 0 0 1 7.22 3.2l10 5.5Zm-.48 1.75a.5.5 0 0 0 0-.88l-10-5.5A.5.5 0 0 0 6 4.5v11c0 .38.4.62.74.44l10-5.5Z\"]);\nexport const PlayCircleFilled = /*#__PURE__*/createFluentIcon('PlayCircleFilled', \"1em\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm6-2.17v4.34c0 .57.63.94 1.13.65l4.12-2.39a.5.5 0 0 0 0-.86L9.13 7.18A.75.75 0 0 0 8 7.83Z\"]);\nexport const PlayCircleRegular = /*#__PURE__*/createFluentIcon('PlayCircleRegular', \"1em\", [\"M9.13 7.18A.75.75 0 0 0 8 7.83v4.34c0 .57.63.94 1.13.65l4.12-2.39a.5.5 0 0 0 0-.86L9.13 7.18ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\"]);\nexport const PlayCircleHintFilled = /*#__PURE__*/createFluentIcon('PlayCircleHintFilled', \"1em\", [\"M10 2c-.53 0-1.06.05-1.56.15a.5.5 0 0 0 .2.98 7.04 7.04 0 0 1 2.73 0 .5.5 0 0 0 .2-.98C11.05 2.05 10.52 2 10 2Zm4.45 1.35a.5.5 0 0 0-.56.83 7.04 7.04 0 0 1 1.93 1.93.5.5 0 1 0 .83-.56 8.04 8.04 0 0 0-2.2-2.2Zm-8.34.83a.5.5 0 1 0-.56-.83 8.04 8.04 0 0 0-2.2 2.2.5.5 0 1 0 .83.56A7.04 7.04 0 0 1 6.1 4.18ZM3.13 8.63a.5.5 0 0 0-.98-.2 8.04 8.04 0 0 0 0 3.13.5.5 0 0 0 .98-.2 7.04 7.04 0 0 1 0-2.73Zm14.72-.2a.5.5 0 1 0-.98.2 7.04 7.04 0 0 1 0 2.74.5.5 0 1 0 .98.2 8.03 8.03 0 0 0 0-3.13ZM4.18 13.9a.5.5 0 1 0-.83.56 8.04 8.04 0 0 0 2.2 2.2.5.5 0 1 0 .56-.83 7.04 7.04 0 0 1-1.93-1.93Zm12.47.56a.5.5 0 0 0-.83-.56 7.04 7.04 0 0 1-1.93 1.93.5.5 0 1 0 .56.83 8.04 8.04 0 0 0 2.2-2.2Zm-8.02 2.42a.5.5 0 1 0-.2.98 8.03 8.03 0 0 0 3.13 0 .5.5 0 0 0-.2-.98 7.04 7.04 0 0 1-2.73 0ZM16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0ZM9.13 7.18A.75.75 0 0 0 8 7.83v4.34c0 .57.63.94 1.13.65l4.12-2.39a.5.5 0 0 0 0-.86L9.13 7.18Z\"]);\nexport const PlayCircleHintRegular = /*#__PURE__*/createFluentIcon('PlayCircleHintRegular', \"1em\", [\"M10 2c-.53 0-1.06.05-1.56.15a.5.5 0 0 0 .2.98 7.04 7.04 0 0 1 2.73 0 .5.5 0 0 0 .2-.98C11.05 2.05 10.52 2 10 2Zm4.45 1.35a.5.5 0 0 0-.56.83 7.04 7.04 0 0 1 1.93 1.93.5.5 0 1 0 .83-.56 8.04 8.04 0 0 0-2.2-2.2Zm-8.34.83a.5.5 0 1 0-.56-.83 8.04 8.04 0 0 0-2.2 2.2.5.5 0 1 0 .83.56A7.04 7.04 0 0 1 6.1 4.18ZM3.13 8.63a.5.5 0 0 0-.98-.2 8.04 8.04 0 0 0 0 3.13.5.5 0 0 0 .98-.2 7.04 7.04 0 0 1 0-2.73Zm14.72-.2a.5.5 0 1 0-.98.2 7.04 7.04 0 0 1 0 2.74.5.5 0 1 0 .98.2 8.03 8.03 0 0 0 0-3.13ZM4.18 13.9a.5.5 0 1 0-.83.56 8.04 8.04 0 0 0 2.2 2.2.5.5 0 1 0 .56-.83 7.04 7.04 0 0 1-1.93-1.93Zm12.47.56a.5.5 0 0 0-.83-.56 7.04 7.04 0 0 1-1.93 1.93.5.5 0 1 0 .56.83 8.04 8.04 0 0 0 2.2-2.2Zm-8.02 2.42a.5.5 0 1 0-.2.98 8.03 8.03 0 0 0 3.13 0 .5.5 0 0 0-.2-.98 7.04 7.04 0 0 1-2.73 0ZM8 7.83c0-.57.63-.94 1.13-.65l4.12 2.39a.5.5 0 0 1 0 .86l-4.12 2.39A.75.75 0 0 1 8 12.17V7.83Z\"]);\nexport const PlaySettingsFilled = /*#__PURE__*/createFluentIcon('PlaySettingsFilled', \"1em\", [\"M17.22 8.68a1.5 1.5 0 0 1 0 2.63L12 14.2A5.5 5.5 0 0 0 5 9.2V4.5a1.5 1.5 0 0 1 2.23-1.32l10 5.5ZM4.06 11.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 4 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 9 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55ZM6.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const PlaySettingsRegular = /*#__PURE__*/createFluentIcon('PlaySettingsRegular', \"1em\", [\"M17.22 8.69a1.5 1.5 0 0 1 0 2.62l-5.23 2.88a5.5 5.5 0 0 0-.16-1.05l4.9-2.7a.5.5 0 0 0 0-.88l-9.99-5.5A.5.5 0 0 0 6 4.5v4.52c-.34.03-.68.1-1 .19V4.5a1.5 1.5 0 0 1 2.22-1.32l10 5.5ZM4.06 11.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 4 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 9 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55ZM6.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const PlayingCardsFilled = /*#__PURE__*/createFluentIcon('PlayingCardsFilled', \"1em\", [\"M5.07 13a2 2 0 0 0 1.41 2.46l5.46 1.47a2 2 0 0 0 2.45-1.41L16.93 6a2 2 0 0 0-1.41-2.46l-5.46-1.47A2 2 0 0 0 7.6 3.5L5.07 13ZM5 4v5.38l1.77-6.64c.07-.27.19-.52.34-.74H7a2 2 0 0 0-2 2ZM2.67 5.5 4 10.48V4a3 3 0 0 1 .16-.96l-.08.02A2 2 0 0 0 2.67 5.5ZM13 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-3 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const PlayingCardsRegular = /*#__PURE__*/createFluentIcon('PlayingCardsRegular', \"1em\", [\"M5.07 13a2 2 0 0 0 1.41 2.46l5.46 1.47a2 2 0 0 0 2.45-1.41L16.93 6a2 2 0 0 0-1.41-2.46l-5.46-1.47A2 2 0 0 0 7.6 3.5L5.07 13Zm1.67 1.5a1 1 0 0 1-.7-1.23l2.53-9.52a1 1 0 0 1 1.23-.71l5.46 1.47a1 1 0 0 1 .7 1.23l-2.53 9.52a1 1 0 0 1-1.23.7L6.74 14.5ZM4 10.47 2.67 5.51a2 2 0 0 1 1.41-2.45l.08-.02A3 3 0 0 0 4 4v.19a1 1 0 0 0-.36 1.06L4 6.6v3.86Zm1-1.09V4c0-1.1.9-2 2-2h.1a2.5 2.5 0 0 0-.33.74l-.08.31A1 1 0 0 0 6 4v1.64L5 9.38ZM13 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-3 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const PlugConnectedFilled = /*#__PURE__*/createFluentIcon('PlugConnectedFilled', \"1em\", [\"M17.78 3.28a.75.75 0 0 0-1.06-1.06l-2.45 2.45a4.04 4.04 0 0 0-5.12.48l-.3.3a1.49 1.49 0 0 0 0 2.1l3.6 3.6c.58.59 1.52.59 2.1 0l.3-.3a4.04 4.04 0 0 0 .48-5.12l2.45-2.45ZM7.55 8.85a1.49 1.49 0 0 0-2.1 0l-.3.3a4.04 4.04 0 0 0-.48 5.12l-2.45 2.45a.75.75 0 1 0 1.06 1.06l2.45-2.45a4.04 4.04 0 0 0 5.12-.48l.3-.3c.59-.58.59-1.52 0-2.1l-3.6-3.6Z\"]);\nexport const PlugConnectedRegular = /*#__PURE__*/createFluentIcon('PlugConnectedRegular', \"1em\", [\"M17.85 2.85a.5.5 0 0 0-.7-.7L14.48 4.8a4.04 4.04 0 0 0-5.33.34l-.3.3a1.49 1.49 0 0 0 0 2.1l3.6 3.6c.58.59 1.52.59 2.1 0l.3-.3a4.04 4.04 0 0 0 .34-5.33l2.66-2.67Zm-4 7.6c-.2.19-.5.19-.7 0l-3.6-3.6c-.19-.2-.19-.5 0-.7l.3-.3a3.04 3.04 0 0 1 4.3 4.3l-.3.3Zm-6.3-1.6a1.49 1.49 0 0 0-2.1 0l-.3.3a4.04 4.04 0 0 0-.34 5.33l-2.66 2.67a.5.5 0 0 0 .7.7l2.67-2.66a4.04 4.04 0 0 0 5.33-.34l.3-.3c.59-.58.59-1.52 0-2.1l-3.6-3.6Zm-1.4.7c.2-.19.5-.19.7 0l3.6 3.6c.19.2.19.5 0 .7l-.3.3a3.04 3.04 0 1 1-4.3-4.3l.3-.3Z\"]);\nexport const PlugConnectedAddFilled = /*#__PURE__*/createFluentIcon('PlugConnectedAddFilled', \"1em\", [\"M17.78 3.28a.75.75 0 0 0-1.06-1.06l-2.45 2.45a4.04 4.04 0 0 0-5.12.48l-.3.3a1.49 1.49 0 0 0 0 2.1l2.46 2.47a5.48 5.48 0 0 1 4.55-.85 4.04 4.04 0 0 0-.53-3.44l2.45-2.45ZM7.55 8.85l2.47 2.46a5.48 5.48 0 0 0-.85 4.55 4.04 4.04 0 0 1-3.44-.53l-2.45 2.45a.75.75 0 0 1-1.06-1.06l2.45-2.45a4.04 4.04 0 0 1 .48-5.12l.3-.3a1.49 1.49 0 0 1 2.1 0Zm9.45 9.4a4.5 4.5 0 1 1-5-7.5 4.5 4.5 0 0 1 5 7.5Zm-2.15-6.1a.5.5 0 0 0-.85.35V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5a.5.5 0 0 0-.15-.35Z\"]);\nexport const PlugConnectedAddRegular = /*#__PURE__*/createFluentIcon('PlugConnectedAddRegular', \"1em\", [\"M17.96 2.3a.5.5 0 0 0-.82-.15l-2.7 2.7a4.04 4.04 0 0 0-5.33.33l-.6.61a1.05 1.05 0 0 0 0 1.49l2.76 2.76c.28-.2.58-.37.89-.52L9.52 6.88a.5.5 0 0 1 0-.7l.3-.3a3.03 3.03 0 0 1 4.29 0v.02a3.04 3.04 0 0 1 .73 3.11c.34.02.68.07 1 .16a4.03 4.03 0 0 0-.69-3.62l2.7-2.7a.5.5 0 0 0 .11-.54ZM7.28 8.5l2.77 2.77c-.2.28-.38.57-.53.88L6.9 9.52a.49.49 0 0 0-.7 0l-.3.3a3.04 3.04 0 0 0 0 4.29h.01a3.03 3.03 0 0 0 3.11.73c.02.35.07.68.15 1a4.03 4.03 0 0 1-3.6-.69l-2.7 2.7a.5.5 0 1 1-.71-.7l2.7-2.7a4.03 4.03 0 0 1 .33-5.34l.3-.3.31-.31a1.05 1.05 0 0 1 1.49 0ZM17 18.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48Zm-2.15-6.1a.5.5 0 0 0-.85.36V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5a.5.5 0 0 0-.15-.35Z\"]);\nexport const PlugConnectedCheckmarkFilled = /*#__PURE__*/createFluentIcon('PlugConnectedCheckmarkFilled', \"1em\", [\"M17.78 3.28a.75.75 0 0 0-1.06-1.06l-2.45 2.45a4.04 4.04 0 0 0-5.12.48l-.3.3a1.49 1.49 0 0 0 0 2.1l2.46 2.47a5.48 5.48 0 0 1 4.55-.85 4.04 4.04 0 0 0-.53-3.44l2.45-2.45ZM7.55 8.85l2.47 2.46a5.48 5.48 0 0 0-.85 4.55 4.04 4.04 0 0 1-3.44-.53l-2.45 2.45a.75.75 0 0 1-1.06-1.06l2.45-2.45a4.04 4.04 0 0 1 .48-5.12l.3-.3a1.49 1.49 0 0 1 2.1 0ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const PlugConnectedCheckmarkRegular = /*#__PURE__*/createFluentIcon('PlugConnectedCheckmarkRegular', \"1em\", [\"M17.85 2.85a.5.5 0 0 0-.7-.7L14.48 4.8a4.04 4.04 0 0 0-5.33.34l-.3.3a1.49 1.49 0 0 0 0 2.1l2.46 2.47c.28-.2.58-.38.9-.52L9.55 6.85c-.19-.2-.19-.5 0-.7l.3-.3a3.04 3.04 0 0 1 5.01 3.16c.35.02.68.08 1 .16.37-1.23.15-2.6-.67-3.65l2.66-2.67Zm-10.3 6 2.47 2.46c-.2.28-.38.58-.52.9L6.85 9.55c-.2-.19-.5-.19-.7 0l-.3.3a3.04 3.04 0 0 0 3.16 5.01c.02.35.08.68.16 1-1.23.37-2.6.15-3.65-.67l-2.67 2.66a.5.5 0 0 1-.7-.7l2.66-2.67a4.04 4.04 0 0 1 .34-5.33l.3-.3a1.49 1.49 0 0 1 2.1 0ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const PlugConnectedSettingsFilled = /*#__PURE__*/createFluentIcon('PlugConnectedSettingsFilled', \"1em\", [\"M17.78 3.28a.75.75 0 0 0-1.06-1.06l-2.45 2.45a4.04 4.04 0 0 0-5.12.48l-.3.3a1.49 1.49 0 0 0 0 2.1l2.46 2.47a5.48 5.48 0 0 1 4.55-.85 4.04 4.04 0 0 0-.53-3.44l2.45-2.45ZM7.55 8.85l2.47 2.46a5.48 5.48 0 0 0-.85 4.55 4.04 4.04 0 0 1-3.44-.53l-2.45 2.45a.75.75 0 0 1-1.06-1.06l2.45-2.45a4.04 4.04 0 0 1 .48-5.12l.3-.3a1.49 1.49 0 0 1 2.1 0Zm3.09 5.07a2 2 0 0 0 1.43-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.46-.12Zm2.86.58a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const PlugConnectedSettingsRegular = /*#__PURE__*/createFluentIcon('PlugConnectedSettingsRegular', \"1em\", [\"M17.85 2.85a.5.5 0 0 0-.7-.7L14.48 4.8a4.04 4.04 0 0 0-5.33.34l-.3.3a1.49 1.49 0 0 0 0 2.1l2.46 2.47c.28-.2.58-.38.9-.52L9.55 6.85c-.19-.2-.19-.5 0-.7l.3-.3a3.04 3.04 0 0 1 5.01 3.16c.35.02.68.08 1 .16.37-1.23.15-2.6-.67-3.65l2.66-2.67Zm-10.3 6 2.47 2.46c-.2.28-.38.58-.52.9L6.85 9.55c-.2-.19-.5-.19-.7 0l-.3.3a3.04 3.04 0 0 0 3.16 5.01c.02.35.08.68.16 1-1.23.37-2.6.15-3.65-.67l-2.67 2.66a.5.5 0 0 1-.7-.7l2.66-2.67a4.04 4.04 0 0 1 .34-5.33l.3-.3a1.49 1.49 0 0 1 2.1 0Zm3.09 5.07a2 2 0 0 0 1.43-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.46-.12Zm2.86.58a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const PlugDisconnectedFilled = /*#__PURE__*/createFluentIcon('PlugDisconnectedFilled', \"1em\", [\"M17.78 2.22c.3.3.3.77 0 1.06l-1.45 1.45a4.04 4.04 0 0 1-.48 5.12l-.3.3-.3.31c-.42.41-1.08.41-1.5 0L9.55 6.24a1.05 1.05 0 0 1 0-1.48l.6-.61a4.05 4.05 0 0 1 5.13-.48l1.45-1.45c.3-.3.77-.3 1.06 0Zm-9 6.25c.3.3.3.77 0 1.06L7.51 10.8l1.69 1.7 1.27-1.28a.75.75 0 1 1 1.06 1.06l-1.28 1.28c.48.58.45 1.45-.1 2l-.3.3a4.04 4.04 0 0 1-5.12.47l-1.45 1.45a.75.75 0 0 1-1.06-1.06l1.45-1.45a4.04 4.04 0 0 1 .48-5.12l.3-.3a1.49 1.49 0 0 1 2-.1l1.27-1.28c.3-.3.77-.3 1.06 0Z\"]);\nexport const PlugDisconnectedRegular = /*#__PURE__*/createFluentIcon('PlugDisconnectedRegular', \"1em\", [\"M17.85 2.15c.2.2.2.5 0 .7L16.2 4.52a4.04 4.04 0 0 1-.34 5.33l-.3.3-.3.31c-.42.41-1.08.41-1.5 0L9.55 6.24a1.05 1.05 0 0 1 0-1.48l.6-.61a4.04 4.04 0 0 1 5.34-.34l1.67-1.66c.2-.2.5-.2.7 0Zm-2.71 2.7a3.04 3.04 0 0 0-4.29 0l-.3.3c-.19.2-.19.5 0 .7l3.6 3.6c.2.19.5.19.7 0l.3-.3a3.04 3.04 0 0 0 0-4.29l-.01-.01Zm-5.79 3.8c.2.2.2.5 0 .7L7.71 11 9 12.3l1.65-1.65a.5.5 0 0 1 .7.7L9.71 13l.44.45c.59.58.59 1.52 0 2.1l-.3.3a4.04 4.04 0 0 1-5.33.34l-1.67 1.66a.5.5 0 0 1-.7-.7l1.66-1.67a4.04 4.04 0 0 1 .34-5.33l.3-.3a1.49 1.49 0 0 1 2.1 0l.45.44 1.65-1.64c.2-.2.5-.2.7 0Zm-4.5 6.5a3.04 3.04 0 0 0 4.3 0l.3-.3c.19-.2.19-.5 0-.7l-3.6-3.6c-.2-.19-.5-.19-.7 0l-.3.3a3.04 3.04 0 0 0 0 4.3Z\"]);\nexport const PointScanFilled = /*#__PURE__*/createFluentIcon('PointScanFilled', \"1em\", [\"M9 2.5a.5.5 0 0 0-1 0v4.02A5 5 0 0 0 3.52 11H8V6.52a5.07 5.07 0 0 1 1 0V2.5ZM2.5 11h1.02a5.06 5.06 0 0 0 0 1H2.5a.5.5 0 0 1 0-1ZM8 17.5v-1.02a5.07 5.07 0 0 0 1 0v1.02a.5.5 0 0 1-1 0Zm5.48-5.5h4.02a.5.5 0 0 0 0-1h-4.02a5.07 5.07 0 0 1 0 1H9v4.48A5 5 0 0 0 13.48 12ZM8 16.48A5 5 0 0 1 3.52 12H8v4.48ZM9 11h4.48A5 5 0 0 0 9 6.52V11Z\"]);\nexport const PointScanRegular = /*#__PURE__*/createFluentIcon('PointScanRegular', \"1em\", [\"M8.5 2c.28 0 .5.22.5.5v4.02A5 5 0 0 1 13.48 11h4.02a.5.5 0 0 1 0 1h-4.02A5 5 0 0 1 9 16.48v1.02a.5.5 0 0 1-1 0v-1.02A5 5 0 0 1 3.52 12H2.5a.5.5 0 0 1 0-1h1.02A5 5 0 0 1 8 6.52V2.5c0-.28.22-.5.5-.5ZM4.53 12A4 4 0 0 0 8 15.47V12H4.53ZM8 11V7.53A4 4 0 0 0 4.53 11H8Zm1 1v3.47A4 4 0 0 0 12.47 12H9Zm3.47-1A4 4 0 0 0 9 7.53V11h3.47Z\"]);\nexport const PollFilled = /*#__PURE__*/createFluentIcon('PollFilled', \"1em\", [\"M10 2a2 2 0 0 0-2 2v12a2 2 0 1 0 4 0V4a2 2 0 0 0-2-2Zm-6 8a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0v-4a2 2 0 0 0-2-2Zm12-4a2 2 0 0 0-2 2v8a2 2 0 1 0 4 0V8a2 2 0 0 0-2-2Z\"]);\nexport const PollRegular = /*#__PURE__*/createFluentIcon('PollRegular', \"1em\", [\"M8 4a2 2 0 1 1 4 0v12a2 2 0 1 1-4 0V4Zm2-1a1 1 0 0 0-1 1v12a1 1 0 1 0 2 0V4a1 1 0 0 0-1-1Zm-8 9a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0v-4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Zm12-5a2 2 0 0 0-2 2v8a2 2 0 1 0 4 0V8a2 2 0 0 0-2-2Zm-1 2a1 1 0 1 1 2 0v8a1 1 0 1 1-2 0V8Z\"]);\nexport const PollHorizontalFilled = /*#__PURE__*/createFluentIcon('PollHorizontalFilled', \"1em\", [\"M18 10a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h12a2 2 0 0 0 2-2Zm-8-6a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h4a2 2 0 0 0 2-2Zm4 12a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h8a2 2 0 0 0 2-2Z\"]);\nexport const PollHorizontalRegular = /*#__PURE__*/createFluentIcon('PollHorizontalRegular', \"1em\", [\"M16 8a2 2 0 1 1 0 4H4a2 2 0 1 1 0-4h12Zm1 2a1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h12a1 1 0 0 0 1-1ZM8 2a2 2 0 1 1 0 4H4a2 2 0 1 1 0-4h4Zm1 2a1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm5 12a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h8a2 2 0 0 0 2-2Zm-2-1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2h8Z\"]);\nexport const PortHdmiFilled = /*#__PURE__*/createFluentIcon('PortHdmiFilled', \"1em\", [\"M4.85 7.44A1.5 1.5 0 0 1 5.91 7h8.18c.4 0 .78.16 1.06.44l2.41 2.41c.28.28.44.67.44 1.06v.59c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 11.5v-.59c0-.4.16-.78.44-1.06l2.41-2.41ZM6.5 9.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const PortHdmiRegular = /*#__PURE__*/createFluentIcon('PortHdmiRegular', \"1em\", [\"M4.85 7.44A1.5 1.5 0 0 1 5.91 7h8.18c.4 0 .78.16 1.06.44l2.41 2.41c.28.28.44.67.44 1.06v.59c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 11.5v-.59c0-.4.16-.78.44-1.06l2.41-2.41ZM5.91 8a.5.5 0 0 0-.35.15l-2.41 2.41a.5.5 0 0 0-.15.35v.59c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5v-.59a.5.5 0 0 0-.15-.35l-2.41-2.41a.5.5 0 0 0-.35-.15H5.9ZM6 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 6 10Z\"]);\nexport const PortMicroUsbFilled = /*#__PURE__*/createFluentIcon('PortMicroUsbFilled', \"1em\", [\"M6.43 8.3c.26-.2.58-.3.9-.3h5.34c.32 0 .64.1.9.3l1.33 1A1.5 1.5 0 0 1 14 12H6a1.5 1.5 0 0 1-.9-2.7l1.33-1Z\"]);\nexport const PortMicroUsbRegular = /*#__PURE__*/createFluentIcon('PortMicroUsbRegular', \"1em\", [\"M6.43 8.3c.26-.2.58-.3.9-.3h5.34c.32 0 .64.1.9.3l1.33 1A1.5 1.5 0 0 1 14 12H6a1.5 1.5 0 0 1-.9-2.7l1.33-1Zm.9.7a.5.5 0 0 0-.3.1l-1.33 1a.5.5 0 0 0 .3.9h8a.5.5 0 0 0 .3-.9l-1.33-1a.5.5 0 0 0-.3-.1H7.33Z\"]);\nexport const PortUsbAFilled = /*#__PURE__*/createFluentIcon('PortUsbAFilled', \"1em\", [\"M4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11Zm0 1.5h11V10h-11V8.5Z\"]);\nexport const PortUsbARegular = /*#__PURE__*/createFluentIcon('PortUsbARegular', \"1em\", [\"M4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11ZM4 8.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5V10H4V8.5Z\"]);\nexport const PortUsbCFilled = /*#__PURE__*/createFluentIcon('PortUsbCFilled', \"1em\", [\"M4.5 10c0-1.1.9-2 2-2h7a2 2 0 1 1 0 4h-7a2 2 0 0 1-2-2Z\"]);\nexport const PortUsbCRegular = /*#__PURE__*/createFluentIcon('PortUsbCRegular', \"1em\", [\"M4.5 10c0-1.1.9-2 2-2h7a2 2 0 1 1 0 4h-7a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2h-7Z\"]);\nexport const PositionBackwardFilled = /*#__PURE__*/createFluentIcon('PositionBackwardFilled', \"1em\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V6H9.5A3.5 3.5 0 0 0 6 9.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6ZM9.5 7A2.5 2.5 0 0 0 7 9.5v6A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7h-6ZM8 9.5C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);\nexport const PositionBackwardRegular = /*#__PURE__*/createFluentIcon('PositionBackwardRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H6v-1.7l-.7.7h-.8a1.5 1.5 0 0 1-.65-.15L6 9.71V9.5c0-.57.14-1.11.38-1.59l-3.23 3.24A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3h.94c.23 0 .45.05.65.15L7.9 6.38A3.49 3.49 0 0 1 9.5 6h.2l2.15-2.15c.1.2.15.42.15.65v.8l-.7.7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6ZM3 4.5C3 3.67 3.67 3 4.5 3h.65L3 5.15V4.5Zm0 2.06L6.56 3h1.59L3 8.15V6.56ZM7 9.5A2.5 2.5 0 0 1 9.5 7h6A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5v-6ZM9.5 8C8.67 8 8 8.67 8 9.5v6c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5h-6Z\"]);\nexport const PositionForwardFilled = /*#__PURE__*/createFluentIcon('PositionForwardFilled', \"1em\", [\"M7 14v1.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H14v1h1.5c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5V14H7ZM2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 10.5v-6Z\"]);\nexport const PositionForwardRegular = /*#__PURE__*/createFluentIcon('PositionForwardRegular', \"1em\", [\"M7 14v1.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H14v1h1.5c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5V14H7ZM2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 10.5v-6ZM4.5 3C3.67 3 3 3.67 3 4.5v.65L5.15 3H4.5Zm2.06 0L3 6.56v1.59L8.15 3H6.56ZM3 10.5c0 .23.05.45.15.65l8-8A1.5 1.5 0 0 0 10.5 3h-.94L3 9.56v.94ZM4.5 12h.8L12 5.3v-.8c0-.23-.05-.45-.15-.65l-8 8c.2.1.42.15.65.15Zm5.2 0h.8c.83 0 1.5-.67 1.5-1.5v-.8L9.7 12Zm-1.4 0L12 8.3V6.7L6.7 12h1.6Z\"]);\nexport const PositionToBackFilled = /*#__PURE__*/createFluentIcon('PositionToBackFilled', \"1em\", [\"M12 14c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3ZM5 9h1.3C7.8 9 9 7.8 9 6.3V5h3.5A2.5 2.5 0 0 1 15 7.5V11h-1.3a2.7 2.7 0 0 0-2.7 2.7V15H7.5A2.5 2.5 0 0 1 5 12.5V9ZM1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z\"]);\nexport const PositionToBackRegular = /*#__PURE__*/createFluentIcon('PositionToBackRegular', \"1em\", [\"M12 14c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3ZM5 9v3.5A2.5 2.5 0 0 0 7.5 15H11v-1H9.7l1.67-1.66c.23-.4.57-.74.97-.97L14 9.7V11h1V7.5A2.5 2.5 0 0 0 12.5 5H9v1h1.3L8.62 7.66c-.23.4-.57.74-.97.97L6 10.3V9H5Zm6.7-3h.8c.23 0 .45.05.65.15l-7 7A1.5 1.5 0 0 1 6 12.5v-.8L11.7 6Zm-4.2 8a1.5 1.5 0 0 1-.65-.15l7-7c.1.2.15.42.15.65v.8L8.3 14h-.8ZM1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z\"]);\nexport const PositionToFrontFilled = /*#__PURE__*/createFluentIcon('PositionToFrontFilled', \"1em\", [\"M1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v1h-.5c-.17 0-.34.01-.5.04V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h1.04C4 7.16 4 7.33 4 7.5V8H3a2 2 0 0 1-2-2V3Zm11 13v1c0 1.1.9 2 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2h-1v.5c0 .17-.01.34-.04.5H17a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-1.04c-.16.03-.33.04-.5.04H12ZM5 7.5A2.5 2.5 0 0 1 7.5 5h5A2.5 2.5 0 0 1 15 7.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 12.5v-5Z\"]);\nexport const PositionToFrontRegular = /*#__PURE__*/createFluentIcon('PositionToFrontRegular', \"1em\", [\"M3 1a2 2 0 0 0-2 2v3c0 1.1.9 2 2 2h1v-.5c0-.17.01-.34.04-.5H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v1.04C7.16 4 7.33 4 7.5 4H8V3a2 2 0 0 0-2-2H3Zm9 16v-1h.5c.17 0 .34-.01.5-.04V17a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-1.04c.03-.16.04-.33.04-.5V12h1a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2ZM5 7.5A2.5 2.5 0 0 1 7.5 5h5A2.5 2.5 0 0 1 15 7.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 12.5v-5Zm2.28-1.48a1.5 1.5 0 0 0-1.26 1.26l1.26-1.26ZM6 10.29 10.3 6H8.7L6 8.7v1.6ZM11.7 6 6 11.7v.8c0 .23.05.45.15.65l7-7A1.5 1.5 0 0 0 12.5 6h-.8Zm-4.2 8h.8L14 8.3v-.8c0-.23-.05-.45-.15-.65l-7 7c.2.1.42.15.65.15Zm2.2 0h1.6l2.7-2.7V9.7L9.7 14Zm3.02-.02a1.5 1.5 0 0 0 1.26-1.26l-1.26 1.26Z\"]);\nexport const PowerFilled = /*#__PURE__*/createFluentIcon('PowerFilled', \"1em\", [\"M10.75 2.5a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0v-6Zm3 1.5a.75.75 0 1 0-.76 1.3A6 6 0 1 1 7 5.3.75.75 0 1 0 6.25 4a7.5 7.5 0 1 0 7.5 0Z\"]);\nexport const PowerRegular = /*#__PURE__*/createFluentIcon('PowerRegular', \"1em\", [\"M10.5 2.5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0v-6ZM13.74 4a.5.5 0 1 0-.5.87 6.5 6.5 0 1 1-6.49 0 .5.5 0 1 0-.5-.87 7.5 7.5 0 1 0 7.5 0Z\"]);\nexport const PredictionsFilled = /*#__PURE__*/createFluentIcon('PredictionsFilled', \"1em\", [\"M14.5 1c.28 0 .5.22.5.5 0 .46.07 1.22.47 1.84.38.6 1.08 1.14 2.53 1.14a.5.5 0 1 1 0 1 3.5 3.5 0 0 0-1.82.73A2.77 2.77 0 0 0 15 8.45a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-.5-.16-1.26-.6-1.88-.44-.6-1.16-1.1-2.4-1.1a.5.5 0 0 1-.5-.5c0-.27.22-.5.5-.5.51 0 1.25 0 1.87-.36.57-.33 1.13-1 1.13-2.61 0-.28.22-.5.5-.5ZM6.15 12.17l-.94 3.4c-.17.61.08 1.34.74 1.63 1.64.73 4.65 1.35 7.97.01a1.43 1.43 0 0 0 .82-1.75l-.98-3.23a6.5 6.5 0 0 1-7.61-.06Zm6.77-9.84c-.04.22-.1.38-.16.5a.97.97 0 0 1-.4.42c-.34.2-.82.23-1.36.23a1.5 1.5 0 1 0 0 2.98c.91 0 1.34.35 1.58.7.3.4.42.95.42 1.3a1.5 1.5 0 0 0 1.61 1.48A5.5 5.5 0 0 1 4.5 6.96a5.48 5.48 0 0 1 8.42-4.63Z\"]);\nexport const PredictionsRegular = /*#__PURE__*/createFluentIcon('PredictionsRegular', \"1em\", [\"M14.5 1c.28 0 .5.22.5.5 0 .46.07 1.22.47 1.84.38.6 1.08 1.14 2.53 1.14a.5.5 0 1 1 0 1 3.5 3.5 0 0 0-1.82.73A2.77 2.77 0 0 0 15 8.45a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-.5-.16-1.26-.6-1.88-.44-.6-1.16-1.1-2.4-1.1a.5.5 0 0 1-.5-.5c0-.27.22-.5.5-.5.51 0 1.25 0 1.87-.36.57-.33 1.13-1 1.13-2.61 0-.28.22-.5.5-.5Zm.04 2.73a2.95 2.95 0 0 1-1.33 1.33 3.53 3.53 0 0 1 1.33 1.48 4.2 4.2 0 0 1 1.52-1.44 3.22 3.22 0 0 1-1.52-1.37Zm-7.26 6.8A4.46 4.46 0 0 1 10 2.5c.9 0 1.74.26 2.44.72a.99.99 0 0 0 .32-.38c.06-.12.12-.28.16-.5A5.5 5.5 0 0 0 4.5 6.96c0 1.67.75 3.16 1.93 4.16l-1.22 4.44c-.17.62.08 1.35.74 1.64 1.64.73 4.65 1.35 7.97.01a1.43 1.43 0 0 0 .82-1.75l-1.26-4.17a.49.49 0 0 0-.03-.07c.45-.36.85-.8 1.16-1.28a1.53 1.53 0 0 1-1.01-.3 4.5 4.5 0 0 1-6.32.89Zm5.3 1.26 1.2 3.96c.07.24-.05.46-.23.54a9.36 9.36 0 0 1-7.19 0c-.14-.06-.24-.24-.18-.47l1.12-4.1a5.5 5.5 0 0 0 5.28.07Z\"]);\nexport const PremiumFilled = /*#__PURE__*/createFluentIcon('PremiumFilled', \"1em\", [\"M5.5 2.75a.75.75 0 0 0-.66.39l-2.75 5c-.15.27-.11.6.08.84l7.25 8.75a.75.75 0 0 0 1.16 0l7.25-8.75c.2-.24.23-.57.08-.84l-2.75-5a.75.75 0 0 0-.66-.39h-9ZM4.16 7.5l1.78-3.25h1.5L6.31 7.5H4.16ZM6.14 9l1.93 4.75L4.14 9h2ZM10 14.48 7.76 9h4.39l-2.16 5.48ZM7.89 7.5l1.14-3.25h1.95l1.2 3.25H7.88Zm5.88 0-1.2-3.25h1.49l1.78 3.25h-2.07Zm0 1.5h2.1l-4.01 4.83L13.76 9Z\"]);\nexport const PremiumRegular = /*#__PURE__*/createFluentIcon('PremiumRegular', \"1em\", [\"M5.5 3a.5.5 0 0 0-.43.24l-3 5a.5.5 0 0 0 .05.58l7.5 9a.5.5 0 0 0 .76 0l7.5-9a.5.5 0 0 0 .05-.58l-3-5A.5.5 0 0 0 14.5 3h-9ZM3.38 8l2.4-4h1.98l-1.6 4H3.38Zm2.78 1 2.26 5.83L3.57 9h2.59ZM10 16.12 7.23 9h5.54L10 16.12ZM7.24 8l1.6-4h2.32l1.6 4H7.24Zm6.6 0-1.6-4h1.98l2.4 4h-2.78Zm0 1h2.6l-4.86 5.83L13.84 9Z\"]);\nexport const PremiumPersonFilled = /*#__PURE__*/createFluentIcon('PremiumPersonFilled', \"1em\", [\"M5.5 2.75a.75.75 0 0 0-.66.39l-2.75 5c-.15.27-.11.6.08.84l7.25 8.75a.75.75 0 0 0 1.16 0l.48-.59a3.27 3.27 0 0 1-.06-.64c0-1.3 1-2.38 2.27-2.49a2.99 2.99 0 0 1 .17-4.19l.32-.82h4.05l.02-.02c.2-.24.23-.57.08-.84l-2.75-5a.75.75 0 0 0-.66-.39h-9ZM4.16 7.5l1.78-3.25h1.5L6.31 7.5H4.16ZM6.14 9l1.93 4.75L4.14 9h2ZM10 14.48 7.76 9h4.39l-2.16 5.48ZM7.89 7.5l1.14-3.25h1.95l1.2 3.25H7.88Zm5.88 0-1.2-3.25h1.49l1.78 3.25h-2.07ZM17.5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const PremiumPersonRegular = /*#__PURE__*/createFluentIcon('PremiumPersonRegular', \"1em\", [\"M5.5 3a.5.5 0 0 0-.43.24l-3 5a.5.5 0 0 0 .05.58l7.49 9a.5.5 0 0 0 .86-.13L13.84 9h3.9l.14-.18a.5.5 0 0 0 .05-.58l-3-5A.5.5 0 0 0 14.5 3h-9Zm7.27 6L10 16.12 7.23 9h5.54ZM3.38 8l2.4-4h1.98l-1.6 4H3.38Zm2.78 1 2.26 5.83L3.57 9h2.59Zm1.08-1 1.6-4h2.32l1.6 4H7.24Zm6.6 0-1.6-4h1.98l2.4 4h-2.78Zm1.66 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Z\"]);\nexport const PresenceAvailableFilled = /*#__PURE__*/createFluentIcon('PresenceAvailableFilled', \"1em\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm4.2-11.8-4.5 4.5a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4L9 10.58l3.8-3.8a1 1 0 1 1 1.4 1.42Z\"]);\nexport const PresenceAvailableRegular = /*#__PURE__*/createFluentIcon('PresenceAvailableRegular', \"1em\", [\"M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm12.2-3.2a1 1 0 0 1 0 1.4l-4.5 4.5a1 1 0 0 1-1.4 0l-2-2a1 1 0 0 1 1.4-1.4L9 10.58l3.8-3.8a1 1 0 0 1 1.4 0Z\"]);\nexport const PresenceAwayFilled = /*#__PURE__*/createFluentIcon('PresenceAwayFilled', \"1em\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-14V9.6l2.7 2.7a1 1 0 0 1-1.4 1.42l-3-3A1 1 0 0 1 8 10V6a1 1 0 1 1 2 0Z\"]);\nexport const PresenceAwayRegular = /*#__PURE__*/createFluentIcon('PresenceAwayRegular', \"1em\", [\"M10 9.59V6a1 1 0 1 0-2 0V10c0 .27.1.52.3.7l3 3a1 1 0 1 0 1.4-1.4L10 9.58Zm-10 .4a10 10 0 1 1 20 0 10 10 0 0 1-20 0ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const PresenceBlockedRegular = /*#__PURE__*/createFluentIcon('PresenceBlockedRegular', \"1em\", [\"M20 10a10 10 0 1 0-20 0 10 10 0 0 0 20 0Zm-2 0a8 8 0 0 1-12.9 6.32L16.31 5.09A7.97 7.97 0 0 1 18 10Zm-3.1-6.32L3.69 14.91A8 8 0 0 1 14.91 3.68Z\"]);\nexport const PresenceBusyFilled = /*#__PURE__*/createFluentIcon('PresenceBusyFilled', \"1em\", [\"M20 10a10 10 0 1 1-20 0 10 10 0 0 1 20 0Z\"]);\nexport const PresenceDndFilled = /*#__PURE__*/createFluentIcon('PresenceDndFilled', \"1em\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM7 9h6a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2Z\"]);\nexport const PresenceDndRegular = /*#__PURE__*/createFluentIcon('PresenceDndRegular', \"1em\", [\"M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm4 0a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z\"]);\nexport const PresenceOfflineRegular = /*#__PURE__*/createFluentIcon('PresenceOfflineRegular', \"1em\", [\"M13.7 6.3a1 1 0 0 1 0 1.4L11.42 10l2.3 2.3a1 1 0 0 1-1.42 1.4L10 11.42l-2.3 2.3a1 1 0 0 1-1.4-1.42L8.58 10l-2.3-2.3a1 1 0 0 1 1.42-1.4L10 8.58l2.3-2.3a1 1 0 0 1 1.4 0ZM0 10a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const PresenceOofRegular = /*#__PURE__*/createFluentIcon('PresenceOofRegular', \"1em\", [\"M10.7 7.7A1 1 0 1 0 9.28 6.3l-3 3a1 1 0 0 0 0 1.41l3 3a1 1 0 1 0 1.42-1.41l-1.3-1.3H13a1 1 0 1 0 0-2H9.4l1.3-1.29ZM10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z\"]);\nexport const PresenceUnknownRegular = /*#__PURE__*/createFluentIcon('PresenceUnknownRegular', \"1em\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM0 10a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z\"]);\nexport const PresenterFilled = /*#__PURE__*/createFluentIcon('PresenterFilled', \"1em\", [\"M12 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM7 14.78v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l3.7-3.56a.5.5 0 0 0-.34-.86H3.49a.5.5 0 0 0-.35.86l3.7 3.56c.1.1.16.23.16.36ZM8.5 7C7.67 7 7 7.67 7 8.5V9h6v-.5c0-.83-.67-1.5-1.5-1.5h-3Z\"]);\nexport const PresenterRegular = /*#__PURE__*/createFluentIcon('PresenterRegular', \"1em\", [\"M10 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM8.5 8a.5.5 0 0 0-.5.5V9H7v-.5C7 7.67 7.67 7 8.5 7h3c.83 0 1.5.67 1.5 1.5V9h-1v-.5a.5.5 0 0 0-.5-.5h-3ZM7 14.78v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l3.7-3.56a.5.5 0 0 0-.34-.86H3.49a.5.5 0 0 0-.35.86l3.7 3.56c.1.1.16.23.16.36Zm1 1.72v-1.72c0-.4-.17-.8-.46-1.08L4.73 11h10.54l-2.81 2.7c-.3.29-.46.68-.46 1.08v1.72a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5Z\"]);\nexport const PresenterOffFilled = /*#__PURE__*/createFluentIcon('PresenterOffFilled', \"1em\", [\"M7.15 7.85c-.1.2-.15.42-.15.65V9h1.3l1 1H3.5a.5.5 0 0 0-.36.86l3.7 3.56c.1.1.16.23.16.36v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l.29-.27 3.7 3.7a.5.5 0 0 0 .71-.7l-10-10-5-5a.5.5 0 1 0-.7.7l5 5Zm9.7 3.01-1.97 1.9L12.12 10h4.39a.5.5 0 0 1 .35.86ZM13 9h-1.88l-2-2h2.38c.83 0 1.5.67 1.5 1.5V9Zm-3-3a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const PresenterOffRegular = /*#__PURE__*/createFluentIcon('PresenterOffRegular', \"1em\", [\"M7 8.5c0-.23.05-.45.15-.65l-5-5a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-3.71-3.7-.29.27a.5.5 0 0 0-.15.36v1.72c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 7 16.5v-1.72a.5.5 0 0 0-.15-.36l-3.7-3.56a.5.5 0 0 1 .34-.86h5.8l-1-1H7v-.5Zm3.3 2.5H4.72l2.81 2.7c.3.29.46.68.46 1.08v1.72c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-1.72c0-.4.17-.8.46-1.08l.27-.26L10.3 11ZM12 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-.88 4h1.38c.28 0 .5.22.5.5V9h1v-.5c0-.83-.67-1.5-1.5-1.5H9.12l1 1Zm4.76 4.76-.7-.7L15.26 11h-2.15l-1-1h4.39a.5.5 0 0 1 .35.86l-1.98 1.9Z\"]);\nexport const PreviewLinkFilled = /*#__PURE__*/createFluentIcon('PreviewLinkFilled', \"1em\", [\"M5 6v2h10V6H5Zm7 5v3h3v-3h-3ZM2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v8.5A2.75 2.75 0 0 1 15.25 17H4.75A2.75 2.75 0 0 1 2 14.25v-8.5Zm2-.25v3c0 .27.22.5.5.5h11a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5Zm7 5v4c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 0-.5.5Zm-6.5 0a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM4 14c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const PreviewLinkRegular = /*#__PURE__*/createFluentIcon('PreviewLinkRegular', \"1em\", [\"M4 5.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-3ZM5 6v2h10V6H5Zm6.5 4a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm.5 4v-3h3v3h-3Zm-8-3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5A.5.5 0 0 1 4 11Zm.5 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM2 5.5A2.5 2.5 0 0 1 4.5 3h11A2.5 2.5 0 0 1 18 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5v-9ZM4.5 4C3.67 4 3 4.67 3 5.5v9c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const PreviousFilled = /*#__PURE__*/createFluentIcon('PreviousFilled', \"1em\", [\"M17 4.25c0-1-1.12-1.6-1.95-1.04l-8.5 5.71c-.73.5-.73 1.57 0 2.07l8.5 5.8c.83.56 1.95-.03 1.95-1.04V4.25ZM3 3.5a.5.5 0 0 1 1 0v13a.5.5 0 0 1-1 0v-13Z\"]);\nexport const PreviousRegular = /*#__PURE__*/createFluentIcon('PreviousRegular', \"1em\", [\"M3 3.5a.5.5 0 0 1 1 0v13a.5.5 0 0 1-1 0v-13Zm14 .75c0-1-1.12-1.6-1.95-1.04l-8.5 5.71c-.73.5-.73 1.57 0 2.07l8.5 5.8c.83.56 1.95-.03 1.95-1.04V4.25Zm-1.39-.2c.17-.12.39 0 .39.2v11.5c0 .2-.22.32-.4.2l-8.49-5.78a.25.25 0 0 1 0-.42l8.5-5.7Z\"]);\nexport const PreviousFrameFilled = /*#__PURE__*/createFluentIcon('PreviousFrameFilled', \"1em\", [\"M15.5 3a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5Zm-5.45.21c.83-.55 1.95.04 1.95 1.04v11.5c0 1-1.12 1.6-1.95 1.04l-8.5-5.8a1.25 1.25 0 0 1 0-2.07l8.5-5.7Z\"]);\nexport const PreviousFrameRegular = /*#__PURE__*/createFluentIcon('PreviousFrameRegular', \"1em\", [\"M15.5 3a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5Zm-5.45.21c.83-.55 1.95.04 1.95 1.04v11.5c0 1-1.12 1.6-1.95 1.04l-8.5-5.8a1.25 1.25 0 0 1 0-2.07l8.5-5.7ZM11 4.25c0-.2-.22-.32-.39-.2l-8.5 5.7a.25.25 0 0 0 0 .42l8.5 5.79c.17.11.39 0 .39-.2V4.25Z\"]);\nexport const PrintFilled = /*#__PURE__*/createFluentIcon('PrintFilled', \"1em\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V5h.5A2.5 2.5 0 0 1 18 7.5v5c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5V14H3.5A1.5 1.5 0 0 1 2 12.5v-5A2.5 2.5 0 0 1 4.5 5H5v-.5Zm9 0a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V5h8v-.5Zm-8 7v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const PrintRegular = /*#__PURE__*/createFluentIcon('PrintRegular', \"1em\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V5h.5A2.5 2.5 0 0 1 18 7.5v5c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5V14H3.5A1.5 1.5 0 0 1 2 12.5v-5A2.5 2.5 0 0 1 4.5 5H5v-.5ZM6 5h8v-.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V5Zm-1 8v-1.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V13h1.5a.5.5 0 0 0 .5-.5v-5c0-.83-.67-1.5-1.5-1.5h-11C3.67 6 3 6.67 3 7.5v5c0 .28.22.5.5.5H5Zm1.5-2a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const PrintAddFilled = /*#__PURE__*/createFluentIcon('PrintAddFilled', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-.5 7.5c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5V15H3.5A1.5 1.5 0 0 1 2 13.5v-5A2.5 2.5 0 0 1 4.5 6H5v-.5C5 4.67 5.67 4 6.5 4h2.7c-.08.32-.15.66-.18 1H6.5a.5.5 0 0 0-.5.5V6h3.02c.26 2.8 2.61 5 5.48 5ZM6 12.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const PrintAddRegular = /*#__PURE__*/createFluentIcon('PrintAddRegular', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm2 10v-3.1c.36-.18.7-.4 1-.66v3.76c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5V15H3.5A1.5 1.5 0 0 1 2 13.5v-5A2.5 2.5 0 0 1 4.5 6H5v-.5C5 4.67 5.67 4 6.5 4h2.7c-.08.32-.15.66-.18 1H6.5a.5.5 0 0 0-.5.5V6h3.02c.03.34.1.68.19 1H4.5C3.67 7 3 7.67 3 8.5v5c0 .28.22.5.5.5H5v-1.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V14h1.5a.5.5 0 0 0 .5-.5ZM6.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const ProductionFilled = /*#__PURE__*/createFluentIcon('ProductionFilled', \"1em\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 0 8H6a4 4 0 0 1-4-4Zm5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ProductionRegular = /*#__PURE__*/createFluentIcon('ProductionRegular', \"1em\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2Zm-6 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 0 8H6a4 4 0 0 1-4-4Zm4-3a3 3 0 1 0 0 6h8a3 3 0 1 0 0-6H6Z\"]);\nexport const ProductionCheckmarkFilled = /*#__PURE__*/createFluentIcon('ProductionCheckmarkFilled', \"1em\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM6 8a4 4 0 1 0 0 8h3.2a5.5 5.5 0 0 1 .1-3.29A1 1 0 0 1 10 11a1 1 0 0 1 .23.03 5.49 5.49 0 0 1 7.1-1.25A4 4 0 0 0 14 8H6Zm0 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm13 1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ProductionCheckmarkRegular = /*#__PURE__*/createFluentIcon('ProductionCheckmarkRegular', \"1em\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 3.33 1.78A5.47 5.47 0 0 0 14 9H6a3 3 0 1 0 0 6h3.02c.03.34.1.68.19 1H6a4 4 0 0 1-4-4Zm8-1a1 1 0 0 1 .23.03 5.5 5.5 0 0 0-.93 1.68A1 1 0 0 1 10 11Zm-4 2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm13 1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ProhibitedFilled = /*#__PURE__*/createFluentIcon('ProhibitedFilled', \"1em\", [\"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.5 0c0-1.52-.53-2.93-1.4-4.04L5.96 15.1A6.5 6.5 0 0 0 16.5 10ZM4.9 14.04l9.14-9.14a6.5 6.5 0 0 0-9.13 9.13Z\"]);\nexport const ProhibitedRegular = /*#__PURE__*/createFluentIcon('ProhibitedRegular', \"1em\", [\"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1 0c0-1.75-.64-3.36-1.7-4.58l-9.88 9.87A7 7 0 0 0 17 10ZM4.7 14.58l9.88-9.87a7 7 0 0 0-9.87 9.87Z\"]);\nexport const ProhibitedMultipleFilled = /*#__PURE__*/createFluentIcon('ProhibitedMultipleFilled', \"1em\", [\"M9 2a7 7 0 1 1 0 14A7 7 0 0 1 9 2Zm3.32 2.62a5.5 5.5 0 0 0-7.7 7.7l7.7-7.7Zm1.06 1.06-7.7 7.7a5.5 5.5 0 0 0 7.7-7.7ZM9 17a8 8 0 0 0 7.75-10 7 7 0 0 1-9.74 9.74c.63.17 1.3.26 1.99.26Z\"]);\nexport const ProhibitedMultipleRegular = /*#__PURE__*/createFluentIcon('ProhibitedMultipleRegular', \"1em\", [\"M2 9a7 7 0 1 1 14 0A7 7 0 0 1 2 9Zm7-6a6 6 0 0 0-4.58 9.87l8.45-8.45A5.98 5.98 0 0 0 9 3Zm0 12a6 6 0 0 0 4.58-9.87l-8.45 8.45A5.98 5.98 0 0 0 9 15Zm2 3a6.97 6.97 0 0 1-4-1.25 8.01 8.01 0 0 0 3.07.18 6 6 0 0 0 6.86-6.86 8.07 8.07 0 0 0-.18-3.06A7 7 0 0 1 11 18Z\"]);\nexport const ProhibitedNoteFilled = /*#__PURE__*/createFluentIcon('ProhibitedNoteFilled', \"1em\", [\"M18 10.17A8.02 8.02 0 0 0 10 2a8 8 0 0 0-.84 15.96A3 3 0 0 1 9 17v-.58a6.47 6.47 0 0 1-3.04-1.32l1.57-1.57 7.57-7.57A6.47 6.47 0 0 1 16.5 10h.5a3 3 0 0 1 1 .17ZM14.04 4.9 4.9 14.04a6.5 6.5 0 0 1 9.13-9.13ZM10 13c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-4Zm6.5 3h-4a.5.5 0 1 0 0 1h4a.5.5 0 1 0 0-1Zm-4-3a.5.5 0 1 0 0 1h4a.5.5 0 1 0 0-1h-4Z\"]);\nexport const ProhibitedNoteRegular = /*#__PURE__*/createFluentIcon('ProhibitedNoteRegular', \"1em\", [\"M18 10v.17a3 3 0 0 0-1-.17c0-1.75-.64-3.36-1.7-4.58l-9.88 9.87A6.97 6.97 0 0 0 9 16.93V17a3 3 0 0 0 .16.96A8 8 0 1 1 18 10ZM4.7 14.58l9.88-9.87a7 7 0 0 0-9.87 9.87ZM12 11a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-5Zm.5 5h4a.5.5 0 1 1 0 1h-4a.5.5 0 1 1 0-1Zm-.5-2.5c0-.28.22-.5.5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ProjectionScreenFilled = /*#__PURE__*/createFluentIcon('ProjectionScreenFilled', \"1em\", [\"M3 3a1 1 0 0 0 0 2v6a3 3 0 0 0 3 3h3.5v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2H14a3 3 0 0 0 3-3V5a1 1 0 1 0 0-2H3Z\"]);\nexport const ProjectionScreenRegular = /*#__PURE__*/createFluentIcon('ProjectionScreenRegular', \"1em\", [\"M3 3a1 1 0 0 0 0 2v6a3 3 0 0 0 3 3h3.5v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2H14a3 3 0 0 0 3-3V5a1 1 0 1 0 0-2H3Zm1 2h12v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Z\"]);\nexport const ProjectionScreenDismissFilled = /*#__PURE__*/createFluentIcon('ProjectionScreenDismissFilled', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM14.5 11c.9 0 1.75-.22 2.5-.6v.6a3 3 0 0 1-3 3h-3.5v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2H6a3 3 0 0 1-3-3V5a1 1 0 0 1 0-2h6.6a5.5 5.5 0 0 0 4.9 8Z\"]);\nexport const ProjectionScreenDismissRegular = /*#__PURE__*/createFluentIcon('ProjectionScreenDismissRegular', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM16 11v-.2c.35-.1.68-.24 1-.4v.6a3 3 0 0 1-3 3h-3.5v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2H6a3 3 0 0 1-3-3V5a1 1 0 0 1 0-2h6.6a5.47 5.47 0 0 0-.58 2H4v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2Z\"]);\nexport const ProjectionScreenTextFilled = /*#__PURE__*/createFluentIcon('ProjectionScreenTextFilled', \"1em\", [\"M1 3.5C1 2.67 1.67 2 2.5 2h15a1.5 1.5 0 0 1 .5 2.91V12a3 3 0 0 1-3 3h-4.5v2h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2H5a3 3 0 0 1-3-3V4.91c-.58-.2-1-.76-1-1.41ZM7.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM6 9.5c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5ZM7.5 11a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const ProjectionScreenTextRegular = /*#__PURE__*/createFluentIcon('ProjectionScreenTextRegular', \"1em\", [\"M7.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM6 9.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5ZM7.5 11a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm-5-9A1.5 1.5 0 0 0 2 4.91V12a3 3 0 0 0 3 3h4.5v2h-3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-3v-2H15a3 3 0 0 0 3-3V4.91A1.5 1.5 0 0 0 17.5 2h-15ZM3 12V5h14v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z\"]);\nexport const ProtocolHandlerFilled = /*#__PURE__*/createFluentIcon('ProtocolHandlerFilled', \"1em\", [\"M5.59 5.41 2.4 8.6a2 2 0 0 0 0 2.82L5.6 14.6a2 2 0 0 0 2.82 0l3.18-3.18a2 2 0 0 0 0-2.82L8.4 5.4a2 2 0 0 0-2.82 0Zm6 9.18-.88-.88 1.58-1.59a3 3 0 0 0 0-4.24l-1.58-1.59.88-.88a2 2 0 0 1 2.82 0L17.6 8.6a2 2 0 0 1 0 2.82L14.4 14.6a2 2 0 0 1-2.82 0Z\"]);\nexport const ProtocolHandlerRegular = /*#__PURE__*/createFluentIcon('ProtocolHandlerRegular', \"1em\", [\"M5.59 5.41 2.4 8.6a2 2 0 0 0 0 2.82L5.6 14.6a2 2 0 0 0 2.82 0l3.18-3.18a2 2 0 0 0 0-2.82L8.4 5.4a2 2 0 0 0-2.82 0ZM3.12 9.3 6.3 6.12a1 1 0 0 1 1.42 0l3.17 3.17a1 1 0 0 1 0 1.42L7.7 13.88a1 1 0 0 1-1.42 0L3.12 10.7a1 1 0 0 1 0-1.42Zm8.47 5.3-.88-.88.7-.71.88.88a1 1 0 0 0 1.42 0l3.17-3.17a1 1 0 0 0 0-1.42L13.7 6.12a1 1 0 0 0-1.42 0l-.88.88-.7-.7.88-.89a2 2 0 0 1 2.82 0L17.6 8.6a2 2 0 0 1 0 2.82L14.4 14.6a2 2 0 0 1-2.82 0Z\"]);\nexport const PulseFilled = /*#__PURE__*/createFluentIcon('PulseFilled', \"1em\", [\"M7.01 3c.33 0 .62.23.71.55l2.82 10.07 2.24-7.1a.75.75 0 0 1 1.4-.07L15.5 9.5h1.76a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.69-.45l-.7-1.65-2.4 7.58a.75.75 0 0 1-1.43-.03L6.97 6.41l-1.25 4.06A.75.75 0 0 1 5 11H2.75a.75.75 0 0 1 0-1.5h1.7l1.83-5.97c.1-.32.4-.53.73-.53Z\"]);\nexport const PulseRegular = /*#__PURE__*/createFluentIcon('PulseRegular', \"1em\", [\"M7 3a.5.5 0 0 1 .48.37l3.05 11.3 2.5-8.31a.5.5 0 0 1 .94-.04L15.35 10h2.15a.5.5 0 0 1 0 1H15a.5.5 0 0 1-.47-.32l-.98-2.62-2.57 8.58a.5.5 0 0 1-.96-.01L6.99 5.37l-1.5 5.27A.5.5 0 0 1 5 11H2.5a.5.5 0 0 1 0-1h2.12l1.9-6.64A.5.5 0 0 1 7 3Z\"]);\nexport const PulseSquareFilled = /*#__PURE__*/createFluentIcon('PulseSquareFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm5.97 1.33a.5.5 0 0 0-.94 0L6.65 10H5.5a.5.5 0 0 0 0 1H7c.2 0 .4-.13.47-.32l1.02-2.73 2.04 5.72a.5.5 0 0 0 .92.05L12.8 11h1.69a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.45.28l-.97 1.95-2.1-5.9Z\"]);\nexport const PulseSquareRegular = /*#__PURE__*/createFluentIcon('PulseSquareRegular', \"1em\", [\"M8.97 6.33a.5.5 0 0 0-.94 0L6.65 10H5.5a.5.5 0 0 0 0 1H7c.2 0 .4-.13.47-.32l1.02-2.73 2.04 5.72a.5.5 0 0 0 .92.05L12.8 11h1.69a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.45.28l-.97 1.95-2.1-5.9ZM5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5ZM4 5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Z\"]);\nexport const PuzzleCubeFilled = /*#__PURE__*/createFluentIcon('PuzzleCubeFilled', \"1em\", [\"M13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Zm0-5V8h4v4h-4Zm-1 0H8V8h4v4Zm-4 1h4v4H8v-4Zm-1-1V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4Z\"]);\nexport const PuzzleCubeRegular = /*#__PURE__*/createFluentIcon('PuzzleCubeRegular', \"1em\", [\"M3 14.5V7h4V3h7.5A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5ZM8 4v3h4V4H8Zm5 0v3h3V5.5c0-.83-.67-1.5-1.5-1.5H13Zm3 4h-3v4h3V8Zm0 5h-3v3h1.5c.83 0 1.5-.67 1.5-1.5V13Zm-4 3v-3H8v3h4Zm-5 0v-3H4v1.5c0 .83.67 1.5 1.5 1.5H7Zm-3-4h3V8H4v4Zm8-4H8v4h4V8Z\"]);\nexport const PuzzleCubePieceFilled = /*#__PURE__*/createFluentIcon('PuzzleCubePieceFilled', \"1em\", [\"M15.8 1.29a1 1 0 0 1 1.4 0l1.51 1.5a1 1 0 0 1 0 1.42l-1.5 1.5a1 1 0 0 1-1.42 0l-1.5-1.5a1 1 0 0 1 0-1.42l1.5-1.5ZM5.5 17H7v-4H3v1.5A2.5 2.5 0 0 0 5.5 17ZM7 8v4H3V8h4Zm5 4H8V8h4v4Zm-4 1h4v4H8v-4Zm5-5v4h4V8h-4Zm0 5h4v1.5a2.5 2.5 0 0 1-2.5 2.5H13v-4ZM3 7h4V3H5.5A2.5 2.5 0 0 0 3 5.5V7Zm5 0V3h4v4H8Z\"]);\nexport const PuzzleCubePieceRegular = /*#__PURE__*/createFluentIcon('PuzzleCubePieceRegular', \"1em\", [\"M17.2 1.29a1 1 0 0 0-1.4 0l-1.5 1.5a1 1 0 0 0 0 1.42l1.5 1.5a1 1 0 0 0 1.4 0l1.51-1.5a1 1 0 0 0 0-1.42l-1.5-1.5ZM15 3.5 16.5 2 18 3.5 16.5 5 15 3.5ZM13 3H5.5A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5V7h-4V3ZM5.36 16A1.5 1.5 0 0 1 4 14.5V13h3v3H5.36ZM8 13h4v3H8v-3Zm8 1.64A1.5 1.5 0 0 1 14.5 16H13v-3h3V14.64ZM8 8h4v4H8V8Zm5 4V8h3v4h-3ZM8 4h4v3H8V4ZM5.5 4H7v3H4V5.36A1.5 1.5 0 0 1 5.5 4ZM4 12V8h3v4H4Z\"]);\nexport const PuzzlePieceFilled = /*#__PURE__*/createFluentIcon('PuzzlePieceFilled', \"1em\", [\"M11 2a2 2 0 0 1 2 2v.06h3a1 1 0 0 1 1 1V8h-1a2 2 0 0 0-2 1.85V10a2 2 0 0 0 1.85 2H17v3.06a1 1 0 0 1-1 1h-3v.09a2 2 0 0 1-4-.1H6a1 1 0 0 1-1-1V12a2 2 0 1 1 0-4V5.06a1 1 0 0 1 1-1h3V4c0-1.1.9-2 2-2Z\"]);\nexport const PuzzlePieceRegular = /*#__PURE__*/createFluentIcon('PuzzlePieceRegular', \"1em\", [\"M11.1 2c-1.07.08-1.94.9-2.08 1.94V4H6.35A1.5 1.5 0 0 0 5 5.5v2.27h-.06A2.25 2.25 0 0 0 3 10v.16c.08 1.06.9 1.93 1.94 2.07H5v2.42A1.5 1.5 0 0 0 6.5 16h2.02v.06A2.25 2.25 0 0 0 10.75 18h.16a2.25 2.25 0 0 0 2.07-1.94V16h2.52c.83 0 1.5-.67 1.5-1.5v-3.25h-1.87A1.25 1.25 0 0 1 14 10v-.12c.06-.63.6-1.13 1.25-1.13H17V5.36A1.5 1.5 0 0 0 15.5 4h-2.02v-.06A2.25 2.25 0 0 0 11.25 2h-.15Zm.15 1c.69 0 1.25.56 1.25 1.25V5h3l.1.01a.5.5 0 0 1 .4.5v2.24h-.75c-1.17 0-2.15.9-2.24 2.07l-.01.16c0 1.2.9 2.17 2.07 2.26l.16.01H16v2.25a.5.5 0 0 1-.5.5H12v.75a1.25 1.25 0 0 1-2.5 0V15h-3a.5.5 0 0 1-.5-.5v-3.25h-.75a1.25 1.25 0 0 1 0-2.5H6V5.5c0-.27.23-.5.5-.5H10v-.75c0-.69.56-1.25 1.25-1.25Z\"]);\nexport const PuzzlePieceShieldFilled = /*#__PURE__*/createFluentIcon('PuzzlePieceShieldFilled', \"1em\", [\"M5 15.06V12.7c.18.08.36.15.55.21.29.1.61.1.9 0a6.77 6.77 0 0 0 3.39-2.38A6.63 6.63 0 0 0 11 6.58V4.04l-.02-.19v-.04A1.4 1.4 0 0 0 9.5 2.67 2 2 0 0 1 13 4v.06h3a1 1 0 0 1 1 1V8h-1a2 2 0 0 0-2 1.85V10a2 2 0 0 0 1.85 2H17v3.06a1 1 0 0 1-1 1h-3v.09a2 2 0 0 1-4-.1H6a1 1 0 0 1-1-1ZM8 3.35a4.06 4.06 0 0 0 1.6.32c.2 0 .35.14.4.33v2.58c0 2.69-1.31 4.51-3.87 5.4a.38.38 0 0 1-.26 0A6.66 6.66 0 0 1 4 11c-.39-.3-.72-.63-.99-1a5.5 5.5 0 0 1-1-3.15L2 6.58v-2.5a.4.4 0 0 1 .4-.41 4.5 4.5 0 0 0 3.32-1.55.39.39 0 0 1 .56 0C6.82 2.7 7.4 3.1 8 3.35Z\"]);\nexport const PuzzlePieceShieldRegular = /*#__PURE__*/createFluentIcon('PuzzlePieceShieldRegular', \"1em\", [\"M5 14.5v-1.79a9 9 0 0 0 .54.21c.15.05.3.08.46.08v1.5c0 .28.22.5.5.5h3v.75a1.25 1.25 0 0 0 2.5 0V15h3.5a.5.5 0 0 0 .5-.5v-2.25H15.06A2.25 2.25 0 0 1 13 9.97v-.16a2.25 2.25 0 0 1 2.25-2.07H16V5.5a.5.5 0 0 0-.41-.49H12.5v-.76a1.25 1.25 0 0 0-1.85-1.1c-.24-.28-.59-.47-1-.48.37-.38.88-.63 1.44-.66l.16-.01c1.14 0 2.08.85 2.23 1.94V4h2.02c.78 0 1.42.6 1.5 1.36v3.39h-1.75c-.65 0-1.2.5-1.25 1.13V10c0 .65.5 1.2 1.13 1.24l.12.01H17v3.25c0 .83-.67 1.5-1.5 1.5h-2.52v.06a2.25 2.25 0 0 1-2.08 1.93l-.15.01a2.25 2.25 0 0 1-2.23-1.94V16H6.5A1.5 1.5 0 0 1 5 14.65v-.15ZM8 3.35a4.06 4.06 0 0 0 1.6.32c.2 0 .35.14.4.33v2.58c0 2.69-1.31 4.51-3.87 5.4a.38.38 0 0 1-.26 0A6.66 6.66 0 0 1 4 11c-.39-.3-.72-.63-.99-1a5.5 5.5 0 0 1-1-3.15L2 6.58v-2.5a.4.4 0 0 1 .4-.41 4.5 4.5 0 0 0 3.32-1.55.39.39 0 0 1 .56 0C6.82 2.7 7.4 3.1 8 3.35Z\"]);\nexport const QrCodeFilled = /*#__PURE__*/createFluentIcon('QrCodeFilled', \"1em\", [\"M13 11h-2v2h2v2h-2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v2h-2v-2ZM5 5h2v2H5V5Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5ZM5 13h2v2H5v-2Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2H5Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5ZM13 5h2v2h-2V5Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-2Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5Z\"]);\nexport const QrCodeRegular = /*#__PURE__*/createFluentIcon('QrCodeRegular', \"1em\", [\"M11 15h2v2h-2v-2Zm4 0h2v2h-2v-2Zm-4-4h2v2h-2v-2Zm2 2h2v2h-2v-2Zm2-2h2v2h-2v-2ZM3 5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Zm0 1h2v2H5V5Zm-2 8c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H5Zm0 1h2v2H5v-2Zm6-8c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-2Zm0 1h2v2h-2V5Z\"]);\nexport const QuestionFilled = /*#__PURE__*/createFluentIcon('QuestionFilled', \"1em\", [\"M10 3a4 4 0 0 0-4 4 .75.75 0 0 0 1.5 0A2.5 2.5 0 0 1 10 4.5 2.5 2.5 0 0 1 12.5 7c0 .6-.16.97-.37 1.27a5 5 0 0 1-.97.92c-.4.33-.9.73-1.28 1.3-.39.58-.63 1.3-.63 2.26v.5a.75.75 0 0 0 1.5 0v-.5c0-.67.16-1.1.38-1.43.23-.35.55-.62.97-.96l.06-.05c.38-.3.84-.67 1.2-1.17C13.74 8.6 14 7.9 14 7a4 4 0 0 0-4-4Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const QuestionRegular = /*#__PURE__*/createFluentIcon('QuestionRegular', \"1em\", [\"M10 3a4 4 0 0 0-4 4 .5.5 0 0 0 1 0 3 3 0 0 1 6 0c0 1.25-.7 1.86-1.58 2.62l-.03.03c-.86.73-1.89 1.62-1.89 3.35v.5a.5.5 0 0 0 1 0V13c0-1.25.7-1.86 1.58-2.62l.03-.03C12.97 9.62 14 8.73 14 7a4 4 0 0 0-4-4Zm0 14a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const QuestionCircleFilled = /*#__PURE__*/createFluentIcon('QuestionCircleFilled', \"1em\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 11.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0-8A2.5 2.5 0 0 0 7.5 8a.5.5 0 0 0 1 0 1.5 1.5 0 1 1 2.63.98l-.1.11-.12.1-.25.19A3.2 3.2 0 0 0 9.5 12a.5.5 0 0 0 1 0c0-.76.2-1.25.53-1.61l.08-.08.08-.07.09-.07.22-.17.15-.12A2.5 2.5 0 0 0 10 5.5Z\"]);\nexport const QuestionCircleRegular = /*#__PURE__*/createFluentIcon('QuestionCircleRegular', \"1em\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 1a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm0 10.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm0-8a2.5 2.5 0 0 1 1.65 4.38l-.15.12-.22.17-.09.07-.16.15c-.33.36-.53.85-.53 1.61a.5.5 0 0 1-1 0 3.2 3.2 0 0 1 1.16-2.62l.25-.19.12-.1A1.5 1.5 0 0 0 10 6.5c-.83 0-1.5.67-1.5 1.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 10 5.5Z\"]);\nexport const QuizNewFilled = /*#__PURE__*/createFluentIcon('QuizNewFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1a5.48 5.48 0 0 1-.4-4H5.5a.5.5 0 0 1 0-1h4.1A5.5 5.5 0 0 1 17 9.6V5.5A2.5 2.5 0 0 0 14.5 3h-9Zm0 11h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1ZM8 5c.2 0 .38.12.46.3l2 4.5a.5.5 0 1 1-.92.4L9.01 9H6.99l-.53 1.2a.5.5 0 0 1-.92-.4l2-4.5A.5.5 0 0 1 8 5Zm.56 3L8 6.73 7.44 8h1.12Zm4.94-2.5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0Zm5.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const QuizNewRegular = /*#__PURE__*/createFluentIcon('QuizNewRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5v-9C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v3.7c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9Zm3.7 10c.1-.35.24-.68.4-1H5.5a.5.5 0 0 0 0 1h3.7Zm-.7 2a.5.5 0 0 0 0-1h-3a.5.5 0 0 0 0 1h3ZM8 5c.2 0 .38.12.46.3l2 4.5a.5.5 0 1 1-.92.4L9.01 9H6.99l-.53 1.2a.5.5 0 0 1-.92-.4l2-4.5A.5.5 0 0 1 8 5Zm.56 3L8 6.73 7.44 8h1.12Zm4.94-2.5a.5.5 0 0 0-1 0v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1Zm5.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const RadarFilled = /*#__PURE__*/createFluentIcon('RadarFilled', \"1em\", [\"m14.28 3.24-1.09 1.1a6.5 6.5 0 1 0 1.4 10.26.75.75 0 0 1 1.07 1.06 8 8 0 1 1-1.38-12.42Zm-3.3 3.3 1.17-1.17a5.1 5.1 0 1 0 1.46 8.24.75.75 0 1 0-1.06-1.06 3.6 3.6 0 1 1-1.56-6.01Zm4.8-2.32c.3.3.3.77 0 1.06l-4.33 4.33a1.5 1.5 0 1 1-1.06-1.06l4.33-4.33c.3-.3.77-.3 1.06 0Zm1.47 9.03a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const RadarRegular = /*#__PURE__*/createFluentIcon('RadarRegular', \"1em\", [\"m14.5 3.38-.72.72a7 7 0 1 0 1.17 10.85.5.5 0 0 1 .7.7A8 8 0 1 1 14.5 3.39Zm-2.94 2.94.75-.75a5 5 0 1 0 1.23 7.97.5.5 0 1 0-.71-.71 4 4 0 1 1-1.27-6.51Zm4.3-2.17c.19.2.19.5 0 .7l-4.9 4.9a1 1 0 1 1-.7-.72l4.89-4.88c.2-.2.5-.2.7 0ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const RadarCheckmarkFilled = /*#__PURE__*/createFluentIcon('RadarCheckmarkFilled', \"1em\", [\"m14.28 3.24-1.09 1.1a6.5 6.5 0 0 0-9.66 5.02 5.5 5.5 0 0 0-1.53.9 8 8 0 0 1 12.28-7.01ZM9.75 18c.37-.46.67-.97.89-1.53a6.47 6.47 0 0 0 3.96-1.87.75.75 0 0 1 1.06 1.06A7.98 7.98 0 0 1 9.75 18ZM11 14.5c0 .17 0 .34-.02.5a5.08 5.08 0 0 0 2.63-1.4.75.75 0 1 0-1.06-1.05c-.47.47-1.04.78-1.64.93.06.33.09.67.09 1.02ZM5.5 9c.35 0 .69.03 1.02.1a3.58 3.58 0 0 1 4.47-2.56l1.16-1.17A5.1 5.1 0 0 0 5 9.02L5.5 9Zm3 .9c.64.41 1.19.96 1.6 1.6a1.5 1.5 0 0 0 1.35-1.89l4.33-4.33a.75.75 0 0 0-1.06-1.06l-4.33 4.33A1.5 1.5 0 0 0 8.5 9.9Zm8.75 3.35a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-4.25 5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const RadarCheckmarkRegular = /*#__PURE__*/createFluentIcon('RadarCheckmarkRegular', \"1em\", [\"m14.5 3.38-.72.72A7 7 0 0 0 3 9.6c-.36.18-.7.4-1 .65a8 8 0 0 1 12.5-6.87ZM9.75 18c.25-.31.47-.65.66-1.01a6.97 6.97 0 0 0 4.54-2.04.5.5 0 0 1 .7.7A7.98 7.98 0 0 1 9.76 18ZM11 14.5l-.01.4a4.98 4.98 0 0 0 2.55-1.36.5.5 0 1 0-.71-.71c-.54.53-1.18.88-1.86 1.05.02.2.03.41.03.62ZM5.5 9l.62.03a3.98 3.98 0 0 1 5.44-2.71l.75-.75A5 5 0 0 0 5.1 9L5.5 9Zm3.54 1.3c.24.2.46.42.67.66a1 1 0 0 0 1.26-1.22l4.88-4.89a.5.5 0 0 0-.7-.7l-4.9 4.88a1 1 0 0 0-1.2 1.26ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const RadarRectangleMultipleFilled = /*#__PURE__*/createFluentIcon('RadarRectangleMultipleFilled', \"1em\", [\"m14.28 3.24-1.09 1.1A6.5 6.5 0 0 0 3.58 11H2.06a7.99 7.99 0 0 1 12.22-7.76ZM10 17v-.5c1.66 0 3.33-.63 4.6-1.9a.75.75 0 0 1 1.06 1.06A7.98 7.98 0 0 1 9.83 18a3 3 0 0 0 .17-1Zm0-2.5v.6c1.3 0 2.61-.5 3.6-1.5a.75.75 0 1 0-1.05-1.05 3.6 3.6 0 0 1-2.86 1.04c.2.25.31.57.31.91ZM6.5 11h.04A3.6 3.6 0 0 1 11 6.54l1.16-1.17A5.1 5.1 0 0 0 5 11h1.5Zm9.28-6.78c.3.3.3.77 0 1.06l-4.33 4.33a1.5 1.5 0 1 1-1.06-1.06l4.33-4.33c.3-.3.77-.3 1.06 0Zm1.47 9.03a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM1.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-5Zm7 2c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3.5a.5.5 0 0 1 0-1H7a1 1 0 0 0 1-1v-2.5c0-.28.22-.5.5-.5Z\"]);\nexport const RadarRectangleMultipleRegular = /*#__PURE__*/createFluentIcon('RadarRectangleMultipleRegular', \"1em\", [\"m14.5 3.38-.72.72A7 7 0 0 0 3.08 11H2.05A7.99 7.99 0 0 1 14.5 3.38ZM9.83 18a3 3 0 0 0 .17-1c1.8 0 3.58-.68 4.95-2.05a.5.5 0 0 1 .7.7A7.98 7.98 0 0 1 9.84 18Zm.17-3.5v.5c1.28 0 2.56-.49 3.54-1.46a.5.5 0 1 0-.71-.71c-.8.8-1.86 1.2-2.92 1.17.06.16.09.32.09.5ZM5.1 11h1.03a4 4 0 0 1 5.43-4.68l.75-.75A5 5 0 0 0 5.1 11Zm10.75-6.85c.2.2.2.5 0 .7l-4.88 4.9a1 1 0 1 1-.71-.72l4.89-4.88c.2-.2.5-.2.7 0ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM1.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-5Zm7 2c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3.5a.5.5 0 0 1 0-1H7a1 1 0 0 0 1-1v-2.5c0-.28.22-.5.5-.5Z\"]);\nexport const RadioButtonFilled = /*#__PURE__*/createFluentIcon('RadioButtonFilled', \"1em\", [\"M10 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-13a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const RadioButtonRegular = /*#__PURE__*/createFluentIcon('RadioButtonRegular', \"1em\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z\"]);\nexport const RamFilled = /*#__PURE__*/createFluentIcon('RamFilled', \"1em\", [\"M5 7h2.5v3H5V7Zm6.5 0v3h-3V7h3Zm1 3H15V7h-2.5v3Zm3.54-6c.26 0 .5.05.74.16A2.06 2.06 0 0 1 18 5.96V11a2 2 0 0 1-1 1.73v1.77a1.45 1.45 0 0 1-.44 1.05c-.13.14-.3.25-.48.33-.19.09-.38.13-.58.12h-4a.48.48 0 0 1-.35-.15L10 14.7l-1.15 1.15c-.1.1-.21.15-.35.15h-4a1.45 1.45 0 0 1-1.05-.44c-.14-.13-.25-.3-.33-.48A1.32 1.32 0 0 1 3 14.5v-1.77c-.3-.17-.55-.42-.73-.73A2.06 2.06 0 0 1 2 11V5.96c0-.26.05-.5.16-.74A2.06 2.06 0 0 1 3.96 4h12.08Zm-.66 2.08A.95.95 0 0 0 15 6H5a.85.85 0 0 0-.4.08c-.12.06-.22.13-.31.22A1 1 0 0 0 4 7v3c0 .15.03.28.08.4.04.12.12.22.2.31.1.09.21.16.33.21.12.05.25.08.39.08h10c.14 0 .27-.02.4-.08.12-.06.22-.13.31-.22A1 1 0 0 0 16 10V7a1 1 0 0 0-.3-.71 1.1 1.1 0 0 0-.32-.21Z\"]);\nexport const RamRegular = /*#__PURE__*/createFluentIcon('RamRegular', \"1em\", [\"M16.04 4c.26 0 .5.05.74.16A2.06 2.06 0 0 1 18 5.96V11a2 2 0 0 1-1 1.73v1.77a1.45 1.45 0 0 1-.44 1.05c-.13.14-.3.25-.48.33-.19.09-.38.13-.58.12h-4a.48.48 0 0 1-.35-.15L10 14.7l-1.15 1.15c-.1.1-.21.15-.35.15h-4a1.45 1.45 0 0 1-1.05-.44c-.14-.13-.25-.3-.33-.48A1.32 1.32 0 0 1 3 14.5v-1.77c-.3-.17-.55-.42-.73-.73A2.06 2.06 0 0 1 2 11V5.96c0-.26.05-.5.16-.74A2.06 2.06 0 0 1 3.96 4h12.08ZM17 6a.95.95 0 0 0-.08-.38 1.1 1.1 0 0 0-.2-.32A1 1 0 0 0 16 5H3.99a.97.97 0 0 0-.7.29c-.1.09-.16.2-.22.32A.85.85 0 0 0 3 6v5c0 .14.03.27.08.4.05.11.12.22.2.31.1.1.2.16.32.21.12.05.25.07.4.08h12a.97.97 0 0 0 .7-.29c.1-.09.16-.2.22-.32A.85.85 0 0 0 17 11V6Zm-2 0c.14 0 .26.03.38.08s.23.12.32.2A1 1 0 0 1 16 7v3.01a.97.97 0 0 1-.29.7c-.09.1-.2.16-.32.22A.85.85 0 0 1 15 11H5a.97.97 0 0 1-.4-.08 1.1 1.1 0 0 1-.31-.2.85.85 0 0 1-.21-.32A1.2 1.2 0 0 1 4 10V7a.97.97 0 0 1 .29-.7c.09-.1.2-.16.32-.22A.85.85 0 0 1 5 6h10ZM7.5 7H5v3h2.5V7Zm4 3V7h-3v3h3Zm1 0H15V7h-2.5v3Zm3.5 3H4v1.5c0 .14.05.25.15.35.1.1.21.15.35.15h3.8l1.35-1.35c.1-.1.21-.15.35-.15.14 0 .25.05.35.15L11.71 15h3.79c.14 0 .25-.05.35-.15.1-.1.15-.21.15-.35V13Z\"]);\nexport const RatingMatureFilled = /*#__PURE__*/createFluentIcon('RatingMatureFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm4.92 1.24A.5.5 0 0 0 7 7.5v5a.5.5 0 1 0 1 0V9.24l1.58 2.53a.5.5 0 0 0 .84 0L12 9.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L10 10.56 7.92 7.24Z\"]);\nexport const RatingMatureRegular = /*#__PURE__*/createFluentIcon('RatingMatureRegular', \"1em\", [\"M7.92 7.24A.5.5 0 0 0 7 7.5v5a.5.5 0 1 0 1 0V9.24l1.58 2.53a.5.5 0 0 0 .84 0L12 9.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L10 10.56 7.92 7.24ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const RatioOneToOneFilled = /*#__PURE__*/createFluentIcon('RatioOneToOneFilled', \"1em\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM7 7.5v5a.5.5 0 0 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5A.5.5 0 0 1 7 7.5Zm7 0v5a.5.5 0 1 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5a.5.5 0 0 1 .72.45Zm-4 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM9.5 12a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z\"]);\nexport const RatioOneToOneRegular = /*#__PURE__*/createFluentIcon('RatioOneToOneRegular', \"1em\", [\"M6.76 7.07c.15.1.24.26.24.43v5a.5.5 0 0 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5a.5.5 0 0 1 .48.02ZM14 7.5a.5.5 0 0 0-.72-.45l-1 .5a.5.5 0 1 0 .44.9L13 8.3v4.19a.5.5 0 0 0 1 0v-5Zm-4 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM9.5 12a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM4.75 5C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75Z\"]);\nexport const ReOrderFilled = /*#__PURE__*/createFluentIcon('ReOrderFilled', \"1em\", [\"M2.75 7.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Zm0 3a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Z\"]);\nexport const ReOrderRegular = /*#__PURE__*/createFluentIcon('ReOrderRegular', \"1em\", [\"M2.5 8a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Z\"]);\nexport const ReOrderDotsHorizontalFilled = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontalFilled', \"1em\", [\"M14 6.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-5 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM5.5 8a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm8.5 5.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM10.5 15a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM4 13.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const ReOrderDotsHorizontalRegular = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontalRegular', \"1em\", [\"M15 7a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM9 7a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM4 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm11 5a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-5 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-7-1a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const ReOrderDotsVerticalFilled = /*#__PURE__*/createFluentIcon('ReOrderDotsVerticalFilled', \"1em\", [\"M6.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM8 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM13.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM15 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM13.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const ReOrderDotsVerticalRegular = /*#__PURE__*/createFluentIcon('ReOrderDotsVerticalRegular', \"1em\", [\"M7 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5-11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ReadAloudFilled = /*#__PURE__*/createFluentIcon('ReadAloudFilled', \"1em\", [\"M11.84 2.14c.2-.36.66-.5 1.02-.3a9.94 9.94 0 0 1 5.39 8.08.75.75 0 1 1-1.5.16 8.45 8.45 0 0 0-4.6-6.92.75.75 0 0 1-.3-1.02ZM8.7 4.22a.75.75 0 0 0-1.38 0l-4.5 11a.75.75 0 0 0 1.38.56l1.45-3.53h4.72l1.45 3.53a.75.75 0 0 0 1.38-.56l-4.5-11Zm1.06 6.53h-3.5L8 6.48l1.75 4.27Zm2.62-6.4a.75.75 0 0 0-.74 1.3c1.52.87 2.4 2.4 2.63 3.96a.75.75 0 1 0 1.48-.22 6.92 6.92 0 0 0-3.37-5.04Z\"]);\nexport const ReadAloudRegular = /*#__PURE__*/createFluentIcon('ReadAloudRegular', \"1em\", [\"M12.06 2.26a.5.5 0 0 1 .68-.2A9.7 9.7 0 0 1 18 9.94a.5.5 0 0 1-1 .12 8.7 8.7 0 0 0-4.74-7.12.5.5 0 0 1-.2-.68Zm-3.6 2.05a.5.5 0 0 0-.92 0l-4.5 11a.5.5 0 1 0 .92.38l1.54-3.76V12h5v-.07l1.54 3.76a.5.5 0 1 0 .92-.38l-4.5-11ZM10.12 11H5.88L8 5.82 10.12 11Zm2.13-6.43a.5.5 0 0 0-.5.86 5.67 5.67 0 0 1 2.76 4.14.5.5 0 0 0 .98-.14 6.67 6.67 0 0 0-3.24-4.86Z\"]);\nexport const ReadingListFilled = /*#__PURE__*/createFluentIcon('ReadingListFilled', \"1em\", [\"M3.5 5.5a1 1 0 0 1 1.84-.56.75.75 0 0 0 1.24-.83A2.5 2.5 0 1 0 4.6 8h10.67a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1ZM9.75 4a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm-4 5a.75.75 0 0 0 0 1.5h11.5a.75.75 0 1 0 0-1.5H5.75ZM2 12.25c0-.41.34-.75.75-.75h12.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75ZM5.75 14a.75.75 0 0 0 0 1.5h11.5a.75.75 0 1 0 0-1.5H5.75Z\"]);\nexport const ReadingListRegular = /*#__PURE__*/createFluentIcon('ReadingListRegular', \"1em\", [\"M3 6.25a1.25 1.25 0 0 1 2.3-.7.5.5 0 1 0 .82-.55 2.25 2.25 0 1 0-1.74 3.5H15.5a.5.5 0 0 0 0-1H4.38a.5.5 0 0 0-.06 0A1.25 1.25 0 0 1 3 6.25ZM8.5 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm-3 5a.5.5 0 0 0 0 1h12a.5.5 0 0 0 0-1h-12ZM2 13c0-.28.22-.5.5-.5h12a.5.5 0 0 1 0 1h-12A.5.5 0 0 1 2 13Zm3.5 2a.5.5 0 0 0 0 1h12a.5.5 0 1 0 0-1h-12Z\"]);\nexport const ReadingListAddFilled = /*#__PURE__*/createFluentIcon('ReadingListAddFilled', \"1em\", [\"M3.5 5.5a1 1 0 0 1 1.84-.56.75.75 0 0 0 1.24-.83A2.5 2.5 0 1 0 4.6 8h10.67a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1ZM9.75 4a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm-4 5a.75.75 0 0 0 0 1.5h4.98A5.48 5.48 0 0 1 14.5 9H5.75Zm-3 2.5h7.14c-.3.46-.53.96-.68 1.5H2.75a.75.75 0 0 1 0-1.5Zm3 2.5h3.27a5.57 5.57 0 0 0 .07 1.5H5.75a.75.75 0 0 1 0-1.5Zm13.25.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const ReadingListAddRegular = /*#__PURE__*/createFluentIcon('ReadingListAddRegular', \"1em\", [\"M3 5.25a1.25 1.25 0 0 1 2.3-.7.5.5 0 1 0 .82-.55 2.25 2.25 0 1 0-1.74 3.5H15.5a.5.5 0 0 0 0-1H4.38a.5.5 0 0 0-.06 0A1.25 1.25 0 0 1 3 5.25ZM8.5 4a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm-3 5a.5.5 0 0 0 0 1h5.84c.9-.63 1.98-1 3.16-1h-9Zm-3 2.5h7.39c-.2.31-.38.65-.52 1H2.5a.5.5 0 0 1 0-1Zm3 2.5h3.52a5.57 5.57 0 0 0 0 1H5.5a.5.5 0 0 1 0-1Zm13.5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ReadingModeMobileFilled = /*#__PURE__*/createFluentIcon('ReadingModeMobileFilled', \"1em\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h9c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5v-13Zm2 3c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5ZM6.5 8a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM6 10.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const ReadingModeMobileRegular = /*#__PURE__*/createFluentIcon('ReadingModeMobileRegular', \"1em\", [\"M6.5 6a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM6 8.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM4 3.5C4 2.67 4.67 2 5.5 2h9c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5v-13ZM5.5 3a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-9Z\"]);\nexport const RealEstateFilled = /*#__PURE__*/createFluentIcon('RealEstateFilled', \"1em\", [\"M2 3a1 1 0 0 1 2 0h13a1 1 0 1 1 0 2H4v12.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V3Zm3 3.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 5 13.5v-7Zm3 7c0 .28.22.5.5.5h1a.5.5 0 0 0 .5-.5v-1c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v1c0 .28.22.5.5.5h1a.5.5 0 0 0 .5-.5v-2.55a1 1 0 0 0-.34-.75l-2.33-2.07a.5.5 0 0 0-.66 0L8.34 10.2a1 1 0 0 0-.34.75v2.55Z\"]);\nexport const RealEstateRegular = /*#__PURE__*/createFluentIcon('RealEstateRegular', \"1em\", [\"M2 3.5A1.5 1.5 0 0 1 4.91 3H16.5a1.5 1.5 0 0 1 .5 2.92V13a3 3 0 0 1-3 3H7c-.77 0-1.47-.29-2-.76v2.01c0 .41-.34.75-.75.75h-1.5a.75.75 0 0 1-.75-.75V3.5ZM16 13V6H5v7c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2ZM4 5h12.5a.5.5 0 0 0 0-1H4v-.5a.5.5 0 0 0-1 0V17h1V5Zm3.5 4.95v2.56c0 .27.22.5.5.5h1a.5.5 0 0 0 .5-.5v-1c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v1c0 .27.22.5.5.5h1a.5.5 0 0 0 .5-.5V9.95a1 1 0 0 0-.34-.74l-2.33-2.07a.5.5 0 0 0-.66 0L7.84 9.2a1 1 0 0 0-.34.74Z\"]);\nexport const ReceiptFilled = /*#__PURE__*/createFluentIcon('ReceiptFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM6.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const ReceiptRegular = /*#__PURE__*/createFluentIcon('ReceiptRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Zm11 8v3a2 2 0 0 0 2-2v-1h-2Zm-1 3V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9c0 1.1.9 2 2 2h7ZM6 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const ReceiptAddFilled = /*#__PURE__*/createFluentIcon('ReceiptAddFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6a5.48 5.48 0 0 0-1.74-7h2.84a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.42.23A5.5 5.5 0 0 0 4 9.21V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ReceiptAddRegular = /*#__PURE__*/createFluentIcon('ReceiptAddRegular', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6c.16-.32.3-.65.4-1H14V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4.02c-.34.03-.68.1-1 .19V5Zm7.5 5H8.66a5.48 5.48 0 0 0-1.58-.77A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1Zm3.5 6a2 2 0 0 0 2-2v-1h-2v3ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ReceiptBagFilled = /*#__PURE__*/createFluentIcon('ReceiptBagFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-5v-4.5c0-.65-.42-1.2-1-1.41V11a3 3 0 0 0-.17-1h2.67a.5.5 0 0 0 0-1H8.24A3 3 0 0 0 5 8.17 3 3 0 0 0 4 8V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM4 9a2 2 0 0 1 1 .27A2 2 0 0 1 8 11v1h.5c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4.5c0-.28.22-.5.5-.5H2v-1c0-1.1.9-2 2-2Zm1 3v-1a1 1 0 1 0-2 0v1h2Zm.75-1.97A2 2 0 0 1 6 11v1h1v-1a1 1 0 0 0-1.25-.97Z\"]);\nexport const ReceiptBagRegular = /*#__PURE__*/createFluentIcon('ReceiptBagRegular', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-5v-1h4V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3.17A3 3 0 0 0 4 8V5Zm7.5 5H8.83a3 3 0 0 0-.6-1h3.27a.5.5 0 0 1 0 1Zm3.5 3v3a2 2 0 0 0 2-2v-1h-2ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM4 9a2 2 0 0 1 1 .27A2 2 0 0 1 8 11v1h.5c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4.5c0-.28.22-.5.5-.5H2v-1c0-1.1.9-2 2-2Zm1 3v-1a1 1 0 1 0-2 0v1h2Zm.75-1.97A2 2 0 0 1 6 11v1h1v-1a1 1 0 0 0-1.25-.97Z\"]);\nexport const ReceiptCubeFilled = /*#__PURE__*/createFluentIcon('ReceiptCubeFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H9.94a2 2 0 0 0 .06-.5v-4a2 2 0 0 0-1.1-1.79L7.46 10a.5.5 0 0 0 .03 0h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.38.82l-1.23-.6a2 2 0 0 0-1.78 0L4 9.25V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm.95 5.6-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const ReceiptCubeRegular = /*#__PURE__*/createFluentIcon('ReceiptCubeRegular', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H9.94a2 2 0 0 0 .06-.5V16h4V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4a2 2 0 0 0-.9.21l-.1.05V5Zm3.5 5a.5.5 0 0 1-.03 0l-.35-.18A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1h-4Zm7.5 3v3a2 2 0 0 0 2-2v-1h-2ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm1.45 5.1-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const ReceiptMoneyFilled = /*#__PURE__*/createFluentIcon('ReceiptMoneyFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.05c.03-.16.05-.33.05-.5v-3A2.5 2.5 0 0 0 8.5 11H4V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 4.5c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 13c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 13h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 15a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptMoneyRegular = /*#__PURE__*/createFluentIcon('ReceiptMoneyRegular', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.05c.03-.16.05-.33.05-.5V16h3V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v6H4V5Zm13 8h-2v3a2 2 0 0 0 2-2v-1ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 4c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 13c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 13h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 15a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptPlayFilled = /*#__PURE__*/createFluentIcon('ReceiptPlayFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6a5.48 5.48 0 0 0-1.74-7h2.84a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.42.23A5.5 5.5 0 0 0 4 9.21V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM4 16c0 .38.42.62.76.42l2.5-1.5a.5.5 0 0 0 0-.85l-2.5-1.5A.5.5 0 0 0 4 13v3Z\"]);\nexport const ReceiptPlayRegular = /*#__PURE__*/createFluentIcon('ReceiptPlayRegular', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6c.16-.32.3-.65.4-1H14V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4.02c-.34.03-.68.1-1 .19V5Zm7.5 5H8.66a5.48 5.48 0 0 0-1.58-.77A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1Zm3.5 6a2 2 0 0 0 2-2v-1h-2v3ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM4 16c0 .38.42.62.76.42l2.5-1.5a.5.5 0 0 0 0-.85l-2.5-1.5A.5.5 0 0 0 4 13v3Z\"]);\nexport const ReceiptSearchFilled = /*#__PURE__*/createFluentIcon('ReceiptSearchFilled', \"1em\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-3.88l-1.56-1.56A4.48 4.48 0 0 0 8.33 10h3.17a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.45.28A4.5 4.5 0 0 0 4 9.26V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-2 11c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L8.3 15.6A3.5 3.5 0 1 0 5.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ReceiptSearchRegular = /*#__PURE__*/createFluentIcon('ReceiptSearchRegular', \"1em\", [\"M6 3a2 2 0 0 0-2 2v4.26c.32-.12.65-.2 1-.23V5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v11h-3.88l1 1H15a3 3 0 0 0 3-3v-2h-3V5a2 2 0 0 0-2-2H6Zm2.33 7h3.17a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.45.28c.47.17.9.41 1.28.72ZM15 16v-3h2v1a2 2 0 0 1-2 2ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-2 11c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L8.3 15.6A3.5 3.5 0 1 0 5.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ReceiptSparklesFilled = /*#__PURE__*/createFluentIcon('ReceiptSparklesFilled', \"1em\", [\"M15.23 1.35 14.88.28a.42.42 0 0 0-.8 0l-.35 1.07a2.2 2.2 0 0 1-1.38 1.4l-1.07.35a.42.42 0 0 0 0 .8l1.07.34a2.2 2.2 0 0 1 1.4 1.4l.35 1.08a.42.42 0 0 0 .8 0l.35-1.07a2.2 2.2 0 0 1 1.4-1.4l1.07-.35a.42.42 0 0 0 0-.8h-.02l-1.08-.35a2.2 2.2 0 0 1-1.4-1.4Zm3.79 6.61.76.25h.02a.3.3 0 0 1 0 .58l-.77.25a1.58 1.58 0 0 0-1 1l-.24.76a.3.3 0 0 1-.58 0l-.24-.77a1.58 1.58 0 0 0-1-1l-.77-.25a.3.3 0 0 1 0-.57l.77-.25a1.58 1.58 0 0 0 .98-1l.25-.76a.3.3 0 0 1 .57 0l.25.77a1.57 1.57 0 0 0 1 1ZM14 8.5V12h2.5c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5c0-1.1.9-2 2-2h5.1c-.06.16-.1.33-.1.5a1.42 1.42 0 0 0 1 1.34l1.1.36a1 1 0 0 1 .4.23l.06.06c.11.1.2.24.26.38L13.15 7c.09.26.25.49.46.66.12.09.25.15.39.2v.21a1.3 1.3 0 0 0 0 .43Zm0 7.5a2 2 0 0 0 2-2v-1h-2v3ZM6.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const ReceiptSparklesRegular = /*#__PURE__*/createFluentIcon('ReceiptSparklesRegular', \"1em\", [\"M15.23 1.35 14.88.28a.42.42 0 0 0-.8 0l-.35 1.07a2.2 2.2 0 0 1-1.38 1.4l-1.07.35a.42.42 0 0 0 0 .8l1.07.34a2.2 2.2 0 0 1 1.4 1.4l.35 1.08a.42.42 0 0 0 .8 0l.35-1.07a2.2 2.2 0 0 1 1.4-1.4l1.07-.35a.42.42 0 0 0 0-.8h-.02l-1.08-.35a2.2 2.2 0 0 1-1.4-1.4Zm3.79 6.61.76.25h.02a.3.3 0 0 1 0 .58l-.77.25a1.58 1.58 0 0 0-1 1l-.24.76a.3.3 0 0 1-.58 0l-.24-.77a1.58 1.58 0 0 0-1-1l-.77-.25a.3.3 0 0 1 0-.57l.77-.25a1.58 1.58 0 0 0 .98-1l.25-.76a.3.3 0 0 1 .57 0l.25.77a1.57 1.57 0 0 0 1 1ZM14 8.5a1.3 1.3 0 0 1 0-.43v-.21c-.14-.05-.27-.11-.39-.2-.21-.17-.37-.4-.46-.66L13 6.49V16H6a2 2 0 0 1-2-2V5a1 1 0 0 1 1-1h5.1c-.06-.16-.1-.33-.1-.5 0-.17.04-.34.1-.5H5a2 2 0 0 0-2 2v9a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1.5a.5.5 0 0 0-.5-.5H14V8.5Zm0 4.5h2v1a2 2 0 0 1-2 2v-3ZM6 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const RecordFilled = /*#__PURE__*/createFluentIcon('RecordFilled', \"1em\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z\"]);\nexport const RecordRegular = /*#__PURE__*/createFluentIcon('RecordRegular', \"1em\", [\"M10 14.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const RecordStopFilled = /*#__PURE__*/createFluentIcon('RecordStopFilled', \"1em\", [\"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8 7h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1Z\"]);\nexport const RecordStopRegular = /*#__PURE__*/createFluentIcon('RecordStopRegular', \"1em\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5-2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8Z\"]);\nexport const RectangleLandscapeFilled = /*#__PURE__*/createFluentIcon('RectangleLandscapeFilled', \"1em\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z\"]);\nexport const RectangleLandscapeRegular = /*#__PURE__*/createFluentIcon('RectangleLandscapeRegular', \"1em\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5Z\"]);\nexport const RectangleLandscapeHintCopyFilled = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopyFilled', \"1em\", [\"M17 5.5a.5.5 0 0 0 1 0V5a2 2 0 0 0-2-2h-1.5a.5.5 0 0 0 0 1H16a1 1 0 0 1 1 1v.5Zm-8-2a.5.5 0 0 1-.5.5H7a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V5c0-1.1.9-2 2-2h1.5c.27 0 .5.22.5.5ZM5.5 11c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h1.5a.5.5 0 0 1 0 1H7a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5Zm11.5.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-1.5a.5.5 0 1 1 0-1H16a1 1 0 0 0 1-1v-.5Zm-4-8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2c.28 0 .5.22.5.5ZM5.5 7c.28 0 .5.23.5.5v2a.5.5 0 0 1-1 0v-2c0-.27.22-.5.5-.5Zm12.5.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2ZM12.5 14a.5.5 0 1 0 0-1h-2a.5.5 0 1 0 0 1h2ZM2 7.41c0-1.38.82-2.57 2-3.1v7.94A2.75 2.75 0 0 0 6.75 15h9.95a3.41 3.41 0 0 1-3.11 2H6.5A4.5 4.5 0 0 1 2 12.5V7.41Z\"]);\nexport const RectangleLandscapeHintCopyRegular = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopyRegular', \"1em\", [\"M5 5c0-1.1.9-2 2-2h1.5a.5.5 0 0 1 0 1H7a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V5Zm5-1.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm6-.5a2 2 0 0 1 2 2v.5a.5.5 0 0 1-1 0V5a1 1 0 0 0-1-1h-1.5a.5.5 0 0 1 0-1H16Zm-6 10.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5ZM7 14a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5a1 1 0 0 0 1 1h1.5a.5.5 0 0 1 0 1H7Zm11-2a2 2 0 0 1-2 2h-1.5a.5.5 0 0 1 0-1H16a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5ZM5.5 7a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm11.5.5a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0v-2ZM2 7.41c0-.94.38-1.8 1-2.41v7.5A3.5 3.5 0 0 0 6.5 16H16a3.4 3.4 0 0 1-2.41 1H6.5A4.5 4.5 0 0 1 2 12.5V7.41Z\"]);\nexport const RectangleLandscapeSparkleFilled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkleFilled', \"1em\", [\"M4.03 9.4a.18.18 0 0 1 .09-.07l.45-.15a.94.94 0 0 0 .6-.6l.14-.46a.18.18 0 0 1 .1-.1C5.45 8 5.47 8 5.49 8a.18.18 0 0 1 .13.06l.04.06.15.46a.95.95 0 0 0 .6.6l.46.15.04.01a.18.18 0 0 1-.04.32l-.45.15a.95.95 0 0 0-.6.6l-.15.46a.18.18 0 0 1-.17.12.18.18 0 0 1-.17-.12l-.14-.46a.94.94 0 0 0-.6-.6l-.46-.15a.18.18 0 0 1-.09-.06.18.18 0 0 1-.03-.1c0-.04 0-.08.03-.1Zm-1.7-.46A.3.3 0 0 0 2.5 9a.3.3 0 0 0 .27-.18l.01-.02.25-.77a1.58 1.58 0 0 1 1-1l.76-.25a.3.3 0 0 0 .15-.45.3.3 0 0 0-.15-.12h-.01L4 5.97c-.23-.08-.44-.21-.61-.38-.12-.12-.21-.26-.28-.4a1.44 1.44 0 0 1-.1-.22l-.25-.77a.3.3 0 0 0-.29-.2.3.3 0 0 0-.28.2l-.25.77v.02a1.58 1.58 0 0 1-.98.97l-.77.25a.3.3 0 0 0-.2.29.3.3 0 0 0 .2.28l.77.25a1.58 1.58 0 0 1 1 1l.24.77c.02.06.06.1.11.14ZM2.5 10c.2 0 .38-.04.56-.13.02.08.05.14.08.19l.02.05.04.05c.17.26.39.37.47.41l.07.04.5.16.17.53.05.09.01.01.01.02a1.65 1.65 0 0 0 .13.19c.03.03.11.12.24.2a1.17 1.17 0 0 0 1.3 0c.26-.17.37-.39.41-.47l.04-.07.16-.5.53-.17.09-.05.01-.01.02-.01a1.64 1.64 0 0 0 .19-.13c.03-.03.12-.11.2-.24a1.2 1.2 0 0 0 .03-1.27c-.1-.19-.27-.34-.46-.43l-.21-.11h-.08l-.3-.1-.17-.5-.04-.07v-.01l-.01-.02-.03-.06a1.2 1.2 0 0 0-.18-.23l-.1-.1-.09-.05c-.1-.07-.2-.12-.3-.15.06-.14.1-.3.12-.48.03-.36-.1-.67-.27-.87a1.33 1.33 0 0 0-.61-.44l-.16-.05h-.01l-.6-.2a.67.67 0 0 1-.22-.13.58.58 0 0 1-.1-.12L4 4.73l-.02-.04-.03-.05-.2-.62L4 4h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.9c.16.07.33.1.5.1Z\"]);\nexport const RectangleLandscapeSparkleRegular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkleRegular', \"1em\", [\"M4.03 9.4a.18.18 0 0 1 .09-.07l.45-.15a.94.94 0 0 0 .6-.6l.14-.46a.18.18 0 0 1 .1-.1C5.45 8 5.47 8 5.49 8a.18.18 0 0 1 .13.06l.04.06.15.46a.95.95 0 0 0 .6.6l.46.15.04.01a.18.18 0 0 1-.04.32l-.45.15a.95.95 0 0 0-.6.6l-.15.46a.18.18 0 0 1-.17.12.18.18 0 0 1-.17-.12l-.14-.46a.94.94 0 0 0-.6-.6l-.46-.15a.18.18 0 0 1-.09-.06.18.18 0 0 1-.03-.1c0-.04 0-.08.03-.1Zm-1.7-.46A.3.3 0 0 0 2.5 9a.3.3 0 0 0 .27-.18l.01-.02.25-.77a1.58 1.58 0 0 1 1-1l.76-.25a.3.3 0 0 0 .15-.45.3.3 0 0 0-.15-.12h-.01L4 5.97c-.23-.08-.44-.21-.61-.38-.12-.12-.21-.26-.28-.4a1.44 1.44 0 0 1-.1-.22l-.25-.77a.3.3 0 0 0-.29-.2.3.3 0 0 0-.28.2l-.25.77v.02a1.58 1.58 0 0 1-.98.97l-.77.25a.3.3 0 0 0-.2.29.3.3 0 0 0 .2.28l.77.25a1.58 1.58 0 0 1 1 1l.24.77c.02.06.06.1.11.14ZM2.5 10c.17 0 .34-.03.5-.1V14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4.27a.64.64 0 0 1-.16-.1.58.58 0 0 1-.1-.13L4 4.73l-.02-.04-.03-.05-.2-.62L4 4h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.9c.16.07.33.1.5.1Z\"]);\nexport const RectanglePortraitLocationTargetFilled = /*#__PURE__*/createFluentIcon('RectanglePortraitLocationTargetFilled', \"1em\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h5.7a4.5 4.5 0 0 1-1.43-2.02 1.5 1.5 0 0 1 0-2.96 4.49 4.49 0 0 1 2.75-2.75 1.5 1.5 0 0 1 2.96 0H16V4a2 2 0 0 0-2-2H6Zm9.06 13.33a1 1 0 1 1-1.12-1.66 1 1 0 0 1 1.12 1.66ZM17.95 14h.55a.5.5 0 0 1 0 1h-.55A3.49 3.49 0 0 1 15 17.95v.55a.5.5 0 0 1-1 0v-.55A3.49 3.49 0 0 1 11.05 15h-.55a.5.5 0 0 1 0-1h.55A3.49 3.49 0 0 1 14 11.05v-.55a.5.5 0 0 1 1 0v.55A3.49 3.49 0 0 1 17.95 14Zm-3.2 2.99a2.5 2.5 0 1 0-.5-4.98 2.5 2.5 0 0 0 .5 4.98Z\"]);\nexport const RectanglePortraitLocationTargetRegular = /*#__PURE__*/createFluentIcon('RectanglePortraitLocationTargetRegular', \"1em\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6.27h-.02A1.5 1.5 0 0 0 15 9.09V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4.78a4.5 4.5 0 0 0 .92 1H6a2 2 0 0 1-2-2V4Zm11.06 11.33a1 1 0 1 1-1.12-1.66 1 1 0 0 1 1.12 1.66ZM17.95 14h.55a.5.5 0 0 1 0 1h-.55A3.49 3.49 0 0 1 15 17.95v.55a.5.5 0 0 1-1 0v-.55A3.49 3.49 0 0 1 11.05 15h-.55a.5.5 0 0 1 0-1h.55A3.49 3.49 0 0 1 14 11.05v-.55a.5.5 0 0 1 1 0v.55A3.49 3.49 0 0 1 17.95 14Zm-3.2 2.99a2.5 2.5 0 1 0-.5-4.98 2.5 2.5 0 0 0 .5 4.98Z\"]);\nexport const RecycleFilled = /*#__PURE__*/createFluentIcon('RecycleFilled', \"1em\", [\"M8.9 3.04a1.25 1.25 0 0 1 2.2 0l1.66 3.1-1.02-.35a.75.75 0 0 0-.48 1.42l3 1a.75.75 0 0 0 .98-.59l.5-3a.75.75 0 1 0-1.48-.24l-.17 1.04-1.67-3.1a2.75 2.75 0 0 0-4.84 0L5.84 5.57a.75.75 0 0 0 1.33.7L8.9 3.05Zm8.04 10.87-1.91-3.56a.75.75 0 1 1 1.32-.71l1.91 3.56a2.75 2.75 0 0 1-2.42 4.05H12.3l.72.72a.75.75 0 1 1-1.06 1.06l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 1 1 1.06 1.06l-.72.72h3.53c.94 0 1.55-1 1.1-1.84Zm-9.69 1.84a.75.75 0 0 1 0 1.5H4.16a2.75 2.75 0 0 1-2.42-4.05L3.6 9.76l-1.35.45a.75.75 0 1 1-.48-1.42l3-1a.75.75 0 0 1 .95.47l1 3a.75.75 0 1 1-1.42.48l-.4-1.22-1.83 3.39c-.44.83.16 1.84 1.1 1.84h3.09Z\"]);\nexport const RecycleRegular = /*#__PURE__*/createFluentIcon('RecycleRegular', \"1em\", [\"M11.32 2.92a1.5 1.5 0 0 0-2.64 0L6.83 6.37a.5.5 0 1 1-.88-.47L7.8 2.45a2.5 2.5 0 0 1 4.4 0l2.01 3.74.3-1.77a.5.5 0 0 1 .98.16l-.5 3a.5.5 0 0 1-.65.4l-3-1a.5.5 0 0 1 .32-.95l1.62.54-1.96-3.65Zm4.03 6.4a.5.5 0 0 0-.22.7l2.03 3.77c.54 1-.19 2.21-1.32 2.21H11.7l1.14-1.15a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L11.71 17h4.13a2.5 2.5 0 0 0 2.2-3.68l-2.03-3.78a.5.5 0 0 0-.66-.21ZM4.16 16H7.5a.5.5 0 0 1 0 1H4.16a2.5 2.5 0 0 1-2.2-3.68l2.15-4-1.95.65a.5.5 0 1 1-.32-.94l3-1a.5.5 0 0 1 .63.31l1 3a.5.5 0 0 1-.94.32l-.6-1.77-2.09 3.9A1.5 1.5 0 0 0 4.16 16Z\"]);\nexport const RemixAddFilled = /*#__PURE__*/createFluentIcon('RemixAddFilled', \"1em\", [\"M2.75 2a.75.75 0 0 0 0 1.5H10a6.52 6.52 0 0 1 6.5 6.5 6.5 6.5 0 0 1-3.03 5.5h2.34A8 8 0 0 0 10 2H2.75Zm5.6 15.83A8 8 0 0 1 4.19 4.5h2.34a6.5 6.5 0 0 0 3.47 12h7.25a.75.75 0 0 1 0 1.5H10c-.57 0-1.12-.06-1.65-.17ZM10 7c.41 0 .75.34.75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5c0-.41.34-.75.75-.75Z\"]);\nexport const RemixAddRegular = /*#__PURE__*/createFluentIcon('RemixAddRegular', \"1em\", [\"M2 2.5c0-.28.22-.5.5-.5H10a7.98 7.98 0 0 1 5.3 14h-1.7A7 7 0 0 0 10 3H2.5a.5.5 0 0 1-.5-.5ZM10 18A8 8 0 0 1 4.7 4h1.7A7 7 0 0 0 10 17h7.5a.5.5 0 0 1 0 1H10Zm.5-10.5a.5.5 0 0 0-1 0v2h-2a.5.5 0 1 0 0 1h2v2a.5.5 0 0 0 1 0v-2h2a.5.5 0 0 0 0-1h-2v-2Z\"]);\nexport const RemoteFilled = /*#__PURE__*/createFluentIcon('RemoteFilled', \"1em\", [\"M16.97 15.03a.75.75 0 1 0 1.06-1.06L12.56 8.5l5.47-5.47a.75.75 0 0 0-1.06-1.06l-6 6c-.3.3-.3.77 0 1.06l6 6ZM3.03 4.97a.75.75 0 0 0-1.06 1.06l5.47 5.47-5.47 5.47a.75.75 0 1 0 1.06 1.06l6-6c.3-.3.3-.77 0-1.06l-6-6Z\"]);\nexport const RemoteRegular = /*#__PURE__*/createFluentIcon('RemoteRegular', \"1em\", [\"M17.15 14.85a.5.5 0 0 0 .7-.7L12.21 8.5l5.64-5.65a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 0 .7l6 6Zm-14.3-9.7a.5.5 0 1 0-.7.7l5.64 5.65-5.64 5.65a.5.5 0 0 0 .7.7l6-6a.5.5 0 0 0 0-.7l-6-6Z\"]);\nexport const RenameFilled = /*#__PURE__*/createFluentIcon('RenameFilled', \"1em\", [\"M8.5 2a.5.5 0 0 0 0 1h1v14h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3Zm-4 2h4v12h-4A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4Zm11 12h-4V4h4A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5Z\"]);\nexport const RenameRegular = /*#__PURE__*/createFluentIcon('RenameRegular', \"1em\", [\"M8.5 2a.5.5 0 0 0 0 1h1v14h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3Zm-4 2h4v1h-4C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h4v1h-4A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4Zm11 11h-4v1h4a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-4v1h4c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5Z\"]);\nexport const ReorderFilled = /*#__PURE__*/createFluentIcon('ReorderFilled', \"1em\", [\"M2.75 7.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Zm0 3a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Z\"]);\nexport const ReorderRegular = /*#__PURE__*/createFluentIcon('ReorderRegular', \"1em\", [\"M2.5 8a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Z\"]);\nexport const ReplayFilled = /*#__PURE__*/createFluentIcon('ReplayFilled', \"1em\", [\"M3 6.5v-3a.5.5 0 0 1 1 0v1.2a7.98 7.98 0 0 1 7.94-2.46A8 8 0 1 1 2 9.48a.5.5 0 1 1 1 .07A6.97 6.97 0 0 0 3 10a7 7 0 1 0 1.25-4H6a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5Zm4.5 1.47c0-.93.98-1.54 1.81-1.12l4.04 2.03c.92.47.92 1.77 0 2.24l-4.04 2.03a1.25 1.25 0 0 1-1.81-1.12V7.97Z\"]);\nexport const ReplayRegular = /*#__PURE__*/createFluentIcon('ReplayRegular', \"1em\", [\"M3 6.5v-3a.5.5 0 0 1 1 0v1.2a7.98 7.98 0 0 1 7.94-2.46A8 8 0 1 1 2 9.48a.5.5 0 1 1 1 .07A6.97 6.97 0 0 0 3 10a7 7 0 1 0 1.25-4H6a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5Zm4.5 1.47c0-.93.98-1.54 1.81-1.12l4.04 2.03c.92.47.92 1.77 0 2.24l-4.04 2.03a1.25 1.25 0 0 1-1.81-1.12V7.97Zm1.36-.23a.25.25 0 0 0-.36.23v4.06c0 .19.2.31.36.23l4.04-2.04a.25.25 0 0 0 0-.44L8.86 7.74Z\"]);\nexport const ResizeFilled = /*#__PURE__*/createFluentIcon('ResizeFilled', \"1em\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3Zm-9 9c.41 0 .75.34.75.75v3c0 .97.78 1.75 1.75 1.75h3a.75.75 0 0 1 0 1.5h-3A3.25 3.25 0 0 1 2 14.75v-3c0-.41.34-.75.75-.75Zm15.25.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3Z\"]);\nexport const ResizeRegular = /*#__PURE__*/createFluentIcon('ResizeRegular', \"1em\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm-9 9c.28 0 .5.22.5.5V15c0 1.1.9 2 2 2h3.5a.5.5 0 0 1 0 1H5a3 3 0 0 1-3-3v-3.5c0-.28.22-.5.5-.5Zm15.5.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5Z\"]);\nexport const ResizeImageFilled = /*#__PURE__*/createFluentIcon('ResizeImageFilled', \"1em\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3ZM18 11.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3ZM1 12.5A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const ResizeImageRegular = /*#__PURE__*/createFluentIcon('ResizeImageRegular', \"1em\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm6.5 9.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5Zm-17 1A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const ResizeLargeFilled = /*#__PURE__*/createFluentIcon('ResizeLargeFilled', \"1em\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1Zm1 1C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7Zm8-1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 14.5 3h-1a.5.5 0 0 0 0 1h1Zm0 12c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-9 0A1.5 1.5 0 0 1 4 14.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 5.5 17h1.25a.5.5 0 0 0 0-1H5.5Z\"]);\nexport const ResizeLargeRegular = /*#__PURE__*/createFluentIcon('ResizeLargeRegular', \"1em\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1ZM16 5.5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1Zm0 9c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1Zm-12 0c0 .83.67 1.5 1.5 1.5h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25ZM6.5 5C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7ZM6 6.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-7Z\"]);\nexport const ResizeSmallFilled = /*#__PURE__*/createFluentIcon('ResizeSmallFilled', \"1em\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1Zm3 3C7.67 7 7 7.67 7 8.5v3c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3Zm6-3c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 14.5 3h-1a.5.5 0 0 0 0 1h1Zm0 12c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-9 0A1.5 1.5 0 0 1 4 14.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 5.5 17h1.25a.5.5 0 0 0 0-1H5.5Z\"]);\nexport const ResizeSmallRegular = /*#__PURE__*/createFluentIcon('ResizeSmallRegular', \"1em\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1ZM16 5.5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1Zm0 9c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1Zm-12 0c0 .83.67 1.5 1.5 1.5h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25ZM8.5 7C7.67 7 7 7.67 7 8.5v3c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3ZM8 8.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Z\"]);\nexport const ResizeTableFilled = /*#__PURE__*/createFluentIcon('ResizeTableFilled', \"1em\", [\"M5 2a3 3 0 0 0-3 3v2.35c.29-.32.62-.6 1-.81V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm10 16h-2.35c.32-.29.6-.62.81-1H15a2 2 0 0 0 2-2v-3.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3ZM11.5 2a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5ZM5 7a3 3 0 0 0-3 3h3V7Zm0 4v3H2v-3h3Zm0 4H2a3 3 0 0 0 3 3v-3Zm1 0h3v3H6v-3Zm0-1h3v-3H6v3Zm4 1h3a3 3 0 0 1-3 3v-3Zm0-4v3h3v-3h-3Zm0-1V7a3 3 0 0 1 3 3h-3ZM6 7h3v3H6V7Z\"]);\nexport const ResizeTableRegular = /*#__PURE__*/createFluentIcon('ResizeTableRegular', \"1em\", [\"M5 2a3 3 0 0 0-3 3v2.35c.29-.32.62-.6 1-.81V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm10 16h-2.35c.32-.29.6-.62.81-1H15a2 2 0 0 0 2-2v-3.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3ZM11.5 2a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5ZM5 7a3 3 0 0 0-3 3v5a3 3 0 0 0 3 3h5a3 3 0 0 0 3-3v-5a3 3 0 0 0-3-3H5Zm-2 3c0-1.1.9-2 2-2v2H3Zm3 0V8h3v2H6Zm4 0V8a2 2 0 0 1 2 2h-2Zm-4 1h3v3H6v-3Zm4 0h2v3h-2v-3Zm-4 4h3v2H6v-2Zm6 0a2 2 0 0 1-2 2v-2h2Zm-9-4h2v3H3v-3Zm0 4h2v2a2 2 0 0 1-2-2Z\"]);\nexport const ResizeVideoFilled = /*#__PURE__*/createFluentIcon('ResizeVideoFilled', \"1em\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3ZM18 11.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3ZM3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4A2.5 2.5 0 0 1 7.5 19h-4A2.5 2.5 0 0 1 1 16.5v-4A2.5 2.5 0 0 1 3.5 10Zm.72 2.55a.5.5 0 0 0-.72.45v3a.5.5 0 0 0 .72.45l3-1.5a.5.5 0 0 0 0-.9l-3-1.5Z\"]);\nexport const ResizeVideoRegular = /*#__PURE__*/createFluentIcon('ResizeVideoRegular', \"1em\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm6.5 9.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5ZM3.5 10A2.5 2.5 0 0 0 1 12.5v4A2.5 2.5 0 0 0 3.5 19h4a2.5 2.5 0 0 0 2.5-2.5v-4A2.5 2.5 0 0 0 7.5 10h-4Zm.72 2.55 3 1.5a.5.5 0 0 1 0 .9l-3 1.5A.5.5 0 0 1 3.5 16v-3a.5.5 0 0 1 .72-.45Z\"]);\nexport const RewardFilled = /*#__PURE__*/createFluentIcon('RewardFilled', \"1em\", [\"M15.53 3c.82 0 1.5.67 1.5 1.5v1.4c0 .93-.53 1.8-1.37 2.22l-4.19 2.14a3.54 3.54 0 1 1-2.92 0L4.36 8.12a2.5 2.5 0 0 1-1.35-2.04L3 5.9V4.5C3 3.67 3.67 3 4.5 3h11.03ZM10 10.95a2.54 2.54 0 1 0 0 5.07 2.54 2.54 0 0 0 0-5.07ZM12.61 4h-5.2v4.55l2.38 1.22a.5.5 0 0 0 .45 0l2.38-1.22V4Z\"]);\nexport const RewardRegular = /*#__PURE__*/createFluentIcon('RewardRegular', \"1em\", [\"M15.53 3c.83 0 1.5.67 1.5 1.5v1.4c0 .94-.53 1.8-1.36 2.22l-4.2 2.14a3.54 3.54 0 1 1-2.92 0L4.36 8.12a2.5 2.5 0 0 1-1.35-2.04V4.5C3 3.67 3.66 3 4.5 3h11.02ZM10 10.95a2.54 2.54 0 1 0 0 5.08 2.54 2.54 0 0 0 0-5.08ZM12.55 4H7.47V8.6L9.8 9.77a.5.5 0 0 0 .45 0l2.31-1.18V4ZM6.47 4H4.5a.5.5 0 0 0-.5.5v1.54c.06.5.36.96.82 1.2l1.65.84V4Zm9.06 0h-1.98v4.08l1.66-.85c.5-.25.82-.77.82-1.33V4.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const RewindFilled = /*#__PURE__*/createFluentIcon('RewindFilled', \"1em\", [\"M10 5.49a1 1 0 0 0-1.6-.8l-5.87 4.3c-.68.5-.68 1.52 0 2.02l5.88 4.31a1 1 0 0 0 1.59-.8v-3.17l5.4 3.97a1 1 0 0 0 1.6-.8V5.48a1 1 0 0 0-1.6-.8L10 8.64V5.49Zm-1.6-.8.3.39Z\"]);\nexport const RewindRegular = /*#__PURE__*/createFluentIcon('RewindRegular', \"1em\", [\"M10 5.49a1 1 0 0 0-1.6-.8l-5.87 4.3c-.68.5-.68 1.52 0 2.02l5.88 4.31a1 1 0 0 0 1.59-.8v-3.17l5.4 3.97a1 1 0 0 0 1.6-.8V5.48a1 1 0 0 0-1.6-.8L10 8.64V5.49Zm-6.88 4.3L9 5.5v9.02l-5.88-4.3a.25.25 0 0 1 0-.41Zm7 0L16 5.5v9.02l-5.88-4.3a.25.25 0 0 1 0-.41Z\"]);\nexport const RhombusFilled = /*#__PURE__*/createFluentIcon('RhombusFilled', \"1em\", [\"M4.89 4.3A2 2 0 0 1 6.76 3H17a2 2 0 0 1 1.87 2.7l-3.76 10a2 2 0 0 1-1.87 1.3H3a2 2 0 0 1-1.87-2.7l3.76-10Z\"]);\nexport const RhombusRegular = /*#__PURE__*/createFluentIcon('RhombusRegular', \"1em\", [\"M4.89 4.3A2 2 0 0 1 6.76 3H17a2 2 0 0 1 1.87 2.7l-3.76 10a2 2 0 0 1-1.87 1.3H3a2 2 0 0 1-1.87-2.7l3.76-10ZM6.76 4a1 1 0 0 0-.93.65l-3.76 10A1 1 0 0 0 3 16h10.24a1 1 0 0 0 .93-.65l3.76-10A1 1 0 0 0 17 4H6.76Z\"]);\nexport const RibbonFilled = /*#__PURE__*/createFluentIcon('RibbonFilled', \"1em\", [\"M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0Zm-6 7c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L10 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 10 15Z\"]);\nexport const RibbonRegular = /*#__PURE__*/createFluentIcon('RibbonRegular', \"1em\", [\"M16 8c0 1.78-.77 3.37-2 4.47v5.03a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03A5.98 5.98 0 0 1 10 2a6 6 0 0 1 6 6Zm-6 6c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.2c-.88.5-1.9.8-3 .8Zm0-1a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"]);\nexport const RibbonAddFilled = /*#__PURE__*/createFluentIcon('RibbonAddFilled', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-6 2c0-1.28.44-2.45 1.17-3.39A6 6 0 1 0 14.2 11 5.5 5.5 0 0 1 9 5.5ZM9 15c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L9 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 9 15Z\"]);\nexport const RibbonAddRegular = /*#__PURE__*/createFluentIcon('RibbonAddRegular', \"1em\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5ZM9 2c.4 0 .79.04 1.17.11-.23.29-.42.6-.59.92a5 5 0 1 0 3.54 7.8c.35.09.71.14 1.08.16a6.03 6.03 0 0 1-1.2 1.48v5.03a.5.5 0 0 1-.75.43L9 16.08l-3.25 1.85A.5.5 0 0 1 5 17.5v-5.03A5.98 5.98 0 0 1 9 2Zm0 12c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L12 16.64V13.2c-.88.5-1.9.8-3 .8Z\"]);\nexport const RibbonOffFilled = /*#__PURE__*/createFluentIcon('RibbonOffFilled', \"1em\", [\"M4.62 5.33a6 6 0 0 0 8.04 8.04l.75.75A6.97 6.97 0 0 1 6 13.75v3.75a.5.5 0 0 0 .8.4L10 16l3.2 1.9a.5.5 0 0 0 .8-.4v-2.8l3.15 3.15a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l2.47 2.48Zm1.2-1.63 8.48 8.48A6 6 0 0 0 5.82 3.7Z\"]);\nexport const RibbonOffRegular = /*#__PURE__*/createFluentIcon('RibbonOffRegular', \"1em\", [\"M4.62 5.33 2.15 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7L14 14.71v2.79a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03a5.98 5.98 0 0 1-1.38-7.14Zm8.05 8.05A5.98 5.98 0 0 1 7 13.2v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.7l-.33-.33Zm-.76-.76L5.38 6.1A4.98 4.98 0 0 0 10 13c.68 0 1.32-.13 1.91-.38ZM15 8c0 1.35-.53 2.57-1.4 3.47l.7.71A6 6 0 0 0 5.82 3.7l.7.7A4.98 4.98 0 0 1 15 8Z\"]);\nexport const RibbonStarFilled = /*#__PURE__*/createFluentIcon('RibbonStarFilled', \"1em\", [\"M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0ZM9.85 5.1l-.72 1.55a.18.18 0 0 1-.14.1l-1.7.2c-.14.02-.2.2-.1.3l1.26 1.17c.05.04.07.1.05.16l-.33 1.68c-.03.15.13.26.26.19l1.49-.84a.18.18 0 0 1 .17 0l1.5.84c.12.07.28-.04.25-.19l-.33-1.68a.17.17 0 0 1 .05-.16l1.26-1.16a.18.18 0 0 0-.1-.3l-1.7-.2a.17.17 0 0 1-.14-.1l-.72-1.56a.17.17 0 0 0-.31 0ZM10 15c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L10 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 10 15Z\"]);\nexport const RibbonStarRegular = /*#__PURE__*/createFluentIcon('RibbonStarRegular', \"1em\", [\"M10.16 5.1a.18.18 0 0 0-.31 0l-.72 1.55a.18.18 0 0 1-.14.1l-1.7.2c-.15.02-.2.2-.1.3l1.26 1.17c.05.04.07.1.05.16l-.33 1.68c-.03.15.13.26.26.19l1.49-.84a.17.17 0 0 1 .17 0l1.5.84c.12.07.28-.04.25-.19l-.33-1.68a.18.18 0 0 1 .05-.16l1.26-1.16a.17.17 0 0 0-.1-.3l-1.7-.2a.18.18 0 0 1-.14-.1l-.72-1.56ZM16 8c0 1.78-.77 3.37-2 4.47v5.03a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03A5.98 5.98 0 0 1 10 2a6 6 0 0 1 6 6Zm-6 6c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.2c-.88.5-1.9.8-3 .8Zm0-1a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"]);\nexport const RoadConeFilled = /*#__PURE__*/createFluentIcon('RoadConeFilled', \"1em\", [\"M8.42 2.76A1 1 0 0 1 9.4 2h1.23a1 1 0 0 1 .96.74L15.38 17h2.12a.5.5 0 0 1 0 1h-15a.5.5 0 0 1 0-1h2.11l.8-3h6.09a.5.5 0 0 0 0-1H5.69l.45-1.63.1-.37h4.26a.5.5 0 0 0 0-1H6.52c.68-2.48 1.35-4.96 1.9-7.24Z\"]);\nexport const RoadConeRegular = /*#__PURE__*/createFluentIcon('RoadConeRegular', \"1em\", [\"M9.38 2a1 1 0 0 0-.96.74L4.62 17H2.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-2.12l-3.8-14.26a1 1 0 0 0-.96-.74H9.38ZM5.65 17l.8-3h5.05a.5.5 0 0 0 0-1H6.72l.53-2h3.25a.5.5 0 0 0 0-1H7.52l1.86-7h1.24l3.73 14h-8.7Z\"]);\nexport const RocketFilled = /*#__PURE__*/createFluentIcon('RocketFilled', \"1em\", [\"M10.76 6.43a2 2 0 1 1 2.82 2.82 2 2 0 0 1-2.82-2.82Zm2.11.7a1 1 0 1 0-1.4 1.41 1 1 0 0 0 1.4-1.4ZM9.44 13.6l.6.6a1.5 1.5 0 0 0 1.71.3l1.12 1.12c.2.2.51.2.7 0L15 14.2c.86-.86.96-2.17.31-3.14l.85-.85a6.3 6.3 0 0 0 1.56-6.33 2.43 2.43 0 0 0-1.6-1.6A6.3 6.3 0 0 0 9.8 3.86l-.85.85A2.5 2.5 0 0 0 5.8 5L4.38 6.43a.5.5 0 0 0 0 .7L5.5 8.27a1.5 1.5 0 0 0 .3 1.7l.6.61-1.21.73a.5.5 0 0 0-.1.78l2.83 2.83a.5.5 0 0 0 .79-.1l.73-1.21Zm7.32-9.42a5.3 5.3 0 0 1-1.3 5.33l-4 4a.5.5 0 0 1-.7 0l-1.07-1.07-2.12-2.12L6.5 9.24a.5.5 0 0 1 0-.7l3.99-4a5.3 5.3 0 0 1 5.33-1.3c.44.13.8.48.93.93ZM5.8 14.91a.5.5 0 0 0-.7-.7l-1.77 1.76a.5.5 0 1 0 .7.7l1.77-1.76ZM4.4 12.79c.2.2.2.5 0 .7l-.7.71a.5.5 0 1 1-.72-.7l.71-.71c.2-.2.51-.2.71 0Zm2.83 3.53a.5.5 0 1 0-.7-.7l-.72.7a.5.5 0 1 0 .71.71l.71-.7Z\"]);\nexport const RocketRegular = /*#__PURE__*/createFluentIcon('RocketRegular', \"1em\", [\"M10.76 6.43a2 2 0 1 1 2.82 2.82 2 2 0 0 1-2.82-2.82Zm2.11.7a1 1 0 1 0-1.4 1.42 1 1 0 0 0 1.4-1.42Zm-1.12 7.37a1.5 1.5 0 0 1-1.7-.3l-.61-.6-.74 1.22a.5.5 0 0 1-.78.1L5.1 12.09a.5.5 0 0 1 .1-.79l1.22-.73-.61-.6a1.5 1.5 0 0 1-.3-1.71L4.38 7.14a.5.5 0 0 1 0-.7l1.06-1.07a3 3 0 0 1 3.42-.59l.93-.93a6.3 6.3 0 0 1 6.33-1.56c.76.24 1.36.83 1.6 1.6a6.3 6.3 0 0 1-1.56 6.32l-.94.94a3 3 0 0 1-.58 3.41l-1.06 1.06a.5.5 0 0 1-.71 0l-1.12-1.12Zm4.08-11.26a5.3 5.3 0 0 0-5.33 1.31l-.81.82-.7.7h-.01L6.86 8.2l-.4.4a.5.5 0 0 0 .05.66l4.24 4.24c.18.18.46.2.66.05l.4-.4 2.12-2.12.7-.71.82-.81a5.3 5.3 0 0 0 1.31-5.33c-.14-.45-.49-.8-.93-.94Zm-3.31 10.62.7.7.7-.7a2 2 0 0 0 .53-1.93l-1.93 1.93Zm-4.44-8.3a2 2 0 0 0-1.93.52l-.7.7.7.71 1.93-1.93Zm.63 7.31L7.14 11.3l-.89.53 1.93 1.93.53-.89Zm-2.9 2.04a.5.5 0 1 0-.71-.7l-1.77 1.76a.5.5 0 1 0 .7.71l1.77-1.77ZM4.38 12.8c.2.2.2.51 0 .7l-.71.72a.5.5 0 0 1-.7-.71l.7-.71c.2-.2.51-.2.7 0Zm2.83 3.54a.5.5 0 0 0-.7-.71l-.72.7a.5.5 0 1 0 .7.72l.72-.71Z\"]);\nexport const RotateLeftFilled = /*#__PURE__*/createFluentIcon('RotateLeftFilled', \"1em\", [\"M12.39 12a.53.53 0 0 1-.54-.52c0-.29.24-.52.54-.52h.35c1.77 0 3.2-1.08 3.2-2.42 0-1.3-1.35-2.36-3.04-2.42H7.82L9.04 7.3c.2.2.2.53 0 .73a.54.54 0 0 1-.7.05l-.06-.05-2.12-2.08a.51.51 0 0 1 0-.73l2.12-2.08.06-.05c.21-.15.5-.13.7.05.2.2.2.53 0 .74L7.82 5.08h4.92C15.1 5.08 17 6.63 17 8.54S15.1 12 12.74 12h-.35Zm-9-3c-.21 0-.39.17-.39.38v6.87c0 .41.36.75.8.75h12.8a.4.4 0 0 0 .35-.19.37.37 0 0 0-.15-.51L3.6 9.05A.41.41 0 0 0 3.4 9Z\"]);\nexport const RotateLeftRegular = /*#__PURE__*/createFluentIcon('RotateLeftRegular', \"1em\", [\"M12.39 12a.53.53 0 0 1-.54-.52c0-.29.24-.52.54-.52h.35c1.77 0 3.2-1.08 3.2-2.42 0-1.3-1.35-2.36-3.04-2.42H7.82L9.04 7.3c.2.2.2.53 0 .73a.54.54 0 0 1-.7.05l-.06-.05-2.12-2.08a.51.51 0 0 1 0-.73l2.12-2.08.06-.05c.21-.15.5-.13.7.05.2.2.2.53 0 .74L7.82 5.08h4.92C15.1 5.08 17 6.63 17 8.54S15.1 12 12.74 12h-.35ZM4 10.41V16h10.18L4 10.41ZM3.8 17a.77.77 0 0 1-.8-.75V9.38c0-.21.18-.38.4-.38.07 0 .14.02.2.05l13.2 7.25c.2.1.26.33.15.51a.4.4 0 0 1-.35.19H3.8Z\"]);\nexport const RotateRightFilled = /*#__PURE__*/createFluentIcon('RotateRightFilled', \"1em\", [\"M7.61 12c.3 0 .54-.23.54-.52a.53.53 0 0 0-.54-.52h-.35c-1.77 0-3.2-1.08-3.2-2.42 0-1.3 1.35-2.36 3.04-2.42h5.08L10.96 7.3c-.2.2-.2.53 0 .73.2.18.49.2.7.05l.06-.05 2.12-2.08c.21-.2.21-.53 0-.73l-2.12-2.08-.06-.05a.54.54 0 0 0-.7.05c-.2.2-.2.53 0 .74l1.22 1.19H7.26C4.9 5.08 3 6.63 3 8.54S4.9 12 7.26 12h.35Zm9-3c.21 0 .39.17.39.38v6.87c0 .41-.36.75-.8.75H3.4a.4.4 0 0 1-.35-.19.37.37 0 0 1 .15-.51l13.2-7.25a.41.41 0 0 1 .2-.05Z\"]);\nexport const RotateRightRegular = /*#__PURE__*/createFluentIcon('RotateRightRegular', \"1em\", [\"M7.61 12c.3 0 .54-.23.54-.52a.53.53 0 0 0-.54-.52h-.35c-1.77 0-3.2-1.08-3.2-2.42 0-1.3 1.35-2.36 3.04-2.42h5.08L10.96 7.3c-.2.2-.2.53 0 .73.2.18.49.2.7.05l.06-.05 2.12-2.08c.21-.2.21-.53 0-.73l-2.12-2.08-.06-.05a.54.54 0 0 0-.7.05c-.2.2-.2.53 0 .74l1.22 1.19H7.26C4.9 5.08 3 6.63 3 8.54S4.9 12 7.26 12h.35ZM16 10.41V16H5.82L16 10.41Zm.2 6.59c.44 0 .8-.34.8-.75V9.38c0-.21-.18-.38-.4-.38a.41.41 0 0 0-.2.05L3.2 16.3a.37.37 0 0 0-.15.51c.07.12.2.19.35.19h12.8Z\"]);\nexport const RouterFilled = /*#__PURE__*/createFluentIcon('RouterFilled', \"1em\", [\"M3.5 9.5a6.5 6.5 0 0 1 13 0 .5.5 0 0 0 1 0 7.5 7.5 0 0 0-15 0 .5.5 0 0 0 1 0Zm6.5-4a4 4 0 0 0-4 4 .5.5 0 0 1-1 0 5 5 0 0 1 10 0 .5.5 0 0 1-1 0 4 4 0 0 0-4-4ZM7.75 9.25a2.25 2.25 0 1 1 2.75 2.2V13h4a2.5 2.5 0 0 1 0 5h-9a2.5 2.5 0 0 1 0-5h4v-1.56a2.25 2.25 0 0 1-1.75-2.19Z\"]);\nexport const RouterRegular = /*#__PURE__*/createFluentIcon('RouterRegular', \"1em\", [\"M3.5 9.5a6.5 6.5 0 0 1 13 0 .5.5 0 0 0 1 0 7.5 7.5 0 0 0-15 0 .5.5 0 0 0 1 0Zm6.5-4a4 4 0 0 0-4 4 .5.5 0 0 1-1 0 5 5 0 0 1 10 0 .5.5 0 0 1-1 0 4 4 0 0 0-4-4ZM7.75 9.25a2.25 2.25 0 1 1 2.75 2.2V13h4a2.5 2.5 0 0 1 0 5h-9a2.5 2.5 0 0 1 0-5h4v-1.56a2.25 2.25 0 0 1-1.75-2.19ZM10 8a1.25 1.25 0 1 0 0 2.5A1.25 1.25 0 0 0 10 8Zm-4.5 6a1.5 1.5 0 0 0 0 3h9a1.5 1.5 0 0 0 0-3h-9Z\"]);\nexport const RowTripleFilled = /*#__PURE__*/createFluentIcon('RowTripleFilled', \"1em\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v1C3 5.33 3.67 6 4.5 6h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Zm0 6C3.67 8 3 8.67 3 9.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Zm0 6c-.83 0-1.5.67-1.5 1.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const RowTripleRegular = /*#__PURE__*/createFluentIcon('RowTripleRegular', \"1em\", [\"M3 3.5C3 2.67 3.67 2 4.5 2h11c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 4.5v-1ZM4.5 3a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-11ZM3 9.5C3 8.67 3.67 8 4.5 8h11c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 10.5v-1ZM4.5 9a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-11Zm0 5c-.83 0-1.5.67-1.5 1.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11ZM4 15.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-1Z\"]);\nexport const RssFilled = /*#__PURE__*/createFluentIcon('RssFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm.5 3a7.5 7.5 0 0 1 7.5 7.5.5.5 0 0 1-1 0A6.5 6.5 0 0 0 6.5 7a.5.5 0 0 1 0-1ZM6 9.5c0-.28.22-.5.5-.5a4.5 4.5 0 0 1 4.5 4.5.5.5 0 0 1-1 0A3.5 3.5 0 0 0 6.5 10a.5.5 0 0 1-.5-.5ZM7 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const RssRegular = /*#__PURE__*/createFluentIcon('RssRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Zm2.5 0a.5.5 0 0 0 0 1 6.5 6.5 0 0 1 6.5 6.5.5.5 0 0 0 1 0A7.5 7.5 0 0 0 6.5 6ZM6 9.5c0-.28.22-.5.5-.5a4.5 4.5 0 0 1 4.5 4.5.5.5 0 0 1-1 0A3.5 3.5 0 0 0 6.5 10a.5.5 0 0 1-.5-.5ZM7 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const RulerFilled = /*#__PURE__*/createFluentIcon('RulerFilled', \"1em\", [\"m13.97 3.2.03.3v13c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 6 16.5v-13A1.5 1.5 0 0 1 7.5 2h5c.72 0 1.33.51 1.47 1.2ZM7 14.5v1h1.5a.5.5 0 0 0 0-1H7Zm0-10v1h1.5a.5.5 0 0 0 0-1H7ZM7 7v1h2.5a.5.5 0 0 0 0-1H7Zm0 2.5v1h1.5a.5.5 0 0 0 0-1H7ZM7 12v1h2.5a.5.5 0 1 0 0-1H7Z\"]);\nexport const RulerRegular = /*#__PURE__*/createFluentIcon('RulerRegular', \"1em\", [\"M14 3.5c0-.83-.67-1.5-1.5-1.5h-5C6.67 2 6 2.67 6 3.5v13c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-13ZM7 13h2.5a.5.5 0 0 0 0-1H7v-1.5h1.5a.5.5 0 0 0 0-1H7V8h2.5a.5.5 0 0 0 0-1H7V5.5h1.5a.5.5 0 0 0 0-1H7v-1c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v13a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-1h1.5a.5.5 0 0 0 0-1H7V13Z\"]);\nexport const RunFilled = /*#__PURE__*/createFluentIcon('RunFilled', \"1em\", [\"M9.31 2.04a.5.5 0 0 1 .35-.01l6 2a.5.5 0 0 1 .07.92h-.03a6.13 6.13 0 0 0-.37.22c-.25.15-.58.36-.91.62a5.8 5.8 0 0 0-.94.87c-.22.27-.38.53-.45.78l1.86 3.72 2 1.33A2.5 2.5 0 0 1 18 14.57v1.93a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a6.42 6.42 0 0 1-.47 0 21.98 21.98 0 0 1-5.65-.84c-3.32-.95-7.23-3.02-9.31-7.45a.5.5 0 0 1 0-.43A12.43 12.43 0 0 1 5.2 4.59a16.2 16.2 0 0 1 4.12-2.55ZM17 15.47c-7.41-.6-11.41-4.2-13.55-7.58-.15.2-.28.41-.39.62 1.94 3.92 5.46 5.8 8.58 6.7A20.97 20.97 0 0 0 17 16v-.54ZM5.96 5.25l1.9 1.9a.5.5 0 0 1 .13.42l-.48 3.4c.7.56 1.5 1.08 2.4 1.55l1.48-1.6-2.33-4.18a.5.5 0 0 1 .6-.71l2.52.84c.13-.31.32-.6.53-.84a6.78 6.78 0 0 1 1.6-1.4l-4.8-1.6c-1.1.47-2.38 1.27-3.55 2.22Zm7.8 8.7c1 .24 2.07.41 3.24.51a1.5 1.5 0 0 0-.67-1.14l-1.65-1.1-.92 1.73Z\"]);\nexport const RunRegular = /*#__PURE__*/createFluentIcon('RunRegular', \"1em\", [\"M9.31 2.04a.5.5 0 0 1 .35-.01l6 2a.5.5 0 0 1 .07.92h-.03a6.13 6.13 0 0 0-.37.22c-.25.15-.58.36-.91.62a5.8 5.8 0 0 0-.94.87c-.22.27-.38.53-.45.78l1.86 3.72 2 1.33A2.5 2.5 0 0 1 18 14.57v1.93a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a6.42 6.42 0 0 1-.47 0 21.98 21.98 0 0 1-5.65-.84c-3.32-.95-7.23-3.02-9.31-7.45a.5.5 0 0 1 0-.43A12.43 12.43 0 0 1 5.2 4.59a16.2 16.2 0 0 1 4.12-2.55ZM17 16v-.53c-7.41-.6-11.41-4.2-13.55-7.58-.15.2-.28.41-.39.62 1.94 3.92 5.46 5.8 8.58 6.7A20.97 20.97 0 0 0 17 16Zm-.67-2.68-1.65-1.1-.92 1.73c1 .24 2.07.41 3.24.51a1.5 1.5 0 0 0-.67-1.14Zm-4.18-5.41-1.59-.53 1.88 3.38a.5.5 0 0 1-.07.58l-1.52 1.63c.6.27 1.23.5 1.92.71l1.17-2.19-1.8-3.58Zm.03-1.04c.13-.31.32-.6.53-.84a6.78 6.78 0 0 1 1.6-1.4l-4.8-1.6c-1.1.47-2.38 1.27-3.55 2.22l1.9 1.9a.5.5 0 0 1 .13.42l-.48 3.4c.7.56 1.5 1.08 2.4 1.55l1.48-1.6-2.33-4.18a.5.5 0 0 1 .6-.71l2.52.84ZM5.2 5.9c-.4.37-.76.75-1.1 1.13a14.82 14.82 0 0 0 2.51 3.14l.36-2.5L5.2 5.9Z\"]);\nexport const SanitizeFilled = /*#__PURE__*/createFluentIcon('SanitizeFilled', \"1em\", [\"M2.77 5.23a2.5 2.5 0 0 0 0 3.54l3.46 3.46c.11.11.23.2.35.3.04-.13.1-.25.17-.36.4-.6.9-1.02 1.49-1.27.26-.1.51-.17.76-.2V7.5a1.5 1.5 0 0 1 2.05-1.4c.07-.25.2-.48.39-.66L8.77 2.77a2.5 2.5 0 0 0-3.54 0L2.77 5.23ZM12.5 6a.5.5 0 0 0-.5.5v5a.5.5 0 1 1-1 0v-4a.5.5 0 0 0-1 0v4.25a2.08 2.08 0 0 0-1.38.08c-.38.16-.74.44-1.04.9a.5.5 0 0 0 .22.73 5.26 5.26 0 0 1 2.71 2.37c.55 1.03 1.6 2.17 2.99 2.17h.26A2.5 2.5 0 0 0 16 16.62l.63-1.26a3.5 3.5 0 0 0 .37-1.57V7.5a.5.5 0 0 0-1 0v4a.5.5 0 1 1-1 0v-5a.5.5 0 0 0-1 0v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 0-.5-.5Zm-9 6c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 1 1-1 0V14h-.5a.5.5 0 1 1 0-1H3v-.5c0-.28.22-.5.5-.5Zm3 3c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H7v.5a.5.5 0 1 1-1 0V17h-.5a.5.5 0 1 1 0-1H6v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const SanitizeRegular = /*#__PURE__*/createFluentIcon('SanitizeRegular', \"1em\", [\"M5.94 3.47 3.47 5.94a1.5 1.5 0 0 0 0 2.12l2.97 2.96c-.25.24-.45.51-.6.82L2.77 8.77a2.5 2.5 0 0 1 0-3.54l2.46-2.46a2.5 2.5 0 0 1 3.54 0L11.3 5.3c-.3.17-.55.39-.76.65L8.06 3.47a1.5 1.5 0 0 0-2.12 0ZM15.9 7c-.2-.58-.76-1-1.41-1h-2c-.65 0-1.2.42-1.41 1H11a2 2 0 0 0-2 2v2.31a2.77 2.77 0 0 0-.56-.06c-.36 0-.77.08-1.13.35-.37.27-.65.69-.8 1.28a.5.5 0 0 0 .3.58c1.9.81 3 2.1 3.61 3.03A3.1 3.1 0 0 0 12.94 18h1.82A2.5 2.5 0 0 0 17 16.62l.63-1.26a3.5 3.5 0 0 0 .37-1.57V9a2 2 0 0 0-2-2h-.09ZM14 7h.5c.28 0 .5.22.5.5v4a.5.5 0 1 0 1 0V8a1 1 0 0 1 1 1v4.8c0 .38-.09.76-.26 1.1l-.63 1.27c-.26.5-.78.83-1.35.83h-1.82c-.64 0-1.27-.42-1.68-1.05a9.01 9.01 0 0 0-3.64-3.21.91.91 0 0 1 .28-.34.9.9 0 0 1 .54-.15 2 2 0 0 1 .83.2A.5.5 0 0 0 10 12V9a1 1 0 0 1 1-1v3.5a.5.5 0 1 0 1 0v-4c0-.28.22-.5.5-.5h.5v4.5a.5.5 0 1 0 1 0V7ZM3.5 12c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 1 1-1 0V14h-.5a.5.5 0 1 1 0-1H3v-.5c0-.28.22-.5.5-.5ZM7 15.5a.5.5 0 0 0-1 0v.5h-.5a.5.5 0 0 0 0 1H6v.5a.5.5 0 1 0 1 0V17h.5a.5.5 0 1 0 0-1H7v-.5Z\"]);\nexport const SaveFilled = /*#__PURE__*/createFluentIcon('SaveFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2v-5.5c0-.83-.67-1.5-1.5-1.5h-7c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm9-2H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm2 8.5V17H6v-5.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5Z\"]);\nexport const SaveRegular = /*#__PURE__*/createFluentIcon('SaveRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V16a1 1 0 0 0 1-1V6.62a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5Zm2 0v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm7 12v-4.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V16h8Z\"]);\nexport const SaveArrowRightFilled = /*#__PURE__*/createFluentIcon('SaveArrowRightFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6a5.48 5.48 0 0 0-5.66.4H6.5c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm6 9.5c0-1.33.47-2.55 1.26-3.5H6.5a.5.5 0 0 0-.5.5V17h3.6c-.38-.75-.6-1.6-.6-2.5ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm7 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SaveArrowRightRegular = /*#__PURE__*/createFluentIcon('SaveArrowRightRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6c-.32-.16-.65-.3-1-.4V6.63a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h4.84c-.4.28-.77.62-1.08 1H6.5a.5.5 0 0 0-.5.5V16h3.2c.1.35.24.68.4 1H5a2 2 0 0 1-2-2V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SaveCopyFilled = /*#__PURE__*/createFluentIcon('SaveCopyFilled', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v9A2.5 2.5 0 0 0 4.5 16h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 13.5 2h-9Zm5 4.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2a.5.5 0 0 1 1 0ZM7.5 18c-.95 0-1.82-.38-2.45-1h9.45a2.5 2.5 0 0 0 2.5-2.5V5.05c.62.63 1 1.5 1 2.45v7a3.5 3.5 0 0 1-3.5 3.5h-7Z\"]);\nexport const SaveCopyRegular = /*#__PURE__*/createFluentIcon('SaveCopyRegular', \"1em\", [\"M9.5 6.5a.5.5 0 0 0-1 0v2h-2a.5.5 0 0 0 0 1h2v2a.5.5 0 0 0 1 0v-2h2a.5.5 0 0 0 0-1h-2v-2ZM4.5 2A2.5 2.5 0 0 0 2 4.5v9A2.5 2.5 0 0 0 4.5 16h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 13.5 2h-9ZM3 4.5C3 3.67 3.67 3 4.5 3h9c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 3 13.5v-9ZM7.5 18c-.95 0-1.82-.38-2.45-1h9.45a2.5 2.5 0 0 0 2.5-2.5V5.05c.62.63 1 1.5 1 2.45v7a3.5 3.5 0 0 1-3.5 3.5h-7Z\"]);\nexport const SaveEditFilled = /*#__PURE__*/createFluentIcon('SaveEditFilled', \"1em\", [\"M5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2v-5.5c0-.83.67-1.5 1.5-1.5h6.44l1.16-1.16a2.87 2.87 0 0 1 2.9-.7V6.61a2 2 0 0 0-.59-1.41L14.8 3.59A2 2 0 0 0 13.38 3H13v3.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V3H5Zm6.94 8-2.67 2.67c-.4.41-.7.92-.84 1.49l-.37 1.5c-.03.11-.05.23-.06.34H6v-5.5c0-.28.22-.5.5-.5h5.44ZM7 3h5v3.5a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5V3Zm7.8 6.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const SaveEditRegular = /*#__PURE__*/createFluentIcon('SaveEditRegular', \"1em\", [\"M5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h3l.06-.35.16-.65H6v-4.5c0-.28.22-.5.5-.5h5.44l1-1H6.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h1v2.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V4h.38a1 1 0 0 1 .7.3l1.63 1.61a1 1 0 0 1 .29.71V8c.34-.01.68.03 1 .13v-1.5a2 2 0 0 0-.59-1.42L14.8 3.59A2 2 0 0 0 13.38 3H5Zm2 3.5V4h5v2.5a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5Zm7.8 3.05-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const SaveImageFilled = /*#__PURE__*/createFluentIcon('SaveImageFilled', \"1em\", [\"M5 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2v-5.5C5 9.67 5.67 9 6.5 9h10c.17 0 .34.01.5.04V5.62a2 2 0 0 0-.59-1.41L14.8 2.59A2 2 0 0 0 13.38 2H13v3.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 5.5V2H5Zm5.05 8A3.49 3.49 0 0 0 9 12.5V16H6v-5.5c0-.28.22-.5.5-.5h3.55ZM12 2H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V2Zm-2 10.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const SaveImageRegular = /*#__PURE__*/createFluentIcon('SaveImageRegular', \"1em\", [\"M17 6.13v2.9a3.53 3.53 0 0 0-.5-.03H16V6.13a.97.97 0 0 0-.29-.72L13.6 3.3A.96.96 0 0 0 13 3V5.5a1.45 1.45 0 0 1-.44 1.06c-.14.13-.3.24-.48.32-.18.08-.38.12-.58.12h-4a1.45 1.45 0 0 1-1.05-.44 1.6 1.6 0 0 1-.33-.48A1.33 1.33 0 0 1 6 5.5V3H5a.97.97 0 0 0-.7.29c-.1.1-.17.2-.22.32A.86.86 0 0 0 4 4v10c0 .13.03.27.08.4.05.1.12.22.2.31.1.1.2.17.32.21.13.05.26.08.4.08v-4.5a1.45 1.45 0 0 1 .44-1.05c.14-.14.3-.25.48-.33.18-.08.38-.12.58-.12h6c-.96 0-1.82.38-2.45 1H6.5a.5.5 0 0 0-.5.5V15h3v1H5c-.26 0-.52-.05-.76-.16a2.2 2.2 0 0 1-.64-.42 1.9 1.9 0 0 1-.6-1.38V4c0-.26.05-.52.16-.76.1-.24.24-.45.42-.64A1.9 1.9 0 0 1 4.96 2h7.92c.26 0 .52.05.76.15.25.1.47.25.65.44L16.4 4.7c.19.19.34.4.43.65.1.24.16.5.16.77ZM7 3v2.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5V3H7Zm3 9.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const SaveMultipleFilled = /*#__PURE__*/createFluentIcon('SaveMultipleFilled', \"1em\", [\"M6 5.5V3H5a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2v-4.5C5 9.67 5.67 9 6.5 9h5c.83 0 1.5.67 1.5 1.5V15a2 2 0 0 0 2-2V6.62a2 2 0 0 0-.59-1.41L12.8 3.59A2 2 0 0 0 11.38 3H11v2.5c0 .83-.67 1.5-1.5 1.5h-2A1.5 1.5 0 0 1 6 5.5Zm1 0V3h3v2.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5Zm5 9.5H6v-4.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V15Zm-3.5 2c-.95 0-1.82-.38-2.45-1h7.45a2.5 2.5 0 0 0 2.5-2.5V6.05c.62.63 1 1.5 1 2.45v5a3.5 3.5 0 0 1-3.5 3.5h-5Z\"]);\nexport const SaveMultipleRegular = /*#__PURE__*/createFluentIcon('SaveMultipleRegular', \"1em\", [\"M5 3a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6.62a2 2 0 0 0-.59-1.41L12.8 3.59A2 2 0 0 0 11.38 3H5ZM4 5a1 1 0 0 1 1-1h1v1.5C6 6.33 6.67 7 7.5 7h2c.83 0 1.5-.67 1.5-1.5V4h.38a1 1 0 0 1 .7.3l1.63 1.61a1 1 0 0 1 .29.71V13a1 1 0 0 1-1 1v-3.5c0-.83-.67-1.5-1.5-1.5h-5C5.67 9 5 9.67 5 10.5V14a1 1 0 0 1-1-1V5Zm3 .5V4h3v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5Zm5 5V14H6v-3.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5ZM8.5 17c-.95 0-1.82-.38-2.45-1h7.45a2.5 2.5 0 0 0 2.5-2.5V6.05c.62.63 1 1.5 1 2.45v5a3.5 3.5 0 0 1-3.5 3.5h-5Z\"]);\nexport const SaveSearchFilled = /*#__PURE__*/createFluentIcon('SaveSearchFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2v-5.5c0-.83-.67-1.5-1.5-1.5H9.33a4.5 4.5 0 0 0-6.33.67V5Zm7.56 10.44L12.12 17H14v-5.5a.5.5 0 0 0-.5-.5h-3.26a4.5 4.5 0 0 1 .32 4.44ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm-2 10.5c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L8.6 16.3a3.5 3.5 0 1 1 1.4-2.8Zm-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0Z\"]);\nexport const SaveSearchRegular = /*#__PURE__*/createFluentIcon('SaveSearchRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2h-2.88l-1-1H14v-4.5a.5.5 0 0 0-.5-.5h-3.26a4.53 4.53 0 0 0-.91-1h4.17c.83 0 1.5.67 1.5 1.5V16a1 1 0 0 0 1-1V6.62a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v4.76a4.52 4.52 0 0 0-1 .91V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm3 9.5c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L8.6 16.3a3.5 3.5 0 1 1 1.4-2.8Zm-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0Z\"]);\nexport const SaveSyncFilled = /*#__PURE__*/createFluentIcon('SaveSyncFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6a5.48 5.48 0 0 0-5.66.4H6.5c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm6 9.5c0-1.33.47-2.55 1.26-3.5H6.5a.5.5 0 0 0-.5.5V17h3.6c-.38-.75-.6-1.6-.6-2.5ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm-2 11.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const SaveSyncRegular = /*#__PURE__*/createFluentIcon('SaveSyncRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6c-.32-.16-.65-.3-1-.4V6.63a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h4.84c-.4.28-.77.62-1.08 1H6.5a.5.5 0 0 0-.5.5V16h3.2c.1.35.24.68.4 1H5a2 2 0 0 1-2-2V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm3 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const SavingsFilled = /*#__PURE__*/createFluentIcon('SavingsFilled', \"1em\", [\"m9.65 4.06.18.02a4.5 4.5 0 0 0-.7 3.2c.15.98.91 1.6 1.6 1.87l3.03 1.26c.68.29 1.65.39 2.46-.2a4.5 4.5 0 0 0 1.49-1.86c.19.58.29 1.23.29 1.96 0 1.75-.54 2.98-1.09 3.78a4.95 4.95 0 0 1-.91 1v1.41c0 .83-.67 1.5-1.5 1.5h-1.38c-.62 0-1.12-.5-1.12-1.12a.12.12 0 0 0-.12-.11h-1.76a.12.12 0 0 0-.12.11C10 17.5 9.5 18 8.88 18H7.5A1.5 1.5 0 0 1 6 16.5v-.54l-.16-.1c-.28-.18-.69-.5-1.2-1-.62-.64-1-1.34-1.2-1.8-.07-.17-.2-.27-.33-.3-.64-.1-1.11-.65-1.11-1.3V9.95c0-.63.45-1.17 1.08-1.27.11-.02.24-.13.3-.3a4.4 4.4 0 0 1 1-1.71A6.63 6.63 0 0 1 6 5.47v-2.3c0-.36.23-.61.48-.71.25-.1.58-.08.83.15.29.28.68.63 1.11.92.44.3.87.5 1.23.53ZM6.75 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm10.29-2.46a3.5 3.5 0 0 1-1.4 2.36c-.43.31-1 .3-1.5.09l-3.03-1.26c-.48-.2-.88-.56-.98-1.05l-.02-.07a3.5 3.5 0 1 1 6.93-.07Z\"]);\nexport const SavingsRegular = /*#__PURE__*/createFluentIcon('SavingsRegular', \"1em\", [\"M16.95 9.54c.03.24.05.5.05.77 0 1.53-.46 2.56-.91 3.2a3.96 3.96 0 0 1-.85.89.5.5 0 0 0-.24.43v1.67a.5.5 0 0 1-.5.5h-1.38a.12.12 0 0 1-.12-.12c0-.61-.5-1.11-1.12-1.11h-1.76c-.62 0-1.12.5-1.12 1.11 0 .07-.05.12-.12.12H7.5a.5.5 0 0 1-.5-.5v-.85a.5.5 0 0 0-.34-.47l-.04-.02a6.37 6.37 0 0 1-1.26-1.01 4.99 4.99 0 0 1-1-1.49c-.19-.42-.57-.8-1.09-.88a.33.33 0 0 1-.27-.32V9.95c0-.14.1-.26.24-.29.55-.09.94-.51 1.1-.97.12-.4.36-.93.75-1.32a5.64 5.64 0 0 1 1.58-1.1l.02-.02A.5.5 0 0 0 7 5.79v-2.1c.25.22.55.46.87.67.43.3.95.56 1.48.66.12-.33.28-.65.48-.94l-.18-.02a2.9 2.9 0 0 1-1.23-.53 8.47 8.47 0 0 1-1.11-.92.77.77 0 0 0-.83-.15.76.76 0 0 0-.48.7v2.32a6.9 6.9 0 0 0-1.63 1.19 4.4 4.4 0 0 0-.99 1.7c-.06.18-.19.29-.3.3A1.3 1.3 0 0 0 2 9.96v1.5c0 .66.47 1.2 1.1 1.32.13.02.27.12.34.3.2.45.58 1.15 1.2 1.78A7.34 7.34 0 0 0 6 15.96v.54c0 .83.67 1.5 1.5 1.5h1.38c.62 0 1.12-.5 1.12-1.12 0-.06.05-.11.12-.11h1.76c.07 0 .12.05.12.11 0 .62.5 1.12 1.12 1.12h1.38c.83 0 1.5-.67 1.5-1.5v-1.42c.04-.03.1-.07.14-.12.22-.2.5-.48.77-.87A6.48 6.48 0 0 0 18 10.3c0-.73-.1-1.38-.3-1.96-.18.43-.43.84-.75 1.2Zm-.15-4.3a3.5 3.5 0 0 1-1.17 4.16c-.43.31-1 .29-1.49.09L11.1 8.23c-.49-.2-.9-.6-.99-1.12a3.5 3.5 0 0 1 6.7-1.88Zm-1.76 3.35a2.5 2.5 0 1 0-3.94-1.63c0 .03.03.08.09.15.06.06.16.14.3.2l3.04 1.25c.13.06.26.08.35.08.09 0 .13-.03.16-.05Zm-8.29.91a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const ScaleFillFilled = /*#__PURE__*/createFluentIcon('ScaleFillFilled', \"1em\", [\"M3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm3.3 1.04a.5.5 0 0 0-.3.46v2a.5.5 0 0 0 1 0v-.8l1.15 1.15a.5.5 0 1 0 .7-.7L7.71 7h.79a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.2.04ZM6 11.5v2a.5.5 0 0 0 .14.35.5.5 0 0 0 .36.15h2a.5.5 0 0 0 0-1h-.8l1.15-1.15a.5.5 0 0 0-.7-.7L7 12.29v-.79a.5.5 0 0 0-1 0Zm7.85-5.36A.5.5 0 0 0 13.5 6h-2a.5.5 0 0 0 0 1h.8l-1.15 1.15a.5.5 0 0 0 .7.7L13 7.71v.79a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.14-.35Zm-.16 7.82a.5.5 0 0 0 .3-.46v-2a.5.5 0 0 0-.99 0v.8l-1.15-1.15a.5.5 0 0 0-.7.7L12.29 13h-.79a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .2-.04Z\"]);\nexport const ScaleFillRegular = /*#__PURE__*/createFluentIcon('ScaleFillRegular', \"1em\", [\"M6 6.5a.5.5 0 0 1 .14-.35A.5.5 0 0 1 6.5 6h2a.5.5 0 0 1 0 1h-.8l1.15 1.15a.5.5 0 1 1-.7.7L7 7.71v.79a.5.5 0 0 1-1 0v-2Zm.04 7.2a.5.5 0 0 1-.04-.2v-2a.5.5 0 0 1 1 0v.8l1.15-1.15a.5.5 0 0 1 .7.7L7.71 13h.79a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.46-.3Zm7.65-7.66a.5.5 0 0 1 .3.46v2a.5.5 0 0 1-.99 0v-.8l-1.15 1.15a.5.5 0 0 1-.7-.7L12.29 7h-.79a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .2.04Zm.16 7.82a.5.5 0 0 1-.35.14h-2a.5.5 0 0 1 0-1h.8l-1.15-1.15a.5.5 0 0 1 .7-.7L13 12.29v-.79a.5.5 0 0 1 1 0v2a.5.5 0 0 1-.14.35ZM3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Z\"]);\nexport const ScaleFitFilled = /*#__PURE__*/createFluentIcon('ScaleFitFilled', \"1em\", [\"M2 6v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm11.12 6.08a.5.5 0 0 1 .05-.7l1-.88H11.5a.5.5 0 0 1 0-1h2.67l-1-.87a.5.5 0 0 1 .66-.76l2 1.75a.5.5 0 0 1 0 .76l-2 1.75a.5.5 0 0 1-.7-.05ZM6.88 7.92a.5.5 0 0 1-.05.7l-1 .88H8.5a.5.5 0 0 1 0 1H5.83l1 .87a.5.5 0 0 1-.66.76l-2-1.75a.5.5 0 0 1 0-.76l2-1.75a.5.5 0 0 1 .7.05Z\"]);\nexport const ScaleFitRegular = /*#__PURE__*/createFluentIcon('ScaleFitRegular', \"1em\", [\"M6.88 7.92a.5.5 0 0 1-.05.7l-1 .88H8.5a.5.5 0 0 1 0 1H5.83l1 .87a.5.5 0 1 1-.66.76l-2-1.75a.5.5 0 0 1 0-.76l2-1.75a.5.5 0 0 1 .7.05Zm7.29 2.58-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 0 0-.66.76l1 .87H11.5a.5.5 0 0 0 0 1h2.67ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const ScalesFilled = /*#__PURE__*/createFluentIcon('ScalesFilled', \"1em\", [\"M3.5 3a.5.5 0 1 0 0 1h.75L2.08 9.22a.95.95 0 0 0-.08.4 3 3 0 0 0 6 0 .95.95 0 0 0-.08-.4L5.75 4H9.5v11h-4a1.5 1.5 0 0 0 0 3h9a1.5 1.5 0 0 0 0-3h-4V4h3.75l-2.17 5.22a.96.96 0 0 0-.08.4 3 3 0 0 0 6 0 .96.96 0 0 0-.08-.4L15.75 4h.75a.5.5 0 0 0 0-1h-13ZM5 4.8 6.75 9h-3.5L5 4.8ZM16.75 9h-3.5L15 4.8 16.75 9Z\"]);\nexport const ScalesRegular = /*#__PURE__*/createFluentIcon('ScalesRegular', \"1em\", [\"M3.5 3a.5.5 0 1 0 0 1h.75L2.08 9.22a.95.95 0 0 0-.08.4 3 3 0 0 0 6 0 .95.95 0 0 0-.08-.4L5.75 4H9.5v10H6a2 2 0 1 0 0 4h8a2 2 0 0 0 0-4h-3.5V4h3.75l-2.17 5.22a.96.96 0 0 0-.08.4 3 3 0 0 0 6 0 .96.96 0 0 0-.08-.4L15.75 4h.75a.5.5 0 0 0 0-1h-13ZM5 11.5A2 2 0 0 1 3.06 10h3.88A2 2 0 0 1 5 11.5Zm0-6.7L6.75 9h-3.5L5 4.8ZM6 15h8a1 1 0 0 1 0 2H6a1 1 0 1 1 0-2Zm10.75-6h-3.5L15 4.8 16.75 9Zm-3.69 1h3.88a2 2 0 0 1-3.88 0Z\"]);\nexport const ScanFilled = /*#__PURE__*/createFluentIcon('ScanFilled', \"1em\", [\"M9.7 3.5 7.02 8.19l-.18.33-1.65-2.87A6.48 6.48 0 0 1 9.7 3.51ZM8.28 9l.03-.05a2 2 0 0 1 3.43.05l.03.06a2 2 0 0 1-.03 1.94l-.03.05A2 2 0 0 1 8.27 11l-.03-.06A2 2 0 0 1 8.27 9Zm-1.35 2.67.2.33h-3.3a6.5 6.5 0 0 1 .41-5l2.7 4.67ZM10 13.5l.3-.01-1.66 2.87a6.5 6.5 0 0 1-4.12-2.86H10Zm2.99-1.68.18-.33 1.65 2.87a6.48 6.48 0 0 1-4.53 2.13l2.7-4.67Zm.09-3.49a3.52 3.52 0 0 0-.2-.33h3.3a6.5 6.5 0 0 1-.41 5l-2.7-4.67ZM10 6.5l-.3.01 1.66-2.87a6.5 6.5 0 0 1 4.12 2.86H10ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const ScanRegular = /*#__PURE__*/createFluentIcon('ScanRegular', \"1em\", [\"M4.91 5.19a6.98 6.98 0 0 1 5.65-2.17L7.4 8.5c-.1.18-.19.36-.25.56L4.91 5.2Zm-.67.83 3.12 5.4a3 3 0 0 0 .4.58H3.3a7 7 0 0 1 .95-5.98ZM8.27 11l-.04-.06A2 2 0 0 1 11.73 9l.04.06A2 2 0 0 1 8.27 11Zm1.12-3.94 2.23-3.87c2.08.5 3.8 1.92 4.7 3.81H10c-.21 0-.42.02-.61.06Zm2.85.94h4.47a7 7 0 0 1-.95 5.98l-3.12-5.4c-.1-.2-.25-.4-.4-.58Zm.61 2.94 2.24 3.87a6.98 6.98 0 0 1-5.65 2.17l3.16-5.48c.1-.18.19-.36.25-.56Zm-2.24 2L8.38 16.8A7.01 7.01 0 0 1 3.68 13H10c.21 0 .42-.02.61-.06ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const ScanCameraFilled = /*#__PURE__*/createFluentIcon('ScanCameraFilled', \"1em\", [\"M3 6.25C3 4.45 4.46 3 6.25 3H7.6a.75.75 0 1 1 0 1.5H6.25c-.97 0-1.75.78-1.75 1.75V7.6a.75.75 0 1 1-1.5 0V6.25Zm8.65-2.5c0-.41.34-.75.75-.75h1.35C15.55 3 17 4.46 17 6.25V7.6a.75.75 0 0 1-1.5 0V6.25c0-.97-.78-1.75-1.75-1.75H12.4a.75.75 0 0 1-.75-.75Zm-7.9 7.9c.41 0 .75.34.75.75v1.35c0 .97.78 1.75 1.75 1.75H7.6a.75.75 0 0 1 0 1.5H6.25A3.25 3.25 0 0 1 3 13.75V12.4c0-.41.34-.75.75-.75Zm12.5 0c.41 0 .75.34.75.75v1.35c0 1.8-1.46 3.25-3.25 3.25H12.4a.75.75 0 0 1 0-1.5h1.35c.97 0 1.75-.78 1.75-1.75V12.4c0-.41.34-.75.75-.75ZM10 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-4 1V9a1 1 0 0 1 1-1h1l.7-1.05a1 1 0 0 1 .84-.45h.92a1 1 0 0 1 .84.45L12 8h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Zm6-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z\"]);\nexport const ScanCameraRegular = /*#__PURE__*/createFluentIcon('ScanCameraRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5ZM10 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-4 1V9a1 1 0 0 1 1-1h1l.7-1.05a1 1 0 0 1 .84-.45h.92a1 1 0 0 1 .84.45L12 8h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Zm6-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z\"]);\nexport const ScanDashFilled = /*#__PURE__*/createFluentIcon('ScanDashFilled', \"1em\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25V7.6a.75.75 0 1 0 1.5 0V6.25c0-.97.78-1.75 1.75-1.75H7.6a.75.75 0 1 0 0-1.5H6.25Zm6.15 0a.75.75 0 0 0 0 1.5h1.35c.97 0 1.75.78 1.75 1.75V7.6a.75.75 0 0 0 1.5 0V6.25C17 4.45 15.54 3 13.75 3H12.4Zm-7.9 9.4a.75.75 0 0 0-1.5 0v1.35C3 15.55 4.46 17 6.25 17H7.6a.75.75 0 0 0 0-1.5H6.25c-.97 0-1.75-.78-1.75-1.75V12.4Zm12.5 0a.75.75 0 0 0-1.5 0v1.35c0 .97-.78 1.75-1.75 1.75H12.4a.75.75 0 0 0 0 1.5h1.35c1.8 0 3.25-1.46 3.25-3.25V12.4ZM6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const ScanDashRegular = /*#__PURE__*/createFluentIcon('ScanDashRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v1.5a.5.5 0 0 0 1 0V6c0-1.1.9-2 2-2h1.5a.5.5 0 0 0 0-1H6Zm6.5 0a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5ZM4 12.5a.5.5 0 0 0-1 0V14a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H6a2 2 0 0 1-2-2v-1.5Zm13 0a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Zm-10.5-3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const ScanObjectFilled = /*#__PURE__*/createFluentIcon('ScanObjectFilled', \"1em\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Zm8.23-8.6a1.5 1.5 0 0 0-2.46 0l-2.6 3.75A1.5 1.5 0 0 0 7.42 13h5.18a1.5 1.5 0 0 0 1.23-2.35L11.23 6.9Z\"]);\nexport const ScanObjectRegular = /*#__PURE__*/createFluentIcon('ScanObjectRegular', \"1em\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2Zm11 14c.83 0 1.5-.67 1.5-1.5v-2a.5.5 0 0 1 1 0v2a2.5 2.5 0 0 1-2.5 2.5h-2a.5.5 0 0 1 0-1h2ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM4.5 17A1.5 1.5 0 0 1 3 15.5v-2a.5.5 0 0 0-1 0v2A2.5 2.5 0 0 0 4.5 18h2a.5.5 0 0 0 0-1h-2Zm6.73-10.1a1.5 1.5 0 0 0-2.46 0l-2.6 3.75A1.5 1.5 0 0 0 7.42 13h5.18a1.5 1.5 0 0 0 1.23-2.35L11.23 6.9Zm-1.64.57a.5.5 0 0 1 .82 0l2.6 3.75a.5.5 0 0 1-.42.78H7.41a.5.5 0 0 1-.41-.78l2.59-3.75Z\"]);\nexport const ScanPersonFilled = /*#__PURE__*/createFluentIcon('ScanPersonFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14a2 2 0 0 0 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5Zm-4 3c-.65 0-1.2.42-1.41 1H8.9c-.2-.58-.76-1-1.41-1H6a1 1 0 0 1-.97-.78A1.5 1.5 0 0 1 6.5 13h7c.73 0 1.35.53 1.47 1.22A1 1 0 0 1 14 15h-1.5Zm.25-5.75a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0Z\"]);\nexport const ScanPersonRegular = /*#__PURE__*/createFluentIcon('ScanPersonRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14a1.99 1.99 0 0 0 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5ZM5.03 14.22c.1.45.5.78.97.78v-.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v.5a1 1 0 0 0 .97-.78A1.5 1.5 0 0 0 13.5 13h-7a1.5 1.5 0 0 0-1.47 1.22Zm7.72-4.97a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0Zm-4.5 0a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Z\"]);\nexport const ScanTableFilled = /*#__PURE__*/createFluentIcon('ScanTableFilled', \"1em\", [\"M6 4.5c-.83 0-1.5.67-1.5 1.5v1.75a.75.75 0 0 1-1.5 0V6a3 3 0 0 1 3-3h1.75a.75.75 0 0 1 0 1.5H6ZM6 8c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2H6Zm0 1v3c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V9H6Zm6.25-6a.75.75 0 0 0 0 1.5H14c.83 0 1.5.67 1.5 1.5v1.75a.75.75 0 0 0 1.5 0V6a3 3 0 0 0-3-3h-1.75Zm-8.5 8.5c.41 0 .75.34.75.75V14c0 .83.67 1.5 1.5 1.5h1.75a.75.75 0 0 1 0 1.5H6a3 3 0 0 1-3-3v-1.75c0-.41.34-.75.75-.75Zm13.25.75a.75.75 0 0 0-1.5 0V14c0 .83-.67 1.5-1.5 1.5h-1.75a.75.75 0 0 0 0 1.5H14a3 3 0 0 0 3-3v-1.75Z\"]);\nexport const ScanTableRegular = /*#__PURE__*/createFluentIcon('ScanTableRegular', \"1em\", [\"M6 4a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6Zm2 2a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H8Zm5 2H7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1ZM7 9h6v3a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V9Zm5.5-6a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5Zm-9 9c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13.5.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Z\"]);\nexport const ScanTextFilled = /*#__PURE__*/createFluentIcon('ScanTextFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 .49.61l.01.14c0 .41-.34.75-.75.75H6c-.83 0-1.5.67-1.5 1.5v1.25a.75.75 0 0 1-.89.74A.5.5 0 0 1 3 7.5V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-.61.49l-.14.01a.75.75 0 0 1-.75-.75V6c0-.83-.67-1.5-1.5-1.5h-1.25a.75.75 0 0 1-.74-.89.5.5 0 0 1-.01-.11ZM3.5 12a.5.5 0 0 1 .11.01.75.75 0 0 1 .89.74V14c0 .83.67 1.5 1.5 1.5h1.25a.75.75 0 0 1 .74.89.5.5 0 0 1-.49.61H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1-.49-.61.75.75 0 0 1 .74-.89H14c.83 0 1.5-.67 1.5-1.5v-1.25a.75.75 0 0 1 .89-.74.5.5 0 0 1 .11-.01ZM6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM6 9.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 9.75ZM6.75 12a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\"]);\nexport const ScanTextRegular = /*#__PURE__*/createFluentIcon('ScanTextRegular', \"1em\", [\"M6 4a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6Zm0 2.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm6-9a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5Zm-9 9c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13.5.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Z\"]);\nexport const ScanThumbUpFilled = /*#__PURE__*/createFluentIcon('ScanThumbUpFilled', \"1em\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2ZM9.52 5.4c.2-.47.8-1.08 1.63-.85.54.14.92.46 1.13.9.19.39.22.81.23 1.15 0 .36-.06.76-.14 1.1h.28c1.2 0 2.13 1.13 1.77 2.3l-.92 3a2.2 2.2 0 0 1-2.74 1.4l-3.6-1.08a1.82 1.82 0 0 1-1.19-1.07l-.35-.89c-.32-.83.03-1.74.8-2.18l1.24-.7.03-.02c.04-.04.12-.1.22-.21.2-.22.5-.6.79-1.2l.36-.71c.18-.33.3-.58.46-.94Z\"]);\nexport const ScanThumbUpRegular = /*#__PURE__*/createFluentIcon('ScanThumbUpRegular', \"1em\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Zm8.15-10.95c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94l-.37.71a4.98 4.98 0 0 1-1.04 1.43l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08A2.2 2.2 0 0 0 13.5 13l.92-3c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9Zm-4.24 5.5 1.24-.7a.5.5 0 0 0 .04-.02h.01v-.01l.02-.01.1-.08A5.97 5.97 0 0 0 9.6 7.5l.35-.69c.17-.32.32-.61.5-1.02.03-.08.1-.17.19-.23a.3.3 0 0 1 .26-.04c.26.07.4.2.48.38.09.18.12.43.13.73 0 .28-.06.64-.15.99-.03.16-.08.31-.12.45a.5.5 0 0 0 .48.65h.93c.6 0 .96.53.82 1l-.92 2.99a1.2 1.2 0 0 1-1.5.75l-3.61-1.09a.82.82 0 0 1-.54-.48L6.55 11a.76.76 0 0 1 .36-.94Z\"]);\nexport const ScanThumbUpOffFilled = /*#__PURE__*/createFluentIcon('ScanThumbUpOffFilled', \"1em\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l4.57 4.58a1.42 1.42 0 0 1-.06.05l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08c.85.26 1.75-.01 2.3-.63l3.09 3.08c-.2.1-.42.15-.65.15h-2a.5.5 0 0 0 0 1h2c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l.26.27Zm6.45 3.62 5.02 5.02.54-1.76c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94a37 37 0 0 0-.21.4ZM17 14.88l.98.97.02-.35v-2a.5.5 0 0 0-1 0v1.38ZM4.15 2.02l.97.98H6.5a.5.5 0 0 0 0-1h-2c-.12 0-.24 0-.35.02ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Z\"]);\nexport const ScanThumbUpOffRegular = /*#__PURE__*/createFluentIcon('ScanThumbUpOffRegular', \"1em\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l4.57 4.58a1.42 1.42 0 0 1-.06.05l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08c.85.26 1.75-.01 2.3-.63l3.09 3.08c-.2.1-.42.15-.65.15h-2a.5.5 0 0 0 0 1h2c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l.26.27Zm9.94 9.94c-.29.36-.8.54-1.3.39l-3.61-1.09a.82.82 0 0 1-.54-.48L6.55 11a.76.76 0 0 1 .36-.94l1.24-.7a.5.5 0 0 0 .04-.02h.01v-.01l.02-.01a1.79 1.79 0 0 0 .21-.17l3.92 3.92Zm-3.5-6.32.75.74.35-.68c.17-.32.32-.61.5-1.02.03-.08.1-.17.19-.23a.3.3 0 0 1 .26-.04c.26.07.4.2.48.38.09.18.12.43.13.73 0 .28-.06.64-.15.99-.03.16-.08.31-.12.45a.5.5 0 0 0 .48.65h.93c.6 0 .96.53.82 1l-.39 1.25.8.8.54-1.76c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94l-.21.4ZM17 14.88l.98.97.02-.35v-2a.5.5 0 0 0-1 0v1.38ZM4.15 2.02l.97.98H6.5a.5.5 0 0 0 0-1h-2c-.12 0-.24 0-.35.02ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Z\"]);\nexport const ScanTypeFilled = /*#__PURE__*/createFluentIcon('ScanTypeFilled', \"1em\", [\"M4.75 3.5c-.69 0-1.25.56-1.25 1.25v1.5a.75.75 0 0 1-1.5 0v-1.5A2.75 2.75 0 0 1 4.75 2h1.5a.75.75 0 0 1 0 1.5h-1.5Zm0 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5ZM15.25 16.5c.69 0 1.25-.56 1.25-1.25v-1.5a.75.75 0 0 1 1.5 0v1.5A2.75 2.75 0 0 1 15.25 18h-1.5a.75.75 0 0 1 0-1.5h1.5ZM6.5 5a.75.75 0 0 0-.75.75v1a.75.75 0 0 0 1.5 0V6.5h2v7H9A.75.75 0 0 0 9 15h2a.75.75 0 0 0 0-1.5h-.25v-7h2v.25a.75.75 0 0 0 1.5 0v-1A.75.75 0 0 0 13.5 5h-7Z\"]);\nexport const ScanTypeRegular = /*#__PURE__*/createFluentIcon('ScanTypeRegular', \"1em\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM15 17a2 2 0 0 0 2-2v-1.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H15ZM6.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V6h2.5v8H9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-.5V6H13v.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const ScanTypeCheckmarkFilled = /*#__PURE__*/createFluentIcon('ScanTypeCheckmarkFilled', \"1em\", [\"M4.75 3.5c-.69 0-1.25.56-1.25 1.25v1.5a.75.75 0 0 1-1.5 0v-1.5A2.75 2.75 0 0 1 4.75 2h1.5a.75.75 0 0 1 0 1.5h-1.5Zm0 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5ZM6.5 5a.75.75 0 0 0-.75.75v1a.75.75 0 0 0 1.5 0V6.5h2v6.36a5.5 5.5 0 0 1 1.5-2.38V6.5h2v.25a.75.75 0 0 0 1.5 0v-1A.75.75 0 0 0 13.5 5h-7Zm1.25 8.5h1.34a5.53 5.53 0 0 0-.07 1.5H7.75a.75.75 0 0 1 0-1.5Zm11.25 1a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.5.8-.65-.65a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7l-2.65 2.64Z\"]);\nexport const ScanTypeCheckmarkRegular = /*#__PURE__*/createFluentIcon('ScanTypeCheckmarkRegular', \"1em\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM6.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V6h2.5v6.2c.25-.54.6-1.04 1-1.47V6H13v.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5h-7ZM8 14h1.02a5.57 5.57 0 0 0 0 1H8a.5.5 0 0 1 0-1Zm11 .5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ScanTypeOffFilled = /*#__PURE__*/createFluentIcon('ScanTypeOffFilled', \"1em\", [\"M2.48 3.2c-.3.43-.48.97-.48 1.55v1.5a.75.75 0 0 0 1.5 0v-1.5c0-.16.03-.32.09-.46l2.16 2.17v.29a.75.75 0 0 0 1 .7l2.5 2.5v3.55H9A.75.75 0 0 0 9 15h2a.75.75 0 0 0 0-1.5h-.25v-2.04l4.96 4.95c-.14.06-.3.09-.46.09h-1.5a.75.75 0 0 0 0 1.5h1.5c.58 0 1.12-.18 1.56-.48l.34.33a.5.5 0 0 0 .7-.7l-.33-.34-1.1-1.1L5.94 5.24 4.29 3.6l-1.1-1.1-.34-.34a.5.5 0 1 0-.7.7l.33.34ZM18 15.24c0 .2-.02.39-.06.57l-1.44-1.44v-.63a.75.75 0 0 1 1.5 0v1.5ZM10.75 6.5v2.13l-1.5-1.5V6.5h-.63L7.12 5h6.38c.41 0 .75.34.75.75v1a.75.75 0 0 1-1.5 0V6.5h-2Zm-4.5-3h-.63L4.18 2.06c.18-.04.37-.06.57-.06h1.5a.75.75 0 0 1 0 1.5Zm-1.5 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5Z\"]);\nexport const ScanTypeOffRegular = /*#__PURE__*/createFluentIcon('ScanTypeOffRegular', \"1em\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l6.35 6.36V14H9a.5.5 0 1 0 0 1h2a.5.5 0 0 0 0-1h-.5v-2.8l5.52 5.52A2 2 0 0 1 15 17h-1.5a.5.5 0 1 0 0 1H15c.65 0 1.25-.2 1.74-.55l.4.4a.5.5 0 0 0 .71-.7l-.4-.41-.73-.72L6.03 5.32 3.85 3.15l-.73-.74-.27-.26a.5.5 0 1 0-.7.7l.26.27ZM18 15a3 3 0 0 1-.1.78l-.9-.9V13.5a.5.5 0 1 1 1 0V15Zm-7.5-9v2.38l-1-1V6H8.12l-1-1h6.38c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0V6h-2.5Zm-4-3H5.12l-.97-.98L4.5 2h2a.5.5 0 0 1 0 1ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 1 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2Z\"]);\nexport const ScratchpadFilled = /*#__PURE__*/createFluentIcon('ScratchpadFilled', \"1em\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v13c0 .83.67 1.5 1.5 1.5H12v-.7A5.5 5.5 0 0 1 8 12H6.5a.5.5 0 0 1 0-1h1.59c.2-.58.76-1 1.41-1v-.5h-3a.5.5 0 0 1 0-1h3c0-.53.1-1.04.3-1.5H6.5a.5.5 0 0 1 0-1h3.88a4 4 0 0 1 6.62.56V3.5c0-.83-.67-1.5-1.5-1.5h-11Zm9 3.5a3 3 0 0 0-3 3v3a3 3 0 1 0 6 0v-3a3 3 0 0 0-3-3Zm-4 5.5c.28 0 .5.22.5.5v.5a3.5 3.5 0 1 0 7 0v-.5a.5.5 0 0 1 1 0v.5a4.5 4.5 0 0 1-4 4.47V18a.5.5 0 0 1-1 0v-1.53A4.5 4.5 0 0 1 9 12v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const ScratchpadRegular = /*#__PURE__*/createFluentIcon('ScratchpadRegular', \"1em\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v13c0 .83.67 1.5 1.5 1.5H12v-.7a5.46 5.46 0 0 1-.8-.3H4.5a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v1.88c.4.32.75.72 1 1.18V3.5c0-.83-.67-1.5-1.5-1.5h-11ZM8 11.5c0-.18.03-.34.09-.5H6.5a.5.5 0 0 0 0 1H8v-.5Zm-1.5-3h3v1h-3a.5.5 0 0 1 0-1ZM9.8 7a4 4 0 0 1 .58-1H6.5a.5.5 0 0 0 0 1h3.3Zm3.7-1.5a3 3 0 0 0-3 3v3a3 3 0 1 0 6 0v-3a3 3 0 0 0-3-3Zm-2 3a2 2 0 1 1 4 0v3a2 2 0 1 1-4 0v-3Zm-1.5 3a.5.5 0 0 0-1 0v.5a4.5 4.5 0 0 0 4 4.47V18a.5.5 0 0 0 1 0v-1.53A4.5 4.5 0 0 0 18 12v-.5a.5.5 0 0 0-1 0v.5a3.5 3.5 0 1 1-7 0v-.5Z\"]);\nexport const ScreenCutFilled = /*#__PURE__*/createFluentIcon('ScreenCutFilled', \"1em\", [\"M3 6a1 1 0 0 1 1-1h.5a.5.5 0 1 0 0-1H4a2 2 0 0 0-2 2v.5a.5.5 0 1 0 1 0V6Z\", \"M4 14a1 1 0 0 1-1-1v-.5a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.25a.5.5 0 0 0 0-1H4Z\", \"M2.5 8c.28 0 .5.22.5.5v2a.5.5 0 1 1-1 0v-2c0-.28.22-.5.5-.5Z\", \"M17 6a1 1 0 0 0-1-1h-.5a.5.5 0 0 1 0-1h.5a2 2 0 0 1 2 2v.5a.5.5 0 0 1-1 0V6Z\", \"M17 13a1 1 0 0 1-1 1h-.25a.5.5 0 0 0 0 1H16a2 2 0 0 0 2-2v-.5a.5.5 0 0 0-1 0v.5Z\", \"M17 8.5a.5.5 0 0 1 1 0v2a.5.5 0 1 1-1 0v-2Z\", \"M6 4.5c0-.28.22-.5.5-.5H9a.5.5 0 0 1 0 1H6.5a.5.5 0 0 1-.5-.5Z\", \"M11 4a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11Z\", \"M5 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2.7l.5-.74-1.96-2.93a1.5 1.5 0 1 1 2.5-1.66L10 9.55l1.25-1.88a1.5 1.5 0 0 1 2.5 1.66l-1.95 2.93.5.74H15a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z\", \"M7.22 8.09a.5.5 0 0 0-.14.69l2.31 3.48-1.23 1.85a2 2 0 0 0-2.51 2.64 2 2 0 1 0 3.34-2.08l1-1.51L11 14.67a2 2 0 1 0 .84-.55l-1.24-1.86-.6-.9L7.9 8.23a.5.5 0 0 0-.7-.14ZM12.5 17a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-5 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\", \"m10.6 10.45.6.9 1.72-2.57a.5.5 0 0 0-.14-.7.5.5 0 0 0-.7.15l-1.48 2.22Z\"]);\nexport const ScreenCutRegular = /*#__PURE__*/createFluentIcon('ScreenCutRegular', \"1em\", [\"M4 5a1 1 0 0 0-1 1v.5a.5.5 0 1 1-1 0V6c0-1.1.9-2 2-2h.5a.5.5 0 0 1 0 1H4Z\", \"M3 13a1 1 0 0 0 1 1h.25a.5.5 0 0 1 0 1H4a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5Z\", \"M3 8.5a.5.5 0 0 0-1 0v2a.5.5 0 1 0 1 0v-2Z\", \"M16 5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Z\", \"M16 14a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.25a.5.5 0 0 1 0-1H16Z\", \"M17.5 8a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5Z\", \"M6.5 4a.5.5 0 0 0 0 1H9a.5.5 0 1 0 0-1H6.5Z\", \"M10.5 4.5c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.5-.5Z\", \"M7.22 8.09a.5.5 0 0 0-.14.69l2.31 3.48-1.23 1.85a2 2 0 0 0-2.51 2.64 2 2 0 1 0 3.34-2.08l1-1.51L11 14.67a2 2 0 1 0 .84-.55l-1.24-1.86-.6-.9L7.9 8.23a.5.5 0 0 0-.7-.14ZM12.5 17a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-5 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\", \"m10.6 10.45.6.9 1.72-2.57a.5.5 0 0 0-.14-.7.5.5 0 0 0-.7.15l-1.48 2.22Z\"]);\nexport const ScreenPersonFilled = /*#__PURE__*/createFluentIcon('ScreenPersonFilled', \"1em\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6.05a2.5 2.5 0 0 1 2.22-1.99A2.99 2.99 0 0 1 15.5 9a3 3 0 0 1 2.5 1.34V7a3 3 0 0 0-3-3H5Zm12.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ScreenPersonRegular = /*#__PURE__*/createFluentIcon('ScreenPersonRegular', \"1em\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h6.3c.07-.37.23-.7.45-1H4.75C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V9.4c.4.23.74.56 1 .94V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm12.75 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ScreenSearchFilled = /*#__PURE__*/createFluentIcon('ScreenSearchFilled', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16h-5.13l-1.56-1.56A4.5 4.5 0 0 0 2 8.76V6.75ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ScreenSearchRegular = /*#__PURE__*/createFluentIcon('ScreenSearchRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16h-5.13l-1-1h6.13c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v1.5c-.36.13-.7.3-1 .5v-2ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ScreenshotFilled = /*#__PURE__*/createFluentIcon('ScreenshotFilled', \"1em\", [\"M5 3h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2Zm1.5 2C5.67 5 5 5.67 5 6.5v2a.5.5 0 0 0 1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 0 0-1h-2Zm5 0a.5.5 0 0 0 0 1h2c.28 0 .5.22.5.5v2a.5.5 0 0 0 1 0v-2c0-.83-.67-1.5-1.5-1.5h-2ZM6 11.5a.5.5 0 0 0-1 0v2c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 1-.5-.5v-2Zm9 0a.5.5 0 0 0-1 0v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2c.83 0 1.5-.67 1.5-1.5v-2Z\"]);\nexport const ScreenshotRegular = /*#__PURE__*/createFluentIcon('ScreenshotRegular', \"1em\", [\"M6.5 5C5.67 5 5 5.67 5 6.5v2a.5.5 0 0 0 1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 0 0-1h-2Zm5 0a.5.5 0 0 0 0 1h2c.28 0 .5.22.5.5v2a.5.5 0 0 0 1 0v-2c0-.83-.67-1.5-1.5-1.5h-2ZM6 11.5a.5.5 0 0 0-1 0v2c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 1-.5-.5v-2Zm9 0a.5.5 0 0 0-1 0v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2c.83 0 1.5-.67 1.5-1.5v-2ZM3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm1 0v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Z\"]);\nexport const ScriptFilled = /*#__PURE__*/createFluentIcon('ScriptFilled', \"1em\", [\"M16.56 2H6.5A2.5 2.5 0 0 0 4 4.5V13h6a1 1 0 0 1 1 1v2.1c0 1.1.9 1.9 2 1.9s1.99-.79 2-1.88V4.37a2.5 2.5 0 0 1 2-2.32 2.5 2.5 0 0 0-.44-.05Zm-5.88 16a2.99 2.99 0 0 1-.68-1.9V14H1.5a.5.5 0 0 0-.5.5v1.19A2.32 2.32 0 0 0 3.38 18h7.3ZM18 7a1 1 0 0 0 1-1V4.5a1.5 1.5 0 0 0-3 0V7h2Z\"]);\nexport const ScriptRegular = /*#__PURE__*/createFluentIcon('ScriptRegular', \"1em\", [\"M16.56 2H6.5A2.5 2.5 0 0 0 4 4.5V13H2a1 1 0 0 0-1 1v1.69A2.32 2.32 0 0 0 3.38 18h9.14A2.5 2.5 0 0 0 15 15.53V7h3a1 1 0 0 0 1-1V4.5A2.5 2.5 0 0 0 16.56 2ZM6.5 3h8c-.3.39-.47.86-.5 1.38V15.5a1.5 1.5 0 0 1-3 0V14a1 1 0 0 0-1-1H5V4.5C5 3.67 5.67 3 6.5 3Zm10 0c.83 0 1.5.67 1.5 1.5V6h-3V4.5c0-.83.67-1.5 1.5-1.5ZM2 14h8v1.5c0 .56.19 1.08.5 1.5H3.37C2.6 17 2 16.42 2 15.69V14Z\"]);\nexport const SearchFilled = /*#__PURE__*/createFluentIcon('SearchFilled', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15A5.5 5.5 0 1 1 8.5 3Zm0 1.5a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z\"]);\nexport const SearchRegular = /*#__PURE__*/createFluentIcon('SearchRegular', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12A5.5 5.5 0 1 1 8.5 3Zm0 1a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Z\"]);\nexport const SearchInfoFilled = /*#__PURE__*/createFluentIcon('SearchInfoFilled', \"1em\", [\"M14 8.5a5.5 5.5 0 1 0-1.98 4.23l4.13 4.12.07.06a.5.5 0 0 0 .63-.76l-4.12-4.13A5.48 5.48 0 0 0 14 8.5ZM8.5 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1ZM9 8.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 1 0Z\"]);\nexport const SearchInfoRegular = /*#__PURE__*/createFluentIcon('SearchInfoRegular', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12A5.5 5.5 0 1 1 8.5 3Zm0 1a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm0 4c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5ZM9 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z\"]);\nexport const SearchSettingsFilled = /*#__PURE__*/createFluentIcon('SearchSettingsFilled', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15c-.28.22-.6.41-.92.57-.1-.5-.27-.99-.5-1.43a4 4 0 1 0-5.86-2.94c-.5.1-.99.25-1.44.47A5.5 5.5 0 0 1 8.5 3Zm-5.43 8.44a2 2 0 0 1-1.44 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM5.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SearchSettingsRegular = /*#__PURE__*/createFluentIcon('SearchSettingsRegular', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12a5.5 5.5 0 0 1-1.12.72 5.45 5.45 0 0 0-.29-.98A4.5 4.5 0 1 0 4.05 9.2c-.33.1-.65.21-.95.36A5.5 5.5 0 0 1 8.5 3Zm-5.43 8.44a2 2 0 0 1-1.44 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM5.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SearchShieldFilled = /*#__PURE__*/createFluentIcon('SearchShieldFilled', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15c-.54.41-1.15.72-1.82.91V12.21a4 4 0 1 0-5.48-4.12c-.2.07-.37.18-.52.34-.32.33-.63.58-.96.78A5.5 5.5 0 0 1 8.5 3ZM7 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 3 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0C7.69 18.09 9 16.27 9 13.58V11a.4.4 0 0 0-.4-.33 4.23 4.23 0 0 1-1.6-.32Z\"]);\nexport const SearchShieldRegular = /*#__PURE__*/createFluentIcon('SearchShieldRegular', \"1em\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12c-.58.48-1.27.85-2.02 1.06v-1.05a4.5 4.5 0 1 0-6-4.31c-.32.33-.63.58-.96.78A5.5 5.5 0 0 1 8.5 3ZM7 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 3 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0C7.69 18.09 9 16.27 9 13.58V11a.4.4 0 0 0-.4-.33 4.23 4.23 0 0 1-1.6-.32Z\"]);\nexport const SearchSquareFilled = /*#__PURE__*/createFluentIcon('SearchSquareFilled', \"1em\", [\"M9 11.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm6 6.5c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L11.8 11.1A3.5 3.5 0 1 0 9 12.5Z\"]);\nexport const SearchSquareRegular = /*#__PURE__*/createFluentIcon('SearchSquareRegular', \"1em\", [\"M9 12.5c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L11.8 11.1A3.5 3.5 0 1 0 9 12.5Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const SearchVisualFilled = /*#__PURE__*/createFluentIcon('SearchVisualFilled', \"1em\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h1a.75.75 0 0 1 0 1.5h-1c-.97 0-1.75.78-1.75 1.75v1a.75.75 0 0 1-1.5 0v-1Zm14 7.5c0 1.8-1.46 3.25-3.25 3.25h-1a.75.75 0 0 1 0-1.5h1c.97 0 1.75-.78 1.75-1.75v-1a.75.75 0 0 1 1.5 0v1Zm0-7.5C17 4.45 15.54 3 13.75 3h-1a.75.75 0 0 0 0 1.5h1c.97 0 1.75.78 1.75 1.75v1a.75.75 0 0 0 1.5 0v-1ZM6.25 17A3.25 3.25 0 0 1 3 13.75v-1a.75.75 0 0 1 1.5 0v1c0 .97.78 1.75 1.75 1.75h1a.75.75 0 0 1 0 1.5h-1ZM10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM7 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const SearchVisualRegular = /*#__PURE__*/createFluentIcon('SearchVisualRegular', \"1em\", [\"M14 3a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1 0-1H14ZM6 3a3 3 0 0 0-3 3v1.5a.5.5 0 0 0 1 0V6c0-1.1.9-2 2-2h1.5a.5.5 0 0 0 0-1H6Zm8 14a3 3 0 0 0 3-3v-1.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14ZM3 14a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H6a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V14Zm7-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM6.5 7.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const SelectAllOffFilled = /*#__PURE__*/createFluentIcon('SelectAllOffFilled', \"1em\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm.27 15c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOffRegular = /*#__PURE__*/createFluentIcon('SelectAllOffRegular', \"1em\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4ZM3 4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm1.27 13c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOnFilled = /*#__PURE__*/createFluentIcon('SelectAllOnFilled', \"1em\", [\"M2 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm10.33 2.62a.5.5 0 0 0-.7.05l-3.15 3.6-1.63-1.62a.5.5 0 1 0-.7.7l2 2a.5.5 0 0 0 .73-.02l3.5-4a.5.5 0 0 0-.05-.7ZM4.27 17c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOnRegular = /*#__PURE__*/createFluentIcon('SelectAllOnRegular', \"1em\", [\"M2 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4Zm2 15a2 2 0 0 1-1.73-1H14a3 3 0 0 0 3-3V4.27c.6.34 1 .99 1 1.73v8a4 4 0 0 1-4 4H6Zm6.38-10.67a.5.5 0 0 0-.76-.66l-3.14 3.6-1.63-1.62a.5.5 0 1 0-.7.7l2 2a.5.5 0 0 0 .73-.02l3.5-4Z\"]);\nexport const SelectObjectFilled = /*#__PURE__*/createFluentIcon('SelectObjectFilled', \"1em\", [\"M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-11 11a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM7 4.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 7 4.75Zm0 10.5c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm-3-7.5a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-1.5 0v-4.5Zm10.5 0a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-1.5 0v-4.5Z\"]);\nexport const SelectObjectRegular = /*#__PURE__*/createFluentIcon('SelectObjectRegular', \"1em\", [\"M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-11 11a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM7 4.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 11c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm-3-8a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm11 0a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Z\"]);\nexport const SelectObjectSkewFilled = /*#__PURE__*/createFluentIcon('SelectObjectSkewFilled', \"1em\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-4 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM3.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM6 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm8.11.75H9.9a2.5 2.5 0 0 0 0-1.5h4.22a2.5 2.5 0 0 0 0 1.5ZM3.61 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm6.5 3.25H5.9a2.5 2.5 0 0 0 0-1.5h4.22a2.5 2.5 0 0 0 0 1.5Zm2.5-3.25 2.37-6.51c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Z\"]);\nexport const SelectObjectSkewRegular = /*#__PURE__*/createFluentIcon('SelectObjectSkewRegular', \"1em\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02A1.5 1.5 0 0 0 16.48 6Zm-5.4 10a1.5 1.5 0 1 0 1.42-2h-.01c-.65 0-1.2.42-1.41 1l-.01.02a1.5 1.5 0 0 0 0 .98ZM3.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM7.49 6a1.5 1.5 0 1 0 .02-3 1.5 1.5 0 0 0-.02 3Zm-3.62 7.03 2.32-6.4c.28.17.6.3.94.34l-2.32 6.4c-.28-.17-.6-.3-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm-8.1 11h4.1a2.51 2.51 0 0 1 0-1h-4.1a2.51 2.51 0 0 1 0 1Zm6.92-2.97 2.32-6.4c.28.17.6.3.94.34l-2.32 6.4c-.28-.17-.6-.3-.94-.34Z\"]);\nexport const SelectObjectSkewDismissFilled = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismissFilled', \"1em\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-13 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm4-11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm3.89.75h4.22a2.5 2.5 0 0 1 0-1.5H9.9a2.5 2.5 0 0 1 0 1.5ZM3.6 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm2.28 3.25h3.4a5.48 5.48 0 0 1-.28-1.5H5.89a2.5 2.5 0 0 1 0 1.5ZM16.39 7l-.77 2.11a5.52 5.52 0 0 0-1.56-.1l.92-2.52c.4.3.88.48 1.41.5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const SelectObjectSkewDismissRegular = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismissRegular', \"1em\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02a1.5 1.5 0 0 0 .47 1.64c.26.21.58.34.94.34ZM2 15.5a1.5 1.5 0 1 0 2.92-.48V15a1.5 1.5 0 0 0-1.4-1H3.5c-.83 0-1.5.67-1.5 1.5ZM7.49 6h.01c.65 0 1.2-.42 1.41-1l.01-.02a1.5 1.5 0 1 0-2.37.68c.26.21.58.34.94.34Zm-1.3.63-2.32 6.4c.34.05.66.17.94.34l2.32-6.4a2.48 2.48 0 0 1-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm.45 4c.3 0 .59.02.87.07l.76-2.1a2.48 2.48 0 0 1-.94-.34L14.33 9h.17Zm-5.48 6c.03.34.1.68.19 1H5.95a2.51 2.51 0 0 0 0-1h3.07Zm9.98-.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const SelectObjectSkewEditFilled = /*#__PURE__*/createFluentIcon('SelectObjectSkewEditFilled', \"1em\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-13 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm4-11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm3.89.75h4.22a2.5 2.5 0 0 1 0-1.5H9.9a2.5 2.5 0 0 1 0 1.5ZM3.6 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm2.28 3.25H9.4l.02-.1c.12-.46.34-.9.65-1.26 0-.05.02-.1.03-.14H5.9a2.5 2.5 0 0 1 0 1.5ZM16.39 7l-.92 2.53-.37.31-2.1 2.1 1.98-5.45c.4.3.88.48 1.41.5Zm-5.41 8.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SelectObjectSkewEditRegular = /*#__PURE__*/createFluentIcon('SelectObjectSkewEditRegular', \"1em\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02a1.5 1.5 0 0 0 .47 1.64c.26.21.58.34.94.34ZM2 15.5a1.5 1.5 0 1 0 2.92-.48V15a1.5 1.5 0 0 0-1.4-1H3.5c-.83 0-1.5.67-1.5 1.5ZM7.49 6h.01c.65 0 1.2-.42 1.41-1l.01-.02a1.5 1.5 0 1 0-2.37.68c.26.21.58.34.94.34Zm-1.3.63-2.32 6.4c.34.05.66.17.94.34l2.32-6.4a2.48 2.48 0 0 1-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm-.64 6.53 1.67-1.67 1.05-2.89a2.48 2.48 0 0 1-.94-.34l-1.78 4.9ZM5.95 16h3.52c.11-.36.29-.7.52-1H5.95a2.51 2.51 0 0 1 0 1Zm5.03-.62 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SendFilled = /*#__PURE__*/createFluentIcon('SendFilled', \"1em\", [\"M2.72 2.05a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l15-7.5a.5.5 0 0 0 0-.9l-15-7.5Z\"], {\n flipInRtl: true\n});\nexport const SendRegular = /*#__PURE__*/createFluentIcon('SendRegular', \"1em\", [\"M2.18 2.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 0 1 0 .9l-15 7.5a.5.5 0 0 1-.7-.58L3.98 10 2.02 2.63a.5.5 0 0 1 .16-.52Zm2.7 8.39-1.61 6.06L16.38 10 3.27 3.44 4.88 9.5h6.62a.5.5 0 1 1 0 1H4.88Z\"], {\n flipInRtl: true\n});\nexport const SendBeakerFilled = /*#__PURE__*/createFluentIcon('SendBeakerFilled', \"1em\", [\"M2.72 1.55a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l9.74-4.87A1.5 1.5 0 0 1 13.5 10h4.11l.11-.05a.5.5 0 0 0 0-.9l-15-7.5ZM17 14.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V12h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H17v2.4ZM12.9 17l-.8 1.54a1 1 0 0 0 .9 1.46H18a1 1 0 0 0 .89-1.46l-.8-1.54H12.9Z\"], {\n flipInRtl: true\n});\nexport const SendBeakerRegular = /*#__PURE__*/createFluentIcon('SendBeakerRegular', \"1em\", [\"M2.18 1.61a.5.5 0 0 1 .54-.06L17.5 10h-.01a.5.5 0 0 1-.21-.05l-14.01-7L4.88 9h6.62a.5.5 0 1 1 0 1H4.88l-1.61 6.06L12 11.69c.04.35.2.66.45.89l-9.74 4.87a.5.5 0 0 1-.7-.58L3.98 9.5 2.02 2.13a.5.5 0 0 1 .16-.52Zm.54-.06L17.51 10a.5.5 0 0 0 .21-.95l-15-7.5ZM17 14.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V12h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H17v2.4ZM12.9 17l-.8 1.54a1 1 0 0 0 .9 1.46H18a1 1 0 0 0 .89-1.46l-.8-1.54H12.9Z\"], {\n flipInRtl: true\n});\nexport const SendClockFilled = /*#__PURE__*/createFluentIcon('SendClockFilled', \"1em\", [\"M2.72 1.05a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l6.33-3.16A5.5 5.5 0 0 1 17.2 9.7l.52-.26a.5.5 0 0 0 0-.9l-15-7.5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"], {\n flipInRtl: true\n});\nexport const SendClockRegular = /*#__PURE__*/createFluentIcon('SendClockRegular', \"1em\", [\"M2.18 1.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 1 1-.44.9l-14.01-7L4.88 8.5h6.62a.5.5 0 1 1 0 1H4.88l-1.61 6.06 6.1-3.06c-.15.41-.27.84-.32 1.29l-6.33 3.16a.5.5 0 0 1-.7-.58L3.98 9 2.02 1.63a.5.5 0 0 1 .16-.52ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"], {\n flipInRtl: true\n});\nexport const SendCopyFilled = /*#__PURE__*/createFluentIcon('SendCopyFilled', \"1em\", [\"M8.47 2.22c.3-.3.77-.3 1.06 0l2.5 2.5a.75.75 0 0 1-1.06 1.06L9.75 4.56v6.69a.75.75 0 0 1-1.5 0V4.56L7.03 5.78a.75.75 0 0 1-1.06-1.06l2.5-2.5ZM5.57 16.5A2 2 0 0 0 7.5 18H13a4.5 4.5 0 0 0 4.5-4.5v-2.25a.75.75 0 0 0-1.5 0v2.25a3 3 0 0 1-3 3H5.57ZM4.5 8.75a.75.75 0 0 0-1.5 0v4.75c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V8.75a.75.75 0 0 0-1.5 0v4.75a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V8.75Z\"]);\nexport const SendCopyRegular = /*#__PURE__*/createFluentIcon('SendCopyRegular', \"1em\", [\"M8.65 2.15c.2-.2.5-.2.7 0l3 3a.5.5 0 0 1-.7.7L9.5 3.71v7.79a.5.5 0 0 1-1 0V3.7L6.35 5.86a.5.5 0 1 1-.7-.7l3-3ZM5.27 17c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4v-3.5a.5.5 0 1 0-1 0V14a3 3 0 0 1-3 3H5.27ZM4 8.5a.5.5 0 0 0-1 0V14c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-1 0V14a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8.5Z\"]);\nexport const SerialPortFilled = /*#__PURE__*/createFluentIcon('SerialPortFilled', \"1em\", [\"M2.33 9.07A2.5 2.5 0 0 1 4.77 6h10.46a2.5 2.5 0 0 1 2.43 3.07l-.7 3A2.5 2.5 0 0 1 14.53 14H5.47a2.5 2.5 0 0 1-2.44-1.93l-.7-3ZM6 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM8.5 9a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM7 11.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM10 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const SerialPortRegular = /*#__PURE__*/createFluentIcon('SerialPortRegular', \"1em\", [\"M6 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM8.5 9a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM7 11.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM10 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM4.77 6a2.5 2.5 0 0 0-2.44 3.07l.7 3A2.5 2.5 0 0 0 5.47 14h9.06a2.5 2.5 0 0 0 2.43-1.93l.7-3A2.5 2.5 0 0 0 15.23 6H4.77ZM3.3 8.84A1.5 1.5 0 0 1 4.77 7h10.46c.97 0 1.68.9 1.46 1.84l-.7 3A1.5 1.5 0 0 1 14.53 13H5.47c-.7 0-1.3-.48-1.46-1.16l-.7-3Z\"]);\nexport const ServerFilled = /*#__PURE__*/createFluentIcon('ServerFilled', \"1em\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h5a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 12.5 2h-5ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 7c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerRegular = /*#__PURE__*/createFluentIcon('ServerRegular', \"1em\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM5 4.5A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5v11a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 15.5v-11ZM7.5 3C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-5Z\"]);\nexport const ServerLinkFilled = /*#__PURE__*/createFluentIcon('ServerLinkFilled', \"1em\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h1.84a3.49 3.49 0 0 1 0-3H7.5a.5.5 0 0 1 0-1h2.55c.63-.62 1.5-1 2.45-1H15V4.5A2.5 2.5 0 0 0 12.5 2h-5Zm5 11h-5a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm5.5 8.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerLinkRegular = /*#__PURE__*/createFluentIcon('ServerLinkRegular', \"1em\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm7-8V13h1V4.5A2.5 2.5 0 0 0 12.5 2h-5A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h1.84a3.48 3.48 0 0 1-.3-1H7.5A1.5 1.5 0 0 1 6 15.5v-11C6 3.67 6.67 3 7.5 3h5c.83 0 1.5.67 1.5 1.5ZM9.34 15c.17-.37.42-.71.71-1H7.5a.5.5 0 0 0 0 1h1.84Zm3.16-1a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerMultipleFilled = /*#__PURE__*/createFluentIcon('ServerMultipleFilled', \"1em\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h5a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 12.5 2h-5Zm0 3h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM2 7c0-1.1.9-2 2-2v10.5c0 .17.01.34.04.5H4a2 2 0 0 1-2-2V7Zm14 8.5c0 .17-.01.34-.04.5H16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2v10.5Z\"]);\nexport const ServerMultipleRegular = /*#__PURE__*/createFluentIcon('ServerMultipleRegular', \"1em\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM5 4.5A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5V5h1a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-1.05a2.5 2.5 0 0 1-2.45 2h-5a2.5 2.5 0 0 1-2.45-2H4a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h1v-.5ZM15 15h1a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1v9ZM5 6H4a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h1V6Zm2.5-3C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-5Z\"]);\nexport const ServerPlayFilled = /*#__PURE__*/createFluentIcon('ServerPlayFilled', \"1em\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h2.76a5.47 5.47 0 0 1-1.24-3H7.5a.5.5 0 0 1 0-1h1.52c.03-.34.1-.68.19-1H7.5a.5.5 0 0 1 0-1h2.1A5.5 5.5 0 0 1 15 9.02V4.5A2.5 2.5 0 0 0 12.5 2h-5ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm12 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const ServerPlayRegular = /*#__PURE__*/createFluentIcon('ServerPlayRegular', \"1em\", [\"M14 9.02V4.5c0-.83-.67-1.5-1.5-1.5h-5C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h2.1c.18.36.4.7.66 1H7.5A2.5 2.5 0 0 1 5 15.5v-11A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5v4.52a5.57 5.57 0 0 0-1 0ZM7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h2.1c-.16.32-.3.65-.4 1H7.5a.5.5 0 0 1-.5-.5Zm2 2c0-.17 0-.34.02-.5H7.5a.5.5 0 0 0 0 1h1.52a5.57 5.57 0 0 1-.02-.5Zm10 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const ServiceBellFilled = /*#__PURE__*/createFluentIcon('ServiceBellFilled', \"1em\", [\"M8 5a2 2 0 1 1 4 0v.79a7 7 0 0 1 5 6.71.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5 7 7 0 0 1 5-6.71V5Zm2.5 3.5c.42 0 .84 0 1.27.16.41.15.87.45 1.31 1.12a.5.5 0 0 0 .84-.56 3.66 3.66 0 0 0-1.81-1.5 4.51 4.51 0 0 0-1.59-.22h-.02a.5.5 0 0 0 0 1Zm-7 5.5a1.5 1.5 0 0 0 0 3h13a1.5 1.5 0 0 0 0-3h-13Z\"]);\nexport const ServiceBellRegular = /*#__PURE__*/createFluentIcon('ServiceBellRegular', \"1em\", [\"M10.5 8.5c.42 0 .84 0 1.27.16.41.15.87.45 1.31 1.12a.5.5 0 0 0 .84-.56 3.66 3.66 0 0 0-1.81-1.5 4.51 4.51 0 0 0-1.59-.22h-.02a.5.5 0 0 0 0 1ZM8 5v.79a7 7 0 0 0-5 6.71c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5 7 7 0 0 0-5-6.71V5a2 2 0 1 0-4 0Zm2-1a1 1 0 0 1 1 1v.57a7.06 7.06 0 0 0-2 0V5a1 1 0 0 1 1-1Zm0 2.5a6 6 0 0 1 5.98 5.5H4.02A6 6 0 0 1 10 6.5ZM3.5 14a1.5 1.5 0 0 0 0 3h13a1.5 1.5 0 0 0 0-3h-13ZM3 15.5c0-.28.22-.5.5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5Z\"]);\nexport const SettingsFilled = /*#__PURE__*/createFluentIcon('SettingsFilled', \"1em\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32a1 1 0 0 0 0 1.52l1.56 1.32a.5.5 0 0 1 .15.54 8.5 8.5 0 0 1-1.78 3.08.5.5 0 0 1-.54.13l-1.92-.68a1 1 0 0 0-1.32.76l-.37 2a.5.5 0 0 1-.38.4 8.53 8.53 0 0 1-3.56 0 .5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54ZM8 10a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z\"]);\nexport const SettingsRegular = /*#__PURE__*/createFluentIcon('SettingsRegular', \"1em\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32a1 1 0 0 0 0 1.52l1.56 1.32a.5.5 0 0 1 .15.54 8.5 8.5 0 0 1-1.78 3.08.5.5 0 0 1-.54.13l-1.92-.68a1 1 0 0 0-1.32.76l-.37 2a.5.5 0 0 1-.38.4 8.53 8.53 0 0 1-3.56 0 .5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm1.06 0 1.3 1.1a2 2 0 0 1 0 3.04l-1.3 1.1c.3.79.72 1.51 1.25 2.16l1.6-.58a2 2 0 0 1 2.63 1.53l.3 1.67a7.56 7.56 0 0 0 2.5 0l.3-1.67a2 2 0 0 1 2.64-1.53l1.6.58a7.5 7.5 0 0 0 1.24-2.16l-1.3-1.1a2 2 0 0 1 0-3.04l1.3-1.1a7.5 7.5 0 0 0-1.25-2.16l-1.6.58a2 2 0 0 1-2.63-1.53l-.3-1.67a7.55 7.55 0 0 0-2.5 0l-.3 1.67A2 2 0 0 1 5.81 5.8l-1.6-.58a7.5 7.5 0 0 0-1.24 2.16ZM7.5 10a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm1 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const SettingsChatFilled = /*#__PURE__*/createFluentIcon('SettingsChatFilled', \"1em\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32-.07.06a5.5 5.5 0 0 0-4.35.32 2 2 0 1 0-2.34 2.34 5.48 5.48 0 0 0-.13 4.81l-.43 1.4-.05.27a8.48 8.48 0 0 1-.79-.13.5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm8.1 11.12a.4.4 0 0 0 .52.48l1.79-.54A4.5 4.5 0 1 0 14.5 10a4.49 4.49 0 0 0-2.72.92 4.48 4.48 0 0 0-1.21 5.77l-.55 1.78v.03ZM14.5 15a.5.5 0 0 1 0 1h-2a.5.5 0 1 1 0-1h2Zm-2-2h4a.5.5 0 1 1 0 1h-4a.5.5 0 1 1 0-1Z\"]);\nexport const SettingsChatRegular = /*#__PURE__*/createFluentIcon('SettingsChatRegular', \"1em\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32-.07.06c-.33-.11-.68-.2-1.04-.25a2 2 0 0 1 .47-.57l1.29-1.1a7.5 7.5 0 0 0-1.25-2.16l-1.6.58a2 2 0 0 1-2.63-1.53l-.3-1.67a7.55 7.55 0 0 0-2.5 0l-.3 1.67A2 2 0 0 1 5.81 5.8l-1.6-.58a7.5 7.5 0 0 0-1.24 2.16l1.3 1.1a2 2 0 0 1 0 3.04l-1.3 1.1c.3.79.72 1.51 1.25 2.16l1.6-.58a2 2 0 0 1 2.63 1.53l.3 1.67.53.07-.22.7-.05.27a8.48 8.48 0 0 1-.79-.13.5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm8.1 11.12a.4.4 0 0 0 .52.48l1.79-.54a4.5 4.5 0 1 0 .13-7.94 4.48 4.48 0 0 0-1.89 6.19l-.24.8-.3.98v.03ZM14.5 15a.5.5 0 0 1 0 1h-2a.5.5 0 1 1 0-1h2Zm2-1h-4a.5.5 0 1 1 0-1h4a.5.5 0 1 1 0 1ZM10 7.5a2.5 2.5 0 0 1 2.43 1.9c-.33.14-.64.3-.93.5a1.5 1.5 0 1 0-1.6 1.6c-.2.29-.36.6-.5.93A2.5 2.5 0 0 1 10 7.5Z\"]);\nexport const SettingsCogMultipleFilled = /*#__PURE__*/createFluentIcon('SettingsCogMultipleFilled', \"1em\", [\"M8 2c-.37 0-.73.04-1.08.1a.5.5 0 0 0-.4.4l-.26 1.36c-.05.25-.3.4-.54.31l-1.3-.45a.5.5 0 0 0-.55.14A5.5 5.5 0 0 0 2.8 5.74c-.07.2-.01.4.14.54l1.05.9c.19.17.19.47 0 .63l-1.05.91a.5.5 0 0 0-.14.54c.23.7.6 1.34 1.08 1.88.14.15.35.2.54.14l1.3-.45c.25-.08.5.06.55.31l.27 1.36c.03.2.19.35.39.4a5.52 5.52 0 0 0 2.17 0 .5.5 0 0 0 .4-.4l.25-1.36c.05-.25.3-.4.55-.31l1.3.45c.19.06.4 0 .54-.14a5.5 5.5 0 0 0 1.08-1.89.5.5 0 0 0-.14-.53l-1.04-.9a.42.42 0 0 1 0-.63l1.04-.9a.5.5 0 0 0 .14-.54 5.5 5.5 0 0 0-1.08-1.89.5.5 0 0 0-.54-.14l-1.3.45a.42.42 0 0 1-.55-.31L9.48 2.5a.5.5 0 0 0-.4-.4C8.75 2.05 8.39 2 8 2ZM6.5 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm4.66 4.95a.46.46 0 0 1 .53-.15l.8.27c.26.1.54-.07.6-.34l.15-.83c.04-.2.2-.36.4-.38a3.55 3.55 0 0 1 .72 0c.2.02.35.18.4.38l.15.83c.06.27.34.43.6.34l.8-.27c.19-.07.4-.02.52.15.14.2.27.4.36.62.09.19.03.4-.13.53l-.64.56c-.2.18-.2.5 0 .68l.64.56c.16.13.22.34.13.53-.1.22-.22.43-.36.62a.46.46 0 0 1-.52.15l-.8-.27a.45.45 0 0 0-.6.34l-.16.83c-.04.2-.19.36-.4.38a3.55 3.55 0 0 1-.71 0 .46.46 0 0 1-.4-.38l-.16-.83a.45.45 0 0 0-.6-.34l-.8.27c-.18.07-.4.02-.52-.15a3.5 3.5 0 0 1-.36-.62.46.46 0 0 1 .13-.53l.64-.56c.21-.18.21-.5 0-.68l-.64-.56a.46.46 0 0 1-.13-.53c.1-.22.22-.43.36-.62ZM15 14.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const SettingsCogMultipleRegular = /*#__PURE__*/createFluentIcon('SettingsCogMultipleRegular', \"1em\", [\"m7.44 3.03-.2 1.02A1.42 1.42 0 0 1 5.4 5.12l-.98-.34c-.22.3-.41.62-.56.97l.78.68c.65.56.65 1.57 0 2.14l-.78.68c.15.35.34.67.56.97l.98-.34c.82-.28 1.7.23 1.85 1.07l.2 1.02a4.55 4.55 0 0 0 1.13 0l.2-1.02a1.42 1.42 0 0 1 1.84-1.07l.98.34c.22-.3.41-.63.56-.98l-.78-.67a1.42 1.42 0 0 1 0-2.14l.78-.67a4.5 4.5 0 0 0-.56-.98l-.98.34a1.42 1.42 0 0 1-1.85-1.07l-.2-1.01a4.55 4.55 0 0 0-1.12 0Zm-.52-.92a5.52 5.52 0 0 1 2.17 0c.2.04.35.2.4.4l.25 1.35c.05.25.3.4.55.31l1.3-.45a.5.5 0 0 1 .54.14 5.5 5.5 0 0 1 1.08 1.89c.07.19.01.4-.14.53l-1.04.9c-.2.17-.2.47 0 .63l1.04.9a.5.5 0 0 1 .14.54 5.5 5.5 0 0 1-1.08 1.89.5.5 0 0 1-.54.14l-1.3-.45a.42.42 0 0 0-.55.31l-.26 1.36a.5.5 0 0 1-.4.4 5.52 5.52 0 0 1-2.16 0 .5.5 0 0 1-.4-.4l-.26-1.36a.42.42 0 0 0-.54-.31l-1.3.45a.5.5 0 0 1-.55-.14A5.5 5.5 0 0 1 2.8 9.26a.5.5 0 0 1 .14-.54l1.05-.9c.19-.17.19-.47 0-.63l-1.05-.91a.5.5 0 0 1-.14-.54c.23-.7.6-1.34 1.08-1.88a.5.5 0 0 1 .54-.14l1.3.45c.25.08.5-.06.55-.31l.27-1.36a.5.5 0 0 1 .39-.4Zm4.77 10.19a.46.46 0 0 0-.53.15c-.14.2-.26.4-.36.62-.08.19-.02.4.13.53l.64.56c.21.18.21.5 0 .68l-.64.56a.46.46 0 0 0-.13.53c.1.22.22.43.36.62.12.17.34.22.53.15l.8-.27c.26-.1.54.07.6.34l.15.83c.04.2.2.36.4.38a3.56 3.56 0 0 0 .72 0c.2-.02.35-.18.4-.38l.15-.83a.45.45 0 0 1 .6-.34l.8.27c.19.07.4.02.52-.15.14-.2.27-.4.36-.62a.46.46 0 0 0-.13-.53l-.64-.56a.45.45 0 0 1 0-.68l.64-.56a.46.46 0 0 0 .13-.53 3.5 3.5 0 0 0-.36-.62.46.46 0 0 0-.52-.15l-.8.27a.45.45 0 0 1-.6-.34l-.16-.83a.46.46 0 0 0-.4-.38 3.55 3.55 0 0 0-.71 0 .46.46 0 0 0-.4.38l-.16.83a.45.45 0 0 1-.6.34l-.8-.27ZM14 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-7-8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z\"]);\nexport const ShapeExcludeFilled = /*#__PURE__*/createFluentIcon('ShapeExcludeFilled', \"1em\", [\"M2 10.5v-6A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7H9.5A2.5 2.5 0 0 0 7 9.5V13H4.5A2.5 2.5 0 0 1 2 10.5ZM7 13v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13v3.5a2.5 2.5 0 0 1-2.5 2.5H7Z\"]);\nexport const ShapeExcludeRegular = /*#__PURE__*/createFluentIcon('ShapeExcludeRegular', \"1em\", [\"M2 10.53V4.5A2.5 2.5 0 0 1 4.5 2h6.06A2.49 2.49 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6.22A2.5 2.5 0 0 1 15.5 18h-6A2.5 2.5 0 0 1 7 15.5V13H4.5a2.52 2.52 0 0 1-2.09-1.12c-.25-.38-.4-.84-.4-1.32L2 10.53ZM12 8H9.5C8.67 8 8 8.67 8 9.5V12h2.5c.83 0 1.5-.67 1.5-1.5V8ZM3 9.56v.94c0 .23.05.45.15.65l8-8A1.5 1.5 0 0 0 10.5 3h-.94L3 9.56ZM8.14 3H6.56L3 6.56v1.58L8.14 3ZM3 5.14 5.14 3H4.5C3.67 3 3 3.67 3 4.5v.64Zm8.85-1.29L8.5 7.21c.3-.14.64-.21 1-.21h.8L12 5.3v-.8c0-.23-.05-.45-.15-.65ZM7.21 8.5l-3.36 3.35c.2.1.42.15.65.15h.8L7 10.3v-.8c0-.36.07-.7.2-1ZM8 13.7v1.6l2.3-2.3H8.7l-.7.7Zm5-3.4L15.3 8h-1.6l-.7.7v1.6Zm3.4-2-8.1 8.1c.24.32.6.53 1 .59L17 9.3a1.5 1.5 0 0 0-.59-1Zm.6 2.4L10.7 17h1.6l4.7-4.7v-1.6Zm0 3L13.7 17h1.6l1.7-1.7v-1.6Z\"]);\nexport const ShapeIntersectFilled = /*#__PURE__*/createFluentIcon('ShapeIntersectFilled', \"1em\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6ZM7 12V9.5A2.5 2.5 0 0 1 9.5 7H12V4.5c0-.83-.67-1.5-1.5-1.5h-6C3.67 3 3 3.67 3 4.5v6c0 .83.67 1.5 1.5 1.5H7Zm1 1v2.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5H13v2.5a2.5 2.5 0 0 1-2.5 2.5H8Z\"]);\nexport const ShapeIntersectRegular = /*#__PURE__*/createFluentIcon('ShapeIntersectRegular', \"1em\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6Zm10 0c0-.83-.67-1.5-1.5-1.5h-6C3.67 3 3 3.67 3 4.5v6c0 .83.67 1.5 1.5 1.5H7V9.5A2.5 2.5 0 0 1 9.5 7H12V4.5Zm-4 6.2V12h.3L12 8.3V8h-1.3L8 10.7Zm.02-1.42 1.26-1.26a1.5 1.5 0 0 0-1.26 1.26ZM13 8v2.5a2.5 2.5 0 0 1-2.5 2.5H8v2.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5H13Zm-3.3 4h.8c.83 0 1.5-.67 1.5-1.5v-.8L9.7 12Z\"]);\nexport const ShapeOrganicFilled = /*#__PURE__*/createFluentIcon('ShapeOrganicFilled', \"1em\", [\"M14.5 7.83c.42.32.89.33 1.35.53.25.1.57.3.9.6.66.63 1.25 1.72 1.25 3.54a4.73 4.73 0 0 1-2.54 4.33C13.97 17.68 12 18 10 18c-2.19 0-4.21-.38-5.68-1.62-1.91-1.6-2.35-4.35-2.32-6.7 0-.66.09-2.12.67-3.61.4-1 1.02-2.02 2.01-2.8A6.65 6.65 0 0 1 8.86 2c.25 0 1.23.05 2.26.4 1.15.4 2.48 1.28 2.48 3.1 0 1.36.49 2 .9 2.33Z\"]);\nexport const ShapeOrganicRegular = /*#__PURE__*/createFluentIcon('ShapeOrganicRegular', \"1em\", [\"M14.5 7.83c.42.32.89.33 1.35.53.25.1.57.3.9.6.66.63 1.25 1.72 1.25 3.54a4.73 4.73 0 0 1-2.54 4.33C13.97 17.68 12 18 10 18c-2.19 0-4.21-.38-5.68-1.62-1.91-1.6-2.35-4.35-2.32-6.7 0-.66.09-2.12.67-3.61.4-1 1.02-2.02 2.01-2.8A6.65 6.65 0 0 1 8.86 2c.25 0 1.23.05 2.26.4 1.15.4 2.48 1.28 2.48 3.1 0 1.36.49 2 .9 2.33Zm-9.54 7.79C6.16 16.62 7.89 17 10 17c1.92 0 3.7-.31 4.97-1.04 2.04-1.15 2.93-4.5 1.09-6.27a2.14 2.14 0 0 0-.62-.42c-.5-.22-1.1-.3-1.54-.65-.69-.53-1.3-1.48-1.3-3.12 0-1.18-.82-1.8-1.81-2.15A6.94 6.94 0 0 0 8.96 3 5.59 5.59 0 0 0 5.3 4.07a5.48 5.48 0 0 0-1.7 2.36A9.62 9.62 0 0 0 3 9.68c-.02 2.1.26 4.5 1.96 5.94Z\"]);\nexport const ShapeSubtractFilled = /*#__PURE__*/createFluentIcon('ShapeSubtractFilled', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6ZM8 9.5C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);\nexport const ShapeSubtractRegular = /*#__PURE__*/createFluentIcon('ShapeSubtractRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5V10.56c.01.48.16.94.41 1.32l.02.02A2.52 2.52 0 0 0 4.3 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5a2.52 2.52 0 0 0-.41-1.38l-.02-.02A2.51 2.51 0 0 0 10.51 2H4.5Zm.64 1L3 5.14V4.5C3 3.67 3.67 3 4.5 3h.64ZM3 6.56 6.56 3h1.58L3 8.14V6.56ZM9.56 3h.94c.23 0 .45.05.65.15l-8 8A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3Zm2.3.85c.09.2.14.42.14.65v.8L10.3 7h-.8c-.36 0-.7.07-1 .2l3.35-3.35ZM7.2 8.5c-.14.3-.21.64-.21 1v.8L5.3 12h-.8a1.5 1.5 0 0 1-.65-.15L7.21 8.5Zm.79 1C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);\nexport const ShapeUnionFilled = /*#__PURE__*/createFluentIcon('ShapeUnionFilled', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6Z\"]);\nexport const ShapeUnionRegular = /*#__PURE__*/createFluentIcon('ShapeUnionRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.3 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6.22a2.5 2.5 0 0 0 2.27-2.28v-.01l.01-.21v-6A2.5 2.5 0 0 0 15.5 7H13V4.5a2.52 2.52 0 0 0-.5-1.5 2.5 2.5 0 0 0-2-1h-6Zm6.65 1.15-8 8A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3h.94c.23 0 .45.05.65.15Zm-7.3 8.7 8-8c.1.2.15.42.15.65v.8L5.3 12h-.8a1.5 1.5 0 0 1-.65-.15ZM12 6.71v.79c0 .21.13.4.32.47l-4.35 4.35A.5.5 0 0 0 7.5 12h-.8L12 6.7ZM13.7 8h1.6L8 15.3v-1.6L13.7 8Zm2.7.3c.32.24.53.6.59 1L9.3 17a1.5 1.5 0 0 1-1-.59l8.1-8.1Zm.6 2.4v1.6L12.3 17h-1.6l6.3-6.3Zm0 3v1.6L15.3 17h-1.6l3.3-3.3ZM3 8.15V6.56L6.56 3h1.58L3 8.14Zm0-3V4.5C3 3.67 3.67 3 4.5 3h.64L3 5.14Z\"]);\nexport const ShapesFilled = /*#__PURE__*/createFluentIcon('ShapesFilled', \"1em\", [\"M2 7.5A5.5 5.5 0 0 1 12.98 7H10.5A3.5 3.5 0 0 0 7 10.5v2.48A5.5 5.5 0 0 1 2 7.5Zm8.5.5A2.5 2.5 0 0 0 8 10.5v5a2.5 2.5 0 0 0 2.5 2.5h5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 8h-5Z\"]);\nexport const ShapesRegular = /*#__PURE__*/createFluentIcon('ShapesRegular', \"1em\", [\"M7.5 3a4.5 4.5 0 0 0-.5 8.97v1A5.5 5.5 0 1 1 12.98 7h-1A4.5 4.5 0 0 0 7.5 3Zm3 5A2.5 2.5 0 0 0 8 10.5v5a2.5 2.5 0 0 0 2.5 2.5h5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 8h-5ZM9 10.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 9 15.5v-5Z\"]);\nexport const ShareFilled = /*#__PURE__*/createFluentIcon('ShareFilled', \"1em\", [\"M12.38 5.7V3.59c0-.48.53-.74.89-.47l.06.05 4.5 4.42c.2.2.23.54.05.77l-.05.07-4.5 4.42c-.34.33-.89.12-.95-.34v-2.18l-.26.03a9.25 9.25 0 0 0-5.19 2.5c-.39.35-.99.03-.93-.5.5-4.09 2.59-6.34 6.15-6.63l.23-.01ZM5.5 4A2.5 2.5 0 0 0 3 6.5v8A2.5 2.5 0 0 0 5.5 17h8a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 4 14.5v-8C4 5.67 4.67 5 5.5 5h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const ShareRegular = /*#__PURE__*/createFluentIcon('ShareRegular', \"1em\", [\"m13.33 12.84 4.5-4.42.05-.07a.59.59 0 0 0-.05-.77l-4.5-4.42-.06-.05c-.36-.27-.9-.01-.9.47V5.7l-.22.01C8.6 6.01 6.5 8.26 6 12.35c-.06.53.54.85.93.5a9.64 9.64 0 0 1 4.45-2.38c.24-.06.5-.1.74-.12l.26-.02v2.17c.06.46.61.67.95.34Zm-1.1-6.12 1.15-.08V4.61L16.82 8l-3.44 3.39V9.23l-1.36.12c-1.7.19-3.32.87-4.83 2 .3-1.33.8-2.34 1.47-3.06a5.2 5.2 0 0 1 3.57-1.57ZM5.5 4A2.5 2.5 0 0 0 3 6.5v8A2.5 2.5 0 0 0 5.5 17h8a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 4 14.5v-8C4 5.67 4.67 5 5.5 5h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const ShareAndroidFilled = /*#__PURE__*/createFluentIcon('ShareAndroidFilled', \"1em\", [\"M17 5.5a2.5 2.5 0 0 1-4.47 1.54L7.92 9.35a2.5 2.5 0 0 1 0 1.3l4.61 2.3a2.5 2.5 0 1 1-.45.9l-4.61-2.3a2.5 2.5 0 1 1 0-3.1l4.61-2.3A2.5 2.5 0 1 1 17 5.5Z\"]);\nexport const ShareAndroidRegular = /*#__PURE__*/createFluentIcon('ShareAndroidRegular', \"1em\", [\"M12 5.5a2.5 2.5 0 1 1 .53 1.54L7.92 9.35a2.5 2.5 0 0 1 0 1.3l4.61 2.3a2.5 2.5 0 1 1-.45.9l-4.61-2.3a2.5 2.5 0 1 1 0-3.1l4.61-2.3A2.5 2.5 0 0 1 12 5.5ZM14.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0 9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM4 10a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const ShareCloseTrayFilled = /*#__PURE__*/createFluentIcon('ShareCloseTrayFilled', \"1em\", [\"M4 16a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4Zm6-10a.5.5 0 0 0-.5.5v5.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7l-1.65 1.64V6.5A.5.5 0 0 0 10 6Z\"]);\nexport const ShareCloseTrayRegular = /*#__PURE__*/createFluentIcon('ShareCloseTrayRegular', \"1em\", [\"M10 6a.5.5 0 0 0-.5.5v5.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7l-1.65 1.64V6.5A.5.5 0 0 0 10 6Zm-8 8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8Zm2 1a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4Z\"]);\nexport const ShareIosFilled = /*#__PURE__*/createFluentIcon('ShareIosFilled', \"1em\", [\"M15.75 9.25c.38 0 .7.28.74.65l.01.1v5.25A2.75 2.75 0 0 1 13.92 18H6.25a2.75 2.75 0 0 1-2.74-2.58l-.01-.17V10A.75.75 0 0 1 5 9.9v5.35c0 .65.5 1.18 1.12 1.24l.13.01h7.5c.65 0 1.18-.5 1.24-1.12l.01-.13V10c0-.41.34-.75.75-.75ZM5.23 6.46l4.24-4.24a.75.75 0 0 1 .98-.07l.08.07 4.24 4.24a.75.75 0 0 1-.97 1.14l-.09-.08-2.96-2.96v7.69c0 .38-.28.7-.65.74L10 13a.75.75 0 0 1-.74-.65l-.01-.1V4.56L6.29 7.52a.75.75 0 0 1-.98.08l-.08-.08a.75.75 0 0 1-.08-.97l.08-.09 4.24-4.24-4.24 4.24Z\"]);\nexport const ShareIosRegular = /*#__PURE__*/createFluentIcon('ShareIosRegular', \"1em\", [\"M16 9.5a.5.5 0 0 1 .5.41V16a2.5 2.5 0 0 1-2.34 2.5H6a2.5 2.5 0 0 1-2.5-2.34V10a.5.5 0 0 1 1-.09V16c0 .78.6 1.42 1.36 1.5H14c.78 0 1.42-.6 1.5-1.36V10c0-.28.22-.5.5-.5ZM5.4 6.39l4.25-4.24a.5.5 0 0 1 .63-.06l.07.06 4.25 4.24a.5.5 0 0 1-.64.76l-.07-.05-3.39-3.4V13a.5.5 0 0 1-.41.5H10a.5.5 0 0 1-.5-.41V3.7L6.11 7.1a.5.5 0 0 1-.64.05L5.4 7.1a.5.5 0 0 1-.05-.64l.05-.07 4.25-4.24L5.4 6.39Z\"]);\nexport const ShareScreenPersonFilled = /*#__PURE__*/createFluentIcon('ShareScreenPersonFilled', \"1em\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6.05a2.5 2.5 0 0 1 2.22-1.99A2.99 2.99 0 0 1 15.5 9a3 3 0 0 1 2.5 1.34V7a3 3 0 0 0-3-3H5Zm12.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonRegular = /*#__PURE__*/createFluentIcon('ShareScreenPersonRegular', \"1em\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h6.3c.07-.37.23-.7.45-1H4.75C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V9.4c.4.23.74.56 1 .94V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm12.75 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonOverlayFilled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayFilled', \"1em\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v3.34a3 3 0 1 0-4.73 3.67c-1.1.1-2 .92-2.22 1.99H5a3 3 0 0 1-3-3V7Zm2 0v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Zm13.5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonOverlayRegular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.6c-.26-.4-.6-.72-1-.95V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h6.75c-.22.3-.38.63-.45 1h-6.3A2.75 2.75 0 0 1 2 13.25v-6.5ZM15.5 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5ZM5 6a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z\"]);\nexport const ShareScreenPersonOverlayInsideFilled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInsideFilled', \"1em\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm10 1.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM12 10a1 1 0 0 0-1 1v1c0 1.1.9 2 2 2h1a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1h-3Z\"]);\nexport const ShareScreenPersonOverlayInsideRegular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInsideRegular', \"1em\", [\"M13.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM11 11a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-1ZM5 6a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm-.25-2A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H4.75C3.78 15 3 14.22 3 13.25v-6.5Z\"]);\nexport const ShareScreenPersonPFilled = /*#__PURE__*/createFluentIcon('ShareScreenPersonPFilled', \"1em\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v3.34a3 3 0 1 0-4.73 3.67c-1.1.1-2 .92-2.22 1.99H5a3 3 0 0 1-3-3V7Zm4 .5v5a.5.5 0 0 0 1 0V11h1a2 2 0 1 0 0-4H6.5a.5.5 0 0 0-.5.5ZM7 10h1a1 1 0 0 0 0-2H7v2Zm10.5 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonPRegular = /*#__PURE__*/createFluentIcon('ShareScreenPersonPRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.6c-.26-.4-.6-.72-1-.95V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h6.75c-.22.3-.38.63-.45 1h-6.3A2.75 2.75 0 0 1 2 13.25v-6.5ZM15.5 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Zm-9-12a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0V11h1a2 2 0 1 0 0-4H6.5ZM8 10H7V8h1a1 1 0 0 1 0 2Z\"]);\nexport const ShareScreenStartFilled = /*#__PURE__*/createFluentIcon('ShareScreenStartFilled', \"1em\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm6 10a.5.5 0 0 1-.5-.5V7.7L7.85 9.36a.5.5 0 1 1-.7-.7l2.5-2.5c.2-.2.5-.2.7 0l2.5 2.5a.5.5 0 0 1-.7.7L10.5 7.71v5.79a.5.5 0 0 1-.5.5Z\"]);\nexport const ShareScreenStartRegular = /*#__PURE__*/createFluentIcon('ShareScreenStartRegular', \"1em\", [\"M10 14a.5.5 0 0 1-.5-.5V7.7L7.85 9.36a.5.5 0 1 1-.7-.7l2.5-2.5c.2-.2.5-.2.7 0l2.5 2.5a.5.5 0 0 1-.7.7L10.5 7.71v5.79a.5.5 0 0 1-.5.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const ShareScreenStopFilled = /*#__PURE__*/createFluentIcon('ShareScreenStopFilled', \"1em\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11Zm2.65 3.15c.2-.2.5-.2.7 0L10 9.29l2.15-2.14a.5.5 0 0 1 .7.7L10.71 10l2.14 2.15a.5.5 0 0 1-.7.7L10 10.71l-2.15 2.14a.5.5 0 0 1-.7-.7L9.29 10 7.15 7.85a.5.5 0 0 1 0-.7Z\"]);\nexport const ShareScreenStopRegular = /*#__PURE__*/createFluentIcon('ShareScreenStopRegular', \"1em\", [\"M7.15 7.15c.2-.2.5-.2.7 0L10 9.29l2.15-2.14a.5.5 0 0 1 .7.7L10.71 10l2.14 2.15a.5.5 0 0 1-.7.7L10 10.71l-2.15 2.14a.5.5 0 0 1-.7-.7L9.29 10 7.15 7.85a.5.5 0 0 1 0-.7ZM2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const ShieldFilled = /*#__PURE__*/createFluentIcon('ShieldFilled', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Z\"]);\nexport const ShieldRegular = /*#__PURE__*/createFluentIcon('ShieldRegular', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Z\"]);\nexport const ShieldAddFilled = /*#__PURE__*/createFluentIcon('ShieldAddFilled', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6a5.5 5.5 0 0 0-6.78 8.35l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldAddRegular = /*#__PURE__*/createFluentIcon('ShieldAddRegular', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6c-.32-.16-.65-.3-1-.4V5.44a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.24 1.8 5.64 5.48 7.25.2.43.44.84.74 1.2l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldBadgeFilled = /*#__PURE__*/createFluentIcon('ShieldBadgeFilled', \"1em\", [\"M4 5a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h6V9c3.23 0 3.75-.83 4.11-1.43.2-.32.36-.57.89-.57s.69.25.89.57c.2.32.43.7 1.11 1V7a2 2 0 0 0-2-2H4Zm10.53 3.83v.02a1.63 1.63 0 0 1-.45.5c-.4.3-1.17.65-2.58.65a.5.5 0 0 0-.5.5v2c0 1.03.13 2.14.7 3.12.56 1 1.55 1.82 3.14 2.35.1.04.22.04.32 0a5.35 5.35 0 0 0 3.15-2.35c.56-.98.69-2.09.69-3.12v-2a.5.5 0 0 0-.5-.5c-1.41 0-2.18-.35-2.57-.65a1.63 1.63 0 0 1-.46-.52.5.5 0 0 0-.94 0Zm.94 0v.01Zm-.94 0v.01Z\"]);\nexport const ShieldBadgeRegular = /*#__PURE__*/createFluentIcon('ShieldBadgeRegular', \"1em\", [\"M2 7c0-1.1.9-2 2-2h11a2 2 0 0 1 2 2v1.57a2.11 2.11 0 0 1-1-.82V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6v1H4a2 2 0 0 1-2-2V7Zm12.53 1.83a.5.5 0 0 1 .95.02 1.63 1.63 0 0 0 .45.5c.4.3 1.16.65 2.57.65.28 0 .5.22.5.5v2c0 1.03-.13 2.14-.7 3.12a5.35 5.35 0 0 1-3.14 2.35.5.5 0 0 1-.32 0 5.35 5.35 0 0 1-3.15-2.35A6.19 6.19 0 0 1 11 12.5v-2a.5.5 0 0 1 .5-.5c1.41 0 2.18-.35 2.57-.65a1.63 1.63 0 0 0 .46-.52Zm.94 0v.01Zm0 0Zm-.94 0v.01Zm.15 1.32c-.54.4-1.38.76-2.68.84v1.51c0 .97.12 1.86.56 2.63A4.27 4.27 0 0 0 15 16.97a4.27 4.27 0 0 0 2.44-1.84c.44-.77.56-1.66.56-2.63v-1.51a4.81 4.81 0 0 1-2.68-.84L15 9.87c-.1.09-.2.19-.32.28Zm-.15-1.32\"]);\nexport const ShieldCheckmarkFilled = /*#__PURE__*/createFluentIcon('ShieldCheckmarkFilled', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6a5.5 5.5 0 0 0-6.78 8.35l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-2.15-1.85c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 2.65-2.64c.2-.2.5-.2.7 0Z\"]);\nexport const ShieldCheckmarkRegular = /*#__PURE__*/createFluentIcon('ShieldCheckmarkRegular', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6c-.32-.16-.65-.3-1-.4V5.44a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.24 1.8 5.64 5.48 7.25.2.43.44.84.74 1.2l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldDismissFilled = /*#__PURE__*/createFluentIcon('ShieldDismissFilled', \"1em\", [\"M10.28 2.08c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42.5.5 0 0 1 .55 0ZM8.03 6.97a.75.75 0 0 0-1.06 1.06L8.94 10l-1.97 1.97a.75.75 0 1 0 1.06 1.06L10 11.06l1.97 1.97a.75.75 0 1 0 1.06-1.06L11.06 10l1.97-1.97a.75.75 0 0 0-1.06-1.06L10 8.94 8.03 6.97Z\"]);\nexport const ShieldDismissRegular = /*#__PURE__*/createFluentIcon('ShieldDismissRegular', \"1em\", [\"M7.85 7.15a.5.5 0 1 0-.7.7L9.29 10l-2.14 2.15a.5.5 0 0 0 .7.7L10 10.71l2.15 2.14a.5.5 0 0 0 .7-.7L10.71 10l2.14-2.15a.5.5 0 0 0-.7-.7L10 9.29 7.85 7.15Zm2.43-5.07a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldDismissShieldFilled = /*#__PURE__*/createFluentIcon('ShieldDismissShieldFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0c.34-.14.68-.27 1-.42a5.82 5.82 0 0 1-.66-1.16 7.05 7.05 0 0 1-.52-2.5V11.05l-1.97 1.97a.75.75 0 0 1-1.06-1.06L8.94 10 6.97 8.03a.75.75 0 0 1 1.06-1.06L10 8.94l1.97-1.97a.75.75 0 1 1 1.06 1.06l-1.64 1.64h.01c.9 0 1.76-.37 2.6-1.24a1.39 1.39 0 0 1 2 0 5.06 5.06 0 0 0 1 .8V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM17 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 13 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0 2.56-.89 3.87-2.71 3.87-5.4V11a.4.4 0 0 0-.4-.33 4.24 4.24 0 0 1-1.6-.32Z\"]);\nexport const ShieldDismissShieldRegular = /*#__PURE__*/createFluentIcon('ShieldDismissShieldRegular', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0c.34-.14.68-.27 1-.42-.2-.27-.38-.56-.52-.86-.21.1-.43.18-.66.27-4.03-1.6-6-4.07-6-7.46V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43v3a5.06 5.06 0 0 0 1 .8V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm-.24 8.67c.11-.47.46-.87.94-1.02l1.87-1.88a.5.5 0 0 0-.7-.7L10 9.29 7.85 7.15a.5.5 0 1 0-.7.7L9.29 10l-2.14 2.15a.5.5 0 0 0 .7.7L10 10.71l.04.04Zm6.96-.4a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 13 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0 2.56-.89 3.87-2.71 3.87-5.4V11a.4.4 0 0 0-.4-.33 4.24 4.24 0 0 1-1.6-.32Z\"]);\nexport const ShieldErrorFilled = /*#__PURE__*/createFluentIcon('ShieldErrorFilled', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM10 6a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5A.5.5 0 0 0 10 6Zm0 8.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const ShieldErrorRegular = /*#__PURE__*/createFluentIcon('ShieldErrorRegular', \"1em\", [\"M10 6c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5Zm0 8.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Z\"]);\nexport const ShieldGlobeFilled = /*#__PURE__*/createFluentIcon('ShieldGlobeFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm2.68 8.42a3 3 0 0 1-1.43 2.08c.24-.57.4-1.3.45-2.08h.98Zm0-1a3 3 0 0 0-1.43-2.08c.24.57.4 1.3.45 2.08h.98Zm-1.98 0a5.13 5.13 0 0 0-.46-1.88 1.72 1.72 0 0 0-.39-.54.43.43 0 0 0-.12-.08.03.03 0 0 0-.02 0h-.01a.43.43 0 0 0-.11.08c-.11.09-.25.26-.39.54-.23.46-.4 1.11-.46 1.88h1.96Zm-1.96 1c.05.77.23 1.42.46 1.88.14.28.28.45.39.54a.42.42 0 0 0 .12.08.03.03 0 0 0 .02 0h.01c.02-.01.06-.03.11-.08.11-.09.25-.26.39-.54.23-.46.4-1.11.46-1.88H9.02Zm-1 0c.04.79.2 1.5.45 2.08a3 3 0 0 1-1.43-2.08h.98Zm0-1c.04-.79.2-1.5.45-2.08A3 3 0 0 0 7.04 9.5h.98ZM14 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const ShieldGlobeRegular = /*#__PURE__*/createFluentIcon('ShieldGlobeRegular', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Zm8.96 5.07h-.98c-.04.79-.2 1.5-.45 2.08a3 3 0 0 0 1.43-2.08Zm0-1a3 3 0 0 0-1.43-2.08c.24.57.4 1.3.45 2.08h.98Zm-1.98 0a5.13 5.13 0 0 0-.46-1.88 1.72 1.72 0 0 0-.39-.54.43.43 0 0 0-.12-.08.03.03 0 0 0-.02 0h-.01a.43.43 0 0 0-.11.08c-.11.09-.25.26-.39.54-.23.46-.4 1.11-.46 1.88h1.96Zm-1.96 1c.05.77.23 1.42.46 1.88.14.28.28.45.39.54a.42.42 0 0 0 .12.08.03.03 0 0 0 .02 0h.01c.02-.01.06-.03.11-.08.11-.09.25-.26.39-.54.23-.46.4-1.11.46-1.88H9.02Zm-1 0h-.98a3 3 0 0 0 1.43 2.08c-.24-.57-.4-1.3-.45-2.08Zm0-1c.04-.79.2-1.5.45-2.08A3 3 0 0 0 7.04 9.5h.98ZM14 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const ShieldKeyholeFilled = /*#__PURE__*/createFluentIcon('ShieldKeyholeFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM11.5 9c0 .65-.42 1.2-1 1.41v2.09a.5.5 0 0 1-1 0v-2.09a1.5 1.5 0 1 1 2-1.41Z\"]);\nexport const ShieldKeyholeRegular = /*#__PURE__*/createFluentIcon('ShieldKeyholeRegular', \"1em\", [\"M11.5 9c0 .65-.42 1.2-1 1.41v2.09a.5.5 0 0 1-1 0v-2.09a1.5 1.5 0 1 1 2-1.41Zm-1.22-6.92a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldLockFilled = /*#__PURE__*/createFluentIcon('ShieldLockFilled', \"1em\", [\"M12.5 12v-1a2 2 0 1 1 4 0v1h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h.5Zm1-1v1h2v-1a1 1 0 1 0-2 0Zm1.75 4a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.34A3 3 0 0 0 11.5 11v.06A2 2 0 0 0 10 13v4a2 2 0 0 0 .24.94l-.06.03a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Z\"]);\nexport const ShieldLockRegular = /*#__PURE__*/createFluentIcon('ShieldLockRegular', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.34c-.26-.38-.6-.7-1-.94V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46V17a2 2 0 0 0 .24.94l-.06.03a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM12.5 12v-1a2 2 0 1 1 4 0v1h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h.5Zm1-1v1h2v-1a1 1 0 1 0-2 0Zm1.75 4a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ShieldPersonFilled = /*#__PURE__*/createFluentIcon('ShieldPersonFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM10 9.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 5c-2.5 0-3.5-1.25-3.5-2.5 0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5 0 1.24-1 2.5-3.5 2.5Z\"]);\nexport const ShieldPersonRegular = /*#__PURE__*/createFluentIcon('ShieldPersonRegular', \"1em\", [\"M10 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.26 3.5-2.5 0-.83-.67-1.5-1.5-1.5H8c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Zm.28-12.42a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldPersonAddFilled = /*#__PURE__*/createFluentIcon('ShieldPersonAddFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.04-.02A5.48 5.48 0 0 1 9 14.42c-1.77-.29-2.5-1.35-2.5-2.42 0-.83.67-1.5 1.5-1.5h2.73A5.48 5.48 0 0 1 17 9.6V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM10 9.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm9 5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldPersonAddRegular = /*#__PURE__*/createFluentIcon('ShieldPersonAddRegular', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.04-.02a5.5 5.5 0 0 1-.74-1.2C5.8 15.15 4 12.75 4 9.5V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.2c.35.1.68.23 1 .39V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM9 14.42a5.48 5.48 0 0 1 1.73-3.92H8c-.83 0-1.5.67-1.5 1.5 0 1.07.73 2.13 2.5 2.42Zm3-6.92a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7 7a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldProhibitedFilled = /*#__PURE__*/createFluentIcon('ShieldProhibitedFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.07-.03A5.5 5.5 0 1 1 17 9.26V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm.42 13.52 4.9-4.9a3.5 3.5 0 0 0-4.9 4.9Zm.7.7a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Zm2.1 1.7a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Z\"]);\nexport const ShieldProhibitedRegular = /*#__PURE__*/createFluentIcon('ShieldProhibitedRegular', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.07-.03c-.55-.4-1.02-.9-1.38-1.48C5.6 14.86 4 12.56 4 9.5V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V8.6c.36.18.7.4 1 .66V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm.42 13.52 4.9-4.9a3.5 3.5 0 0 0-4.9 4.9Zm.7.7a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Zm2.1 1.7a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Z\"]);\nexport const ShieldQuestionFilled = /*#__PURE__*/createFluentIcon('ShieldQuestionFilled', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Zm1.03 11.67a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-2-5.5a1.25 1.25 0 1 1 2.5 0c0 .46-.27.76-.73 1.22l-.03.03c-.42.42-.99.99-.99 1.9v.1a.5.5 0 0 0 1 0v-.1c0-.47.27-.77.73-1.22l.03-.04c.42-.41.99-.98.99-1.89a2.25 2.25 0 0 0-4.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldQuestionRegular = /*#__PURE__*/createFluentIcon('ShieldQuestionRegular', \"1em\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Zm1.15 10.4a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-2-5.5a1.25 1.25 0 1 1 2.5 0c0 .46-.27.76-.73 1.22l-.03.03c-.42.42-.99.99-.99 1.9v.1a.5.5 0 0 0 1 0v-.1c0-.47.27-.77.73-1.22l.03-.04c.42-.41.99-.98.99-1.89a2.25 2.25 0 0 0-4.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldTaskFilled = /*#__PURE__*/createFluentIcon('ShieldTaskFilled', \"1em\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm3.57 5.77-4 4a.5.5 0 0 1-.7 0l-2-2a.5.5 0 1 1 .7-.7l1.65 1.64 3.65-3.64a.5.5 0 0 1 .7.7Z\"]);\nexport const ShieldTaskRegular = /*#__PURE__*/createFluentIcon('ShieldTaskRegular', \"1em\", [\"M13.85 7.85a.5.5 0 0 0-.7-.7L9.5 10.79 7.85 9.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4Zm-3.57-5.77a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShiftsFilled = /*#__PURE__*/createFluentIcon('ShiftsFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm7 .5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5Z\"]);\nexport const ShiftsRegular = /*#__PURE__*/createFluentIcon('ShiftsRegular', \"1em\", [\"M10 6.5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const Shifts30MinutesFilled = /*#__PURE__*/createFluentIcon('Shifts30MinutesFilled', \"1em\", [\"M10 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM8 8a2 2 0 0 0-2 2v.5c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5V10a2 2 0 0 0-2-2H8Zm-2.5 5.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75 3.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.05-3.58c-.18.3-.3.77-.3 1.33s.12 1.03.3 1.33c.17.28.4.42.7.42.3 0 .53-.14.7-.42.18-.3.3-.77.3-1.33a2.6 2.6 0 0 0-.3-1.33c-.17-.28-.4-.42-.7-.42-.3 0-.53.14-.7.42Zm-.85-.52c.33-.53.85-.9 1.55-.9.7 0 1.22.37 1.55.9.32.5.45 1.17.45 1.85 0 .68-.13 1.34-.45 1.85-.33.53-.85.9-1.55.9-.7 0-1.22-.37-1.55-.9a3.58 3.58 0 0 1-.45-1.85c0-.68.13-1.34.45-1.85Zm-4.14.5c.46-.36.83-.43 1.08-.4.25.05.44.2.54.37.1.17.09.35 0 .48-.08.14-.32.35-.9.4a.5.5 0 0 0 0 1c.6.05.82.25.9.37.09.13.1.31 0 .5-.1.18-.3.33-.55.37-.25.04-.61-.02-1.07-.38a.5.5 0 1 0-.62.78c.62.5 1.26.68 1.85.6.57-.1 1.02-.45 1.26-.9a1.47 1.47 0 0 0-.33-1.85 1.47 1.47 0 0 0 .33-1.86c-.24-.44-.7-.78-1.27-.86a2.4 2.4 0 0 0-1.84.6.5.5 0 0 0 .62.78Z\"]);\nexport const Shifts30MinutesRegular = /*#__PURE__*/createFluentIcon('Shifts30MinutesRegular', \"1em\", [\"M8.5 4.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm-3 8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V10a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V10Zm-1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75 3.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.05-3.58c-.18.3-.3.77-.3 1.33s.12 1.03.3 1.33c.17.28.4.42.7.42.3 0 .53-.14.7-.42.18-.3.3-.77.3-1.33a2.6 2.6 0 0 0-.3-1.33c-.17-.28-.4-.42-.7-.42-.3 0-.53.14-.7.42Zm-.85-.52c.33-.53.85-.9 1.55-.9.7 0 1.22.37 1.55.9.32.5.45 1.17.45 1.85 0 .68-.13 1.34-.45 1.85-.33.53-.85.9-1.55.9-.7 0-1.22-.37-1.55-.9a3.58 3.58 0 0 1-.45-1.85c0-.68.13-1.34.45-1.85Zm-4.14.5c.46-.36.83-.43 1.08-.4.25.05.44.2.54.37.1.17.09.35 0 .48-.08.14-.32.35-.9.4a.5.5 0 0 0 0 1c.6.05.82.25.9.37.09.13.1.31 0 .5-.1.18-.3.33-.55.37-.25.04-.61-.02-1.07-.38a.5.5 0 1 0-.62.78c.62.5 1.26.68 1.85.6.57-.1 1.02-.45 1.26-.9a1.47 1.47 0 0 0-.33-1.85 1.47 1.47 0 0 0 .33-1.86c-.24-.44-.7-.78-1.27-.86a2.4 2.4 0 0 0-1.84.6.5.5 0 0 0 .62.78Z\"]);\nexport const ShiftsActivityFilled = /*#__PURE__*/createFluentIcon('ShiftsActivityFilled', \"1em\", [\"M10 2.7a.75.75 0 0 1-.67.83 6.5 6.5 0 1 0 7.14 7.14.75.75 0 1 1 1.5.16 8 8 0 1 1-8.8-8.8c.42-.04.79.26.83.68Zm1.02-.06c.1-.4.5-.65.9-.55.38.09.75.2 1.1.35a.75.75 0 0 1-.55 1.39 6.55 6.55 0 0 0-.9-.29.75.75 0 0 1-.55-.9Zm6.54 4.33a.75.75 0 0 0-1.39.56c.12.29.21.59.28.9a.75.75 0 1 0 1.46-.35c-.09-.38-.2-.75-.35-1.1ZM14.3 3.93a.75.75 0 0 1 1.06-.08c.3.27.6.56.86.87a.75.75 0 0 1-1.15.97 6.65 6.65 0 0 0-.7-.7.75.75 0 0 1-.07-1.06ZM10 5.75a.75.75 0 0 0-1.5 0v5c0 .41.34.75.75.75h3a.75.75 0 1 0 0-1.5H10V5.75Z\"]);\nexport const ShiftsActivityRegular = /*#__PURE__*/createFluentIcon('ShiftsActivityRegular', \"1em\", [\"M10 2.48a.5.5 0 0 1-.46.53 7 7 0 1 0 7.45 7.45.5.5 0 1 1 1 .07 8 8 0 1 1-8.52-8.51.5.5 0 0 1 .53.46Zm1 .07a.5.5 0 0 1 .6-.4c.56.12 1.1.3 1.6.52a.5.5 0 1 1-.4.91c-.44-.2-.91-.34-1.4-.44a.5.5 0 0 1-.4-.59Zm6.34 4.25a.5.5 0 1 0-.92.4c.2.45.34.91.44 1.4a.5.5 0 0 0 .98-.2 7.95 7.95 0 0 0-.5-1.6ZM14.4 3.92a.5.5 0 0 1 .7-.07c.4.33.75.69 1.08 1.08a.5.5 0 1 1-.78.63c-.28-.34-.6-.66-.93-.94a.5.5 0 0 1-.07-.7ZM10 5.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h3a.5.5 0 1 0 0-1H10V5.5Z\"]);\nexport const ShiftsAddFilled = /*#__PURE__*/createFluentIcon('ShiftsAddFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v3.6a5.5 5.5 0 0 1 7.4 7.4H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm4.5 3c.28 0 .5.22.5.5V9h1.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5Zm-.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ShiftsAddRegular = /*#__PURE__*/createFluentIcon('ShiftsAddRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm-.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H6v1.5a.5.5 0 0 1-1 0V15H3.5a.5.5 0 0 1 0-1H5v-1.5c0-.28.22-.5.5-.5ZM11 6.5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Z\"]);\nexport const ShiftsAvailabilityFilled = /*#__PURE__*/createFluentIcon('ShiftsAvailabilityFilled', \"1em\", [\"M6 12.92A7 7 0 0 1 12.92 6 6 6 0 1 0 6 12.92Zm3.35-8.27c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 1 1 .7-.7L6 7.29l2.65-2.64c.2-.2.5-.2.7 0ZM13 19a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm-1.65-8.35L13 12.29l1.65-1.64a.5.5 0 0 1 .7.7L13.71 13l1.64 1.65a.5.5 0 0 1-.7.7L13 13.71l-1.65 1.64a.5.5 0 0 1-.7-.7L12.29 13l-1.64-1.65a.5.5 0 0 1 .7-.7Z\"]);\nexport const ShiftsAvailabilityRegular = /*#__PURE__*/createFluentIcon('ShiftsAvailabilityRegular', \"1em\", [\"M11.92 6.08a5 5 0 1 0-5.84 5.84c-.05.32-.08.66-.08 1A6 6 0 1 1 12.92 6c-.34 0-.68.03-1 .08Zm-.57 4.57a.5.5 0 0 0-.7.7L12.29 13l-1.64 1.65a.5.5 0 0 0 .7.7L13 13.71l1.65 1.64a.5.5 0 0 0 .7-.7L13.71 13l1.64-1.65a.5.5 0 0 0-.7-.7L13 12.29l-1.65-1.64ZM13 19a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-1a5 5 0 1 1 0-10 5 5 0 0 1 0 10ZM9.35 5.35a.5.5 0 1 0-.7-.7L6 7.29 4.85 6.15a.5.5 0 1 0-.7.7l1.5 1.5c.2.2.5.2.7 0l3-3Z\"]);\nexport const ShiftsCheckmarkFilled = /*#__PURE__*/createFluentIcon('ShiftsCheckmarkFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6a5.48 5.48 0 0 0-.66-6h2.76a.5.5 0 0 0 0-1H10V6.5a.5.5 0 0 0-1 0v3.76a5.48 5.48 0 0 0-6-.66V6Zm7 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsCheckmarkRegular = /*#__PURE__*/createFluentIcon('ShiftsCheckmarkRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm3 7.26c.27.22.52.47.74.74h2.76a.5.5 0 0 0 0-1H10V6.5a.5.5 0 0 0-1 0v3.76Zm1 4.24a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsDayFilled = /*#__PURE__*/createFluentIcon('ShiftsDayFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9Zm3.4 2.04a1.82 1.82 0 0 0-.34.5l-.03.08a.5.5 0 0 0 .94.34l.02-.05.13-.17c.12-.11.3-.24.65-.24.4 0 .64.23.75.54.1.33.03.72-.24.96-.15.15-.34.28-.58.44l-.04.02c-.22.15-.47.31-.7.51A2.52 2.52 0 0 0 6 12.5a.5.5 0 0 0 .5.5H9a.5.5 0 0 0 0-1H7.07c.1-.32.29-.56.54-.77.18-.15.39-.3.62-.44l.02-.02c.23-.15.5-.33.72-.54.58-.54.71-1.34.5-2A1.74 1.74 0 0 0 7.77 7c-.64 0-1.09.26-1.36.54ZM11.5 7a.5.5 0 0 0-.5.5V10a.5.5 0 0 0 .5.5H13v2a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v2h-1v-2a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShiftsDayRegular = /*#__PURE__*/createFluentIcon('ShiftsDayRegular', \"1em\", [\"M6.4 7.54c.28-.28.73-.54 1.37-.54.88 0 1.48.56 1.7 1.23.21.66.08 1.46-.5 2-.23.21-.49.39-.72.54l-.02.02c-.23.15-.44.29-.62.44a1.6 1.6 0 0 0-.54.77H9a.5.5 0 1 1 0 1H6.5a.5.5 0 0 1-.5-.5c0-.97.44-1.59.96-2.03.23-.2.48-.36.7-.5l.04-.03c.24-.16.43-.3.58-.44a.93.93 0 0 0 .24-.96.75.75 0 0 0-.75-.54.86.86 0 0 0-.65.24.82.82 0 0 0-.15.22.5.5 0 0 1-.94-.34l.03-.07.07-.14c.05-.1.15-.23.28-.37ZM11.5 7c.28 0 .5.22.5.5v2h1v-2a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-2h-1.5a.5.5 0 0 1-.5-.5V7.5c0-.28.22-.5.5-.5Zm-6-4A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-9ZM4 5.5C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 14.5v-9Z\"]);\nexport const ShiftsOpenFilled = /*#__PURE__*/createFluentIcon('ShiftsOpenFilled', \"1em\", [\"M4.5 5.75c0-.69.56-1.25 1.25-1.25H7.5a.75.75 0 0 0 0-1.5H5.75A2.75 2.75 0 0 0 3 5.75v8.5A2.75 2.75 0 0 0 5.75 17H7.5a.75.75 0 0 0 0-1.5H5.75c-.69 0-1.25-.56-1.25-1.25v-8.5Zm8-2.75a.75.75 0 0 0 0 1.5h1.75c.69 0 1.25.56 1.25 1.25v8.5c0 .69-.56 1.25-1.25 1.25H12.5a.75.75 0 0 0 0 1.5h1.75A2.75 2.75 0 0 0 17 14.25v-8.5A2.75 2.75 0 0 0 14.25 3H12.5Zm-2 2.75a.75.75 0 0 0-1.5 0v4.5c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5H10.5V5.75Z\"]);\nexport const ShiftsOpenRegular = /*#__PURE__*/createFluentIcon('ShiftsOpenRegular', \"1em\", [\"M4 5.5C4 4.67 4.67 4 5.5 4h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h2a.5.5 0 0 0 0-1h-2A1.5 1.5 0 0 1 4 14.5v-9ZM12.5 3a.5.5 0 0 0 0 1h2c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-2ZM10 5.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1H10V5.5Z\"]);\nexport const ShiftsProhibitedFilled = /*#__PURE__*/createFluentIcon('ShiftsProhibitedFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6A5.5 5.5 0 0 0 3 9.6V6Zm8 .5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Zm-10 8a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM5.5 18c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 5.5 18Z\"]);\nexport const ShiftsProhibitedRegular = /*#__PURE__*/createFluentIcon('ShiftsProhibitedRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6c.16-.32.3-.65.4-1H14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3.2c-.35.1-.68.24-1 .4V6Zm7.5 0c.28 0 .5.22.5.5V9h1.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM5.5 18c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 5.5 18Z\"]);\nexport const ShiftsQuestionMarkFilled = /*#__PURE__*/createFluentIcon('ShiftsQuestionMarkFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v3.6a5.5 5.5 0 0 1 7.4 7.4H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm4.5 3c.28 0 .5.22.5.5V9h2a.5.5 0 0 1 0 1h-2.5a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5Zm-.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 1 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const ShiftsQuestionMarkRegular = /*#__PURE__*/createFluentIcon('ShiftsQuestionMarkRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm5 3.5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Zm-1 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 1 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const ShiftsTeamFilled = /*#__PURE__*/createFluentIcon('ShiftsTeamFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.02l.02-.38c0-.91-.59-1.75-1.45-2.02a2.25 2.25 0 0 0-3.31-3.01A2.75 2.75 0 0 0 3 10.1V6Zm7 .5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5Zm-6.25 8a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5ZM4 19c2.14 0 3-1.1 3-2.19a1.3 1.3 0 0 0-1.29-1.31H2.3A1.3 1.3 0 0 0 1 16.81c0 1.1.86 2.19 3 2.19Zm3.5-.5h-.02c.35-.51.52-1.1.52-1.69 0-.48-.15-.93-.4-1.31h1.33c.6 0 1.07.5 1.07 1.13 0 .93-.71 1.87-2.5 1.87Zm.25-4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const ShiftsTeamRegular = /*#__PURE__*/createFluentIcon('ShiftsTeamRegular', \"1em\", [\"M10 6.5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5ZM6 3a3 3 0 0 0-3 3v4.1a2.75 2.75 0 0 1 1-.09V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.1a2.16 2.16 0 0 1 .08 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM3.75 14.5a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5ZM4 19c2.14 0 3-1.1 3-2.19a1.3 1.3 0 0 0-1.29-1.31H2.3A1.3 1.3 0 0 0 1 16.81c0 1.1.86 2.19 3 2.19Zm3.5-.5h-.02c.35-.51.52-1.1.52-1.69 0-.48-.15-.93-.4-1.31h1.33c.6 0 1.07.5 1.07 1.13 0 .93-.71 1.87-2.5 1.87Zm.25-4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const ShoppingBagFilled = /*#__PURE__*/createFluentIcon('ShoppingBagFilled', \"1em\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v8a2.95 2.95 0 0 1-1.47 2.58l-.59-.26-.5-.22-.2-.11-.23-.17-.24-.21-.27-.29A2 2 0 0 1 12 15V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V15a2.95 2.95 0 0 0 .77 2l.3.33.31.27.31.23.31.17H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm1 0h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Z\"]);\nexport const ShoppingBagRegular = /*#__PURE__*/createFluentIcon('ShoppingBagRegular', \"1em\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h6.5a2.5 2.5 0 0 0 2.5-2.5V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM7 17a2 2 0 0 1-2-2V7h6v8.5c0 .56.19 1.08.5 1.5H7Zm8-1.5a1.5 1.5 0 0 1-3 0V7h3v8.5Z\"]);\nexport const ShoppingBagArrowLeftFilled = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeftFilled', \"1em\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const ShoppingBagArrowLeftRegular = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeftRegular', \"1em\", [\"M15 6a1 1 0 0 1 1 1v2.2c-.32-.08-.66-.15-1-.18V7h-3v2.6c-.36.18-.7.4-1 .66V7H5v8a1.98 1.98 0 0 0 1.23 1.84c.24.1.5.16.77.16h2.6c.18.36.4.7.66 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1Zm-2-1.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V6h2V4.5ZM7 6h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Zm7.5 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-2.36-4.85 2-2a.5.5 0 0 1 .71.7L13.71 14h2.79a.5.5 0 0 1 0 1h-2.8l1.15 1.15a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1-.15-.35.5.5 0 0 1 .14-.35Z\"]);\nexport const ShoppingBagDismissFilled = /*#__PURE__*/createFluentIcon('ShoppingBagDismissFilled', \"1em\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const ShoppingBagDismissRegular = /*#__PURE__*/createFluentIcon('ShoppingBagDismissRegular', \"1em\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h3.26a5.5 5.5 0 0 1-.66-1H7a2 2 0 0 1-2-2V7h6v3.26c.3-.26.64-.48 1-.66V7h3v2.02c.34.03.68.1 1 .19V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const ShoppingBagPauseFilled = /*#__PURE__*/createFluentIcon('ShoppingBagPauseFilled', \"1em\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM13 12a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPauseRegular = /*#__PURE__*/createFluentIcon('ShoppingBagPauseRegular', \"1em\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h3.26a5.5 5.5 0 0 1-.66-1H7a2 2 0 0 1-2-2V7h6v3.26c.3-.26.64-.48 1-.66V7h3v2.02c.34.03.68.1 1 .19V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM13 12a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPercentFilled = /*#__PURE__*/createFluentIcon('ShoppingBagPercentFilled', \"1em\", [\"M6 4.5V6H5a1 1 0 0 0-1 1v8a2.93 2.93 0 0 0 .88 2.13A3 3 0 0 0 7 18h3.09a1.5 1.5 0 0 1 .35-1.56l.56-.56v-1.05a3 3 0 0 1 0-5.66V4.5a2.48 2.48 0 0 0-.33-1.24 1.48 1.48 0 0 1 2.21.66c.08.18.12.37.12.58V6h-1v3a3 3 0 0 1 3 2.88l1-1V7a1 1 0 0 0-1-1h-1V4.5a2.48 2.48 0 0 0-4-2A2.54 2.54 0 0 0 8.5 2a2.42 2.42 0 0 0-1.77.73A2.43 2.43 0 0 0 6 4.5Zm4 0V6H7V4.5a1.48 1.48 0 0 1 .91-1.38 1.48 1.48 0 0 1 1.97.8c.08.18.12.37.12.58Zm2 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.85-4.15a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 .7.7l6-6Z\"]);\nexport const ShoppingBagPercentRegular = /*#__PURE__*/createFluentIcon('ShoppingBagPercentRegular', \"1em\", [\"M8.5 2c.56 0 1.08.19 1.5.5a2.5 2.5 0 0 1 4 2V6h1a1 1 0 0 1 1 1v3.88l-1 1V7h-3v2a3 3 0 0 0-1 .17V7H5v8c0 1.1.9 2 2 2h3.09a1.5 1.5 0 0 0 0 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5A2.5 2.5 0 0 1 8.5 2Zm0 1C7.67 3 7 3.67 7 4.5V6h3V4.5C10 3.67 9.33 3 8.5 3Zm3 0c-.3 0-.6.1-.83.25.2.37.33.8.33 1.25V6h2V4.5c0-.83-.67-1.5-1.5-1.5Zm.5 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.85-4.15a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 .7.7l6-6Z\"]);\nexport const ShoppingBagPlayFilled = /*#__PURE__*/createFluentIcon('ShoppingBagPlayFilled', \"1em\", [\"M6 4.5V6H5a1 1 0 0 0-1 1v8a2.93 2.93 0 0 0 .88 2.13A3 3 0 0 0 7 18h3.26a5.48 5.48 0 0 1 .74-7.74V4.5a2.48 2.48 0 0 0-.33-1.24 1.48 1.48 0 0 1 2.21.66c.08.18.12.37.12.58V6h-1v3.6a5.48 5.48 0 0 1 4-.4V7a1 1 0 0 0-1-1h-1V4.5a2.48 2.48 0 0 0-4-2A2.54 2.54 0 0 0 8.5 2a2.42 2.42 0 0 0-1.77.73A2.43 2.43 0 0 0 6 4.5ZM10 6H7V4.5a1.48 1.48 0 0 1 .91-1.38 1.48 1.48 0 0 1 1.97.8c.08.18.12.37.12.58V6Zm4.5 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.74-6.55c.1 0 .18.03.26.08l2.3 1.51c.07.05.12.1.16.18a.54.54 0 0 1-.03.54.46.46 0 0 1-.13.13l-2.3 1.57a.54.54 0 0 1-.12.06.45.45 0 0 1-.32-.02.57.57 0 0 1-.16-.1.5.5 0 0 1-.14-.36v-3.08a.51.51 0 0 1 .3-.46.44.44 0 0 1 .18-.05Z\"]);\nexport const ShoppingBagPlayRegular = /*#__PURE__*/createFluentIcon('ShoppingBagPlayRegular', \"1em\", [\"M15 6a1 1 0 0 1 1 1v2.2c-.32-.08-.66-.15-1-.18V7h-3v2.6c-.36.18-.7.4-1 .66V7H5v8a1.98 1.98 0 0 0 1.23 1.84c.24.1.5.16.77.16h2.6c.18.36.4.7.66 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1Zm-2-1.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V6h2V4.5ZM7 6h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Zm12 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.98-1.97a.45.45 0 0 0-.45-.03.5.5 0 0 0-.15.1.51.51 0 0 0-.14.36v3.08a.5.5 0 0 0 .14.35.45.45 0 0 0 .52.12.54.54 0 0 0 .09-.05l2.3-1.57a.46.46 0 0 0 .16-.18.54.54 0 0 0 0-.49.49.49 0 0 0-.17-.18l-2.3-1.5Z\"]);\nexport const ShoppingBagTagFilled = /*#__PURE__*/createFluentIcon('ShoppingBagTagFilled', \"1em\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.6a2.5 2.5 0 0 0-1.62-.6H12V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v4.55c-1.14.24-2 1.25-2 2.46v2.88c0 .66.26 1.29.72 1.76L11.53 18H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm.43 9.45a1.51 1.51 0 0 1-.43-1.06v-2.88c0-.83.68-1.51 1.51-1.51h2.87c.4 0 .8.16 1.07.45l3.11 3.14c.6.6.58 1.57-.02 2.15l-2.95 2.84a1.5 1.5 0 0 1-2.12-.03l-3.04-3.1Zm1.57-2.7a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z\"]);\nexport const ShoppingBagTagRegular = /*#__PURE__*/createFluentIcon('ShoppingBagTagRegular', \"1em\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h4.53l-.98-1H7a2 2 0 0 1-2-2V7h6v2.05c.16-.03.34-.05.51-.05H12V7h3v2.08c.37.09.7.27 1 .51V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25Zm-.24 12.2a1.51 1.51 0 0 1-.43-1.06v-2.88c0-.83.68-1.51 1.51-1.51h2.87c.4 0 .8.16 1.07.45l3.11 3.14c.6.6.58 1.57-.02 2.15l-2.95 2.84a1.5 1.5 0 0 1-2.12-.03l-3.04-3.1Zm1.57-2.7a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z\"]);\nexport const ShortpickFilled = /*#__PURE__*/createFluentIcon('ShortpickFilled', \"1em\", [\"M7 2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h.5a.5.5 0 0 0 0-1H7V3h.5a.5.5 0 0 0 0-1H7Zm2.5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5v2h-.5a.5.5 0 0 0 0 1h.5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-.5Zm-3 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm-5 2c.28 0 .5.22.5.5v8c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-8a.5.5 0 0 1 1 0v8a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 4 15.5v-8c0-.28.22-.5.5-.5ZM7 12a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H7ZM6 8a1 1 0 0 1 1-1h.5a.5.5 0 0 1 0 1H7v2h.5a.5.5 0 0 1 0 1H7a1 1 0 0 1-1-1V8Zm3-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm3 0c0-.28.22-.5.5-.5h.5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.5a.5.5 0 0 1 0-1h.5V8h-.5a.5.5 0 0 1-.5-.5Zm-3 3c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const ShortpickRegular = /*#__PURE__*/createFluentIcon('ShortpickRegular', \"1em\", [\"M7 2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h.5a.5.5 0 0 0 0-1H7V3h.5a.5.5 0 0 0 0-1H7Zm2.5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5v2h-.5a.5.5 0 0 0 0 1h.5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-.5Zm-3 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM5 7.5a.5.5 0 0 0-1 0v8A2.5 2.5 0 0 0 6.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-8a.5.5 0 0 0-1 0v8c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5v-8ZM7 12a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H7Zm0 1h6v2H7v-2ZM6 8a1 1 0 0 1 1-1h.5a.5.5 0 0 1 0 1H7v2h.5a.5.5 0 0 1 0 1H7a1 1 0 0 1-1-1V8Zm3-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm3 0c0-.28.22-.5.5-.5h.5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.5a.5.5 0 0 1 0-1h.5V8h-.5a.5.5 0 0 1-.5-.5Zm-3 3c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const ShowerheadFilled = /*#__PURE__*/createFluentIcon('ShowerheadFilled', \"1em\", [\"m15.48 2.42-1.7 1.7a7.03 7.03 0 0 1 2.06 2.02l1.68-1.68a1.44 1.44 0 1 0-2.04-2.04ZM4.85 11.85a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 .7.7l2-2Zm2 2a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 .7.7l2-2Zm2 1.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Zm4.86-.8a1.46 1.46 0 0 0-.18-.22L5.87 6.47a1.45 1.45 0 0 0-2.05 2.05l7.66 7.66a1.45 1.45 0 0 0 2.23-1.82ZM6.58 5.78a2.46 2.46 0 0 0-.45-.36 6 6 0 0 1 8.46 8.46c-.1-.16-.22-.3-.35-.44L6.58 5.77Z\"]);\nexport const ShowerheadRegular = /*#__PURE__*/createFluentIcon('ShowerheadRegular', \"1em\", [\"M17.43 2.57a1.94 1.94 0 0 0-2.74 0L12.65 4.6v.01a6 6 0 0 0-6.76 1.02 1.91 1.91 0 0 0-1.74 3.22l7 7a1.91 1.91 0 0 0 3.23-1.74 6 6 0 0 0 1.01-6.76l2.04-2.03c.76-.76.76-2 0-2.75Zm-2.57 3.9a6.05 6.05 0 0 0-1.34-1.33l1.88-1.86a.94.94 0 1 1 1.33 1.33l-1.87 1.87Zm-8.02-.34a5 5 0 0 1 7.03 7.03l-.01-.01-7-7-.02-.02Zm-.72.7 7.05 7.05a.91.91 0 0 1-1.31 1.27l-7-7a.91.91 0 0 1 1.26-1.32Zm.73 6.32c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Zm-2-1.3a.5.5 0 1 0-.7-.7l-2 2a.5.5 0 1 0 .7.7l2-2Zm4 3.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Z\"]);\nexport const SidebarSearchLtrFilled = /*#__PURE__*/createFluentIcon('SidebarSearchLtrFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-2.59a1.5 1.5 0 0 0-.35-.56l-2-2A4.49 4.49 0 0 0 5.5 8c-.93 0-1.78.28-2.5.76V5.5Zm10 1v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-1 0Zm-4 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L7.6 15.3A3.5 3.5 0 1 1 9 12.5Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SidebarSearchLtrRegular = /*#__PURE__*/createFluentIcon('SidebarSearchLtrRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-2.59a1.5 1.5 0 0 0-.35-.56l-.44-.44h3.38c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v2.76c-.36.12-.7.3-1 .5V5.5Zm5.3 9.1a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 0 0 .7-.7L8.3 14.6Zm-2.8.4a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm8-9a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-.5-.5Z\"]);\nexport const SidebarSearchRtlFilled = /*#__PURE__*/createFluentIcon('SidebarSearchRtlFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v7a4.5 4.5 0 1 0-4.5 4.5h-7A2.5 2.5 0 0 1 3 14.5v-9Zm3 1v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-1 0Zm10 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L14.6 15.3a3.5 3.5 0 1 1 1.4-2.8Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SidebarSearchRtlRegular = /*#__PURE__*/createFluentIcon('SidebarSearchRtlRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v7c0-1.07-.37-2.06-1-2.83V5.5c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h4.17c.77.63 1.76 1 2.83 1h-7A2.5 2.5 0 0 1 3 14.5v-9Zm3 1a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0v-7Zm10 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L14.6 15.3a3.5 3.5 0 1 1 1.4-2.8Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SignOutFilled = /*#__PURE__*/createFluentIcon('SignOutFilled', \"1em\", [\"M11 3.5a.5.5 0 0 0-.58-.5l-7 1.08a.5.5 0 0 0-.42.49v10.86c0 .25.18.46.42.5l7 1.07a.5.5 0 0 0 .58-.5V10h5.17l-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 1 0-.65.76l1 .87H11V3.5Zm-2.5 7.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm4 4.75H12v-5h1v4.5a.5.5 0 0 1-.5.5ZM12 8V4h.5c.28 0 .5.22.5.5V8h-1Z\"]);\nexport const SignOutRegular = /*#__PURE__*/createFluentIcon('SignOutRegular', \"1em\", [\"M8.5 11.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM11 3.5a.5.5 0 0 0-.58-.5l-7 1.08a.5.5 0 0 0-.42.49v10.86c0 .25.18.46.42.5l7 1.07a.5.5 0 0 0 .58-.5V10h5.17l-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 1 0-.65.76l1 .87H11V3.5Zm-1 .58v11.84L4 15V5l6-.92ZM12.5 16H12v-5h1v4.5a.5.5 0 0 1-.5.5ZM12 8V4h.5c.28 0 .5.22.5.5V8h-1Z\"]);\nexport const SignatureFilled = /*#__PURE__*/createFluentIcon('SignatureFilled', \"1em\", [\"M12.02 2.77a2.44 2.44 0 1 1 3.46 3.46L14.2 7.5l.08.09a2 2 0 0 1 0 2.82l-1.44 1.44a.5.5 0 0 1-.7-.7l1.44-1.44a1 1 0 0 0 0-1.42l-.09-.08-6.65 6.64a.5.5 0 0 1-.23.14l-4 1a.5.5 0 0 1-.6-.65l1.26-3.75a.5.5 0 0 1 .12-.2l8.62-8.62ZM3.27 16.9c-.02 0-.04-.02-.05-.03l1.35-.34c.53.27 1.18.47 1.93.47.5 0 1.01-.18 1.53-.47.53-.3 1.03-.7 1.53-1.1l.13-.11c.44-.36.9-.74 1.34-1 .47-.27 1.04-.49 1.63-.3.82.28 1.08 1.04 1.32 1.84.05.18.15.36.26.49.11.12.2.15.26.15.19 0 .46-.1.8-.3a9.43 9.43 0 0 0 .93-.62 5.6 5.6 0 0 1 1.1-.55h.03l.14.47-.14-.48a.5.5 0 0 1 .28.96 2.74 2.74 0 0 0-.21.08 4.6 4.6 0 0 0-.92.54l-.7.46a2.7 2.7 0 0 1-1.31.44c-.44 0-.78-.23-1-.49a2.33 2.33 0 0 1-.48-.87c-.26-.87-.41-1.08-.68-1.17-.16-.05-.4-.02-.8.22-.37.21-.77.54-1.23.92l-.12.1c-.5.4-1.06.84-1.66 1.19-.6.34-1.29.6-2.03.6a5.49 5.49 0 0 1-3.23-1.1Z\"]);\nexport const SignatureRegular = /*#__PURE__*/createFluentIcon('SignatureRegular', \"1em\", [\"M12.02 2.77a2.44 2.44 0 1 1 3.46 3.46L14.2 7.5l.08.09a2 2 0 0 1 0 2.82l-1.44 1.44a.5.5 0 0 1-.7-.7l1.44-1.44a1 1 0 0 0 0-1.42l-.09-.08-6.65 6.64a.5.5 0 0 1-.23.14l-4 1a.5.5 0 0 1-.6-.65l1.26-3.75a.5.5 0 0 1 .12-.2l8.62-8.62Zm2.75.7a1.44 1.44 0 0 0-2.04 0l-8.54 8.55-.93 2.77 2.98-.74 8.53-8.53c.57-.56.57-1.48 0-2.04ZM3.22 16.88l.05.03C4 17.44 5.1 18 6.5 18c.74 0 1.42-.26 2.03-.6.6-.35 1.16-.8 1.66-1.2l.12-.1c.46-.37.86-.7 1.23-.91.4-.24.64-.27.8-.22.27.1.42.3.68 1.17.09.3.24.61.47.87.23.26.57.49 1.01.49.47 0 .94-.23 1.3-.44a12.61 12.61 0 0 0 .97-.64 4.6 4.6 0 0 1 .82-.42l.04-.02h.01a.5.5 0 0 0-.28-.96h-.01l-.02.01a2.35 2.35 0 0 0-.31.12c-.2.09-.47.22-.8.43l-.33.23c-.19.13-.38.26-.6.39-.33.2-.6.3-.79.3-.06 0-.15-.03-.26-.15-.11-.13-.2-.31-.26-.5-.24-.8-.5-1.55-1.32-1.82-.59-.2-1.16.02-1.63.3-.44.25-.9.63-1.34.99l-.13.1c-.5.41-1 .8-1.53 1.1-.52.3-1.02.48-1.53.48-.75 0-1.4-.2-1.93-.47l-1.35.34ZM17.5 15.5l-.14-.48.14.48Z\"]);\nexport const SimFilled = /*#__PURE__*/createFluentIcon('SimFilled', \"1em\", [\"M4 5a3 3 0 0 1 3-3h3.46a3 3 0 0 1 2.13.88l2.53 2.53A3 3 0 0 1 16 7.54V15a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5Zm3 5.5v.5h3V9H8.5C7.67 9 7 9.67 7 10.5ZM7 12v1.5c0 .83.67 1.5 1.5 1.5H10v-3H7Zm4.5 3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H11v6h.5Z\"]);\nexport const SimRegular = /*#__PURE__*/createFluentIcon('SimRegular', \"1em\", [\"M8.5 9h3c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 7 13.5v-3C7 9.67 7.67 9 8.5 9ZM8 10.5v.5h2v-1H8.5a.5.5 0 0 0-.5.5ZM8 12v1.5c0 .28.22.5.5.5H10v-2H8Zm3.5 2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5H11v4h.5ZM7 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V7.54a3 3 0 0 0-.88-2.13L12.6 2.88A3 3 0 0 0 10.46 2H7ZM5 5c0-1.1.9-2 2-2h3.46a2 2 0 0 1 1.42.59l2.53 2.53A2 2 0 0 1 15 7.54V15a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5Z\"]);\nexport const SkipBack10Filled = /*#__PURE__*/createFluentIcon('SkipBack10Filled', \"1em\", [\"M4 5.63V3.75a.75.75 0 0 0-1.5 0v3.5c0 .41.34.75.75.75h4a.75.75 0 0 0 0-1.5H5.23A6.3 6.3 0 0 1 10 4.25c2.4 0 4.53 1.41 5.65 3.54.15.28.43.46.73.46.54 0 .91-.53.67-1.01A7.93 7.93 0 0 0 10 2.75a7.77 7.77 0 0 0-6 2.88Zm4.25 5.12a.75.75 0 0 0-1.24-.57l-1.75 1.5a.75.75 0 1 0 .98 1.14l.51-.44v3.87a.75.75 0 0 0 1.5 0v-5.5ZM15 13.5c0 1.93-.63 3.5-2.5 3.5-1.88 0-2.5-1.57-2.5-3.5s.63-3.5 2.5-3.5c1.88 0 2.5 1.57 2.5 3.5Zm-1.5 0c0-.85-.15-1.4-.32-1.69a.59.59 0 0 0-.22-.22.94.94 0 0 0-.46-.09.94.94 0 0 0-.46.09.59.59 0 0 0-.22.22c-.17.3-.32.84-.32 1.69s.15 1.4.32 1.69c.08.12.15.18.22.22.07.04.2.09.46.09s.39-.05.46-.09c.07-.04.14-.1.22-.22.17-.3.32-.84.32-1.69Z\"]);\nexport const SkipBack10Regular = /*#__PURE__*/createFluentIcon('SkipBack10Regular', \"1em\", [\"M3 3.5a.5.5 0 1 1 1 0v2.2a8 8 0 0 1 13.16 1.75.5.5 0 1 1-.9.44 7 7 0 0 0-12-.89H7.5a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5v-4Zm5 7a.5.5 0 0 0-.78-.42l-1.5 1a.5.5 0 0 0 .56.84l.72-.49v5.07a.5.5 0 0 0 1 0v-6Zm4.5-.5c-.93 0-1.6.44-2 1.13-.37.65-.5 1.5-.5 2.37 0 .86.13 1.72.5 2.37.4.7 1.07 1.13 2 1.13.94 0 1.6-.44 2-1.13.38-.65.5-1.5.5-2.37 0-.86-.12-1.72-.5-2.37a2.18 2.18 0 0 0-2-1.13ZM11 13.5c0-.8.13-1.44.37-1.87.23-.4.57-.63 1.13-.63.57 0 .9.23 1.13.63.25.43.37 1.08.37 1.87 0 .8-.12 1.44-.37 1.87-.22.4-.56.63-1.13.63-.56 0-.9-.23-1.13-.63A3.87 3.87 0 0 1 11 13.5Z\"]);\nexport const SkipForward10Filled = /*#__PURE__*/createFluentIcon('SkipForward10Filled', \"1em\", [\"M15.73 5.63V3.75a.75.75 0 0 1 1.5 0v3.5c0 .41-.33.75-.75.75h-4a.75.75 0 0 1 0-1.5h2.03a6.3 6.3 0 0 0-4.78-2.25 6.45 6.45 0 0 0-5.65 3.54.83.83 0 0 1-.73.46c-.54 0-.91-.53-.67-1.01a7.93 7.93 0 0 1 7.05-4.49c2.4 0 4.54 1.12 6 2.88ZM12.5 17c1.88 0 2.5-1.57 2.5-3.5s-.62-3.5-2.5-3.5c-1.87 0-2.5 1.57-2.5 3.5s.63 3.5 2.5 3.5Zm.68-1.81a.59.59 0 0 1-.22.22.94.94 0 0 1-.46.09.94.94 0 0 1-.46-.09.59.59 0 0 1-.21-.22 3.38 3.38 0 0 1-.33-1.69c0-.85.15-1.4.32-1.69a.59.59 0 0 1 .22-.22c.07-.04.2-.09.46-.09s.4.05.46.09c.07.04.14.1.22.22.18.3.32.84.32 1.69s-.14 1.4-.32 1.69Zm-4.93-4.44a.75.75 0 0 0-1.24-.57l-1.75 1.5a.75.75 0 1 0 .98 1.14l.51-.44v3.87a.75.75 0 0 0 1.5 0v-5.5Z\"]);\nexport const SkipForward10Regular = /*#__PURE__*/createFluentIcon('SkipForward10Regular', \"1em\", [\"M17 3.5a.5.5 0 1 0-1 0v2.2A8 8 0 0 0 2.84 7.45a.5.5 0 1 0 .9.44 7 7 0 0 1 12-.89H12.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 .5-.5v-4Zm-6.5 7.63c.4-.7 1.07-1.13 2-1.13.94 0 1.6.44 2 1.13.37.65.5 1.5.5 2.37 0 .86-.13 1.72-.5 2.37-.4.7-1.06 1.13-2 1.13-.93 0-1.6-.44-2-1.13-.37-.65-.5-1.5-.5-2.37 0-.86.13-1.72.5-2.37Zm.87.5A3.87 3.87 0 0 0 11 13.5c0 .8.12 1.44.37 1.87.23.4.57.63 1.13.63.57 0 .9-.23 1.13-.63.25-.43.37-1.08.37-1.87 0-.8-.12-1.44-.37-1.87-.23-.4-.56-.63-1.13-.63-.56 0-.9.23-1.13.63ZM8 10.5a.5.5 0 0 0-.78-.42l-1.5 1a.5.5 0 1 0 .56.84l.72-.49v5.07a.5.5 0 0 0 1 0v-6Z\"]);\nexport const SkipForward30Filled = /*#__PURE__*/createFluentIcon('SkipForward30Filled', \"1em\", [\"M15.73 5.63V3.75a.75.75 0 0 1 1.5 0v3.5c0 .41-.33.75-.75.75h-4a.75.75 0 0 1 0-1.5h2.03a6.3 6.3 0 0 0-4.78-2.25 6.45 6.45 0 0 0-5.65 3.54.83.83 0 0 1-.73.46c-.54 0-.91-.53-.67-1.01a7.93 7.93 0 0 1 7.05-4.49c2.4 0 4.54 1.12 6 2.88ZM4.97 10.72a.75.75 0 0 0 1.06 1.07v-.01l.07-.06a2.3 2.3 0 0 1 1.4-.47c.56 0 .88.15 1.04.3.16.13.22.29.22.43-.01.24-.26.77-1.26.77a.75.75 0 0 0 0 1.5c1 0 1.25.53 1.26.77 0 .14-.06.3-.22.44s-.48.29-1.04.29a2.3 2.3 0 0 1-1.46-.53h-.01a.75.75 0 0 0-1.06 1.06c-.28-.28 0 0 0 0h.01l.01.02a2.03 2.03 0 0 0 .19.16 3.8 3.8 0 0 0 2.33.8c.81-.01 1.5-.24 2-.66a2.05 2.05 0 0 0 .08-3.1 2.05 2.05 0 0 0-.07-3.1 3.05 3.05 0 0 0-2.02-.65 3.8 3.8 0 0 0-2.5.95l-.02.01ZM16 13.5c0 2.07-.62 3.75-2.5 3.75-1.87 0-2.5-1.68-2.5-3.75 0-2.07.63-3.75 2.5-3.75 1.88 0 2.5 1.68 2.5 3.75Zm-1.5 0c0-.93-.15-1.56-.35-1.9a.67.67 0 0 0-.23-.26.8.8 0 0 0-.42-.09.8.8 0 0 0-.42.09.67.67 0 0 0-.23.26c-.2.34-.35.97-.35 1.9 0 .93.15 1.56.35 1.9.09.16.17.23.23.26a.8.8 0 0 0 .42.09.8.8 0 0 0 .42-.09c.07-.03.15-.1.23-.26.2-.34.35-.97.35-1.9Z\"]);\nexport const SkipForward30Regular = /*#__PURE__*/createFluentIcon('SkipForward30Regular', \"1em\", [\"M16.5 3c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 1 1 0-1h3.25a7 7 0 0 0-12.01.89.5.5 0 1 1-.9-.44A8 8 0 0 1 16 5.7V3.5c0-.28.22-.5.5-.5Zm-3 7c-.93 0-1.6.44-2 1.13-.37.65-.5 1.5-.5 2.37 0 .86.13 1.72.5 2.37.4.7 1.07 1.13 2 1.13.94 0 1.6-.44 2-1.13.37-.65.5-1.5.5-2.37 0-.86-.13-1.72-.5-2.37a2.18 2.18 0 0 0-2-1.13ZM12 13.5c0-.8.12-1.44.37-1.87.23-.4.57-.63 1.13-.63.57 0 .9.23 1.13.63.25.43.37 1.08.37 1.87 0 .8-.12 1.44-.37 1.87-.23.4-.56.63-1.13.63-.56 0-.9-.23-1.13-.63A3.87 3.87 0 0 1 12 13.5Zm-6.85-1.9c.19.2.5.2.7 0h.02l.07-.07A2.56 2.56 0 0 1 7.5 11c.6 0 .98.16 1.2.35.22.19.31.42.3.64 0 .4-.4 1.01-1.5 1.01a.5.5 0 0 0 0 1c1.1 0 1.5.6 1.5 1.01a.8.8 0 0 1-.3.64c-.22.19-.6.35-1.2.35a2.56 2.56 0 0 1-1.65-.6.5.5 0 0 0-.7 0c-.34.33 0 .7 0 .7a3.37 3.37 0 0 0 .18.16A3.56 3.56 0 0 0 7.5 17c.78 0 1.4-.21 1.85-.59.44-.37.67-.9.65-1.42a1.89 1.89 0 0 0-.8-1.49c.5-.37.79-.9.8-1.49a1.8 1.8 0 0 0-.65-1.42A2.8 2.8 0 0 0 7.5 10a3.56 3.56 0 0 0-2.34.88v.01h-.01a.5.5 0 0 0 0 .71Zm.7 3.8Z\"]);\nexport const SkipForwardTabFilled = /*#__PURE__*/createFluentIcon('SkipForwardTabFilled', \"1em\", [\"M3.09 7.97C4.2 6.57 6.07 4.89 8.35 4.4c1.9-.42 4.25-.04 6.86 2.35H12.5a.75.75 0 1 0 0 1.5H17c.41 0 .75-.34.75-.75v-4a.75.75 0 0 0-1.5 0v2.17c-2.92-2.68-5.75-3.28-8.22-2.74-2.76.6-4.9 2.58-6.12 4.1a.75.75 0 0 0 1.18.94Zm3.41 2.78c-.97 0-1.75.78-1.75 1.75v3c0 .97.78 1.75 1.75 1.75h7c.97 0 1.75-.78 1.75-1.75v-3c0-.97-.78-1.75-1.75-1.75h-7Zm-.25 1.75c0-.14.11-.25.25-.25h7c.14 0 .25.11.25.25v3c0 .14-.11.25-.25.25h-7a.25.25 0 0 1-.25-.25v-3Z\"]);\nexport const SkipForwardTabRegular = /*#__PURE__*/createFluentIcon('SkipForwardTabRegular', \"1em\", [\"M2.9 7.81C4.01 6.4 5.92 4.66 8.3 4.15c2.1-.46 4.7.03 7.54 2.85H12.5a.5.5 0 0 0 0 1H17a.5.5 0 0 0 .5-.5v-4a.5.5 0 1 0-1 0v2.75c-3.03-2.97-5.92-3.62-8.42-3.08C5.4 3.76 3.31 5.7 2.11 7.2a.5.5 0 0 0 .78.62ZM6.5 11c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-7ZM6 12.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-3Z\"]);\nexport const SlashForwardFilled = /*#__PURE__*/createFluentIcon('SlashForwardFilled', \"1em\", [\"M13.02 2.05c.38.15.58.58.43.97l-5.5 14.5a.75.75 0 1 1-1.4-.54l5.5-14.5a.75.75 0 0 1 .97-.43Z\"]);\nexport const SlashForwardRegular = /*#__PURE__*/createFluentIcon('SlashForwardRegular', \"1em\", [\"M12.66 2.03c.26.08.4.37.31.63l-5 15a.5.5 0 1 1-.94-.32l5-15a.5.5 0 0 1 .63-.31Z\"]);\nexport const SleepFilled = /*#__PURE__*/createFluentIcon('SleepFilled', \"1em\", [\"M11.16 2.74a.5.5 0 0 1 .43-.13c3.5.6 6.4 3.67 6.4 7.4a7.5 7.5 0 0 1-7.5 7.5 7.96 7.96 0 0 1-6.4-3.22.5.5 0 0 1 .37-.79 6.94 6.94 0 0 0 4.69-2.59c1.34-1.65 2.24-4.17 1.85-7.75a.5.5 0 0 1 .16-.42ZM3.5 10C4.33 10 5 9.33 5 8.5V4.9l3-.76V6.1A1.5 1.5 0 1 0 9 7.5v-4a.5.5 0 0 0-.62-.48l-4 1A.5.5 0 0 0 4 4.5v2.59A1.5 1.5 0 1 0 3.5 10Z\"]);\nexport const SleepRegular = /*#__PURE__*/createFluentIcon('SleepRegular', \"1em\", [\"M11.59 2.61a.5.5 0 0 0-.59.55c.4 3.58-.5 6.1-1.85 7.75a6.94 6.94 0 0 1-4.69 2.6.5.5 0 0 0-.37.78 7.96 7.96 0 0 0 6.4 3.21A7.5 7.5 0 0 0 18 10c0-3.72-2.9-6.78-6.4-7.39Zm-1.66 8.93c1.43-1.77 2.36-4.34 2.13-7.8A6.65 6.65 0 0 1 17 10a6.5 6.5 0 0 1-6.5 6.5 7.1 7.1 0 0 1-5.06-2.14 8.1 8.1 0 0 0 4.49-2.82ZM3.5 10C4.33 10 5 9.33 5 8.5V4.89l3-.75v1.94A1.5 1.5 0 1 0 9 7.5v-4a.5.5 0 0 0-.62-.49l-4 1A.5.5 0 0 0 4 4.5v2.58A1.5 1.5 0 1 0 3.5 10Z\"]);\nexport const SlideAddFilled = /*#__PURE__*/createFluentIcon('SlideAddFilled', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5A5.5 5.5 0 0 0 9.2 16H4.76A2.75 2.75 0 0 1 2 13.26v-6.5Zm17 7.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const SlideAddRegular = /*#__PURE__*/createFluentIcon('SlideAddRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5a5.5 5.5 0 0 0-1-.65V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h4.27c.03.34.1.68.19 1H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm17 7.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const SlideArrowRightFilled = /*#__PURE__*/createFluentIcon('SlideArrowRightFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v3.76a5.48 5.48 0 0 0-5.8-.76H5.5a.5.5 0 0 0 0 1h5.23c-.46.43-.84.94-1.13 1.5H5.5a.5.5 0 0 0 0 1h3.7a5.5 5.5 0 0 0 0 3H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideArrowRightRegular = /*#__PURE__*/createFluentIcon('SlideArrowRightRegular', \"1em\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h5.23c.43-.4.93-.75 1.48-1H5.5Zm0 2.5h4.1c-.16.32-.3.65-.4 1H5.5a.5.5 0 0 1 0-1Zm-1 3h4.52c.03.34.1.68.19 1H4.5A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v3.76a5.5 5.5 0 0 0-1-.66V6.5c0-.83-.67-1.5-1.5-1.5h-11C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5Zm14.5-.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideEraserFilled = /*#__PURE__*/createFluentIcon('SlideEraserFilled', \"1em\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v5.07l-.4-.41a2.25 2.25 0 0 0-3.2 0l-3.74 3.75A2.24 2.24 0 0 0 10 16H4a2 2 0 0 1-2-2V6Zm13.12 5.37a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideEraserRegular = /*#__PURE__*/createFluentIcon('SlideEraserRegular', \"1em\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h6c0-.34.08-.69.23-1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v4.23c.21.11.41.25.6.43l.4.41V6a2 2 0 0 0-2-2H4Zm11.12 7.37a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideGridFilled = /*#__PURE__*/createFluentIcon('SlideGridFilled', \"1em\", [\"M4 7a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7Zm1 3.5a1 1 0 0 0-1 1V13a1 1 0 0 0 1 1h3.5a1 1 0 0 0 1-1v-1.5a1 1 0 0 0-1-1H5ZM10.5 7a1 1 0 0 1 1-1H15a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1V7Zm1 3.5a1 1 0 0 0-1 1V13a1 1 0 0 0 1 1H15a1 1 0 0 0 1-1v-1.5a1 1 0 0 0-1-1h-3.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const SlideGridRegular = /*#__PURE__*/createFluentIcon('SlideGridRegular', \"1em\", [\"M5 6a1 1 0 0 0-1 1v1.5a1 1 0 0 0 1 1h3.5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm3.5 1v1.5H5V7h3.5ZM4 11.5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1V13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1.5Zm1 0V13h3.5v-1.5H5ZM11.5 6H15a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1ZM15 7h-3.5v1.5H15V7Zm-4.5 4.5a1 1 0 0 1 1-1H15a1 1 0 0 1 1 1V13a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1v-1.5Zm1 0V13H15v-1.5h-3.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const SlideHideFilled = /*#__PURE__*/createFluentIcon('SlideHideFilled', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm0 5a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H7a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V8Zm3.5-2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V8a2 2 0 0 0-2-2h-.5ZM6 10.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm12 0a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm-12 4a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H7a1 1 0 0 1-1-1v-.5Zm12 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM9.5 16a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const SlideHideRegular = /*#__PURE__*/createFluentIcon('SlideHideRegular', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm0 5a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H7a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V8Zm3.5-2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V8a2 2 0 0 0-2-2h-.5ZM6 10.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm12 0a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm-12 4a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H7a1 1 0 0 1-1-1v-.5Zm12 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM9.5 16a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const SlideLayoutFilled = /*#__PURE__*/createFluentIcon('SlideLayoutFilled', \"1em\", [\"M5.5 7h9c.28 0 .5.22.5.5V9H5V7.5c0-.28.22-.5.5-.5ZM7 10v3H5.5a.5.5 0 0 1-.5-.5V10h2Zm7.5 3H8v-3h7v2.5a.5.5 0 0 1-.5.5Zm-10-9A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11Zm10 10h-9A1.5 1.5 0 0 1 4 12.5v-5C4 6.67 4.67 6 5.5 6h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5Z\"]);\nexport const SlideLayoutRegular = /*#__PURE__*/createFluentIcon('SlideLayoutRegular', \"1em\", [\"M5.5 14A1.5 1.5 0 0 1 4 12.5v-5C4 6.67 4.67 6 5.5 6h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-9Zm0-7a.5.5 0 0 0-.5.5V9h10V7.5a.5.5 0 0 0-.5-.5h-9ZM7 10H5v2.5c0 .28.22.5.5.5H7v-3Zm1 3h6.5a.5.5 0 0 0 .5-.5V10H8v3ZM2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const SlideLinkFilled = /*#__PURE__*/createFluentIcon('SlideLinkFilled', \"1em\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v4.84a3.49 3.49 0 0 0-1.5-.34h-4A3.5 3.5 0 0 0 9.63 16H4a2 2 0 0 1-2-2V6Zm10.5 5.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16ZM12 14c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const SlideLinkRegular = /*#__PURE__*/createFluentIcon('SlideLinkRegular', \"1em\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v4.84a3.47 3.47 0 0 0-1-.3V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.14c.11.36.28.7.49 1H4a2 2 0 0 1-2-2V6Zm10.5 5.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16ZM12 14c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const SlideMicrophoneFilled = /*#__PURE__*/createFluentIcon('SlideMicrophoneFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v5.47a3 3 0 0 0-6 .03v1.07a1.5 1.5 0 0 0-1.95 1.64c.06.45.19.89.37 1.29H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5H11a.5.5 0 0 0 0-1H5.5a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm7.5 0a2 2 0 1 1 4 0v2a2 2 0 0 1-4 0v-2Zm-.97 2.43a.5.5 0 1 0-.99.14 4 4 0 0 0 3.46 3.4v.53a.5.5 0 1 0 1 0v-.53a4 4 0 0 0 3.46-3.4.5.5 0 1 0-1-.14 3 3 0 0 1-5.93 0Z\"]);\nexport const SlideMicrophoneRegular = /*#__PURE__*/createFluentIcon('SlideMicrophoneRegular', \"1em\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm-.5 3c0-.28.22-.5.5-.5H10a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h5.92a4.97 4.97 0 0 1-.32-1H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v3.26a3 3 0 0 1 1 2.2V6.5A2.5 2.5 0 0 0 15.5 4h-11Zm8.5 8a2 2 0 1 1 4 0v2a2 2 0 0 1-4 0v-2Zm-.97 2.43a.5.5 0 1 0-.99.14 4 4 0 0 0 3.46 3.4v.53a.5.5 0 1 0 1 0v-.53a4 4 0 0 0 3.46-3.4.5.5 0 1 0-1-.14 3 3 0 0 1-5.93 0Z\"]);\nexport const SlideMultipleFilled = /*#__PURE__*/createFluentIcon('SlideMultipleFilled', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h9a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H7Z\"]);\nexport const SlideMultipleRegular = /*#__PURE__*/createFluentIcon('SlideMultipleRegular', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h9a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H7ZM6 8a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V8Z\"]);\nexport const SlideMultipleArrowRightFilled = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRightFilled', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h2.6a5.5 5.5 0 0 1 8.4-6.74V8a2 2 0 0 0-2-2H7Zm7.5 4a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideMultipleArrowRightRegular = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRightRegular', \"1em\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h2.6c-.16-.32-.3-.65-.4-1H7a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1.6c.36.18.7.4 1 .66V8a2 2 0 0 0-2-2H7Zm7.5 4a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideMultipleSearchFilled = /*#__PURE__*/createFluentIcon('SlideMultipleSearchFilled', \"1em\", [\"M6 3a4 4 0 0 0-4 4v2.76c.58-.4 1.27-.65 2-.73V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm10 14h-5.88l-1.56-1.56A4.5 4.5 0 0 0 5 9.03V8c0-1.1.9-2 2-2h9a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2ZM4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideMultipleSearchRegular = /*#__PURE__*/createFluentIcon('SlideMultipleSearchRegular', \"1em\", [\"M6 3a4 4 0 0 0-4 4v2.76c.3-.2.64-.38 1-.5V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm10 14h-5.88l-1-1H16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1.26a4.47 4.47 0 0 0-1-.23V8c0-1.1.9-2 2-2h9a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2ZM4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideRecordFilled = /*#__PURE__*/createFluentIcon('SlideRecordFilled', \"1em\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.7a5.5 5.5 0 0 1 0-3H5.5a.5.5 0 0 1 0-1h4.1c.29-.56.67-1.07 1.13-1.5H5.5a.5.5 0 0 1 0-1h6.7a5.48 5.48 0 0 1 5.8.76V6.5A2.5 2.5 0 0 0 15.5 4h-11ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM14.5 18a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecordRegular = /*#__PURE__*/createFluentIcon('SlideRecordRegular', \"1em\", [\"M5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h6.7c-.54.25-1.04.6-1.47 1H5.5A.5.5 0 0 1 5 10Zm4.6 2H5.5a.5.5 0 0 0 0 1h3.7c.1-.35.24-.68.4-1Zm-.58 3H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v3.1c.36.18.7.4 1 .66V6.5A2.5 2.5 0 0 0 15.5 4h-11A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.7c-.08-.32-.15-.66-.18-1Zm5.48 3a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideSearchFilled = /*#__PURE__*/createFluentIcon('SlideSearchFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-5.38l-1.56-1.56c.21-.44.36-.93.41-1.44h3.53a.5.5 0 0 0 0-1H8.97a4.47 4.47 0 0 0-.44-1.5h5.97a.5.5 0 0 0 0-1H7.85A4.49 4.49 0 0 0 2 8.76V6.5Zm3.5.5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm-1 9c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideSearchRegular = /*#__PURE__*/createFluentIcon('SlideSearchRegular', \"1em\", [\"M5.5 7a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm3.03 3.5a4.5 4.5 0 0 0-.68-1h6.65a.5.5 0 0 1 0 1H8.53Zm.47 2c0 .17 0 .34-.03.5h3.53a.5.5 0 0 0 0-1H8.97c.02.16.03.33.03.5Zm-6-6v1.76c-.36.12-.7.3-1 .5V6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-5.38l-1-1h6.38c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11C3.67 5 3 5.67 3 6.5ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideSettingsFilled = /*#__PURE__*/createFluentIcon('SlideSettingsFilled', \"1em\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h4.46A5.5 5.5 0 0 1 18 10.26V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm7.32 7.44a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SlideSettingsRegular = /*#__PURE__*/createFluentIcon('SlideSettingsRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5a5.5 5.5 0 0 0-1-.65V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h4.27c.03.34.1.68.19 1H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm10.07 4.7a2 2 0 0 1-1.44 2.47l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.05a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SlideSizeFilled = /*#__PURE__*/createFluentIcon('SlideSizeFilled', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm9-.25c0 .28.22.5.5.5h.8l-1.65 1.65a.5.5 0 0 0 .7.7L13 7.71v.79a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm-1.65 4.15a.5.5 0 0 0-.7 0L7 12.29v-.79a.5.5 0 0 0-1 0v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 0-1h-.8l1.65-1.65a.5.5 0 0 0 0-.7Z\"]);\nexport const SlideSizeRegular = /*#__PURE__*/createFluentIcon('SlideSizeRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM4.75 5C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75ZM11 6.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-.8l-1.65 1.65a.5.5 0 0 1-.7-.7L12.29 7h-.79a.5.5 0 0 1-.5-.5Zm-2.35 4.15a.5.5 0 0 1 .7.7L7.71 13h.79a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 1 0v.8l1.65-1.65Z\"]);\nexport const SlideTextFilled = /*#__PURE__*/createFluentIcon('SlideTextFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"], {\n flipInRtl: true\n});\nexport const SlideTextRegular = /*#__PURE__*/createFluentIcon('SlideTextRegular', \"1em\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-.5 3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM3 6.5C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-7Z\"], {\n flipInRtl: true\n});\nexport const SlideTextEditFilled = /*#__PURE__*/createFluentIcon('SlideTextEditFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v2.63a2.87 2.87 0 0 0-2.9.71l-4.83 4.83a3.2 3.2 0 0 0-.8 1.33H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm5.48 3.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextEditRegular = /*#__PURE__*/createFluentIcon('SlideTextEditRegular', \"1em\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-.5 3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.97c.11-.36.29-.7.52-1H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5V9c.34-.01.68.03 1 .13V6.5A2.5 2.5 0 0 0 15.5 4h-11Zm6.48 11.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextMultipleFilled = /*#__PURE__*/createFluentIcon('SlideTextMultipleFilled', \"1em\", [\"M13.5 15a2.5 2.5 0 0 0 2.5-2.5v-7c0-.1 0-.19-.02-.28A2.5 2.5 0 0 0 13.5 3h-9A2.5 2.5 0 0 0 2 5.5v7A2.51 2.51 0 0 0 4.48 15h9.02Zm-8-9h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1Zm0 2.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1Zm-.5 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM6.5 17a2.5 2.5 0 0 1-2-1h9a3.5 3.5 0 0 0 3.5-3.5v-7c.6.46 1 1.18 1 2v5a4.5 4.5 0 0 1-4.5 4.5h-7Z\"]);\nexport const SlideTextMultipleRegular = /*#__PURE__*/createFluentIcon('SlideTextMultipleRegular', \"1em\", [\"M5.5 6a.5.5 0 1 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 9c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 9Zm.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM16 5.5A2.5 2.5 0 0 0 13.5 3h-9A2.5 2.5 0 0 0 2 5.5v7A2.5 2.5 0 0 0 4.5 15h9a2.5 2.5 0 0 0 2.5-2.5v-7Zm-13 7v-7C3 4.67 3.67 4 4.5 4h9c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 3 12.5ZM6.5 17a2.5 2.5 0 0 1-2-1h9a3.5 3.5 0 0 0 3.5-3.5v-7c.6.46 1 1.18 1 2v5a4.5 4.5 0 0 1-4.5 4.5h-7Z\"]);\nexport const SlideTextPersonFilled = /*#__PURE__*/createFluentIcon('SlideTextPersonFilled', \"1em\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h6.54a2.5 2.5 0 0 1 2.23-2.99 2.99 2.99 0 0 1-.73-2.51H5.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 .33.13A3 3 0 0 1 18 9.34V6.5A2.5 2.5 0 0 0 15.5 4h-11ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM17.5 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 16.75 12 15.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextPersonRegular = /*#__PURE__*/createFluentIcon('SlideTextPersonRegular', \"1em\", [\"M5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 .33.13c-.14.27-.24.56-.29.87H5.5A.5.5 0 0 1 5 10Zm6.05 5H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v1.9c.4.23.74.56 1 .94V6.5A2.5 2.5 0 0 0 15.5 4h-11A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h6.54a3.3 3.3 0 0 1 .01-1ZM5.5 12a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm12-1a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 16.75 12 15.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextSparkleFilled = /*#__PURE__*/createFluentIcon('SlideTextSparkleFilled', \"1em\", [\"m14.88 1.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02Zm-3.02 3.56c.21.15.47.23.74.23.17 0 .34-.02.5-.08v.58a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h5.59a1.42 1.42 0 0 0 .17 1.32c.17.24.41.43.71.53l1.06.35c.15.05.3.13.47.29.11.11.2.24.3.47l.35 1.1c.1.24.25.47.52.68.14.1.3.17.45.21a1.3 1.3 0 0 0 .77 1.79l.77.25c.08.03.16.08.22.14.07.06.1.14.14.22l.26.8c.1.25.26.46.48.62ZM5 7.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm.5 3h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1Zm-.5 2c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const SlideTextSparkleRegular = /*#__PURE__*/createFluentIcon('SlideTextSparkleRegular', \"1em\", [\"m14.88 1.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM17 12.91c.16.06.33.09.5.09.17 0 .34-.02.5-.08v.58a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h5.59a1.42 1.42 0 0 0 0 1H4.5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-.6ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 10Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const SlideTransitionFilled = /*#__PURE__*/createFluentIcon('SlideTransitionFilled', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM6 5H5v10h1V5Zm3 0H8v10h1V5Zm3 0v10h1V5h-1Z\"]);\nexport const SlideTransitionRegular = /*#__PURE__*/createFluentIcon('SlideTransitionRegular', \"1em\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM12 5v10H9V5h3Zm1 10V5h2.25c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H13Zm-5 0H6V5h2v10ZM5 5v10h-.25C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5H5Z\"]);\nexport const SmartwatchFilled = /*#__PURE__*/createFluentIcon('SmartwatchFilled', \"1em\", [\"M8 2a2 2 0 0 0-2 2v.17A3 3 0 0 1 7 4h6a3 3 0 0 1 1 .17V4a2 2 0 0 0-2-2H8ZM7 5a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1V7a2 2 0 0 0-2-2H7Zm0 11a3 3 0 0 1-1-.17V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-.17a3 3 0 0 1-1 .17H7Z\"]);\nexport const SmartwatchRegular = /*#__PURE__*/createFluentIcon('SmartwatchRegular', \"1em\", [\"M6 5.27V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1.27c.6.34 1 .99 1 1.73v1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v2a2 2 0 0 1-1 1.73V16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.27A2 2 0 0 1 5 13V7a2 2 0 0 1 1-1.73ZM8 3a1 1 0 0 0-1 1v1h6V4a1 1 0 0 0-1-1H8Zm6 10V7a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1Zm-7 3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H7v1Z\"]);\nexport const SmartwatchDotFilled = /*#__PURE__*/createFluentIcon('SmartwatchDotFilled', \"1em\", [\"M13.5 2.68A2 2 0 0 0 12 2H8a2 2 0 0 0-2 2v.17A3 3 0 0 1 7 4h6.04c.06-.48.23-.92.47-1.32ZM13.05 5H7a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.34A3.5 3.5 0 0 1 13.04 5ZM7 16a3 3 0 0 1-1-.17V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-.17a3 3 0 0 1-1 .17H7ZM19 4.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SmartwatchDotRegular = /*#__PURE__*/createFluentIcon('SmartwatchDotRegular', \"1em\", [\"M16.5 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm-3 .68A2 2 0 0 0 12 2H8a2 2 0 0 0-2 2v1.27A2 2 0 0 0 5 7v6a2 2 0 0 0 1 1.73V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-1.27A2 2 0 0 0 15 13v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.34a3.5 3.5 0 0 1-1-.71A1 1 0 0 1 14 7v6a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6a1 1 0 0 1 .37.07 3.49 3.49 0 0 1 .14-3.39ZM13 4.5V5H7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.5ZM7 15h6v1a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-1Z\"]);\nexport const SnoozeFilled = /*#__PURE__*/createFluentIcon('SnoozeFilled', \"1em\", [\"M10.75 4a.75.75 0 0 0 0 1.5h3.88l-4.45 5.27a.75.75 0 0 0 .57 1.23h5.5a.75.75 0 0 0 0-1.5h-3.88l4.45-5.27A.75.75 0 0 0 16.25 4h-5.5Zm-7 6a.75.75 0 0 0 0 1.5h1.97l-2.56 3.29A.75.75 0 0 0 3.75 16h3.5a.75.75 0 0 0 0-1.5H5.28l2.56-3.29A.75.75 0 0 0 7.25 10h-3.5Z\"]);\nexport const SnoozeRegular = /*#__PURE__*/createFluentIcon('SnoozeRegular', \"1em\", [\"M10.5 4a.5.5 0 0 0 0 1h4.03l-4.44 6.2a.5.5 0 0 0 .41.8h5a.5.5 0 0 0 0-1h-4.03l4.44-6.2a.5.5 0 0 0-.41-.8h-5Zm-6 6a.5.5 0 0 0 0 1h2.96l-3.35 4.19a.5.5 0 0 0 .39.81h4a.5.5 0 0 0 0-1H5.54l3.35-4.19A.5.5 0 0 0 8.5 10h-4Z\"]);\nexport const SoundSourceFilled = /*#__PURE__*/createFluentIcon('SoundSourceFilled', \"1em\", [\"M3 10a7 7 0 1 1 12.14 4.75l.65.77a8 8 0 1 0-11.58 0l.65-.77A6.97 6.97 0 0 1 3 10Zm11.16 3.6a5.5 5.5 0 1 0-8.32 0l.65-.78a4.5 4.5 0 1 1 7.01 0l.66.78Zm-1.65-1.96a3 3 0 1 0-5.02 0l.69-.81a2 2 0 1 1 3.64 0l.69.81Zm-2.13-.96a.5.5 0 0 0-.76 0l-5.5 6.5a.5.5 0 0 0 .38.82h11a.5.5 0 0 0 .38-.82l-5.5-6.5Z\"]);\nexport const SoundSourceRegular = /*#__PURE__*/createFluentIcon('SoundSourceRegular', \"1em\", [\"M3 10a7 7 0 1 1 12.14 4.75l.65.77a8 8 0 1 0-11.58 0l.65-.77A6.97 6.97 0 0 1 3 10Zm11.16 3.6a5.5 5.5 0 1 0-8.32 0l.65-.78a4.5 4.5 0 1 1 7.01 0l.66.78Zm-1.65-1.96a3 3 0 1 0-5.02 0l.69-.81a2 2 0 1 1 3.64 0l.69.81Zm-2.13-.96a.5.5 0 0 0-.76 0l-5.5 6.5a.5.5 0 0 0 .38.82h11a.5.5 0 0 0 .38-.82l-5.5-6.5ZM14.42 17H5.58L10 11.77 14.42 17Z\"]);\nexport const SoundWaveCircleFilled = /*#__PURE__*/createFluentIcon('SoundWaveCircleFilled', \"1em\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm7-2.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM6 8a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2A.5.5 0 0 0 6 8Zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2A.5.5 0 0 0 11 8Zm2.5-1a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z\"]);\nexport const SoundWaveCircleRegular = /*#__PURE__*/createFluentIcon('SoundWaveCircleRegular', \"1em\", [\"M9 7.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM6 8c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5Zm5 0c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5Zm2.5-1c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const Space3DFilled = /*#__PURE__*/createFluentIcon('Space3DFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v6.5h-.71L14.86 10H16V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4h1.14L3.7 12.5H3V6Zm0 8v-.5h4.34l-.82 2.86-.2.64H6a3 3 0 0 1-3-3Zm4.48 2.64.9-3.14h3.24l.9 3.13.1.37H7.37l.1-.36h.01Zm1.18-4.14h2.68l-.72-2.5H9.38l-.72 2.5Zm4.82 3.86-.82-2.86H17v.5a3 3 0 0 1-3 3h-.35l-.17-.63Zm-1.1-3.86h2.76L13.7 10h-2.05l.72 2.5Zm-7.52 0h2.76l.72-2.5H6.29l-1.43 2.5Z\"]);\nexport const Space3DRegular = /*#__PURE__*/createFluentIcon('Space3DRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm13 0a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3h12V6ZM4 12l1.14-2H4v2Zm.86.5h2.76l.72-2.5H6.29l-1.43 2.5Zm-.86 1v.5c0 1.1.9 2 2 2h.62l.72-2.5H4Zm4.38 0L7.66 16h4.68l-.72-2.5H8.38Zm4.28 0 .72 2.5H14a2 2 0 0 0 2-2v-.5h-3.34Zm2.48-1L13.7 10h-2.05l.72 2.5h2.76Zm-3.8 0-.72-2.5H9.38l-.72 2.5h2.68ZM16 12v-2h-1.14L16 12Z\"]);\nexport const SpacebarFilled = /*#__PURE__*/createFluentIcon('SpacebarFilled', \"1em\", [\"M2.75 7.75c.41 0 .75.34.75.75v2h13v-2a.75.75 0 0 1 1.5 0v2c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 10.5v-2c0-.41.34-.75.75-.75Z\"]);\nexport const SpacebarRegular = /*#__PURE__*/createFluentIcon('SpacebarRegular', \"1em\", [\"M2.5 8c.28 0 .5.22.5.5v2c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 1 1 0v2c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 10.5v-2c0-.28.22-.5.5-.5Z\"]);\nexport const SparkleFilled = /*#__PURE__*/createFluentIcon('SparkleFilled', \"1em\", [\"M7.4 12.8a1.04 1.04 0 0 0 1.59-.51l.45-1.37a2.34 2.34 0 0 1 1.47-1.48l1.4-.45A1.04 1.04 0 0 0 12.25 7l-1.37-.45A2.34 2.34 0 0 1 9.4 5.08L8.95 3.7a1.03 1.03 0 0 0-.82-.68 1.04 1.04 0 0 0-1.15.7l-.46 1.4a2.34 2.34 0 0 1-1.44 1.45L3.7 7a1.04 1.04 0 0 0 .02 1.97l1.37.45a2.33 2.33 0 0 1 1.48 1.48l.46 1.4c.07.2.2.37.38.5Zm6.14 4.05a.8.8 0 0 0 1.22-.4l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.52l-.77-.25a1.08 1.08 0 0 1-.68-.68l-.25-.77a.8.8 0 0 0-1.52.01l-.24.76a1.1 1.1 0 0 1-.67.68l-.77.25a.8.8 0 0 0 0 1.52l.77.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Z\"]);\nexport const SparkleRegular = /*#__PURE__*/createFluentIcon('SparkleRegular', \"1em\", [\"M7.4 12.8a1.04 1.04 0 0 0 1.59-.51l.45-1.37a2.34 2.34 0 0 1 1.47-1.48l1.4-.45A1.04 1.04 0 0 0 12.25 7l-1.37-.45A2.34 2.34 0 0 1 9.4 5.08L8.95 3.7a1.03 1.03 0 0 0-.82-.68 1.04 1.04 0 0 0-1.15.7l-.46 1.4a2.34 2.34 0 0 1-1.44 1.45L3.7 7a1.04 1.04 0 0 0 .02 1.97l1.37.45a2.33 2.33 0 0 1 1.48 1.48l.46 1.4c.07.2.2.37.38.5Zm.08-7.4.53-1.38.44 1.37a3.33 3.33 0 0 0 2.12 2.12l1.4.53-1.38.45a3.34 3.34 0 0 0-2.11 2.11l-.53 1.38-.45-1.38a3.34 3.34 0 0 0-2.1-2.12L4 7.96 5.4 7.5a3.36 3.36 0 0 0 2.08-2.12Zm6.06 11.45a.8.8 0 0 0 1.22-.4l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.52l-.77-.25a1.08 1.08 0 0 1-.68-.68l-.25-.77a.8.8 0 0 0-1.52.01l-.24.76a1.1 1.1 0 0 1-.67.68l-.77.25a.8.8 0 0 0 0 1.52l.77.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Zm-.92-2.8-.18-.05.19-.06a2.09 2.09 0 0 0 1.3-1.32l.06-.18.05.18a2.08 2.08 0 0 0 1.32 1.32l.2.06-.18.06a2.08 2.08 0 0 0-1.32 1.32l-.06.18-.06-.18a2.07 2.07 0 0 0-1.32-1.32Z\"]);\nexport const SparkleCircleFilled = /*#__PURE__*/createFluentIcon('SparkleCircleFilled', \"1em\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.82 5.58l.26.73c.1.28.33.5.61.6l.73.26a.87.87 0 0 1 0 1.65l-.73.26a1 1 0 0 0-.6.61l-.27.73a.87.87 0 0 1-1.65 0l-.25-.73a1 1 0 0 0-.61-.6l-.73-.27a.88.88 0 0 1 0-1.65l.73-.25a1 1 0 0 0 .6-.61l.26-.73a.87.87 0 0 1 1.65 0ZM11.33 10a.7.7 0 0 1 1.34 0l.18.6c.08.26.29.47.56.55l.6.18a.7.7 0 0 1 0 1.34l-.6.18a.83.83 0 0 0-.56.56l-.18.6a.7.7 0 0 1-1.34 0l-.18-.6a.83.83 0 0 0-.56-.56l-.59-.18a.7.7 0 0 1 0-1.34l.6-.18a.83.83 0 0 0 .55-.56l.18-.6Z\"]);\nexport const SparkleCircleRegular = /*#__PURE__*/createFluentIcon('SparkleCircleRegular', \"1em\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5.17-4.42a.87.87 0 0 1 1.65 0l.26.73c.1.28.33.5.61.6l.73.26a.87.87 0 0 1 0 1.65l-.73.26a1 1 0 0 0-.6.61l-.27.73a.87.87 0 0 1-1.65 0l-.25-.73a1 1 0 0 0-.61-.6l-.73-.27a.88.88 0 0 1 0-1.65l.73-.25a1 1 0 0 0 .6-.61l.26-.73Zm5.5 4.42a.7.7 0 0 0-1.34 0l-.18.6a.83.83 0 0 1-.56.55l-.59.18a.7.7 0 0 0 0 1.34l.6.18c.26.08.47.29.55.56l.18.6a.7.7 0 0 0 1.34 0l.18-.6a.83.83 0 0 1 .56-.56l.6-.18a.7.7 0 0 0 0-1.34l-.6-.18a.83.83 0 0 1-.56-.56l-.18-.59Z\"]);\nexport const Speaker0Filled = /*#__PURE__*/createFluentIcon('Speaker0Filled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Z\"]);\nexport const Speaker0Regular = /*#__PURE__*/createFluentIcon('Speaker0Regular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Z\"]);\nexport const Speaker1Filled = /*#__PURE__*/createFluentIcon('Speaker1Filled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Zm2.08 9.93a.5.5 0 0 1-.19-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .87-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker1Regular = /*#__PURE__*/createFluentIcon('Speaker1Regular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm6.96 6.33a.5.5 0 0 1-.18-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .86-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker2Filled = /*#__PURE__*/createFluentIcon('Speaker2Filled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Zm3.25 1.63a.5.5 0 0 1 .71.04 8 8 0 0 1 0 10.66.5.5 0 1 1-.75-.66 7 7 0 0 0 0-9.34.5.5 0 0 1 .04-.7Zm-1.17 8.3a.5.5 0 0 1-.19-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .87-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker2Regular = /*#__PURE__*/createFluentIcon('Speaker2Regular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm8.14-1.97a.5.5 0 0 1 .7.04 8 8 0 0 1 0 10.66.5.5 0 0 1-.74-.66 7 7 0 0 0 0-9.34.5.5 0 0 1 .04-.7Zm-1.18 8.3a.5.5 0 0 1-.18-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .86-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const SpeakerBluetoothFilled = /*#__PURE__*/createFluentIcon('SpeakerBluetoothFilled', \"1em\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.87-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .35-.13l3.87-3.6Zm5.53 2.88a.5.5 0 0 0-.85.35v3.46l-1.19-.95a.5.5 0 1 0-.62.78L14.7 10l-1.51 1.21a.5.5 0 1 0 .62.78l1.19-.95v3.46a.5.5 0 0 0 .85.35l2.5-2.5a.5.5 0 0 0-.04-.74L16.3 10l2.01-1.61a.5.5 0 0 0 .04-.74l-2.5-2.5Zm1.4 6.9L16 13.28v-2.25l1.25 1ZM16 6.7l1.25 1.25-1.25 1V6.71Z\"]);\nexport const SpeakerBluetoothRegular = /*#__PURE__*/createFluentIcon('SpeakerBluetoothRegular', \"1em\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.88-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .34-.13l3.88-3.6Zm.68.74L7.12 6.6c-.27.26-.64.4-1.02.4H3.5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h2.6c.38 0 .75.14 1.02.4L11 17V3Zm4.85 2.14a.5.5 0 0 0-.85.35v3.46l-1.19-.95a.5.5 0 1 0-.62.78L14.7 10l-1.51 1.21a.5.5 0 1 0 .62.78l1.19-.95v3.46a.5.5 0 0 0 .85.35l2.5-2.5a.5.5 0 0 0-.04-.74L16.3 10l2.01-1.61a.5.5 0 0 0 .04-.74l-2.5-2.5Zm1.4 6.9L16 13.28v-2.25l1.25 1ZM16 6.7l1.25 1.25-1.25 1V6.71Z\"]);\nexport const SpeakerEditFilled = /*#__PURE__*/createFluentIcon('SpeakerEditFilled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l2.83 2.63.15-.6a3.2 3.2 0 0 1 .84-1.5L12 12.95V3Zm3.96 1.66a7.97 7.97 0 0 1 1.99 4.46c-.34-.1-.68-.14-1.02-.12a6.97 6.97 0 0 0-1.72-3.67.5.5 0 0 1 .75-.67Zm-1.2 2.59c.41.72.65 1.5.72 2.27-.14.1-.26.2-.38.32l-.63.63c.1-.92-.08-1.87-.58-2.72a.5.5 0 0 1 .87-.5Zm-3.78 8.12 4.83-4.83a1.87 1.87 0 1 1 2.64 2.65l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.02Z\"]);\nexport const SpeakerEditRegular = /*#__PURE__*/createFluentIcon('SpeakerEditRegular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l2.83 2.63.15-.6c.04-.17.1-.32.16-.48L7.13 13.4A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.15 1.03-.4L11 3v10.94l1-1V3Zm3.96 1.66a7.97 7.97 0 0 1 1.99 4.46c-.33-.1-.68-.14-1.02-.12a6.97 6.97 0 0 0-1.71-3.67.5.5 0 0 1 .74-.67Zm-1.2 2.59c.42.72.65 1.5.72 2.27-.13.1-.26.2-.38.32l-.62.62c.1-.9-.09-1.86-.58-2.71a.5.5 0 0 1 .86-.5Zm-3.78 8.12 4.83-4.83a1.87 1.87 0 1 1 2.64 2.65l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.02Z\"]);\nexport const SpeakerMuteFilled = /*#__PURE__*/createFluentIcon('SpeakerMuteFilled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01Zm1.14 4.65c.2-.2.51-.2.71 0l1.65 1.64 1.64-1.64a.5.5 0 1 1 .71.7L16.2 10l1.65 1.65a.5.5 0 1 1-.7.7l-1.65-1.64-1.65 1.64a.5.5 0 1 1-.7-.7L14.78 10l-1.65-1.65a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerMuteRegular = /*#__PURE__*/createFluentIcon('SpeakerMuteRegular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm6.02 1.05c.2-.2.51-.2.71 0l1.65 1.64 1.64-1.64a.5.5 0 1 1 .71.7L16.2 10l1.65 1.65a.5.5 0 1 1-.7.7l-1.65-1.64-1.65 1.64a.5.5 0 1 1-.7-.7L14.78 10l-1.65-1.65a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerOffFilled = /*#__PURE__*/createFluentIcon('SpeakerOffFilled', \"1em\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.29 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74v-4.28l5.15 5.14a.5.5 0 0 0 .7-.7l-2.56-2.57L2.85 2.15Zm13.11 2.52a8 8 0 0 1 .66 9.83l-.73-.73a7 7 0 0 0-.68-8.44.5.5 0 1 1 .75-.66Zm-1.2 2.58c1 1.74.95 3.8.04 5.43l-.74-.74a4.5 4.5 0 0 0-.17-4.19.5.5 0 1 1 .87-.5ZM12 3.01v6.87L7.25 5.13l3.07-2.86a1 1 0 0 1 1.68.74Z\"]);\nexport const SpeakerOffRegular = /*#__PURE__*/createFluentIcon('SpeakerOffRegular', \"1em\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.29 6H3.5C2.68 6 2 6.67 2 7.5v5c0 .83.68 1.5 1.5 1.5H6.1a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V12.7l5.15 5.15a.5.5 0 0 0 .7-.7l-2.56-2.57L2.85 2.15ZM11 11.7V17l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6l.18-.01L11 11.7ZM11 3v5.88l1 1V3a1 1 0 0 0-1.68-.74L7.24 5.12l.71.71L11 3.01Zm3.06 8.94.74.74a5.5 5.5 0 0 0-.04-5.43.5.5 0 1 0-.86.5 4.5 4.5 0 0 1 .16 4.19Zm1.84 1.84.72.72a8 8 0 0 0-.66-9.83.5.5 0 1 0-.74.66 7 7 0 0 1 .68 8.45Z\"]);\nexport const SpeakerSettingsFilled = /*#__PURE__*/createFluentIcon('SpeakerSettingsFilled', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.21 2.98A5.48 5.48 0 0 1 12 9.6V3Zm.07 8.44-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.45-.12a2 2 0 0 0 1.44-2.48Zm2.43 4.06a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const SpeakerSettingsRegular = /*#__PURE__*/createFluentIcon('SpeakerSettingsRegular', \"1em\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.22 2.99a5.46 5.46 0 0 1-.62-1.94L7.12 13.4A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4L11 3v7.26c.3-.25.64-.48 1-.66V3Zm.06 8.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.43-2.48l.47-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55Zm2.44 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SpeakerUsbFilled = /*#__PURE__*/createFluentIcon('SpeakerUsbFilled', \"1em\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.87-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .35-.13l3.87-3.6ZM14 8V6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 1 1v2.2a1 1 0 0 1-.2.6l-1.3 1.8V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1.4l-1.31-1.84a1 1 0 0 1-.19-.58V9a1 1 0 0 1 1-1Zm1 0h2V6h-2v2Z\"]);\nexport const SpeakerUsbRegular = /*#__PURE__*/createFluentIcon('SpeakerUsbRegular', \"1em\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.88-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .34-.13l3.88-3.6Zm.68.74L7.12 6.6c-.27.26-.64.4-1.02.4H3.5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h2.6c.38 0 .75.14 1.02.4L11 17V3ZM14 8V6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 1 1v2.2a1 1 0 0 1-.2.6l-1.3 1.8V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1.4l-1.31-1.84a1 1 0 0 1-.19-.58V9a1 1 0 0 1 1-1Zm1 0h2V6h-2v2Z\"]);\nexport const SpinnerIosFilled = /*#__PURE__*/createFluentIcon('SpinnerIosFilled', \"1em\", [\"M10 3.5A6.5 6.5 0 0 0 3.5 10 .75.75 0 0 1 2 10a8 8 0 1 1 8 8 .75.75 0 0 1 0-1.5 6.5 6.5 0 1 0 0-13Z\"]);\nexport const SpinnerIosRegular = /*#__PURE__*/createFluentIcon('SpinnerIosRegular', \"1em\", [\"M10 3a7 7 0 0 0-7 7 .5.5 0 0 1-1 0 8 8 0 1 1 8 8 .5.5 0 0 1 0-1 7 7 0 1 0 0-14Z\"]);\nexport const SplitHintFilled = /*#__PURE__*/createFluentIcon('SplitHintFilled', \"1em\", [\"M9.5 2c.28 0 .5.22.5.5v15a.5.5 0 0 1-1 0v-15c0-.28.22-.5.5-.5ZM4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h4V4H4Zm11 1a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-4-4a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1h1Zm.5 11.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Z\"]);\nexport const SplitHintRegular = /*#__PURE__*/createFluentIcon('SplitHintRegular', \"1em\", [\"M9.5 2c.28 0 .5.22.5.5v15a.5.5 0 0 1-1 0v-15c0-.28.22-.5.5-.5ZM2 6c0-1.1.9-2 2-2h4v1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4v1H4a2 2 0 0 1-2-2V6Zm13-1a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-4-4a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1h1Zm.5 11.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Z\"]);\nexport const SplitHorizontalFilled = /*#__PURE__*/createFluentIcon('SplitHorizontalFilled', \"1em\", [\"M17.5 10a.5.5 0 0 0 0-1h-15a.5.5 0 0 0 0 1h15ZM14 2a2 2 0 0 1 2 2v4H4V4c0-1.1.9-2 2-2h8ZM4 11v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-4H4Z\"]);\nexport const SplitHorizontalRegular = /*#__PURE__*/createFluentIcon('SplitHorizontalRegular', \"1em\", [\"M17.5 10a.5.5 0 0 0 0-1h-15a.5.5 0 0 0 0 1h15ZM16 4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4h1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v4h1V4Zm0 7h-1v4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-4H4v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-4Z\"]);\nexport const SplitVerticalFilled = /*#__PURE__*/createFluentIcon('SplitVerticalFilled', \"1em\", [\"M10 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM2 6c0-1.1.9-2 2-2h4v12H4a2 2 0 0 1-2-2V6Zm9 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4v12Z\"]);\nexport const SplitVerticalRegular = /*#__PURE__*/createFluentIcon('SplitVerticalRegular', \"1em\", [\"M10 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h4v-1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4V4H4Zm7 0v1h4a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-4v1h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4Z\"]);\nexport const SportFilled = /*#__PURE__*/createFluentIcon('SportFilled', \"1em\", [\"M16.58 4.13a6 6 0 0 1 .83 1.28 2 2 0 0 1-2.43.31l1.6-1.6Zm-.7-.71-1.6 1.6a2 2 0 0 1 .3-2.44 6 6 0 0 1 1.3.84ZM18 8a6 6 0 0 0-.21-1.59 2.99 2.99 0 0 1-3.53.04L13.21 7.5l3.8 3.8c.63-.94.99-2.08.99-3.3Zm-5-4c0-.67.22-1.29.59-1.79a6 6 0 0 0-4.9.78l3.81 3.8 1.05-1.05A2.99 2.99 0 0 1 13 4Zm-1.3 5a8.97 8.97 0 0 1 2.2 4.7 6 6 0 0 0 2.49-1.6L12.5 8.2l-.8.8Zm.1-1.5-.8.8a8.97 8.97 0 0 0-4.7-2.2A6 6 0 0 1 7.9 3.6l3.9 3.89ZM3.5 7C2.67 7 2 7.67 2 8.5V10a8 8 0 0 0 8 8h1.5c.83 0 1.5-.67 1.5-1.5V15a8 8 0 0 0-8-8H3.5Zm2.65 4.15c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7Z\"]);\nexport const SportRegular = /*#__PURE__*/createFluentIcon('SportRegular', \"1em\", [\"M13.7 12.7a5 5 0 0 0 1.46-.83L8.13 4.84A5 5 0 0 0 7.3 6.3a8.95 8.95 0 0 0-1-.2 6 6 0 1 1 7.6 7.6 8.97 8.97 0 0 0-.2-1Zm-1-4.7 3.17 3.16a4.98 4.98 0 0 0 1.06-4.02 2.99 2.99 0 0 1-3.17-.2L12.71 8Zm3.17-3.16-1.39 1.38a2 2 0 0 0 2.16-.08 5 5 0 0 0-.77-1.3ZM12.5 4.5c0-.52.13-1 .36-1.43a5.03 5.03 0 0 0-4.02 1.06L12 7.29l1.05-1.05a2.99 2.99 0 0 1-.55-1.74Zm1 0c0 .37.1.72.28 1.02l1.38-1.4a5 5 0 0 0-1.3-.76 2 2 0 0 0-.36 1.14ZM3.5 8a.5.5 0 0 0-.5.5V10a7 7 0 0 0 7 7h1.5a.5.5 0 0 0 .5-.5V15a7 7 0 0 0-7-7H3.5ZM2 8.5C2 7.67 2.67 7 3.5 7H5a8 8 0 0 1 8 8v1.5c0 .83-.67 1.5-1.5 1.5H10a8 8 0 0 1-8-8V8.5Zm4.15 2.65c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7Z\"]);\nexport const SportAmericanFootballFilled = /*#__PURE__*/createFluentIcon('SportAmericanFootballFilled', \"1em\", [\"M10.94 2.64A11.63 11.63 0 0 0 2.6 10.9l6.6 6.6a10.9 10.9 0 0 0 6.08-4.08 13.32 13.32 0 0 0 2.07-4.35l-6.42-6.43Zm.91 5.5c.2.2.2.52 0 .71l-3 3a.5.5 0 0 1-.7-.7l3-3c.2-.2.5-.2.7 0Zm5.8-.2c.26-1.3.36-2.56.35-3.71A2.25 2.25 0 0 0 15.7 2c-1.32.02-2.53.15-3.62.37l5.56 5.56Zm-9.6 9.81-5.72-5.72A16.1 16.1 0 0 0 2 15.84c.04 1.18 1 2.09 2.15 2.14 1.43.07 2.72-.02 3.89-.23Z\"]);\nexport const SportAmericanFootballRegular = /*#__PURE__*/createFluentIcon('SportAmericanFootballRegular', \"1em\", [\"M11.85 8.85a.5.5 0 1 0-.7-.7l-3 3a.5.5 0 1 0 .7.7l3-3ZM18 4.23A2.25 2.25 0 0 0 15.7 2c-5.62.07-9.12 2.15-11.18 4.96-2.04 2.78-2.6 6.2-2.51 8.88.04 1.18 1 2.09 2.15 2.14 5.53.26 9.03-1.73 11.13-4.56 2.07-2.8 2.73-6.36 2.71-9.2ZM15.71 3c.72 0 1.29.54 1.3 1.23 0 .9-.07 1.86-.23 2.84l-3.84-3.84C13.79 3.09 14.7 3 15.7 3Zm-3.95.46 4.79 4.8c-.39 1.6-1.04 3.19-2.07 4.56a10.01 10.01 0 0 1-6.1 3.85.5.5 0 0 0-.03-.02l-4.93-4.93a11.8 11.8 0 0 1 1.9-4.17 10.8 10.8 0 0 1 6.44-4.09ZM3.19 12.9l3.98 3.99c-.9.11-1.89.15-2.96.1A1.24 1.24 0 0 1 3 15.81c-.03-.91.02-1.9.18-2.92Z\"]);\nexport const SportBaseballFilled = /*#__PURE__*/createFluentIcon('SportBaseballFilled', \"1em\", [\"M18 10c0 1.55-.44 3-1.2 4.22-.95-.7-2-1.24-3.14-1.63a.5.5 0 1 0-.32.95c1.04.35 2 .86 2.88 1.5a7.98 7.98 0 0 1-12.44 0c.87-.64 1.84-1.15 2.88-1.5a.5.5 0 0 0-.32-.95c-1.13.39-2.2.94-3.14 1.63a7.96 7.96 0 0 1 0-8.43c.94.7 2 1.25 3.14 1.63a.5.5 0 1 0 .32-.95 10.47 10.47 0 0 1-2.88-1.5 7.98 7.98 0 0 1 12.44 0c-.87.64-1.84 1.15-2.88 1.5a.5.5 0 1 0 .32.95c1.14-.38 2.2-.94 3.14-1.63A7.96 7.96 0 0 1 18 10Zm-8 3c.49 0 .96.03 1.43.1a.5.5 0 1 0 .14-1 11.6 11.6 0 0 0-3.14 0 .5.5 0 0 0 .14 1c.47-.07.94-.1 1.43-.1ZM8.57 6.92a.5.5 0 0 0-.14.99 11.6 11.6 0 0 0 3.14 0 .5.5 0 1 0-.14-1 10.6 10.6 0 0 1-2.86 0Z\"]);\nexport const SportBaseballRegular = /*#__PURE__*/createFluentIcon('SportBaseballRegular', \"1em\", [\"M4.61 5.53a6.99 6.99 0 0 1 10.78 0c-.64.38-1.33.7-2.05.94a.5.5 0 0 0 .32.95c.81-.27 1.59-.64 2.31-1.08a6.97 6.97 0 0 1 0 7.33c-.73-.44-1.5-.8-2.31-1.08a.5.5 0 0 0-.32.95c.72.24 1.4.56 2.04.94a6.99 6.99 0 0 1-10.76 0c.64-.38 1.32-.7 2.04-.94a.5.5 0 1 0-.32-.95c-.81.28-1.58.64-2.3 1.08a6.97 6.97 0 0 1-.01-7.33c.72.44 1.5.8 2.31 1.08a.5.5 0 0 0 .32-.95c-.72-.24-1.4-.56-2.05-.94ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.57 6.92a10.6 10.6 0 0 0 2.86 0 .5.5 0 0 1 .14.99 11.6 11.6 0 0 1-3.14 0 .5.5 0 0 1 .14-1Zm0 6.18a10.6 10.6 0 0 1 2.86 0 .5.5 0 0 0 .14-1 11.6 11.6 0 0 0-3.14 0 .5.5 0 1 0 .14 1Z\"]);\nexport const SportBasketballFilled = /*#__PURE__*/createFluentIcon('SportBasketballFilled', \"1em\", [\"M4.7 4A7.97 7.97 0 0 1 9 2.06c.07.43.14.91.24 1.4.18.9.43 1.89.78 2.79.28.71.62 1.4 1.06 1.96L10 9.3 4.7 4Zm-.7.7A7.97 7.97 0 0 0 2.06 9c.43.07.9.14 1.4.24.9.18 1.89.43 2.79.78.71.28 1.4.62 1.96 1.06L9.29 10 4 4.7Zm3.5 7.1c-.43-.32-.99-.6-1.61-.85-.83-.31-1.75-.55-2.62-.72-.45-.1-.88-.17-1.27-.22 0 2.02.76 3.87 2 5.28l3.5-3.5ZM4.7 16l3.5-3.5c.32.43.6.98.85 1.61.31.83.55 1.75.72 2.62.1.45.17.88.22 1.27a7.97 7.97 0 0 1-5.28-2Zm4.22-4.21L10 10.71 15.3 16a7.97 7.97 0 0 1-4.3 1.94c-.07-.43-.15-.91-.25-1.4-.18-.9-.43-1.89-.77-2.79a7.57 7.57 0 0 0-1.06-1.96Zm7.08 3.5a7.97 7.97 0 0 0 1.94-4.3 17.37 17.37 0 0 1-4.18-1.02 7.57 7.57 0 0 1-1.97-1.05L10.7 10 16 15.3ZM12.5 8.2c.43.33.98.6 1.61.85.83.32 1.75.55 2.62.72.45.1.88.17 1.27.22 0-2.02-.76-3.87-2-5.28l-3.5 3.5ZM15.3 4A7.97 7.97 0 0 0 10 2c.06.4.14.82.23 1.27.17.87.4 1.8.72 2.62.24.63.53 1.18.85 1.6L15.3 4Z\"]);\nexport const SportBasketballRegular = /*#__PURE__*/createFluentIcon('SportBasketballRegular', \"1em\", [\"m10 9.3 1.08-1.09a7.57 7.57 0 0 1-1.06-1.96 17.37 17.37 0 0 1-.85-3.2 6.97 6.97 0 0 0-3.75 1.66L10 9.29Zm1.79-.38L10.71 10l4.58 4.58a6.97 6.97 0 0 0 1.66-3.75l-.42-.07c-.9-.18-1.88-.43-2.77-.78a7.57 7.57 0 0 1-1.97-1.06Zm5.2.9a6.97 6.97 0 0 0-1.7-4.4L12.5 8.2c.43.32.99.6 1.61.85a16.39 16.39 0 0 0 2.89.78ZM11.8 7.5l2.8-2.8A6.98 6.98 0 0 0 10.16 3l.06.27c.17.87.4 1.8.72 2.62.25.62.53 1.18.85 1.6ZM10 10.7 8.92 11.8c.44.55.79 1.25 1.06 1.96a17.37 17.37 0 0 1 .86 3.2 6.97 6.97 0 0 0 3.74-1.66L10 10.71Zm-1.8 1.8-2.78 2.8a6.97 6.97 0 0 0 4.4 1.7c0-.1-.03-.18-.04-.27-.18-.87-.41-1.8-.73-2.62a6.83 6.83 0 0 0-.84-1.6Zm-.7-.7c-.43-.33-.98-.6-1.61-.85A16.38 16.38 0 0 0 3 10.17c.04 1.58.61 3.15 1.7 4.41l2.8-2.79Zm.71-.72L9.3 10 4.71 5.42a6.97 6.97 0 0 0-1.66 3.74l.42.08c.9.18 1.88.43 2.78.78.72.28 1.4.62 1.96 1.06Zm7.45 4.58A8 8 0 1 1 4.34 4.34a8 8 0 0 1 11.32 11.32Z\"]);\nexport const SportHockeyFilled = /*#__PURE__*/createFluentIcon('SportHockeyFilled', \"1em\", [\"M11.97 2.06a3.7 3.7 0 0 1 3.45 1.3l1.71 1.93c.75.84 1.08 2.02.73 3.13-2.1 6.7-7.03 9.08-10.19 9.55-.9.14-1.76-.22-2.39-.78l-1.8-1.6A4.07 4.07 0 0 1 2.2 11.2c2.12-5.99 6.46-8.47 9.76-9.15Zm2.52 3.52a.5.5 0 1 0-.98-.16 10.9 10.9 0 0 1-3.05 5.9 10.32 10.32 0 0 1-4.1 2.7.5.5 0 1 0 .28.96c1.25-.36 3-1.38 4.53-2.96a11.89 11.89 0 0 0 3.32-6.44Z\"]);\nexport const SportHockeyRegular = /*#__PURE__*/createFluentIcon('SportHockeyRegular', \"1em\", [\"M11.97 2.06a3.7 3.7 0 0 1 3.45 1.3l1.71 1.93c.75.84 1.08 2.02.73 3.13-2.1 6.7-7.03 9.08-10.19 9.55-.9.14-1.76-.22-2.39-.78l-1.8-1.6A4.07 4.07 0 0 1 2.2 11.2c2.12-5.99 6.46-8.47 9.76-9.15Zm2.7 1.97c-.68-.76-1.6-1.17-2.5-.99-3 .61-7.03 2.89-9.02 8.5-.4 1.15.02 2.44.98 3.3l1.82 1.6c.46.41 1.03.63 1.57.54 2.85-.42 7.41-2.57 9.39-8.86.23-.73.02-1.55-.53-2.16l-1.71-1.93Zm-.6.98c.28.04.47.3.42.57a11.89 11.89 0 0 1-3.32 6.44 11.28 11.28 0 0 1-4.53 2.96.5.5 0 0 1-.28-.96c1.05-.3 2.66-1.22 4.1-2.7a10.9 10.9 0 0 0 3.05-5.9.5.5 0 0 1 .57-.41Z\"]);\nexport const SportSoccerFilled = /*#__PURE__*/createFluentIcon('SportSoccerFilled', \"1em\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM7.1 3.63l2.4 1.4v1.7L6.73 8.7l-1.56-.57-.62-2.51a7.02 7.02 0 0 1 2.54-1.98ZM3.02 10.7l1.83-1.62 1.55.56 1.04 3.3L6.73 14H4.25a6.96 6.96 0 0 1-1.22-3.3Zm5.34 6.12-.81-2.25.7-1.06h3.47l.72 1.06-.82 2.25a7.02 7.02 0 0 1-3.26 0ZM15.75 14h-2.48l-.72-1.08 1.02-3.29 1.57-.56 1.83 1.62a6.96 6.96 0 0 1-1.22 3.3Zm-.3-8.38-.62 2.5-1.58.57-2.75-1.95v-1.7l2.4-1.4c1 .45 1.88 1.13 2.56 1.98Z\"]);\nexport const SportSoccerRegular = /*#__PURE__*/createFluentIcon('SportSoccerRegular', \"1em\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.34 3.2a7.02 7.02 0 0 1 3.33 0L10 4.17 8.34 3.2Zm-1.25.43 2.41 1.4v1.7L6.73 8.7l-1.56-.57-.62-2.51a7.02 7.02 0 0 1 2.54-1.98ZM3.8 6.75l.4 1.58-1.17 1.03c.08-.94.35-1.82.77-2.61Zm-.77 3.94 1.83-1.62 1.55.56 1.04 3.3L6.73 14H4.25a6.96 6.96 0 0 1-1.22-3.3ZM5.1 15h1.55l.51 1.41A7.01 7.01 0 0 1 5.1 15Zm3.27 1.82-.81-2.25.7-1.06h3.47l.72 1.06-.82 2.25a7.02 7.02 0 0 1-3.26 0Zm4.47-.41.51-1.4h1.55a7.02 7.02 0 0 1-2.06 1.4Zm2.9-2.4h-2.47l-.72-1.08 1.02-3.29 1.57-.56 1.83 1.62a6.96 6.96 0 0 1-1.22 3.3Zm1.23-4.64-1.16-1.03.4-1.58c.4.8.68 1.68.76 2.6Zm-1.51-3.74-.63 2.5-1.58.57-2.75-1.95v-1.7l2.4-1.4c1 .45 1.88 1.13 2.56 1.98ZM7.4 9.45 10 7.6l2.59 1.84-.96 3.05H8.37L7.4 9.45Z\"]);\nexport const SquareFilled = /*#__PURE__*/createFluentIcon('SquareFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Z\"]);\nexport const SquareRegular = /*#__PURE__*/createFluentIcon('SquareRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-2a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Z\"]);\nexport const SquareAddFilled = /*#__PURE__*/createFluentIcon('SquareAddFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const SquareAddRegular = /*#__PURE__*/createFluentIcon('SquareAddRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6c-.16-.32-.3-.65-.4-1H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.2c.35.1.68.24 1 .4V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const SquareArrowForwardFilled = /*#__PURE__*/createFluentIcon('SquareArrowForwardFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 12 16.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 11.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareArrowForwardRegular = /*#__PURE__*/createFluentIcon('SquareArrowForwardRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6c-.32-.16-.65-.3-1-.4V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h3.2c.1.35.24.68.4 1H6a3 3 0 0 1-3-3V6Zm11.5 13a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 12 16.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 11.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareDismissFilled = /*#__PURE__*/createFluentIcon('SquareDismissFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareDismissRegular = /*#__PURE__*/createFluentIcon('SquareDismissRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6c-.16-.32-.3-.65-.4-1H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.2c.35.1.68.24 1 .4V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareEraserFilled = /*#__PURE__*/createFluentIcon('SquareEraserFilled', \"1em\", [\"m8.73 13.64 4.9-4.9A2.48 2.48 0 0 1 17 8.59V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h2.6a2.5 2.5 0 0 1 .13-3.36Zm7.74-4.2 2.1 2.1a1.5 1.5 0 0 1 0 2.12l-3.6 3.6-4.22-4.22 3.6-3.6a1.5 1.5 0 0 1 2.12 0Zm-2.21 8.52-4.22-4.22-.6.6a1.5 1.5 0 0 0 0 2.13l2.1 2.1a1.5 1.5 0 0 0 1.12.43h4.09a.5.5 0 0 0 0-1h-2.53l.04-.04Z\"]);\nexport const SquareEraserRegular = /*#__PURE__*/createFluentIcon('SquareEraserRegular', \"1em\", [\"M8.08 16H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2.08c.37.09.71.26 1 .5V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h2.6a2.47 2.47 0 0 1-.52-1Zm1.36.47a1.5 1.5 0 0 1 0-2.13l4.9-4.9a1.5 1.5 0 0 1 2.12 0l2.1 2.1a1.5 1.5 0 0 1 0 2.13L14.22 18h2.53a.5.5 0 0 1 0 1h-4.1a1.5 1.5 0 0 1-1.12-.44l-2.1-2.1Zm5.61-6.32-3.6 3.6 2.8 2.8 3.6-3.6a.5.5 0 0 0 0-.71l-2.1-2.1a.5.5 0 0 0-.7 0Zm-1.5 7.1-2.8-2.8-.6.6a.5.5 0 0 0 0 .71l2.1 2.1a.5.5 0 0 0 .7 0l.6-.6Z\"]);\nexport const SquareHintFilled = /*#__PURE__*/createFluentIcon('SquareHintFilled', \"1em\", [\"M9.25 3a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3 10.75a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm5.5 5.5c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm7-5.5a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm-9.5-7A.75.75 0 0 0 5.25 3C4.01 3 3 4 3 5.25a.75.75 0 0 0 1.5 0c0-.41.34-.75.75-.75S6 4.16 6 3.75ZM5.25 17a.75.75 0 0 0 0-1.5.75.75 0 0 1-.75-.75.75.75 0 0 0-1.5 0C3 15.99 4 17 5.25 17ZM14 3.75c0-.41.34-.75.75-.75C15.99 3 17 4 17 5.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM14.75 17a.75.75 0 0 1 0-1.5c.41 0 .75-.34.75-.75a.75.75 0 0 1 1.5 0c0 1.24-1 2.25-2.25 2.25Z\"]);\nexport const SquareHintRegular = /*#__PURE__*/createFluentIcon('SquareHintRegular', \"1em\", [\"M6 3.5a.5.5 0 0 0-.5-.5A2.5 2.5 0 0 0 3 5.5a.5.5 0 0 0 1 0C4 4.67 4.67 4 5.5 4a.5.5 0 0 0 .5-.5ZM16.5 6a.5.5 0 0 0 .5-.5A2.5 2.5 0 0 0 14.5 3a.5.5 0 0 0 0 1c.83 0 1.5.67 1.5 1.5 0 .28.22.5.5.5Zm-2 11a.5.5 0 0 1 0-1c.83 0 1.5-.67 1.5-1.5a.5.5 0 0 1 1 0 2.5 2.5 0 0 1-2.5 2.5Zm-11-3a.5.5 0 0 0-.5.5A2.5 2.5 0 0 0 5.5 17a.5.5 0 0 0 0-1A1.5 1.5 0 0 1 4 14.5a.5.5 0 0 0-.5-.5ZM3 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9Zm13.5-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5Zm-8-5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5ZM9 16a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Z\"]);\nexport const SquareHintAppsFilled = /*#__PURE__*/createFluentIcon('SquareHintAppsFilled', \"1em\", [\"M8.5 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4.05 5.54a2 2 0 0 1 1.55-1.5.5.5 0 0 0 .4-.59.5.5 0 0 0-.66-.38 3 3 0 0 0-2.29 2.34.5.5 0 0 0 .4.6.5.5 0 0 0 .6-.47Zm0 8.92a2 2 0 0 0 1.55 1.5.5.5 0 0 1 .4.59.5.5 0 0 1-.66.38 3 3 0 0 1-2.29-2.34.5.5 0 0 1 .4-.6.5.5 0 0 1 .6.47ZM14.66 3.07a.5.5 0 0 0-.66.38.5.5 0 0 0 .46.6 2 2 0 0 1 1.5 1.55.5.5 0 0 0 .59.4.5.5 0 0 0 .38-.66 3 3 0 0 0-2.27-2.27ZM3 11.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-1 0v3ZM6.5 5C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5H7v-.25A2.75 2.75 0 0 1 9.75 12H12V9.75A2.75 2.75 0 0 1 14.75 7H15v-.5c0-.83-.67-1.5-1.5-1.5h-7ZM19 9.75C19 8.78 18.22 8 17.25 8h-2.5C13.78 8 13 8.78 13 9.75V13H9.75C8.78 13 8 13.78 8 14.75v2.5c0 .97.78 1.75 1.75 1.75h6.75a2.5 2.5 0 0 0 2.5-2.5V9.75ZM14 13V9.75c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V13h-4Zm2.5 5H14v-4h4v2.5c0 .83-.67 1.5-1.5 1.5Zm-6.75-4H13v4H9.75a.75.75 0 0 1-.75-.75v-2.5c0-.41.34-.75.75-.75Z\"]);\nexport const SquareHintAppsRegular = /*#__PURE__*/createFluentIcon('SquareHintAppsRegular', \"1em\", [\"M8.5 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4.05 5.54a2 2 0 0 1 1.55-1.5.5.5 0 0 0 .4-.59.5.5 0 0 0-.66-.38 3 3 0 0 0-2.29 2.34.5.5 0 0 0 .4.6.5.5 0 0 0 .6-.47Zm0 8.92a2 2 0 0 0 1.55 1.5.5.5 0 0 1 .4.59.5.5 0 0 1-.66.38 3 3 0 0 1-2.29-2.34.5.5 0 0 1 .4-.6.5.5 0 0 1 .6.47ZM14.66 3.07a.5.5 0 0 0-.66.38.5.5 0 0 0 .46.6 2 2 0 0 1 1.5 1.55.5.5 0 0 0 .59.4.5.5 0 0 0 .38-.66 3 3 0 0 0-2.27-2.27ZM3 11.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-1 0v3Zm16-1.75C19 8.78 18.22 8 17.25 8h-2.5C13.78 8 13 8.78 13 9.75V13H9.75C8.78 13 8 13.78 8 14.75v2.5c0 .97.78 1.75 1.75 1.75h6.75a2.5 2.5 0 0 0 2.5-2.5V9.75ZM14 13V9.75c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V13h-4Zm2.5 5H14v-4h4v2.5c0 .83-.67 1.5-1.5 1.5Zm-6.75-4H13v4H9.75a.75.75 0 0 1-.75-.75v-2.5c0-.41.34-.75.75-.75Z\"]);\nexport const SquareHintArrowBackFilled = /*#__PURE__*/createFluentIcon('SquareHintArrowBackFilled', \"1em\", [\"M9.25 3a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3 10.75a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm4.5 5.5c0-.41.34-.75.75-.75h.84c.1.53.27 1.03.51 1.5H8.25a.75.75 0 0 1-.75-.75Zm8-7.16c.53.1 1.03.27 1.5.51V8.25a.75.75 0 0 0-1.5 0v.84ZM6 3.75A.75.75 0 0 0 5.25 3C4.01 3 3 4 3 5.25a.75.75 0 0 0 1.5 0c0-.41.34-.75.75-.75S6 4.16 6 3.75ZM5.25 17a.75.75 0 0 0 0-1.5.75.75 0 0 1-.75-.75.75.75 0 0 0-1.5 0C3 15.99 4 17 5.25 17ZM14 3.75c0-.41.34-.75.75-.75C15.99 3 17 4 17 5.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const SquareHintArrowBackRegular = /*#__PURE__*/createFluentIcon('SquareHintArrowBackRegular', \"1em\", [\"M6 3.5a.5.5 0 0 0-.5-.5A2.5 2.5 0 0 0 3 5.5a.5.5 0 0 0 1 0C4 4.67 4.67 4 5.5 4a.5.5 0 0 0 .5-.5ZM16.5 6a.5.5 0 0 0 .5-.5A2.5 2.5 0 0 0 14.5 3a.5.5 0 0 0 0 1c.83 0 1.5.67 1.5 1.5 0 .28.22.5.5.5Zm-13 8a.5.5 0 0 0-.5.5A2.5 2.5 0 0 0 5.5 17a.5.5 0 0 0 0-1A1.5 1.5 0 0 1 4 14.5a.5.5 0 0 0-.5-.5ZM3 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9Zm13.5-1.5a.5.5 0 0 0-.5.5v1.2c.35.1.68.24 1 .4V8a.5.5 0 0 0-.5-.5ZM9.6 17c-.16-.32-.3-.65-.4-1H8a.5.5 0 0 0 0 1h1.6ZM8.5 3.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Zm6 15.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const SquareHintHexagonFilled = /*#__PURE__*/createFluentIcon('SquareHintHexagonFilled', \"1em\", [\"M5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM17 5.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 17 5.5Zm-3 11c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5ZM16 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9ZM9 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Zm-.5 13.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5ZM7.33 6.63c.23-.4.64-.63 1.09-.63h3.17c.44 0 .86.24 1.08.63l1.58 2.75c.23.38.23.86 0 1.24l-1.58 2.75c-.22.4-.64.63-1.08.63H8.42c-.45 0-.86-.24-1.09-.63l-1.58-2.75a1.25 1.25 0 0 1 0-1.24l1.58-2.75Z\"]);\nexport const SquareHintHexagonRegular = /*#__PURE__*/createFluentIcon('SquareHintHexagonRegular', \"1em\", [\"M5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM17 5.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 17 5.5Zm-3 11c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5ZM16 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9ZM9 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Zm-.5 13.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Zm-.3-9.37A.25.25 0 0 1 8.42 7h3.17c.09 0 .17.05.21.13l1.59 2.75c.04.07.04.17 0 .24l-1.59 2.75a.25.25 0 0 1-.21.13H8.42a.25.25 0 0 1-.22-.13l-1.59-2.75a.25.25 0 0 1 0-.24L8.2 7.13ZM8.42 6c-.45 0-.86.24-1.09.63L5.75 9.38c-.23.38-.23.86 0 1.24l1.58 2.75c.23.4.64.63 1.09.63h3.17c.44 0 .86-.24 1.08-.63l1.58-2.75c.23-.38.23-.86 0-1.24l-1.58-2.75A1.25 1.25 0 0 0 11.59 6H8.42Z\"]);\nexport const SquareHintSparklesFilled = /*#__PURE__*/createFluentIcon('SquareHintSparklesFilled', \"1em\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM10 3.5c0-.17.04-.34.1-.5h-.85a.75.75 0 0 0 0 1.5h1.18a1.43 1.43 0 0 1-.43-1Zm-6.25 8a.75.75 0 0 1-.75-.75v-1.5a.75.75 0 0 1 1.5 0v1.5c0 .41-.34.75-.75.75Zm5.5 4a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM5.25 3a.75.75 0 0 1 0 1.5.75.75 0 0 0-.75.75.75.75 0 0 1-1.5 0C3 4.01 4 3 5.25 3ZM6 16.25c0 .41-.34.75-.75.75C4.01 17 3 16 3 14.75a.75.75 0 0 1 1.5 0c0 .41.34.75.75.75s.75.34.75.75Zm8 0c0 .41.34.75.75.75 1.24 0 2.25-1 2.25-2.25a.75.75 0 0 0-1.5 0c0 .41-.34.75-.75.75a.75.75 0 0 0-.75.75Z\"]);\nexport const SquareHintSparklesRegular = /*#__PURE__*/createFluentIcon('SquareHintSparklesRegular', \"1em\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM10 3.5c0-.17.04-.34.1-.5H9a.5.5 0 0 0 0 1h1.1c-.06-.16-.1-.33-.1-.5ZM5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM14 16.5c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5Zm5 8c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Z\"]);\nexport const SquareMultipleFilled = /*#__PURE__*/createFluentIcon('SquareMultipleFilled', \"1em\", [\"M6.09 4H5.05A2.5 2.5 0 0 1 7.5 2H14a4 4 0 0 1 4 4v6.5a2.5 2.5 0 0 1-2 2.45v-1.04c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H7.5c-.65 0-1.2.42-1.41 1ZM2 7.5A2.5 2.5 0 0 1 4.5 5h8A2.5 2.5 0 0 1 15 7.5v8a2.5 2.5 0 0 1-2.5 2.5h-8A2.5 2.5 0 0 1 2 15.5v-8Z\"]);\nexport const SquareMultipleRegular = /*#__PURE__*/createFluentIcon('SquareMultipleRegular', \"1em\", [\"M6.09 4H5.05A2.5 2.5 0 0 1 7.5 2H14a4 4 0 0 1 4 4v6.5a2.5 2.5 0 0 1-2 2.45v-1.04c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H7.5c-.65 0-1.2.42-1.41 1ZM4.5 5A2.5 2.5 0 0 0 2 7.5v8A2.5 2.5 0 0 0 4.5 18h8a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 12.5 5h-8ZM3 7.5C3 6.67 3.67 6 4.5 6h8c.83 0 1.5.67 1.5 1.5v8c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 3 15.5v-8Z\"]);\nexport const SquareShadowFilled = /*#__PURE__*/createFluentIcon('SquareShadowFilled', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14H6v1.5A2.5 2.5 0 0 0 8.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 6H14V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm-1 2.5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-7Z\"]);\nexport const SquareShadowRegular = /*#__PURE__*/createFluentIcon('SquareShadowRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14H6v1.5A2.5 2.5 0 0 0 8.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 6H14V4.5A2.5 2.5 0 0 0 11.5 2h-7ZM3 4.5C3 3.67 3.67 3 4.5 3h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7Z\"]);\nexport const SquaresNestedFilled = /*#__PURE__*/createFluentIcon('SquaresNestedFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v1.76A2.99 2.99 0 0 0 15 7h-5a3 3 0 0 0-3 3v5c0 .77.29 1.47.76 2H6a3 3 0 0 1-3-3V6Zm7 11h4a3 3 0 0 0 3-3v-4a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2Z\"]);\nexport const SquaresNestedRegular = /*#__PURE__*/createFluentIcon('SquaresNestedRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm10 4.76A2.99 2.99 0 0 0 14 7h-4a3 3 0 0 0-3 3v4c0 .77.29 1.47.76 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v1.76ZM10 16a2 2 0 0 1-2-2v-4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4Z\"]);\nexport const StackFilled = /*#__PURE__*/createFluentIcon('StackFilled', \"1em\", [\"M4 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Zm.27 11c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V7a2 2 0 0 0-1-1.73V11a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9a2 2 0 0 0-1-1.73V11a5 5 0 0 1-5 5H6.27Z\"]);\nexport const StackRegular = /*#__PURE__*/createFluentIcon('StackRegular', \"1em\", [\"M2 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Zm2 11a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V5.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V7.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const StackAddFilled = /*#__PURE__*/createFluentIcon('StackAddFilled', \"1em\", [\"M10 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V6H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V7h1.5a.5.5 0 0 0 0-1H6V4.5ZM5.5 12a5.5 5.5 0 0 0 4.9-8H12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.26A5.48 5.48 0 0 0 5.5 12Zm-1.23 3c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V8a2 2 0 0 0-1-1.73V12a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6v-2a2 2 0 0 0-1-1.73V12a5 5 0 0 1-5 5H6.27Z\"]);\nexport const StackAddRegular = /*#__PURE__*/createFluentIcon('StackAddRegular', \"1em\", [\"M10 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V6H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V7h1.5a.5.5 0 0 0 0-1H6V4.5Zm6 .5h-1.2c-.1-.35-.24-.68-.4-1H12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.26c.3.26.64.48 1 .66v.6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1ZM6 16a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V6.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V8.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const StackArrowForwardFilled = /*#__PURE__*/createFluentIcon('StackArrowForwardFilled', \"1em\", [\"M14.5 10a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm1.6-7.1a.5.5 0 0 0-.7.7l.9.9h-1.55A2.75 2.75 0 0 0 12 7.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 2.9ZM4 3h5.6a5.5 5.5 0 0 0 4.4 7.98V11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2Zm11 7.98c.34-.03.68-.1 1-.19V11a4 4 0 0 1-4 4H6a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3v-.02Zm3-1.24c-.3.26-.64.48-1 .66v.6a5 5 0 0 1-5 5H6.27c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9.74Z\"]);\nexport const StackArrowForwardRegular = /*#__PURE__*/createFluentIcon('StackArrowForwardRegular', \"1em\", [\"M14.5 10a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm1.6-7.1a.5.5 0 0 0-.7.7l.9.9h-1.55A2.75 2.75 0 0 0 12 7.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 2.9ZM14 11v-.02c-.34-.03-.68-.1-1-.19V11a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5.2c.1-.35.24-.68.4-1H4a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2Zm1-.02c.34-.03.68-.1 1-.19V11a4 4 0 0 1-4 4H6a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3v-.02Zm3-1.24c-.3.26-.64.48-1 .66v.6a5 5 0 0 1-5 5H6.27c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9.74Z\"]);\nexport const StackStarFilled = /*#__PURE__*/createFluentIcon('StackStarFilled', \"1em\", [\"M4 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Zm4.33 2.08.91 1.73 1.8.22a.38.38 0 0 1 .2.67L9.91 8.74l.45 1.93a.38.38 0 0 1-.56.4L8 10l-1.8 1.08a.38.38 0 0 1-.57-.4l.45-1.93L4.77 7.7a.38.38 0 0 1 .19-.67l1.8-.22.9-1.73a.38.38 0 0 1 .67 0ZM4.27 14c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V7a2 2 0 0 0-1-1.73V11a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9a2 2 0 0 0-1-1.73V11a5 5 0 0 1-5 5H6.27Z\"]);\nexport const StackStarRegular = /*#__PURE__*/createFluentIcon('StackStarRegular', \"1em\", [\"M8 4.75c.19 0 .36.1.44.27l.88 1.68 1.74.2a.5.5 0 0 1 .25.9l-1.25 1 .43 1.84a.5.5 0 0 1-.75.54L8 10.14l-1.74 1.04a.5.5 0 0 1-.75-.54l.43-1.85-1.25-1a.5.5 0 0 1 .25-.88l1.74-.21.88-1.68A.5.5 0 0 1 8 4.75ZM2 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Zm2 11a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V5.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V7.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const StackVerticalFilled = /*#__PURE__*/createFluentIcon('StackVerticalFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v10.75a.75.75 0 0 1-1.5 0V13.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v2.75a.75.75 0 0 1-1.5 0V5.5Zm1.5 5.7c.3-.13.64-.2 1-.2h9c.36 0 .7.07 1 .2V9.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v1.7Zm11-5.7a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v1.7c.3-.13.64-.2 1-.2h9c.36 0 .7.07 1 .2V5.5Z\"]);\nexport const StackVerticalRegular = /*#__PURE__*/createFluentIcon('StackVerticalRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v11a.5.5 0 0 1-1 0v-3c0-.83-.67-1.5-1.5-1.5h-9c-.83 0-1.5.67-1.5 1.5v3a.5.5 0 0 1-1 0v-11Zm1 6c.42-.31.94-.5 1.5-.5h9c.56 0 1.08.19 1.5.5v-2c0-.83-.67-1.5-1.5-1.5h-9C4.67 8 4 8.67 4 9.5v2Zm12-6c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v2c.42-.31.94-.5 1.5-.5h9c.56 0 1.08.19 1.5.5v-2Z\"]);\nexport const StarFilled = /*#__PURE__*/createFluentIcon('StarFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Z\"]);\nexport const StarRegular = /*#__PURE__*/createFluentIcon('StarRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9.44L8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.87-2.03a1 1 0 0 1 .93 0l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35Z\"]);\nexport const StarAddFilled = /*#__PURE__*/createFluentIcon('StarAddFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 1 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const StarAddRegular = /*#__PURE__*/createFluentIcon('StarAddRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.46 5.46 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.35-1.76c.02.36.08.7.17 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 1 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const StarArrowBackFilled = /*#__PURE__*/createFluentIcon('StarArrowBackFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const StarArrowBackRegular = /*#__PURE__*/createFluentIcon('StarArrowBackRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.47 5.47 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.34-1.76c.03.36.09.7.18 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const StarArrowRightEndFilled = /*#__PURE__*/createFluentIcon('StarArrowRightEndFilled', \"1em\", [\"M10.9 2.56a1 1 0 0 0-1.8 0L7.17 6.45l-4.31.62a1 1 0 0 0-.56 1.7l3.13 3.03-.74 4.28a1 1 0 0 0 1.45 1.05l3.05-1.6a5.46 5.46 0 0 1 5.31-6.9c.96 0 1.86.24 2.65.67l.55-.53a1 1 0 0 0-.56-1.7l-4.31-.62-1.93-3.9ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.15 2.35a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const StarArrowRightEndRegular = /*#__PURE__*/createFluentIcon('StarArrowRightEndRegular', \"1em\", [\"M10.9 2.56a1 1 0 0 0-1.8 0L7.17 6.45l-4.31.62a1 1 0 0 0-.56 1.7l3.13 3.03-.74 4.28a1 1 0 0 0 1.45 1.05l3.05-1.6a5.44 5.44 0 0 1-.17-1.03l-3.35 1.75.74-4.28a1 1 0 0 0-.29-.88L3 8.06l4.32-.63a1 1 0 0 0 .75-.54L10 2.99l1.93 3.9c.15.3.43.5.75.54l4.32.63-.85.82c.35.11.69.25 1 .42l.55-.53a1 1 0 0 0-.56-1.7l-4.31-.62-1.93-3.9ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.15 2.35a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const StarArrowRightStartFilled = /*#__PURE__*/createFluentIcon('StarArrowRightStartFilled', \"1em\", [\"M9.1 2.56a1 1 0 0 1 1.8 0l1.93 3.9 4.31.64a1 1 0 0 1 .56 1.7l-3.13 3.05.74 4.3a1 1 0 0 1-1.45 1.05l-2.98-1.57a5.52 5.52 0 0 0-7.8-6.07L2.3 8.8a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.56ZM5.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const StarArrowRightStartRegular = /*#__PURE__*/createFluentIcon('StarArrowRightStartRegular', \"1em\", [\"M9.1 2.56a1 1 0 0 1 1.8 0l1.93 3.89 4.31.62a1 1 0 0 1 .56 1.7l-3.13 3.03.74 4.28a1 1 0 0 1-1.45 1.05l-2.97-1.55c.07-.35.1-.7.11-1.07l3.33 1.74-.74-4.28a1 1 0 0 1 .29-.88L17 8.06l-4.32-.63a1 1 0 0 1-.75-.54L10 2.99 8.07 6.9a1 1 0 0 1-.75.54L3 8.06l1.14 1.1c-.36.1-.7.23-1.04.39l-.8-.78a1 1 0 0 1 .56-1.7l4.31-.62 1.93-3.9ZM5.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const StarCheckmarkFilled = /*#__PURE__*/createFluentIcon('StarCheckmarkFilled', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.5 5.5 0 0 1 7.96-6.26l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmarkRegular = /*#__PURE__*/createFluentIcon('StarCheckmarkRegular', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.49 5.49 0 0 1-.18-1.04l-3.34 1.76.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.85.82c.35.11.69.26 1 .43l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarDismissFilled = /*#__PURE__*/createFluentIcon('StarDismissFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarDismissRegular = /*#__PURE__*/createFluentIcon('StarDismissRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.47 5.47 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.34-1.76c.03.36.09.7.18 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarEditFilled = /*#__PURE__*/createFluentIcon('StarEditFilled', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.43-1.8c.16-.4.4-.76.7-1.07l4.83-4.83a2.87 2.87 0 0 1 2.67-.77 1 1 0 0 0-.63-1.63l-4.31-.63L10.9 2.9Zm4.9 7.65-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const StarEditRegular = /*#__PURE__*/createFluentIcon('StarEditRegular', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.43-1.8c.16-.4.4-.76.7-1.07l.1-.09a1 1 0 0 0-.83.05l-3.87 2.03.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.72.7c.48-.15 1-.17 1.49-.06a1 1 0 0 0-.63-1.63l-4.31-.63L10.9 2.9Zm4.9 7.65-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const StarEmphasisFilled = /*#__PURE__*/createFluentIcon('StarEmphasisFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM4.4 12.69a.5.5 0 0 1-.08.7l-2.5 2a.5.5 0 1 1-.62-.78l2.5-2a.5.5 0 0 1 .7.08ZM4.31 5.1a.5.5 0 1 1-.62.78l-2.5-2a.5.5 0 1 1 .62-.78l2.5 2Zm11.3 7.58a.5.5 0 0 0 .08.7l2.5 2a.5.5 0 1 0 .62-.78l-2.5-2a.5.5 0 0 0-.7.08Zm.08-7.58a.5.5 0 0 0 .62.78l2.5-2a.5.5 0 1 0-.62-.78l-2.5 2Z\"]);\nexport const StarEmphasisRegular = /*#__PURE__*/createFluentIcon('StarEmphasisRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9.44L8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.87-2.03a1 1 0 0 1 .93 0l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35ZM4.4 12.7a.5.5 0 0 1-.08.7l-2.5 2a.5.5 0 1 1-.62-.78l2.5-2a.5.5 0 0 1 .7.08ZM4.31 5.1a.5.5 0 1 1-.62.78l-2.5-2a.5.5 0 1 1 .62-.78l2.5 2Zm11.3 7.58a.5.5 0 0 0 .08.7l2.5 2a.5.5 0 1 0 .62-.78l-2.5-2a.5.5 0 0 0-.7.08Zm.08-7.58a.5.5 0 0 0 .62.78l2.5-2a.5.5 0 1 0-.62-.78l-2.5 2Z\"]);\nexport const StarHalfFilled = /*#__PURE__*/createFluentIcon('StarHalfFilled', \"1em\", [\"M10 2.34a.99.99 0 0 0-.9.56L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51V2.34Z\"]);\nexport const StarHalfRegular = /*#__PURE__*/createFluentIcon('StarHalfRegular', \"1em\", [\"M9.1 2.9a.99.99 0 0 1 .9-.56c.36 0 .71.19.9.56l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM10 14.5a1 1 0 0 1 .47.12l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35V14.5Z\"]);\nexport const StarLineHorizontal3Filled = /*#__PURE__*/createFluentIcon('StarLineHorizontal3Filled', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L11 14.98V13.5c0-.83.67-1.5 1.5-1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1-.07-3L10.9 2.9Zm1.6 7.1a.5.5 0 1 0 0 1h5a.5.5 0 1 0 0-1h-5ZM12 7.5c0-.28.23-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 5.5a.5.5 0 1 0 0 1h5a.5.5 0 1 0 0-1h-5Z\"]);\nexport const StarLineHorizontal3Regular = /*#__PURE__*/createFluentIcon('StarLineHorizontal3Regular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0L12.92 7h4.58a.5.5 0 1 1 0 1h-4.58a1 1 0 0 1-.9-.56L10 3.34 8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 4.1-2.16a.5.5 0 0 1 .46.89l-4.09 2.15a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm2.9 7.6c0-.28.22-.5.5-.5h5a.5.5 0 1 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 1 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const StarOffFilled = /*#__PURE__*/createFluentIcon('StarOffFilled', \"1em\", [\"M2.86 2.15a.5.5 0 1 0-.71.7l4.1 4.1-3.4.49a1 1 0 0 0-.55 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.1-.57 1.94 1.93a.5.5 0 0 0 .7-.7l-15-15Zm11.72 10.04.05.32-6.87-6.88L9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05Z\"]);\nexport const StarOffRegular = /*#__PURE__*/createFluentIcon('StarOffRegular', \"1em\", [\"M2.86 2.15a.5.5 0 1 0-.71.7l4.1 4.1-3.4.49a1 1 0 0 0-.55 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.1-.57 1.94 1.93a.5.5 0 0 0 .7-.7l-15-15ZM13.99 14.7l.34 1.96-3.86-2.03a1 1 0 0 0-.93 0l-3.87 2.03.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.12-.6L14 14.7Zm-.11-3.23a1 1 0 0 0-.13.16l.88.88-.05-.32 3.12-3.05a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9a1 1 0 0 0-1.8 0L7.76 5.63l.74.75L10 3.34l1.93 3.91c.15.3.43.5.75.55l4.32.63-3.12 3.04Z\"]);\nexport const StarOneQuarterFilled = /*#__PURE__*/createFluentIcon('StarOneQuarterFilled', \"1em\", [\"M8 5.14 7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L8 16.56V5.14Z\"]);\nexport const StarOneQuarterRegular = /*#__PURE__*/createFluentIcon('StarOneQuarterRegular', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L8 5.13l-.83 1.68-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.73-4.3 3.12-3.05a1 1 0 0 0-.55-1.7l-4.32-.63L10.9 2.9ZM8 15.43V7.37a1 1 0 0 0 .07-.12L10 3.35l1.93 3.9c.15.3.43.5.76.55l4.31.63-3.12 3.04a1 1 0 0 0-.29.89l.74 4.3-3.86-2.03a1 1 0 0 0-.93 0l-1.54.8Z\"]);\nexport const StarProhibitedFilled = /*#__PURE__*/createFluentIcon('StarProhibitedFilled', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9 11.6a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.78 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarProhibitedRegular = /*#__PURE__*/createFluentIcon('StarProhibitedRegular', \"1em\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.46 5.46 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.35-1.76c.02.36.08.7.17 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9 11.6a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.78 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarSettingsFilled = /*#__PURE__*/createFluentIcon('StarSettingsFilled', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.5 5.5 0 0 1 7.96-6.26l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9Zm-.27 11.02-.46.12a4.74 4.74 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55a2 2 0 0 1-1.44 2.48Zm4.87.58a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const StarSettingsRegular = /*#__PURE__*/createFluentIcon('StarSettingsRegular', \"1em\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.49 5.49 0 0 1-.18-1.04l-3.34 1.76.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.85.82c.35.11.69.26 1 .43l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9Zm-.27 11.02a2 2 0 0 0 1.44-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const StarThreeQuarterFilled = /*#__PURE__*/createFluentIcon('StarThreeQuarterFilled', \"1em\", [\"M12 5.13 10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l2 1.05V5.13Z\"]);\nexport const StarThreeQuarterRegular = /*#__PURE__*/createFluentIcon('StarThreeQuarterRegular', \"1em\", [\"m10.9 2.9 1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9a1 1 0 0 1 1.8 0ZM12 7.37v8.06l2.33 1.23-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.68-.43Z\"]);\nexport const StatusFilled = /*#__PURE__*/createFluentIcon('StatusFilled', \"1em\", [\"M17.35 2.65a2.62 2.62 0 0 0-3.7 0l-5.5 5.5a.5.5 0 0 0-.14.23l-1 4a.5.5 0 0 0 .61.6l4-1a.5.5 0 0 0 .23-.13l5.5-5.5a2.62 2.62 0 0 0 0-3.7Zm-1.4 6.53a6 6 0 1 1-5.12-5.12l.85-.86A7.02 7.02 0 0 0 3 10a7 7 0 1 0 13.8-1.68l-.86.86Z\"]);\nexport const StatusRegular = /*#__PURE__*/createFluentIcon('StatusRegular', \"1em\", [\"M17.35 2.65a2.62 2.62 0 0 0-3.7 0l-5.5 5.5a.5.5 0 0 0-.14.23l-1 4a.5.5 0 0 0 .61.6l4-1a.5.5 0 0 0 .23-.13l5.5-5.5a2.62 2.62 0 0 0 0-3.7Zm-3 .7a1.62 1.62 0 0 1 2.3 2.3l-5.4 5.4-3.06.76.76-3.05 5.4-5.4ZM10 4c.28 0 .55.02.82.06l.86-.86A7.02 7.02 0 0 0 3 10a7 7 0 1 0 13.8-1.68l-.86.86A6 6 0 1 1 10 4Z\"]);\nexport const StepFilled = /*#__PURE__*/createFluentIcon('StepFilled', \"1em\", [\"M13 2a1 1 0 0 0-1 1v4H8a1 1 0 0 0-1 1v4H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h12a3 3 0 0 0 3-3V3a1 1 0 0 0-1-1h-4Z\"]);\nexport const StepRegular = /*#__PURE__*/createFluentIcon('StepRegular', \"1em\", [\"M12 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a3 3 0 0 1-3 3H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h4V8a1 1 0 0 1 1-1h4V3Zm5 0h-4v4a1 1 0 0 1-1 1H8v4a1 1 0 0 1-1 1H3v4h12a2 2 0 0 0 2-2V3Z\"]);\nexport const StepsFilled = /*#__PURE__*/createFluentIcon('StepsFilled', \"1em\", [\"M11 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V3h-3v3a1 1 0 0 1-1 1H8v3a1 1 0 0 1-1 1H4v3h4v1H4a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Zm2 6a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v5.5a2.5 2.5 0 0 1-2.5 2.5H10a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V9Z\"]);\nexport const StepsRegular = /*#__PURE__*/createFluentIcon('StepsRegular', \"1em\", [\"M11 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V3h-3v3a1 1 0 0 1-1 1H8v3a1 1 0 0 1-1 1H4v3h4v1H4a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Zm3 5a1 1 0 0 0-1 1v3h-3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5.5a2.5 2.5 0 0 0 2.5-2.5V9a1 1 0 0 0-1-1h-3Zm0 1h3v5.5c0 .83-.67 1.5-1.5 1.5H10v-3h3a1 1 0 0 0 1-1V9Z\"]);\nexport const StethoscopeFilled = /*#__PURE__*/createFluentIcon('StethoscopeFilled', \"1em\", [\"M2.75 2a.75.75 0 0 0-.75.75v5a4.5 4.5 0 0 0 3.75 4.44v1.06a5.25 5.25 0 1 0 10.5 0v-1.1a2.75 2.75 0 1 0-1.5 0v1.1a3.75 3.75 0 1 1-7.5 0v-1.06A4.5 4.5 0 0 0 11 7.75v-5a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5h.75v4.25a3 3 0 1 1-6 0V3.5h.75a.75.75 0 0 0 0-1.5h-1.5ZM15.5 8.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const StethoscopeRegular = /*#__PURE__*/createFluentIcon('StethoscopeRegular', \"1em\", [\"M2.5 2a.5.5 0 0 0-.5.5v5a4.5 4.5 0 0 0 4 4.47V13a5 5 0 0 0 10 0v-1.05a2.5 2.5 0 1 0-1 0V13a4 4 0 1 1-8 0v-1.03a4.5 4.5 0 0 0 4-4.47v-5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0 0 1H10v4.5a3.5 3.5 0 0 1-7 0V3h1.5a.5.5 0 0 0 0-1h-2Zm13 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const StickerFilled = /*#__PURE__*/createFluentIcon('StickerFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h5v-3.08a5.87 5.87 0 0 1-3.47-.47 4.2 4.2 0 0 1-.86-.57l-.01-.02h-.01a.5.5 0 0 1 .7-.72 1 1 0 0 0 .14.12c.1.07.26.18.48.3A4.5 4.5 0 0 0 10 13c.43 0 .81-.05 1.15-.14a2.75 2.75 0 0 1 2.6-1.86H17V6a3 3 0 0 0-3-3H6Zm1.5 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-.7 8.41a2 2 0 0 1-.8.5v-3.16c0-.97.78-1.75 1.75-1.75h3.15a2 2 0 0 1-.49.8L12.8 16.4Z\"]);\nexport const StickerRegular = /*#__PURE__*/createFluentIcon('StickerRegular', \"1em\", [\"M7.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3 6v8a3 3 0 0 0 3 3h5.38a1.97 1.97 0 0 0 1.41-.59l3.62-3.62a2 2 0 0 0 .59-1.41V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3Zm13 0v5h-2.25c-1.2 0-2.24.78-2.6 1.86-.34.09-.72.14-1.15.14a4.5 4.5 0 0 1-2.51-.74 1.97 1.97 0 0 1-.14-.11.5.5 0 0 0-.7.7v.01l.02.02a2 2 0 0 0 .22.18 5.5 5.5 0 0 0 4.11.86V16H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2Zm-3.91 9.7a1 1 0 0 1-.09.08v-2.03c0-.97.78-1.75 1.75-1.75h2.03l-.07.09-3.62 3.62Z\"]);\nexport const StickerAddFilled = /*#__PURE__*/createFluentIcon('StickerAddFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6a5.5 5.5 0 0 0-7.78 3.34 4.23 4.23 0 0 1-1.73-.68 1.97 1.97 0 0 1-.14-.11.5.5 0 0 0-.7.7v.01l.02.02a2 2 0 0 0 .22.18 5.22 5.22 0 0 0 2.14.87A5.56 5.56 0 0 0 9.6 17H6a3 3 0 0 1-3-3V6Zm4.5 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm5.5 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const StickerAddRegular = /*#__PURE__*/createFluentIcon('StickerAddRegular', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6c-.32-.16-.65-.3-1-.4V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h3.2c.1.35.24.68.4 1H6a3 3 0 0 1-3-3V6Zm4.97 6.55c.3.15.72.31 1.25.4-.09.3-.16.64-.19.97a5.22 5.22 0 0 1-2.14-.86 2.93 2.93 0 0 1-.22-.18l-.01-.02h-.01a.5.5 0 0 1 .7-.72 1 1 0 0 0 .14.12c.1.07.26.18.48.3ZM7.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5.5 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const StopFilled = /*#__PURE__*/createFluentIcon('StopFilled', \"1em\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const StopRegular = /*#__PURE__*/createFluentIcon('StopRegular', \"1em\", [\"M15.5 4c.28 0 .5.22.5.5v11a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11c0-.28.22-.5.5-.5h11Zm-11-1C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const StorageFilled = /*#__PURE__*/createFluentIcon('StorageFilled', \"1em\", [\"M2 8.5A2.5 2.5 0 0 1 4.5 6h11A2.5 2.5 0 0 1 18 8.5v3a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 11.5v-3ZM13 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const StorageRegular = /*#__PURE__*/createFluentIcon('StorageRegular', \"1em\", [\"M13 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 8.5A2.5 2.5 0 0 1 4.5 6h11A2.5 2.5 0 0 1 18 8.5v3a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 11.5v-3ZM4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const StoreMicrosoftFilled = /*#__PURE__*/createFluentIcon('StoreMicrosoftFilled', \"1em\", [\"M7 2.5V4H2.5a.5.5 0 0 0-.5.5v10A2.5 2.5 0 0 0 4.5 17h11a2.5 2.5 0 0 0 2.5-2.5v-10a.5.5 0 0 0-.5-.5H13V2.5c0-.83-.67-1.5-1.5-1.5h-3C7.67 1 7 1.67 7 2.5ZM8.5 2h3c.28 0 .5.22.5.5V4H8V2.5c0-.28.22-.5.5-.5Zm-2 8V7h3v3h-3Zm0 4v-3h3v3h-3Zm7-4h-3V7h3v3Zm-3 4v-3h3v3h-3Z\"]);\nexport const StoreMicrosoftRegular = /*#__PURE__*/createFluentIcon('StoreMicrosoftRegular', \"1em\", [\"M9.5 7v3h-3V7h3Zm0 7v-3h-3v3h3Zm4-7v3h-3V7h3Zm0 7v-3h-3v3h3ZM7 4V2.5C7 1.67 7.67 1 8.5 1h3c.83 0 1.5.67 1.5 1.5V4h4.5c.28 0 .5.22.5.5v10a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5v-10c0-.28.22-.5.5-.5H7Zm1-1.5V4h4V2.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Zm-5 12c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5V5H3v9.5Z\"]);\nexport const StreamFilled = /*#__PURE__*/createFluentIcon('StreamFilled', \"1em\", [\"M7.5 9.25a5.75 5.75 0 0 1 5.75-5.75h.5a.75.75 0 0 0 0-1.5h-.5C9.25 2 6 5.25 6 9.25v1c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 0 0 1.5h2.5c1.24 0 2.25-1 2.25-2.25v-1Zm6.25-3A3.25 3.25 0 0 0 10.5 9.5v1a4.75 4.75 0 0 1-4.75 4.75h-3a.75.75 0 0 1 0-1.5h3c1.8 0 3.25-1.46 3.25-3.25v-1a4.75 4.75 0 0 1 4.75-4.75h3.5a.75.75 0 0 1 0 1.5h-3.5Zm.5 2.75a.75.75 0 0 0-.75.75v1c0 4-3.25 7.25-7.25 7.25h-.5a.75.75 0 0 1 0-1.5h.5A5.75 5.75 0 0 0 12 10.75v-1c0-1.24 1-2.25 2.25-2.25h3a.75.75 0 0 1 0 1.5h-3Z\"]);\nexport const StreamRegular = /*#__PURE__*/createFluentIcon('StreamRegular', \"1em\", [\"M7 9a6 6 0 0 1 6-6h.5a.5.5 0 0 0 0-1H13a7 7 0 0 0-7 7v1a1 1 0 0 1-1 1H2.5a.5.5 0 0 0 0 1H5a2 2 0 0 0 2-2V9Zm6.5-3A3.5 3.5 0 0 0 10 9.5v1A4.5 4.5 0 0 1 5.5 15h-3a.5.5 0 0 1 0-1h3A3.5 3.5 0 0 0 9 10.5v-1A4.5 4.5 0 0 1 13.5 5h4a.5.5 0 0 1 0 1h-4Zm.5 3a1 1 0 0 0-1 1v1a7 7 0 0 1-7 7h-.5a.5.5 0 0 1 0-1H6a6 6 0 0 0 6-6v-1c0-1.1.9-2 2-2h3.5a.5.5 0 0 1 0 1H14Z\"]);\nexport const StreamInputFilled = /*#__PURE__*/createFluentIcon('StreamInputFilled', \"1em\", [\"M7.5 9.25a5.75 5.75 0 0 1 5.75-5.75h.5a.75.75 0 0 0 0-1.5h-.5C9.25 2 6 5.25 6 9.25v1c0 .41-.34.75-.75.75H4.9l1.3 1.3a2.25 2.25 0 0 0 1.3-2.05v-1ZM6.4 16.5l-1.23 1.23c.14.16.35.27.58.27h.5c4 0 7.25-3.25 7.25-7.25v-1c0-.41.34-.75.75-.75h3a.75.75 0 0 0 0-1.5h-3c-1.24 0-2.25 1-2.25 2.25v1c0 3.12-2.5 5.67-5.6 5.75Zm.8-3.09c.26.48.34 1.02.23 1.53a4.75 4.75 0 0 0 3.07-4.44v-1c0-1.8 1.46-3.25 3.25-3.25h3.5a.75.75 0 0 0 0-1.5h-3.5A4.75 4.75 0 0 0 9 9.5v1c0 1.28-.74 2.38-1.8 2.91Zm-5.48-2.44c.3-.3.77-.3 1.06 0l3 3c.3.3.3.77 0 1.06l-3 3a.75.75 0 0 1-1.06-1.06l1.72-1.72H.75a.75.75 0 0 1 0-1.5h2.69l-1.72-1.72a.75.75 0 0 1 0-1.06Z\"]);\nexport const StreamInputRegular = /*#__PURE__*/createFluentIcon('StreamInputRegular', \"1em\", [\"M7 9a6 6 0 0 1 6-6h.5a.5.5 0 0 0 0-1H13a7 7 0 0 0-7 7v1a1 1 0 0 1-1 1h-.9l1 1A2 2 0 0 0 7 10V9ZM.5 14a.5.5 0 0 0 0 1h3.68l-2.14 2.15a.5.5 0 0 0 .7.7l3-2.99a.5.5 0 0 0 0-.72l-3-3a.5.5 0 0 0-.7.71L4.18 14H.5Zm9.5-3.5a4.5 4.5 0 0 1-3.15 4.3c.06-.35.01-.7-.12-1.02A3.5 3.5 0 0 0 9 10.5v-1A4.5 4.5 0 0 1 13.5 5h4a.5.5 0 0 1 0 1h-4A3.5 3.5 0 0 0 10 9.5v1ZM14 9a1 1 0 0 0-1 1v1a7 7 0 0 1-7 7h-.5a.5.5 0 0 1 0-1H6a6 6 0 0 0 6-6v-1c0-1.1.9-2 2-2h3.5a.5.5 0 0 1 0 1H14Z\"]);\nexport const StreamInputOutputFilled = /*#__PURE__*/createFluentIcon('StreamInputOutputFilled', \"1em\", [\"M13.25 3.5A5.75 5.75 0 0 0 7.5 9.25v1c0 1.24-1 2.25-2.25 2.25h-2.5a.75.75 0 0 1 0-1.5h2.5c.41 0 .75-.34.75-.75v-1C6 5.25 9.25 2 13.25 2h.5a.75.75 0 0 1 0 1.5h-.5Zm-2.75 6c0-1.8 1.46-3.25 3.25-3.25h3.5a.75.75 0 0 0 0-1.5h-3.5A4.75 4.75 0 0 0 9 9.5v1c0 1.8-1.46 3.25-3.25 3.25h-3a.75.75 0 0 0 0 1.5h3a4.75 4.75 0 0 0 4.75-4.75v-1Zm3.75-.5a.75.75 0 0 0-.75.75v1c0 .66-.09 1.3-.25 1.9a1.9 1.9 0 0 0-1.59.05c.22-.61.34-1.27.34-1.95v-1c0-1.24 1-2.25 2.25-2.25h3a.75.75 0 0 1 0 1.5h-3Zm-1.4 9.16a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7l-1.14 1.16h5.58l-1.14-1.15a.5.5 0 0 1 .7-.7l2 2c.2.19.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l1.14-1.15h-5.58l1.14 1.14Z\"]);\nexport const StreamInputOutputRegular = /*#__PURE__*/createFluentIcon('StreamInputOutputRegular', \"1em\", [\"M13 3a6 6 0 0 0-6 6v1a2 2 0 0 1-2 2H2.5a.5.5 0 0 1 0-1H5a1 1 0 0 0 1-1V9a7 7 0 0 1 7-7h.5a.5.5 0 0 1 0 1H13Zm-3 6.5A3.5 3.5 0 0 1 13.5 6h4a.5.5 0 0 0 0-1h-4A4.5 4.5 0 0 0 9 9.5v1A3.5 3.5 0 0 1 5.5 14h-3a.5.5 0 0 0 0 1h3a4.5 4.5 0 0 0 4.5-4.5v-1Zm3 .5c0-.6.4-1 1-1h3.5c.3 0 .5-.2.5-.5s-.2-.5-.5-.5H14a2 2 0 0 0-2 2v1c0 .9-.2 1.7-.5 2.4.3-.2.6-.4 1-.4h.2c.2-.6.3-1.3.3-2v-1Zm-.15 8.16a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7l-1.14 1.16h5.58l-1.14-1.15a.5.5 0 0 1 .7-.7l2 2c.2.19.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l1.14-1.15h-5.58l1.14 1.14Z\"]);\nexport const StreamOutputFilled = /*#__PURE__*/createFluentIcon('StreamOutputFilled', \"1em\", [\"M16.78 1.97a.75.75 0 1 0-1.06 1.06l1.72 1.72h-3.69A4.75 4.75 0 0 0 9 9.5v1c0 1.8-1.46 3.25-3.25 3.25h-3a.75.75 0 0 0 0 1.5h3a4.75 4.75 0 0 0 4.75-4.75v-1c0-1.8 1.46-3.25 3.25-3.25h3.69l-1.72 1.72a.75.75 0 0 0 1.06 1.06l3-3c.3-.3.3-.77 0-1.06l-3-3ZM13.25 3.5A5.75 5.75 0 0 0 7.5 9.25v1c0 1.24-1 2.25-2.25 2.25h-2.5a.75.75 0 0 1 0-1.5h2.5c.41 0 .75-.34.75-.75v-1C6 5.25 9.25 2 13.25 2h.5a.75.75 0 0 1 0 1.5h-.5Zm.91 4c-.24.49-.3 1.03-.17 1.54-.28.1-.49.39-.49.71v1c0 4-3.25 7.25-7.25 7.25h-.5a.75.75 0 0 1 0-1.5h.5A5.75 5.75 0 0 0 12 10.75v-1c0-1.21.96-2.2 2.16-2.25Z\"]);\nexport const StreamOutputRegular = /*#__PURE__*/createFluentIcon('StreamOutputRegular', \"1em\", [\"M16.15 2.15c.2-.2.5-.2.7 0l3 2.99a.5.5 0 0 1 0 .72l-3 3a.5.5 0 0 1-.7-.71L18.29 6H13.5C11.6 6 10 7.6 10 9.5v1C10 13 8 15 5.5 15h-3c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h3C7.4 14 9 12.4 9 10.5v-1C9 7 11 5 13.5 5h4.8l-2.15-2.15a.5.5 0 0 1 0-.7ZM2.5 12H5a2 2 0 0 0 2-2V9c0-3.3 2.7-6 6-6h.5c.3 0 .5-.2.5-.5s-.2-.5-.5-.5H13C9.1 2 6 5.1 6 9v1c0 .6-.4 1-1 1H2.5c-.3 0-.5.2-.5.5s.2.5.5.5Zm12.6-4H14a2 2 0 0 0-2 2v1c0 3.3-2.7 6-6 6h-.5c-.3 0-.5.2-.5.5s.2.5.5.5H6c3.9 0 7-3.1 7-7v-1c0-.6.4-1 1-1h1.1c-.1-.3-.1-.7 0-1Z\"]);\nexport const StyleGuideFilled = /*#__PURE__*/createFluentIcon('StyleGuideFilled', \"1em\", [\"M6.82 17.26c.07.27.19.52.33.74H7a2 2 0 0 1-2-2v-5.54l1.82 6.8ZM4 16.5c0 .15.01.3.04.44l-.06-.01a2 2 0 0 1-1.41-2.45l1.42-5.34L4 16.5Zm3.65.02a2 2 0 0 0 2.46 1.41l5.41-1.45a2 2 0 0 0 1.41-2.45L14.1 3.48a2 2 0 0 0-2.45-1.41L6.23 3.52a2 2 0 0 0-1.41 2.45l2.83 10.55ZM9 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z\"]);\nexport const StyleGuideRegular = /*#__PURE__*/createFluentIcon('StyleGuideRegular', \"1em\", [\"M8.62 16.26a1 1 0 0 0 1.23.7l5.41-1.45a1 1 0 0 0 .7-1.22L13.14 3.74a1 1 0 0 0-1.22-.7L6.49 4.48a1 1 0 0 0-.7 1.22l2.83 10.55Zm1.49 1.67a2 2 0 0 1-2.46-1.41L4.82 5.97a2 2 0 0 1 1.41-2.45l5.42-1.45a2 2 0 0 1 2.45 1.41l2.83 10.55a2 2 0 0 1-1.4 2.45l-5.42 1.45ZM7 18h.14a2.48 2.48 0 0 1-.33-.74l-.08-.3A1 1 0 0 1 6 16v-1.79l-1-3.73V16a2 2 0 0 0 2 2ZM4 16.5c0 .15.01.3.04.45l-.06-.02a2 2 0 0 1-1.41-2.45l1.42-5.33v3.86l-.46 1.73A1 1 0 0 0 4 15.86v.64Zm4.25-11a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const SubGridFilled = /*#__PURE__*/createFluentIcon('SubGridFilled', \"1em\", [\"M6 10.5v2c0 .83.67 1.5 1.5 1.5h2v-3.5H6Zm0-1v-2C6 6.67 6.67 6 7.5 6h2v3.5H6ZM10.5 6v3.5H14v-2c0-.83-.67-1.5-1.5-1.5h-2Zm3.5 4.5h-3.5V14h2c.83 0 1.5-.67 1.5-1.5v-2ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm-2 7.5h2v-1H4V6c0-1.1.9-2 2-2h3.5v2h1V4H14a2 2 0 0 1 2 2v3.5h-2v1h2V14a2 2 0 0 1-2 2h-3.5v-2h-1v2H6a2 2 0 0 1-2-2v-3.5Z\"]);\nexport const SubGridRegular = /*#__PURE__*/createFluentIcon('SubGridRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 14v-3.5h2v2c0 .83.67 1.5 1.5 1.5h2v2H6a2 2 0 0 1-2-2Zm6.5 0h2c.83 0 1.5-.67 1.5-1.5v-2h2V14a2 2 0 0 1-2 2h-3.5v-2Zm2.5-3.5v2a.5.5 0 0 1-.5.5h-2v-2.5H13Zm1-1v-2c0-.83-.67-1.5-1.5-1.5h-2V4H14a2 2 0 0 1 2 2v3.5h-2ZM10.5 7h2c.28 0 .5.22.5.5v2h-2.5V7Zm-1-1h-2C6.67 6 6 6.67 6 7.5v2H4V6c0-1.1.9-2 2-2h3.5v2ZM7 9.5v-2c0-.28.22-.5.5-.5h2v2.5H7Zm0 1h2.5V13h-2a.5.5 0 0 1-.5-.5v-2Z\"]);\nexport const SubtitlesFilled = /*#__PURE__*/createFluentIcon('SubtitlesFilled', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm2 4.75c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Zm.5 1.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm8.5-1.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5ZM9.5 13a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Z\"]);\nexport const SubtitlesRegular = /*#__PURE__*/createFluentIcon('SubtitlesRegular', \"1em\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM4.75 5C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75ZM4 11.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm8.5-1.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM9.5 13a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Z\"]);\nexport const SubtractFilled = /*#__PURE__*/createFluentIcon('SubtractFilled', \"1em\", [\"M3 10c0-.41.34-.75.75-.75h12.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 10Z\"]);\nexport const SubtractRegular = /*#__PURE__*/createFluentIcon('SubtractRegular', \"1em\", [\"M3 10c0-.28.22-.5.5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 3 10Z\"]);\nexport const SubtractCircleFilled = /*#__PURE__*/createFluentIcon('SubtractCircleFilled', \"1em\", [\"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0ZM6 10c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const SubtractCircleRegular = /*#__PURE__*/createFluentIcon('SubtractCircleRegular', \"1em\", [\"M6 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 6 10Zm4 8a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0-1a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z\"]);\nexport const SubtractCircleArrowBackFilled = /*#__PURE__*/createFluentIcon('SubtractCircleArrowBackFilled', \"1em\", [\"M16.98 9.59 17 9a8 8 0 1 0-7.41 7.98A5.48 5.48 0 0 1 12.2 9.5H5.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 .45.72 5.5 5.5 0 0 1 4.03.37ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.4-2.6a.5.5 0 0 0-.7 0l-1.75 1.75a.5.5 0 0 0 0 .7l1.75 1.75a.5.5 0 0 0 .7-.7l-.9-.9h1.55c.97 0 1.75.78 1.75 1.75v.25a.5.5 0 0 0 1 0v-.25a2.75 2.75 0 0 0-2.75-2.75h-1.54l.9-.9a.5.5 0 0 0 0-.7Z\"]);\nexport const SubtractCircleArrowBackRegular = /*#__PURE__*/createFluentIcon('SubtractCircleArrowBackRegular', \"1em\", [\"M5.5 8.5a.5.5 0 0 0 0 1h6.7c.24-.11.5-.2.75-.28a.5.5 0 0 0-.45-.72h-7Zm10.5.7V9a7 7 0 1 0-6.8 7c.1.34.23.67.39.98L9 17a8 8 0 1 1 7.98-7.41A5.46 5.46 0 0 0 16 9.2Zm3 5.3a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.4-2.6a.5.5 0 0 0-.7 0l-1.75 1.75a.5.5 0 0 0 0 .7l1.75 1.75a.5.5 0 0 0 .7-.7l-.9-.9h1.55c.97 0 1.75.78 1.75 1.75v.25a.5.5 0 0 0 1 0v-.25a2.75 2.75 0 0 0-2.75-2.75h-1.54l.9-.9a.5.5 0 0 0 0-.7Z\"]);\nexport const SubtractCircleArrowForwardFilled = /*#__PURE__*/createFluentIcon('SubtractCircleArrowForwardFilled', \"1em\", [\"M16.98 9.59 17 9a8 8 0 1 0-7.41 7.98A5.48 5.48 0 0 1 12.2 9.5H5.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 .45.72 5.5 5.5 0 0 1 4.03.37ZM10 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm5.4-2.6c.2-.2.5-.2.7 0l1.75 1.75a.5.5 0 0 1 0 .7L16.1 16.1a.5.5 0 0 1-.7-.7l.9-.9h-1.55c-.97 0-1.75.78-1.75 1.75v.25a.5.5 0 0 1-1 0v-.25a2.75 2.75 0 0 1 2.75-2.75h1.54l-.9-.9a.5.5 0 0 1 0-.7Z\"]);\nexport const SubtractCircleArrowForwardRegular = /*#__PURE__*/createFluentIcon('SubtractCircleArrowForwardRegular', \"1em\", [\"M5.5 8.5a.5.5 0 0 0 0 1h6.7c.24-.11.5-.2.75-.28a.5.5 0 0 0-.45-.72h-7Zm10.5.7V9a7 7 0 1 0-6.8 7c.1.34.23.67.39.98L9 17a8 8 0 1 1 7.98-7.41A5.46 5.46 0 0 0 16 9.2Zm-6 5.3a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm5.4-2.6c.2-.2.5-.2.7 0l1.75 1.75a.5.5 0 0 1 0 .7L16.1 16.1a.5.5 0 0 1-.7-.7l.9-.9h-1.55c-.97 0-1.75.78-1.75 1.75v.25a.5.5 0 0 1-1 0v-.25a2.75 2.75 0 0 1 2.75-2.75h1.54l-.9-.9a.5.5 0 0 1 0-.7Z\"]);\nexport const SubtractParenthesesFilled = /*#__PURE__*/createFluentIcon('SubtractParenthesesFilled', \"1em\", [\"M5.77 5.07a.75.75 0 1 0-.98-1.14 7.98 7.98 0 0 0 0 12.14.75.75 0 1 0 .98-1.14 6.48 6.48 0 0 1 0-9.86Zm9.44-1.14a.75.75 0 1 0-.98 1.14 6.48 6.48 0 0 1 0 9.86.75.75 0 1 0 .98 1.14 7.98 7.98 0 0 0 0-12.14ZM6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const SubtractParenthesesRegular = /*#__PURE__*/createFluentIcon('SubtractParenthesesRegular', \"1em\", [\"M5.8 4.4a.5.5 0 0 0-.6-.8 7.99 7.99 0 0 0 0 12.8.5.5 0 0 0 .6-.8 6.99 6.99 0 0 1 0-11.2Zm9-.8a.5.5 0 0 0-.6.8 6.99 6.99 0 0 1 0 11.2.5.5 0 1 0 .6.8 7.99 7.99 0 0 0 0-12.8ZM6.5 9.5a.5.5 0 1 0 0 1h7a.5.5 0 1 0 0-1h-7Z\"]);\nexport const SubtractSquareFilled = /*#__PURE__*/createFluentIcon('SubtractSquareFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm.5 6.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1Z\"]);\nexport const SubtractSquareRegular = /*#__PURE__*/createFluentIcon('SubtractSquareRegular', \"1em\", [\"M6.5 9.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const SubtractSquareMultipleFilled = /*#__PURE__*/createFluentIcon('SubtractSquareMultipleFilled', \"1em\", [\"M16 5.27c.6.34 1 .99 1 1.73v6a4 4 0 0 1-4 4H7a2 2 0 0 1-1.73-1H13a3 3 0 0 0 3-3V5.27ZM15 5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5Zm-3 4a.5.5 0 0 1-.5.5h-5a.5.5 0 1 1 0-1h5c.28 0 .5.22.5.5Z\"]);\nexport const SubtractSquareMultipleRegular = /*#__PURE__*/createFluentIcon('SubtractSquareMultipleRegular', \"1em\", [\"M16 5.27V13a3 3 0 0 1-3 3H5.27c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V7a2 2 0 0 0-1-1.73ZM11.5 9.5a.5.5 0 0 0 0-1h-5a.5.5 0 1 0 0 1h5ZM13 3a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h8Zm1 2a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5Z\"]);\nexport const SurfaceEarbudsFilled = /*#__PURE__*/createFluentIcon('SurfaceEarbudsFilled', \"1em\", [\"M8.55 14.03a5.75 5.75 0 0 0 2.9 4.24l-1.4.57a2 2 0 0 1-2.37-.66l-.27-.37a2 2 0 0 1 .06-2.44l1.08-1.34Zm5.7-5.53a4.75 4.75 0 1 1 0 9.5 4.75 4.75 0 0 1 0-9.5ZM5.75 1c.2 0 .39.01.58.03l.28.05-.14.04A3.72 3.72 0 0 0 4.54 6.6a3.65 3.65 0 0 0 5.75.56A4.75 4.75 0 1 1 5.75 1Zm5.37.46.09.1.09.12.44.65a1.5 1.5 0 0 1-.03 1.72l-.09.12-1.88 2.18a2.65 2.65 0 0 1-4.26-.18 2.72 2.72 0 0 1 1.43-4.1l2.62-.97a1.5 1.5 0 0 1 1.59.36Zm-1.14.68a.5.5 0 0 0-.2.61l.03.08.26.43.06.07a.5.5 0 0 0 .84-.5l-.04-.09-.26-.43-.05-.07a.5.5 0 0 0-.64-.1Z\"]);\nexport const SurfaceEarbudsRegular = /*#__PURE__*/createFluentIcon('SurfaceEarbudsRegular', \"1em\", [\"M14.13 8.25a4.87 4.87 0 1 1-1.1 9.63l-.1.03-2.21.9c-1 .41-2.15.13-2.85-.68l-.1-.15-.28-.36a2.5 2.5 0 0 1-.04-2.91l.1-.15 1.58-1.94.17-.2a4.87 4.87 0 0 1 4.83-4.17Zm-4.8 5.72-1 1.22a1.5 1.5 0 0 0-.12 1.71l.08.12.28.37a1.5 1.5 0 0 0 1.63.55l.14-.05 1.34-.55a4.88 4.88 0 0 1-2.36-3.37Zm4.8-4.72a3.88 3.88 0 0 0-3.76 2.93l-.07.3-.03.25-.01.18v.21c0 1.78 1.18 3.28 2.81 3.74l.2.04.22.05.2.02.17.02H14.33a3.88 3.88 0 0 0-.2-7.74ZM5.88 1c.66 0 1.29.13 1.86.37l.7-.23a2.5 2.5 0 0 1 2.66.73l.12.14.12.17.29.46c.53.84.5 1.91-.05 2.74l-.1.15-.13.14-.62.67A4.88 4.88 0 1 1 5.88 1Zm-.04 1h.04A3.87 3.87 0 1 0 9.1 8.02l-.06.04-.2.13a3.44 3.44 0 0 1-4.77-1.05A3.5 3.5 0 0 1 5.61 2.1l.23-.1Zm4.58.61a1.5 1.5 0 0 0-1.53-.56l-.14.04-2.36.78a2.5 2.5 0 0 0-1.46 3.74 2.44 2.44 0 0 0 3.75.46l.16-.16L10.6 5l.1-.11a1.5 1.5 0 0 0 .15-1.6l-.07-.12-.28-.45-.08-.12Zm-.8.53.05.08.26.42a.5.5 0 0 1-.8.6l-.06-.08-.26-.43a.5.5 0 0 1 .8-.59Z\"]);\nexport const SurfaceHubFilled = /*#__PURE__*/createFluentIcon('SurfaceHubFilled', \"1em\", [\"M5.26 2a.5.5 0 0 0-.5.45l-.76 8a.5.5 0 0 0 .5.55h2.42l-.91 6.43a.5.5 0 0 0 .98.14L7.36 15h3L10 17.43a.5.5 0 0 0 .98.14l.37-2.57h2.28l.37 2.57a.5.5 0 0 0 .98-.14L14.08 11h.66a.5.5 0 0 0 .5-.45l.76-8a.5.5 0 0 0-.5-.55H5.26Zm8.23 12h-1.98l.42-3h1.14l.42 3Zm-3 0H7.51l.42-3h3l-.44 3Z\"]);\nexport const SurfaceHubRegular = /*#__PURE__*/createFluentIcon('SurfaceHubRegular', \"1em\", [\"M4.76 2.45a.5.5 0 0 1 .5-.45H15.5a.5.5 0 0 1 .5.55l-.76 8a.5.5 0 0 1-.5.45h-.66l.91 6.43a.5.5 0 0 1-.98.14L13.64 15h-2.28L11 17.57a.5.5 0 0 1-.98-.14l.34-2.43H7.36L7 17.57a.5.5 0 0 1-.98-.14L6.92 11H4.5a.5.5 0 0 1-.5-.55l.76-8ZM7.51 14h2.98l.43-3H7.93l-.42 3Zm4 0h1.98l-.42-3h-1.14l-.42 3Zm2.78-4 .66-7H5.71l-.66 7h9.24Z\"]);\nexport const SwimmingPoolFilled = /*#__PURE__*/createFluentIcon('SwimmingPoolFilled', \"1em\", [\"M5.75 4a.75.75 0 0 0-.75.75v.5a.75.75 0 0 1-1.5 0v-.5a2.25 2.25 0 0 1 4.5 0V7.5h5V4.75a.75.75 0 1 0-1.5 0v.5a.75.75 0 1 1-1.5 0v-.5a2.25 2.25 0 0 1 4.5 0v7.03c-.4.13-.91.23-1.5.22V9H8v1.23A7.16 7.16 0 0 0 6.5 10V4.75A.75.75 0 0 0 5.75 4Zm.06 8.53c-.8.09-1.35.42-1.6.61a.75.75 0 0 1-.9-1.2c.4-.31 1.2-.77 2.33-.9a6.84 6.84 0 0 1 4.24 1.05c2.93 1.7 5.3.58 6 .17a.75.75 0 1 1 .75 1.3 7.33 7.33 0 0 1-7.5-.17 5.36 5.36 0 0 0-3.32-.86Zm0 3c-.8.09-1.35.42-1.6.61a.75.75 0 0 1-.9-1.2c.4-.31 1.2-.77 2.33-.9a6.84 6.84 0 0 1 4.24 1.05c2.93 1.7 5.3.58 6 .17a.75.75 0 1 1 .75 1.3 7.33 7.33 0 0 1-7.5-.17 5.36 5.36 0 0 0-3.32-.86Z\"]);\nexport const SwimmingPoolRegular = /*#__PURE__*/createFluentIcon('SwimmingPoolRegular', \"1em\", [\"M5 5a1 1 0 0 1 2 0v5.05c.32.03.65.1 1 .19V9h5v3c.37 0 .7-.03 1-.09V5a2 2 0 1 0-4 0v.5a.5.5 0 0 0 1 0V5a1 1 0 1 1 2 0v3H8V5a2 2 0 1 0-4 0v.5a.5.5 0 0 0 1 0V5Zm8.08 9a7.6 7.6 0 0 1-3.83-1.08c-3.42-1.97-5.32-.15-5.39-.08a.5.5 0 0 1-.71 0 .48.48 0 0 1 0-.7c.1-.1 2.48-2.46 6.6-.1a6 6 0 0 0 6.45.05c.22-.16.53-.11.7.1a.5.5 0 0 1-.1.7 6.65 6.65 0 0 1-3.72 1.1V14Zm-3.83 1.92A7.6 7.6 0 0 0 13.08 17v-.01a6.65 6.65 0 0 0 3.71-1.1.5.5 0 0 0 .11-.7.51.51 0 0 0-.7-.1 6 6 0 0 1-6.44-.04c-4.13-2.37-6.5 0-6.61.1-.2.19-.2.5 0 .7.2.19.52.18.71 0 .07-.08 1.97-1.9 5.39.07Z\"]);\nexport const SwipeDownFilled = /*#__PURE__*/createFluentIcon('SwipeDownFilled', \"1em\", [\"M14 6a4 4 0 0 1-2.25 3.6V8.44a3 3 0 1 0-3.5 0V9.6A4 4 0 1 1 14 6ZM9.47 17.78c.3.3.77.3 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06l-1.22 1.22V5.75a.75.75 0 0 0-1.5 0v9.69l-1.22-1.22a.75.75 0 0 0-1.06 1.06l2.5 2.5Z\"]);\nexport const SwipeDownRegular = /*#__PURE__*/createFluentIcon('SwipeDownRegular', \"1em\", [\"M14 6a4 4 0 0 1-2.5 3.7V8.6a3 3 0 1 0-3 0v1.1A4 4 0 1 1 14 6ZM9.65 17.85c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7l-2.15 2.14V5.5a.5.5 0 0 0-1 0v10.8l-2.15-2.15a.5.5 0 1 0-.7.7l3 3Z\"]);\nexport const SwipeRightFilled = /*#__PURE__*/createFluentIcon('SwipeRightFilled', \"1em\", [\"M6 6a4 4 0 0 1 3.6 2.25H8.44a3 3 0 1 0 0 3.5H9.6A4 4 0 1 1 6 6Zm9.28 7.03 2.5-2.5c.3-.3.3-.77 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 1.06l1.22 1.22H5.75a.75.75 0 1 0 0 1.5h9.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06Z\"]);\nexport const SwipeRightRegular = /*#__PURE__*/createFluentIcon('SwipeRightRegular', \"1em\", [\"M6 6a4 4 0 0 1 3.7 2.5H8.6a3 3 0 1 0 0 3h1.1A4 4 0 1 1 6 6Zm8.85 7.35 3-3a.5.5 0 0 0 0-.7l-3-3a.5.5 0 1 0-.7.7l2.14 2.15H5.5a.5.5 0 0 0 0 1h10.8l-2.15 2.15a.5.5 0 0 0 .7.7Z\"]);\nexport const SwipeUpFilled = /*#__PURE__*/createFluentIcon('SwipeUpFilled', \"1em\", [\"M10.53 2.22a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v9.69a.75.75 0 0 0 1.5 0V4.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5ZM6 14a4 4 0 0 1 2.25-3.6v1.16a3 3 0 1 0 3.5 0V10.4A4 4 0 1 1 6 14Z\"]);\nexport const SwipeUpRegular = /*#__PURE__*/createFluentIcon('SwipeUpRegular', \"1em\", [\"M10.35 2.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L9.5 3.71V14.5a.5.5 0 0 0 1 0V3.7l2.15 2.15a.5.5 0 0 0 .7-.7l-3-3ZM6 14a4 4 0 0 1 2.5-3.7v1.1a3 3 0 1 0 3 0v-1.1A4 4 0 1 1 6 14Z\"]);\nexport const SymbolsFilled = /*#__PURE__*/createFluentIcon('SymbolsFilled', \"1em\", [\"M14.14 7.97c.2.2.51.2.7 0l2.56-2.55a2 2 0 1 0-2.83-2.83l-.07.08-.08-.08a2 2 0 0 0-2.83 2.83l2.55 2.55ZM2 5.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0ZM5.5 3c-.5 0-.98.16-1.38.42L7.6 6.88A2.5 2.5 0 0 0 5.5 3ZM3 5.5A2.5 2.5 0 0 0 6.88 7.6L3.4 4.12C3.15 4.52 3 5 3 5.5Zm9.34 7.75A2.5 2.5 0 0 1 16.5 13h-1a.5.5 0 1 0 0 1h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-1 0v.55a3.49 3.49 0 0 0-5.53.7.5.5 0 0 0 .87.5Zm-.34 3.7v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 1 1 0 1h-1a2.5 2.5 0 0 0 4.17-.25.5.5 0 0 1 .86.5 3.5 3.5 0 0 1-5.53.7ZM5.5 11c.28 0 .5.23.5.5V14h2.5a.5.5 0 1 1 0 1H6v2.5a.5.5 0 0 1-1 0V15H2.5a.5.5 0 1 1 0-1H5v-2.5c0-.27.22-.5.5-.5Z\"]);\nexport const SymbolsRegular = /*#__PURE__*/createFluentIcon('SymbolsRegular', \"1em\", [\"M14.14 7.97c.2.2.51.2.7 0l2.56-2.55a2 2 0 1 0-2.83-2.83l-.07.08-.08-.08a2 2 0 0 0-2.83 2.83l2.55 2.55ZM12.3 4.71a1 1 0 1 1 1.42-1.41l.79.78.5-.5.28-.28a1 1 0 0 1 1.43 0 1 1 0 0 1 0 1.4L14.5 6.92l-2.2-2.2ZM2 5.51a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0ZM5.5 3c-.5 0-.98.15-1.38.4L7.6 6.89A2.5 2.5 0 0 0 5.5 3ZM3 5.5a2.5 2.5 0 0 0 3.88 2.08L3.4 4.12C3.15 4.52 3 5 3 5.5Zm9.34 7.74A2.5 2.5 0 0 1 16.5 13h-1a.5.5 0 1 0 0 1h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-1 0v.55a3.49 3.49 0 0 0-5.53.7.5.5 0 0 0 .87.5Zm-.34 3.7v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 1 1 0 1h-1a2.5 2.5 0 0 0 4.17-.25.5.5 0 0 1 .86.5 3.5 3.5 0 0 1-5.53.7ZM5.5 11c.28 0 .5.23.5.5V14h2.5a.5.5 0 1 1 0 1H6v2.5a.5.5 0 0 1-1 0V15H2.5a.5.5 0 1 1 0-1H5v-2.5c0-.27.22-.5.5-.5Z\"]);\nexport const SyncOffFilled = /*#__PURE__*/createFluentIcon('SyncOffFilled', \"1em\", [\"M17.94 9H12.3l.67-2.36a.5.5 0 0 0-.96-.28l-2 7a.5.5 0 0 0 .96.28L12.02 10H18a8 8 0 0 1-16 0h5.98l-.96 3.36a.5.5 0 0 0 .96.28l2-7a.5.5 0 0 0-.96-.28L8.27 9h-6.2a8 8 0 0 1 15.87 0Z\"]);\nexport const SyncOffRegular = /*#__PURE__*/createFluentIcon('SyncOffRegular', \"1em\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7a7 7 0 0 0-6.93 6h5.2l.75-2.64a.5.5 0 1 1 .96.28l-2 7a.5.5 0 1 1-.96-.28L7.98 10H3a7 7 0 1 0 14 0h-4.98l-1.04 3.64a.5.5 0 1 1-.96-.28l2-7a.5.5 0 1 1 .96.28L12.31 9h4.62A7 7 0 0 0 10 3Z\"]);\nexport const SyringeFilled = /*#__PURE__*/createFluentIcon('SyringeFilled', \"1em\", [\"M14.15 2.15c.2-.2.5-.2.7 0l3 3a.5.5 0 0 1-.7.7l-.4-.4-1.8 1.8 1.9 1.9a.5.5 0 0 1-.7.7L15 8.71l-5.56 5.56a2.5 2.5 0 0 1-1.77.73H5.71l-2.86 2.85a.5.5 0 0 1-.7-.7L5 14.29v-1.96c0-.66.26-1.3.73-1.77L6.3 10l.86.85a.5.5 0 0 0 .7-.7L7 9.29l.8-.79.85.85a.5.5 0 1 0 .7-.7l-.85-.86.8-.79.85.85a.5.5 0 0 0 .7-.7L10 6.29 11.3 5l-1.15-1.15a.5.5 0 0 1 .7-.7l1.9 1.9 1.8-1.8-.4-.4a.5.5 0 0 1 0-.7Zm1.9 2.6-.8-.8-1.8 1.8.8.8 1.8-1.8Z\"]);\nexport const SyringeRegular = /*#__PURE__*/createFluentIcon('SyringeRegular', \"1em\", [\"M14.15 2.15c.2-.2.5-.2.7 0l3 3a.5.5 0 0 1-.7.7l-.4-.4-1.8 1.8 1.9 1.9a.5.5 0 0 1-.7.7L15 8.71l-5.56 5.56a2.5 2.5 0 0 1-1.77.73H5.71l-2.86 2.85a.5.5 0 0 1-.7-.7L5 14.29v-1.96c0-.66.26-1.3.73-1.77L11.3 5l-1.14-1.15a.5.5 0 0 1 .7-.7l1.9 1.9 1.8-1.8-.4-.4a.5.5 0 0 1 0-.7ZM10 7.7l-.8.79.65.65a.5.5 0 0 1-.7.7l-.65-.64-.8.79.65.65a.5.5 0 0 1-.7.7L7 10.71l-.56.56A1.5 1.5 0 0 0 6 12.33V14h1.67c.4 0 .78-.16 1.06-.44L14.3 8 12 5.7 10.7 7l.65.65a.5.5 0 0 1-.7.7L10 7.71Zm6.04-2.96-.79-.8-1.8 1.8.8.8 1.8-1.8Z\"]);\nexport const SystemFilled = /*#__PURE__*/createFluentIcon('SystemFilled', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7Zm2.5-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-11Z\"]);\nexport const SystemRegular = /*#__PURE__*/createFluentIcon('SystemRegular', \"1em\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const TabFilled = /*#__PURE__*/createFluentIcon('TabFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9Zm2.5-1a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1h-9Z\"]);\nexport const TabRegular = /*#__PURE__*/createFluentIcon('TabRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9ZM5.5 4C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const TabAddFilled = /*#__PURE__*/createFluentIcon('TabAddFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v4.1a5.46 5.46 0 0 0-1.5-.5V5.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h3.6c.09.53.26 1.03.5 1.5H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm16 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TabAddRegular = /*#__PURE__*/createFluentIcon('TabAddRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v4.1c-.32-.16-.65-.3-1-.4V5.5c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h3.7c.1.35.24.68.4 1H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm16 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TabArrowLeftFilled = /*#__PURE__*/createFluentIcon('TabArrowLeftFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v4.1a5.46 5.46 0 0 0-1.5-.5V5.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h3.6c.09.53.26 1.03.5 1.5H5.5A2.5 2.5 0 0 1 3 14.5v-9ZM14.5 19a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const TabArrowLeftRegular = /*#__PURE__*/createFluentIcon('TabArrowLeftRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v4.1c-.32-.16-.65-.3-1-.4V5.5c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h3.7c.1.35.24.68.4 1H5.5A2.5 2.5 0 0 1 3 14.5v-9ZM14.5 19a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const TabDesktopFilled = /*#__PURE__*/createFluentIcon('TabDesktopFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9Z\"]);\nexport const TabDesktopRegular = /*#__PURE__*/createFluentIcon('TabDesktopRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9ZM16 6v-.5c0-.83-.67-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16ZM8 4H5.5C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4Z\"]);\nexport const TabDesktopArrowClockwiseFilled = /*#__PURE__*/createFluentIcon('TabDesktopArrowClockwiseFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v3.76a5.48 5.48 0 0 1 5.2-1A1.5 1.5 0 0 1 11 9v1.34a5.48 5.48 0 0 1-.26 6.66h3.76a2.5 2.5 0 0 0 2.5-2.5V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9Zm1 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h.8a3.5 3.5 0 1 0 1.7 3 .5.5 0 0 1 1 0 4.5 4.5 0 1 1-2-3.74V9a.5.5 0 0 1 .5-.5c.28 0 .5.22.5.5v2Z\"]);\nexport const TabDesktopArrowClockwiseRegular = /*#__PURE__*/createFluentIcon('TabDesktopArrowClockwiseRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-3.76c.26-.3.48-.64.66-1h3.1c.83 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5C4.67 4 4 4.67 4 5.5v3.1c-.36.18-.7.4-1 .66V5.5ZM16 6v-.5c0-.83-.67-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16ZM9.5 8.5c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h.8a3.5 3.5 0 1 0 1.7 3 .5.5 0 0 1 1 0 4.5 4.5 0 1 1-2-3.74V9c0-.28.22-.5.5-.5Z\"]);\nexport const TabDesktopArrowLeftFilled = /*#__PURE__*/createFluentIcon('TabDesktopArrowLeftFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v4.1a5.5 5.5 0 0 1 7.4 7.4h4.1a2.5 2.5 0 0 0 2.5-2.5V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9Zm1 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const TabDesktopArrowLeftRegular = /*#__PURE__*/createFluentIcon('TabDesktopArrowLeftRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-4.1c.16-.32.3-.65.4-1h3.7c.82 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5C4.67 4 4 4.67 4 5.5v3.7c-.35.1-.69.24-1 .4V5.5ZM16 6v-.5c0-.83-.68-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16Zm-6 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const TabDesktopBottomFilled = /*#__PURE__*/createFluentIcon('TabDesktopBottomFilled', \"1em\", [\"M14.5 17a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5V13h7.5c.83 0 1.5.67 1.5 1.5V17h2.5ZM11 17v-2.5a.5.5 0 0 0-.5-.5H3v.5A2.5 2.5 0 0 0 5.5 17H11Z\"]);\nexport const TabDesktopBottomRegular = /*#__PURE__*/createFluentIcon('TabDesktopBottomRegular', \"1em\", [\"M17 14.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9ZM4 14v.5c0 .83.67 1.5 1.5 1.5H11v-1.5a.5.5 0 0 0-.5-.5H4Zm8 2h2.5c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5V13h6.5c.83 0 1.5.67 1.5 1.5V16Z\"]);\nexport const TabDesktopClockFilled = /*#__PURE__*/createFluentIcon('TabDesktopClockFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v4.1a5.5 5.5 0 0 1 7.4 7.4h4.1a2.5 2.5 0 0 0 2.5-2.5V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5Z\"]);\nexport const TabDesktopClockRegular = /*#__PURE__*/createFluentIcon('TabDesktopClockRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-4.1c.16-.32.3-.65.4-1h3.7c.83 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5C4.67 4 4 4.67 4 5.5v3.7c-.35.1-.68.24-1 .4V5.5ZM16 6v-.5c0-.83-.67-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16Zm-6 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM5.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H7a.5.5 0 0 0 0-1H6v-1.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const TabDesktopCopyFilled = /*#__PURE__*/createFluentIcon('TabDesktopCopyFilled', \"1em\", [\"M5 4.5A2.5 2.5 0 0 1 7.5 2H9v2.5c0 .83.67 1.5 1.5 1.5H18v6.5a2.5 2.5 0 0 1-2.5 2.5h-8A2.5 2.5 0 0 1 5 12.5v-8Zm5 0V2h5.5A2.5 2.5 0 0 1 18 4.5V5h-7.5a.5.5 0 0 1-.5-.5ZM12.5 18a2.5 2.5 0 0 0 2.45-2H7.5A3.5 3.5 0 0 1 4 12.5V5.05A2.5 2.5 0 0 0 2 7.5V14a4 4 0 0 0 4 4h6.5Z\"]);\nexport const TabDesktopCopyRegular = /*#__PURE__*/createFluentIcon('TabDesktopCopyRegular', \"1em\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v8A2.5 2.5 0 0 0 7.5 15h8a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 15.5 2h-8ZM17 4.5V5h-6.5a.5.5 0 0 1-.5-.5V3h5.5c.83 0 1.5.67 1.5 1.5Zm-8 0c0 .83.67 1.5 1.5 1.5H17v6.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 6 12.5v-8C6 3.67 6.67 3 7.5 3H9v1.5ZM12.5 18a2.5 2.5 0 0 0 2.45-2h-1.04c-.2.58-.76 1-1.41 1H6a3 3 0 0 1-3-3V7.5c0-.65.42-1.2 1-1.41V5.05A2.5 2.5 0 0 0 2 7.5V14a4 4 0 0 0 4 4h6.5Z\"]);\nexport const TabDesktopImageFilled = /*#__PURE__*/createFluentIcon('TabDesktopImageFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v2.84c.45-.22.96-.34 1.5-.34h4a3.5 3.5 0 0 1 3.5 3.5v4c0 .54-.12 1.05-.34 1.5h2.84a2.5 2.5 0 0 0 2.5-2.5V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9Zm-7 8.5A2.5 2.5 0 0 1 4.5 9h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L2.4 16.88C2.15 16.48 2 16 2 15.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L3.12 17.6Z\"]);\nexport const TabDesktopImageRegular = /*#__PURE__*/createFluentIcon('TabDesktopImageRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-2.84c.15-.31.25-.65.3-1h2.54c.82 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5C4.67 4 4 4.67 4 5.5v2.54c-.36.05-.7.15-1 .3V5.5ZM16 6v-.5c0-.83-.68-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16ZM2 11.5A2.5 2.5 0 0 1 4.5 9h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L2.4 16.88C2.15 16.48 2 16 2 15.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L3.12 17.6Z\"]);\nexport const TabDesktopLinkFilled = /*#__PURE__*/createFluentIcon('TabDesktopLinkFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h3.54a3.5 3.5 0 0 1 3.46-4h4c.17 0 .33.01.5.03V7H9.5A1.5 1.5 0 0 1 8 5.5V3H5.5ZM9 3v2.5c0 .28.22.5.5.5H17v-.5A2.5 2.5 0 0 0 14.5 3H9Zm3.5 11a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const TabDesktopLinkRegular = /*#__PURE__*/createFluentIcon('TabDesktopLinkRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v7.53a3.53 3.53 0 0 0-.5-.03H16V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h3.54a3.53 3.53 0 0 0 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-9ZM16 6v-.5c0-.83-.68-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16Zm-3.5 8a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const TabDesktopMultipleFilled = /*#__PURE__*/createFluentIcon('TabDesktopMultipleFilled', \"1em\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2H6v2.5C6 5.33 6.67 6 7.5 6H15v6.5a2.5 2.5 0 0 1-2.5 2.5h-8A2.5 2.5 0 0 1 2 12.5v-8Zm5 0V2h5.5A2.5 2.5 0 0 1 15 4.5V5H7.5a.5.5 0 0 1-.5-.5ZM7.5 18a2.5 2.5 0 0 1-2.45-2h7.45a3.5 3.5 0 0 0 3.5-3.5V5.05a2.5 2.5 0 0 1 2 2.45V14a4 4 0 0 1-4 4H7.5Z\"]);\nexport const TabDesktopMultipleRegular = /*#__PURE__*/createFluentIcon('TabDesktopMultipleRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v8A2.5 2.5 0 0 0 4.5 15h8a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 12.5 2h-8ZM14 4.5V5H7.5a.5.5 0 0 1-.5-.5V3h5.5c.83 0 1.5.67 1.5 1.5Zm-8 0C6 5.33 6.67 6 7.5 6H14v6.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 3 12.5v-8C3 3.67 3.67 3 4.5 3H6v1.5ZM7.5 18a2.5 2.5 0 0 1-2.45-2h1.04c.2.58.76 1 1.41 1H14a3 3 0 0 0 3-3V7.5c0-.65-.42-1.2-1-1.41V5.05a2.5 2.5 0 0 1 2 2.45V14a4 4 0 0 1-4 4H7.5Z\"]);\nexport const TabDesktopMultipleAddFilled = /*#__PURE__*/createFluentIcon('TabDesktopMultipleAddFilled', \"1em\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2H6v2.5C6 5.33 6.67 6 7.5 6H15v6.5a2.5 2.5 0 0 1-2.5 2.5h-1.52l.02-.5a5.5 5.5 0 0 0-9-4.24V4.5ZM10.8 16a5.49 5.49 0 0 1-1.06 2H14a4 4 0 0 0 4-4V7.5a2.5 2.5 0 0 0-2-2.45v7.45a3.5 3.5 0 0 1-3.5 3.5h-1.7ZM7 4.5V2h5.5A2.5 2.5 0 0 1 15 4.5V5H7.5a.5.5 0 0 1-.5-.5Zm3 10a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const TabDesktopMultipleAddRegular = /*#__PURE__*/createFluentIcon('TabDesktopMultipleAddRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v5.76c.3-.26.64-.48 1-.66V4.5C3 3.67 3.67 3 4.5 3H6v1.5C6 5.33 6.67 6 7.5 6H14v6.5c0 .83-.67 1.5-1.5 1.5h-1.52a5.59 5.59 0 0 1 0 1h1.52a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 12.5 2h-8ZM14 18H9.74c.26-.3.48-.64.66-1H14a3 3 0 0 0 3-3V7.5c0-.65-.42-1.2-1-1.41V5.05a2.5 2.5 0 0 1 2 2.45V14a4 4 0 0 1-4 4Zm0-13.5V5H7.5a.5.5 0 0 1-.5-.5V3h5.5c.83 0 1.5.67 1.5 1.5Zm-4 10a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const TabDesktopMultipleBottomFilled = /*#__PURE__*/createFluentIcon('TabDesktopMultipleBottomFilled', \"1em\", [\"M5.05 4h7.45A3.5 3.5 0 0 1 16 7.5v7.45a2.5 2.5 0 0 0 2-2.45V6a4 4 0 0 0-4-4H7.5a2.5 2.5 0 0 0-2.45 2ZM2 7.5A2.5 2.5 0 0 1 4.5 5h8A2.5 2.5 0 0 1 15 7.5v8a2.5 2.5 0 0 1-2.5 2.5H11v-2.5c0-.83-.67-1.5-1.5-1.5H2V7.5Zm8 8V18H4.5A2.5 2.5 0 0 1 2 15.5V15h7.5c.28 0 .5.22.5.5Z\"]);\nexport const TabDesktopMultipleBottomRegular = /*#__PURE__*/createFluentIcon('TabDesktopMultipleBottomRegular', \"1em\", [\"M6.09 4H5.05A2.5 2.5 0 0 1 7.5 2H14a4 4 0 0 1 4 4v6.5a2.5 2.5 0 0 1-2 2.45v-1.04c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H7.5c-.65 0-1.2.42-1.41 1ZM9.5 15H3v.5c0 .83.67 1.5 1.5 1.5H10v-1.5a.5.5 0 0 0-.5-.5ZM3 14h6.5c.83 0 1.5.67 1.5 1.5V17h1.5c.83 0 1.5-.67 1.5-1.5v-8c0-.83-.67-1.5-1.5-1.5h-8C3.67 6 3 6.67 3 7.5V14Zm1.5 4A2.5 2.5 0 0 1 2 15.5v-8A2.5 2.5 0 0 1 4.5 5h8A2.5 2.5 0 0 1 15 7.5v8a2.5 2.5 0 0 1-2.5 2.5h-8Z\"]);\nexport const TabDesktopNewPageFilled = /*#__PURE__*/createFluentIcon('TabDesktopNewPageFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3H8v2.5C8 6.33 8.67 7 9.5 7H17v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9ZM8 11a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3-5v-.5A2.5 2.5 0 0 0 14.5 3H9v2.5c0 .28.22.5.5.5H17Z\"]);\nexport const TabDesktopNewPageRegular = /*#__PURE__*/createFluentIcon('TabDesktopNewPageRegular', \"1em\", [\"M7 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9ZM5.5 4C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V7H9.5A1.5 1.5 0 0 1 8 5.5V4H5.5ZM16 5.5c0-.83-.67-1.5-1.5-1.5H9v1.5c0 .28.22.5.5.5H16v-.5Z\"]);\nexport const TabInPrivateFilled = /*#__PURE__*/createFluentIcon('TabInPrivateFilled', \"1em\", [\"M5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3Zm-1 2.5v1.3l2.3-2.3H5.5a1 1 0 0 0-1 1Zm0 2.7v2.6l6.3-6.3H8.2L4.5 8.2Zm7.7-3.7-7.7 7.7v2.3a1 1 0 0 0 .03.26L14.76 4.53a1 1 0 0 0-.26-.03h-2.3Zm3.27.74L5.24 15.47a1 1 0 0 0 .26.03h2.3l7.7-7.7V5.5a1 1 0 0 0-.03-.26Zm.03 3.97L9.2 15.5h2.6l3.7-3.7V9.2Zm0 4-2.3 2.29h1.3a1 1 0 0 0 1-1v-1.3Z\"]);\nexport const TabInPrivateRegular = /*#__PURE__*/createFluentIcon('TabInPrivateRegular', \"1em\", [\"M5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3ZM4 5.5v1.8L7.3 4H5.5C4.67 4 4 4.67 4 5.5Zm0 3.2v2.6L11.3 4H8.7L4 8.7ZM12.7 4 4 12.7v1.8c0 .23.05.45.15.65l11-11A1.5 1.5 0 0 0 14.5 4h-1.8Zm3.15.85-11 11c.2.1.42.15.65.15h1.8L16 7.3V5.5c0-.23-.05-.45-.15-.65ZM16 8.71 8.7 16h2.6l4.7-4.7V8.7Zm0 4L12.7 16h1.8c.83 0 1.5-.67 1.5-1.5v-1.8Z\"]);\nexport const TabInprivateAccountFilled = /*#__PURE__*/createFluentIcon('TabInprivateAccountFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v2.13c-.44-.3-.95-.52-1.5-.6V5.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1H10v.44c0 .37.06.73.16 1.06H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm15.57 9.03a1.5 1.5 0 0 0-1.12-.53h-4.9c-.46 0-.86.24-1.12.53-.26.29-.43.69-.43 1.09v.32c0 1.63 1.63 3.06 4 3.06 1.24 0 2.28-.4 2.99-1H15v-1h3.76c.15-.32.23-.65.24-1h-4v-1h3.87a1.78 1.78 0 0 0-.3-.47ZM15 13a2.5 2.5 0 1 1 2-4h-2v1h2.45a2.51 2.51 0 0 1 0 1H15v1h2c-.46.6-1.18 1-2 1Z\"]);\nexport const TabInprivateAccountRegular = /*#__PURE__*/createFluentIcon('TabInprivateAccountRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.66c-.1-.32-.15-.65-.16-1H5.5A1.5 1.5 0 0 1 4 14.5v-9C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v1.64c.36.11.7.28 1 .49V5.5A2.5 2.5 0 0 0 14.5 3h-9Zm8 7.5c0 .83.67 1.5 1.5 1.5h2a2.5 2.5 0 1 1 0-3h-2c-.83 0-1.5.67-1.5 1.5Zm-1.32 4.7c.12-.14.26-.2.37-.2h6.32a1.78 1.78 0 0 0-.3-.47 1.5 1.5 0 0 0-1.12-.53h-4.9c-.46 0-.86.24-1.12.53-.26.29-.43.69-.43 1.09v.32c0 1.63 1.63 3.06 4 3.06 1.24 0 2.28-.4 2.99-1H15c-2.03 0-3-1.17-3-2.06v-.32c0-.13.06-.3.18-.43Zm5.32-4.7c0 .17-.02.34-.05.5H15v-1h2.45c.03.16.05.33.05.5Zm1.26 6.5H15v-1h4c0 .35-.1.68-.24 1Z\"]);\nexport const TabProhibitedFilled = /*#__PURE__*/createFluentIcon('TabProhibitedFilled', \"1em\", [\"M3 5.25C3 4.01 4 3 5.25 3h9.5C15.99 3 17 4 17 5.25V9.6a5.46 5.46 0 0 0-1.5-.5V5.24a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v9.5c0 .41.34.75.75.75h3.84c.1.53.27 1.03.51 1.5H5.25C4.01 17 3 16 3 14.75v-9.5ZM14.5 19a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm0-8a3.5 3.5 0 0 0-2.8 5.6l4.9-4.9a3.48 3.48 0 0 0-2.1-.7Zm-2.1 6.3a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Z\"]);\nexport const TabProhibitedRegular = /*#__PURE__*/createFluentIcon('TabProhibitedRegular', \"1em\", [\"M3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v4.6c-.32-.16-.65-.3-1-.4V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h4.2c.1.35.24.68.4 1H5a2 2 0 0 1-2-2V5Zm7 9.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const TabShieldDismissFilled = /*#__PURE__*/createFluentIcon('TabShieldDismissFilled', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v2.73c-.34-.2-.67-.46-1-.8a1.4 1.4 0 0 0-.5-.34V5.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h5.07a5.8 5.8 0 0 0 .96 1.5H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm12.28 2.62c1 1.04 2.1 1.55 3.32 1.55.2 0 .36.14.4.34v2.57c0 2.69-1.31 4.51-3.87 5.4a.39.39 0 0 1-.26 0c-2.48-.86-3.79-2.6-3.87-5.15v-2.75a.4.4 0 0 1 .4-.41 4.5 4.5 0 0 0 3.32-1.55.39.39 0 0 1 .56 0ZM15 12.47l-1.36-1.36a.38.38 0 0 0-.53.53L14.47 13l-1.36 1.35a.38.38 0 0 0 .54.54L15 13.53l1.35 1.36a.38.38 0 0 0 .54-.54L15.53 13l1.36-1.36a.38.38 0 0 0-.54-.53L15 12.47Z\"]);\nexport const TabShieldDismissRegular = /*#__PURE__*/createFluentIcon('TabShieldDismissRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v2.73c-.34-.2-.67-.46-1-.8V5.5c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h5.32a5.75 5.75 0 0 0 .71 1H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm15.6 4.17c-1.22 0-2.32-.51-3.32-1.55a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.75c.08 2.55 1.4 4.29 3.87 5.15.09.03.17.03.26 0 2.56-.89 3.87-2.71 3.87-5.4v-2.57a.4.4 0 0 0-.4-.34Zm-4.96 1.44L15 12.47l1.35-1.36a.38.38 0 0 1 .54.54L15.53 13l1.36 1.35a.38.38 0 0 1-.54.54L15 13.53l-1.35 1.36a.38.38 0 0 1-.54-.54L14.47 13l-1.36-1.36a.38.38 0 0 1 .53-.53Z\"]);\nexport const TableFilled = /*#__PURE__*/createFluentIcon('TableFilled', \"1em\", [\"M13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Zm0-5V8h4v4h-4Zm-1 0H8V8h4v4Zm-4 1h4v4H8v-4Zm-1-1V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Z\"]);\nexport const TableRegular = /*#__PURE__*/createFluentIcon('TableRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5Zm8-1.5v3H8v-3h4Zm2.5 3H13v-3h3V14.64A1.5 1.5 0 0 1 14.5 16ZM12 8v4H8V8h4Zm1 0h3v4h-3V8Zm-1-4v3H8V4h4Zm1 0H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM7 4v3H4V5.36A1.5 1.5 0 0 1 5.5 4H7Zm0 4v4H4V8h3Z\"]);\nexport const TableAddFilled = /*#__PURE__*/createFluentIcon('TableAddFilled', \"1em\", [\"M13 7h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-6 5V8H3v4h4Zm2.6 0A5.52 5.52 0 0 1 12 9.6V8H8v4h1.6Zm4.9-3c.9 0 1.75.22 2.5.6V8h-4v1.2c.48-.13.98-.2 1.5-.2ZM9 14.5c0-.52.07-1.02.2-1.5H8v4h1.6c-.38-.75-.6-1.6-.6-2.5ZM7 13H3v1.5A2.5 2.5 0 0 0 5.5 17H7v-4Zm5-6V3H8v4h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm12 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TableAddRegular = /*#__PURE__*/createFluentIcon('TableAddRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H8v-3h1.2c.1-.35.24-.68.4-1H8V8h4v1.6c.32-.16.65-.3 1-.4V8h3v1.2c.35.1.68.24 1 .4V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 4v3H8V4h4Zm1 0H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM7 4v3H4V5.36A1.5 1.5 0 0 1 5.5 4H7Zm0 4v4H4V8h3Zm12 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TableArrowUpFilled = /*#__PURE__*/createFluentIcon('TableArrowUpFilled', \"1em\", [\"M17 7h-4V3h1.5A2.5 2.5 0 0 1 17 5.5V7ZM7 8v4H3V8h4Zm5 1.6A5.52 5.52 0 0 0 9.6 12H8V8h4v1.6Zm5 0a5.48 5.48 0 0 0-4-.4V8h4v1.6ZM9.2 13a5.5 5.5 0 0 0 .4 4H8v-4h1.2ZM3 13h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm9-10v4H8V3h4ZM7 7V3H5.5A2.5 2.5 0 0 0 3 5.5V7h4Zm12 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.35-.15.5.5 0 0 0-.35.15l-2 2a.5.5 0 0 0 .7.7L14 13.71v2.79a.5.5 0 1 0 1 0v-2.8l1.15 1.15c.2.2.5.2.7 0Z\"]);\nexport const TableArrowUpRegular = /*#__PURE__*/createFluentIcon('TableArrowUpRegular', \"1em\", [\"M14.5 3A2.5 2.5 0 0 1 17 5.5v4.1c-.32-.16-.65-.3-1-.4V8h-3v1.2c-.35.1-.68.24-1 .4V8H8v4h1.6c-.16.32-.3.65-.4 1H8v3h1.2c.1.35.24.68.4 1H5.5A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9ZM4 13v1.5c0 .78.6 1.42 1.36 1.5H7v-3H4Zm4-6h4V4H8v3Zm6.5-3H13v3h3V5.5c0-.78-.6-1.42-1.36-1.5h-.14ZM4 5.5V7h3V4H5.5c-.78 0-1.42.6-1.5 1.36v.14ZM7 12V8H4v4h3Zm12 2.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.35-.15.5.5 0 0 0-.35.15l-2 2a.5.5 0 0 0 .7.7L14 13.71v2.79a.5.5 0 1 0 1 0v-2.8l1.15 1.15c.2.2.5.2.7 0Z\"]);\nexport const TableBottomRowFilled = /*#__PURE__*/createFluentIcon('TableBottomRowFilled', \"1em\", [\"M14.5 3A2.5 2.5 0 0 1 17 5.5V12h-1V5.5c0-.78-.6-1.42-1.36-1.5H5.5c-.78 0-1.42.6-1.5 1.36V12H3V5.5A2.5 2.5 0 0 1 5.5 3h9ZM17 14.5a2.5 2.5 0 0 1-2.5 2.5H13v-4h4v1.5Zm-13 2c.42.31.94.5 1.5.5H7v-4H3v1.5c0 .82.4 1.54 1 2ZM8 13h4v4H8v-4Z\"]);\nexport const TableBottomRowRegular = /*#__PURE__*/createFluentIcon('TableBottomRowRegular', \"1em\", [\"M14.5 3A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9ZM4 13v1.5c0 .78.6 1.42 1.36 1.5H7v-3H4Zm4 3h4v-3H8v3Zm5 0h1.5c.78 0 1.42-.6 1.5-1.36V13h-3v3Zm3-4V5.5c0-.78-.6-1.42-1.36-1.5H5.5c-.78 0-1.42.6-1.5 1.36V12h12Z\"]);\nexport const TableCalculatorFilled = /*#__PURE__*/createFluentIcon('TableCalculatorFilled', \"1em\", [\"M13 7h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-6 5V8H3v4h4Zm5-3.5V8H8v4h3v-1.5c0-.82.4-1.54 1-2ZM11 13H8v4h3v-4Zm-4 0H3v1.5A2.5 2.5 0 0 0 5.5 17H7v-4Zm5-6V3H8v4h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm5 7.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-4a1.5 1.5 0 0 1-1.5-1.5v-7Zm2.5 2.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM14.5 15h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM14.5 17h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM13.5 10a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const TableCalculatorRegular = /*#__PURE__*/createFluentIcon('TableCalculatorRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17H11v-1H8v-3h3v-1H8V8h4v.5c.3-.22.63-.38 1-.45V8h4V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 7H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm5 2.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-4a1.5 1.5 0 0 1-1.5-1.5v-7Zm2.5 2.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM14.5 15h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM14.5 17h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Zm3.5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5ZM13.5 10a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const TableCellEditFilled = /*#__PURE__*/createFluentIcon('TableCellEditFilled', \"1em\", [\"M8 13h1.98c.1-.12.19-.23.3-.33L12 10.94V7H8v6Zm7.1-5.16c.26-.26.55-.45.86-.6A2 2 0 0 0 15 7h-2v2.94l2.1-2.1ZM5 13a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2h2v6H5Zm10.8-4.45-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const TableCellEditRegular = /*#__PURE__*/createFluentIcon('TableCellEditRegular', \"1em\", [\"M9.98 13c.1-.12.19-.23.3-.33l.66-.67H8V8h4v2.94l1-1V8h1.94l.16-.16c.26-.26.55-.45.86-.6A2 2 0 0 0 15 7H5a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h4.98ZM7 8v4H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h2Zm8.8.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const TableCellsMergeFilled = /*#__PURE__*/createFluentIcon('TableCellsMergeFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3H3Zm0 1v6h14V7H3Zm4.35 1.85-.64.65h6.58l-.64-.65a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65H6.71l.64.65a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5a.5.5 0 1 1 .7.7ZM3 14h14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3Z\"]);\nexport const TableCellsMergeRegular = /*#__PURE__*/createFluentIcon('TableCellsMergeRegular', \"1em\", [\"M7.35 8.85a.5.5 0 1 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65h6.58l-.64.65a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7.7l.64.65H6.71l.64-.65ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 7h12v6H4V7Zm10 9H6a2 2 0 0 1-2-2h12a2 2 0 0 1-2 2Zm2-10H4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2Z\"]);\nexport const TableCellsSplitFilled = /*#__PURE__*/createFluentIcon('TableCellsSplitFilled', \"1em\", [\"M10 6h7v-.5A2.5 2.5 0 0 0 14.5 3H10v3Zm7 7V7H3v6h14Zm-7-5v4H9V8h1Zm0 9h4.5a2.5 2.5 0 0 0 2.5-2.5V14h-7v3Zm-1-3H3v.5A2.5 2.5 0 0 0 5.5 17H9v-3Zm0-8V3H5.5A2.5 2.5 0 0 0 3 5.5V6h6Z\"]);\nexport const TableCellsSplitRegular = /*#__PURE__*/createFluentIcon('TableCellsSplitRegular', \"1em\", [\"M10 8v4H9V8h1Zm7-2.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9Zm-13 9V14h5v2H5.36A1.5 1.5 0 0 1 4 14.5ZM9 4v2H4v-.64A1.5 1.5 0 0 1 5.5 4H9Zm1 2V4h4.64A1.5 1.5 0 0 1 16 5.5V6h-6Zm6 7H4V7h12v6Zm0 1.5v.14A1.5 1.5 0 0 1 14.5 16H10v-2h6v.5Z\"]);\nexport const TableCheckerFilled = /*#__PURE__*/createFluentIcon('TableCheckerFilled', \"1em\", [\"M7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm5 5H8v4h4V8Zm1 5h4v1.5a2.5 2.5 0 0 1-2.5 2.5H13v-4ZM8 4h6.5c.83 0 1.5.67 1.5 1.5V12h1V5.5A2.5 2.5 0 0 0 14.5 3H8v1ZM5.5 16H12v1H5.5A2.5 2.5 0 0 1 3 14.5V8h1v6.5c0 .83.67 1.5 1.5 1.5Z\"]);\nexport const TableCheckerRegular = /*#__PURE__*/createFluentIcon('TableCheckerRegular', \"1em\", [\"M16 5.5V11h1V5.5A2.5 2.5 0 0 0 14.5 3H9v1h5.5c.83 0 1.5.67 1.5 1.5ZM3 9v5.5A2.5 2.5 0 0 0 5.5 17H11v-1H5.5A1.5 1.5 0 0 1 4 14.5V9H3Zm2.5-6H8v4h5v5h4v2.5a2.5 2.5 0 0 1-2.5 2.5H12v-4H7V8H3V5.5A2.5 2.5 0 0 1 5.5 3Zm9 13c.78 0 1.42-.6 1.5-1.36V13h-3v3h1.5ZM12 8H8v4h4V8ZM4 7h3V4H5.5c-.78 0-1.42.6-1.5 1.36V7Z\"]);\nexport const TableColumnTopBottomFilled = /*#__PURE__*/createFluentIcon('TableColumnTopBottomFilled', \"1em\", [\"M13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Zm0-5V8h4v4h-4Zm-1 0H8V8h4v4Zm-4 4h4v1H8v-1Zm-1-4V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4ZM8 4h4V3H8v1ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Z\"]);\nexport const TableColumnTopBottomRegular = /*#__PURE__*/createFluentIcon('TableColumnTopBottomRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM14.5 16H13v-3h3V14.64A1.5 1.5 0 0 1 14.5 16ZM12 8v4H8V8h4Zm1 0h3v4h-3V8Zm0-4H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Z\"]);\nexport const TableCopyFilled = /*#__PURE__*/createFluentIcon('TableCopyFilled', \"1em\", [\"M3 13.5A3.5 3.5 0 0 0 6.5 17h7.83c-.77.63-1.76 1-2.83 1h-5A4.5 4.5 0 0 1 2 13.5v-5c0-1.07.37-2.06 1-2.83v7.83ZM15.5 16H14v-4h4v1.5a2.5 2.5 0 0 1-2.5 2.5ZM14 7v4h4V7h-4Zm-5 4h4V7H9v4Zm4 1H9v4h4v-4ZM8 7v4H4V7h4Zm0 5H4v1.5A2.5 2.5 0 0 0 6.5 16H8v-4Zm10-6h-4V2h1.5A2.5 2.5 0 0 1 18 4.5V6Zm-5 0V2H9v4h4ZM8 6V2H6.5A2.5 2.5 0 0 0 4 4.5V6h4Z\"]);\nexport const TableCopyRegular = /*#__PURE__*/createFluentIcon('TableCopyRegular', \"1em\", [\"M3 13.5A3.5 3.5 0 0 0 6.5 17h7.83c-.77.63-1.76 1-2.83 1h-5A4.5 4.5 0 0 1 2 13.5v-5c0-1.07.37-2.06 1-2.83v7.83Zm1.73 1.77A2.5 2.5 0 0 1 4 13.5v-9A2.5 2.5 0 0 1 6.5 2h9A2.5 2.5 0 0 1 18 4.5v9a2.5 2.5 0 0 1-2.5 2.5h-9a2.5 2.5 0 0 1-1.77-.73ZM17 6V4.5A1.5 1.5 0 0 0 15.64 3H14v3h3Zm-4-3H9v3h4V3ZM8 3H6.5A1.5 1.5 0 0 0 5 4.36V6h3V3Zm1 4v4h4V7H9Zm-4 4h3V7H5v4Zm4 1v3h4v-3H9Zm-2.5 3H8v-3H5v1.5A1.5 1.5 0 0 0 6.36 15h.14Zm7.5-3v3h1.5a1.5 1.5 0 0 0 1.5-1.36V12h-3Zm0-5v4h3V7h-3Z\"]);\nexport const TableDeleteColumnFilled = /*#__PURE__*/createFluentIcon('TableDeleteColumnFilled', \"1em\", [\"M10.5 2.5a.5.5 0 0 0-1 0v4.88c.13.1.24.22.36.34l.14.15.14-.15c.12-.12.23-.24.36-.34V2.5Zm-1 15v-4.89c.13-.1.24-.23.36-.35l.14-.14.14.14c.12.12.23.24.36.35v4.89a.5.5 0 0 1-1 0ZM2 3.5c0-.28.22-.5.5-.5H4a2 2 0 0 1 2 2v2H2V3.5Zm0 13V13h4v2a2 2 0 0 1-2 2H2.5a.5.5 0 0 1-.5-.5ZM6 8v4H2V8h4Zm12-4.5a.5.5 0 0 0-.5-.5H16a2 2 0 0 0-2 2v2h4V3.5ZM14 13v2c0 1.1.9 2 2 2h1.5a.5.5 0 0 0 .5-.5V13h-4Zm-2.15-4.85a.5.5 0 0 0-.7 0L10 9.29 8.85 8.15a.5.5 0 1 0-.7.7L9.29 10l-1.14 1.15a.5.5 0 0 0 .7.7L10 10.71l1.15 1.14a.5.5 0 0 0 .7-.7L10.71 10l1.14-1.15a.5.5 0 0 0 0-.7ZM18 12V8h-4v4h4Z\"]);\nexport const TableDeleteColumnRegular = /*#__PURE__*/createFluentIcon('TableDeleteColumnRegular', \"1em\", [\"M10.5 2.5a.5.5 0 0 0-1 0v4.88c.13.1.24.22.36.34l.14.15.14-.15c.12-.12.23-.24.36-.34V2.5Zm-1 15v-4.89c.13-.1.24-.23.36-.35l.14-.14.14.14c.12.12.23.24.36.35v4.89a.5.5 0 0 1-1 0ZM2 3.5c0-.28.22-.5.5-.5H4a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2.5a.5.5 0 0 1 0-1H4a1 1 0 0 0 1-1v-2H2.5a.5.5 0 0 1 0-1H5V8H2.5a.5.5 0 0 1 0-1H5V5a1 1 0 0 0-1-1H2.5a.5.5 0 0 1-.5-.5Zm16 0a.5.5 0 0 0-.5-.5H16a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h1.5a.5.5 0 0 0 0-1H16a1 1 0 0 1-1-1v-2h2.5a.5.5 0 0 0 0-1H15V8h2.5a.5.5 0 0 0 0-1H15V5a1 1 0 0 1 1-1h1.5a.5.5 0 0 0 .5-.5Zm-6.15 4.65a.5.5 0 0 0-.7 0L10 9.29 8.85 8.15a.5.5 0 1 0-.7.7L9.29 10l-1.14 1.15a.5.5 0 0 0 .7.7L10 10.71l1.15 1.14a.5.5 0 0 0 .7-.7L10.71 10l1.14-1.15a.5.5 0 0 0 0-.7Z\"]);\nexport const TableDeleteRowFilled = /*#__PURE__*/createFluentIcon('TableDeleteRowFilled', \"1em\", [\"M12 6H8V2h4v4ZM3.5 2H7v4H5a2 2 0 0 1-2-2V2.5c0-.28.22-.5.5-.5ZM15 6h-2V2h3.5c.28 0 .5.22.5.5V4a2 2 0 0 1-2 2Zm1.5 12a.5.5 0 0 0 .5-.5V16a2 2 0 0 0-2-2h-2v4h3.5ZM12 18v-4H8v4h4Zm-5 0H3.5a.5.5 0 0 1-.5-.5V16c0-1.1.9-2 2-2h2v4Zm10.5-7.5a.5.5 0 0 0 0-1h-4.89a5 5 0 0 1-.48.5l.14.13c.12.12.25.24.35.37h4.88Zm-15-1h4.89a5 5 0 0 0 .34.35l.14.14-.14.14c-.12.12-.25.24-.35.37H2.5a.5.5 0 0 1 0-1Zm9.35 2.35a.5.5 0 0 0 0-.7L10.71 10l1.14-1.15a.5.5 0 0 0-.7-.7L10 9.29 8.85 8.15a.5.5 0 1 0-.7.7L9.29 10l-1.14 1.15a.5.5 0 0 0 .7.7L10 10.71l1.15 1.14c.2.2.5.2.7 0Z\"]);\nexport const TableDeleteRowRegular = /*#__PURE__*/createFluentIcon('TableDeleteRowRegular', \"1em\", [\"M16.5 2c.28 0 .5.22.5.5V4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V2.5a.5.5 0 0 1 1 0V4a1 1 0 0 0 1 1h2V2.5a.5.5 0 0 1 1 0V5h4V2.5a.5.5 0 0 1 1 0V5h2a1 1 0 0 0 1-1V2.5c0-.28.22-.5.5-.5Zm0 16a.5.5 0 0 0 .5-.5V16a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v1.5a.5.5 0 0 0 1 0V16a1 1 0 0 1 1-1h2v2.5a.5.5 0 0 0 1 0V15h4v2.5a.5.5 0 0 0 1 0V15h2a1 1 0 0 1 1 1v1.5c0 .28.22.5.5.5Zm1-7.5a.5.5 0 0 0 0-1h-4.89a5 5 0 0 1-.48.5l.14.13c.12.12.25.24.35.37h4.88Zm-15-1h4.89a5 5 0 0 0 .34.35l.14.14-.14.14c-.12.12-.25.24-.35.37H2.5a.5.5 0 0 1 0-1Zm9.35 2.35a.5.5 0 0 0 0-.7L10.71 10l1.14-1.15a.5.5 0 0 0-.7-.7L10 9.29 8.85 8.15a.5.5 0 1 0-.7.7L9.29 10l-1.14 1.15a.5.5 0 0 0 .7.7L10 10.71l1.15 1.14c.2.2.5.2.7 0Z\"]);\nexport const TableDismissFilled = /*#__PURE__*/createFluentIcon('TableDismissFilled', \"1em\", [\"M13 7h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-6 5V8H3v4h4Zm2.6 0A5.52 5.52 0 0 1 12 9.6V8H8v4h1.6Zm4.9-3c.9 0 1.75.22 2.5.6V8h-4v1.2c.48-.13.98-.2 1.5-.2ZM9 14.5c0-.52.07-1.02.2-1.5H8v4h1.6c-.38-.75-.6-1.6-.6-2.5ZM7 13H3v1.5A2.5 2.5 0 0 0 5.5 17H7v-4Zm5-6V3H8v4h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm12 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-3.8 0 1.15-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15Z\"]);\nexport const TableDismissRegular = /*#__PURE__*/createFluentIcon('TableDismissRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H8v-3h1.2c.1-.35.24-.68.4-1H8V8h4v1.6c.32-.16.65-.3 1-.4V8h3v1.2c.35.1.68.24 1 .4V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 4v3H8V4h4Zm1 0H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM7 4v3H4V5.36A1.5 1.5 0 0 1 5.5 4H7Zm0 4v4H4V8h3Zm12 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-3.8 0 1.15-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15Z\"]);\nexport const TableEditFilled = /*#__PURE__*/createFluentIcon('TableEditFilled', \"1em\", [\"M18.45 13.2a1.87 1.87 0 0 0-2.64-2.65l-4.83 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83ZM15.1 9.83c.53-.53 1.21-.8 1.9-.84V8h-4v3.94l2.1-2.1Zm-4.83 4.83L11.94 13H8v4h1.22l.21-.85a3.2 3.2 0 0 1 .84-1.48ZM12 12H8V8h4v4Zm-5 0V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Z\"]);\nexport const TableEditRegular = /*#__PURE__*/createFluentIcon('TableEditRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h3.72l.21-.85.05-.15H8v-3h3.94L13 11.94V8h3v1.23c.32-.14.66-.21 1-.23V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 8v4H8V8h4Zm0-1H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm8.8 2.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64ZM14.66 17 17 14.65Z\"]);\nexport const TableFreezeColumnFilled = /*#__PURE__*/createFluentIcon('TableFreezeColumnFilled', \"1em\", [\"M16 14.5c0 .83-.67 1.5-1.5 1.5H12v-3H8v4h6.5a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3H8v4h4V4h2.5c.83 0 1.5.67 1.5 1.5v9ZM5.5 3H7v4H3V5.5A2.5 2.5 0 0 1 5.5 3ZM7 12V8H3v4h4Zm5-4H8v4h4V8Zm-9 5h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Z\"]);\nexport const TableFreezeColumnRegular = /*#__PURE__*/createFluentIcon('TableFreezeColumnRegular', \"1em\", [\"M5.5 17A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9ZM12 4H8v3h4V4ZM7 4H5.5c-.78 0-1.42.6-1.5 1.36V7h3V4Zm1 4v4h4V8H8Zm-4 4h3V8H4v4Zm4 1v3h4v-3H8Zm-2.5 3H7v-3H4v1.5c0 .78.6 1.42 1.36 1.5h.14Zm9-12H13v12h1.5c.78 0 1.42-.6 1.5-1.36V5.5c0-.78-.6-1.42-1.36-1.5h-.14Z\"]);\nexport const TableFreezeColumnAndRowFilled = /*#__PURE__*/createFluentIcon('TableFreezeColumnAndRowFilled', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5V12h4V8H4V5.5C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5H12v-3H8v4h6.5a2.5 2.5 0 0 0 2.5-2.5v-9Zm-14 9V13h4v4H5.5A2.5 2.5 0 0 1 3 14.5ZM8 8v4h4V8H8Z\"]);\nexport const TableFreezeColumnAndRowRegular = /*#__PURE__*/createFluentIcon('TableFreezeColumnAndRowRegular', \"1em\", [\"M17 14.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9ZM4 8v4h3V8H4Zm0 5v1.5c0 .78.6 1.42 1.36 1.5H7v-3H4Zm4-1h4V8H8v4Zm4 4v-3H8v3h4ZM4 5.5V7h9v9h1.5c.78 0 1.42-.6 1.5-1.36V5.5c0-.78-.6-1.42-1.36-1.5H5.5c-.78 0-1.42.6-1.5 1.36v.14Z\"]);\nexport const TableFreezeRowFilled = /*#__PURE__*/createFluentIcon('TableFreezeRowFilled', \"1em\", [\"M14.5 4c.83 0 1.5.67 1.5 1.5V8h-3v4h4V5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5V12h4V8H4V5.5C4 4.67 4.67 4 5.5 4h9ZM3 14.5V13h4v4H5.5A2.5 2.5 0 0 1 3 14.5Zm9-1.5H8v4h4v-4ZM8 8v4h4V8H8Zm5 9v-4h4v1.5a2.5 2.5 0 0 1-2.5 2.5H13Z\"]);\nexport const TableFreezeRowRegular = /*#__PURE__*/createFluentIcon('TableFreezeRowRegular', \"1em\", [\"M14.5 17a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9ZM4 12V8h3v4H4Zm12-5H4V5.36A1.5 1.5 0 0 1 5.5 4h9.14A1.5 1.5 0 0 1 16 5.5V7ZM8 8h4v4H8V8Zm-4 6.5V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5Zm8-1.5v3H8v-3h4Zm4-5v4h-3V8h3Zm0 5V14.64A1.5 1.5 0 0 1 14.5 16H13v-3h3Z\"]);\nexport const TableImageFilled = /*#__PURE__*/createFluentIcon('TableImageFilled', \"1em\", [\"M16.5 9c.17 0 .34.01.5.04V8h-4v1h3.5ZM9 16.5V13H8v4h1.04a3.53 3.53 0 0 1-.04-.5Zm.04-4.5A3.5 3.5 0 0 1 12 9.04V8H8v4h1.04ZM7 12V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm3 9.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const TableImageRegular = /*#__PURE__*/createFluentIcon('TableImageRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h3.54a3.53 3.53 0 0 1-.04-.5V16H8v-3h1v-.5c0-.17.01-.34.04-.5H8V8h4v1.04c.16-.03.33-.04.5-.04h.5V8h3v1h.5c.17 0 .34.01.5.04V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 7H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm3 4.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const TableInsertColumnFilled = /*#__PURE__*/createFluentIcon('TableInsertColumnFilled', \"1em\", [\"M4 3.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13Zm13 0a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM9 3a2 2 0 0 0-2 2v2h6V5a2 2 0 0 0-2-2H9Zm-2 9V8h6v4H7Zm0 1h6v2a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-2Z\"]);\nexport const TableInsertColumnRegular = /*#__PURE__*/createFluentIcon('TableInsertColumnRegular', \"1em\", [\"M4 3.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13Zm13 0a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM9 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H9Zm-1 9V8h4v4H8Zm4-7v2H8V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1Zm-4 8h4v2a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-2Z\"]);\nexport const TableInsertRowFilled = /*#__PURE__*/createFluentIcon('TableInsertRowFilled', \"1em\", [\"M3.5 16a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13Zm0-13a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13ZM3 11c0 1.1.9 2 2 2h2V7H5a2 2 0 0 0-2 2v2Zm9 2H8V7h4v6Zm1 0V7h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2Z\"]);\nexport const TableInsertRowRegular = /*#__PURE__*/createFluentIcon('TableInsertRowRegular', \"1em\", [\"M3.5 16a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13Zm0-13a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13ZM3 11c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2Zm9 1H8V8h4v4ZM5 8h2v4H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1Zm8 4V8h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2Z\"]);\nexport const TableLightningFilled = /*#__PURE__*/createFluentIcon('TableLightningFilled', \"1em\", [\"M13.58 9H17V8h-4v1.12c.18-.08.38-.12.58-.12Zm-2.25 3 .67-1.6V8H8v4h3.33Zm-1.21 2.92.8-1.92H8v4h3.5a1.5 1.5 0 0 1-1.38-2.08ZM7 12V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm5.61 13c.33 0 .56.3.49.62l-.44 1.74c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-.4a.5.5 0 0 1-.48-.66l.56-1.68a.5.5 0 0 0-.47-.66h-3.48a.5.5 0 0 0-.46.3l-2.08 5c-.14.34.1.7.46.7h1.11Z\"]);\nexport const TableLightningRegular = /*#__PURE__*/createFluentIcon('TableLightningRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h6a1.5 1.5 0 0 1-1.41-1H8v-3h2.92l.41-1H8V8h4v2.4l.2-.48c.15-.37.45-.65.8-.8V8h3v1h1V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 7H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm5.61 8c.33 0 .56.3.49.62l-.44 1.74c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-.4a.5.5 0 0 1-.48-.66l.56-1.68a.5.5 0 0 0-.47-.66h-3.48a.5.5 0 0 0-.46.3l-2.08 5c-.14.34.1.7.46.7h1.11Z\"]);\nexport const TableLinkFilled = /*#__PURE__*/createFluentIcon('TableLinkFilled', \"1em\", [\"M9 15.5c0 .54.12 1.05.34 1.5H8v-4h2.05A3.49 3.49 0 0 0 9 15.5ZM13 8v4h3.5c.17 0 .34.01.5.04V8h-4Zm-1 4V8H8v4h4Zm-5 0V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm3 12.5a2.5 2.5 0 0 1 2.5-2.5h.5a.5.5 0 0 1 0 1h-.5a1.5 1.5 0 0 0 0 3h.5a.5.5 0 0 1 0 1h-.5a2.5 2.5 0 0 1-2.5-2.5Zm5.5-2c0-.28.22-.5.5-.5h.5a2.5 2.5 0 0 1 0 5H16a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 0 0-3H16a.5.5 0 0 1-.5-.5Zm-3 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const TableLinkRegular = /*#__PURE__*/createFluentIcon('TableLinkRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h3.84a3.48 3.48 0 0 1-.3-1H8v-3h2.05a3.49 3.49 0 0 1 2.45-1h.5V8h3v4h.5c.17 0 .34.01.5.04V5.5ZM12 8v4H8V8h4Zm-8 6.5V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 7H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm3 7.5a2.5 2.5 0 0 1 2.5-2.5h.5a.5.5 0 0 1 0 1h-.5a1.5 1.5 0 0 0 0 3h.5a.5.5 0 0 1 0 1h-.5a2.5 2.5 0 0 1-2.5-2.5Zm5.5-2c0-.28.22-.5.5-.5h.5a2.5 2.5 0 0 1 0 5H16a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 0 0-3H16a.5.5 0 0 1-.5-.5Zm-3 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const TableLockFilled = /*#__PURE__*/createFluentIcon('TableLockFilled', \"1em\", [\"M15.5 9c.55 0 1.06.15 1.5.4V8h-4v2.34A3 3 0 0 1 15.5 9ZM11 14c0-.36.1-.7.27-1H8v4h3v-3Zm1-2H8V8h4v4Zm-5 0V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4ZM7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Zm6.5 9v1H13a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const TableLockRegular = /*#__PURE__*/createFluentIcon('TableLockRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17H11v-1H8v-3h3.27a2 2 0 0 1 1.23-.94V12c0-.61.18-1.18.5-1.66V8h3v1.04c.36.06.7.19 1 .36V5.5Zm-13 9V13h3v3H5.36A1.5 1.5 0 0 1 4 14.5ZM12 8v4H8V8h4Zm0-1H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm3 1v4H4V8h3Zm6.5 4v1H13a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const TableMoveAboveFilled = /*#__PURE__*/createFluentIcon('TableMoveAboveFilled', \"1em\", [\"M3.5 3a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13ZM8 12V8.41c.16.06.33.09.5.09v1a1.5 1.5 0 0 0 3 0v-1c.17 0 .34-.03.5-.09V12H8Zm7 5h-2v-4h4v2a2 2 0 0 1-2 2Zm2-5h-4V8h3.5c.28 0 .5.22.5.5V12Zm-9 5h4v-4H8v4ZM7 8v4H3V8.5c0-.28.22-.5.5-.5H7Zm0 9H5a2 2 0 0 1-2-2v-2h4v4Zm4.15-9.65a.5.5 0 0 0 .7-.7l-1.5-1.5a.5.5 0 0 0-.7 0l-1.5 1.5a.5.5 0 1 0 .7.7l.65-.64V9.5a.5.5 0 0 0 1 0V6.7l.65.65Z\"]);\nexport const TableMoveAboveRegular = /*#__PURE__*/createFluentIcon('TableMoveAboveRegular', \"1em\", [\"M3 3.5c0-.28.22-.5.5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5ZM3.5 8h3.88a1.52 1.52 0 0 0 .62.41V12h4V8.41a1.5 1.5 0 0 0 .62-.41h3.88c.28 0 .5.22.5.5V15a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8.5c0-.28.22-.5.5-.5Zm.5 5v2a1 1 0 0 0 1 1h2v-3H4Zm8 3v-3H8v3h4Zm1 0h2a1 1 0 0 0 1-1v-2h-3v3Zm0-4h3V9h-3v3ZM4 9v3h3V9H4Zm7.15-1.65a.5.5 0 0 0 .7-.7l-1.5-1.5a.5.5 0 0 0-.7 0l-1.5 1.5a.5.5 0 1 0 .7.7l.65-.64V9.5a.5.5 0 0 0 1 0V6.7l.65.65Z\"]);\nexport const TableMoveBelowFilled = /*#__PURE__*/createFluentIcon('TableMoveBelowFilled', \"1em\", [\"M16.5 17a.5.5 0 0 0 0-1h-13a.5.5 0 0 0 0 1h13ZM12 8v3.59a1.5 1.5 0 0 0-.5-.09v-1a1.5 1.5 0 0 0-3 0v1c-.17 0-.34.03-.5.09V8h4ZM5 3h2v4H3V5c0-1.1.9-2 2-2ZM3 8h4v4H3.5a.5.5 0 0 1-.5-.5V8Zm9-5H8v4h4V3Zm1 9V8h4v3.5a.5.5 0 0 1-.5.5H13Zm0-9h2a2 2 0 0 1 2 2v2h-4V3Zm-4.15 9.65a.5.5 0 0 0-.7.7l1.5 1.5c.2.2.5.2.7 0l1.5-1.5a.5.5 0 0 0-.7-.7l-.65.64V10.5a.5.5 0 0 0-1 0v2.8l-.65-.65Z\"]);\nexport const TableMoveBelowRegular = /*#__PURE__*/createFluentIcon('TableMoveBelowRegular', \"1em\", [\"M17 16.5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1 0-1h13c.28 0 .5.22.5.5Zm-.5-4.5h-3.88a1.5 1.5 0 0 0-.62-.41V8H8v3.59a1.5 1.5 0 0 0-.62.41H3.5a.5.5 0 0 1-.5-.5V5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6.5a.5.5 0 0 1-.5.5ZM16 7V5a1 1 0 0 0-1-1h-2v3h3ZM8 4v3h4V4H8ZM7 4H5a1 1 0 0 0-1 1v2h3V4Zm0 4H4v3h3V8Zm9 3V8h-3v3h3Zm-7.15 1.65a.5.5 0 0 0-.7.7l1.5 1.5c.2.2.5.2.7 0l1.5-1.5a.5.5 0 0 0-.7-.7l-.65.64V10.5a.5.5 0 0 0-1 0v2.8l-.65-.65Z\"]);\nexport const TableMoveLeftFilled = /*#__PURE__*/createFluentIcon('TableMoveLeftFilled', \"1em\", [\"M3 16.5a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-1 0v13Zm9-4.5H8.41c.06-.16.09-.33.09-.5h1a1.5 1.5 0 0 0 0-3h-1c0-.17-.03-.34-.09-.5H12v4Zm5-7v2h-4V3h2a2 2 0 0 1 2 2Zm-5-2v4H8V3.5c0-.28.22-.5.5-.5H12Zm5 9V8h-4v4h4Zm-9 1h4v4H8.5a.5.5 0 0 1-.5-.5V13Zm9 0v2a2 2 0 0 1-2 2h-2v-4h4ZM7.35 8.85a.5.5 0 1 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65H9.5a.5.5 0 0 0 0-1H6.7l.65-.65Z\"]);\nexport const TableMoveLeftRegular = /*#__PURE__*/createFluentIcon('TableMoveLeftRegular', \"1em\", [\"M3.5 17a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5Zm4.5-.5v-3.88a1.55 1.55 0 0 0 .41-.62H12V8H8.41A1.5 1.5 0 0 0 8 7.38V3.5c0-.28.22-.5.5-.5H15a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H8.5a.5.5 0 0 1-.5-.5Zm5-.5h2a1 1 0 0 0 1-1v-2h-3v3Zm3-8h-3v4h3V8Zm0-1V5a1 1 0 0 0-1-1h-2v3h3Zm-4 0V4H9v3h3Zm-3 9h3v-3H9v3ZM7.35 8.85a.5.5 0 1 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65H9.5a.5.5 0 0 0 0-1H6.7l.65-.65Z\"]);\nexport const TableMoveRightFilled = /*#__PURE__*/createFluentIcon('TableMoveRightFilled', \"1em\", [\"M17 3.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM8 8h3.59a1.5 1.5 0 0 0-.09.5h-1a1.5 1.5 0 1 0 0 3h1c0 .17.03.34.09.5H8V8Zm-5 7v-2h4v4H5a2 2 0 0 1-2-2Zm5 2v-4h4v3.5a.5.5 0 0 1-.5.5H8ZM3 8v4h4V8H3Zm9-1H8V3h3.5c.28 0 .5.22.5.5V7ZM3 7V5c0-1.1.9-2 2-2h2v4H3Zm9.65 4.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7.7l.64.65H10.5a.5.5 0 0 0 0 1h2.8l-.65.65Z\"]);\nexport const TableMoveRightRegular = /*#__PURE__*/createFluentIcon('TableMoveRightRegular', \"1em\", [\"M16.5 3c.28 0 .5.22.5.5v13a.5.5 0 0 1-1 0v-13c0-.28.22-.5.5-.5Zm-4.5.5v3.88a1.5 1.5 0 0 0-.41.62H8v4h3.59a1.5 1.5 0 0 0 .41.62v3.88a.5.5 0 0 1-.5.5H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h6.5c.28 0 .5.22.5.5ZM7 4H5a1 1 0 0 0-1 1v2h3V4Zm-3 8h3V8H4v4Zm0 1v2a1 1 0 0 0 1 1h2v-3H4Zm4 0v3h3v-3H8Zm3-9H8v3h3V4Zm1.65 7.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7.7l.64.65H10.5a.5.5 0 0 0 0 1h2.8l-.65.65Z\"]);\nexport const TableMultipleFilled = /*#__PURE__*/createFluentIcon('TableMultipleFilled', \"1em\", [\"M17 13.5a3.5 3.5 0 0 1-3.5 3.5H5.67c.78.63 1.76 1 2.83 1h5a4.5 4.5 0 0 0 4.5-4.5v-5c0-1.07-.37-2.06-1-2.83v7.83ZM4.5 16H6v-4H2v1.5A2.5 2.5 0 0 0 4.5 16ZM6 7v4H2V7h4Zm5 4H7V7h4v4Zm-4 1h4v4H7v-4Zm5-5v4h4V7h-4Zm0 5h4v1.5a2.5 2.5 0 0 1-2.5 2.5H12v-4ZM2 6h4V2H4.5A2.5 2.5 0 0 0 2 4.5V6Zm5 0V2h4v4H7Zm5 0V2h1.5A2.5 2.5 0 0 1 16 4.5V6h-4Z\"]);\nexport const TableMultipleRegular = /*#__PURE__*/createFluentIcon('TableMultipleRegular', \"1em\", [\"M5.67 17h7.84c.95 0 1.82-.39 2.45-1.01l.02-.02A3.49 3.49 0 0 0 17 13.5V5.67c.63.77 1 1.76 1 2.83v5a4.5 4.5 0 0 1-4.5 4.5h-5a4.48 4.48 0 0 1-2.83-1Zm9.6-14.27c.47.47.73 1.1.73 1.77v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 2 13.5v-9A2.5 2.5 0 0 1 4.5 2h9c.66 0 1.3.26 1.77.73ZM4.5 3h-.14A1.5 1.5 0 0 0 3 4.5V6h3V3H4.5ZM11 3H7v3h4V3Zm4 1.5v-.14A1.5 1.5 0 0 0 13.5 3H12v3h3V4.5ZM7 7v4h4V7H7Zm8 0h-3v4h3V7Zm-8 5v3h4v-3H7Zm8 0h-3v3H13.64A1.5 1.5 0 0 0 15 13.5V12ZM3.5 14.61c.27.25.63.39 1 .39H6v-3H3V13.64c.04.38.22.72.5.97ZM3 7v4h3V7H3Z\"]);\nexport const TableOffsetFilled = /*#__PURE__*/createFluentIcon('TableOffsetFilled', \"1em\", [\"M5.5 3H12v4H3V5.5A2.5 2.5 0 0 1 5.5 3ZM8 8h9v4H8V8Zm-1 4V8H3v4h4Zm-4 1h9v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10 0v4h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4Zm0-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Z\"]);\nexport const TableOffsetRegular = /*#__PURE__*/createFluentIcon('TableOffsetRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-9ZM16 12H8V8h8v4Zm-3 1h3v1.5c0 .83-.67 1.5-1.5 1.5H13v-3Zm-1 0v3H5.5A1.5 1.5 0 0 1 4 14.5V13h8Zm-8-1V8h3v4H4Zm0-5V5.5C4 4.67 4.67 4 5.5 4H12v3H4Zm12-1.5V7h-3V4h1.5c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const TableOffsetAddFilled = /*#__PURE__*/createFluentIcon('TableOffsetAddFilled', \"1em\", [\"M5.5 3H12v4H3V5.5A2.5 2.5 0 0 1 5.5 3ZM8 8h9v1.6A5.48 5.48 0 0 0 9.6 12H8V8Zm1 6.5c0-.52.07-1.02.2-1.5H3v1.5A2.5 2.5 0 0 0 5.5 17h4.1c-.38-.75-.6-1.6-.6-2.5ZM7 12V8H3v4h4Zm6-5h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm6 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TableOffsetAddRegular = /*#__PURE__*/createFluentIcon('TableOffsetAddRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5V13h5.2c.1-.35.24-.68.4-1H8V8h8v1.2c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9ZM7 12H4V8h3v4ZM4 7V5.5C4 4.67 4.67 4 5.5 4H12v3H4Zm12-1.5V7h-3V4h1.5c.83 0 1.5.67 1.5 1.5Zm3 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TableOffsetLessThanOrEqualToFilled = /*#__PURE__*/createFluentIcon('TableOffsetLessThanOrEqualToFilled', \"1em\", [\"M5.5 3H12v4H3V5.5A2.5 2.5 0 0 1 5.5 3ZM8 8h9v1.6A5.48 5.48 0 0 0 9.6 12H8V8Zm1 6.5c0-.52.07-1.02.2-1.5H3v1.5A2.5 2.5 0 0 0 5.5 17h4.1c-.38-.75-.6-1.6-.6-2.5ZM7 12V8H3v4h4Zm6-5h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm1.5 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM13 16h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Zm2.4-4.8a.5.5 0 0 1-.1.7L13.83 13l1.47 1.1a.5.5 0 0 1-.6.8l-2-1.5a.5.5 0 0 1 0-.8l2-1.5a.5.5 0 0 1 .7.1Z\"]);\nexport const TableOffsetLessThanOrEqualToRegular = /*#__PURE__*/createFluentIcon('TableOffsetLessThanOrEqualToRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5V13h5.2c.1-.35.24-.68.4-1H8V8h8v1.2c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9ZM7 12H4V8h3v4ZM4 7V5.5C4 4.67 4.67 4 5.5 4H12v3H4Zm12-1.5V7h-3V4h1.5c.83 0 1.5.67 1.5 1.5ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM13 16h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Zm2.4-4.8a.5.5 0 0 1-.1.7L13.83 13l1.47 1.1a.5.5 0 0 1-.6.8l-2-1.5a.5.5 0 0 1 0-.8l2-1.5a.5.5 0 0 1 .7.1Z\"]);\nexport const TableOffsetSettingsFilled = /*#__PURE__*/createFluentIcon('TableOffsetSettingsFilled', \"1em\", [\"M5.5 3H12v4H3V5.5A2.5 2.5 0 0 1 5.5 3ZM8 8h9v1.6A5.48 5.48 0 0 0 9.6 12H8V8Zm1 6.5c0-.52.07-1.02.2-1.5H3v1.5A2.5 2.5 0 0 0 5.5 17h4.1c-.38-.75-.6-1.6-.6-2.5ZM7 12V8H3v4h4Zm6-5h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-.93 4.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 0 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.29.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const TableOffsetSettingsRegular = /*#__PURE__*/createFluentIcon('TableOffsetSettingsRegular', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5V13h5.2c.1-.35.24-.68.4-1H8V8h8v1.2c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9ZM7 12H4V8h3v4ZM4 7V5.5C4 4.67 4.67 4 5.5 4H12v3H4Zm12-1.5V7h-3V4h1.5c.83 0 1.5.67 1.5 1.5Zm-3.93 5.94a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 0 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.29.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const TableResizeColumnFilled = /*#__PURE__*/createFluentIcon('TableResizeColumnFilled', \"1em\", [\"M14 3a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3v-4.38l.06-.06 1.5-1.5a1.5 1.5 0 0 0 0-2.12l-1.5-1.5a1.6 1.6 0 0 0-.06-.06V3Zm-1 0v4a1.5 1.5 0 0 0-1.5 1.5h-3A1.5 1.5 0 0 0 7 7V3h6Zm-4.94 9.56c-.3.3-.68.44-1.06.44v4h6v-4a1.5 1.5 0 0 1-1.5-1.5h-3c0 .38-.15.77-.44 1.06ZM6 17v-4.38a1.55 1.55 0 0 1-.06-.06l-1.5-1.5a1.5 1.5 0 0 1 0-2.12l1.5-1.5.06-.06V3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3Zm1.35-8.85c.2.2.2.5 0 .7l-.64.65h6.58l-.64-.65a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65H6.71l.64.65a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5c.2-.2.5-.2.7 0Z\"]);\nexport const TableResizeColumnRegular = /*#__PURE__*/createFluentIcon('TableResizeColumnRegular', \"1em\", [\"M7.35 8.15c.2.2.2.5 0 .7l-.64.65h6.58l-.64-.65a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65H6.71l.64.65a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5c.2-.2.5-.2.7 0ZM17 6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6Zm-4-2v3c.36 0 .72.13 1 .38V4a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2v-3.38a1.5 1.5 0 0 1-1 .38v3H7v-3a1.5 1.5 0 0 1-1-.38V16a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2v3.38A1.5 1.5 0 0 1 7 7V4h6Z\"]);\nexport const TableResizeRowFilled = /*#__PURE__*/createFluentIcon('TableResizeRowFilled', \"1em\", [\"M17 14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3h4.38l.06.06 1.5 1.5a1.5 1.5 0 0 0 2.12 0l1.5-1.5.06-.06H17Zm0-1h-4a1.5 1.5 0 0 0-1.5-1.5v-3A1.5 1.5 0 0 0 13 7h4v6ZM7.44 8.06A1.5 1.5 0 0 1 7 7H3v6h4a1.5 1.5 0 0 1 1.5-1.5v-3a1.5 1.5 0 0 1-1.06-.44ZM3 6h4.38l.06-.06 1.5-1.5a1.5 1.5 0 0 1 2.12 0l1.5 1.5.06.06H17a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3Zm8.85 1.35a.5.5 0 0 1-.7 0l-.65-.64v6.58l.65-.64a.5.5 0 0 1 .7.7l-1.5 1.5a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 .7-.7l.65.64V6.71l-.65.64a.5.5 0 1 1-.7-.7l1.5-1.5c.2-.2.5-.2.7 0l1.5 1.5c.2.2.2.5 0 .7Z\"]);\nexport const TableResizeRowRegular = /*#__PURE__*/createFluentIcon('TableResizeRowRegular', \"1em\", [\"M11.85 7.35a.5.5 0 0 1-.7 0l-.65-.64v6.58l.65-.64a.5.5 0 0 1 .7.7l-1.5 1.5a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 .7-.7l.65.64V6.71l-.65.64a.5.5 0 1 1-.7-.7l1.5-1.5c.2-.2.5-.2.7 0l1.5 1.5c.2.2.2.5 0 .7ZM14 17a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8Zm2-4h-3c0 .36-.13.72-.38 1H16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2h3.38A1.5 1.5 0 0 1 7 13H4V7h3c0-.36.13-.72.38-1H4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2h-3.38c.25.28.38.64.38 1h3v6Z\"]);\nexport const TableSearchFilled = /*#__PURE__*/createFluentIcon('TableSearchFilled', \"1em\", [\"M13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Z\", \"M13 12V8h4v4h-4Z\", \"M12 12H8.74A4.5 4.5 0 0 0 8 10.67V8h4v4Z\", \"M8.56 15.44 10.12 17H12v-4H8.97a4.55 4.55 0 0 1-.4 2.44Z\", \"M4.5 9c.93 0 1.78.28 2.5.76V8H3v1.26A4.5 4.5 0 0 1 4.5 9Z\", \"M13 7h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Z\", \"M12 3v4H8V3h4Z\", \"M7 3v4H3V5.5A2.5 2.5 0 0 1 5.5 3H7Z\", \"M4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const TableSearchRegular = /*#__PURE__*/createFluentIcon('TableSearchRegular', \"1em\", [\"M17 5.5A2.5 2.5 0 0 0 14.5 3h-9A2.5 2.5 0 0 0 3 5.5v3.76c.32-.12.66-.2 1-.23V8h3v1.76a4.49 4.49 0 0 1 1 .91V8h4v4H8.74a4.5 4.5 0 0 1 .23 1H12v3H9.12l1 1h4.38a2.5 2.5 0 0 0 2.5-2.5v-9ZM14.5 16H13v-3h3V14.64A1.5 1.5 0 0 1 14.5 16ZM13 8h3v4h-3V8Zm-1-1H8V4h4v3Zm1-3H14.64A1.5 1.5 0 0 1 16 5.5V7h-3V4ZM4 7V5.36A1.5 1.5 0 0 1 5.5 4H7v3H4Zm-2.62 4.9a3.5 3.5 0 0 0 5.22 4.4l2.54 2.56a.5.5 0 0 0 .71-.71L7.3 15.6a3.5 3.5 0 1 0-5.92-3.7Zm5.2.21a2.5 2.5 0 1 1-4.16 2.78 2.5 2.5 0 0 1 4.16-2.78Z\"]);\nexport const TableSettingsFilled = /*#__PURE__*/createFluentIcon('TableSettingsFilled', \"1em\", [\"M17 9.6a5.48 5.48 0 0 0-4-.4V8h4v1.6ZM9.2 13a5.5 5.5 0 0 0 .4 4H8v-4h1.2ZM12 9.6A5.52 5.52 0 0 0 9.6 12H8V8h4v1.6ZM7 8v4H3V8h4Zm0 5H3v1.5A2.5 2.5 0 0 0 5.5 17H7v-4Zm10-6h-4V3h1.5A2.5 2.5 0 0 1 17 5.5V7Zm-5 0V3H8v4h4ZM7 7V3H5.5A2.5 2.5 0 0 0 3 5.5V7h4Zm5.06 4.44a2 2 0 0 1-1.43 2.48l-.46.12a4.74 4.74 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55Zm2.44 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const TableSettingsRegular = /*#__PURE__*/createFluentIcon('TableSettingsRegular', \"1em\", [\"M14.5 3A2.5 2.5 0 0 1 17 5.5v4.1c-.32-.16-.65-.3-1-.4V8h-3v1.2c-.35.1-.68.24-1 .4V8H8v4h1.6c-.16.32-.3.65-.4 1H8v3h1.2c.1.35.24.68.4 1H5.5A2.5 2.5 0 0 1 3 14.5v-9A2.5 2.5 0 0 1 5.5 3h9ZM4 13v1.5c0 .78.6 1.42 1.36 1.5H7v-3H4Zm4-6h4V4H8v3Zm6.5-3H13v3h3V5.5c0-.78-.6-1.42-1.36-1.5h-.14ZM4 5.5V7h3V4H5.5c-.78 0-1.42.6-1.5 1.36v.14ZM7 12V8H4v4h3Zm5.06-.56a2 2 0 0 1-1.43 2.48l-.46.12a4.74 4.74 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55Zm2.44 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const TableSimpleFilled = /*#__PURE__*/createFluentIcon('TableSimpleFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v4h6.5V3h-4Zm4 7.5H3v4A2.5 2.5 0 0 0 5.5 17h4v-6.5Zm1 0H17v4a2.5 2.5 0 0 1-2.5 2.5h-4v-6.5Zm6.5-1v-4A2.5 2.5 0 0 0 14.5 3h-4v6.5H17Z\"]);\nexport const TableSimpleRegular = /*#__PURE__*/createFluentIcon('TableSimpleRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9Zm1 5v4c0 .83.67 1.5 1.5 1.5h4v-5.5H4Zm5.5-1V4h-4C4.67 4 4 4.67 4 5.5v4h5.5Zm1 1V16h4c.83 0 1.5-.67 1.5-1.5v-4h-5.5Zm5.5-1v-4c0-.83-.67-1.5-1.5-1.5h-4v5.5H16Z\"]);\nexport const TableSimpleCheckmarkFilled = /*#__PURE__*/createFluentIcon('TableSimpleCheckmarkFilled', \"1em\", [\"M14 17h-3.5v-6.5H17V14a3 3 0 0 1-3 3Zm3-7.5h-6.5V3H14a3 3 0 0 1 3 3v3.5Zm-7.5 0V3H6a3 3 0 0 0-3 3v3.5h6.5Zm0 7.5v-6.5H3V14a3 3 0 0 0 3 3h3.5Zm5.85-3.9a.5.5 0 0 0-.7-.7l-1.4 1.4-.4-.4a.5.5 0 0 0-.7.7l.75.75c.2.2.5.2.7 0l1.75-1.75Z\"]);\nexport const TableSimpleCheckmarkRegular = /*#__PURE__*/createFluentIcon('TableSimpleCheckmarkRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h3.5v5.5H4V6Zm6.5 3.5V4H14a2 2 0 0 1 2 2v3.5h-5.5Zm-6.5 1h5.5V16H6a2 2 0 0 1-2-2v-3.5Zm10.86 1.4c.2.2.2.5 0 .7l-1.75 1.75a.5.5 0 0 1-.71 0l-.75-.75a.5.5 0 0 1 .7-.7l.4.4 1.4-1.4c.2-.2.51-.2.7 0Z\"]);\nexport const TableSimpleExcludeFilled = /*#__PURE__*/createFluentIcon('TableSimpleExcludeFilled', \"1em\", [\"M4.5 2H8v6H2V4.5A2.5 2.5 0 0 1 4.5 2ZM2 9v3.5A2.5 2.5 0 0 0 4.5 15H8V9H2Zm13-1V4.5A2.5 2.5 0 0 0 12.5 2H9v6h6Zm-4 5c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4Z\"]);\nexport const TableSimpleExcludeRegular = /*#__PURE__*/createFluentIcon('TableSimpleExcludeRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v8A2.5 2.5 0 0 0 4.5 15h4a.5.5 0 0 0 .5-.5V9h5.5a.5.5 0 0 0 .5-.5v-4A2.5 2.5 0 0 0 12.5 2h-8ZM8 9v5H4.5A1.5 1.5 0 0 1 3 12.5V9h5Zm0-1H3V4.5C3 3.67 3.67 3 4.5 3H8v5Zm1 0V3h3.5c.83 0 1.5.67 1.5 1.5V8H9Zm2 5c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-4Z\"]);\nexport const TableSimpleIncludeFilled = /*#__PURE__*/createFluentIcon('TableSimpleIncludeFilled', \"1em\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v4h6.13c.11-.14.23-.26.37-.37V3h-4ZM3 10.5h5.6c-.06.24-.1.49-.1.75v4c0 .66.24 1.27.63 1.75H5.5A2.5 2.5 0 0 1 3 14.5v-4Zm14-5v3.63a2.74 2.74 0 0 0-1.75-.63h-4c-.26 0-.51.04-.75.1V3h4A2.5 2.5 0 0 1 17 5.5Zm-7.5 5.75c0-.97.78-1.75 1.75-1.75h4c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-4c-.97 0-1.75-.78-1.75-1.75v-4Z\"]);\nexport const TableSimpleIncludeRegular = /*#__PURE__*/createFluentIcon('TableSimpleIncludeRegular', \"1em\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v3.63a2.74 2.74 0 0 0-1-.53V5.5c0-.83-.67-1.5-1.5-1.5h-4v4.6c-.37.1-.71.29-1 .53V4h-4C4.67 4 4 4.67 4 5.5v4h5.13c-.24.29-.42.63-.53 1H4v4c0 .83.67 1.5 1.5 1.5h3.1c.1.37.29.71.53 1H5.5A2.5 2.5 0 0 1 3 14.5v-9Zm6.5 5.75c0-.97.78-1.75 1.75-1.75h4c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-4c-.97 0-1.75-.78-1.75-1.75v-4Z\"]);\nexport const TableSimpleMultipleFilled = /*#__PURE__*/createFluentIcon('TableSimpleMultipleFilled', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5V8h6V2H4.5ZM2 12.5V9h6v6H4.5A2.5 2.5 0 0 1 2 12.5ZM9 15V9h6v3.5a2.5 2.5 0 0 1-2.5 2.5H9Zm6-10.5V8H9V2h3.5A2.5 2.5 0 0 1 15 4.5ZM7.5 18a2.5 2.5 0 0 1-2.45-2h7.45a3.5 3.5 0 0 0 3.5-3.5V5.05a2.5 2.5 0 0 1 2 2.45v5.75A4.75 4.75 0 0 1 13.25 18H7.5Z\"]);\nexport const TableSimpleMultipleRegular = /*#__PURE__*/createFluentIcon('TableSimpleMultipleRegular', \"1em\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v8A2.5 2.5 0 0 0 4.5 15h8a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 12.5 2h-8ZM14 8H9V3h3.5c.83 0 1.5.67 1.5 1.5V8ZM8 8H3V4.5C3 3.67 3.67 3 4.5 3H8v5ZM3 9h5v5H4.5A1.5 1.5 0 0 1 3 12.5V9Zm6 0h5v3.5c0 .83-.67 1.5-1.5 1.5H9V9Zm-1.5 9a2.5 2.5 0 0 1-2.45-2H6.1c.2.58.76 1 1.41 1h5.75A3.75 3.75 0 0 0 17 13.25V7.5c0-.65-.42-1.2-1-1.41V5.05a2.5 2.5 0 0 1 2 2.45v5.75A4.75 4.75 0 0 1 13.25 18H7.5Z\"]);\nexport const TableSplitFilled = /*#__PURE__*/createFluentIcon('TableSplitFilled', \"1em\", [\"M8 6h4V2H8v4ZM7 2H3.5a.5.5 0 0 0-.5.5V4c0 1.1.9 2 2 2h2V2Zm6 4h2a2 2 0 0 0 2-2V2.5a.5.5 0 0 0-.5-.5H13v4Zm4 11.5a.5.5 0 0 1-.5.5H13v-4h2a2 2 0 0 1 2 2v1.5ZM12 14v4H8v-4h4Zm-8.5 4H7v-4H5a2 2 0 0 0-2 2v1.5c0 .28.22.5.5.5Zm-1-8.5h15a.5.5 0 1 1 0 1h-15a.5.5 0 0 1 0-1Z\"]);\nexport const TableSplitRegular = /*#__PURE__*/createFluentIcon('TableSplitRegular', \"1em\", [\"M16.5 2c.28 0 .5.22.5.5V4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V2.5a.5.5 0 0 1 1 0V4a1 1 0 0 0 1 1h2V2.5a.5.5 0 0 1 1 0V5h4V2.5a.5.5 0 0 1 1 0V5h2a1 1 0 0 0 1-1V2.5c0-.28.22-.5.5-.5Zm0 16a.5.5 0 0 0 .5-.5V16a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v1.5a.5.5 0 0 0 1 0V16a1 1 0 0 1 1-1h2v2.5a.5.5 0 0 0 1 0V15h4v2.5a.5.5 0 0 0 1 0V15h2a1 1 0 0 1 1 1v1.5c0 .28.22.5.5.5Zm-14-8.5h15a.5.5 0 1 1 0 1h-15a.5.5 0 0 1 0-1Z\"]);\nexport const TableStackAboveFilled = /*#__PURE__*/createFluentIcon('TableStackAboveFilled', \"1em\", [\"M3.5 3a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-13ZM15 17h-2v-4h4v2a2 2 0 0 1-2 2Zm2-5h-4V8h3.5c.28 0 .5.22.5.5V12Zm-5 0V8H8v4h4Zm-4 5h4v-4H8v4ZM7 8v4H3V8.5c0-.28.22-.5.5-.5H7Zm0 9H5a2 2 0 0 1-2-2v-2h4v4Z\"]);\nexport const TableStackAboveRegular = /*#__PURE__*/createFluentIcon('TableStackAboveRegular', \"1em\", [\"M3 3.5c0-.28.22-.5.5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5Zm0 5c0-.28.22-.5.5-.5h13c.28 0 .5.22.5.5V15a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8.5ZM4 13v2a1 1 0 0 0 1 1h2v-3H4Zm8 3v-3H8v3h4Zm1 0h2a1 1 0 0 0 1-1v-2h-3v3Zm0-4h3V9h-3v3Zm-1-3H8v3h4V9ZM4 9v3h3V9H4Z\"]);\nexport const TableStackBelowFilled = /*#__PURE__*/createFluentIcon('TableStackBelowFilled', \"1em\", [\"M16.5 17a.5.5 0 0 0 0-1h-13a.5.5 0 0 0 0 1h13ZM5 3h2v4H3V5c0-1.1.9-2 2-2ZM3 8h4v4H3.5a.5.5 0 0 1-.5-.5V8Zm5 0v4h4V8H8Zm4-5H8v4h4V3Zm1 9V8h4v3.5a.5.5 0 0 1-.5.5H13Zm0-9h2a2 2 0 0 1 2 2v2h-4V3Z\"]);\nexport const TableStackBelowRegular = /*#__PURE__*/createFluentIcon('TableStackBelowRegular', \"1em\", [\"M17 16.5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1 0-1h13c.28 0 .5.22.5.5Zm0-5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5V5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6.5ZM16 7V5a1 1 0 0 0-1-1h-2v3h3ZM8 4v3h4V4H8ZM7 4H5a1 1 0 0 0-1 1v2h3V4Zm0 4H4v3h3V8Zm1 3h4V8H8v3Zm8 0V8h-3v3h3Z\"]);\nexport const TableStackLeftFilled = /*#__PURE__*/createFluentIcon('TableStackLeftFilled', \"1em\", [\"M3 16.5a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-1 0v13ZM17 5v2h-4V3h2a2 2 0 0 1 2 2Zm-5-2v4H8V3.5c0-.28.22-.5.5-.5H12Zm0 5H8v4h4V8Zm5 4V8h-4v4h4Zm-9 1h4v4H8.5a.5.5 0 0 1-.5-.5V13Zm9 0v2a2 2 0 0 1-2 2h-2v-4h4Z\"]);\nexport const TableStackLeftRegular = /*#__PURE__*/createFluentIcon('TableStackLeftRegular', \"1em\", [\"M3.5 17a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5Zm5 0a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5H15a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H8.5Zm4.5-1h2a1 1 0 0 0 1-1v-2h-3v3Zm3-8h-3v4h3V8Zm0-1V5a1 1 0 0 0-1-1h-2v3h3Zm-4 0V4H9v3h3ZM9 8v4h3V8H9Zm0 8h3v-3H9v3Z\"]);\nexport const TableStackRightFilled = /*#__PURE__*/createFluentIcon('TableStackRightFilled', \"1em\", [\"M17 3.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM3 15v-2h4v4H5a2 2 0 0 1-2-2Zm5 2v-4h4v3.5a.5.5 0 0 1-.5.5H8Zm0-5h4V8H8v4ZM3 8v4h4V8H3Zm9-1H8V3h3.5c.28 0 .5.22.5.5V7ZM3 7V5c0-1.1.9-2 2-2h2v4H3Z\"]);\nexport const TableStackRightRegular = /*#__PURE__*/createFluentIcon('TableStackRightRegular', \"1em\", [\"M16.5 3c.28 0 .5.22.5.5v13a.5.5 0 0 1-1 0v-13c0-.28.22-.5.5-.5Zm-5 0c.28 0 .5.22.5.5v13a.5.5 0 0 1-.5.5H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h6.5ZM7 4H5a1 1 0 0 0-1 1v2h3V4Zm-3 8h3V8H4v4Zm0 1v2a1 1 0 0 0 1 1h2v-3H4Zm4 0v3h3v-3H8Zm3-1V8H8v4h3Zm0-8H8v3h3V4Z\"]);\nexport const TableSwitchFilled = /*#__PURE__*/createFluentIcon('TableSwitchFilled', \"1em\", [\"M7.85 1.15a.5.5 0 1 0-.7.7L8.29 3H6a3 3 0 0 0-3 3v2.3L1.85 7.14a.5.5 0 1 0-.7.7l2 2c.2.2.5.2.7 0l2-2a.5.5 0 1 0-.7-.7L4 8.29V6c0-1.1.9-2 2-2h2.3L7.14 5.15a.5.5 0 1 0 .7.7l2-2a.5.5 0 0 0 0-.7l-2-2Zm.71 5.41a1.5 1.5 0 0 1-.56.35V7h4V3h-1.09a1.5 1.5 0 0 1-.35 1.56l-2 2Zm-4 4a1.5 1.5 0 0 1-1.56.35V12h4V8h-.09c-.07.2-.19.4-.35.56l-2 2ZM13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Zm0-5V8h4v4h-4Zm-1 0H8V8h4v4Zm-4 1h4v4H8v-4Zm-5 0h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Z\"]);\nexport const TableSwitchRegular = /*#__PURE__*/createFluentIcon('TableSwitchRegular', \"1em\", [\"M7.85 1.15a.5.5 0 1 0-.7.7L8.29 3H6a3 3 0 0 0-3 3v2.3L1.85 7.14a.5.5 0 1 0-.7.7l2 2c.2.2.5.2.7 0l2-2a.5.5 0 1 0-.7-.7L4 8.29V6c0-1.1.9-2 2-2h2.3L7.14 5.15a.5.5 0 1 0 .7.7l2-2a.5.5 0 0 0 0-.7l-2-2ZM7 12V7h5V4h-1.09a1.5 1.5 0 0 0 0-1h3.59A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-3.59c.32.12.68.12 1 0V12h3Zm-3 2.5c0 .78.6 1.42 1.36 1.5H7v-3H4v1.5Zm8-1.5H8v3h4v-3Zm2.5 3c.78 0 1.42-.6 1.5-1.36V13h-3v3h1.5ZM12 8H8v4h4V8Zm1 0v4h3V8h-3Zm0-4v3h3V5.5c0-.78-.6-1.42-1.36-1.5H13Z\"]);\nexport const TabletFilled = /*#__PURE__*/createFluentIcon('TabletFilled', \"1em\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm6.5 6a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const TabletRegular = /*#__PURE__*/createFluentIcon('TabletRegular', \"1em\", [\"M8.5 12a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4ZM3 6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6Z\"]);\nexport const TabletLaptopFilled = /*#__PURE__*/createFluentIcon('TabletLaptopFilled', \"1em\", [\"M7 3a2 2 0 0 0-2 2v3h6a3 3 0 0 1 3 3v1h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H7Zm10.5 11H14v-1h3.5a.5.5 0 0 1 0 1Zm-11 0a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM2 11c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4Z\"]);\nexport const TabletLaptopRegular = /*#__PURE__*/createFluentIcon('TabletLaptopRegular', \"1em\", [\"M5 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v3H5V5Zm9 8v1h3.5a.5.5 0 0 0 0-1H14ZM2 11c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H4Zm2 4.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const TabletSpeakerFilled = /*#__PURE__*/createFluentIcon('TabletSpeakerFilled', \"1em\", [\"M13.7 2.04c.18.08.3.26.3.46v6a.5.5 0 0 1-.85.35L11.29 7h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm3.95.16c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-1.7 1.08a5.5 5.5 0 0 1 .55 2.22 4.9 4.9 0 0 1-.55 2.22.5.5 0 1 1-.9-.44l.08-.17.15-.4c.14-.42.22-.83.22-1.21s-.08-.8-.22-1.22a4.59 4.59 0 0 0-.23-.56.5.5 0 1 1 .9-.44Zm.4 6.42a1.5 1.5 0 0 1-.53-.74 1.5 1.5 0 0 1-.87-.07 1.5 1.5 0 0 1-2.51.67L10.88 8h-.38A1.5 1.5 0 0 1 9 6.5v-2c0-.18.03-.34.09-.5H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.8c-.5.29-1.15.27-1.65-.1ZM8.5 13h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Z\"]);\nexport const TabletSpeakerRegular = /*#__PURE__*/createFluentIcon('TabletSpeakerRegular', \"1em\", [\"M18.1 3.07a3.67 3.67 0 0 0-.45-.87.5.5 0 0 0-.8.6l.07.1a5.9 5.9 0 0 1 .58 2.6 5.9 5.9 0 0 1-.58 2.6l-.12.18a.5.5 0 0 0 .85.52c.12-.16.29-.45.44-.87.26-.68.41-1.5.41-2.43 0-.94-.15-1.75-.4-2.43ZM14 2.5a.5.5 0 0 0-.85-.35L11.29 4h-.79a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h.8l1.85 1.85A.5.5 0 0 0 14 8.5v-6Zm1.95.78a5.5 5.5 0 0 1 .55 2.22 4.9 4.9 0 0 1-.55 2.22.5.5 0 1 1-.9-.44l.08-.17.15-.4c.14-.42.22-.83.22-1.21s-.08-.8-.22-1.22a4.59 4.59 0 0 0-.23-.56.5.5 0 1 1 .9-.44ZM17 9.98V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5v-.5c0-.18.03-.34.09-.5H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.8c-.3.17-.66.24-1 .18ZM8.5 13a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const TabsFilled = /*#__PURE__*/createFluentIcon('TabsFilled', \"1em\", [\"M2 8a6 6 0 0 1 6-6h3a3 3 0 0 1 2.24 1H8a5 5 0 0 0-5 5v5.24A3 3 0 0 1 2 11V8Zm2 .5A4.5 4.5 0 0 1 8.5 4H13a3 3 0 0 1 2.24 1H8.5A3.5 3.5 0 0 0 5 8.5v6.74A3 3 0 0 1 4 13V8.5ZM9 6a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3H9Z\"]);\nexport const TabsRegular = /*#__PURE__*/createFluentIcon('TabsRegular', \"1em\", [\"M2 8a6 6 0 0 1 6-6h3a3 3 0 0 1 2.24 1H8a5 5 0 0 0-5 5v5.24A3 3 0 0 1 2 11V8Zm13-2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h6Zm-8 9c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v6ZM4 8.5A4.5 4.5 0 0 1 8.5 4H13a3 3 0 0 1 2.24 1H8.5A3.5 3.5 0 0 0 5 8.5v6.74A3 3 0 0 1 4 13V8.5Z\"]);\nexport const TagFilled = /*#__PURE__*/createFluentIcon('TagFilled', \"1em\", [\"M18 4.03a2 2 0 0 0-1.98-2L11.12 2a2 2 0 0 0-1.42.59L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 2.83 0l6.63-6.63A2 2 0 0 0 18 8.98V4.03ZM14 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const TagRegular = /*#__PURE__*/createFluentIcon('TagRegular', \"1em\", [\"M14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2.87-5a2 2 0 0 0-1.43.58L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 2.83 0l6.63-6.63A2 2 0 0 0 18 8.98V4.03a2 2 0 0 0-1.99-2L11.12 2Zm-.72 1.3a1 1 0 0 1 .71-.3l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.29.7l-6.63 6.64a1 1 0 0 1-1.41 0l-4.95-4.95a1 1 0 0 1 0-1.41l6.68-6.67Z\"]);\nexport const TagCircleFilled = /*#__PURE__*/createFluentIcon('TagCircleFilled', \"1em\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm4-1.5v3c0 .83.67 1.5 1.5 1.5h4.06c.4 0 .79-.14 1.1-.39l1.78-1.44a1.5 1.5 0 0 0 0-2.34L12.66 7.4c-.31-.25-.7-.39-1.1-.39H7.5C6.67 7 6 7.67 6 8.5Z\"]);\nexport const TagCircleRegular = /*#__PURE__*/createFluentIcon('TagCircleRegular', \"1em\", [\"M7.5 7C6.67 7 6 7.67 6 8.5v3c0 .83.67 1.5 1.5 1.5h4.06c.4 0 .79-.14 1.1-.39l1.78-1.44a1.5 1.5 0 0 0 0-2.34L12.66 7.4c-.31-.25-.7-.39-1.1-.39H7.5ZM7 8.5c0-.28.22-.5.5-.5h4.06c.17 0 .34.06.47.17L13.8 9.6a.5.5 0 0 1 0 .78l-1.78 1.44c-.13.11-.3.17-.47.17H7.5a.5.5 0 0 1-.5-.5v-3ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const TagDismissFilled = /*#__PURE__*/createFluentIcon('TagDismissFilled', \"1em\", [\"M18 4.03a2 2 0 0 0-1.98-2L11.12 2a2 2 0 0 0-1.42.59L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51 5.5 5.5 0 0 1 7.8-7.5 2 2 0 0 0 .3-1.06L18 4.03ZM14 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const TagDismissRegular = /*#__PURE__*/createFluentIcon('TagDismissRegular', \"1em\", [\"M14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2.87-5a2 2 0 0 0-1.43.58L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51c-.2-.29-.36-.6-.5-.93a1 1 0 0 1-.74-.29l-4.95-4.95a1 1 0 0 1 0-1.41l6.68-6.67a1 1 0 0 1 .71-.29l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.16.55c.3.14.6.31.86.5a2 2 0 0 0 .3-1.05V4.03a2 2 0 0 0-1.99-2L11.12 2ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const TagErrorFilled = /*#__PURE__*/createFluentIcon('TagErrorFilled', \"1em\", [\"M18 4.03a2 2 0 0 0-1.98-2L11.12 2a2 2 0 0 0-1.42.59L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51 5.5 5.5 0 0 1 7.8-7.5 2 2 0 0 0 .3-1.06L18 4.03ZM14 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.12a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.25Z\"]);\nexport const TagErrorRegular = /*#__PURE__*/createFluentIcon('TagErrorRegular', \"1em\", [\"M14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2.87-5a2 2 0 0 0-1.43.58L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51c-.2-.29-.36-.6-.5-.93a1 1 0 0 1-.74-.29l-4.95-4.95a1 1 0 0 1 0-1.41l6.68-6.67a1 1 0 0 1 .71-.29l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.16.55c.3.14.6.31.86.5a2 2 0 0 0 .3-1.05V4.03a2 2 0 0 0-1.99-2L11.12 2ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.24Z\"]);\nexport const TagLockFilled = /*#__PURE__*/createFluentIcon('TagLockFilled', \"1em\", [\"M18 4.03a2 2 0 0 0-1.98-2L11.12 2a2 2 0 0 0-1.42.59L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 2.03.49V14a2 2 0 0 1 1.5-1.94V12a3 3 0 0 1 5.68-1.35l.25-.25A2 2 0 0 0 18 8.98V4.03ZM14 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-1.5 5v1H12a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const TagLockRegular = /*#__PURE__*/createFluentIcon('TagLockRegular', \"1em\", [\"M14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2.87-5a2 2 0 0 0-1.43.58L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 2.03.49V16.4a1 1 0 0 1-1.32-.08l-4.95-4.95a1 1 0 0 1 0-1.41l6.68-6.67a1 1 0 0 1 .71-.29l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.29.7l-.14.15a3 3 0 0 1 .6.82l.25-.25A2 2 0 0 0 18 8.98V4.03a2 2 0 0 0-1.99-2L11.12 2Zm1.37 10v1H12a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const TagLockAccentFilled = /*#__PURE__*/createFluentIcon('TagLockAccentFilled', \"1em\", [\"M17.5 4.03c0-.82-.66-1.49-1.48-1.5l-4.9-.03c-.4 0-.78.16-1.06.44L3.38 9.61a1.5 1.5 0 0 0 0 2.12l4.94 4.95a1.5 1.5 0 0 0 1.68.3V14a2 2 0 0 1 1.5-1.94V12a3 3 0 0 1 5.4-1.79l.17-.16c.29-.29.44-.67.44-1.07V4.03Z\"]);\nexport const TagMultipleFilled = /*#__PURE__*/createFluentIcon('TagMultipleFilled', \"1em\", [\"M3 11.8a2 2 0 0 0 .46 2.11l2.97 2.98a4 4 0 0 0 5.65.02l4.4-4.36a2 2 0 0 0 .6-1.43v-.57l-5 4.96-.15.13-.56.55a3 3 0 0 1-4.23 0l-.5-.5a4.05 4.05 0 0 1-.2-.2l-2.98-2.98A2 2 0 0 1 3 11.8Zm6.2-9.21A2 2 0 0 1 10.63 2h4.45a2 2 0 0 1 2 2v4.37a2 2 0 0 1-.59 1.43l-5.82 5.76a2 2 0 0 1-2.82-.01l-4.38-4.39a2 2 0 0 1 0-2.82L9.2 2.59Zm4.3 3.91a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const TagMultipleRegular = /*#__PURE__*/createFluentIcon('TagMultipleRegular', \"1em\", [\"M13.5 6.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM9.2 2.59A2 2 0 0 1 10.63 2h4.45a2 2 0 0 1 2 2v4.37a2 2 0 0 1-.59 1.43l-5.82 5.76a2 2 0 0 1-2.82-.01l-4.38-4.39a2 2 0 0 1 0-2.82L9.2 2.59Zm1.42.41a1 1 0 0 0-.7.3L4.15 9.03a1 1 0 0 0 0 1.42l4.39 4.38a1 1 0 0 0 1.4 0l5.83-5.76a1 1 0 0 0 .3-.7V4a1 1 0 0 0-1-1h-4.46ZM3 11.8a2 2 0 0 0 .46 2.11l2.97 2.98a4 4 0 0 0 5.65.02l4.4-4.36a2 2 0 0 0 .6-1.43v-.57l-5 4.96-.15.13-.56.55a3 3 0 0 1-4.23 0l-.5-.5a4.05 4.05 0 0 1-.2-.2l-2.98-2.98A2 2 0 0 1 3 11.8Z\"]);\nexport const TagOffFilled = /*#__PURE__*/createFluentIcon('TagOffFilled', \"1em\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.79 6.5 3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 2.83 0l2.76-2.76 3.59 3.58a.5.5 0 0 0 .7-.7l-15-15Zm14.58 8.25-2.45 2.45L7.2 5.08l2.5-2.5A2 2 0 0 1 11.13 2l4.89.04a2 2 0 0 1 1.99 2v4.94a2 2 0 0 1-.58 1.42ZM14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const TagOffRegular = /*#__PURE__*/createFluentIcon('TagOffRegular', \"1em\", [\"M5.79 6.5 2.15 2.84a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-3.6-3.58-2.75 2.76a2 2 0 0 1-2.83 0l-4.95-4.95a2 2 0 0 1 0-2.83L5.8 6.49Zm7.06 7.06L6.5 7.2 3.73 9.96a1 1 0 0 0 0 1.41l4.95 4.95a1 1 0 0 0 1.41 0l2.76-2.76Zm3.87-3.87-2.45 2.45.7.71 2.46-2.45A2 2 0 0 0 18 8.98V4.03a2 2 0 0 0-1.99-2L11.12 2a2 2 0 0 0-1.42.58l-2.5 2.5.7.7 2.51-2.49a1 1 0 0 1 .71-.29l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.29.7ZM14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const TagQuestionMarkFilled = /*#__PURE__*/createFluentIcon('TagQuestionMarkFilled', \"1em\", [\"M18 4.03a2 2 0 0 0-1.98-2L11.12 2a2 2 0 0 0-1.42.59L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51 5.5 5.5 0 0 1 7.8-7.5 2 2 0 0 0 .3-1.06L18 4.03ZM14 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 1 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const TagQuestionMarkRegular = /*#__PURE__*/createFluentIcon('TagQuestionMarkRegular', \"1em\", [\"M14 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2.87-5a2 2 0 0 0-1.43.58L3.02 9.25a2 2 0 0 0 0 2.83l4.95 4.95a2 2 0 0 0 1.95.51c-.2-.29-.36-.6-.5-.93a1 1 0 0 1-.74-.29l-4.95-4.95a1 1 0 0 1 0-1.41l6.68-6.67a1 1 0 0 1 .71-.29l4.9.03a1 1 0 0 1 .99 1v4.95a1 1 0 0 1-.16.55c.3.14.6.31.86.5a2 2 0 0 0 .3-1.05V4.03a2 2 0 0 0-1.99-2L11.12 2ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.5 1.88a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Zm0-4.88c1.03 0 1.85.85 1.85 1.95 0 .59-.21.91-.72 1.32l-.28.22c-.25.19-.33.3-.35.44v.16a.5.5 0 0 1-1-.09c0-.57.21-.88.72-1.29l.27-.21c.3-.23.36-.35.36-.55 0-.55-.38-.95-.85-.95-.5 0-.86.37-.85.95a.5.5 0 1 1-1 0c-.01-1.13.8-1.95 1.85-1.95Z\"]);\nexport const TagResetFilled = /*#__PURE__*/createFluentIcon('TagResetFilled', \"1em\", [\"M16.02 2.04a2 2 0 0 1 1.99 2v4.94a2 2 0 0 1-.58 1.42l-.15.15A5 5 0 0 0 15 10h-1.09a1.5 1.5 0 0 0-2.47-1.56l-2 2a1.5 1.5 0 0 0 0 2.12l1.2 1.2A1.5 1.5 0 0 0 10 15a5 5 0 0 0 .54 2.25 2 2 0 0 1-2.57-.22l-4.95-4.95a2 2 0 0 1 0-2.83L9.7 2.6A2 2 0 0 1 11.13 2l4.89.04ZM13 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-.15 3.85a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L11.71 12H15a3 3 0 1 1-3 3 .5.5 0 1 0-1 0 4 4 0 1 0 4-4h-3.3l1.15-1.15Z\"]);\nexport const TagResetRegular = /*#__PURE__*/createFluentIcon('TagResetRegular', \"1em\", [\"M15 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9.7 2.58A2 2 0 0 1 11.13 2l4.89.03a2 2 0 0 1 1.99 2v4.95a2 2 0 0 1-.58 1.42l-.15.15a5 5 0 0 0-1.03-.4l.47-.46a1 1 0 0 0 .3-.7L17 4.02a1 1 0 0 0-1-1L11.12 3a1 1 0 0 0-.71.3L3.73 9.95a1 1 0 0 0 0 1.41l4.95 4.95a1 1 0 0 0 1.41 0l.07-.07a5 5 0 0 0 .37 1 2 2 0 0 1-2.56-.22l-4.95-4.95a2 2 0 0 1 0-2.83L9.7 2.58Zm3.15 7.27a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L11.71 12H15a3 3 0 1 1-3 3 .5.5 0 1 0-1 0 4 4 0 1 0 4-4h-3.3l1.15-1.15Z\"]);\nexport const TagSearchFilled = /*#__PURE__*/createFluentIcon('TagSearchFilled', \"1em\", [\"M16.02 2.04a2 2 0 0 1 1.99 2v4.94a2 2 0 0 1-.58 1.42l-.36.36a4.5 4.5 0 1 0-6.31 6.3 2 2 0 0 1-2.8-.03l-4.94-4.95a2 2 0 0 1 0-2.83L9.7 2.6A2 2 0 0 1 11.13 2l4.89.04ZM13 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm3.3 9.6a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 1 0 .7-.7L16.3 15.6Zm-.3-2.1a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"]);\nexport const TagSearchRegular = /*#__PURE__*/createFluentIcon('TagSearchRegular', \"1em\", [\"M15 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9.7 2.58A2 2 0 0 1 11.13 2l4.89.03a2 2 0 0 1 1.99 2v4.95a2 2 0 0 1-.58 1.42l-.36.36c-.2-.27-.44-.51-.7-.72l.35-.35a1 1 0 0 0 .3-.7L17 4.02a1 1 0 0 0-1-1L11.12 3a1 1 0 0 0-.71.3L3.73 9.95a1 1 0 0 0 0 1.41l4.95 4.95a1 1 0 0 0 1.35.05c.22.26.46.5.73.7a2 2 0 0 1-2.8-.04l-4.94-4.95a2 2 0 0 1 0-2.83L9.7 2.58Zm6.6 13.02a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 1 0 .7-.7L16.3 15.6Zm-.3-2.1a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"]);\nexport const TapDoubleFilled = /*#__PURE__*/createFluentIcon('TapDoubleFilled', \"1em\", [\"M4 8.5a5.5 5.5 0 1 1 10.97.6c.34.15.65.34.93.57A6.5 6.5 0 1 0 3.64 11.3c.25-.25.53-.45.82-.61A5.48 5.48 0 0 1 4 8.5Zm10 0-.01.33-1-.17.01-.16a3.5 3.5 0 1 0-6.57 1.69 4.4 4.4 0 0 0-1.05.13A4.48 4.48 0 0 1 9.5 4 4.5 4.5 0 0 1 14 8.5Zm-6-1a1.5 1.5 0 1 1 3 0v2.08l2.94.51a2.5 2.5 0 0 1 1.91 3.33l-.98 2.67a2.5 2.5 0 0 1-1.92 1.6l-1.52.26c-1.02.18-1.95-.45-2.43-1.23A5.87 5.87 0 0 0 4.44 14a.5.5 0 0 1-.43-.62c.15-.6.43-1.04.82-1.36.39-.32.85-.47 1.3-.52.63-.06 1.29.05 1.87.25V7.5Z\"]);\nexport const TapDoubleRegular = /*#__PURE__*/createFluentIcon('TapDoubleRegular', \"1em\", [\"M9.5 3a5.5 5.5 0 0 0-5.04 7.7c-.3.16-.57.36-.82.61A6.5 6.5 0 1 1 15.9 9.67a3.7 3.7 0 0 0-.93-.57l.03-.6A5.5 5.5 0 0 0 9.5 3Zm4.49 5.83L14 8.5a4.5 4.5 0 1 0-8.62 1.82 4.2 4.2 0 0 1 1.05-.13A3.5 3.5 0 1 1 13 8.66l1 .17ZM9.5 6C8.67 6 8 6.67 8 7.5v4.25a4.46 4.46 0 0 0-1.87-.25c-.45.05-.91.2-1.3.52s-.67.77-.82 1.36a.5.5 0 0 0 .43.62c2.6.28 3.92 1.7 4.56 2.72.48.78 1.4 1.41 2.43 1.23l1.52-.26a2.5 2.5 0 0 0 1.92-1.6l.98-2.67a2.5 2.5 0 0 0-1.91-3.33L11 9.58V7.5c0-.83-.67-1.5-1.5-1.5ZM9 7.5a.5.5 0 0 1 1 0V10c0 .24.17.45.41.5l3.35.58a1.5 1.5 0 0 1 1.15 2l-.98 2.67c-.19.5-.62.86-1.15.95l-1.52.27c-.5.09-1.07-.23-1.41-.77a6.77 6.77 0 0 0-4.65-3.1c.08-.13.17-.23.26-.3.2-.17.47-.27.78-.3.64-.07 1.42.14 2.04.45A.5.5 0 0 0 9 12.5v-5Z\"]);\nexport const TapSingleFilled = /*#__PURE__*/createFluentIcon('TapSingleFilled', \"1em\", [\"M6 8.5a3.5 3.5 0 1 1 7 .16l.99.17.01-.33a4.5 4.5 0 1 0-8.62 1.82 4.2 4.2 0 0 1 1.05-.13A3.48 3.48 0 0 1 6 8.5ZM9.5 6C8.67 6 8 6.67 8 7.5v4.25a4.46 4.46 0 0 0-1.87-.25c-.45.05-.91.2-1.3.52s-.67.77-.82 1.36a.5.5 0 0 0 .43.62c2.6.28 3.92 1.7 4.56 2.72.48.78 1.4 1.41 2.43 1.23l1.52-.26a2.5 2.5 0 0 0 1.92-1.6l.98-2.67a2.5 2.5 0 0 0-1.91-3.33L11 9.58V7.5c0-.83-.67-1.5-1.5-1.5Z\"]);\nexport const TapSingleRegular = /*#__PURE__*/createFluentIcon('TapSingleRegular', \"1em\", [\"M6 8.5a3.5 3.5 0 1 1 7 .16l.99.17.01-.33a4.5 4.5 0 1 0-8.62 1.82 4.2 4.2 0 0 1 1.05-.13A3.48 3.48 0 0 1 6 8.5ZM9.5 6C8.67 6 8 6.67 8 7.5v4.25a4.46 4.46 0 0 0-1.87-.25c-.45.05-.91.2-1.3.52s-.67.77-.82 1.36a.5.5 0 0 0 .43.62c2.6.28 3.92 1.7 4.56 2.72.48.78 1.4 1.41 2.43 1.23l1.52-.26a2.5 2.5 0 0 0 1.92-1.6l.98-2.67a2.5 2.5 0 0 0-1.91-3.33L11 9.58V7.5c0-.83-.67-1.5-1.5-1.5ZM9 7.5a.5.5 0 0 1 1 0V10c0 .24.17.45.41.5l3.35.58a1.5 1.5 0 0 1 1.15 2l-.98 2.67c-.19.5-.62.86-1.15.95l-1.52.27c-.5.09-1.07-.23-1.41-.77a6.77 6.77 0 0 0-4.65-3.1c.08-.13.17-.23.26-.3.2-.17.47-.27.78-.3.64-.07 1.42.14 2.04.45A.5.5 0 0 0 9 12.5v-5Z\"]);\nexport const TargetFilled = /*#__PURE__*/createFluentIcon('TargetFilled', \"1em\", [\"M10 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 10a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm5-3.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z\"]);\nexport const TargetRegular = /*#__PURE__*/createFluentIcon('TargetRegular', \"1em\", [\"M10 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 10a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm5-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-8 4a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\"]);\nexport const TargetAddFilled = /*#__PURE__*/createFluentIcon('TargetAddFilled', \"1em\", [\"M3.5 10a6.5 6.5 0 0 0 5.86 6.47c.22.55.52 1.07.9 1.52H10a8 8 0 1 1 7.99-7.74 5.5 5.5 0 0 0-1.53-.89A6.5 6.5 0 0 0 3.5 10Zm5.61 3.39a3.5 3.5 0 1 1 4.27-4.28 5.52 5.52 0 0 1 1.52-.1 5 5 0 1 0-5.89 5.9 5.58 5.58 0 0 1 .1-1.52Zm.78-1.9c.42-.63.97-1.18 1.6-1.6a1.5 1.5 0 1 0-1.6 1.6ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const TargetAddRegular = /*#__PURE__*/createFluentIcon('TargetAddRegular', \"1em\", [\"M19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Zm-5.1-1c.41-.64.96-1.19 1.6-1.6a1.5 1.5 0 1 0-1.6 1.6Zm-.87 2.38a4 4 0 1 1 4.85-4.85 5.56 5.56 0 0 1 1.02-.02 5 5 0 1 0-5.89 5.9 5.58 5.58 0 0 1 .02-1.03Zm.56 3.1A7 7 0 1 1 17 9.6c.36.19.7.4 1 .66L18 10a8 8 0 1 0-7.75 8 5.5 5.5 0 0 1-.66-1.01Z\"]);\nexport const TargetArrowFilled = /*#__PURE__*/createFluentIcon('TargetArrowFilled', \"1em\", [\"M17.6 7.52a8 8 0 1 1-5.11-5.13l-1.05 1.05a1.5 1.5 0 0 0-.16.19 6.5 6.5 0 1 0 5.09 5.1l.2-.17 1.03-1.04ZM14.9 9a5.02 5.02 0 0 1-4.9 6 5 5 0 1 1 1-9.9v1.55A3.5 3.5 0 1 0 13.35 9h1.55ZM10 11.5a1.5 1.5 0 0 0 1.45-1.89l1.58-1.58a.74.74 0 0 0 .03-.03h2.44a.5.5 0 0 0 .35-.15l2-2A.5.5 0 0 0 17.5 5H15V2.5a.5.5 0 0 0-.85-.35l-2 2a.5.5 0 0 0-.15.35v2.44a.76.76 0 0 0-.03.03l-1.58 1.58a1.5 1.5 0 1 0-.4 2.95Z\"]);\nexport const TargetArrowRegular = /*#__PURE__*/createFluentIcon('TargetArrowRegular', \"1em\", [\"M17.96 5.3a.5.5 0 0 1-.1.55l-2 2a.5.5 0 0 1-.36.15h-2.8l-1.35 1.35a1.5 1.5 0 1 1-.7-.7L12 7.29V4.5a.5.5 0 0 1 .15-.35l2-2a.5.5 0 0 1 .85.35V5h2.5c.2 0 .38.12.46.3ZM16.3 6H14.5a.5.5 0 0 1-.5-.5V3.7l-1 1V7h2.3l1-1Zm1.32 1.52a8 8 0 1 1-5.12-5.13l-.81.81A7.02 7.02 0 0 0 3 10a7 7 0 1 0 13.8-1.68l.8-.8ZM14.9 9a5.02 5.02 0 0 1-4.9 6 5 5 0 1 1 1-9.9v1.03A4 4 0 1 0 13.87 9h1.03Z\"]);\nexport const TargetDismissFilled = /*#__PURE__*/createFluentIcon('TargetDismissFilled', \"1em\", [\"M3.5 10a6.5 6.5 0 0 0 5.86 6.47c.22.55.52 1.07.9 1.52H10a8 8 0 1 1 7.99-7.74 5.5 5.5 0 0 0-1.53-.89A6.5 6.5 0 0 0 3.5 10Zm5.61 3.39a3.5 3.5 0 1 1 4.27-4.28 5.52 5.52 0 0 1 1.52-.1 5 5 0 1 0-5.89 5.9 5.58 5.58 0 0 1 .1-1.52Zm2.38-3.5c-.63.42-1.18.97-1.6 1.6a1.5 1.5 0 1 1 1.6-1.6ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const TargetDismissRegular = /*#__PURE__*/createFluentIcon('TargetDismissRegular', \"1em\", [\"M3 10a7 7 0 0 0 6.6 6.99c.18.36.4.7.65 1L10 18a8 8 0 1 1 8-7.75 5.5 5.5 0 0 0-1.01-.66A7 7 0 0 0 3 10Zm6.03 3.88a4 4 0 1 1 4.85-4.85 5.56 5.56 0 0 1 1.02-.02 5 5 0 1 0-5.89 5.9 5.58 5.58 0 0 1 .02-1.03Zm.86-2.38c.42-.64.97-1.19 1.6-1.6a1.5 1.5 0 1 0-1.6 1.6ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const TargetEditFilled = /*#__PURE__*/createFluentIcon('TargetEditFilled', \"1em\", [\"M10 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 10a5 5 0 0 1 10-.05l-2.42 2.4a3.5 3.5 0 1 0-.23.23l-2.08 2.09c-.1.1-.2.21-.28.33A5 5 0 0 1 5 10Zm5-6.5c3.28 0 5.99 2.43 6.43 5.59.5-.13 1.02-.12 1.52.03A8 8 0 1 0 9 17.93c0-.09.02-.18.05-.28l.3-1.19A6.5 6.5 0 0 1 10 3.5Zm.98 11.88 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.01Z\"]);\nexport const TargetEditRegular = /*#__PURE__*/createFluentIcon('TargetEditRegular', \"1em\", [\"M10 11.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 10a5 5 0 0 1 10-.06l-1.15 1.15a4 4 0 1 0-2.76 2.76l-.82.82c-.1.1-.2.21-.29.33A5 5 0 0 1 5 10Zm5-7a7 7 0 0 1 6.93 6c.34-.02.69.02 1.02.12a8 8 0 1 0-8.94 8.82c0-.1.02-.2.05-.29l.17-.7A7 7 0 0 1 10 3Zm.98 12.38 4.83-4.83a1.87 1.87 0 0 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.01Z\"]);\nexport const TaskListAddFilled = /*#__PURE__*/createFluentIcon('TaskListAddFilled', \"1em\", [\"M5.85 3.35a.5.5 0 1 0-.7-.7L3.5 4.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm2.9.15a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm0 5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm1.27 6.5c.05-.52.17-1.03.35-1.5H8.75a.75.75 0 0 0 0 1.5h1.27ZM5.85 8.85a.5.5 0 1 0-.7-.7L3.5 9.79l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm0 4.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64c.2-.2.5-.2.7 0ZM20 15.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V15h-1.5a.5.5 0 0 0 0 1H15v1.5a.5.5 0 0 0 1 0V16h1.5a.5.5 0 0 0 0-1H16v-1.5Z\"]);\nexport const TaskListAddRegular = /*#__PURE__*/createFluentIcon('TaskListAddRegular', \"1em\", [\"M5.85 3.35a.5.5 0 1 0-.7-.7L3.5 4.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2ZM8.5 4a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm0 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm1.52 6c.03-.34.1-.68.19-1H8.5a.5.5 0 0 0 0 1h1.52ZM5.85 8.85a.5.5 0 1 0-.7-.7L3.5 9.79l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm0 4.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64c.2-.2.5-.2.7 0ZM20 15.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V15h-1.5a.5.5 0 0 0 0 1H15v1.5a.5.5 0 0 0 1 0V16h1.5a.5.5 0 0 0 0-1H16v-1.5Z\"]);\nexport const TaskListLtrFilled = /*#__PURE__*/createFluentIcon('TaskListLtrFilled', \"1em\", [\"M5.85 4.35a.5.5 0 1 0-.7-.7L3.5 5.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm2.9.15a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm0 5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM8 15.25c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm-2.15-5.4a.5.5 0 1 0-.7-.7L3.5 10.79l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm0 4.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64c.2-.2.5-.2.7 0Z\"]);\nexport const TaskListLtrRegular = /*#__PURE__*/createFluentIcon('TaskListLtrRegular', \"1em\", [\"M5.85 4.35a.5.5 0 1 0-.7-.7L3.5 5.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l2-2ZM8.5 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm0 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9ZM8 15.5c0-.28.22-.5.5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5ZM5.85 9.85a.5.5 0 1 0-.7-.7L3.5 10.79l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm0 4.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64c.2-.2.5-.2.7 0Z\"]);\nexport const TaskListRtlFilled = /*#__PURE__*/createFluentIcon('TaskListRtlFilled', \"1em\", [\"M17.85 4.35a.5.5 0 0 0-.7-.7L15.5 5.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm-15.1.15a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm0 5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM2 15.25c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm13.85-3.4 2-2a.5.5 0 0 0-.7-.7l-1.65 1.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0Zm2 3-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64a.5.5 0 0 1 .7.7Z\"]);\nexport const TaskListRtlRegular = /*#__PURE__*/createFluentIcon('TaskListRtlRegular', \"1em\", [\"M17.85 4.35a.5.5 0 0 0-.7-.7L15.5 5.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l2-2ZM2.5 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm0 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9ZM2 15.5c0-.28.22-.5.5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Zm15.85-5.65a.5.5 0 0 0-.7-.7l-1.65 1.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l2-2Zm0 4.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.65-1.64c.2-.2.5-.2.7 0Z\"]);\nexport const TaskListSquareAddFilled = /*#__PURE__*/createFluentIcon('TaskListSquareAddFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6A5.5 5.5 0 0 0 9.6 17H6a3 3 0 0 1-3-3V6Zm6.35.4a.5.5 0 0 0-.7 0L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1a.5.5 0 0 0 0-.7Zm0 5.7a.5.5 0 0 0-.7-.7l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75ZM11 7a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11Zm8 7.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4-2V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5a.5.5 0 0 1 1 0Z\"]);\nexport const TaskListSquareAddRegular = /*#__PURE__*/createFluentIcon('TaskListSquareAddRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6c-.16-.32-.3-.65-.4-1H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.2c.35.1.68.24 1 .4V6a3 3 0 0 0-3-3H6Zm3.35 4.1a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1Zm0 4.3c.2.2.2.5 0 .7L7.6 13.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0Zm1.15-3.9c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.5-.5Zm8.5 7a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const TaskListSquareDatabaseFilled = /*#__PURE__*/createFluentIcon('TaskListSquareDatabaseFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.05a2.46 2.46 0 0 1-.05-.5v-4.04l-1.4 1.4a.5.5 0 0 1-.69 0l-.75-.68a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41a.5.5 0 0 1 .36-.15v-.75c0-1.22.88-2.11 1.83-2.64A7.68 7.68 0 0 1 14.5 7c.89 0 1.74.13 2.5.36V6a3 3 0 0 0-3-3H6Zm11 5.42A7.25 7.25 0 0 0 14.5 8C12.01 8 10 9.12 10 10.5s2.02 2.5 4.5 2.5c2.49 0 4.5-1.12 4.5-2.5 0-.87-.8-1.63-2-2.08ZM9.35 6.4c.2.2.2.5 0 .7L7.6 8.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 1 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0ZM14.5 14c1.38 0 2.68-.3 3.67-.86.29-.16.58-.36.83-.59v3.95c0 1.38-2.01 2.5-4.5 2.5S10 17.88 10 16.5v-3.95c.25.23.54.43.83.6 1 .54 2.29.85 3.67.85Z\"]);\nexport const TaskListSquareDatabaseRegular = /*#__PURE__*/createFluentIcon('TaskListSquareDatabaseRegular', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.05a2.46 2.46 0 0 1-.05-.5V16H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v1.13c.35.06.68.14 1 .23V6a3 3 0 0 0-3-3H6Zm11 5.42A7.81 7.81 0 0 0 14.5 8C12.01 8 10 9.12 10 10.5s2.01 2.5 4.5 2.5 4.5-1.12 4.5-2.5c0-.87-.8-1.63-2-2.08Zm-8 2.83a.5.5 0 0 0-.35.15l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9 12.45v-1.2Zm.35-4.15a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1ZM14.5 14c1.38 0 2.68-.3 3.67-.86.29-.16.58-.36.83-.59v3.95c0 1.38-2.01 2.5-4.5 2.5S10 17.88 10 16.5v-3.95c.25.23.54.43.83.6 1 .54 2.29.85 3.67.85Z\"]);\nexport const TaskListSquareLtrFilled = /*#__PURE__*/createFluentIcon('TaskListSquareLtrFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm6.35 1.1a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1Zm0 4.3a.5.5 0 0 0-.7 0l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75a.5.5 0 0 0 0-.7ZM11 12a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11Zm-.5-4.5c0 .28.22.5.5.5h2.5a.5.5 0 0 0 0-1H11a.5.5 0 0 0-.5.5Z\"]);\nexport const TaskListSquareLtrRegular = /*#__PURE__*/createFluentIcon('TaskListSquareLtrRegular', \"1em\", [\"M9.35 7.1a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1Zm0 4.3c.2.2.2.5 0 .7L7.6 13.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0ZM11 12a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11Zm-.5-4.5c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.5-.5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const TaskListSquarePersonFilled = /*#__PURE__*/createFluentIcon('TaskListSquarePersonFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.4a3 3 0 0 0-4.5 2.6H11a.5.5 0 0 0 0 1h1.67a3 3 0 0 0 .6 1.01A2.5 2.5 0 0 0 11.04 17H6a3 3 0 0 1-3-3V6Zm6.35 1.1a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1Zm0 4.3a.5.5 0 0 0-.7 0l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75a.5.5 0 0 0 0-.7Zm1.15-3.9c0 .28.22.5.5.5h2.5a.5.5 0 0 0 0-1H11a.5.5 0 0 0-.5.5Zm7 4.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const TaskListSquarePersonRegular = /*#__PURE__*/createFluentIcon('TaskListSquarePersonRegular', \"1em\", [\"M9.35 7.1a.5.5 0 0 0-.7-.7L7.23 7.8l-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02L9.34 7.1Zm0 4.3c.2.2.2.5 0 .7L7.6 13.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0ZM11 12a.5.5 0 0 0 0 1h1.67a3 3 0 0 1-.17-1H11Zm-5 4h5.05a2.51 2.51 0 0 0-.01 1H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.4c-.3-.17-.64-.3-1-.36V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2Zm4.5-8.5c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.5-.5Zm7 4.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const TaskListSquareRtlFilled = /*#__PURE__*/createFluentIcon('TaskListSquareRtlFilled', \"1em\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm11.35 1.1a.5.5 0 1 0-.7-.7l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75Zm0 4.3a.5.5 0 0 0-.7 0l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75a.5.5 0 0 0 0-.7ZM6.5 12a.5.5 0 0 0 0 1H9a.5.5 0 0 0 0-1H6.5ZM6 7.5c0 .28.22.5.5.5H9a.5.5 0 0 0 0-1H6.5a.5.5 0 0 0-.5.5Z\"]);\nexport const TaskListSquareRtlRegular = /*#__PURE__*/createFluentIcon('TaskListSquareRtlRegular', \"1em\", [\"M14.35 7.1a.5.5 0 1 0-.7-.7l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75Zm0 4.3c.2.2.2.5 0 .7l-1.75 1.75a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0ZM6.5 12a.5.5 0 0 0 0 1H9a.5.5 0 0 0 0-1H6.5ZM6 7.5c0-.28.22-.5.5-.5H9a.5.5 0 0 1 0 1H6.5a.5.5 0 0 1-.5-.5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const TaskListSquareSettingsFilled = /*#__PURE__*/createFluentIcon('TaskListSquareSettingsFilled', \"1em\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm3.35 3.4c.2.2.2.5 0 .7L7.6 8.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 1 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0Zm-.7 5a.5.5 0 0 1 .7.7L7.6 13.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 0 1 .68-.73l.4.36 1.4-1.41ZM11 8a.5.5 0 0 1 0-1h2.5a.5.5 0 0 1 0 1H11Zm-.37 5.92a2 2 0 0 0 1.43-2.48l-.15-.56c.25-.2.53-.36.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.34c.3.14.58.31.83.52l-.12.42a2 2 0 0 0 1.45 2.52l.35.08a4.6 4.6 0 0 1 .01 1.02l-.46.12a2 2 0 0 0-1.43 2.47l.16.56c-.26.2-.53.36-.82.5l-.34-.36a2 2 0 0 0-2.91 0l-.32.35c-.3-.14-.58-.31-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.34-.08a4.62 4.62 0 0 1-.01-1.02l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const TaskListSquareSettingsRegular = /*#__PURE__*/createFluentIcon('TaskListSquareSettingsRegular', \"1em\", [\"M9.35 6.4c.2.2.2.5 0 .7L7.6 8.85a.5.5 0 0 1-.69.02l-.75-.69a.5.5 0 1 1 .68-.73l.4.36 1.4-1.41c.2-.2.52-.2.71 0Zm0 5.7a.5.5 0 0 0-.7-.7l-1.42 1.4-.4-.35a.5.5 0 0 0-.67.73l.75.69c.2.18.5.17.7-.02l1.74-1.75ZM11 7a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6a5.5 5.5 0 0 0-1-.4V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h3.2c.1.35.24.68.4 1H6a3 3 0 0 1-3-3V6Zm7.63 7.92a2 2 0 0 0 1.43-2.48l-.15-.56c.25-.2.53-.36.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.34c.3.14.58.31.83.52l-.12.42a2 2 0 0 0 1.45 2.52l.35.08a4.6 4.6 0 0 1 .01 1.02l-.46.12a2 2 0 0 0-1.43 2.47l.16.56c-.26.2-.53.36-.82.5l-.34-.36a2 2 0 0 0-2.91 0l-.32.35c-.3-.14-.58-.31-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.34-.08a4.62 4.62 0 0 1-.01-1.02l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const TasksAppFilled = /*#__PURE__*/createFluentIcon('TasksAppFilled', \"1em\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v9.88l-2.5 2.52-.93-.95a1.5 1.5 0 1 0-2.14 2.1l.44.45H6a2 2 0 0 1-2-2V4Zm5 5.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5ZM9.5 5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM9 13.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm-2-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1-5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-1 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10.86.35a.5.5 0 0 0-.72-.7l-3.64 3.68-1.64-1.68a.5.5 0 1 0-.72.7l1.93 1.97a.6.6 0 0 0 .86 0l3.93-3.97Z\"]);\nexport const TasksAppRegular = /*#__PURE__*/createFluentIcon('TasksAppRegular', \"1em\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v9.88l-1 1.01V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4.09c.07.2.18.39.34.55l.44.45H6a2 2 0 0 1-2-2V4Zm4 1.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9.5 5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM9 13.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm-2-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10.86.35a.5.5 0 0 0-.72-.7l-3.64 3.68-1.64-1.68a.5.5 0 1 0-.72.7l1.93 1.97a.6.6 0 0 0 .86 0l3.93-3.97Z\"]);\nexport const TeardropBottomRightFilled = /*#__PURE__*/createFluentIcon('TeardropBottomRightFilled', \"1em\", [\"M2 10a8 8 0 1 1 16 0v6a2 2 0 0 1-2 2h-6a8 8 0 0 1-8-8Z\"]);\nexport const TeardropBottomRightRegular = /*#__PURE__*/createFluentIcon('TeardropBottomRightRegular', \"1em\", [\"M2 10a8 8 0 1 1 16 0v6a2 2 0 0 1-2 2h-6a8 8 0 0 1-8-8Zm8-7a7 7 0 0 0 0 14h6a1 1 0 0 0 1-1v-6a7 7 0 0 0-7-7Z\"]);\nexport const TeddyFilled = /*#__PURE__*/createFluentIcon('TeddyFilled', \"1em\", [\"M5.5 3a3.5 3.5 0 0 0-2.85 5.53 7.92 7.92 0 0 1 5.5-4.32A3.5 3.5 0 0 0 5.5 3ZM18 6.5c0 .76-.24 1.46-.65 2.03a7.92 7.92 0 0 0-5.5-4.32A3.5 3.5 0 0 1 18 6.5Zm-15 5C3 7.87 6.17 5 10 5s7 2.87 7 6.5a6.2 6.2 0 0 1-1.76 4.31 5.5 5.5 0 0 0-10.48 0A6.2 6.2 0 0 1 3 11.5Zm8.33 1.7a4.5 4.5 0 0 1 3.07 3.35A7.33 7.33 0 0 1 10 18c-1.66 0-3.2-.54-4.4-1.45a4.5 4.5 0 0 1 3.07-3.35 1.5 1.5 0 0 0 2.66 0Z\"]);","import { createFluentIcon } from \"../utils/createFluentIcon\";\nexport const CommentOff48Filled = /*#__PURE__*/createFluentIcon('CommentOff48Filled', \"48\", [\"m34.23 36 7.64 7.63a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76l1.87 1.88A7.23 7.23 0 0 0 4 13.25v15.5c0 4 3.25 7.25 7.25 7.25H12v5.82a2.25 2.25 0 0 0 3.55 1.84L26.4 36h7.83ZM11.3 6l29.05 29.05a7.25 7.25 0 0 0 3.65-6.3v-15.5c0-4-3.25-7.25-7.25-7.25H11.3Z\"], {\n flipInRtl: true\n});\nexport const CommentOff48Regular = /*#__PURE__*/createFluentIcon('CommentOff48Regular', \"48\", [\"m34.23 36 7.64 7.63a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76l1.87 1.88A7.23 7.23 0 0 0 4 13.25v15.5c0 4 3.25 7.25 7.25 7.25H12v5.82a2.25 2.25 0 0 0 3.55 1.84L26.4 36h7.83Zm-2.5-2.5H25.6l-11.1 7.84V33.5h-3.25a4.75 4.75 0 0 1-4.75-4.75v-15.5c0-1.37.58-2.6 1.5-3.47L31.74 33.5ZM11.3 6l2.5 2.5h22.95a4.75 4.75 0 0 1 4.75 4.75v15.5a4.75 4.75 0 0 1-3.02 4.43l1.87 1.87a7.25 7.25 0 0 0 3.65-6.3v-15.5c0-4-3.25-7.25-7.25-7.25H11.3Z\"], {\n flipInRtl: true\n});\nexport const Communication16Filled = /*#__PURE__*/createFluentIcon('Communication16Filled', \"16\", [\"M8 3.5a5.5 5.5 0 0 0-3.9 9.39.75.75 0 1 1-1.05 1.06 7 7 0 1 1 9.9 0 .75.75 0 1 1-1.06-1.06A5.5 5.5 0 0 0 8 3.5Zm0 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM5.25 9a2.75 2.75 0 1 1 4.7 1.94A.75.75 0 0 0 11 12 4.24 4.24 0 0 0 8 4.75 4.25 4.25 0 0 0 5 12a.75.75 0 1 0 1.05-1.06c-.5-.5-.8-1.18-.8-1.94Z\"]);\nexport const Communication16Regular = /*#__PURE__*/createFluentIcon('Communication16Regular', \"16\", [\"M8 3a6 6 0 0 0-4.25 10.24.5.5 0 1 1-.7.7 7 7 0 1 1 9.9 0 .5.5 0 1 1-.7-.7A6 6 0 0 0 8 3Zm0 2.5a3.5 3.5 0 0 0-2.47 5.97.5.5 0 1 1-.71.71A4.49 4.49 0 0 1 8 4.5a4.5 4.5 0 0 1 3.18 7.68.5.5 0 0 1-.7-.7A3.5 3.5 0 0 0 8 5.5ZM8 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM7 9a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z\"]);\nexport const Communication20Filled = /*#__PURE__*/createFluentIcon('Communication20Filled', \"20\", [\"M3.5 11a6.5 6.5 0 1 1 11.1 4.6.75.75 0 1 0 1.06 1.05 8 8 0 1 0-11.33 0A.75.75 0 0 0 5.4 15.6 6.48 6.48 0 0 1 3.5 11Zm3 0a3.5 3.5 0 1 1 5.98 2.47.75.75 0 1 0 1.06 1.06A4.99 4.99 0 0 0 10 6a5 5 0 0 0-3.54 8.53.75.75 0 0 0 1.06-1.06A3.49 3.49 0 0 1 6.5 11ZM10 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z\"]);\nexport const Communication20Regular = /*#__PURE__*/createFluentIcon('Communication20Regular', \"20\", [\"M10 4a7 7 0 0 0-4.95 11.95.5.5 0 0 1-.7.7 8 8 0 1 1 11.32 0 .5.5 0 0 1-.72-.7A7 7 0 0 0 10 4Zm0 3a4 4 0 0 0-2.83 6.82.5.5 0 1 1-.71.71A4.99 4.99 0 0 1 10 6a5 5 0 0 1 3.54 8.53.5.5 0 0 1-.71-.7A3.99 3.99 0 0 0 10 7Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-1 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z\"]);\nexport const Communication24Filled = /*#__PURE__*/createFluentIcon('Communication24Filled', \"24\", [\"M12 5a8 8 0 0 0-5.66 13.65 1 1 0 1 1-1.42 1.41 10 10 0 1 1 14.16 0 1 1 0 0 1-1.42-1.4A8 8 0 0 0 12 5Zm0 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 6.83 2.83 1 1 0 0 0 1.41 1.41A5.98 5.98 0 0 0 12 7a6 6 0 0 0-4.24 10.24 1 1 0 1 0 1.41-1.41A3.98 3.98 0 0 1 8 13Z\"]);\nexport const Communication24Regular = /*#__PURE__*/createFluentIcon('Communication24Regular', \"24\", [\"M12 4.5A8.5 8.5 0 0 0 5.98 19a.75.75 0 0 1-1.06 1.06 10 10 0 1 1 14.15 0 .75.75 0 0 1-1.05-1.05A8.5 8.5 0 0 0 12 4.5ZM12 8a5 5 0 0 0-3.53 8.54.75.75 0 0 1-1.06 1.06 6.5 6.5 0 1 1 9.19 0 .75.75 0 0 1-1.07-1.06A5 5 0 0 0 12 8Zm0 2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM11 13a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z\"]);\nexport const CommunicationPerson20Filled = /*#__PURE__*/createFluentIcon('CommunicationPerson20Filled', \"20\", [\"M10 4.5a6.5 6.5 0 0 0-4.6 11.1.75.75 0 1 1-1.06 1.05 8 8 0 1 1 13.63-6.35 3 3 0 0 0-1.76-1.21A6.5 6.5 0 0 0 10 4.5Zm4.64 4.63a5 5 0 1 0-8.18 5.4.75.75 0 0 0 1.06-1.06 3.5 3.5 0 1 1 5.81-3.54 3 3 0 0 1 1.3-.8ZM8 11a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm9.5 1a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const CommunicationPerson20Regular = /*#__PURE__*/createFluentIcon('CommunicationPerson20Regular', \"20\", [\"M3 11a7 7 0 0 1 13.79-1.7c.48.22.88.57 1.18 1a8 8 0 1 0-13.63 6.35.5.5 0 0 0 .7-.7A6.98 6.98 0 0 1 3 11Zm11.64-1.87a5 5 0 1 0-8.18 5.4.5.5 0 0 0 .7-.7A3.99 3.99 0 0 1 10 7a4 4 0 0 1 3.74 2.57c.27-.2.57-.35.9-.44ZM8 11a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm7.5 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const CommunicationPerson24Filled = /*#__PURE__*/createFluentIcon('CommunicationPerson24Filled', \"24\", [\"M4 13a8 8 0 0 1 15.8-1.75 3.5 3.5 0 0 1 2.16 2.7 10 10 0 1 0-17.03 6.12 1 1 0 0 0 1.4-1.42A7.97 7.97 0 0 1 4 13Zm13.7-1.9a6 6 0 1 0-9.94 6.14 1 1 0 1 0 1.41-1.41 4 4 0 1 1 6.74-3.68 3.5 3.5 0 0 1 1.78-1.06ZM10 13a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm11 1.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const CommunicationPerson24Regular = /*#__PURE__*/createFluentIcon('CommunicationPerson24Regular', \"24\", [\"M3.5 13a8.5 8.5 0 0 1 16.88-1.46 3.5 3.5 0 0 1 1.58 2.4 10 10 0 1 0-17.03 6.12.75.75 0 0 0 1.05-1.05A8.47 8.47 0 0 1 3.5 13Zm14.7-1.99A6.5 6.5 0 1 0 7.4 17.6a.75.75 0 1 0 1.07-1.06 5 5 0 1 1 8.3-5.07c.42-.25.9-.41 1.42-.46ZM9.5 13a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm2.5-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm9 2.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const CompassNorthwest16Filled = /*#__PURE__*/createFluentIcon('CompassNorthwest16Filled', \"16\", [\"M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Zm2.44-5.24a.5.5 0 0 1-.68.68l-1.92-1a3 3 0 0 1-1.28-1.28l-.99-1.91a.5.5 0 0 1 .68-.68l1.9 1a3 3 0 0 1 1.29 1.27l1 1.92Z\"]);\nexport const CompassNorthwest16Regular = /*#__PURE__*/createFluentIcon('CompassNorthwest16Regular', \"16\", [\"M2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-7a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM5.13 6.48a1 1 0 0 1 1.35-1.35l1.9.99a3.5 3.5 0 0 1 1.5 1.5l1 1.91a1 1 0 0 1-1.35 1.35l-1.92-1a3.5 3.5 0 0 1-1.5-1.5l-.98-1.9Zm2.8.53L6.02 6 7 7.94c.23.45.6.83 1.06 1.06L10 10 9 8.07a2.5 2.5 0 0 0-1.06-1.06Z\"]);\nexport const CompassNorthwest20Filled = /*#__PURE__*/createFluentIcon('CompassNorthwest20Filled', \"20\", [\"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm.51-10.13a3 3 0 0 1 1.65 1.6l1.6 3.74c.14.35-.2.7-.55.55l-3.73-1.6a3 3 0 0 1-1.6-1.65l-1.4-3.48a.42.42 0 0 1 .54-.55l3.49 1.4Z\"]);\nexport const CompassNorthwest20Regular = /*#__PURE__*/createFluentIcon('CompassNorthwest20Regular', \"20\", [\"M3 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0Zm7-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM6.1 7.42A1 1 0 0 1 7.42 6.1l3.26 1.48a3.5 3.5 0 0 1 1.74 1.74l1.48 3.26a1 1 0 0 1-1.32 1.32l-3.26-1.48a3.5 3.5 0 0 1-1.74-1.74L6.1 7.42Zm4.17 1.07L7 7.01l1.48 3.26c.25.55.7.99 1.24 1.24L13 12.99l-1.48-3.26c-.25-.55-.7-.99-1.24-1.24Z\"]);\nexport const CompassNorthwest24Filled = /*#__PURE__*/createFluentIcon('CompassNorthwest24Filled', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm.46-12.61a4 4 0 0 1 2.2 2.14l1.85 4.32a.5.5 0 0 1-.66.66l-4.32-1.86a4 4 0 0 1-2.14-2.2L7.78 8.44a.5.5 0 0 1 .65-.65l4.03 1.6Z\"]);\nexport const CompassNorthwest24Regular = /*#__PURE__*/createFluentIcon('CompassNorthwest24Regular', \"24\", [\"M3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM7.08 8.7c-.4-1.01.6-2.02 1.63-1.62l4.03 1.6a4.75 4.75 0 0 1 2.6 2.55l1.86 4.33a1.25 1.25 0 0 1-1.64 1.64l-4.33-1.86a4.75 4.75 0 0 1-2.54-2.6L7.09 8.7Zm1.61 0 1.4 3.48c.31.8.94 1.44 1.73 1.78l3.75 1.61-1.6-3.75a3.25 3.25 0 0 0-1.79-1.74L8.69 8.7Z\"]);\nexport const CompassNorthwest28Filled = /*#__PURE__*/createFluentIcon('CompassNorthwest28Filled', \"28\", [\"M14 26a12 12 0 1 0 0-24 12 12 0 0 0 0 24Zm-.42-8.7a5 5 0 0 1-2.88-2.88L8.78 9.43a.5.5 0 0 1 .65-.65l5 1.92a5 5 0 0 1 2.87 2.88l1.92 5a.5.5 0 0 1-.65.64l-5-1.92Z\"]);\nexport const CompassNorthwest28Regular = /*#__PURE__*/createFluentIcon('CompassNorthwest28Regular', \"28\", [\"M3.5 14a10.5 10.5 0 1 1 21 0 10.5 10.5 0 0 1-21 0ZM14 2a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM8.08 9.7c-.39-1.01.6-2 1.62-1.62l5 1.92a5.75 5.75 0 0 1 3.3 3.3l1.92 5c.39 1.01-.6 2-1.62 1.62l-5-1.92a5.75 5.75 0 0 1-3.3-3.3l-1.92-5Zm1.6-.02 1.72 4.47a4.25 4.25 0 0 0 2.45 2.45l4.47 1.72-1.72-4.47a4.25 4.25 0 0 0-2.45-2.45L9.68 9.68Z\"]);\nexport const Component2DoubleTapSwipeDown24Filled = /*#__PURE__*/createFluentIcon('Component2DoubleTapSwipeDown24Filled', \"24\", [\"M10 15.71v-1.58a5.5 5.5 0 1 1 4.21-.1l-.2.1v1.58a7 7 0 1 0-4.26-.08l.25.08Zm0-2.68v-1.8A3 3 0 0 1 12 6a3 3 0 0 1 2.14 5.1l-.14.14v1.8a4.5 4.5 0 1 0-4.2-.1l.2.1Zm1.39 8.76a1 1 0 0 0 1.22 0l.1-.08 3-3 .08-.1a1 1 0 0 0 0-1.22l-.08-.1-.1-.08a1 1 0 0 0-1.22 0l-.1.08L13 18.6V9a1 1 0 0 0-2-.12V18.6l-1.3-1.3-.09-.08a1 1 0 0 0-1.4 1.4l.08.1 3 3 .1.08Z\"]);\nexport const Component2DoubleTapSwipeDown24Regular = /*#__PURE__*/createFluentIcon('Component2DoubleTapSwipeDown24Regular', \"24\", [\"M12 8c.38 0 .7.28.74.65l.01.1v10.7l2.22-2.21a.75.75 0 0 1 .98-.08l.08.08c.27.26.3.68.07.97l-.07.09-3.5 3.5a.75.75 0 0 1-.98.07l-.08-.07-3.5-3.5a.75.75 0 0 1 .98-1.14l.08.08 2.22 2.21V8.75c0-.41.34-.75.75-.75Zm0-6a7 7 0 0 1 1.75 13.78v-1.56a5.5 5.5 0 1 0-3.5 0v1.56A7 7 0 0 1 12 2Zm0 2.5a4.5 4.5 0 0 1 1.75 8.65v-1.71a3 3 0 1 0-3.5 0v1.7A4.5 4.5 0 0 1 12 4.5Z\"]);\nexport const Component2DoubleTapSwipeUp24Filled = /*#__PURE__*/createFluentIcon('Component2DoubleTapSwipeUp24Filled', \"24\", [\"M10 8.29v1.58a5.5 5.5 0 1 0 4.21.1l-.2-.1V8.3a7 7 0 1 1-4.26.08l.25-.08Zm0 2.68v1.8A3 3 0 0 0 12 18a3 3 0 0 0 2.14-5.1l-.14-.14v-1.8a4.5 4.5 0 1 1-4.2.1l.2-.1Zm1.39-8.76a1 1 0 0 1 1.22 0l.1.08 3 3 .08.1a1 1 0 0 1 0 1.22l-.08.1-.1.08a1 1 0 0 1-1.22 0l-.1-.08L13 5.4V15a1 1 0 0 1-2 .12V5.4l-1.3 1.3-.09.08a1 1 0 0 1-1.4-1.4l.08-.1 3-3 .1-.08Z\"]);\nexport const Component2DoubleTapSwipeUp24Regular = /*#__PURE__*/createFluentIcon('Component2DoubleTapSwipeUp24Regular', \"24\", [\"M12 16.02c.38 0 .7-.29.74-.65l.01-.1V4.57l2.22 2.21c.27.27.68.3.98.07l.08-.07a.75.75 0 0 0 .07-.98l-.07-.08-3.5-3.5a.75.75 0 0 0-.98-.07l-.08.07-3.5 3.5a.75.75 0 0 0 .98 1.13l.08-.07 2.22-2.22v10.7c0 .42.34.76.75.76Zm0 6a7 7 0 0 0 1.75-13.78V9.8a5.5 5.5 0 1 1-3.5 0V8.24A7 7 0 0 0 12 22.02Zm0-2.5a4.5 4.5 0 0 0 1.75-8.65v1.71a3 3 0 1 1-3.5 0v-1.71A4.5 4.5 0 0 0 12 19.52Z\"]);\nexport const Compose16Filled = /*#__PURE__*/createFluentIcon('Compose16Filled', \"16\", [\"M2 4.75A2.75 2.75 0 0 1 4.75 2h4.5a.75.75 0 1 1 0 1.5h-4.5c-.69 0-1.25.56-1.25 1.25v6.5c0 .69.56 1.25 1.25 1.25h6.5c.69 0 1.25-.56 1.25-1.25v-4.5a.75.75 0 0 1 1.5 0v4.5A2.75 2.75 0 0 1 11.25 14h-6.5A2.75 2.75 0 0 1 2 11.25v-6.5Zm12.78-3.53c.3.3.3.77 0 1.06l-7.5 7.5L6 10l.22-1.28 7.5-7.5c.3-.3.77-.3 1.06 0Z\"]);\nexport const Compose16Regular = /*#__PURE__*/createFluentIcon('Compose16Regular', \"16\", [\"M14.85 1.85a.5.5 0 1 0-.7-.7l-8 8L6 10l.85-.15 8-8ZM4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-5a.5.5 0 0 0-1 0v5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7C3 3.67 3.67 3 4.5 3h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const Compose20Filled = /*#__PURE__*/createFluentIcon('Compose20Filled', \"20\", [\"M17.78 3.28a.75.75 0 1 0-1.06-1.06l-7.5 7.5L9 11l1.28-.22 7.5-7.5ZM5.75 3A2.75 2.75 0 0 0 3 5.75v8.5A2.75 2.75 0 0 0 5.75 17h8.5A2.75 2.75 0 0 0 17 14.25v-5.5a.75.75 0 0 0-1.5 0v5.5c0 .69-.56 1.25-1.25 1.25h-8.5c-.69 0-1.25-.56-1.25-1.25v-8.5c0-.69.56-1.25 1.25-1.25h5.5a.75.75 0 0 0 0-1.5h-5.5Z\"]);\nexport const Compose20Regular = /*#__PURE__*/createFluentIcon('Compose20Regular', \"20\", [\"M17.85 2.85a.5.5 0 0 0-.7-.7l-8 8L9 11l.85-.15 8-8ZM5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-6a.5.5 0 0 0-1 0v6c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 14.5v-9C4 4.67 4.67 4 5.5 4h6a.5.5 0 0 0 0-1h-6Z\"]);\nexport const Compose24Filled = /*#__PURE__*/createFluentIcon('Compose24Filled', \"24\", [\"M11.96 13.46 21.7 3.7a1 1 0 0 0-1.42-1.42l-9.75 9.75-.29 1.71 1.7-.3ZM6.5 3A3.5 3.5 0 0 0 3 6.5v11A3.5 3.5 0 0 0 6.5 21h11a3.5 3.5 0 0 0 3.5-3.5V10a1 1 0 1 0-2 0v7.5c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 5 17.5v-11C5 5.67 5.67 5 6.5 5H14a1 1 0 1 0 0-2H6.5Z\"]);\nexport const Compose24Regular = /*#__PURE__*/createFluentIcon('Compose24Regular', \"24\", [\"M21.78 3.28a.75.75 0 1 0-1.06-1.06l-10 10-.47 1.53 1.53-.47 10-10ZM6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25v-8a.75.75 0 0 0-1.5 0v8c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25c0-.97.78-1.75 1.75-1.75h8a.75.75 0 0 0 0-1.5h-8Z\"]);\nexport const Compose28Filled = /*#__PURE__*/createFluentIcon('Compose28Filled', \"28\", [\"M25.7 3.7a1 1 0 0 0-1.4-1.4l-13 13L11 17l1.7-.3 13-13ZM6.5 3A3.5 3.5 0 0 0 3 6.5v15A3.5 3.5 0 0 0 6.5 25h15a3.5 3.5 0 0 0 3.5-3.5v-10a1 1 0 1 0-2 0v10c0 .83-.67 1.5-1.5 1.5h-15A1.5 1.5 0 0 1 5 21.5v-15C5 5.67 5.67 5 6.5 5h10a1 1 0 1 0 0-2h-10Z\"]);\nexport const Compose28Regular = /*#__PURE__*/createFluentIcon('Compose28Regular', \"28\", [\"M25.78 3.28a.75.75 0 1 0-1.06-1.06L11.47 15.47 11 17l1.53-.47L25.78 3.28ZM6.25 3A3.25 3.25 0 0 0 3 6.25v15.5C3 23.55 4.46 25 6.25 25h15.5c1.8 0 3.25-1.46 3.25-3.25V11.2a.75.75 0 0 0-1.5 0v10.55c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25c0-.97.78-1.75 1.75-1.75H16.8a.75.75 0 1 0 0-1.5H6.25Z\"]);\nexport const Cone16Filled = /*#__PURE__*/createFluentIcon('Cone16Filled', \"16\", [\"M8 15c-2.23 0-6-.42-6-2l.01-.12.05-.2a.5.5 0 0 1 .04-.1l5.45-11.3a.52.52 0 0 1 .9 0l5.45 11.3a.5.5 0 0 1 .04.1l.05.2.01.12c0 1.58-3.77 2-6 2Z\"]);\nexport const Cone16Regular = /*#__PURE__*/createFluentIcon('Cone16Regular', \"16\", [\"M8 15c-2.23 0-6-.42-6-2l.01-.12.05-.2a.5.5 0 0 1 .04-.1l5.45-11.3a.52.52 0 0 1 .9 0l5.45 11.3a.5.5 0 0 1 .04.1l.05.2.01.12c0 1.58-3.77 2-6 2Zm-4.99-1.98c.2.34 2.03.98 4.99.98 2.94 0 4.76-.63 4.99-1l-.01-.03L8 2.65 3.01 13.02Z\"]);\nexport const ConferenceRoom16Filled = /*#__PURE__*/createFluentIcon('ConferenceRoom16Filled', \"16\", [\"M7.18 2.11a.5.5 0 0 1 .42-.1l5 1c.23.05.4.25.4.49v9a.5.5 0 0 1-.4.49l-5 1a.5.5 0 0 1-.6-.5V2.5M10 8a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Z\", \"M6 3H3.5a.5.5 0 0 0-.5.5v9c0 .27.22.5.5.5H6V3Z\", \"M7.18 2.11A.5.5 0 0 0 7 2.5Z\"]);\nexport const ConferenceRoom16Regular = /*#__PURE__*/createFluentIcon('ConferenceRoom16Regular', \"16\", [\"M10 8a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM7.6 2a.5.5 0 0 0-.6.49v11a.5.5 0 0 0 .6.49l5-1a.5.5 0 0 0 .4-.5V3.5a.5.5 0 0 0-.4-.49l-5-1ZM8 12.89V3.1l4 .8v8.18l-4 .8Zm-2 .1v-1H4V4h2V3H3.5a.5.5 0 0 0-.5.5v9c0 .27.22.5.5.5H6Z\"]);\nexport const ConferenceRoom20Filled = /*#__PURE__*/createFluentIcon('ConferenceRoom20Filled', \"20\", [\"M9.19 2.11a.5.5 0 0 1 .41-.1l7 1.5c.23.05.4.25.4.5v12a.5.5 0 0 1-.4.48l-7 1.5a.5.5 0 0 1-.6-.49v-15c0-.15.07-.3.19-.39Zm3.31 7.9a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM8 3H3.5a.5.5 0 0 0-.5.5V16.5c0 .27.22.5.5.5H8V3Z\"]);\nexport const ConferenceRoom20Regular = /*#__PURE__*/createFluentIcon('ConferenceRoom20Regular', \"20\", [\"M12.49 10a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM9.6 2.01a.5.5 0 0 0-.6.5V17.5a.5.5 0 0 0 .6.5l7-1.51A.5.5 0 0 0 17 16V4a.5.5 0 0 0-.4-.49l-7-1.5Zm.4 14.87V3.12l6 1.29V15.6l-6 1.28ZM8 17v-1H4V4h4V3H3.5a.5.5 0 0 0-.5.5v13c0 .27.22.5.5.5H8Z\"]);\nexport const ConferenceRoom24Filled = /*#__PURE__*/createFluentIcon('ConferenceRoom24Filled', \"24\", [\"m10.6 2.01 9 2c.23.05.4.25.4.49v15a.5.5 0 0 1-.4.5l-9 2a.5.5 0 0 1-.6-.5v-19a.5.5 0 0 1 .6-.49ZM9 4v16H4.75a.75.75 0 0 1-.74-.65l-.01-.1V4.75c0-.38.28-.7.65-.74l.1-.01H9Zm4 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z\"]);\nexport const ConferenceRoom24Regular = /*#__PURE__*/createFluentIcon('ConferenceRoom24Regular', \"24\", [\"m10.82 2 .1.02 8.5 2c.3.07.53.32.57.63l.01.1v14.5c0 .31-.2.59-.48.7l-.1.03-8.5 2a.75.75 0 0 1-.91-.63l-.01-.1V2.75c0-.41.33-.74.72-.75h.1Zm.68 1.7v16.6l7-1.64V5.34l-7-1.64ZM9 4v1.5H5.5v13H9V20H4.75a.75.75 0 0 1-.74-.65l-.01-.1V4.75c0-.38.28-.7.65-.74l.1-.01H9Zm5 7a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const ConferenceRoom28Filled = /*#__PURE__*/createFluentIcon('ConferenceRoom28Filled', \"28\", [\"m11.9 2.01 11.5 2.25c.35.07.6.38.6.74v18c0 .36-.25.67-.6.74l-11.5 2.25a.75.75 0 0 1-.9-.74V2.75c0-.47.43-.83.9-.74ZM15 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-5-8.5v19H4.75a.75.75 0 0 1-.74-.65l-.01-.1V5.25c0-.38.28-.7.65-.74l.1-.01H10Z\"]);\nexport const ConferenceRoom28Regular = /*#__PURE__*/createFluentIcon('ConferenceRoom28Regular', \"28\", [\"m11.9 2.01 11.5 2.25c.35.07.6.38.6.74v18c0 .36-.25.67-.6.74l-11.5 2.25a.75.75 0 0 1-.9-.74V2.75c0-.47.43-.83.9-.74Zm.6 1.65v20.68l10-1.96V5.62l-10-1.96ZM10 4.5V6H5.5v16H10v1.5H4.75a.75.75 0 0 1-.74-.65l-.01-.1V5.25c0-.38.28-.7.65-.74l.1-.01H10Zm5 8.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const ConferenceRoom48Filled = /*#__PURE__*/createFluentIcon('ConferenceRoom48Filled', \"48\", [\"m22.5 7.78 14.5 3c.58.12 1 .63 1 1.22v24c0 .6-.42 1.1-1 1.22l-14.5 3c-.77.16-1.5-.43-1.5-1.22V9c0-.8.73-1.38 1.5-1.22ZM18 10l.13 28h-6.88c-.65 0-1.18-.5-1.24-1.12l-.01-.13v-25.5c0-.65.5-1.18 1.12-1.24l.13-.01H18Zm8.5 12.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const ConferenceRoom48Regular = /*#__PURE__*/createFluentIcon('ConferenceRoom48Regular', \"48\", [\"m22.5 7.78 14.5 3c.58.12 1 .63 1 1.22v24c0 .6-.42 1.1-1 1.22l-14.5 3c-.77.16-1.5-.43-1.5-1.22V9c0-.8.73-1.38 1.5-1.22ZM18 10v2.5h-5.5v23H18V38h-6.75c-.65 0-1.18-.5-1.24-1.12l-.01-.13v-25.5c0-.65.5-1.18 1.12-1.24l.13-.01H18Zm5.5.54v26.93l12-2.49V13.02l-12-2.48Zm3 11.96a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const Connected16Filled = /*#__PURE__*/createFluentIcon('Connected16Filled', \"16\", [\"M4.02 4.72a2 2 0 1 1 .7-.7l2.26 2.26a2 2 0 0 1 2.04 0l2.26-2.26a2 2 0 1 1 .7.7L9.72 6.98a2 2 0 0 1 0 2.04l2.26 2.26a2 2 0 1 1-.7.7L9.02 9.72a2 2 0 0 1-2.04 0l-2.26 2.26a2 2 0 1 1-.7-.7l2.26-2.26a2 2 0 0 1 0-2.04L4.02 4.72Z\"]);\nexport const Connected16Regular = /*#__PURE__*/createFluentIcon('Connected16Regular', \"16\", [\"M4.02 4.72a2 2 0 1 1 .7-.7l2.26 2.26a2 2 0 0 1 2.04 0l2.26-2.26a2 2 0 1 1 .7.7L9.72 6.98a2 2 0 0 1 0 2.04l2.26 2.26a2 2 0 1 1-.7.7L9.02 9.72a2 2 0 0 1-2.04 0l-2.26 2.26a2 2 0 1 1-.7-.7l2.26-2.26a2 2 0 0 1 0-2.04L4.02 4.72ZM4 3a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm0 10a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9-9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM9 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const Connected20Filled = /*#__PURE__*/createFluentIcon('Connected20Filled', \"20\", [\"M7 4.5c0 .51-.15.98-.41 1.38L8.62 7.9a2.49 2.49 0 0 1 2.76 0l2.03-2.03a2.5 2.5 0 1 1 .7.7L12.1 8.63a2.49 2.49 0 0 1 0 2.76l2.03 2.03a2.5 2.5 0 1 1-.7.7l-2.04-2.02a2.49 2.49 0 0 1-2.76 0L6.6 14.12a2.5 2.5 0 1 1-.7-.7l2.02-2.04a2.49 2.49 0 0 1 0-2.76L5.88 6.6A2.5 2.5 0 1 1 7 4.5Z\"]);\nexport const Connected20Regular = /*#__PURE__*/createFluentIcon('Connected20Regular', \"20\", [\"M5.88 6.59a2.5 2.5 0 1 1 .7-.7L8.63 7.9a2.49 2.49 0 0 1 2.76 0l2.03-2.03a2.5 2.5 0 1 1 .7.7L12.1 8.63a2.49 2.49 0 0 1 0 2.76l2.03 2.03a2.5 2.5 0 1 1-.7.7l-2.04-2.02a2.49 2.49 0 0 1-2.76 0L6.6 14.12a2.5 2.5 0 1 1-.7-.7l2.02-2.04a2.49 2.49 0 0 1 0-2.76L5.88 6.6ZM6 4.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm11 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM4.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM17 15.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM11.5 10a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z\"]);\nexport const Connector16Filled = /*#__PURE__*/createFluentIcon('Connector16Filled', \"16\", [\"M3.5 3a.5.5 0 0 0-.5.5v1.88l-.95 1.9A.5.5 0 0 0 2 7.5v3c0 .28.22.5.5.5H3v1.5a.5.5 0 0 0 1 0V11h1v1.5a.5.5 0 0 0 1 0V11h.5a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.05-.22L6 5.38V3.5a.5.5 0 0 0-.5-.5h-2Zm9 10h-2a.5.5 0 0 1-.5-.5v-1.88l-.95-1.9A.5.5 0 0 1 9 8.5v-3c0-.28.22-.5.5-.5h.5V3.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5V5h.5c.28 0 .5.22.5.5v3a.5.5 0 0 1-.05.22l-.95 1.9v1.88a.5.5 0 0 1-.5.5ZM11 5h1V4h-1v1Z\"]);\nexport const Connector16Regular = /*#__PURE__*/createFluentIcon('Connector16Regular', \"16\", [\"M4 3.5a.5.5 0 0 0-1 0v1.88l-.95 1.9A.5.5 0 0 0 2 7.5v3c0 .28.22.5.5.5H3v1.5a.5.5 0 0 0 1 0V11h1v1.5a.5.5 0 0 0 1 0V11h.5a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.05-.22L6 5.38V3.5a.5.5 0 0 0-1 0v2c0 .08.02.15.05.22L6 7.62V10H3V7.62l.95-1.9A.5.5 0 0 0 4 5.5v-2Zm8 9v-2a.5.5 0 0 1 .05-.22l.95-1.9V6h-3v2.38l.95 1.9a.5.5 0 0 1 .05.22v2a.5.5 0 0 1-1 0v-1.88l-.95-1.9A.5.5 0 0 1 9 8.5v-3c0-.28.22-.5.5-.5h.5V3.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5V5h.5a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.05.22l-.95 1.9v1.88a.5.5 0 0 1-1 0ZM11 5h1V4h-1v1Z\"]);\nexport const Connector20Filled = /*#__PURE__*/createFluentIcon('Connector20Filled', \"20\", [\"M4.5 3a.5.5 0 0 0-.5.5v2.8L2.15 8.14A.5.5 0 0 0 2 8.5v5c0 .28.22.5.5.5H4v2.5a.5.5 0 0 0 1 0V14h1v2.5a.5.5 0 0 0 1 0V14h1.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.15-.35L7 6.29V3.5a.5.5 0 0 0-.5-.5h-2Zm11 14a.5.5 0 0 0 .5-.5v-2.8l1.85-1.85a.5.5 0 0 0 .15-.35v-5a.5.5 0 0 0-.5-.5H17V3.5a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 0-.5.5V6h-.5a.5.5 0 0 0-.5.5v5c0 .13.05.26.15.35L13 13.71v2.79c0 .28.22.5.5.5h2ZM13 6V4h3v2h-3Z\"]);\nexport const Connector20Regular = /*#__PURE__*/createFluentIcon('Connector20Regular', \"20\", [\"M5 3.5a.5.5 0 0 0-1 0v2.8L2.15 8.14A.5.5 0 0 0 2 8.5v5c0 .28.22.5.5.5H4v2.5a.5.5 0 0 0 1 0V14h1v2.5a.5.5 0 0 0 1 0V14h1.5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.15-.35L7 6.29V3.5a.5.5 0 0 0-1 0v3c0 .13.05.26.15.35L8 8.71V13H3V8.7l1.85-1.85A.5.5 0 0 0 5 6.5v-3Zm10 13v-3a.5.5 0 0 1 .15-.35L17 11.29V7h-5v4.3l1.85 1.85c.1.09.15.22.15.35v3a.5.5 0 0 1-1 0v-2.8l-1.85-1.85a.5.5 0 0 1-.15-.35v-5c0-.28.22-.5.5-.5h.5V3.5c0-.28.22-.5.5-.5h4c.28 0 .5.22.5.5V6h.5c.28 0 .5.22.5.5v5a.5.5 0 0 1-.15.35L16 13.71v2.79a.5.5 0 0 1-1 0ZM13 6h3V4h-3v2Z\"]);\nexport const Connector24Filled = /*#__PURE__*/createFluentIcon('Connector24Filled', \"24\", [\"M8.25 4c.42 0 .75.34.75.75v2.77l1.88 2.82c.08.12.12.27.12.41v4.5c0 .41-.33.75-.75.75H9v3.25a.75.75 0 0 1-1.5.1V16h-2v3.26a.75.75 0 0 1-1.49.1V16H2.74a.75.75 0 0 1-.75-.75v-4.5c0-.14.05-.29.13-.41L4 7.52V4.75c0-.41.34-.75.75-.75h3.5Zm7 0h4.5c.38 0 .7.28.74.65l.01.1V8h.75c.42 0 .75.34.75.75v4.5c0 .14-.04.29-.12.41L20 16.48v2.77c0 .41-.33.75-.75.75h-3.5a.75.75 0 0 1-.75-.75v-2.77l-1.87-2.82a.75.75 0 0 1-.13-.41v-4.5c0-.41.34-.75.75-.75h.76V4.75c0-.38.28-.7.64-.74h4.6-4.5ZM19 5.5h-3V8h3V5.5Z\"]);\nexport const Connector24Regular = /*#__PURE__*/createFluentIcon('Connector24Regular', \"24\", [\"M8.25 4c.38 0 .7.28.74.65l.01.1v2.77l1.88 2.82c.06.1.1.2.11.3l.01.11v4.5c0 .38-.28.7-.65.74l-.1.01H9v3.25a.75.75 0 0 1-1.5.1V16h-2v3.26a.75.75 0 0 1-1.49.1V16H2.74a.75.75 0 0 1-.74-.65v-4.6c0-.1.02-.22.07-.32l.05-.1L4 7.54V4.74a.75.75 0 0 1 1.5-.1v3.1c0 .11-.02.22-.07.32l-.05.1-1.88 2.81v3.52h6v-3.52L7.63 8.17a.75.75 0 0 1-.12-.31V4.75c0-.41.33-.75.74-.75Zm7 0h4.5c.38 0 .7.28.74.65l.01.1V8h.75c.38 0 .7.28.74.65l.01.1v4.5c0 .1-.02.22-.07.32l-.05.1-1.88 2.8v2.78a.75.75 0 0 1-1.5.1v-3.1c0-.11.03-.22.07-.32l.06-.1 1.87-2.81V9.5h-6v3.52l1.88 2.81c.06.1.1.2.12.31v3.11a.75.75 0 0 1-1.49.1v-2.87l-1.88-2.82a.75.75 0 0 1-.12-.3V8.75c0-.38.28-.7.64-.74l.1-.01h.76V4.75c0-.38.28-.7.64-.74h4.6-4.5ZM19 5.5h-3V8h3V5.5Z\"]);\nexport const ContactCard16Filled = /*#__PURE__*/createFluentIcon('ContactCard16Filled', \"16\", [\"M1 4.75C1 3.78 1.78 3 2.75 3h10.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H2.75C1.78 13 1 12.22 1 11.25v-6.5Zm4.26 2.96a1.36 1.36 0 1 0 0-2.71 1.36 1.36 0 0 0 0 2.71Zm-1.4.68a.86.86 0 0 0-.86.86c0 .77.52 1.43 1.27 1.62l.05.01c.62.16 1.27.16 1.88 0h.06a1.67 1.67 0 0 0 1.26-1.63.86.86 0 0 0-.86-.86h-2.8ZM9.5 6a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const ContactCard16Regular = /*#__PURE__*/createFluentIcon('ContactCard16Regular', \"16\", [\"M1 4.75C1 3.78 1.78 3 2.75 3h10.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H2.75C1.78 13 1 12.22 1 11.25v-6.5ZM2.75 4a.75.75 0 0 0-.75.75v6.5c0 .41.34.75.75.75h10.5c.41 0 .75-.34.75-.75v-6.5a.75.75 0 0 0-.75-.75H2.75ZM9.5 6a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM5.26 7.71a1.36 1.36 0 1 0 0-2.71 1.36 1.36 0 0 0 0 2.71Zm-1.4.68a.86.86 0 0 0-.86.86c0 .77.52 1.43 1.27 1.62l.05.01c.62.16 1.27.16 1.88 0h.06a1.67 1.67 0 0 0 1.26-1.63.86.86 0 0 0-.86-.86h-2.8Z\"]);\nexport const ContactCard20Filled = /*#__PURE__*/createFluentIcon('ContactCard20Filled', \"20\", [\"M3.5 4C2.67 4 2 4.67 2 5.5v9c0 .83.67 1.5 1.5 1.5h13c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-13Zm3 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-1.55.75h3.1c.53 0 .95.42.95.95 0 .85-.58 1.58-1.4 1.79l-.06.01a4.3 4.3 0 0 1-2.08 0l-.06-.01c-.82-.2-1.4-.94-1.4-1.8 0-.52.42-.94.95-.94ZM11 8.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm.5 2.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Z\"]);\nexport const ContactCard20Regular = /*#__PURE__*/createFluentIcon('ContactCard20Regular', \"20\", [\"M8 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-4 3.2c0-.53.42-.95.95-.95h3.1c.53 0 .95.42.95.95 0 .85-.58 1.58-1.4 1.79l-.06.01a4.3 4.3 0 0 1-2.08 0l-.06-.01c-.82-.2-1.4-.94-1.4-1.8ZM11.5 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM2 5.75C2 4.78 2.78 4 3.75 4h12.5c.97 0 1.75.78 1.75 1.75v8.5c0 .97-.78 1.75-1.75 1.75H3.75C2.78 16 2 15.22 2 14.25v-8.5ZM3.75 5a.75.75 0 0 0-.75.75v8.5c0 .41.34.75.75.75h12.5c.41 0 .75-.34.75-.75v-8.5a.75.75 0 0 0-.75-.75H3.75Z\"]);\nexport const ContactCard24Filled = /*#__PURE__*/createFluentIcon('ContactCard24Filled', \"24\", [\"M19.75 4C20.99 4 22 5 22 6.25v11.5C22 19 21 20 19.75 20H4.25C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4h15.5Zm-10 8.5h-3.5c-.38 0-.7.28-.74.65l-.01.1v.6c.17 1.11 1.1 1.65 2.5 1.65 1.33 0 2.24-.49 2.46-1.5l.03-.15.01-.1v-.5c0-.38-.28-.7-.65-.74l-.1-.01Zm8 .5h-4.6a.75.75 0 0 0 0 1.49H17.85a.75.75 0 0 0 0-1.49h-.1ZM8 8.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm9.75 1h-4.6a.75.75 0 0 0 0 1.5H17.85a.75.75 0 0 0 0-1.5h-.1Z\"]);\nexport const ContactCard24Regular = /*#__PURE__*/createFluentIcon('ContactCard24Regular', \"24\", [\"M19.75 4C20.99 4 22 5 22 6.25v11.5C22 19 21 20 19.75 20H4.25C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4h15.5Zm0 1.5H4.25a.75.75 0 0 0-.75.75v11.5c0 .42.34.75.75.75h15.5c.41 0 .75-.33.75-.75V6.25a.75.75 0 0 0-.75-.75Zm-10 7c.41 0 .75.34.75.75v.6c-.17 1.11-1.1 1.65-2.5 1.65s-2.33-.54-2.5-1.65v-.6c0-.41.34-.75.75-.75h3.5Zm3.5.5h4.5a.75.75 0 0 1 .1 1.49h-4.6a.75.75 0 0 1-.1-1.49h4.6-4.5ZM8 8.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5.25 1h4.5a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.1-1.5h4.6-4.5Z\"]);\nexport const ContactCard28Filled = /*#__PURE__*/createFluentIcon('ContactCard28Filled', \"28\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v14.5A2.75 2.75 0 0 0 4.75 24h18.5A2.75 2.75 0 0 0 26 21.25V6.75A2.75 2.75 0 0 0 23.25 4H4.75ZM15 11.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm.75 3.25h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5Zm-4.5-3.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM7 14.5h5a1 1 0 0 1 1 1v.5s-.5 2.5-3.5 2.5S6 16 6 16v-.5a1 1 0 0 1 1-1Z\"]);\nexport const ContactCard28Regular = /*#__PURE__*/createFluentIcon('ContactCard28Regular', \"28\", [\"M15 11.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-4.5-3.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM7 14.5h5a1 1 0 0 1 1 1v.5s-.5 2.5-3.5 2.5S6 16 6 16v-.5a1 1 0 0 1 1-1ZM2 6.75A2.75 2.75 0 0 1 4.75 4h18.5A2.75 2.75 0 0 1 26 6.75v14.5A2.75 2.75 0 0 1 23.25 24H4.75A2.75 2.75 0 0 1 2 21.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v14.5c0 .69.56 1.25 1.25 1.25h18.5c.7 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const ContactCard32Filled = /*#__PURE__*/createFluentIcon('ContactCard32Filled', \"32\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v17.5C2 26.55 3.46 28 5.25 28h21.5c1.8 0 3.25-1.46 3.25-3.25V7.25C30 5.45 28.54 4 26.75 4H5.25ZM18 13a1 1 0 0 1 1-1h6a1 1 0 0 1 0 2h-6a1 1 0 0 1-1-1Zm1 4h6a1 1 0 0 1 0 2h-6a1 1 0 1 1 0-2Zm-6-4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6 4.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5 0 0 0 3.5-4 3.5s-4-3.5-4-3.5Z\"]);\nexport const ContactCard32Regular = /*#__PURE__*/createFluentIcon('ContactCard32Regular', \"32\", [\"M18 13a1 1 0 0 1 1-1h6a1 1 0 0 1 0 2h-6a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h6a1 1 0 0 0 0-2h-6Zm-6-4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6 4.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5 0 0 0 3.5-4 3.5s-4-3.5-4-3.5ZM2 7.25C2 5.45 3.46 4 5.25 4h21.5C28.55 4 30 5.46 30 7.25v17.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 24.75V7.25ZM5.25 6C4.56 6 4 6.56 4 7.25v17.5c0 .69.56 1.25 1.25 1.25h21.5c.69 0 1.25-.56 1.25-1.25V7.25C28 6.56 27.44 6 26.75 6H5.25Z\"]);\nexport const ContactCard48Filled = /*#__PURE__*/createFluentIcon('ContactCard48Filled', \"48\", [\"M8.25 8A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40h31.5C42.1 40 44 38.1 44 35.75v-23.5C44 9.9 42.1 8 39.75 8H8.25ZM19 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-8 6.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v.5s0 4-5 4-5-4-5-4v-.5Zm14-6.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25ZM26.25 26h9.5a1.25 1.25 0 1 1 0 2.5h-9.5a1.25 1.25 0 1 1 0-2.5Z\"]);\nexport const ContactCard48Regular = /*#__PURE__*/createFluentIcon('ContactCard48Regular', \"48\", [\"M19 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-8 6.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v.5s0 4-5 4-5-4-5-4v-.5Zm14-6.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25ZM26.25 26a1.25 1.25 0 1 0 0 2.5h9.5a1.25 1.25 0 1 0 0-2.5h-9.5ZM4 12.25C4 9.9 5.9 8 8.25 8h31.5C42.1 8 44 9.9 44 12.25v23.5C44 38.1 42.1 40 39.75 40H8.25A4.25 4.25 0 0 1 4 35.75v-23.5Zm4.25-1.75c-.97 0-1.75.78-1.75 1.75v23.5c0 .97.78 1.75 1.75 1.75h31.5c.97 0 1.75-.78 1.75-1.75v-23.5c0-.97-.78-1.75-1.75-1.75H8.25Z\"]);\nexport const ContactCardGroup16Filled = /*#__PURE__*/createFluentIcon('ContactCardGroup16Filled', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h9a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 12.5 3h-9ZM10 6.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm.5 2.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1ZM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3.75 8h2.5c.41 0 .75.34.75.75v.75S7 11 5 11 3 9.5 3 9.5v-.75c0-.41.34-.75.75-.75ZM8.5 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.56 3.7A2.4 2.4 0 0 0 8 9.56v-.81c0-.27-.06-.52-.17-.75h.67c.28 0 .5.22.5.5V9a1 1 0 0 1-1 1h-.07l.01-.05Z\"]);\nexport const ContactCardGroup16Regular = /*#__PURE__*/createFluentIcon('ContactCardGroup16Regular', \"16\", [\"M10 6.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3.75 8a.75.75 0 0 0-.75.75v.75S3 11 5 11s2-1.5 2-1.5v-.75A.75.75 0 0 0 6.25 8h-2.5ZM8.5 6.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.56 3.7V10H8a1 1 0 0 0 1-1v-.5a.5.5 0 0 0-.5-.5h-.67c.11.23.17.48.17.75v.81a1.96 1.96 0 0 1-.06.4ZM1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5v-5ZM3.5 4C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const ContactCardGroup20Filled = /*#__PURE__*/createFluentIcon('ContactCardGroup20Filled', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM12 8.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm.5 2.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1ZM4 10.75c0-.41.34-.75.75-.75h3a.75.75 0 0 1 .75.75v.81c-.02.16-.1.58-.5.92-.33.29-.86.52-1.75.52C4 13 4 11.5 4 11.5v-.75ZM6.25 9a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5Zm4.25-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1.07 3.98a2.26 2.26 0 0 0 .07-.41V10.75c0-.27-.06-.52-.17-.75H10a1 1 0 0 1 1 1c0 .83-.67 1.5-1.5 1.5h-.26c.1-.2.16-.37.2-.52Z\"]);\nexport const ContactCardGroup20Regular = /*#__PURE__*/createFluentIcon('ContactCardGroup20Regular', \"20\", [\"M12 8.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm-8-.75c0-.41.34-.75.75-.75h3a.75.75 0 0 1 .75.75v.81c-.02.16-.1.58-.5.92-.33.29-.86.52-1.75.52C4 13 4 11.5 4 11.5v-.75ZM6.25 9a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm4.25-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1.07 3.98c-.03.15-.1.33-.2.52h.27c.83 0 1.5-.67 1.5-1.5a1 1 0 0 0-1-1h-.67c.11.23.17.48.17.75V11.57a1.84 1.84 0 0 1-.07.4ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM3 6.5C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-7Z\"]);\nexport const ContactCardGroup24Filled = /*#__PURE__*/createFluentIcon('ContactCardGroup24Filled', \"24\", [\"M18.75 4C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5a3.25 3.25 0 0 1 3.07-3.24L5.25 4h13.5Zm-9.5 8.5h-3.5c-.38 0-.7.28-.74.65l-.01.1v.58c0 1.27.97 1.92 2.5 1.92 1.47 0 2.42-.6 2.5-1.76v-.74c0-.38-.28-.7-.65-.74l-.1-.01Zm3 0h-1.42c.09.18.15.38.17.59v1c-.03.33-.1.63-.21.9l.34.01c1.05 0 1.79-.4 1.86-1.27l.01-.15v-.33c0-.38-.28-.7-.65-.74l-.1-.01h-1.42 1.42Zm6 0h-3.1a.75.75 0 0 0 0 1.5h3.2a.75.75 0 0 0 0-1.5h-.1ZM7.5 8.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm3.87.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6.88.5h-3.1a.75.75 0 0 0 0 1.5h3.2a.75.75 0 0 0 0-1.5h-.1Z\"]);\nexport const ContactCardGroup24Regular = /*#__PURE__*/createFluentIcon('ContactCardGroup24Regular', \"24\", [\"M18.75 4C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5a3.25 3.25 0 0 1 3.07-3.24L5.25 4h13.5Zm0 1.5H5.11c-.9.08-1.61.83-1.61 1.75v9.5c0 .97.78 1.75 1.75 1.75h13.5c.97 0 1.75-.78 1.75-1.75v-9.5c0-.97-.78-1.75-1.75-1.75Zm-9.5 7c.42 0 .75.34.75.75v.58c0 1.27-.97 1.92-2.5 1.92S5 15.1 5 13.83v-.58c0-.41.34-.75.75-.75h3.5Zm1.58 0h1.42c.41 0 .75.34.75.75v.33c0 .97-.77 1.42-1.88 1.42-.11 0-.22 0-.33-.02.11-.26.18-.56.2-.9l.01-.25v-.58c0-.27-.06-.52-.17-.75Zm4.42 0h3a.75.75 0 0 1 .1 1.5h-3.1a.75.75 0 0 1-.1-1.5h3.1-3Zm-7.75-4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm3.87.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm3.88.5h3a.75.75 0 0 1 .1 1.5h-3.1a.75.75 0 0 1-.1-1.5h3.1-3Z\"]);\nexport const ContactCardGroup28Filled = /*#__PURE__*/createFluentIcon('ContactCardGroup28Filled', \"28\", [\"M2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25V7.75A3.75 3.75 0 0 0 22.25 4H5.75A3.75 3.75 0 0 0 2 7.75Zm15 4.5c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm.75 2.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 1 1 0-1.5ZM15 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-8 2.5h3.5a1 1 0 0 1 1 1v1s0 2-2.75 2-2.75-2-2.75-2v-1a1 1 0 0 1 1-1Zm3.5-2.75a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm3 5.75h-1.21a3.04 3.04 0 0 0 .2-.97l.01-.03v-1a2 2 0 0 0-.27-1h2.27a1 1 0 0 1 1 1 2 2 0 0 1-2 2Z\"]);\nexport const ContactCardGroup28Regular = /*#__PURE__*/createFluentIcon('ContactCardGroup28Regular', \"28\", [\"M17 12.25c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm.75 2.75a.75.75 0 1 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM15 12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-8 2.5a1 1 0 0 0-1 1v1s0 2 2.75 2 2.75-2 2.75-2v-1a1 1 0 0 0-1-1H7Zm3.5-2.75a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm3 5.75h-1.21a3.04 3.04 0 0 0 .2-.93v-.02h.01V15.5a2 2 0 0 0-.27-1h2.27a1 1 0 0 1 1 1 2 2 0 0 1-2 2ZM2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v12.5A3.75 3.75 0 0 1 22.25 24H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM5.75 5.5c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1.01 2.25 2.25 2.25h16.5c1.24 0 2.25-1 2.25-2.25V7.75c0-1.24-1-2.25-2.25-2.25H5.75Z\"]);\nexport const ContactCardGroup48Filled = /*#__PURE__*/createFluentIcon('ContactCardGroup48Filled', \"48\", [\"M10.25 8A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h27.5C41.2 40 44 37.2 44 33.75v-19.5C44 10.8 41.2 8 37.75 8h-27.5ZM18 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm4.5 3a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm6.5-1.75c0-.69.56-1.25 1.25-1.25h6.5a1.25 1.25 0 1 1 0 2.5h-6.5c-.69 0-1.25-.56-1.25-1.25Zm1.25 4.25h6.5a1.25 1.25 0 1 1 0 2.5h-6.5a1.25 1.25 0 1 1 0-2.5ZM10 26.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V28s0 3.5-5 3.5-5-3.5-5-3.5v-1.5ZM23 30h-1.47a5.47 5.47 0 0 0 .47-1.94V26.5c0-.54-.12-1.05-.34-1.5h2.84c.83 0 1.5.67 1.5 1.5v.5a3 3 0 0 1-3 3Z\"]);\nexport const ContactCardGroup48Regular = /*#__PURE__*/createFluentIcon('ContactCardGroup48Regular', \"48\", [\"M18 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm4.5 3a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm6.5-1.75c0-.69.56-1.25 1.25-1.25h6.5a1.25 1.25 0 1 1 0 2.5h-6.5c-.69 0-1.25-.56-1.25-1.25Zm1.25 4.25a1.25 1.25 0 1 0 0 2.5h6.5a1.25 1.25 0 1 0 0-2.5h-6.5ZM10 26.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V28s0 3.5-5 3.5-5-3.5-5-3.5v-1.5Zm11.87 2.51c-.07.29-.18.63-.34.99H23a3 3 0 0 0 3-3v-.5c0-.83-.67-1.5-1.5-1.5h-2.84c.22.45.34.96.34 1.5v1.56a3.15 3.15 0 0 1-.02.3c-.02.16-.05.39-.11.65ZM4 14.25C4 10.8 6.8 8 10.25 8h27.5C41.2 8 44 10.8 44 14.25v19.5C44 37.2 41.2 40 37.75 40h-27.5A6.25 6.25 0 0 1 4 33.75v-19.5Zm6.25-3.75a3.75 3.75 0 0 0-3.75 3.75v19.5a3.75 3.75 0 0 0 3.75 3.75h27.5a3.75 3.75 0 0 0 3.75-3.75v-19.5a3.75 3.75 0 0 0-3.75-3.75h-27.5Z\"]);\nexport const ContactCardLink16Filled = /*#__PURE__*/createFluentIcon('ContactCardLink16Filled', \"16\", [\"M2.75 3C1.78 3 1 3.78 1 4.75v6.5c0 .97.78 1.75 1.75 1.75h2.29a3.53 3.53 0 0 1 .3-2c-.34 0-.69-.03-1.02-.12h-.05A1.67 1.67 0 0 1 3 9.24c0-.47.38-.86.86-.86h2.8c.44 0 .8.33.86.75.3-.1.64-.14.98-.14h4c.98 0 1.86.4 2.5 1.05v-5.3C15 3.78 14.22 3 13.25 3H2.75Zm3.87 3.36a1.36 1.36 0 1 1-2.72 0 1.36 1.36 0 0 1 2.72 0ZM9 6.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM8.5 10a2.5 2.5 0 0 0 0 5H9a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H9a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H12a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H12Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const ContactCardLink16Regular = /*#__PURE__*/createFluentIcon('ContactCardLink16Regular', \"16\", [\"M2.75 3C1.78 3 1 3.78 1 4.75v6.5c0 .97.78 1.75 1.75 1.75h2.29a3.53 3.53 0 0 1 0-1H2.75a.75.75 0 0 1-.75-.75v-6.5c0-.41.34-.75.75-.75h10.5c.41 0 .75.34.75.75v4.59c.37.17.71.42 1 .71v-5.3C15 3.78 14.22 3 13.25 3H2.75Zm4.77 6.14a.86.86 0 0 0-.86-.75h-2.8a.86.86 0 0 0-.86.86c0 .77.52 1.43 1.27 1.62l.05.01c.33.09.68.13 1.02.12a3.5 3.5 0 0 1 2.18-1.86ZM9 6.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM5.26 7.71a1.36 1.36 0 1 0 0-2.71 1.36 1.36 0 0 0 0 2.71ZM8.5 10a2.5 2.5 0 0 0 0 5H9a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H9a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H12a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H12Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const ContactCardLink20Filled = /*#__PURE__*/createFluentIcon('ContactCardLink20Filled', \"20\", [\"M2 5.5C2 4.67 2.67 4 3.5 4h13c.83 0 1.5.67 1.5 1.5v5.84a3.49 3.49 0 0 0-1.5-.34h-4a3.5 3.5 0 0 0-3.16 5H3.5A1.5 1.5 0 0 1 2 14.5v-9Zm3 3a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm4 3.2a.95.95 0 0 0-.95-.95h-3.1a.95.95 0 0 0-.95.95c0 .85.58 1.58 1.4 1.79l.06.01c.68.18 1.4.18 2.08 0l.06-.01c.82-.2 1.4-.94 1.4-1.8ZM11.5 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm1 4a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const ContactCardLink20Regular = /*#__PURE__*/createFluentIcon('ContactCardLink20Regular', \"20\", [\"M7.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm-1.55.75a.95.95 0 0 0-.95.95c0 .85.58 1.58 1.4 1.79l.06.01c.68.18 1.4.18 2.08 0l.06-.01c.82-.2 1.4-.94 1.4-1.8a.95.95 0 0 0-.95-.94h-3.1ZM12 8.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM4.75 4C3.78 4 3 4.78 3 5.75v8.5c0 .97.78 1.75 1.75 1.75h5.59a3.47 3.47 0 0 1-.3-1H4.75a.75.75 0 0 1-.75-.75v-8.5c0-.41.34-.75.75-.75h12.5c.41 0 .75.34.75.75v5.29c.35.05.69.15 1 .3V5.75C19 4.78 18.22 4 17.25 4H4.75Zm8.75 8a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H17a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H17Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const ContactCardRibbon16Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon16Filled', \"16\", [\"M1 4.75C1 3.78 1.78 3 2.75 3h10.5c.97 0 1.75.78 1.75 1.75v1.79a3.98 3.98 0 0 0-2.37-.52.5.5 0 0 0-.13-.02h-3a.5.5 0 0 0 0 1h.85a4 4 0 0 0-1.28 2.24.5.5 0 0 0-.05.39 4.05 4.05 0 0 0 .98 3.02V13H2.75C1.78 13 1 12.22 1 11.25v-6.5Zm4.26 2.96a1.36 1.36 0 1 0 0-2.71 1.36 1.36 0 0 0 0 2.71Zm-1.4.68a.86.86 0 0 0-.86.86c0 .77.52 1.43 1.27 1.62l.05.01c.62.16 1.27.16 1.88 0h.06a1.67 1.67 0 0 0 1.26-1.63.86.86 0 0 0-.86-.86h-2.8ZM16 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.22L13 15l1.62.97c.17.1.38-.03.38-.22v-2.29Z\"]);\nexport const ContactCardRibbon16Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon16Regular', \"16\", [\"M1 4.75C1 3.78 1.78 3 2.75 3h10.5c.97 0 1.75.78 1.75 1.75v1.79c-.3-.18-.65-.32-1-.41V4.75a.75.75 0 0 0-.75-.75H2.75a.75.75 0 0 0-.75.75v6.5c0 .41.34.75.75.75h6.79a4 4 0 0 0 .46.65V13H2.75C1.78 13 1 12.22 1 11.25v-6.5ZM12.5 6a.5.5 0 0 1 .13.02c-.87.08-1.66.43-2.28.98H9.5a.5.5 0 0 1 0-1h3ZM5.26 7.71a1.36 1.36 0 1 0 0-2.71 1.36 1.36 0 0 0 0 2.71Zm-1.4.68a.86.86 0 0 0-.86.86c0 .77.52 1.43 1.27 1.62l.05.01c.62.16 1.27.16 1.88 0h.06a1.67 1.67 0 0 0 1.26-1.63.86.86 0 0 0-.86-.86h-2.8ZM16 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.22L13 15l1.62.97c.17.1.38-.03.38-.22v-2.29Z\"]);\nexport const ContactCardRibbon20Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon20Filled', \"20\", [\"M3.5 4C2.67 4 2 4.67 2 5.5v9c0 .83.67 1.5 1.5 1.5H13v-.35a3.98 3.98 0 0 1-.87-3.65h-.63a.5.5 0 0 1 0-1h1.04A4 4 0 0 1 18 9.54V5.5c0-.83-.67-1.5-1.5-1.5h-13Zm3 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm1.55.75c.53 0 .95.42.95.95 0 .85-.58 1.58-1.4 1.79l-.06.01a4.3 4.3 0 0 1-2.08 0l-.06-.01c-.82-.2-1.4-.94-1.4-1.8 0-.52.42-.94.95-.94h3.1ZM11 8.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm8 4.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.22L16 18l1.62.97c.17.1.38-.03.38-.22v-2.29Z\"]);\nexport const ContactCardRibbon20Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon20Regular', \"20\", [\"M8 8.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-4 3.2c0-.53.42-.95.95-.95h3.1c.53 0 .95.42.95.95 0 .85-.58 1.58-1.4 1.79l-.06.01a4.3 4.3 0 0 1-2.08 0l-.06-.01c-.82-.2-1.4-.94-1.4-1.8ZM11.5 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 3a.5.5 0 0 0 0 1h.63c.09-.35.23-.7.4-1H11.5Zm-7.75 4h8.79c.13.23.28.45.46.65V16H3.75C2.78 16 2 15.22 2 14.25v-8.5C2 4.78 2.78 4 3.75 4h12.5c.97 0 1.75.78 1.75 1.75v3.79c-.3-.18-.65-.32-1-.41V5.75a.75.75 0 0 0-.75-.75H3.75a.75.75 0 0 0-.75.75v8.5c0 .41.34.75.75.75ZM19 13a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.22L16 18l1.62.97c.17.1.38-.03.38-.22v-2.29Z\"]);\nexport const ContactCardRibbon24Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon24Filled', \"24\", [\"M19.75 4C20.99 4 22 5 22 6.25v5.5A4.48 4.48 0 0 0 15.76 13h-2.61a.75.75 0 0 0 0 1.49H15.11a4.51 4.51 0 0 0 .89 3.84V20H4.25C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4h15.5Zm-13.5 8.5c-.38 0-.7.28-.74.65l-.01.1v.6c.17 1.11 1.1 1.65 2.5 1.65 1.33 0 2.24-.49 2.46-1.5l.03-.15.01-.1v-.5c0-.38-.28-.7-.65-.74l-.1-.01h-3.5ZM8 8.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm9.75 1h-4.6a.75.75 0 0 0 0 1.5H17.85a.75.75 0 0 0 0-1.5h-.1Zm5.25 6a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-6 3.74v3.05c0 .63.76.95 1.21.5l1.29-1.29 1.29 1.29a.71.71 0 0 0 1.21-.5v-3.05a4.48 4.48 0 0 1-5 0Z\"]);\nexport const ContactCardRibbon24Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon24Regular', \"24\", [\"M19.75 4C20.99 4 22 5 22 6.25v5.5c-.45-.3-.96-.52-1.5-.64V6.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75v11.5c0 .42.34.75.75.75H16V20H4.25C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4h15.5Zm-6.5 9h2.51c-.3.45-.52.95-.65 1.5h-1.86a.75.75 0 0 1-.1-1.5h.1Zm-3.5-.5c.41 0 .75.34.75.75v.6c-.17 1.11-1.1 1.65-2.5 1.65s-2.33-.54-2.5-1.65v-.6c0-.41.34-.75.75-.75h3.5ZM8 8.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5.25 1h4.5a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.1-1.5h.1Zm9.75 6a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-6 3.74v3.05c0 .63.76.95 1.21.5l1.29-1.29 1.29 1.29a.71.71 0 0 0 1.21-.5v-3.05a4.48 4.48 0 0 1-5 0Z\"]);\nexport const ContactCardRibbon28Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon28Filled', \"28\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v14.5A2.75 2.75 0 0 0 4.75 24H18v-2.34a5.48 5.48 0 0 1-.63-5.16h-1.62a.75.75 0 0 1 0-1.5h2.5a5.49 5.49 0 0 1 7.75-.74V6.75A2.75 2.75 0 0 0 23.25 4H4.75ZM15 11.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm-3.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM7 14.5h5a1 1 0 0 1 1 1v.5s-.5 2.5-3.5 2.5S6 16 6 16v-.5a1 1 0 0 1 1-1Zm19 1.17a4.48 4.48 0 0 1 0 5.66 4.5 4.5 0 1 1 0-5.66Zm-1.1 7.78a5.47 5.47 0 0 1-2.35.55h-.1a5.7 5.7 0 0 1-2.45-.6 5.5 5.5 0 0 1-1-.66v3.56a.7.7 0 0 0 1.13.55L22.5 25l2.37 1.85A.7.7 0 0 0 26 26.3v-3.56c-.34.28-.7.52-1.1.71Z\"]);\nexport const ContactCardRibbon28Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon28Regular', \"28\", [\"M15 11.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h1.62a5.5 5.5 0 0 1 .89-1.5h-2.51Zm-11 7.5H18V24H4.75A2.75 2.75 0 0 1 2 21.25V6.75A2.75 2.75 0 0 1 4.75 4h18.5A2.75 2.75 0 0 1 26 6.75v7.5a5.5 5.5 0 0 0-1.5-.87V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v14.5c0 .69.56 1.25 1.25 1.25Zm17.75.5a4.5 4.5 0 1 0 0-8.98 4.5 4.5 0 0 0 0 8.98Zm2.4.45a5.47 5.47 0 0 1-2.35.55h-.1a5.7 5.7 0 0 1-2.45-.6 5.5 5.5 0 0 1-1-.66v3.56a.7.7 0 0 0 1.13.55L22.5 25l2.37 1.85A.7.7 0 0 0 26 26.3v-3.56c-.34.28-.7.52-1.1.71Zm-13.65-11.7a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM7 14.5h5a1 1 0 0 1 1 1v.5s-.5 2.5-3.5 2.5S6 16 6 16v-.5a1 1 0 0 1 1-1Z\"]);\nexport const ContactCardRibbon32Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon32Filled', \"32\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v17.5C2 26.55 3.46 28 5.25 28H19.5v-3.9a6.97 6.97 0 0 1-.84-5.1H18a1 1 0 1 1 0-2h1.44c.78-1.35 2-2.41 3.46-3H18a1 1 0 1 1 0-2h7a1 1 0 0 1 .86 1.5c1.57.09 3 .69 4.14 1.64V7.25C30 5.45 28.54 4 26.75 4H5.25ZM13 13a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6 4.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5 0 0 0 3.5-4 3.5s-4-3.5-4-3.5Zm22.88 8.14a6.76 6.76 0 0 1-4.37 1.61h-.02A6.72 6.72 0 0 1 21 25.53v4.52c0 .74.81 1.2 1.44.81L25.5 29l3.06 1.86a.95.95 0 0 0 1.44-.81v-4.52l-.12.1Zm-.71-1.04a5.53 5.53 0 0 0 .83-7.26 5.5 5.5 0 1 0-.83 7.26Z\"]);\nexport const ContactCardRibbon32Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon32Regular', \"32\", [\"M17 13a1 1 0 0 1 1-1h7a1 1 0 0 1 .86 1.5 7.1 7.1 0 0 0-2.96.5H18a1 1 0 0 1-1-1Zm11-5.75v6.71a7 7 0 0 1 2 1.18V7.25C30 5.45 28.54 4 26.75 4H5.25A3.25 3.25 0 0 0 2 7.25v17.5C2 26.55 3.46 28 5.25 28H19.5v-2H5.25C4.56 26 4 25.44 4 24.75V7.25C4 6.56 4.56 6 5.25 6h21.5c.69 0 1.25.56 1.25 1.25ZM18 17h1.44a6.95 6.95 0 0 0-.78 2H18a1 1 0 1 1 0-2Zm3.26 0a5.49 5.49 0 0 0 4.24 9 5.48 5.48 0 0 0 4.5-8.66A5.53 5.53 0 0 0 25.5 15c-1.7 0-3.23.78-4.24 2Zm1.24 9.55a6.74 6.74 0 0 1-1.5-1.02v4.52c0 .74.81 1.2 1.44.81L25.5 29l3.06 1.86a.95.95 0 0 0 1.44-.81v-4.52a6.62 6.62 0 0 1-1.5 1.02c-.9.45-1.92.7-2.99.7h-.02a6.72 6.72 0 0 1-2.99-.7ZM13 13a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-6 4.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5 0 0 0 3.5-4 3.5s-4-3.5-4-3.5Z\"]);\nexport const ContactCardRibbon48Filled = /*#__PURE__*/createFluentIcon('ContactCardRibbon48Filled', \"48\", [\"M8.25 8A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40H31v-3.67a9.46 9.46 0 0 1-1.79-7.83h-2.96a1.25 1.25 0 1 1 0-2.5h3.88a9.53 9.53 0 0 1 5.32-4.5h-9.2a1.25 1.25 0 1 1 0-2.5h9.5a1.25 1.25 0 0 1 .82 2.2A9.55 9.55 0 0 1 44 22.75v-10.5C44 9.9 42.1 8 39.75 8H8.25ZM19 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-8 6.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v.5s0 4-5 4-5-4-5-4v-.5ZM38.5 38a7.48 7.48 0 0 0 7.5-7.5 7.47 7.47 0 0 0-7.5-7.5 7.49 7.49 0 1 0 0 15Zm3.59 1.3A9.48 9.48 0 0 0 44 38.25v6.7c0 .86-.96 1.35-1.65.85L38.5 43l-3.85 2.8c-.69.5-1.65 0-1.65-.84v-6.71A9.48 9.48 0 0 0 38.44 40h.12a9.47 9.47 0 0 0 3.53-.7Z\"]);\nexport const ContactCardRibbon48Regular = /*#__PURE__*/createFluentIcon('ContactCardRibbon48Regular', \"48\", [\"M19 20a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-8 6.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v.5s0 4-5 4-5-4-5-4v-.5Zm14-6.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 0 1 .82 2.2c-.38.08-.76.18-1.12.3h-9.2c-.69 0-1.25-.56-1.25-1.25Zm16.5-8v9.23c.9.3 1.74.73 2.5 1.27v-10.5C44 9.9 42.1 8 39.75 8H8.25A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40H31v-2.5H8.25c-.97 0-1.75-.78-1.75-1.75v-23.5c0-.97.78-1.75 1.75-1.75h31.5c.97 0 1.75.78 1.75 1.75ZM26.25 26h3.88a9.43 9.43 0 0 0-.92 2.5h-2.96a1.25 1.25 0 1 1 0-2.5Zm6.25 0a7.47 7.47 0 0 0-1.5 4.5 7.5 7.5 0 1 0 1.5-4.5Zm6.06 14A9.47 9.47 0 0 0 44 38.25v6.7c0 .86-.96 1.35-1.65.85L38.5 43l-3.85 2.8c-.69.5-1.65 0-1.65-.84v-6.71A9.48 9.48 0 0 0 38.44 40h.12Z\"]);\nexport const ContentSettings16Filled = /*#__PURE__*/createFluentIcon('ContentSettings16Filled', \"16\", [\"M2 4.75A2.75 2.75 0 0 1 4.75 2h6.5A2.75 2.75 0 0 1 14 4.75v1.5a5.5 5.5 0 0 0-1.5-.88V5h-9v6.25c0 .7.56 1.25 1.25 1.25h.62c.22.55.52 1.05.89 1.5H4.75A2.75 2.75 0 0 1 2 11.25v-6.5ZM5 6h2.34c-.4.28-.77.62-1.08 1H5.5v1.2a5.48 5.48 0 0 0-.41 3.3h-.1a.5.5 0 0 1-.5-.5V6.5c0-.28.23-.5.5-.5Zm1.5 2.72.36.35a2 2 0 0 1 0 2.86l-.36.35c.13.31.3.6.49.87l.4-.11a2 2 0 0 1 2.51 1.45l.12.48a4.26 4.26 0 0 0 .96 0l.12-.48a2 2 0 0 1 2.52-1.45l.4.11c.18-.27.35-.56.47-.87l-.35-.35a2 2 0 0 1 0-2.86l.35-.35c-.12-.31-.29-.6-.48-.87l-.4.11a2 2 0 0 1-2.51-1.45l-.12-.48a4.25 4.25 0 0 0-.96 0l-.12.48a2 2 0 0 1-2.52 1.45l-.4-.11c-.18.27-.35.56-.48.87Zm4 2.78a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ContentSettings16Regular = /*#__PURE__*/createFluentIcon('ContentSettings16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v1.76a5.5 5.5 0 0 0-1-.66V5H3v6.5c0 .83.67 1.5 1.5 1.5h1.1c.19.36.4.7.66 1H4.5A2.5 2.5 0 0 1 2 11.5v-7ZM3.09 4h9.83c-.2-.58-.76-1-1.42-1h-7c-.65 0-1.2.42-1.41 1ZM4.5 6h2.83c-.4.28-.77.62-1.08 1H5v3.28a5.6 5.6 0 0 0 0 .44V11h.01c.03.34.1.68.19 1h-.7a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5Zm2 2.72.35.35a2 2 0 0 1 0 2.86l-.35.35c.13.31.29.6.48.87l.4-.11a2 2 0 0 1 2.52 1.45l.11.48a4.26 4.26 0 0 0 .96 0l.12-.48a2 2 0 0 1 2.52-1.45l.4.11c.19-.27.35-.56.48-.87l-.36-.35a2 2 0 0 1 0-2.86l.36-.35c-.13-.31-.3-.6-.48-.87l-.4.11a2 2 0 0 1-2.52-1.45l-.12-.48a4.25 4.25 0 0 0-.96 0l-.11.48a2 2 0 0 1-2.52 1.45l-.4-.11c-.2.27-.35.56-.48.87Zm4 2.78a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ContentSettings20Filled = /*#__PURE__*/createFluentIcon('ContentSettings20Filled', \"20\", [\"M2.5 5.25A2.75 2.75 0 0 1 5.25 2.5h9.5a2.75 2.75 0 0 1 2.75 2.75v4.64c-.46-.3-.96-.53-1.5-.68V7H4v7.75c0 .69.56 1.25 1.25 1.25h3.96c.15.54.38 1.04.68 1.5H5.25a2.75 2.75 0 0 1-2.75-2.75v-9.5ZM9 14.5v-6a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v6c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5ZM6 14V9h2v5H6Zm4-5.5c0-.28.22-.5.5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5Zm2.07 2.94a2 2 0 0 1-1.43 2.48l-.47.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ContentSettings20Regular = /*#__PURE__*/createFluentIcon('ContentSettings20Regular', \"20\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5V7h12v2.2c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9ZM4 5.5C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5V6H4v-.5Zm5 3v6a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-6c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5ZM6 9v5h2V9H6Zm4-.5c0-.28.22-.5.5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5Zm2.07 2.94a2 2 0 0 1-1.43 2.48l-.47.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ContentSettings24Filled = /*#__PURE__*/createFluentIcon('ContentSettings24Filled', \"24\", [\"M17.93 3H6.07A3.25 3.25 0 0 0 3 6.26v11.68A3.25 3.25 0 0 0 6.26 21h5.77a6.46 6.46 0 0 1-.85-2H6.12A1.25 1.25 0 0 1 5 17.74V8h14v3.17c.72.17 1.4.46 2 .85V6.07A3.25 3.25 0 0 0 17.93 3ZM11 10.16a.75.75 0 0 0-.74-.65h-3.6a.75.75 0 0 0-.65.75v7.1c.06.37.37.65.75.65h3.6a.75.75 0 0 0 .65-.75v-7.1ZM7.5 11h2v5.5h-2V11Zm10.5-.75a.75.75 0 0 0-.75-.75h-4.6a.75.75 0 0 0 .1 1.5h4.6a.75.75 0 0 0 .65-.75Zm-3.72 3.73a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 .01 1.8l.54.13a2 2 0 0 1 1.45 2.51l-.19.63c.44.39.94.7 1.49.93l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.73 5.73 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.4-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const ContentSettings24Regular = /*#__PURE__*/createFluentIcon('ContentSettings24Regular', \"24\", [\"M17.75 3h.19A3.25 3.25 0 0 1 21 6.08V12.02c-.46-.3-.97-.53-1.5-.7V8h-15v9.75c0 .92.7 1.67 1.6 1.74l.15.01h5.06c.18.53.42 1.04.71 1.5H6.25a3.25 3.25 0 0 1-3.24-3.07L3 17.75V6.25a3.25 3.25 0 0 1 3.07-3.24L6.25 3h11.5Zm0 1.5H6.25c-.97 0-1.75.78-1.75 1.75v.25h15v-.25c0-.97-.78-1.75-1.75-1.75Zm-7.5 5c.38 0 .7.28.74.65l.01.1v7c0 .38-.28.7-.65.74l-.1.01h-3.5a.75.75 0 0 1-.74-.65l-.01-.1v-7c0-.38.28-.7.65-.74l.1-.01h3.5ZM9.5 11h-2v5.5h2V11Zm8.5-.75a.75.75 0 0 0-.75-.75h-4.6a.75.75 0 0 0 .1 1.5h4.6a.75.75 0 0 0 .65-.75Zm-3.72 3.73a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 .01 1.8l.54.13a2 2 0 0 1 1.45 2.51l-.19.63c.44.39.94.7 1.49.93l.5-.52a2 2 0 0 1 2.89 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.73 5.73 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.4-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const ContentSettings32Filled = /*#__PURE__*/createFluentIcon('ContentSettings32Filled', \"32\", [\"M4 9a5 5 0 0 1 5-5h14a5 5 0 0 1 5 5v5a9.99 9.99 0 0 0-2.5-1.37V10h-19v13A2.5 2.5 0 0 0 9 25.5h3.63A10 10 0 0 0 14 28H9a5 5 0 0 1-5-5V9Zm12 4v1c-.75.57-1.43 1.24-2 2v-2h-4v8h2c0 .68.07 1.35.2 2H9a1 1 0 0 1-1-1V13a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1Zm.68 15.57.04-.16a4 4 0 0 0-2.9-5.02c-.12-.9-.1-1.82.08-2.74a4 4 0 0 0 2.88-4.99c.7-.6 1.5-1.1 2.34-1.43a4 4 0 0 0 5.8 0l.1-.12a7.97 7.97 0 0 1 2.3 1.32l-.04.16a4 4 0 0 0 2.9 5.02c.12.9.1 1.82-.08 2.74a4 4 0 0 0-2.88 4.99c-.7.61-1.5 1.1-2.34 1.43a4 4 0 0 0-5.8 0l-.1.12a7.97 7.97 0 0 1-2.3-1.32ZM20.85 24c1.06.61 2.44.22 3.08-.88.64-1.1.3-2.5-.78-3.12a2.27 2.27 0 0 0-3.08.89c-.64 1.1-.3 2.5.78 3.1Z\"]);\nexport const ContentSettings32Regular = /*#__PURE__*/createFluentIcon('ContentSettings32Regular', \"32\", [\"M9 4a5 5 0 0 0-5 5v14a5 5 0 0 0 5 5h5a9.99 9.99 0 0 1-1.17-2H9a3 3 0 0 1-3-3V10h20v2.83c.72.32 1.39.71 2 1.17V9a5 5 0 0 0-5-5H9Zm16.83 4H6.17A3 3 0 0 1 9 6h14a3 3 0 0 1 2.83 2ZM16 14v-1a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h3.2c-.13-.65-.2-1.32-.2-2h-2v-8h4v2c.57-.76 1.25-1.43 2-2Zm.68 14.57.04-.16a4 4 0 0 0-2.9-5.02c-.12-.9-.1-1.82.08-2.74a4 4 0 0 0 2.88-4.99c.7-.6 1.5-1.1 2.34-1.43a4 4 0 0 0 5.8 0l.1-.12a7.96 7.96 0 0 1 2.3 1.32l-.04.16a4 4 0 0 0 2.9 5.02c.12.9.1 1.82-.08 2.74a4 4 0 0 0-2.88 4.99c-.7.61-1.5 1.1-2.34 1.43a4 4 0 0 0-5.8 0l-.1.12a7.97 7.97 0 0 1-2.3-1.32ZM20.85 24c1.06.61 2.44.22 3.08-.88.64-1.1.29-2.5-.78-3.12a2.27 2.27 0 0 0-3.08.89c-.64 1.1-.3 2.5.78 3.1Z\"]);\nexport const ContentView20Filled = /*#__PURE__*/createFluentIcon('ContentView20Filled', \"20\", [\"M14 7H6v2h8V7Zm-2 5h2v1h-2v-1ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM5 7a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V7Zm7 4h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1Zm-7 .5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 1.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1Z\"]);\nexport const ContentView20Regular = /*#__PURE__*/createFluentIcon('ContentView20Regular', \"20\", [\"M5 7a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V7Zm9 0H6v2h8V7Zm-2 4a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1h-2Zm0 1h2v1h-2v-1Zm-7-.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-2a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Z\"]);\nexport const ContentView24Filled = /*#__PURE__*/createFluentIcon('ContentView24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM6 8.25c0-.97.78-1.75 1.75-1.75h8.5c.97 0 1.75.78 1.75 1.75v1.5c0 .97-.78 1.75-1.75 1.75h-8.5C6.78 11.5 6 10.72 6 9.75v-1.5ZM7.75 8a.25.25 0 0 0-.25.25v1.5c0 .14.11.25.25.25h8.5c.14 0 .25-.11.25-.25v-1.5a.25.25 0 0 0-.25-.25h-8.5Zm-1 5h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 16.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM15.25 13h1c.97 0 1.75.78 1.75 1.75v1c0 .97-.78 1.75-1.75 1.75h-1c-.97 0-1.75-.78-1.75-1.75v-1c0-.97.78-1.75 1.75-1.75ZM15 14.75c0-.14.11-.25.25-.25h1c.14 0 .25.11.25.25v1c0 .14-.11.25-.25.25h-1a.25.25 0 0 1-.25-.25v-1Z\"]);\nexport const ContentView24Regular = /*#__PURE__*/createFluentIcon('ContentView24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM6.25 4.5c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75H6.25ZM6 8.25c0-.97.78-1.75 1.75-1.75h8.5c.97 0 1.75.78 1.75 1.75v1.5c0 .97-.78 1.75-1.75 1.75h-8.5C6.78 11.5 6 10.72 6 9.75v-1.5ZM7.75 8a.25.25 0 0 0-.25.25v1.5c0 .14.11.25.25.25h8.5c.14 0 .25-.11.25-.25v-1.5a.25.25 0 0 0-.25-.25h-8.5Zm-1 5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM6 16.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM15.25 13c-.97 0-1.75.78-1.75 1.75v1c0 .97.78 1.75 1.75 1.75h1c.97 0 1.75-.78 1.75-1.75v-1c0-.97-.78-1.75-1.75-1.75h-1ZM15 14.75c0-.14.11-.25.25-.25h1c.14 0 .25.11.25.25v1c0 .14-.11.25-.25.25h-1a.25.25 0 0 1-.25-.25v-1Z\"]);\nexport const ContentView28Filled = /*#__PURE__*/createFluentIcon('ContentView28Filled', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v14.5A3.75 3.75 0 0 0 6.75 25h14.5A3.75 3.75 0 0 0 25 21.25V6.75A3.75 3.75 0 0 0 21.25 3H6.75ZM6 9c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V9Zm2-.5a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h12a.5.5 0 0 0 .5-.5V9a.5.5 0 0 0-.5-.5H8ZM6.75 15h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5ZM6 19.5c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 6 19.5Zm11.25-5h3c.97 0 1.75.78 1.75 1.75v3c0 .97-.78 1.75-1.75 1.75h-3c-.97 0-1.75-.78-1.75-1.75v-3c0-.97.78-1.75 1.75-1.75ZM17 16.25c0-.14.11-.25.25-.25h3c.14 0 .25.11.25.25v3c0 .14-.11.25-.25.25h-3a.25.25 0 0 1-.25-.25v-3Z\"]);\nexport const ContentView28Regular = /*#__PURE__*/createFluentIcon('ContentView28Regular', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v14.5A3.75 3.75 0 0 0 6.75 25h14.5A3.75 3.75 0 0 0 25 21.25V6.75A3.75 3.75 0 0 0 21.25 3H6.75ZM4.5 6.75c0-1.24 1-2.25 2.25-2.25h14.5c1.24 0 2.25 1 2.25 2.25v14.5c0 1.24-1 2.25-2.25 2.25H6.75c-1.24 0-2.25-1-2.25-2.25V6.75ZM6 9c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V9Zm2-.5a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h12a.5.5 0 0 0 .5-.5V9a.5.5 0 0 0-.5-.5H8Zm-2 7.25c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm.75 3a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm8.75-2.5c0-.97.78-1.75 1.75-1.75h3c.97 0 1.75.78 1.75 1.75v3c0 .97-.78 1.75-1.75 1.75h-3c-.97 0-1.75-.78-1.75-1.75v-3Zm1.75-.25a.25.25 0 0 0-.25.25v3c0 .14.11.25.25.25h3c.14 0 .25-.11.25-.25v-3a.25.25 0 0 0-.25-.25h-3Z\"]);\nexport const ContentView32Filled = /*#__PURE__*/createFluentIcon('ContentView32Filled', \"32\", [\"M22 11H10v3h12v-3Zm-3 9h3v2h-3v-2ZM9 4a5 5 0 0 0-5 5v14a5 5 0 0 0 5 5h14a5 5 0 0 0 5-5V9a5 5 0 0 0-5-5H9Zm-1 7c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3Zm11 7h3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2ZM8 19a1 1 0 0 1 1-1h5a1 1 0 0 1 0 2H9a1 1 0 0 1-1-1Zm1 3h5a1 1 0 0 1 0 2H9a1 1 0 1 1 0-2Z\"]);\nexport const ContentView32Regular = /*#__PURE__*/createFluentIcon('ContentView32Regular', \"32\", [\"M8 11c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3Zm14 0H10v3h12v-3Zm-3 7a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h3a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-3Zm0 2h3v2h-3v-2ZM8 19a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H9ZM9 4a5 5 0 0 0-5 5v14a5 5 0 0 0 5 5h14a5 5 0 0 0 5-5V9a5 5 0 0 0-5-5H9ZM6 9a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9Z\"]);\nexport const ContentViewGallery16Filled = /*#__PURE__*/createFluentIcon('ContentViewGallery16Filled', \"16\", [\"M10 2H4.5A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14H10V2Zm1 12h.5a2.5 2.5 0 0 0 2.5-2.5V11h-3v3Zm3-4V6h-3v4h3Zm0-5v-.5A2.5 2.5 0 0 0 11.5 2H11v3h3ZM4 4.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3ZM5 5v2h2V5H5Zm-.5 4h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Zm0 2h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Z\"]);\nexport const ContentViewGallery16Regular = /*#__PURE__*/createFluentIcon('ContentViewGallery16Regular', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5H9V3H4.5ZM13 6V4.5c0-.83-.67-1.5-1.5-1.5H10v3h3Zm-3 7h1.5c.83 0 1.5-.67 1.5-1.5V10h-3v3Zm3-6h-3v2h3V7ZM2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7Zm2 0c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3ZM5 5v2h2V5H5Zm-.5 4a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const ContentViewGallery20Filled = /*#__PURE__*/createFluentIcon('ContentViewGallery20Filled', \"20\", [\"M9 7H6v2h3V7ZM3 6a3 3 0 0 1 3-3h6v14H6a3 3 0 0 1-3-3V6Zm2 1v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1Zm.5 4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 13.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm8 3.5h1a3 3 0 0 0 3-3v-1h-4v4Zm4-5V8h-4v4h4Zm0-5V6a3 3 0 0 0-3-3h-1v4h4Z\"]);\nexport const ContentViewGallery20Regular = /*#__PURE__*/createFluentIcon('ContentViewGallery20Regular', \"20\", [\"M6 6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H6Zm0 1h3v2H6V7Zm-1 4.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm8 10V4H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5Zm3 0a2 2 0 0 0 2-2v-1h-4v3h2Zm2-9V6a2 2 0 0 0-2-2h-2v3h4Zm0 5V8h-4v4h4Z\"]);\nexport const ContentViewGallery24Filled = /*#__PURE__*/createFluentIcon('ContentViewGallery24Filled', \"24\", [\"M6.25 3h8.25v18H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3Zm11.5 18H16v-5h5v1.75c0 1.8-1.46 3.25-3.25 3.25ZM21 14.5h-5v-5h5v5ZM16 8V3h1.75C19.55 3 21 4.46 21 6.25V8h-5ZM6 13.75c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75ZM7.25 6.5C6.56 6.5 6 7.06 6 7.75v2.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM7.5 10V8h3v2h-3ZM6 16.75c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75Z\"]);\nexport const ContentViewGallery24Regular = /*#__PURE__*/createFluentIcon('ContentViewGallery24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM6.25 4.5c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h7.25v-15H6.25Zm11.5 15c.97 0 1.75-.78 1.75-1.75V16H15v3.5h2.75Zm1.75-5v-5H15v5h4.5Zm0-6.5V6.25c0-.97-.78-1.75-1.75-1.75H15V8h4.5ZM6 13.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM7.25 6.5C6.56 6.5 6 7.06 6 7.75v2.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM7.5 10V8h3v2h-3ZM6 16.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const ContentViewGallery28Filled = /*#__PURE__*/createFluentIcon('ContentViewGallery28Filled', \"28\", [\"M6.75 3H17v22H6.75A3.75 3.75 0 0 1 3 21.25V6.75A3.75 3.75 0 0 1 6.75 3ZM18.5 17v-6H25v6h-6.5Zm0 8v-6.5H25v2.75A3.75 3.75 0 0 1 21.25 25H18.5Zm0-22v6.5H25V6.75A3.75 3.75 0 0 0 21.25 3H18.5ZM7.75 7.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-5ZM8 12V9h4.5v3H8Zm-1.5 4.25c0 .41.34.75.75.75h6a.75.75 0 0 0 0-1.5h-6a.75.75 0 0 0-.75.75ZM7.25 19a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z\"]);\nexport const ContentViewGallery28Regular = /*#__PURE__*/createFluentIcon('ContentViewGallery28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v14.5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM6.75 4.5c-1.24 0-2.25 1-2.25 2.25v14.5c0 1.24 1 2.25 2.25 2.25H16v-19H6.75Zm14.5 19c1.24 0 2.25-1 2.25-2.25V18.5h-6v5h3.75ZM23.5 17v-6h-6v6h6Zm0-7.5V6.75c0-1.24-1-2.25-2.25-2.25H17.5v5h6Zm-15.75-2c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-5ZM8 12V9h4.5v3H8Zm-1.5 4.25c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM7.25 19a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z\"]);\nexport const ContentViewGalleryLightning16Filled = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning16Filled', \"16\", [\"M10 2H4.5A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h4.22l.25-1H8.5a1.5 1.5 0 0 1-1.41-1H4.5a.5.5 0 0 1 0-1h2.59c0-.03.02-.05.03-.08L7.5 10h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .36.15L9.2 5.92c.15-.37.45-.65.8-.8V2Zm4 2.5V5h-3V2h.5A2.5 2.5 0 0 1 14 4.5Zm-10 0c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3ZM5 5v2h2V5H5Zm3.5 7h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-1.1l.78-2.34a.5.5 0 0 0-.47-.66h-3.47a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const ContentViewGalleryLightning16Regular = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning16Regular', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5h4.47l-.25 1H4.5A2.5 2.5 0 0 1 2 11.5v-7A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5V5h-1v-.5c0-.83-.67-1.5-1.5-1.5H10v2.12a1.5 1.5 0 0 0-.8.8L9 6.4V3H4.5Zm2.59 9c-.11-.3-.12-.66 0-1H4.5a.5.5 0 0 0 0 1h2.59Zm.41-2 .36-.85A.5.5 0 0 0 7.5 9h-3a.5.5 0 0 0 0 1h3ZM4 4.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3ZM5 5v2h2V5H5Zm3.5 7h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-1.1l.78-2.34a.5.5 0 0 0-.47-.66h-3.47a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const ContentViewGalleryLightning20Filled = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning20Filled', \"20\", [\"M9 7H6v2h3V7ZM3 6a3 3 0 0 1 3-3h6v4.78l-.04.08L9.54 13a.5.5 0 0 0-.04 0h-4a.5.5 0 0 0 0 1h3.58c-.34.96.37 2 1.42 2H12v.88l-.03.12H6a3 3 0 0 1-3-3V6Zm14 1h-4V3h1a3 3 0 0 1 3 3v1ZM5 7v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1Zm.5 4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm7.82-3h4.82a.5.5 0 0 1 .44.75L16.75 12h1.5c.64 0 .98.76.56 1.24l-4.82 5.51c-.5.58-1.45.09-1.26-.66L13.5 15h-3a.5.5 0 0 1-.46-.71l2.82-6a.5.5 0 0 1 .46-.29Z\"]);\nexport const ContentViewGalleryLightning20Regular = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning20Regular', \"20\", [\"M5 7a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V7Zm4 0H6v2h3V7Zm-3.5 4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 13.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 .04 0l-.4.86-.06.14H5.5a.5.5 0 0 1-.5-.5ZM6 16a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h5v5.9l.96-2.04.04-.08V4h2a2 2 0 0 1 2 2v1h1V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h5.97l.25-1H6Zm7.32-8h4.82a.5.5 0 0 1 .44.75L16.75 12h1.5c.64 0 .98.76.56 1.24l-4.82 5.51c-.5.58-1.45.09-1.26-.66L13.5 15h-3a.5.5 0 0 1-.46-.71l2.82-6a.5.5 0 0 1 .46-.29Z\"]);\nexport const ContentViewGalleryLightning24Filled = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning24Filled', \"24\", [\"M6.25 3h8.25v9.84l-2.36 5.02A1.5 1.5 0 0 0 13.5 20h1v1H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3Zm10.07 8H21V8.5h-5v2.53c.1-.02.2-.03.32-.03ZM16 7V3h1.75C19.55 3 21 4.46 21 6.25V7h-5ZM6 13.75c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75ZM7.25 6.5C6.56 6.5 6 7.06 6 7.75v2.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM7.5 10V8h3v2h-3ZM6 16.75c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75ZM16.32 12h4.82a.5.5 0 0 1 .44.75L19.75 16h1.5c.64 0 .98.76.56 1.24l-4.82 5.51c-.5.58-1.45.09-1.26-.66L16.5 19h-3a.5.5 0 0 1-.46-.71l2.82-6a.5.5 0 0 1 .46-.29Z\"]);\nexport const ContentViewGalleryLightning24Regular = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25V11h-1.5V9.5H15v2.28l-.04.08-1.46 3.1V4.5H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h6.13c.27.3.66.5 1.12.5h1.72l-.25 1H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM19.5 8V6.25c0-.97-.78-1.75-1.75-1.75H15V8h4.5ZM6 13.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM7.25 6.5C6.56 6.5 6 7.06 6 7.75v2.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM7.5 10V8h3v2h-3ZM6 16.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM16.32 12h4.82a.5.5 0 0 1 .44.75L19.75 16h1.5c.64 0 .98.76.56 1.24l-4.82 5.51c-.5.58-1.45.09-1.26-.66L16.5 19h-3a.5.5 0 0 1-.46-.71l2.82-6a.5.5 0 0 1 .46-.29Z\"]);\nexport const ContentViewGalleryLightning28Filled = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning28Filled', \"28\", [\"M17 3H6.75A3.75 3.75 0 0 0 3 6.75v14.5A3.75 3.75 0 0 0 6.75 25H17v-2h-1.5a1.5 1.5 0 0 1-1.36-2.14L17 14.83V3Zm8 10h-6.18c-.11 0-.22.01-.32.03V9.5H25V13Zm-6.5-5V3h2.75A3.75 3.75 0 0 1 25 6.75V8h-6.5Zm-12 .75c0-.69.56-1.25 1.25-1.25h5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-5c-.69 0-1.25-.56-1.25-1.25v-3.5ZM8 9v3h4.5V9H8Zm-.75 8a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 0 1.5h-6Zm-.75 2.75c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM18.82 14h6.33a.5.5 0 0 1 .43.75L23.75 18h1.52c.64 0 .98.75.56 1.24l-6.41 7.45c-.52.6-1.5.05-1.25-.7L19.5 22h-4a.5.5 0 0 1-.45-.71l3.32-7a.5.5 0 0 1 .45-.29Z\"]);\nexport const ContentViewGalleryLightning28Regular = /*#__PURE__*/createFluentIcon('ContentViewGalleryLightning28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75V13h-1.5v-2.5h-6v3.28l-.04.08L16 16.94V4.5H6.75c-1.24 0-2.25 1-2.25 2.25v14.5c0 1.24 1 2.25 2.25 2.25h11.2l-.5 1.5H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM23.5 9V6.75c0-1.24-1-2.25-2.25-2.25H17.5V9h6ZM7.75 7.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-5ZM8 12V9h4.5v3H8Zm-1.5 4.25c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM7.25 19a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Zm11.57-5h6.33a.5.5 0 0 1 .43.75L23.75 18h1.52c.64 0 .98.75.56 1.24l-6.41 7.45c-.52.6-1.5.05-1.25-.7L19.5 22h-4a.5.5 0 0 1-.45-.71l3.32-7a.5.5 0 0 1 .45-.29Z\"]);\nexport const ContractDownLeft16Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft16Filled', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5V8h3.23C7.21 8 8 8.8 8 9.77V13h3.5c.83 0 1.5-.67 1.5-1.5V9.27a.5.5 0 0 1 1 0v2.23a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7A2.5 2.5 0 0 1 4.5 2h2.23a.5.5 0 0 1 0 1H4.5Zm9 3h-2.8l3.15-3.15a.5.5 0 0 0-.7-.7L10 5.29V2.5a.5.5 0 0 0-1 0v4a.5.5 0 0 0 .52.5h3.98a.5.5 0 0 0 0-1Z\"]);\nexport const ContractDownLeft16Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft16Regular', \"16\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2.23a.5.5 0 0 0 0-1H4.5A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5V9.27a.5.5 0 0 0-1 0v2.23c0 .83-.67 1.5-1.5 1.5H8V9.77C8 8.79 7.2 8 6.23 8H3V4.5ZM3 9h3.23c.43 0 .77.34.77.77V13H4.5A1.5 1.5 0 0 1 3 11.5V9Zm7.7-3h2.8a.5.5 0 0 1 0 1H9.52A.5.5 0 0 1 9 6.5v-4a.5.5 0 0 1 1 0v2.8l3.15-3.15a.5.5 0 0 1 .7.7L10.71 6Z\"]);\nexport const ContractDownLeft20Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft20Filled', \"20\", [\"m12.7 8 4.15-4.15a.5.5 0 0 0-.7-.7L12 7.29V3.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-3.8ZM6 4a2 2 0 0 0-2 2v4h4a2 2 0 0 1 2 2v4h4a2 2 0 0 0 2-2v-2.5a.5.5 0 0 1 1 0V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h2.5a.5.5 0 0 1 0 1H6Z\"]);\nexport const ContractDownLeft20Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft20Regular', \"20\", [\"m12.7 8 4.15-4.15a.5.5 0 0 0-.7-.7L12 7.29V3.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-3.8ZM4 6c0-1.1.9-2 2-2h2.5a.5.5 0 0 0 0-1H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-2.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-4v-4a2 2 0 0 0-2-2H4V6Zm0 5h4a1 1 0 0 1 1 1v4H6a2 2 0 0 1-2-2v-3Z\"]);\nexport const ContractDownLeft24Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft24Filled', \"24\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75V12h4.75A2.75 2.75 0 0 1 12 14.75v4.75h5.75c.97 0 1.75-.78 1.75-1.75v-4a.75.75 0 0 1 1.5 0v4c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h4a.75.75 0 0 1 0 1.5h-4Zm9.31 5h4.69a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75v-6.5a.75.75 0 0 1 1.5 0v4.69l5.22-5.22a.75.75 0 1 1 1.06 1.06L15.56 9.5Z\"]);\nexport const ContractDownLeft24Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft24Regular', \"24\", [\"M4.5 6.25V12h4.75A2.75 2.75 0 0 1 12 14.75v4.75h5.75c.97 0 1.75-.78 1.75-1.75v-4a.75.75 0 0 1 1.5 0v4c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h4a.75.75 0 0 1 0 1.5h-4c-.97 0-1.75.78-1.75 1.75Zm0 7.25v4.25c0 .97.78 1.75 1.75 1.75h4.25v-4.75c0-.69-.56-1.25-1.25-1.25H4.5Zm11.06-4h4.69a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75v-6.5a.75.75 0 0 1 1.5 0v4.69l5.22-5.22a.75.75 0 1 1 1.06 1.06L15.56 9.5Z\"]);\nexport const ContractDownLeft28Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft28Filled', \"28\", [\"M6.75 4.5c-1.24 0-2.25 1-2.25 2.25V14h6.75A2.75 2.75 0 0 1 14 16.75v6.75h7.25c1.24 0 2.25-1 2.25-2.25v-5a.75.75 0 0 1 1.5 0v5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75A3.75 3.75 0 0 1 6.75 3h5a.75.75 0 0 1 0 1.5h-5ZM18.06 11h6.19a.75.75 0 0 1 0 1.5h-8a.75.75 0 0 1-.75-.75v-8a.75.75 0 1 1 1.5 0v6.19l6.72-6.72a.75.75 0 1 1 1.06 1.06L18.06 11Z\"]);\nexport const ContractDownLeft28Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft28Regular', \"28\", [\"M24.78 4.28a.75.75 0 0 0-1.06-1.06L17 9.94V3.75a.75.75 0 0 0-1.5 0v8c0 .41.34.75.75.75h8a.75.75 0 0 0 0-1.5h-6.19l6.72-6.72ZM4.5 6.75V14h6.75A2.75 2.75 0 0 1 14 16.75v6.75h7.25c1.24 0 2.25-1 2.25-2.25v-5a.75.75 0 0 1 1.5 0v5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75A3.75 3.75 0 0 1 6.75 3h5a.75.75 0 0 1 0 1.5h-5c-1.24 0-2.25 1-2.25 2.25Zm0 8.75v5.75c0 1.24 1 2.25 2.25 2.25h5.75v-6.75c0-.69-.56-1.25-1.25-1.25H4.5Z\"]);\nexport const ContractDownLeft32Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft32Filled', \"32\", [\"m21.41 12 7.3-7.3a1 1 0 0 0-1.42-1.4L20 10.58V4a1 1 0 1 0-2 0v9a1 1 0 0 0 1 1h9a1 1 0 1 0 0-2h-6.59ZM7.5 5A2.5 2.5 0 0 0 5 7.5V16h7.23A3.77 3.77 0 0 1 16 19.77V27h8.5a2.5 2.5 0 0 0 2.5-2.5V19a1 1 0 1 1 2 0v5.5a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5v-17A4.5 4.5 0 0 1 7.5 3H13a1 1 0 1 1 0 2H7.5Z\"]);\nexport const ContractDownLeft32Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft32Regular', \"32\", [\"M5 7.5V16h7.23A3.77 3.77 0 0 1 16 19.77V27h8.5a2.5 2.5 0 0 0 2.5-2.5V19a1 1 0 1 1 2 0v5.5a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5v-17A4.5 4.5 0 0 1 7.5 3H13a1 1 0 1 1 0 2H7.5A2.5 2.5 0 0 0 5 7.5ZM5 18v6.5A2.5 2.5 0 0 0 7.5 27H14v-7.23c0-.98-.8-1.77-1.77-1.77H5Zm16.41-6H28a1 1 0 1 1 0 2h-9a1 1 0 0 1-1-1V4a1 1 0 1 1 2 0v6.59l7.3-7.3a1 1 0 1 1 1.4 1.42L21.42 12Z\"]);\nexport const ContractDownLeft48Filled = /*#__PURE__*/createFluentIcon('ContractDownLeft48Filled', \"48\", [\"M12.25 8.5a3.75 3.75 0 0 0-3.75 3.75V24h10.25c2.9 0 5.25 2.35 5.25 5.25V39.5h11.75a3.75 3.75 0 0 0 3.75-3.75v-7.88a1.25 1.25 0 1 1 2.5 0v7.88C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-23.5C6 8.8 8.8 6 12.25 6h7.88a1.25 1.25 0 1 1 0 2.5h-7.88ZM42 19.75c0 .69-.56 1.25-1.25 1.25h-12.5c-.69 0-1.25-.56-1.25-1.25V7.25a1.25 1.25 0 1 1 2.5 0v9.48L39.87 6.37a1.25 1.25 0 0 1 1.76 1.76L31.27 18.5h9.48c.69 0 1.25.56 1.25 1.25Z\"]);\nexport const ContractDownLeft48Regular = /*#__PURE__*/createFluentIcon('ContractDownLeft48Regular', \"48\", [\"M41.63 8.13a1.25 1.25 0 0 0-1.76-1.76L29.5 16.73V7.25a1.25 1.25 0 0 0-2.5 0v12.5c0 .7.56 1.25 1.25 1.25h12.5a1.25 1.25 0 1 0 0-2.5h-9.48L41.63 8.13ZM8.5 12.25a3.75 3.75 0 0 1 3.75-3.75h7.88a1.25 1.25 0 1 0 0-2.5h-7.88A6.25 6.25 0 0 0 6 12.25v23.5C6 39.2 8.8 42 12.25 42h23.5C39.2 42 42 39.2 42 35.75v-7.88a1.25 1.25 0 0 0-2.5 0v7.88a3.75 3.75 0 0 1-3.75 3.75H24V29.25c0-2.9-2.35-5.25-5.25-5.25H8.5V12.25Zm0 14.25h10.25a2.75 2.75 0 0 1 2.75 2.75V39.5h-9.25a3.75 3.75 0 0 1-3.75-3.75V26.5Z\"]);\nexport const ControlButton20Filled = /*#__PURE__*/createFluentIcon('ControlButton20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM6 7a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H6a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H6Zm3 .5a.5.5 0 0 0-1 0V9h-.5a.5.5 0 0 0 0 1H8v1.75c0 .69.56 1.25 1.25 1.25h.25a.5.5 0 0 0 0-1h-.25a.25.25 0 0 1-.25-.25V10h.5a.5.5 0 0 0 0-1H9V7.5Zm7 0a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5Zm-4 3c0-.28.22-.5.5-.5h1a.5.5 0 0 0 0-1h-1c-.83 0-1.5.67-1.5 1.5v2a.5.5 0 0 0 1 0v-2Z\"]);\nexport const ControlButton20Regular = /*#__PURE__*/createFluentIcon('ControlButton20Regular', \"20\", [\"M6 7a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H6a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H6Zm3 .5a.5.5 0 0 0-1 0V9h-.5a.5.5 0 0 0 0 1H8v1.75c0 .69.56 1.25 1.25 1.25h.25a.5.5 0 0 0 0-1h-.25a.25.25 0 0 1-.25-.25V10h.5a.5.5 0 0 0 0-1H9V7.5Zm7 0a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5Zm-4 3c0-.28.22-.5.5-.5h1a.5.5 0 0 0 0-1h-1c-.83 0-1.5.67-1.5 1.5v2a.5.5 0 0 0 1 0v-2ZM4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H4.75C3.78 15 3 14.22 3 13.25v-6.5Z\"]);\nexport const ControlButton24Filled = /*#__PURE__*/createFluentIcon('ControlButton24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM7.75 8A2.75 2.75 0 0 0 5 10.75v2.5A2.75 2.75 0 0 0 7.75 16h.5a.75.75 0 0 0 0-1.5h-.5c-.69 0-1.25-.56-1.25-1.25v-2.5c0-.69.56-1.25 1.25-1.25h.5a.75.75 0 0 0 0-1.5h-.5Zm3.75.75a.75.75 0 0 0-1.5 0V11h-.25a.75.75 0 0 0 0 1.5H10V14c0 1.1.9 2 2 2h.25a.75.75 0 0 0 0-1.5H12a.5.5 0 0 1-.5-.5v-1.5h.75a.75.75 0 0 0 0-1.5h-.75V8.75Zm8 0a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Zm-4 4.25c0-.28.22-.5.5-.5h.25a.75.75 0 0 0 0-1.5H16a2 2 0 0 0-2 2v2.25a.75.75 0 0 0 1.5 0V13Z\"]);\nexport const ControlButton24Regular = /*#__PURE__*/createFluentIcon('ControlButton24Regular', \"24\", [\"M7.75 8A2.75 2.75 0 0 0 5 10.75v2.5A2.75 2.75 0 0 0 7.75 16h.5a.75.75 0 0 0 0-1.5h-.5c-.69 0-1.25-.56-1.25-1.25v-2.5c0-.69.56-1.25 1.25-1.25h.5a.75.75 0 0 0 0-1.5h-.5Zm3.75.75a.75.75 0 0 0-1.5 0V11h-.25a.75.75 0 0 0 0 1.5H10V14c0 1.1.9 2 2 2h.25a.75.75 0 0 0 0-1.5H12a.5.5 0 0 1-.5-.5v-1.5h.75a.75.75 0 0 0 0-1.5h-.75V8.75Zm8 0a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Zm-4 4.25c0-.28.22-.5.5-.5h.25a.75.75 0 0 0 0-1.5H16a2 2 0 0 0-2 2v2.25a.75.75 0 0 0 1.5 0V13ZM5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM3.5 7.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75H5.25c-.97 0-1.75-.78-1.75-1.75v-9.5Z\"]);\nexport const ConvertRange20Filled = /*#__PURE__*/createFluentIcon('ConvertRange20Filled', \"20\", [\"M5 2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5Zm12.5 5c.28 0 .5.22.5.5v2a2.5 2.5 0 0 1-2.5 2.5h-1.8l1.15 1.15a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7L13.71 11h1.79c.83 0 1.5-.67 1.5-1.5v-2c0-.28.22-.5.5-.5Zm-5.62 3H5a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-1.09a1.5 1.5 0 0 1-1.56-.35l-2-2a1.5 1.5 0 0 1 0-2.12l.44-.44ZM6.5 14c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1H7a.5.5 0 0 1-.5-.5Z\"]);\nexport const ConvertRange20Regular = /*#__PURE__*/createFluentIcon('ConvertRange20Regular', \"20\", [\"M5 2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5ZM4 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V4Zm3 9.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H7Zm4.88-3.5H5a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-1.09a1.5 1.5 0 0 1-1 0V16a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h6.09c.07-.2.19-.4.35-.56l.44-.44ZM18 7.5a.5.5 0 0 0-1 0v2c0 .83-.67 1.5-1.5 1.5h-1.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L13.71 12h1.79A2.5 2.5 0 0 0 18 9.5v-2Z\"]);\nexport const ConvertRange24Filled = /*#__PURE__*/createFluentIcon('ConvertRange24Filled', \"24\", [\"M6.25 3C5.01 3 4 4 4 5.25v2.5C4 8.99 5 10 6.25 10h9.5C16.99 10 18 9 18 7.75v-2.5C18 4.01 17 3 15.75 3h-9.5Zm11.1 13.45-.07.08a.75.75 0 0 1-.98.07l-.08-.07-2-2a.75.75 0 0 1-.07-.98l.07-.08 2-2a.75.75 0 0 1 1.13.98l-.07.08-.72.72h1.5c.65 0 1.18-.5 1.24-1.12l.01-.13V9.75a.75.75 0 0 1 1.5-.1V12a2.75 2.75 0 0 1-2.58 2.74l-.17.01h-1.5l.72.72c.27.26.3.68.07.98ZM14.27 12l-.78.79-.12.14-.03.03c-.5.68-.45 1.65.17 2.28l2.03 2.02.14.12.03.03c.68.5 1.66.45 2.28-.17l.01-.02v2.03c0 1.24-1 2.25-2.25 2.25h-9.5c-1.24 0-2.25-1-2.25-2.25v-5C4 13.01 5 12 6.25 12h8.02ZM8 16.75c0 .41.31.75.7.75h4.6c.39 0 .7-.34.7-.75s-.31-.75-.7-.75H8.7c-.39 0-.7.34-.7.75Z\"]);\nexport const ConvertRange24Regular = /*#__PURE__*/createFluentIcon('ConvertRange24Regular', \"24\", [\"M6.25 3C5.01 3 4 4 4 5.25v2.5C4 8.99 5 10 6.25 10h9.5C16.99 10 18 9 18 7.75v-2.5C18 4.01 17 3 15.75 3h-9.5ZM5.5 5.25c0-.41.34-.75.75-.75h9.5c.41 0 .75.34.75.75v2.5c0 .41-.34.75-.75.75h-9.5a.75.75 0 0 1-.75-.75v-2.5ZM8.7 16c-.39 0-.7.34-.7.75s.31.75.7.75h4.6c.39 0 .7-.34.7-.75s-.31-.75-.7-.75H8.7Zm8.65.45-.07.08a.75.75 0 0 1-.98.07l-.08-.07-2-2a.75.75 0 0 1-.07-.98l.07-.08 2-2a.75.75 0 0 1 1.13.98l-.07.08-.72.72h1.5c.65 0 1.18-.5 1.24-1.12l.01-.13V9.75a.75.75 0 0 1 1.5-.1V12a2.75 2.75 0 0 1-2.58 2.74l-.17.01h-1.5l.72.72c.27.26.3.68.07.98Zm.65 2.8v-2.03l-.01.02c-.4.4-.96.57-1.49.5v1.51c0 .41-.34.75-.75.75h-9.5a.75.75 0 0 1-.75-.75v-5c0-.41.34-.75.75-.75h6.82c.06-.2.15-.38.27-.54l.03-.03.12-.14.78-.79H6.25C5.01 12 4 13 4 14.25v5c0 1.24 1 2.25 2.25 2.25h9.5c1.24 0 2.25-1 2.25-2.25Z\"]);\nexport const Cookies20Filled = /*#__PURE__*/createFluentIcon('Cookies20Filled', \"20\", [\"M2 10a8 8 0 0 1 9.87-7.78.5.5 0 0 1 .24.85 2 2 0 0 0 .95 3.38c.26.06.44.29.44.55A2 2 0 0 0 17 8.32a.5.5 0 0 1 .87.24A8 8 0 1 1 2 10Zm5-2a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3 3a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Cookies20Regular = /*#__PURE__*/createFluentIcon('Cookies20Regular', \"20\", [\"M6 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4 2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm3-12a8 8 0 1 0 7.87 6.56.5.5 0 0 0-.87-.24A2 2 0 0 1 13.5 7c0-.26-.18-.5-.44-.55a2 2 0 0 1-.95-3.38.5.5 0 0 0-.24-.85A8.02 8.02 0 0 0 10 2Zm-7 8a7 7 0 0 1 7.87-6.95 2.99 2.99 0 0 0 1.65 4.29 3 3 0 0 0 4.47 2.26l.01.4a7 7 0 1 1-14 0Z\"]);\nexport const Cookies24Filled = /*#__PURE__*/createFluentIcon('Cookies24Filled', \"24\", [\"M12 2c.71 0 1.42.07 2.1.22.59.13.8.84.38 1.27a2.5 2.5 0 0 0 1.2 4.2c.38.08.62.43.58.8l-.01.26a2.5 2.5 0 0 0 4.37 1.66.75.75 0 0 1 1.31.4A10 10 0 1 1 12 2Zm3 14a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-7-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4-4a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM7 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z\"]);\nexport const Cookies24Regular = /*#__PURE__*/createFluentIcon('Cookies24Regular', \"24\", [\"M12 2c.71 0 1.42.07 2.1.22.59.13.8.84.38 1.27a2.5 2.5 0 0 0 1.2 4.2c.38.08.62.43.58.8l-.01.26a2.5 2.5 0 0 0 4.37 1.66.75.75 0 0 1 1.31.4A10 10 0 1 1 12 2Zm0 1.5a8.5 8.5 0 1 0 8.47 9.26l.02-.25v-.16l-.2.09c-.32.14-.67.23-1.04.28l-.27.02-.23.01a4 4 0 0 1-3.96-3.4l-.02-.2-.01-.19-.15-.06a4 4 0 0 1-2.34-3.23l-.02-.22v-.2a4 4 0 0 1 .21-1.3l.1-.23.08-.2-.28-.01L12 3.5ZM15 16a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-7-1a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm4-4a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM7 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const Copy16Filled = /*#__PURE__*/createFluentIcon('Copy16Filled', \"16\", [\"M4 4.09v6.41A2.5 2.5 0 0 0 6.34 13h4.57c-.2.58-.76 1-1.41 1H6a3 3 0 0 1-3-3V5.5c0-.65.42-1.2 1-1.41ZM11.5 2c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 5 10.5v-7C5 2.67 5.67 2 6.5 2h5Z\"]);\nexport const Copy16Regular = /*#__PURE__*/createFluentIcon('Copy16Regular', \"16\", [\"M4 4.09v6.41A2.5 2.5 0 0 0 6.34 13h4.57c-.2.58-.76 1-1.41 1H6a3 3 0 0 1-3-3V5.5c0-.65.42-1.2 1-1.41ZM11.5 2c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 5 10.5v-7C5 2.67 5.67 2 6.5 2h5Zm0 1h-5a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5Z\"]);\nexport const Copy20Filled = /*#__PURE__*/createFluentIcon('Copy20Filled', \"20\", [\"M6 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4ZM4 6a2 2 0 0 1 1-1.73V14.5A2.5 2.5 0 0 0 7.5 17h6.23A2 2 0 0 1 12 18H7.5A3.5 3.5 0 0 1 4 14.5V6Z\"]);\nexport const Copy20Regular = /*#__PURE__*/createFluentIcon('Copy20Regular', \"20\", [\"M8 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8ZM7 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V4ZM4 6a2 2 0 0 1 1-1.73V14.5A2.5 2.5 0 0 0 7.5 17h6.23A2 2 0 0 1 12 18H7.5A3.5 3.5 0 0 1 4 14.5V6Z\"]);\nexport const Copy24Filled = /*#__PURE__*/createFluentIcon('Copy24Filled', \"24\", [\"M5.5 4.63V17.25c0 1.8 1.46 3.25 3.25 3.25h8.62c-.31.88-1.15 1.5-2.13 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12ZM17.75 2C18.99 2 20 3 20 4.25v13c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.5 2 8.75 2h9Z\"]);\nexport const Copy24Regular = /*#__PURE__*/createFluentIcon('Copy24Regular', \"24\", [\"M5.5 4.63V17.25c0 1.8 1.46 3.25 3.25 3.25h8.62c-.31.88-1.15 1.5-2.13 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12ZM17.75 2C18.99 2 20 3 20 4.25v13c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.5 2 8.75 2h9Zm0 1.5h-9a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h9c.41 0 .75-.34.75-.75v-13a.75.75 0 0 0-.75-.75Z\"]);\nexport const Copy32Filled = /*#__PURE__*/createFluentIcon('Copy32Filled', \"32\", [\"M8.5 5.25C8.5 3.45 9.96 2 11.75 2h12C25.55 2 27 3.46 27 5.25v18c0 1.8-1.46 3.25-3.25 3.25h-12a3.25 3.25 0 0 1-3.25-3.25v-18ZM5 8.75c0-1.35.83-2.51 2-3V23.5a4.5 4.5 0 0 0 4.5 4.5h11.75a3.25 3.25 0 0 1-3 2H11.5A6.5 6.5 0 0 1 5 23.5V8.75Z\"]);\nexport const Copy32Regular = /*#__PURE__*/createFluentIcon('Copy32Regular', \"32\", [\"M11.75 2A3.25 3.25 0 0 0 8.5 5.25v18c0 1.8 1.46 3.25 3.25 3.25h12c1.8 0 3.25-1.46 3.25-3.25v-18C27 3.45 25.54 2 23.75 2h-12ZM10.5 5.25c0-.69.56-1.25 1.25-1.25h12c.69 0 1.25.56 1.25 1.25v18c0 .69-.56 1.25-1.25 1.25h-12c-.69 0-1.25-.56-1.25-1.25v-18Zm-3.5.5c-1.17.49-2 1.65-2 3V23.5a6.5 6.5 0 0 0 6.5 6.5h8.75c1.35 0 2.51-.83 3-2H11.5A4.5 4.5 0 0 1 7 23.5V5.75Z\"]);\nexport const CopyAdd20Filled = /*#__PURE__*/createFluentIcon('CopyAdd20Filled', \"20\", [\"M6 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v5.2A5.5 5.5 0 0 0 9.2 16H8a2 2 0 0 1-2-2V4Zm4.26 14a5.5 5.5 0 0 1-.66-1H7.5A2.5 2.5 0 0 1 5 14.5V4.27A2 2 0 0 0 4 6v8.5A3.5 3.5 0 0 0 7.5 18h2.76ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const CopyAdd20Regular = /*#__PURE__*/createFluentIcon('CopyAdd20Regular', \"20\", [\"M8 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h1.2c-.08-.32-.15-.66-.18-1H8a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H8Zm-.5 15h2.1c.18.36.4.7.66 1H7.5A3.5 3.5 0 0 1 4 14.5V6a2 2 0 0 1 1-1.73V14.5A2.5 2.5 0 0 0 7.5 17ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const CopyAdd24Filled = /*#__PURE__*/createFluentIcon('CopyAdd24Filled', \"24\", [\"M5.5 4.63V17.25c0 1.8 1.46 3.25 3.25 3.25h1.98c.3.56.66 1.06 1.08 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12Zm11 6.37c1.29 0 2.49.38 3.5 1.02V4.25C20 3.01 19 2 17.75 2h-9C7.51 2 6.5 3 6.5 4.25v13c0 1.24 1 2.25 2.25 2.25h1.56A6.5 6.5 0 0 1 16.5 11Zm5.5 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H16v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H17Z\"]);\nexport const CopyAdd24Regular = /*#__PURE__*/createFluentIcon('CopyAdd24Regular', \"24\", [\"M5.5 4.63V17.25c0 1.8 1.46 3.25 3.25 3.25h1.98c.3.56.66 1.06 1.08 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12ZM20 4.25v7.77c-.46-.3-.97-.53-1.5-.7V4.24a.75.75 0 0 0-.75-.75h-9a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h1.27c.04.52.14 1.02.3 1.5H8.74c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.5 2 8.75 2h9C18.99 2 20 3 20 4.25Zm2 13.25a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H16v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H17Z\"]);\nexport const CopyArrowRight16Filled = /*#__PURE__*/createFluentIcon('CopyArrowRight16Filled', \"16\", [\"M11 7a4 4 0 1 1 0 8 4 4 0 0 1 0-8ZM3 4.09v6.41A2.5 2.5 0 0 0 5.34 13H6.4A5 5 0 0 0 7 14H5a3 3 0 0 1-3-3V5.5c0-.65.42-1.2 1-1.41Zm7.8 3.96-.08.04-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07 1.65 1.65H8.4a.5.5 0 0 0-.4.41L8 11v.09c.05.2.2.36.41.4l.09.01h3.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.07-.07 2.53-2.53.04-.05.04-.08.02-.08.01-.07V10.9l-.03-.08-.04-.08-.04-.05-2.53-2.53-.07-.06a.5.5 0 0 0-.5-.04ZM10.5 2c.83 0 1.5.67 1.5 1.5v2.6A5.03 5.03 0 0 0 6 11c0 .34.03.68.1 1h-.6A1.5 1.5 0 0 1 4 10.5v-7C4 2.67 4.67 2 5.5 2h5Z\"]);\nexport const CopyArrowRight16Regular = /*#__PURE__*/createFluentIcon('CopyArrowRight16Regular', \"16\", [\"M11 7a4 4 0 1 1 0 8 4 4 0 0 1 0-8ZM3 4.09v6.41A2.5 2.5 0 0 0 5.34 13H6.4A5 5 0 0 0 7 14H5a3 3 0 0 1-3-3V5.5c0-.65.42-1.2 1-1.41Zm7.8 3.96-.08.04-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07 1.65 1.65H8.4a.5.5 0 0 0-.4.41L8 11v.09c.05.2.2.36.41.4l.09.01h3.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.07-.07 2.53-2.53.04-.05.04-.08.02-.08.01-.07V10.9l-.03-.08-.04-.08-.04-.05-2.53-2.53-.07-.06a.5.5 0 0 0-.5-.04ZM10.5 2c.83 0 1.5.67 1.5 1.5v2.6c-.32-.07-.66-.1-1-.1V3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5H6c0 .34.03.68.1 1h-.6A1.5 1.5 0 0 1 4 10.5v-7C4 2.67 4.67 2 5.5 2h5Z\"]);\nexport const CopyArrowRight20Filled = /*#__PURE__*/createFluentIcon('CopyArrowRight20Filled', \"20\", [\"M6 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v5.2A5.5 5.5 0 0 0 9.2 16H8a2 2 0 0 1-2-2V4Zm4.26 14a5.5 5.5 0 0 1-.66-1H7.5A2.5 2.5 0 0 1 5 14.5V4.27A2 2 0 0 0 4 6v8.5A3.5 3.5 0 0 0 7.5 18h2.76Zm4.24-8a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const CopyArrowRight20Regular = /*#__PURE__*/createFluentIcon('CopyArrowRight20Regular', \"20\", [\"M8 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h1.2c-.08-.32-.15-.66-.18-1H8a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H8Zm-.5 15h2.1c.18.36.4.7.66 1H7.5A3.5 3.5 0 0 1 4 14.5V6a2 2 0 0 1 1-1.73V14.5A2.5 2.5 0 0 0 7.5 17Zm7-7a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const CopyArrowRight24Filled = /*#__PURE__*/createFluentIcon('CopyArrowRight24Filled', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-12-7.37V17.25c0 1.8 1.46 3.25 3.25 3.25h2.98c.3.56.66 1.06 1.08 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12Zm12.78 9.96a.5.5 0 0 0-.56 0l-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07L19.29 17H14.4a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01h4.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.06-.07 2.53-2.53.04-.05.04-.08.03-.08V17.39l-.01-.04-.04-.08-.02-.04-.04-.05-2.53-2.53-.07-.06ZM17.75 2C18.99 2 20 3 20 4.25v7.25a6.5 6.5 0 0 0-8.69 8H8.75c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.5 2 8.75 2h9Z\"]);\nexport const CopyArrowRight24Regular = /*#__PURE__*/createFluentIcon('CopyArrowRight24Regular', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-12-7.37V17.25c0 1.8 1.46 3.25 3.25 3.25h2.98c.3.56.66 1.06 1.08 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12Zm12.78 9.96a.5.5 0 0 0-.56 0l-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07L19.29 17H14.4a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01h4.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.06-.07 2.53-2.53.04-.05.04-.08.03-.08V17.39l-.01-.04-.04-.08-.02-.04-.04-.05-2.53-2.53-.07-.06ZM17.75 2C18.99 2 20 3 20 4.25v7.25c-.47-.2-.98-.34-1.5-.42V4.25a.75.75 0 0 0-.75-.75h-9a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h2.27c.04.52.14 1.02.3 1.5H8.74c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.5 2 8.75 2h9Z\"]);\nexport const CopySelect20Filled = /*#__PURE__*/createFluentIcon('CopySelect20Filled', \"20\", [\"M8 3a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V4c0-1.1.9-2 2-2h.5a.5.5 0 0 1 0 1H8Zm-1 9a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H8a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5Zm0-5.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3ZM16 3a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-7-4a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM10 13.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM4 6h1v6.5A2.5 2.5 0 0 0 7.5 15H14v1a2 2 0 0 1-2 2H5.5A3.5 3.5 0 0 1 2 14.5V8c0-1.1.9-2 2-2Z\"]);\nexport const CopySelect20Regular = /*#__PURE__*/createFluentIcon('CopySelect20Regular', \"20\", [\"M8 3a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V4c0-1.1.9-2 2-2h.5a.5.5 0 0 1 0 1H8Zm-1 9a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H8a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5Zm0-5.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3ZM16 3a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-7-4a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM10 13.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM4 6h1v1H4a1 1 0 0 0-1 1v6.5A2.5 2.5 0 0 0 5.5 17H12a1 1 0 0 0 1-1v-1h1v1a2 2 0 0 1-2 2H5.5A3.5 3.5 0 0 1 2 14.5V8c0-1.1.9-2 2-2Z\"]);\nexport const CopySelect24Filled = /*#__PURE__*/createFluentIcon('CopySelect24Filled', \"24\", [\"M9.25 3.5c-.97 0-1.75.78-1.75 1.75v1a.75.75 0 0 1-1.5 0v-1C6 3.45 7.46 2 9.25 2h1a.75.75 0 0 1 0 1.5h-1ZM12 2.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm.75 13.75a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm-6-8.5c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM22 8.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Zm-3.25 7.75c.97 0 1.75-.78 1.75-1.75v-1a.75.75 0 0 1 1.5 0v1c0 1.8-1.46 3.25-3.25 3.25h-1a.75.75 0 0 1 0-1.5h1ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-1a.75.75 0 0 1 0-1.5h1C20.55 2 22 3.46 22 5.25v1a.75.75 0 0 1-1.5 0v-1ZM9.25 16.5c-.97 0-1.75-.78-1.75-1.75v-1a.75.75 0 0 0-1.5 0v1C6 16.55 7.46 18 9.25 18h1a.75.75 0 0 0 0-1.5h-1ZM2 9.25a3.25 3.25 0 0 1 3-3.24V15a4 4 0 0 0 4 4h9a3.25 3.25 0 0 1-3.25 3h-7A5.75 5.75 0 0 1 2 16.25v-7Z\"]);\nexport const CopySelect24Regular = /*#__PURE__*/createFluentIcon('CopySelect24Regular', \"24\", [\"M9.25 3.5c-.97 0-1.75.78-1.75 1.75v1a.75.75 0 0 1-1.5 0v-1C6 3.45 7.46 2 9.25 2h1a.75.75 0 0 1 0 1.5h-1ZM12 2.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm.75 13.75a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm-6-8.5c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM22 8.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Zm-3.25 7.75c.97 0 1.75-.78 1.75-1.75v-1a.75.75 0 0 1 1.5 0v1c0 1.8-1.46 3.25-3.25 3.25h-1a.75.75 0 0 1 0-1.5h1ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-1a.75.75 0 0 1 0-1.5h1C20.55 2 22 3.46 22 5.25v1a.75.75 0 0 1-1.5 0v-1ZM9.25 16.5c-.97 0-1.75-.78-1.75-1.75v-1a.75.75 0 0 0-1.5 0v1C6 16.55 7.46 18 9.25 18h1a.75.75 0 0 0 0-1.5h-1ZM2 9.25a3.25 3.25 0 0 1 3-3.24v1.5c-.85.13-1.5.86-1.5 1.74v7c0 2.35 1.9 4.25 4.25 4.25h7c.88 0 1.61-.65 1.73-1.5H18a3.25 3.25 0 0 1-3.24 3h-7A5.75 5.75 0 0 1 2 16.25v-7Z\"]);\nexport const Couch12Filled = /*#__PURE__*/createFluentIcon('Couch12Filled', \"12\", [\"M8.5 2h-5C2.67 2 2 2.67 2 3.5v.51L2.25 4c1.16 0 2.11.88 2.24 2H7.5A2.25 2.25 0 0 1 10 4.01V3.5C10 2.67 9.33 2 8.5 2Zm1.25 3c.09 0 .17 0 .25.03.57.11 1 .62 1 1.22V8.5c0 .65-.42 1.2-1 1.41v.59a.5.5 0 0 1-1 0V10H3v.5a.5.5 0 0 1-1 0v-.59c-.58-.2-1-.76-1-1.41V6.25a1.25 1.25 0 0 1 2.5 0c0 .41.34.75.75.75h3.5c.41 0 .75-.34.75-.75C8.5 5.56 9.06 5 9.75 5Z\"]);\nexport const Couch12Regular = /*#__PURE__*/createFluentIcon('Couch12Regular', \"12\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v1.17c-.6.28-1 .88-1 1.58V8.5c0 .65.42 1.2 1 1.41v.59a.5.5 0 0 0 1 0V10h6v.5a.5.5 0 0 0 1 0v-.59c.58-.2 1-.76 1-1.41V6.25c0-.7-.4-1.3-1-1.58V3.5C10 2.67 9.33 2 8.5 2h-5Zm6 7h-7a.5.5 0 0 1-.5-.5V6.25a.75.75 0 0 1 1.5 0v.25c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-.25a.75.75 0 0 1 1.5 0V8.5a.5.5 0 0 1-.5.5ZM9 4.52c-.77.1-1.37.71-1.48 1.48H4.48A1.75 1.75 0 0 0 3 4.52V3.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v1.02Z\"]);\nexport const Couch20Filled = /*#__PURE__*/createFluentIcon('Couch20Filled', \"20\", [\"M14 4H6a2 2 0 0 0-2 2v1a3 3 0 0 1 2.83 2h6.34A3 3 0 0 1 16 7V6a2 2 0 0 0-2-2Zm2 4a2 2 0 0 0-1.94 1.5c-.07.27-.28.5-.56.5h-7c-.28 0-.5-.23-.56-.5A2 2 0 0 0 2 10v2c0 1.1.9 2 2 2v1.5a.5.5 0 0 0 1 0V14h10v1.5a.5.5 0 0 0 1 0V14a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2Z\"]);\nexport const Couch20Regular = /*#__PURE__*/createFluentIcon('Couch20Regular', \"20\", [\"M6 4a2 2 0 0 0-2 2v1.05A2.5 2.5 0 0 0 2 9.5V12c0 1.1.9 2 2 2v1.5a.5.5 0 0 0 1 0V14h10v1.5a.5.5 0 0 0 1 0V14a2 2 0 0 0 2-2V9.5a2.5 2.5 0 0 0-2-2.45V6a2 2 0 0 0-2-2H6Zm9 3.05A2.5 2.5 0 0 0 13.05 9h-6.1A2.5 2.5 0 0 0 5 7.05V6a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1.05ZM16 13H4a1 1 0 0 1-1-1V9.5a1.5 1.5 0 1 1 3 0c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5 1.5 1.5 0 0 1 3 0V12a1 1 0 0 1-1 1Z\"]);\nexport const Couch24Filled = /*#__PURE__*/createFluentIcon('Couch24Filled', \"24\", [\"M16.75 4h-9.5A2.75 2.75 0 0 0 4.5 6.75V8a3.5 3.5 0 0 1 3.46 3h8.08c.24-1.7 1.7-3 3.46-3V6.75A2.75 2.75 0 0 0 16.75 4Zm.25 7.5a2.5 2.5 0 0 1 5 0v2.75c0 1.43-1.1 2.61-2.5 2.74v1.26a.75.75 0 0 1-1.5 0V17H6v1.25a.75.75 0 0 1-1.5 0v-1.26A2.75 2.75 0 0 1 2 14.25V11.5a2.5 2.5 0 0 1 5 0c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5Z\"]);\nexport const Couch24Regular = /*#__PURE__*/createFluentIcon('Couch24Regular', \"24\", [\"M7.25 4A2.75 2.75 0 0 0 4.5 6.75v1.34A3.25 3.25 0 0 0 2 11.25v3c0 1.43 1.1 2.61 2.5 2.74v1.26a.75.75 0 0 0 1.5 0V17h12v1.25a.75.75 0 0 0 1.5 0v-1.26c1.4-.13 2.5-1.3 2.5-2.74v-3a3.25 3.25 0 0 0-2.5-3.16V6.75A2.75 2.75 0 0 0 16.75 4h-9.5Zm12 11.5H4.75c-.69 0-1.25-.56-1.25-1.25v-3a1.75 1.75 0 1 1 3.5 0v.5c0 .41.34.75.75.75h8.5c.41 0 .75-.34.75-.75v-.5a1.75 1.75 0 1 1 3.5 0v3c0 .69-.56 1.25-1.25 1.25ZM18 8.09A3.25 3.25 0 0 0 15.5 11h-7A3.25 3.25 0 0 0 6 8.09V6.75c0-.69.56-1.25 1.25-1.25h9.5c.69 0 1.25.56 1.25 1.25v1.34Z\"]);\nexport const Couch32Filled = /*#__PURE__*/createFluentIcon('Couch32Filled', \"32\", [\"M23 6H9a4 4 0 0 0-4 4v1.02l.5-.02a5 5 0 0 1 4.98 4.5h11.04A5 5 0 0 1 27 11.02V10a4 4 0 0 0-4-4Zm4 6.54A3.5 3.5 0 0 0 23 16a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1 3.5 3.5 0 1 0-7 0v4a4 4 0 0 0 3 3.87V26a1 1 0 1 0 2 0v-2h18v2a1 1 0 1 0 2 0v-2.13A4 4 0 0 0 30 20v-4a3.5 3.5 0 0 0-3-3.46Z\"]);\nexport const Couch32Regular = /*#__PURE__*/createFluentIcon('Couch32Regular', \"32\", [\"M9 6a4 4 0 0 0-4 4v1.26a4.5 4.5 0 0 0-3 4.24V20a4 4 0 0 0 3 3.87V26a1 1 0 1 0 2 0v-2h18v2a1 1 0 1 0 2 0v-2.13A4 4 0 0 0 30 20v-4.5a4.5 4.5 0 0 0-3-4.24V10a4 4 0 0 0-4-4H9Zm17 16H6a2 2 0 0 1-2-2v-4.5a2.5 2.5 0 0 1 5 0v.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.5a2.5 2.5 0 0 1 5 0V20a2 2 0 0 1-2 2Zm-1-10.97A4.5 4.5 0 0 0 21.03 15H10.97A4.5 4.5 0 0 0 7 11.03V10c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v1.03Z\"]);\nexport const Couch48Filled = /*#__PURE__*/createFluentIcon('Couch48Filled', \"48\", [\"M34.75 11h-21.5A5.25 5.25 0 0 0 8 16.25v.77l.5-.02a6.5 6.5 0 0 1 6.48 6h18.04A6.5 6.5 0 0 1 40 17.02v-.77c0-2.9-2.35-5.25-5.25-5.25Zm4.75 8a4.5 4.5 0 0 1 4.5 4.5v6.25c0 2.47-1.7 4.54-4 5.1v2.9a1.25 1.25 0 1 1-2.5 0V35h-27v2.75a1.25 1.25 0 1 1-2.5 0v-2.9c-2.3-.56-4-2.63-4-5.1V23.5a4.5 4.5 0 0 1 9 0v.5a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1v-.5a4.5 4.5 0 0 1 4.5-4.5Z\"]);\nexport const Couch48Regular = /*#__PURE__*/createFluentIcon('Couch48Regular', \"48\", [\"M13.25 11A5.25 5.25 0 0 0 8 16.25v1.46A5.5 5.5 0 0 0 4 23v6.75c0 2.47 1.7 4.54 4 5.1v2.9a1.25 1.25 0 1 0 2.5 0V35h27v2.75a1.25 1.25 0 1 0 2.5 0v-2.9c2.3-.56 4-2.63 4-5.1V23a5.5 5.5 0 0 0-4-5.3v-1.45c0-2.9-2.35-5.25-5.25-5.25h-21.5Zm24.25 6.6A5.5 5.5 0 0 0 33 23H15a5.5 5.5 0 0 0-4.5-5.4v-1.35a2.75 2.75 0 0 1 2.75-2.75h21.5a2.75 2.75 0 0 1 2.75 2.75v1.34ZM6.5 23a3 3 0 1 1 6 0v1.25c0 .69.56 1.25 1.25 1.25h20.5c.69 0 1.25-.56 1.25-1.25V23a3 3 0 1 1 6 0v6.75a2.75 2.75 0 0 1-2.75 2.75H9.25a2.75 2.75 0 0 1-2.75-2.75V23Z\"]);\nexport const CreditCardClock20Filled = /*#__PURE__*/createFluentIcon('CreditCardClock20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75V8H2V6.75ZM9.2 16H4.76A2.75 2.75 0 0 1 2 13.25V9h12.5a5.5 5.5 0 0 0-5.3 7Zm9.8-1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const CreditCardClock20Regular = /*#__PURE__*/createFluentIcon('CreditCardClock20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h4.46c-.1-.32-.16-.66-.19-1H4.75C3.78 15 3 14.22 3 13.25V9h15V6.75A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V8H3V6.75Zm16 7.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const CreditCardClock24Filled = /*#__PURE__*/createFluentIcon('CreditCardClock24Filled', \"24\", [\"M2 8.25C2 6.45 3.46 5 5.25 5h13.5C20.55 5 22 6.46 22 8.25V9.5H2V8.25ZM11.17 19H5.25A3.25 3.25 0 0 1 2 15.75V11h15.5a6.5 6.5 0 0 0-6.33 8Zm6.33-7a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm2 5.5h-2V15a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2.5a.5.5 0 0 0 0-1Z\"]);\nexport const CreditCardClock24Regular = /*#__PURE__*/createFluentIcon('CreditCardClock24Regular', \"24\", [\"M5.25 5A3.25 3.25 0 0 0 2 8.25v7.5C2 17.55 3.46 19 5.25 19h5.92a6.52 6.52 0 0 1-.17-1.5H5.25c-.97 0-1.75-.78-1.75-1.75V11H22V8.25C22 6.45 20.54 5 18.75 5H5.25ZM20.5 8.25V9.5h-17V8.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75Zm-3 3.75a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm2 5.5h-2V15a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2.5a.5.5 0 0 0 0-1Z\"]);\nexport const CreditCardClock28Filled = /*#__PURE__*/createFluentIcon('CreditCardClock28Filled', \"28\", [\"M5.75 5A3.75 3.75 0 0 0 2 8.75v.75h24v-.75A3.75 3.75 0 0 0 22.25 5H5.75ZM2 19.25V11h24v4.4A7.5 7.5 0 0 0 13.43 23H5.75A3.75 3.75 0 0 1 2 19.25Zm25 1.25a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6.5-4a.5.5 0 0 0-.5.5v3.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H21v-3a.5.5 0 0 0-.5-.5Z\"]);\nexport const CreditCardClock28Regular = /*#__PURE__*/createFluentIcon('CreditCardClock28Regular', \"28\", [\"M2 8.75A3.75 3.75 0 0 1 5.75 5h16.5A3.75 3.75 0 0 1 26 8.75v6.65c-.44-.48-.95-.9-1.5-1.25V11h-21v8.25c0 1.24 1.01 2.25 2.25 2.25h7.32c.07.52.19 1.02.36 1.5H5.75A3.75 3.75 0 0 1 2 19.25V8.75ZM5.75 6.5c-1.24 0-2.25 1-2.25 2.25v.75h21v-.75c0-1.24-1-2.25-2.25-2.25H5.75ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6.5-4a.5.5 0 0 0-.5.5v3.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H21v-3a.5.5 0 0 0-.5-.5Z\"]);\nexport const CreditCardClock32Filled = /*#__PURE__*/createFluentIcon('CreditCardClock32Filled', \"32\", [\"M6.5 5A4.5 4.5 0 0 0 2 9.5V11h28V9.5A4.5 4.5 0 0 0 25.5 5h-19ZM2 22.5V13h28v4.34A9 9 0 0 0 14.94 27H6.5A4.5 4.5 0 0 1 2 22.5Zm21 8a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15ZM22.75 18a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5H23.5v-3.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const CreditCardClock32Regular = /*#__PURE__*/createFluentIcon('CreditCardClock32Regular', \"32\", [\"M2 9.5A4.5 4.5 0 0 1 6.5 5h19A4.5 4.5 0 0 1 30 9.5v7.84a9.05 9.05 0 0 0-2-1.82V13H4v9.5A2.5 2.5 0 0 0 6.5 25h7.72c.16.7.4 1.37.72 2H6.5A4.5 4.5 0 0 1 2 22.5v-13ZM6.5 7A2.5 2.5 0 0 0 4 9.5V11h24V9.5A2.5 2.5 0 0 0 25.5 7h-19ZM23 30.5a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15ZM22.75 18a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5H23.5v-3.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const CreditCardPerson20Filled = /*#__PURE__*/createFluentIcon('CreditCardPerson20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75V8H2V6.75ZM2 9h12.5a3 3 0 0 0-2.23 5.01c-1.1.1-2 .92-2.22 1.99h-5.3A2.75 2.75 0 0 1 2 13.25V9Zm14.5 3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S11 17.75 11 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const CreditCardPerson20Regular = /*#__PURE__*/createFluentIcon('CreditCardPerson20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h5.3c.07-.37.23-.7.45-1H4.75C3.78 15 3 14.22 3 13.25V9h15V6.75A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V8H3V6.75ZM16.5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S11 17.75 11 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const CreditCardPerson24Filled = /*#__PURE__*/createFluentIcon('CreditCardPerson24Filled', \"24\", [\"M5.25 5A3.25 3.25 0 0 0 2 8.25V9.5h20V8.25C22 6.45 20.54 5 18.75 5H5.25ZM2 15.75V11h16.5a3.5 3.5 0 0 0-2.45 6h-.28c-1.26 0-2.33.84-2.66 2H5.25A3.25 3.25 0 0 1 2 15.75Zm19-1.25a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const CreditCardPerson24Regular = /*#__PURE__*/createFluentIcon('CreditCardPerson24Regular', \"24\", [\"M5.25 5A3.25 3.25 0 0 0 2 8.25v7.5C2 17.55 3.46 19 5.25 19h7.86c.18-.61.56-1.14 1.07-1.5H5.25c-.97 0-1.75-.78-1.75-1.75V11H22V8.25C22 6.45 20.54 5 18.75 5H5.25ZM20.5 8.25V9.5h-17V8.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75Zm.5 6.25a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const CreditCardToolbox20Filled = /*#__PURE__*/createFluentIcon('CreditCardToolbox20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75V8H2V6.75ZM13.5 9H2v4.25A2.75 2.75 0 0 0 4.75 16H9v-2.5a2.5 2.5 0 0 1 2.04-2.46A2.5 2.5 0 0 1 13.5 9ZM12 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const CreditCardToolbox20Regular = /*#__PURE__*/createFluentIcon('CreditCardToolbox20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16H9v-1H4.75C3.78 15 3 14.22 3 13.25V9h15V6.75A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V8H3V6.75ZM12 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const CreditCardToolbox24Filled = /*#__PURE__*/createFluentIcon('CreditCardToolbox24Filled', \"24\", [\"M2 8.25C2 6.45 3.46 5 5.25 5h13.5C20.55 5 22 6.46 22 8.25V9.5H2V8.25ZM15.75 11H2v4.75C2 17.55 3.46 19 5.25 19H11v-2.75a2.5 2.5 0 0 1 2-2.45v-.05A2.75 2.75 0 0 1 15.75 11Zm-2.25 3.75h.5v-1c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v1h.5c.83 0 1.5.67 1.5 1.5V18h-3v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-3v-1.75c0-.83.67-1.5 1.5-1.5Zm2.25-1.25a.25.25 0 0 0-.25.25v1h4v-1a.25.25 0 0 0-.25-.25h-3.5Zm3.25 6V19h-3v.5a.5.5 0 0 1-1 0V19h-3v2.5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5V19h-3v.5a.5.5 0 0 1-1 0Z\"]);\nexport const CreditCardToolbox24Regular = /*#__PURE__*/createFluentIcon('CreditCardToolbox24Regular', \"24\", [\"M5.25 5A3.25 3.25 0 0 0 2 8.25v7.5C2 17.55 3.46 19 5.25 19H11v-1.5H5.25c-.97 0-1.75-.78-1.75-1.75V11H22V8.25C22 6.45 20.54 5 18.75 5H5.25ZM20.5 8.25V9.5h-17V8.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75Zm-7 6.5h.5v-1c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v1h.5c.83 0 1.5.67 1.5 1.5V18h-3v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-3v-1.75c0-.83.67-1.5 1.5-1.5Zm2.25-1.25a.25.25 0 0 0-.25.25v1h4v-1a.25.25 0 0 0-.25-.25h-3.5Zm3.25 6V19h-3v.5a.5.5 0 0 1-1 0V19h-3v2.5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5V19h-3v.5a.5.5 0 0 1-1 0Z\"]);\nexport const Crop16Filled = /*#__PURE__*/createFluentIcon('Crop16Filled', \"16\", [\"M5 1.75a.75.75 0 0 0-1.5 0V3.5H1.75a.75.75 0 0 0 0 1.5H3.5v4.5a3 3 0 0 0 3 3H11v1.75a.75.75 0 0 0 1.5 0V12.5h1.75a.75.75 0 0 0 0-1.5H6.5A1.5 1.5 0 0 1 5 9.5V1.75Zm6 4.75V10h1.5V6.5a3 3 0 0 0-3-3H6V5h3.5c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const Crop16Regular = /*#__PURE__*/createFluentIcon('Crop16Regular', \"16\", [\"M5 1.5a.5.5 0 0 0-1 0V4H1.5a.5.5 0 0 0 0 1H4v4.5A2.5 2.5 0 0 0 6.5 12H11v2.5a.5.5 0 0 0 1 0V12h2.5a.5.5 0 0 0 0-1h-8A1.5 1.5 0 0 1 5 9.5v-8Zm6 5V10h1V6.5A2.5 2.5 0 0 0 9.5 4H6v1h3.5c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const Crop20Filled = /*#__PURE__*/createFluentIcon('Crop20Filled', \"20\", [\"M6 2.75a.75.75 0 0 0-1.5 0V4.5H2.75a.75.75 0 0 0 0 1.5H4.5v6.75a2.75 2.75 0 0 0 2.75 2.75H14v1.75a.75.75 0 0 0 1.5 0V15.5h1.75a.75.75 0 0 0 0-1.5h-10C6.56 14 6 13.44 6 12.75v-10Zm8 4.5V13h1.5V7.25a2.75 2.75 0 0 0-2.75-2.75H7V6h5.75c.69 0 1.25.56 1.25 1.25Z\"]);\nexport const Crop20Regular = /*#__PURE__*/createFluentIcon('Crop20Regular', \"20\", [\"M6 2.5a.5.5 0 0 0-1 0V5H2.5a.5.5 0 0 0 0 1H5v6.5A2.5 2.5 0 0 0 7.5 15H14v2.5a.5.5 0 0 0 1 0V15h2.5a.5.5 0 0 0 0-1h-10A1.5 1.5 0 0 1 6 12.5v-10Zm8 5V13h1V7.5A2.5 2.5 0 0 0 12.5 5H7v1h5.5c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const Crop24Filled = /*#__PURE__*/createFluentIcon('Crop24Filled', \"24\", [\"M7 15.5c0 .78.6 1.42 1.36 1.5H21a1 1 0 0 1 .12 2H19v2a1 1 0 0 1-2 .12V19H8.5A3.5 3.5 0 0 1 5 15.7V7H3a1 1 0 0 1-.12-2H5V3a1 1 0 0 1 2-.12V15.5ZM8 5h7.5A3.5 3.5 0 0 1 19 8.3V16h-2V8.5c0-.78-.6-1.42-1.36-1.5H8V5Z\"]);\nexport const Crop24Regular = /*#__PURE__*/createFluentIcon('Crop24Regular', \"24\", [\"M21.25 17a.75.75 0 0 1 .1 1.5H18.5v2.75a.75.75 0 0 1-1.5.1V18.5H8.75a3.25 3.25 0 0 1-3.24-3.07l-.01-.18V7H2.75a.75.75 0 0 1-.1-1.5H5.5V2.75a.75.75 0 0 1 1.5-.1v12.6c0 .92.7 1.67 1.6 1.74l.15.01h12.5ZM8 5.5h7.25a3.25 3.25 0 0 1 3.24 3.07l.01.18V16H17V8.75c0-.92-.7-1.67-1.6-1.74L15.24 7H8V5.5Z\"]);\nexport const Crop28Filled = /*#__PURE__*/createFluentIcon('Crop28Filled', \"28\", [\"M8 3a1 1 0 0 0-2 0v3H3a1 1 0 0 0 0 2h3v9.75C6 20.1 7.9 22 10.25 22H20v3a1 1 0 1 0 2 0v-3h3a1 1 0 1 0 0-2H10.25C9.01 20 8 19 8 17.75V3Zm12 7.25V19h2v-8.75C22 7.9 20.1 6 17.75 6H9v2h8.75C18.99 8 20 9 20 10.25Z\"]);\nexport const Crop28Regular = /*#__PURE__*/createFluentIcon('Crop28Regular', \"28\", [\"M8 2.75a.75.75 0 0 0-1.5 0V6.5H2.75a.75.75 0 0 0 0 1.5H6.5v9.75a3.75 3.75 0 0 0 3.75 3.75H20v3.75a.75.75 0 0 0 1.5 0V21.5h3.75a.75.75 0 0 0 0-1.5h-15C9.01 20 8 19 8 17.75v-15Zm12 7.5V19h1.5v-8.75a3.75 3.75 0 0 0-3.75-3.75H9V8h8.75C18.99 8 20 9 20 10.25Z\"]);\nexport const Crop32Filled = /*#__PURE__*/createFluentIcon('Crop32Filled', \"32\", [\"M9 3.25a1.25 1.25 0 1 0-2.5 0V6.5H3.25a1.25 1.25 0 1 0 0 2.5H6.5v11.5a5 5 0 0 0 5 5H23v3.25a1.25 1.25 0 1 0 2.5 0V25.5h3.25a1.25 1.25 0 1 0 0-2.5H11.5A2.5 2.5 0 0 1 9 20.5V3.25Zm14 8.25v10h2.5v-10a5 5 0 0 0-5-5h-10V9h10a2.5 2.5 0 0 1 2.5 2.5Z\"]);\nexport const Crop32Regular = /*#__PURE__*/createFluentIcon('Crop32Regular', \"32\", [\"M9 3a1 1 0 0 0-2 0v4H3a1 1 0 0 0 0 2h4v11.5a4.5 4.5 0 0 0 4.5 4.5H23v4a1 1 0 1 0 2 0v-4h4a1 1 0 1 0 0-2H11.5A2.5 2.5 0 0 1 9 20.5V3Zm14 8.5v10h2v-10A4.5 4.5 0 0 0 20.5 7h-10v2h10a2.5 2.5 0 0 1 2.5 2.5Z\"]);\nexport const Crop48Filled = /*#__PURE__*/createFluentIcon('Crop48Filled', \"48\", [\"M14 5.5a1.5 1.5 0 0 0-3 0V11H5.5a1.5 1.5 0 0 0 0 3H11v16.25A6.75 6.75 0 0 0 17.75 37H34v5.5a1.5 1.5 0 0 0 3 0V37h5.5a1.5 1.5 0 0 0 0-3H17.75A3.75 3.75 0 0 1 14 30.25V5.5Zm20 12.25V32h3V17.75A6.75 6.75 0 0 0 30.25 11H16v3h14.25A3.75 3.75 0 0 1 34 17.75Z\"]);\nexport const Crop48Regular = /*#__PURE__*/createFluentIcon('Crop48Regular', \"48\", [\"M14 5.25a1.25 1.25 0 1 0-2.5 0v6.25H5.25a1.25 1.25 0 1 0 0 2.5h6.25v16.25c0 3.45 2.8 6.25 6.25 6.25H34v6.25a1.25 1.25 0 1 0 2.5 0V36.5h6.25a1.25 1.25 0 1 0 0-2.5h-25A3.75 3.75 0 0 1 14 30.25v-25Zm20 12.5V32h2.5V17.75c0-3.45-2.8-6.25-6.25-6.25H16V14h14.25A3.75 3.75 0 0 1 34 17.75Z\"]);\nexport const CropInterim20Filled = /*#__PURE__*/createFluentIcon('CropInterim20Filled', \"20\", [\"M7 4h3a2 2 0 0 0 1.77 1.99l.47 4.16A2 2 0 0 0 11 12H6a2 2 0 0 0-1.24-1.85L5.23 6A2 2 0 0 0 7 4Zm6.23 6.01-.47-4.16A2 2 0 1 0 10.26 3H6.74a2 2 0 1 0-2.5 2.85L3.78 10A2 2 0 1 0 5.73 13h5.54a2 2 0 1 0 1.96-2.99Zm.74-2.4A4.5 4.5 0 1 1 9.65 15h.85a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.72A5.48 5.48 0 0 0 18.5 12a5.5 5.5 0 0 0-4.65-5.43l.12 1.03Z\"]);\nexport const CropInterim20Regular = /*#__PURE__*/createFluentIcon('CropInterim20Regular', \"20\", [\"M12 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2-1H7a2 2 0 0 1-1.77 1.99l-.47 4.16A2 2 0 0 1 6 12h5a2 2 0 0 1 1.24-1.85L11.77 6A2 2 0 0 1 10 4Zm1.27 9H5.73a2 2 0 1 1-1.96-2.99l.47-4.16A2 2 0 1 1 6.74 3h3.53a2 2 0 1 1 2.5 2.85l.46 4.16A2 2 0 1 1 11.27 13ZM3 12a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm2-9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm7 9a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm1.97-4.4A4.5 4.5 0 1 1 9.65 15h.85a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.72A5.48 5.48 0 0 0 18.5 12a5.5 5.5 0 0 0-4.65-5.43l.12 1.03Z\"]);\nexport const CropInterim24Filled = /*#__PURE__*/createFluentIcon('CropInterim24Filled', \"24\", [\"M16.67 9.1a6.5 6.5 0 1 1-5.17 11.52v.63c0 .38-.29.7-.65.74l-.1.01a.75.75 0 0 1-.75-.65v-2.6c0-.38.28-.7.64-.74h2.61a.75.75 0 0 1 .1 1.48l-.1.01h-.74a4.98 4.98 0 0 0 8-4 5 5 0 0 0-3.6-4.8l-.24-1.6ZM14.5 3a2.5 2.5 0 0 1 .97 4.8l.82 5.32A2.5 2.5 0 1 1 13.5 17H6.5a2.5 2.5 0 1 1-2.78-3.88l.82-5.3A2.5 2.5 0 1 1 7.5 4h4.99c.46-.6 1.18-1 2-1Zm-2.5 2.5H8c0 1.2-.84 2.2-1.96 2.45l-.8 5.16A2.5 2.5 0 0 1 7 15.31l.01.19h6a2.5 2.5 0 0 1 1.76-2.39l-.8-5.16A2.5 2.5 0 0 1 12 5.67V5.5Z\"]);\nexport const CropInterim24Regular = /*#__PURE__*/createFluentIcon('CropInterim24Regular', \"24\", [\"M16.67 9.1a6.5 6.5 0 1 1-5.17 11.52v.63c0 .38-.29.7-.65.74l-.1.01a.75.75 0 0 1-.75-.65v-2.6c0-.38.28-.7.64-.74h2.61a.75.75 0 0 1 .1 1.48l-.1.01h-.74a4.98 4.98 0 0 0 8-4 5 5 0 0 0-3.6-4.8l-.24-1.6ZM14.5 3a2.5 2.5 0 0 1 .97 4.8l.82 5.32A2.5 2.5 0 1 1 13.5 17H6.5a2.5 2.5 0 1 1-2.78-3.88l.82-5.3A2.5 2.5 0 1 1 7.5 4h4.99c.46-.6 1.18-1 2-1ZM4.5 14.5h-.12a1 1 0 0 0 0 2h.12a1 1 0 0 0 1-.88v-.24a1 1 0 0 0-.52-.76l-.11-.05-.13-.04-.08-.02-.16-.01Zm10.7.05-.06.02-.06.03-.1.05a1 1 0 0 0 .4 1.84l.12.01a1 1 0 0 0 .12-2h-.12l-.16.01-.15.04ZM11.98 5.5H8c0 1.2-.84 2.2-1.96 2.45l-.8 5.16A2.5 2.5 0 0 1 7 15.31l.01.19h6a2.5 2.5 0 0 1 1.76-2.39l-.8-5.16A2.5 2.5 0 0 1 12 5.67V5.5Zm1.77.7.03.02.12.1.08.05.1.05.1.04.1.02.07.02h.25l.17-.04.12-.05.09-.04.1-.06.1-.1.08-.08a1 1 0 0 0-.3-1.5l-.1-.05-.15-.05-.08-.01a.99.99 0 0 0-.15-.02l-.12.01a1 1 0 0 0-.6 1.69ZM4.5 5.5a1 1 0 0 0 .22.63l.07.07a1 1 0 0 0 .19.16l.1.05.1.04.09.03.1.02h.13a1 1 0 0 0 .17-.01l.07-.02.11-.03.06-.02.15-.09.08-.06.06-.05.08-.1.06-.08a1 1 0 0 0 .15-.42l.01-.12v-.12l-.03-.1-.01-.07a1 1 0 0 0-.84-.7H5.5a1 1 0 0 0-.17 0l-.08.02-.09.03-.05.02-.1.05a1 1 0 0 0-.51.87Z\"]);\nexport const CropInterimOff20Filled = /*#__PURE__*/createFluentIcon('CropInterimOff20Filled', \"20\", [\"m3.02 3.73-.87-.88a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-1.2-1.2A5.47 5.47 0 0 1 9 15.78v.72a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-.85a4.49 4.49 0 0 0 5.56.92l-1.94-1.94L13 14a2 2 0 0 1-1.73-1H5.73a2 2 0 1 1-1.96-2.99l.47-4.16a2 2 0 0 1-1.22-2.12Zm8 8L5.27 5.98h-.04l-.47 4.17A2 2 0 0 1 6 12h5c0-.1 0-.18.02-.27Zm.75-5.74.46 4.12 2.63 2.63A2 2 0 0 0 13.23 10l-.47-4.16A2 2 0 1 0 10.26 3H6.74a2 2 0 0 0-2.47-.86l2.6 2.6A2 2 0 0 0 7 4h3a2 2 0 0 0 1.77 1.99Zm4.92 8.58.72.72a5.5 5.5 0 0 0-3.56-8.72l.12 1.03a4.5 4.5 0 0 1 2.72 6.97Z\"]);\nexport const CropInterimOff20Regular = /*#__PURE__*/createFluentIcon('CropInterimOff20Regular', \"20\", [\"m3.02 3.73-.87-.88a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-1.2-1.2A5.47 5.47 0 0 1 9 15.78v.72a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-.85a4.49 4.49 0 0 0 5.56.92l-1.94-1.94L13 14a2 2 0 0 1-1.73-1H5.73a2 2 0 1 1-1.96-2.99l.47-4.16a2 2 0 0 1-1.22-2.12Zm8 8L5.27 5.98a2 2 0 0 1-.04 0l-.47 4.17A2 2 0 0 1 6 12h5c0-.1 0-.18.02-.27Zm.75-5.74.46 4.12 2.63 2.63A2 2 0 0 0 13.23 10l-.47-4.16A2 2 0 1 0 10.26 3H6.74a2 2 0 0 0-2.47-.86l.87.87a1 1 0 0 1 .86.86l.87.87A2 2 0 0 0 7 4h3a2 2 0 0 0 1.77 1.99Zm4.92 8.58.72.72a5.5 5.5 0 0 0-3.56-8.72l.12 1.03a4.5 4.5 0 0 1 2.72 6.97ZM12 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-9 7a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const CropInterimOff24Filled = /*#__PURE__*/createFluentIcon('CropInterimOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.06 1.06a2.49 2.49 0 0 0 1.26 3.47l-.82 5.31A2.5 2.5 0 1 0 6.5 17h7a2.5 2.5 0 0 0 3.16.72l1.8 1.8a4.98 4.98 0 0 1-5.95-.02h.84a.75.75 0 0 0-.1-1.5h-2.6a.75.75 0 0 0-.65.75v2.6c.05.37.37.65.75.65h.1a.75.75 0 0 0 .65-.75v-.63a6.48 6.48 0 0 0 8.04-.02l1.18 1.18a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm10 12.13c-.17.34-.28.73-.28 1.15H7v-.19a2.5 2.5 0 0 0-1.76-2.2l.8-5.16c.22-.05.42-.13.62-.23l6.63 6.63ZM7.19 4l1.5 1.5h3.3l.01.17a2.5 2.5 0 0 0 1.97 2.28l.52 3.35 1.8 1.8-.82-5.3A2.5 2.5 0 1 0 12.49 4h-5.3Zm13.07 13.07 1.16 1.16a6.5 6.5 0 0 0-4.74-9.12l.25 1.6a5 5 0 0 1 3.33 6.36Z\"]);\nexport const CropInterimOff24Regular = /*#__PURE__*/createFluentIcon('CropInterimOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.06 1.06a2.49 2.49 0 0 0 1.26 3.47l-.82 5.31A2.5 2.5 0 1 0 6.5 17h7a2.5 2.5 0 0 0 3.16.72l1.8 1.8a4.98 4.98 0 0 1-5.95-.02h.84a.75.75 0 0 0-.1-1.5h-2.6a.75.75 0 0 0-.65.75v2.6c.05.37.37.65.75.65h.1a.75.75 0 0 0 .65-.75v-.63a6.48 6.48 0 0 0 8.04-.02l1.18 1.18a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm10 12.13c-.17.34-.28.73-.28 1.15H7v-.19a2.5 2.5 0 0 0-1.76-2.2l.8-5.16c.22-.05.43-.13.62-.23l6.63 6.63Zm-8.78.15a1 1 0 0 1 .16.01l.08.02.13.04.1.05a1 1 0 0 1 .52.76l.01.12v.12a1 1 0 0 1-1 .88h-.12a1 1 0 0 1 0-2h.12ZM7.18 4l1.5 1.5h3.3l.01.17a2.5 2.5 0 0 0 1.97 2.28l.52 3.35 1.8 1.8-.82-5.3A2.5 2.5 0 1 0 12.5 4h-5.3Zm6.58 2.2a1 1 0 0 1 .61-1.69h.27l.08.02.15.05.1.06v-.01a1 1 0 0 1 .3 1.5l-.08.08-.1.1-.1.06-.09.04-.12.05-.17.04h-.25l-.08-.02-.09-.02-.1-.04-.1-.05-.08-.05-.12-.1-.03-.02Zm6.5 10.87 1.15 1.16a6.5 6.5 0 0 0-4.74-9.12l.25 1.6a5 5 0 0 1 3.33 6.36Z\"]);\nexport const CropSparkle24Filled = /*#__PURE__*/createFluentIcon('CropSparkle24Filled', \"24\", [\"M8.36 17A1.5 1.5 0 0 1 7 15.5V2.88A1 1 0 0 0 5 3v2H2.88A1 1 0 0 0 3 7h2v8.7A3.5 3.5 0 0 0 8.5 19h4.68l-.14-.04a1.54 1.54 0 0 1-.96-1.96H8.36ZM19 13.24l-.07-.2v-.02a1.54 1.54 0 0 0-1.93-.96V8.5c0-.78-.6-1.42-1.36-1.5H8V5h7.5A3.5 3.5 0 0 1 19 8.3v4.95Zm4.21-.68.62.2a.24.24 0 0 1 0 .46l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.37.13.24.24 0 0 1-.09-.12l-.2-.61a1.26 1.26 0 0 0-.8-.8l-.6-.2a.24.24 0 0 1 0-.46l.6-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8Zm-7.12 6.84a2.85 2.85 0 0 0-1.35-.95L13.36 18a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Z\"]);\nexport const CropSparkle24Regular = /*#__PURE__*/createFluentIcon('CropSparkle24Regular', \"24\", [\"M8.75 18.5h3.62a1.54 1.54 0 0 1-.29-1.5H8.61C7.7 16.91 7 16.16 7 15.24V2.65a.75.75 0 0 0-1.5.1V5.5H2.65a.75.75 0 0 0 .1 1.5H5.5v8.43a3.25 3.25 0 0 0 3.25 3.07Zm9.61-6.22.14.11V8.57a3.25 3.25 0 0 0-3.25-3.07H8V7h7.39c.9.08 1.61.83 1.61 1.75v3.32a1.55 1.55 0 0 1 1.36.21Zm4.85.3.62.2a.24.24 0 0 1 0 .45l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.37.13.24.24 0 0 1-.09-.12l-.2-.61a1.26 1.26 0 0 0-.8-.8l-.6-.2a.24.24 0 0 1 0-.46l.6-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8Zm-7.36 6.57a2.85 2.85 0 0 1 .69 1.11l.45 1.38a.54.54 0 0 0 1.02 0l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03l-1.38-.45a2.84 2.84 0 0 1-1.8-1.8L18 13.36a.54.54 0 0 0-1.03 0l-.45 1.38-.01.03a2.84 2.84 0 0 1-1.76 1.77l-1.38.44a.54.54 0 0 0 0 1.03l1.38.45c.42.14.8.37 1.11.69Z\"]);\nexport const Crown16Filled = /*#__PURE__*/createFluentIcon('Crown16Filled', \"16\", [\"M10.4 5.72 8.76 3.65a1 1 0 1 0-1.52 0L5.6 5.72a.5.5 0 0 1-.6.14L2.48 4.68a1 1 0 1 0-.9.82l1.3 6.5c.13.58.64 1 1.23 1h7.78c.6 0 1.1-.42 1.22-1l1.3-6.5h.09a1 1 0 1 0-.98-.82L11 5.86a.5.5 0 0 1-.6-.14ZM8 10a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const Crown16Regular = /*#__PURE__*/createFluentIcon('Crown16Regular', \"16\", [\"M8 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm2.4-4.28L8.76 3.65a1 1 0 1 0-1.52 0L5.6 5.72a.5.5 0 0 1-.6.14L2.48 4.68a1 1 0 1 0-.9.82l1.3 6.5c.13.58.64 1 1.23 1h7.78c.6 0 1.1-.42 1.22-1l1.3-6.5h.09a1 1 0 1 0-.98-.82L11 5.86a.5.5 0 0 1-.6-.14ZM8 4.3l1.62 2.04a1.5 1.5 0 0 0 1.81.42l1.88-.88-1.18 5.92a.25.25 0 0 1-.24.2H4.1a.25.25 0 0 1-.24-.2L2.69 5.88l1.88.88c.63.3 1.38.13 1.81-.42L8 4.3Z\"]);\nexport const Crown20Filled = /*#__PURE__*/createFluentIcon('Crown20Filled', \"20\", [\"M8.74 5.31 6.6 8.05a.5.5 0 0 1-.62.14L3.86 7.12a1.5 1.5 0 1 0-1.67.85L3.9 16c.12.58.63.99 1.22.99h9.78c.6 0 1.1-.41 1.22-1l1.7-8.03a1.5 1.5 0 1 0-1.67-.85L14 8.2a.5.5 0 0 1-.62-.14L11.26 5.3a1.5 1.5 0 1 0-2.53 0ZM10 14a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z\"]);\nexport const Crown20Regular = /*#__PURE__*/createFluentIcon('Crown20Regular', \"20\", [\"M11.5 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.74 5.31 6.6 8.05a.5.5 0 0 1-.62.14L3.86 7.12a1.5 1.5 0 1 0-1.67.85L3.9 16c.12.58.63.99 1.22.99h9.78c.6 0 1.1-.41 1.22-1l1.7-8.03a1.5 1.5 0 1 0-1.67-.85L14 8.2a.5.5 0 0 1-.62-.14L11.26 5.3a1.5 1.5 0 1 0-2.53 0Zm1.26 0 2.6 3.35a1.5 1.5 0 0 0 1.86.42l2.34-1.17-1.66 7.9a.25.25 0 0 1-.25.19H5.11a.25.25 0 0 1-.25-.2L3.2 7.91l2.34 1.17a1.5 1.5 0 0 0 1.86-.42L10 5.31Z\"]);\nexport const Crown24Filled = /*#__PURE__*/createFluentIcon('Crown24Filled', \"24\", [\"M14 5a2 2 0 0 1-.54 1.37l2.62 3.28c.07.1.2.12.3.07l2.66-1.33a2 2 0 1 1 2.4 1.56l-1.8 9.62A1.75 1.75 0 0 1 17.92 21H6.08c-.84 0-1.56-.6-1.72-1.43l-1.8-9.62a2 2 0 1 1 2.4-1.56l2.65 1.33c.1.05.24.02.3-.07l2.63-3.28A2 2 0 0 1 12 3a2 2 0 0 1 2 2Zm-2 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const Crown24Regular = /*#__PURE__*/createFluentIcon('Crown24Regular', \"24\", [\"M12 17a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm2-12a2 2 0 0 1-.54 1.37l2.62 3.28c.07.1.2.12.3.07l2.66-1.33a2 2 0 1 1 2.4 1.56l-1.8 9.62A1.75 1.75 0 0 1 17.92 21H6.08c-.84 0-1.56-.6-1.72-1.43l-1.8-9.62a2 2 0 1 1 2.4-1.56l2.65 1.33c.1.05.24.02.3-.07l2.63-3.28A2 2 0 0 1 12 3a2 2 0 0 1 2 2Zm-2 2h-.04L9.1 10.59c-.51.64-1.41.84-2.15.47l-2.81-1.4a2 2 0 0 1-.1.05l1.8 9.59c.03.11.13.2.25.2h11.84c.12 0 .22-.09.25-.2l1.8-9.59a2.02 2.02 0 0 1-.1-.06l-2.81 1.4c-.74.38-1.64.18-2.15-.46L12.04 7H12Z\"]);\nexport const CrownSubtract24Filled = /*#__PURE__*/createFluentIcon('CrownSubtract24Filled', \"24\", [\"M13.46 6.37A2 2 0 0 0 12 3a2 2 0 0 0-1.46 3.37L7.92 9.65c-.07.1-.2.12-.3.07L4.95 8.39A2.01 2.01 0 0 0 3 6a2 2 0 0 0-.44 3.95l1.8 9.62c.16.83.88 1.43 1.72 1.43h5.94a6.5 6.5 0 0 1 9.03-8.95l.4-2.1a2 2 0 1 0-2.41-1.56l-2.65 1.33a.25.25 0 0 1-.3-.07l-2.63-3.28ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9 0c0 .28.22.5.5.5h6a.5.5 0 0 0 0-1h-6a.5.5 0 0 0-.5.5Z\"]);\nexport const CrownSubtract24Regular = /*#__PURE__*/createFluentIcon('CrownSubtract24Regular', \"24\", [\"M13.46 6.37A2 2 0 0 0 12 3a2 2 0 0 0-1.46 3.37L7.92 9.65c-.07.1-.2.12-.3.07L4.95 8.39A2.01 2.01 0 0 0 3 6a2 2 0 0 0-.44 3.95l1.8 9.62c.16.83.88 1.43 1.72 1.43h5.94c-.3-.46-.53-.97-.7-1.5H6.07a.25.25 0 0 1-.25-.2L4.03 9.7l.1-.06 2.81 1.4c.74.38 1.64.18 2.15-.46L11.96 7a2.04 2.04 0 0 0 .08 0l2.87 3.59c.25.32.6.53.98.61.4-.1.83-.17 1.27-.2l2.71-1.35.1.06-.32 1.65c.5.18.97.41 1.4.7l.4-2.11a2 2 0 1 0-2.41-1.56l-2.65 1.33a.25.25 0 0 1-.3-.07l-2.63-3.28ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9 0c0 .28.22.5.5.5h6a.5.5 0 0 0 0-1h-6a.5.5 0 0 0-.5.5Z\"]);\nexport const Cube12Filled = /*#__PURE__*/createFluentIcon('Cube12Filled', \"12\", [\"M6.43 2.07a1.5 1.5 0 0 0-.86 0l-2.85.85a1 1 0 0 0-.72.95v4.26c0 .44.3.83.72.96l2.85.85c.28.08.58.08.86 0l2.85-.85a1 1 0 0 0 .72-.96V3.87a1 1 0 0 0-.72-.95l-2.85-.85Zm-2.4 2.77a.5.5 0 0 1 .63-.31L6 4.97l1.34-.44a.5.5 0 0 1 .32.95l-1.16.38V7a.5.5 0 0 1-1 0V5.86l-1.16-.38a.5.5 0 0 1-.31-.64Z\"]);\nexport const Cube12Regular = /*#__PURE__*/createFluentIcon('Cube12Regular', \"12\", [\"M4.03 4.84a.5.5 0 0 1 .63-.31L6 4.97l1.34-.44a.5.5 0 0 1 .32.95l-1.16.38V7a.5.5 0 0 1-1 0V5.86l-1.16-.38a.5.5 0 0 1-.31-.64Zm1.54-2.77c.28-.09.58-.09.86 0l2.85.85a1 1 0 0 1 .72.95v4.26a1 1 0 0 1-.72.96l-2.85.85a1.5 1.5 0 0 1-.86 0l-2.85-.85A1 1 0 0 1 2 8.13V3.87c0-.44.29-.83.7-.95l2.87-.85Zm.57.95a.5.5 0 0 0-.28 0L3 3.87v4.26l2.86.85c.1.02.19.02.28 0L9 8.13V3.87l-2.86-.85Z\"]);\nexport const Cube16Filled = /*#__PURE__*/createFluentIcon('Cube16Filled', \"16\", [\"M6.92 1.38a3 3 0 0 1 2.16 0l4.96 1.9c.58.23.96.79.96 1.4v6.63a1.5 1.5 0 0 1-.96 1.4l-4.96 1.91a3 3 0 0 1-2.16 0l-4.96-1.9a1.5 1.5 0 0 1-.96-1.4V4.68c0-.62.38-1.18.96-1.4l4.96-1.91ZM4.7 5.04a.5.5 0 0 0-.4.92l3.2 1.37v3.17a.5.5 0 0 0 1 0V7.33l3.2-1.37a.5.5 0 1 0-.4-.92L8 6.46 4.7 5.04Z\"]);\nexport const Cube16Regular = /*#__PURE__*/createFluentIcon('Cube16Regular', \"16\", [\"M4.7 5.04a.5.5 0 0 0-.4.92l3.2 1.37v3.17a.5.5 0 0 0 1 0V7.33l3.2-1.37a.5.5 0 1 0-.4-.92L8 6.46 4.7 5.04Zm4.38-3.66a3 3 0 0 0-2.16 0l-4.96 1.9A1.5 1.5 0 0 0 1 4.69v6.63c0 .62.38 1.18.96 1.4l4.96 1.91a3 3 0 0 0 2.16 0l4.96-1.9c.58-.23.96-.79.96-1.4V4.68a1.5 1.5 0 0 0-.96-1.4L9.08 1.38Zm-1.8.93a2 2 0 0 1 1.44 0l4.96 1.9c.2.08.32.27.32.48v6.62c0 .2-.13.4-.32.47l-4.96 1.9a2 2 0 0 1-1.44 0l-4.96-1.9A.5.5 0 0 1 2 11.3V4.7c0-.21.13-.4.32-.47l4.96-1.9Z\"]);\nexport const Cube20Filled = /*#__PURE__*/createFluentIcon('Cube20Filled', \"20\", [\"M8.7 2.48a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v7.64a1.5 1.5 0 0 1-.94 1.4l-5.76 2.3a3.5 3.5 0 0 1-2.6 0l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3Zm-3 3.56a.5.5 0 1 0-.4.92l4.2 1.86v4.68a.5.5 0 0 0 1 0V8.82l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9Z\"]);\nexport const Cube20Regular = /*#__PURE__*/createFluentIcon('Cube20Regular', \"20\", [\"M5.7 6.04a.5.5 0 1 0-.4.92l4.2 1.86v4.68a.5.5 0 0 0 1 0V8.82l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9Zm5.6-3.56a3.5 3.5 0 0 0-2.6 0l-5.76 2.3A1.5 1.5 0 0 0 2 6.18v7.64c0 .62.37 1.17.94 1.4l5.76 2.3a3.5 3.5 0 0 0 2.6 0l5.76-2.3c.57-.23.94-.78.94-1.4V6.18a1.5 1.5 0 0 0-.94-1.4l-5.76-2.3Zm-2.23.93a2.5 2.5 0 0 1 1.86 0l5.76 2.3a.5.5 0 0 1 .31.47v7.64a.5.5 0 0 1-.31.47l-5.76 2.3a2.5 2.5 0 0 1-1.86 0l-5.76-2.3a.5.5 0 0 1-.31-.47V6.18c0-.2.12-.4.31-.47l5.76-2.3Z\"]);\nexport const Cube24Filled = /*#__PURE__*/createFluentIcon('Cube24Filled', \"24\", [\"M13.4 2.51a3.75 3.75 0 0 0-2.8 0L3.1 5.55c-.67.27-1.1.91-1.1 1.62v9.66c0 .7.43 1.35 1.1 1.62l7.5 3.04c.9.36 1.9.36 2.8 0l7.5-3.04c.67-.27 1.1-.91 1.1-1.62V7.17c0-.71-.43-1.35-1.1-1.62l-7.5-3.04ZM6.06 7.98a.75.75 0 0 1 .97-.43L12 9.44l4.98-1.9a.75.75 0 1 1 .54 1.41l-4.77 1.8v5.5a.75.75 0 1 1-1.5 0v-5.5l-4.77-1.8a.75.75 0 0 1-.43-.97Z\"]);\nexport const Cube24Regular = /*#__PURE__*/createFluentIcon('Cube24Regular', \"24\", [\"M6.05 7.98a.75.75 0 0 1 .97-.43L12 9.44l4.98-1.9a.75.75 0 1 1 .54 1.41l-4.77 1.8v5.5a.75.75 0 1 1-1.5 0v-5.5l-4.77-1.8a.75.75 0 0 1-.43-.97Zm4.54-5.47c.9-.37 1.92-.37 2.82 0l7.5 3.04c.66.27 1.09.91 1.09 1.62v9.66c0 .7-.43 1.35-1.1 1.62l-7.5 3.04c-.9.36-1.9.36-2.8 0l-7.5-3.04c-.67-.27-1.1-.91-1.1-1.62V7.17c0-.71.43-1.35 1.1-1.62l7.5-3.04Zm2.26 1.4a2.25 2.25 0 0 0-1.7 0l-7.5 3.03a.25.25 0 0 0-.15.23v9.66c0 .1.06.19.16.23l7.5 3.04c.54.22 1.14.22 1.69 0l7.5-3.04c.09-.04.15-.13.15-.23V7.17c0-.1-.06-.2-.16-.23l-7.5-3.04Z\"]);\nexport const Cube32Filled = /*#__PURE__*/createFluentIcon('Cube32Filled', \"32\", [\"M13.85 2.76a6 6 0 0 1 4.3 0l9.93 3.81A3 3 0 0 1 30 9.37v13.26a3 3 0 0 1-1.92 2.8l-9.93 3.81a6 6 0 0 1-4.3 0l-9.93-3.81A3 3 0 0 1 2 22.63V9.37a3 3 0 0 1 1.92-2.8l9.93-3.81Zm-4.46 7.32a1 1 0 0 0-.78 1.84L15 14.66V21a1 1 0 0 0 2 0v-6.34l6.4-2.74a1 1 0 1 0-.8-1.84L16 12.91l-6.6-2.83Z\"]);\nexport const Cube32Regular = /*#__PURE__*/createFluentIcon('Cube32Regular', \"32\", [\"M9.4 10.08a1 1 0 0 0-.8 1.84l6.4 2.74V21a1 1 0 0 0 2 0v-6.34l6.4-2.74a1 1 0 0 0-.8-1.84L16 12.91l-6.6-2.83Zm8.75-7.32a6 6 0 0 0-4.3 0L3.92 6.57A3 3 0 0 0 2 9.37v13.26a3 3 0 0 0 1.92 2.8l9.93 3.81a6 6 0 0 0 4.3 0l9.93-3.81a3 3 0 0 0 1.92-2.8V9.37a3 3 0 0 0-1.92-2.8l-9.93-3.81Zm-3.59 1.86a4 4 0 0 1 2.88 0l9.92 3.82a1 1 0 0 1 .64.93v13.26a1 1 0 0 1-.64.93l-9.92 3.82a4 4 0 0 1-2.88 0l-9.92-3.82a1 1 0 0 1-.64-.93V9.37a1 1 0 0 1 .64-.93l9.92-3.82Z\"]);\nexport const Cube48Filled = /*#__PURE__*/createFluentIcon('Cube48Filled', \"48\", [\"M21.68 5.33c1.49-.6 3.15-.6 4.64 0l15 6A4.25 4.25 0 0 1 44 15.29v17.44c0 1.74-1.06 3.3-2.67 3.94l-15 6c-1.5.6-3.16.6-4.65 0l-15-6A4.25 4.25 0 0 1 4 32.72V15.28c0-1.74 1.06-3.3 2.67-3.94l15-6Zm-7.43 10.28a1.25 1.25 0 0 0-1 2.28l9.5 4.18v9.18a1.25 1.25 0 1 0 2.5 0v-9.18l9.5-4.18a1.25 1.25 0 0 0-1-2.28L24 19.88l-9.75-4.27Z\"]);\nexport const Cube48Regular = /*#__PURE__*/createFluentIcon('Cube48Regular', \"48\", [\"M14.25 15.6a1.25 1.25 0 0 0-1 2.3l9.5 4.17v9.18a1.25 1.25 0 0 0 2.5 0v-9.18l9.5-4.18a1.25 1.25 0 1 0-1-2.28L24 19.88l-9.75-4.27ZM26.32 5.34a6.25 6.25 0 0 0-4.64 0l-15 6A4.25 4.25 0 0 0 4 15.29v17.44c0 1.74 1.06 3.3 2.67 3.95l15 6c1.5.6 3.16.6 4.65 0l15-6A4.25 4.25 0 0 0 44 32.72V15.28c0-1.74-1.06-3.3-2.67-3.94l-15-6Zm-3.71 2.32c.9-.35 1.89-.35 2.78 0l15.01 6c.66.27 1.1.92 1.1 1.63v17.44c0 .71-.44 1.36-1.1 1.62l-15 6c-.9.36-1.9.36-2.8 0l-15-6c-.66-.26-1.1-.9-1.1-1.62V15.28c0-.71.44-1.36 1.1-1.62l15-6Z\"]);\nexport const CubeAdd20Filled = /*#__PURE__*/createFluentIcon('CubeAdd20Filled', \"20\", [\"M8.7 2.48a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v4.08a5.48 5.48 0 0 0-7.5.46v-1.9l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9a.5.5 0 1 0-.4.9l4.2 1.87v3.39a5.48 5.48 0 0 0 .58 5.56 3.5 3.5 0 0 1-1.38-.25l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3ZM17 18.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48Zm-2.15-6.1a.5.5 0 0 0-.85.36V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5a.5.5 0 0 0-.15-.35Z\"]);\nexport const CubeAdd20Regular = /*#__PURE__*/createFluentIcon('CubeAdd20Regular', \"20\", [\"M9.07 16.59c.13.05.26.1.4.12.16.38.36.73.6 1.06a3.5 3.5 0 0 1-1.37-.25l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v4.08a5.5 5.5 0 0 0-1-.66V6.18a.5.5 0 0 0-.31-.47l-5.76-2.3a2.5 2.5 0 0 0-1.86 0L3.31 5.7a.5.5 0 0 0-.31.47v7.64c0 .2.12.4.31.47l5.76 2.3ZM5.7 6.04a.5.5 0 1 0-.4.92l4.2 1.86v3.39a5.5 5.5 0 0 1 1-1.49v-1.9l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9ZM17 18.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48Zm-2.15-6.1a.5.5 0 0 0-.85.36V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5a.5.5 0 0 0-.15-.35Z\"]);\nexport const CubeArrowCurveDown20Filled = /*#__PURE__*/createFluentIcon('CubeArrowCurveDown20Filled', \"20\", [\"M1 5.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm6.4.9-.9.89V5.74A2.75 2.75 0 0 0 3.75 3H3.5a.5.5 0 1 0 0 1h.25c.97 0 1.75.78 1.75 1.74V7.3l-.9-.9a.5.5 0 0 0-.7.7l1.75 1.76a.5.5 0 0 0 .7 0L8.12 7.1a.5.5 0 1 0-.71-.7Zm3.6-.9c0 .78-.16 1.53-.46 2.2l3.76-1.66a.5.5 0 0 1 .4.91l-4.2 1.87v4.67a.5.5 0 0 1-1 0V9.27a5.49 5.49 0 0 1-7.5.46v4.08c0 .61.37 1.16.94 1.39l5.76 2.3a3.5 3.5 0 0 0 2.6 0l5.76-2.3c.57-.23.94-.78.94-1.4V6.18a1.5 1.5 0 0 0-.94-1.39l-5.76-2.3a3.5 3.5 0 0 0-1.38-.25A5.47 5.47 0 0 1 11 5.5Z\"]);\nexport const CubeArrowCurveDown20Regular = /*#__PURE__*/createFluentIcon('CubeArrowCurveDown20Regular', \"20\", [\"M1 5.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm6.4.89-.9.9V5.74A2.75 2.75 0 0 0 3.75 3H3.5a.5.5 0 1 0 0 1h.25c.97 0 1.75.78 1.75 1.74V7.3l-.9-.9a.5.5 0 0 0-.7.7l1.75 1.76a.5.5 0 0 0 .7 0L8.12 7.1a.5.5 0 1 0-.71-.71ZM2 9.73c.3.26.64.48 1 .66v3.42c0 .2.13.39.32.46l5.75 2.3c.6.24 1.26.24 1.86 0l5.76-2.3a.5.5 0 0 0 .31-.46V6.17a.5.5 0 0 0-.31-.46l-5.76-2.3a2.5 2.5 0 0 0-.4-.12 5.5 5.5 0 0 0-.6-1.06c.46-.01.93.07 1.37.25l5.76 2.3c.57.23.94.78.94 1.4v7.63a1.5 1.5 0 0 1-.94 1.39l-5.76 2.3a3.5 3.5 0 0 1-2.6 0l-5.76-2.3A1.5 1.5 0 0 1 2 13.8V9.74Zm8.54-2.02A5.5 5.5 0 0 1 9.5 9.27v4.22a.5.5 0 0 0 1 0V8.82l4.2-1.87a.5.5 0 1 0-.4-.91L10.54 7.7Z\"]);\nexport const CubeLink20Filled = /*#__PURE__*/createFluentIcon('CubeLink20Filled', \"20\", [\"M8.7 2.48a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v5.85a3.54 3.54 0 0 0-.5-.03h-4a3.5 3.5 0 0 0-2.73 5.68c-.69.16-1.41.1-2.07-.16l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3Zm-3 3.56a.5.5 0 1 0-.4.92l4.2 1.86v4.68a.5.5 0 0 0 1 0V8.82l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9ZM13.5 13a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 1 0 0 1h.5a1.5 1.5 0 0 1 0 3H17a.5.5 0 1 0 0 1h.5a2.5 2.5 0 0 0 0-5H17Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const CubeLink20Regular = /*#__PURE__*/createFluentIcon('CubeLink20Regular', \"20\", [\"M5.04 6.3a.5.5 0 0 1 .66-.26L10 7.95l4.3-1.9a.5.5 0 1 1 .4.9l-4.2 1.87v4.68a.5.5 0 0 1-1 0V8.82L5.3 6.96a.5.5 0 0 1-.26-.66ZM8.7 2.48a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v5.85a3.54 3.54 0 0 0-.5-.03H17V6.18a.5.5 0 0 0-.31-.47l-5.76-2.3a2.5 2.5 0 0 0-1.86 0L3.31 5.7a.5.5 0 0 0-.31.47v7.64c0 .2.12.4.31.47l5.76 2.3c.37.15.77.2 1.16.17.13.33.31.65.54.92-.69.16-1.41.1-2.07-.16l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3ZM13.5 13a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 1 0 0 1h.5a1.5 1.5 0 0 1 0 3H17a.5.5 0 1 0 0 1h.5a2.5 2.5 0 0 0 0-5H17Zm-3.5 2a.5.5 0 1 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const CubeMultiple20Filled = /*#__PURE__*/createFluentIcon('CubeMultiple20Filled', \"20\", [\"M8.2 2.51a5 5 0 0 1 3.6 0l4.24 1.64c.58.22.96.77.96 1.4v.14a2.5 2.5 0 0 0-.6-.34l-4.96-1.9a4 4 0 0 0-2.88 0L3.6 5.35c-.22.09-.42.2-.6.34v-.14c0-.63.38-1.18.96-1.4L8.21 2.5Zm2.88 1.87a3 3 0 0 0-2.16 0l-4.96 1.9A1.5 1.5 0 0 0 3 7.69v6.63c0 .62.38 1.18.96 1.4l4.96 1.91a3 3 0 0 0 2.16 0l4.96-1.9c.58-.23.96-.79.96-1.4V7.68a1.5 1.5 0 0 0-.96-1.4l-4.96-1.91ZM6.04 8.3a.5.5 0 0 1 .66-.26L10 9.46l3.3-1.42a.5.5 0 0 1 .4.92l-3.2 1.37v3.17a.5.5 0 1 1-1 0v-3.17L6.3 8.96a.5.5 0 0 1-.26-.66Z\"]);\nexport const CubeMultiple20Regular = /*#__PURE__*/createFluentIcon('CubeMultiple20Regular', \"20\", [\"M8.2 2.51a5 5 0 0 1 3.6 0l4.24 1.64c.58.22.96.77.96 1.4v.14a2.5 2.5 0 0 0-.6-.34l-4.96-1.9a4 4 0 0 0-2.88 0L3.6 5.34c-.22.09-.42.2-.6.34v-.14c0-.63.38-1.18.96-1.4L8.21 2.5Zm-2.16 5.8a.5.5 0 0 1 .66-.27L10 9.46l3.3-1.42a.5.5 0 0 1 .4.92l-3.2 1.37v3.17a.5.5 0 0 1-1 0v-3.17L6.3 8.96a.5.5 0 0 1-.26-.66Zm2.88-3.93a3 3 0 0 1 2.16 0l4.96 1.9c.58.23.96.79.96 1.4v6.63a1.5 1.5 0 0 1-.96 1.4l-4.96 1.91a3 3 0 0 1-2.16 0l-4.96-1.9a1.5 1.5 0 0 1-.96-1.4V7.68c0-.62.38-1.18.96-1.4l4.96-1.91Zm1.8.93a2 2 0 0 0-1.44 0L4.32 7.22a.5.5 0 0 0-.32.47v6.62c0 .21.13.4.32.47l4.96 1.9a2 2 0 0 0 1.44 0l4.96-1.9a.5.5 0 0 0 .32-.47V7.7a.5.5 0 0 0-.32-.47l-4.96-1.9Z\"]);\nexport const CubeMultiple24Filled = /*#__PURE__*/createFluentIcon('CubeMultiple24Filled', \"24\", [\"M10.52 4.25a4.5 4.5 0 0 1 3.07.04l5.91 2.1a3 3 0 0 1 1 .59v-.42a2 2 0 0 0-1.33-1.88L14 2.85a6 6 0 0 0-4.02 0L4.83 4.68A2 2 0 0 0 3.5 6.56v.42a3 3 0 0 1 1-.6l5.91-2.1c.04 0 .07-.02.1-.03Zm2.73.98a3.75 3.75 0 0 0-2.5 0l-5.92 2.1A2 2 0 0 0 3.5 9.2v8.24a2 2 0 0 0 1.33 1.88l5.92 2.1c.8.29 1.7.29 2.5 0l5.92-2.1a2 2 0 0 0 1.33-1.88V9.2a2 2 0 0 0-1.33-1.88l-5.92-2.1Zm-6.8 4.88c.14-.39.57-.6.96-.45L12 11.29l4.6-1.63a.75.75 0 0 1 .5 1.4l-4.35 1.55v4.72a.75.75 0 0 1-1.5 0v-4.72l-4.34-1.54a.75.75 0 0 1-.46-.96Z\"]);\nexport const CubeMultiple24Regular = /*#__PURE__*/createFluentIcon('CubeMultiple24Regular', \"24\", [\"M10.52 4.25a4.5 4.5 0 0 1 3.07.04l5.91 2.1a3 3 0 0 1 1 .59v-.42a2 2 0 0 0-1.33-1.88L14 2.85a6 6 0 0 0-4.02 0L4.83 4.68A2 2 0 0 0 3.5 6.56v.42a3 3 0 0 1 1-.6l5.91-2.1c.04 0 .07-.02.1-.03Zm-4.07 5.86c.14-.39.57-.6.96-.45L12 11.28l4.6-1.62a.75.75 0 0 1 .5 1.4l-4.35 1.55v4.72a.75.75 0 0 1-1.5 0v-4.72l-4.34-1.54a.75.75 0 0 1-.46-.96Zm4.3-4.88c.8-.29 1.7-.29 2.5 0l5.92 2.1A2 2 0 0 1 20.5 9.2v8.24a2 2 0 0 1-1.33 1.88l-5.92 2.1c-.8.29-1.7.29-2.5 0l-5.92-2.1a2 2 0 0 1-1.33-1.88V9.2a2 2 0 0 1 1.33-1.88l5.92-2.1Zm2 1.41a2.25 2.25 0 0 0-1.5 0l-5.92 2.1a.5.5 0 0 0-.33.47v8.24c0 .2.13.4.33.47l5.92 2.1c.48.17 1.02.17 1.5 0l5.92-2.1a.5.5 0 0 0 .33-.47V9.2a.5.5 0 0 0-.33-.47l-5.92-2.1Z\"]);\nexport const CubeQuick16Filled = /*#__PURE__*/createFluentIcon('CubeQuick16Filled', \"16\", [\"M9.93 4.14c.36-.19.78-.19 1.14 0l2.25 1.15c.42.22.68.65.68 1.11v3.2c0 .46-.26.9-.68 1.1l-2.25 1.16c-.36.18-.78.18-1.14 0l-2.25-1.15A1.25 1.25 0 0 1 7 9.59V6.4c0-.46.26-.9.68-1.1l2.25-1.16ZM8.55 6.78a.5.5 0 0 0 .23.67l1.22.6V9.5a.5.5 0 0 0 1 0V8.06l1.22-.61a.5.5 0 1 0-.44-.9l-1.28.64-1.28-.64a.5.5 0 0 0-.67.23ZM1.5 7.5a.5.5 0 0 0 0 1h3a.5.5 0 1 0 0-1h-3Zm.5-2c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm.5 4.5a.5.5 0 0 0 0 1h3a.5.5 0 1 0 0-1h-3Z\"]);\nexport const CubeQuick16Regular = /*#__PURE__*/createFluentIcon('CubeQuick16Regular', \"16\", [\"M11.07 4.14a1.25 1.25 0 0 0-1.14 0L7.68 5.29C7.26 5.51 7 5.94 7 6.4v3.2c0 .46.26.9.68 1.1l2.25 1.16c.36.18.78.18 1.14 0l2.25-1.15c.42-.22.68-.65.68-1.12V6.4c0-.46-.26-.9-.68-1.1l-2.25-1.16Zm-.68.89a.25.25 0 0 1 .22 0l2.25 1.15c.09.04.14.13.14.22v3.2c0 .09-.05.17-.14.22l-2.25 1.15a.25.25 0 0 1-.22 0L8.14 9.82A.25.25 0 0 1 8 9.59V6.4c0-.09.05-.18.14-.22l2.25-1.15ZM9.22 6.55a.5.5 0 0 0-.44.9l1.22.6V9.5a.5.5 0 0 0 1 0V8.06l1.22-.61a.5.5 0 1 0-.44-.9l-1.28.64-1.28-.64ZM1.5 7.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm.5-2c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm.5 4.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const CubeQuick20Filled = /*#__PURE__*/createFluentIcon('CubeQuick20Filled', \"20\", [\"M12.81 4.67a1.5 1.5 0 0 1 1.38 0l3 1.54c.5.26.81.77.81 1.33v3.92a1.5 1.5 0 0 1-.81 1.33l-3 1.54a1.5 1.5 0 0 1-1.38 0l-3-1.54A1.5 1.5 0 0 1 9 11.46V7.54c0-.56.31-1.07.81-1.33l3-1.54Zm-1.76 3.1a.5.5 0 0 0 .23.68L13 9.3v2.2a.5.5 0 0 0 1 0V9.3l1.72-.86a.5.5 0 1 0-.44-.9l-1.78.9-1.78-.9a.5.5 0 0 0-.67.23ZM3.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-1 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm1 3a.5.5 0 1 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const CubeQuick20Regular = /*#__PURE__*/createFluentIcon('CubeQuick20Regular', \"20\", [\"M13.27 5.56a.5.5 0 0 1 .46 0l3 1.54a.5.5 0 0 1 .27.44v3.92a.5.5 0 0 1-.27.44l-3 1.54a.5.5 0 0 1-.46 0l-3-1.54a.5.5 0 0 1-.27-.44V7.54c0-.18.1-.36.27-.44l3-1.54Zm.92-.9a1.5 1.5 0 0 0-1.38 0l-3 1.55c-.5.26-.81.77-.81 1.33v3.92c0 .56.31 1.07.81 1.33l3 1.54c.43.22.95.22 1.38 0l3-1.54c.5-.25.81-.77.81-1.33V7.54a1.5 1.5 0 0 0-.81-1.33l-3-1.54ZM3 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm-1 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm1 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm8.05-4.72a.5.5 0 0 1 .67-.23l1.78.9 1.78-.9a.5.5 0 1 1 .44.9L14 9.3v2.19a.5.5 0 1 1-1 0V9.3l-1.72-.85a.5.5 0 0 1-.23-.67Z\"]);\nexport const CubeQuick24Filled = /*#__PURE__*/createFluentIcon('CubeQuick24Filled', \"24\", [\"M15.6 6.22a2 2 0 0 1 1.8 0l3.5 1.76A2 2 0 0 1 22 9.77v4.46a2 2 0 0 1-1.1 1.79l-3.5 1.77a2 2 0 0 1-1.8 0l-3.5-1.77a2 2 0 0 1-1.1-1.79V9.77a2 2 0 0 1 1.1-1.79l3.5-1.76Zm-2.02 4.19a.75.75 0 0 0 .33 1l1.84.94v1.9a.75.75 0 1 0 1.5 0v-1.9l1.84-.94a.75.75 0 0 0-.68-1.33l-1.91.97-1.91-.97a.75.75 0 0 0-1 .33ZM4.75 7a.75.75 0 1 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm-2 4a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM4 15.75c0-.42.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const CubeQuick24Regular = /*#__PURE__*/createFluentIcon('CubeQuick24Regular', \"24\", [\"M16.27 7.55a.5.5 0 0 1 .46 0l3.5 1.77a.5.5 0 0 1 .27.45v4.46a.5.5 0 0 1-.27.45l-3.5 1.77a.5.5 0 0 1-.46 0l-3.5-1.77a.5.5 0 0 1-.27-.45V9.77c0-.19.1-.36.27-.45l3.5-1.77Zm1.13-1.33a2 2 0 0 0-1.8 0l-3.5 1.76A2 2 0 0 0 11 9.77v4.46a2 2 0 0 0 1.1 1.79l3.5 1.77a2 2 0 0 0 1.8 0l3.5-1.77a2 2 0 0 0 1.1-1.79V9.77a2 2 0 0 0-1.1-1.79l-3.5-1.76ZM4 7.74c0-.4.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 4 7.74Zm-2 4c0-.4.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75ZM4.75 15a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm8.83-4.59a.75.75 0 0 1 1.01-.32l1.91.97 1.91-.97a.75.75 0 1 1 .68 1.33l-1.84.94v1.9a.75.75 0 0 1-1.5 0v-1.9l-1.84-.94a.75.75 0 0 1-.33-1Z\"]);\nexport const CubeQuick28Filled = /*#__PURE__*/createFluentIcon('CubeQuick28Filled', \"28\", [\"M17.61 7.2a2 2 0 0 1 1.78 0l4.5 2.23a2 2 0 0 1 1.11 1.8v5.55a2 2 0 0 1-1.11 1.79l-4.5 2.22a2 2 0 0 1-1.78 0l-4.5-2.22a2 2 0 0 1-1.11-1.8v-5.55a2 2 0 0 1 1.11-1.79l4.5-2.22Zm-2.52 4.7c-.2.36-.06.81.3 1l2.36 1.3v3.05a.75.75 0 0 0 1.5 0V14.2l2.36-1.3a.75.75 0 0 0-.72-1.3l-2.39 1.3-2.4-1.3a.75.75 0 0 0-1 .3ZM4.75 8.5a.75.75 0 1 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Zm-2 4.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5ZM4 18.25c0-.41.34-.75.75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z\"]);\nexport const CubeQuick28Regular = /*#__PURE__*/createFluentIcon('CubeQuick28Regular', \"28\", [\"M18.72 8.55a.5.5 0 0 0-.44 0l-4.5 2.23a.5.5 0 0 0-.28.44v5.56c0 .19.1.36.28.45l4.5 2.22c.14.07.3.07.44 0l4.5-2.22a.5.5 0 0 0 .28-.45v-5.56a.5.5 0 0 0-.28-.44l-4.5-2.23Zm-1.1-1.34a2 2 0 0 1 1.77 0l4.5 2.22a2 2 0 0 1 1.11 1.8v5.55a2 2 0 0 1-1.11 1.79l-4.5 2.22a2 2 0 0 1-1.78 0l-4.5-2.22a2 2 0 0 1-1.11-1.8v-5.55a2 2 0 0 1 1.11-1.79l4.5-2.22ZM4 9.25c0-.41.34-.75.75-.75h5a.75.75 0 0 1 0 1.5h-5A.75.75 0 0 1 4 9.25Zm-2 4.5c0-.41.34-.75.75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Zm2.75 3.75a.75.75 0 0 0 0 1.5h5a.75.75 0 1 0 0-1.5h-5Zm11.36-5.9a.75.75 0 0 0-.72 1.3l2.36 1.3v3.05a.75.75 0 1 0 1.5 0V14.2l2.36-1.3a.75.75 0 1 0-.72-1.3l-2.39 1.3-2.4-1.3Z\"]);\nexport const CubeRotate20Filled = /*#__PURE__*/createFluentIcon('CubeRotate20Filled', \"20\", [\"M8.53 2.63c.93-.43 2-.43 2.94 0l4.66 2.15c.53.24.87.78.87 1.36V8h-1a1.5 1.5 0 0 0-.81 2.76A10.54 10.54 0 0 1 9.99 12c-2.1 0-3.92-.5-5.18-1.24A1.5 1.5 0 0 0 4 8H3V6.14c0-.58.34-1.12.87-1.36l4.66-2.15ZM6.7 6.54a.5.5 0 0 0-.4.92l3.2 1.37v1.67a.5.5 0 1 0 1 0V8.83l3.2-1.37a.5.5 0 1 0-.4-.92L10 7.96 6.7 6.54Zm8.8 2.96c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 .5.5V12a.5.5 0 0 1-1 0v-.98a6.2 6.2 0 0 1-1.64 1.37A12.4 12.4 0 0 1 10 14a12.4 12.4 0 0 1-6.36-1.61A6.2 6.2 0 0 1 2 11.02V12a.5.5 0 0 1-1 0V9.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 1 0 1H2.48a4.12 4.12 0 0 0 .92 1 6.57 6.57 0 0 0 .76.54c.4.25.87.47 1.37.67 1.27.5 2.8.8 4.47.8s3.2-.3 4.47-.8a8.67 8.67 0 0 0 2.13-1.2 5.24 5.24 0 0 0 .92-1H16a.5.5 0 0 1-.5-.5ZM10 15c-2.66 0-5.16-.67-7-1.83v.7c0 .58.34 1.1.87 1.35l4.66 2.15c.93.43 2 .43 2.94 0l4.66-2.15c.53-.24.87-.77.87-1.36v-.69A13.32 13.32 0 0 1 10 15Z\"]);\nexport const CubeRotate20Regular = /*#__PURE__*/createFluentIcon('CubeRotate20Regular', \"20\", [\"M8.95 3.53a2.5 2.5 0 0 1 2.1 0L15.7 5.7a.5.5 0 0 1 .29.45V8h1V6.14a1.5 1.5 0 0 0-.87-1.36l-4.66-2.15a3.5 3.5 0 0 0-2.94 0L3.87 4.78A1.5 1.5 0 0 0 3 6.14V8h1V6.14c0-.2.11-.37.29-.45l4.66-2.16ZM3.4 11a6.46 6.46 0 0 0 .76.54A11.4 11.4 0 0 0 10 13a11.4 11.4 0 0 0 6-1.56 6.46 6.46 0 0 0 1-.8c.2-.21.38-.42.52-.64H16a.5.5 0 0 1 0-1h2.5a.5.5 0 0 1 .5.5V12a.5.5 0 0 1-1 0v-.98a6.2 6.2 0 0 1-1.64 1.37l-.36.21c-1.6.87-3.7 1.4-6 1.4a12.67 12.67 0 0 1-6.36-1.61A6.2 6.2 0 0 1 2 11.02V12a.5.5 0 0 1-1 0V9.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 1 0 1H2.48a4.12 4.12 0 0 0 .92 1Zm.6 2.72v.14c0 .2.11.37.29.45l4.66 2.16c.67.3 1.43.3 2.1 0l4.66-2.16a.5.5 0 0 0 .29-.45v-.14a10 10 0 0 0 1-.55v.7a1.5 1.5 0 0 1-.87 1.35l-4.66 2.15c-.93.43-2 .43-2.94 0l-4.66-2.15A1.5 1.5 0 0 1 3 13.86v-.69c.31.2.65.39 1 .55ZM6.04 6.8a.5.5 0 0 1 .66-.26L10 7.96l3.3-1.42a.5.5 0 0 1 .4.92l-3.2 1.37V11a.5.5 0 1 1-1 0V8.83L6.3 7.46a.5.5 0 0 1-.26-.66Z\"]);\nexport const CubeSync20Filled = /*#__PURE__*/createFluentIcon('CubeSync20Filled', \"20\", [\"M8.7 2.48a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v4.08a5.48 5.48 0 0 0-7.5.46v-1.9l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9a.5.5 0 1 0-.4.9l4.2 1.87v3.39a5.48 5.48 0 0 0 .58 5.56 3.5 3.5 0 0 1-1.38-.25l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3ZM10 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 1 1 0-1h.47a2 2 0 0 0-2.38.34.5.5 0 1 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 1 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const CubeSync20Regular = /*#__PURE__*/createFluentIcon('CubeSync20Regular', \"20\", [\"M5.7 6.04a.5.5 0 1 0-.4.92l4.2 1.86v3.39a5.5 5.5 0 0 1 1-1.49v-1.9l4.2-1.86a.5.5 0 1 0-.4-.92L10 7.95l-4.3-1.9ZM9.07 16.6c.13.05.26.1.4.12.16.38.36.73.6 1.06a3.5 3.5 0 0 1-1.37-.25l-5.76-2.3a1.5 1.5 0 0 1-.94-1.4V6.18c0-.62.37-1.17.94-1.4l5.76-2.3a3.5 3.5 0 0 1 2.6 0l5.76 2.3c.57.23.94.78.94 1.4v4.08a5.5 5.5 0 0 0-1-.66V6.18a.5.5 0 0 0-.31-.47l-5.76-2.3a2.5 2.5 0 0 0-1.86 0L3.31 5.7a.5.5 0 0 0-.31.47v7.64c0 .2.12.4.31.47l5.76 2.3Zm.93-2.1a4.5 4.5 0 1 0 9 .01 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.23.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 1 1 0-1h.47a2 2 0 0 0-2.38.35.5.5 0 1 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.54a3 3 0 0 1-2.62-.18V17a.5.5 0 1 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const CubeSync24Filled = /*#__PURE__*/createFluentIcon('CubeSync24Filled', \"24\", [\"M13.4 2.51a3.75 3.75 0 0 0-2.8 0L3.1 5.55c-.67.27-1.1.91-1.1 1.62v9.66c0 .71.43 1.35 1.1 1.62l7.5 3.04c.62.25 1.3.33 1.96.23a6.47 6.47 0 0 1-1.31-6.01v-4.95l-4.77-1.8a.75.75 0 0 1 .54-1.41L12 9.45l4.98-1.9a.75.75 0 1 1 .54 1.4l-4.77 1.81v2.3a6.48 6.48 0 0 1 9.25-.25V7.17c0-.7-.43-1.35-1.1-1.62l-7.5-3.04Zm-1.4 15a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm8.5-3.5c.28 0 .5.21.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.03.5.5 0 0 1-.8-.59 3.5 3.5 0 0 1 5.33-.4v-.55c0-.28.22-.5.5-.5ZM15 19.94v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 1 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 0 1 .77.65 3.5 3.5 0 0 1-5.18.19Z\"]);\nexport const CubeSync24Regular = /*#__PURE__*/createFluentIcon('CubeSync24Regular', \"24\", [\"M6.05 7.99a.75.75 0 0 1 .97-.44L12 9.45l4.98-1.9a.75.75 0 1 1 .54 1.4l-4.77 1.81v2.3a6.49 6.49 0 0 0-1.5 2.65v-4.95l-4.77-1.8a.75.75 0 0 1-.43-.97Zm14.45-.82v4.56c.55.29 1.06.65 1.5 1.08V7.17c0-.7-.43-1.35-1.1-1.62l-7.5-3.04a3.75 3.75 0 0 0-2.8 0L3.1 5.55c-.67.27-1.1.91-1.1 1.62v9.66c0 .71.43 1.35 1.1 1.62l7.5 3.04c.62.25 1.3.33 1.96.23a6.5 6.5 0 0 1-.96-1.5c-.15-.02-.3-.06-.45-.12l-7.5-3.04a.25.25 0 0 1-.15-.23V7.17c0-.1.06-.19.16-.23l7.5-3.04a2.25 2.25 0 0 1 1.69 0l7.5 3.04c.09.04.15.13.15.23ZM12 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm8.5-3.5c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.04.5.5 0 0 1-.8-.59 3.5 3.5 0 0 1 5.33-.4v-.55c0-.28.22-.5.5-.5ZM15 19.95v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 1 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 0 1 .77.65 3.5 3.5 0 0 1-5.18.19Z\"]);\nexport const CubeTree20Filled = /*#__PURE__*/createFluentIcon('CubeTree20Filled', \"20\", [\"M9.57 2.07c.28-.09.58-.09.86 0l2.85.85a1 1 0 0 1 .72.95v4.26a1 1 0 0 1-.72.96l-2.79.83a.5.5 0 0 1 .01.08v1H12a2 2 0 0 1 2 2v.05a2.5 2.5 0 1 1-1 0V13a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v.05a2.5 2.5 0 1 1-1 0V13c0-1.1.9-2 2-2h1.5v-1a.5.5 0 0 1 0-.08l-2.78-.83A1 1 0 0 1 6 8.13V3.87a1 1 0 0 1 .72-.95l2.85-.85Zm-.91 2.46a.5.5 0 0 0-.32.95l1.16.38V7a.5.5 0 0 0 1 0V5.86l1.16-.38a.5.5 0 1 0-.32-.95L10 4.97l-1.34-.44Z\"]);\nexport const CubeTree20Regular = /*#__PURE__*/createFluentIcon('CubeTree20Regular', \"20\", [\"M8.66 4.53a.5.5 0 0 0-.32.95l1.16.38V7a.5.5 0 0 0 1 0V5.86l1.16-.38a.5.5 0 1 0-.32-.95L10 4.97l-1.34-.44Zm1.77-2.46a1.5 1.5 0 0 0-.86 0l-2.86.85a.99.99 0 0 0-.71.95v4.26c0 .44.3.83.72.96l2.79.83a.5.5 0 0 0-.01.08v1H8a2 2 0 0 0-2 2v.05a2.5 2.5 0 1 0 1 0V13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.05a2.5 2.5 0 1 0 1 0V13a2 2 0 0 0-2-2h-1.5v-1a.5.5 0 0 0 0-.08l2.78-.83a1 1 0 0 0 .72-.96V3.87a1 1 0 0 0-.72-.95l-2.85-.85Zm-.57.95a.5.5 0 0 1 .28 0l2.86.85v4.26l-2.86.85a.5.5 0 0 1-.28 0L7 8.13V3.87l2.86-.85ZM5 15.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm8.5-1.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const CubeTree24Filled = /*#__PURE__*/createFluentIcon('CubeTree24Filled', \"24\", [\"M11.76 2.04a.75.75 0 0 1 .48 0l3.75 1.25c.3.1.51.39.51.71v5c0 .32-.2.6-.51.71l-3.24 1.08V13h1.75c1.24 0 2.25 1 2.25 2.25v.84a3 3 0 1 1-1.5 0v-.84a.75.75 0 0 0-.75-.75h-5a.75.75 0 0 0-.75.75v.84a3 3 0 1 1-1.5 0v-.84c0-1.24 1-2.25 2.25-2.25h1.75v-2.2L8.01 9.7A.75.75 0 0 1 7.5 9V4c0-.32.2-.6.51-.71l3.75-1.25ZM9.8 5.5c-.13.4.08.82.47.95l.99.33v.96a.75.75 0 0 0 1.5 0v-.96l.99-.33a.75.75 0 0 0-.48-1.42L12 5.46l-1.26-.42a.75.75 0 0 0-.95.47Z\"]);\nexport const CubeTree24Regular = /*#__PURE__*/createFluentIcon('CubeTree24Regular', \"24\", [\"M9.79 5.51c.13-.39.55-.6.95-.47l1.26.42 1.26-.42a.75.75 0 0 1 .48 1.42l-.99.33v.96a.75.75 0 0 1-1.5 0v-.96l-.99-.33a.75.75 0 0 1-.47-.95Zm2.45-3.47a.75.75 0 0 0-.48 0L8.01 3.29c-.3.1-.51.39-.51.71v5c0 .32.2.6.51.71l3.24 1.08V13H9.5c-1.24 0-2.25 1-2.25 2.25v.84a3 3 0 1 0 1.5 0v-.84c0-.41.34-.75.75-.75h5c.41 0 .75.34.75.75v.84a3 3 0 1 0 1.5 0v-.84c0-1.24-1-2.25-2.25-2.25h-1.75v-2.2l3.24-1.09c.3-.1.51-.39.51-.71V4c0-.32-.2-.6-.51-.71l-3.75-1.25ZM9 8.46V4.54l3-1 3 1v3.92l-3 1-3-1ZM8 17.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm6.5 1.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const CurrencyDollarEuro16Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro16Filled', \"16\", [\"M4.75 2a.75.75 0 0 0-.75.75v.35c-1.15.33-2 1.4-2 2.65v.04c0 1.1.65 2.1 1.67 2.55L4 8.5v2.75c-.3-.23-.5-.6-.5-1v-.6a.75.75 0 0 0-1.5 0v.6c0 1.26.85 2.32 2 2.65v.36a.75.75 0 1 0 1.5 0v-.36a2.78 2.78 0 0 0 .34-5.23L5.5 7.5V4.75c.3.23.5.6.5 1v.62a.75.75 0 1 0 1.5 0v-.62c0-1.26-.84-2.32-2-2.65v-.35A.75.75 0 0 0 4.75 2ZM3.5 5.75c0-.4.2-.77.5-1v2.06c-.31-.24-.5-.62-.5-1.02v-.04Zm2 5.48V9.2c.31.24.5.62.5 1.03 0 .41-.2.78-.5 1.01Zm5-3.23h.75a.75.75 0 0 0 0-1.5h-.55c.11-.42.28-.8.47-1.1.4-.65.87-.9 1.26-.9.14 0 .28.05.38.11a.75.75 0 1 0 .88-1.2c-.38-.28-.84-.4-1.26-.4-1.09 0-1.96.69-2.53 1.59-.34.54-.6 1.19-.75 1.9h-.4a.75.75 0 1 0 0 1.5H9c0 .34.02.67.07 1h-.32a.75.75 0 1 0 0 1.5h.7c.12.32.28.63.45.9.57.9 1.44 1.6 2.53 1.6.4 0 .88-.1 1.28-.41a.75.75 0 1 0-.92-1.19c-.07.06-.2.1-.36.1-.39 0-.86-.25-1.26-.9a3.22 3.22 0 0 1-.06-.1h.14a.75.75 0 1 0 0-1.5h-.67a5.86 5.86 0 0 1-.08-1Z\"]);\nexport const CurrencyDollarEuro16Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro16Regular', \"16\", [\"M4.5 2a.5.5 0 0 0-.5.5v.33a2.7 2.7 0 0 0-2 2.6v.1c0 1.1.65 2.1 1.65 2.55l.35.16v3.87a1.7 1.7 0 0 1-1-1.55v-.72a.5.5 0 0 0-1 0v.72c0 1.25.85 2.3 2 2.61v.34a.5.5 0 0 0 1 0v-.26a2.7 2.7 0 0 0 2.4-2.69v-.09c0-1.1-.64-2.1-1.65-2.54L5 7.59V3.76c.8.14 1.4.84 1.4 1.67v.74a.5.5 0 0 0 1 0v-.74A2.7 2.7 0 0 0 5 2.75V2.5a.5.5 0 0 0-.5-.5ZM3 5.43c0-.68.41-1.28 1-1.55v3.26c-.61-.3-1-.93-1-1.61v-.1Zm2 6.8V8.69l.34.16c.65.29 1.06.93 1.06 1.63v.09c0 .84-.6 1.53-1.4 1.68ZM9.07 9A7.07 7.07 0 0 1 9 8h-.5a.5.5 0 0 1 0-1h.57c.13-.94.45-1.8.91-2.47C10.6 3.63 11.5 3 12.56 3c.4 0 .85.12 1.22.36a.5.5 0 0 1-.56.83 1.22 1.22 0 0 0-.66-.19c-.63 0-1.26.38-1.75 1.1-.35.51-.6 1.17-.73 1.91h.42a.5.5 0 0 1 0 1H10c0 .35.03.68.08 1h.42a.5.5 0 1 1 0 1h-.15c.12.33.28.64.46.9.5.72 1.12 1.1 1.75 1.1.25 0 .49-.06.65-.18a.5.5 0 0 1 .58.82c-.38.26-.84.36-1.23.36-1.06 0-1.96-.63-2.58-1.54A5.45 5.45 0 0 1 9.3 10h-.8a.5.5 0 0 1 0-1h.58Z\"]);\nexport const CurrencyDollarEuro20Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro20Filled', \"20\", [\"M5.5 2a.75.75 0 0 0-.75.75v.33A3.5 3.5 0 0 0 2 6.5v.28c0 1.47.85 2.8 2.17 3.42l.58.27v4.87a2 2 0 0 1-1.25-1.86V12.4a.75.75 0 0 0-1.5 0v1.08a3.5 3.5 0 0 0 2.75 3.42v.35a.75.75 0 0 0 1.5 0v-.35A3.5 3.5 0 0 0 9 13.48v-.27c0-1.46-.84-2.8-2.17-3.42l-.58-.27V4.64A2 2 0 0 1 7.5 6.5v1.1a.75.75 0 0 0 1.5 0V6.5a3.5 3.5 0 0 0-2.75-3.42v-.33A.75.75 0 0 0 5.5 2Zm-2 4.5a2 2 0 0 1 1.25-1.86v4.18A2.28 2.28 0 0 1 3.5 6.78V6.5Zm2.75 8.84v-4.16a2.27 2.27 0 0 1 1.25 2.03v.27a2 2 0 0 1-1.25 1.86ZM12.5 10c0-.34.02-.66.06-.98h1.7a.75.75 0 0 0 0-1.5h-1.38A6.1 6.1 0 0 1 13.61 6c.67-1 1.52-1.5 2.36-1.5.3 0 .63.1.86.25a.75.75 0 0 0 .84-1.24 3.1 3.1 0 0 0-1.7-.51c-1.49 0-2.75.9-3.6 2.16a7.8 7.8 0 0 0-1.05 2.36h-.57a.75.75 0 0 0 0 1.5h.3a10.02 10.02 0 0 0-.05 1h-.25a.75.75 0 1 0 0 1.5h.37a8.2 8.2 0 0 0 1.25 3.32c.85 1.26 2.11 2.16 3.6 2.16.54 0 1.2-.14 1.72-.52a.75.75 0 1 0-.87-1.22c-.21.15-.53.24-.85.24-.84 0-1.69-.5-2.36-1.5a6.6 6.6 0 0 1-.97-2.48h1.61a.75.75 0 1 0 0-1.5H12.5V10Z\"]);\nexport const CurrencyDollarEuro20Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro20Regular', \"20\", [\"M5.5 2a.5.5 0 0 0-.5.5v.54c-1.7.24-3 1.7-3 3.46v.13c0 1.43.84 2.73 2.14 3.31l.86.38v5.62a2.5 2.5 0 0 1-2-2.45v-.99a.5.5 0 1 0-1 0v.99a3.5 3.5 0 0 0 3 3.46v.55a.5.5 0 0 0 1 0v-.55c1.7-.24 3-1.7 3-3.46v-.12c0-1.43-.84-2.72-2.14-3.3L6 9.66V4.06A2.5 2.5 0 0 1 8 6.5v1a.5.5 0 0 0 1 0v-1a3.5 3.5 0 0 0-3-3.46V2.5a.5.5 0 0 0-.5-.5ZM3 6.5c0-1.2.86-2.22 2-2.45v5.18l-.45-.2A2.63 2.63 0 0 1 3 6.63V6.5Zm3 9.44v-5.17l.45.2A2.62 2.62 0 0 1 8 13.37v.12a2.5 2.5 0 0 1-2 2.45ZM12 10c0-.34.02-.68.06-1h1.44a.5.5 0 1 0 0-1h-1.26c.21-.89.57-1.67 1.01-2.3.77-1.1 1.78-1.7 2.85-1.7.39 0 .81.11 1.12.31a.5.5 0 1 0 .55-.84A3.15 3.15 0 0 0 16.1 3c-1.48 0-2.76.85-3.66 2.12-.57.8-1 1.79-1.23 2.88h-.71a.5.5 0 1 0 0 1h.55a9.7 9.7 0 0 0-.05 1h-.5a.5.5 0 0 0 0 1h.55c.16 1.5.65 2.84 1.39 3.88A4.55 4.55 0 0 0 16.1 17c.54 0 1.17-.13 1.68-.48a.5.5 0 0 0-.56-.82c-.3.2-.72.3-1.12.3-1.07 0-2.08-.6-2.85-1.7a7.19 7.19 0 0 1-1.2-3.3h1.45a.5.5 0 0 0 0-1H12Z\"]);\nexport const CurrencyDollarEuro24Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro24Filled', \"24\", [\"M6.5 2a1 1 0 0 0-1 1v.11A4.5 4.5 0 0 0 2 7.5v.38c0 1.9 1.09 3.61 2.8 4.42l.7.33v6.14a2.5 2.5 0 0 1-1.5-2.3v-.84a1 1 0 1 0-2 0v.85a4.5 4.5 0 0 0 3.5 4.39v.12a1 1 0 0 0 2 0v-.12a4.5 4.5 0 0 0 3.5-4.4v-.36c0-1.89-1.09-3.6-2.8-4.41l-.7-.34V5.21A2.5 2.5 0 0 1 9 7.5v.86a1 1 0 1 0 2 0V7.5a4.5 4.5 0 0 0-3.5-4.39V3a1 1 0 0 0-1-1ZM4 7.5c0-1.03.62-1.9 1.5-2.3v5.21A2.88 2.88 0 0 1 4 7.88V7.5Zm3.5 11.27v-5.19c.92.5 1.5 1.47 1.5 2.53v.37a2.5 2.5 0 0 1-1.5 2.3ZM15 12c0-.33.01-.66.04-.98H16a1 1 0 0 0 0-2h-.58c.24-.8.58-1.52.98-2.12.85-1.27 1.92-1.9 2.96-1.9.38 0 .79.12 1.07.31a1 1 0 1 0 1.13-1.65 3.97 3.97 0 0 0-2.2-.66c-1.91 0-3.53 1.16-4.62 2.79-.62.92-1.1 2.02-1.39 3.23H12a1 1 0 1 0 0 2h1.04c-.03.33-.04.65-.04.98v.03h-1a1 1 0 1 0 0 2h1.16c.25 1.59.8 3.03 1.58 4.18 1.1 1.63 2.7 2.79 4.62 2.79.7 0 1.54-.17 2.23-.67a1 1 0 0 0-1.18-1.62c-.25.18-.64.29-1.05.29-1.04 0-2.1-.63-2.96-1.9a8.4 8.4 0 0 1-1.21-3.07H16a1 1 0 0 0 0-2h-1V12Z\"]);\nexport const CurrencyDollarEuro24Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarEuro24Regular', \"24\", [\"M6.25 2a.75.75 0 0 0-.75.75v.32A4.25 4.25 0 0 0 2 7.25v.54a4.75 4.75 0 0 0 2.67 4.27l.83.4v6.92a2.75 2.75 0 0 1-2-2.65v-.98a.75.75 0 0 0-1.5 0v.98c0 2.1 1.51 3.83 3.5 4.18v.34a.75.75 0 0 0 1.5 0v-.34a4.25 4.25 0 0 0 3.5-4.18v-.53a4.75 4.75 0 0 0-2.67-4.27l-.83-.4V4.6c1.16.33 2 1.4 2 2.65v1a.75.75 0 1 0 1.5 0v-1c0-2.1-1.51-3.83-3.5-4.18v-.32A.75.75 0 0 0 6.25 2ZM3.5 7.25c0-1.26.85-2.32 2-2.65v6.2l-.17-.09A3.25 3.25 0 0 1 3.5 7.8v-.54ZM7 19.37V13.2l.17.08A3.25 3.25 0 0 1 9 16.2v.53c0 1.26-.84 2.32-2 2.64ZM14.5 12l.01-.5h1.74a.75.75 0 1 0 0-1.5h-1.57a8.8 8.8 0 0 1 1.37-3.4c.94-1.36 2.18-2.1 3.45-2.1.47 0 .97.14 1.34.38a.75.75 0 0 0 .82-1.26A4.03 4.03 0 0 0 19.5 3c-1.9 0-3.54 1.1-4.68 2.74A10.39 10.39 0 0 0 13.16 10h-1.4a.75.75 0 1 0-.01 1.5h1.26a12.65 12.65 0 0 0 0 1h-1.26a.75.75 0 0 0 0 1.5h1.41c.26 1.62.84 3.1 1.66 4.26C15.96 19.9 17.6 21 19.5 21c.7 0 1.52-.17 2.18-.63a.75.75 0 0 0-.85-1.23 2.4 2.4 0 0 1-1.33.36c-1.27 0-2.5-.74-3.45-2.1a8.8 8.8 0 0 1-1.37-3.4h1.57a.75.75 0 1 0 0-1.5H14.5l-.01-.5Z\"]);\nexport const CurrencyDollarRupee16Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee16Filled', \"16\", [\"M5.5 2.75a.75.75 0 0 0-1.5 0v.35c-1.15.33-2 1.4-2 2.65v.04c0 1.1.65 2.1 1.67 2.55L4 8.5v2.75c-.3-.23-.5-.6-.5-1v-.6a.75.75 0 0 0-1.5 0v.6c0 1.26.85 2.32 2 2.65v.36a.75.75 0 1 0 1.5 0v-.36a2.78 2.78 0 0 0 .34-5.23L5.5 7.5V4.75c.3.23.5.6.5 1v.62a.75.75 0 1 0 1.5 0v-.62c0-1.26-.84-2.32-2-2.65v-.35Zm-1.5 2v2.06c-.31-.24-.5-.62-.5-1.02v-.04c0-.4.2-.77.5-1Zm1.5 4.44c.31.24.5.62.5 1.03 0 .41-.2.78-.5 1.01V9.2ZM8 3.25c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-.4c.09.16.17.33.23.5h.17a.75.75 0 0 1 0 1.5h-.04a3 3 0 0 1-2.88 2.5l3.5 4.28a.75.75 0 0 1-1.16.95l-4.5-5.5A.75.75 0 0 1 8.75 7h1.5c.65 0 1.2-.42 1.41-1H8.75a.75.75 0 1 1 0-1.5h2.62a1.5 1.5 0 0 0-1.12-.5h-1.5A.75.75 0 0 1 8 3.25Z\"]);\nexport const CurrencyDollarRupee16Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee16Regular', \"16\", [\"M5 2.5a.5.5 0 1 0-1 0v.33a2.7 2.7 0 0 0-2 2.6v.1c0 1.1.65 2.1 1.65 2.55l.35.16v3.87a1.7 1.7 0 0 1-1-1.55v-.72a.5.5 0 0 0-1 0v.72c0 1.25.85 2.3 2 2.61v.34a.5.5 0 0 0 1 0v-.26a2.7 2.7 0 0 0 2.4-2.69v-.09c0-1.1-.64-2.1-1.65-2.54L5 7.59V3.76c.8.14 1.4.84 1.4 1.67v.74a.5.5 0 0 0 1 0v-.74A2.7 2.7 0 0 0 5 2.75V2.5ZM4 3.88v3.26c-.61-.3-1-.93-1-1.61v-.1c0-.68.41-1.28 1-1.55Zm1 4.8.34.16c.65.29 1.06.93 1.06 1.63v.09c0 .84-.6 1.53-1.4 1.68V8.68ZM8 3.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-1c.22.29.37.63.45 1h.55a.5.5 0 0 1 0 1h-.55a2.5 2.5 0 0 1-2.45 2h-.93l4.31 5.18a.5.5 0 0 1-.76.64l-5-6A.5.5 0 0 1 8.5 7h2c.65 0 1.2-.42 1.41-1H8.5a.5.5 0 1 1 0-1h3.41c-.2-.58-.76-1-1.41-1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const CurrencyDollarRupee20Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee20Filled', \"20\", [\"M6.25 2.75a.75.75 0 1 0-1.5 0v.33A3.5 3.5 0 0 0 2 6.5v.28c0 1.47.85 2.8 2.17 3.42l.58.27v4.87a2 2 0 0 1-1.25-1.86V12.4a.75.75 0 0 0-1.5 0v1.08a3.5 3.5 0 0 0 2.75 3.42v.35a.75.75 0 0 0 1.5 0v-.35A3.5 3.5 0 0 0 9 13.48v-.27c0-1.46-.84-2.8-2.17-3.42l-.58-.27V4.64A2 2 0 0 1 7.5 6.5v1.1a.75.75 0 0 0 1.5 0V6.5a3.5 3.5 0 0 0-2.75-3.42v-.33Zm-1.5 1.9v4.17A2.28 2.28 0 0 1 3.5 6.78V6.5a2 2 0 0 1 1.25-1.86Zm1.5 6.53a2.27 2.27 0 0 1 1.25 2.03v.27a2 2 0 0 1-1.25 1.86v-4.16ZM10.75 3a.75.75 0 0 0 0 1.5h2.75c.88 0 1.65.5 2.02 1.25h-4.77a.75.75 0 0 0 0 1.5h4.94A2.25 2.25 0 0 1 13.5 9h-2.75a.75.75 0 0 0-.57 1.24l6.5 7.5a.75.75 0 1 0 1.14-.98l-5.43-6.26h1.11c1.9 0 3.47-1.42 3.72-3.25h.03a.75.75 0 0 0 0-1.5h-.13a3.74 3.74 0 0 0-.62-1.25h.75a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const CurrencyDollarRupee20Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee20Regular', \"20\", [\"M5.5 2c.28 0 .5.22.5.5v.54c1.7.24 3 1.7 3 3.46v1a.5.5 0 0 1-1 0v-1a2.5 2.5 0 0 0-2-2.45v5.63l.86.38A3.62 3.62 0 0 1 9 13.36v.13a3.5 3.5 0 0 1-3 3.46v.55a.5.5 0 0 1-1 0v-.55a3.5 3.5 0 0 1-3-3.46v-.99a.5.5 0 1 1 1 0v.99a2.5 2.5 0 0 0 2 2.45v-5.62l-.86-.38A3.63 3.63 0 0 1 2 6.63V6.5a3.5 3.5 0 0 1 3-3.46V2.5c0-.28.22-.5.5-.5ZM3 6.5v.13c0 1.03.6 1.97 1.55 2.4l.45.2V4.05A2.5 2.5 0 0 0 3 6.5Zm3 9.44a2.5 2.5 0 0 0 2-2.45v-.12c0-1.04-.6-1.97-1.55-2.4l-.45-.2v5.17ZM10 3.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm0-3c0-.28.22-.5.5-.5h3a3.5 3.5 0 1 1 0 7h-1.9l6.28 7.17a.5.5 0 0 1-.76.66l-7-8A.5.5 0 0 1 10.5 9h3a2.5 2.5 0 0 0 0-5h-3a.5.5 0 0 1-.5-.5Z\"]);\nexport const CurrencyDollarRupee24Filled = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee24Filled', \"24\", [\"M7.5 3v.11A4.5 4.5 0 0 1 11 7.5v.86a1 1 0 1 1-2 0V7.5a2.5 2.5 0 0 0-1.5-2.3v6.16l.7.34c1.71.8 2.8 2.52 2.8 4.4v.38a4.5 4.5 0 0 1-3.5 4.39v.12a1 1 0 0 1-2 0v-.12a4.5 4.5 0 0 1-3.5-4.4v-.84a1 1 0 1 1 2 0v.85c0 1.02.62 1.9 1.5 2.3v-6.15l-.7-.33A4.88 4.88 0 0 1 2 7.88V7.5a4.5 4.5 0 0 1 3.5-4.39V3a1 1 0 0 1 2 0Zm-2 2.2A2.5 2.5 0 0 0 4 7.5v.38c0 1.06.58 2.03 1.5 2.53v-5.2Zm2 8.38v5.2a2.5 2.5 0 0 0 1.5-2.3v-.37c0-1.06-.58-2.03-1.5-2.53ZM13 3a1 1 0 0 0 0 2h2.5c.82 0 1.54.4 2 1H13a1 1 0 1 0 0 2h4.95a2.5 2.5 0 0 1-2.45 2H13a1 1 0 0 0-.82 1.57l7 10a1 1 0 0 0 1.64-1.14L14.92 12h.58a4.5 4.5 0 0 0 4.47-4H21a1 1 0 1 0 0-2h-1.26c-.12-.36-.3-.7-.5-1H21a1 1 0 1 0 0-2h-8Z\"]);\nexport const CurrencyDollarRupee24Regular = /*#__PURE__*/createFluentIcon('CurrencyDollarRupee24Regular', \"24\", [\"M7 2.75a.75.75 0 1 0-1.5 0v.32A4.25 4.25 0 0 0 2 7.25v.54a4.75 4.75 0 0 0 2.67 4.27l.83.4v6.92a2.75 2.75 0 0 1-2-2.65v-.98a.75.75 0 0 0-1.5 0v.98c0 2.1 1.51 3.83 3.5 4.18v.34a.75.75 0 0 0 1.5 0v-.34a4.25 4.25 0 0 0 3.5-4.18v-.53a4.75 4.75 0 0 0-2.67-4.27l-.83-.4V4.6c1.16.33 2 1.4 2 2.65v1a.75.75 0 1 0 1.5 0v-1c0-2.1-1.51-3.83-3.5-4.18v-.32ZM5.5 4.6v6.2l-.17-.09A3.25 3.25 0 0 1 3.5 7.8v-.54c0-1.26.85-2.32 2-2.65ZM7 13.2l.17.08A3.25 3.25 0 0 1 9 16.2v.53c0 1.26-.84 2.32-2 2.64V13.2ZM12.75 3a.75.75 0 0 0 0 1.5H15c1.07 0 2 .6 2.45 1.5h-4.7a.75.75 0 0 0 0 1.5h4.99A2.75 2.75 0 0 1 15 10h-2.25a.75.75 0 0 0-.61 1.19l7.5 10.5a.75.75 0 1 0 1.22-.88l-6.65-9.31H15a4.25 4.25 0 0 0 4.24-4h2.01a.75.75 0 0 0 0-1.5h-2.19a4.24 4.24 0 0 0-.82-1.5h3.01a.75.75 0 0 0 0-1.5h-8.5Z\"]);\nexport const Cursor16Filled = /*#__PURE__*/createFluentIcon('Cursor16Filled', \"16\", [\"M4 3a1 1 0 0 1 1.6-.8l8 6A1 1 0 0 1 13 10H9.05a1 1 0 0 0-.79.4L5.8 13.6A1 1 0 0 1 4 13V3Z\"]);\nexport const Cursor16Regular = /*#__PURE__*/createFluentIcon('Cursor16Regular', \"16\", [\"M4 3a1 1 0 0 1 1.6-.8l8 6A1 1 0 0 1 13 10H9.05a1 1 0 0 0-.79.4L5.8 13.6A1 1 0 0 1 4 13V3Zm9 6L5 3v10l2.47-3.22A2 2 0 0 1 9.05 9H13Z\"]);\nexport const Cursor20Filled = /*#__PURE__*/createFluentIcon('Cursor20Filled', \"20\", [\"M6.64 2.29A1 1 0 0 0 5 3.06v14a1 1 0 0 0 1.76.65l3.52-4.07c.28-.33.7-.52 1.13-.52h5.6a1 1 0 0 0 .63-1.77l-11-9.06Z\"]);\nexport const Cursor20Regular = /*#__PURE__*/createFluentIcon('Cursor20Regular', \"20\", [\"M5 3.06a1 1 0 0 1 1.64-.77l11 9.06a1 1 0 0 1-.63 1.77h-5.6c-.43 0-.85.19-1.13.52L6.76 17.7A1 1 0 0 1 5 17.06v-14Zm12 9.06L6 3.06v14l3.52-4.08a2.5 2.5 0 0 1 1.9-.86H17Z\"]);\nexport const Cursor24Filled = /*#__PURE__*/createFluentIcon('Cursor24Filled', \"24\", [\"M7.92 2.3A1.5 1.5 0 0 0 5.5 3.48V20.5a1.5 1.5 0 0 0 2.68.93l4.19-5.3c.31-.4.79-.62 1.3-.62h6.84a1.5 1.5 0 0 0 .93-2.69L7.92 2.3Z\"]);\nexport const Cursor24Regular = /*#__PURE__*/createFluentIcon('Cursor24Regular', \"24\", [\"M5.5 3.48A1.5 1.5 0 0 1 7.92 2.3L21.44 12.8a1.5 1.5 0 0 1-.93 2.69h-6.85c-.5 0-.98.23-1.3.62l-4.18 5.3a1.5 1.5 0 0 1-2.68-.93v-17ZM20.51 14 7 3.48V20.5l4.2-5.3c.59-.75 1.5-1.2 2.46-1.2h6.85Z\"]);\nexport const CursorClick20Filled = /*#__PURE__*/createFluentIcon('CursorClick20Filled', \"20\", [\"M7.5 2c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5ZM3.61 3.61c.2-.2.51-.2.7 0l1.42 1.42a.5.5 0 1 1-.7.7L3.6 4.32a.5.5 0 0 1 0-.7Zm7.78 0c.2.2.2.51 0 .7L9.97 5.74a.5.5 0 1 1-.7-.7l1.41-1.42c.2-.2.51-.2.7 0ZM2 7.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm5.5.53v9.26c0 .45.54.67.85.36l2.56-2.56a2 2 0 0 1 1.42-.59h3.23a.5.5 0 0 0 .31-.9L8.31 7.65a.5.5 0 0 0-.81.4Z\"]);\nexport const CursorClick20Regular = /*#__PURE__*/createFluentIcon('CursorClick20Regular', \"20\", [\"M7.5 2c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5ZM3.61 3.61c.2-.2.51-.2.7 0l1.42 1.42a.5.5 0 1 1-.7.7L3.6 4.32a.5.5 0 0 1 0-.7Zm7.78 0c.2.2.2.51 0 .7L9.97 5.74a.5.5 0 1 1-.7-.7l1.41-1.42c.2-.2.51-.2.7 0ZM2 7.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm6.64-.2A1 1 0 0 0 7 8.07v9.1a1 1 0 0 0 1.75.66l2.03-2.32c.28-.32.7-.51 1.13-.51h3.2a1 1 0 0 0 .65-1.77L8.64 7.3ZM8 17.17v-9.1L15.12 14H11.9c-.72 0-1.4.31-1.88.85L8 17.17Z\"]);\nexport const CursorClick24Filled = /*#__PURE__*/createFluentIcon('CursorClick24Filled', \"24\", [\"M9.25 2c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM4.47 3.97c.3-.3.77-.3 1.06 0l1.75 1.75a.75.75 0 1 1-1.06 1.06L4.47 5.03a.75.75 0 0 1 0-1.06Zm9.56 0c.3.3.3.77 0 1.06l-1.75 1.75a.75.75 0 1 1-1.06-1.06l1.75-1.75c.3-.3.77-.3 1.06 0ZM2.5 8.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm6 .74a1.32 1.32 0 0 1 2.18-1l8.46 7.25c.9.78.39 2.27-.8 2.32l-3.85.15c-.41.02-.8.2-1.07.5l-2.62 2.93c-.8.9-2.3.33-2.3-.88V9.5Z\"]);\nexport const CursorClick24Regular = /*#__PURE__*/createFluentIcon('CursorClick24Regular', \"24\", [\"M9.25 2c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM4.47 3.97c.3-.3.77-.3 1.06 0l1.75 1.75a.75.75 0 1 1-1.06 1.06L4.47 5.03a.75.75 0 0 1 0-1.06Zm9.56 0c.3.3.3.77 0 1.06l-1.75 1.75a.75.75 0 1 1-1.06-1.06l1.75-1.75c.3-.3.77-.3 1.06 0ZM2.5 8.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm8.18-.26a1.32 1.32 0 0 0-2.18 1v11.27c0 1.21 1.5 1.78 2.3.88l2.62-2.92c.27-.31.66-.5 1.07-.5l3.84-.16a1.32 1.32 0 0 0 .8-2.32l-8.45-7.25ZM10 20.29V9.89l7.81 6.69-3.38.13c-.82.03-1.59.4-2.13 1L10 20.3Z\"]);\nexport const CursorHover16Filled = /*#__PURE__*/createFluentIcon('CursorHover16Filled', \"16\", [\"M1 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v5a2 2 0 0 1-1.16 1.82 1.5 1.5 0 0 0-.28-.38l-4-4A1.5 1.5 0 0 0 7 8.5V12H3a2 2 0 0 1-2-2V5Zm7.85 3.15A.5.5 0 0 0 8 8.5v6a.5.5 0 0 0 .9.3l1.35-1.8h2.25a.5.5 0 0 0 .35-.85l-4-4Z\"]);\nexport const CursorHover16Regular = /*#__PURE__*/createFluentIcon('CursorHover16Regular', \"16\", [\"M1 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v5a2 2 0 0 1-1.16 1.82 1.5 1.5 0 0 0-.28-.38l-.45-.45A1 1 0 0 0 14 10V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4v1H3a2 2 0 0 1-2-2V5Zm7.85 3.15A.5.5 0 0 0 8 8.5v6a.5.5 0 0 0 .9.3l1.35-1.8h2.25a.5.5 0 0 0 .35-.85l-4-4ZM9 13V9.7l2.3 2.3H10a.5.5 0 0 0-.4.2L9 13Z\"]);\nexport const CursorHover20Filled = /*#__PURE__*/createFluentIcon('CursorHover20Filled', \"20\", [\"M4 4a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h5v-4.5a1.5 1.5 0 0 1 2.56-1.06l5 5c.11.11.2.24.28.38A2 2 0 0 0 18 13V6a2 2 0 0 0-2-2H4Zm6.85 6.15a.5.5 0 0 0-.85.35v7a.5.5 0 0 0 .91.29l1.57-2.25 2.94.45a.5.5 0 0 0 .43-.84l-5-5ZM11 15.9v-4.2l3.07 3.06-1.74-.26a.5.5 0 0 0-.49.2l-.84 1.2Z\"]);\nexport const CursorHover20Regular = /*#__PURE__*/createFluentIcon('CursorHover20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v7a2 2 0 0 1-1.16 1.82 1.5 1.5 0 0 0-.28-.38l-.45-.45A1 1 0 0 0 17 13V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h5v1H4a2 2 0 0 1-2-2V6Zm8.85 4.15a.5.5 0 0 0-.85.35v7a.5.5 0 0 0 .91.29l1.57-2.25 2.94.45a.5.5 0 0 0 .43-.84l-5-5ZM11 15.9v-4.2l3.07 3.06-1.74-.26a.5.5 0 0 0-.49.2l-.84 1.2Z\"]);\nexport const CursorHover24Filled = /*#__PURE__*/createFluentIcon('CursorHover24Filled', \"24\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v9A2.5 2.5 0 0 0 4.5 18H9v-7.25a1.75 1.75 0 0 1 2.78-1.41l7.5 7.5c.38.27.62.68.7 1.11A2.5 2.5 0 0 0 22 15.5v-9A2.5 2.5 0 0 0 19.5 4h-15Zm6.78 6.22a.75.75 0 0 0-1.28.53v10.5a.75.75 0 0 0 1.37.42l2.46-3.58 4.27.9a.75.75 0 0 0 .68-1.27l-7.5-7.5Z\"]);\nexport const CursorHover24Regular = /*#__PURE__*/createFluentIcon('CursorHover24Regular', \"24\", [\"M19.5 5.5h-15a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1H9V18H4.5A2.5 2.5 0 0 1 2 15.5v-9A2.5 2.5 0 0 1 4.5 4h15A2.5 2.5 0 0 1 22 6.5v9a2.5 2.5 0 0 1-2.02 2.45 1.75 1.75 0 0 0-.7-1.11l-.33-.34h.55a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1Zm-8.22 4.72a.75.75 0 0 0-1.28.53v10.5a.75.75 0 0 0 1.37.42l2.46-3.58 4.27.9a.75.75 0 0 0 .68-1.27l-7.5-7.5Zm.22 8.62v-6.28L15.94 17l-2.29-.48a.75.75 0 0 0-.77.3l-1.38 2.02Z\"]);\nexport const CursorHover28Filled = /*#__PURE__*/createFluentIcon('CursorHover28Filled', \"28\", [\"M2 7.75A2.75 2.75 0 0 1 4.75 5h18.5A2.75 2.75 0 0 1 26 7.75v11.5A2.75 2.75 0 0 1 23.25 22h-.07c.18-.6.02-1.28-.44-1.74l-9-9a1.75 1.75 0 0 0-2.99 1.24V22h-6A2.75 2.75 0 0 1 2 19.25V7.75Zm11.03 4.22a.75.75 0 0 0-1.28.53v12.75a.75.75 0 0 0 1.33.48l3.39-4.07c.05-.07.14-.1.23-.09l4.7.67a.75.75 0 0 0 .63-1.27l-9-9Z\"]);\nexport const CursorHover28Regular = /*#__PURE__*/createFluentIcon('CursorHover28Regular', \"28\", [\"M2 7.75A2.75 2.75 0 0 1 4.75 5h18.5A2.75 2.75 0 0 1 26 7.75v11.5A2.75 2.75 0 0 1 23.25 22h-.07c.15-.51.06-1.06-.24-1.5h.31c.69 0 1.25-.56 1.25-1.25V7.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v11.5c0 .69.56 1.25 1.25 1.25h6V22h-6A2.75 2.75 0 0 1 2 19.25V7.75Zm11.03 4.22a.75.75 0 0 0-1.28.53v12.75a.75.75 0 0 0 1.33.48l3.39-4.07c.05-.07.14-.1.23-.09l4.7.67a.75.75 0 0 0 .63-1.27l-9-9Zm.22 11.2v-8.86l6.13 6.13-2.47-.35c-.6-.09-1.2.14-1.6.6l-2.06 2.49Z\"]);\nexport const CursorHover32Filled = /*#__PURE__*/createFluentIcon('CursorHover32Filled', \"32\", [\"M2 10a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v10a4 4 0 0 1-2.33 3.64 3 3 0 0 0-.55-.76l-8-8A3 3 0 0 0 14 17v7H6a4 4 0 0 1-4-4V10Zm14 19a1 1 0 0 0 1.8.6l2.7-3.6H25a1 1 0 0 0 .7-1.7l-8-8a1 1 0 0 0-1.7.7v12Z\"]);\nexport const CursorHover32Regular = /*#__PURE__*/createFluentIcon('CursorHover32Regular', \"32\", [\"M2 10a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v10a4 4 0 0 1-2.33 3.64 3 3 0 0 0-.55-.76l-.89-.9A2 2 0 0 0 28 20V10a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h8v2H6a4 4 0 0 1-4-4V10Zm15.7 6.3a1 1 0 0 0-1.7.7v12a1 1 0 0 0 1.8.6l2.7-3.6H25a1 1 0 0 0 .7-1.7l-8-8ZM18 26v-6.59L22.59 24H20a1 1 0 0 0-.8.4L18 26Z\"]);\nexport const CursorHover48Filled = /*#__PURE__*/createFluentIcon('CursorHover48Filled', \"48\", [\"M8.75 9.25a3.5 3.5 0 0 0-3.5 3.5v18.5a3.5 3.5 0 0 0 3.5 3.5H18v-13.5a3.25 3.25 0 0 1 5.55-2.3l15.5 15.5c.1.1.18.2.26.3a3.5 3.5 0 0 0 3.44-3.5v-18.5a3.5 3.5 0 0 0-3.5-3.5H8.75Zm13.38 11.12a1.25 1.25 0 0 0-2.13.88v21.5a1.25 1.25 0 0 0 2.29.7l4.96-7.33c.17-.27.5-.39.8-.3l8.39 2.14a1.25 1.25 0 0 0 1.2-2.1l-15.5-15.5Z\"]);\nexport const CursorHover48Regular = /*#__PURE__*/createFluentIcon('CursorHover48Regular', \"48\", [\"M4 12.75A4.75 4.75 0 0 1 8.75 8h30.5A4.75 4.75 0 0 1 44 12.75v18.5c0 2.4-1.78 4.39-4.1 4.7a3.24 3.24 0 0 0-.85-1.5l-.95-.95h1.15c1.24 0 2.25-1 2.25-2.25v-18.5c0-1.24-1-2.25-2.25-2.25H8.75c-1.24 0-2.25 1-2.25 2.25v18.5c0 1.24 1 2.25 2.25 2.25H18V36H8.75A4.75 4.75 0 0 1 4 31.25v-18.5Zm18.13 7.62a1.25 1.25 0 0 0-2.13.88v21.5a1.25 1.25 0 0 0 2.29.7l4.96-7.33c.17-.27.5-.39.8-.3l8.39 2.14a1.25 1.25 0 0 0 1.2-2.1l-15.5-15.5Zm.37 18.3v-14.4L32.64 34.4l-3.97-1.02a3.25 3.25 0 0 0-3.5 1.33l-2.67 3.95Z\"]);\nexport const CursorHoverOff16Filled = /*#__PURE__*/createFluentIcon('CursorHoverOff16Filled', \"16\", [\"m12.3 13 1.85 1.85a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L2.39 3.1A2 2 0 0 0 1 5v5c0 1.1.9 2 2 2h4V8.5c0-.23.05-.45.15-.65l.85.86v5.79a.5.5 0 0 0 .9.3l1.35-1.8h2.04Zm1.6-1.22A2 2 0 0 0 15 10V5a2 2 0 0 0-2-2H5.12l8.79 8.78Z\"]);\nexport const CursorHoverOff16Regular = /*#__PURE__*/createFluentIcon('CursorHoverOff16Regular', \"16\", [\"m12.3 13 1.85 1.85a.5.5 0 0 0 .7-.7l-2-2-11-11a.5.5 0 1 0-.7.7L2.39 3.1A2 2 0 0 0 1 5v5c0 1.1.9 2 2 2h4v-1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h.3L8 8.7v5.8a.5.5 0 0 0 .9.3l1.35-1.8h2.04Zm-1-1H10a.5.5 0 0 0-.4.2L9 13V9.7l2.3 2.3Zm1.81-1a1 1 0 0 0 .89-1V5a1 1 0 0 0-1-1H6.12l-1-1H13a2 2 0 0 1 2 2v5a2 2 0 0 1-1.1 1.78l-.79-.79Z\"]);\nexport const CursorHoverOff20Filled = /*#__PURE__*/createFluentIcon('CursorHoverOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L3.39 4.1A2 2 0 0 0 2 6v7c0 1.1.9 2 2 2h5v-4.5c0-.23.05-.45.15-.65l.85.86v6.79a.5.5 0 0 0 .91.29l1.57-2.25 2.78.43 1.89 1.88a.5.5 0 0 0 .7-.7l-8-8-7-7Zm11.22 12.62-1.74-.26a.5.5 0 0 0-.49.2l-.84 1.2v-4.2l3.07 3.06Zm2.84.01A2 2 0 0 0 18 13V6a2 2 0 0 0-2-2H6.12l10.79 10.78Z\"]);\nexport const CursorHoverOff20Regular = /*#__PURE__*/createFluentIcon('CursorHoverOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L3.39 4.1A2 2 0 0 0 2 6v7c0 1.1.9 2 2 2h5v-1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h.3l5.7 5.7v6.8a.5.5 0 0 0 .91.29l1.57-2.25 2.78.43 1.89 1.88a.5.5 0 0 0 .7-.7l-15-15Zm11.22 12.62-1.74-.26a.5.5 0 0 0-.49.2l-.84 1.2v-4.2l3.07 3.06Zm2.84.01A2 2 0 0 0 18 13V6a2 2 0 0 0-2-2H6.12l1 1H16a1 1 0 0 1 1 1v7a1 1 0 0 1-.89 1l.8.78Z\"]);\nexport const CursorHoverOff24Filled = /*#__PURE__*/createFluentIcon('CursorHoverOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.05 1.05A2.5 2.5 0 0 0 2 6.5v9A2.5 2.5 0 0 0 4.5 18H9v-7.25c0-.2.04-.4.1-.59l.9.9v10.19a.75.75 0 0 0 1.37.42l2.46-3.58 4.05.85 2.84 2.84a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM7.18 4l13.63 13.63A2.5 2.5 0 0 0 22 15.5v-9A2.5 2.5 0 0 0 19.5 4H7.18Z\"]);\nexport const CursorHoverOff24Regular = /*#__PURE__*/createFluentIcon('CursorHoverOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.05 1.05A2.5 2.5 0 0 0 2 6.5v9A2.5 2.5 0 0 0 4.5 18H9v-1.5H4.5a1 1 0 0 1-1-1v-9a1 1 0 0 1 .94-1L10 11.06v10.19a.75.75 0 0 0 1.37.42l2.46-3.58 4.05.85 2.84 2.84a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm8.22 10.34L15.94 17l-2.29-.48a.75.75 0 0 0-.77.3l-1.38 2.02v-6.28Zm9 2.94a1 1 0 0 1-.83.99l1.14 1.14A2.5 2.5 0 0 0 22 15.5v-9A2.5 2.5 0 0 0 19.5 4H7.18l1.5 1.5H19.5a1 1 0 0 1 1 1v9Z\"]);\nexport const CursorHoverOff28Filled = /*#__PURE__*/createFluentIcon('CursorHoverOff28Filled', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.81 1.81A2.75 2.75 0 0 0 2 7.75v11.5A2.75 2.75 0 0 0 4.75 22h6v-9.5c0-.2.04-.4.1-.59l.9.9v12.44a.75.75 0 0 0 1.33.48l3.39-4.07c.05-.07.14-.1.23-.09l4.45.64 3.57 3.57a.75.75 0 0 0 1.06-1.06l-3.74-3.74-.01-.01-9-9-9.75-9.75ZM8.18 5l16.56 16.56A2.75 2.75 0 0 0 26 19.25V7.75A2.75 2.75 0 0 0 23.25 5H8.18Z\"]);\nexport const CursorHoverOff28Regular = /*#__PURE__*/createFluentIcon('CursorHoverOff28Regular', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.81 1.81A2.75 2.75 0 0 0 2 7.75v11.5A2.75 2.75 0 0 0 4.75 22h6v-1.5h-6c-.69 0-1.25-.56-1.25-1.25V7.75c0-.69.56-1.25 1.25-1.25h.69l6.31 6.31v12.44a.75.75 0 0 0 1.33.48l3.39-4.07c.05-.07.14-.1.23-.09l4.45.64 3.57 3.57a.75.75 0 0 0 1.06-1.06l-3.74-3.74-.01-.01-9-9v-.01L3.27 2.22Zm9.97 12.1 6.13 6.12-2.47-.35c-.6-.09-1.2.14-1.6.6l-2.06 2.49V14.3ZM9.68 6.5 8.18 5h15.07A2.75 2.75 0 0 1 26 7.75v11.5c0 .97-.5 1.82-1.26 2.31l-1.12-1.12c.51-.16.88-.63.88-1.19V7.75c0-.69-.56-1.25-1.25-1.25H9.68Z\"]);\nexport const CursorHoverOff48Filled = /*#__PURE__*/createFluentIcon('CursorHoverOff48Filled', \"48\", [\"m36.1 37.88 5.77 5.75a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76l3.29 3.3a3.5 3.5 0 0 0-2.41 3.32v18.5a3.5 3.5 0 0 0 3.5 3.5H18v-13.5c0-.43.09-.85.24-1.24L20 21.77v20.98a1.25 1.25 0 0 0 2.29.7l4.96-7.33c.17-.27.5-.39.8-.3l8.06 2.06ZM14.56 9.25l25.43 25.42a3.5 3.5 0 0 0 2.77-3.42v-18.5a3.5 3.5 0 0 0-3.5-3.5h-24.7Z\"]);\nexport const CursorHoverOff48Regular = /*#__PURE__*/createFluentIcon('CursorHoverOff48Regular', \"48\", [\"m36.1 37.88 5.77 5.75a1.25 1.25 0 0 0 1.76-1.76l-6-6-15.5-15.5-16-16a1.25 1.25 0 1 0-1.76 1.76L6.7 8.47c-1.6.76-2.7 2.4-2.7 4.28v18.5A4.75 4.75 0 0 0 8.75 36H18v-2.5H8.75c-1.24 0-2.25-1-2.25-2.25v-18.5c0-1.24 1-2.24 2.23-2.25L20 21.77v20.98a1.25 1.25 0 0 0 2.29.7l4.96-7.33c.17-.27.5-.39.8-.3l8.06 2.06Zm-3.46-3.48-3.97-1.01a3.25 3.25 0 0 0-3.5 1.33l-2.67 3.95v-14.4L32.64 34.4ZM13.3 8l2.5 2.5h23.45c1.24 0 2.25 1 2.25 2.25v18.5c0 1.24-1 2.25-2.25 2.25h-.45l2.18 2.18A4.75 4.75 0 0 0 44 31.25v-18.5A4.75 4.75 0 0 0 39.25 8H13.3Z\"]);\nexport const CursorProhibited16Filled = /*#__PURE__*/createFluentIcon('CursorProhibited16Filled', \"16\", [\"M7 4.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8L8.7 6.6A3.48 3.48 0 0 1 8 4.5ZM11.5 8c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 11.5 8Zm0 2a5.5 5.5 0 0 0 1.48-.2A1 1 0 0 1 12 11H8.05a1 1 0 0 0-.79.4L4.8 14.6A1 1 0 0 1 3 14V4a1 1 0 0 1 1.6-.8L6 4.25v.25a5.5 5.5 0 0 0 5.5 5.5Z\"]);\nexport const CursorProhibited16Regular = /*#__PURE__*/createFluentIcon('CursorProhibited16Regular', \"16\", [\"M7 4.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8L8.7 6.6A3.48 3.48 0 0 1 8 4.5ZM11.5 8c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 11.5 8Zm0 2H11.97l-.02-.02c.35-.03.68-.09 1-.17a1 1 0 0 1-.98 1.19H8.04a1 1 0 0 0-.8.39L4.8 14.57a1 1 0 0 1-1.79-.6V3.98a1 1 0 0 1 1.6-.8L6 4.25a5.6 5.6 0 0 0 .1 1.32L4 4v9.97l2.45-3.18A2 2 0 0 1 8.04 10h3.46Z\"]);\nexport const CursorProhibited20Filled = /*#__PURE__*/createFluentIcon('CursorProhibited20Filled', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM14.5 9c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 14.5 9Zm0 2a5.5 5.5 0 0 1-5.38-6.66L6.64 2.29A1 1 0 0 0 5 3.06v14a1 1 0 0 0 1.76.65l3.52-4.07c.28-.33.7-.52 1.13-.52h5.6a1 1 0 0 0 .63-1.77l-.97-.8c-.66.3-1.4.45-2.17.45Z\"]);\nexport const CursorProhibited20Regular = /*#__PURE__*/createFluentIcon('CursorProhibited20Regular', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM14.5 9c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 14.5 9Zm2.5 3.12-1.47-1.22c.4-.07.78-.19 1.14-.35l.97.8a1 1 0 0 1-.63 1.77h-5.6c-.43 0-.85.2-1.13.52l-3.52 4.07A1 1 0 0 1 5 17.06v-14a1 1 0 0 1 1.64-.77l2.48 2.05C9.04 4.7 9 5.1 9 5.5v.03L6 3.06v14l3.52-4.07a2.5 2.5 0 0 1 1.9-.87H17Z\"]);\nexport const Cut16Filled = /*#__PURE__*/createFluentIcon('Cut16Filled', \"16\", [\"M10.84 9.53a2.75 2.75 0 1 1-1.38.63L8 7.99l-1.46 2.19A2.74 2.74 0 0 1 4.75 15a2.75 2.75 0 1 1 .41-5.47l1.94-2.9-2.97-4.46a.75.75 0 1 1 1.24-.84l5.47 8.2ZM3.5 12.25a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0Zm6.5 0a1.25 1.25 0 1 0 .82-1.17h-.01a1.25 1.25 0 0 0-.8 1.17Zm1.67-11.12c.34.23.43.7.2 1.04L9.8 5.27l-.9-1.35 1.73-2.59a.75.75 0 0 1 1.04-.2Z\"]);\nexport const Cut16Regular = /*#__PURE__*/createFluentIcon('Cut16Regular', \"16\", [\"M11.78 1.08c.23.16.29.47.14.7L9.21 5.85l-.61-.91 2.48-3.72a.51.51 0 0 1 .7-.14Zm-.95 9.01a2.5 2.5 0 1 1-.9.46L8 7.65l-1.93 2.9a2.5 2.5 0 1 1-.9-.46l2.22-3.35-3.3-4.96a.5.5 0 0 1 .83-.56l5.9 8.87ZM3 12.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm7 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const Cut20Filled = /*#__PURE__*/createFluentIcon('Cut20Filled', \"20\", [\"m14.88 3.16-3.1 4.77-.9-1.38 2.74-4.2a.75.75 0 0 1 1.26.8Zm-2.38 8.6a3.24 3.24 0 0 1 4.5 2.99 3.25 3.25 0 1 1-5.72-2.11L10 10.66l-1.28 1.98a3.25 3.25 0 1 1-1.21-.88l1.6-2.47-3.99-6.13a.75.75 0 0 1 1.26-.82l6.12 9.41Zm.2 1.6a1.75 1.75 0 1 0 .01-.02l-.02.02ZM6.24 13a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z\"]);\nexport const Cut20Regular = /*#__PURE__*/createFluentIcon('Cut20Regular', \"20\", [\"M5.92 2.23a.5.5 0 0 0-.84.54L9.4 9.43l-1.92 2.96a3 3 0 1 0 .78.64L10 10.35l1.74 2.68a3 3 0 1 0 .78-.64L5.92 2.23ZM14 17a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM4 15a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7.2-6.49-.6-.92 3.48-5.36a.5.5 0 0 1 .84.54l-3.73 5.74Z\"]);\nexport const Cut24Filled = /*#__PURE__*/createFluentIcon('Cut24Filled', \"24\", [\"M7.83 2.44a1 1 0 0 0-1.66 1.12l4.8 7.11-2.33 3.68A3.99 3.99 0 0 0 3 18a4 4 0 1 0 7.2-2.4l1.98-3.12 1.89 2.8A3.99 3.99 0 0 0 17 22a4 4 0 1 0-1.25-7.8l-3.62-5.38-4.3-6.38ZM5 18a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm10 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-.48-9.21 3.33-5.26a1 1 0 0 0-1.7-1.07L13.3 6.98l1.22 1.81Z\"]);\nexport const Cut24Regular = /*#__PURE__*/createFluentIcon('Cut24Regular', \"24\", [\"M12.14 9.34 7.37 2.33a.75.75 0 1 0-1.24.84l5.13 7.55-2.4 3.74a4 4 0 1 0 1.18.94l2.14-3.33 2.06 3.03A3.99 3.99 0 0 0 17 22a4 4 0 1 0-1.5-7.71l-2.44-3.6-.92-1.35ZM4.5 18a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm10 0a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm-.56-8.68 3.94-6.17a.75.75 0 1 0-1.26-.8l-3.6 5.62.92 1.35Z\"]);\nexport const DarkTheme20Filled = /*#__PURE__*/createFluentIcon('DarkTheme20Filled', \"20\", [\"M10 3.5a6.5 6.5 0 1 1 0 13v-13ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const DarkTheme20Regular = /*#__PURE__*/createFluentIcon('DarkTheme20Regular', \"20\", [\"M10 3a7 7 0 1 1 0 14V3Zm0-1a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const DarkTheme24Filled = /*#__PURE__*/createFluentIcon('DarkTheme24Filled', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-2V4a8 8 0 1 1 0 16Z\"]);\nexport const DarkTheme24Regular = /*#__PURE__*/createFluentIcon('DarkTheme24Regular', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-1.5v-17a8.5 8.5 0 0 1 0 17Z\"]);\nexport const DataArea20Filled = /*#__PURE__*/createFluentIcon('DataArea20Filled', \"20\", [\"M3 2.49a.5.5 0 0 0-1 .01v15c0 .28.22.5.5.5h15a.5.5 0 1 0 0-1H3V2.49ZM16 16V5.5a.5.5 0 0 0-.81-.39L10.45 8.9l-3.2-1.83a.5.5 0 0 0-.45-.03L4 8.3V16h12Z\"]);\nexport const DataArea20Regular = /*#__PURE__*/createFluentIcon('DataArea20Regular', \"20\", [\"M3 2.5a.5.5 0 1 0-1 0v15c0 .28.22.5.5.5h15a.5.5 0 0 0 0-1H16V5.5a.5.5 0 0 0-.81-.39L10.45 8.9l-3.2-1.83a.5.5 0 0 0-.45-.03L3 8.74V2.5Zm0 7.32 3.97-1.76 3.28 1.87c.18.1.4.09.56-.04L15 6.54V17H3V9.82Z\"]);\nexport const DataArea24Filled = /*#__PURE__*/createFluentIcon('DataArea24Filled', \"24\", [\"M3 3.75a.75.75 0 0 1 1.5 0V19.5h15.75a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75V3.75Zm16.5 3a.75.75 0 0 0-1.2-.6l-5.6 4.2L8.88 8.1a.75.75 0 0 0-.72-.02L5.5 9.4v9.09h14V6.75Z\"]);\nexport const DataArea24Regular = /*#__PURE__*/createFluentIcon('DataArea24Regular', \"24\", [\"M3 3.75a.75.75 0 0 1 1.5 0v6.26l3.65-1.92c.23-.12.5-.12.73.01l3.82 2.25 5.6-4.2a.75.75 0 0 1 1.2.6V19.5h.75a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75V3.75Zm1.5 7.95v7.8H18V8.25l-4.8 3.6a.75.75 0 0 1-.83.05L8.48 9.6 4.5 11.7Z\"]);\nexport const DataBarHorizontal20Filled = /*#__PURE__*/createFluentIcon('DataBarHorizontal20Filled', \"20\", [\"M4 2a2 2 0 1 0 0 4h5a2 2 0 1 0 0-4H4Zm0 6a2 2 0 1 0 0 4h8a2 2 0 1 0 0-4H4Zm0 6a2 2 0 1 0 0 4h12a2 2 0 1 0 0-4H4Z\"]);\nexport const DataBarHorizontal20Regular = /*#__PURE__*/createFluentIcon('DataBarHorizontal20Regular', \"20\", [\"M2 4c0-1.1.9-2 2-2h5a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h5a1 1 0 0 0 0-2H4Zm-2 7c0-1.1.9-2 2-2h8a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H4Zm-2 7c0-1.1.9-2 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm2-1a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2H4Z\"]);\nexport const DataBarHorizontal24Filled = /*#__PURE__*/createFluentIcon('DataBarHorizontal24Filled', \"24\", [\"M21 18.25c0-1.24-1-2.25-2.25-2.25H5.25a2.25 2.25 0 1 0 0 4.5h13.5c1.24 0 2.25-1 2.25-2.25Zm-4-6.5c0-1.24-1-2.25-2.25-2.25h-9.5a2.25 2.25 0 1 0 0 4.5h9.5C16 14 17 13 17 11.75Zm-4-6.5C13 4.01 12 3 10.75 3h-5.5a2.25 2.25 0 0 0 0 4.5h5.5C12 7.5 13 6.5 13 5.25Z\"]);\nexport const DataBarHorizontal24Regular = /*#__PURE__*/createFluentIcon('DataBarHorizontal24Regular', \"24\", [\"M21 18.25c0-1.24-1-2.25-2.25-2.25H5.25a2.25 2.25 0 1 0 0 4.5h13.5c1.24 0 2.25-1 2.25-2.25Zm-4-6.5c0-1.24-1-2.25-2.25-2.25h-9.5a2.25 2.25 0 1 0 0 4.5h9.5C16 14 17 13 17 11.75Zm-4-6.5C13 4.01 12 3 10.75 3h-5.5a2.25 2.25 0 0 0 0 4.5h5.5C12 7.5 13 6.5 13 5.25Zm6.5 13c0 .41-.34.75-.75.75H5.25a.75.75 0 0 1 0-1.5h13.5c.41 0 .75.34.75.75Zm-4-6.5c0 .41-.34.75-.75.75h-9.5a.75.75 0 0 1 0-1.5h9.5c.41 0 .75.34.75.75Zm-4-6.5c0 .41-.34.75-.75.75h-5.5a.75.75 0 0 1 0-1.5h5.5c.41 0 .75.34.75.75Z\"]);\nexport const DataBarHorizontalDescending16Filled = /*#__PURE__*/createFluentIcon('DataBarHorizontalDescending16Filled', \"16\", [\"M13 5a2 2 0 1 0 0-4H3a2 2 0 1 0 0 4h10ZM7 15a2 2 0 1 0 0-4H3a2 2 0 1 0 0 4h4Zm4-7a2 2 0 0 1-2 2H3a2 2 0 1 1 0-4h6a2 2 0 0 1 2 2Z\"]);\nexport const DataBarHorizontalDescending16Regular = /*#__PURE__*/createFluentIcon('DataBarHorizontalDescending16Regular', \"16\", [\"M13 5a2 2 0 1 0 0-4H3a2 2 0 1 0 0 4h10ZM2 3a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm5 12a2 2 0 1 0 0-4H3a2 2 0 1 0 0 4h4Zm-5-2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm9-5a2 2 0 0 1-2 2H3a2 2 0 1 1 0-4h6a2 2 0 0 1 2 2Zm-1 0a1 1 0 0 0-1-1H3a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Z\"]);\nexport const DataBarVertical16Filled = /*#__PURE__*/createFluentIcon('DataBarVertical16Filled', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v9a1.5 1.5 0 0 0 3 0v-9C5 2.67 4.33 2 3.5 2Zm4 3C6.67 5 6 5.67 6 6.5v6a1.5 1.5 0 0 0 3 0v-6C9 5.67 8.33 5 7.5 5Zm4 3c-.83 0-1.5.67-1.5 1.5v3a1.5 1.5 0 0 0 3 0v-3c0-.83-.67-1.5-1.5-1.5Z\"]);\nexport const DataBarVertical16Regular = /*#__PURE__*/createFluentIcon('DataBarVertical16Regular', \"16\", [\"M2 3.5a1.5 1.5 0 1 1 3 0v9a1.5 1.5 0 0 1-3 0v-9ZM3.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 1 0v-9a.5.5 0 0 0-.5-.5ZM6 6.5a1.5 1.5 0 1 1 3 0v6a1.5 1.5 0 0 1-3 0v-6ZM7.5 6a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 1 0v-6a.5.5 0 0 0-.5-.5Zm4 2c-.83 0-1.5.67-1.5 1.5v3a1.5 1.5 0 0 0 3 0v-3c0-.83-.67-1.5-1.5-1.5ZM11 9.5a.5.5 0 0 1 1 0v3a.5.5 0 0 1-1 0v-3Z\"]);\nexport const DataBarVertical20Filled = /*#__PURE__*/createFluentIcon('DataBarVertical20Filled', \"20\", [\"M5 3a2 2 0 0 0-2 2v10a2 2 0 1 0 4 0V5a2 2 0 0 0-2-2Zm5 3a2 2 0 0 0-2 2v7a2 2 0 1 0 4 0V8a2 2 0 0 0-2-2Zm5 3a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0v-4a2 2 0 0 0-2-2Z\"]);\nexport const DataBarVertical20Regular = /*#__PURE__*/createFluentIcon('DataBarVertical20Regular', \"20\", [\"M5 3a2 2 0 0 0-2 2v10a2 2 0 1 0 4 0V5a2 2 0 0 0-2-2ZM4 5a1 1 0 0 1 2 0v10a1 1 0 1 1-2 0V5Zm4 3a2 2 0 1 1 4 0v7a2 2 0 1 1-4 0V8Zm2-1a1 1 0 0 0-1 1v7a1 1 0 1 0 2 0V8a1 1 0 0 0-1-1Zm3 4a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0v-4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Z\"]);\nexport const DataBarVertical24Filled = /*#__PURE__*/createFluentIcon('DataBarVertical24Filled', \"24\", [\"M5.75 3C6.99 3 8 4 8 5.25v13.5a2.25 2.25 0 1 1-4.5 0V5.25C3.5 4 4.5 3 5.75 3Zm6.5 4c1.24 0 2.25 1 2.25 2.25v9.5a2.25 2.25 0 1 1-4.5 0v-9.5C10 8 11 7 12.25 7Zm6.5 4c1.24 0 2.25 1 2.25 2.25v5.5a2.25 2.25 0 1 1-4.5 0v-5.5c0-1.24 1-2.25 2.25-2.25Z\"]);\nexport const DataBarVertical24Regular = /*#__PURE__*/createFluentIcon('DataBarVertical24Regular', \"24\", [\"M5.75 3C6.99 3 8 4 8 5.25v13.5a2.25 2.25 0 1 1-4.5 0V5.25C3.5 4 4.5 3 5.75 3Zm6.5 4c1.24 0 2.25 1 2.25 2.25v9.5a2.25 2.25 0 1 1-4.5 0v-9.5C10 8 11 7 12.25 7Zm6.5 4c1.24 0 2.25 1 2.25 2.25v5.5a2.25 2.25 0 1 1-4.5 0v-5.5c0-1.24 1-2.25 2.25-2.25Zm-13-6.5a.75.75 0 0 0-.75.75v13.5a.75.75 0 0 0 1.5 0V5.25a.75.75 0 0 0-.75-.75Zm6.5 4a.75.75 0 0 0-.75.75v9.5a.75.75 0 0 0 1.5 0v-9.5a.75.75 0 0 0-.75-.75Zm6.5 4a.75.75 0 0 0-.75.75v5.5a.75.75 0 0 0 1.5 0v-5.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const DataBarVertical32Filled = /*#__PURE__*/createFluentIcon('DataBarVertical32Filled', \"32\", [\"M5 7a3 3 0 1 1 6 0v18a3 3 0 1 1-6 0V7Zm8 6a3 3 0 1 1 6 0v12a3 3 0 1 1-6 0V13Zm11 3a3 3 0 0 0-3 3v6a3 3 0 1 0 6 0v-6a3 3 0 0 0-3-3Z\"]);\nexport const DataBarVertical32Regular = /*#__PURE__*/createFluentIcon('DataBarVertical32Regular', \"32\", [\"M5 7a3 3 0 1 1 6 0v18a3 3 0 1 1-6 0V7Zm3-1a1 1 0 0 0-1 1v18a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1Zm5 7a3 3 0 1 1 6 0v12a3 3 0 1 1-6 0V13Zm3-1a1 1 0 0 0-1 1v12a1 1 0 1 0 2 0V13a1 1 0 0 0-1-1Zm8 4a3 3 0 0 0-3 3v6a3 3 0 1 0 6 0v-6a3 3 0 0 0-3-3Zm-1 3a1 1 0 1 1 2 0v6a1 1 0 1 1-2 0v-6Z\"]);\nexport const DataBarVerticalAdd20Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalAdd20Filled', \"20\", [\"M15 3a2 2 0 0 1 2 2v4.6a5.48 5.48 0 0 0-4-.4V5c0-1.1.9-2 2-2ZM9 14.5c0 .88.2 1.72.58 2.46A2 2 0 0 1 8 15V8a2 2 0 1 1 4 0v1.6a5.5 5.5 0 0 0-3 4.9ZM7 11a2 2 0 1 0-4 0v4a2 2 0 1 0 4 0v-4Zm12 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const DataBarVerticalAdd20Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalAdd20Regular', \"20\", [\"M15 3a2 2 0 0 1 2 2v4.6c-.32-.16-.65-.3-1-.4V5a1 1 0 1 0-2 0v4.02c-.34.03-.68.1-1 .19V5c0-1.1.9-2 2-2ZM9.07 15.36c.09.57.26 1.1.5 1.6A2 2 0 0 1 8 15V8a2 2 0 1 1 4 0v1.6c-.36.18-.7.4-1 .66V8a1 1 0 1 0-2 0v7a1 1 0 0 0 .07.36ZM5 9a2 2 0 0 1 2 2v4a2 2 0 1 1-4 0v-4c0-1.1.9-2 2-2Zm1 2a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm13 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const DataBarVerticalAdd24Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalAdd24Filled', \"24\", [\"M18.25 3C17 3 16 4 16 5.25v5.92a6.47 6.47 0 0 1 4.5.56V5.25C20.5 4 19.5 3 18.25 3ZM14 9.25v2.77A6.5 6.5 0 0 0 12 20.98l-.26.02c-1.24 0-2.25-1-2.25-2.25v-9.5a2.25 2.25 0 1 1 4.5 0Zm-11 4a2.25 2.25 0 1 1 4.5 0v5.5a2.25 2.25 0 1 1-4.5 0v-5.5Zm20 4.25a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const DataBarVerticalAdd24Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalAdd24Regular', \"24\", [\"M18.25 3C17 3 16 4 16 5.25v5.92c.48-.11.98-.17 1.5-.17V5.25a.75.75 0 0 1 1.5 0v5.92c.53.13 1.03.32 1.5.56V5.25C20.5 4 19.5 3 18.25 3ZM14 9.25v2.77c-.57.36-1.07.81-1.5 1.33v-4.1a.75.75 0 0 0-1.5 0v8.1a6.75 6.75 0 0 0 0 .3v1.1c0 .23.1.43.25.56.18.6.43 1.16.76 1.68l-.26.01c-1.24 0-2.25-1-2.25-2.25v-9.5a2.25 2.25 0 1 1 4.5 0Zm-11 4a2.25 2.25 0 1 1 4.5 0v5.5a2.25 2.25 0 1 1-4.5 0v-5.5Zm3 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Zm17 4.25a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const DataBarVerticalAscending16Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalAscending16Filled', \"16\", [\"M11 3a2 2 0 1 1 4 0v10a2 2 0 1 1-4 0V3ZM1 9a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0V9Zm7-4a2 2 0 0 0-2 2v6a2 2 0 1 0 4 0V7a2 2 0 0 0-2-2Z\"]);\nexport const DataBarVerticalAscending16Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalAscending16Regular', \"16\", [\"M11 3a2 2 0 1 1 4 0v10a2 2 0 1 1-4 0V3Zm2 11a1 1 0 0 0 1-1V3a1 1 0 1 0-2 0v10a1 1 0 0 0 1 1ZM1 9a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0V9Zm2 5a1 1 0 0 0 1-1V9a1 1 0 0 0-2 0v4a1 1 0 0 0 1 1Zm5-9a2 2 0 0 0-2 2v6a2 2 0 1 0 4 0V7a2 2 0 0 0-2-2Zm0 1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Z\"]);\nexport const DataBarVerticalStar16Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalStar16Filled', \"16\", [\"M12 2.5a1.5 1.5 0 0 0-3 0v4.1a5.48 5.48 0 0 1 3-.58V2.5Zm-4 3v1.76a5.49 5.49 0 0 0-1.8 5.71A1.5 1.5 0 0 1 5 11.5v-6a1.5 1.5 0 1 1 3 0ZM2.5 7C3.33 7 4 7.67 4 8.5v3a1.5 1.5 0 0 1-3 0v-3C1 7.67 1.67 7 2.5 7ZM16 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H9c-.48 0-.68.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const DataBarVerticalStar16Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalStar16Regular', \"16\", [\"M12 2.5a1.5 1.5 0 0 0-3 0v4.1c.32-.16.65-.3 1-.4V2.5a.5.5 0 0 1 1 0v3.52a5.57 5.57 0 0 1 1 0V2.5ZM8 7.26V5.5a1.5 1.5 0 1 0-3 0v6c0 .65.42 1.2 1 1.41V5.5a.5.5 0 0 1 1 0v2.84c.28-.4.62-.77 1-1.08ZM4 8.5a1.5 1.5 0 1 0-3 0v3a1.5 1.5 0 0 0 3 0v-3ZM2.5 8c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM16 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H9c-.48 0-.68.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const DataBarVerticalStar20Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalStar20Filled', \"20\", [\"M15 3a2 2 0 0 1 2 2v4.6a5.48 5.48 0 0 0-4-.4V5c0-1.1.9-2 2-2ZM9 14.5c0 .88.2 1.72.58 2.46A2 2 0 0 1 8 15V8a2 2 0 1 1 4 0v1.6a5.5 5.5 0 0 0-3 4.9ZM7 11a2 2 0 1 0-4 0v4a2 2 0 1 0 4 0v-4Zm12 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H12c-.48 0-.69.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const DataBarVerticalStar20Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalStar20Regular', \"20\", [\"M15 3a2 2 0 0 1 2 2v4.6c-.32-.16-.65-.3-1-.4V5a1 1 0 1 0-2 0v4.02c-.34.03-.68.1-1 .19V5c0-1.1.9-2 2-2ZM9.07 15.36c.09.57.26 1.1.5 1.6A2 2 0 0 1 8 15V8a2 2 0 1 1 4 0v1.6c-.36.18-.7.4-1 .66V8a1 1 0 1 0-2 0v7a1 1 0 0 0 .07.36ZM5 9a2 2 0 0 1 2 2v4a2 2 0 1 1-4 0v-4c0-1.1.9-2 2-2Zm1 2a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm13 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.02-2.64a.5.5 0 0 0-.96 0l-.47 1.53H12c-.48 0-.69.65-.3.95l1.26.94-.48 1.53c-.15.49.38.89.77.59l1.25-.95 1.25.95c.4.3.92-.1.77-.59l-.48-1.53 1.25-.94c.4-.3.2-.95-.3-.95h-1.54l-.47-1.53Z\"]);\nexport const DataBarVerticalStar24Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalStar24Filled', \"24\", [\"M18.25 3C17.01 3 16 4 16 5.25v5.92a6.51 6.51 0 0 1 4.5.56V5.25C20.5 4 19.5 3 18.25 3ZM14 9.25v2.77a6.5 6.5 0 0 0-1.99 8.96l-.26.02c-1.24 0-2.25-1-2.25-2.25v-9.5a2.25 2.25 0 1 1 4.5 0Zm-11 4a2.25 2.25 0 1 1 4.5 0v5.5a2.25 2.25 0 1 1-4.5 0v-5.5Zm20 4.25a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-4.94-3.08a.58.58 0 0 0-1.12 0l-.55 1.79h-1.8c-.57 0-.8.75-.35 1.1l1.46 1.1-.56 1.79c-.17.56.44 1.03.9.68l1.46-1.1 1.46 1.1c.46.35 1.07-.12.9-.68l-.56-1.79 1.46-1.1c.46-.35.22-1.1-.35-1.1h-1.8l-.55-1.79Z\"]);\nexport const DataBarVerticalStar24Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalStar24Regular', \"24\", [\"M18.25 3C17.01 3 16 4 16 5.25v5.92c.48-.11.98-.17 1.5-.17V5.25a.75.75 0 1 1 1.5 0v5.92c.53.13 1.03.32 1.5.56V5.25C20.5 4 19.5 3 18.25 3ZM14 9.25v2.77c-.57.36-1.07.81-1.5 1.33v-4.1a.75.75 0 0 0-1.5 0v8.09a6.62 6.62 0 0 0 0 .32v1.1c0 .21.1.42.26.55.17.6.43 1.16.75 1.68l-.26.01c-1.24 0-2.25-1-2.25-2.25v-9.5a2.25 2.25 0 1 1 4.5 0Zm-11 4a2.25 2.25 0 1 1 4.5 0v5.5a2.25 2.25 0 1 1-4.5 0v-5.5Zm3 0a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Zm17 4.25a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-4.94-3.08a.58.58 0 0 0-1.12 0l-.55 1.79h-1.8c-.57 0-.8.75-.35 1.1l1.46 1.1-.56 1.79c-.17.56.44 1.03.9.68l1.46-1.1 1.46 1.1c.46.35 1.07-.12.9-.68l-.56-1.79 1.46-1.1c.46-.35.22-1.1-.35-1.1h-1.8l-.55-1.79Z\"]);\nexport const DataBarVerticalStar32Filled = /*#__PURE__*/createFluentIcon('DataBarVerticalStar32Filled', \"32\", [\"M27 7a3 3 0 1 0-6 0v7.22a9.03 9.03 0 0 1 6 .72V7Zm-8 6v1.94a9 9 0 0 0-3.51 13.02A3 3 0 0 1 13 25V13a3 3 0 1 1 6 0Zm-8 6a3 3 0 1 0-6 0v6a3 3 0 1 0 6 0v-6Zm19.5 4a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Zm-8.21-4.86-.94 2.83h-3a.75.75 0 0 0-.43 1.36l2.4 1.7-.92 2.8a.75.75 0 0 0 1.14.84L23 25.93l2.46 1.74a.75.75 0 0 0 1.14-.84l-.93-2.8 2.41-1.7a.75.75 0 0 0-.43-1.36h-3l-.94-2.83a.75.75 0 0 0-1.42 0Z\"]);\nexport const DataBarVerticalStar32Regular = /*#__PURE__*/createFluentIcon('DataBarVerticalStar32Regular', \"32\", [\"M27 7a3 3 0 1 0-6 0v7.22a9.03 9.03 0 0 1 2-.22V7a1 1 0 1 1 2 0v7.22c.7.16 1.37.4 2 .72V7Zm-8 6v1.94c-.73.36-1.4.81-2 1.35V13a1 1 0 1 0-2 0v5.87a8.96 8.96 0 0 0 .49 9.09A3 3 0 0 1 13 25V13a3 3 0 1 1 6 0Zm-8 6a3 3 0 1 0-6 0v6a3 3 0 1 0 6 0v-6Zm-3-1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1Zm22.5 5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Zm-8.21-4.86-.94 2.83h-3a.75.75 0 0 0-.43 1.36l2.4 1.7-.92 2.8a.75.75 0 0 0 1.14.84L23 25.93l2.46 1.74a.75.75 0 0 0 1.14-.84l-.93-2.8 2.41-1.7a.75.75 0 0 0-.43-1.36h-3l-.94-2.83a.75.75 0 0 0-1.42 0Z\"]);\nexport const DataFunnel20Filled = /*#__PURE__*/createFluentIcon('DataFunnel20Filled', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm2 6c0-1.1.9-2 2-2h8a2 2 0 1 1 0 4H6a2 2 0 0 1-2-2Zm4 4a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4H8Z\"]);\nexport const DataFunnel20Regular = /*#__PURE__*/createFluentIcon('DataFunnel20Regular', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h12a1 1 0 1 0 0-2H4Zm0 7c0-1.1.9-2 2-2h8a2 2 0 1 1 0 4H6a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H6Zm2 5a2 2 0 1 0 0 4h4a2 2 0 1 0 0-4H8Zm-1 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Z\"]);\nexport const DataFunnel24Filled = /*#__PURE__*/createFluentIcon('DataFunnel24Filled', \"24\", [\"M19.25 7.5a2.75 2.75 0 0 0 0-5.5H4.75a2.75 2.75 0 1 0 0 5.5h14.5Zm-2 7a2.75 2.75 0 1 0 0-5.5H6.75a2.75 2.75 0 0 0 0 5.5h10.5ZM17 18.75A2.75 2.75 0 0 0 14.25 16h-4.5a2.75 2.75 0 0 0 0 5.5h4.5A2.75 2.75 0 0 0 17 18.75Z\"]);\nexport const DataFunnel24Regular = /*#__PURE__*/createFluentIcon('DataFunnel24Regular', \"24\", [\"M22 4.75a2.75 2.75 0 0 1-2.75 2.75H4.75a2.75 2.75 0 1 1 0-5.5h14.5A2.75 2.75 0 0 1 22 4.75Zm-2 7a2.75 2.75 0 0 1-2.75 2.75H6.75a2.75 2.75 0 1 1 0-5.5h10.5A2.75 2.75 0 0 1 20 11.75Zm-3 7a2.75 2.75 0 0 1-2.75 2.75h-4.5a2.75 2.75 0 1 1 0-5.5h4.5A2.75 2.75 0 0 1 17 18.75Zm3.5-14c0-.69-.56-1.25-1.25-1.25H4.75a1.25 1.25 0 1 0 0 2.5h14.5c.7 0 1.25-.56 1.25-1.25Zm-2 7c0-.69-.56-1.25-1.25-1.25H6.75a1.25 1.25 0 0 0 0 2.5h10.5c.7 0 1.25-.56 1.25-1.25Zm-3 7c0-.69-.56-1.25-1.25-1.25h-4.5a1.25 1.25 0 0 0 0 2.5h4.5c.7 0 1.25-.56 1.25-1.25Z\"]);\nexport const DataHistogram16Filled = /*#__PURE__*/createFluentIcon('DataHistogram16Filled', \"16\", [\"M10 4a2 2 0 1 0-4 0v10h4V4ZM5 7H4a2 2 0 0 0-2 2v4.5c0 .28.22.5.5.5H5V7Zm6 7h2.5a.5.5 0 0 0 .5-.5V7a2 2 0 0 0-2-2h-1v9Z\"]);\nexport const DataHistogram16Regular = /*#__PURE__*/createFluentIcon('DataHistogram16Regular', \"16\", [\"M6.5 4v9h3V4a1 1 0 0 0-1-1h-1a1 1 0 0 0-1 1Zm-1 3V4c0-1.1.9-2 2-2h1a2 2 0 0 1 2 2v1H12a2 2 0 0 1 2 2v6.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V9c0-1.1.9-2 2-2h1.5Zm0 6V8H4a1 1 0 0 0-1 1v4h2.5Zm5 0H13V7a1 1 0 0 0-1-1h-1.5v7Z\"]);\nexport const DataHistogram20Filled = /*#__PURE__*/createFluentIcon('DataHistogram20Filled', \"20\", [\"M12 4.5c0-.83-.67-1.5-1.5-1.5h-1C8.67 3 8 3.67 8 4.5V17h4V4.5ZM13 6v11h3.5a.5.5 0 0 0 .5-.5V8a2 2 0 0 0-2-2h-2ZM5 9h2v8H3.5a.5.5 0 0 1-.5-.5V11c0-1.1.9-2 2-2Z\"]);\nexport const DataHistogram20Regular = /*#__PURE__*/createFluentIcon('DataHistogram20Regular', \"20\", [\"M8 5v11h4V5a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1ZM7 9V5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1h2a2 2 0 0 1 2 2v8.5a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5V11c0-1.1.9-2 2-2h2Zm0 7v-6H5a1 1 0 0 0-1 1v5h3Zm6 0h3V8a1 1 0 0 0-1-1h-2v9Z\"]);\nexport const DataHistogram24Filled = /*#__PURE__*/createFluentIcon('DataHistogram24Filled', \"24\", [\"M9 5.23c0-1.24 1-2.25 2.25-2.25h1.5c1.24 0 2.25 1 2.25 2.25V21H9V5.23ZM7.5 10H5.25C4.01 10 3 11 3 12.25v8c0 .41.34.75.75.75H7.5V10Zm9 11h3.75c.41 0 .75-.34.75-.75v-11C21 8.01 20 7 18.75 7H16.5v14Z\"]);\nexport const DataHistogram24Regular = /*#__PURE__*/createFluentIcon('DataHistogram24Regular', \"24\", [\"M8.5 5.23c0-1.24 1-2.25 2.25-2.25h2.5c1.24 0 2.25 1 2.25 2.25V7h3.25C19.99 7 21 8 21 9.25v11c0 .41-.34.75-.75.75H3.75a.75.75 0 0 1-.75-.75v-8C3 11.01 4 10 5.25 10H8.5V5.23ZM10 19.5h4V5.23a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75V19.5Zm-1.5-8H5.25a.75.75 0 0 0-.75.75v7.25h4v-8Zm7 8h4V9.25a.75.75 0 0 0-.75-.75H15.5v11Z\"]);\nexport const DataLine20Filled = /*#__PURE__*/createFluentIcon('DataLine20Filled', \"20\", [\"M18 5.5a2.5 2.5 0 0 1-3.44 2.32l-1.29 1.92A2.5 2.5 0 0 1 11.5 14a2.5 2.5 0 0 1-2.05-1.08L6.95 14A2.51 2.51 0 0 1 4.5 17a2.5 2.5 0 1 1 2.05-3.92L9.05 12a2.51 2.51 0 0 1 3.4-2.83l1.28-1.92A2.5 2.5 0 0 1 15.5 3 2.5 2.5 0 0 1 18 5.5Z\"]);\nexport const DataLine20Regular = /*#__PURE__*/createFluentIcon('DataLine20Regular', \"20\", [\"M15.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM13 5.5a2.5 2.5 0 1 1 1.56 2.32l-1.29 1.92A2.5 2.5 0 0 1 11.5 14a2.5 2.5 0 0 1-2.05-1.08L6.95 14A2.51 2.51 0 0 1 4.5 17a2.5 2.5 0 1 1 2.05-3.92L9.05 12A2.51 2.51 0 0 1 11.5 9c.33 0 .65.07.94.18l1.29-1.92A2.5 2.5 0 0 1 13 5.5Zm-3 6a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-7 3a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const DataLine24Filled = /*#__PURE__*/createFluentIcon('DataLine24Filled', \"24\", [\"M16 6a3 3 0 1 1 2.52 2.96l-2.03 3.36a3 3 0 0 1-4.75 3.65L8 17.84V18a3 3 0 1 1-.47-1.6l3.54-1.77A3.01 3.01 0 0 1 14 11c.48 0 .94.11 1.34.32l1.8-2.97A3 3 0 0 1 16 6Z\"]);\nexport const DataLine24Regular = /*#__PURE__*/createFluentIcon('DataLine24Regular', \"24\", [\"M19 4.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM16 6a3 3 0 1 1 2.52 2.96l-2.03 3.36a3 3 0 0 1-4.75 3.65L8 17.84V18a3 3 0 1 1-.47-1.6l3.54-1.77A3.01 3.01 0 0 1 14 11c.48 0 .94.11 1.34.32l1.8-2.97A3 3 0 0 1 16 6Zm-2 6.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-9 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const DataPie20Filled = /*#__PURE__*/createFluentIcon('DataPie20Filled', \"20\", [\"M8 4.07c.55-.08 1 .38 1 .93v6h6c.55 0 1 .45.93 1A7 7 0 1 1 8 4.07ZM17.06 10c.5 0 .93-.37.94-.86V9a7 7 0 0 0-7.14-7c-.5.01-.86.44-.86.94V9a1 1 0 0 0 1 1h6.06Z\"]);\nexport const DataPie20Regular = /*#__PURE__*/createFluentIcon('DataPie20Regular', \"20\", [\"M9 12a1 1 0 0 1-1-1V5.08A6 6 0 1 0 14.92 12H9ZM8 4.07c.55-.08 1 .38 1 .93v6h6c.55 0 1 .45.93 1A7 7 0 1 1 8 4.07ZM11 9V3a6 6 0 0 1 6 6h-6Zm6.06 1c.5 0 .93-.37.94-.86V9a7 7 0 0 0-7.14-7c-.5.01-.86.44-.86.94V9a1 1 0 0 0 1 1h6.06Z\"]);\nexport const DataPie24Filled = /*#__PURE__*/createFluentIcon('DataPie24Filled', \"24\", [\"M10.25 4.25c.41 0 .75.34.75.75v8h8c.38 0 .7.28.74.65l.01.1c0 4.97-4.03 8.5-9 8.5a9 9 0 0 1-9-9c0-4.97 3.53-9 8.5-9Zm3-2.5a9 9 0 0 1 9 9c0 .41-.34.75-.75.75h-8.25a.75.75 0 0 1-.75-.75V2.5c0-.41.34-.75.75-.75Z\"]);\nexport const DataPie24Regular = /*#__PURE__*/createFluentIcon('DataPie24Regular', \"24\", [\"M10.25 4.25c.41 0 .75.34.75.75v8h8c.38 0 .7.28.74.65l.01.1c0 4.97-4.03 8.5-9 8.5a9 9 0 0 1-9-9c0-4.97 3.53-9 8.5-9ZM9.5 5.79l-.2.02c-3.7.47-6.05 3.62-6.05 7.44a7.5 7.5 0 0 0 7.5 7.5c3.82 0 6.97-2.35 7.44-6.04l.02-.21h-7.96a.75.75 0 0 1-.74-.65l-.01-.1V5.79Zm3.75-4.04a9 9 0 0 1 9 9c0 .41-.34.75-.75.75h-8.25a.75.75 0 0 1-.75-.75V2.5c0-.41.34-.75.75-.75ZM14 3.29V10h6.71l-.02-.2A7.5 7.5 0 0 0 14.2 3.3L14 3.3Z\"]);\nexport const DataScatter20Filled = /*#__PURE__*/createFluentIcon('DataScatter20Filled', \"20\", [\"M3 2.5a.5.5 0 0 0-1 0v15c0 .28.22.5.5.5h15a.5.5 0 0 0 0-1H3V2.5ZM7.5 10a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM17 5.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM12.5 15a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const DataScatter20Regular = /*#__PURE__*/createFluentIcon('DataScatter20Regular', \"20\", [\"M3 2.5a.5.5 0 0 0-1 0v15c0 .28.22.5.5.5h15a.5.5 0 0 0 0-1H3V2.5Zm3 5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM7.5 5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm7-1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM12 5.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm-1 7a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm1.5-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z\"]);\nexport const DataScatter24Filled = /*#__PURE__*/createFluentIcon('DataScatter24Filled', \"24\", [\"M3 3.75a.75.75 0 0 1 1.5 0V19.5h15.75a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75V3.75ZM14 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM9 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm6 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z\"]);\nexport const DataScatter24Regular = /*#__PURE__*/createFluentIcon('DataScatter24Regular', \"24\", [\"M3 3.75a.75.75 0 0 1 1.5 0V19.5h15.75a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75V3.75ZM17 4a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1.5 3a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM6 9a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm6 4.5a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-1.5 3a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const DataSunburst20Filled = /*#__PURE__*/createFluentIcon('DataSunburst20Filled', \"20\", [\"M6.94 3.13a.5.5 0 0 1-.2.68A7.03 7.03 0 0 0 3.8 6.73a.5.5 0 1 1-.89-.46 8.03 8.03 0 0 1 3.35-3.35.5.5 0 0 1 .67.21Zm6.12 0a.5.5 0 0 1 .67-.2 8.03 8.03 0 0 1 3.35 3.34.5.5 0 0 1-.89.46 7.03 7.03 0 0 0-2.92-2.92.5.5 0 0 1-.21-.68Zm-9.93 9.93a.5.5 0 0 1 .68.2 7.03 7.03 0 0 0 2.92 2.93.5.5 0 1 1-.46.89 8.03 8.03 0 0 1-3.35-3.35.5.5 0 0 1 .21-.67Zm13.74 0a.5.5 0 0 1 .2.67 8.03 8.03 0 0 1-3.34 3.35.5.5 0 0 1-.46-.89 7.03 7.03 0 0 0 2.92-2.92.5.5 0 0 1 .68-.21ZM10 5.5c-.15 0-.3 0-.45.02a.5.5 0 0 1-.1-1L10 4.5a5.5 5.5 0 0 1 5.25 3.85.5.5 0 1 1-.96.3A4.5 4.5 0 0 0 10 5.5Zm-2.6.2a.5.5 0 0 1-.1.7 4.5 4.5 0 0 0-1.2 5.85.5.5 0 1 1-.86.5A5.48 5.48 0 0 1 6.7 5.6a.5.5 0 0 1 .7.1Zm7.52 5.32a.5.5 0 0 1 .33.63 5.5 5.5 0 0 1-8 3.11.5.5 0 1 1 .5-.86 4.5 4.5 0 0 0 6.54-2.55.5.5 0 0 1 .63-.33ZM10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"]);\nexport const DataSunburst20Regular = /*#__PURE__*/createFluentIcon('DataSunburst20Regular', \"20\", [\"M6.94 3.13a.5.5 0 0 1-.2.68A7.03 7.03 0 0 0 3.8 6.73a.5.5 0 1 1-.89-.46 8.03 8.03 0 0 1 3.35-3.35.5.5 0 0 1 .67.21Zm6.12 0a.5.5 0 0 1 .67-.2 8.03 8.03 0 0 1 3.35 3.34.5.5 0 0 1-.89.46 7.03 7.03 0 0 0-2.92-2.92.5.5 0 0 1-.21-.68Zm-9.93 9.93a.5.5 0 0 1 .68.2 7.03 7.03 0 0 0 2.92 2.93.5.5 0 1 1-.46.89 8.03 8.03 0 0 1-3.35-3.35.5.5 0 0 1 .21-.67Zm13.74 0a.5.5 0 0 1 .2.67 8.03 8.03 0 0 1-3.34 3.35.5.5 0 0 1-.46-.89 7.03 7.03 0 0 0 2.92-2.92.5.5 0 0 1 .68-.21ZM10 5.5c-.15 0-.3 0-.45.02a.5.5 0 0 1-.1-1L10 4.5a5.5 5.5 0 0 1 5.25 3.85.5.5 0 1 1-.96.3A4.5 4.5 0 0 0 10 5.5Zm-2.6.2a.5.5 0 0 1-.1.7 4.5 4.5 0 0 0-1.2 5.85.5.5 0 1 1-.86.5A5.48 5.48 0 0 1 6.7 5.6a.5.5 0 0 1 .7.1Zm7.52 5.32a.5.5 0 0 1 .33.63 5.5 5.5 0 0 1-8 3.11.5.5 0 1 1 .5-.86 4.5 4.5 0 0 0 6.54-2.55.5.5 0 0 1 .63-.33ZM8 10a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z\"]);\nexport const DataSunburst24Filled = /*#__PURE__*/createFluentIcon('DataSunburst24Filled', \"24\", [\"M15 3.51c0 .32.2.6.5.74a8.53 8.53 0 0 1 4.25 4.26c.13.29.42.5.74.5.52 0 .9-.52.68-1-1-2.31-2.87-4.17-5.18-5.18-.48-.21-.99.16-.99.68Zm-6.99-.68c.48-.21.99.16.99.68 0 .32-.2.6-.5.74A8.53 8.53 0 0 0 4.26 8.5c-.13.29-.42.5-.74.5-.52 0-.9-.52-.68-1C3.83 5.7 5.7 3.84 8 2.83ZM15 20.49c0-.32.2-.6.5-.74a8.53 8.53 0 0 0 4.25-4.26c.13-.29.42-.49.74-.49.52 0 .9.5.68.99-1 2.31-2.87 4.18-5.18 5.18-.48.21-.99-.16-.99-.68Zm-10.75-5A.82.82 0 0 0 3.5 15c-.52 0-.9.5-.68.99 1 2.31 2.87 4.18 5.18 5.18.48.21.99-.16.99-.68 0-.32-.2-.6-.5-.74a8.53 8.53 0 0 1-4.25-4.26ZM12 6.5c-.2 0-.38.01-.57.03a.75.75 0 1 1-.16-1.5 7 7 0 0 1 7.55 5.4.75.75 0 0 1-1.46.35A5.5 5.5 0 0 0 12 6.5Zm-2.88-.1c.23.34.14.81-.2 1.04a5.5 5.5 0 0 0-1.48 7.64.75.75 0 0 1-1.24.84A6.97 6.97 0 0 1 8.08 6.2a.75.75 0 0 1 1.04.2Zm9.11 6.5c.4.11.64.52.53.92A7 7 0 0 1 8.75 18.2a.75.75 0 0 1 .7-1.33 5.5 5.5 0 0 0 7.86-3.44c.1-.4.52-.63.92-.52ZM12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z\"]);\nexport const DataSunburst24Regular = /*#__PURE__*/createFluentIcon('DataSunburst24Regular', \"24\", [\"M15.5 4.25a.82.82 0 0 1-.5-.74c0-.52.5-.9.99-.68 2.31 1 4.18 2.87 5.18 5.18.21.48-.16 1-.68 1-.32 0-.6-.21-.74-.5a8.53 8.53 0 0 0-4.26-4.26ZM9 3.5c0-.52-.5-.9-.99-.68C5.7 3.83 3.83 5.7 2.83 8c-.21.48.16 1 .68 1 .32 0 .6-.21.74-.5A8.53 8.53 0 0 1 8.5 4.25c.29-.13.49-.42.49-.74Zm6.5 16.24c-.3.13-.5.42-.5.74 0 .52.5.9.99.68 2.31-1 4.18-2.87 5.18-5.18.21-.48-.16-.99-.68-.99-.32 0-.6.2-.74.5a8.53 8.53 0 0 1-4.26 4.25ZM3.5 15c.32 0 .6.2.74.5a8.53 8.53 0 0 0 4.26 4.25c.29.13.49.42.49.74 0 .52-.5.9-.99.68-2.31-1-4.18-2.87-5.18-5.18-.21-.48.16-.99.68-.99ZM12 6.5c-.2 0-.38.01-.57.03a.75.75 0 0 1-.16-1.5 7 7 0 0 1 7.55 5.4.75.75 0 0 1-1.46.35A5.5 5.5 0 0 0 12 6.5Zm-2.88-.1c.23.34.14.81-.2 1.04a5.5 5.5 0 0 0-1.48 7.64.75.75 0 1 1-1.24.84A6.97 6.97 0 0 1 8.08 6.2a.75.75 0 0 1 1.04.2Zm9.11 6.5c.4.11.64.52.53.92A7 7 0 0 1 8.75 18.2a.75.75 0 1 1 .7-1.33 5.5 5.5 0 0 0 7.86-3.44c.1-.4.52-.63.92-.52ZM12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-2.5 4a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Z\"]);\nexport const DataTreemap20Filled = /*#__PURE__*/createFluentIcon('DataTreemap20Filled', \"20\", [\"M7 3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h1V3Zm1 14h6a3 3 0 0 0 3-3v-1H8v4Zm9-5V6a3 3 0 0 0-3-3H8v9h9Z\"]);\nexport const DataTreemap20Regular = /*#__PURE__*/createFluentIcon('DataTreemap20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm1 1v12H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h1Zm1 12v-3h8v1a2 2 0 0 1-2 2H8Zm8-4H8V4h6a2 2 0 0 1 2 2v6Z\"]);\nexport const DataTreemap24Filled = /*#__PURE__*/createFluentIcon('DataTreemap24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3H9v18H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM10.5 21h7.25c1.8 0 3.25-1.46 3.25-3.25V15.5H10.5V21ZM21 14V6.25C21 4.45 19.54 3 17.75 3H10.5v11H21Z\"]);\nexport const DataTreemap24Regular = /*#__PURE__*/createFluentIcon('DataTreemap24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM6.25 4.5c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75H9v-15H6.25Zm4.25 0V14h9V6.25c0-.97-.78-1.75-1.75-1.75H10.5Zm9 11h-9v4h7.25c.97 0 1.75-.78 1.75-1.75V15.5Z\"]);\nexport const DataTrending16Filled = /*#__PURE__*/createFluentIcon('DataTrending16Filled', \"16\", [\"M3.5 2.75a.75.75 0 0 0-1.5 0v8.5A2.75 2.75 0 0 0 4.75 14h8.5a.75.75 0 0 0 0-1.5h-8.5c-.69 0-1.25-.56-1.25-1.25v-8.5Zm6.25 2c0 .41.34.75.75.75h.94L9 7.94 7.53 6.47a.75.75 0 0 0-1.06 0l-1.5 1.5a.75.75 0 0 0 1.06 1.06L7 8.06l1.47 1.47c.3.3.77.3 1.06 0l2.97-2.97v1.02a.75.75 0 0 0 1.5 0V4.75a.75.75 0 0 0-.75-.75H10.5a.75.75 0 0 0-.75.75Z\"]);\nexport const DataTrending16Regular = /*#__PURE__*/createFluentIcon('DataTrending16Regular', \"16\", [\"M3 2.5a.5.5 0 0 0-1 0v9A2.5 2.5 0 0 0 4.5 14h9a.5.5 0 0 0 0-1h-9A1.5 1.5 0 0 1 3 11.5v-9Zm7 2c0 .28.22.5.5.5h1.8L9 8.3 7.35 6.64a.5.5 0 0 0-.7 0l-2.5 2.5a.5.5 0 1 0 .7.7L7 7.71l1.65 1.64c.2.2.5.2.7 0L13 5.71v1.87a.5.5 0 0 0 1 0V4.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z\"]);\nexport const DataTrending20Filled = /*#__PURE__*/createFluentIcon('DataTrending20Filled', \"20\", [\"M4.5 3.75a.75.75 0 0 0-1.5 0v10.5A2.75 2.75 0 0 0 5.75 17h10.5a.75.75 0 0 0 0-1.5H5.75c-.69 0-1.25-.56-1.25-1.25V3.75ZM12.75 5a.75.75 0 0 0 0 1.5h1.69L11 9.94 9.53 8.47a.75.75 0 0 0-1.06 0l-2.75 2.75a.75.75 0 1 0 1.06 1.06L9 10.06l1.47 1.47a.75.75 0 0 0 1.06 0l3.97-3.97v1.69a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-.75-.75h-3.5Z\"]);\nexport const DataTrending20Regular = /*#__PURE__*/createFluentIcon('DataTrending20Regular', \"20\", [\"M4 3.5a.5.5 0 0 0-1 0v11A2.5 2.5 0 0 0 5.5 17h11a.5.5 0 0 0 0-1h-11A1.5 1.5 0 0 1 4 14.5v-11ZM12.5 5a.5.5 0 0 0 0 1h2.8L11 10.3 9.35 8.64a.5.5 0 0 0-.7 0l-3.5 3.5a.5.5 0 0 0 .7.7L9 9.71l1.65 1.64a.5.5 0 0 0 .7 0L16 6.71V9.5a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const DataTrending24Filled = /*#__PURE__*/createFluentIcon('DataTrending24Filled', \"24\", [\"M5 4a1 1 0 0 0-2 0v13.5A3.5 3.5 0 0 0 6.5 21H20a1 1 0 1 0 0-2H6.5A1.5 1.5 0 0 1 5 17.5V4Zm10 2a1 1 0 1 0 0 2h2.09l-3.84 3.84-1.8-1.8a1 1 0 0 0-1.4 0L6.78 13.3a1 1 0 1 0 1.42 1.42l2.54-2.55 1.8 1.8a1 1 0 0 0 1.4 0L18.5 9.4v2.09a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1H15Z\"]);\nexport const DataTrending24Regular = /*#__PURE__*/createFluentIcon('DataTrending24Regular', \"24\", [\"M4.5 3.75a.75.75 0 0 0-1.5 0v14C3 19.55 4.46 21 6.25 21h14a.75.75 0 0 0 0-1.5h-14c-.97 0-1.75-.78-1.75-1.75v-14ZM14.75 6a.75.75 0 0 0 0 1.5h3.19l-4.69 4.69-1.97-1.97a.75.75 0 0 0-1.06 0l-3.75 3.75a.75.75 0 1 0 1.06 1.06l3.22-3.22 1.97 1.97c.3.3.77.3 1.06 0L19 8.56v3.2a.75.75 0 0 0 1.5 0V6.75a.75.75 0 0 0-.75-.75h-5Z\"]);\nexport const DataTrending28Filled = /*#__PURE__*/createFluentIcon('DataTrending28Filled', \"28\", [\"M4 3a1 1 0 0 1 1 1v17c0 1.1.9 2 2 2h17a1 1 0 1 1 0 2H7a4 4 0 0 1-4-4V4a1 1 0 0 1 1-1Zm19 6.41V12a1 1 0 0 0 2 0V7a1 1 0 0 0-1-1h-5a1 1 0 1 0 0 2h2.59l-5.09 5.09-2.3-2.3a1 1 0 0 0-1.4 0l-5.5 5.5a1 1 0 1 0 1.4 1.42l4.8-4.8 2.3 2.3a1 1 0 0 0 1.4 0L23 9.4Z\"]);\nexport const DataTrending28Regular = /*#__PURE__*/createFluentIcon('DataTrending28Regular', \"28\", [\"M3.75 3c.41 0 .75.34.75.75v17.5c0 1.24 1 2.25 2.25 2.25h17.5a.75.75 0 0 1 0 1.5H6.75A3.75 3.75 0 0 1 3 21.25V3.75c0-.41.34-.75.75-.75Zm18.19 4.5-5.69 5.69-2.47-2.47a.75.75 0 0 0-1.06 0l-5.5 5.5a.75.75 0 1 0 1.06 1.06l4.97-4.97 2.47 2.47c.3.3.77.3 1.06 0L23 8.56v3.69a.75.75 0 0 0 1.5 0v-5.5a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0 0 1.5h3.69Z\"]);\nexport const DataTrending32Filled = /*#__PURE__*/createFluentIcon('DataTrending32Filled', \"32\", [\"M4 3a1 1 0 0 1 1 1v20.5A2.5 2.5 0 0 0 7.5 27H28a1 1 0 1 1 0 2H7.5A4.5 4.5 0 0 1 3 24.5V4a1 1 0 0 1 1-1Zm15 4.75c0-.69.56-1.25 1.25-1.25h7c.69 0 1.25.56 1.25 1.25v7a1.25 1.25 0 0 1-2.5 0v-3.98l-6.62 6.61c-.48.5-1.28.5-1.76 0l-3.12-3.11-5.37 5.36a1.25 1.25 0 0 1-1.76-1.76l6.25-6.25a1.25 1.25 0 0 1 1.76 0l3.12 3.11L24.23 9h-3.98C19.55 9 19 8.44 19 7.75Z\"]);\nexport const DataTrending32Regular = /*#__PURE__*/createFluentIcon('DataTrending32Regular', \"32\", [\"M4 3a1 1 0 0 1 1 1v20.5A2.5 2.5 0 0 0 7.5 27H28a1 1 0 1 1 0 2H7.5A4.5 4.5 0 0 1 3 24.5V4a1 1 0 0 1 1-1Zm15 5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 1 1-2 0v-4.59l-7.3 7.3a1 1 0 0 1-1.4 0L14 14.4l-5.3 5.3a1 1 0 0 1-1.4-1.42l6-6a1 1 0 0 1 1.4 0l3.3 3.3L24.59 9H20a1 1 0 0 1-1-1Z\"]);\nexport const DataTrending48Filled = /*#__PURE__*/createFluentIcon('DataTrending48Filled', \"48\", [\"M7.5 6C8.33 6 9 6.67 9 7.5v28a3.5 3.5 0 0 0 3.5 3.5h28a1.5 1.5 0 0 1 0 3h-28A6.5 6.5 0 0 1 6 35.5v-28C6 6.67 6.67 6 7.5 6ZM38 17.12v6.38a1.5 1.5 0 0 0 3 0v-10a1.5 1.5 0 0 0-1.5-1.5h-10a1.5 1.5 0 0 0 0 3h6.38l-8.43 8.43-4.44-4.04a1.5 1.5 0 0 0-2.04.02l-8.5 8a1.5 1.5 0 1 0 2.06 2.18l7.49-7.05 4.47 4.07c.6.54 1.5.52 2.07-.05L38 17.12Z\"]);\nexport const DataTrending48Regular = /*#__PURE__*/createFluentIcon('DataTrending48Regular', \"48\", [\"M8.5 7.25a1.25 1.25 0 1 0-2.5 0v28.5C6 39.2 8.8 42 12.25 42h28.5a1.25 1.25 0 1 0 0-2.5h-28.5a3.75 3.75 0 0 1-3.75-3.75V7.25Zm19.5 6c0-.69.56-1.25 1.25-1.25h10c.69 0 1.25.56 1.25 1.25v10a1.25 1.25 0 1 1-2.5 0v-6.98L27.88 26.38c-.47.48-1.23.5-1.72.04l-4.62-4.2-7.4 7.41a1.25 1.25 0 0 1-1.77-1.76l8.25-8.25a1.25 1.25 0 0 1 1.72-.04l4.62 4.2 9.27-9.28h-6.98c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const DataUsage20Filled = /*#__PURE__*/createFluentIcon('DataUsage20Filled', \"20\", [\"M5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm5 7c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM6 8.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5ZM13.5 6c.28 0 .5.22.5.5v7a.5.5 0 0 1-1 0v-7c0-.28.22-.5.5-.5Z\"]);\nexport const DataUsage20Regular = /*#__PURE__*/createFluentIcon('DataUsage20Regular', \"20\", [\"M10 10a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5ZM6 8.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5ZM13.5 6a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-.5-.5ZM3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm1 0v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Z\"]);\nexport const DataUsage24Filled = /*#__PURE__*/createFluentIcon('DataUsage24Filled', \"24\", [\"M18.25 3A2.75 2.75 0 0 1 21 5.75v12.5A2.75 2.75 0 0 1 18.25 21H5.75A2.75 2.75 0 0 1 3 18.25V5.75A2.75 2.75 0 0 1 5.75 3h12.5ZM7.75 9a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0v-6.5A.75.75 0 0 0 7.75 9Zm8.5-2a.74.74 0 0 0-.75.73v8.54c0 .4.34.73.75.73s.75-.33.75-.73V7.73c0-.4-.34-.73-.75-.73Zm-4.27 5c-.4 0-.73.33-.73.73l.04 3.55c0 .4.33.72.73.72.4 0 .73-.34.73-.74l-.04-3.54c0-.4-.33-.73-.73-.72Z\"]);\nexport const DataUsage24Regular = /*#__PURE__*/createFluentIcon('DataUsage24Regular', \"24\", [\"M18.25 3A2.75 2.75 0 0 1 21 5.75v12.5A2.75 2.75 0 0 1 18.25 21H5.75A2.75 2.75 0 0 1 3 18.25V5.75A2.75 2.75 0 0 1 5.75 3h12.5Zm0 1.5H5.75c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h12.5c.69 0 1.25-.56 1.25-1.25V5.75c0-.7-.56-1.25-1.25-1.25ZM7.75 9c.38 0 .7.28.74.64l.01.1v6.51a.75.75 0 0 1-1.5.1v-6.6c0-.42.34-.75.75-.75Zm8.5-2c.38 0 .7.27.74.63l.01.1v8.54c0 .4-.34.73-.75.73a.74.74 0 0 1-.74-.63l-.01-.1V7.73c0-.4.34-.73.75-.73Zm-4.27 5c.37 0 .67.26.73.62v.1l.04 3.54c0 .4-.32.73-.73.74a.73.73 0 0 1-.73-.62v-.1l-.04-3.55c0-.4.32-.73.73-.73Z\"]);\nexport const DataUsageEdit20Filled = /*#__PURE__*/createFluentIcon('DataUsageEdit20Filled', \"20\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h5.48c.15-.5.42-.96.8-1.33l1.84-1.85a.5.5 0 0 1-.12-.32v-7a.5.5 0 0 1 1 0v6.44l2.1-2.1c.27-.27.57-.47.9-.6V4a2 2 0 0 0-2-2H4Zm5 7c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM5 7.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm5.98 7.88 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.82 4.83a2.2 2.2 0 0 1-1.03.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const DataUsageEdit20Regular = /*#__PURE__*/createFluentIcon('DataUsageEdit20Regular', \"20\", [\"M4 15h5.99c-.23.3-.4.64-.51 1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v5.23c-.33.14-.63.34-.9.61l-.1.1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1Zm8-9.5a.5.5 0 0 1 1 0v6.44l-.88.88a.5.5 0 0 1-.12-.32v-7Zm-7 2a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5ZM9 9a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3A.5.5 0 0 0 9 9Zm1.98 6.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.82 4.83a2.2 2.2 0 0 1-1.03.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const DataUsageEdit24Filled = /*#__PURE__*/createFluentIcon('DataUsageEdit24Filled', \"24\", [\"M20 4.75A2.75 2.75 0 0 0 17.25 2H4.75A2.75 2.75 0 0 0 2 4.75v12.5A2.75 2.75 0 0 0 4.75 20h6.67l.1-.42c.16-.65.5-1.24.97-1.72l2.16-2.15a.71.71 0 0 1-.15-.44V6.73c0-.4.34-.73.75-.73s.75.33.75.73v7.62l2.4-2.39a3.27 3.27 0 0 1 1.6-.88V4.75Zm-14 4a.75.75 0 0 1 1.5 0v6.5a.75.75 0 0 1-1.5 0v-6.5Zm4.25 2.98c0-.4.32-.73.73-.73.4 0 .73.31.73.72l.04 3.54c0 .4-.32.73-.73.74a.73.73 0 0 1-.73-.72l-.04-3.55Zm8.85.94-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const DataUsageEdit24Regular = /*#__PURE__*/createFluentIcon('DataUsageEdit24Regular', \"24\", [\"M20 4.75A2.75 2.75 0 0 0 17.25 2H4.75A2.75 2.75 0 0 0 2 4.75v12.5A2.75 2.75 0 0 0 4.75 20h6.67l.1-.42c.1-.39.25-.75.46-1.08H4.75c-.69 0-1.25-.56-1.25-1.25V4.75c0-.7.56-1.25 1.25-1.25h12.5c.69 0 1.25.56 1.25 1.25v7.1c.44-.4.96-.65 1.5-.77V4.75Zm-4 9.6V6.63a.74.74 0 0 0-.75-.63.74.74 0 0 0-.75.73V15.37c.02.12.07.24.15.34L16 14.35Zm-8.5-5.7a.75.75 0 0 0-1.5.1v6.6a.75.75 0 0 0 1.5-.1v-6.6Zm4.2 2.97a.73.73 0 0 0-.72-.62c-.4 0-.73.33-.73.73l.04 3.55v.1c.06.35.36.62.73.62.4 0 .73-.34.73-.74l-.04-3.54v-.1Zm7.4 1.05-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const DataUsageSettings20Filled = /*#__PURE__*/createFluentIcon('DataUsageSettings20Filled', \"20\", [\"M2 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.2a5.5 5.5 0 0 0-3 0V6.5a.5.5 0 0 0-1 0v3.1a5.5 5.5 0 0 0-2.5 2.6v-1.7a.5.5 0 0 0-1 0v3a.5.5 0 0 0 .52.5 5.5 5.5 0 0 0 .58 3H5a3 3 0 0 1-3-3V6Zm3.5 2a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm6.57 3.44a2 2 0 0 1-1.43 2.48l-.47.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DataUsageSettings20Regular = /*#__PURE__*/createFluentIcon('DataUsageSettings20Regular', \"20\", [\"M5 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h4.6a5.5 5.5 0 0 1-.4-1H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.02a5.5 5.5 0 0 1 1 .19V6a3 3 0 0 0-3-3H5Zm4.02 11a5.5 5.5 0 0 1 .48-1.8v-1.7a.5.5 0 0 0-1 0v3a.5.5 0 0 0 .52.5Zm3.38-4.58.6-.21V6.5a.5.5 0 0 0-1 0v3.1c.13-.06.26-.13.4-.18ZM5.5 8a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm6.57 3.44a2 2 0 0 1-1.43 2.48l-.47.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DataUsageToolbox20Filled = /*#__PURE__*/createFluentIcon('DataUsageToolbox20Filled', \"20\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h5v-2.5c0-.17.02-.34.05-.5H9a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0V12c.37-.5.91-.84 1.54-.96A2.5 2.5 0 0 1 12 9.5v-4a.5.5 0 0 1 1 0v3.55c.16-.03.33-.05.5-.05h2c.17 0 .34.02.5.05V4a2 2 0 0 0-2-2H4Zm1 5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm7 4.5v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 4.5h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DataUsageToolbox20Regular = /*#__PURE__*/createFluentIcon('DataUsageToolbox20Regular', \"20\", [\"M9 9a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .55.5c.08-.37.23-.71.45-1V9.5A.5.5 0 0 0 9 9Zm-5 6h5v1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v5.05a2.51 2.51 0 0 0-.5-.05H15V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1Zm9-9.5v3.55c-.37.07-.7.23-1 .45v-4a.5.5 0 0 1 1 0Zm-8 2a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm7 4.5v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 4.5h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DataUsageToolbox24Filled = /*#__PURE__*/createFluentIcon('DataUsageToolbox24Filled', \"24\", [\"M17.25 2A2.75 2.75 0 0 1 20 4.75v6.6c-.24-.06-.49-.1-.75-.1H16V6.73c0-.4-.34-.73-.75-.73a.74.74 0 0 0-.75.73v4.82A2.75 2.75 0 0 0 13 14v.05c-.48.1-.92.34-1.26.67l-.03-3a.73.73 0 0 0-1.46.01l.04 3.55c0 .4.33.72.73.72h.03c-.03.16-.05.33-.05.5V20H4.75A2.75 2.75 0 0 1 2 17.25V4.75A2.75 2.75 0 0 1 4.75 2h12.5ZM6.75 8a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0v-6.5A.75.75 0 0 0 6.75 8ZM14 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H23v-1.5c0-.83-.67-1.5-1.5-1.5H21v-1c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM12 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H23v2c0 .83-.67 1.5-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5Z\"]);\nexport const DataUsageToolbox24Regular = /*#__PURE__*/createFluentIcon('DataUsageToolbox24Regular', \"24\", [\"M17.25 2A2.75 2.75 0 0 1 20 4.75v6.6c-.24-.06-.49-.1-.75-.1h-.75v-6.5c0-.7-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25H11V20H4.75A2.75 2.75 0 0 1 2 17.25V4.75A2.75 2.75 0 0 1 4.75 2h12.5ZM16 6.73v4.52h-.25c-.45 0-.88.1-1.25.3V6.73c0-.4.34-.73.75-.73.38 0 .7.27.74.63l.01.1Zm-4.29 4.99.03 3c-.34.34-.59.78-.69 1.28h-.03a.73.73 0 0 1-.73-.62v-.1l-.04-3.55c0-.4.32-.73.73-.73.37 0 .67.26.73.62v.1ZM6.75 8c.38 0 .7.28.74.64l.01.1v6.51a.75.75 0 0 1-1.5.1v-6.6c0-.42.34-.75.75-.75ZM14 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H23v-1.5c0-.83-.67-1.5-1.5-1.5H21v-1c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM12 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H23v2c0 .83-.67 1.5-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5Z\"]);\nexport const DataWaterfall20Filled = /*#__PURE__*/createFluentIcon('DataWaterfall20Filled', \"20\", [\"M1 3.5c0-.28.22-.5.5-.5H7a2 2 0 0 1 2 2v4.5h6c1.04 0 2 .74 2 1.8V16h1.5a.5.5 0 0 1 0 1H13c-1.04 0-2-.74-2-1.8v-4.7H5a2 2 0 0 1-2-2V4H1.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DataWaterfall20Regular = /*#__PURE__*/createFluentIcon('DataWaterfall20Regular', \"20\", [\"M1 3.5c0-.28.22-.5.5-.5H7a2 2 0 0 1 2 2v4.5h6c1.04 0 2 .74 2 1.8V16h1.5a.5.5 0 0 1 0 1H13c-1.04 0-2-.74-2-1.8v-4.7H5a2 2 0 0 1-2-2V4H1.5a.5.5 0 0 1-.5-.5ZM4 4v4.5a1 1 0 0 0 1 1h3V5a1 1 0 0 0-1-1H4Zm12 12v-4.7c0-.38-.38-.8-1-.8h-3v4.7c0 .38.38.8 1 .8h3Z\"]);\nexport const DataWaterfall24Filled = /*#__PURE__*/createFluentIcon('DataWaterfall24Filled', \"24\", [\"M2.75 3a.75.75 0 0 0 0 1.5H4v5.75c0 1.24 1 2.25 2.25 2.25h6.25v6.25c0 1.24 1 2.25 2.25 2.25h6.5a.75.75 0 0 0 0-1.5H20v-6.25c0-1.24-1-2.25-2.25-2.25H11.5V5.25c0-1.24-1-2.25-2.25-2.25h-6.5Z\"]);\nexport const DataWaterfall24Regular = /*#__PURE__*/createFluentIcon('DataWaterfall24Regular', \"24\", [\"M2 3.75c0-.41.34-.75.75-.75h6.5c1.24 0 2.25 1 2.25 2.25V11h6.25c1.24 0 2.25 1 2.25 2.25v6.25h1.25a.75.75 0 0 1 0 1.5h-6.5c-1.24 0-2.25-1-2.25-2.25V12.5H6.25c-1.24 0-2.25-1-2.25-2.25V4.5H2.75A.75.75 0 0 1 2 3.75ZM18.5 19.5v-6.25a.75.75 0 0 0-.75-.75H14v6.25c0 .41.34.75.75.75h3.75ZM10 5.25a.75.75 0 0 0-.75-.75H5.5v5.75c0 .41.34.75.75.75H10V5.25Z\"]);\nexport const DataWhisker20Filled = /*#__PURE__*/createFluentIcon('DataWhisker20Filled', \"20\", [\"M5 2a.5.5 0 0 0 0 1h1v1h-.5C4.67 4 4 4.67 4 5.5V10h5V5.5C9 4.67 8.33 4 7.5 4H7V3h1a.5.5 0 0 0 0-1H5Zm7 2a.5.5 0 0 0 0 1h1v1h-.5c-.83 0-1.5.67-1.5 1.5V9h5V7.5c0-.83-.67-1.5-1.5-1.5H14V5h1a.5.5 0 0 0 0-1h-3ZM4.5 15.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H7v-1h.5c.83 0 1.5-.67 1.5-1.5V11H4v1.5c0 .83.67 1.5 1.5 1.5H6v1H5a.5.5 0 0 0-.5.5ZM12 18a.5.5 0 0 1 0-1h1v-1h-.5a1.5 1.5 0 0 1-1.5-1.5V10h5v4.5c0 .83-.67 1.5-1.5 1.5H14v1h1a.5.5 0 0 1 0 1h-3Z\"]);\nexport const DataWhisker20Regular = /*#__PURE__*/createFluentIcon('DataWhisker20Regular', \"20\", [\"M5 2a.5.5 0 0 0 0 1h1v1h-.5C4.67 4 4 4.67 4 5.5v7c0 .83.67 1.5 1.5 1.5H6v1H5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1H7v-1h.5c.83 0 1.5-.67 1.5-1.5v-7C9 4.67 8.33 4 7.5 4H7V3h1a.5.5 0 0 0 0-1H5Zm0 10.5V11h3v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5Zm0-7c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5V10H5V5.5ZM12 4a.5.5 0 0 0 0 1h1v1h-.5c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5h.5v1h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1v-1h.5c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5H14V5h1a.5.5 0 0 0 0-1h-3Zm3 5h-3V7.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5V9Zm-3 1h3v4.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V10Z\"]);\nexport const DataWhisker24Filled = /*#__PURE__*/createFluentIcon('DataWhisker24Filled', \"24\", [\"M5.75 2a.75.75 0 0 0 0 1.5h1V5h-.5C5.01 5 4 6 4 7.25V11h7V7.25C11 6.01 10 5 8.75 5h-.5V3.5h1a.75.75 0 0 0 0-1.5h-3.5Zm0 16a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-1v-1.5h.5c1.24 0 2.25-1 2.25-2.25V12.5H4v1.75c0 1.24 1 2.25 2.25 2.25h.5V18h-1ZM14 4.75c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-1V7h.5C18.99 7 20 8 20 9.25V11h-7V9.25C13 8.01 14 7 15.25 7h.5V5.5h-1a.75.75 0 0 1-.75-.75Zm-1 11.5V12.5h7v3.75c0 1.24-1 2.25-2.25 2.25h-.5V20h1a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5h1v-1.5h-.5c-1.24 0-2.25-1-2.25-2.25Z\"]);\nexport const DataWhisker24Regular = /*#__PURE__*/createFluentIcon('DataWhisker24Regular', \"24\", [\"M14.75 4a.75.75 0 0 0 0 1.5h1V7h-.5C14.01 7 13 8 13 9.25v7c0 1.24 1 2.25 2.25 2.25h.5V20h-1a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-1v-1.5h.5c1.24 0 2.25-1 2.25-2.25v-7C20 8.01 19 7 17.75 7h-.5V5.5h1a.75.75 0 0 0 0-1.5h-3.5Zm-.25 5.25c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V11h-4V9.25Zm0 3.25h4v3.75c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 1-.75-.75V12.5ZM5.75 2a.75.75 0 0 0 0 1.5h1V5h-.5C5.01 5 4 6 4 7.25v7c0 1.24 1 2.25 2.25 2.25h.5V18h-1a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-1v-1.5h.5c1.24 0 2.25-1 2.25-2.25v-7C11 6.01 10 5 8.75 5h-.5V3.5h1a.75.75 0 0 0 0-1.5h-3.5Zm.5 13a.75.75 0 0 1-.75-.75V12.5h4v1.75c0 .41-.34.75-.75.75h-2.5Zm3.25-4h-4V7.25c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V11Z\"]);\nexport const Database16Filled = /*#__PURE__*/createFluentIcon('Database16Filled', \"16\", [\"M13 3.5C13 4.88 10.76 6 8 6S3 4.88 3 3.5 5.24 1 8 1s5 1.12 5 2.5Zm-10 9V5.49C4.06 6.4 5.86 7 8 7s3.94-.59 5-1.51v7.01c0 1.43-2.15 2.5-5 2.5s-5-1.07-5-2.5Z\"]);\nexport const Database16Regular = /*#__PURE__*/createFluentIcon('Database16Regular', \"16\", [\"M8 1C5.15 1 3 2.08 3 3.5v9C3 13.93 5.15 15 8 15s5-1.07 5-2.5v-9C13 2.08 10.85 1 8 1Zm0 1c2.44 0 4 .89 4 1.5S10.44 5 8 5s-4-.89-4-1.5S5.56 2 8 2Zm0 12c-2.44 0-4-.89-4-1.5V5.02c1.21.7 2.6 1.04 4 .98 1.4.06 2.79-.28 4-.98v7.48c0 .61-1.56 1.5-4 1.5Z\"]);\nexport const Database20Filled = /*#__PURE__*/createFluentIcon('Database20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9V15c0 1.66-2.69 3-6 3s-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98Z\"]);\nexport const Database20Regular = /*#__PURE__*/createFluentIcon('Database20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22C6.98 2.28 8.43 2 10 2c1.57 0 3.02.29 4.1.78C15.12 3.24 16 3.99 16 5v10c0 1-.88 1.76-1.9 2.22-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78C4.88 16.76 4 16.01 4 15V5Zm1 0c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69C14.64 5.88 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.19 9.19 0 0 0 10 3c-1.46 0-2.77.27-3.68.69C5.36 4.12 5 4.63 5 5Zm10 1.7c-.27.2-.58.38-.9.52-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69c.96-.43 1.32-.94 1.32-1.31V6.7Z\"]);\nexport const Database24Filled = /*#__PURE__*/createFluentIcon('Database24Filled', \"24\", [\"M12 10c4.42 0 8-1.8 8-4s-3.58-4-8-4-8 1.8-8 4 3.58 4 8 4Zm6.33.17c.59-.3 1.17-.67 1.67-1.12V18c0 2.2-3.58 4-8 4s-8-1.8-8-4V9.05c.5.45 1.08.83 1.67 1.12 1.7.85 3.94 1.33 6.33 1.33 2.4 0 4.63-.48 6.33-1.33Z\"]);\nexport const Database24Regular = /*#__PURE__*/createFluentIcon('Database24Regular', \"24\", [\"M4 6c0-.7.32-1.3.77-1.78a5.61 5.61 0 0 1 1.8-1.2A13.65 13.65 0 0 1 12 2c2.08 0 4 .38 5.43 1.02.72.32 1.34.72 1.8 1.2.45.49.77 1.09.77 1.78v12c0 .7-.32 1.3-.77 1.78-.46.48-1.08.88-1.8 1.2A13.65 13.65 0 0 1 12 22c-2.08 0-4-.38-5.43-1.02a5.61 5.61 0 0 1-1.8-1.2A2.6 2.6 0 0 1 4 18V6Zm1.5 0c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89 1.92 0 3.62-.35 4.82-.89.6-.26 1.04-.56 1.31-.86.28-.3.37-.54.37-.75 0-.2-.09-.46-.37-.75-.27-.3-.71-.6-1.31-.86-1.2-.54-2.9-.89-4.82-.89-1.92 0-3.62.35-4.82.89-.6.26-1.04.56-1.31.86-.28.3-.37.54-.37.75Zm13 2.4a6.8 6.8 0 0 1-1.07.58A13.65 13.65 0 0 1 12 10c-2.08 0-4-.38-5.43-1.02A6.8 6.8 0 0 1 5.5 8.4V18c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89 1.92 0 3.62-.35 4.82-.89.6-.26 1.04-.56 1.31-.86.28-.3.37-.54.37-.75V8.4Z\"]);\nexport const Database32Filled = /*#__PURE__*/createFluentIcon('Database32Filled', \"32\", [\"M16 14c3.26 0 6.3-.6 8.6-1.64.83-.38 1.67-.87 2.4-1.48V25c0 2.76-4.92 5-11 5S5 27.76 5 25V10.88c.73.61 1.57 1.1 2.4 1.48A21.33 21.33 0 0 0 16 14ZM5 7c0-2.76 4.92-5 11-5s11 2.24 11 5-4.92 5-11 5S5 9.76 5 7Z\"]);\nexport const Database32Regular = /*#__PURE__*/createFluentIcon('Database32Regular', \"32\", [\"M27 7c0-2.76-4.92-5-11-5S5 4.24 5 7v18c0 2.76 4.92 5 11 5s11-2.24 11-5V7Zm-2 0c0 .11-.2.87-2.05 1.71A17.4 17.4 0 0 1 16 10a17.4 17.4 0 0 1-6.95-1.29C7.19 7.87 7 7.11 7 7c0-.11.2-.87 2.05-1.71A17.4 17.4 0 0 1 16 4c2.82 0 5.27.52 6.95 1.29C24.81 6.13 25 6.89 25 7Zm0 2.88V25c0 .11-.2.87-2.05 1.71A17.4 17.4 0 0 1 16 28a17.4 17.4 0 0 1-6.95-1.29C7.19 25.87 7 25.11 7 25V9.88C9 11.16 12.28 12 16 12c3.72 0 7-.84 9-2.12Z\"]);\nexport const Database48Filled = /*#__PURE__*/createFluentIcon('Database48Filled', \"48\", [\"M13.05 6.09C15.92 4.78 19.79 4 24 4c4.21 0 8.08.78 10.95 2.09C37.71 7.35 40 9.35 40 12c0 2.65-2.3 4.65-5.05 5.91C32.08 19.22 28.21 20 24 20c-4.21 0-8.08-.78-10.95-2.09C10.29 16.65 8 14.65 8 12c0-2.65 2.3-4.65 5.05-5.91ZM8 17.52a14.39 14.39 0 0 0 4.01 2.66c3.26 1.5 7.5 2.32 11.99 2.32s8.73-.82 11.99-2.32c1.33-.6 2.8-1.48 4.01-2.66v18.73c-.15 2.53-2.38 4.44-5.05 5.66C32.08 43.22 28.21 44 24 44c-4.21 0-8.08-.78-10.95-2.09-2.67-1.22-4.9-3.13-5.04-5.66H8V17.52Z\"]);\nexport const Database48Regular = /*#__PURE__*/createFluentIcon('Database48Regular', \"48\", [\"M40 12c0-2.65-2.3-4.65-5.05-5.91C32.08 4.78 28.21 4 24 4c-4.21 0-8.08.78-10.95 2.09C10.29 7.35 8 9.35 8 12v24.25c.15 2.53 2.38 4.44 5.05 5.66C15.92 43.22 19.79 44 24 44c4.21 0 8.08-.78 10.95-2.09 2.67-1.22 4.9-3.13 5.04-5.66H40V12Zm-29.5 0c0-1.08 1-2.45 3.59-3.64C16.56 7.23 20.06 6.5 24 6.5c3.94 0 7.44.73 9.91 1.86 2.58 1.19 3.59 2.56 3.59 3.64s-1 2.46-3.59 3.64c-2.47 1.13-5.97 1.86-9.91 1.86-3.94 0-7.44-.73-9.91-1.86-2.58-1.19-3.59-2.56-3.59-3.64Zm27 24c0 1.08-1 2.45-3.59 3.64-2.47 1.13-5.97 1.86-9.91 1.86-3.94 0-7.44-.73-9.91-1.86-2.58-1.19-3.59-2.56-3.59-3.64V16.4c.75.58 1.62 1.09 2.55 1.51C15.92 19.22 19.79 20 24 20c4.21 0 8.08-.78 10.95-2.09.93-.42 1.8-.93 2.55-1.52V36Z\"]);\nexport const DatabaseArrowDown20Filled = /*#__PURE__*/createFluentIcon('DatabaseArrowDown20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9v2.09A5.5 5.5 0 0 0 10.26 18H10c-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 15.29V12.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DatabaseArrowDown20Regular = /*#__PURE__*/createFluentIcon('DatabaseArrowDown20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v4.2c-.32-.08-.66-.15-1-.18V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 9.6 17c.18.36.4.7.66 1H10c-1.4.03-2.8-.24-4.1-.78C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm14 9.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 15.29V12.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DatabaseArrowRight20Filled = /*#__PURE__*/createFluentIcon('DatabaseArrowRight20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9v2.09A5.5 5.5 0 0 0 10.26 18H10c-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM14.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DatabaseArrowRight20Regular = /*#__PURE__*/createFluentIcon('DatabaseArrowRight20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v4.2c-.32-.08-.66-.15-1-.18V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 9.6 17c.18.36.4.7.66 1H10c-1.4.03-2.8-.24-4.1-.78C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm9.5 5a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DatabaseArrowRight24Filled = /*#__PURE__*/createFluentIcon('DatabaseArrowRight24Filled', \"24\", [\"M12 10c4.42 0 8-1.8 8-4s-3.58-4-8-4-8 1.8-8 4 3.58 4 8 4Zm6.33.17c.59-.3 1.17-.67 1.67-1.12v2.45a6.5 6.5 0 0 0-7.2 10.48L12 22c-4.42 0-8-1.8-8-4V9.05c.5.45 1.08.83 1.67 1.12 1.7.85 3.94 1.33 6.33 1.33 2.4 0 4.63-.48 6.33-1.33ZM17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const DatabaseArrowRight24Regular = /*#__PURE__*/createFluentIcon('DatabaseArrowRight24Regular', \"24\", [\"M4 6c0-.7.32-1.3.77-1.78a5.61 5.61 0 0 1 1.8-1.2A13.65 13.65 0 0 1 12 2c2.08 0 4 .38 5.43 1.02.72.32 1.34.72 1.8 1.2.45.49.77 1.09.77 1.78v5.5c-.47-.2-.98-.34-1.5-.42V8.39a6.8 6.8 0 0 1-1.07.6A13.65 13.65 0 0 1 12 10c-2.08 0-4-.38-5.43-1.02A6.8 6.8 0 0 1 5.5 8.4V18c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.14.51 2.74.86 4.55.89.28.54.64 1.04 1.06 1.48L12 22c-2.08 0-4-.38-5.43-1.02a5.61 5.61 0 0 1-1.8-1.2A2.6 2.6 0 0 1 4 18V6Zm1.5 0c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89 1.92 0 3.62-.35 4.82-.89.6-.26 1.04-.56 1.31-.86.28-.3.37-.54.37-.75 0-.2-.09-.46-.37-.75-.27-.3-.71-.6-1.31-.86-1.2-.54-2.9-.89-4.82-.89-1.92 0-3.62.35-4.82.89-.6.26-1.04.56-1.31.86-.28.3-.37.54-.37.75Zm12 6a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const DatabaseArrowRight32Filled = /*#__PURE__*/createFluentIcon('DatabaseArrowRight32Filled', \"32\", [\"M16 14c3.26 0 6.3-.6 8.6-1.64.83-.38 1.67-.87 2.4-1.48v4.33a9 9 0 0 0-9.76 14.76c-.4.02-.82.03-1.24.03-6.08 0-11-2.24-11-5V10.88c.73.61 1.57 1.1 2.4 1.48A21.33 21.33 0 0 0 16 14ZM5 7c0-2.76 4.92-5 11-5s11 2.24 11 5-4.92 5-11 5S5 9.76 5 7Zm26 16.5a7.5 7.5 0 1 0-15 0 7.5 7.5 0 0 0 15 0Zm-12.25-1h7.69l-2.72-2.72a.75.75 0 1 1 1.06-1.06l4 4c.3.3.3.77 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06L26.44 24h-7.69a.75.75 0 0 1 0-1.5Z\"]);\nexport const DatabaseArrowRight32Regular = /*#__PURE__*/createFluentIcon('DatabaseArrowRight32Regular', \"32\", [\"M27 7c0-2.76-4.92-5-11-5S5 4.24 5 7v18c0 2.76 4.92 5 11 5 .42 0 .83-.01 1.24-.03A9.04 9.04 0 0 1 15.7 28c-2.7-.04-5.03-.55-6.65-1.29C7.19 25.87 7 25.11 7 25V9.88C9 11.16 12.28 12 16 12c3.72 0 7-.84 9-2.12v4.74c.7.12 1.37.32 2 .59V7Zm-2 0c0 .11-.2.87-2.05 1.71A17.4 17.4 0 0 1 16 10a17.4 17.4 0 0 1-6.95-1.29C7.19 7.87 7 7.11 7 7c0-.11.2-.87 2.05-1.71A17.4 17.4 0 0 1 16 4c2.82 0 5.27.52 6.95 1.29C24.81 6.13 25 6.89 25 7Zm6 16.5a7.5 7.5 0 1 0-15 0 7.5 7.5 0 0 0 15 0Zm-12.25-1h7.69l-2.72-2.72a.75.75 0 1 1 1.06-1.06l4 4c.3.3.3.77 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06L26.44 24h-7.69a.75.75 0 0 1 0-1.5Z\"]);\nexport const DatabaseArrowUp20Filled = /*#__PURE__*/createFluentIcon('DatabaseArrowUp20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9v2.09A5.5 5.5 0 0 0 10.26 18H10c-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM10 14.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm4.85-2.35a.5.5 0 0 0-.35-.15.5.5 0 0 0-.35.15l-2 2a.5.5 0 0 0 .7.7L14 13.71v2.79a.5.5 0 0 0 1 0v-2.8l1.15 1.15a.5.5 0 0 0 .7-.7l-2-2Z\"]);\nexport const DatabaseArrowUp20Regular = /*#__PURE__*/createFluentIcon('DatabaseArrowUp20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v4.2c-.32-.08-.66-.15-1-.18V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 9.6 17c.18.36.4.7.66 1H10c-1.4.03-2.8-.24-4.1-.78C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm5 9.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm4.85-2.35a.5.5 0 0 0-.35-.15.5.5 0 0 0-.35.15l-2 2a.5.5 0 0 0 .7.7L14 13.71v2.79a.5.5 0 0 0 1 0v-2.8l1.15 1.15a.5.5 0 0 0 .7-.7l-2-2Z\"]);\nexport const DatabaseLightning20Filled = /*#__PURE__*/createFluentIcon('DatabaseLightning20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9V9h-1.92c-.6 0-1.15.36-1.38.92l-2.08 5A1.5 1.5 0 0 0 12 17h.47l-.2.78c-.7.14-1.46.22-2.27.22-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM13.11 16c.33 0 .57.3.49.62l-.44 1.74c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-.4a.5.5 0 0 1-.48-.66l.56-1.68a.5.5 0 0 0-.47-.66h-3.47a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7h1.11Z\"]);\nexport const DatabaseLightning20Regular = /*#__PURE__*/createFluentIcon('DatabaseLightning20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v4h-1V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 17c.5.01 1-.02 1.49-.09.15.06.33.09.51.09h.47l-.2.79c-.74.15-1.5.22-2.27.21-1.4.03-2.8-.24-4.1-.78C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm8.11 11c.33 0 .57.3.49.62l-.44 1.74c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-.4a.5.5 0 0 1-.48-.66l.56-1.68a.5.5 0 0 0-.47-.66h-3.47a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7h1.11Z\"]);\nexport const DatabaseLink20Filled = /*#__PURE__*/createFluentIcon('DatabaseLink20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9V11h-3.5a3.5 3.5 0 0 0-.88 6.89c-.51.07-1.06.11-1.62.11-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM12.5 12a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DatabaseLink20Regular = /*#__PURE__*/createFluentIcon('DatabaseLink20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22C6.98 2.28 8.43 2 10 2c1.57 0 3.02.29 4.1.78C15.12 3.24 16 3.99 16 5v6h-1V6.7c-.27.2-.58.38-.9.52-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69h.05c.43.43.98.74 1.59.9-.53.06-1.07.1-1.64.1-1.57 0-3.02-.29-4.1-.78C4.88 16.76 4 16.01 4 15V5Zm1 0c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69C14.64 5.88 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.19 9.19 0 0 0 10 3c-1.46 0-2.77.27-3.68.69C5.36 4.12 5 4.63 5 5Zm7.5 7a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DatabaseLink24Filled = /*#__PURE__*/createFluentIcon('DatabaseLink24Filled', \"24\", [\"M12 10c4.42 0 8-1.8 8-4s-3.58-4-8-4-8 1.8-8 4 3.58 4 8 4Zm6.33.17c.59-.3 1.17-.67 1.67-1.12v4c-.24-.03-.5-.05-.75-.05h-3.5a4.75 4.75 0 0 0-2.26 8.93c-.48.05-.98.07-1.49.07-4.42 0-8-1.8-8-4V9.05c.5.45 1.08.83 1.67 1.12 1.7.85 3.94 1.33 6.33 1.33 2.4 0 4.63-.48 6.33-1.33ZM23 17.75A3.75 3.75 0 0 0 19.25 14h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 23 17.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DatabaseLink24Regular = /*#__PURE__*/createFluentIcon('DatabaseLink24Regular', \"24\", [\"M4 6v12c0 .7.32 1.3.77 1.78.46.48 1.08.88 1.8 1.2C8 21.62 9.92 22 12 22c.51 0 1.01-.02 1.5-.07a4.77 4.77 0 0 1-1.62-1.43 12.09 12.09 0 0 1-4.7-.89 4.14 4.14 0 0 1-1.31-.86c-.28-.3-.37-.54-.37-.75V8.4c.32.21.68.4 1.07.58C8 9.62 9.92 10 12 10c2.08 0 4-.38 5.43-1.02a6.8 6.8 0 0 0 1.07-.59V13h.75c.26 0 .5.02.75.06V6c0-.7-.32-1.3-.77-1.78a5.61 5.61 0 0 0-1.8-1.2A13.65 13.65 0 0 0 12 2c-2.08 0-4 .38-5.43 1.02-.72.32-1.34.72-1.8 1.2A2.6 2.6 0 0 0 4 6Zm1.5 0c0-.2.09-.46.37-.75.27-.3.71-.6 1.31-.86 1.2-.54 2.9-.89 4.82-.89 1.92 0 3.62.35 4.82.89.6.26 1.04.56 1.31.86.28.3.37.54.37.75 0 .2-.09.46-.37.75-.27.3-.71.6-1.31.86-1.2.54-2.9.89-4.82.89-1.92 0-3.62-.35-4.82-.89a4.14 4.14 0 0 1-1.31-.86c-.28-.3-.37-.54-.37-.75ZM23 17.75A3.75 3.75 0 0 0 19.25 14h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 23 17.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DatabaseMultiple20Filled = /*#__PURE__*/createFluentIcon('DatabaseMultiple20Filled', \"20\", [\"M18 4c0 1.66-2.69 3-6 3S6 5.66 6 4s2.69-3 6-3 6 1.34 6 3Zm0 2.12c-.38.36-.84.66-1.31.9-1.25.62-2.91.98-4.69.98-.62 0-1.23-.04-1.81-.13.93.53 1.72 1.34 1.8 2.44H12v6.19c0 .17-.02.34-.05.5H12c3.31 0 6-1.34 6-3V6.12Zm-10.69.9.05.02A9.08 9.08 0 0 0 6 7.01v-.89c.38.36.84.66 1.31.9ZM9 8.42A7.86 7.86 0 0 0 6.5 8C4.01 8 2 9.12 2 10.5S4.01 13 6.5 13s4.5-1.12 4.5-2.5c0-.87-.8-1.63-2-2.08Zm1.17 4.72c-1 .55-2.29.86-3.67.86s-2.68-.3-3.67-.86c-.29-.16-.58-.36-.83-.59v3.95C2 17.88 4.01 19 6.5 19s4.5-1.12 4.5-2.5v-3.95c-.25.23-.54.43-.83.6Z\"]);\nexport const DatabaseMultiple20Regular = /*#__PURE__*/createFluentIcon('DatabaseMultiple20Regular', \"20\", [\"M7.9 1.78C6.88 2.24 6 2.99 6 4v3.01a9.16 9.16 0 0 1 1 0V5.7c.27.2.58.38.9.52 1.08.5 2.53.78 4.1.78 1.57 0 3.02-.29 4.1-.78.32-.14.63-.32.9-.52V14c0 .37-.36.88-1.32 1.31-.91.42-2.22.69-3.68.69v.5c0 .17-.02.34-.05.5H12c1.57 0 3.02-.29 4.1-.78 1.02-.46 1.9-1.21 1.9-2.22V4c0-1-.88-1.76-1.9-2.22A10.17 10.17 0 0 0 12 1c-1.57 0-3.02.29-4.1.78Zm.42 3.53C7.36 4.88 7 4.37 7 4c0-.37.36-.88 1.32-1.31A9.19 9.19 0 0 1 12 2c1.46 0 2.77.27 3.68.69.96.43 1.32.94 1.32 1.31 0 .37-.36.88-1.32 1.31-.91.42-2.22.69-3.68.69a9.19 9.19 0 0 1-3.68-.69ZM7 8.01a7.68 7.68 0 0 1 2 .41c1.2.45 2 1.21 2 2.08 0 1.38-2.01 2.5-4.5 2.5S2 11.88 2 10.5c0-1.29 1.75-2.35 4-2.48a8.16 8.16 0 0 1 1 0Zm3.93 8.94C10.54 18.12 8.7 19 6.5 19 4.01 19 2 17.88 2 16.5v-3.95c.25.23.54.43.83.6 1 .54 2.29.85 3.67.85s2.68-.3 3.67-.86c.29-.16.58-.36.83-.59v3.95c0 .15-.03.3-.07.45Z\"]);\nexport const DatabaseMultiple32Filled = /*#__PURE__*/createFluentIcon('DatabaseMultiple32Filled', \"32\", [\"M5 7c0-2.76 4.92-5 11-5s11 2.24 11 5-4.92 5-11 5S5 9.76 5 7Zm0 6.25v-2.37c.73.61 1.57 1.1 2.4 1.48.56.25 1.16.48 1.8.68a18.33 18.33 0 0 0-4.2.21Zm19.6-.9A21.33 21.33 0 0 1 16 14c-.93 0-1.84-.05-2.72-.14.42.15.81.33 1.18.53 1.06.58 2.42 1.67 2.53 3.38l.01-.01V28c0 .78-.27 1.46-.65 2C22.26 29.9 27 27.7 27 25V10.88c-.73.61-1.57 1.1-2.4 1.48ZM1 28c0 .55.34 1.06.94 1.5C3.14 30.4 5.4 31 8 31c3.87 0 7-1.34 7-3v-7.33c-.44.33-.94.6-1.46.83l-.04.02c-.6.25-1.27.46-2 .62-1.08.23-2.27.36-3.5.36-2.09 0-4.05-.36-5.54-1A6.98 6.98 0 0 1 1 20.67V28Zm10.5-7.4c.77-.2 1.45-.45 2-.74.94-.51 1.5-1.16 1.5-1.86 0-.7-.56-1.35-1.5-1.86a8.53 8.53 0 0 0-2-.74c-1.03-.25-2.22-.4-3.5-.4-3.87 0-7 1.34-7 3s3.13 3 7 3c1.28 0 2.47-.15 3.5-.4Z\"]);\nexport const DatabaseMultiple32Regular = /*#__PURE__*/createFluentIcon('DatabaseMultiple32Regular', \"32\", [\"M27 7c0-2.76-4.92-5-11-5S5 4.24 5 7v6.25a16.9 16.9 0 0 1 2-.22V9.88C9 11.16 12.28 12 16 12c3.72 0 7-.84 9-2.12V25c0 .11-.2.87-2.05 1.71A16.6 16.6 0 0 1 17 27.98V28c0 .78-.27 1.46-.65 2C22.26 29.9 27 27.7 27 25V7Zm-2 0c0 .11-.2.87-2.05 1.71A17.4 17.4 0 0 1 16 10a17.4 17.4 0 0 1-6.95-1.29C7.19 7.87 7 7.11 7 7c0-.11.2-.87 2.05-1.71A17.4 17.4 0 0 1 16 4c2.82 0 5.27.52 6.95 1.29C24.81 6.13 25 6.89 25 7ZM1 28c0 .55.34 1.06.94 1.5C3.14 30.4 5.4 31 8 31c3.87 0 7-1.34 7-3v-7.33c-.44.33-.94.6-1.46.83l-.04.02c-.6.25-1.27.46-2 .62-1.08.23-2.27.36-3.5.36-2.09 0-4.05-.36-5.54-1A6.98 6.98 0 0 1 1 20.67V28Zm10.5-7.4c.77-.2 1.45-.45 2-.74.94-.51 1.5-1.16 1.5-1.86 0-.7-.56-1.35-1.5-1.86a8.53 8.53 0 0 0-2-.74c-1.03-.25-2.22-.4-3.5-.4-3.87 0-7 1.34-7 3s3.13 3 7 3c1.28 0 2.47-.15 3.5-.4Z\"]);\nexport const DatabasePerson20Filled = /*#__PURE__*/createFluentIcon('DatabasePerson20Filled', \"20\", [\"M16 5c0 1.66-2.69 3-6 3S4 6.66 4 5s2.69-3 6-3 6 1.34 6 3Zm-1.31 3.02c.28-.14.55-.3.81-.49 0 .81-.7 1.44-1.41 1.82a3 3 0 0 0-.82 4.66A2.5 2.5 0 0 0 11 16.5c0 .49.1.97.33 1.43-.43.04-.87.07-1.33.07-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM17.5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DatabasePerson20Regular = /*#__PURE__*/createFluentIcon('DatabasePerson20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22C6.98 2.28 8.43 2 10 2c1.57 0 3.02.29 4.1.78C15.12 3.24 16 3.99 16 5v4.04a3.02 3.02 0 0 0-1 0V6.7c-.27.2-.58.38-.9.52-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69.35 0 .7-.02 1.03-.05.05.34.15.67.3.98-.43.05-.87.07-1.33.07-1.57 0-3.02-.29-4.1-.78C4.88 16.76 4 16.01 4 15V5Zm1 0c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69C14.64 5.88 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.19 9.19 0 0 0 10 3c-1.46 0-2.77.27-3.68.69C5.36 4.12 5 4.63 5 5Zm12.5 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DatabasePerson24Filled = /*#__PURE__*/createFluentIcon('DatabasePerson24Filled', \"24\", [\"M20 6.5c0 2.2-3.58 4-8 4s-8-1.8-8-4 3.58-4 8-4 8 1.8 8 4Zm-2.23 4.43A15 15 0 0 1 12 12c-2.4 0-4.63-.48-6.33-1.33A7.61 7.61 0 0 1 4 9.55v8.95c0 2.2 3.58 4 8 4 .55 0 1.09-.03 1.61-.08a3.69 3.69 0 0 1-.61-2.05v-.1a2.77 2.77 0 0 1 2.77-2.77h.28a3.49 3.49 0 0 1 .88-5.63c.4-.2.73-.52.84-.94ZM21 15a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.94 14 20.37v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const DatabasePerson24Regular = /*#__PURE__*/createFluentIcon('DatabasePerson24Regular', \"24\", [\"M4 6.5c0-.7.32-1.3.77-1.78a5.61 5.61 0 0 1 1.8-1.2A13.65 13.65 0 0 1 12 2.5c2.08 0 4 .38 5.43 1.02.72.32 1.34.72 1.8 1.2.45.49.77 1.09.77 1.78v5.34a3.49 3.49 0 0 0-1.5-.34V8.9a6.8 6.8 0 0 1-1.07.58A13.65 13.65 0 0 1 12 10.5c-2.08 0-4-.38-5.43-1.02A6.8 6.8 0 0 1 5.5 8.9v9.61c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89.36 0 .7-.01 1.05-.04.08.51.26 1.01.56 1.46-.52.05-1.06.08-1.61.08-2.08 0-4-.38-5.43-1.02a5.61 5.61 0 0 1-1.8-1.2A2.6 2.6 0 0 1 4 18.5v-12Zm1.5 0c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89 1.92 0 3.62-.35 4.82-.89.6-.26 1.04-.56 1.31-.86.28-.3.37-.54.37-.75 0-.2-.09-.46-.37-.75-.27-.3-.71-.6-1.31-.86C15.62 4.35 13.92 4 12 4c-1.92 0-3.62.35-4.82.89-.6.26-1.04.56-1.31.86-.28.3-.37.54-.37.75ZM21 15a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.94 14 20.37v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const DatabasePlugConnected20Filled = /*#__PURE__*/createFluentIcon('DatabasePlugConnected20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9v2.99a2.97 2.97 0 0 0-1.87.86l-.6.6a1.98 1.98 0 0 0-.58 1.52 1.95 1.95 0 0 0-1.52.58l-.6.6a2.99 2.99 0 0 0-.77 2.9l-.76.75-.05.06C6.3 17.79 4 16.53 4 15V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98Zm4.5 2.83a.5.5 0 1 0-.7-.7l-1.19 1.18a.64.64 0 0 0-.03.05 2 2 0 0 0-2.44.3l-.6.6a.98.98 0 0 0 0 1.4l1.45 1.43a.98.98 0 0 0 1.38 0l.6-.6a2 2 0 0 0 .3-2.44.36.36 0 0 0 .06-.03l1.18-1.19Zm-5.66 3.53a.98.98 0 0 0-1.39 0l-.6.6a2 2 0 0 0-.3 2.43.42.42 0 0 0-.05.04L10 18.63a.5.5 0 0 0 .7.7l1.19-1.18a.5.5 0 0 0 .03-.05 2 2 0 0 0 2.44-.3l.6-.6a.98.98 0 0 0 0-1.39l-1.44-1.44Z\"]);\nexport const DatabasePlugConnected20Regular = /*#__PURE__*/createFluentIcon('DatabasePlugConnected20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v5.1a2.97 2.97 0 0 0-1 .27V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 17h.02a3 3 0 0 0 .04.16l-.76.77a1.5 1.5 0 0 0-.06.06 10.18 10.18 0 0 1-3.34-.77C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm14.2 5.85a.5.5 0 1 0-.7-.7l-1.2 1.18a.64.64 0 0 0-.03.05 2 2 0 0 0-2.44.3l-.6.6a.98.98 0 0 0 0 1.4l1.45 1.43a.98.98 0 0 0 1.38 0l.6-.6a2 2 0 0 0 .3-2.44.36.36 0 0 0 .06-.03l1.18-1.19Zm-5.67 3.53a.98.98 0 0 0-1.39 0l-.6.6a2 2 0 0 0-.3 2.43.42.42 0 0 0-.05.04L10 18.63a.5.5 0 0 0 .7.7l1.19-1.18a.5.5 0 0 0 .03-.05 2 2 0 0 0 2.44-.3l.6-.6a.98.98 0 0 0 0-1.39l-1.44-1.44Z\"]);\nexport const DatabaseSearch20Filled = /*#__PURE__*/createFluentIcon('DatabaseSearch20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9v2.64a4.5 4.5 0 1 0-3.83 8.04c-.68.13-1.4.2-2.17.2-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM13.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L16.3 15.6a3.5 3.5 0 1 0-2.8 1.4Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const DatabaseSearch20Regular = /*#__PURE__*/createFluentIcon('DatabaseSearch20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22C6.98 2.28 8.43 2 10 2c1.57 0 3.02.29 4.1.78C15.12 3.24 16 3.99 16 5v4.76c-.3-.2-.64-.38-1-.5V6.7c-.27.2-.58.38-.9.52-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.88 1.32 1.31a9.19 9.19 0 0 0 4.33.67c.45.37.97.65 1.53.82-.68.13-1.41.2-2.18.2-1.57 0-3.02-.29-4.1-.78C4.88 16.76 4 16.01 4 15V5Zm1 0c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69C14.64 5.88 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.19 9.19 0 0 0 10 3c-1.46 0-2.77.27-3.68.69C5.36 4.12 5 4.63 5 5Zm8.5 12c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L16.3 15.6a3.5 3.5 0 1 0-2.8 1.4Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const DatabaseSearch24Filled = /*#__PURE__*/createFluentIcon('DatabaseSearch24Filled', \"24\", [\"M12 10c4.42 0 8-1.8 8-4s-3.58-4-8-4-8 1.8-8 4 3.58 4 8 4Zm6.33.17c.59-.3 1.17-.67 1.67-1.12v3.2a5.48 5.48 0 0 0-4.02-1.23c.86-.21 1.65-.5 2.35-.85ZM11 16.5a5.5 5.5 0 0 0 3.83 5.24c-.88.17-1.83.26-2.83.26-4.42 0-8-1.8-8-4V9.05c.5.45 1.08.83 1.67 1.12 1.7.85 3.94 1.33 6.33 1.33.96 0 1.9-.08 2.78-.22A5.5 5.5 0 0 0 11 16.5Zm5.5 4.5c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 16.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const DatabaseSearch24Regular = /*#__PURE__*/createFluentIcon('DatabaseSearch24Regular', \"24\", [\"M4 6c0-.7.32-1.3.77-1.78a5.61 5.61 0 0 1 1.8-1.2A13.65 13.65 0 0 1 12 2c2.08 0 4 .38 5.43 1.02.72.32 1.34.72 1.8 1.2.45.49.77 1.09.77 1.78v6.26a5.5 5.5 0 0 0-1.5-.89V8.4a6.8 6.8 0 0 1-1.07.6A13.65 13.65 0 0 1 12 10c-2.08 0-4-.38-5.43-1.02A6.8 6.8 0 0 1 5.5 8.4V18c0 .2.09.46.37.75.27.3.71.6 1.31.86a12.18 12.18 0 0 0 5.53.87 5.5 5.5 0 0 0 2.15 1.27c-.9.16-1.86.25-2.86.25-2.08 0-4-.38-5.43-1.02a5.61 5.61 0 0 1-1.8-1.2A2.6 2.6 0 0 1 4 18V6Zm1.5 0c0 .2.09.46.37.75.27.3.71.6 1.31.86 1.2.54 2.9.89 4.82.89 1.92 0 3.62-.35 4.82-.89.6-.26 1.04-.56 1.31-.86.28-.3.37-.54.37-.75 0-.2-.09-.46-.37-.75-.27-.3-.71-.6-1.31-.86-1.2-.54-2.9-.89-4.82-.89-1.92 0-3.62.35-4.82.89-.6.26-1.04.56-1.31.86-.28.3-.37.54-.37.75Zm11 15c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 16.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const DatabaseStack16Filled = /*#__PURE__*/createFluentIcon('DatabaseStack16Filled', \"16\", [\"M3 5.49V8c0 1.36 2.29 2.5 5 2.5s5-1.14 5-2.5V5.49C11.94 6.4 10.14 7 8 7s-3.94-.59-5-1.51ZM8 6c2.76 0 5-1.12 5-2.5S10.76 1 8 1 3 2.12 3 3.5 5.24 6 8 6ZM3 9.96v2.54C3 13.93 5.15 15 8 15s5-1.07 5-2.5V9.96c-1.07.93-2.89 1.54-5 1.54s-3.93-.6-5-1.54Z\"]);\nexport const DatabaseStack16Regular = /*#__PURE__*/createFluentIcon('DatabaseStack16Regular', \"16\", [\"M8 1C5.15 1 3 2.08 3 3.5v9C3 13.93 5.15 15 8 15s5-1.07 5-2.5v-9C13 2.08 10.85 1 8 1Zm0 1c2.44 0 4 .89 4 1.5S10.44 5 8 5s-4-.89-4-1.5S5.56 2 8 2Zm0 12c-2.44 0-4-.89-4-1.5V9.54c.9.59 2.33.96 4 .96a7.5 7.5 0 0 0 4-.96v2.96c0 .61-1.56 1.5-4 1.5Zm0-4.5c-2.44 0-4-.89-4-1.5V5.02A7.4 7.4 0 0 0 8 6a7.4 7.4 0 0 0 4-.98V8c0 .61-1.56 1.5-4 1.5Z\"]);\nexport const DatabaseSwitch20Filled = /*#__PURE__*/createFluentIcon('DatabaseSwitch20Filled', \"20\", [\"M11.85 18.85a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .81.16.5.5 0 0 1-.1.54L10.7 16h5.58l-1.14-1.15a.5.5 0 0 1 .16-.81.5.5 0 0 1 .54.1l2 2a.5.5 0 0 1 0 .71l-2 2a.5.5 0 0 1-.81-.16.5.5 0 0 1 .1-.54L16.3 17h-5.58l1.14 1.15a.5.5 0 0 1 0 .7ZM10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm-1.56 9.56a1.5 1.5 0 0 1 0-2.12l2-2a1.5 1.5 0 0 1 2.12 0 1.5 1.5 0 0 1 .35 1.56h1.18A1.5 1.5 0 0 1 16 13.1V7.11a4.93 4.93 0 0 1-1.31.9c-.33.16-.66.3-1.01.42-1.19.38-2.43.57-3.68.56-1.25.01-2.5-.18-3.68-.57a8.15 8.15 0 0 1-1.7-.81 4.93 4.93 0 0 1-.62-.5V15c0 1.45 2.07 2.66 4.81 2.93l-.37-.37Z\"]);\nexport const DatabaseSwitch20Regular = /*#__PURE__*/createFluentIcon('DatabaseSwitch20Regular', \"20\", [\"M8.44 17.56c-.2-.2-.32-.46-.38-.73-.6-.1-1.18-.27-1.74-.52C5.36 15.87 5 15.37 5 15V6.7c.28.2.58.38.9.52 1.3.54 2.7.8 4.1.78 1.4.03 2.8-.24 4.1-.78.32-.14.62-.31.9-.52v6.4c.32-.13.68-.13 1 0V5c0-1-.88-1.76-1.9-2.22-1.3-.54-2.7-.8-4.1-.78-1.4-.03-2.8.24-4.1.78C4.87 3.24 4 3.99 4 5v10c0 1 .88 1.75 1.9 2.22.93.4 1.91.64 2.92.72l-.38-.38ZM6.32 3.7A9.2 9.2 0 0 1 10 3a9.2 9.2 0 0 1 3.68.69C14.64 4.12 15 4.63 15 5c0 .37-.36.87-1.32 1.31A9.2 9.2 0 0 1 10 7a9.2 9.2 0 0 1-3.68-.69C5.36 5.87 5 5.37 5 5c0-.37.36-.88 1.32-1.31Zm5.53 15.16a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .7.7L10.71 16h5.58l-1.14-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 0 .7l-2 2a.5.5 0 1 1-.7-.7L16.29 17h-5.58l1.14 1.15a.5.5 0 0 1 0 .7Z\"]);\nexport const DatabaseWarning20Filled = /*#__PURE__*/createFluentIcon('DatabaseWarning20Filled', \"20\", [\"M16 5c0 1.66-2.69 3-6 3S4 6.66 4 5s2.69-3 6-3 6 1.34 6 3Zm-1.31 3.02.31-.17v.21c-.53.14-1 .48-1.29 1.05l-3.5 7c-.31.64-.25 1.34.06 1.89H10c-3.31 0-6-1.34-6-3V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98Zm-.09 1.53-3.5 7A1 1 0 0 0 12 18h7a1 1 0 0 0 .9-1.45l-3.5-7a1 1 0 0 0-1.8 0ZM16 11.5v3a.5.5 0 1 1-1 0v-3a.5.5 0 1 1 1 0Zm-.5 5.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z\"]);\nexport const DatabaseWarning20Regular = /*#__PURE__*/createFluentIcon('DatabaseWarning20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22 1.3-.54 2.7-.8 4.1-.78 1.4-.03 2.8.24 4.1.78C15.13 3.24 16 3.99 16 5v3.06a2.05 2.05 0 0 0-1 0V6.7c-.28.2-.58.38-.9.52-1.3.54-2.7.8-4.1.78-1.4.03-2.8-.24-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 17c0 .36.1.7.28 1H10c-1.4.03-2.8-.24-4.1-.78C4.87 16.75 4 16.01 4 15V5Zm1 0c0 .37.36.87 1.32 1.31A9.2 9.2 0 0 0 10 7a9.2 9.2 0 0 0 3.68-.69C14.64 5.87 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.2 9.2 0 0 0 10 3a9.2 9.2 0 0 0-3.68.69C5.36 4.12 5 4.63 5 5Zm9.6 4.55-3.5 7A1 1 0 0 0 12 18h7a1 1 0 0 0 .9-1.45l-3.5-7a1 1 0 0 0-1.8 0ZM16 11.5v3a.5.5 0 1 1-1 0v-3a.5.5 0 1 1 1 0Zm-.5 5.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z\"]);\nexport const DatabaseWindow20Filled = /*#__PURE__*/createFluentIcon('DatabaseWindow20Filled', \"20\", [\"M10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm4.69.02c.47-.24.93-.54 1.31-.9V9h-4.5A2.5 2.5 0 0 0 9 11.5v6c0 .16.01.31.04.46C6.18 17.73 4 16.5 4 15V7.12c.38.36.84.66 1.31.9C6.56 8.64 8.22 9 10 9c1.78 0 3.44-.36 4.69-.98ZM10 11.5c0-.83.67-1.5 1.5-1.5h6c.83 0 1.5.67 1.5 1.5v.5h-9v-.5Zm0 1.5h9v4.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V13Z\"]);\nexport const DatabaseWindow20Regular = /*#__PURE__*/createFluentIcon('DatabaseWindow20Regular', \"20\", [\"M4 5c0-1 .88-1.76 1.9-2.22C6.98 2.28 8.43 2 10 2c1.57 0 3.02.29 4.1.78C15.12 3.24 16 3.99 16 5v4h-1V6.7c-.27.2-.58.38-.9.52-1.08.5-2.53.78-4.1.78-1.57 0-3.02-.29-4.1-.78A4.92 4.92 0 0 1 5 6.7V15c0 .37.36.88 1.32 1.31.7.32 1.63.55 2.68.65v.54c0 .16.01.31.04.46a9.47 9.47 0 0 1-3.14-.74C4.88 16.76 4 16.01 4 15V5Zm1 0c0 .37.36.88 1.32 1.31.91.42 2.22.69 3.68.69s2.77-.27 3.68-.69C14.64 5.88 15 5.37 15 5c0-.37-.36-.88-1.32-1.31A9.19 9.19 0 0 0 10 3c-1.46 0-2.77.27-3.68.69C5.36 4.12 5 4.63 5 5Zm5 6.5c0-.83.67-1.5 1.5-1.5h6c.83 0 1.5.67 1.5 1.5v.5h-9v-.5Zm0 1.5h9v4.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V13Z\"]);\nexport const DecimalArrowLeft20Filled = /*#__PURE__*/createFluentIcon('DecimalArrowLeft20Filled', \"20\", [\"M8.5 3A2.5 2.5 0 0 0 6 5.5v4a2.5 2.5 0 0 0 5 0v-4A2.5 2.5 0 0 0 8.5 3Zm-1 2.5a1 1 0 0 1 2 0v4a1 1 0 1 1-2 0v-4ZM3 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm12.5-9A2.5 2.5 0 0 0 13 5.5v3.7c.48-.13.98-.2 1.5-.2V5.5a1 1 0 1 1 2 0v3.87c.51.2.98.48 1.4.81.07-.22.1-.44.1-.68v-4A2.5 2.5 0 0 0 15.5 3Zm-1 16a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DecimalArrowLeft20Regular = /*#__PURE__*/createFluentIcon('DecimalArrowLeft20Regular', \"20\", [\"M8.5 3A2.5 2.5 0 0 0 6 5.5v4a2.5 2.5 0 0 0 5 0v-4A2.5 2.5 0 0 0 8.5 3ZM7 5.5a1.5 1.5 0 1 1 3 0v4a1.5 1.5 0 0 1-3 0v-4ZM3 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm12.5-9A2.5 2.5 0 0 0 13 5.5v3.7c.32-.08.66-.15 1-.18V5.5a1.5 1.5 0 0 1 3 0v4.1c.32.16.62.36.9.58.07-.22.1-.44.1-.68v-4A2.5 2.5 0 0 0 15.5 3Zm-1 16a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DecimalArrowLeft24Filled = /*#__PURE__*/createFluentIcon('DecimalArrowLeft24Filled', \"24\", [\"M10 4a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0V7a3 3 0 0 0-3-3Zm1 7a1 1 0 1 1-2 0V7a1 1 0 0 1 2 0v4Zm-6 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM19 7v4a1 1 0 0 1-.01.17c.66.16 1.3.42 1.86.76A3 3 0 0 0 21 11V7a3 3 0 1 0-6 0v4c0 .16.01.33.04.48a6.47 6.47 0 0 1 1.96-.46V7a1 1 0 1 1 2 0Zm4 10.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L15.71 18h4.79Z\"]);\nexport const DecimalArrowLeft24Regular = /*#__PURE__*/createFluentIcon('DecimalArrowLeft24Regular', \"24\", [\"M10 4a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0V7a3 3 0 0 0-3-3Zm1.5 7a1.5 1.5 0 0 1-3 0V7a1.5 1.5 0 1 1 3 0v4ZM5 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM19.5 7v4l-.03.3c.49.16.95.37 1.38.63A3 3 0 0 0 21 11V7a3 3 0 1 0-6 0v4c0 .16.01.33.04.48.46-.19.95-.33 1.46-.4V7a1.5 1.5 0 0 1 3 0ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1h-4.8l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L15.71 18h4.79Z\"]);\nexport const DecimalArrowRight20Filled = /*#__PURE__*/createFluentIcon('DecimalArrowRight20Filled', \"20\", [\"M8.5 3A2.5 2.5 0 0 0 6 5.5v4a2.5 2.5 0 0 0 5 0v-4A2.5 2.5 0 0 0 8.5 3Zm-1 2.5a1 1 0 0 1 2 0v4a1 1 0 1 1-2 0v-4ZM3 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm12.5-9A2.5 2.5 0 0 0 13 5.5v3.7c.48-.13.98-.2 1.5-.2V5.5a1 1 0 1 1 2 0v3.87c.51.2.98.48 1.4.81.07-.22.1-.44.1-.68v-4A2.5 2.5 0 0 0 15.5 3Zm-1 7a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DecimalArrowRight20Regular = /*#__PURE__*/createFluentIcon('DecimalArrowRight20Regular', \"20\", [\"M8.5 3A2.5 2.5 0 0 0 6 5.5v4a2.5 2.5 0 0 0 5 0v-4A2.5 2.5 0 0 0 8.5 3ZM7 5.5a1.5 1.5 0 1 1 3 0v4a1.5 1.5 0 0 1-3 0v-4ZM3 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm12.5-9A2.5 2.5 0 0 0 13 5.5v3.7c.32-.08.66-.15 1-.18V5.5a1.5 1.5 0 0 1 3 0v4.1c.32.16.62.36.9.58.07-.22.1-.44.1-.68v-4A2.5 2.5 0 0 0 15.5 3Zm-1 7a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DecimalArrowRight24Filled = /*#__PURE__*/createFluentIcon('DecimalArrowRight24Filled', \"24\", [\"M10 4a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0V7a3 3 0 0 0-3-3Zm1 7a1 1 0 1 1-2 0V7a1 1 0 0 1 2 0v4Zm-6 1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM19 7v4a1 1 0 0 1-.01.17c.66.16 1.3.42 1.86.76A3 3 0 0 0 21 11V7a3 3 0 1 0-6 0v4c0 .16.01.33.04.48a6.47 6.47 0 0 1 1.96-.46V7a1 1 0 1 1 2 0Zm4 10.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const DecimalArrowRight24Regular = /*#__PURE__*/createFluentIcon('DecimalArrowRight24Regular', \"24\", [\"M10 4a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0V7a3 3 0 0 0-3-3Zm1.5 7a1.5 1.5 0 0 1-3 0V7a1.5 1.5 0 1 1 3 0v4ZM5 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM19.5 7v4l-.03.3c.49.16.95.37 1.38.63A3 3 0 0 0 21 11V7a3 3 0 1 0-6 0v4c0 .16.01.33.04.48.46-.19.95-.33 1.46-.4V7a1.5 1.5 0 0 1 3 0ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const Delete12Filled = /*#__PURE__*/createFluentIcon('Delete12Filled', \"12\", [\"M5 3h2a1 1 0 0 0-2 0ZM4 3a2 2 0 1 1 4 0h2.5a.5.5 0 0 1 0 1h-.44l-.44 5.17a2 2 0 0 1-2 1.83H4.38a2 2 0 0 1-2-1.83L1.94 4H1.5a.5.5 0 0 1 0-1H4Zm3.5 3a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0V6ZM5 5.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0V6a.5.5 0 0 0-.5-.5Z\"]);\nexport const Delete12Regular = /*#__PURE__*/createFluentIcon('Delete12Regular', \"12\", [\"M5 3h2a1 1 0 0 0-2 0ZM4 3a2 2 0 1 1 4 0h2.5a.5.5 0 0 1 0 1h-.44l-.44 5.17a2 2 0 0 1-2 1.83H4.38a2 2 0 0 1-2-1.83L1.94 4H1.5a.5.5 0 0 1 0-1H4Zm3.5 3a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0V6ZM5 5.5c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0V6c0-.28.22-.5.5-.5ZM3.38 9.09a1 1 0 0 0 1 .91h3.24a1 1 0 0 0 1-.91L9.06 4H2.94l.44 5.09Z\"]);\nexport const Delete16Filled = /*#__PURE__*/createFluentIcon('Delete16Filled', \"16\", [\"M7 3h2a1 1 0 0 0-2 0ZM6 3a2 2 0 1 1 4 0h4a.5.5 0 0 1 0 1h-.56l-1.2 8.84A2.5 2.5 0 0 1 9.74 15h-3.5a2.5 2.5 0 0 1-2.48-2.16L2.57 4H2a.5.5 0 0 1 0-1h4Zm1 3.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM9.5 6a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z\"]);\nexport const Delete16Regular = /*#__PURE__*/createFluentIcon('Delete16Regular', \"16\", [\"M7 3h2a1 1 0 0 0-2 0ZM6 3a2 2 0 1 1 4 0h4a.5.5 0 0 1 0 1h-.56l-1.2 8.84A2.5 2.5 0 0 1 9.74 15h-3.5a2.5 2.5 0 0 1-2.48-2.16L2.57 4H2a.5.5 0 0 1 0-1h4Zm1 3.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM9.5 6c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5Zm-4.74 6.7c.1.75.74 1.3 1.49 1.3h3.5a1.5 1.5 0 0 0 1.5-1.3L12.42 4H3.57l1.19 8.7Z\"]);\nexport const Delete20Filled = /*#__PURE__*/createFluentIcon('Delete20Filled', \"20\", [\"M8.5 4h3a1.5 1.5 0 0 0-3 0Zm-1 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-1.2 10.34A3 3 0 0 1 12.27 18H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5ZM9 8a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V8Zm2.5-.5a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 1 0V8a.5.5 0 0 0-.5-.5Z\"]);\nexport const Delete20Regular = /*#__PURE__*/createFluentIcon('Delete20Regular', \"20\", [\"M8.5 4h3a1.5 1.5 0 0 0-3 0Zm-1 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-1.2 10.34A3 3 0 0 1 12.27 18H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5ZM5.74 15.23A2 2 0 0 0 7.73 17h4.54a2 2 0 0 0 1.99-1.77L15.44 5H4.56l1.18 10.23ZM8.5 7.5c.28 0 .5.22.5.5v6a.5.5 0 0 1-1 0V8c0-.28.22-.5.5-.5ZM12 8a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V8Z\"]);\nexport const Delete24Filled = /*#__PURE__*/createFluentIcon('Delete24Filled', \"24\", [\"M10 5h4a2 2 0 1 0-4 0ZM8.5 5a3.5 3.5 0 1 1 7 0h5.75a.75.75 0 0 1 0 1.5h-1.32l-1.17 12.11A3.75 3.75 0 0 1 15.03 22H8.97a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5H8.5Zm2 4.75a.75.75 0 0 0-1.5 0v7.5a.75.75 0 0 0 1.5 0v-7.5ZM14.25 9a.75.75 0 0 0-.75.75v7.5a.75.75 0 0 0 1.5 0v-7.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const Delete24Regular = /*#__PURE__*/createFluentIcon('Delete24Regular', \"24\", [\"M10 5h4a2 2 0 1 0-4 0ZM8.5 5a3.5 3.5 0 1 1 7 0h5.75a.75.75 0 0 1 0 1.5h-1.32l-1.17 12.11A3.75 3.75 0 0 1 15.03 22H8.97a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5H8.5Zm2 4.75a.75.75 0 0 0-1.5 0v7.5a.75.75 0 0 0 1.5 0v-7.5ZM14.25 9c.41 0 .75.34.75.75v7.5a.75.75 0 0 1-1.5 0v-7.5c0-.41.34-.75.75-.75Zm-7.52 9.47a2.25 2.25 0 0 0 2.24 2.03h6.06c1.15 0 2.12-.88 2.24-2.03L18.42 6.5H5.58l1.15 11.97Z\"]);\nexport const Delete28Filled = /*#__PURE__*/createFluentIcon('Delete28Filled', \"28\", [\"M11.5 6h5a2.5 2.5 0 0 0-5 0ZM10 6a4 4 0 0 1 8 0h6.25a.75.75 0 0 1 0 1.5h-1.31l-1.22 14.6A4.25 4.25 0 0 1 17.5 26H10.5a4.25 4.25 0 0 1-4.23-3.9L5.06 7.5H3.75a.75.75 0 0 1 0-1.5H10Zm2.5 5.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0v-8.5Zm3.75-.75a.75.75 0 0 0-.75.75v8.5a.75.75 0 0 0 1.5 0v-8.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const Delete28Regular = /*#__PURE__*/createFluentIcon('Delete28Regular', \"28\", [\"M11.5 6h5a2.5 2.5 0 0 0-5 0ZM10 6a4 4 0 0 1 8 0h6.25a.75.75 0 0 1 0 1.5h-1.31l-1.22 14.6A4.25 4.25 0 0 1 17.5 26H10.5a4.25 4.25 0 0 1-4.23-3.9L5.06 7.5H3.75a.75.75 0 0 1 0-1.5H10ZM7.77 21.98a2.75 2.75 0 0 0 2.74 2.52h6.98c1.43 0 2.62-1.1 2.74-2.52l1.2-14.48H6.57l1.2 14.48ZM11.75 11c.41 0 .75.34.75.75v8.5a.75.75 0 0 1-1.5 0v-8.5c0-.41.34-.75.75-.75Zm5.25.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0v-8.5Z\"]);\nexport const Delete32Filled = /*#__PURE__*/createFluentIcon('Delete32Filled', \"32\", [\"M13.5 6.5V7h5v-.5a2.5 2.5 0 0 0-5 0Zm-2 .5v-.5a4.5 4.5 0 1 1 9 0V7H28a1 1 0 1 1 0 2h-1.5l-1.9 16.57A5 5 0 0 1 19.63 30h-7.26a5 5 0 0 1-4.97-4.43L5.5 9H4a1 1 0 0 1 0-2h7.5Zm2.5 6.5a1 1 0 1 0-2 0v10a1 1 0 1 0 2 0v-10Zm5-1a1 1 0 0 0-1 1v10a1 1 0 1 0 2 0v-10a1 1 0 0 0-1-1Z\"]);\nexport const Delete32Regular = /*#__PURE__*/createFluentIcon('Delete32Regular', \"32\", [\"M13.5 6.5V7h5v-.5a2.5 2.5 0 0 0-5 0Zm-2 .5v-.5a4.5 4.5 0 1 1 9 0V7H28a1 1 0 1 1 0 2h-1.5l-1.9 16.57A5 5 0 0 1 19.63 30h-7.26a5 5 0 0 1-4.97-4.43L5.5 9H4a1 1 0 0 1 0-2h7.5ZM9.39 25.34A3 3 0 0 0 12.37 28h7.26a3 3 0 0 0 2.98-2.66L24.48 9H7.52L9.4 25.34ZM13 12.5a1 1 0 0 1 1 1v10a1 1 0 1 1-2 0v-10a1 1 0 0 1 1-1Zm7 1a1 1 0 1 0-2 0v10a1 1 0 1 0 2 0v-10Z\"]);\nexport const Delete48Filled = /*#__PURE__*/createFluentIcon('Delete48Filled', \"48\", [\"M20 10.5v.5h8v-.5a4 4 0 0 0-8 0Zm-2.5.5v-.5a6.5 6.5 0 1 1 13 0v.5h11.25a1.25 1.25 0 1 1 0 2.5h-2.92l-2 23.86A7.25 7.25 0 0 1 29.61 44H18.39a7.25 7.25 0 0 1-7.22-6.64l-2-23.86H6.25a1.25 1.25 0 1 1 0-2.5H17.5Zm4 9.25a1.25 1.25 0 1 0-2.5 0v14.5a1.25 1.25 0 1 0 2.5 0v-14.5ZM27.75 19c-.69 0-1.25.56-1.25 1.25v14.5a1.25 1.25 0 1 0 2.5 0v-14.5c0-.69-.56-1.25-1.25-1.25Z\"]);\nexport const Delete48Regular = /*#__PURE__*/createFluentIcon('Delete48Regular', \"48\", [\"M20 10.5v.5h8v-.5a4 4 0 0 0-8 0Zm-2.5.5v-.5a6.5 6.5 0 1 1 13 0v.5h11.25a1.25 1.25 0 1 1 0 2.5h-2.92l-2 23.86A7.25 7.25 0 0 1 29.61 44H18.39a7.25 7.25 0 0 1-7.22-6.64l-2-23.86H6.25a1.25 1.25 0 1 1 0-2.5H17.5Zm-3.84 26.15a4.75 4.75 0 0 0 4.73 4.35h11.22c2.47 0 4.53-1.9 4.73-4.35l1.98-23.65H11.68l1.98 23.65Zm7.84-16.9a1.25 1.25 0 1 0-2.5 0v14.5a1.25 1.25 0 1 0 2.5 0v-14.5ZM27.75 19c.69 0 1.25.56 1.25 1.25v14.5a1.25 1.25 0 1 1-2.5 0v-14.5c0-.69.56-1.25 1.25-1.25Z\"]);\nexport const DeleteArrowBack16Filled = /*#__PURE__*/createFluentIcon('DeleteArrowBack16Filled', \"16\", [\"M9 3a1 1 0 0 0-2 0h2ZM6 3a2 2 0 1 1 4 0h4a.5.5 0 0 1 0 1h-.56l-.24 1.7A5.5 5.5 0 0 0 7.33 15H6.26a2.5 2.5 0 0 1-2.48-2.16L2.57 4H2a.5.5 0 0 1 0-1h4Zm4.5 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const DeleteArrowBack16Regular = /*#__PURE__*/createFluentIcon('DeleteArrowBack16Regular', \"16\", [\"M9 3a1 1 0 0 0-2 0h2ZM6 3a2 2 0 1 1 4 0h4a.5.5 0 0 1 0 1h-.56l-.24 1.7c-.3-.16-.62-.3-.95-.42L12.43 4H3.57l1.19 8.7c.1.75.74 1.3 1.49 1.3.32.38.68.72 1.09 1h-1.1a2.5 2.5 0 0 1-2.47-2.16L2.57 4H2a.5.5 0 0 1 0-1h4Zm4.5 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const DeleteArrowBack20Filled = /*#__PURE__*/createFluentIcon('DeleteArrowBack20Filled', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.49 4.2a5.5 5.5 0 0 0-5.7 8.8H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5Zm7 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const DeleteArrowBack20Regular = /*#__PURE__*/createFluentIcon('DeleteArrowBack20Regular', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.49 4.2a5.48 5.48 0 0 0-.98-.18L15.44 5H4.56l1.18 10.23A2 2 0 0 0 7.73 17H9.6c.18.36.4.7.66 1H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5Zm7 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const DeleteDismiss20Filled = /*#__PURE__*/createFluentIcon('DeleteDismiss20Filled', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.49 4.2a5.5 5.5 0 0 0-5.7 8.8H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const DeleteDismiss20Regular = /*#__PURE__*/createFluentIcon('DeleteDismiss20Regular', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.49 4.2a5.48 5.48 0 0 0-.98-.18L15.44 5H4.56l1.18 10.23A2 2 0 0 0 7.73 17H9.6c.18.36.4.7.66 1H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const DeleteDismiss24Filled = /*#__PURE__*/createFluentIcon('DeleteDismiss24Filled', \"24\", [\"M14 5a2 2 0 1 0-4 0h4ZM8.5 5a3.5 3.5 0 1 1 7 0h5.75a.75.75 0 0 1 0 1.5h-1.32l-.5 5.2A6.5 6.5 0 0 0 11.8 22H8.97a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5H8.5ZM22 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const DeleteDismiss24Regular = /*#__PURE__*/createFluentIcon('DeleteDismiss24Regular', \"24\", [\"M14 5a2 2 0 1 0-4 0h4ZM8.5 5a3.5 3.5 0 1 1 7 0h5.75a.75.75 0 0 1 0 1.5h-1.32l-.5 5.2c-.46-.24-.95-.41-1.46-.53l.45-4.67H5.58l1.15 11.97a2.25 2.25 0 0 0 2.24 2.03h1.76c.29.55.65 1.06 1.08 1.5H8.97a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5H8.5ZM22 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const DeleteDismiss28Filled = /*#__PURE__*/createFluentIcon('DeleteDismiss28Filled', \"28\", [\"M16.5 6a2.5 2.5 0 0 0-5 0h5ZM10 6a4 4 0 0 1 8 0h6.25a.75.75 0 0 1 0 1.5h-1.31l-.5 6.1A7.5 7.5 0 0 0 14.4 26h-3.9a4.25 4.25 0 0 1-4.23-3.9L5.06 7.5H3.75a.75.75 0 0 1 0-1.5H10Zm16 14.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6.5-.7-2.65-2.65a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7l-2.64-2.65 2.64-2.65a.5.5 0 0 0-.7-.7l-2.65 2.64Z\"]);\nexport const DeleteDismiss28Regular = /*#__PURE__*/createFluentIcon('DeleteDismiss28Regular', \"28\", [\"M16.5 6a2.5 2.5 0 0 0-5 0h5ZM10 6a4 4 0 0 1 8 0h6.25a.75.75 0 0 1 0 1.5h-1.31l-.5 6.1c-.47-.2-.97-.36-1.48-.46l.47-5.64H6.57l1.2 14.48a2.75 2.75 0 0 0 2.74 2.52h2.64c.35.55.77 1.06 1.25 1.5h-3.89a4.25 4.25 0 0 1-4.23-3.9L5.06 7.5H3.75a.75.75 0 0 1 0-1.5H10Zm16 14.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6.5-.7-2.65-2.65a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7l-2.64-2.65 2.64-2.65a.5.5 0 0 0-.7-.7l-2.65 2.64Z\"]);\nexport const DeleteLines20Filled = /*#__PURE__*/createFluentIcon('DeleteLines20Filled', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.81 7H11.5a1.5 1.5 0 0 0-1.12 2.5 1.5 1.5 0 0 0 0 2 1.5 1.5 0 0 0-.3 1.5H7.74a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5Zm4 9a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Z\"]);\nexport const DeleteLines20Regular = /*#__PURE__*/createFluentIcon('DeleteLines20Regular', \"20\", [\"M11.5 4a1.5 1.5 0 0 0-3 0h3Zm-4 0a2.5 2.5 0 0 1 5 0h5a.5.5 0 0 1 0 1h-1.05l-.81 7h-1l.8-7H4.56l1.18 10.23A2 2 0 0 0 7.73 17h2.36a1.5 1.5 0 0 0 0 1H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h5Zm4 9a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm0 2a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Z\"]);\nexport const DeleteOff20Filled = /*#__PURE__*/createFluentIcon('DeleteOff20Filled', \"20\", [\"M3.3 4 2.14 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-2-2A3 3 0 0 1 12.27 18H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h.8Zm8.7 8.7-1-1V14a.5.5 0 0 0 1 0v-1.3Zm-3-3-1-1V14a.5.5 0 0 0 1 0V9.7ZM12 8v1.88l3.48 3.48.97-8.36h1.05a.5.5 0 0 0 0-1h-5a2.5 2.5 0 0 0-5 0H6.12L11 8.88V8a.5.5 0 0 1 1 0Zm-.5-4h-3a1.5 1.5 0 1 1 3 0Z\"]);\nexport const DeleteOff20Regular = /*#__PURE__*/createFluentIcon('DeleteOff20Regular', \"20\", [\"M3.3 4 2.14 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-2-2A3 3 0 0 1 12.27 18H7.73a3 3 0 0 1-2.98-2.66L3.55 5H2.5a.5.5 0 0 1 0-1h.8Zm10.99 11L12 12.7V14a.5.5 0 0 1-1 0v-2.3l-2-2V14a.5.5 0 0 1-1 0V8.7L4.6 5.3l1.14 9.93A2 2 0 0 0 7.73 17h4.54a2 2 0 0 0 1.99-1.77l.03-.24ZM11 8.87l1 1V8a.5.5 0 0 0-1 0v.88ZM15.44 5l-.86 7.46.9.9.97-8.36h1.05a.5.5 0 0 0 0-1h-5a2.5 2.5 0 0 0-5 0H6.12l1 1h8.32ZM11.5 4h-3a1.5 1.5 0 1 1 3 0Z\"]);\nexport const DeleteOff24Filled = /*#__PURE__*/createFluentIcon('DeleteOff24Filled', \"24\", [\"M3.94 5 2.22 3.28a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06l-2.2-2.19a3.75 3.75 0 0 1-3.5 2.41H8.98a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5h1.19ZM15 16.06l-1.5-1.5v2.69a.75.75 0 0 0 1.5 0v-1.19Zm-4.5-4.5L9 10.06v7.19a.75.75 0 0 0 1.5 0v-5.69ZM15 9.75v2.07l4.03 4.03.9-9.35h1.32a.75.75 0 0 0 0-1.5H15.5a3.5 3.5 0 1 0-7 0h-.32l5.32 5.32v-.57a.75.75 0 0 1 1.5 0ZM14 5h-4a2 2 0 1 1 4 0Z\"]);\nexport const DeleteOff24Regular = /*#__PURE__*/createFluentIcon('DeleteOff24Regular', \"24\", [\"M3.94 5 2.22 3.28a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06l-2.2-2.19a3.75 3.75 0 0 1-3.5 2.41H8.98a3.75 3.75 0 0 1-3.73-3.39L4.07 6.5H2.75a.75.75 0 0 1 0-1.5h1.19Zm13.34 13.34L15 16.06v1.19a.75.75 0 0 1-1.5 0v-2.69l-3-3v5.69a.75.75 0 0 1-1.5 0v-7.19l-3.4-3.4 1.13 11.8a2.25 2.25 0 0 0 2.24 2.04h6.06c1.15 0 2.12-.88 2.24-2.03v-.13Zm-3.78-8.02 1.5 1.5V9.75a.75.75 0 0 0-1.5 0v.57Zm4.92-3.82-.77 7.97 1.38 1.38.9-9.35h1.32a.75.75 0 0 0 0-1.5H15.5a3.5 3.5 0 1 0-7 0h-.32l1.5 1.5h8.74ZM14 5h-4a2 2 0 1 1 4 0Z\"]);\nexport const Dentist12Filled = /*#__PURE__*/createFluentIcon('Dentist12Filled', \"12\", [\"M5.47 2.1a2.32 2.32 0 0 0-1.96-.5c-.6.13-1.14.46-1.5.85-.4.42-.8.98-.82 1.8 0 .36.04.96.38 1.42.3.44.47.67.55.88.09.26.1.53.1.96 0 .42.08.99.3 1.51.2.51.57 1.08 1.2 1.3l.02.01.02.01c.37.1.75.07 1.04-.2.25-.23.34-.56.39-.82.04-.25.07-.53.09-.8v-.08c.03-.3.06-.6.11-.87.15-.7.34-.8.37-.81.24-.06.35-.02.41.01.08.04.16.13.24.31.17.39.22.94.26 1.5.05.53.16 1.06.4 1.4.13.2.32.38.6.44a1 1 0 0 0 .76-.16c.76-.48 1.17-1.47 1.28-2.69.05-.56.11-.8.19-.99.05-.14.12-.25.22-.42a19 19 0 0 0 .24-.4c.15-.28.42-.8.45-1.43.03-.66-.2-1.37-.96-1.98a2.9 2.9 0 0 0-1.99-.76c-.6.03-1.1.3-1.43.6l-.02.01-.01.01c-.3.31-.4.3-.4.3s-.04 0-.12-.05a2.4 2.4 0 0 1-.37-.32l-.02-.02-.02-.02Zm2.34.98c.34 0 .7.1.98.35.29.26.46.63.5 1.07a.5.5 0 0 1-1 .1c-.02-.24-.1-.36-.16-.42a.46.46 0 0 0-.32-.1.5.5 0 1 1 0-1Z\"]);\nexport const Dentist12Regular = /*#__PURE__*/createFluentIcon('Dentist12Regular', \"12\", [\"M7.81 3.08a.5.5 0 1 0 0 1c.14 0 .25.04.32.1.06.06.14.18.16.41a.5.5 0 1 0 1-.09 1.57 1.57 0 0 0-.5-1.07 1.46 1.46 0 0 0-.98-.35ZM5.47 2.1a2.32 2.32 0 0 0-1.96-.5c-.6.13-1.14.46-1.5.85-.4.42-.8.98-.82 1.8 0 .36.04.96.38 1.42.3.44.47.67.55.88.09.26.1.53.1.96 0 .42.08.99.3 1.51.2.51.57 1.08 1.2 1.3l.02.01.02.01c.37.1.75.07 1.04-.2.25-.23.34-.56.39-.82.04-.25.07-.53.09-.8.02-.33.05-.65.11-.95.15-.7.34-.8.37-.81.33-.08.52.02.65.32.17.39.22.94.26 1.5.05.53.16 1.06.4 1.4.13.2.32.38.6.44a1 1 0 0 0 .76-.16c.76-.48 1.17-1.47 1.28-2.69.05-.56.11-.8.19-.99.05-.14.12-.25.22-.42a19 19 0 0 0 .24-.4c.15-.28.42-.8.45-1.43.03-.66-.2-1.37-.96-1.98a2.9 2.9 0 0 0-1.99-.76c-.6.03-1.1.3-1.43.6l-.02.01-.01.01c-.3.31-.4.3-.4.3s-.04 0-.12-.05a2.4 2.4 0 0 1-.37-.32l-.02-.02-.02-.02ZM2.75 3.13c.22-.25.57-.47.96-.54.35-.07.74-.02 1.1.27.33.33.7.64 1.15.65.47.02.83-.28 1.13-.57.23-.2.5-.34.82-.35.32-.02.75.08 1.3.54.51.4.61.8.6 1.15-.02.38-.19.74-.32.98l-.18.31c-.13.23-.25.43-.34.63-.13.33-.2.69-.26 1.28-.1 1.1-.44 1.7-.82 1.93a2.29 2.29 0 0 1-.22-.93v-.06a5.8 5.8 0 0 0-.34-1.74 1.6 1.6 0 0 0-.66-.78c-.36-.2-.79-.21-1.18-.1-.55.16-.89.68-1.08 1.56-.07.37-.1.75-.13 1.06v.02l-.07.7-.01.05c-.02.1-.04.22-.16.19-.23-.1-.44-.34-.6-.73a3.17 3.17 0 0 1-.23-1.18c0-.38 0-.82-.15-1.24-.15-.42-.42-.8-.69-1.15-.13-.18-.19-.5-.18-.8.02-.47.23-.8.55-1.15Z\"]);\nexport const Dentist16Filled = /*#__PURE__*/createFluentIcon('Dentist16Filled', \"16\", [\"M4.5 2.14a3.1 3.1 0 0 1 2.6.66l.03.01.02.02c.5.5.72.6.84.6.1.01.29-.04.73-.48l.01-.02.02-.01c.46-.39 1.1-.75 1.9-.8.82-.04 1.73.25 2.7 1.03a3.1 3.1 0 0 1 1.27 2.65 4.5 4.5 0 0 1-.61 1.93l-.31.54-.11.18c-.11.18-.19.33-.25.48-.12.29-.2.65-.27 1.46-.15 1.71-.72 3.02-1.72 3.66-.27.17-.59.27-.91.2a1.2 1.2 0 0 1-.73-.52 4.07 4.07 0 0 1-.53-1.92 7.56 7.56 0 0 0-.4-2.18 1.1 1.1 0 0 0-.43-.55c-.14-.08-.37-.13-.74-.03-.12.04-.45.2-.67 1.31-.09.4-.13.84-.16 1.27l-.02.14c-.03.37-.06.76-.12 1.09-.07.36-.19.77-.49 1.05-.34.32-.8.36-1.27.24h-.02l-.02-.02c-.82-.3-1.31-1.03-1.6-1.73-.29-.72-.41-1.5-.42-2.08v-.04c0-.6 0-.99-.14-1.38-.12-.34-.37-.7-.82-1.3-.43-.6-.5-1.38-.48-1.92a3.71 3.71 0 0 1 1.1-2.4c.48-.53 1.2-.98 2.02-1.14Zm6.08 2.1a.5.5 0 1 0 0 1c.24 0 .44.07.59.2.14.13.28.35.31.73a.5.5 0 0 0 1-.1 2.06 2.06 0 0 0-.65-1.38c-.35-.32-.8-.45-1.25-.45Z\"]);\nexport const Dentist16Regular = /*#__PURE__*/createFluentIcon('Dentist16Regular', \"16\", [\"M10.58 4.24a.5.5 0 1 0 0 1c.24 0 .44.07.59.2.14.13.28.35.31.73a.5.5 0 0 0 1-.1 2.06 2.06 0 0 0-.65-1.38c-.35-.32-.8-.45-1.25-.45ZM7.11 2.8a3.1 3.1 0 0 0-2.6-.66c-.83.16-1.55.61-2.03 1.13a3.71 3.71 0 0 0-1.1 2.41c-.02.54.05 1.32.48 1.91.45.61.7.97.82 1.31.14.4.14.79.14 1.38v.04c0 .57.13 1.36.42 2.08.29.7.78 1.44 1.6 1.73l.02.01h.02c.48.13.93.1 1.27-.23.3-.28.42-.7.49-1.05.06-.33.1-.72.12-1.1l.02-.13c.03-.43.07-.86.16-1.27.22-1.1.55-1.27.67-1.31.37-.1.6-.05.74.03.16.1.3.26.42.55.26.58.34 1.41.4 2.18.07.76.23 1.46.54 1.92.17.24.4.45.73.52.32.07.64-.03.91-.2 1-.64 1.57-1.95 1.72-3.66.07-.8.15-1.17.27-1.46.06-.15.14-.3.25-.48l.1-.18.32-.54c.21-.39.57-1.1.61-1.93a3.1 3.1 0 0 0-1.27-2.65 3.94 3.94 0 0 0-2.7-1.03c-.8.05-1.44.41-1.9.8l-.02.01-.01.02c-.44.44-.63.5-.73.49-.12 0-.34-.1-.84-.6l-.02-.03-.02-.01ZM2.38 5.72c.03-.74.38-1.27.84-1.77.35-.38.89-.71 1.47-.83a2.1 2.1 0 0 1 1.77.44c.47.47.94.85 1.49.88.57.02 1.03-.35 1.46-.77.34-.29.78-.52 1.3-.55.52-.02 1.19.15 2 .81.76.62.94 1.26.91 1.82-.03.6-.29 1.14-.49 1.5a23.41 23.41 0 0 1-.4.7c-.12.2-.23.38-.31.6-.18.43-.28.92-.35 1.76-.14 1.58-.65 2.5-1.26 2.9a.46.46 0 0 1-.13.06h-.03l-.03-.01a.42.42 0 0 1-.09-.1c-.15-.23-.3-.71-.35-1.43l-.01-.08a8.14 8.14 0 0 0-.48-2.43c-.17-.39-.44-.77-.85-1a1.94 1.94 0 0 0-1.49-.14h-.01c-.67.2-1.13.85-1.38 2.08-.1.47-.15.95-.18 1.38l-.01.14c-.03.39-.06.72-.11 1-.06.32-.14.45-.2.5 0 .01-.06.07-.3 0-.42-.15-.75-.57-1-1.16a4.94 4.94 0 0 1-.34-1.7v-.1c0-.54 0-1.1-.2-1.66-.18-.5-.53-.98-.95-1.55a2.2 2.2 0 0 1-.3-1.29Z\"]);\nexport const Dentist20Filled = /*#__PURE__*/createFluentIcon('Dentist20Filled', \"20\", [\"M8.94 3.93a3.46 3.46 0 0 0-2.9-.74c-.92.18-1.73.69-2.26 1.27a4.1 4.1 0 0 0-1.24 2.7c-.03.6.06 1.47.53 2.13a5 5 0 0 1 1.12 3.15c0 .65.14 1.53.46 2.34.32.8.87 1.6 1.77 1.94h.02l.03.01c.52.14 1 .1 1.38-.25.32-.3.46-.76.53-1.16.07-.38.1-.82.14-1.25l.01-.15a12 12 0 0 1 .18-1.44c.27-1.27.65-1.5.83-1.55.49-.13.78-.04.97.1.28.2.49.61.64 1.22.14.6.2 1.27.25 1.88.07.87.25 1.65.6 2.16.18.26.44.49.79.56.35.08.69-.03.99-.22 1.1-.7 1.74-2.17 1.91-4.1.08-.88.17-1.3.3-1.64.1-.25.22-.46.42-.8a39.23 39.23 0 0 0 .36-.63c.25-.43.65-1.23.7-2.16a3.48 3.48 0 0 0-1.44-2.96 4.4 4.4 0 0 0-3.01-1.16c-.9.05-1.62.46-2.13.9h-.01l-.01.02c-.5.49-.73.58-.88.57-.17 0-.45-.14-1.01-.7l-.02-.02-.02-.02Zm4 1.67c.48 0 .98.15 1.38.5.4.35.64.87.7 1.52a.5.5 0 1 1-1 .1c-.03-.45-.19-.72-.37-.88a1.06 1.06 0 0 0-.71-.24.5.5 0 0 1 0-1Z\"]);\nexport const Dentist20Regular = /*#__PURE__*/createFluentIcon('Dentist20Regular', \"20\", [\"M12.94 5.6a.5.5 0 0 0 0 1c.29 0 .53.08.71.24.18.16.34.43.38.87a.5.5 0 1 0 1-.09 2.25 2.25 0 0 0-.71-1.52c-.4-.35-.9-.5-1.38-.5Zm-4-1.67a3.46 3.46 0 0 0-2.9-.74c-.92.18-1.73.69-2.26 1.27a4.1 4.1 0 0 0-1.24 2.7c-.03.6.06 1.47.53 2.13a5 5 0 0 1 1.12 3.15c0 .65.14 1.53.46 2.34.32.8.87 1.6 1.77 1.94h.02l.03.01c.52.14 1 .1 1.38-.25.32-.3.46-.76.53-1.16.07-.38.1-.82.14-1.25l.01-.15a12 12 0 0 1 .18-1.44c.27-1.27.65-1.5.83-1.55.49-.13.78-.04.97.1.28.2.49.61.64 1.22.14.6.2 1.27.25 1.88.07.87.25 1.65.6 2.16.18.26.44.49.79.56.35.08.69-.03.99-.22 1.1-.7 1.74-2.17 1.91-4.1.08-.88.17-1.3.3-1.64.1-.25.22-.46.42-.8a39.23 39.23 0 0 0 .36-.63c.25-.43.65-1.23.7-2.16a3.48 3.48 0 0 0-1.44-2.96 4.4 4.4 0 0 0-3.01-1.16c-.9.05-1.62.46-2.13.9h-.01l-.01.02c-.5.49-.73.58-.88.57-.17 0-.45-.14-1.01-.7l-.02-.02-.02-.02Zm-4.43 1.2c.4-.43 1.03-.82 1.72-.96a2.45 2.45 0 0 1 2.06.52c.54.54 1.06.96 1.65.98.62.03 1.13-.37 1.61-.84.4-.34.91-.62 1.52-.65.61-.03 1.39.17 2.33.94.89.72 1.1 1.48 1.06 2.13-.03.7-.33 1.32-.56 1.72l-.12.2-.2.36c-.21.36-.4.66-.52 1-.18.47-.28 1-.36 1.9-.17 1.82-.75 2.9-1.46 3.36-.16.1-.23.09-.25.08-.01 0-.08-.02-.17-.15-.2-.28-.36-.85-.43-1.67v-.02c-.05-.6-.1-1.34-.27-2.01-.16-.67-.44-1.38-1.02-1.8-.49-.35-1.1-.44-1.82-.26h-.01c-.73.22-1.24.92-1.53 2.32-.11.52-.16 1.07-.2 1.56l-.02.15c-.03.44-.06.82-.12 1.14-.07.37-.16.55-.24.62-.03.03-.11.1-.41.02-.5-.2-.9-.7-1.17-1.37a5.7 5.7 0 0 1-.4-1.97 5.98 5.98 0 0 0-1.3-3.72 2.6 2.6 0 0 1-.35-1.51c.04-.87.45-1.48.98-2.06Z\"]);\nexport const Dentist24Filled = /*#__PURE__*/createFluentIcon('Dentist24Filled', \"24\", [\"M4.35 4.39c1-.84 2.3-1.39 3.4-1.39.87 0 1.55.14 2.1.37.57.23.96.55 1.26.84l.35.37.03.03c.1.12.19.2.26.27.12.1.18.12.25.12s.13-.01.25-.12l.26-.27.03-.03.35-.37c.3-.3.7-.6 1.25-.84A5.4 5.4 0 0 1 16.25 3c1.1 0 2.4.55 3.4 1.39 1 .84 1.85 2.08 1.85 3.56 0 .78 0 2.3-1.37 3.94a3.75 3.75 0 0 0-.63 1.86 10.02 10.02 0 0 1-1.08 4.73c-.62 1.12-1.56 2.02-2.67 2.02-.36 0-.7-.1-.98-.31a1.9 1.9 0 0 1-.58-.74 6.13 6.13 0 0 1-.41-1.8l-.09-.8c-.11-1.11-.23-2.26-.63-3.3-.18-.35-.5-.55-.81-.55h-.5c-.31 0-.64.2-.83.58a9.08 9.08 0 0 0-.67 3.56l-.03.47a5.5 5.5 0 0 1-.33 1.83c-.13.28-.32.56-.62.77-.3.2-.65.29-1.02.29-1.24 0-2.19-.87-2.79-2.04a10.6 10.6 0 0 1-.96-4.7 3.62 3.62 0 0 0-.79-2.05C2.5 10.27 2.5 8.68 2.5 7.97v-.02c0-1.48.85-2.72 1.85-3.56ZM15.75 6a.75.75 0 0 0 0 1.5c.71 0 1.25.54 1.25 1.25a.75.75 0 0 0 1.5 0C18.5 7.21 17.3 6 15.75 6Z\"]);\nexport const Dentist24Regular = /*#__PURE__*/createFluentIcon('Dentist24Regular', \"24\", [\"M15.75 6a.75.75 0 0 0 0 1.5c.71 0 1.25.54 1.25 1.25a.75.75 0 0 0 1.5 0C18.5 7.21 17.3 6 15.75 6Zm-8-3c-1.1 0-2.4.55-3.4 1.39A4.74 4.74 0 0 0 2.5 7.95v.02c0 .71 0 2.3 1.21 3.74.13.15.21.25.27.35.31.55.52 1.16.52 1.7.01 1.9.35 3.52.96 4.7.6 1.17 1.55 2.04 2.79 2.04.37 0 .72-.09 1.02-.3.3-.2.5-.48.62-.76.24-.53.3-1.21.33-1.83l.03-.46c.06-1.2.13-2.46.67-3.57.19-.37.52-.58.83-.58h.5c.3 0 .63.2.81.55.4 1.04.52 2.19.63 3.3l.09.8c.07.63.18 1.29.41 1.8.13.27.31.54.58.74.29.2.62.31.98.31 1.11 0 2.05-.9 2.67-2.02.64-1.17 1.07-2.8 1.08-4.73 0-.59.26-1.28.63-1.86a5.64 5.64 0 0 0 1.37-3.94c0-1.48-.85-2.72-1.85-3.56A5.66 5.66 0 0 0 16.25 3a5.4 5.4 0 0 0-2.1.37c-.57.23-.96.55-1.26.84l-.35.37-.03.03c-.1.12-.19.2-.26.27-.12.1-.18.12-.25.12s-.13-.01-.25-.12a3.83 3.83 0 0 1-.26-.27l-.03-.03-.35-.37c-.3-.3-.7-.6-1.25-.84A5.4 5.4 0 0 0 7.75 3ZM4 7.95c0-.89.52-1.74 1.32-2.41A4.2 4.2 0 0 1 7.75 4.5c.7 0 1.19.11 1.53.25.34.15.57.33.78.54l.3.3.02.03c.1.12.23.26.37.38.3.26.7.5 1.25.5s.95-.24 1.25-.5c.14-.12.26-.26.37-.38l.03-.03.29-.3c.2-.2.44-.4.78-.54s.82-.25 1.53-.25c.67 0 1.63.36 2.43 1.04.8.67 1.32 1.52 1.32 2.4v.01c0 .68 0 1.77-1.05 3a5.26 5.26 0 0 0-.95 2.8c0 1.72-.4 3.09-.9 4-.53.98-1.08 1.25-1.35 1.25-.06 0-.08-.01-.08-.02a.45.45 0 0 1-.12-.17c-.12-.26-.2-.7-.28-1.34a41.8 41.8 0 0 1-.08-.7 14.82 14.82 0 0 0-.77-3.85 2.45 2.45 0 0 0-2.17-1.42h-.5c-.99 0-1.79.63-2.17 1.42-.7 1.4-.77 2.99-.83 4.16l-.03.44c-.04.66-.1 1.07-.2 1.31-.05.1-.08.13-.1.14 0 0-.04.03-.17.03-.44 0-.98-.3-1.46-1.23A9.15 9.15 0 0 1 6 13.75a5.1 5.1 0 0 0-1.13-3C4 9.73 4 8.62 4 7.94Z\"]);\nexport const Dentist28Filled = /*#__PURE__*/createFluentIcon('Dentist28Filled', \"28\", [\"M12.36 4.64a5.32 5.32 0 0 0-4.47-1.12 6.57 6.57 0 0 0-3.47 1.95A6.29 6.29 0 0 0 2.5 9.62c-.05.93.08 2.27.8 3.28h.01c.78 1.07 1.24 1.7 1.46 2.33.25.68.26 1.36.26 2.33v.2c.01 1 .22 2.36.73 3.6.5 1.22 1.34 2.47 2.71 2.98l.04.01.04.01c.8.22 1.55.14 2.1-.39.5-.46.71-1.15.83-1.78.1-.57.16-1.24.2-1.9l.03-.25c.06-.76.13-1.51.28-2.23.42-1.97 1-2.32 1.29-2.4.67-.18 1.1-.1 1.39.07.3.17.57.5.8 1.01.45 1.05.59 2.54.7 3.88.11 1.34.4 2.55.93 3.32.27.4.66.74 1.2.86a2 2 0 0 0 1.5-.34c1.7-1.09 2.69-3.34 2.95-6.32a8.7 8.7 0 0 1 .5-2.62 7.14 7.14 0 0 1 .63-1.18l.54-.93c.38-.68 1-1.9 1.06-3.33a5.36 5.36 0 0 0-2.2-4.55c-1.67-1.37-3.23-1.86-4.63-1.79-1.38.07-2.48.7-3.27 1.38l-.02.02-.02.02c-.77.76-1.13.9-1.37.89-.26-.01-.7-.22-1.56-1.1l-.03-.03-.03-.03Zm6.17 2.57c.75 0 1.51.22 2.11.76.61.54.99 1.34 1.08 2.34a.75.75 0 1 1-1.5.14c-.06-.7-.3-1.11-.57-1.36a1.65 1.65 0 0 0-1.12-.38.75.75 0 0 1 0-1.5Z\"]);\nexport const Dentist28Regular = /*#__PURE__*/createFluentIcon('Dentist28Regular', \"28\", [\"M18.53 7.2a.75.75 0 0 0 0 1.5c.45 0 .84.14 1.12.4.27.24.51.65.58 1.35a.75.75 0 0 0 1.5-.14c-.1-1-.48-1.8-1.09-2.34a3.14 3.14 0 0 0-2.11-.76Zm-6.17-2.56a5.32 5.32 0 0 0-4.47-1.12 6.57 6.57 0 0 0-3.47 1.95A6.29 6.29 0 0 0 2.5 9.62c-.05.93.08 2.27.8 3.28h.01c.78 1.07 1.24 1.7 1.46 2.33.25.68.26 1.36.26 2.33v.2c.01 1 .22 2.36.73 3.6.5 1.22 1.34 2.47 2.71 2.98l.04.01.04.01c.8.22 1.55.14 2.1-.39.5-.46.71-1.15.83-1.78.1-.57.16-1.24.2-1.9l.03-.25c.06-.76.13-1.51.28-2.23.42-1.97 1-2.32 1.29-2.4.67-.18 1.1-.1 1.39.07.3.17.57.5.8 1.01.45 1.05.59 2.54.7 3.88.11 1.34.4 2.55.93 3.32.27.4.66.74 1.2.86a2 2 0 0 0 1.5-.34c1.7-1.09 2.69-3.34 2.95-6.32a8.7 8.7 0 0 1 .5-2.62 7.14 7.14 0 0 1 .63-1.18l.54-.93c.38-.68 1-1.9 1.06-3.33a5.36 5.36 0 0 0-2.2-4.55c-1.67-1.37-3.23-1.86-4.63-1.79-1.38.07-2.48.7-3.27 1.38l-.02.02-.02.02c-.77.76-1.13.9-1.37.89-.26-.01-.7-.22-1.56-1.1l-.03-.03-.03-.03ZM4 9.68a4.81 4.81 0 0 1 1.5-3.2A5.07 5.07 0 0 1 8.19 5a3.82 3.82 0 0 1 3.2.8c.25.25.5.48.74.68.58.48 1.16.8 1.8.83.73.03 1.36-.33 1.96-.84.17-.15.34-.3.5-.47a3.98 3.98 0 0 1 2.36-1c.87-.05 1.96.22 3.26 1.18l.35.27c1.37 1.12 1.7 2.3 1.65 3.31a6.25 6.25 0 0 1-.88 2.67l-.5.89a8.6 8.6 0 0 0-.74 1.4c-.32.74-.48 1.57-.61 3.04-.25 2.81-1.15 4.48-2.27 5.2-.24.15-.35.14-.38.13-.04 0-.14-.04-.28-.25a5.8 5.8 0 0 1-.67-2.58v-.08c-.1-1.26-.25-2.98-.82-4.28a3.52 3.52 0 0 0-1.43-1.71c-.7-.4-1.56-.48-2.52-.23h-.02c-1.1.33-1.9 1.4-2.35 3.55-.17.82-.25 1.66-.3 2.42l-.03.25c-.05.67-.1 1.26-.19 1.75-.1.57-.24.84-.37.96-.05.05-.2.16-.67.04-.78-.3-1.39-1.08-1.81-2.13a8.7 8.7 0 0 1-.61-3.04v-.25c-.01-.9-.02-1.85-.36-2.79-.3-.85-.9-1.66-1.63-2.65l-.03-.04a3.88 3.88 0 0 1-.52-2.34ZM22 6.17l.35.27Z\"]);\nexport const Dentist48Filled = /*#__PURE__*/createFluentIcon('Dentist48Filled', \"48\", [\"M21.27 8.23a8.2 8.2 0 0 0-7.58-1.95c-2.4.53-4.57 1.89-5.87 3.27-1.6 1.69-3.1 3.86-3.23 7-.05 1.54.15 3.82 1.38 5.52l.13.19c1.24 1.7 1.97 2.72 2.33 3.73V26c.42 1.14.43 2.26.44 3.87v.43c.03 2.22.66 5.78 2.36 8.38a7.19 7.19 0 0 0 3.45 2.94l.06.02.06.01c1.2.32 2.33.25 3.25-.43a4.44 4.44 0 0 0 1.51-2.54c.25-.94.36-2.04.46-3.13l.07-.96c.07-.8.13-1.62.23-2.44.07-.61.16-1.2.28-1.78a9.28 9.28 0 0 1 1.14-3.22c.34-.5.69-.73 1.07-.87 1.14-.29 1.86-.14 2.34.14.53.3.98.85 1.36 1.71.78 1.78 1 4.29 1.18 6.56.2 2.25.67 4.3 1.56 5.63a3.4 3.4 0 0 0 1.98 1.5c.9.22 1.79-.03 2.57-.53 2.88-1.85 4.53-5.8 4.98-10.81.2-2.13.44-3.26.84-4.25.31-.8.72-1.52 1.35-2.62l.64-1.13c.64-1.15 1.68-3.21 1.8-5.62.12-2.5-.76-5.25-3.73-7.63-2.83-2.3-5.46-3.13-7.8-3a9.22 9.22 0 0 0-5.53 2.33l-.03.02-.03.03c-1.3 1.28-1.92 1.53-2.33 1.5-.46-.01-1.19-.37-2.65-1.85l-.02-.01-.02-.02Zm1.54 18.05-.04.01.08-.02-.04.01Zm8.85-14.04c2.69 0 5.12 2.35 5.38 5.23a1.25 1.25 0 1 1-2.49.23c-.15-1.72-1.62-2.96-2.9-2.96a1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Dentist48Regular = /*#__PURE__*/createFluentIcon('Dentist48Regular', \"48\", [\"M31.66 12.24a1.25 1.25 0 0 0 0 2.5c1.27 0 2.74 1.24 2.9 2.96a1.25 1.25 0 0 0 2.48-.23c-.26-2.88-2.7-5.23-5.38-5.23ZM21.27 8.23a8.2 8.2 0 0 0-7.58-1.95c-2.4.53-4.57 1.89-5.87 3.27-1.6 1.69-3.1 3.86-3.23 7-.05 1.54.15 3.82 1.38 5.52l.13.19c1.24 1.7 1.97 2.72 2.33 3.73V26c.42 1.14.43 2.26.44 3.87v.43c.03 2.22.66 5.78 2.36 8.38a7.19 7.19 0 0 0 3.45 2.94l.06.02.06.01c1.2.32 2.33.25 3.25-.43a4.44 4.44 0 0 0 1.51-2.54c.25-.94.36-2.04.46-3.13l.07-.96c.07-.8.13-1.62.23-2.44.07-.61.16-1.2.28-1.78a9.28 9.28 0 0 1 1.14-3.22c.34-.5.69-.73 1.07-.87 1.14-.29 1.86-.14 2.34.14.53.3.98.85 1.36 1.71.78 1.78 1 4.29 1.18 6.56.2 2.25.67 4.3 1.56 5.63a3.4 3.4 0 0 0 1.98 1.5c.9.22 1.79-.03 2.57-.53 2.88-1.85 4.53-5.8 4.98-10.81.2-2.13.44-3.26.84-4.25.31-.8.72-1.52 1.35-2.62l.64-1.13c.64-1.15 1.68-3.21 1.8-5.62.12-2.5-.76-5.25-3.73-7.63-2.83-2.3-5.46-3.13-7.8-3a9.22 9.22 0 0 0-5.53 2.33l-.03.02-.03.03c-1.3 1.28-1.92 1.53-2.33 1.5-.46-.01-1.19-.37-2.65-1.85l-.02-.01-.02-.02ZM9.64 11.26a9.45 9.45 0 0 1 4.58-2.53 5.7 5.7 0 0 1 5.33 1.31c1.42 1.43 2.77 2.5 4.3 2.58 1.58.07 2.9-.95 4.16-2.2a6.71 6.71 0 0 1 4-1.7c1.6-.08 3.64.46 6.1 2.45 2.33 1.87 2.88 3.85 2.8 5.57a10.52 10.52 0 0 1-1.48 4.51l-.58 1.02c-.65 1.14-1.17 2.06-1.56 3.04-.52 1.3-.8 2.7-1 4.94-.42 4.76-1.95 7.72-3.84 8.93-.4.26-.58.23-.63.22-.07-.02-.25-.1-.5-.47-.52-.78-.95-2.3-1.13-4.45l-.01-.1c-.18-2.13-.41-5.05-1.38-7.25a5.92 5.92 0 0 0-2.41-2.89 5.55 5.55 0 0 0-4.26-.37l-.04.02-.04.01c-.9.3-1.7.85-2.38 1.86-.65.95-1.13 2.28-1.51 4.1-.14.66-.24 1.33-.32 2-.1.87-.18 1.76-.24 2.58l-.07.9c-.1 1.09-.2 2-.39 2.71-.19.73-.41 1.04-.58 1.16-.1.08-.35.22-1.06.04a4.76 4.76 0 0 1-2.17-1.93c-1.36-2.08-1.93-5.12-1.95-7.05v-.48a13.42 13.42 0 0 0-.6-4.64c-.48-1.36-1.42-2.66-2.52-4.18-.1-.12-.18-.25-.27-.37-.73-1-.95-2.58-.9-3.96.1-2.28 1.15-3.9 2.55-5.38ZM22.8 26.28l-.04.01.08-.02-.04.01Z\"]);\nexport const DesignIdeas16Filled = /*#__PURE__*/createFluentIcon('DesignIdeas16Filled', \"16\", [\"M7.5 3.5c-.56 0-1.08.15-1.53.42a3.4 3.4 0 0 0-.48-1.45A4.5 4.5 0 0 1 11.97 6h1.28c.97 0 1.75.78 1.75 1.75v4.5c0 .97-.78 1.75-1.75 1.75h-4.5C7.78 14 7 13.22 7 12.25v-1.28c-.35-.04-.7-.12-1.02-.23L6 10v-.08l-.01-.83c.3.18.65.3 1.01.37V7.75C7 6.78 7.78 6 8.75 6h1.7A3 3 0 0 0 7.5 3.5Zm4.39 4a4.5 4.5 0 0 1-3.39 3.39v1.36c0 .14.11.25.25.25h4.5c.14 0 .25-.11.25-.25v-4.5a.25.25 0 0 0-.25-.25h-1.36Zm-1.56 0H8.75a.25.25 0 0 0-.25.25v1.58a3 3 0 0 0 1.83-1.83ZM3.58 1.13a.5.5 0 0 1 .12.6l-.01.08c0 .07.01.19.16.34l.2.18.16.16c.13.12.27.27.4.45.25.38.39.86.39 1.56 0 .83-.3 1.54-.77 2 .29.29.46.68.56 1.06.21.76.21 1.68.21 2.4V10c0 2.06-.39 3.28-.82 4-.22.37-.45.6-.64.75a1.65 1.65 0 0 1-.33.2S3.08 15 3 15a.8.8 0 0 1-.3-.09 1.64 1.64 0 0 1-.24-.16 2.67 2.67 0 0 1-.64-.74C1.4 13.28 1 12.06 1 10v-.04c0-.72 0-1.64.2-2.4.11-.38.28-.77.57-1.07A2.73 2.73 0 0 1 1 4.5a4.73 4.73 0 0 1 .69-2.1A4.07 4.07 0 0 1 2.93 1.1l.03-.02h.01a.5.5 0 0 1 .61.04Z\"]);\nexport const DesignIdeas16Regular = /*#__PURE__*/createFluentIcon('DesignIdeas16Regular', \"16\", [\"M7 10.97c-.35-.04-.7-.12-1.02-.23L6 10v-.34c.31.15.65.25 1 .3V7.5C7 6.67 7.67 6 8.5 6h2.46a3.5 3.5 0 0 0-5.08-2.6 3.2 3.2 0 0 0-.39-.93A4.5 4.5 0 0 1 11.97 6h1.53c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 7 12.5v-1.53ZM11.97 7A4.5 4.5 0 0 1 8 10.97v1.53c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-1.53Zm-1 0H8.5a.5.5 0 0 0-.5.5v2.46A3.5 3.5 0 0 0 10.96 7Zm-6.18.56a2.4 2.4 0 0 0-.56-1.07C4.7 6.04 5 5.33 5 4.5c0-.7-.14-1.18-.4-1.56a2.75 2.75 0 0 0-.56-.61l-.19-.18C3.7 2 3.7 1.88 3.7 1.8a.33.33 0 0 1 .01-.1.5.5 0 0 0-.73-.63l-.01.01-.03.02a4.29 4.29 0 0 0-.43.35c-.25.22-.58.54-.81.93A4.73 4.73 0 0 0 1 4.5c0 .83.3 1.54.77 2-.29.29-.46.68-.56 1.06C1 8.32 1 9.24 1 9.96V10c0 2.06.39 3.28.82 4 .22.37.45.6.64.75a1.64 1.64 0 0 0 .33.2s.13.05.21.05c.08 0 .21-.05.21-.05l.09-.04a2.67 2.67 0 0 0 .88-.9C4.6 13.28 5 12.06 5 10v-.04c0-.72 0-1.64-.2-2.4ZM2.5 7.2A.67.67 0 0 1 3 7c.25 0 .4.08.51.19.13.13.24.33.32.63C4 8.44 4 9.24 4 10c0 1.94-.36 2.97-.68 3.5-.12.2-.23.32-.32.4-.09-.08-.2-.2-.32-.4C2.36 12.96 2 11.93 2 10c0-.76 0-1.56.17-2.18.08-.3.2-.5.32-.63ZM3 6c-.38 0-1-.43-1-1.5a3.73 3.73 0 0 1 .87-2.01c.07.12.16.24.28.36.07.08.16.17.25.24l.12.12c.1.1.19.19.25.29.12.18.23.45.23 1C4 5.57 3.38 6 3 6Z\"]);\nexport const DesignIdeas20Filled = /*#__PURE__*/createFluentIcon('DesignIdeas20Filled', \"20\", [\"M9 4.5c-.75 0-1.44.24-2.01.64a3.59 3.59 0 0 0-.41-1.52A5 5 0 0 1 14 8h2.25c.97 0 1.75.78 1.75 1.75v5.5c0 .97-.78 1.75-1.75 1.75h-5.5C9.78 17 9 16.22 9 15.25V13c-.72 0-1.4-.15-2.02-.42L7 11.5V10.87c.56.4 1.26.63 2 .63V9.75C9 8.78 9.78 8 10.75 8h1.75A3.5 3.5 0 0 0 9 4.5Zm4.77 5a5.01 5.01 0 0 1-3.27 3.27v2.48c0 .14.11.25.25.25h5.5c.14 0 .25-.11.25-.25v-5.5a.25.25 0 0 0-.25-.25h-2.48Zm-1.6 0h-1.42a.25.25 0 0 0-.25.25v1.41a3.51 3.51 0 0 0 1.66-1.66ZM4.57 2.13a.5.5 0 0 1 .12.6l-.01.08c0 .07.01.19.16.34l.2.18.16.16c.13.12.27.27.4.45.25.38.39.86.39 1.56 0 .85-.32 1.58-.8 2.03l.05.07c.29.34.45.79.55 1.23.2.87.2 1.92.2 2.64v.03c0 2.79-.38 4.37-.8 5.27-.2.46-.43.75-.62.93a1.48 1.48 0 0 1-.4.26S4.09 18 4 18c-.07 0-.19-.04-.19-.04a.75.75 0 0 1-.13-.06c-.07-.05-.16-.1-.26-.2-.2-.18-.41-.47-.62-.93-.42-.9-.8-2.48-.8-5.27v-.03c0-.72 0-1.77.2-2.64a3.02 3.02 0 0 1 .6-1.3C2.33 7.08 2 6.35 2 5.5a4.73 4.73 0 0 1 .69-2.1A4.07 4.07 0 0 1 3.93 2.1l.04-.03a.5.5 0 0 1 .61.05Z\"]);\nexport const DesignIdeas20Regular = /*#__PURE__*/createFluentIcon('DesignIdeas20Regular', \"20\", [\"M9 4c-.76 0-1.48.21-2.08.58a3.3 3.3 0 0 0-.34-.96A5 5 0 0 1 14 8h2.5c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 9 15.5V13c-.72 0-1.4-.15-2.02-.42L7 11.5v-.04c.59.35 1.27.54 2 .54V9.5c0-.83.67-1.5 1.5-1.5H13a4 4 0 0 0-4-4Zm4.9 5a5 5 0 0 1-3.9 3.9v2.6c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-2.6Zm-1.03 0H10.5a.5.5 0 0 0-.5.5v2.37A4 4 0 0 0 12.87 9ZM4.58 2.13a.5.5 0 0 1 .12.6l-.01.08c0 .07.01.19.16.34l.2.18.16.16c.13.12.27.27.4.45.25.38.39.86.39 1.56 0 .85-.32 1.58-.8 2.03l.05.07c.29.34.45.79.55 1.23.2.87.2 1.92.2 2.64v.03c0 2.79-.38 4.37-.8 5.27-.2.46-.43.75-.62.93a1.48 1.48 0 0 1-.4.26S4.09 18 4 18c-.07 0-.19-.04-.19-.04a.75.75 0 0 1-.13-.06c-.07-.05-.16-.1-.26-.2-.2-.18-.41-.47-.62-.93-.42-.9-.8-2.48-.8-5.27v-.03c0-.72 0-1.77.2-2.64a3.02 3.02 0 0 1 .6-1.3C2.33 7.08 2 6.35 2 5.5a4.73 4.73 0 0 1 .69-2.1A4.07 4.07 0 0 1 3.93 2.1l.03-.02h.01a.5.5 0 0 1 .61.04ZM4 7c.39 0 1-.43 1-1.5 0-.55-.1-.82-.23-1-.06-.1-.14-.2-.25-.3l-.12-.1-.25-.25a1.67 1.67 0 0 1-.28-.36 2.5 2.5 0 0 0-.34.44A3.73 3.73 0 0 0 3 5.5C3 6.57 3.62 7 4 7Zm-.48 1.23c-.14.18-.26.45-.35.82C3 9.8 3 10.75 3 11.5c0 2.71.37 4.13.7 4.85.11.24.22.4.3.5.08-.1.19-.26.3-.5.33-.72.7-2.14.7-4.85 0-.76 0-1.7-.17-2.45-.1-.37-.2-.64-.35-.82A.57.57 0 0 0 4 8a.57.57 0 0 0-.48.23Z\"]);\nexport const DesignIdeas24Filled = /*#__PURE__*/createFluentIcon('DesignIdeas24Filled', \"24\", [\"M5.57 2.07c.26.13.43.4.43.68 0 .83.31 1.3.7 1.89l.03.04c.33.5.77 1.14.77 2.07 0 .95-.48 1.78-1.2 2.27.19.16.36.36.5.6.48.77.7 1.94.7 3.63 0 1.72-.23 3.77-.6 5.41-.2.82-.42 1.57-.7 2.14a3 3 0 0 1-.5.77c-.21.21-.53.43-.95.43-.42 0-.74-.22-.94-.43a3 3 0 0 1-.51-.77c-.28-.57-.5-1.32-.7-2.14-.37-1.64-.6-3.7-.6-5.4 0-1.7.22-2.87.7-3.64.14-.24.31-.44.5-.6A2.75 2.75 0 0 1 2 6.75c0-.37 0-1 .38-1.82a8.1 8.1 0 0 1 2.4-2.77.75.75 0 0 1 .8-.09ZM10 14.92a5.96 5.96 0 0 1-1.53-.48 23.1 23.1 0 0 0 0-2.35c.43.37.96.64 1.53.78V10.5c0-.83.67-1.5 1.5-1.5H15a4 4 0 0 0-6.58-3.05 5 5 0 0 0-.84-1.8l-.04-.05A6 6 0 0 1 17 9h3.5c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9a1.5 1.5 0 0 1-1.5-1.5v-4.58Zm2 0V19h8v-8h-3.34A6 6 0 0 1 12 14.92ZM14.46 11H12v1.87A4 4 0 0 0 14.46 11Z\"]);\nexport const DesignIdeas24Regular = /*#__PURE__*/createFluentIcon('DesignIdeas24Regular', \"24\", [\"M5.57 2.07c.26.13.43.4.43.68 0 .83.31 1.3.7 1.89l.03.04c.33.5.77 1.14.77 2.07 0 .95-.48 1.78-1.2 2.27.19.16.36.36.5.6.48.77.7 1.94.7 3.63 0 1.72-.23 3.77-.6 5.41-.2.82-.42 1.57-.7 2.14a3 3 0 0 1-.5.77c-.21.21-.53.43-.95.43-.42 0-.74-.22-.94-.43a3 3 0 0 1-.51-.77c-.28-.57-.5-1.32-.7-2.14-.37-1.64-.6-3.7-.6-5.4 0-1.7.22-2.87.7-3.64.14-.24.31-.44.5-.6A2.75 2.75 0 0 1 2 6.75c0-.37 0-1 .38-1.82a8.1 8.1 0 0 1 2.4-2.77.75.75 0 0 1 .8-.09ZM3.5 6.75a1.25 1.25 0 0 0 2.5 0c0-.44-.18-.74-.54-1.27l-.01-.02c-.23-.34-.5-.74-.7-1.26a5.07 5.07 0 0 0-1 1.37c-.25.51-.25.88-.25 1.18Zm.47 3.66c-.24.4-.47 1.22-.47 2.84 0 1.6.22 3.55.57 5.08a8.91 8.91 0 0 0 .68 2c.03-.05.07-.11.1-.19.2-.41.4-1.04.58-1.8.35-1.54.57-3.48.57-5.09 0-1.62-.23-2.44-.47-2.84a.79.79 0 0 0-.33-.32c-.1-.05-.25-.09-.45-.09s-.34.04-.45.09a.79.79 0 0 0-.33.32ZM10 14.9a5.96 5.96 0 0 1-1.53-.47 23.1 23.1 0 0 0 .02-1.7c.45.3.96.52 1.51.65V10.5c0-.83.67-1.5 1.5-1.5h4a4.5 4.5 0 0 0-7.23-3.57c-.2-.56-.49-.98-.69-1.27l-.04-.06A6 6 0 0 1 17 9h3.5c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9a1.5 1.5 0 0 1-1.5-1.5v-4.58Zm1.5.07v4.52h9v-9h-3.69a6 6 0 0 1-5.31 4.48Zm3.74-4.48H11.5v2.97a4.5 4.5 0 0 0 3.74-2.97Z\"]);\nexport const Desk16Filled = /*#__PURE__*/createFluentIcon('Desk16Filled', \"16\", [\"M2.75 3C1.78 3 1 3.78 1 4.75V6h13v6.5a.5.5 0 0 0 1 0V4.75C15 3.78 14.22 3 13.25 3H2.75ZM8 7H1v4.25c0 .97.78 1.75 1.75 1.75h3.5C7.22 13 8 12.22 8 11.25V7ZM3 9c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2A.5.5 0 0 1 3 9Z\"]);\nexport const Desk16Regular = /*#__PURE__*/createFluentIcon('Desk16Regular', \"16\", [\"M2.75 3C1.78 3 1 3.78 1 4.75v6.5c0 .97.78 1.75 1.75 1.75h3.5C7.22 13 8 12.22 8 11.25V7h6v5.5a.5.5 0 0 0 1 0V4.75C15 3.78 14.22 3 13.25 3H2.75ZM2 7h5v4.25c0 .41-.34.75-.75.75h-3.5a.75.75 0 0 1-.75-.75V7Zm0-1V4.75c0-.41.34-.75.75-.75h10.5c.41 0 .75.34.75.75V6H2Zm1.5 2a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const Desk20Filled = /*#__PURE__*/createFluentIcon('Desk20Filled', \"20\", [\"M4 4a2 2 0 0 0-2 2v1h15v8.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2H4Zm6 4H2v6c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V8Zm-5.5 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Z\"]);\nexport const Desk20Regular = /*#__PURE__*/createFluentIcon('Desk20Regular', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V8h7v7.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2H4ZM3 8h6v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V8Zm0-1V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v1H3Zm2 2.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H5Z\"]);\nexport const Desk24Filled = /*#__PURE__*/createFluentIcon('Desk24Filled', \"24\", [\"M4.25 4C3.01 4 2 5 2 6.25V8h18.5v11.25a.75.75 0 0 0 1.5 0v-13C22 5.01 21 4 19.75 4H4.25ZM12 9.5H2v7.75A2.75 2.75 0 0 0 4.75 20h4.5A2.75 2.75 0 0 0 12 17.25V9.5Zm-7 3.25c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const Desk24Regular = /*#__PURE__*/createFluentIcon('Desk24Regular', \"24\", [\"M4.25 4C3.01 4 2 5 2 6.25v11A2.75 2.75 0 0 0 4.75 20h4.5A2.75 2.75 0 0 0 12 17.25V9.5h8.5v9.75a.75.75 0 0 0 1.5 0v-13C22 5.01 21 4 19.75 4H4.25ZM3.5 9.5h7v7.75c0 .69-.56 1.25-1.25 1.25h-4.5c-.69 0-1.25-.56-1.25-1.25V9.5Zm0-1.5V6.25c0-.41.34-.75.75-.75h15.5c.41 0 .75.34.75.75V8h-17Zm2.25 3.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z\"]);\nexport const Desk28Filled = /*#__PURE__*/createFluentIcon('Desk28Filled', \"28\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75V9h22.5v14.25a.75.75 0 0 0 1.5 0V6.75A2.75 2.75 0 0 0 23.25 4H4.75ZM14 10.5H2v9.75A3.75 3.75 0 0 0 5.75 24h4.5A3.75 3.75 0 0 0 14 20.25V10.5Zm-8.5 4.25c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const Desk28Regular = /*#__PURE__*/createFluentIcon('Desk28Regular', \"28\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v13.5A3.75 3.75 0 0 0 5.75 24h4.5A3.75 3.75 0 0 0 14 20.25V10.5h10.5v12.75a.75.75 0 0 0 1.5 0V6.75A2.75 2.75 0 0 0 23.25 4H4.75ZM3.5 10.5h9v9.75c0 1.24-1 2.25-2.25 2.25h-4.5c-1.24 0-2.25-1-2.25-2.25V10.5Zm0-1.5V6.75c0-.69.56-1.25 1.25-1.25h18.5c.7 0 1.25.56 1.25 1.25V9h-21Zm2.75 4a.75.75 0 0 0 0 1.5h3.5a.75.75 0 1 0 0-1.5h-3.5Z\"]);\nexport const Desk32Filled = /*#__PURE__*/createFluentIcon('Desk32Filled', \"32\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25V10h26v17a1 1 0 1 0 2 0V7.25C30 5.45 28.54 4 26.75 4H5.25ZM16 12H2v11.5A4.5 4.5 0 0 0 6.5 28h5a4.5 4.5 0 0 0 4.5-4.5V12ZM6 17a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z\"]);\nexport const Desk32Regular = /*#__PURE__*/createFluentIcon('Desk32Regular', \"32\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25V23.5A4.5 4.5 0 0 0 6.5 28h5a4.5 4.5 0 0 0 4.5-4.5V12h12v15a1 1 0 1 0 2 0V7.25C30 5.45 28.54 4 26.75 4H5.25ZM4 12h10v11.5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 4 23.5V12Zm0-2V7.25C4 6.56 4.56 6 5.25 6h21.5c.69 0 1.25.56 1.25 1.25V10H4Zm3 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H7Z\"]);\nexport const Desk48Filled = /*#__PURE__*/createFluentIcon('Desk48Filled', \"48\", [\"M8.25 8A4.25 4.25 0 0 0 4 12.25V16h37.5v22.75a1.25 1.25 0 1 0 2.5 0v-26.5C44 9.9 42.1 8 39.75 8H8.25ZM24 18.5H4v15.25C4 37.2 6.8 40 10.25 40h7.5C21.2 40 24 37.2 24 33.75V18.5Zm-14 6.75c0-.69.56-1.25 1.25-1.25h5.5a1.25 1.25 0 1 1 0 2.5h-5.5c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const Desk48Regular = /*#__PURE__*/createFluentIcon('Desk48Regular', \"48\", [\"M8.25 8A4.25 4.25 0 0 0 4 12.25v21.5C4 37.2 6.8 40 10.25 40h7.5C21.2 40 24 37.2 24 33.75V18.5h17.5v20.25a1.25 1.25 0 1 0 2.5 0v-26.5C44 9.9 42.1 8 39.75 8H8.25ZM6.5 18.5h15v15.25a3.75 3.75 0 0 1-3.75 3.75h-7.5a3.75 3.75 0 0 1-3.75-3.75V18.5Zm0-2.5v-3.75c0-.97.78-1.75 1.75-1.75h31.5c.97 0 1.75.78 1.75 1.75V16h-35Zm4.75 7a1.25 1.25 0 1 0 0 2.5h5.5a1.25 1.25 0 1 0 0-2.5h-5.5Z\"]);\nexport const Desktop16Filled = /*#__PURE__*/createFluentIcon('Desktop16Filled', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v7c0 .83.67 1.5 1.5 1.5H6v1H4.5a.5.5 0 0 0 0 1h7a.5.5 0 1 0 0-1H10v-1h2.5c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-9ZM9 12v1H7v-1h2Z\"]);\nexport const Desktop16Regular = /*#__PURE__*/createFluentIcon('Desktop16Regular', \"16\", [\"M4 2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2v1H4.5a.5.5 0 0 0 0 1h7a.5.5 0 1 0 0-1H10v-1h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm5 10v1H7v-1h2ZM3 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Z\"]);\nexport const Desktop20Filled = /*#__PURE__*/createFluentIcon('Desktop20Filled', \"20\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3.5c.83 0 1.5-.67 1.5-1.5v-10c0-.83-.67-1.5-1.5-1.5h-13ZM12 15v2H8v-2h4Z\"]);\nexport const Desktop20Regular = /*#__PURE__*/createFluentIcon('Desktop20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h3v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm8 13v2H8v-2h4ZM3 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Z\"]);\nexport const Desktop24Filled = /*#__PURE__*/createFluentIcon('Desktop24Filled', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v10.65c0 1.2-.92 2.17-2.09 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75ZM14 18h-4v2.5h4V18Z\"]);\nexport const Desktop24Regular = /*#__PURE__*/createFluentIcon('Desktop24Regular', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v10.65c0 1.2-.92 2.17-2.09 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75ZM14 18h-4v2.5h4V18Zm5.75-13.5H4.25c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.75h15.6c.38 0 .7-.28.74-.65V5.25c0-.38-.27-.7-.64-.74l-.1-.01Z\"]);\nexport const Desktop28Filled = /*#__PURE__*/createFluentIcon('Desktop28Filled', \"28\", [\"M23.75 3C24.99 3 26 4 26 5.25v13.5C26 20 25 21 23.75 21H18v2.5h1.75c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74l-.1.01H8.25a.75.75 0 0 1-.1-1.5H10V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5ZM16.5 21h-5v2.5h5V21Z\"]);\nexport const Desktop28Regular = /*#__PURE__*/createFluentIcon('Desktop28Regular', \"28\", [\"M19.75 25H8.25a.75.75 0 0 1-.1-1.5H10V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5C24.99 3 26 4 26 5.25v13.5C26 20 25 21 23.75 21H18v2.5h1.75c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74l-.1.01H8.25h11.5Zm-3.25-4h-5v2.5h5V21Zm7.25-16.5H4.25a.75.75 0 0 0-.75.75v13.5c0 .42.34.75.75.75h19.5c.41 0 .75-.33.75-.75V5.25a.75.75 0 0 0-.75-.75Z\"]);\nexport const Desktop32Filled = /*#__PURE__*/createFluentIcon('Desktop32Filled', \"32\", [\"M2 6.25C2 4.45 3.46 3 5.25 3h21.5C28.55 3 30 4.46 30 6.25v15.5c0 1.8-1.46 3.25-3.25 3.25h-6.74v2h3a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h3v-2H5.25A3.25 3.25 0 0 1 2 21.75V6.25ZM14.01 25v2h4v-2h-4Z\"]);\nexport const Desktop32Regular = /*#__PURE__*/createFluentIcon('Desktop32Regular', \"32\", [\"M5.25 3A3.25 3.25 0 0 0 2 6.25v15.5C2 23.55 3.46 25 5.25 25h6.76v2h-3a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2h-3v-2h6.74c1.8 0 3.25-1.46 3.25-3.25V6.25C30 4.45 28.54 3 26.75 3H5.25Zm12.76 22v2h-4v-2h4ZM4 6.25C4 5.56 4.56 5 5.25 5h21.5c.69 0 1.25.56 1.25 1.25v15.5c0 .69-.56 1.25-1.25 1.25H5.25C4.56 23 4 22.44 4 21.75V6.25Z\"]);\nexport const DesktopArrowDown16Filled = /*#__PURE__*/createFluentIcon('DesktopArrowDown16Filled', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L11 6.29V3.5a.5.5 0 0 0-1 0v2.8L8.85 5.14a.5.5 0 1 0-.7.7l2 2ZM10.5 11c1.33 0 2.55-.47 3.5-1.26v.76c0 .83-.67 1.5-1.5 1.5H10v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H3.5A1.5 1.5 0 0 1 2 10.5v-7C2 2.67 2.67 2 3.5 2h2.76a5.5 5.5 0 0 0 4.24 9ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopArrowDown16Regular = /*#__PURE__*/createFluentIcon('DesktopArrowDown16Regular', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L11 6.29V3.5a.5.5 0 0 0-1 0v2.8L8.85 5.14a.5.5 0 1 0-.7.7l2 2ZM12 11a1 1 0 0 0 .89-.54c.4-.2.77-.44 1.11-.72V10a2 2 0 0 1-2 2h-2v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1-.5-.5c0-.28.23-.5.5-.5H6v-1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h2.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8Zm-3 1H7v1h2v-1Z\"]);\nexport const DesktopArrowDown20Filled = /*#__PURE__*/createFluentIcon('DesktopArrowDown20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 6.29V3.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H3.5A1.5 1.5 0 0 1 2 13.5v-10C2 2.67 2.67 2 3.5 2h6.76a5.5 5.5 0 0 0 4.24 9ZM12 15H8v2h4v-2Z\"]);\nexport const DesktopArrowDown20Regular = /*#__PURE__*/createFluentIcon('DesktopArrowDown20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 6.29V3.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2ZM17 13v-2.6c.36-.18.7-.4 1-.66V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 2H8v2h4v-2Z\"]);\nexport const DesktopArrowDown24Filled = /*#__PURE__*/createFluentIcon('DesktopArrowDown24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-5-3a.5.5 0 0 0-1 0v4.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L18 8.29V3.5Zm-.5 9.5c1.75 0 3.33-.69 4.5-1.8v4.55c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92a6.5 6.5 0 0 0 5.48 10ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopArrowDown24Regular = /*#__PURE__*/createFluentIcon('DesktopArrowDown24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-5-3a.5.5 0 0 0-1 0v4.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L18 8.29V3.5Zm2.5 12.25v-3.48a6.52 6.52 0 0 0 1.5-1.08v4.56c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92c-.3.46-.53.97-.7 1.5H4.24c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.74l.1.01h15.5c.38 0 .7-.28.74-.65v-.1ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopArrowRight16Filled = /*#__PURE__*/createFluentIcon('DesktopArrowRight16Filled', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 13 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L11.29 5H8.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM10.5 11c1.33 0 2.55-.47 3.5-1.26v.76c0 .83-.67 1.5-1.5 1.5H10v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H3.5A1.5 1.5 0 0 1 2 10.5v-7C2 2.67 2.67 2 3.5 2h2.76a5.5 5.5 0 0 0 4.24 9ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopArrowRight16Regular = /*#__PURE__*/createFluentIcon('DesktopArrowRight16Regular', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 13 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L11.29 5H8.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM10.5 11h1.49a1 1 0 0 0 .89-.54c.4-.2.77-.43 1.11-.71v.24a2 2 0 0 1-2 2h-2V13h1.5a.5.5 0 1 1 0 1H4.5a.5.5 0 1 1 0-1H6v-1H4a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2h2.26c-.25.3-.47.64-.66 1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6.5ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopArrowRight20Filled = /*#__PURE__*/createFluentIcon('DesktopArrowRight20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H3.5A1.5 1.5 0 0 1 2 13.5v-10C2 2.67 2.67 2 3.5 2h6.76a5.5 5.5 0 0 0 4.24 9ZM12 17v-2H8v2h4Z\"]);\nexport const DesktopArrowRight20Regular = /*#__PURE__*/createFluentIcon('DesktopArrowRight20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM17 13v-2.6c.36-.18.7-.4 1-.66V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 4v-2H8v2h4Z\"]);\nexport const DesktopArrowRight24Filled = /*#__PURE__*/createFluentIcon('DesktopArrowRight24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM14.5 6a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 6H14.5Zm3 7c1.75 0 3.33-.69 4.5-1.8v4.55c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92a6.5 6.5 0 0 0 5.48 10ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopArrowRight24Regular = /*#__PURE__*/createFluentIcon('DesktopArrowRight24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM14.5 6a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 6H14.5Zm6 9.75v-3.48a6.52 6.52 0 0 0 1.5-1.08v4.56c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92c-.3.46-.53.97-.7 1.5H4.24c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.75h15.6c.38 0 .7-.28.74-.65v-.1ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopCheckmark16Filled = /*#__PURE__*/createFluentIcon('DesktopCheckmark16Filled', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L9.5 6.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM10.5 11c1.33 0 2.55-.47 3.5-1.26v.76c0 .83-.67 1.5-1.5 1.5H10v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H3.5A1.5 1.5 0 0 1 2 10.5v-7C2 2.67 2.67 2 3.5 2h2.76a5.5 5.5 0 0 0 4.24 9ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopCheckmark16Regular = /*#__PURE__*/createFluentIcon('DesktopCheckmark16Regular', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L9.5 6.29l-.65-.64a.5.5 0 1 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM10.5 11H12a1 1 0 0 0 .89-.54c.4-.2.77-.44 1.11-.72V10a2 2 0 0 1-2 2h-2v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h2.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6.5ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopCheckmark20Filled = /*#__PURE__*/createFluentIcon('DesktopCheckmark20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L13.5 6.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H3.5A1.5 1.5 0 0 1 2 13.5v-10C2 2.67 2.67 2 3.5 2h6.76a5.5 5.5 0 0 0 4.24 9ZM12 15H8v2h4v-2Z\"]);\nexport const DesktopCheckmark20Regular = /*#__PURE__*/createFluentIcon('DesktopCheckmark20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85L13.5 6.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7ZM17 13v-2.6c.36-.18.7-.4 1-.66V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 2H8v2h4v-2Z\"]);\nexport const DesktopCheckmark24Filled = /*#__PURE__*/createFluentIcon('DesktopCheckmark24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L16.5 7.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7ZM17.5 13c1.75 0 3.33-.69 4.5-1.8v4.55c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92a6.5 6.5 0 0 0 5.48 10ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopCheckmark24Regular = /*#__PURE__*/createFluentIcon('DesktopCheckmark24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L16.5 7.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Zm-.35 11.6v-3.48a6.52 6.52 0 0 0 1.5-1.08v4.56c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92c-.3.46-.53.97-.7 1.5H4.24c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.74l.1.01h15.5c.38 0 .7-.28.74-.65v-.1ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopCursor16Filled = /*#__PURE__*/createFluentIcon('DesktopCursor16Filled', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v7c0 .83.67 1.5 1.5 1.5H6v1H4.5a.5.5 0 0 0 0 1H8v-1H7v-1h1V8.5a1.5 1.5 0 0 1 2.58-1.04l3.35 3.48c.05-.14.07-.29.07-.44v-7c0-.83-.67-1.5-1.5-1.5h-9Zm6.36 6.15A.5.5 0 0 0 9 8.5v6a.5.5 0 0 0 .9.3l1.38-1.91 2.4.55a.5.5 0 0 0 .47-.83L9.86 8.15Z\"]);\nexport const DesktopCursor16Regular = /*#__PURE__*/createFluentIcon('DesktopCursor16Regular', \"16\", [\"M4 2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2v1H4.5a.5.5 0 0 0 0 1H8v-1H7v-1h1v-1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.97l.82.86A2 2 0 0 0 14 10V4a2 2 0 0 0-2-2H4Zm5.86 6.15A.5.5 0 0 0 9 8.5v6a.5.5 0 0 0 .9.3l1.38-1.91 2.4.55a.5.5 0 0 0 .47-.83L9.86 8.15Z\"]);\nexport const DesktopCursor20Filled = /*#__PURE__*/createFluentIcon('DesktopCursor20Filled', \"20\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1H11v-1H8v-2h3v-4.5a1.5 1.5 0 0 1 2.56-1.07l4.4 4.37c.03-.1.04-.2.04-.3v-10c0-.83-.67-1.5-1.5-1.5h-13Zm9.36 8.14a.5.5 0 0 0-.86.36v8a.5.5 0 0 0 .9.3l2-2.65 3.5.78a.5.5 0 0 0 .45-.84l-6-5.95Z\"]);\nexport const DesktopCursor20Regular = /*#__PURE__*/createFluentIcon('DesktopCursor20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h3v2H5.5a.5.5 0 0 0 0 1H11v-1H8v-2h3v-1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8.84l.87.87A2 2 0 0 0 18 13V4a2 2 0 0 0-2-2H4Zm8.86 8.15a.5.5 0 0 0-.86.35v8a.5.5 0 0 0 .9.3l2-2.65 3.5.78a.5.5 0 0 0 .45-.84l-6-5.94Z\"]);\nexport const DesktopCursor24Filled = /*#__PURE__*/createFluentIcon('DesktopCursor24Filled', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v10.65c0 .37-.08.72-.24 1.03l-4.7-5.2A1.75 1.75 0 0 0 14 12.75V18h-4v2.5h4V22H6.75Zm8.74-9.95a.75.75 0 0 1 .82.2l6.37 7.06a.75.75 0 0 1-.74 1.23l-3.54-.88-2.03 3.01a.75.75 0 0 1-1.37-.42v-9.5c0-.31.2-.59.49-.7Z\"]);\nexport const DesktopCursor24Regular = /*#__PURE__*/createFluentIcon('DesktopCursor24Regular', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v10.65c0 .37-.08.72-.24 1.03L20.5 15.4V5.25c0-.38-.28-.7-.65-.74l-.1-.01H4.25c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.75H14V18h-4v2.5h4V22H6.75Zm8.74-9.95a.75.75 0 0 1 .82.2l6.37 7.06a.75.75 0 0 1-.74 1.23l-3.54-.88-2.03 3.01a.75.75 0 0 1-1.37-.42v-9.5c0-.31.2-.59.49-.7Z\"]);\nexport const DesktopCursor28Filled = /*#__PURE__*/createFluentIcon('DesktopCursor28Filled', \"28\", [\"M23.75 3C24.99 3 26 4 26 5.25v13.5c0 .67-.3 1.27-.76 1.69l-6.18-6.86A1.75 1.75 0 0 0 16 14.75V21H11.5v2.5H16V25H8.25a.75.75 0 0 1-.1-1.5H10V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5Zm-6.26 11.05a.75.75 0 0 1 .82.2l7.7 8.54a.75.75 0 0 1-.73 1.23l-4.39-1.09-2.52 3.74a.75.75 0 0 1-1.37-.42v-11.5c0-.31.2-.59.49-.7Z\"]);\nexport const DesktopCursor28Regular = /*#__PURE__*/createFluentIcon('DesktopCursor28Regular', \"28\", [\"M26 18.75c0 .67-.3 1.27-.76 1.69l-1-1.12a.75.75 0 0 0 .26-.57V5.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75v13.5c0 .42.34.75.75.75H16V21h-4.5v2.5H16V25H8.25a.75.75 0 0 1-.1-1.5H10V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5C24.99 3 26 4 26 5.25v13.5Zm-8.51-4.7a.75.75 0 0 1 .82.2l7.7 8.54a.75.75 0 0 1-.73 1.23l-4.39-1.09-2.52 3.74a.75.75 0 0 1-1.37-.42v-11.5c0-.31.2-.59.49-.7Z\"]);\nexport const DesktopEdit16Filled = /*#__PURE__*/createFluentIcon('DesktopEdit16Filled', \"16\", [\"m6.98 6.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64L9.62 9.02a2.2 2.2 0 0 1-1.02.58l-1.5.37A.89.89 0 0 1 6.04 8.9l.37-1.5c.1-.39.3-.74.58-1.02Zm-.7-.71L9.93 2H3.5C2.67 2 2 2.67 2 3.5v7c0 .83.67 1.5 1.5 1.5H6v1H4.5a.5.5 0 0 0 0 1h7a.5.5 0 1 0 0-1H10v-1h2.5c.83 0 1.5-.67 1.5-1.5V6.06l-3.67 3.67c-.4.4-.92.7-1.48.84l-1.5.37a1.89 1.89 0 0 1-2.3-2.29l.38-1.5a3.2 3.2 0 0 1 .84-1.48ZM9 12v1H7v-1h2Z\"]);\nexport const DesktopEdit16Regular = /*#__PURE__*/createFluentIcon('DesktopEdit16Regular', \"16\", [\"m6.98 6.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64L9.62 9.02a2.2 2.2 0 0 1-1.02.58l-1.5.37A.89.89 0 0 1 6.04 8.9l.37-1.5c.1-.39.3-.74.58-1.02ZM4 11h8a1 1 0 0 0 1-1V7.06l1-1V10a2 2 0 0 1-2 2h-2v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h5.94l-1 1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1Zm5 1H7v1h2v-1Z\"]);\nexport const DesktopEdit20Filled = /*#__PURE__*/createFluentIcon('DesktopEdit20Filled', \"20\", [\"m10.98 6.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Zm-.7-.71L13.93 2H3.5C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3.5c.83 0 1.5-.67 1.5-1.5V6.06l-3.67 3.67c-.4.4-.92.7-1.48.84l-1.5.37a1.89 1.89 0 0 1-2.3-2.29l.38-1.5a3.2 3.2 0 0 1 .84-1.48ZM12 15v2H8v-2h4Z\"]);\nexport const DesktopEdit20Regular = /*#__PURE__*/createFluentIcon('DesktopEdit20Regular', \"20\", [\"m10.98 6.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02ZM17 13V7.06l1-1V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h9.94l-1 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 2H8v2h4v-2Z\"]);\nexport const DesktopEdit24Filled = /*#__PURE__*/createFluentIcon('DesktopEdit24Filled', \"24\", [\"m19.1 1.67-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Zm-6.61 5.2L16.36 3H4.1A2.25 2.25 0 0 0 2 5.25v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25v-9.1l-4.86 4.86c-.48.47-1.07.8-1.72.97l-1.83.46c-1.52.38-2.9-1-2.53-2.53l.46-1.83c.16-.65.5-1.24.97-1.72ZM13.99 18v2.5h-4V18h4Z\"]);\nexport const DesktopEdit24Regular = /*#__PURE__*/createFluentIcon('DesktopEdit24Regular', \"24\", [\"m19.1 1.67-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24ZM4.25 3h12.1l-1.5 1.5H4.26c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.74l.1.01h15.5c.38 0 .7-.28.74-.65V8.15l1.5-1.5v9.1c0 1.2-.92 2.17-2.09 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h.15ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopFlow20Filled = /*#__PURE__*/createFluentIcon('DesktopFlow20Filled', \"20\", [\"M14 2.5c0-.18.03-.34.09-.5H3.5C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3.5c.83 0 1.5-.67 1.5-1.5V7h-2.5a1.5 1.5 0 0 1-1.1-.47l-.25.76A2.5 2.5 0 0 1 12 9v.51c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 6 9.5v-3C6 5.67 6.67 5 7.5 5h3c.43 0 .82.18 1.1.47l.25-.76A2.5 2.5 0 0 1 14 3V2.5ZM12 15v2H8v-2h4Zm3.5-13a.5.5 0 0 0-.5.5V4h-.78a1.5 1.5 0 0 0-1.42 1.03l-.55 1.63a.5.5 0 0 1-.47.34H11v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5V8h.78a1.5 1.5 0 0 0 1.42-1.03l.55-1.63a.5.5 0 0 1 .47-.34H15v.5c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Z\"]);\nexport const DesktopFlow20Regular = /*#__PURE__*/createFluentIcon('DesktopFlow20Regular', \"20\", [\"M14.09 2H4a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h3v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V7h-1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10v-.5c0-.18.03-.34.09-.5ZM12 17H8v-2h4v2Zm3-14.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V5h-.78a.5.5 0 0 0-.47.34l-.55 1.63A1.5 1.5 0 0 1 11.78 8H11v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5V7h.78a.5.5 0 0 0 .47-.34l.55-1.63A1.5 1.5 0 0 1 14.22 4H15V2.5ZM10 7H8v2h2V7Zm6-2h2V3h-2v2Z\"]);\nexport const DesktopFlow24Filled = /*#__PURE__*/createFluentIcon('DesktopFlow24Filled', \"24\", [\"M16.5 3.75c0-.27.06-.52.17-.75H4.1A2.25 2.25 0 0 0 2 5.26v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25V9.5h-3.75c-.42 0-.8-.15-1.1-.4l-.45 1.32c-.4 1.19-1.47 2-2.7 2.08v.75c0 .97-.78 1.75-1.75 1.75h-4c-.97 0-1.75-.78-1.75-1.75v-4c0-.97.78-1.75 1.75-1.75h4c.62 0 1.16.32 1.47.8l.58-1.72a3.04 3.04 0 0 1 2.2-2v-.83ZM14 18v2.5h-4V18h4Zm4.25-15a.75.75 0 0 0-.75.75V5.5h-.32c-.88 0-1.66.56-1.93 1.4l-.92 2.73a.54.54 0 0 1-.5.37H13v-.75a.75.75 0 0 0-.75-.75h-4a.75.75 0 0 0-.75.75v4c0 .41.34.75.75.75h4c.41 0 .75-.34.75-.75V11.5h.82c.88 0 1.66-.56 1.93-1.4l.92-2.73a.54.54 0 0 1 .5-.37h.33v.75c0 .41.34.75.75.75h4c.41 0 .75-.34.75-.75v-4a.75.75 0 0 0-.75-.75h-4Z\"]);\nexport const DesktopFlow24Regular = /*#__PURE__*/createFluentIcon('DesktopFlow24Regular', \"24\", [\"M16.67 3H4.1A2.25 2.25 0 0 0 2 5.26v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25V9.5h-1.5v6.35a.75.75 0 0 1-.75.65H4.15a.75.75 0 0 1-.65-.75V5.15a.75.75 0 0 1 .75-.65H16.5v-.75c0-.27.06-.52.17-.75ZM10 18h4v2.5h-4V18Zm7.5-14.25c0-.41.34-.75.75-.75h4c.41 0 .75.34.75.75v4c0 .41-.34.75-.75.75h-4a.75.75 0 0 1-.75-.75V7h-.32a.54.54 0 0 0-.51.37l-.92 2.74a2.04 2.04 0 0 1-1.93 1.39H13v1.75c0 .41-.34.75-.75.75h-4a.75.75 0 0 1-.75-.75v-4c0-.41.34-.75.75-.75h4c.41 0 .75.34.75.75V10h.82c.23 0 .44-.15.51-.37l.92-2.74a2.04 2.04 0 0 1 1.93-1.39h.32V3.75ZM19 6.27V7h2.5V4.5H19v1.73a1.07 1.07 0 0 1 0 .04ZM9 10v2.5h2.5V10H9Z\"]);\nexport const DesktopKeyboard16Filled = /*#__PURE__*/createFluentIcon('DesktopKeyboard16Filled', \"16\", [\"M3 1a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h1v1h-.5a.5.5 0 0 0 0 1H5V9.76A2.75 2.75 0 0 1 7.75 7H13V3a2 2 0 0 0-2-2H3Zm3 8.5C6 8.67 6.67 8 7.5 8h6c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 6 13.5v-4Zm2 4c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm.5-3.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DesktopKeyboard16Regular = /*#__PURE__*/createFluentIcon('DesktopKeyboard16Regular', \"16\", [\"M3 1a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h1v1h-.5a.5.5 0 0 0 0 1H5v-3H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v4h1V3a2 2 0 0 0-2-2H3Zm3 8.5C6 8.67 6.67 8 7.5 8h6c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 6 13.5v-4Zm2 4c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm.5-3.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DesktopKeyboard20Filled = /*#__PURE__*/createFluentIcon('DesktopKeyboard20Filled', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v7.1a2.75 2.75 0 0 0-.75-.1h-5.5A2.75 2.75 0 0 0 9 13.75v3.5c0 .26.04.51.1.75H6.5a.5.5 0 0 1 0-1H8v-2H4a2 2 0 0 1-2-2V4Zm9.75 8c-.97 0-1.75.78-1.75 1.75v3.5c0 .97.78 1.75 1.75 1.75h5.5c.97 0 1.75-.78 1.75-1.75v-3.5c0-.97-.78-1.75-1.75-1.75h-5.5Zm.25 5.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5-3.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Zm1.5 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm.5-1.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Zm1.5 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm.5-1.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z\"]);\nexport const DesktopKeyboard20Regular = /*#__PURE__*/createFluentIcon('DesktopKeyboard20Regular', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v7.1c-.24-.06-.49-.1-.75-.1H17V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h5v3.25c0 .26.04.51.1.75H6.5a.5.5 0 0 1 0-1H8v-2H4a2 2 0 0 1-2-2V4Zm9.75 8h5.5c.97 0 1.75.78 1.75 1.75v3.5c0 .97-.78 1.75-1.75 1.75h-5.5c-.97 0-1.75-.78-1.75-1.75v-3.5c0-.97.78-1.75 1.75-1.75Zm.25 5.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm.5-3.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm.5-1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DesktopKeyboard24Filled = /*#__PURE__*/createFluentIcon('DesktopKeyboard24Filled', \"24\", [\"M6.72 22h2.53c-.16-.38-.25-.8-.25-1.25v-5.5c0-1.8 1.46-3.25 3.25-3.25h8.5c.44 0 .86.09 1.25.25V5.1A2.25 2.25 0 0 0 19.74 3H4.1A2.25 2.25 0 0 0 2 5.26v10.66c.08 1.13 1 2.04 2.15 2.09H4h3.5v2.5H5.65a.75.75 0 0 0 .07 1.5h1ZM10 15.25c0-1.24 1-2.25 2.25-2.25h8.5c1.24 0 2.25 1 2.25 2.25v5.5c0 1.24-1 2.25-2.25 2.25h-8.5C11.01 23 10 22 10 20.75v-5.5Zm4 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm3.5 0a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm2.5.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM19.25 18a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-4.25.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-2 2c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75Z\"]);\nexport const DesktopKeyboard24Regular = /*#__PURE__*/createFluentIcon('DesktopKeyboard24Regular', \"24\", [\"M6.72 22h2.53c-.16-.38-.25-.8-.25-1.25V16.5H4.15a.75.75 0 0 1-.65-.75V5.15a.75.75 0 0 1 .75-.65h15.6c.37.06.65.37.65.75V12h.25c.44 0 .86.09 1.25.25V5.1A2.25 2.25 0 0 0 19.74 3H4.1A2.25 2.25 0 0 0 2 5.26v10.66c.08 1.13 1 2.04 2.15 2.09H4h3.5v2.5H5.65a.75.75 0 0 0 .07 1.5h1ZM10 15.25c0-1.24 1-2.25 2.25-2.25h8.5c1.24 0 2.25 1 2.25 2.25v5.5c0 1.24-1 2.25-2.25 2.25h-8.5C11.01 23 10 22 10 20.75v-5.5Zm4 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm3.5 0a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm2.5.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM19.25 18a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-4.25.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-2 2c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75Z\"]);\nexport const DesktopKeyboard28Filled = /*#__PURE__*/createFluentIcon('DesktopKeyboard28Filled', \"28\", [\"M11.07 25H7.72a.75.75 0 0 1-.07-1.5H9.5V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5C24.99 3 26 4 26 5.25v9.18a3.73 3.73 0 0 0-1.75-.43h-9.5A3.75 3.75 0 0 0 11 17.75v6.5c0 .26.03.5.07.75Zm3.68-10A2.75 2.75 0 0 0 12 17.75v6.5A2.75 2.75 0 0 0 14.75 27h9.5A2.75 2.75 0 0 0 27 24.25v-6.5A2.75 2.75 0 0 0 24.25 15h-9.5Zm.75 9.25c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm0-5.25a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DesktopKeyboard28Regular = /*#__PURE__*/createFluentIcon('DesktopKeyboard28Regular', \"28\", [\"M11.07 25H7.72a.75.75 0 0 1-.07-1.5H9.5V21H4.25C3.01 21 2 20 2 18.75V5.25C2 4.01 3 3 4.25 3h19.5C24.99 3 26 4 26 5.25v9.18a3.73 3.73 0 0 0-1.5-.42V5.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75v13.5c0 .42.34.75.75.75H11v4.75c0 .26.03.5.07.75Zm3.68-10A2.75 2.75 0 0 0 12 17.75v6.5A2.75 2.75 0 0 0 14.75 27h9.5A2.75 2.75 0 0 0 27 24.25v-6.5A2.75 2.75 0 0 0 24.25 15h-9.5Zm.75 9.25c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm0-5.25a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1-2a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DesktopMac16Filled = /*#__PURE__*/createFluentIcon('DesktopMac16Filled', \"16\", [\"M2.01 3.8 2 4v6c0 1.1.9 2 2 2h2v.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-.5a.5.5 0 0 1-.5-.5V12h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4a2 2 0 0 0-1.99 1.8ZM9 12v.5c0 .18.03.34.09.5H6.9c.06-.16.09-.32.09-.5V12h2Zm3-1H4a1 1 0 0 1-1-1h10a1 1 0 0 1-1 1Z\"]);\nexport const DesktopMac16Regular = /*#__PURE__*/createFluentIcon('DesktopMac16Regular', \"16\", [\"M2 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v.5c0 .28.22.5.5.5h.5a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1h.5a.5.5 0 0 0 .5-.5V12H4a2 2 0 0 1-2-2V4Zm1 6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1H3Zm10-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v5h10Zm-4 3.5V12H7v.5c0 .18-.03.34-.09.5H9.1a1.5 1.5 0 0 1-.09-.5Z\"]);\nexport const DesktopMac20Filled = /*#__PURE__*/createFluentIcon('DesktopMac20Filled', \"20\", [\"M4 2a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h4v1a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1H13a1 1 0 0 1-1-1v-1h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4ZM3 13v-1h14v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1Zm5.73 4A2 2 0 0 0 9 16v-1h2v1c0 .36.1.7.27 1H8.73Z\"]);\nexport const DesktopMac20Regular = /*#__PURE__*/createFluentIcon('DesktopMac20Regular', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-4v1a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1H7a1 1 0 0 0 1-1v-1H4a2 2 0 0 1-2-2V4Zm1 8v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1H3Zm14-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v7h14Zm-5.73 6a2 2 0 0 1-.27-1v-1H9v1a2 2 0 0 1-.27 1h2.54Z\"]);\nexport const DesktopMac24Filled = /*#__PURE__*/createFluentIcon('DesktopMac24Filled', \"24\", [\"M4.25 3C3.01 3 2 4 2 5.25v10.5C2 16.99 3 18 4.25 18H9.5v1.25c0 .69-.56 1.25-1.25 1.25h-.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-.5c-.69 0-1.25-.56-1.25-1.25V18h5.25c1.24 0 2.25-1 2.25-2.25V5.25C22 4.01 21 3 19.75 3H4.25ZM13 18v1.25c0 .45.1.88.3 1.25h-2.6c.2-.38.3-.8.3-1.25V18h2Zm-9.5-3.5h17v1.25c0 .41-.34.75-.75.75H4.25a.75.75 0 0 1-.75-.75V14.5Z\"]);\nexport const DesktopMac24Regular = /*#__PURE__*/createFluentIcon('DesktopMac24Regular', \"24\", [\"M4.25 3C3.01 3 2 4 2 5.25v10.5C2 16.99 3 18 4.25 18H9.5v1.25c0 .69-.56 1.25-1.25 1.25h-.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-.5c-.69 0-1.25-.56-1.25-1.25V18h5.25c1.24 0 2.25-1 2.25-2.25V5.25C22 4.01 21 3 19.75 3H4.25ZM13 18v1.25c0 .45.1.88.3 1.25h-2.6c.2-.38.3-.8.3-1.25V18h2ZM3.5 5.25c0-.41.34-.75.75-.75h15.5c.41 0 .75.34.75.75V13h-17V5.25Zm0 9.25h17v1.25c0 .41-.34.75-.75.75H4.25a.75.75 0 0 1-.75-.75V14.5Z\"]);\nexport const DesktopMac32Filled = /*#__PURE__*/createFluentIcon('DesktopMac32Filled', \"32\", [\"M4.02 7.6 4 8v12a4 4 0 0 0 4 4h4v1a1 1 0 0 1-1 1h-1a1 1 0 1 0 0 2h12a1 1 0 1 0 0-2h-1a1 1 0 0 1-1-1v-1h4a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4H8a4 4 0 0 0-3.98 3.6ZM18 24v1a3 3 0 0 0 .17 1h-4.34a3 3 0 0 0 .17-1v-1h4Zm6-2H8a2 2 0 0 1-2-2h20a2 2 0 0 1-2 2Z\"]);\nexport const DesktopMac32Regular = /*#__PURE__*/createFluentIcon('DesktopMac32Regular', \"32\", [\"M4 8a4 4 0 0 1 4-4h16a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-4v1a1 1 0 0 0 1 1h1a1 1 0 1 1 0 2H10a1 1 0 1 1 0-2h1a1 1 0 0 0 1-1v-1H8a4 4 0 0 1-4-4V8Zm14.17 18a3 3 0 0 1-.17-1v-1h-4v1a3 3 0 0 1-.17 1h4.34ZM24 22a2 2 0 0 0 2-2H6c0 1.1.9 2 2 2h16Zm2-14a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v10h20V8Z\"]);\nexport const DesktopPulse16Filled = /*#__PURE__*/createFluentIcon('DesktopPulse16Filled', \"16\", [\"M2 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v2h-2.07l-.59-1.17a1.5 1.5 0 0 0-2.68 0l-.5 1.01-.77-1.9a1.5 1.5 0 0 0-2.73-.11L3.57 6H2V4Zm9 5h3v1a2 2 0 0 1-2 2h-2v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H4a2 2 0 0 1-2-2V9h2.5a1.5 1.5 0 0 0 1.34-.83v-.01l.77 1.9a1.5 1.5 0 0 0 2.73.11l.74-1.48c.26.2.58.31.92.31Zm-2 4v-1H7v1h2ZM6.46 4.32a.5.5 0 0 0-.9-.03L4.18 7H2.5a.5.5 0 0 0 0 1H4.5a.5.5 0 0 0 .45-.28l1-2 1.59 3.97a.5.5 0 0 0 .9.03L10 6.62l.55 1.1A.5.5 0 0 0 11 8h2.5a.5.5 0 0 0 0-1h-2.2l-.85-1.72a.5.5 0 0 0-.9 0l-1.5 3-1.59-3.97Z\"]);\nexport const DesktopPulse16Regular = /*#__PURE__*/createFluentIcon('DesktopPulse16Regular', \"16\", [\"M4.01 2a2 2 0 0 0-2 2v1.5h1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1.5H14V4a2 2 0 0 0-2-2H4.01Zm-2 8v-.75h1v.74a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-.74H14v.74a2 2 0 0 1-2 2h-2V13h1.5a.5.5 0 0 1 0 1H4.53a.5.5 0 0 1 0-1h1.5v-1h-2a2 2 0 0 1-2-2Zm7 2H7v1h2v-1ZM6.47 4.3a.5.5 0 0 0-.9-.04L4.2 7H2.5a.5.5 0 0 0 0 1H4.5a.5.5 0 0 0 .45-.28l1-2 1.58 3.96a.5.5 0 0 0 .91.04L10 6.62l.56 1.1A.5.5 0 0 0 11 8h2.5a.5.5 0 0 0 0-1h-2.19l-.86-1.73a.5.5 0 0 0-.9 0l-1.5 3-1.58-3.96Z\"]);\nexport const DesktopPulse20Filled = /*#__PURE__*/createFluentIcon('DesktopPulse20Filled', \"20\", [\"M2 4c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v4h-2.57l-1.09-2.17a1.5 1.5 0 0 0-2.68 0L10.32 8.5 8.93 4.05a1.5 1.5 0 0 0-2.82-.1L4.49 8H2V4Zm12.5 7H18v2a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2v-2h3.5a1.5 1.5 0 0 0 1.4-.94l.43-1.09 1.24 3.98a1.5 1.5 0 0 0 2.77.22L13 9.85l.16.32c.25.5.77.83 1.34.83ZM12 17v-2H8v2h4ZM7.98 4.35a.5.5 0 0 0-.94-.04L5.16 9H2.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .47-.31l1.47-3.7 2.08 6.66a.5.5 0 0 0 .93.07L13 7.62l1.05 2.1a.5.5 0 0 0 .45.28h3a.5.5 0 0 0 0-1h-2.7l-1.35-2.72a.5.5 0 0 0-.9 0l-2.44 4.89-2.13-6.82Z\"]);\nexport const DesktopPulse20Regular = /*#__PURE__*/createFluentIcon('DesktopPulse20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v4h1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v4h1V4a2 2 0 0 0-2-2H4ZM2 13v-2h1v2a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2h1v2a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2Zm10 2H8v2h4v-2ZM7.98 4.35a.5.5 0 0 0-.94-.04L5.16 9H2.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .46-.31l1.48-3.7 2.08 6.66a.5.5 0 0 0 .93.07L13 7.62l1.05 2.1a.5.5 0 0 0 .45.28h3a.5.5 0 1 0 0-1h-2.7l-1.35-2.72a.5.5 0 0 0-.9 0l-2.44 4.89-2.13-6.82Z\"]);\nexport const DesktopPulse24Filled = /*#__PURE__*/createFluentIcon('DesktopPulse24Filled', \"24\", [\"M6 21.25c0 .41.34.75.75.75h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25V13h-5c-.57 0-1.1-.28-1.43-.75l-.2-.27-1.86 3.16a1.75 1.75 0 0 1-3.13-.24L8.9 11.23l-.33.74c-.29.63-.91 1.03-1.6 1.03H2v2.91A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0-.65.75ZM10 18h4v2.5h-4V18ZM22 5.25V9.5H17.9l-1.23-1.75a1.75 1.75 0 0 0-2.94.11L12.3 10.3l-1.68-4.2a1.75 1.75 0 0 0-3.22-.07L5.85 9.5H2V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v.15ZM9.7 6.47a.75.75 0 0 0-1.38-.03L6.49 10.5H2.75a.75.75 0 0 0 0 1.5h4.23c.3 0 .56-.17.68-.44l1.3-2.89 2.34 5.86a.75.75 0 0 0 1.35.1l2.65-4.5 1.09 1.55c.14.2.37.32.61.32h4.25a.75.75 0 0 0 0-1.5h-3.86l-1.53-2.18a.75.75 0 0 0-1.26.05l-2.47 4.19L9.7 6.47Z\"]);\nexport const DesktopPulse24Regular = /*#__PURE__*/createFluentIcon('DesktopPulse24Regular', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V13h1.5v2.75c0 .38.28.7.65.75h15.6c.38 0 .7-.28.74-.65V13H22v2.75c0 1.2-.92 2.17-2.09 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75ZM14 18h-4v2.5h4V18ZM3.5 9.5H2V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v4.4h-1.5V5.25c0-.38-.27-.7-.64-.74l-.1-.01H4.25c-.38 0-.7.28-.74.65l-.01.1V9.5Zm6.2-3.03a.75.75 0 0 0-1.38-.03L6.49 10.5H2.75a.75.75 0 0 0 0 1.5h4.23c.3 0 .56-.17.68-.44l1.3-2.89 2.34 5.86a.75.75 0 0 0 1.35.1l2.65-4.5 1.09 1.55c.14.2.37.32.61.32h4.25a.75.75 0 0 0 0-1.5h-3.86l-1.53-2.18a.75.75 0 0 0-1.26.05l-2.47 4.19L9.7 6.47Z\"]);\nexport const DesktopPulse28Filled = /*#__PURE__*/createFluentIcon('DesktopPulse28Filled', \"28\", [\"M8.25 25h11.6a.75.75 0 0 0 .65-.75v-.1a.75.75 0 0 0-.75-.65H18V21h5.75c1.24 0 2.25-1 2.25-2.25V14.5h-6.25c-.66 0-1.27-.37-1.57-.97l-.13-.26-1.96 4.22a1.75 1.75 0 0 1-3.21-.09l-2.45-6.1-.93 2.15c-.28.64-.9 1.05-1.6 1.05H2v4.25C2 20 3 21 4.25 21H10v2.5H8.15a.75.75 0 0 0 .1 1.5Zm3.25-4h5v2.5h-5V21Zm9.33-10H26V5.25C26 4.01 25 3 23.75 3H4.25C3.01 3 2 4 2 5.25V11h4.75l2.14-4.95a1.75 1.75 0 0 1 3.23.05l2.5 6.25 1.8-3.84a1.75 1.75 0 0 1 3.15-.04L20.83 11ZM11.2 6.47a.75.75 0 0 0-1.39-.02L7.41 12H2.74a.75.75 0 0 0 0 1.5h5.14c.3 0 .57-.18.7-.45l1.88-4.35 3.33 8.33a.75.75 0 0 0 1.38.04l2.84-6.1 1.06 2.12c.13.25.39.41.67.41h5.5a.75.75 0 0 0 0-1.5h-5.04l-1.54-3.09a.75.75 0 0 0-1.35.02l-2.77 5.93-3.35-8.39Z\"]);\nexport const DesktopPulse28Regular = /*#__PURE__*/createFluentIcon('DesktopPulse28Regular', \"28\", [\"M19.75 25H8.25a.75.75 0 0 1-.1-1.5H10V21H4.25C3.01 21 2 20 2 18.75V14.5h1.5v4.25c0 .42.34.75.75.75h19.5c.41 0 .75-.33.75-.75V14.5H26v4.25C26 20 25 21 23.75 21H18v2.5h1.75c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74l-.1.01Zm-3.25-4h-5v2.5h5V21ZM2 5.25V11h1.5V5.25c0-.41.34-.75.75-.75h19.5c.41 0 .75.34.75.75V11H26V5.25C26 4.01 25 3 23.75 3H4.25C3.01 3 2 4 2 5.25Zm9.2 1.22a.75.75 0 0 0-1.39-.02L7.41 12H2.74a.75.75 0 0 0 0 1.5h5.14c.3 0 .57-.18.7-.45l1.88-4.35 3.33 8.33a.75.75 0 0 0 1.38.04l2.84-6.1 1.06 2.12c.13.25.39.41.67.41h5.5a.75.75 0 0 0 0-1.5h-5.04l-1.54-3.08a.75.75 0 0 0-1.35.01l-2.77 5.93-3.35-8.39Z\"]);\nexport const DesktopPulse32Filled = /*#__PURE__*/createFluentIcon('DesktopPulse32Filled', \"32\", [\"M2 6.25C2 4.45 3.46 3 5.25 3h21.5C28.55 3 30 4.46 30 6.25v7.25h-5.79l-1.53-2.73a2.5 2.5 0 0 0-4.47.23l-.9 2.04-1.94-5.83a2.5 2.5 0 0 0-4.71-.09l-2.4 6.38H2V6.25ZM22.75 18.5H30v3.25c0 1.8-1.46 3.25-3.25 3.25h-6.74v2h3a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h3v-2H5.25A3.25 3.25 0 0 1 2 21.75V18.5h8a2.5 2.5 0 0 0 2.34-1.62l.52-1.39 1.77 5.3a2.5 2.5 0 0 0 4.66.21l1.5-3.44a2.5 2.5 0 0 0 1.96.94ZM14.01 25v2h4v-2h-4Zm-.06-17.32a1 1 0 0 0-1.89-.03L9.31 15H3a1 1 0 1 0 0 2h7a1 1 0 0 0 .94-.65l2-5.35 3.11 9.32a1 1 0 0 0 1.87.08l2.7-6.16 1.26 2.25a1 1 0 0 0 .87.51H29a1 1 0 1 0 0-2h-5.67l-1.96-3.49a1 1 0 0 0-1.79.09l-2.45 5.62-3.18-9.54Z\"]);\nexport const DesktopPulse32Regular = /*#__PURE__*/createFluentIcon('DesktopPulse32Regular', \"32\", [\"M5.25 3A3.25 3.25 0 0 0 2 6.25v7.25h2V6.25C4 5.56 4.56 5 5.25 5h21.5c.69 0 1.25.56 1.25 1.25v7.25h2V6.25C30 4.45 28.54 3 26.75 3H5.25ZM2 21.75V18.5h2v3.25c0 .69.56 1.25 1.25 1.25h21.5c.69 0 1.25-.56 1.25-1.25V18.5h2v3.25c0 1.8-1.46 3.25-3.25 3.25h-6.74v2h3a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h3v-2H5.25A3.25 3.25 0 0 1 2 21.75ZM18 25h-3.99v2h4v-2ZM13.96 7.68a1 1 0 0 0-1.89-.03L9.31 15H3a1 1 0 1 0 0 2h7a1 1 0 0 0 .94-.65l2-5.35 3.11 9.32a1 1 0 0 0 1.87.08l2.7-6.16 1.26 2.25a1 1 0 0 0 .87.51H29a1 1 0 1 0 0-2h-5.67l-1.96-3.49a1 1 0 0 0-1.79.09l-2.45 5.62-3.18-9.54Z\"]);\nexport const DesktopPulse48Filled = /*#__PURE__*/createFluentIcon('DesktopPulse48Filled', \"48\", [\"M8.25 5A4.25 4.25 0 0 0 4 9.25V19h7.53l3.16-8.84a3.25 3.25 0 0 1 6.15.1l3.72 11.6 3.5-7.48a3.25 3.25 0 0 1 5.93.1L35.9 19H44V9.25C44 6.9 42.1 5 39.75 5H8.25ZM4 32.75V25.5h9.82c1.38 0 2.6-.86 3.06-2.16l.7-1.96 3.33 10.36a3.25 3.25 0 0 0 6.04.38l3.9-8.38a3.25 3.25 0 0 0 2.9 1.76H44v7.25C44 35.1 42.1 37 39.75 37H31v3.5h2.75a1.25 1.25 0 1 1 0 2.5h-19.5a1.25 1.25 0 1 1 0-2.5H17V37H8.25A4.25 4.25 0 0 1 4 32.75ZM28.5 37h-9v3.5h9V37Zm-9.56-26.13a1.25 1.25 0 0 0-2.37-.04L12.94 21H5.25a1.25 1.25 0 1 0 0 2.5h8.57c.53 0 1-.33 1.18-.83l2.69-7.52 5.12 15.98a1.25 1.25 0 0 0 2.32.15l5.81-12.45 1.65 3.9c.2.47.65.77 1.15.77h9.01a1.25 1.25 0 1 0 0-2.5h-8.18l-2.42-5.74a1.25 1.25 0 0 0-2.28-.04l-5.65 12.11-5.28-16.46Z\"]);\nexport const DesktopPulse48Regular = /*#__PURE__*/createFluentIcon('DesktopPulse48Regular', \"48\", [\"M8.25 5A4.25 4.25 0 0 0 4 9.25v9.05l.25-.01H6.5V9.25c0-.97.78-1.75 1.75-1.75h31.5c.97 0 1.75.78 1.75 1.75v9.04H44V9.26C44 6.9 42.1 5 39.75 5H8.25ZM4 32.75v-6.97h2.5v6.97c0 .97.78 1.75 1.75 1.75h31.5c.97 0 1.75-.78 1.75-1.75v-6.96H44v6.96C44 35.1 42.1 37 39.75 37H31v3.5h2.75a1.25 1.25 0 1 1 0 2.5h-19.5a1.25 1.25 0 1 1 0-2.5H17V37H8.25A4.25 4.25 0 0 1 4 32.75ZM28.5 37h-9v3.5h9V37Zm-9.56-26.13a1.25 1.25 0 0 0-2.37-.04L12.94 21H5.25a1.25 1.25 0 1 0 0 2.5h8.57c.53 0 1-.33 1.18-.83l2.69-7.52 5.12 15.98a1.25 1.25 0 0 0 2.32.15l5.81-12.45 1.65 3.9c.2.47.65.77 1.15.77h9.01a1.25 1.25 0 1 0 0-2.5h-8.18l-2.42-5.74a1.25 1.25 0 0 0-2.28-.04l-5.65 12.11-5.28-16.46Z\"]);\nexport const DesktopSignal20Filled = /*#__PURE__*/createFluentIcon('DesktopSignal20Filled', \"20\", [\"M12 1c-.18 0-.36 0-.54.02a.5.5 0 1 0 .08 1L12 2a6 6 0 0 1 5.98 6.46.5.5 0 1 0 1 .08L19 8a7 7 0 0 0-7-7Zm0 2c-.19 0-.37.01-.55.03a.5.5 0 0 0 .1 1L12 4a4 4 0 0 1 3.98 4.45.5.5 0 1 0 .99.1A5 5 0 0 0 12 3Zm0 2c-.2 0-.4.02-.6.06a.5.5 0 0 0 .2.98A2.01 2.01 0 0 1 14 8c0 .14-.01.27-.04.4a.5.5 0 0 0 .98.2A3.01 3.01 0 0 0 12 5Zm-1.92-3H3.5C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 1 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3.5c.83 0 1.5-.67 1.5-1.5V9.92a1.5 1.5 0 0 1-.52-.3 1.5 1.5 0 0 1-2.02-.01 1.5 1.5 0 0 1-2.13-.11 2 2 0 0 1-2.82-2.82 1.5 1.5 0 0 1-.12-2.14 1.5 1.5 0 0 1 0-2.02 1.5 1.5 0 0 1-.31-.52ZM12 15v2H8v-2h4Zm1-7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DesktopSignal20Regular = /*#__PURE__*/createFluentIcon('DesktopSignal20Regular', \"20\", [\"M12 1c-.18 0-.36 0-.54.02a.5.5 0 1 0 .08 1L12 2a6 6 0 0 1 5.98 6.46.5.5 0 1 0 1 .08L19 8a7 7 0 0 0-7-7Zm0 2c-.19 0-.37.01-.55.03a.5.5 0 0 0 .1 1L12 4a4 4 0 0 1 3.98 4.45.5.5 0 1 0 .99.1A5 5 0 0 0 12 3Zm0 2c-.2 0-.4.02-.6.06a.5.5 0 0 0 .2.98A2.01 2.01 0 0 1 14 8c0 .14-.01.27-.04.4a.5.5 0 0 0 .98.2A3.01 3.01 0 0 0 12 5Zm-1.92-3H4a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h3v2H5.5a.5.5 0 1 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3a2 2 0 0 0 2-2V9.92a1.5 1.5 0 0 1-.52-.3c-.14.12-.3.22-.48.28V13a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h6.1c.06-.18.16-.34.29-.48a1.5 1.5 0 0 1-.31-.52ZM12 15v2H8v-2h4Zm1-7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DesktopSignal24Filled = /*#__PURE__*/createFluentIcon('DesktopSignal24Filled', \"24\", [\"M15 1.5c-.18 0-.37 0-.55.02a.75.75 0 0 0 .1 1.5C14.7 3 14.85 3 15 3a7 7 0 0 1 6.99 7.45.75.75 0 0 0 1.5.1l.01-.55c0-4.7-3.8-8.5-8.5-8.5ZM15 4c-.2 0-.38 0-.57.03a.75.75 0 0 0 .14 1.49L15 5.5a4.5 4.5 0 0 1 4.48 4.93.75.75 0 0 0 1.5.14L21 10a6 6 0 0 0-6-6Zm0 2.5c-.22 0-.43.02-.64.06a.75.75 0 0 0 .28 1.47 2 2 0 0 1 2.33 2.33.75.75 0 0 0 1.47.28A3.51 3.51 0 0 0 15 6.5ZM12.91 3H4.1A2.25 2.25 0 0 0 2 5.26v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25V12.1c-.2-.1-.37-.22-.52-.37a1.75 1.75 0 0 1-2.51 0 1.75 1.75 0 0 1-2.68-.19 2 2 0 0 1-2.82-2.82 1.74 1.74 0 0 1-.18-2.68 1.74 1.74 0 0 1-.01-2.51A1.75 1.75 0 0 1 12.9 3ZM10 18h4v2.5h-4V18Zm6-8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DesktopSignal24Regular = /*#__PURE__*/createFluentIcon('DesktopSignal24Regular', \"24\", [\"M15 1.5c-.18 0-.37 0-.55.02a.75.75 0 0 0 .1 1.5C14.7 3 14.85 3 15 3a7 7 0 0 1 6.99 7.45.75.75 0 0 0 1.5.1l.01-.55c0-4.7-3.8-8.5-8.5-8.5ZM15 4c-.2 0-.38 0-.57.03a.75.75 0 0 0 .14 1.49L15 5.5a4.5 4.5 0 0 1 4.48 4.93.75.75 0 0 0 1.5.14L21 10a6 6 0 0 0-6-6Zm0 2.5c-.22 0-.43.02-.64.06a.75.75 0 0 0 .28 1.47 2 2 0 0 1 2.33 2.33.75.75 0 0 0 1.47.28A3.51 3.51 0 0 0 15 6.5ZM12.91 3H4.1A2.25 2.25 0 0 0 2 5.26v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25V12.1c-.2-.1-.37-.22-.52-.37-.26.27-.6.45-.98.51v3.62a.75.75 0 0 1-.75.65H4.15a.75.75 0 0 1-.65-.75V5.15a.75.75 0 0 1 .75-.65h8.52c.06-.38.24-.72.5-.98a1.75 1.75 0 0 1-.36-.52ZM14 18v2.5h-4V18h4Zm2-8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DesktopSpeaker20Filled = /*#__PURE__*/createFluentIcon('DesktopSpeaker20Filled', \"20\", [\"M17.65 1.2c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-3.96-.16c.19.08.31.26.31.46v6a.5.5 0 0 1-.85.35L11.29 6h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm2.53 1.93c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53Zm.13 5.73a1.5 1.5 0 0 1-.53-.74 1.5 1.5 0 0 1-.87-.07 1.5 1.5 0 0 1-2.51.67L10.88 7h-.38A1.5 1.5 0 0 1 9 5.5v-2c0-.83.67-1.5 1.5-1.5h.38H3.5C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1H13v-2h3.5c.83 0 1.5-.67 1.5-1.5V8.8c-.5.29-1.15.27-1.65-.1ZM12 15v2H8v-2h4Z\"]);\nexport const DesktopSpeaker20Regular = /*#__PURE__*/createFluentIcon('DesktopSpeaker20Regular', \"20\", [\"M17.65 1.2c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-3.96-.16c.19.08.31.26.31.46v6a.5.5 0 0 1-.85.35L11.29 6h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm2.53 1.93c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53ZM17 13V8.98c.34.06.7 0 1-.18V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.88-.38c-.65 0-1.2.42-1.41 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 2H8v2h4v-2Z\"]);\nexport const DesktopSpeaker24Filled = /*#__PURE__*/createFluentIcon('DesktopSpeaker24Filled', \"24\", [\"M22.14 2.3a4.53 4.53 0 0 0-.91-1.13.75.75 0 0 0-.96 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 1 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Zm-2.27 1.1c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 5.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1ZM17 2.75a.75.75 0 0 0-1.31-.5L14.16 4h-1.41a.75.75 0 0 0-.75.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 8.25v-5.5ZM11 4a1 1 0 0 1 .98-1H4.1A2.25 2.25 0 0 0 2 5.26v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h4.4a2.25 2.25 0 0 0 2.1-2.25v-5.27l-.13.11a1.75 1.75 0 0 1-2.86-1.11c-.42.07-.87-.03-1.23-.27a1.76 1.76 0 0 1-2.8.33L13.52 8H12a1 1 0 0 1-1-1V4Zm3 14v2.5h-4V18h4Z\"]);\nexport const DesktopSpeaker24Regular = /*#__PURE__*/createFluentIcon('DesktopSpeaker24Regular', \"24\", [\"M22.14 2.3a4.53 4.53 0 0 0-.91-1.13.75.75 0 0 0-.96 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 1 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Zm-2.27 1.1c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 5.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1ZM17 2.75a.75.75 0 0 0-1.31-.5L14.16 4h-1.41a.75.75 0 0 0-.75.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 8.25v-5.5ZM4.25 3h7.73A1 1 0 0 0 11 4v.5H4.25c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.75h15.6c.38 0 .7-.28.74-.65V10.98a1.75 1.75 0 0 0 1.5-.5v5.27c0 1.2-.92 2.17-2.09 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopSpeakerOff20Filled = /*#__PURE__*/createFluentIcon('DesktopSpeakerOff20Filled', \"20\", [\"M13.7 1.04c.18.08.3.26.3.46v6a.5.5 0 0 1-.85.35L11.29 6h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm3.95.16c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-1.43 1.77c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53Zm.13 5.73a1.5 1.5 0 0 1-.53-.74 1.5 1.5 0 0 1-.87-.07 1.5 1.5 0 0 1-2.51.67L10.88 7h-.38A1.5 1.5 0 0 1 9 5.5v-2c0-.83.67-1.5 1.5-1.5h.38-6.76l12.9 12.9c.58-.2.98-.76.98-1.4V8.8c-.5.29-1.15.27-1.65-.1ZM2.15 2.85a.5.5 0 0 1 .7-.7l15 15a.5.5 0 0 1-.7.7L14.29 15H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H3.5A1.5 1.5 0 0 1 2 13.5v-10c0-.23.05-.45.15-.65ZM12 15H8v2h4v-2Z\"]);\nexport const DesktopSpeakerOff20Regular = /*#__PURE__*/createFluentIcon('DesktopSpeakerOff20Regular', \"20\", [\"M13.7 1.04c.18.08.3.26.3.46v6a.5.5 0 0 1-.85.35L11.29 6h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm3.95.16c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-1.43 1.77c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53ZM17 13V8.98c.34.06.7 0 1-.18V13a2 2 0 0 1-1.1 1.78l-.79-.79A1 1 0 0 0 17 13Zm-3.7 1L3.02 3.74A1 1 0 0 0 3 4v9a1 1 0 0 0 1 1h9.3Zm1 1H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 .28-1.02l-.13-.13a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7L14.29 15ZM4.11 2l1 1H9.1c.2-.58.76-1 1.41-1h.38-6.76ZM12 15H8v2h4v-2Z\"]);\nexport const DesktopSpeakerOff24Filled = /*#__PURE__*/createFluentIcon('DesktopSpeakerOff24Filled', \"24\", [\"m16.94 18 3.78 3.78a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06l.4.41c-.38.4-.62.95-.62 1.56v10.66A2.25 2.25 0 0 0 4.26 18H8.5v2.49H6.65a.75.75 0 0 0 .1 1.5h10.6a.75.75 0 0 0-.1-1.5H15.5V18h1.44ZM22 15.75c0 .83-.45 1.56-1.12 1.95L6.18 3h5.8A1 1 0 0 0 11 4v3a1 1 0 0 0 1 1h1.53l1.44 1.54c.86.91 2.27.62 2.8-.33.37.24.82.34 1.25.27a1.75 1.75 0 0 0 2.98 1v5.27Zm.14-13.45a4.53 4.53 0 0 0-.91-1.13.75.75 0 0 0-.96 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 1 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Zm-2.27 1.1c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 5.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1ZM17 2.75a.75.75 0 0 0-1.31-.5L14.16 4h-1.41a.75.75 0 0 0-.75.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 8.25v-5.5ZM14 18v2.5h-4V18h4Z\"]);\nexport const DesktopSpeakerOff24Regular = /*#__PURE__*/createFluentIcon('DesktopSpeakerOff24Regular', \"24\", [\"m2.63 3.69-.41-.41a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L16.94 18H15.5v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-.6.24-1.16.63-1.56ZM15.44 16.5 3.7 4.75c-.1.11-.16.25-.18.4l-.01.1v10.5c0 .38.28.7.65.75H15.45Zm5.44 1.2-1.2-1.2h.07c.38 0 .7-.28.74-.65V10.98a1.75 1.75 0 0 0 1.5-.5v5.27c0 .83-.44 1.56-1.11 1.95ZM6.18 3l1.5 1.5H11V4a1 1 0 0 1 .98-1h-5.8Zm15.96-.7a4.53 4.53 0 0 0-.91-1.13.75.75 0 0 0-.96 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 1 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Zm-2.27 1.1c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 5.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1ZM17 2.75a.75.75 0 0 0-1.31-.5L14.16 4h-1.41a.75.75 0 0 0-.75.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 8.25v-5.5ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopSync16Filled = /*#__PURE__*/createFluentIcon('DesktopSync16Filled', \"16\", [\"M14 9.74A5.5 5.5 0 0 1 6.26 2H3.5C2.67 2 2 2.67 2 3.5v7c0 .83.67 1.5 1.5 1.5H6v1H4.5a.5.5 0 0 0 0 1h7a.5.5 0 1 0 0-1H10v-1h2.5c.83 0 1.5-.67 1.5-1.5v-.76ZM9 13H7v-1h2v1Zm1.5-3a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9ZM12 3v.15a3 3 0 0 0-3.62.48.5.5 0 0 0 .7.7A2 2 0 0 1 11.48 4H11a.5.5 0 0 0 0 1h1.5a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-1 0Zm-1.55 5.25a3 3 0 0 0 2.17-.88.5.5 0 0 0-.7-.7A2 2 0 0 1 9.52 7H10a.5.5 0 0 0 0-1H8.5a.5.5 0 0 0-.5.5V8a.5.5 0 0 0 1 0v-.15a3 3 0 0 0 1.45.4Z\"]);\nexport const DesktopSync16Regular = /*#__PURE__*/createFluentIcon('DesktopSync16Regular', \"16\", [\"M6 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H11a.5.5 0 0 1 0-1h.47a1.98 1.98 0 0 0-1.72-.1 2 2 0 0 0-.66.44.5.5 0 0 1-.71-.71A3 3 0 0 1 12 3.15V3c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 9 7.85V8a.5.5 0 0 1-1 0V6.5c0-.28.22-.5.5-.5H10a.5.5 0 0 1 0 1h-.47a2 2 0 0 0 2.38-.34.5.5 0 1 1 .71.71 3 3 0 0 1-1 .66ZM10.5 11H12a1 1 0 0 0 .89-.54c.4-.2.77-.44 1.11-.72V10a2 2 0 0 1-2 2h-2v1h1.5a.5.5 0 1 1 0 1h-7a.5.5 0 0 1 0-1H6v-1H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h2.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6.5ZM9 12H7v1h2v-1Z\"]);\nexport const DesktopSync20Filled = /*#__PURE__*/createFluentIcon('DesktopSync20Filled', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.98 1.98 0 0 0-1.72-.1 2 2 0 0 0-.66.44.5.5 0 1 1-.71-.71A3 3 0 0 1 16 3.15V3c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 13 7.85V8a.5.5 0 0 1-1 0V6.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.98 1.98 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 1 1 .71.71 3 3 0 0 1-1 .66ZM14.5 11c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H13v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H3.5A1.5 1.5 0 0 1 2 13.5v-10C2 2.67 2.67 2 3.5 2h6.76a5.5 5.5 0 0 0 4.24 9ZM12 15H8v2h4v-2Z\"]);\nexport const DesktopSync20Regular = /*#__PURE__*/createFluentIcon('DesktopSync20Regular', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.98 1.98 0 0 0-1.72-.1 2 2 0 0 0-.66.44.5.5 0 1 1-.71-.71A3 3 0 0 1 16 3.15V3c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 13 7.85V8a.5.5 0 0 1-1 0V6.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.98 1.98 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 1 1 .71.71 3 3 0 0 1-1 .66ZM17 13v-2.6c.36-.18.7-.4 1-.66V13a2 2 0 0 1-2 2h-3v2h1.5a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1H7v-2H4a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.26c-.26.3-.48.64-.66 1H4a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1Zm-5 2H8v2h4v-2Z\"]);\nexport const DesktopSync24Filled = /*#__PURE__*/createFluentIcon('DesktopSync24Filled', \"24\", [\"M12 6.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0ZM20.5 3c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.04.5.5 0 0 1-.8-.59 3.5 3.5 0 0 1 5.33-.4V3.5c0-.28.22-.5.5-.5ZM15 8.95v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 1 1 .77.65 3.5 3.5 0 0 1-5.18.19ZM17.5 13c1.75 0 3.33-.69 4.5-1.8v4.55c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92a6.5 6.5 0 0 0 5.48 10ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopSync24Regular = /*#__PURE__*/createFluentIcon('DesktopSync24Regular', \"24\", [\"M12 6.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0ZM20.5 3c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.04.5.5 0 0 1-.8-.59 3.5 3.5 0 0 1 5.33-.4V3.5c0-.28.22-.5.5-.5ZM15 8.95v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 1 1 .77.65 3.5 3.5 0 0 1-5.18.19Zm5.5 6.8v-3.48a6.52 6.52 0 0 0 1.5-1.08v4.56c0 1.2-.93 2.17-2.1 2.25h-4.4v2.5h1.75a.75.75 0 0 1 .1 1.5H6.75a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.25h7.92c-.3.46-.53.97-.7 1.5H4.24c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.74l.1.01h15.5c.38 0 .7-.28.74-.65v-.1ZM14 18h-4v2.5h4V18Z\"]);\nexport const DesktopToolbox20Filled = /*#__PURE__*/createFluentIcon('DesktopToolbox20Filled', \"20\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v10c0 .83.67 1.5 1.5 1.5H7v2H5.5a.5.5 0 0 0 0 1h3.55a2.51 2.51 0 0 1-.05-.5V17H8v-2h1v-1.5a2.5 2.5 0 0 1 2.04-2.46A2.5 2.5 0 0 1 13.5 9h2a2.5 2.5 0 0 1 2.46 2.04l.04.01V3.5c0-.83-.67-1.5-1.5-1.5h-13ZM12 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const DesktopToolbox20Regular = /*#__PURE__*/createFluentIcon('DesktopToolbox20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h3v2H5.5a.5.5 0 0 0 0 1h3.55a2.51 2.51 0 0 1-.05-.5V17H8v-2h1v-1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v5.5c.5.37.84.91.96 1.54l.04.01V4a2 2 0 0 0-2-2H4Zm8 10v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const DesktopToolbox24Filled = /*#__PURE__*/createFluentIcon('DesktopToolbox24Filled', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v8.82a2.75 2.75 0 0 0-2.74-2.67h-3.5A2.75 2.75 0 0 0 13 14v.05a2.5 2.5 0 0 0-2 2.45V18h-1v2.5h1v1c0 .17.02.34.05.5h-4.3ZM14 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H23v-1.5c0-.83-.67-1.5-1.5-1.5H21v-1c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM12 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H23v2c0 .83-.67 1.5-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5Z\"]);\nexport const DesktopToolbox24Regular = /*#__PURE__*/createFluentIcon('DesktopToolbox24Regular', \"24\", [\"M6.75 22a.75.75 0 0 1-.1-1.5H8.5V18H4.25c-1.2 0-2.17-.92-2.24-2.1L2 15.76V5.25c0-1.2.93-2.17 2.1-2.24L4.25 3h15.5c1.19 0 2.16.93 2.24 2.1v8.82a2.75 2.75 0 0 0-1.5-2.37v-6.3c0-.38-.27-.7-.64-.74l-.1-.01H4.25c-.38 0-.7.28-.74.65l-.01.1v10.5c0 .38.28.7.65.75H11V18h-1v2.5h1v1c0 .17.02.34.05.5h-4.3ZM14 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H23v-1.5c0-.83-.67-1.5-1.5-1.5H21v-1c0-.97-.78-1.75-1.75-1.75h-3.5c-.97 0-1.75.78-1.75 1.75v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM12 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H23v2c0 .83-.67 1.5-1.5 1.5h-8a1.5 1.5 0 0 1-1.5-1.5Z\"]);\nexport const DesktopTower20Filled = /*#__PURE__*/createFluentIcon('DesktopTower20Filled', \"20\", [\"M4 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h2.09a1.5 1.5 0 0 1 1.41-2H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h3a2 2 0 0 0-2-2H4Zm3 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2v2H7.5a.5.5 0 0 0 0 1h8a.5.5 0 0 0 0-1H14v-2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7Zm6 12h-3v-2h3v2Z\"]);\nexport const DesktopTower20Regular = /*#__PURE__*/createFluentIcon('DesktopTower20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h2.09a1.5 1.5 0 0 1 0-1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H4Zm1 5c0-1.1.9-2 2-2h9a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2v2h1.5a.5.5 0 0 1 0 1h-8a.5.5 0 0 1 0-1H9v-2H7a2 2 0 0 1-2-2V7Zm5 10h3v-2h-3v2Zm6-3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h9Z\"]);\nexport const DesktopTower24Filled = /*#__PURE__*/createFluentIcon('DesktopTower24Filled', \"24\", [\"M2 4.25C2 3.01 3 2 4.25 2h5.5C10.99 2 12 3 12 4.25V6H9.25A3.25 3.25 0 0 0 6 9.25v6.5C6 17.55 7.46 19 9.25 19h1.25v.5h-.25A1.75 1.75 0 0 0 8.67 22H4.25C3.01 22 2 21 2 19.75V4.25ZM9.25 7C8.01 7 7 8 7 9.25v6.5C7 16.99 8 18 9.25 18h2.25v2.5h-1.25a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5H17.5V18h2.25c1.24 0 2.25-1 2.25-2.25v-6.5C22 8.01 21 7 19.75 7H9.25ZM16 18v2.5h-3V18h3Z\"]);\nexport const DesktopTower24Regular = /*#__PURE__*/createFluentIcon('DesktopTower24Regular', \"24\", [\"M4.25 2C3.01 2 2 3 2 4.25v15.5C2 20.99 3 22 4.25 22h4.42a1.74 1.74 0 0 1 0-1.5H4.25a.75.75 0 0 1-.75-.75V4.25c0-.41.34-.75.75-.75h5.5c.41 0 .75.34.75.75V6H12V4.25C12 3.01 11 2 9.75 2h-5.5ZM7 9.25C7 8.01 8 7 9.25 7h10.5C20.99 7 22 8 22 9.25v6.5c0 1.24-1 2.25-2.25 2.25H17.5v2.5h1.25a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h1.25V18H9.25C8.01 18 7 17 7 15.75v-6.5Zm9 11.25V18h-3v2.5h3Zm3.75-4c.41 0 .75-.34.75-.75v-6.5a.75.75 0 0 0-.75-.75H9.25a.75.75 0 0 0-.75.75v6.5c0 .41.34.75.75.75h10.5Z\"]);\nexport const DeveloperBoard16Filled = /*#__PURE__*/createFluentIcon('DeveloperBoard16Filled', \"16\", [\"M14.5 8.5a.5.5 0 1 0 0-1H13V6h1.5a.5.5 0 1 0 0-1H13a2 2 0 0 0-2-2V1.5a.5.5 0 1 0-1 0V3H8.5V1.5a.5.5 0 1 0-1 0V3H6V1.5a.5.5 0 1 0-1 0V3a2 2 0 0 0-2 2H1.5a.5.5 0 1 0 0 1H3v1.5H1.5a.5.5 0 1 0 0 1H3V10H1.5a.5.5 0 1 0 0 1H3a2 2 0 0 0 2 2v1.5c0 .13.05.26.15.35A.5.5 0 0 0 6 14.5V13h1.5v1.5c0 .13.05.26.15.35a.5.5 0 0 0 .85-.35V13H10v1.5c0 .13.05.26.15.35a.5.5 0 0 0 .85-.35V13a2 2 0 0 0 2-2h1.5a.5.5 0 1 0 0-1H13V8.5h1.5Zm-6.5 2a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm0-4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const DeveloperBoard16Regular = /*#__PURE__*/createFluentIcon('DeveloperBoard16Regular', \"16\", [\"M14.5 8.5a.5.5 0 1 0 0-1H13V6h1.5a.5.5 0 1 0 0-1H13a2 2 0 0 0-2-2V1.5a.5.5 0 1 0-1 0V3H8.5V1.5a.5.5 0 1 0-1 0V3H6V1.5a.5.5 0 1 0-1 0V3a2 2 0 0 0-2 2H1.5a.5.5 0 1 0 0 1H3v1.5H1.5a.5.5 0 1 0 0 1H3V10H1.5a.5.5 0 1 0 0 1H3a2 2 0 0 0 2 2v1.5c0 .13.05.26.15.35A.5.5 0 0 0 6 14.5V13h1.5v1.5c0 .13.05.26.15.35a.5.5 0 0 0 .85-.35V13H10v1.5c0 .13.05.26.15.35a.5.5 0 0 0 .85-.35V13a2 2 0 0 0 2-2h1.5a.5.5 0 1 0 0-1H13V8.5h1.5ZM12 11a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6Zm-4-.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm0-4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const DeveloperBoard20Filled = /*#__PURE__*/createFluentIcon('DeveloperBoard20Filled', \"20\", [\"M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM8 2.5a.5.5 0 0 0-1 0V4h-.5A2.5 2.5 0 0 0 4 6.5V7H2.5a.5.5 0 0 0 0 1H4v1.5H2.5a.5.5 0 0 0 0 1H4V12H2.5a.5.5 0 0 0 0 1H4v.5A2.5 2.5 0 0 0 6.5 16H7v1.5a.5.5 0 0 0 1 0V16h1.5v1.5a.5.5 0 0 0 1 0V16H12v1.5a.5.5 0 0 0 1 0V16h.5a2.5 2.5 0 0 0 2.5-2.5V13h1.5a.5.5 0 0 0 0-1H16v-1.5h1.5a.5.5 0 0 0 0-1H16V8h1.5a.5.5 0 0 0 0-1H16v-.5A2.5 2.5 0 0 0 13.5 4H13V2.5a.5.5 0 0 0-1 0V4h-1.5V2.5a.5.5 0 0 0-1 0V4H8V2.5Zm5 7.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"]);\nexport const DeveloperBoard20Regular = /*#__PURE__*/createFluentIcon('DeveloperBoard20Regular', \"20\", [\"M10 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-2 3a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-.5-8c.28 0 .5.22.5.5V4h1.5V2.5a.5.5 0 0 1 1 0V4H12V2.5a.5.5 0 0 1 1 0V4h.5A2.5 2.5 0 0 1 16 6.5V7h1.5a.5.5 0 0 1 0 1H16v1.5h1.5a.5.5 0 0 1 0 1H16V12h1.5a.5.5 0 0 1 0 1H16v.5a2.5 2.5 0 0 1-2.5 2.5H13v1.5a.5.5 0 0 1-1 0V16h-1.5v1.5a.5.5 0 0 1-1 0V16H8v1.5a.5.5 0 0 1-1 0V16h-.5A2.5 2.5 0 0 1 4 13.5V13H2.5a.5.5 0 0 1 0-1H4v-1.5H2.5a.5.5 0 0 1 0-1H4V8H2.5a.5.5 0 0 1 0-1H4v-.5A2.5 2.5 0 0 1 6.5 4H7V2.5c0-.28.22-.5.5-.5ZM15 6.5c0-.83-.67-1.5-1.5-1.5h-7C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7Z\"]);\nexport const DeveloperBoard24Filled = /*#__PURE__*/createFluentIcon('DeveloperBoard24Filled', \"24\", [\"M15.25 2c.38 0 .7.28.74.65l.01.1v2.33A3.75 3.75 0 0 1 18.93 8h2.32a.75.75 0 0 1 .1 1.5H19v1.75h2.25c.38 0 .7.29.74.65l.01.1c0 .38-.28.7-.65.75H19v1.75h2.25c.38 0 .7.29.74.65l.01.1c0 .38-.28.7-.65.75h-2.43A3.75 3.75 0 0 1 16 18.92v2.33a.75.75 0 0 1-1.5.1V19h-1.75v2.25c0 .38-.28.7-.65.74L12 22a.75.75 0 0 1-.74-.65l-.01-.1V19H9.5v2.25c0 .38-.28.7-.65.74l-.1.01a.75.75 0 0 1-.74-.65l-.01-.1v-2.32A3.75 3.75 0 0 1 5.08 16H2.75a.75.75 0 0 1-.1-1.5H5v-1.75H2.75a.75.75 0 0 1-.74-.65L2 12c0-.38.28-.7.65-.74l.1-.01H5V9.5H2.75a.75.75 0 0 1-.74-.65L2 8.75c0-.38.28-.7.65-.74l.1-.01h2.33A3.75 3.75 0 0 1 8 5.07V2.75a.75.75 0 0 1 1.5-.1V5h1.75V2.75c0-.38.28-.7.65-.74L12 2c.38 0 .7.28.74.65l.01.1V5h1.75V2.75c0-.35.23-.64.55-.72l.1-.02.1-.01ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm0 1.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const DeveloperBoard24Regular = /*#__PURE__*/createFluentIcon('DeveloperBoard24Regular', \"24\", [\"M15.25 2c.38 0 .7.28.74.65l.01.1v2.33A3.75 3.75 0 0 1 18.93 8h2.32a.75.75 0 0 1 .1 1.5H19v1.75h2.25c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74l-.1.01H19v1.75h2.25c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74l-.1.01h-2.33A3.75 3.75 0 0 1 16 18.92v2.33a.75.75 0 0 1-1.5.1V19h-1.75v2.25c0 .38-.28.7-.65.74L12 22a.75.75 0 0 1-.74-.65l-.01-.1V19H9.5v2.25c0 .38-.28.7-.65.74l-.1.01a.75.75 0 0 1-.74-.65l-.01-.1v-2.32A3.75 3.75 0 0 1 5.08 16H2.75a.75.75 0 0 1-.1-1.5H5v-1.75H2.75a.75.75 0 0 1-.74-.65L2 12c0-.38.28-.7.65-.74l.1-.01H5V9.5H2.75a.75.75 0 0 1-.74-.65L2 8.75c0-.38.28-.7.65-.74l.1-.01h2.33A3.75 3.75 0 0 1 8 5.07V2.75a.75.75 0 0 1 1.5-.1V5h1.75V2.75c0-.38.28-.7.65-.74L12 2c.38 0 .7.28.74.65l.01.1V5h1.75V2.75c0-.35.23-.64.55-.72l.1-.02.1-.01Zm0 4.5h-6.5c-1.24 0-2.25 1-2.25 2.25v6.5c0 1.24 1 2.25 2.25 2.25h6.5c1.24 0 2.25-1 2.25-2.25v-6.5c0-1.24-1-2.25-2.25-2.25ZM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const DeveloperBoardLightning20Filled = /*#__PURE__*/createFluentIcon('DeveloperBoardLightning20Filled', \"20\", [\"M8 2.5a.5.5 0 0 0-1 0V4h-.5A2.5 2.5 0 0 0 4 6.5V7H2.5a.5.5 0 0 0 0 1H4v1.5H2.5a.5.5 0 0 0 0 1H4V12H2.5a.5.5 0 0 0 0 1H4v.5A2.5 2.5 0 0 0 6.5 16H7v1.5a.5.5 0 0 0 1 0V16h1.5v1.5a.5.5 0 0 0 1 0V16H12v1.5a.5.5 0 0 0 1 0V16h.5a2.5 2.5 0 0 0 2.5-2.5V13h1.5a.5.5 0 0 0 0-1H16v-1.5h1.5a.5.5 0 0 0 0-1H16V8h1.5a.5.5 0 0 0 0-1H16v-.5A2.5 2.5 0 0 0 13.5 4H13V2.5a.5.5 0 0 0-1 0V4h-1.5V2.5a.5.5 0 0 0-1 0V4H8V2.5Zm2.99 5.04L10.57 9h1.53c.34 0 .52.4.3.66l-2.65 3.19c-.3.35-.86.05-.73-.4L9.46 11H7.9a.4.4 0 0 1-.3-.66l2.66-3.19c.3-.34.85-.05.73.39Z\"]);\nexport const DeveloperBoardLightning20Regular = /*#__PURE__*/createFluentIcon('DeveloperBoardLightning20Regular', \"20\", [\"M10.99 7.54 10.57 9h1.53c.34 0 .52.4.3.66l-2.65 3.19c-.3.35-.86.05-.73-.4L9.46 11H7.9a.4.4 0 0 1-.3-.66l2.66-3.19c.3-.34.85-.05.73.39ZM8 2.5a.5.5 0 0 0-1 0V4h-.5A2.5 2.5 0 0 0 4 6.5V7H2.5a.5.5 0 0 0 0 1H4v1.5H2.5a.5.5 0 0 0 0 1H4V12H2.5a.5.5 0 0 0 0 1H4v.5A2.5 2.5 0 0 0 6.5 16H7v1.5a.5.5 0 0 0 1 0V16h1.5v1.5a.5.5 0 0 0 1 0V16H12v1.5a.5.5 0 0 0 1 0V16h.5a2.5 2.5 0 0 0 2.5-2.5V13h1.5a.5.5 0 0 0 0-1H16v-1.5h1.5a.5.5 0 0 0 0-1H16V8h1.5a.5.5 0 0 0 0-1H16v-.5A2.5 2.5 0 0 0 13.5 4H13V2.5a.5.5 0 0 0-1 0V4h-1.5V2.5a.5.5 0 0 0-1 0V4H8V2.5ZM13.5 5c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 13.5v-7C5 5.67 5.67 5 6.5 5h7Z\"]);\nexport const DeveloperBoardLightningToolbox20Filled = /*#__PURE__*/createFluentIcon('DeveloperBoardLightningToolbox20Filled', \"20\", [\"M8 2.5a.5.5 0 0 0-1 0V4h-.5A2.5 2.5 0 0 0 4 6.5V7H2.5a.5.5 0 0 0 0 1H4v1.5H2.5a.5.5 0 0 0 0 1H4V12H2.5a.5.5 0 0 0 0 1H4v.5A2.5 2.5 0 0 0 6.5 16H7v1.5a.5.5 0 0 0 1 0V16h1v-2.5c0-.23.03-.45.09-.67a.4.4 0 0 1-.07-.37L9.46 11H7.9a.4.4 0 0 1-.3-.66l2.66-3.19c.3-.34.85-.05.73.39L10.57 9h1.53c.17 0 .3.1.36.23.32-.15.67-.23 1.04-.23h2c.17 0 .34.02.5.05V8h1.5a.5.5 0 0 0 0-1H16v-.5A2.5 2.5 0 0 0 13.5 4H13V2.5a.5.5 0 0 0-1 0V4h-1.5V2.5a.5.5 0 0 0-1 0V4H8V2.5Zm4 9.5v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const DeveloperBoardLightningToolbox20Regular = /*#__PURE__*/createFluentIcon('DeveloperBoardLightningToolbox20Regular', \"20\", [\"M7.5 2c.28 0 .5.22.5.5V4h1.5V2.5a.5.5 0 0 1 1 0V4H12V2.5a.5.5 0 0 1 1 0V4h.5A2.5 2.5 0 0 1 16 6.5V7h1.5a.5.5 0 0 1 0 1H16v1.05a2.51 2.51 0 0 0-.5-.05H15V6.5c0-.83-.67-1.5-1.5-1.5h-7C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5H9v1H8v1.5a.5.5 0 0 1-1 0V16h-.5A2.5 2.5 0 0 1 4 13.5V13H2.5a.5.5 0 0 1 0-1H4v-1.5H2.5a.5.5 0 0 1 0-1H4V8H2.5a.5.5 0 0 1 0-1H4v-.5A2.5 2.5 0 0 1 6.5 4H7V2.5c0-.28.22-.5.5-.5Zm3.54 9.04a2.5 2.5 0 0 1 1.42-1.81.4.4 0 0 0-.36-.23h-1.53l.42-1.46c.12-.44-.44-.73-.73-.39l-2.67 3.2a.4.4 0 0 0 .3.65h1.57l-.44 1.46a.4.4 0 0 0 .07.37 2.5 2.5 0 0 1 1.95-1.79ZM12 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15h-2v-.5a.5.5 0 0 0-1 0v.5h-3v-.5a.5.5 0 0 0-1 0v.5h-2v-1.5c0-.83.67-1.5 1.5-1.5h.5Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm4 5V16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0Z\"]);\nexport const DeveloperBoardSearch20Filled = /*#__PURE__*/createFluentIcon('DeveloperBoardSearch20Filled', \"20\", [\"M13 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8.5 1c.28 0 .5.22.5.5V3h1.5V1.5a.5.5 0 0 1 1 0V3H13V1.5a.5.5 0 0 1 1 0V3h.5A2.5 2.5 0 0 1 17 5.5V6h1.5a.5.5 0 0 1 0 1H17v1.5h1.5a.5.5 0 0 1 0 1H17V11h1.5a.5.5 0 0 1 0 1H17v.5a2.5 2.5 0 0 1-2.5 2.5H14v1.5a.5.5 0 0 1-1 0V15h-1.5v1.5a.5.5 0 0 1-1 0V15H8.74a4.5 4.5 0 0 0-5.68-5.76.5.5 0 0 1 .44-.74H5V7H3.5a.5.5 0 0 1 0-1H5v-.5A2.5 2.5 0 0 1 7.5 3H8V1.5c0-.28.22-.5.5-.5ZM11 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-6.5 5c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 0 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const DeveloperBoardSearch20Regular = /*#__PURE__*/createFluentIcon('DeveloperBoardSearch20Regular', \"20\", [\"M8 9a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM9 1.5a.5.5 0 0 0-1 0V3h-.5A2.5 2.5 0 0 0 5 5.5V6H3.5a.5.5 0 0 0 0 1H5v1.5H3.5a.5.5 0 0 0-.44.74A4.5 4.5 0 0 1 6 9.26V5.5C6 4.67 6.67 4 7.5 4h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H8.97c-.04.35-.11.68-.23 1h1.76v1.5a.5.5 0 0 0 1 0V15H13v1.5a.5.5 0 0 0 1 0V15h.5a2.5 2.5 0 0 0 2.5-2.5V12h1.5a.5.5 0 0 0 0-1H17V9.5h1.5a.5.5 0 0 0 0-1H17V7h1.5a.5.5 0 0 0 0-1H17v-.5A2.5 2.5 0 0 0 14.5 3H14V1.5a.5.5 0 0 0-1 0V3h-1.5V1.5a.5.5 0 0 0-1 0V3H9V1.5ZM4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 0 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const DeveloperBoardSearch24Filled = /*#__PURE__*/createFluentIcon('DeveloperBoardSearch24Filled', \"24\", [\"M17 1.65a.75.75 0 0 0-.75-.65h-.1l-.1.03a.75.75 0 0 0-.55.72V4h-1.75V1.65A.75.75 0 0 0 13 1h-.1a.75.75 0 0 0-.65.75V4H10.5V1.65a.75.75 0 0 0-1.5.1v2.32A3.75 3.75 0 0 0 6.08 7H3.65a.75.75 0 0 0-.65.75v.1c.06.37.37.65.75.65H6v1.75H3.65A.75.75 0 0 0 3 11v.1c.03.16.1.3.2.4a5.5 5.5 0 0 1 7.6 6.5h1.45v2.35c.06.37.37.65.75.65h.1a.75.75 0 0 0 .65-.75V18h1.75v2.35a.75.75 0 0 0 1.5-.1v-2.33A3.75 3.75 0 0 0 19.92 15h2.43a.75.75 0 0 0 .65-.75v-.1a.75.75 0 0 0-.75-.65H20v-1.75h2.35A.75.75 0 0 0 23 11v-.1a.75.75 0 0 0-.75-.65H20V8.5h2.35a.75.75 0 0 0-.1-1.5h-2.32A3.75 3.75 0 0 0 17 4.08V1.65ZM10 11a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm4.5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm-9 10c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const DeveloperBoardSearch24Regular = /*#__PURE__*/createFluentIcon('DeveloperBoardSearch24Regular', \"24\", [\"M17 1.65a.75.75 0 0 0-.75-.65h-.1l-.1.03a.75.75 0 0 0-.55.72V4h-1.75V1.65A.75.75 0 0 0 13 1h-.1a.75.75 0 0 0-.65.75V4H10.5V1.65a.75.75 0 0 0-1.5.1v2.32A3.75 3.75 0 0 0 6.08 7H3.65a.75.75 0 0 0-.65.75v.1c.06.37.37.65.75.65H6v1.75H3.65A.75.75 0 0 0 3 11v.1c.03.16.1.3.2.4a5.48 5.48 0 0 1 4.3-.13V7.75c0-1.24 1-2.25 2.25-2.25h6.5c1.24 0 2.25 1 2.25 2.25v6.5c0 1.24-1 2.25-2.25 2.25H11a5.5 5.5 0 0 1-.2 1.5h1.45v2.35c.06.37.37.65.75.65h.1a.75.75 0 0 0 .65-.75V18h1.75v2.35a.75.75 0 0 0 1.5-.1v-2.33A3.75 3.75 0 0 0 19.92 15h2.43a.75.75 0 0 0 .65-.75v-.1a.75.75 0 0 0-.75-.65H20v-1.75h2.35A.75.75 0 0 0 23 11v-.1a.75.75 0 0 0-.75-.65H20V8.5h2.35a.75.75 0 0 0-.1-1.5h-2.32A3.75 3.75 0 0 0 17 4.08V1.65ZM16 11a3 3 0 1 0-6 0 3 3 0 0 0 6 0Zm-4.5 0a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm-6 10c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const DeviceEq16Filled = /*#__PURE__*/createFluentIcon('DeviceEq16Filled', \"16\", [\"M8 2c.41 0 .75.34.75.75v10.5a.75.75 0 0 1-1.5 0V2.75c0-.41.34-.75.75-.75Zm2.75 2c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0v-6.5c0-.41.34-.75.75-.75ZM6 4.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5ZM13.75 6c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM3 6.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Z\"]);\nexport const DeviceEq16Regular = /*#__PURE__*/createFluentIcon('DeviceEq16Regular', \"16\", [\"M8 2c.28 0 .5.22.5.5v11a.5.5 0 0 1-1 0v-11c0-.28.22-.5.5-.5Zm2.5 2c.28 0 .5.22.5.5v7a.5.5 0 0 1-1 0v-7c0-.28.22-.5.5-.5ZM6 4.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7ZM13.5 6c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM3 6.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3Z\"]);\nexport const DeviceEq20Filled = /*#__PURE__*/createFluentIcon('DeviceEq20Filled', \"20\", [\"M10 2c.41 0 .75.34.75.75v14.5a.75.75 0 0 1-1.5 0V2.75c0-.41.34-.75.75-.75Zm3.75 3c.41 0 .75.34.75.75v8.5a.75.75 0 0 1-1.5 0v-8.5c0-.41.34-.75.75-.75ZM7 5.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0v-8.5ZM17.25 8c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM3.5 8.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Z\"]);\nexport const DeviceEq20Regular = /*#__PURE__*/createFluentIcon('DeviceEq20Regular', \"20\", [\"M10 2c.28 0 .5.22.5.5v15a.5.5 0 0 1-1 0v-15c0-.28.22-.5.5-.5Zm3.5 3c.28 0 .5.22.5.5v9a.5.5 0 0 1-1 0v-9c0-.28.22-.5.5-.5ZM7 5.5a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9ZM16.5 8c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM4 8.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3Z\"]);\nexport const DeviceEq24Filled = /*#__PURE__*/createFluentIcon('DeviceEq24Filled', \"24\", [\"M12 3a1 1 0 0 1 1 .88V20a1 1 0 0 1-2 .12V4a1 1 0 0 1 1-1ZM8 6a1 1 0 0 1 1 .88V17a1 1 0 0 1-2 .12V7a1 1 0 0 1 1-1Zm8 0a1 1 0 0 1 1 .88V17a1 1 0 0 1-2 .12V7a1 1 0 0 1 1-1ZM4 9a1 1 0 0 1 1 .88V14a1 1 0 0 1-2 .12V10a1 1 0 0 1 1-1Zm16 0a1 1 0 0 1 1 .88V14a1 1 0 0 1-2 .12V10a1 1 0 0 1 1-1Z\"]);\nexport const DeviceEq24Regular = /*#__PURE__*/createFluentIcon('DeviceEq24Regular', \"24\", [\"M12 3c.38 0 .7.28.74.65l.01.1v16.5a.75.75 0 0 1-1.5.1V3.75c0-.41.34-.75.75-.75ZM8.25 6c.38 0 .7.28.75.65v10.6a.75.75 0 0 1-1.49.1V6.75c0-.41.33-.75.74-.75Zm7.5 0c.37 0 .69.28.74.65v10.6a.75.75 0 0 1-1.49.1V6.75c0-.41.33-.75.74-.75Zm-11 3c.38 0 .7.28.74.65l.01.1v4.5a.75.75 0 0 1-1.5.1v-4.6c0-.41.34-.75.75-.75Zm14.5 0c.38 0 .7.28.75.65v4.6a.75.75 0 0 1-1.5.1v-4.6c0-.41.34-.75.75-.75Z\"]);\nexport const DeviceMeetingRoom16Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom16Filled', \"16\", [\"M2.74 3.46A2 2 0 0 1 4.67 2h6.66a2 2 0 0 1 1.93 1.46l1.66 5.9a2.08 2.08 0 0 1-2 2.64H3.08a2.08 2.08 0 0 1-2-2.64l1.66-5.9ZM4.5 13a.5.5 0 1 0 0 1h7a.5.5 0 1 0 0-1h-7Z\"]);\nexport const DeviceMeetingRoom16Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom16Regular', \"16\", [\"M4.67 2a2 2 0 0 0-1.93 1.46l-1.66 5.9a2.08 2.08 0 0 0 2 2.64h9.84a2.08 2.08 0 0 0 2-2.64l-1.66-5.9A2 2 0 0 0 11.33 2H4.67ZM3.7 3.73A1 1 0 0 1 4.67 3h6.66a1 1 0 0 1 .97.73l1.66 5.9c.2.69-.33 1.37-1.04 1.37H3.08c-.71 0-1.23-.68-1.04-1.37l1.66-5.9ZM4.5 13a.5.5 0 1 0 0 1h7a.5.5 0 1 0 0-1h-7Z\"]);\nexport const DeviceMeetingRoom20Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom20Filled', \"20\", [\"M3.66 4.95A2.5 2.5 0 0 1 6.1 3h7.8c1.17 0 2.18.8 2.44 1.95l1.6 7A2.5 2.5 0 0 1 15.48 15H4.5a2.5 2.5 0 0 1-2.43-3.05l1.59-7ZM5.5 16a.5.5 0 0 0 0 1h9a.5.5 0 1 0 0-1h-9Z\"]);\nexport const DeviceMeetingRoom20Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom20Regular', \"20\", [\"M6.1 3a2.5 2.5 0 0 0-2.44 1.95l-1.6 7A2.5 2.5 0 0 0 4.5 15h11a2.5 2.5 0 0 0 2.43-3.05l-1.59-7A2.5 2.5 0 0 0 13.9 3H6.1ZM4.63 5.17A1.5 1.5 0 0 1 6.1 4h7.8c.7 0 1.31.48 1.47 1.17l1.59 7A1.5 1.5 0 0 1 15.49 14H4.5a1.5 1.5 0 0 1-1.46-1.83l1.6-7ZM5.5 16a.5.5 0 0 0 0 1h9a.5.5 0 1 0 0-1h-9Z\"]);\nexport const DeviceMeetingRoom24Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom24Filled', \"24\", [\"M4.1 5.35A3.06 3.06 0 0 1 7.06 3h9.86c1.41 0 2.65.97 2.98 2.35l1.99 8.27A3.55 3.55 0 0 1 18.45 18H5.55a3.55 3.55 0 0 1-3.45-4.38l2-8.27ZM6.74 19a.75.75 0 1 0 0 1.5h10.5a.75.75 0 1 0 0-1.5H6.75Z\"]);\nexport const DeviceMeetingRoom24Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom24Regular', \"24\", [\"M7.07 3c-1.42 0-2.65.97-2.98 2.35L2.1 13.62A3.55 3.55 0 0 0 5.55 18h12.9c2.29 0 3.98-2.15 3.44-4.38L19.9 5.35A3.06 3.06 0 0 0 16.93 3H7.07ZM5.55 5.7c.17-.7.8-1.2 1.52-1.2h9.86c.72 0 1.35.5 1.51 1.2l2 8.27a2.05 2.05 0 0 1-2 2.53H5.55a2.05 2.05 0 0 1-2-2.53l2-8.27ZM6.75 19a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H6.75Z\"]);\nexport const DeviceMeetingRoom28Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom28Filled', \"28\", [\"M4.97 5.58A3.5 3.5 0 0 1 8.35 3h11.3a3.5 3.5 0 0 1 3.38 2.58l2.83 10.37A4 4 0 0 1 22 21H6a4 4 0 0 1-3.86-5.05L4.97 5.58ZM7.75 22.5a.75.75 0 1 0 0 1.5h12.5a.75.75 0 1 0 0-1.5H7.75Z\"]);\nexport const DeviceMeetingRoom28Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom28Regular', \"28\", [\"M8.35 3a3.5 3.5 0 0 0-3.38 2.58L2.14 15.95A4 4 0 0 0 6 21h16a4 4 0 0 0 3.86-5.05L23.03 5.58A3.5 3.5 0 0 0 19.65 3H8.35ZM6.42 5.97A2 2 0 0 1 8.35 4.5h11.3a2 2 0 0 1 1.93 1.47l2.83 10.37A2.5 2.5 0 0 1 22 19.5H6a2.5 2.5 0 0 1-2.4-3.16L6.41 5.97ZM7.75 22.5a.75.75 0 1 0 0 1.5h12.5a.75.75 0 1 0 0-1.5H7.75Z\"]);\nexport const DeviceMeetingRoom32Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom32Filled', \"32\", [\"M5.37 7.11A4.25 4.25 0 0 1 9.47 4h13.06c1.91 0 3.58 1.27 4.1 3.11l3.22 11.6A4.18 4.18 0 0 1 25.82 24H6.18a4.18 4.18 0 0 1-4.03-5.3L5.37 7.11ZM8 26a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2H8Z\"]);\nexport const DeviceMeetingRoom32Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom32Regular', \"32\", [\"M9.47 4a4.25 4.25 0 0 0-4.1 3.11l-3.22 11.6A4.18 4.18 0 0 0 6.18 24h19.64a4.18 4.18 0 0 0 4.03-5.3L26.63 7.11A4.25 4.25 0 0 0 22.53 4H9.47ZM7.3 7.65A2.25 2.25 0 0 1 9.47 6h13.06c1.01 0 1.9.67 2.17 1.65l3.22 11.59a2.18 2.18 0 0 1-2.1 2.76H6.18a2.18 2.18 0 0 1-2.1-2.76L7.3 7.64ZM8 26a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2H8Z\"]);\nexport const DeviceMeetingRoom48Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom48Filled', \"48\", [\"M8.97 10.4c.7-2.6 3.05-4.4 5.74-4.4h18.58c2.7 0 5.04 1.8 5.74 4.4l4.76 17.77A6.22 6.22 0 0 1 37.78 36H10.22a6.22 6.22 0 0 1-6-7.83L8.96 10.4ZM13.25 38a1.25 1.25 0 1 0 0 2.5h21.5a1.25 1.25 0 1 0 0-2.5h-21.5Z\"]);\nexport const DeviceMeetingRoom48Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoom48Regular', \"48\", [\"M14.7 6a5.94 5.94 0 0 0-5.73 4.4L4.21 28.17A6.22 6.22 0 0 0 10.22 36h27.56a6.22 6.22 0 0 0 6-7.83L39.04 10.4A5.94 5.94 0 0 0 33.29 6H14.71Zm-3.31 5.05A3.44 3.44 0 0 1 14.7 8.5h18.58a3.44 3.44 0 0 1 3.32 2.55l4.76 17.77a3.72 3.72 0 0 1-3.6 4.68H10.23a3.72 3.72 0 0 1-3.59-4.68l4.76-17.77ZM13.25 38a1.25 1.25 0 1 0 0 2.5h21.5a1.25 1.25 0 1 0 0-2.5h-21.5Z\"]);\nexport const DeviceMeetingRoomRemote16Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote16Filled', \"16\", [\"M4.67 2a2 2 0 0 0-1.93 1.46L2.31 5 2.5 5h2A2.5 2.5 0 0 1 7 7.5V12h5.9a2.08 2.08 0 0 0 2.01-2.64l-1.66-5.9A2 2 0 0 0 11.34 2H4.67Zm2.28 12c.04-.16.05-.33.05-.5V13h4.5a.5.5 0 1 1 0 1H6.95ZM3.5 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM1 7.5C1 6.67 1.67 6 2.5 6h2C5.33 6 6 6.67 6 7.5v6c0 .83-.67 1.5-1.5 1.5h-2A1.5 1.5 0 0 1 1 13.5v-6ZM2.5 7a.5.5 0 0 0-.5.5v6c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-2Z\"]);\nexport const DeviceMeetingRoomRemote16Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote16Regular', \"16\", [\"M2.74 3.46A2 2 0 0 1 4.67 2h6.67a2 2 0 0 1 1.92 1.46l1.66 5.9a2.08 2.08 0 0 1-2 2.64H7v-1h5.92c.71 0 1.23-.68 1.04-1.37l-1.66-5.9a1 1 0 0 0-.96-.73H4.67a1 1 0 0 0-.96.73L3.35 5H2.3l.44-1.54ZM6.95 14h4.55a.5.5 0 1 0 0-1H7v.5c0 .17-.02.34-.05.5ZM3.5 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM1 7.5C1 6.67 1.67 6 2.5 6h2C5.33 6 6 6.67 6 7.5v6c0 .83-.67 1.5-1.5 1.5h-2A1.5 1.5 0 0 1 1 13.5v-6ZM2.5 7a.5.5 0 0 0-.5.5v6c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-2Z\"]);\nexport const DeviceMeetingRoomRemote20Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote20Filled', \"20\", [\"M3.66 4.95A2.5 2.5 0 0 1 6.1 3h7.8c1.17 0 2.18.8 2.44 1.95l1.6 7A2.5 2.5 0 0 1 15.48 15H9V9.5A2.5 2.5 0 0 0 6.5 7h-3c-.1 0-.21 0-.31.02l.47-2.07ZM9 16.5c0 .17-.02.34-.05.5h5.55a.5.5 0 0 0 0-1H9v.5ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 9.5C2 8.67 2.67 8 3.5 8h3C7.33 8 8 8.67 8 9.5v7c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 2 16.5v-7ZM3.5 9a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-3Z\"]);\nexport const DeviceMeetingRoomRemote20Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote20Regular', \"20\", [\"M3.66 4.95A2.5 2.5 0 0 1 6.1 3h7.8c1.17 0 2.18.8 2.44 1.95l1.6 7A2.5 2.5 0 0 1 15.48 15H9v-1h6.5c.96 0 1.67-.9 1.46-1.83l-1.6-7A1.5 1.5 0 0 0 13.9 4H6.1c-.7 0-1.31.48-1.47 1.17L4.22 7H3.5c-.1 0-.21 0-.31.02l.47-2.07ZM8.95 17h5.55a.5.5 0 0 0 0-1H9v.5c0 .17-.02.34-.05.5ZM5 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 9.5C2 8.67 2.67 8 3.5 8h3C7.33 8 8 8.67 8 9.5v7c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 2 16.5v-7ZM3.5 9a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-3Z\"]);\nexport const DeviceMeetingRoomRemote24Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote24Filled', \"24\", [\"M7.07 3c-1.41 0-2.64.97-2.97 2.35l-.77 3.18.42-.03h4a2.75 2.75 0 0 1 2.75 2.75V18h7.95c2.3 0 3.99-2.15 3.45-4.38l-2-8.27A3.06 3.06 0 0 0 16.94 3H7.07Zm3.42 17.5.01-.25V19h6.75a.75.75 0 0 1 0 1.5H10.5Zm-4.74-6a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM2 11.25c0-.97.78-1.75 1.75-1.75h4c.97 0 1.75.78 1.75 1.75v9c0 .97-.78 1.75-1.75 1.75h-4C2.78 22 2 21.22 2 20.25v-9ZM3.75 11a.25.25 0 0 0-.25.25v9c0 .14.11.25.25.25h4c.14 0 .25-.11.25-.25v-9a.25.25 0 0 0-.25-.25h-4Z\"]);\nexport const DeviceMeetingRoomRemote24Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote24Regular', \"24\", [\"M4.1 5.35A3.06 3.06 0 0 1 7.06 3h9.86c1.42 0 2.65.97 2.98 2.35l1.99 8.27A3.55 3.55 0 0 1 18.45 18H10.5v-1.5h7.95c1.32 0 2.3-1.24 2-2.53l-2-8.27c-.17-.7-.8-1.2-1.52-1.2H7.07c-.72 0-1.35.5-1.52 1.2l-.67 2.8H3.75c-.14 0-.29.01-.42.03l.76-3.18Zm6.39 15.15h6.76a.75.75 0 1 0 0-1.5H10.5v1.25l-.01.25Zm-4.74-6a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM2 11.25c0-.97.78-1.75 1.75-1.75h4c.97 0 1.75.78 1.75 1.75v9c0 .97-.78 1.75-1.75 1.75h-4C2.78 22 2 21.22 2 20.25v-9ZM3.75 11a.25.25 0 0 0-.25.25v9c0 .14.11.25.25.25h4c.14 0 .25-.11.25-.25v-9a.25.25 0 0 0-.25-.25h-4Z\"]);\nexport const DeviceMeetingRoomRemote28Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote28Filled', \"28\", [\"M8.35 3a3.5 3.5 0 0 0-3.38 2.58l-1.21 4.46c.16-.03.32-.04.49-.04h4.5c1.8 0 3.25 1.46 3.25 3.25V21h10a4 4 0 0 0 3.86-5.05L23.03 5.58A3.5 3.5 0 0 0 19.65 3H8.35ZM12 24l.01-.25V22.5h8.25a.75.75 0 1 1 0 1.5H12ZM6.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM2 13.25C2 12.01 3 11 4.25 11h4.5C10 11 11 12 11 13.25v10.5C11 24.99 10 26 8.75 26h-4.5C3.01 26 2 25 2 23.75v-10.5Zm2.25-.75a.75.75 0 0 0-.75.75v10.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-10.5a.75.75 0 0 0-.75-.75h-4.5Z\"]);\nexport const DeviceMeetingRoomRemote28Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote28Regular', \"28\", [\"M4.97 5.58A3.5 3.5 0 0 1 8.35 3h11.3a3.5 3.5 0 0 1 3.38 2.58l2.83 10.37A4 4 0 0 1 22 21H12v-1.5h10a2.5 2.5 0 0 0 2.4-3.16L21.59 5.97a2 2 0 0 0-1.93-1.47H8.35a2 2 0 0 0-1.93 1.47L5.32 10H4.25c-.17 0-.33.01-.5.04l1.22-4.46ZM12 24h8.26a.75.75 0 1 0 0-1.5H12V24ZM6.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM2 13.25C2 12.01 3 11 4.25 11h4.5C10 11 11 12 11 13.25v10.5C11 24.99 10 26 8.75 26h-4.5C3.01 26 2 25 2 23.75v-10.5Zm2.25-.75a.75.75 0 0 0-.75.75v10.5c0 .41.34.75.75.75h4.5c.42 0 .75-.34.75-.75v-10.5a.75.75 0 0 0-.75-.75h-4.5Z\"]);\nexport const DeviceMeetingRoomRemote32Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote32Filled', \"32\", [\"M5.38 7.11A4.25 4.25 0 0 1 9.48 4h13.05c1.91 0 3.58 1.27 4.1 3.11l3.22 11.6A4.18 4.18 0 0 1 25.82 24H14.5v-9.5a4 4 0 0 0-4-4H4.43l.95-3.39ZM14.47 28H24a1 1 0 1 0 0-2h-9.5v1.5c0 .17 0 .34-.03.5ZM4.5 14a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-6Zm-2.5.5A2.5 2.5 0 0 1 4.5 12h6a2.5 2.5 0 0 1 2.5 2.5v13a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 27.5v-13ZM7.5 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const DeviceMeetingRoomRemote32Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote32Regular', \"32\", [\"M9.47 4a4.25 4.25 0 0 0-4.1 3.11l-.93 3.4.06-.01h2.01l.8-2.85A2.25 2.25 0 0 1 9.46 6h13.06c1.01 0 1.9.67 2.17 1.65l3.22 11.59a2.18 2.18 0 0 1-2.1 2.76H14.5v2h11.32a4.18 4.18 0 0 0 4.03-5.3L26.63 7.11A4.25 4.25 0 0 0 22.53 4H9.47Zm5.03 22H24a1 1 0 1 1 0 2h-9.53c.02-.16.03-.33.03-.5V26Zm-10-12a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h6a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-6Zm-2.5.5A2.5 2.5 0 0 1 4.5 12h6a2.5 2.5 0 0 1 2.5 2.5v13a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 27.5v-13ZM7.5 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const DeviceMeetingRoomRemote48Filled = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote48Filled', \"48\", [\"M8.97 10.4c.7-2.6 3.05-4.4 5.74-4.4h18.58c2.7 0 5.04 1.8 5.74 4.4l4.76 17.77A6.22 6.22 0 0 1 37.78 36H21V22.75A5.75 5.75 0 0 0 15.25 17h-7.5c-.19 0-.37 0-.55.03l1.77-6.63ZM21 40.25v.25h13.75a1.25 1.25 0 1 0 0-2.5H21v2.25ZM11.5 29a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm-3.75-7.5c-.69 0-1.25.56-1.25 1.25v17.5c0 .69.56 1.25 1.25 1.25h7.5c.7 0 1.25-.56 1.25-1.25v-17.5c0-.69-.56-1.25-1.25-1.25h-7.5ZM4 22.75A3.75 3.75 0 0 1 7.75 19h7.5A3.75 3.75 0 0 1 19 22.75v17.5A3.75 3.75 0 0 1 15.25 44h-7.5A3.75 3.75 0 0 1 4 40.25v-17.5Z\"]);\nexport const DeviceMeetingRoomRemote48Regular = /*#__PURE__*/createFluentIcon('DeviceMeetingRoomRemote48Regular', \"48\", [\"M14.7 6a5.94 5.94 0 0 0-5.73 4.4L7.2 17.03c.18-.02.36-.03.55-.03h2.04l1.6-5.95A3.44 3.44 0 0 1 14.7 8.5h18.58a3.44 3.44 0 0 1 3.32 2.55l4.76 17.77a3.72 3.72 0 0 1-3.6 4.68H21V36h16.78a6.22 6.22 0 0 0 6-7.83L39.04 10.4A5.94 5.94 0 0 0 33.29 6H14.71Zm20.05 34.5H21l.01-.25V38h13.75a1.25 1.25 0 0 1 0 2.5ZM11.5 29a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM4 22.75A3.75 3.75 0 0 1 7.75 19h7.5A3.75 3.75 0 0 1 19 22.75v17.5A3.75 3.75 0 0 1 15.25 44h-7.5A3.75 3.75 0 0 1 4 40.25v-17.5Zm3.75-1.25c-.69 0-1.25.56-1.25 1.25v17.5c0 .69.56 1.25 1.25 1.25h7.5c.7 0 1.25-.56 1.25-1.25v-17.5c0-.69-.56-1.25-1.25-1.25h-7.5Z\"]);\nexport const Diagram20Filled = /*#__PURE__*/createFluentIcon('Diagram20Filled', \"20\", [\"M5 2a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h.82l.9-1H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5.03c.36.06.7.2 1 .4V5a3 3 0 0 0-3-3H5Zm.5 3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM5 8.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM6.5 11a.5.5 0 0 0-.37.83L8.94 15l-2.81 3.17a.5.5 0 0 0 .37.83h8.1c.38 0 .76-.15 1.04-.42l3.13-3.04c.3-.3.3-.78 0-1.08l-3.13-3.04a1.5 1.5 0 0 0-1.05-.42H6.5Z\"]);\nexport const Diagram20Regular = /*#__PURE__*/createFluentIcon('Diagram20Regular', \"20\", [\"M5 2a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h.82l.9-1H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5.03c.36.06.7.2 1 .4V5a3 3 0 0 0-3-3H5Zm1.5 9a.5.5 0 0 0-.37.83L8.94 15l-2.81 3.17a.5.5 0 0 0 .37.83h8.1c.38 0 .76-.15 1.04-.42l3.13-3.04c.3-.3.3-.78 0-1.08l-3.13-3.04a1.5 1.5 0 0 0-1.05-.42H6.5Zm3.34 3.5L7.6 12h6.98a.5.5 0 0 1 .35.14L17.9 15l-2.95 2.86a.5.5 0 0 1-.35.14H7.61l2.23-2.5a.75.75 0 0 0 0-1ZM5 5.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5ZM5.5 8a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const Diagram24Filled = /*#__PURE__*/createFluentIcon('Diagram24Filled', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h10.5C17.55 2 19 3.46 19 5.25v6.03a2.75 2.75 0 0 0-1.22-.28h-.28V5.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h3.37L7.36 20H5.25A3.25 3.25 0 0 1 2 16.75V5.25ZM6.75 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm.32 6.43a.75.75 0 0 1 .68-.43h10.03c.52 0 1.01.23 1.34.62l3.7 4.4c.24.28.24.68 0 .96l-3.7 4.4c-.33.4-.82.62-1.34.62H7.75a.75.75 0 0 1-.57-1.23l3.59-4.27-3.6-4.27a.75.75 0 0 1-.1-.8ZM6.75 9a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z\"]);\nexport const Diagram24Regular = /*#__PURE__*/createFluentIcon('Diagram24Regular', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h10.5C17.55 2 19 3.46 19 5.25v6.03a2.75 2.75 0 0 0-1.22-.28h-.28V5.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h3.37L7.36 20H5.25A3.25 3.25 0 0 1 2 16.75V5.25ZM6.75 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm.32 6.43a.75.75 0 0 1 .68-.43h10.03c.52 0 1.01.23 1.34.62l3.7 4.4c.24.28.24.68 0 .96l-3.7 4.4c-.33.4-.82.62-1.34.62H7.75a.75.75 0 0 1-.57-1.23l3.59-4.27-3.6-4.27a.75.75 0 0 1-.1-.8Zm2.3 1.07 2.95 3.52c.24.28.24.68 0 .96L9.36 21.5h8.42c.08 0 .15-.03.2-.09l3.29-3.91-3.3-3.91a.25.25 0 0 0-.19-.09H9.36ZM6.74 9a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z\"]);\nexport const Dialpad20Filled = /*#__PURE__*/createFluentIcon('Dialpad20Filled', \"20\", [\"M6 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm0 4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM7.25 12a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 16a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM15.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const Dialpad20Regular = /*#__PURE__*/createFluentIcon('Dialpad20Regular', \"20\", [\"M6 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Dialpad24Filled = /*#__PURE__*/createFluentIcon('Dialpad24Filled', \"24\", [\"M12 17.75a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm0-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-10 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-10 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-10 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const Dialpad24Regular = /*#__PURE__*/createFluentIcon('Dialpad24Regular', \"24\", [\"M12 17.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm0-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-10 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-10 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-10 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Dialpad28Filled = /*#__PURE__*/createFluentIcon('Dialpad28Filled', \"28\", [\"M7.5 6.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm6.5-12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm6.5-18a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const Dialpad28Regular = /*#__PURE__*/createFluentIcon('Dialpad28Regular', \"28\", [\"M9 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm6.5-12a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm6.5-18a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 6a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"]);\nexport const Dialpad32Filled = /*#__PURE__*/createFluentIcon('Dialpad32Filled', \"32\", [\"M9 7.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm7-14a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm7-21a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const Dialpad32Regular = /*#__PURE__*/createFluentIcon('Dialpad32Regular', \"32\", [\"M11 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7-14a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7-21a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0 7a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const Dialpad48Filled = /*#__PURE__*/createFluentIcon('Dialpad48Filled', \"48\", [\"M13.5 11.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm10.5-20a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm10.5-30a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"]);\nexport const Dialpad48Regular = /*#__PURE__*/createFluentIcon('Dialpad48Regular', \"48\", [\"M16 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm10.5-20a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM37 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm0 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"]);\nexport const DialpadOff20Filled = /*#__PURE__*/createFluentIcon('DialpadOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l3.9 3.9H6a1.25 1.25 0 1 0 1.25 1.2l2.8 2.8H10a1.25 1.25 0 1 0 1.25 1.2l5.9 5.9a.5.5 0 0 0 .7-.7l-15-15ZM15.25 12c0 .31-.12.6-.3.82l-1.77-1.76a1.25 1.25 0 0 1 2.07.94Zm-4-4c0 .31-.12.6-.3.82L9.17 7.06a1.25 1.25 0 0 1 2.07.94Zm-4-4c0 .31-.12.6-.3.82L5.17 3.06A1.25 1.25 0 0 1 7.25 4Zm0 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM10 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM11.25 16a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 5.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM15.25 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z\"]);\nexport const DialpadOff20Regular = /*#__PURE__*/createFluentIcon('DialpadOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l4.2 4.22A1 1 0 0 0 5 8a1 1 0 1 0 1.93-.36l3.43 3.43a1 1 0 1 0 .57.57l6.22 6.21a.5.5 0 0 0 .7-.7l-15-15ZM15 12a1 1 0 0 1-.23.64l-1.41-1.4A1 1 0 0 1 15 12Zm-4-4a1 1 0 0 1-.23.64l-1.41-1.4A1 1 0 0 1 11 8ZM7 4a1 1 0 0 1-.23.64l-1.41-1.4A1 1 0 0 1 7 4Zm0 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DialpadOff24Filled = /*#__PURE__*/createFluentIcon('DialpadOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l4.5 4.5a1.5 1.5 0 1 0 1.76 1.76l3.24 3.24a1.5 1.5 0 1 0 1.75 1.75l7.25 7.25a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM18.5 14.25c0 .3-.1.58-.25.82l-2.07-2.08a1.5 1.5 0 0 1 2.32 1.26Zm-5-5c0 .3-.09.59-.25.82L11.18 8a1.5 1.5 0 0 1 2.32 1.25Zm-5-5c0 .3-.09.59-.24.83L6.18 3A1.5 1.5 0 0 1 8.5 4.25Zm3.5 13.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-5-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm10-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-5-5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const DialpadOff24Regular = /*#__PURE__*/createFluentIcon('DialpadOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l4.5 4.5a1.25 1.25 0 1 0 1.5 1.5l3.5 3.5a1.25 1.25 0 1 0 1.5 1.5l7.5 7.5a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM18.25 14c0 .3-.1.57-.28.79l-1.76-1.76a1.25 1.25 0 0 1 2.04.97Zm-5-5c0 .3-.1.57-.28.79l-1.76-1.76a1.25 1.25 0 0 1 2.04.97Zm-5-5c0 .3-.1.58-.28.79L6.21 3.03c.22-.17.5-.28.8-.28.68 0 1.24.56 1.24 1.25ZM12 17.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-5-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm10-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm-5-5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm5 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Diamond16Filled = /*#__PURE__*/createFluentIcon('Diamond16Filled', \"16\", [\"M1.59 9.4a2 2 0 0 1 0-2.83l4.98-4.98a2 2 0 0 1 2.83 0l4.98 4.98a2 2 0 0 1 0 2.83L9.4 14.38a2 2 0 0 1-2.83 0L1.59 9.4Z\"]);\nexport const Diamond16Regular = /*#__PURE__*/createFluentIcon('Diamond16Regular', \"16\", [\"M1.59 9.4a2 2 0 0 1 0-2.83l4.98-4.98a2 2 0 0 1 2.83 0l4.98 4.98a2 2 0 0 1 0 2.83L9.4 14.38a2 2 0 0 1-2.83 0L1.59 9.4Zm.7-2.12a1 1 0 0 0 0 1.41l4.99 4.98a1 1 0 0 0 1.41 0l4.99-4.98a1 1 0 0 0 0-1.41L8.69 2.29a1 1 0 0 0-1.41 0L2.29 7.28Z\"]);\nexport const Diamond20Filled = /*#__PURE__*/createFluentIcon('Diamond20Filled', \"20\", [\"M2.59 11.41a2 2 0 0 1 0-2.82l6-6a2 2 0 0 1 2.83 0l6 6a2 2 0 0 1 0 2.82l-6 6a2 2 0 0 1-2.83 0l-6-6Z\"]);\nexport const Diamond20Regular = /*#__PURE__*/createFluentIcon('Diamond20Regular', \"20\", [\"M2.59 11.41a2 2 0 0 1 0-2.82l6-6a2 2 0 0 1 2.83 0l6 6a2 2 0 0 1 0 2.82l-6 6a2 2 0 0 1-2.83 0l-6-6Zm.7-2.12a1 1 0 0 0 0 1.42l6 6a1 1 0 0 0 1.42 0l6-6a1 1 0 0 0 0-1.42l-6-6a1 1 0 0 0-1.42 0l-6 6Z\"]);\nexport const Diamond24Filled = /*#__PURE__*/createFluentIcon('Diamond24Filled', \"24\", [\"M2.66 13.6a2.25 2.25 0 0 1 0-3.19l7.75-7.75c.88-.88 2.3-.88 3.18 0l7.75 7.75c.88.88.88 2.3 0 3.18l-7.75 7.75c-.88.88-2.3.88-3.18 0L2.66 13.6Z\"]);\nexport const Diamond24Regular = /*#__PURE__*/createFluentIcon('Diamond24Regular', \"24\", [\"M2.66 13.6a2.25 2.25 0 0 1 0-3.19l7.75-7.75c.88-.88 2.3-.88 3.18 0l7.75 7.75c.88.88.88 2.3 0 3.18l-7.75 7.75c-.88.88-2.3.88-3.18 0L2.66 13.6Zm1.06-2.13c-.3.3-.3.77 0 1.06l7.75 7.75c.3.3.77.3 1.06 0l7.75-7.75c.3-.3.3-.77 0-1.06l-7.75-7.75a.75.75 0 0 0-1.06 0l-7.75 7.75Z\"]);\nexport const Diamond28Filled = /*#__PURE__*/createFluentIcon('Diamond28Filled', \"28\", [\"M3.73 15.77a2.5 2.5 0 0 1 0-3.54l8.5-8.5a2.5 2.5 0 0 1 3.54 0l8.5 8.5a2.5 2.5 0 0 1 0 3.54l-8.5 8.5a2.5 2.5 0 0 1-3.54 0l-8.5-8.5Z\"]);\nexport const Diamond28Regular = /*#__PURE__*/createFluentIcon('Diamond28Regular', \"28\", [\"M3.73 15.77a2.5 2.5 0 0 1 0-3.54l8.5-8.5a2.5 2.5 0 0 1 3.54 0l8.5 8.5a2.5 2.5 0 0 1 0 3.54l-8.5 8.5a2.5 2.5 0 0 1-3.54 0l-8.5-8.5ZM4.8 13.3a1 1 0 0 0 0 1.4l8.5 8.51a1 1 0 0 0 1.42 0l8.5-8.5a1 1 0 0 0 0-1.42l-8.5-8.5a1 1 0 0 0-1.42 0l-8.5 8.5Z\"]);\nexport const Diamond32Filled = /*#__PURE__*/createFluentIcon('Diamond32Filled', \"32\", [\"M3.88 18.12a3 3 0 0 1 0-4.24l10-10a3 3 0 0 1 4.24 0l10 10a3 3 0 0 1 0 4.24l-10 10a3 3 0 0 1-4.24 0l-10-10Z\"]);\nexport const Diamond32Regular = /*#__PURE__*/createFluentIcon('Diamond32Regular', \"32\", [\"M3.88 18.12a3 3 0 0 1 0-4.24l10-10a3 3 0 0 1 4.24 0l10 10a3 3 0 0 1 0 4.24l-10 10a3 3 0 0 1-4.24 0l-10-10Zm1.41-2.83a1 1 0 0 0 0 1.42l10 10a1 1 0 0 0 1.42 0l10-10a1 1 0 0 0 0-1.42l-10-10a1 1 0 0 0-1.42 0l-10 10Z\"]);\nexport const Diamond48Filled = /*#__PURE__*/createFluentIcon('Diamond48Filled', \"48\", [\"M5.03 26.47a3.5 3.5 0 0 1 0-4.95l16.5-16.5a3.5 3.5 0 0 1 4.94 0l16.5 16.5a3.5 3.5 0 0 1 0 4.95l-16.5 16.5a3.5 3.5 0 0 1-4.95 0l-16.5-16.5Z\"]);\nexport const Diamond48Regular = /*#__PURE__*/createFluentIcon('Diamond48Regular', \"48\", [\"M5.03 26.47a3.5 3.5 0 0 1 0-4.95l16.5-16.5a3.5 3.5 0 0 1 4.94 0l16.5 16.5a3.5 3.5 0 0 1 0 4.95l-16.5 16.5a3.5 3.5 0 0 1-4.95 0l-16.5-16.5Zm1.76-3.18a1 1 0 0 0 0 1.42l16.5 16.5a1 1 0 0 0 1.42 0l16.5-16.5a1 1 0 0 0 0-1.42L24.7 6.8a1 1 0 0 0-1.42 0L6.8 23.3Z\"]);\nexport const Directions16Filled = /*#__PURE__*/createFluentIcon('Directions16Filled', \"16\", [\"M6.23 2.7a2.5 2.5 0 0 1 3.54 0l3.53 3.53a2.5 2.5 0 0 1 0 3.54L9.77 13.3a2.5 2.5 0 0 1-3.54 0L2.7 9.77a2.5 2.5 0 0 1 0-3.54L6.23 2.7Zm2.62 1.95a.5.5 0 1 0-.7.7l.64.65H7.5C6.67 6 6 6.67 6 7.5V10a.5.5 0 0 0 1 0V7.5c0-.28.22-.5.5-.5h1.3l-.65.65a.5.5 0 1 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5Z\"]);\nexport const Directions16Regular = /*#__PURE__*/createFluentIcon('Directions16Regular', \"16\", [\"M6.23 2.7a2.5 2.5 0 0 1 3.54 0l3.53 3.53a2.5 2.5 0 0 1 0 3.54L9.77 13.3a2.5 2.5 0 0 1-3.54 0L2.7 9.77a2.5 2.5 0 0 1 0-3.54L6.23 2.7Zm2.83.7a1.5 1.5 0 0 0-2.12 0L3.4 6.94a1.5 1.5 0 0 0 0 2.12l3.54 3.54a1.5 1.5 0 0 0 2.12 0l3.54-3.54a1.5 1.5 0 0 0 0-2.12L9.06 3.4Zm-.91 1.25c.2-.2.5-.2.7 0l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7L8.79 7H7.5a.5.5 0 0 0-.5.5V10a.5.5 0 0 1-1 0V7.5C6 6.67 6.67 6 7.5 6h1.3l-.65-.65a.5.5 0 0 1 0-.7Z\"]);\nexport const Directions20Filled = /*#__PURE__*/createFluentIcon('Directions20Filled', \"20\", [\"M11.77 3.06a2.5 2.5 0 0 0-3.54 0L3.06 8.23a2.5 2.5 0 0 0 0 3.54l5.17 5.17a2.5 2.5 0 0 0 3.54 0l5.17-5.17a2.5 2.5 0 0 0 0-3.54l-5.17-5.17Zm-1.12 3.09c.2-.2.5-.2.7 0l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65h-.79C9.67 8.5 9 9.17 9 10v2.5a.5.5 0 0 1-1 0V10a2.5 2.5 0 0 1 2.5-2.5h.8l-.65-.65a.5.5 0 0 1 0-.7Z\"]);\nexport const Directions20Regular = /*#__PURE__*/createFluentIcon('Directions20Regular', \"20\", [\"M10.5 8.5C9.67 8.5 9 9.17 9 10v2.5a.5.5 0 1 1-1 0V10a2.5 2.5 0 0 1 2.5-2.5h.8l-.65-.65a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 1 1-.7-.7l.64-.65h-.79ZM8.23 3.06a2.5 2.5 0 0 1 3.54 0l5.17 5.17a2.5 2.5 0 0 1 0 3.54l-5.17 5.17a2.5 2.5 0 0 1-3.54 0l-5.17-5.17a2.5 2.5 0 0 1 0-3.54l5.17-5.17Zm2.83.7a1.5 1.5 0 0 0-2.12 0L3.77 8.95a1.5 1.5 0 0 0 0 2.12l5.17 5.17a1.5 1.5 0 0 0 2.12 0l5.17-5.17a1.5 1.5 0 0 0 0-2.12l-5.17-5.17Z\"]);\nexport const Directions24Filled = /*#__PURE__*/createFluentIcon('Directions24Filled', \"24\", [\"m14.3 2.99 6.72 6.71a3.25 3.25 0 0 1 0 4.6l-6.72 6.72a3.25 3.25 0 0 1-4.6 0L2.98 14.3a3.25 3.25 0 0 1 0-4.6L9.7 3a3.25 3.25 0 0 1 4.6 0Zm-.7 4.23-.1-.07a.75.75 0 0 0-.88 0l-.09.07-.07.09c-.2.26-.2.61-.01.88l.08.1.72.71h-1.67a2.75 2.75 0 0 0-2.57 2.58l-.01.17v3.35a.75.75 0 0 0 1.5 0v-3.48c.07-.59.53-1.05 1.12-1.11h.13l1.5-.01-.72.72-.07.09a.75.75 0 0 0 1.05 1.04l.08-.07 2-2 .07-.08c.2-.26.2-.62.01-.88l-.08-.1-2-2-.08-.07.08.07Z\"]);\nexport const Directions24Regular = /*#__PURE__*/createFluentIcon('Directions24Regular', \"24\", [\"m14.3 2.99 6.72 6.71a3.25 3.25 0 0 1 0 4.6l-6.72 6.72a3.25 3.25 0 0 1-4.6 0L2.98 14.3a3.25 3.25 0 0 1 0-4.6L9.7 3a3.25 3.25 0 0 1 4.6 0Zm-3.54 1.06-6.72 6.71c-.68.69-.68 1.8 0 2.48l6.72 6.72c.69.68 1.8.68 2.48 0l6.71-6.72c.69-.69.69-1.8 0-2.48l-6.71-6.71a1.75 1.75 0 0 0-2.48 0Zm1.7 3.26.07-.09a.75.75 0 0 1 .98-.07l.08.07 2 2c.27.27.3.68.07.98l-.07.08-2 2a.75.75 0 0 1-1.13-.97l.07-.09.72-.72h-1.5c-.65 0-1.18.5-1.24 1.12l-.01.13V15a.75.75 0 0 1-1.5.1v-3.35a2.75 2.75 0 0 1 2.58-2.74h.17l1.5-.01-.72-.72a.75.75 0 0 1-.07-.97l.07-.09-.07.09Z\"]);\nexport const Dishwasher20Filled = /*#__PURE__*/createFluentIcon('Dishwasher20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v2h14V6a3 3 0 0 0-3-3H6Zm8 14H6.91a1.5 1.5 0 0 0-.91-.91v-1.43a3.5 3.5 0 0 0 2-3.16v-2c0-.17-.03-.34-.09-.5H17v5a3 3 0 0 1-3 3ZM6.75 6.25a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM10 5.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 0-.5.5v2a2.5 2.5 0 0 0 2 2.45V17h-.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H5v-3.05a2.5 2.5 0 0 0 2-2.45v-2a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const Dishwasher20Regular = /*#__PURE__*/createFluentIcon('Dishwasher20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v2h13v6a2 2 0 0 1-2 2H6v.09c.43.15.76.48.91.91H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm10 3v1H4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2Zm-8.5-.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm2.5 0c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 0-.5.5v2a2.5 2.5 0 0 0 2 2.45V17h-.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H5v-3.05a2.5 2.5 0 0 0 2-2.45v-2a.5.5 0 0 0-.5-.5h-4Z\"]);\nexport const Dishwasher24Filled = /*#__PURE__*/createFluentIcon('Dishwasher24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25V9H3V6.25Zm5.99 4.26-.02-.01H21v7.25c0 1.8-1.46 3.25-3.25 3.25H8.48A1.75 1.75 0 0 0 7 19.52v-1.9a4.25 4.25 0 0 0 2.5-3.87v-2c0-.46-.18-.9-.51-1.24ZM9 6.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3.75-.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm-10 5.5a.75.75 0 0 0-.75.75v2a3.25 3.25 0 0 0 2.5 3.16v3.59h-.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5H6v-3.59a3.25 3.25 0 0 0 2.5-3.16v-2a.75.75 0 0 0-.75-.75h-5Z\"]);\nexport const Dishwasher24Regular = /*#__PURE__*/createFluentIcon('Dishwasher24Regular', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25V10h1.5v-.5h15v8.25c0 .97-.78 1.75-1.75 1.75H7v.02c.77.1 1.37.71 1.48 1.48h9.27c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM19.5 8h-15V6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75V8ZM9 6.25a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3.75-.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM2 11.75c0-.41.34-.75.75-.75h5c.41 0 .75.34.75.75v2A3.25 3.25 0 0 1 6 16.91v3.59h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75v-3.59A3.25 3.25 0 0 1 2 13.75v-2Z\"]);\nexport const Dishwasher32Filled = /*#__PURE__*/createFluentIcon('Dishwasher32Filled', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5V12H3V7.5Zm8.77 6.73a2.51 2.51 0 0 0-.27-.23H29v10.5a4.5 4.5 0 0 1-4.5 4.5h-14A2.5 2.5 0 0 0 9 26.7v-2a6 6 0 0 0 3.5-5.45V16c0-.66-.26-1.3-.73-1.77ZM11.5 8a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM17 7a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2h-5ZM3 15a1 1 0 0 0-1 1v3.25a4.5 4.5 0 0 0 3.5 4.39V28H5a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-.5v-4.36a4.5 4.5 0 0 0 3.5-4.39V16a1 1 0 0 0-1-1H3Z\"]);\nexport const Dishwasher32Regular = /*#__PURE__*/createFluentIcon('Dishwasher32Regular', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5v17a4.5 4.5 0 0 1-4.5 4.5h-14c0-.82-.4-1.54-1-2h15a2.5 2.5 0 0 0 2.5-2.5V13H5v.5H3v-6Zm24 0A2.5 2.5 0 0 0 24.5 5h-17A2.5 2.5 0 0 0 5 7.5V11h22V7.5ZM11.5 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM16 8a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2h-5a1 1 0 0 1-1-1ZM3 15a1 1 0 0 0-1 1v3.25a4.5 4.5 0 0 0 3.5 4.39V28H5a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-.5v-4.36a4.5 4.5 0 0 0 3.5-4.39V16a1 1 0 0 0-1-1H3Z\"]);\nexport const Dishwasher48Filled = /*#__PURE__*/createFluentIcon('Dishwasher48Filled', \"48\", [\"M12 6a6 6 0 0 0-6 6v5.5h36V12a6 6 0 0 0-6-6H12Zm30 14H16.25a3.25 3.25 0 0 1 3.25 3.25v5a8.75 8.75 0 0 1-5.5 8.13v3.2A3.25 3.25 0 0 1 16.41 42H36a6 6 0 0 0 6-6V20Zm-24-7.75a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM25.25 11h7.5a1.25 1.25 0 1 1 0 2.5h-7.5a1.25 1.25 0 1 1 0-2.5Zm-20 11C4.56 22 4 22.56 4 23.25v5c0 3.3 2.37 6.05 5.5 6.63v6.62H8.25a1.25 1.25 0 1 0 0 2.5h5a1.25 1.25 0 1 0 0-2.5H12v-6.62a6.75 6.75 0 0 0 5.5-6.63v-5c0-.69-.56-1.25-1.25-1.25h-11Z\"]);\nexport const Dishwasher48Regular = /*#__PURE__*/createFluentIcon('Dishwasher48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25v23.5C42 39.2 39.2 42 35.75 42H16.41A3.25 3.25 0 0 0 14 39.59v-.09h21.75a3.75 3.75 0 0 0 3.75-3.75V18.5h-31V20H6v-7.75Zm33.5 0a3.75 3.75 0 0 0-3.75-3.75h-23.5a3.75 3.75 0 0 0-3.75 3.75V16h31v-3.75Zm-21.5 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm6 0c0-.69.56-1.25 1.25-1.25h7.5a1.25 1.25 0 1 1 0 2.5h-7.5c-.69 0-1.25-.56-1.25-1.25ZM5.25 22C4.56 22 4 22.56 4 23.25v5c0 3.3 2.37 6.05 5.5 6.63v6.62H8.25a1.25 1.25 0 1 0 0 2.5h5a1.25 1.25 0 1 0 0-2.5H12v-6.62a6.75 6.75 0 0 0 5.5-6.63v-5c0-.69-.56-1.25-1.25-1.25h-11Z\"]);\nexport const Dismiss12Filled = /*#__PURE__*/createFluentIcon('Dismiss12Filled', \"12\", [\"m1.9 2.05.07-.08a.75.75 0 0 1 .98-.07l.08.07L6 4.94l2.97-2.97a.75.75 0 1 1 1.06 1.06L7.06 6l2.97 2.97c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L6 7.06l-2.97 2.97a.75.75 0 1 1-1.06-1.06L4.94 6 1.97 3.03a.75.75 0 0 1-.07-.98l.07-.08-.07.08Z\"]);\nexport const Dismiss12Regular = /*#__PURE__*/createFluentIcon('Dismiss12Regular', \"12\", [\"m2.09 2.22.06-.07a.5.5 0 0 1 .63-.06l.07.06L6 5.29l3.15-3.14a.5.5 0 1 1 .7.7L6.71 6l3.14 3.15c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L6 6.71 2.85 9.85a.5.5 0 0 1-.7-.7L5.29 6 2.15 2.85a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z\"]);\nexport const Dismiss16Filled = /*#__PURE__*/createFluentIcon('Dismiss16Filled', \"16\", [\"m2.4 2.55.07-.08a.75.75 0 0 1 .98-.07l.08.07L8 6.94l4.47-4.47a.75.75 0 1 1 1.06 1.06L9.06 8l4.47 4.47c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L8 9.06l-4.47 4.47a.75.75 0 0 1-1.06-1.06L6.94 8 2.47 3.53a.75.75 0 0 1-.07-.98l.07-.08-.07.08Z\"]);\nexport const Dismiss16Regular = /*#__PURE__*/createFluentIcon('Dismiss16Regular', \"16\", [\"m2.59 2.72.06-.07a.5.5 0 0 1 .63-.06l.07.06L8 7.29l4.65-4.64a.5.5 0 0 1 .7.7L8.71 8l4.64 4.65c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L8 8.71l-4.65 4.64a.5.5 0 0 1-.7-.7L7.29 8 2.65 3.35a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z\"]);\nexport const Dismiss20Filled = /*#__PURE__*/createFluentIcon('Dismiss20Filled', \"20\", [\"m3.9 4.05.07-.08a.75.75 0 0 1 .98-.07l.08.07L10 8.94l4.97-4.97a.75.75 0 0 1 .98-.07l.08.07c.27.27.3.68.07.98l-.07.08L11.06 10l4.97 4.97c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L10 11.06l-4.97 4.97a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08L8.94 10 3.97 5.03a.75.75 0 0 1-.07-.98l.07-.08-.07.08Z\"]);\nexport const Dismiss20Regular = /*#__PURE__*/createFluentIcon('Dismiss20Regular', \"20\", [\"m4.09 4.22.06-.07a.5.5 0 0 1 .63-.06l.07.06L10 9.29l5.15-5.14a.5.5 0 0 1 .63-.06l.07.06c.18.17.2.44.06.63l-.06.07L10.71 10l5.14 5.15c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L10 10.71l-5.15 5.14a.5.5 0 0 1-.63.06l-.07-.06a.5.5 0 0 1-.06-.63l.06-.07L9.29 10 4.15 4.85a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z\"]);\nexport const Dismiss24Filled = /*#__PURE__*/createFluentIcon('Dismiss24Filled', \"24\", [\"m4.21 4.39.08-.1a1 1 0 0 1 1.32-.08l.1.08L12 10.6l6.3-6.3a1 1 0 1 1 1.4 1.42L13.42 12l6.3 6.3a1 1 0 0 1 .08 1.31l-.08.1a1 1 0 0 1-1.32.08l-.1-.08L12 13.4l-6.3 6.3a1 1 0 0 1-1.4-1.42L10.58 12l-6.3-6.3a1 1 0 0 1-.08-1.31l.08-.1-.08.1Z\"]);\nexport const Dismiss24Regular = /*#__PURE__*/createFluentIcon('Dismiss24Regular', \"24\", [\"m4.4 4.55.07-.08a.75.75 0 0 1 .98-.07l.08.07L12 10.94l6.47-6.47a.75.75 0 1 1 1.06 1.06L13.06 12l6.47 6.47c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L12 13.06l-6.47 6.47a.75.75 0 0 1-1.06-1.06L10.94 12 4.47 5.53a.75.75 0 0 1-.07-.98l.07-.08-.07.08Z\"]);\nexport const Dismiss28Filled = /*#__PURE__*/createFluentIcon('Dismiss28Filled', \"28\", [\"M22.3 4.3a1 1 0 1 1 1.4 1.4L15.42 14l8.3 8.3a1 1 0 0 1-1.42 1.4L14 15.42l-8.3 8.3a1 1 0 0 1-1.4-1.42L12.58 14l-8.3-8.3a1 1 0 0 1 1.42-1.4L14 12.58l8.3-8.3Z\"]);\nexport const Dismiss28Regular = /*#__PURE__*/createFluentIcon('Dismiss28Regular', \"28\", [\"M22.47 4.47a.75.75 0 1 1 1.06 1.06L15.06 14l8.47 8.47a.75.75 0 1 1-1.06 1.06L14 15.06l-8.47 8.47a.75.75 0 0 1-1.06-1.06L12.94 14 4.47 5.53a.75.75 0 0 1 1.06-1.06L14 12.94l8.47-8.47Z\"]);\nexport const Dismiss32Filled = /*#__PURE__*/createFluentIcon('Dismiss32Filled', \"32\", [\"M26.11 4.12a1.25 1.25 0 0 1 1.77 1.76L17.77 16 27.88 26.1a1.25 1.25 0 1 1-1.77 1.77L16 17.77 5.88 27.88a1.25 1.25 0 1 1-1.76-1.77L14.23 16 4.12 5.88a1.25 1.25 0 1 1 1.76-1.76L16 14.23 26.1 4.12Z\"]);\nexport const Dismiss32Regular = /*#__PURE__*/createFluentIcon('Dismiss32Regular', \"32\", [\"M26.29 4.3a1 1 0 1 1 1.41 1.4L17.41 16l10.3 10.29a1 1 0 1 1-1.42 1.41l-10.3-10.29-10.28 10.3a1 1 0 0 1-1.42-1.42l10.3-10.3L4.28 5.72a1 1 0 0 1 1.42-1.42L16 14.6l10.29-10.3Z\"]);\nexport const Dismiss48Filled = /*#__PURE__*/createFluentIcon('Dismiss48Filled', \"48\", [\"M8.56 6.44a1.5 1.5 0 1 0-2.12 2.12L21.88 24 6.44 39.44a1.5 1.5 0 1 0 2.12 2.12L24 26.12l15.44 15.44a1.5 1.5 0 1 0 2.12-2.12L26.12 24 41.56 8.56a1.5 1.5 0 1 0-2.12-2.12L24 21.88 8.56 6.44Z\"]);\nexport const Dismiss48Regular = /*#__PURE__*/createFluentIcon('Dismiss48Regular', \"48\", [\"M8.38 6.62a1.25 1.25 0 1 0-1.76 1.76L22.23 24 6.62 39.62a1.25 1.25 0 0 0 1.76 1.76L24 25.77l15.62 15.61a1.25 1.25 0 1 0 1.76-1.76L25.77 24 41.38 8.38a1.25 1.25 0 1 0-1.76-1.76L24 22.23 8.38 6.62Z\"]);\nexport const DismissCircle12Filled = /*#__PURE__*/createFluentIcon('DismissCircle12Filled', \"12\", [\"M6 11A5 5 0 1 0 6 1a5 5 0 0 0 0 10Zm1.85-6.85c.2.2.2.5 0 .7L6.71 6l1.14 1.15a.5.5 0 1 1-.7.7L6 6.71 4.85 7.85a.5.5 0 1 1-.7-.7L5.29 6 4.15 4.85a.5.5 0 1 1 .7-.7L6 5.29l1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const DismissCircle12Regular = /*#__PURE__*/createFluentIcon('DismissCircle12Regular', \"12\", [\"M7.85 4.15c.2.2.2.5 0 .7L6.71 6l1.14 1.15a.5.5 0 1 1-.7.7L6 6.71 4.85 7.85a.5.5 0 1 1-.7-.7L5.29 6 4.15 4.85a.5.5 0 1 1 .7-.7L6 5.29l1.15-1.14c.2-.2.5-.2.7 0ZM6 1a5 5 0 1 0 0 10A5 5 0 0 0 6 1ZM2 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z\"]);\nexport const DismissCircle16Filled = /*#__PURE__*/createFluentIcon('DismissCircle16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM6.53 5.84a.5.5 0 0 0-.63.06l-.06.07a.5.5 0 0 0 .06.63L7.3 8 5.9 9.4l-.06.07a.5.5 0 0 0 .06.63l.07.06c.2.14.46.12.63-.06L8 8.7l1.4 1.4.07.06c.2.14.46.12.63-.06l.06-.07a.5.5 0 0 0-.06-.63L8.7 8l1.4-1.4.06-.07a.5.5 0 0 0-.06-.63l-.07-.06a.5.5 0 0 0-.63.06L8 7.3 6.6 5.9l-.07-.06Z\"]);\nexport const DismissCircle16Regular = /*#__PURE__*/createFluentIcon('DismissCircle16Regular', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 1a5 5 0 1 0 0 10A5 5 0 0 0 8 3ZM5.84 5.97l.06-.07a.5.5 0 0 1 .63-.06l.07.06L8 7.3l1.4-1.4a.5.5 0 0 1 .63-.06l.07.06c.18.17.2.44.06.63l-.06.07L8.7 8l1.4 1.4c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L8 8.7l-1.4 1.4a.5.5 0 0 1-.63.06l-.07-.06a.5.5 0 0 1-.06-.63l.06-.07L7.3 8 5.9 6.6a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z\"]);\nexport const DismissCircle20Filled = /*#__PURE__*/createFluentIcon('DismissCircle20Filled', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16ZM7.8 7.11a.5.5 0 0 0-.63.06l-.06.07a.5.5 0 0 0 .06.64L9.3 10l-2.12 2.12-.06.07a.5.5 0 0 0 .06.64l.07.06c.2.13.47.11.64-.06L10 10.7l2.12 2.12.07.06c.2.13.46.11.64-.06l.06-.07a.5.5 0 0 0-.06-.64L10.7 10l2.12-2.12.06-.07a.5.5 0 0 0-.06-.64l-.07-.06a.5.5 0 0 0-.64.06L10 9.3 7.88 7.17l-.07-.06Z\"]);\nexport const DismissCircle20Regular = /*#__PURE__*/createFluentIcon('DismissCircle20Regular', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 1a7 7 0 1 0 0 14 7 7 0 0 0 0-14ZM7.8 7.11l.08.06L10 9.3l2.12-2.12a.5.5 0 0 1 .64-.06l.07.06c.17.18.2.44.06.64l-.06.07L10.7 10l2.12 2.12c.17.17.2.44.06.64l-.06.07a.5.5 0 0 1-.64.06l-.07-.06L10 10.7l-2.12 2.12a.5.5 0 0 1-.64.06l-.07-.06a.5.5 0 0 1-.06-.64l.06-.07L9.3 10 7.17 7.88a.5.5 0 0 1-.06-.64l.06-.07a.5.5 0 0 1 .64-.06Z\"]);\nexport const DismissCircle24Filled = /*#__PURE__*/createFluentIcon('DismissCircle24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm3.53 6.47-.08-.07a.75.75 0 0 0-.89-.01l-.09.08L12 10.94 9.53 8.47l-.08-.07a.75.75 0 0 0-.89-.01l-.09.08-.07.08c-.2.26-.2.62-.01.89l.08.09L10.94 12l-2.47 2.47-.07.08c-.2.26-.2.62-.01.89l.08.09.08.07c.26.2.62.2.89.01l.09-.08L12 13.06l2.47 2.47.08.07c.26.2.62.2.89.01l.09-.08.07-.08c.2-.26.2-.62.01-.89l-.08-.09L13.06 12l2.47-2.47.07-.08c.2-.26.2-.62.01-.89l-.08-.09-.08-.07.08.07Z\"]);\nexport const DismissCircle24Regular = /*#__PURE__*/createFluentIcon('DismissCircle24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm3.45 4.9.08.07c.27.27.3.68.07.98l-.07.08L13.06 12l2.47 2.47c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07L12 13.06l-2.47 2.47a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08L10.94 12 8.47 9.53a.75.75 0 0 1-.07-.98l.07-.08a.75.75 0 0 1 .98-.07l.08.07L12 10.94l2.47-2.47a.75.75 0 0 1 .98-.07Z\"]);\nexport const DismissCircle28Filled = /*#__PURE__*/createFluentIcon('DismissCircle28Filled', \"28\", [\"M26 14a12 12 0 1 0-24 0 12 12 0 0 0 24 0Zm-7.72-4.28c.3.3.3.77 0 1.06L15.06 14l3.22 3.22a.75.75 0 1 1-1.06 1.06L14 15.06l-3.22 3.22a.75.75 0 1 1-1.06-1.06L12.94 14l-3.22-3.22a.75.75 0 1 1 1.06-1.06L14 12.94l3.22-3.22c.3-.3.77-.3 1.06 0Z\"]);\nexport const DismissCircle28Regular = /*#__PURE__*/createFluentIcon('DismissCircle28Regular', \"28\", [\"M18.28 9.72c.3.3.3.77 0 1.06L15.06 14l3.22 3.22a.75.75 0 1 1-1.06 1.06L14 15.06l-3.22 3.22a.75.75 0 1 1-1.06-1.06L12.94 14l-3.22-3.22a.75.75 0 1 1 1.06-1.06L14 12.94l3.22-3.22c.3-.3.77-.3 1.06 0ZM26 14a12 12 0 1 0-24 0 12 12 0 0 0 24 0ZM3.5 14a10.5 10.5 0 1 1 21 0 10.5 10.5 0 0 1-21 0Z\"]);\nexport const DismissCircle32Filled = /*#__PURE__*/createFluentIcon('DismissCircle32Filled', \"32\", [\"M2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0Zm19.7-5.7a1 1 0 0 0-1.4 0L16 14.58l-4.3-4.3a1 1 0 1 0-1.4 1.42L14.58 16l-4.3 4.3a1 1 0 1 0 1.42 1.4L16 17.42l4.3 4.3a1 1 0 0 0 1.4-1.42L17.42 16l4.3-4.3a1 1 0 0 0 0-1.4Z\"]);\nexport const DismissCircle32Regular = /*#__PURE__*/createFluentIcon('DismissCircle32Regular', \"32\", [\"M21.7 10.3a1 1 0 0 1 0 1.4L17.42 16l4.3 4.3a1 1 0 0 1-1.42 1.4L16 17.42l-4.3 4.3a1 1 0 0 1-1.4-1.42L14.58 16l-4.3-4.3a1 1 0 1 1 1.42-1.4L16 14.58l4.3-4.3a1 1 0 0 1 1.4 0ZM16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28ZM4 16a12 12 0 1 1 24 0 12 12 0 0 1-24 0Z\"]);\nexport const DismissCircle48Filled = /*#__PURE__*/createFluentIcon('DismissCircle48Filled', \"48\", [\"M24 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm-6.12 12.12-.1-.1a1.25 1.25 0 0 0-1.56 0l-.1.1-.1.1c-.36.45-.36 1.1 0 1.56l.1.1L22.23 24l-6.11 6.12-.1.1c-.36.45-.36 1.1 0 1.56l.1.1.1.1c.45.36 1.1.36 1.56 0l.1-.1L24 25.77l6.12 6.11.1.1c.45.36 1.1.36 1.56 0l.1-.1.1-.1c.36-.45.36-1.1 0-1.56l-.1-.1L25.77 24l6.11-6.12.1-.1c.36-.45.36-1.1 0-1.56l-.1-.1-.1-.1a1.25 1.25 0 0 0-1.56 0l-.1.1L24 22.23l-6.12-6.11-.1-.1.1.1Z\"]);\nexport const DismissCircle48Regular = /*#__PURE__*/createFluentIcon('DismissCircle48Regular', \"48\", [\"M24 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm0 2.5a17.5 17.5 0 1 0 0 35 17.5 17.5 0 0 0 0-35Zm-6.22 9.52.1.1L24 22.23l6.12-6.11a1.25 1.25 0 0 1 1.66-.1l.1.1c.46.45.49 1.17.1 1.66l-.1.1L25.77 24l6.11 6.12c.46.45.49 1.17.1 1.66l-.1.1c-.45.46-1.17.49-1.66.1l-.1-.1L24 25.77l-6.12 6.11c-.45.46-1.17.49-1.66.1l-.1-.1a1.25 1.25 0 0 1-.1-1.66l.1-.1L22.23 24l-6.11-6.12a1.25 1.25 0 0 1-.1-1.66l.1-.1a1.25 1.25 0 0 1 1.66-.1Z\"]);\nexport const DismissSquare20Filled = /*#__PURE__*/createFluentIcon('DismissSquare20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm4.15 1.15a.5.5 0 0 0 0 .7L9.29 10l-2.14 2.15a.5.5 0 0 0 .7.7L10 10.71l2.15 2.14a.5.5 0 0 0 .7-.7L10.71 10l2.14-2.15a.5.5 0 0 0-.7-.7L10 9.29 7.85 7.15a.5.5 0 0 0-.7 0Z\"]);\nexport const DismissSquare20Regular = /*#__PURE__*/createFluentIcon('DismissSquare20Regular', \"20\", [\"M7.15 7.15c.2-.2.5-.2.7 0L10 9.29l2.15-2.14a.5.5 0 0 1 .7.7L10.71 10l2.14 2.15a.5.5 0 0 1-.7.7L10 10.71l-2.15 2.14a.5.5 0 0 1-.7-.7L9.29 10 7.15 7.85a.5.5 0 0 1 0-.7ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-2a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Z\"]);\nexport const DismissSquare24Filled = /*#__PURE__*/createFluentIcon('DismissSquare24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25Zm1.97 5.22c.3-.3.77-.3 1.06 0L12 10.94l2.72-2.72a.75.75 0 1 1 1.06 1.06L13.06 12l2.72 2.72a.75.75 0 1 1-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 0 1-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 0 1 0-1.06Z\"]);\nexport const DismissSquare24Regular = /*#__PURE__*/createFluentIcon('DismissSquare24Regular', \"24\", [\"M8.22 8.22c.3-.3.77-.3 1.06 0L12 10.94l2.72-2.72a.75.75 0 1 1 1.06 1.06L13.06 12l2.72 2.72a.75.75 0 1 1-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 0 1-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 0 1 0-1.06ZM6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z\"]);\nexport const DismissSquareMultiple16Filled = /*#__PURE__*/createFluentIcon('DismissSquareMultiple16Filled', \"16\", [\"M4 2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm.65 2.65c.2-.2.5-.2.7 0L7 6.29l1.65-1.64a.5.5 0 1 1 .7.7L7.71 7l1.64 1.65a.5.5 0 1 1-.7.7L7 7.71 5.35 9.35a.5.5 0 1 1-.7-.7L6.29 7 4.65 5.35a.5.5 0 0 1 0-.7ZM13 10.5a2.5 2.5 0 0 1-2.5 2.5H3.27c.34.6.99 1 1.73 1h5.5a3.5 3.5 0 0 0 3.5-3.5V5a2 2 0 0 0-1-1.73v7.23Z\"]);\nexport const DismissSquareMultiple16Regular = /*#__PURE__*/createFluentIcon('DismissSquareMultiple16Regular', \"16\", [\"M4.65 4.65c.2-.2.5-.2.7 0L7 6.29l1.65-1.64a.5.5 0 1 1 .7.7L7.71 7l1.64 1.65a.5.5 0 1 1-.7.7L7 7.71 5.35 9.35a.5.5 0 1 1-.7-.7L6.29 7 4.65 5.35a.5.5 0 0 1 0-.7ZM4 2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4ZM3 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm10-.73c.6.34 1 .99 1 1.73v5.5a3.5 3.5 0 0 1-3.5 3.5H5a2 2 0 0 1-1.73-1h7.23a2.5 2.5 0 0 0 2.5-2.5V3.27Z\"]);\nexport const DismissSquareMultiple20Filled = /*#__PURE__*/createFluentIcon('DismissSquareMultiple20Filled', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h7A2.5 2.5 0 0 1 15 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 3 12.5v-7Zm3.15.65a.5.5 0 0 0 0 .7L8.29 9l-2.14 2.15a.5.5 0 0 0 .7.7L9 9.71l2.15 2.14a.5.5 0 0 0 .7-.7L9.71 9l2.14-2.15a.5.5 0 0 0-.7-.7L9 8.29 6.85 6.15a.5.5 0 0 0-.7 0ZM5.5 16c.46.6 1.18 1 2 1h5a4.5 4.5 0 0 0 4.5-4.5v-5c0-.82-.4-1.54-1-2v7a3.5 3.5 0 0 1-3.5 3.5h-7Z\"]);\nexport const DismissSquareMultiple20Regular = /*#__PURE__*/createFluentIcon('DismissSquareMultiple20Regular', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h7A2.5 2.5 0 0 1 15 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 3 12.5v-7ZM5.5 4C4.67 4 4 4.67 4 5.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7Zm2 13a2.5 2.5 0 0 1-2-1h7a3.5 3.5 0 0 0 3.5-3.5v-7c.6.46 1 1.18 1 2v5a4.5 4.5 0 0 1-4.5 4.5h-5ZM6.85 6.15a.5.5 0 1 0-.7.7L8.29 9l-2.14 2.15a.5.5 0 0 0 .7.7L9 9.71l2.15 2.14a.5.5 0 0 0 .7-.7L9.71 9l2.14-2.15a.5.5 0 0 0-.7-.7L9 8.29 6.85 6.15Z\"]);\nexport const Diversity20Filled = /*#__PURE__*/createFluentIcon('Diversity20Filled', \"20\", [\"M7.74 16.45A2.99 2.99 0 0 1 6 17a3 3 0 0 1-2.45-4.74l4.19 4.19Zm5.9-5.36-2.23 1.15a.75.75 0 0 0-.41.66v2.2c0 .28.16.53.41.66l2.23 1.15c.23.12.5.12.72 0l2.23-1.15a.75.75 0 0 0 .41-.66v-2.2a.75.75 0 0 0-.41-.66l-2.23-1.15a.79.79 0 0 0-.72 0Zm-5.2 4.65A2.99 2.99 0 0 0 9 14a3 3 0 0 0-4.74-2.45l4.19 4.19ZM13 3a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-2Zm-8.09.67c.45-.9 1.73-.9 2.18 0l1.78 3.54c.4.82-.18 1.79-1.1 1.79H4.23c-.9 0-1.5-.97-1.09-1.79l1.78-3.54Z\"]);\nexport const Diversity20Regular = /*#__PURE__*/createFluentIcon('Diversity20Regular', \"20\", [\"M11 5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V5ZM4.91 3.67c.45-.9 1.73-.9 2.18 0l1.78 3.54c.4.82-.18 1.79-1.1 1.79H4.23c-.9 0-1.5-.97-1.09-1.79l1.78-3.54Zm1.28.45a.21.21 0 0 0-.38 0L4.03 7.66c-.09.17.04.34.2.34h3.55c.15 0 .28-.17.2-.34L6.18 4.12ZM9 14a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 0a2 2 0 0 0-3.02-1.72l2.74 2.74A2 2 0 0 0 8 14Zm-2 2a2 2 0 0 0 1.02-.28l-2.74-2.74A2 2 0 0 0 6 16Zm7.64-4.91c.23-.12.5-.12.72 0l2.23 1.15c.25.13.41.38.41.66v2.2c0 .28-.16.53-.41.66l-2.23 1.15a.79.79 0 0 1-.72 0l-2.23-1.15a.75.75 0 0 1-.41-.66v-2.2c0-.28.16-.53.41-.66l2.23-1.15ZM12 13.06v1.88l2 1.03 2-1.03v-1.88l-2-1.03-2 1.03Z\"]);\nexport const Diversity24Filled = /*#__PURE__*/createFluentIcon('Diversity24Filled', \"24\", [\"M16 3a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h2a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2Zm-10.45.9c.6-1.2 2.3-1.2 2.9 0l2.37 4.71A1.64 1.64 0 0 1 9.37 11H4.63c-1.22 0-2-1.3-1.45-2.39L5.55 3.9Zm5.38 13.86c-.1.54-.32 1.05-.62 1.49l-5.56-5.56A3.98 3.98 0 0 1 7 13a4 4 0 0 1 3.93 4.75v.01Zm-3.24 3.18a4 4 0 0 1-4.62-4.69v-.01c.1-.54.32-1.05.62-1.49l5.56 5.56a3.98 3.98 0 0 1-1.56.63Zm8.83-7.82c.3-.16.66-.16.96 0l2.97 1.53a1 1 0 0 1 .55.89v2.92a1 1 0 0 1-.55.89l-2.97 1.53c-.3.16-.66.16-.96 0l-2.97-1.53a1 1 0 0 1-.55-.89v-2.92a1 1 0 0 1 .55-.89l2.97-1.53Z\"]);\nexport const Diversity24Regular = /*#__PURE__*/createFluentIcon('Diversity24Regular', \"24\", [\"M13 6a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3h-2a3 3 0 0 1-3-3V6ZM5.55 3.9c.6-1.2 2.3-1.2 2.9 0l2.37 4.71A1.64 1.64 0 0 1 9.37 11H4.63c-1.22 0-2-1.3-1.45-2.39L5.55 3.9Zm1.39.62c-.01 0-.03.01-.05.05L4.52 9.3a.14.14 0 0 0-.02.07.16.16 0 0 0 .07.13.1.1 0 0 0 .06.01h4.74a.1.1 0 0 0 .06-.01l.05-.05a.16.16 0 0 0 .02-.08c0-.01 0-.04-.02-.07L7.11 4.57c-.02-.04-.04-.05-.05-.05A.13.13 0 0 0 7 4.5c-.03 0-.05 0-.06.02ZM11 17a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-1.5 0a2.5 2.5 0 0 0-3.66-2.22l3.38 3.38c.18-.35.28-.74.28-1.16ZM7 19.5c.42 0 .81-.1 1.16-.28l-3.38-3.38A2.5 2.5 0 0 0 7 19.5Zm9.52-6.38c.3-.16.66-.16.96 0l2.97 1.53a1 1 0 0 1 .55.89v2.92a1 1 0 0 1-.55.89l-2.97 1.53c-.3.16-.66.16-.96 0l-2.97-1.53a1 1 0 0 1-.55-.89v-2.92a1 1 0 0 1 .55-.89l2.97-1.53Zm-2.02 2.73v2.3l2.5 1.3 2.5-1.3v-2.3l-2.5-1.3-2.5 1.3Z\"]);\nexport const Diversity28Filled = /*#__PURE__*/createFluentIcon('Diversity28Filled', \"28\", [\"M18 3a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h4a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-4ZM6.19 4.12a2.02 2.02 0 0 1 3.62 0l2.97 5.9A2.05 2.05 0 0 1 10.96 13H5.04a2.05 2.05 0 0 1-1.82-2.98l2.97-5.9ZM3.96 17.06c.4-.56.93-1.03 1.53-1.38l6.5 7.32c-.4.54-.9 1-1.49 1.33l-6.54-7.27ZM3 20a5 5 0 0 1 .23-1.51L9 24.9A5.02 5.02 0 0 1 3 20Zm10 0a5 5 0 0 1-.26 1.58L6.98 15.1a5.02 5.02 0 0 1 6 4.5v.02c.02.12.02.25.02.38Zm7.95-4.76a2.05 2.05 0 0 0-1.9 0l-3 1.57c-.65.34-1.05 1-1.05 1.73v2.92c0 .72.4 1.39 1.05 1.73l3 1.57c.6.32 1.3.32 1.9 0l3-1.57c.65-.34 1.05-1 1.05-1.73v-2.92c0-.72-.4-1.39-1.05-1.73l-3-1.57Z\"]);\nexport const Diversity28Regular = /*#__PURE__*/createFluentIcon('Diversity28Regular', \"28\", [\"M18 3a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h4a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-4ZM9.81 4.12a2.02 2.02 0 0 0-3.62 0l-2.97 5.9A2.05 2.05 0 0 0 5.04 13h5.92c1.52 0 2.5-1.62 1.82-2.98L9.8 4.12Zm-2.28.68c.2-.4.74-.4.94 0l2.97 5.9c.2.38-.1.8-.48.8H5.04a.55.55 0 0 1-.48-.8l2.97-5.9ZM3 20a4.98 4.98 0 0 1 5-5 5 5 0 1 1-5 5Zm8.45.62A3.52 3.52 0 0 0 8 16.5c-.21 0-.42.02-.62.05l4.07 4.07Zm-.65 1.48-4.9-4.9c-.28.2-.53.46-.74.75l4.9 4.89c.28-.21.53-.46.74-.74ZM8 23.5c.19 0 .37-.01.55-.04l-4-4.01A3.5 3.5 0 0 0 8 23.5Zm11.05-8.26c.6-.32 1.3-.32 1.9 0l3 1.57c.65.34 1.05 1 1.05 1.73v2.92c0 .72-.4 1.39-1.05 1.73l-3 1.57c-.6.32-1.3.32-1.9 0l-3-1.57c-.65-.34-1.05-1-1.05-1.73v-2.92c0-.72.4-1.39 1.05-1.73l3-1.57Zm1.2 1.32a.55.55 0 0 0-.5 0l-3 1.58a.45.45 0 0 0-.25.4v2.92c0 .15.08.31.25.4l3 1.58c.15.08.35.08.5 0l3-1.58a.45.45 0 0 0 .25-.4v-2.92c0-.15-.08-.31-.25-.4l-3-1.58Z\"]);\nexport const Diversity48Filled = /*#__PURE__*/createFluentIcon('Diversity48Filled', \"48\", [\"M31 6a5 5 0 0 0-5 5v6a5 5 0 0 0 5 5h6a5 5 0 0 0 5-5v-6a5 5 0 0 0-5-5h-6ZM16.9 7.8a3.24 3.24 0 0 0-5.8 0l-4.74 9.43A3.28 3.28 0 0 0 9.26 22h9.49c2.43 0 4-2.59 2.9-4.77L16.9 7.8ZM8.77 27.94a8.04 8.04 0 0 0-1.43 1.63l.04.05 11.05 11.04c.8-.53 1.5-1.2 2.05-1.97L9.56 27.34a7.76 7.76 0 0 0-.79.6Zm3.21-1.68 9.68 10.05a8 8 0 0 0-9.68-10.05Zm4 15.5-9.73-9.74a8.02 8.02 0 0 0 9.73 9.73Zm20-15.26a4.22 4.22 0 0 0-3.97 0l-3.9 2.08A3.95 3.95 0 0 0 26 32.06v3.88c0 1.45.81 2.78 2.12 3.48l3.9 2.08c1.23.67 2.73.67 3.97 0l3.9-2.08A3.95 3.95 0 0 0 42 35.94v-3.88c0-1.45-.81-2.78-2.12-3.48l-3.9-2.08Z\"]);\nexport const Diversity48Regular = /*#__PURE__*/createFluentIcon('Diversity48Regular', \"48\", [\"M10.78 29.54c-.48.35-.9.76-1.24 1.24l7.68 7.68c.48-.35.9-.76 1.24-1.24l-7.68-7.68Zm8.68 5.15a5.5 5.5 0 0 0-6.15-6.15l6.15 6.15Zm-4.77 4.77L8.54 33.3a5.5 5.5 0 0 0 6.15 6.15Zm-.02-30.52 4.75 9.43c.25.5-.11 1.1-.67 1.1H9.26a.76.76 0 0 1-.67-1.1l4.75-9.43a.75.75 0 0 1 1.33 0ZM38.7 30.8c.52.27.8.77.8 1.27v3.88c0 .5-.28 1-.8 1.27l-3.9 2.09c-.5.27-1.1.27-1.6 0l-3.9-2.09c-.52-.27-.8-.77-.8-1.27v-3.88c0-.5.28-1 .8-1.27l3.9-2.09c.5-.27 1.1-.27 1.6 0l3.9 2.09Zm-21.8-23a3.24 3.24 0 0 0-5.8 0l-4.74 9.44A3.28 3.28 0 0 0 9.26 22h9.49c2.43 0 4-2.59 2.9-4.77L16.9 7.8ZM31 6a5 5 0 0 0-5 5v6a5 5 0 0 0 5 5h6a5 5 0 0 0 5-5v-6a5 5 0 0 0-5-5h-6Zm-9 28a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm13.99-7.5a4.22 4.22 0 0 0-3.98 0l-3.9 2.08A3.95 3.95 0 0 0 26 32.06v3.88c0 1.45.81 2.78 2.12 3.48l3.9 2.08c1.23.67 2.73.67 3.97 0l3.9-2.08A3.95 3.95 0 0 0 42 35.94v-3.88c0-1.45-.81-2.78-2.12-3.48l-3.9-2.08Z\"]);\nexport const DividerShort16Filled = /*#__PURE__*/createFluentIcon('DividerShort16Filled', \"16\", [\"M7.75 3c.41 0 .75.34.75.75v8.5a.75.75 0 0 1-1.5 0v-8.5c0-.41.34-.75.75-.75Z\"]);\nexport const DividerShort16Regular = /*#__PURE__*/createFluentIcon('DividerShort16Regular', \"16\", [\"M7.5 3c.28 0 .5.22.5.5v9a.5.5 0 0 1-1 0v-9c0-.28.22-.5.5-.5Z\"]);\nexport const DividerShort20Filled = /*#__PURE__*/createFluentIcon('DividerShort20Filled', \"20\", [\"M9.75 3c.41 0 .75.34.75.75v12.5a.75.75 0 0 1-1.5 0V3.75c0-.41.34-.75.75-.75Z\"]);\nexport const DividerShort20Regular = /*#__PURE__*/createFluentIcon('DividerShort20Regular', \"20\", [\"M9.5 3c.28 0 .5.22.5.5v13a.5.5 0 0 1-1 0v-13c0-.28.22-.5.5-.5Z\"]);\nexport const DividerShort24Filled = /*#__PURE__*/createFluentIcon('DividerShort24Filled', \"24\", [\"M11 5v14a1 1 0 1 0 2 0V5a1 1 0 1 0-2 0Z\"]);\nexport const DividerShort24Regular = /*#__PURE__*/createFluentIcon('DividerShort24Regular', \"24\", [\"M11.25 4.75v14.5a.75.75 0 0 0 1.5 0V4.75a.75.75 0 0 0-1.5 0Z\"]);\nexport const DividerTall16Filled = /*#__PURE__*/createFluentIcon('DividerTall16Filled', \"16\", [\"M7.75 1c.41 0 .75.34.75.75v12.5a.75.75 0 0 1-1.5 0V1.75c0-.41.34-.75.75-.75Z\"]);\nexport const DividerTall16Regular = /*#__PURE__*/createFluentIcon('DividerTall16Regular', \"16\", [\"M7.5 1c.28 0 .5.22.5.5v13a.5.5 0 0 1-1 0v-13c0-.28.22-.5.5-.5Z\"]);\nexport const DividerTall20Filled = /*#__PURE__*/createFluentIcon('DividerTall20Filled', \"20\", [\"M9.75 1c.41 0 .75.34.75.75v16.5a.75.75 0 0 1-1.5 0V1.75c0-.41.34-.75.75-.75Z\"]);\nexport const DividerTall20Regular = /*#__PURE__*/createFluentIcon('DividerTall20Regular', \"20\", [\"M9.5 1c.28 0 .5.22.5.5v17a.5.5 0 0 1-1 0v-17c0-.28.22-.5.5-.5Z\"]);\nexport const DividerTall24Filled = /*#__PURE__*/createFluentIcon('DividerTall24Filled', \"24\", [\"M11 3v18a1 1 0 1 0 2 0V3a1 1 0 1 0-2 0Z\"]);\nexport const DividerTall24Regular = /*#__PURE__*/createFluentIcon('DividerTall24Regular', \"24\", [\"M11.25 2.75v18.5a.75.75 0 0 0 1.5 0V2.75a.75.75 0 0 0-1.5 0Z\"]);\nexport const Dock20Filled = /*#__PURE__*/createFluentIcon('Dock20Filled', \"20\", [\"M10.53 3.22a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v6.69a.75.75 0 0 0 1.5 0V5.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5ZM3.5 10.5a1 1 0 0 1 1-1h2.75a.75.75 0 0 0 0-1.5H4.5A2.5 2.5 0 0 0 2 10.5v3A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-3A2.5 2.5 0 0 0 15.5 8h-2.75a.75.75 0 0 0 0 1.5h2.75a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1v-3Z\"]);\nexport const Dock20Regular = /*#__PURE__*/createFluentIcon('Dock20Regular', \"20\", [\"M10.35 3.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L9.5 4.71v7.79a.5.5 0 0 0 1 0V4.7l2.15 2.15a.5.5 0 0 0 .7-.7l-3-3ZM3 10.5C3 9.67 3.67 9 4.5 9h3a.5.5 0 0 0 0-1h-3A2.5 2.5 0 0 0 2 10.5v3A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-3A2.5 2.5 0 0 0 15.5 8h-3a.5.5 0 0 0 0 1h3c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-3Z\"]);\nexport const Dock24Filled = /*#__PURE__*/createFluentIcon('Dock24Filled', \"24\", [\"M12.7 3.3a1 1 0 0 0-1.4 0L7.8 6.8a1 1 0 0 0 1.4 1.4L11 6.42V15a1 1 0 1 0 2 0V6.41l1.8 1.8a1 1 0 1 0 1.4-1.42l-3.5-3.5ZM4 12.74c0-.41.34-.75.75-.75H9a1 1 0 1 0 0-2H4.75A2.75 2.75 0 0 0 2 12.75v4.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25v-4.5A2.75 2.75 0 0 0 19.25 10H15a1 1 0 1 0 0 2h4.25c.41 0 .75.34.75.75v4.5c0 .41-.34.75-.75.75H4.75a.75.75 0 0 1-.75-.75v-4.5Z\"]);\nexport const Dock24Regular = /*#__PURE__*/createFluentIcon('Dock24Regular', \"24\", [\"M4.8 10h4.7a.75.75 0 0 1 .1 1.49H4.8c-.68 0-1.2.46-1.27 1v.12l-.03 4.78c0 .56.49 1.04 1.14 1.1H19.23c.67 0 1.2-.44 1.26-1l.01-.1.02-4.78c0-.56-.49-1.05-1.14-1.1l-.13-.01h-4.7a.75.75 0 0 1-.1-1.5h4.8a2.7 2.7 0 0 1 2.77 2.44v.17L22 17.39c0 1.4-1.16 2.52-2.6 2.6H4.77a2.7 2.7 0 0 1-2.76-2.44L2 17.38l.02-4.77c0-1.4 1.16-2.52 2.6-2.6l.17-.01h4.7-4.7Zm7.65-6.85.08.07 3.93 3.92a.75.75 0 0 1-.98 1.14l-.09-.07-2.65-2.66v9.7a.75.75 0 0 1-1.5 0V5.57L8.61 8.2a.75.75 0 0 1-.98.07l-.09-.07a.75.75 0 0 1-.07-.98l.07-.09 3.93-3.92a.75.75 0 0 1 .98-.07Z\"]);\nexport const DockRow20Filled = /*#__PURE__*/createFluentIcon('DockRow20Filled', \"20\", [\"M3 4c-.83 0-1.5.67-1.5 1.5v2C1.5 8.33 2.17 9 3 9h2c.83 0 1.5-.67 1.5-1.5v-2C6.5 4.67 5.83 4 5 4H3Zm0 6c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H3Zm4.5-4.5C7.5 4.67 8.17 4 9 4h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H9a1.5 1.5 0 0 1-1.5-1.5v-2ZM9 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H9Zm4.5-4.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5h-2a1.5 1.5 0 0 1-1.5-1.5v-2ZM15 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5h-2Z\"]);\nexport const DockRow20Regular = /*#__PURE__*/createFluentIcon('DockRow20Regular', \"20\", [\"M3 4c-.83 0-1.5.67-1.5 1.5v2C1.5 8.33 2.17 9 3 9h2c.83 0 1.5-.67 1.5-1.5v-2C6.5 4.67 5.83 4 5 4H3Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2A.5.5 0 0 1 5 8H3a.5.5 0 0 1-.5-.5v-2ZM3 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H3Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5v-2Zm5-6C7.5 4.67 8.17 4 9 4h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H9a1.5 1.5 0 0 1-1.5-1.5v-2ZM9 5a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-2A.5.5 0 0 0 11 5H9Zm0 5c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H9Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5v-2Zm5-6c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5h-2a1.5 1.5 0 0 1-1.5-1.5v-2ZM15 5a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-2A.5.5 0 0 0 17 5h-2Zm0 5c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5h-2Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-2Z\"]);\nexport const DockRow24Filled = /*#__PURE__*/createFluentIcon('DockRow24Filled', \"24\", [\"M20.25 12.03c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm-14 0c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm0-7c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm-14 0C7.22 5.03 8 5.8 8 6.78v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.92.7-1.67 1.6-1.74l.15-.01h2.5Z\"]);\nexport const DockRow24Regular = /*#__PURE__*/createFluentIcon('DockRow24Regular', \"24\", [\"M20.25 12c.97 0 1.75.78 1.75 1.74v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.96.78-1.75 1.75-1.75h2.5Zm-14 0c.97 0 1.75.78 1.75 1.74v2.5C8 17.21 7.22 18 6.25 18h-2.5C2.78 18 2 17.21 2 16.24v-2.5c0-.96.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.74v2.5c0 .97-.78 1.75-1.75 1.75h-2.5C9.78 18 9 17.21 9 16.24v-2.5c0-.96.78-1.75 1.75-1.75h2.5Zm7 1.5h-2.5a.25.25 0 0 0-.25.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm-14 0h-2.5a.25.25 0 0 0-.25.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0h-2.5a.25.25 0 0 0-.25.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm0-8.5c.97 0 1.75.78 1.75 1.74v2.5c0 .97-.78 1.75-1.75 1.75h-2.5C9.78 11 9 10.21 9 9.24v-2.5C9 5.78 9.78 5 10.75 5h2.5Zm7 0c.97 0 1.75.78 1.75 1.74v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5c0-.96.78-1.75 1.75-1.75h2.5Zm-14 0C7.22 5 8 5.77 8 6.73v2.5C8 10.21 7.22 11 6.25 11h-2.5C2.78 11 2 10.21 2 9.24v-2.5c0-.92.7-1.67 1.6-1.74h2.65Zm7 1.5h-2.5a.25.25 0 0 0-.25.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0h-2.5a.25.25 0 0 0-.25.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm-14 0H3.69a.25.25 0 0 0-.19.24v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Z\"]);\nexport const Doctor12Filled = /*#__PURE__*/createFluentIcon('Doctor12Filled', \"12\", [\"M5 2a1 1 0 0 0-1 1v1H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h1v1a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V8h1a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H8V3a1 1 0 0 0-1-1H5Z\"]);\nexport const Doctor12Regular = /*#__PURE__*/createFluentIcon('Doctor12Regular', \"12\", [\"M4 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v1h1a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H8v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h1V3Zm3 0H5v1.5a.5.5 0 0 1-.5.5H3v2h1.5c.28 0 .5.22.5.5V9h2V7.5c0-.28.22-.5.5-.5H9V5H7.5a.5.5 0 0 1-.5-.5V3Z\"]);\nexport const Doctor16Filled = /*#__PURE__*/createFluentIcon('Doctor16Filled', \"16\", [\"M6.5 1.77c-.83 0-1.5.67-1.5 1.5v1.75H3.5c-.83 0-1.5.67-1.5 1.5V9.5c0 .83.67 1.5 1.5 1.5H5v1.5c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5V11h1.5c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H11V3.27c0-.83-.67-1.5-1.5-1.5h-3Z\"]);\nexport const Doctor16Regular = /*#__PURE__*/createFluentIcon('Doctor16Regular', \"16\", [\"M6.5 2.77a.5.5 0 0 0-.5.5v2.25a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0-.5.5V9.5c0 .28.22.5.5.5h2c.28 0 .5.22.5.5v2c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 1-.5-.5V3.27a.5.5 0 0 0-.5-.5h-3Zm-1.5.5c0-.83.67-1.5 1.5-1.5h3c.83 0 1.5.67 1.5 1.5V5h1.5c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5H11v1.5c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 5 12.5V11H3.5A1.5 1.5 0 0 1 2 9.5V6.52c0-.83.67-1.5 1.5-1.5H5V3.27Z\"]);\nexport const Doctor20Filled = /*#__PURE__*/createFluentIcon('Doctor20Filled', \"20\", [\"M8.5 3C7.67 3 7 3.67 7 4.5V7H4.5C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5H7v2.5c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5V13h2.5c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H13V4.5c0-.83-.67-1.5-1.5-1.5h-3Z\"]);\nexport const Doctor20Regular = /*#__PURE__*/createFluentIcon('Doctor20Regular', \"20\", [\"M8.5 4a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3c.28 0 .5.22.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3c0-.28.22-.5.5-.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 0-.5-.5h-3ZM7 4.5C7 3.67 7.67 3 8.5 3h3c.83 0 1.5.67 1.5 1.5V7h2.5c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5H13v2.5c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 7 15.5V13H4.5A1.5 1.5 0 0 1 3 11.5v-3C3 7.67 3.67 7 4.5 7H7V4.5Z\"]);\nexport const Doctor24Filled = /*#__PURE__*/createFluentIcon('Doctor24Filled', \"24\", [\"M10 3.25c-.97 0-1.75.78-1.75 1.75v3.25H5c-.97 0-1.75.78-1.75 1.75v4c0 .97.78 1.75 1.75 1.75h3.25V19c0 .97.78 1.75 1.75 1.75h4c.97 0 1.75-.78 1.75-1.75v-3.25H19c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75h-3.25V5c0-.97-.78-1.75-1.75-1.75h-4Z\"]);\nexport const Doctor24Regular = /*#__PURE__*/createFluentIcon('Doctor24Regular', \"24\", [\"M9.75 4.5a.25.25 0 0 0-.25.25v4c0 .41-.34.75-.75.75h-4a.25.25 0 0 0-.25.25v4.5c0 .14.11.25.25.25h4c.41 0 .75.34.75.75v4c0 .14.11.25.25.25h4.5c.14 0 .25-.11.25-.25v-4c0-.41.34-.75.75-.75h4c.14 0 .25-.11.25-.25v-4.5a.25.25 0 0 0-.25-.25h-4a.75.75 0 0 1-.75-.75v-4a.25.25 0 0 0-.25-.25h-4.5ZM8 4.75C8 3.78 8.78 3 9.75 3h4.5c.97 0 1.75.78 1.75 1.75V8h3.25c.97 0 1.75.78 1.75 1.75v4.5c0 .97-.78 1.75-1.75 1.75H16v3.25c0 .97-.78 1.75-1.75 1.75h-4.5C8.78 21 8 20.22 8 19.25V16H4.75C3.78 16 3 15.22 3 14.25v-4.5C3 8.78 3.78 8 4.75 8H8V4.75Z\"]);\nexport const Doctor28Filled = /*#__PURE__*/createFluentIcon('Doctor28Filled', \"28\", [\"M10.75 3C9.78 3 9 3.78 9 4.75V9H4.75C3.78 9 3 9.78 3 10.75v6.5c0 .97.78 1.75 1.75 1.75H9v4.25c0 .97.78 1.75 1.75 1.75h6.5c.97 0 1.75-.78 1.75-1.75V19h4.25c.97 0 1.75-.78 1.75-1.75v-6.5C25 9.78 24.22 9 23.25 9H19V4.75C19 3.78 18.22 3 17.25 3h-6.5Z\"]);\nexport const Doctor28Regular = /*#__PURE__*/createFluentIcon('Doctor28Regular', \"28\", [\"M10.75 4.5a.25.25 0 0 0-.25.25v5c0 .41-.34.75-.75.75h-5a.25.25 0 0 0-.25.25v6.5c0 .14.11.25.25.25h5c.41 0 .75.34.75.75v5c0 .14.11.25.25.25h6.5c.14 0 .25-.11.25-.25v-5c0-.41.34-.75.75-.75h5c.14 0 .25-.11.25-.25v-6.5a.25.25 0 0 0-.25-.25h-5a.75.75 0 0 1-.75-.75v-5a.25.25 0 0 0-.25-.25h-6.5ZM9 4.75C9 3.78 9.78 3 10.75 3h6.5c.97 0 1.75.78 1.75 1.75V9h4.25c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H19v4.25c0 .97-.78 1.75-1.75 1.75h-6.5C9.78 25 9 24.22 9 23.25V19H4.75C3.78 19 3 18.22 3 17.25v-6.5C3 9.78 3.78 9 4.75 9H9V4.75Z\"]);\nexport const Doctor48Filled = /*#__PURE__*/createFluentIcon('Doctor48Filled', \"48\", [\"M18.25 6C17.01 6 16 7 16 8.25V16H8.25C7.01 16 6 17 6 18.25v11.5C6 30.99 7 32 8.25 32H16v7.75c0 1.24 1 2.25 2.25 2.25h11.5c1.24 0 2.25-1 2.25-2.25V32h7.75c1.24 0 2.25-1 2.25-2.25v-11.5c0-1.24-1-2.25-2.25-2.25H32V8.25C32 7.01 31 6 29.75 6h-11.5Z\"]);\nexport const Doctor48Regular = /*#__PURE__*/createFluentIcon('Doctor48Regular', \"48\", [\"M18.5 8.5v8.75c0 .69-.56 1.25-1.25 1.25H8.5v11h8.75c.69 0 1.25.56 1.25 1.25v8.75h11v-8.75c0-.69.56-1.25 1.25-1.25h8.75v-11h-8.75c-.69 0-1.25-.56-1.25-1.25V8.5h-11ZM16 8.25C16 7.01 17 6 18.25 6h11.5C30.99 6 32 7 32 8.25V16h7.75c1.24 0 2.25 1 2.25 2.25v11.5c0 1.24-1 2.25-2.25 2.25H32v7.75c0 1.24-1 2.25-2.25 2.25h-11.5C17.01 42 16 41 16 39.75V32H8.25C7.01 32 6 31 6 29.75v-11.5C6 17.01 7 16 8.25 16H16V8.25Z\"]);\nexport const Document10016Filled = /*#__PURE__*/createFluentIcon('Document10016Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5.31-.42.5-.94.5-1.5v-2A2.5 2.5 0 0 0 7.5 10a2.5 2.5 0 0 0-3.78-.25 1.66 1.66 0 0 0-.72-.6V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM5.5 10c-.83 0-1.5.67-1.5 1.5v2a1.5 1.5 0 0 0 3 0v-2c0-.83-.67-1.5-1.5-1.5ZM5 11.5a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0v-2Zm3 0a1.5 1.5 0 0 1 3 0v2a1.5 1.5 0 0 1-3 0v-2Zm1.5-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5ZM3 10.65c0-.2-.1-.35-.2-.45a.73.73 0 0 0-.3-.16c-.16-.05-.5-.07-.73.22-.2.26-.51.57-.98.78a.5.5 0 0 0 .42.92c.3-.15.57-.32.79-.5v3.04a.5.5 0 0 0 1 0v-3.85Z\"]);\nexport const Document10016Regular = /*#__PURE__*/createFluentIcon('Document10016Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v6.16a1.7 1.7 0 0 1 .72.59c.09-.1.18-.18.28-.25V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7.5c0 .53-.16 1.02-.44 1.42A2 2 0 0 0 13 13V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM3 10.65c0-.2-.1-.35-.2-.45a.73.73 0 0 0-.3-.16c-.16-.05-.5-.07-.73.22-.2.26-.51.57-.98.78a.5.5 0 0 0 .42.92c.3-.15.57-.32.79-.5v3.04a.5.5 0 0 0 1 0v-3.85Zm1 .85a1.5 1.5 0 0 1 3 0v2a1.5 1.5 0 0 1-3 0v-2Zm1.5-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm4-1c-.83 0-1.5.67-1.5 1.5v2a1.5 1.5 0 0 0 3 0v-2c0-.83-.67-1.5-1.5-1.5ZM9 11.5a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0v-2Z\"]);\nexport const Document10020Filled = /*#__PURE__*/createFluentIcon('Document10020Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v8.26a2.99 2.99 0 0 1 4.5.58A3 3 0 0 1 14 14v2c0 .77-.29 1.47-.76 2h1.26c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm-8 6.1c0-.2-.1-.35-.2-.44a.64.64 0 0 0-.3-.14c-.13-.03-.5-.03-.67.32-.2.41-.54.93-1.07 1.22a.5.5 0 1 0 .48.88c.3-.17.55-.37.76-.6v3.66a.5.5 0 0 0 1 0v-4.9ZM4 14a2 2 0 1 1 4 0v2a2 2 0 1 1-4 0v-2Zm2-1a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm5-1a2 2 0 0 0-2 2v2a2 2 0 1 0 4 0v-2a2 2 0 0 0-2-2Zm-1 2a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Z\"]);\nexport const Document10020Regular = /*#__PURE__*/createFluentIcon('Document10020Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-.76a3 3 0 0 0 .59-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v7.17a3 3 0 0 0-1 .6V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5ZM6 12a2 2 0 0 0-2 2v2a2 2 0 1 0 4 0v-2a2 2 0 0 0-2-2Zm-1 2a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm-2-1.4c0-.2-.1-.35-.2-.44a.64.64 0 0 0-.3-.14c-.13-.03-.5-.03-.67.32-.2.41-.54.93-1.07 1.22a.5.5 0 1 0 .48.88c.3-.17.55-.37.76-.6v3.66a.5.5 0 0 0 1 0v-4.9ZM9 14a2 2 0 1 1 4 0v2a2 2 0 1 1-4 0v-2Zm2-1a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Z\"]);\nexport const Document10024Filled = /*#__PURE__*/createFluentIcon('Document10024Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v10.23a2 2 0 0 1 .86.97 3.5 3.5 0 0 1 5.64.5 3.5 3.5 0 0 1 6.5 1.8v2c0 .98-.4 1.86-1.05 2.5H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm-6 7A2.5 2.5 0 0 0 5 17.5v2a2.5 2.5 0 0 0 5 0v-2A2.5 2.5 0 0 0 7.5 15Zm-1 2.5a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm4.5 0a2.5 2.5 0 0 1 5 0v2a2.5 2.5 0 0 1-5 0v-2Zm2.5-1a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1ZM4 15.94a1 1 0 0 0-.74-.95c-.31-.09-.8-.06-1.11.37-.32.44-.76.94-1.28 1.24a.75.75 0 0 0 .76 1.3c.32-.2.61-.43.87-.67v4.02a.75.75 0 0 0 1.5 0v-5.31Z\"]);\nexport const Document10024Regular = /*#__PURE__*/createFluentIcon('Document10024Regular', \"24\", [\"M4 4c0-1.1.9-2 2-2h6.17a2 2 0 0 1 1.42.59L19.4 8.4A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-2.05c.42-.41.73-.92.9-1.5H18a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v10.63c-.24.16-.45.35-.64.57a2 2 0 0 0-.86-.97V4Zm9.5.62V8c0 .28.22.5.5.5h3.38L13.5 4.62ZM4 15.94a1 1 0 0 0-.74-.95c-.31-.09-.8-.06-1.11.37-.32.44-.76.94-1.28 1.24a.75.75 0 0 0 .76 1.3c.32-.2.61-.43.87-.67v4.02a.75.75 0 0 0 1.5 0v-5.31Zm1 1.56a2.5 2.5 0 0 1 5 0v2a2.5 2.5 0 1 1-5 0v-2Zm2.5-1a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm6-1.5a2.5 2.5 0 0 0-2.5 2.5v2a2.5 2.5 0 0 0 5 0v-2a2.5 2.5 0 0 0-2.5-2.5Zm-1 2.5a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Z\"]);\nexport const Document16Filled = /*#__PURE__*/createFluentIcon('Document16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 13.5v-11C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25Z\"]);\nexport const Document16Regular = /*#__PURE__*/createFluentIcon('Document16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5ZM4 3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3Zm7.8 2H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5Z\"]);\nexport const Document20Filled = /*#__PURE__*/createFluentIcon('Document20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5v-13C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Z\"]);\nexport const Document20Regular = /*#__PURE__*/createFluentIcon('Document20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6ZM5 4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm9.8 3h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Z\"]);\nexport const Document24Filled = /*#__PURE__*/createFluentIcon('Document24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Z\"]);\nexport const Document24Regular = /*#__PURE__*/createFluentIcon('Document24Regular', \"24\", [\"M6 2a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6A2 2 0 0 0 12.17 2H6Zm-.5 2c0-.28.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4Zm11.88 4.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Z\"]);\nexport const Document28Filled = /*#__PURE__*/createFluentIcon('Document28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v11.6a2.4 2.4 0 0 1-2.4 2.4H6.4A2.4 2.4 0 0 1 4 23.6V4.4A2.4 2.4 0 0 1 6.4 2H14Z\", \"M15.5 2.48V10c0 .28.22.5.5.5h7.5c-.09-.13-.2-.25-.3-.37L15.75 2.7a2.4 2.4 0 0 0-.26-.22Z\"]);\nexport const Document28Regular = /*#__PURE__*/createFluentIcon('Document28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v19.2A2.4 2.4 0 0 0 6.4 26h15.2a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm-.9 2.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9H6.4a.9.9 0 0 1-.9-.9V4.4Zm16.44 6.1H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44Z\"]);\nexport const Document32Filled = /*#__PURE__*/createFluentIcon('Document32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12Z\"]);\nexport const Document32Regular = /*#__PURE__*/createFluentIcon('Document32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v22a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8ZM7 5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V5Zm17.59 5H20a1 1 0 0 1-1-1V4.41L24.59 10Z\"]);\nexport const Document48Filled = /*#__PURE__*/createFluentIcon('Document48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H11a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46Z\"]);\nexport const Document48Regular = /*#__PURE__*/createFluentIcon('Document48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25v31.5C8 42.1 9.9 44 12.25 44h23.5C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26ZM10.5 8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75h-23.5c-.97 0-1.75-.78-1.75-1.75V8.25Zm24.98 8.25h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98Z\"]);\nexport const DocumentAdd16Filled = /*#__PURE__*/createFluentIcon('DocumentAdd16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25Zm0 9.25a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 0 0 0-1H6V8.5Z\"]);\nexport const DocumentAdd16Regular = /*#__PURE__*/createFluentIcon('DocumentAdd16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM10 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 0 0 0-1H6V8.5Z\"]);\nexport const DocumentAdd20Filled = /*#__PURE__*/createFluentIcon('DocumentAdd20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const DocumentAdd20Regular = /*#__PURE__*/createFluentIcon('DocumentAdd20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const DocumentAdd24Filled = /*#__PURE__*/createFluentIcon('DocumentAdd24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.5 15a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 18v2.5a.5.5 0 1 1-1 0V18H3.5a.5.5 0 0 1 0-1H6v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H7Z\"]);\nexport const DocumentAdd24Regular = /*#__PURE__*/createFluentIcon('DocumentAdd24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM12 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 18v2.5a.5.5 0 1 1-1 0V18H3.5a.5.5 0 0 1 0-1H6v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H7Z\"]);\nexport const DocumentAdd28Filled = /*#__PURE__*/createFluentIcon('DocumentAdd28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v12a2 2 0 0 1-2 2h-9.4A7.5 7.5 0 0 0 4 13.87V4c0-1.1.9-2 2-2h8Zm1.5.5V10c0 .28.22.5.5.5h7.5l-8-8Zm-1.5 18a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20H3.5a.5.5 0 0 0 0 1H7v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H8v-3.5Z\"]);\nexport const DocumentAdd28Regular = /*#__PURE__*/createFluentIcon('DocumentAdd28Regular', \"28\", [\"M22.45 23.6c0 .5-.4.9-.9.9h-7.7A7.54 7.54 0 0 1 12.6 26h8.95a2.4 2.4 0 0 0 2.4-2.4V11.4a2.4 2.4 0 0 0-.7-1.7l-7-7-.16-.14-.06-.04A2.39 2.39 0 0 0 14.55 2H6.4A2.4 2.4 0 0 0 4 4.4v9.47c.47-.25.97-.46 1.5-.6V4.4c0-.5.4-.9.9-.9h7.55V10c0 1.1.9 2 2 2h6.5v11.6Zm-7-19.58 6.48 6.48h-5.98a.5.5 0 0 1-.5-.5V4.02ZM14 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20H3.5a.5.5 0 0 0 0 1H7v3.5a.5.5 0 1 0 1 0V21h3.5a.5.5 0 1 0 0-1H8v-3.5Z\"]);\nexport const DocumentAdd48Filled = /*#__PURE__*/createFluentIcon('DocumentAdd48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H23.25A13 13 0 0 0 8 23V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM24 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-10-7a1 1 0 1 0-2 0v6H6a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6v-6Z\"]);\nexport const DocumentAdd48Regular = /*#__PURE__*/createFluentIcon('DocumentAdd48Regular', \"48\", [\"M10.5 8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H24.26c-.52.9-1.16 1.75-1.88 2.5h13.37C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26A4.25 4.25 0 0 0 8 8.25V23c.8-.34 1.63-.6 2.5-.76V8.25Zm24.98 8.25h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM24 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-10-7a1 1 0 1 0-2 0v6H6a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6v-6Z\"]);\nexport const DocumentArrowDown16Filled = /*#__PURE__*/createFluentIcon('DocumentArrowDown16Filled', \"16\", [\"M9 1H6a2 2 0 0 0-2 2v2.2A5.5 5.5 0 0 1 8.67 15H12a2 2 0 0 0 2-2V6h-3.5A1.5 1.5 0 0 1 9 4.5V1Zm5 4h-3.5a.5.5 0 0 1-.5-.5V1l4 4Zm-4 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L6 11.29V8.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentArrowDown16Regular = /*#__PURE__*/createFluentIcon('DocumentArrowDown16Regular', \"16\", [\"M4 3c0-1.1.9-2 2-2h3.58c.4 0 .78.16 1.06.44l2.92 2.92c.28.28.44.66.44 1.06V13a2 2 0 0 1-2 2H8.67c.4-.29.76-.62 1.07-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v2.02c-.34.03-.68.1-1 .19V3Zm6-.79v2.3c0 .27.22.5.5.5h2.3L10 2.2Zm0 8.29a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L6 11.29V8.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentArrowDown20Filled = /*#__PURE__*/createFluentIcon('DocumentArrowDown20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-2.35-4.15a.5.5 0 0 1 .7-.7L5 15.29V12.5a.5.5 0 0 1 1 0v2.8l1.15-1.15a.5.5 0 0 1 .7.7l-2 2a.5.5 0 0 1-.35.15.5.5 0 0 1-.35-.14l-2-2Z\"]);\nexport const DocumentArrowDown20Regular = /*#__PURE__*/createFluentIcon('DocumentArrowDown20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-2.35-4.15a.5.5 0 0 1 .7-.7L5 15.29V12.5a.5.5 0 0 1 1 0v2.8l1.15-1.15a.5.5 0 0 1 .7.7l-2 2a.5.5 0 0 1-.35.15.5.5 0 0 1-.35-.14l-2-2Z\"]);\nexport const DocumentArrowLeft16Filled = /*#__PURE__*/createFluentIcon('DocumentArrowLeft16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25Zm0 9.25a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 11H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 1 0-.7-.7l-2 2Z\"]);\nexport const DocumentArrowLeft16Regular = /*#__PURE__*/createFluentIcon('DocumentArrowLeft16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM10 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 11H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 1 0-.7-.7l-2 2Z\"]);\nexport const DocumentArrowLeft20Filled = /*#__PURE__*/createFluentIcon('DocumentArrowLeft20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DocumentArrowLeft20Regular = /*#__PURE__*/createFluentIcon('DocumentArrowLeft20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DocumentArrowLeft24Filled = /*#__PURE__*/createFluentIcon('DocumentArrowLeft24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.5 15a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1H4.7l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L4.71 18H9.5Z\"]);\nexport const DocumentArrowLeft24Regular = /*#__PURE__*/createFluentIcon('DocumentArrowLeft24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.5.5a.5.5 0 0 0 0-1H4.7l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L4.71 18H9.5Z\"]);\nexport const DocumentArrowLeft28Filled = /*#__PURE__*/createFluentIcon('DocumentArrowLeft28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v12a2 2 0 0 1-2 2h-9.4A7.5 7.5 0 0 0 4 13.87V4c0-1.1.9-2 2-2h8Zm1.5.5V10c0 .28.22.5.5.5h7.5l-8-8Zm-1.5 18a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.5.5a.5.5 0 0 0 0-1H4.7l2.15-2.15a.5.5 0 0 0-.7-.7l-3 3a.5.5 0 0 0-.15.35c0 .13.05.26.15.35l3 3a.5.5 0 0 0 .7-.7L4.71 21h6.79Z\"]);\nexport const DocumentArrowLeft28Regular = /*#__PURE__*/createFluentIcon('DocumentArrowLeft28Regular', \"28\", [\"M22.45 23.6c0 .5-.4.9-.9.9h-7.7A7.54 7.54 0 0 1 12.6 26h8.95a2.4 2.4 0 0 0 2.4-2.4V11.4a2.4 2.4 0 0 0-.7-1.7l-7-7-.16-.14-.06-.04A2.39 2.39 0 0 0 14.55 2H6.4A2.4 2.4 0 0 0 4 4.4v9.47c.47-.25.97-.46 1.5-.6V4.4c0-.5.4-.9.9-.9h7.55V10c0 1.1.9 2 2 2h6.5v11.6Zm-7-19.58 6.48 6.48h-5.98a.5.5 0 0 1-.5-.5V4.02ZM14 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.5.5a.5.5 0 1 0 0-1H4.7l2.15-2.15a.5.5 0 1 0-.7-.7l-3 3a.5.5 0 0 0-.15.35c0 .13.05.26.15.35l3 3a.5.5 0 0 0 .7-.7L4.71 21h6.79Z\"]);\nexport const DocumentArrowLeft48Filled = /*#__PURE__*/createFluentIcon('DocumentArrowLeft48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H23.25A13 13 0 0 0 8 23V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM24 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-12.3-5.7a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L8.42 36H20a1 1 0 1 0 0-2H8.41l3.3-3.3a1 1 0 0 0 0-1.4Z\"]);\nexport const DocumentArrowLeft48Regular = /*#__PURE__*/createFluentIcon('DocumentArrowLeft48Regular', \"48\", [\"M10.5 8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H24.26c-.52.9-1.16 1.75-1.88 2.5h13.37C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26A4.25 4.25 0 0 0 8 8.25V23c.8-.34 1.63-.6 2.5-.76V8.25Zm24.98 8.25h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM24 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-12.3-5.7a1 1 0 0 0-1.4 0l-5 5a1 1 0 0 0 0 1.4l5 5a1 1 0 0 0 1.4-1.4L8.42 36H20a1 1 0 1 0 0-2H8.41l3.3-3.3a1 1 0 0 0 0-1.4Z\"]);\nexport const DocumentArrowRight20Filled = /*#__PURE__*/createFluentIcon('DocumentArrowRight20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L6.29 15H3.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DocumentArrowRight20Regular = /*#__PURE__*/createFluentIcon('DocumentArrowRight20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L6.29 15H3.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DocumentArrowRight24Filled = /*#__PURE__*/createFluentIcon('DocumentArrowRight24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Z\", \"M13.5 2.5V8c0 .28.22.5.5.5h5.5l-6-6Z\", \"M12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L8.29 17H3.5Z\"]);\nexport const DocumentArrowRight24Regular = /*#__PURE__*/createFluentIcon('DocumentArrowRight24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Z\", \"M12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L8.29 17H3.5Z\"]);\nexport const DocumentArrowUp16Filled = /*#__PURE__*/createFluentIcon('DocumentArrowUp16Filled', \"16\", [\"M9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v2.7A5.5 5.5 0 0 1 8.66 15h3.84c.83 0 1.5-.67 1.5-1.5V6h-3.5A1.5 1.5 0 0 1 9 4.5Zm1 0V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5ZM5.5 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm2.35-4.85a.5.5 0 0 1-.7.7L6 9.71v2.79a.5.5 0 0 1-1 0V9.7l-1.15 1.15a.5.5 0 0 1-.7-.7l2-2A.5.5 0 0 1 5.5 8a.5.5 0 0 1 .35.14l2 2Z\"]);\nexport const DocumentArrowUp16Regular = /*#__PURE__*/createFluentIcon('DocumentArrowUp16Regular', \"16\", [\"M4 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H8.66c.4-.28.77-.62 1.08-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v2.02c-.34.03-.68.1-1 .19V3Zm6.5 2h2.3L10 2.2v2.3c0 .28.22.5.5.5Zm-5 10a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm2.35-4.85a.5.5 0 0 1-.7.7L6 9.71v2.79a.5.5 0 0 1-1 0V9.7l-1.15 1.15a.5.5 0 0 1-.7-.7l2-2A.5.5 0 0 1 5.5 8a.5.5 0 0 1 .35.14l2 2Z\"]);\nexport const DocumentArrowUp20Filled = /*#__PURE__*/createFluentIcon('DocumentArrowUp20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm2.35-4.85a.5.5 0 1 1-.7.7L6 13.71v2.79a.5.5 0 0 1-1 0v-2.8l-1.15 1.15a.5.5 0 1 1-.7-.7l2-2A.5.5 0 0 1 5.5 12a.5.5 0 0 1 .35.14l2 2Z\"]);\nexport const DocumentArrowUp20Regular = /*#__PURE__*/createFluentIcon('DocumentArrowUp20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm2.35-4.85a.5.5 0 1 1-.7.7L6 13.71v2.79a.5.5 0 0 1-1 0v-2.8l-1.15 1.15a.5.5 0 1 1-.7-.7l2-2A.5.5 0 0 1 5.5 12a.5.5 0 0 1 .35.14l2 2Z\"]);\nexport const DocumentBorder20Filled = /*#__PURE__*/createFluentIcon('DocumentBorder20Filled', \"20\", [\"M6.5 2A2.5 2.5 0 0 0 4 4.5v11A2.5 2.5 0 0 0 6.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 13.5 2h-7ZM5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5v11c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5v-11ZM6.75 4a.75.75 0 0 0-.75.75v10.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75V4.75a.75.75 0 0 0-.75-.75h-6.5Z\"]);\nexport const DocumentBorder20Regular = /*#__PURE__*/createFluentIcon('DocumentBorder20Regular', \"20\", [\"M6.5 2A2.5 2.5 0 0 0 4 4.5v11A2.5 2.5 0 0 0 6.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 13.5 2h-7ZM5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5v11c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5v-11ZM6.75 4a.75.75 0 0 0-.75.75v10.5c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75V4.75a.75.75 0 0 0-.75-.75h-6.5ZM7 15V5h6v10H7Z\"]);\nexport const DocumentBorder24Filled = /*#__PURE__*/createFluentIcon('DocumentBorder24Filled', \"24\", [\"M7.25 2A3.25 3.25 0 0 0 4 5.25v13.5C4 20.55 5.46 22 7.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25V5.25C20 3.45 18.54 2 16.75 2h-9.5ZM5.5 5.25c0-.97.78-1.75 1.75-1.75h9.5c.97 0 1.75.78 1.75 1.75v13.5c0 .97-.78 1.75-1.75 1.75h-9.5c-.97 0-1.75-.78-1.75-1.75V5.25ZM8 5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H8Z\"]);\nexport const DocumentBorder24Regular = /*#__PURE__*/createFluentIcon('DocumentBorder24Regular', \"24\", [\"M7.25 2A3.25 3.25 0 0 0 4 5.25v13.5C4 20.55 5.46 22 7.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25V5.25C20 3.45 18.54 2 16.75 2h-9.5ZM5.5 5.25c0-.97.78-1.75 1.75-1.75h9.5c.97 0 1.75.78 1.75 1.75v13.5c0 .97-.78 1.75-1.75 1.75h-9.5c-.97 0-1.75-.78-1.75-1.75V5.25ZM8 5a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H8Zm.5 12.5v-11h7v11h-7Z\"]);\nexport const DocumentBorder32Filled = /*#__PURE__*/createFluentIcon('DocumentBorder32Filled', \"32\", [\"M9 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V6a4 4 0 0 0-4-4H9ZM7 6c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V6Zm3.25 0C9.56 6 9 6.56 9 7.25v17.5c0 .69.56 1.25 1.25 1.25h11.5c.69 0 1.25-.56 1.25-1.25V7.25C23 6.56 22.44 6 21.75 6h-11.5Z\"]);\nexport const DocumentBorder32Regular = /*#__PURE__*/createFluentIcon('DocumentBorder32Regular', \"32\", [\"M9 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V6a4 4 0 0 0-4-4H9ZM7 6c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V6Zm3.25 0C9.56 6 9 6.56 9 7.25v17.5c0 .69.56 1.25 1.25 1.25h11.5c.69 0 1.25-.56 1.25-1.25V7.25C23 6.56 22.44 6 21.75 6h-11.5ZM11 24V8h10v16H11Z\"]);\nexport const DocumentBorderPrint20Filled = /*#__PURE__*/createFluentIcon('DocumentBorderPrint20Filled', \"20\", [\"M6.5 2A2.5 2.5 0 0 0 4 4.5v11A2.5 2.5 0 0 0 6.5 18H11a2 2 0 0 1-1.73-1H6.5A1.5 1.5 0 0 1 5 15.5v-11C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V9h.5c.17 0 .34.02.5.05V4.5A2.5 2.5 0 0 0 13.5 2h-7Zm7 7h.5V4.75a.75.75 0 0 0-.75-.75h-6.5a.75.75 0 0 0-.75.75v10.5c0 .41.34.75.75.75H9v-2.5a2.5 2.5 0 0 1 2.04-2.46A2.5 2.5 0 0 1 13.5 9Zm0 1c-.83 0-1.5.67-1.5 1.5v.5h-.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 0 1 1h1v.5c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5V17h1a1 1 0 0 0 1-1v-2.5c0-.83-.67-1.5-1.5-1.5H17v-.5c0-.83-.67-1.5-1.5-1.5h-2Zm2.5 2h-3v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v.5Zm-2.5 4h2c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentBorderPrint20Regular = /*#__PURE__*/createFluentIcon('DocumentBorderPrint20Regular', \"20\", [\"M6.5 2A2.5 2.5 0 0 0 4 4.5v11A2.5 2.5 0 0 0 6.5 18H11a2 2 0 0 1-1.73-1H6.5A1.5 1.5 0 0 1 5 15.5v-11C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V9h.5c.17 0 .34.02.5.05V4.5A2.5 2.5 0 0 0 13.5 2h-7ZM14 4.75V9h-.5c-.17 0-.34.02-.5.05V5H7v10h2v1H6.75a.75.75 0 0 1-.75-.75V4.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75ZM13.5 10c-.83 0-1.5.67-1.5 1.5v.5h-.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 0 1 1h1v.5c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5V17h1a1 1 0 0 0 1-1v-2.5c0-.83-.67-1.5-1.5-1.5H17v-.5c0-.83-.67-1.5-1.5-1.5h-2Zm2.5 2h-3v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v.5Zm-2.5 4h2c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentBorderPrint24Filled = /*#__PURE__*/createFluentIcon('DocumentBorderPrint24Filled', \"24\", [\"M7.25 2A3.25 3.25 0 0 0 4 5.25v13.5C4 20.55 5.46 22 7.25 22h5.85a2.74 2.74 0 0 1-.09-.5H13a2 2 0 0 1-1.73-1H7.25c-.97 0-1.75-.78-1.75-1.75V5.25c0-.97.78-1.75 1.75-1.75h9.5c.97 0 1.75.78 1.75 1.75V11h.75c.26 0 .51.04.75.1V5.25C20 3.45 18.54 2 16.75 2h-9.5Zm8.5 9H17V6a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h3v-3a2.5 2.5 0 0 1 2-2.45A2.75 2.75 0 0 1 15.76 11ZM14 13.75c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v.75h.5c.83 0 1.5.67 1.5 1.5v3.5a1 1 0 0 1-1 1h-1v.75c0 .97-.78 1.75-1.75 1.75h-3.5c-.97 0-1.75-.78-1.75-1.75v-.75h-1a1 1 0 0 1-1-1V16c0-.83.67-1.5 1.5-1.5h.5v-.75Zm5.5 0a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v.75h4v-.75Zm-4 5.5v2c0 .14.11.25.25.25h3.5c.14 0 .25-.11.25-.25v-2a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z\"]);\nexport const DocumentBorderPrint24Regular = /*#__PURE__*/createFluentIcon('DocumentBorderPrint24Regular', \"24\", [\"M7.25 2A3.25 3.25 0 0 0 4 5.25v13.5C4 20.55 5.46 22 7.25 22h5.85a2.74 2.74 0 0 1-.09-.5H13a2 2 0 0 1-1.73-1H7.25c-.97 0-1.75-.78-1.75-1.75V5.25c0-.97.78-1.75 1.75-1.75h9.5c.97 0 1.75.78 1.75 1.75V11h.75c.26 0 .51.04.75.1V5.25C20 3.45 18.54 2 16.75 2h-9.5ZM17 6v5h-1.25l-.25.01V6.5h-7v11H11V19H8a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1Zm-3 7.75c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v.75h.5c.83 0 1.5.67 1.5 1.5v3.5a1 1 0 0 1-1 1h-1v.75c0 .97-.78 1.75-1.75 1.75h-3.5c-.97 0-1.75-.78-1.75-1.75v-.75h-1a1 1 0 0 1-1-1V16c0-.83.67-1.5 1.5-1.5h.5v-.75Zm5.5 0a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v.75h4v-.75Zm-4 5.5v2c0 .14.11.25.25.25h3.5c.14 0 .25-.11.25-.25v-2a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z\"]);\nexport const DocumentBorderPrint32Filled = /*#__PURE__*/createFluentIcon('DocumentBorderPrint32Filled', \"32\", [\"M9 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h6.02a3.25 3.25 0 0 1-1.43-2H9a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v9.5h.5c.54 0 1.05.12 1.5.34V6a4 4 0 0 0-4-4H9Zm10.5 13.5H23V7.25C23 6.56 22.44 6 21.75 6h-11.5C9.56 6 9 6.56 9 7.25v17.5c0 .69.56 1.25 1.25 1.25h3.25v-3.75a3.75 3.75 0 0 1 2.51-3.54 3.5 3.5 0 0 1 3.49-3.21Zm0 1.5a2 2 0 0 0-2 2v1h-.25C16.01 20 15 21 15 22.25v5c0 .97.78 1.75 1.75 1.75h.75c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2h.75c.97 0 1.75-.78 1.75-1.75v-5c0-1.24-1-2.25-2.25-2.25h-.25v-1a2 2 0 0 0-2-2h-6Zm-.5 3v-1c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5v1h-7Zm0 6.5c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5V29a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5v-2.5Z\"]);\nexport const DocumentBorderPrint32Regular = /*#__PURE__*/createFluentIcon('DocumentBorderPrint32Regular', \"32\", [\"M9 2a4 4 0 0 0-4 4v20a4 4 0 0 0 4 4h6.02a3.25 3.25 0 0 1-1.43-2H9a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h14a2 2 0 0 1 2 2v9.5h.5c.54 0 1.05.12 1.5.34V6a4 4 0 0 0-4-4H9Zm14 5.25v8.25h-2V8H11v16h2.5v2h-3.25C9.56 26 9 25.44 9 24.75V7.25C9 6.56 9.56 6 10.25 6h11.5c.69 0 1.25.56 1.25 1.25ZM19.5 17a2 2 0 0 0-2 2v1h-.25C16.01 20 15 21 15 22.25v5c0 .97.78 1.75 1.75 1.75h.75c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2h.75c.97 0 1.75-.78 1.75-1.75v-5c0-1.24-1-2.25-2.25-2.25h-.25v-1a2 2 0 0 0-2-2h-6Zm-.5 3v-1c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5v1h-7Zm0 6.5c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5V29a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5v-2.5Z\"]);\nexport const DocumentBriefcase20Filled = /*#__PURE__*/createFluentIcon('DocumentBriefcase20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-3.55c.03-.16.05-.33.05-.5v-4a2.5 2.5 0 0 0-2.04-2.46A2.5 2.5 0 0 0 6.5 9h-2c-.17 0-.34.02-.5.05V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM3 11.5v.5h-.5c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5H8v-.5c0-.83-.67-1.5-1.5-1.5h-2c-.83 0-1.5.67-1.5 1.5Zm1.5-.5h2c.28 0 .5.22.5.5v.5H4v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentBriefcase20Regular = /*#__PURE__*/createFluentIcon('DocumentBriefcase20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.05c.16-.03.33-.05.5-.05H5V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3v.5c0 .17-.02.34-.05.5H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM3 11.5v.5h-.5c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5H8v-.5c0-.83-.67-1.5-1.5-1.5h-2c-.83 0-1.5.67-1.5 1.5Zm1.5-.5h2c.28 0 .5.22.5.5v.5H4v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentBriefcase24Filled = /*#__PURE__*/createFluentIcon('DocumentBriefcase24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-5.05c.03-.16.05-.33.05-.5v-5a2.5 2.5 0 0 0-2-2.45v-.3A2.75 2.75 0 0 0 8.25 11h-3.5c-.26 0-.51.04-.75.1V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM3 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H10v-1.25c0-.97-.78-1.75-1.75-1.75h-3.5C3.78 12 3 12.78 3 13.75V15Zm1.5-1.25c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25V15h-4v-1.25Z\"]);\nexport const DocumentBriefcase24Regular = /*#__PURE__*/createFluentIcon('DocumentBriefcase24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5v1c0 .17-.02.34-.05.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.1c.24-.06.49-.1.75-.1h.75V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM3 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H10v-1.25c0-.97-.78-1.75-1.75-1.75h-3.5C3.78 12 3 12.78 3 13.75V15Zm1.5-1.25c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25V15h-4v-1.25Z\"]);\nexport const DocumentBulletList16Filled = /*#__PURE__*/createFluentIcon('DocumentBulletList16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 13.5v-11C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM7 8.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5Zm.5 1.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM7 12.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5ZM5.5 9a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM5.5 13a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DocumentBulletList16Regular = /*#__PURE__*/createFluentIcon('DocumentBulletList16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5ZM4 3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3Zm7.8 2H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM7 7.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM7.5 9a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM7 11.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM5.5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM6 9.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM5.5 12a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DocumentBulletList20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletList20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4 4a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm2-4c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm3-8V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentBulletList20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletList20Regular', \"20\", [\"M6 10.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm.5 1.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6 14.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0ZM8.5 10a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM8 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6ZM5 4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm9.8 3h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Z\"]);\nexport const DocumentBulletList24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletList24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-5 4.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm3-6c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm0 3c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm0 3c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentBulletList24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletList24Regular', \"24\", [\"M7 12.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75 2.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7 18.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm3.75-6.75a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM10 15.25c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm8.66-9.09L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42ZM18.5 20a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Z\"]);\nexport const DocumentBulletListArrowLeft16Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66a5.53 5.53 0 0 0 1.74-2h1.1a.5.5 0 0 0 0-1h-.7c.08-.32.15-.66.18-1h.52a.5.5 0 0 0 0-1h-.52c-.03-.34-.1-.68-.19-1h.71a.5.5 0 0 0 0-1h-1.1A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM5.5 15a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 11H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 1 0-.7-.7l-2 2Z\"]);\nexport const DocumentBulletListArrowLeft16Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm3.74 6c.26.3.48.64.66 1h1.1a.5.5 0 0 0 0-1H9.74Zm1.05 2c.1.32.16.66.19 1h.52a.5.5 0 0 0 0-1h-.7Zm.19 2c-.03.34-.1.68-.19 1h.71a.5.5 0 0 0 0-1h-.52Zm1.81-6H10.5a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM5.5 15a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 11H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 1 0-.7-.7l-2 2Z\"]);\nexport const DocumentBulletListArrowLeft20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.7a5.5 5.5 0 0 1 4.66.8h4.84a.5.5 0 0 1 0 1H9.74c.26.3.48.64.66 1h3.1a.5.5 0 0 1 0 1h-2.7c.08.32.15.66.18 1h2.52a.5.5 0 0 1 0 1h-2.52a5.48 5.48 0 0 1-1.24 3h4.76c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM5.5 19a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DocumentBulletListArrowLeft20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft20Regular', \"20\", [\"M5 4v5.02c-.34.03-.68.1-1 .19V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H9.74c.26-.3.48-.64.66-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1Zm8.5 11h-2.52a5.59 5.59 0 0 0 0-1h2.52a.5.5 0 0 1 0 1Zm0-2h-2.7c-.1-.35-.24-.68-.4-1h3.1a.5.5 0 0 1 0 1Zm0-2H9.74a5.53 5.53 0 0 0-1.08-1h4.84a.5.5 0 0 1 0 1Zm1.3-4L11 3.2v3.3c0 .28.22.5.5.5h3.3ZM5.5 19a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm-2.35-4.85a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L4.71 15H7.5a.5.5 0 0 0 0-1H4.7l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DocumentBulletListArrowLeft24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v7.5a6.48 6.48 0 0 1 6.03.54c.09-.31.38-.54.72-.54h5.5a.75.75 0 0 1 0 1.5h-5.06c.43.44.8.95 1.08 1.5h3.98a.75.75 0 0 1 0 1.5h-3.42c.11.48.17.98.17 1.5h3.25a.75.75 0 0 1 0 1.5h-3.42a6.49 6.49 0 0 1-1.64 3H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm-7 15a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm3-5a.5.5 0 0 0 0-1H4.7l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L4.71 18H9.5Z\"]);\nexport const DocumentBulletListArrowLeft24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListArrowLeft24Regular', \"24\", [\"M10.75 11.5a.75.75 0 0 0-.72.54c.42.28.81.6 1.16.96h5.06a.75.75 0 0 0 0-1.5h-5.5ZM5.5 4v7.08c-.52.08-1.03.22-1.5.42V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-6.81c.43-.44.8-.95 1.08-1.5H18a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5Zm10.75 15h-3.42c.11-.48.17-.98.17-1.5h3.25a.75.75 0 0 1 0 1.5Zm0-3h-3.42a6.46 6.46 0 0 0-.56-1.5h3.98a.75.75 0 0 1 0 1.5ZM13.5 4.62V8c0 .28.22.5.5.5h3.38L13.5 4.62ZM6.5 23a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm3-5a.5.5 0 0 0 0-1H4.7l1.65-1.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L4.71 18H9.5Z\"]);\nexport const DocumentBulletListClock20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListClock20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h4.76a5.47 5.47 0 0 1-1.24-3H8.5a.5.5 0 0 1 0-1h.52c.03-.34.1-.68.19-1H8.5a.5.5 0 0 1 0-1h1.1c.18-.36.4-.7.66-1H8.5a.5.5 0 0 1 0-1h2.84A5.47 5.47 0 0 1 16 9.2V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4 4a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm.5 1.5a.5.5 0 1 1 0 1 .5.5 0 0 1 0-1Z\", \"M11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\", \"M19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-3a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H15v-2.5Z\"]);\nexport const DocumentBulletListClock20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListClock20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v1.02c.34.03.68.1 1 .19V7.4c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM9 14.5c0-.17 0-.34.02-.5H8.5a.5.5 0 0 0 0 1h.52a5.57 5.57 0 0 1-.02-.5Zm.2-1.5c.1-.35.24-.68.4-1H8.5a.5.5 0 0 0 0 1h.7Zm1.06-2c.31-.38.67-.72 1.08-1H8.5a.5.5 0 0 0 0 1h1.76ZM6.5 10a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6 12.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm13 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-3a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H15v-2.5Z\"]);\nexport const DocumentBulletListClock24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListClock24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h6.81a6.49 6.49 0 0 1-1.64-3h-.42a.75.75 0 0 1 0-1.5H11c0-.52.06-1.02.17-1.5h-.42a.75.75 0 0 1 0-1.5h.98c.29-.55.65-1.06 1.08-1.5h-2.06a.75.75 0 0 1 0-1.5H15a6.48 6.48 0 0 1 5 0V10h-6a2 2 0 0 1-2-2Zm-5 4.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm9.5 9.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5.78.42a.5.5 0 0 1-.22-.5V13.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1h-2.94a.5.5 0 0 1-.34-.08Z\"]);\nexport const DocumentBulletListClock24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListClock24Regular', \"24\", [\"M19.41 8.41 13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h6.81a6.52 6.52 0 0 1-1.08-1.5H6a.5.5 0 0 1-.5-.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v1.08c.52.08 1.03.22 1.5.42V9.83a2 2 0 0 0-.59-1.42ZM13.5 4.62l3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM10.75 17.5H11c0 .52.06 1.02.17 1.5h-.42a.75.75 0 0 1 0-1.5Zm.42-1.5c.13-.53.32-1.03.56-1.5h-.98a.75.75 0 0 0 0 1.5h.42Zm1.64-3A6.51 6.51 0 0 1 15 11.5h-4.25a.75.75 0 0 0 0 1.5h2.06Zm-5.06-1.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7 15.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm16-.75a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5.78.42a.5.5 0 0 1-.22-.5V13.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1h-2.94a.5.5 0 0 1-.34-.08Z\"]);\nexport const DocumentBulletListCube16Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListCube16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H9.33a2 2 0 0 0 .67-1.5V13h1.5a.5.5 0 0 0 0-1H10v-1h1.5a.5.5 0 0 0 0-1H10v-.5a2 2 0 0 0-.06-.5h1.56a.5.5 0 0 0 0-1H9.32a2 2 0 0 0-.43-.29l-3-1.5a2 2 0 0 0-1.78 0L4 6.26V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM8.45 8.61l-3-1.5a1 1 0 0 0-.9 0l-3 1.5A1 1 0 0 0 1 9.5v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9ZM2.04 9.73a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V14a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const DocumentBulletListCube16Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListCube16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v3.26l.1-.05A2 2 0 0 1 5 6V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.94a2 2 0 0 1-.61 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm2.9 6.71a2 2 0 0 1 .42.29h2.18a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.45.29l.84.42ZM10 9.5v.5h1.5a.5.5 0 0 0 0-1H9.94a2 2 0 0 1 .06.5Zm0 1.5v1h1.5a.5.5 0 0 0 0-1H10Zm2.8-6h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM8.44 8.6l-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9ZM2.04 9.74a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V14a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const DocumentBulletListCube20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListCube20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.76l.1-.05a2 2 0 0 1 1.8 0l2.15 1.08A.5.5 0 0 1 8.5 10h5a.5.5 0 0 1 0 1H9.32a2 2 0 0 1 .62 1h3.56a.5.5 0 0 1 0 1H10v1h3.5a.5.5 0 0 1 0 1H10v1.5a2 2 0 0 1-.67 1.5h5.17c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm-2.55 5.1-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const DocumentBulletListCube20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListCube20Regular', \"20\", [\"M8.5 10a.5.5 0 0 0-.45.29l.84.42a2 2 0 0 1 .43.29h4.18a.5.5 0 0 0 0-1h-5ZM5 4v5a2 2 0 0 0-.9.21l-.1.05V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H9.33a2 2 0 0 0 .6-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1Zm8.5 11H10v-1h3.5a.5.5 0 0 1 0 1Zm0-2H10v-.5a2 2 0 0 0-.06-.5h3.56a.5.5 0 0 1 0 1Zm1.3-6L11 3.2v3.3c0 .28.22.5.5.5h3.3Zm-6.35 4.6-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const DocumentBulletListCube24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListCube24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-7.4l.02-.01A2.5 2.5 0 0 0 12 19.75V19h4.25a.75.75 0 0 0 0-1.5H12V16h4.25a.75.75 0 0 0 0-1.5h-4.37a2.5 2.5 0 0 0-1.26-1.49l-.1-.05c.07.03.15.04.23.04h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.43 1.37l-3.2-1.6a2.5 2.5 0 0 0-2.24 0L4 11.7V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-3.33 11.4-3.5-1.74a1.5 1.5 0 0 0-1.34 0l-3.5 1.75c-.5.25-.83.77-.83 1.34v4.5c0 .57.32 1.09.83 1.34l3.5 1.75c.42.22.92.22 1.34 0l3.5-1.75c.5-.25.83-.77.83-1.34v-4.5a1.5 1.5 0 0 0-.83-1.34Zm-7.62 1.38a.5.5 0 0 1 .67-.23L6 16.45l2.78-1.4a.5.5 0 1 1 .44.9L6.5 17.3v3.19a.5.5 0 1 1-1 0v-3.2l-2.72-1.35a.5.5 0 0 1-.23-.67Z\"]);\nexport const DocumentBulletListCube24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListCube24Regular', \"24\", [\"m10.52 12.96-.2-.1a.75.75 0 0 1 .43-1.36h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.23-.04ZM12 16v-.75c0-.26-.04-.51-.12-.75h4.37a.75.75 0 0 1 0 1.5H12Zm0 3v-1.5h4.25a.75.75 0 0 1 0 1.5H12Zm-6.5-7.95a2.5 2.5 0 0 0-.62.21L4 11.7V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-7.4l.02-.01a2.5 2.5 0 0 0 1.27-1.49H18a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v7.05ZM17.38 8.5 13.5 4.62V8c0 .28.22.5.5.5h3.38Zm-7.2 5.4-3.5-1.74a1.5 1.5 0 0 0-1.35 0l-3.5 1.75c-.5.25-.83.77-.83 1.34v4.5c0 .57.32 1.09.83 1.34l3.5 1.75c.42.22.92.22 1.34 0l3.5-1.75c.5-.25.83-.77.83-1.34v-4.5a1.5 1.5 0 0 0-.83-1.34Zm-7.63 1.38a.5.5 0 0 1 .67-.23L6 16.45l2.78-1.4a.5.5 0 1 1 .44.9L6.5 17.3v3.19a.5.5 0 1 1-1 0v-3.2l-2.72-1.35a.5.5 0 0 1-.23-.67Z\"]);\nexport const DocumentBulletListMultiple20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListMultiple20Filled', \"20\", [\"M9 6.5V2H5.5C4.67 2 4 2.67 4 3.5v11c0 .83.67 1.5 1.5 1.5H13a2 2 0 0 0 2-2V8h-4.5A1.5 1.5 0 0 1 9 6.5Zm-3 4a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm.5 2.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Zm2-2a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1h-4ZM8 12.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm2-6V2.25L14.75 7H10.5a.5.5 0 0 1-.5-.5ZM17 9a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H6a1 1 0 0 0 1 1h6.06A3.94 3.94 0 0 0 17 14.06V9Z\"]);\nexport const DocumentBulletListMultiple20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListMultiple20Regular', \"20\", [\"M6.5 10a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6 12.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm2-2c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM6 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 9.59 2H6ZM5 4a1 1 0 0 1 1-1h3v3.5c0 .83.67 1.5 1.5 1.5H14v6a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm5 2.5V3.2L13.8 7h-3.3a.5.5 0 0 1-.5-.5ZM16 8a1 1 0 0 1 1 1v5.06A3.94 3.94 0 0 1 13.06 18H7a1 1 0 0 1-1-1h7a3 3 0 0 0 3-3V8Z\"]);\nexport const DocumentBulletListMultiple24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListMultiple24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h4.25v4.75C10.5 7.99 11.51 9 12.75 9h4.75v8.25c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13Zm3.75 7.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7 15.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm3-3c0 .41.34.75.75.75h3.05a.75.75 0 0 0 0-1.5h-3.05a.75.75 0 0 0-.75.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3.05a.75.75 0 0 0 0-1.5h-3.05ZM12 6.75V2.47l.22.19 4.62 4.62.2.22h-4.29a.75.75 0 0 1-.75-.75ZM6.63 20.5c.3.87 1.14 1.5 2.12 1.5h6.5A4.75 4.75 0 0 0 20 17.25v-5.88c0-.6-.24-1.17-.66-1.6l-.84-.83v8.31c0 1.8-1.45 3.25-3.25 3.25H6.63Z\"]);\nexport const DocumentBulletListMultiple24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListMultiple24Regular', \"24\", [\"M7.75 11.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7 15.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm3-3c0-.41.34-.75.75-.75h3.05a.75.75 0 0 1 0 1.5h-3.05a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3.05a.75.75 0 0 0 0-1.5h-3.05ZM6.25 2C5.01 2 4 3 4 4.25v13c0 1.24 1 2.25 2.25 2.25h9c1.24 0 2.25-1 2.25-2.25V8.87c0-.6-.24-1.17-.66-1.6l-4.62-4.61c-.42-.42-1-.66-1.59-.66H6.25ZM5.5 4.25c0-.41.34-.75.75-.75h4.25v3.25C10.5 7.99 11.51 9 12.75 9H16v8.25c0 .41-.34.75-.75.75h-9a.75.75 0 0 1-.75-.75v-13Zm6.5 2.5V4.56l2.94 2.94h-2.19a.75.75 0 0 1-.75-.75ZM8.75 22c-.98 0-1.81-.63-2.12-1.5h8.62c1.8 0 3.25-1.46 3.25-3.25V8.94l.84.84c.42.42.66 1 .66 1.59v5.88A4.75 4.75 0 0 1 15.25 22h-6.5Z\"]);\nexport const DocumentBulletListOff20Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListOff20Filled', \"20\", [\"M4 4.7 2.15 2.86a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-1.16-1.16A1.5 1.5 0 0 1 14.5 18h-9A1.5 1.5 0 0 1 4 16.5V4.7Zm9.3 9.3H8.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .47-.32l-.68-.68Zm-1-1-1-1H8.5a.5.5 0 0 0 0 1h3.8Zm-2-2-1-1h-.8a.5.5 0 0 0 0 1h1.8Zm3.2 0h-.38L16 13.88V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5c-.38 0-.73.14-1 .38L12.12 10h1.38a.5.5 0 0 1 0 1ZM6 10.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Zm0 2a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Zm0 2a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Zm5-8V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentBulletListOff20Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListOff20Regular', \"20\", [\"M4 4.7 2.15 2.86a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-1.25-1.24A2 2 0 0 1 14 18H6a2 2 0 0 1-2-2V4.7Zm11 11-1.03-1.02a.5.5 0 0 1-.47.32h-5a.5.5 0 0 1 0-1h4.8l-1-1H8.5a.5.5 0 0 1 0-1h2.8l-1-1H8.5a.5.5 0 0 1 0-1h.8L5 5.7V16a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-.3ZM12.12 10l1 1h.38a.5.5 0 0 0 0-1h-1.38ZM15 8v4.88l1 1V7.4c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-1.35.53l.7.7A1 1 0 0 1 6 3h4v3.5c0 .83.67 1.5 1.5 1.5H15Zm-9 2.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Zm.5 1.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6 14.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0ZM14.8 7h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Z\"]);\nexport const DocumentBulletListOff24Filled = /*#__PURE__*/createFluentIcon('DocumentBulletListOff24Filled', \"24\", [\"M4 5.06V20c0 1.1.9 2 2 2h12a2 2 0 0 0 1.8-1.14l.92.92a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06L4 5.06Zm12.47 12.47.5.5a.75.75 0 0 1-.72.97h-5.5a.75.75 0 0 1 0-1.5h5.5c.08 0 .15.01.22.03ZM14.94 16h-4.19a.75.75 0 0 1 0-1.5h2.69l1.5 1.5Zm-3-3h-1.19a.75.75 0 0 1-.26-1.45L11.94 13ZM7 12.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm0 3a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM16.25 13h-.07L20 16.82V10h-6a2 2 0 0 1-1.29-.47l1.97 1.97h1.57a.75.75 0 0 1 0 1.5ZM12 8c0 .5.18.94.47 1.29L5.31 2.12A2 2 0 0 1 6 2h6v6Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentBulletListOff24Regular = /*#__PURE__*/createFluentIcon('DocumentBulletListOff24Regular', \"24\", [\"M7 12.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75 2.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM7 18.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM4 5.06 2.22 3.28a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06l-.92-.92A2 2 0 0 1 18 22H6a2 2 0 0 1-2-2V5.06Zm14.5 14.5-1.53-1.53a.75.75 0 0 1-.72.97h-5.5a.75.75 0 0 1 0-1.5h5.5c.08 0 .15.01.22.03L14.94 16h-4.19a.75.75 0 0 1 0-1.5h2.69l-1.5-1.5h-1.19a.75.75 0 0 1-.26-1.45L5.5 6.56V20c0 .27.22.5.5.5h12a.5.5 0 0 0 .5-.5v-.44ZM12 8c0 .5.18.94.47 1.3l.24.23A2 2 0 0 0 14 10h4.5v5.32l1.5 1.5v-7a2 2 0 0 0-.59-1.4L13.6 2.58a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-.7.12L6.69 3.5H12V8Zm1.5-3.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Zm2.75 6.88h-1.57l1.5 1.5h.07a.75.75 0 0 0 0-1.5Z\"]);\nexport const DocumentCatchUp16Filled = /*#__PURE__*/createFluentIcon('DocumentCatchUp16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 13.5V11h1.5c.44 0 .85-.2 1.13-.51l.43 1.44a1.5 1.5 0 0 0 2.64.47L9.75 11h.75a1.5 1.5 0 0 0 0-3H9c-.33 0-.64.1-.9.3l-.66-2.23a1.5 1.5 0 0 0-2.78-.24L3.57 8H3V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25Zm-2.52 5.1a.5.5 0 0 0-.93-.07L4.2 9H2.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .45-.28l.93-1.87 1.14 3.8a.5.5 0 0 0 .88.15L9.25 10h1.25a.5.5 0 0 0 0-1H9a.5.5 0 0 0-.4.2l-.9 1.2-1.22-4.04Z\"]);\nexport const DocumentCatchUp16Regular = /*#__PURE__*/createFluentIcon('DocumentCatchUp16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v3.5a.5.5 0 0 0 1 0V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2H3v2c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM6.47 6.36a.5.5 0 0 0-.93-.08L4.2 9H2.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .45-.28l.93-1.87 1.14 3.8a.5.5 0 0 0 .88.15L9.25 10h1.25a.5.5 0 0 0 0-1H9a.5.5 0 0 0-.4.2l-.9 1.2-1.22-4.04Z\"]);\nexport const DocumentCatchUp20Filled = /*#__PURE__*/createFluentIcon('DocumentCatchUp20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5V13h1.5a1.5 1.5 0 0 0 1.34-.83l.04-.07 1.24 2.98a1.5 1.5 0 0 0 2.72.1L11.93 13h.57a1.5 1.5 0 0 0 0-3H11a1.5 1.5 0 0 0-1.34.83l-.04.07-1.24-2.98a1.5 1.5 0 0 0-2.72-.1L4.57 10H4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM7.46 8.31a.5.5 0 0 0-.9-.03L5.18 11H3.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .45-.28l1-2.02 2.09 5a.5.5 0 0 0 .9.02L11.32 12h1.19a.5.5 0 0 0 0-1H11a.5.5 0 0 0-.45.28l-1 2.02-2.09-5Z\"]);\nexport const DocumentCatchUp20Regular = /*#__PURE__*/createFluentIcon('DocumentCatchUp20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v4.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3H4v3c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM7.45 8.3a.5.5 0 0 0-.9-.02L5.18 11H3.5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .45-.28l1-2.02 2.09 5a.5.5 0 0 0 .9.02L11.32 12h1.19a.5.5 0 0 0 0-1H11a.5.5 0 0 0-.45.28l-1 2.02-2.09-5Z\"]);\nexport const DocumentCatchUp24Filled = /*#__PURE__*/createFluentIcon('DocumentCatchUp24Filled', \"24\", [\"M12 2H6a2 2 0 0 0-2 2v8h.6l1.3-2.95a1.75 1.75 0 0 1 3.1-.2l.02.04.09.18 1.73 4.31.34-.5c.27-.47.73-.78 1.24-.86h.06l.18-.02h2.04a1.75 1.75 0 0 1 .26 3.48h-.05l-.18.02H13.7l-1.66 2.6a1.75 1.75 0 0 1-3.03.05l-.03-.05-.08-.17-1.46-3.65-.08.17a1.75 1.75 0 0 1-1.32 1.03h-.06l-.19.02H4V20c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2V2Zm2 6.5a.5.5 0 0 1-.5-.5V2.5l6 6H14ZM5.26 13H2.64a.75.75 0 0 0 .11 1.5h3.1l.02-.01h.04a.75.75 0 0 0 .52-.44l1.04-2.36 2.33 5.83.05.1v.01a.75.75 0 0 0 1.31-.04l1.98-3.09H14.81a.75.75 0 0 0-.11-1.5h-2.12a.75.75 0 0 0-.55.4l-1.42 2.1-2.42-6.03-.05-.1v-.01a.75.75 0 0 0-1.33.09L5.26 13Zm.49 1.5H4Z\"]);\nexport const DocumentCatchUp24Regular = /*#__PURE__*/createFluentIcon('DocumentCatchUp24Regular', \"24\", [\"M18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v5.25a.75.75 0 0 1-1.5 0V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3.75a.75.75 0 0 1 1.5 0V20c0 .27.22.5.5.5h12Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38ZM2.75 13h2.5l1.56-3.55a.75.75 0 0 1 1.33-.1v.02l.05.1 2.42 6.03 1.42-2.1a.75.75 0 0 1 .55-.4h2.11a.75.75 0 0 1 .12 1.5H13.14l-1.98 3.1a.75.75 0 0 1-1.3.03l-.06-.1-2.33-5.84-1.04 2.36a.75.75 0 0 1-.56.44h-.01l-.11.01h-3a.75.75 0 0 1-.11-1.5h.11Z\"]);\nexport const DocumentCheckmark16Filled = /*#__PURE__*/createFluentIcon('DocumentCheckmark16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25Zm0 9.25a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM7.85 8.65a.5.5 0 0 0-.7 0L4.5 11.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentCheckmark16Regular = /*#__PURE__*/createFluentIcon('DocumentCheckmark16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM10 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM7.85 8.65a.5.5 0 0 0-.7 0L4.5 11.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentCheckmark20Filled = /*#__PURE__*/createFluentIcon('DocumentCheckmark20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentCheckmark20Regular = /*#__PURE__*/createFluentIcon('DocumentCheckmark20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentCheckmark24Filled = /*#__PURE__*/createFluentIcon('DocumentCheckmark24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Z\", \"M13.5 2.5V8c0 .28.22.5.5.5h5.5l-6-6Z\", \"M12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L5.5 18.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentCheckmark24Regular = /*#__PURE__*/createFluentIcon('DocumentCheckmark24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Z\", \"M12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L5.5 18.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentChevronDouble20Filled = /*#__PURE__*/createFluentIcon('DocumentChevronDouble20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.65-1.15a.5.5 0 0 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7L3.21 14.5l1.14-1.15Zm2.3-.7a.5.5 0 0 0 0 .7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7 0Z\"]);\nexport const DocumentChevronDouble20Regular = /*#__PURE__*/createFluentIcon('DocumentChevronDouble20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.65-1.15a.5.5 0 0 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7L3.21 14.5l1.14-1.15Zm2.3-.7a.5.5 0 0 0 0 .7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7 0Z\"]);\nexport const DocumentChevronDouble24Filled = /*#__PURE__*/createFluentIcon('DocumentChevronDouble24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM6.5 23a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm-1.15-7.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L3.21 17.5l2.14-2.15Zm2.3-.7a.5.5 0 0 0 0 .7l2.14 2.15-2.14 2.15a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7 0Z\"]);\nexport const DocumentChevronDouble24Regular = /*#__PURE__*/createFluentIcon('DocumentChevronDouble24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM6.5 23a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm-1.15-7.65a.5.5 0 0 0-.7-.7l-2.5 2.5a.5.5 0 0 0 0 .7l2.5 2.5a.5.5 0 0 0 .7-.7L3.21 17.5l2.14-2.15Zm2.3-.7a.5.5 0 0 0 0 .7l2.14 2.15-2.14 2.15a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7 0Z\"]);\nexport const DocumentContract16Filled = /*#__PURE__*/createFluentIcon('DocumentContract16Filled', \"16\", [\"M9.5 5h3.25L9 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v11c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5V6H9.5Zm-1.65 5.15c.05.04.09.1.11.16a.4.4 0 0 1 .04.19.4.4 0 0 1-.04.19.36.36 0 0 1-.11.16.36.36 0 0 1-.16.11.4.4 0 0 1-.19.04.4.4 0 0 1-.19-.04.36.36 0 0 1-.16-.11l-.65-.64-.65.64a.36.36 0 0 1-.16.11.4.4 0 0 1-.19.04.4.4 0 0 1-.19-.04.36.36 0 0 1-.16-.11.36.36 0 0 1-.11-.16.4.4 0 0 1-.04-.19.4.4 0 0 1 .04-.19.36.36 0 0 1 .11-.16l.64-.65-.64-.65A.47.47 0 0 1 5 9.5c0-.13.05-.26.15-.35.09-.1.22-.15.35-.15.13 0 .26.05.35.15l.65.64.65-.64c.09-.1.22-.15.35-.15.13 0 .26.05.35.15.1.09.15.22.15.35 0 .13-.05.26-.15.35l-.64.65.64.65ZM12 12H9.5a.47.47 0 0 1-.35-.15.47.47 0 0 1-.15-.35c0-.13.05-.26.15-.35.09-.1.22-.15.35-.15H12v1Z\"]);\nexport const DocumentContract16Regular = /*#__PURE__*/createFluentIcon('DocumentContract16Regular', \"16\", [\"m7.2 10.5.65-.65a.5.5 0 1 0-.7-.7l-.65.64-.65-.64a.5.5 0 1 0-.7.7l.64.65-.64.65a.5.5 0 0 0 .7.7l.65-.64.65.64a.5.5 0 1 0 .7-.7l-.64-.65ZM3.6 1.59A2 2 0 0 1 5 1h3.59c.4 0 .77.16 1.06.44l2.91 2.91c.28.29.44.67.44 1.06V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3a2 2 0 0 1 .59-1.41ZM12 11V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-1H9.5a.5.5 0 0 1 0-1H12ZM9.5 5h2.3L9 2.2v2.3a.5.5 0 0 0 .5.5Z\"]);\nexport const DocumentCopy16Filled = /*#__PURE__*/createFluentIcon('DocumentCopy16Filled', \"16\", [\"M9 4.5V1H6.5C5.67 1 5 1.67 5 2.5v9c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5V6h-3.5A1.5 1.5 0 0 1 9 4.5Zm1 0V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5ZM3 4a1 1 0 0 1 1-1v8.5A2.5 2.5 0 0 0 6.5 14H12a1 1 0 0 1-1 1H6.56A3.56 3.56 0 0 1 3 11.44V4Z\"]);\nexport const DocumentCopy16Regular = /*#__PURE__*/createFluentIcon('DocumentCopy16Regular', \"16\", [\"M7 1a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V4.41c0-.4-.16-.78-.44-1.06l-1.92-1.91A1.5 1.5 0 0 0 10.58 1H7Zm5 11H7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3v1.5c0 .83.67 1.5 1.5 1.5H13v6a1 1 0 0 1-1 1Zm.8-8h-1.3a.5.5 0 0 1-.5-.5V2.2L12.8 4ZM3 4a1 1 0 0 1 1-1v8a3 3 0 0 0 3 3h5a1 1 0 0 1-1 1H6.79C4.69 15 3 13.3 3 11.21V4Z\"]);\nexport const DocumentCopy20Filled = /*#__PURE__*/createFluentIcon('DocumentCopy20Filled', \"20\", [\"M11 6.5V2H7.5C6.67 2 6 2.67 6 3.5v11c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 11 6.5Zm1 0V2.25L16.75 7H12.5a.5.5 0 0 1-.5-.5ZM4 5a1 1 0 0 1 1-1v10.5A2.5 2.5 0 0 0 7.5 17H15a1 1 0 0 1-1 1H7.55A3.55 3.55 0 0 1 4 14.45V5Z\"]);\nexport const DocumentCopy20Regular = /*#__PURE__*/createFluentIcon('DocumentCopy20Regular', \"20\", [\"M6 4c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 11 6.5V3H8Zm4 .2v3.3c0 .28.22.5.5.5h3.3L12 3.2ZM4 5a1 1 0 0 1 1-1v10a3 3 0 0 0 3 3h7a1 1 0 0 1-1 1H7.94A3.94 3.94 0 0 1 4 14.06V5Z\"]);\nexport const DocumentCopy24Filled = /*#__PURE__*/createFluentIcon('DocumentCopy24Filled', \"24\", [\"M13 6.75V2H8.75C7.51 2 6.5 3 6.5 4.25v13c0 1.24 1 2.25 2.25 2.25h9c1.24 0 2.25-1 2.25-2.25V9h-4.75C14.01 9 13 8 13 6.75Zm1.5 0V2.5l5 5h-4.25a.75.75 0 0 1-.75-.75Zm-9-2.12C4.63 4.93 4 5.77 4 6.75v10.5A4.75 4.75 0 0 0 8.75 22h6.5c.97 0 1.8-.62 2.12-1.5H8.75a3.25 3.25 0 0 1-3.25-3.25V4.63Z\"]);\nexport const DocumentCopy24Regular = /*#__PURE__*/createFluentIcon('DocumentCopy24Regular', \"24\", [\"M5.5 4.63V17.25c0 1.8 1.46 3.25 3.25 3.25h8.62c-.31.88-1.15 1.5-2.13 1.5H8.75A4.75 4.75 0 0 1 4 17.25V6.75c0-.98.63-1.81 1.5-2.12ZM13.13 2c.6 0 1.17.24 1.59.66l4.62 4.62c.42.42.66 1 .66 1.6v8.37c0 1.25-1.01 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13C6.5 3.01 7.51 2 8.75 2h4.38ZM13 3.5H8.75a.75.75 0 0 0-.75.75v13c0 .42.34.75.75.75h9c.41 0 .75-.33.75-.75V9h-3.25c-1.2 0-2.17-.92-2.24-2.1L13 6.76V3.5Zm1.5 1.06v2.2c0 .37.28.69.65.74h2.29L14.5 4.56Z\"]);\nexport const DocumentCopy48Filled = /*#__PURE__*/createFluentIcon('DocumentCopy48Filled', \"48\", [\"M25 14.75V5h-6.75A4.25 4.25 0 0 0 14 9.25v24.5C14 36.1 15.9 38 18.25 38h16.5C37.1 38 39 36.1 39 33.75V19h-9.75A4.25 4.25 0 0 1 25 14.75Zm2.5 0V5.5l11 11h-9.25c-.97 0-1.75-.78-1.75-1.75ZM9 13.7a4 4 0 0 1 2.5-3.7v23.75a6.75 6.75 0 0 0 6.75 6.75h15.76A4 4 0 0 1 30.3 43H18.25A9.25 9.25 0 0 1 9 33.75V13.7Z\"]);\nexport const DocumentCopy48Regular = /*#__PURE__*/createFluentIcon('DocumentCopy48Regular', \"48\", [\"M11.5 10.38v23.37a6.75 6.75 0 0 0 6.75 6.75h15.37a4.25 4.25 0 0 1-3.87 2.5h-11.5A9.25 9.25 0 0 1 9 33.75v-19.5c0-1.72 1.03-3.2 2.5-3.87ZM25.76 5c1.12 0 2.2.45 3 1.24l9 9c.8.8 1.24 1.88 1.24 3v15.51C39 36.1 37.1 38 34.75 38h-16.5A4.25 4.25 0 0 1 14 33.75V9.25C14 6.9 15.9 5 18.25 5h7.5ZM25 7.5h-6.75c-.97 0-1.75.78-1.75 1.75v24.5c0 .97.78 1.75 1.75 1.75h16.5c.97 0 1.75-.78 1.75-1.75V19h-7.25A4.25 4.25 0 0 1 25 14.96V7.5Zm10.48 9L27.5 8.52v6.23c0 .92.7 1.67 1.6 1.74l.15.01h6.23Z\"]);\nexport const DocumentCs16Filled = /*#__PURE__*/createFluentIcon('DocumentCs16Filled', \"16\", [\"M10.5 5h3.25L10 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v7.01l.04.03a2.5 2.5 0 0 1 .62.73c.13-.09.26-.16.4-.2A1.5 1.5 0 0 1 6.5 9c.37 0 .73.13 1 .38a1.5 1.5 0 0 1 2.44.68A1.49 1.49 0 0 1 11 11.5c0 .37-.13.72-.38 1a1.5 1.5 0 0 1-.68 2.44l-.02.03-.01.03h2.6c.82 0 1.5-.67 1.5-1.5V6H10.5Zm-8 9A1.5 1.5 0 0 1 1 13.5v-2a1.5 1.5 0 0 1 3 0 .5.5 0 1 1-1 0 .5.5 0 1 0-1 0v2c0 .13.05.26.15.35A.5.5 0 0 0 3 13.5a.5.5 0 1 1 1 0A1.5 1.5 0 0 1 2.5 15ZM9 13h.5a.5.5 0 1 1 0 1H9v.5a.5.5 0 1 1-1 0V14h-.98v.5a.5.5 0 1 1-1 0V14H5.5a.5.5 0 1 1 0-1h.51v-1H5.5a.5.5 0 1 1 0-1H6v-.5a.5.5 0 1 1 1 0v.5h1v-.5a.5.5 0 1 1 1 0v.5h.5a.5.5 0 1 1 0 1H9v1Zm-1.99 0H8v-1H7l.01 1Z\"]);\nexport const DocumentCs16Regular = /*#__PURE__*/createFluentIcon('DocumentCs16Regular', \"16\", [\"m10.65 1.44 2.91 2.91c.28.28.44.66.44 1.06V13a2 2 0 0 1-2 2h-1.6c.37-.23.65-.58.78-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v6.61c-.05.08-.1.17-.13.26a.67.67 0 0 0-.12.06A2.48 2.48 0 0 0 4 9.2V3a2 2 0 0 1 2-2h3.59c.4 0 .78.16 1.06.44Zm-.5 3.41c.09.1.22.15.35.15h2.29L10 2.21V4.5c0 .13.05.26.15.35ZM2.5 15A1.5 1.5 0 0 1 1 13.5v-2a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0 .5.5 0 0 1 1 0A1.5 1.5 0 0 1 2.5 15Zm7-2H9v-1h.5a.5.5 0 0 0 0-1H9v-.5a.5.5 0 0 0-1 0v.5H7v-.5a.5.5 0 0 0-1 0v.5h-.5a.5.5 0 0 0 0 1H6l.01 1H5.5a.5.5 0 0 0 0 1h.52v.5a.5.5 0 0 0 1 0V14H8v.5a.5.5 0 0 0 1 0V14h.5a.5.5 0 0 0 0-1ZM8 13h-.99v-1H8v1Z\"]);\nexport const DocumentCss16Filled = /*#__PURE__*/createFluentIcon('DocumentCss16Filled', \"16\", [\"M10.5 5h3.25L10 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v7.01l.04.03c.08.06.16.12.23.2.07.07.14.15.2.24l.01.02a2.44 2.44 0 0 1 1.94-1h.15c.64 0 1.27.26 1.72.71l.2.23.01.03A2.44 2.44 0 0 1 10.42 9h.15A2.41 2.41 0 0 1 13 11.43c0 .34-.11.67-.32.94l.09.18a2.43 2.43 0 0 1-.25 2.45A1.5 1.5 0 0 0 14 13.5V6h-3.5Zm-9.06 8.56A1.5 1.5 0 0 0 4 13.5a.5.5 0 1 0-1 0 .5.5 0 1 1-1 0v-2a.5.5 0 1 1 1 0 .5.5 0 1 0 1 0 1.5 1.5 0 1 0-3 0v2c0 .4.16.78.44 1.06Zm4.99.44h.14a1.43 1.43 0 0 0 1.3-2.03c-.14-.3-.37-.53-.66-.67l-.97-.5a.43.43 0 0 1 .19-.8h.14a.43.43 0 0 1 .43.43v.07c0 .06.02.13.04.19a.47.47 0 0 0 .46.27.54.54 0 0 0 .5-.53A1.43 1.43 0 0 0 6.57 10h-.14a1.43 1.43 0 0 0-.64 2.7l.98.5a.43.43 0 0 1-.2.8h-.14a.45.45 0 0 1-.32-.16.45.45 0 0 1-.11-.34.47.47 0 0 0-.5-.46.54.54 0 0 0-.5.53A1.43 1.43 0 0 0 6.43 15Zm4 0h.14a1.43 1.43 0 0 0 .64-2.7l-.98-.5a.43.43 0 0 1 .2-.8h.14a.43.43 0 0 1 .43.43v.07a.47.47 0 0 0 .5.46.54.54 0 0 0 .5-.53A1.43 1.43 0 0 0 10.57 10h-.14a1.43 1.43 0 0 0-.64 2.7l.98.5a.43.43 0 0 1-.2.8h-.14a.46.46 0 0 1-.33-.16.45.45 0 0 1-.1-.34.47.47 0 0 0-.5-.46.54.54 0 0 0-.5.53A1.43 1.43 0 0 0 10.43 15Z\"]);\nexport const DocumentCss16Regular = /*#__PURE__*/createFluentIcon('DocumentCss16Regular', \"16\", [\"m10.65 1.44 2.91 2.91c.28.28.44.66.44 1.06V13a2 2 0 0 1-1.39 1.9 2.41 2.41 0 0 0 .36-1.68A.78.78 0 0 0 13 13V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v6.46c-.2.15-.37.32-.52.52-.14-.18-.3-.34-.48-.48V3a2 2 0 0 1 2-2h3.59c.4 0 .78.16 1.06.44Zm-.5 3.41c.09.1.22.15.35.15h2.29L10 2.21V4.5c0 .13.05.26.15.35Zm-8.71 9.71A1.5 1.5 0 0 0 4 13.5a.5.5 0 0 0-1 0 .5.5 0 0 1-1 0v-2a.5.5 0 0 1 1 0 .5.5 0 0 0 1 0 1.5 1.5 0 0 0-3 0v2c0 .4.16.78.44 1.06Zm5.13.44h-.14A1.43 1.43 0 0 1 5 13.57a.53.53 0 0 1 .5-.53.47.47 0 0 1 .5.46.45.45 0 0 0 .43.5h.14a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.14A1.43 1.43 0 0 1 8 11.43a.53.53 0 0 1-.5.53.47.47 0 0 1-.5-.46v-.07a.43.43 0 0 0-.43-.43h-.14a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7Zm3.86 0h.14a1.43 1.43 0 0 0 .64-2.7l-.98-.5a.42.42 0 0 1-.23-.37.43.43 0 0 1 .43-.43h.14a.43.43 0 0 1 .43.43v.07a.47.47 0 0 0 .5.46.53.53 0 0 0 .5-.53A1.43 1.43 0 0 0 10.57 10h-.14a1.43 1.43 0 0 0-.64 2.7l.98.5a.42.42 0 0 1 .23.37.43.43 0 0 1-.43.43h-.14a.45.45 0 0 1-.43-.5.47.47 0 0 0-.5-.46.53.53 0 0 0-.5.53A1.43 1.43 0 0 0 10.43 15Z\"]);\nexport const DocumentCss20Filled = /*#__PURE__*/createFluentIcon('DocumentCss20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v7.67a3 3 0 0 1 1.38 1A2.5 2.5 0 0 1 9.5 12a2.5 2.5 0 0 1 4.5 1.5c0 .44-.2.84-.5 1.12.32.42.5.95.5 1.5v.38c0 .56-.19 1.08-.5 1.5h1c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3 12a2 2 0 0 0-2 2v2a2 2 0 1 0 4 0 .5.5 0 0 0-1 0 1 1 0 1 1-2 0v-2a1 1 0 1 1 2 0 .5.5 0 0 0 1 0 2 2 0 0 0-2-2Zm8.5 0c-.83 0-1.5.67-1.5 1.5v.38c0 .57.32 1.09.83 1.34l.9.45a.5.5 0 0 1 .27.45v.38a.5.5 0 0 1-1 0 .5.5 0 0 0-1 0 1.5 1.5 0 0 0 3 0v-.38a1.5 1.5 0 0 0-.83-1.34l-.9-.45a.5.5 0 0 1-.27-.45v-.38a.5.5 0 0 1 1 0 .5.5 0 0 0 1 0c0-.83-.67-1.5-1.5-1.5ZM6 13.5a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-1 0v.38c0 .2.1.36.28.45l.9.45c.5.25.82.77.82 1.34v.38a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.38a.5.5 0 0 0-.28-.45l-.9-.45A1.5 1.5 0 0 1 6 13.88v-.38Z\"]);\nexport const DocumentCss20Regular = /*#__PURE__*/createFluentIcon('DocumentCss20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-.5c.22-.3.38-.63.45-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v7.76a3 3 0 0 0-1-.59V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5ZM3 12a2 2 0 0 0-2 2v2a2 2 0 1 0 4 0 .5.5 0 0 0-1 0 1 1 0 1 1-2 0v-2a1 1 0 1 1 2 0 .5.5 0 0 0 1 0 2 2 0 0 0-2-2Zm8.5 0c-.83 0-1.5.67-1.5 1.5v.38c0 .57.32 1.09.83 1.34l.9.45a.5.5 0 0 1 .27.45v.38a.5.5 0 0 1-1 0 .5.5 0 0 0-1 0 1.5 1.5 0 0 0 3 0v-.38a1.5 1.5 0 0 0-.83-1.34l-.9-.45a.5.5 0 0 1-.27-.45v-.38a.5.5 0 0 1 1 0 .5.5 0 0 0 1 0c0-.83-.67-1.5-1.5-1.5ZM6 13.5a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-1 0v.38c0 .2.1.36.28.45l.9.45c.5.25.82.77.82 1.34v.38a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.38a.5.5 0 0 0-.28-.45l-.9-.45A1.5 1.5 0 0 1 6 13.88v-.38Z\"]);\nexport const DocumentCss24Filled = /*#__PURE__*/createFluentIcon('DocumentCss24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v10.04a3.5 3.5 0 0 1 2.38 1.47c.5-.9 1.47-1.51 2.57-1.51h.1c1.02 0 1.92.52 2.45 1.3a2.95 2.95 0 0 1 2.45-1.3h.1A2.95 2.95 0 0 1 17 16.95V17c0 .45-.17.86-.45 1.17.29.44.45.96.45 1.5v.38c0 .75-.28 1.43-.74 1.95H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm2.05 14c1.08 0 1.95-.87 1.95-1.95v-.37a1.75 1.75 0 0 0-1.1-1.63l-.57-.22-.7-.43a.25.25 0 0 1-.13-.22v-.23c0-.25.2-.45.45-.45h.1a.45.45 0 0 1 .45.45V17a.75.75 0 0 0 1.5 0v-.05c0-1.08-.87-1.95-1.95-1.95h-.1c-1.08 0-1.95.87-1.95 1.95v.37a1.75 1.75 0 0 0 1.1 1.63l.57.22.7.43c.08.05.13.13.13.22v.23c0 .25-.2.45-.45.45h-.1a.45.45 0 0 1-.45-.45V20a.75.75 0 0 0-1.5 0v.05c0 1.08.87 1.95 1.95 1.95h.1ZM11 20.05A1.94 1.94 0 0 1 9.05 22h-.1A1.95 1.95 0 0 1 7 20.05V20a.75.75 0 0 1 .97-.72c.3.1.53.38.53.72v.05a.45.45 0 0 0 .45.45h.1c.25 0 .45-.2.45-.45v-.23a.25.25 0 0 0-.12-.22l-.71-.43-.57-.22A1.75 1.75 0 0 1 7 17.32v-.37C7 15.87 7.87 15 8.95 15h.1c1.08 0 1.95.87 1.95 1.95V17a.75.75 0 0 1-.97.72.75.75 0 0 1-.53-.72v-.05a.45.45 0 0 0-.45-.45h-.1c-.25 0-.45.2-.45.45v.23c0 .1.05.17.12.22l.71.43.57.22a1.75 1.75 0 0 1 1.1 1.63v.37ZM5.95 22l.05-.05V22h-.05Zm-1.12-.38A2.5 2.5 0 0 0 6 19.5a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75 1 1 0 1 1-2 0v-2a1 1 0 1 1 2 0 .75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75 2.5 2.5 0 0 0-5 0v2a2.5 2.5 0 0 0 3.83 2.12ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentCss24Regular = /*#__PURE__*/createFluentIcon('DocumentCss24Regular', \"24\", [\"M18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v10.63c-.44-.3-.95-.52-1.5-.6V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-1.74c.37-.41.62-.93.7-1.5H18Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38Zm-5.33 12c.2.86.98 1.5 1.9 1.5h.1A1.95 1.95 0 0 0 16 20.05v-.23c0-.62-.32-1.19-.85-1.5l-1.53-.92a.25.25 0 0 1-.12-.22v-.23c0-.25.2-.45.45-.45h.1c.25 0 .45.2.45.45V17a.75.75 0 0 0 1.5 0v-.05c0-1.08-.87-1.95-1.95-1.95h-.1c-1.08 0-1.95.87-1.95 1.95v.23c0 .62.32 1.19.85 1.5l1.53.92c.07.05.12.13.12.22v.23c0 .25-.2.45-.45.45h-.1a.45.45 0 0 1-.45-.45V20a.75.75 0 0 0-1.5 0v.05c0 .15.02.3.05.45ZM5.95 22l.05-.05V22h-.05Zm1.3-1a1.94 1.94 0 0 1-.25-.95V20a.75.75 0 0 1 1.5 0v.05c0 .25.2.45.45.45h.1c.25 0 .45-.2.45-.45v-.23a.25.25 0 0 0-.12-.22l-1.53-.92a1.75 1.75 0 0 1-.85-1.5v-.23C7 15.87 7.87 15 8.95 15h.1c1.08 0 1.95.87 1.95 1.95V17a.75.75 0 0 1-1.5 0v-.05c0-.25-.2-.45-.45-.45h-.1c-.25 0-.45.2-.45.45v.23c0 .1.05.17.12.22l1.53.92c.53.31.85.88.85 1.5v.23A1.96 1.96 0 0 1 9.05 22h-.1c-.73 0-1.37-.4-1.7-1Zm-1.44-.54c.12-.3.19-.62.19-.96a.75.75 0 1 0-1.5 0 1 1 0 1 1-2 0v-2a1 1 0 1 1 2 0 .75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75A2.49 2.49 0 0 0 3.5 15 2.5 2.5 0 0 0 1 17.5v2a2.5 2.5 0 0 0 4.8.96Z\"]);\nexport const DocumentCube20Filled = /*#__PURE__*/createFluentIcon('DocumentCube20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.33a2 2 0 0 0 .67-1.5v-4a2 2 0 0 0-1.1-1.79l-3-1.5a2 2 0 0 0-1.8 0l-.1.05V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm-5.55 7.86 3 1.5a1 1 0 0 1 .55.89v4a1 1 0 0 1-.55.9l-3 1.5a1 1 0 0 1-.9 0l-3-1.5a1 1 0 0 1-.55-.9v-4a1 1 0 0 1 .55-.9l3-1.5a1 1 0 0 1 .9 0ZM2.7 12.47a.5.5 0 0 0-.4.92l2.2.94V17a.5.5 0 1 0 1 0v-2.67l2.2-.94a.5.5 0 0 0-.4-.92l-2.3.99-2.3-1Z\"]);\nexport const DocumentCube20Regular = /*#__PURE__*/createFluentIcon('DocumentCube20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.26l.1-.05A2 2 0 0 1 5 9V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H9.94a2 2 0 0 1-.61 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-9.35 3.1 3 1.5a1 1 0 0 1 .55.9v4a1 1 0 0 1-.55.9l-3 1.5a1 1 0 0 1-.9 0l-3-1.5a1 1 0 0 1-.55-.9v-4a1 1 0 0 1 .55-.9l3-1.5a1 1 0 0 1 .9 0ZM2.7 12.48a.5.5 0 0 0-.4.92l2.2.94V17a.5.5 0 1 0 1 0v-2.67l2.2-.94a.5.5 0 0 0-.4-.92l-2.3.99-2.3-1Z\"]);\nexport const DocumentCube24Filled = /*#__PURE__*/createFluentIcon('DocumentCube24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-7.4l.02-.01A2.5 2.5 0 0 0 12 19.75v-4.5a2.5 2.5 0 0 0-1.38-2.24l-3.5-1.75a2.5 2.5 0 0 0-2.24 0L4 11.7V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-6.83 9.66 3.5 1.75c.5.25.83.77.83 1.34v4.5a1.5 1.5 0 0 1-.83 1.34l-3.5 1.75a1.5 1.5 0 0 1-1.34 0l-3.5-1.75A1.5 1.5 0 0 1 1 19.75v-4.5c0-.57.32-1.09.83-1.34l3.5-1.75a1.5 1.5 0 0 1 1.34 0Zm-3.45 2.9a.5.5 0 1 0-.44.89L5.5 17.3v3.19a.5.5 0 1 0 1 0v-3.2l2.72-1.35a.5.5 0 1 0-.44-.9L6 16.45l-2.78-1.4Z\"]);\nexport const DocumentCube24Regular = /*#__PURE__*/createFluentIcon('DocumentCube24Regular', \"24\", [\"M6 2a2 2 0 0 0-2 2v7.7l.88-.44c.2-.1.4-.17.62-.21V4c0-.28.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5h-6.11a2.5 2.5 0 0 1-1.27 1.49l-.02.01H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6A2 2 0 0 0 12.17 2H6Zm11.38 6.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Zm-10.7 3.66 3.5 1.75c.5.25.82.77.82 1.34v4.5a1.5 1.5 0 0 1-.83 1.34l-3.5 1.75a1.5 1.5 0 0 1-1.34 0l-3.5-1.75A1.5 1.5 0 0 1 1 19.75v-4.5c0-.57.32-1.09.83-1.34l3.5-1.75a1.5 1.5 0 0 1 1.34 0Zm-3.46 2.9a.5.5 0 1 0-.44.89L5.5 17.3v3.19a.5.5 0 1 0 1 0v-3.2l2.72-1.35a.5.5 0 1 0-.44-.9L6 16.45l-2.78-1.4Z\"]);\nexport const DocumentData16Filled = /*#__PURE__*/createFluentIcon('DocumentData16Filled', \"16\", [\"M9.5 5h3.25L9 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v11c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5V6H9.5ZM6 12.5a.5.5 0 0 1-1 0v-6a.5.5 0 0 1 1 0v6Zm2.5 0a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 1 0v2Zm2.5 0a.5.5 0 0 1-1 0v-4a.5.5 0 0 1 1 0v4Z\"]);\nexport const DocumentData16Regular = /*#__PURE__*/createFluentIcon('DocumentData16Regular', \"16\", [\"M5.5 13a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-1 0v6c0 .28.22.5.5.5Zm5.5-.5a.5.5 0 0 1-1 0v-4a.5.5 0 0 1 1 0v4Zm-3.06.5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-1 0v2c0 .28.22.5.5.5ZM3 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.29.44.67.44 1.06V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5Zm4.5 3h2.3L9 2.2v2.3c0 .28.22.5.5.5Z\"]);\nexport const DocumentData20Filled = /*#__PURE__*/createFluentIcon('DocumentData20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm0 5.5c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5ZM7.5 8c.28 0 .5.22.5.5v7a.5.5 0 0 1-1 0v-7c0-.28.22-.5.5-.5Zm5 2c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentData20Regular = /*#__PURE__*/createFluentIcon('DocumentData20Regular', \"20\", [\"M8 8.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7Zm2 3.5c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5Zm3-1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6Zm5.5 4h3.3L11 3.2v3.3c0 .28.22.5.5.5Z\"]);\nexport const DocumentData24Filled = /*#__PURE__*/createFluentIcon('DocumentData24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm0 7c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75Zm-3.25-4c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0v-6.5c0-.41.34-.75.75-.75Zm6.5 2c.41 0 .75.34.75.75v4.5a.75.75 0 0 1-1.5 0v-4.5c0-.41.34-.75.75-.75ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentData24Regular = /*#__PURE__*/createFluentIcon('DocumentData24Regular', \"24\", [\"M8.75 11c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0v-6.5c0-.41.34-.75.75-.75Zm4 4.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Zm2.5-2.75c.41 0 .75.34.75.75v4.5a.75.75 0 0 1-1.5 0v-4.5c0-.41.34-.75.75-.75ZM12.48 2c.33 0 .65.13.89.37l2.85 2.85.02.03 3.17 3.16A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.48ZM6 3.5a.5.5 0 0 0-.5.5v16c0 .27.22.5.5.5h12a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6Zm7.5 1.12V8c0 .28.22.5.5.5h3.38L13.5 4.62Z\"]);\nexport const DocumentData32Filled = /*#__PURE__*/createFluentIcon('DocumentData32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM17 21a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm-6-9a1 1 0 0 0-1 1v12a1 1 0 1 0 2 0V13a1 1 0 0 0-1-1Zm11 5a1 1 0 1 0-2 0v8a1 1 0 1 0 2 0v-8Z\"]);\nexport const DocumentData32Regular = /*#__PURE__*/createFluentIcon('DocumentData32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v22a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8ZM7 5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V5Zm17.59 5H20a1 1 0 0 1-1-1V4.41L24.59 10ZM12 13a1 1 0 1 0-2 0v12a1 1 0 1 0 2 0V13Zm5 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4Zm4-5a1 1 0 0 1 1 1v8a1 1 0 1 1-2 0v-8a1 1 0 0 1 1-1Z\"]);\nexport const DocumentDataLink16Filled = /*#__PURE__*/createFluentIcon('DocumentDataLink16Filled', \"16\", [\"M10.5 5h3.25L10 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5V9h2V6.5a.5.5 0 0 1 1 0V9h.5a3.5 3.5 0 0 1 2.45 6h2.55c.83 0 1.5-.67 1.5-1.5V6h-3.5Zm.5 6.5v-4a.5.5 0 0 1 1 0v4a.5.5 0 0 1-1 0ZM3.5 10a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 10a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentDataLink16Regular = /*#__PURE__*/createFluentIcon('DocumentDataLink16Regular', \"16\", [\"M4 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.29.44.67.44 1.06V13a2 2 0 0 1-2 2H9.95c.3-.29.54-.63.71-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v6H4V3Zm7.5 10a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 1 0v4a.5.5 0 0 1-.5.5ZM6 6.5V9h1V6.5a.5.5 0 0 0-1 0ZM10.5 5h2.3L10 2.2v2.3c0 .28.22.5.5.5Zm-7 5a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 10a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentDataLink20Filled = /*#__PURE__*/createFluentIcon('DocumentDataLink20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5V13h3V8.5a.5.5 0 0 1 1 0v4.54c.55.07 1.06.28 1.5.59V12.5a.5.5 0 0 1 1 0v2.2a3.48 3.48 0 0 1 .16 3.3h3.84c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm2.5 3.5c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3.5 14a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentDataLink20Regular = /*#__PURE__*/createFluentIcon('DocumentDataLink20Regular', \"20\", [\"M8 8.5a.5.5 0 0 0-1 0V13h.5c.17 0 .34.01.5.04V8.5ZM5 4v9H4V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-3.34c.15-.31.25-.65.3-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1Zm5.5 8.5v2.2c-.25-.43-.6-.8-1-1.07V12.5a.5.5 0 0 1 1 0Zm2.5-2a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM11.5 7h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-8 7a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentDataLink24Filled = /*#__PURE__*/createFluentIcon('DocumentDataLink24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v10.56c.24-.04.5-.06.75-.06H8v-2.75a.75.75 0 0 1 1.5 0v2.92c.65.17 1.24.48 1.75.9v-.82a.75.75 0 0 1 1.5 0v2.98a4.74 4.74 0 0 1-.63 4.27H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm3.25 4c.41 0 .75.34.75.75v5.5a.75.75 0 0 1-1.5 0v-5.5c0-.41.34-.75.75-.75ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM12 19.25a3.75 3.75 0 0 0-3.75-3.75h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5V23h.2A3.75 3.75 0 0 0 12 19.24Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5H4.6a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DocumentDataLink24Regular = /*#__PURE__*/createFluentIcon('DocumentDataLink24Regular', \"24\", [\"M8.75 11c.41 0 .75.34.75.75v2.92c-.4-.11-.82-.17-1.25-.17H8v-2.75c0-.41.34-.75.75-.75ZM5.5 14.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5h-5.17c-.14.55-.39 1.05-.7 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42l-1.17-1.17-.02-.02-4.85-4.85a1.25 1.25 0 0 0-.89-.37H6a2 2 0 0 0-2 2v10.56c.24-.04.5-.06.75-.06h.75Zm7.25 3.23v-2.98a.75.75 0 0 0-1.5 0v.82c.68.56 1.21 1.3 1.5 2.16Zm2.5-5.73c.41 0 .75.34.75.75v5.5a.75.75 0 0 1-1.5 0v-5.5c0-.41.34-.75.75-.75ZM13.5 4.62l3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM8.25 15.5a3.75 3.75 0 0 1 .2 7.5h-.2a.75.75 0 0 1-.1-1.49h.1v-.01A2.25 2.25 0 0 0 8.4 17h-.15a.75.75 0 0 1-.1-1.5h.1Zm-3.5 0a.75.75 0 0 1 .1 1.5h-.1a2.25 2.25 0 0 0-.15 4.5h.15a.75.75 0 0 1 .1 1.5h-.1a3.75 3.75 0 0 1-.2-7.5h.2Zm3.5 3a.75.75 0 0 1 .1 1.5h-3.6a.75.75 0 0 1-.1-1.5h3.6Z\"]);\nexport const DocumentDataLink32Filled = /*#__PURE__*/createFluentIcon('DocumentDataLink32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3h-7.53a5.99 5.99 0 0 0 .53-8.47V19a1 1 0 1 0-2 0v1.04a5.98 5.98 0 0 0-2.5-.54H12V13a1 1 0 1 0-2 0v6.5H6.5c-.52 0-1.02.07-1.5.19V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM22 16a1 1 0 1 0-2 0v9a1 1 0 1 0 2 0v-9ZM8 22a1 1 0 0 0-1-1h-.5a4.5 4.5 0 1 0 0 9H7a1 1 0 1 0 0-2h-.5a2.5 2.5 0 0 1 0-5H7a1 1 0 0 0 1-1Zm4-1a1 1 0 1 0 0 2h.5a2.5 2.5 0 0 1 0 5H12a1 1 0 1 0 0 2h.5a4.5 4.5 0 1 0 0-9H12Zm-5 3.5a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H7Z\"]);\nexport const DocumentDataLink32Regular = /*#__PURE__*/createFluentIcon('DocumentDataLink32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v14.69c.48-.12.98-.19 1.5-.19H7V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1h-6.04a6.02 6.02 0 0 1-1.5 2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm2 11v6.5h2V13a1 1 0 1 0-2 0Zm5 7.04c.77.36 1.45.87 2 1.5V19a1 1 0 1 0-2 0v1.04ZM24.59 10H20a1 1 0 0 1-1-1V4.41L24.59 10ZM21 15a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0v-9a1 1 0 0 1 1-1ZM8 22a1 1 0 0 0-1-1h-.5a4.5 4.5 0 1 0 0 9H7a1 1 0 1 0 0-2h-.5a2.5 2.5 0 0 1 0-5H7a1 1 0 0 0 1-1Zm4-1a1 1 0 1 0 0 2h.5a2.5 2.5 0 0 1 0 5H12a1 1 0 1 0 0 2h.5a4.5 4.5 0 1 0 0-9H12Zm-5 3.5a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H7Z\"]);\nexport const DocumentDatabase20Filled = /*#__PURE__*/createFluentIcon('DocumentDatabase20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-4c.3-.43.5-.93.5-1.5V10.3c-.11-1.42-1.4-2.36-2.65-2.83A8.86 8.86 0 0 0 4 7.12V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM6.88 8.12c.4.07.78.17 1.12.3 1.2.45 2 1.21 2 2.08 0 1.38-2.01 2.5-4.5 2.5S1 11.88 1 10.5 3.01 8 5.5 8c.48 0 .94.04 1.38.12ZM5.5 14c1.38 0 2.68-.3 3.67-.86.3-.16.58-.36.83-.59v3.95c0 1.38-2.01 2.5-4.5 2.5S1 17.88 1 16.5v-3.95c.25.23.54.43.83.6 1 .54 2.29.85 3.67.85Z\"]);\nexport const DocumentDatabase20Regular = /*#__PURE__*/createFluentIcon('DocumentDatabase20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v3.13c.32-.06.66-.1 1-.12V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.05c-.08.37-.24.7-.45 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM6.87 8.12c.4.07.78.17 1.12.3 1.2.45 2 1.21 2 2.08 0 1.38-2.01 2.5-4.5 2.5S1 11.88 1 10.5 3.01 8 5.5 8c.48 0 .94.04 1.38.12ZM5.5 14c1.38 0 2.68-.3 3.67-.86.3-.16.58-.36.83-.59v3.95c0 1.38-2.01 2.5-4.5 2.5S1 17.88 1 16.5v-3.95c.25.23.54.43.83.6 1 .54 2.29.85 3.67.85Z\"]);\nexport const DocumentDatabase24Filled = /*#__PURE__*/createFluentIcon('DocumentDatabase24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.53c.32-.42.53-.92.53-1.5v-6.2a2.65 2.65 0 0 0-.85-1.65 5.17 5.17 0 0 0-1.8-1.09 8.66 8.66 0 0 0-1.7-.43 10.68 10.68 0 0 0-3.65.06V4c0-1.1.9-2 2-2h6Zm-1 18.5c0 .56-.37 1.08-1 1.5-.91.6-2.36 1-4 1-2.05 0-3.81-.62-4.58-1.5-.27-.3-.42-.64-.42-1v-4c.31.26.66.49 1.02.66.57.29 1.25.51 1.98.65a10.53 10.53 0 0 0 5-.25c.35-.11.68-.25.98-.4H10l.02-.02c.34-.17.68-.39.98-.65v4.01ZM6 17c-.71 0-1.39-.07-2-.2-1.77-.4-3-1.27-3-2.3 0-1.03 1.23-1.9 3-2.3a9.42 9.42 0 0 1 5 .3c1.21.46 2 1.18 2 2 0 .43-.21.83-.6 1.18a.82.82 0 0 1-.06.06 3.83 3.83 0 0 1-1.15.69 5.95 5.95 0 0 1-1.26.38 8.58 8.58 0 0 1-.55.1h-.02A9.7 9.7 0 0 1 6 17Zm7.5-14.5V8c0 .28.22.5.5.5h5.5l-6-6Z\"]);\nexport const DocumentDatabase24Regular = /*#__PURE__*/createFluentIcon('DocumentDatabase24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-6c0 .58-.2 1.08-.53 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.19c.48-.1.98-.16 1.5-.18V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Zm-3.1 17.06C9.57 22.47 7.9 23 6 23c-2.05 0-3.81-.62-4.58-1.5-.27-.3-.42-.64-.42-1v-4c.31.26.66.49 1.02.66A9.1 9.1 0 0 0 6 18a10.76 10.76 0 0 0 3-.44c.35-.11.68-.25.98-.4.36-.17.71-.4 1.02-.67v4.01c0 .43-.21.83-.6 1.18Zm-4.9-9.67a10.17 10.17 0 0 1 2 .1c.55.09 1.05.22 1.5.39 1.21.46 2 1.18 2 2 0 .82-.79 1.54-2 2-.45.17-.95.3-1.5.39A9.7 9.7 0 0 1 6 17c-2.76 0-5-1.12-5-2.5 0-1.03 1.23-1.9 3-2.3.47-.1.97-.16 1.5-.19Z\"]);\nexport const DocumentDismiss16Filled = /*#__PURE__*/createFluentIcon('DocumentDismiss16Filled', \"16\", [\"M9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v2.7A5.5 5.5 0 0 1 8.66 15h3.84c.83 0 1.5-.67 1.5-1.5V6h-3.5A1.5 1.5 0 0 1 9 4.5Zm1 0V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5ZM2.32 7.32a4.5 4.5 0 1 0 6.36 6.36 4.5 4.5 0 0 0-6.36-6.36Zm4.95 4.95a.5.5 0 0 1-.7 0L5.5 11.2l-1.06 1.06a.5.5 0 0 1-.7-.7l1.05-1.07-1.06-1.06a.5.5 0 0 1 .7-.7L5.5 9.78l1.06-1.06a.5.5 0 0 1 .7.7L6.22 10.5l1.06 1.06c.2.2.2.51 0 .7Z\"]);\nexport const DocumentDismiss16Regular = /*#__PURE__*/createFluentIcon('DocumentDismiss16Regular', \"16\", [\"M4 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H8.66c.4-.28.77-.62 1.08-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v2.02c-.34.03-.68.1-1 .19V3Zm6.5 2h2.3L10 2.2v2.3c0 .28.22.5.5.5ZM2.32 7.32a4.5 4.5 0 1 0 6.36 6.36 4.5 4.5 0 0 0-6.36-6.36Zm4.95 4.95a.5.5 0 0 1-.7 0L5.5 11.2l-1.06 1.06a.5.5 0 0 1-.7-.7l1.05-1.07-1.06-1.06a.5.5 0 0 1 .7-.7L5.5 9.78l1.06-1.06a.5.5 0 0 1 .7.7L6.22 10.5l1.06 1.06c.2.2.2.51 0 .7Z\"]);\nexport const DocumentDismiss20Filled = /*#__PURE__*/createFluentIcon('DocumentDismiss20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM2.32 17.68a4.5 4.5 0 1 0 6.36-6.36 4.5 4.5 0 0 0-6.36 6.36Zm1.41-4.95c.2-.2.51-.2.7 0L5.5 13.8l1.06-1.06a.5.5 0 1 1 .7.7L6.22 14.5l1.06 1.06a.5.5 0 1 1-.71.7L5.5 15.22l-1.06 1.06a.5.5 0 1 1-.7-.71l1.05-1.06-1.06-1.06a.5.5 0 0 1 0-.7Z\"]);\nexport const DocumentDismiss20Regular = /*#__PURE__*/createFluentIcon('DocumentDismiss20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM8.67 17.68a4.5 4.5 0 1 0-6.36-6.36 4.5 4.5 0 0 0 6.36 6.36Zm-4.95-4.95c.2-.2.51-.2.7 0L5.5 13.8l1.06-1.06a.5.5 0 1 1 .7.7L6.22 14.5l1.06 1.06a.5.5 0 1 1-.71.7L5.5 15.22l-1.06 1.06a.5.5 0 1 1-.7-.71l1.05-1.06-1.06-1.06a.5.5 0 0 1 0-.7Z\"]);\nexport const DocumentDismiss24Filled = /*#__PURE__*/createFluentIcon('DocumentDismiss24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-7 9.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm2.48 3.73L7.2 17.5l1.77 1.77a.5.5 0 1 1-.7.7L6.5 18.22l-1.77 1.76a.5.5 0 1 1-.7-.7l1.76-1.77-1.76-1.77a.5.5 0 1 1 .7-.7l1.77 1.76 1.77-1.77a.5.5 0 0 1 .7.71Z\"]);\nexport const DocumentDismiss24Regular = /*#__PURE__*/createFluentIcon('DocumentDismiss24Regular', \"24\", [\"M6.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm5.63-10c.6 0 1.17.24 1.59.66l2.81 2.8 2.8 2.82c.43.42.67 1 .67 1.6v9.87c0 1.24-1.01 2.25-2.25 2.25h-6.56c.43-.44.79-.95 1.08-1.5h5.48c.41 0 .75-.34.75-.75V10h-4.25c-1.2 0-2.17-.92-2.24-2.1L12 7.76V3.5H6.25a.75.75 0 0 0-.75.75v6.83c-.52.08-1.03.22-1.5.42V4.25C4 3.01 5 2 6.25 2h5.88ZM4.09 14.97l-.07.05-.05.07a.5.5 0 0 0 0 .57l.05.07L5.8 17.5l-1.76 1.77-.06.07a.5.5 0 0 0 0 .57l.06.06.07.06c.17.12.4.12.56 0l.07-.06 1.77-1.76 1.77 1.77.07.05c.17.12.4.12.57 0l.07-.05.05-.07a.5.5 0 0 0 0-.57l-.05-.07L7.2 17.5l1.77-1.77.06-.07a.5.5 0 0 0 0-.57l-.06-.07-.07-.05a.5.5 0 0 0-.57 0l-.07.05L6.5 16.8l-1.77-1.77-.07-.05a.5.5 0 0 0-.57 0Zm9.4-10.41.01 3.2c0 .37.28.69.65.74H17.45L13.5 4.56Z\"]);\nexport const DocumentEdit16Filled = /*#__PURE__*/createFluentIcon('DocumentEdit16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v1.04c-.5.08-.98.32-1.37.7l-4.29 4.3c-.48.48-.83 1.08-1 1.75l-.3 1.2H4.5A1.5 1.5 0 0 1 3 13.5V2.5C3 1.67 3.67 1 4.5 1H8Zm5 7.06c-.24.07-.47.2-.66.4l-4.3 4.28c-.35.36-.6.8-.72 1.3l-.3 1.2a.6.6 0 0 0 .73.74l1.22-.3c.48-.12.93-.38 1.29-.73l4.28-4.29A1.56 1.56 0 0 0 13 8.06ZM9 1.25V4.5c0 .28.22.5.5.5h3.25L9 1.25Z\"]);\nexport const DocumentEdit16Regular = /*#__PURE__*/createFluentIcon('DocumentEdit16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h1.05l.25-1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v1.44c.3-.2.65-.34 1-.4V5.4c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.58 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM13 8.06c-.24.07-.47.2-.66.4l-4.3 4.28c-.34.35-.59.78-.71 1.26l-.01.03-.3 1.21a.6.6 0 0 0 .73.74l1.22-.3c.48-.12.93-.38 1.29-.73l4.28-4.29A1.56 1.56 0 0 0 13 8.06Z\"]);\nexport const DocumentEdit20Filled = /*#__PURE__*/createFluentIcon('DocumentEdit20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h2.72a1.86 1.86 0 0 1-.16-1.35l.37-1.5a3.2 3.2 0 0 1 .84-1.48l4.83-4.83c.53-.53 1.21-.8 1.9-.84h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm6.45 3.05a1.87 1.87 0 0 0-2.64 0l-4.83 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83c.73-.73.73-1.91 0-2.64Z\"]);\nexport const DocumentEdit20Regular = /*#__PURE__*/createFluentIcon('DocumentEdit20Regular', \"20\", [\"M11.5 8H16v-.59a1.5 1.5 0 0 0-.06-.4V7a1.5 1.5 0 0 0-.38-.65l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h2.22l-.01-.03A1.86 1.86 0 0 1 8 17H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5Zm0-1a.5.5 0 0 1-.5-.5V3.2L14.8 7h-3.3Zm3.3 2.55a1.87 1.87 0 1 1 2.65 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02l4.83-4.83Z\"]);\nexport const DocumentEdit24Filled = /*#__PURE__*/createFluentIcon('DocumentEdit24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h4.92a4.3 4.3 0 0 0-1.56.97l-6.05 6.1c-.35.35-.6.79-.73 1.27l-.52 2.03c-.16.6-.04 1.17.24 1.63H5.5A1.5 1.5 0 0 1 4 20.5v-17C4 2.67 4.67 2 5.5 2H12Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.3 15.07 5.9-5.9a2.29 2.29 0 1 1 3.23 3.23l-5.9 5.9c-.35.35-.78.6-1.25.71l-1.83.46c-.8.2-1.52-.52-1.32-1.32l.46-1.83c.12-.47.36-.9.7-1.25Z\"]);\nexport const DocumentEdit24Regular = /*#__PURE__*/createFluentIcon('DocumentEdit24Regular', \"24\", [\"M6.25 3.5a.75.75 0 0 0-.75.75v15.5c0 .41.34.75.75.75h3.78c-.1.55 0 1.07.27 1.5H6.25C5.01 22 4 21 4 19.75V4.25C4 3.01 5 2 6.25 2h6.09c.46 0 .9.18 1.23.51l5.92 5.92c.33.32.51.77.51 1.23V10h-6a2 2 0 0 1-2-2V3.5H6.25Zm7.25 1.06V8c0 .28.22.5.5.5h3.44L13.5 4.56ZM19.71 11a2.28 2.28 0 0 1 1.62 3.9l-5.9 5.9c-.35.35-.78.6-1.25.71l-1.83.46c-.8.2-1.52-.52-1.32-1.32l.46-1.83c.12-.47.36-.9.7-1.25l5.9-5.9a2.28 2.28 0 0 1 1.62-.67Z\"]);\nexport const DocumentEndnote20Filled = /*#__PURE__*/createFluentIcon('DocumentEndnote20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H11v-6a2 2 0 0 0-2-2H4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM3.5 11a.5.5 0 0 1 0 1h-1a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h1a.5.5 0 0 1 0 1h-1A1.5 1.5 0 0 1 1 17.5v-5c0-.83.67-1.5 1.5-1.5h1Zm4 7a.5.5 0 0 0 0 1h1c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 0 0 1h1c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5h-1ZM6 14.5a.5.5 0 0 0-1 0v3a.5.5 0 1 0 1 0v-3Zm0-2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z\"]);\nexport const DocumentEndnote20Regular = /*#__PURE__*/createFluentIcon('DocumentEndnote20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v6h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3v1h3a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM3.5 11a.5.5 0 0 1 0 1h-1a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h1a.5.5 0 0 1 0 1h-1A1.5 1.5 0 0 1 1 17.5v-5c0-.83.67-1.5 1.5-1.5h1Zm4 7a.5.5 0 0 0 0 1h1c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 0 0 1h1c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5h-1Zm-2-4c.27 0 .5.22.5.5v3a.5.5 0 1 1-1 0v-3c0-.28.22-.5.5-.5Zm0-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DocumentEndnote24Filled = /*#__PURE__*/createFluentIcon('DocumentEndnote24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10.5c0 .83-.67 1.5-1.5 1.5H13v-8a2 2 0 0 0-2-2H4V3.5C4 2.67 4.67 2 5.5 2H12Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-6.25 15a.75.75 0 0 0-1.5 0V21a.75.75 0 0 0 1.5 0v-3.5Zm0-2.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-2.75-1.5c0 .41-.34.75-.75.75H2.5v7h1.25a.75.75 0 0 1 0 1.5H2.5A1.5 1.5 0 0 1 1 21.5v-7c0-.83.67-1.5 1.5-1.5h1.25c.41 0 .75.34.75.75Zm4.75.75a.75.75 0 0 1 0-1.5h1.25c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H9.25a.75.75 0 0 1 0-1.5h1.25v-7H9.25Z\"]);\nexport const DocumentEndnote24Regular = /*#__PURE__*/createFluentIcon('DocumentEndnote24Regular', \"24\", [\"M5.5 4.25c0-.41.34-.75.75-.75H12V8c0 1.1.9 2 2 2h4.5v9.75c0 .41-.34.75-.75.75H13V22h4.75c1.24 0 2.25-1 2.25-2.25V9.66c0-.46-.18-.9-.51-1.23L13.57 2.5A1.75 1.75 0 0 0 12.34 2H6.25C5.01 2 4 3 4 4.25V12h1.5V4.25Zm8 3.75V4.56l3.94 3.94H14a.5.5 0 0 1-.5-.5Zm-9 5.75c0 .41-.34.75-.75.75H2.5v7h1.25a.75.75 0 0 1 0 1.5H2.5A1.5 1.5 0 0 1 1 21.5v-7c0-.83.67-1.5 1.5-1.5h1.25c.41 0 .75.34.75.75Zm4.75.75a.75.75 0 0 1 0-1.5h1.25c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H9.25a.75.75 0 0 1 0-1.5h1.25v-7H9.25ZM6.5 16.75c.41 0 .75.34.75.75V21a.75.75 0 0 1-1.5 0v-3.5c0-.41.34-.75.75-.75Zm0-.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const DocumentError16Filled = /*#__PURE__*/createFluentIcon('DocumentError16Filled', \"16\", [\"M6 1h3v3.5c0 .83.67 1.5 1.5 1.5H14v7a2 2 0 0 1-2 2H8.67A5.5 5.5 0 0 0 4 5.2V3c0-1.1.9-2 2-2Zm4.5 4H14l-4-4v3.5c0 .28.22.5.5.5Zm-.5 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM5.5 8a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.12a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.25Z\"]);\nexport const DocumentError16Regular = /*#__PURE__*/createFluentIcon('DocumentError16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.3.38-.67.71-1.07 1H12a2 2 0 0 0 2-2V5.42c0-.4-.16-.78-.44-1.06l-2.92-2.92A1.5 1.5 0 0 0 9.58 1H6Zm4 3.5V2.21l2.8 2.8h-2.3a.5.5 0 0 1-.5-.5Zm0 6a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM5.5 8a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.24Z\"]);\nexport const DocumentError20Filled = /*#__PURE__*/createFluentIcon('DocumentError20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM5.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.24Z\"]);\nexport const DocumentError20Regular = /*#__PURE__*/createFluentIcon('DocumentError20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM5.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.24Z\"]);\nexport const DocumentError24Filled = /*#__PURE__*/createFluentIcon('DocumentError24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.5 15a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM6.5 14a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm0 7.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.25Z\"]);\nexport const DocumentError24Regular = /*#__PURE__*/createFluentIcon('DocumentError24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM6.5 14a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm0 7.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.25Z\"]);\nexport const DocumentFit16Filled = /*#__PURE__*/createFluentIcon('DocumentFit16Filled', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H5Zm0 3a1 1 0 0 1 1-1h1a.5.5 0 0 1 0 1H6v1a.5.5 0 0 1-1 0V4Zm0 8v-1a.5.5 0 0 1 1 0v1h1a.5.5 0 0 1 0 1H6a1 1 0 0 1-1-1Zm5-9a1 1 0 0 1 1 1v1a.5.5 0 0 1-1 0V4H9a.5.5 0 0 1 0-1h1Zm1 9a1 1 0 0 1-1 1H9a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0v1Z\"]);\nexport const DocumentFit16Regular = /*#__PURE__*/createFluentIcon('DocumentFit16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H5ZM4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3Zm1 1a1 1 0 0 1 1-1h1a.5.5 0 0 1 0 1H6v1a.5.5 0 0 1-1 0V4Zm0 8a1 1 0 0 0 1 1h1a.5.5 0 0 0 0-1H6v-1a.5.5 0 0 0-1 0v1Zm5-9a1 1 0 0 1 1 1v1a.5.5 0 0 1-1 0V4H9a.5.5 0 0 1 0-1h1Zm1 9a1 1 0 0 1-1 1H9a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0v1Z\"]);\nexport const DocumentFit20Filled = /*#__PURE__*/createFluentIcon('DocumentFit20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm1.5 3a.5.5 0 0 0-.5.5v1a.5.5 0 0 1-1 0v-1C6 4.67 6.67 4 7.5 4h1a.5.5 0 0 1 0 1h-1Zm0 10h1a.5.5 0 0 1 0 1h-1A1.5 1.5 0 0 1 6 14.5v-1a.5.5 0 0 1 1 0v1c0 .28.22.5.5.5ZM13 5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 1 0-1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 1-1 0v-1Zm-.5 9.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 1 1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 1 0-1h1Z\"]);\nexport const DocumentFit20Regular = /*#__PURE__*/createFluentIcon('DocumentFit20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6ZM5 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm2.5 1a.5.5 0 0 0-.5.5v1a.5.5 0 0 1-1 0v-1C6 4.67 6.67 4 7.5 4h1a.5.5 0 0 1 0 1h-1Zm0 10a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 0-1 0v1c0 .83.67 1.5 1.5 1.5h1a.5.5 0 0 0 0-1h-1ZM13 5.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 1 0-1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 1-1 0v-1Zm-.5 9.5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 1 1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 1 0-1h1Z\"]);\nexport const DocumentFit24Filled = /*#__PURE__*/createFluentIcon('DocumentFit24Filled', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h11.5c1.24 0 2.25-1 2.25-2.25V4.25C20 3.01 19 2 17.75 2H6.25ZM9 6.5a.5.5 0 0 0-.5.5v1.25a.75.75 0 0 1-1.5 0V7c0-1.1.9-2 2-2h1.25a.75.75 0 0 1 0 1.5H9Zm0 11h1.25a.75.75 0 0 1 0 1.5H9a2 2 0 0 1-2-2v-1.25a.75.75 0 0 1 1.5 0V17c0 .28.22.5.5.5ZM15.5 7a.5.5 0 0 0-.5-.5h-1.25a.75.75 0 0 1 0-1.5H15a2 2 0 0 1 2 2v1.25a.75.75 0 0 1-1.5 0V7ZM15 17.5a.5.5 0 0 0 .5-.5v-1.25a.75.75 0 0 1 1.5 0V17a2 2 0 0 1-2 2h-1.25a.75.75 0 0 1 0-1.5H15Z\"]);\nexport const DocumentFit24Regular = /*#__PURE__*/createFluentIcon('DocumentFit24Regular', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h11.5c1.24 0 2.25-1 2.25-2.25V4.25C20 3.01 19 2 17.75 2H6.25ZM5.5 4.25c0-.41.34-.75.75-.75h11.5c.41 0 .75.34.75.75v15.5c0 .41-.34.75-.75.75H6.25a.75.75 0 0 1-.75-.75V4.25ZM9 6.5a.5.5 0 0 0-.5.5v1.25a.75.75 0 0 1-1.5 0V7c0-1.1.9-2 2-2h1.25a.75.75 0 0 1 0 1.5H9Zm0 11a.5.5 0 0 1-.5-.5v-1.25a.75.75 0 0 0-1.5 0V17c0 1.1.9 2 2 2h1.25a.75.75 0 0 0 0-1.5H9ZM15.5 7a.5.5 0 0 0-.5-.5h-1.25a.75.75 0 0 1 0-1.5H15a2 2 0 0 1 2 2v1.25a.75.75 0 0 1-1.5 0V7ZM15 17.5a.5.5 0 0 0 .5-.5v-1.25a.75.75 0 0 1 1.5 0V17a2 2 0 0 1-2 2h-1.25a.75.75 0 0 1 0-1.5H15Z\"]);\nexport const DocumentFlowchart20Filled = /*#__PURE__*/createFluentIcon('DocumentFlowchart20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4 1c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H8v1.8L9.2 13H11v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V14H9.2l-1.35 1.35a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 0-.7L7 11.79V10h-.5a.5.5 0 0 1-.5-.5v-2Zm5-1V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentFlowchart20Regular = /*#__PURE__*/createFluentIcon('DocumentFlowchart20Regular', \"20\", [\"M6 7.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H8v1.8L9.2 13H11v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V14H9.2l-1.35 1.35a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 0-.7L7 11.79V10h-.5a.5.5 0 0 1-.5-.5v-2ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6ZM5 4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm9.8 3h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Z\"]);\nexport const DocumentFlowchart24Filled = /*#__PURE__*/createFluentIcon('DocumentFlowchart24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-5.5.25c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75v2.5c0 .41-.34.75-.75.75h-.5v2.69l1.56 1.56h2.69v-.5c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75v2.5c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 1-.75-.75v-.5h-2.69l-1.78 1.78c-.3.3-.77.3-1.06 0l-2-2a.75.75 0 0 1 0-1.06l1.78-1.78V11.5h-.5a.75.75 0 0 1-.75-.75v-2.5Zm7-.25V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentFlowchart24Regular = /*#__PURE__*/createFluentIcon('DocumentFlowchart24Regular', \"24\", [\"M6.5 8.25c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75v2.5c0 .41-.34.75-.75.75h-.5v2.69l1.56 1.56h2.69v-.5c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75v2.5c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 1-.75-.75v-.5h-2.69l-1.78 1.78c-.3.3-.77.3-1.06 0l-2-2a.75.75 0 0 1 0-1.06l1.78-1.78V11.5h-.5a.75.75 0 0 1-.75-.75v-2.5Zm12.91.16L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42ZM18.5 20a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Z\"]);\nexport const DocumentFolder16Filled = /*#__PURE__*/createFluentIcon('DocumentFolder16Filled', \"16\", [\"M12.5 9H12V4.09c.58.2 1 .76 1 1.41v3.55a2.51 2.51 0 0 0-.5-.05ZM6.85 4.73 11 8.88V3.5c0-.83-.67-1.5-1.5-1.5h-5C3.67 2 3 2.67 3 3.5v.55c.16-.03.33-.05.5-.05h1.59c.66 0 1.3.26 1.76.73ZM3.5 5C2.67 5 2 5.67 2 6.5V12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-.5c0-.83-.67-1.5-1.5-1.5h-1.59a.5.5 0 0 1-.35-.15L6.15 5.44A1.5 1.5 0 0 0 5.09 5H3.5Z\"]);\nexport const DocumentFolder16Regular = /*#__PURE__*/createFluentIcon('DocumentFolder16Regular', \"16\", [\"M13 10.09c.58.2 1 .76 1 1.41v.5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6.5c0-.65.42-1.2 1-1.41V3.5C3 2.67 3.67 2 4.5 2h5c.83 0 1.5.67 1.5 1.5V10h1V4.09c.58.2 1 .76 1 1.41v4.59Zm-3-.8V3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V5h1.09c.4 0 .78.16 1.06.44L10 9.29ZM3 6.5V12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-.5a.5.5 0 0 0-.5-.5h-1.59c-.4 0-.78-.16-1.06-.44L5.44 6.15A.5.5 0 0 0 5.09 6H3.5a.5.5 0 0 0-.5.5Z\"]);\nexport const DocumentFolder20Filled = /*#__PURE__*/createFluentIcon('DocumentFolder20Filled', \"20\", [\"M12 2a2 2 0 0 1 2 2v7h-.88L9 6.88A3 3 0 0 0 6.88 6H5a3 3 0 0 0-1 .17V4c0-1.1.9-2 2-2h6Zm3 9a3 3 0 0 1 1 .17V6a2 2 0 0 0-1-1.73V11ZM5 7a2 2 0 0 0-2 2v6.5A2.5 2.5 0 0 0 5.5 18h9a2.5 2.5 0 0 0 2.5-2.5V14a2 2 0 0 0-2-2h-1.88a1 1 0 0 1-.7-.3L8.28 7.6A2 2 0 0 0 6.88 7H5Z\"]);\nexport const DocumentFolder20Regular = /*#__PURE__*/createFluentIcon('DocumentFolder20Regular', \"20\", [\"M12 2a2 2 0 0 1 2 2v8h1V4.27c.6.34 1 .99 1 1.73v6.27c.6.34 1 .99 1 1.73v1.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 15.5V9a2 2 0 0 1 1-1.73V4c0-1.1.9-2 2-2h6ZM5 7h1.88a2 2 0 0 1 1.41.59l4.12 4.12a1 1 0 0 0 .59.28V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3ZM4 9v6.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V14a1 1 0 0 0-1-1h-1.88a2 2 0 0 1-1.41-.59L7.59 8.3A1 1 0 0 0 6.88 8H5a1 1 0 0 0-1 1Z\"]);\nexport const DocumentFolder24Filled = /*#__PURE__*/createFluentIcon('DocumentFolder24Filled', \"24\", [\"M18.5 6.75V4.63c.87.3 1.5 1.14 1.5 2.12v7.5c-.38-.16-.8-.25-1.25-.25h-.25V6.75ZM4 4.25v3c.38-.16.8-.25 1.25-.25H8.1c.9 0 1.76.38 2.38 1.04L16 14h1.49V4.25c0-1.24-1-2.25-2.25-2.25h-9C5.01 2 4 3 4 4.25ZM5.25 8C4.01 8 3 9 3 10.25v8.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-1.5c0-1.24-1-2.25-2.25-2.25H15.9c-.2 0-.4-.09-.55-.24l-5.6-6.04A2.25 2.25 0 0 0 8.1 8H5.25Z\"]);\nexport const DocumentFolder24Regular = /*#__PURE__*/createFluentIcon('DocumentFolder24Regular', \"24\", [\"M18.5 4.63V15h-1V4.25c0-1.24-1-2.25-2.25-2.25h-9C5.01 2 4 3 4 4.25v4.13c-.6.4-1 1.09-1 1.87v8.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-1.5c0-.78-.4-1.47-1-1.87V6.75c0-.98-.63-1.81-1.5-2.12ZM5.5 8V4.25c0-.41.34-.75.75-.75h9c.41 0 .75.34.75.75V15h-.1c-.2 0-.4-.09-.55-.24l-5.6-6.04A2.25 2.25 0 0 0 8.1 8H5.5Zm-1 2.25c0-.41.34-.75.75-.75H8.1c.2 0 .4.09.55.24l5.6 6.04c.43.46 1.03.72 1.65.72h2.85c.41 0 .75.34.75.75v1.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75v-8.5Z\"]);\nexport const DocumentFooter16Filled = /*#__PURE__*/createFluentIcon('DocumentFooter16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75v10.5c0 .97-.78 1.75-1.75 1.75h-6.5C3.78 15 3 14.22 3 13.25V2.75ZM6 11a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H6Z\"]);\nexport const DocumentFooter16Regular = /*#__PURE__*/createFluentIcon('DocumentFooter16Regular', \"16\", [\"M6 11a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H6ZM4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h6.5c.97 0 1.75-.78 1.75-1.75V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM4 2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v10.5c0 .41-.34.75-.75.75h-6.5a.75.75 0 0 1-.75-.75V2.75Z\"]);\nexport const DocumentFooter20Filled = /*#__PURE__*/createFluentIcon('DocumentFooter20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm1 12h6a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2Z\"]);\nexport const DocumentFooter20Regular = /*#__PURE__*/createFluentIcon('DocumentFooter20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6ZM5 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm2 10a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H7Z\"]);\nexport const DocumentFooter24Filled = /*#__PURE__*/createFluentIcon('DocumentFooter24Filled', \"24\", [\"M17.75 2c1.19 0 2.16.92 2.24 2.1v15.65c0 1.18-.92 2.16-2.09 2.24H6.25c-1.2 0-2.17-.92-2.25-2.1V4.25C4 3.07 4.92 2.09 6.1 2h11.65ZM8.5 16a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7Z\"]);\nexport const DocumentFooter24Regular = /*#__PURE__*/createFluentIcon('DocumentFooter24Regular', \"24\", [\"M8.5 16a1.5 1.5 0 1 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM20 4.1A2.25 2.25 0 0 0 17.74 2H6.09A2.25 2.25 0 0 0 4 4.25v15.5l.01.15A2.25 2.25 0 0 0 6.25 22h11.5l.15-.01a2.25 2.25 0 0 0 2.1-2.25V4.1ZM6.24 3.5h11.6c.36.05.65.37.65.75v15.5l-.01.1a.75.75 0 0 1-.74.64H6.15a.75.75 0 0 1-.65-.75V4.14a.75.75 0 0 1 .75-.64Z\"]);\nexport const DocumentFooterDismiss20Filled = /*#__PURE__*/createFluentIcon('DocumentFooterDismiss20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-3.8 0 1.15-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5Zm-.7 5.5a5.5 5.5 0 0 0 1.5-.2V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h4.26a5.5 5.5 0 0 0 4.24 9ZM7 14a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H7Z\"]);\nexport const DocumentFooterDismiss20Regular = /*#__PURE__*/createFluentIcon('DocumentFooterDismiss20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM15 16v-5.02c.34-.03.68-.1 1-.19V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h4.26c-.26.3-.48.64-.66 1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1Zm-8-2a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H7Z\"]);","import { createFluentIcon } from \"../utils/createFluentIcon\";\nexport const DocumentFooterDismiss24Filled = /*#__PURE__*/createFluentIcon('DocumentFooterDismiss24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.14-2.35a.5.5 0 1 0-.71.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.65a.5.5 0 1 0 .7-.71L18.21 6.5l1.64-1.65a.5.5 0 0 0-.7-.7L17.5 5.79l-1.64-1.64ZM17.5 13c.89 0 1.73-.17 2.5-.5v7.25c0 1.2-.93 2.17-2.1 2.24l-.15.01H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75V4.25c0-1.2.92-2.17 2.1-2.25H12.82a6.5 6.5 0 0 0 4.69 11Zm-9 3a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7Z\"]);\nexport const DocumentFooterDismiss24Regular = /*#__PURE__*/createFluentIcon('DocumentFooterDismiss24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 1 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 1 0 .7-.7L18.21 6.5l1.64-1.65a.5.5 0 1 0-.7-.7L17.5 5.79l-1.65-1.64Zm2.65 15.6v-6.83a6.46 6.46 0 0 0 1.5-.42v7.24c0 1.2-.93 2.17-2.1 2.25H6.25c-1.2 0-2.17-.92-2.25-2.1V4.25C4 3.06 4.92 2.09 6.1 2h6.71c-.42.44-.79.94-1.07 1.5h-5.5c-.37 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.39 0 .7-.28.75-.64v-.1ZM8.5 16a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7Z\"]);\nexport const DocumentFs16Filled = /*#__PURE__*/createFluentIcon('DocumentFs16Filled', \"16\", [\"M10.5 5h3.25L10 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v6.6c.2.06.4.18.56.34.2.19.32.42.39.68l.04-.03a.5.5 0 0 1 .07-.03A1.5 1.5 0 0 1 6.5 9c.37 0 .72.13 1 .38a1.5 1.5 0 0 1 2.44.68A1.49 1.49 0 0 1 11 11.5c0 .37-.13.72-.38 1a1.5 1.5 0 0 1-.68 2.44l-.02.03-.01.03h2.59c.83 0 1.5-.67 1.5-1.5V6h-3.5Zm-1 7H9v-1h.5a.5.5 0 1 0 0-1H9v-.5a.5.5 0 1 0-1 0v.5H7v-.5a.5.5 0 1 0-1 0v.5h-.5a.5.5 0 1 0 0 1H6l.01 1H5.5a.5.5 0 1 0 0 1h.52v.5c0 .13.05.26.15.35a.5.5 0 0 0 .85-.35V14H8v.5c0 .13.05.26.15.35A.5.5 0 0 0 9 14.5V14h.5a.5.5 0 1 0 0-1ZM8 13h-.99v-1H8v1Zm-4.15-2.15a.5.5 0 0 0 0-.7.5.5 0 0 0-.35-.15h-2a.5.5 0 0 0-.5.5v4a.5.5 0 1 0 1 0V13h1a.5.5 0 1 0 0-1H2v-1h1.5a.5.5 0 0 0 .35-.15Z\"]);\nexport const DocumentFs16Regular = /*#__PURE__*/createFluentIcon('DocumentFs16Regular', \"16\", [\"m13.56 4.35-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6a2 2 0 0 0-2 2v5.83c.42.13.78.4 1 .79V3a1 1 0 0 1 1-1h3v2.5A1.5 1.5 0 0 0 10.5 6H13v7a1 1 0 0 1-1 1h-.83c-.13.42-.42.78-.8 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.77-.44-1.06ZM10.5 5a.5.5 0 0 1-.5-.5V2.2L12.8 5h-2.3Zm-1 8H9v-1h.5a.5.5 0 0 0 0-1H9v-.5a.5.5 0 0 0-1 0v.5H7v-.5a.5.5 0 0 0-1 0v.5h-.5a.5.5 0 0 0 0 1H6l.01 1H5.5a.5.5 0 0 0 0 1h.52v.5a.5.5 0 0 0 1 0V14H8v.5a.5.5 0 0 0 1 0V14h.5a.5.5 0 0 0 0-1ZM8 13h-.99v-1H8v1Zm-4.15-2.15A.5.5 0 0 0 3.5 10h-2a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0V13h1a.5.5 0 0 0 0-1H2v-1h1.5a.5.5 0 0 0 .35-.15Z\"]);\nexport const DocumentHeader16Filled = /*#__PURE__*/createFluentIcon('DocumentHeader16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75v10.5c0 .97-.78 1.75-1.75 1.75h-6.5C3.78 15 3 14.22 3 13.25V2.75ZM6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6Z\"]);\nexport const DocumentHeader16Regular = /*#__PURE__*/createFluentIcon('DocumentHeader16Regular', \"16\", [\"M6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6ZM4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h6.5c.97 0 1.75-.78 1.75-1.75V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM4 2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v10.5c0 .41-.34.75-.75.75h-6.5a.75.75 0 0 1-.75-.75V2.75Z\"]);\nexport const DocumentHeader20Filled = /*#__PURE__*/createFluentIcon('DocumentHeader20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm1 2h6a1 1 0 1 1 0 2H7a1 1 0 0 1 0-2Z\"]);\nexport const DocumentHeader20Regular = /*#__PURE__*/createFluentIcon('DocumentHeader20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6ZM5 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm2 0a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H7Z\"]);\nexport const DocumentHeader24Filled = /*#__PURE__*/createFluentIcon('DocumentHeader24Filled', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.2-.93 2.17-2.1 2.24l-.15.01H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM8.51 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7Z\"]);\nexport const DocumentHeader24Regular = /*#__PURE__*/createFluentIcon('DocumentHeader24Regular', \"24\", [\"M8.5 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM20 4.1A2.25 2.25 0 0 0 17.74 2H6.1A2.25 2.25 0 0 0 4 4.26V19.9A2.25 2.25 0 0 0 6.26 22H17.9a2.25 2.25 0 0 0 2.1-2.25V4.1ZM6.24 3.5h11.6c.37.06.65.37.65.75v15.6a.75.75 0 0 1-.75.65H6.15a.75.75 0 0 1-.65-.75V4.15a.75.75 0 0 1 .75-.65Z\"]);\nexport const DocumentHeaderArrowDown16Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75V5.6A5.5 5.5 0 0 0 7.34 15H4.75C3.78 15 3 14.22 3 13.25V2.75ZM6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6Zm9 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L11 11.29V8.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentHeaderArrowDown16Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown16Regular', \"16\", [\"M4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h2.59c-.4-.28-.77-.62-1.08-1H4.75a.75.75 0 0 1-.75-.75V2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v2.46c.35.1.68.23 1 .39V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6Zm9 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L11 11.29V8.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentHeaderArrowDown20Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26A5.5 5.5 0 0 1 16 9.2V4a2 2 0 0 0-2-2H6Zm1 2h6a1 1 0 1 1 0 2H7a1 1 0 0 1 0-2Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 15.29V12.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentHeaderArrowDown20Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H6Zm1 2a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H7Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85 2.35a.5.5 0 0 0 .35.15.5.5 0 0 0 .35-.15l2-2a.5.5 0 0 0-.7-.7L15 15.29V12.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2Z\"]);\nexport const DocumentHeaderArrowDown24Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown24Filled', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v7.25A6.5 6.5 0 0 0 12.81 22H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM8.51 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-5-3a.5.5 0 0 0-1 0v4.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L18 19.29V14.5Z\"]);\nexport const DocumentHeaderArrowDown24Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderArrowDown24Regular', \"24\", [\"M8.5 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM20 4.1A2.25 2.25 0 0 0 17.74 2H6.1A2.25 2.25 0 0 0 4 4.26V19.9A2.25 2.25 0 0 0 6.26 22h6.56a6.52 6.52 0 0 1-1.08-1.5H6.15a.75.75 0 0 1-.65-.75V4.15a.75.75 0 0 1 .75-.65h11.6c.37.06.65.37.65.75v6.83c.52.08 1.03.22 1.5.42V4.1Zm3 13.4a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-5-3a.5.5 0 0 0-1 0v4.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L18 19.29V14.5Z\"]);\nexport const DocumentHeaderDismiss20Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderDismiss20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26A5.5 5.5 0 0 1 16 9.2V4a2 2 0 0 0-2-2H6Zm1 2h6a1 1 0 1 1 0 2H7a1 1 0 0 1 0-2Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const DocumentHeaderDismiss20Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderDismiss20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H6Zm1 2a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H7Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const DocumentHeaderDismiss24Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderDismiss24Filled', \"24\", [\"M17.75 2c1.19 0 2.16.92 2.24 2.1v7.4A6.5 6.5 0 0 0 12.8 22H6.26c-1.2 0-2.17-.93-2.24-2.1L4 19.74V4.25c0-1.2.92-2.17 2.1-2.24L6.25 2h11.5ZM8.5 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.14-2.35a.5.5 0 1 0-.71.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.64a.5.5 0 0 0-.7-.71l-1.65 1.64-1.64-1.64Z\"]);\nexport const DocumentHeaderDismiss24Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderDismiss24Regular', \"24\", [\"M17.75 2c1.19 0 2.16.92 2.24 2.1v7.4c-.47-.2-.97-.34-1.5-.42V4.25c0-.38-.28-.7-.64-.74l-.1-.01H6.25c-.38 0-.7.28-.74.65l-.01.1v15.5c0 .37.28.69.65.74h5.58c.29.56.65 1.06 1.08 1.5H6.25c-1.2 0-2.17-.92-2.24-2.1L4 19.75V4.25c0-1.2.92-2.17 2.1-2.24L6.25 2h11.5ZM8.5 5a1.5 1.5 0 0 0 0 3h7a1.5 1.5 0 0 0 0-3h-7ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const DocumentHeaderFooter16Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75v10.5c0 .97-.78 1.75-1.75 1.75h-6.5C3.78 15 3 14.22 3 13.25V2.75ZM6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6Zm0 8a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H6Z\"]);\nexport const DocumentHeaderFooter16Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter16Regular', \"16\", [\"M6 3a1 1 0 0 0 0 2h4a1 1 0 1 0 0-2H6Zm0 8a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H6ZM4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h6.5c.97 0 1.75-.78 1.75-1.75V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM4 2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v10.5c0 .41-.34.75-.75.75h-6.5a.75.75 0 0 1-.75-.75V2.75Z\"]);\nexport const DocumentHeaderFooter20Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter20Filled', \"20\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2 1a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H7a1 1 0 0 0-1 1Zm0 10a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H7a1 1 0 0 0-1 1Z\"]);\nexport const DocumentHeaderFooter20Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter20Regular', \"20\", [\"M6 5a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm0 10a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm8 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8Z\"]);\nexport const DocumentHeaderFooter24Filled = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter24Filled', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.2-.93 2.17-2.1 2.24l-.15.01H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM7.01 6.5C7 7.33 7.68 8 8.5 8h7a1.5 1.5 0 0 0 0-3h-7C7.68 5 7 5.68 7 6.5Zm0 11c0 .83.67 1.5 1.5 1.5h7a1.5 1.5 0 0 0 0-3h-7c-.83 0-1.5.68-1.5 1.5Z\"]);\nexport const DocumentHeaderFooter24Regular = /*#__PURE__*/createFluentIcon('DocumentHeaderFooter24Regular', \"24\", [\"M7 6.5C7 5.68 7.69 5 8.5 5h7a1.5 1.5 0 0 1 0 3h-7A1.5 1.5 0 0 1 7 6.5Zm0 11c0-.82.68-1.5 1.5-1.5h7a1.5 1.5 0 1 1 0 3h-7A1.5 1.5 0 0 1 7 17.5ZM20 4.1A2.25 2.25 0 0 0 17.74 2H6.1A2.25 2.25 0 0 0 4 4.26V19.9A2.25 2.25 0 0 0 6.26 22H17.9a2.25 2.25 0 0 0 2.1-2.25V4.1ZM6.24 3.5h11.6c.37.06.65.37.65.75v15.6a.75.75 0 0 1-.75.65H6.15a.75.75 0 0 1-.65-.75V4.15a.75.75 0 0 1 .75-.65Z\"]);\nexport const DocumentHeart20Filled = /*#__PURE__*/createFluentIcon('DocumentHeart20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5V9c.7.03 1.4.25 2 .66a3.85 3.85 0 0 1 4.88 5.91L8.45 18h6.05c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm-4.86 4.33a2.85 2.85 0 1 1 4.03 4.04l-3.82 3.81a.5.5 0 0 1-.7 0l-3.82-3.81a2.85 2.85 0 1 1 4.03-4.04l.14.14.14-.14Zm4.03 4.04-.36-.36Z\"]);\nexport const DocumentHeart20Regular = /*#__PURE__*/createFluentIcon('DocumentHeart20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H8.45l1-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5.17c-.33-.1-.66-.15-1-.17V4Zm7-.8v3.3c0 .28.22.5.5.5h3.3L11 3.2ZM5.65 18.69a.5.5 0 0 0 .7 0l3.82-3.81a2.85 2.85 0 1 0-4.03-4.04l-.14.14-.13-.14a2.85 2.85 0 1 0-4.04 4.04l3.82 3.81Z\"]);\nexport const DocumentHeart24Filled = /*#__PURE__*/createFluentIcon('DocumentHeart24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2H9.49l3.17-3.17a4.47 4.47 0 0 0-5.65-6.87c-.9-.6-1.97-.85-3.01-.73V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM7.01 22.75a.75.75 0 0 1-.53-.22l-4.4-4.4a3.47 3.47 0 1 1 4.9-4.91l.03.04.04-.04a3.47 3.47 0 1 1 4.9 4.9l-4.4 4.41a.75.75 0 0 1-.54.22Z\"]);\nexport const DocumentHeart24Regular = /*#__PURE__*/createFluentIcon('DocumentHeart24Regular', \"24\", [\"M18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v7.31c-.5-.1-1-.13-1.5-.08V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05c.08.05.15.11.22.18l.04.03.05.04L19.4 8.4A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2H9.49l1.5-1.5H18Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38ZM6.48 22.53a.75.75 0 0 0 1.06 0l4.41-4.4a3.47 3.47 0 1 0-4.9-4.91l-.04.04-.03-.04a3.47 3.47 0 1 0-4.9 4.9l4.4 4.41Z\"]);\nexport const DocumentHeartPulse20Filled = /*#__PURE__*/createFluentIcon('DocumentHeartPulse20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H8.45l2.43-2.43A3.85 3.85 0 0 0 6 9.66c-.6-.41-1.3-.63-2-.66V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm-.83 8.58a2.85 2.85 0 0 0-4.03 0l-.14.14-.14-.14A2.85 2.85 0 0 0 1 13h1.7l.55-.83a1.5 1.5 0 0 1 2.54.06l.35.59.16-.22a1.5 1.5 0 0 1 2.26-.16l.56.56H11a2.84 2.84 0 0 0-.83-2.17Zm-4.52 7.85L2.97 16h1.58l.16.27a1.5 1.5 0 0 0 2.49.13l.3-.4h1.53l-2.68 2.68a.5.5 0 0 1-.7 0ZM4.5 12.5c.17 0 .33.1.42.24l1.12 1.87L7.1 13.2a.5.5 0 0 1 .75-.05l.86.85H10a.5.5 0 0 1 0 1H8.5a.5.5 0 0 1-.35-.15l-.6-.59L6.4 15.8a.5.5 0 0 1-.83-.04l-1.1-1.83-.55.85a.5.5 0 0 1-.42.22H2a.5.5 0 0 1 0-1h1.23l.85-1.28a.5.5 0 0 1 .43-.22Z\"]);\nexport const DocumentHeartPulse20Regular = /*#__PURE__*/createFluentIcon('DocumentHeartPulse20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5c.34.02.67.07 1 .17V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H9.45l-1 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-9.64 4.54A1.85 1.85 0 0 0 2 13H1a2.84 2.84 0 0 1 4.86-2.17l.13.14.14-.14A2.85 2.85 0 0 1 11 13h-1a1.85 1.85 0 0 0-3.15-1.46l-.5.5a.5.5 0 0 1-.7 0l-.5-.5ZM2.96 16h1.42L6 17.62 7.62 16h1.42l-2.68 2.68a.5.5 0 0 1-.71 0L2.97 16Zm1.54-4c.2 0 .36.1.45.28l1.14 2.27L7.1 13.2a.5.5 0 0 1 .76-.05l.85.85H10a.5.5 0 0 1 0 1H8.5a.5.5 0 0 1-.35-.15l-.6-.59L6.4 15.8a.5.5 0 0 1-.84-.08l-1.06-2.1-.55 1.1a.5.5 0 0 1-.45.28H2a.5.5 0 0 1 0-1h1.2l.86-1.72A.5.5 0 0 1 4.5 12Z\"]);\nexport const DocumentHeartPulse24Filled = /*#__PURE__*/createFluentIcon('DocumentHeartPulse24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10.5c0 .83-.67 1.5-1.5 1.5H9.73l2.58-2.58.02-.02.34-.34a4.6 4.6 0 0 0-5.63-7.2c-.92-.58-2-.8-3.04-.66V3.5C4 2.67 4.67 2 5.5 2H12Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM2.06 13.22a3.6 3.6 0 0 1 4.97-.12 3.6 3.6 0 0 1 5.99 2.9h-2.05l-.73-.74a1.75 1.75 0 0 0-2.55.08l-.5.55-.73-1.11a1.75 1.75 0 0 0-3.03.19L2.92 16h-1.9a3.6 3.6 0 0 1 1.04-2.78Zm1.19 6.28 3.25 3.25a.75.75 0 0 0 1.06 0l3.26-3.25H8.67l-.36.41a1.75 1.75 0 0 1-2.77-.19l-.14-.22H3.25Zm2.37-4.17a.75.75 0 0 0-1.3.08L3.55 17H1.75a.75.75 0 0 0 0 1.5H4c.28 0 .54-.16.67-.41l.42-.85 1.29 1.93a.75.75 0 0 0 1.18.08l1.47-1.66.69.69c.14.14.33.22.53.22h2a.75.75 0 0 0 0-1.5h-1.69l-1.03-1.03a.75.75 0 0 0-1.1.03L7.1 17.53l-1.47-2.2Z\"]);\nexport const DocumentHeartPulse24Regular = /*#__PURE__*/createFluentIcon('DocumentHeartPulse24Regular', \"24\", [\"M5.5 4.25c0-.41.34-.75.75-.75H12V8c0 1.1.9 2 2 2h4.5v9.75c0 .41-.34.75-.75.75h-6.52L9.73 22h8.02c1.24 0 2.25-1 2.25-2.25V9.66c0-.46-.18-.9-.51-1.23L13.57 2.5A1.75 1.75 0 0 0 12.34 2H6.25C5.01 2 4 3 4 4.25v6.95c.5-.07 1-.05 1.5.05v-7ZM17.44 8.5H14a.5.5 0 0 1-.5-.5V4.56l3.94 3.94ZM3.12 14.28a2.1 2.1 0 0 1 2.98 0l.4.4c.3.3.77.3 1.06 0l.37-.37A2.1 2.1 0 0 1 11.5 16h1.5a3.6 3.6 0 0 0-5.98-2.9A3.6 3.6 0 0 0 1.01 16h1.5a2.1 2.1 0 0 1 .61-1.72Zm2.25 5.22H3.25l3.25 3.25a.75.75 0 0 0 1.06 0l3.26-3.25H8.69l-1.66 1.66-1.66-1.66Zm.25-4.17a.75.75 0 0 0-1.3.08L3.55 17H1.75a.75.75 0 0 0 0 1.5H4c.28 0 .54-.16.67-.41l.42-.85 1.29 1.93a.75.75 0 0 0 1.18.08l1.46-1.65.69.72c.15.15.35.23.56.23l2-.05a.75.75 0 0 0-.04-1.5l-1.67.04-1.02-1.06a.75.75 0 0 0-1.1.02l-1.35 1.53-1.47-2.2Z\"]);\nexport const DocumentImage16Filled = /*#__PURE__*/createFluentIcon('DocumentImage16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5h-1.84c.22-.45.34-.96.34-1.5v-4A3.5 3.5 0 0 0 7.5 6H4V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM1 9.5A2.5 2.5 0 0 1 3.5 7h4A2.5 2.5 0 0 1 10 9.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 14.88C1.15 14.48 1 14 1 13.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 15.6Z\"]);\nexport const DocumentImage16Regular = /*#__PURE__*/createFluentIcon('DocumentImage16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v3h1V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1h-1.04c-.05.35-.15.69-.3 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM1 9.5A2.5 2.5 0 0 1 3.5 7h4A2.5 2.5 0 0 1 10 9.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 14.88C1.15 14.48 1 14 1 13.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 15.6Z\"]);\nexport const DocumentImage20Filled = /*#__PURE__*/createFluentIcon('DocumentImage20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-3.84c.22-.45.34-.96.34-1.5v-4A3.5 3.5 0 0 0 7.5 9H4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM1 12.5A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const DocumentImage20Regular = /*#__PURE__*/createFluentIcon('DocumentImage20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.04c-.05.35-.15.69-.3 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM1 12.5A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const DocumentJava16Filled = /*#__PURE__*/createFluentIcon('DocumentJava16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v3.02a1.5 1.5 0 0 0-.87.49 1.5 1.5 0 0 0-2.38.16 1.5 1.5 0 0 0-2.38-.16 1.5 1.5 0 0 0-2.5.39A1.5 1.5 0 0 0 3 9.09V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25Zm1.23 13.4a.5.5 0 0 1-.96 0l-1.25-4a.5.5 0 0 1 .96-.3l.77 2.47.77-2.47a.5.5 0 1 1 .96.3l-1.25 4ZM6.25 10a.5.5 0 0 1 .48.35l1.25 4a.5.5 0 0 1-.96.3l-.2-.65H5.68l-.2.65a.5.5 0 0 1-.96-.3l1.25-4a.5.5 0 0 1 .48-.35Zm.26 3-.26-.82-.26.82h.52ZM3.5 10c.28 0 .5.22.5.5v3a1.5 1.5 0 0 1-3 0V13a.5.5 0 1 1 1 0v.5a.5.5 0 0 0 1 0v-3c0-.28.22-.5.5-.5Zm9.75 2.18.26.82h-.52l.26-.82Zm-.77 2.47.2-.65h1.14l.2.65a.5.5 0 0 0 .96-.3l-1.25-4a.5.5 0 0 0-.96 0l-1.25 4a.5.5 0 1 0 .96.3Z\"]);\nexport const DocumentJava16Regular = /*#__PURE__*/createFluentIcon('DocumentJava16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v6.09a1.5 1.5 0 0 1 1 0V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v3.38l.13.13c.22-.26.53-.43.87-.49v-3.6c0-.4-.16-.79-.44-1.07L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5Zm-1.57 9.65a.5.5 0 0 1-.96 0l-1.25-4a.5.5 0 0 1 .96-.3l.77 2.47.77-2.47a.5.5 0 1 1 .96.3l-1.25 4ZM6.25 10a.5.5 0 0 1 .48.35l1.25 4a.5.5 0 0 1-.96.3l-.2-.65H5.68l-.2.65a.5.5 0 0 1-.96-.3l1.25-4a.5.5 0 0 1 .48-.35Zm.26 3-.26-.82-.26.82h.52ZM3.5 10c.28 0 .5.22.5.5v3a1.5 1.5 0 0 1-3 0V13a.5.5 0 1 1 1 0v.5a.5.5 0 0 0 1 0v-3c0-.28.22-.5.5-.5Zm9.75 2.18.26.82h-.52l.26-.82Zm-.77 2.47.2-.65h1.14l.2.65a.5.5 0 0 0 .96-.3l-1.25-4a.5.5 0 0 0-.96 0l-1.25 4a.5.5 0 1 0 .96.3Z\"]);\nexport const DocumentJava20Filled = /*#__PURE__*/createFluentIcon('DocumentJava20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v3.02c-.5.08-.92.41-1.13.88a1.5 1.5 0 0 0-2.79.1l-.33.96-.33-.96a1.5 1.5 0 0 0-2.8-.1 1.5 1.5 0 0 0-2.79.1L5 14.4V12.5c0-.65-.42-1.2-1-1.41V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM11.75 18a.5.5 0 0 0 .47-.33l1.75-5a.5.5 0 1 0-.94-.33l-1.28 3.65-1.28-3.65a.5.5 0 1 0-.94.33l1.75 5c.07.2.26.33.47.33Zm4.97-5.66a.5.5 0 0 0-.94 0l-1.75 5a.5.5 0 1 0 .94.33l.23-.67h2.1l.23.67a.5.5 0 1 0 .94-.34l-1.75-5Zm.23 3.66h-1.4l.7-1.99.7 1.99ZM3.5 12c.28 0 .5.22.5.5v4a1.5 1.5 0 0 1-3 0V16a.5.5 0 1 1 1 0v.5a.5.5 0 0 0 1 0v-4c0-.28.22-.5.5-.5Zm3.75 0c.21 0 .4.13.47.34l1.75 5a.5.5 0 1 1-.94.33L8.3 17H6.2l-.23.67a.5.5 0 1 1-.94-.33l1.75-5a.5.5 0 0 1 .47-.34Zm0 2.01L6.55 16h1.4l-.7-1.99Z\"]);\nexport const DocumentJava20Regular = /*#__PURE__*/createFluentIcon('DocumentJava20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v7.09c.58.2 1 .76 1 1.41V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v3.67a1.5 1.5 0 0 1 1-.65v-3.6c0-.4-.16-.79-.44-1.07l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-3.05 11a.5.5 0 0 0 .47-.33l1.75-5a.5.5 0 1 0-.94-.33l-1.28 3.65-1.28-3.65a.5.5 0 1 0-.94.33l1.75 5c.07.2.26.33.47.33Zm4.97-5.66a.5.5 0 0 0-.94 0l-1.75 5a.5.5 0 1 0 .94.33l.23-.67h2.1l.23.67a.5.5 0 1 0 .94-.34l-1.75-5Zm.23 3.66h-1.4l.7-1.99.7 1.99ZM3.5 12c.28 0 .5.22.5.5v4a1.5 1.5 0 0 1-3 0V16a.5.5 0 1 1 1 0v.5a.5.5 0 0 0 1 0v-4c0-.28.22-.5.5-.5Zm3.75 0c.21 0 .4.13.47.34l1.75 5a.5.5 0 1 1-.94.33L8.3 17H6.2l-.23.67a.5.5 0 1 1-.94-.33l1.75-5a.5.5 0 0 1 .47-.34Zm0 2.01L6.55 16h1.4l-.7-1.99Z\"]);\nexport const DocumentJavascript20Filled = /*#__PURE__*/createFluentIcon('DocumentJavascript20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v7.59c.32.1.59.33.77.6A2.5 2.5 0 0 1 9 13.5c0 .44-.2.84-.5 1.12.32.42.5.95.5 1.5v.38c0 .56-.19 1.08-.5 1.5h6c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3.5 12a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0V16a.5.5 0 0 0-1 0v.5a1.5 1.5 0 0 0 3 0v-4a.5.5 0 0 0-.5-.5ZM5 13.5a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-1 0v.38c0 .2.1.36.28.45l.9.45c.5.25.82.77.82 1.34v.38a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.38a.5.5 0 0 0-.28-.45l-.9-.45A1.5 1.5 0 0 1 5 13.88v-.38Z\"]);\nexport const DocumentJavascript20Regular = /*#__PURE__*/createFluentIcon('DocumentJavascript20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H8.5c.22-.3.38-.63.45-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v7.5l-.23.2a1.5 1.5 0 0 0-.77-.61V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-8 5a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0V16a.5.5 0 0 0-1 0v.5a1.5 1.5 0 0 0 3 0v-4a.5.5 0 0 0-.5-.5ZM5 13.5a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-1 0v.38c0 .2.1.36.28.45l.9.45c.5.25.82.77.82 1.34v.38a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.38a.5.5 0 0 0-.28-.45l-.9-.45A1.5 1.5 0 0 1 5 13.88v-.38Z\"]);\nexport const DocumentJavascript24Filled = /*#__PURE__*/createFluentIcon('DocumentJavascript24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v10.02a1.76 1.76 0 0 1 1.8.91c.54-.57 1.3-.93 2.15-.93h.1A2.95 2.95 0 0 1 11 16.95V17c0 .45-.17.86-.45 1.17.29.44.45.96.45 1.5v.38c0 .75-.28 1.43-.74 1.95H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm-9.25 7c.41 0 .75.34.75.75V20a2 2 0 1 1-4 0v-.25a.75.75 0 0 1 1.5 0V20a.5.5 0 0 0 1 0v-4.25c0-.41.34-.75.75-.75Zm3.7 0C6.87 15 6 15.87 6 16.95v.23c0 .62.32 1.19.85 1.5l1.53.92c.07.05.12.13.12.22v.23c0 .25-.2.45-.45.45h-.1a.45.45 0 0 1-.45-.45V20A.75.75 0 0 0 6 20v.05C6 21.13 6.87 22 7.95 22h.1c1.08 0 1.95-.87 1.95-1.95v-.23c0-.62-.32-1.19-.85-1.5l-1.53-.92a.25.25 0 0 1-.12-.22v-.23c0-.25.2-.45.45-.45h.1c.25 0 .45.2.45.45V17a.75.75 0 0 0 1.5 0v-.05C10 15.87 9.13 15 8.05 15h-.1Z\"]);\nexport const DocumentJavascript24Regular = /*#__PURE__*/createFluentIcon('DocumentJavascript24Regular', \"24\", [\"M18 20.5h-7.03a2.94 2.94 0 0 1-.7 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v10.02a1.76 1.76 0 0 1 1.5.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5Zm-.62-12H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88ZM4.25 15c.41 0 .75.34.75.75V20a2 2 0 1 1-4 0v-.25a.75.75 0 0 1 1.5 0V20a.5.5 0 0 0 1 0v-4.25c0-.41.34-.75.75-.75Zm3.7 0C6.87 15 6 15.87 6 16.95v.23c0 .62.32 1.19.85 1.5l1.53.92c.07.05.12.13.12.22v.23c0 .25-.2.45-.45.45h-.1a.45.45 0 0 1-.45-.45V20A.75.75 0 0 0 6 20v.05C6 21.13 6.87 22 7.95 22h.1c1.08 0 1.95-.87 1.95-1.95v-.23c0-.62-.32-1.19-.85-1.5l-1.53-.92a.25.25 0 0 1-.12-.22v-.23c0-.25.2-.45.45-.45h.1c.25 0 .45.2.45.45V17a.75.75 0 0 0 1.5 0v-.05C10 15.87 9.13 15 8.05 15h-.1Z\"]);\nexport const DocumentJs16Filled = /*#__PURE__*/createFluentIcon('DocumentJs16Filled', \"16\", [\"M10.5 5h3.25L10 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5v6.6a1.5 1.5 0 0 1 .76.58l.04-.04.12-.11c.43-.34.96-.53 1.5-.53h.15A2.44 2.44 0 0 1 9 11.43c0 .34-.1.67-.32.94l.1.18A2.44 2.44 0 0 1 8.52 15h3.97c.83 0 1.5-.67 1.5-1.5V6h-3.5Zm-3.93 9h-.14A1.43 1.43 0 0 1 5 13.57a.53.53 0 0 1 .5-.53.46.46 0 0 1 .35.12.47.47 0 0 1 .15.34.45.45 0 0 0 .43.5h.14a.43.43 0 0 0 .2-.8l-.98-.5a1.42 1.42 0 0 1 .64-2.7h.14A1.43 1.43 0 0 1 8 11.43a.53.53 0 0 1-.5.53.46.46 0 0 1-.35-.12.47.47 0 0 1-.15-.34v-.07a.43.43 0 0 0-.43-.43h-.14a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7Zm-5.13-.44A1.5 1.5 0 0 0 4 13.5v-3a.5.5 0 1 0-1 0v3a.5.5 0 1 1-1 0V13a.5.5 0 1 0-1 0v.5c0 .4.16.78.44 1.06Z\"]);\nexport const DocumentJs16Regular = /*#__PURE__*/createFluentIcon('DocumentJs16Regular', \"16\", [\"m9.65 1.44 2.91 2.91c.28.28.44.66.44 1.06V13a2 2 0 0 1-2 2H8.54c.22-.3.36-.64.42-1H11a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6.09a1.43 1.43 0 0 0-1 0V3a2 2 0 0 1 2-2h3.59c.4 0 .78.16 1.06.44Zm-.5 3.41c.09.1.22.15.35.15h2.29L9 2.21V4.5c0 .13.05.26.15.35ZM2.5 15A1.5 1.5 0 0 1 1 13.5V13a.5.5 0 0 1 1 0v.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 1 1 0v3A1.5 1.5 0 0 1 2.5 15Zm4.07 0h-.14A1.43 1.43 0 0 1 5 13.57a.53.53 0 0 1 .5-.53.47.47 0 0 1 .5.46.45.45 0 0 0 .43.5h.14a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.14A1.43 1.43 0 0 1 8 11.43a.53.53 0 0 1-.5.53.47.47 0 0 1-.5-.46v-.07a.43.43 0 0 0-.43-.43h-.14a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7Z\"]);\nexport const DocumentKey20Filled = /*#__PURE__*/createFluentIcon('DocumentKey20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v1h-.03a3.91 3.91 0 0 0-3.64 2.38 3.72 3.72 0 0 0-.3 1.98l-2.59 2.58C9.16 16.22 9 16.6 9 17v1H5.5A1.5 1.5 0 0 1 4 16.5v-13C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm-.85 16.6c.1.1.21.15.35.15h2c.11 0 .2-.03.27-.07.07-.04.12-.1.15-.17a.86.86 0 0 0 .06-.24l.02-.25V18l.56-.02a.47.47 0 0 0 .3-.12c.07-.07.11-.17.12-.3L14 17h.5c.1 0 .2-.02.27-.07a.5.5 0 0 0 .15-.17.65.65 0 0 0 .07-.24 2.34 2.34 0 0 0 .01-.5v-.2c.17.07.35.11.52.14a2.87 2.87 0 0 0 2.62-.86A3.11 3.11 0 0 0 19 13a2.94 2.94 0 0 0-.88-2.13 3 3 0 0 0-5.03 2.84l-2.94 2.94c-.1.1-.15.21-.15.35v1.5c0 .14.05.25.15.35Zm7.13-7.13c.15.14.22.32.22.53 0 .2-.07.39-.22.53a.72.72 0 0 1-.53.22.72.72 0 0 1-.53-.22.72.72 0 0 1-.22-.53c0-.2.07-.39.22-.53a.72.72 0 0 1 .53-.22c.2 0 .39.07.53.22Z\"]);\nexport const DocumentKey20Regular = /*#__PURE__*/createFluentIcon('DocumentKey20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h3v-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v1.13c.32-.08.64-.12.97-.13H16V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-4.65 11.85c.1.1.21.15.35.15h2c.11 0 .2-.03.27-.07.07-.04.12-.1.15-.17a.86.86 0 0 0 .06-.24l.02-.25V18l.56-.02a.47.47 0 0 0 .3-.12c.07-.07.11-.17.12-.3L14 17c.5 0 .63.02.77-.07a.5.5 0 0 0 .15-.17.65.65 0 0 0 .07-.24c.03-.23.01-.46.01-.7.17.07.35.11.52.14a2.87 2.87 0 0 0 2.62-.86A3.11 3.11 0 0 0 19 13a2.94 2.94 0 0 0-.88-2.13 3 3 0 0 0-5.03 2.84l-2.94 2.94c-.1.1-.15.21-.15.35v1.5c0 .14.05.25.15.35Zm7.35-6.6c0 .41-.34.75-.75.75a.75.75 0 0 1-.75-.75c0-.41.34-.75.75-.75s.75.34.75.75Z\"]);\nexport const DocumentLandscape20Filled = /*#__PURE__*/createFluentIcon('DocumentLandscape20Filled', \"20\", [\"M18 10h-4.5A1.5 1.5 0 0 1 12 8.5V4H3.5C2.67 4 2 4.67 2 5.5v9c0 .83.67 1.5 1.5 1.5h13c.83 0 1.5-.67 1.5-1.5V10Zm-.25-1H13.5a.5.5 0 0 1-.5-.5V4.25L17.75 9Z\"]);\nexport const DocumentLandscape20Regular = /*#__PURE__*/createFluentIcon('DocumentLandscape20Regular', \"20\", [\"M18 14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V14Zm-2 1a1 1 0 0 0 1-1v-4h-3.5A1.5 1.5 0 0 1 12 8.5V5H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12Zm-3-9.8v3.3c0 .28.22.5.5.5h3.3L13 5.2Z\"]);\nexport const DocumentLandscape24Filled = /*#__PURE__*/createFluentIcon('DocumentLandscape24Filled', \"24\", [\"M22 12h-6a2 2 0 0 1-2-2V4H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2v-6Zm-.5-1.5H16a.5.5 0 0 1-.5-.5V4.5l6 6Z\"]);\nexport const DocumentLandscape24Regular = /*#__PURE__*/createFluentIcon('DocumentLandscape24Regular', \"24\", [\"M4 5.5a.5.5 0 0 0-.5.5v12c0 .28.23.5.5.5h16a.5.5 0 0 0 .5-.5v-6H16a2 2 0 0 1-2-2V5.5H4Zm15.38 5L15.5 6.62V10c0 .28.22.5.5.5h3.38Zm-3.8-5.91 5.83 5.82.07.09c.07.07.13.14.18.22l.07.13.12.21c.08.2.12.41.14.63l.01.14V18a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h10.17a2 2 0 0 1 1.42.59Z\"]);\nexport const DocumentLandscapeData20Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeData20Filled', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM9 7a1 1 0 0 1 2 0v6a1 1 0 1 1-2 0V7Zm5 1a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1Zm-9 3a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Z\"]);\nexport const DocumentLandscapeData20Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeData20Regular', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM3 6.5C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-7ZM6 10c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5Zm-.5 1.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm3-4a1.5 1.5 0 1 1 3 0v5a1.5 1.5 0 0 1-3 0v-5ZM10 7a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5A.5.5 0 0 0 10 7Zm4 1c-.83 0-1.5.67-1.5 1.5v3a1.5 1.5 0 0 0 3 0v-3c0-.83-.67-1.5-1.5-1.5Zm-.5 1.5a.5.5 0 0 1 1 0v3a.5.5 0 0 1-1 0v-3Z\"]);\nexport const DocumentLandscapeData24Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeData24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM12 7a2 2 0 0 0-2 2v6a2 2 0 1 0 4 0V9a2 2 0 0 0-2-2Zm-5 5a2 2 0 0 0-2 2v1a2 2 0 1 0 4 0v-1a2 2 0 0 0-2-2Zm8 0v3a2 2 0 1 0 4 0v-3a2 2 0 1 0-4 0Z\"]);\nexport const DocumentLandscapeData24Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeData24Regular', \"24\", [\"M10 9a2 2 0 1 1 4 0v6a2 2 0 1 1-4 0V9Zm2-.5a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5ZM5 14a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-1Zm2.5 0a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm9.5-4a2 2 0 0 0-2 2v3a2 2 0 1 0 4 0v-3a2 2 0 0 0-2-2Zm.5 2v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 1 0ZM2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const DocumentLandscapeSplit20Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplit20Filled', \"20\", [\"M12 8.5V4h-2v12h6a2 2 0 0 0 2-2v-4h-4.5A1.5 1.5 0 0 1 12 8.5ZM9 16H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h5v12Zm4-7.5V4.06c.24.07.47.2.65.38l3.91 3.91c.18.18.31.4.38.65H13.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentLandscapeSplit20Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplit20Regular', \"20\", [\"M16 16a2 2 0 0 0 2-2V9.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 12.59 4H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12Zm1-2a1 1 0 0 1-1 1h-6V5h2v3.5c0 .83.67 1.5 1.5 1.5H17v4ZM9 5v10H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5Zm4 3.5V5.2L16.8 9h-3.3a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentLandscapeSplit24Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplit24Filled', \"24\", [\"M10.5 4H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6.5V4ZM12 20h8a2 2 0 0 0 2-2v-6h-6a2 2 0 0 1-2-2V4h-2v16Zm4-9.5h5.5l-6-6V10c0 .28.22.5.5.5Z\"]);\nexport const DocumentLandscapeSplit24Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplit24Regular', \"24\", [\"M3.5 6c0-.28.23-.5.5-.5h6.5v13H4a.5.5 0 0 1-.5-.5V6ZM12 18.5v-13h2V10c0 1.1.9 2 2 2h4.5v6a.5.5 0 0 1-.5.5h-8Zm3.5-11.88 3.88 3.88H16a.5.5 0 0 1-.5-.5V6.62Zm5.91 3.8L15.6 4.58A2 2 0 0 0 14.17 4H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2v-6.17a.6.6 0 0 0 0-.08l-.01-.06a1.98 1.98 0 0 0-.14-.63l-.09-.16a4.26 4.26 0 0 1-.1-.18 2.07 2.07 0 0 0-.2-.26l-.05-.05Z\"]);\nexport const DocumentLandscapeSplitHint20Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplitHint20Filled', \"20\", [\"M3 6a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H4a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V6Zm1 9a1 1 0 0 1-1-1v-.5a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H4ZM2.5 8c.28 0 .5.22.5.5v3a.5.5 0 0 1-1 0v-3c0-.28.22-.5.5-.5Zm4-4a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 15.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm6-7V4h-1.5a.5.5 0 0 0-.5.5v11c0 .28.22.5.5.5H16a2 2 0 0 0 2-2v-4h-4.5A1.5 1.5 0 0 1 12 8.5Zm1 0V4.06c.24.07.47.2.65.38l3.91 3.91c.18.18.31.4.38.65H13.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentLandscapeSplitHint20Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplitHint20Regular', \"20\", [\"M3 6a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H4a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V6Zm6.5-2a.5.5 0 0 0-.5.5v11c0 .28.22.5.5.5H16a2 2 0 0 0 2-2V9.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 12.59 4H9.5Zm.5 11V5h2v3.5c0 .83.67 1.5 1.5 1.5H17v4a1 1 0 0 1-1 1h-6Zm3.5-6a.5.5 0 0 1-.5-.5V5.2L16.8 9h-3.3ZM3 14a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H4a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5Zm0-5.5a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3Zm3-4c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5ZM6.5 15a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DocumentLandscapeSplitHint24Filled = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplitHint24Filled', \"24\", [\"M12.75 4H14v6c0 1.1.9 2 2 2h6v6a2 2 0 0 1-2 2h-7.25a.75.75 0 0 1-.75-.75V4.75c0-.41.34-.75.75-.75Zm8.74 6.43.07.07H16a.5.5 0 0 1-.5-.5V4.44l.07.07 5.92 5.92ZM3.5 10.25a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0v-3.5ZM7 4.75c0-.41.34-.75.75-.75h2a.75.75 0 0 1 0 1.5h-2A.75.75 0 0 1 7 4.75Zm.75 13.75a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5h-2ZM2 6c0-1.1.9-2 2-2h.75a.75.75 0 0 1 0 1.5H4a.5.5 0 0 0-.5.5v1.25a.75.75 0 0 1-1.5 0V6Zm2 14a2 2 0 0 1-2-2v-1.25a.75.75 0 0 1 1.5 0V18c0 .28.22.5.5.5h.75a.75.75 0 0 1 0 1.5H4Z\"]);\nexport const DocumentLandscapeSplitHint24Regular = /*#__PURE__*/createFluentIcon('DocumentLandscapeSplitHint24Regular', \"24\", [\"M7 4.75c0-.41.34-.75.75-.75h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 7 4.75ZM2.75 9.5c.41 0 .75.34.75.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-.41.34-.75.75-.75Zm5 9a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5ZM2 6c0-1.1.9-2 2-2h.75a.75.75 0 0 1 0 1.5H4a.5.5 0 0 0-.5.5v1.25a.75.75 0 0 1-1.5 0V6Zm2 14a2 2 0 0 1-2-2v-1.25a.75.75 0 0 1 1.5 0V18c0 .28.22.5.5.5h.75a.75.75 0 0 1 0 1.5H4Zm6.5-14.75c0-.69.56-1.25 1.25-1.25h2.59c.46 0 .9.18 1.23.51l5.92 5.92c.33.33.51.77.51 1.23V18a2 2 0 0 1-2 2h-8.25c-.69 0-1.25-.56-1.25-1.25V5.25Zm1.5.25v13h8a.5.5 0 0 0 .5-.5v-6H16a2 2 0 0 1-2-2V5.5h-2Zm3.5 1.06V10c0 .28.22.5.5.5h3.44L15.5 6.56Z\"]);\nexport const DocumentLightning16Filled = /*#__PURE__*/createFluentIcon('DocumentLightning16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5h-7c-.2 0-.4-.04-.58-.12l4.12-3.85a1.75 1.75 0 0 0-.9-3l.34-1.06A1.5 1.5 0 0 0 7.06 5H4V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM1.5 12h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55A.75.75 0 0 0 7.85 9h-1.1l.78-2.34A.5.5 0 0 0 7.06 6H3.59a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const DocumentLightning16Regular = /*#__PURE__*/createFluentIcon('DocumentLightning16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2h1V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H5.87l-.82.76A2 2 0 0 0 6 15h6a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM1.5 12h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55A.75.75 0 0 0 7.85 9h-1.1l.78-2.34A.5.5 0 0 0 7.06 6H3.59a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const DocumentLightning20Filled = /*#__PURE__*/createFluentIcon('DocumentLightning20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H6.86l3.18-2.97a1.75 1.75 0 0 0-.9-3l.34-1.06A1.5 1.5 0 0 0 8.06 9H4.59c-.21 0-.4.04-.59.12V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM2.5 16h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-1.1l.78-2.34a.5.5 0 0 0-.47-.66H4.59a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const DocumentLightning20Regular = /*#__PURE__*/createFluentIcon('DocumentLightning20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.12c.18-.08.38-.12.59-.12H5V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H7.93l-1.07 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM2.5 16h1.75l-.59 2.36c-.12.48.46.83.83.49l4.87-4.55a.75.75 0 0 0-.51-1.3h-1.1l.78-2.34a.5.5 0 0 0-.47-.66H4.59a.5.5 0 0 0-.47.3l-2.08 5c-.14.34.1.7.46.7Z\"]);\nexport const DocumentLightning24Filled = /*#__PURE__*/createFluentIcon('DocumentLightning24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2H6.97l3.6-4.1a1.75 1.75 0 0 0-1.12-2.89l1-1.77A1.5 1.5 0 0 0 9.15 11H4.32c-.11 0-.22.01-.32.03V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM4.32 12h4.83a.5.5 0 0 1 .43.75L7.75 16h1.5c.64 0 .99.76.56 1.24L5 22.75c-.5.58-1.45.09-1.26-.66L4.5 19h-3a.5.5 0 0 1-.45-.71l2.82-6a.5.5 0 0 1 .45-.29Z\"]);\nexport const DocumentLightning24Regular = /*#__PURE__*/createFluentIcon('DocumentLightning24Regular', \"24\", [\"M6 2a2 2 0 0 0-2 2v7.03c.1-.02.2-.03.32-.03H5.5V4c0-.28.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5H8.29L6.97 22H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6A2 2 0 0 0 12.17 2H6Zm11.38 6.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88ZM4.32 12h4.83a.5.5 0 0 1 .43.75L7.75 16h1.5c.64 0 .99.76.56 1.24L5 22.75c-.5.58-1.45.09-1.26-.66L4.5 19h-3a.5.5 0 0 1-.45-.71l2.82-6a.5.5 0 0 1 .45-.29Z\"]);\nexport const DocumentLightning28Filled = /*#__PURE__*/createFluentIcon('DocumentLightning28Filled', \"28\", [\"M14 10V2H6.4A2.4 2.4 0 0 0 4 4.4v8.84c.24-.15.52-.24.82-.24h6.32a1.5 1.5 0 0 1 1.31 2.24l-1 1.77a1.75 1.75 0 0 1 1.14 2.88L7.33 26H21.6a2.4 2.4 0 0 0 2.4-2.4V12h-8a2 2 0 0 1-2-2Zm1.5 0V2.48c.1.06.18.14.26.22l7.43 7.43c.12.12.22.24.31.37H16a.5.5 0 0 1-.5-.5ZM4.82 14h6.33a.5.5 0 0 1 .43.75L9.75 18h1.52c.64 0 .98.75.56 1.24l-6.41 7.45c-.52.6-1.5.05-1.25-.7L5.5 22h-4a.5.5 0 0 1-.45-.71l3.32-7a.5.5 0 0 1 .45-.29Z\"]);\nexport const DocumentLightning28Regular = /*#__PURE__*/createFluentIcon('DocumentLightning28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v8.84c.24-.15.52-.24.82-.24h.68V4.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9H8.62L7.33 26H21.6a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm15.54 8.5H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44ZM4.82 14h6.33a.5.5 0 0 1 .43.75L9.75 18h1.52c.64 0 .98.75.56 1.24l-6.41 7.45c-.52.6-1.5.05-1.25-.7L5.5 22h-4a.5.5 0 0 1-.45-.71l3.32-7a.5.5 0 0 1 .45-.29Z\"]);\nexport const DocumentLightning32Filled = /*#__PURE__*/createFluentIcon('DocumentLightning32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3H8.9l6.9-6.63a2.25 2.25 0 0 0-1.4-3.87l1.8-2.96a2 2 0 0 0-1.7-3.04H6.11c-.4 0-.78.1-1.12.26V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM6.12 15h8.38a.5.5 0 0 1 .43.76L11.75 21h2.49c.67 0 1 .82.52 1.29l-8.75 8.43c-.76.73-1.98-.06-1.64-1.05L6 25H1.75a.75.75 0 0 1-.67-1.08l4.14-8.36a1 1 0 0 1 .9-.56Z\"]);\nexport const DocumentLightning32Regular = /*#__PURE__*/createFluentIcon('DocumentLightning32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v8.76a2.5 2.5 0 0 1 1.12-.26H7V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1H10.98l-2.07 2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm16.59 8H20a1 1 0 0 1-1-1V4.41L24.59 10ZM6.12 15h8.38a.5.5 0 0 1 .43.76L11.75 21h2.49c.67 0 1 .82.52 1.29l-8.75 8.43c-.76.73-1.98-.06-1.64-1.05L6 25H1.75a.75.75 0 0 1-.67-1.08l4.14-8.36a1 1 0 0 1 .9-.56Z\"]);\nexport const DocumentLightning48Filled = /*#__PURE__*/createFluentIcon('DocumentLightning48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H14.82l6.31-7.2a3.5 3.5 0 0 0-2.22-5.78l2-3.55A3 3 0 0 0 18.28 22H8.64a3 3 0 0 0-.64.07V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM8.63 24h9.66a1 1 0 0 1 .87 1.49L15.5 32h3a1.5 1.5 0 0 1 1.13 2.49L9.97 45.5c-1 1.15-2.88.17-2.51-1.32L9 38H3a1 1 0 0 1-.9-1.42l5.63-12a1 1 0 0 1 .9-.58Z\"]);\nexport const DocumentLightning48Regular = /*#__PURE__*/createFluentIcon('DocumentLightning48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25v13.82a3 3 0 0 1 .64-.07h1.86V8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H16.14l-2.2 2.5h21.8C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26Zm23.23 12.5h-7.73c-.7 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM8.63 24h9.66a1 1 0 0 1 .87 1.49L15.5 32h3a1.5 1.5 0 0 1 1.13 2.49L9.97 45.5c-1 1.15-2.88.17-2.51-1.32L9 38H3a1 1 0 0 1-.9-1.42l5.63-12a1 1 0 0 1 .9-.58Z\"]);\nexport const DocumentLink16Filled = /*#__PURE__*/createFluentIcon('DocumentLink16Filled', \"16\", [\"M9 4.5V1H5.5C4.67 1 4 1.67 4 2.5V9h3.5a3.5 3.5 0 0 1 2.45 6h2.55c.83 0 1.5-.67 1.5-1.5V6h-3.5A1.5 1.5 0 0 1 9 4.5Zm1 0V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5ZM3.5 10a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 10a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const DocumentLink16Regular = /*#__PURE__*/createFluentIcon('DocumentLink16Regular', \"16\", [\"M4 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H9.95c.3-.29.54-.63.71-1H12a1 1 0 0 0 1-1V6h-2.5A1.5 1.5 0 0 1 9 4.5V2H6a1 1 0 0 0-1 1v6H4V3Zm6.5 2h2.3L10 2.2v2.3c0 .28.22.5.5.5Zm-7 5a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 10a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"]);\nexport const DocumentLink20Filled = /*#__PURE__*/createFluentIcon('DocumentLink20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5h-3.84a3.5 3.5 0 0 0-3.16-5H4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM3.5 14a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentLink20Regular = /*#__PURE__*/createFluentIcon('DocumentLink20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v9h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.04c-.05.35-.15.69-.3 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM3.5 14a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentLink24Filled = /*#__PURE__*/createFluentIcon('DocumentLink24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-5a5 5 0 0 0-4-8H4V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM5.75 15.75A.75.75 0 0 0 5 15h-.2a4 4 0 0 0 .2 8h.1a.75.75 0 0 0-.1-1.5h-.16a2.5 2.5 0 0 1 .16-5h.1a.75.75 0 0 0 .65-.75ZM13 19a4 4 0 0 0-4-4h-.1a.75.75 0 0 0 .1 1.5h.16a2.5 2.5 0 0 1-.16 5h-.1A.75.75 0 0 0 9 23h.2a4 4 0 0 0 3.8-4Zm-4.25-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0-.1-1.5Z\"]);\nexport const DocumentLink24Regular = /*#__PURE__*/createFluentIcon('DocumentLink24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-4.23A4.99 4.99 0 0 1 13 22h5a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v10h1.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM5.75 15.75A.75.75 0 0 0 5 15h-.2a4 4 0 0 0 .2 8h.1a.75.75 0 0 0-.1-1.5h-.16a2.5 2.5 0 0 1 .16-5h.1a.75.75 0 0 0 .65-.75ZM13 19a4 4 0 0 0-4-4h-.1a.75.75 0 0 0 .1 1.5h.16a2.5 2.5 0 0 1-.16 5h-.1A.75.75 0 0 0 9 23h.2a4 4 0 0 0 3.8-4Zm-4.25-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0-.1-1.5Z\"]);\nexport const DocumentLock16Filled = /*#__PURE__*/createFluentIcon('DocumentLock16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H9.73a2 2 0 0 0 .27-1v-4a2 2 0 0 0-1.5-1.94V8A3 3 0 0 0 4 5.4V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM3.5 8v1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5V8a2 2 0 1 0-4 0Zm1 1V8a1 1 0 0 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const DocumentLock16Regular = /*#__PURE__*/createFluentIcon('DocumentLock16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.4c.3-.17.64-.3 1-.36V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1h-2a2 2 0 0 1-.27 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM3.5 8v1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5V8a2 2 0 1 0-4 0Zm1 1V8a1 1 0 0 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const DocumentLock20Filled = /*#__PURE__*/createFluentIcon('DocumentLock20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H10v-4a2 2 0 0 0-1.5-1.94V12A3 3 0 0 0 4 9.4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM3.5 12v1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const DocumentLock20Regular = /*#__PURE__*/createFluentIcon('DocumentLock20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.4c.3-.17.64-.3 1-.36V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-4v1h4a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM3.5 12v1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5v-1a2 2 0 1 0-4 0Zm1 1v-1a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const DocumentLock24Filled = /*#__PURE__*/createFluentIcon('DocumentLock24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.05c.03-.16.05-.33.05-.5v-5a2.5 2.5 0 0 0-2-2.45V14a3.5 3.5 0 0 0-6-2.45V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM4 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H9v-1a2.5 2.5 0 0 0-5 0v1Zm1.5-1a1 1 0 1 1 2 0v1h-2v-1Zm2 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DocumentLock24Regular = /*#__PURE__*/createFluentIcon('DocumentLock24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-6v1c0 .17-.02.34-.05.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.55a3.5 3.5 0 0 1 1.5-.9V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM4 15h-.5c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H9v-1a2.5 2.5 0 0 0-5 0v1Zm1.5-1a1 1 0 1 1 2 0v1h-2v-1Zm2 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const DocumentLock28Filled = /*#__PURE__*/createFluentIcon('DocumentLock28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v11.6a2.4 2.4 0 0 1-2.4 2.4h-7.77a3 3 0 0 0 .17-1v-5a3 3 0 0 0-2.5-2.96V17A4 4 0 0 0 4 15.06V4.4A2.4 2.4 0 0 1 6.4 2H14Zm1.5.48V10c0 .28.22.5.5.5h7.5c-.09-.13-.2-.25-.3-.37L15.75 2.7a2.4 2.4 0 0 0-.26-.22ZM4.5 18H4a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-.5v-1a3 3 0 1 0-6 0v1ZM6 17a1.5 1.5 0 0 1 3 0v1H6v-1Zm3 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"]);\nexport const DocumentLock28Regular = /*#__PURE__*/createFluentIcon('DocumentLock28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v10.66c.35-.63.87-1.16 1.5-1.52V4.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9H14v.5a3 3 0 0 1-.17 1h7.77a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm15.54 8.5H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44ZM4.5 18H4a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-.5v-1a3 3 0 1 0-6 0v1ZM6 17a1.5 1.5 0 0 1 3 0v1H6v-1Zm3 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"]);\nexport const DocumentLock32Filled = /*#__PURE__*/createFluentIcon('DocumentLock32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3h-7.54c.35-.59.54-1.27.54-2v-6a4 4 0 0 0-3.08-3.9A5 5 0 0 0 5 16V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM5.5 19.5H5A2.5 2.5 0 0 0 2.5 22v6A2.5 2.5 0 0 0 5 30.5h8a2.5 2.5 0 0 0 2.5-2.5v-6a2.5 2.5 0 0 0-2.5-2.5h-.5V19a3.5 3.5 0 1 0-7 0v.5Zm2-.5a1.5 1.5 0 0 1 3 0v.5h-3V19Zm3.5 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const DocumentLock32Regular = /*#__PURE__*/createFluentIcon('DocumentLock32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v11a5.02 5.02 0 0 1 2-1.58V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1h-7c0 .73-.2 1.41-.54 2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm16.59 8H20a1 1 0 0 1-1-1V4.41L24.59 10ZM5.5 19.5H5A2.5 2.5 0 0 0 2.5 22v6A2.5 2.5 0 0 0 5 30.5h8a2.5 2.5 0 0 0 2.5-2.5v-6a2.5 2.5 0 0 0-2.5-2.5h-.5V19a3.5 3.5 0 1 0-7 0v.5Zm2-.5a1.5 1.5 0 0 1 3 0v.5h-3V19Zm3.5 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const DocumentLock48Filled = /*#__PURE__*/createFluentIcon('DocumentLock48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H24V33a5 5 0 0 0-4.06-4.91A7 7 0 0 0 8 24.1V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM8 30H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V33a3 3 0 0 0-3-3h-1v-1a5 5 0 0 0-10 0v1Zm2.5-1a2.5 2.5 0 0 1 5 0v1h-5v-1Zm5.5 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"]);\nexport const DocumentLock48Regular = /*#__PURE__*/createFluentIcon('DocumentLock48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25V24.1a7 7 0 0 1 2.5-1.64V8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H24V43c0 .34-.03.68-.1 1h11.85C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26Zm23.23 12.5h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM8 30H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V33a3 3 0 0 0-3-3h-1v-1a5 5 0 0 0-10 0v1Zm2.5-1a2.5 2.5 0 0 1 5 0v1h-5v-1Zm5.5 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"]);\nexport const DocumentMargins20Filled = /*#__PURE__*/createFluentIcon('DocumentMargins20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2v-3.5a.5.5 0 0 1 1 0V18h6v-3.5a.5.5 0 0 1 1 0V18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2v3.5a.5.5 0 0 1-1 0V2H7v3.5a.5.5 0 0 1-1 0V2Zm.5 11a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Zm7 0a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Z\"]);\nexport const DocumentMargins20Regular = /*#__PURE__*/createFluentIcon('DocumentMargins20Regular', \"20\", [\"M6.5 13a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5Zm7 0a.5.5 0 0 1-.5-.5v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-.5.5ZM4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm3-1v2.5a.5.5 0 0 1-1 0V3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1v-2.5a.5.5 0 0 1 1 0V17h6v-2.5a.5.5 0 0 1 1 0V17a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1v2.5a.5.5 0 0 1-1 0V3H7Z\"]);\nexport const DocumentMargins24Filled = /*#__PURE__*/createFluentIcon('DocumentMargins24Filled', \"24\", [\"M15.5 2h-7v4.25a.75.75 0 0 1-1.5 0V2h-.75C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22H7v-4.25a.75.75 0 0 1 1.5 0V22h7v-4.25a.75.75 0 0 1 1.5 0V22h.75c1.24 0 2.25-1 2.25-2.25V4.25C20 3.01 19 2 17.75 2H17v4.25a.75.75 0 0 1-1.5 0V2ZM7.75 8.5c.41 0 .75.34.75.75v5.5a.75.75 0 0 1-1.5 0v-5.5c0-.41.34-.75.75-.75Zm9.25.75v5.5a.75.75 0 0 1-1.5 0v-5.5a.75.75 0 0 1 1.5 0Z\"]);\nexport const DocumentMargins24Regular = /*#__PURE__*/createFluentIcon('DocumentMargins24Regular', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v15.5c0 1.24-1 2.25-2.25 2.25H6.25C5.01 22 4 21 4 19.75V4.25ZM17 20.5h.75c.41 0 .75-.34.75-.75V4.25a.75.75 0 0 0-.75-.75H17v2.75a.75.75 0 0 1-1.5 0V3.5h-7v2.75a.75.75 0 0 1-1.5 0V3.5h-.75a.75.75 0 0 0-.75.75v15.5c0 .41.34.75.75.75H7v-2.75a.75.75 0 0 1 1.5 0v2.75h7v-2.75a.75.75 0 0 1 1.5 0v2.75Zm-9.25-12c.41 0 .75.34.75.75v5.5a.75.75 0 0 1-1.5 0v-5.5c0-.41.34-.75.75-.75Zm9.25.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5Z\"]);\nexport const DocumentMention16Filled = /*#__PURE__*/createFluentIcon('DocumentMention16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.19c.2-.35.27-.77.16-1.18C9.95 13.63 11 12.1 11 10.5a5.5 5.5 0 0 0-7-5.3V2.5C4 1.67 4.67 1 5.5 1H9ZM6.86 14.79A4.5 4.5 0 1 1 10 10.5c0 1.3-.89 2.34-1.98 2.34a1.37 1.37 0 0 1-1.18-.58 1.82 1.82 0 0 1-2.84-.2c-.3-.41-.48-.97-.48-1.56 0-.6.17-1.15.48-1.57.34-.47.86-.77 1.5-.77a1.82 1.82 0 0 1 .97.27.51.51 0 0 1 .08-.1.54.54 0 0 1 .93.3v1.87c0 .9.2 1.26.54 1.26.45 0 .9-.52.9-1.26A3.4 3.4 0 0 0 5.5 7.08a3.4 3.4 0 0 0-3.42 3.42 3.42 3.42 0 0 0 4.25 3.32l.2-.06.15-.05a.54.54 0 0 1 .43.99l-.06.03-.19.06ZM4.6 10.5c0 .72.38 1.26.9 1.26s.9-.54.9-1.26-.38-1.26-.9-1.26-.9.54-.9 1.26ZM10 1.25V4.5c0 .28.22.5.5.5h3.25L10 1.25Zm-2.17 9.57Z\"]);\nexport const DocumentMention16Regular = /*#__PURE__*/createFluentIcon('DocumentMention16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H8.39c.05.35-.03.7-.2 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5Zm-5.94 9.79A4.48 4.48 0 0 1 5.5 15a4.5 4.5 0 1 1 4.5-4.5c0 1.3-.89 2.34-1.98 2.34-.52 0-.92-.2-1.18-.58a1.88 1.88 0 0 1-1.84.51 1.84 1.84 0 0 1-1-.7c-.3-.42-.48-.98-.48-1.57 0-.6.17-1.15.48-1.57a1.84 1.84 0 0 1 2.47-.5.54.54 0 0 1 1 .2l.01.07v1.8c0 .9.2 1.26.54 1.26.45 0 .9-.52.9-1.26a3.42 3.42 0 1 0-3.42 3.42h.03a3.91 3.91 0 0 0 .8-.1l.2-.06.15-.05a.54.54 0 0 1 .43.99l-.06.03-.19.06ZM5 9.44c-.25.22-.4.6-.4 1.06 0 .46.15.84.4 1.06.14.13.31.2.5.2.52 0 .9-.54.9-1.26s-.38-1.26-.9-1.26a.74.74 0 0 0-.5.2Z\"]);\nexport const DocumentMention20Filled = /*#__PURE__*/createFluentIcon('DocumentMention20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H8.39l-.04-.18C9.95 17.63 11 16.1 11 14.5a5.5 5.5 0 0 0-7-5.3V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 0-3.14 4.29l.19-.06.06-.03a.54.54 0 0 0-.43-.99l-.14.05-.2.06a3.43 3.43 0 1 1 2.58-3.32c0 .74-.45 1.26-.9 1.26-.34 0-.54-.36-.54-1.26v-1.87a.54.54 0 0 0-1-.2 1.8 1.8 0 0 0-.98-.27c-1.22 0-1.98 1.1-1.98 2.34 0 1.25.76 2.34 1.98 2.34.55 0 1-.22 1.34-.58.26.37.66.58 1.18.58 1.09 0 1.98-1.04 1.98-2.34Zm-5.4 0c0-.72.38-1.26.9-1.26s.9.54.9 1.26-.38 1.26-.9 1.26-.9-.54-.9-1.26Z\"]);\nexport const DocumentMention20Regular = /*#__PURE__*/createFluentIcon('DocumentMention20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-4c-.43.44-1 .74-1.65.82l.04.18H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM6.67 17.71a.54.54 0 0 1 .43.99l-.06.03-.19.06A4.5 4.5 0 1 1 10 14.5c0 1.3-.89 2.34-1.98 2.34-.52 0-.92-.2-1.18-.58a1.8 1.8 0 0 1-1.38.58A1.82 1.82 0 0 1 4 16.07a2.66 2.66 0 0 1-.48-1.57c0-.6.17-1.15.48-1.57a1.84 1.84 0 0 1 2.47-.5.54.54 0 0 1 1 .2l.01.07v1.8c0 .9.2 1.26.54 1.26.45 0 .9-.52.9-1.26a3.42 3.42 0 1 0-2.59 3.32l.2-.06.15-.05ZM5 13.44c-.25.22-.4.6-.4 1.06 0 .46.15.84.4 1.06.14.13.31.2.5.2.52 0 .9-.54.9-1.26s-.38-1.26-.9-1.26a.74.74 0 0 0-.5.2Z\"]);\nexport const DocumentMention24Filled = /*#__PURE__*/createFluentIcon('DocumentMention24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-7.98c0-.15-.02-.3-.07-.46 1.97-.21 3.25-2.1 3.25-4.04A6.7 6.7 0 0 0 4 11.28V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.5 15a5.5 5.5 0 1 0-3.84 5.24l.23-.07.08-.04a.66.66 0 0 0-.53-1.2l-.17.06-.25.06a4.2 4.2 0 0 1-5.2-4.05 4.18 4.18 0 0 1 8.36 0c0 .9-.55 1.54-1.1 1.54-.41 0-.66-.45-.66-1.54v-2.29a.66.66 0 0 0-1.23-.24 2.2 2.2 0 0 0-1.19-.33c-1.49 0-2.42 1.33-2.42 2.86 0 1.53.93 2.86 2.42 2.86.67 0 1.23-.27 1.64-.7.32.44.8.7 1.44.7 1.33 0 2.42-1.27 2.42-2.86Zm-6.6 0c0-.88.46-1.54 1.1-1.54.64 0 1.1.66 1.1 1.54s-.46 1.54-1.1 1.54c-.64 0-1.1-.66-1.1-1.54Z\"]);\nexport const DocumentMention24Regular = /*#__PURE__*/createFluentIcon('DocumentMention24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.97c-.54.56-1.25.95-2.08 1.04.05.15.07.3.07.46H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.28c.48-.19.98-.33 1.5-.4V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM4 14.15a4.16 4.16 0 0 1 2.5-.83c2.3 0 4.18 1.87 4.18 4.18 0 .9-.55 1.54-1.1 1.54-.41 0-.66-.45-.66-1.54v-2.29a.66.66 0 0 0-1.23-.24 2.2 2.2 0 0 0-1.19-.33c-1.49 0-2.42 1.33-2.42 2.86 0 .87.3 1.67.83 2.2a2.22 2.22 0 0 0 1.59.65c.67.01 1.23-.26 1.64-.7.32.45.8.71 1.44.71 1.33 0 2.42-1.27 2.42-2.86a5.5 5.5 0 1 0-3.84 5.24l.23-.07.08-.04a.66.66 0 0 0-.53-1.2l-.17.06-.25.06A4.2 4.2 0 0 1 4 14.15Zm1.5 4.02a2.18 2.18 0 0 1 0-1.33c.17-.53.54-.88 1-.88.64 0 1.1.66 1.1 1.54s-.46 1.54-1.1 1.54c-.46 0-.83-.35-1-.87Z\"]);\nexport const DocumentMention28Filled = /*#__PURE__*/createFluentIcon('DocumentMention28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v11.6a2.4 2.4 0 0 1-2.4 2.4H11.44a1.97 1.97 0 0 0-.16-.92c2.34-.09 3.92-2.27 3.92-4.58A7.7 7.7 0 0 0 4 13.64V4.4A2.4 2.4 0 0 1 6.4 2H14Zm1.5.48V10c0 .28.22.5.5.5h7.5c-.09-.13-.2-.25-.3-.37L15.75 2.7a2.4 2.4 0 0 0-.26-.22ZM14 20.5a6.5 6.5 0 1 0-4.53 6.2l.26-.1.1-.04a.78.78 0 0 0-.63-1.42l-.2.07-.3.08a4.95 4.95 0 1 1 3.74-4.79c0 1.07-.65 1.82-1.3 1.82-.49 0-.78-.53-.78-1.82v-2.7a.78.78 0 0 0-1.46-.29 2.6 2.6 0 0 0-1.4-.39c-1.76 0-2.86 1.58-2.86 3.38 0 1.8 1.1 3.38 2.86 3.38.8 0 1.45-.32 1.93-.84.39.54.95.84 1.71.84 1.57 0 2.86-1.5 2.86-3.38Zm-7.8 0c0-1.04.55-1.82 1.3-1.82s1.3.78 1.3 1.82-.55 1.82-1.3 1.82-1.3-.78-1.3-1.82Z\"]);\nexport const DocumentMention28Regular = /*#__PURE__*/createFluentIcon('DocumentMention28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v9.24c.47-.24.98-.44 1.5-.58V4.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9h-8.46c-.54.34-1.17.55-1.86.58a2.03 2.03 0 0 1 .16.92H21.6a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm15.54 8.5H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44ZM14 20.5a6.5 6.5 0 1 0-4.53 6.2l.26-.1.1-.04a.78.78 0 0 0-.63-1.42l-.2.07-.3.08a4.95 4.95 0 1 1 3.74-4.79c0 1.07-.65 1.82-1.3 1.82-.49 0-.78-.53-.78-1.82v-2.7a.78.78 0 0 0-1.46-.29 2.6 2.6 0 0 0-1.4-.39c-1.76 0-2.86 1.58-2.86 3.38 0 1.8 1.1 3.38 2.86 3.38.8 0 1.45-.32 1.93-.84.39.54.95.84 1.71.84 1.57 0 2.86-1.5 2.86-3.38Zm-7.8 0c0-1.04.55-1.82 1.3-1.82s1.3.78 1.3 1.82-.55 1.82-1.3 1.82-1.3-.78-1.3-1.82Z\"]);\nexport const DocumentMention48Filled = /*#__PURE__*/createFluentIcon('DocumentMention48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H20.4a6 6 0 0 0 3.6-5.46v-1.87A12 12 0 0 0 8 24.68V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM22 35.72a10 10 0 1 0-6.66 9.7 1 1 0 0 0-.67-1.88A7.99 7.99 0 0 1 4 36a8 8 0 1 1 16 0v1.65a2 2 0 0 1-4-.15v-5.62a1 1 0 0 0-1.99-.04A4.18 4.18 0 0 0 11.5 31C8.98 31 7 33.25 7 35.97c0 2.71 1.98 4.96 4.5 4.96 1.2 0 2.29-.51 3.09-1.35A4 4 0 0 0 22 37.53v-1.81ZM11.5 33h.15c1.27.1 2.33 1.34 2.35 2.93v.22c-.09 1.58-1.2 2.78-2.5 2.78-1.35 0-2.5-1.3-2.5-2.96C9 34.3 10.15 33 11.5 33Z\"]);\nexport const DocumentMention48Regular = /*#__PURE__*/createFluentIcon('DocumentMention48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25v16.43c.8-.28 1.63-.48 2.5-.59V8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H22.47a5.98 5.98 0 0 1-4.63 2c.05.16.1.33.12.5h17.79C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26Zm23.23 12.5h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM22 35.72a10 10 0 1 0-6.66 9.7 1 1 0 0 0-.67-1.88A7.99 7.99 0 0 1 4 36a8 8 0 1 1 16 0v1.65a2 2 0 0 1-4-.15v-5.62a1 1 0 0 0-1.99-.04A4.18 4.18 0 0 0 11.5 31C8.98 31 7 33.25 7 35.97c0 2.71 1.98 4.96 4.5 4.96 1.2 0 2.29-.51 3.09-1.35A4 4 0 0 0 22 37.53v-1.81ZM11.5 33h.15c1.27.1 2.33 1.34 2.35 2.93v.22c-.09 1.58-1.2 2.78-2.5 2.78-1.35 0-2.5-1.3-2.5-2.96C9 34.3 10.15 33 11.5 33Z\"]);\nexport const DocumentMultiple16Filled = /*#__PURE__*/createFluentIcon('DocumentMultiple16Filled', \"16\", [\"M14 6a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H5a1 1 0 0 0 1 1h4.21c2.1 0 3.79-1.7 3.79-3.79V6ZM7 1v3.5C7 5.33 7.67 6 8.5 6H12v5.5c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 3 11.5v-9C3 1.67 3.67 1 4.5 1H7Zm1 .25V4.5c0 .28.22.5.5.5h3.25L8 1.25Z\"]);\nexport const DocumentMultiple16Regular = /*#__PURE__*/createFluentIcon('DocumentMultiple16Regular', \"16\", [\"M14 6a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H5a1 1 0 0 0 1 1h4.21c2.1 0 3.79-1.7 3.79-3.79V6ZM5 1a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V4.41c0-.4-.16-.78-.44-1.06L9.64 1.44A1.5 1.5 0 0 0 8.58 1H5Zm5 11H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3v1.5C8 4.33 8.67 5 9.5 5H11v6a1 1 0 0 1-1 1Zm.8-8H9.5a.5.5 0 0 1-.5-.5V2.2L10.8 4Z\"]);\nexport const DocumentMultiple20Filled = /*#__PURE__*/createFluentIcon('DocumentMultiple20Filled', \"20\", [\"M9 6.5V2H5.5C4.67 2 4 2.67 4 3.5v11c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 9 6.5Zm1 0V2.25L14.75 7H10.5a.5.5 0 0 1-.5-.5ZM17 9a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H6a1 1 0 0 0 1 1h6.06A3.94 3.94 0 0 0 17 14.06V9Z\"]);\nexport const DocumentMultiple20Regular = /*#__PURE__*/createFluentIcon('DocumentMultiple20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 9 6.5V3H6Zm4 .2v3.3c0 .28.22.5.5.5h3.3L10 3.2ZM17 9a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H6a1 1 0 0 0 1 1h6.06A3.94 3.94 0 0 0 17 14.06V9Z\"]);\nexport const DocumentMultiple24Filled = /*#__PURE__*/createFluentIcon('DocumentMultiple24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h4.25v4.75C10.5 7.99 11.51 9 12.75 9h4.75v8.25c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13Z\", \"M12 6.75V2.47l.22.19 4.62 4.62.2.22h-4.29a.75.75 0 0 1-.75-.75Z\", \"M8.75 22c-.98 0-1.81-.63-2.12-1.5h8.62c1.8 0 3.25-1.46 3.25-3.25V8.94l.84.84c.42.42.66 1 .66 1.59v5.88A4.75 4.75 0 0 1 15.25 22h-6.5Z\"]);\nexport const DocumentMultiple24Regular = /*#__PURE__*/createFluentIcon('DocumentMultiple24Regular', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h4.38c.6 0 1.17.24 1.6.66l4.61 4.62c.42.42.66 1 .66 1.59v8.38c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13Zm2.25-.75a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h9c.41 0 .75-.34.75-.75V9h-3.25c-1.24 0-2.25-1.01-2.25-2.25V3.5H6.25ZM12 4.56v2.19c0 .41.34.75.75.75h2.19L12 4.56Z\", \"M6.63 20.5c.3.87 1.14 1.5 2.12 1.5h6.5A4.75 4.75 0 0 0 20 17.25v-5.88c0-.6-.24-1.17-.66-1.6l-.84-.83v8.31c0 1.8-1.45 3.25-3.25 3.25H6.63Z\"]);\nexport const DocumentMultiplePercent20Filled = /*#__PURE__*/createFluentIcon('DocumentMultiplePercent20Filled', \"20\", [\"M9 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.67a3 3 0 0 1 2 2.71l1.44-1.44a1.5 1.5 0 0 1 2.12 2.12L8.12 14a3 3 0 0 1 2.7 2h2.68c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 9 6.5ZM5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-1.15 5.85a.5.5 0 0 1-.7-.7l6-6a.5.5 0 0 1 .7.7l-6 6Zm10.21.15h-2.23a3 3 0 0 0 .17-1h2a3 3 0 0 0 3-3V8a1 1 0 0 1 1 1v5.06A3.94 3.94 0 0 1 13.06 18ZM8 15a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm-1 2a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm3-10.5V2.25L14.75 7H10.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentMultiplePercent20Regular = /*#__PURE__*/createFluentIcon('DocumentMultiplePercent20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V14a2 2 0 0 1-2 2h-2.17a3 3 0 0 0-.6-1H13a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 9 6.5V3H6a1 1 0 0 0-1 1v5.76a3 3 0 0 0-1-.59V4Zm6-.8v3.3c0 .28.22.5.5.5h3.3L10 3.2ZM8 15a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm-1 2a1 1 0 0 0 1 1 1 1 0 1 0-1-1Zm4 0a3 3 0 0 1-.17 1h2.23A3.94 3.94 0 0 0 17 14.06V9a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3h-2Zm-8.15.85a.5.5 0 0 1-.7-.7l6-6a.5.5 0 0 1 .7.7l-6 6ZM5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const DocumentMultiplePercent24Filled = /*#__PURE__*/createFluentIcon('DocumentMultiplePercent24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h4.25v4.75C10.5 7.99 11.51 9 12.75 9h4.75v8.25c0 1.24-1 2.25-2.25 2.25h-2.4A3.5 3.5 0 0 0 9.5 17h-.03l2.02-2.01A1.75 1.75 0 1 0 9 12.5L7 14.53v-.03a3.5 3.5 0 0 0-3-3.46V4.25Zm9 16.25c0 .54-.12 1.05-.34 1.5h2.6A4.75 4.75 0 0 0 20 17.25v-5.88c0-.6-.24-1.17-.66-1.6l-.84-.83v8.31c0 1.8-1.45 3.25-3.25 3.25H13ZM12 6.75V2.47l.22.19 4.62 4.62.2.22h-4.29a.75.75 0 0 1-.75-.75ZM3.5 17a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm6 9.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm1.28-5.22a.75.75 0 1 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5Z\"]);\nexport const DocumentMultiplePercent24Regular = /*#__PURE__*/createFluentIcon('DocumentMultiplePercent24Regular', \"24\", [\"M6.25 3.5a.75.75 0 0 0-.75.75v7.38c-.44-.3-.95-.52-1.5-.6V4.26C4 3.01 5 2 6.25 2h4.38c.6 0 1.17.24 1.6.66l4.61 4.62c.42.42.66 1 .66 1.59v8.38c0 1.24-1 2.25-2.25 2.25h-2.4a3.5 3.5 0 0 0-.9-1.5h3.3c.41 0 .75-.34.75-.75V9h-3.25c-1.24 0-2.25-1.01-2.25-2.25V3.5H6.25ZM12 4.56v2.19c0 .41.34.75.75.75h2.19L12 4.56ZM15.25 22h-2.59c.22-.45.34-.96.34-1.5h2.25c1.8 0 3.25-1.46 3.25-3.25V8.94l.84.84c.42.42.66 1 .66 1.59v5.88A4.75 4.75 0 0 1 15.25 22ZM3.5 17a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm6 9.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm1.28-5.22a.75.75 0 1 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5Z\"]);\nexport const DocumentMultipleProhibited20Filled = /*#__PURE__*/createFluentIcon('DocumentMultipleProhibited20Filled', \"20\", [\"M11 2v4.5c0 .83.67 1.5 1.5 1.5H17v6.5c0 .83-.67 1.5-1.5 1.5h-4.7A5.5 5.5 0 0 0 6 9.02V3.5C6 2.67 6.67 2 7.5 2H11ZM5 9.02V4a1 1 0 0 0-1 1v4.2c.32-.08.66-.15 1-.18ZM10.4 17c-.18.36-.4.7-.66 1H14a1 1 0 0 0 1-1h-4.6ZM12 2.25V6.5c0 .28.22.5.5.5h4.25L12 2.25ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm2.4 2.8 4.9-4.9a3.5 3.5 0 0 1-4.9 4.9Zm-.7-.7a3.5 3.5 0 0 1 4.9-4.9l-4.9 4.9Z\"]);\nexport const DocumentMultipleProhibited20Regular = /*#__PURE__*/createFluentIcon('DocumentMultipleProhibited20Regular', \"20\", [\"M8 2a2 2 0 0 0-2 2v5.02c.34.03.68.1 1 .19V4a1 1 0 0 1 1-1h3v3.5c0 .83.67 1.5 1.5 1.5H16v6a1 1 0 0 1-1 1h-4.02c-.03.34-.1.68-.19 1H15a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 11.59 2H8Zm4 4.5V3.2L15.8 7h-3.3a.5.5 0 0 1-.5-.5ZM5 9.02V4a1 1 0 0 0-1 1v4.2c.32-.08.66-.15 1-.18ZM9.74 18c.26-.3.48-.64.66-1H15a1 1 0 0 1-1 1H9.74ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm2.4 2.8 4.9-4.9a3.5 3.5 0 0 1-4.9 4.9Zm-.7-.7a3.5 3.5 0 0 1 4.9-4.9l-4.9 4.9Z\"]);\nexport const DocumentMultipleProhibited24Filled = /*#__PURE__*/createFluentIcon('DocumentMultipleProhibited24Filled', \"24\", [\"M13 6.75V2H8.75C7.51 2 6.5 3 6.5 4.25V11a6.5 6.5 0 0 1 6.19 8.5h5.06c1.24 0 2.25-1 2.25-2.25V9h-4.75C14.01 9 13 8 13 6.75ZM5.5 4.63v6.45c-.52.08-1.03.22-1.5.42V6.75c0-.98.63-1.81 1.5-2.12ZM15.24 22H11.2c.42-.44.79-.94 1.08-1.5h5.1c-.31.88-1.15 1.5-2.13 1.5ZM14.5 6.75V2.5l5 5h-4.25a.75.75 0 0 1-.75-.75ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const DocumentMultipleProhibited24Regular = /*#__PURE__*/createFluentIcon('DocumentMultipleProhibited24Regular', \"24\", [\"M5.5 4.63v6.45c-.52.08-1.03.22-1.5.42V6.75c0-.98.63-1.81 1.5-2.12ZM17.75 19.5h-5.06c.15-.47.25-.98.3-1.5h4.76c.41 0 .75-.33.75-.75V9h-3.25c-1.2 0-2.17-.92-2.24-2.1L13 6.76V3.5H8.75a.75.75 0 0 0-.75.75v6.92A6.52 6.52 0 0 0 6.5 11V4.25C6.5 3.01 7.51 2 8.75 2h4.38c.6 0 1.17.24 1.59.66l4.62 4.62c.42.42.66 1 .66 1.6v8.37c0 1.25-1.01 2.25-2.25 2.25ZM14.5 4.56v2.2c0 .37.28.69.65.74h2.29L14.5 4.56ZM11.19 22c.42-.44.79-.94 1.08-1.5h5.1c-.31.88-1.15 1.5-2.13 1.5H11.2Zm.81-4.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const DocumentMultipleSync20Filled = /*#__PURE__*/createFluentIcon('DocumentMultipleSync20Filled', \"20\", [\"M9 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.7a5.5 5.5 0 0 1 6.8 6.8h2.7c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 9 6.5ZM13.06 18H9.74c.26-.3.48-.64.66-1H13a3 3 0 0 0 3-3V8a1 1 0 0 1 1 1v5.06A3.94 3.94 0 0 1 13.06 18ZM10 6.5V2.25L14.75 7H10.5a.5.5 0 0 1-.5-.5Zm-9 8a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H6a.5.5 0 0 1 0-1h.47a1.99 1.99 0 0 0-2.38.34.5.5 0 0 1-.71-.71A3 3 0 0 1 7 12.15V12c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 4 16.85V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.47a1.99 1.99 0 0 0 2.38-.34.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const DocumentMultipleSync20Regular = /*#__PURE__*/createFluentIcon('DocumentMultipleSync20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V14a2 2 0 0 1-2 2h-2.2c.08-.32.15-.66.18-1H13a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 9 6.5V3H6a1 1 0 0 0-1 1v5.02c-.34.03-.68.1-1 .19V4Zm6-.8v3.3c0 .28.22.5.5.5h3.3L10 3.2Zm.4 13.8c-.18.36-.4.7-.66 1h3.32A3.94 3.94 0 0 0 17 14.06V9a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3h-2.6ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H6a.5.5 0 0 1 0-1h.47a1.99 1.99 0 0 0-2.38.34.5.5 0 0 1-.71-.71A3 3 0 0 1 7 12.15V12c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 4 16.85V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.47a1.99 1.99 0 0 0 2.38-.34.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const DocumentNumber116Filled = /*#__PURE__*/createFluentIcon('DocumentNumber116Filled', \"16\", [\"M8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v6.55c.63.13 1.18.5 1.54 1 .2-.12.33-.26.43-.4a1.68 1.68 0 0 1 1.79-.58c.22.06.49.18.72.4.26.24.52.64.52 1.18v3.85c0 .18-.03.34-.09.5h3.59c.83 0 1.5-.67 1.5-1.5V6H9.5A1.5 1.5 0 0 1 8 4.5Zm1 0V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5Zm-8 7a1.5 1.5 0 0 1 3 0v2a1.5 1.5 0 0 1-3 0v-2Zm1.5-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm4.5-.35c0-.2-.1-.35-.2-.45a.73.73 0 0 0-.3-.16c-.16-.05-.5-.07-.73.22-.2.26-.51.57-.98.78a.5.5 0 0 0 .42.92c.3-.15.57-.32.79-.5v3.04a.5.5 0 0 0 1 0v-3.85Z\"]);\nexport const DocumentNumber116Regular = /*#__PURE__*/createFluentIcon('DocumentNumber116Regular', \"16\", [\"M3 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H7.91c.06-.16.09-.32.09-.5V14h3a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6.5c-.3-.22-.63-.38-1-.45V3Zm6.5 2h2.3L9 2.2v2.3c0 .28.22.5.5.5Zm-2.7 5.2c.1.1.2.25.2.45v3.85a.5.5 0 0 1-1 0v-3.04c-.22.18-.48.35-.8.5a.5.5 0 1 1-.4-.92c.46-.2.77-.52.97-.78.22-.3.57-.27.72-.22.1.02.21.07.31.16ZM2.5 10c-.83 0-1.5.67-1.5 1.5v2a1.5 1.5 0 0 0 3 0v-2c0-.83-.67-1.5-1.5-1.5ZM2 11.5a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0v-2Z\"]);\nexport const DocumentOnePage16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePage16Filled', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H5Zm4.59 4H6.5a.5.5 0 0 1-.09-1H9.5a.5.5 0 0 1 .09 1ZM10 8a.5.5 0 0 1-.41.5H6.5a.5.5 0 0 1-.09-1H9.5c.28 0 .5.22.5.5Zm0 3.5a.5.5 0 0 1-.41.48L9.5 12h-3a.5.5 0 0 1-.09-.99H9.5c.28 0 .5.22.5.5Z\"]);\nexport const DocumentOnePage16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePage16Regular', \"16\", [\"M9.59 5a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09ZM10 8a.5.5 0 0 1-.41.5H6.5a.5.5 0 0 1-.09-1H9.5c.28 0 .5.22.5.5Zm-.41 3.98A.5.5 0 0 0 9.5 11h-3l-.09.01a.5.5 0 0 0 .09 1h3l.09-.02ZM3 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3Zm8-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1ZM9.59 5a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09ZM10 8a.5.5 0 0 1-.41.5H6.5a.5.5 0 0 1-.09-1H9.5c.28 0 .5.22.5.5Zm-.41 3.98A.5.5 0 0 0 9.5 11h-3l-.09.01a.5.5 0 0 0 .09 1h3l.09-.02Z\"]);\nexport const DocumentOnePage20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePage20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm1.5 4h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1ZM7 13.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5-4h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1Z\"]);\nexport const DocumentOnePage20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePage20Regular', \"20\", [\"M6 2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2Zm0 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6Zm7 3.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h5.09c.28 0 .5.22.5.5Zm0 3.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h5.09c.28 0 .5.22.5.5Zm0 3.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h5.09c.28 0 .5.22.5.5Z\"]);\nexport const DocumentOnePage24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePage24Filled', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h11.5c1.24 0 2.25-1 2.25-2.25V4.25C20 3.01 19 2 17.75 2H6.25Zm1.5 4h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5ZM7 16.75c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75ZM7.75 11h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Z\"]);\nexport const DocumentOnePage24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePage24Regular', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h11.5c1.24 0 2.25-1 2.25-2.25V4.25C20 3.01 19 2 17.75 2H6.25ZM5.5 4.25c0-.41.34-.75.75-.75h11.5c.41 0 .75.34.75.75v15.5c0 .41-.34.75-.75.75H6.25a.75.75 0 0 1-.75-.75V4.25ZM7.75 6.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM7 16.25c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75ZM7.75 11a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Z\"]);\nexport const DocumentOnePageAdd16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd16Filled', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h2.26A5.5 5.5 0 0 1 13 6.2V3a2 2 0 0 0-2-2H5Zm4.59 4H6.5a.5.5 0 0 1-.09-1H9.5a.5.5 0 0 1 .09 1ZM16 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const DocumentOnePageAdd16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h2.26a5.5 5.5 0 0 1-.66-1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v3.02c.34.03.68.1 1 .19V3a2 2 0 0 0-2-2H5Zm4.59 4a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09ZM16 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const DocumentOnePageAdd20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd20Filled', \"20\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v5.2a5.5 5.5 0 0 0-4.66.8H7.5a.5.5 0 0 0 0 1h2.76a5.5 5.5 0 0 0 0 7H6a2 2 0 0 1-2-2V4Zm8.5 2h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1Zm2 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentOnePageAdd20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd20Regular', \"20\", [\"M14 2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2Zm-1 4.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h5.09c.28 0 .5.22.5.5ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Zm-7-2h3.84c-.4.28-.77.62-1.08 1H7.5a.5.5 0 0 1 0-1Z\"]);\nexport const DocumentOnePageAdd24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v7.25a6.48 6.48 0 0 0-3.44-.43.75.75 0 0 0-.31-.07h-8.5a.75.75 0 0 0 0 1.5h5.6a6.49 6.49 0 0 0-.54 9.5H6.25C5.01 22 4 21 4 19.75V4.25ZM16.25 6h-8.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const DocumentOnePageAdd24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageAdd24Regular', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v7.25c-.47-.2-.98-.34-1.5-.42V4.25a.75.75 0 0 0-.75-.75H6.25a.75.75 0 0 0-.75.75v15.5c0 .41.34.75.75.75h5.48c.29.55.65 1.06 1.08 1.5H6.25C5.01 22 4 21 4 19.75V4.25ZM16.25 11c.11 0 .22.02.31.07a6.47 6.47 0 0 0-3.21 1.43h-5.6a.75.75 0 0 1 0-1.5h8.5Zm-8.5-4.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const DocumentOnePageBeaker16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageBeaker16Filled', \"16\", [\"M5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h3.27a1.98 1.98 0 0 1-.05-1.92l.57-1.09H6.5a.5.5 0 0 1-.09-.99H9.3l.59-1.13a1 1 0 0 0 .1-.46V8.05a.5.5 0 0 1-.4.44l-.09.01h-3a.5.5 0 0 1-.09-1H9.38A1.5 1.5 0 0 1 10.5 5H13V3a2 2 0 0 0-2-2H5Zm5 6.91v.04a.5.5 0 0 0 0-.04ZM9.59 5 9.5 5h-3a.5.5 0 0 1-.09-1H9.5a.5.5 0 0 1 .09 1Zm4.4 4.41a2 2 0 0 0 .23.92l.35.68h-4.14l.34-.67a2 2 0 0 0 .23-.92V7h-.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1H14v2.4ZM9.92 12l-.8 1.54A1 1 0 0 0 10 15h5a1 1 0 0 0 .88-1.46l-.8-1.54H9.92Z\"]);\nexport const DocumentOnePageBeaker16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageBeaker16Regular', \"16\", [\"M9.59 5a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09Zm0 3.5a.5.5 0 0 0 .4-.45v-.1a.5.5 0 0 0 0-.04 1.5 1.5 0 0 1-.6-.41H6.4a.5.5 0 0 0 .09 1h3.09ZM12 3v2h1V3a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h3.27A2 2 0 0 1 8 14H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1Zm-5.5 8h2.8l-.51 1H6.5a.5.5 0 0 1-.09-1h.09ZM14 9.4a2 2 0 0 0 .22.92l.35.68h-4.14l.34-.67a2 2 0 0 0 .23-.92V7h-.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 0 1H14v2.4ZM9.9 12l-.79 1.54A1 1 0 0 0 10 15h5a1 1 0 0 0 .88-1.46l-.8-1.54H9.92Z\"]);\nexport const DocumentOnePageColumns20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageColumns20Filled', \"20\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm3.5 1a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 1 0v-9a.5.5 0 0 0-.5-.5Zm5.5.5a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Z\"]);\nexport const DocumentOnePageColumns20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageColumns20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6Zm1.5 2c.28 0 .5.22.5.5v9a.5.5 0 0 1-1 0v-9c0-.28.22-.5.5-.5Zm5.5.5a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Z\"]);\nexport const DocumentOnePageColumns24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageColumns24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v15.5c0 1.24-1 2.25-2.25 2.25H6.25C5.01 22 4 21 4 19.75V4.25ZM8.75 5a.75.75 0 0 0-.75.75v12.5a.75.75 0 0 0 1.5 0V5.75A.75.75 0 0 0 8.75 5Zm7.25.75a.75.75 0 0 0-1.5 0v12.5a.75.75 0 0 0 1.5 0V5.75Z\"]);\nexport const DocumentOnePageColumns24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageColumns24Regular', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v15.5c0 1.24-1 2.25-2.25 2.25H6.25C5.01 22 4 21 4 19.75V4.25Zm2.25-.75a.75.75 0 0 0-.75.75v15.5c0 .41.34.75.75.75h11.5c.41 0 .75-.34.75-.75V4.25a.75.75 0 0 0-.75-.75H6.25Zm3 1.5c.41 0 .75.34.75.75v12.5a.75.75 0 0 1-1.5 0V5.75c0-.41.34-.75.75-.75Zm6.25.75a.75.75 0 0 0-1.5 0v12.5a.75.75 0 0 0 1.5 0V5.75Z\"]);\nexport const DocumentOnePageLink16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageLink16Filled', \"16\", [\"M3 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6.5H9.5A3 3 0 0 0 7.84 15H5a2 2 0 0 1-2-2V3Zm6.59 2a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09ZM10 8a.5.5 0 0 0-.5-.5H6.41a.5.5 0 0 0 .09 1h3.09A.5.5 0 0 0 10 8Zm-3 4.5A2.5 2.5 0 0 1 9.5 10h.5a.5.5 0 0 1 0 1h-.5a1.5 1.5 0 0 0 0 3h.5a.5.5 0 0 1 0 1h-.5A2.5 2.5 0 0 1 7 12.5Zm5.5-2c0-.28.22-.5.5-.5h.5a2.5 2.5 0 0 1 0 5H13a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 0 0-3H13a.5.5 0 0 1-.5-.5Zm-3.5 2c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentOnePageLink16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageLink16Regular', \"16\", [\"M11 2H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1.34c.17.37.42.71.71 1H5a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6h-1V3a1 1 0 0 0-1-1Zm-1.5 8a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3 .5c0-.28.22-.5.5-.5h.5a2.5 2.5 0 0 1 0 5H13a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 0 0-3H13a.5.5 0 0 1-.5-.5Zm-3 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm.5-7.5a.5.5 0 0 1-.41.5H6.5a.5.5 0 0 1-.09-1H9.5c.28 0 .5.22.5.5Zm-.41 4a.5.5 0 0 0-.09-1H6.41a.5.5 0 0 0 .09 1h3.09Z\"]);\nexport const DocumentOnePageLink20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageLink20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h3.05a3.49 3.49 0 0 1 2.45-6h4c.17 0 .34.01.5.04V4a2 2 0 0 0-2-2H6Zm1.5 4h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1ZM9 15.5a2.5 2.5 0 0 1 2.5-2.5h.5a.5.5 0 0 1 0 1h-.5a1.5 1.5 0 0 0 0 3h.5a.5.5 0 0 1 0 1h-.5A2.5 2.5 0 0 1 9 15.5Zm6-2.5a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H15a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H15Zm-3.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-4-5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1Z\"]);\nexport const DocumentOnePageLink20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageLink20Regular', \"20\", [\"M14 2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h3.05c-.3-.29-.54-.63-.71-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v8h.5c.17 0 .34.01.5.04V4a2 2 0 0 0-2-2Zm-1.41 5a.5.5 0 0 0-.09-1H7.41a.5.5 0 0 0 .09 1h5.09ZM7.5 10a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm4 3a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H15a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H15Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentOnePageLink24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageLink24Filled', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v9.58a4.74 4.74 0 0 0-1.75-.33h-3.5a4.75 4.75 0 0 0-2.92 8.5H6.25C5.01 22 4 21 4 19.75V4.25ZM16.25 6h-8.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5Zm0 5h-8.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5ZM22 18.25a3.75 3.75 0 0 0-3.75-3.75h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5V22h.2A3.75 3.75 0 0 0 22 18.24Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DocumentOnePageLink24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageLink24Regular', \"24\", [\"M4 4.25C4 3.01 5 2 6.25 2h11.5C18.99 2 20 3 20 4.25v9.58c-.47-.18-.97-.3-1.5-.32V4.25a.75.75 0 0 0-.75-.75H6.25a.75.75 0 0 0-.75.75v15.5c0 .41.34.75.75.75h4.32c.31.58.74 1.1 1.26 1.5H6.25C5.01 22 4 21 4 19.75V4.25ZM7.75 6.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM7 11.75c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm15 6.5a3.75 3.75 0 0 0-3.75-3.75h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5V22h.2A3.75 3.75 0 0 0 22 18.24Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DocumentOnePageMultiple16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple16Filled', \"16\", [\"M4.71 1C3.77 1 3 1.77 3 2.71v8.58c0 .94.77 1.71 1.71 1.71h5.58c.94 0 1.71-.77 1.71-1.71V2.7C12 1.77 11.23 1 10.29 1H4.7Zm4.79 9a.5.5 0 0 1-.41.5H6a.5.5 0 0 1-.09-.98L6 9.5h3c.28 0 .5.22.5.5Zm-.41-2.5H6a.5.5 0 0 1-.09-1H9a.5.5 0 0 1 .09 1ZM9.5 4a.5.5 0 0 1-.41.48L9 4.5H6a.5.5 0 0 1-.09-.99H9c.28 0 .5.22.5.5ZM13 5a1 1 0 0 1 1 1v5.21c0 2.1-1.7 3.79-3.79 3.79H6a1 1 0 0 1-1-1h5a3 3 0 0 0 3-3V5Z\"]);\nexport const DocumentOnePageMultiple16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple16Regular', \"16\", [\"M9.09 10.5a.5.5 0 0 0-.09-1H6l-.09.02a.5.5 0 0 0 .09.99h3l.09-.01ZM9.5 7a.5.5 0 0 1-.41.5H6a.5.5 0 0 1-.09-1H9c.28 0 .5.22.5.5Zm-.41-2.52A.5.5 0 0 0 9 3.5H6l-.09.01a.5.5 0 0 0 .09 1h3l.09-.02ZM4.71 1C3.77 1 3 1.77 3 2.71v8.58c0 .94.77 1.71 1.71 1.71h5.58c.94 0 1.71-.77 1.71-1.71V2.7C12 1.77 11.23 1 10.29 1H4.7Zm0 1h5.58c.39 0 .71.32.71.71v8.58c0 .4-.32.71-.71.71H4.7a.71.71 0 0 1-.71-.71V2.7c0-.4.32-.71.71-.71ZM14 6a1 1 0 0 0-1-1v6a3 3 0 0 1-3 3H5a1 1 0 0 0 1 1h4.21c2.1 0 3.79-1.7 3.79-3.79V6Z\"]);\nexport const DocumentOnePageMultiple20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple20Filled', \"20\", [\"M4.01 3.8 4 4v10c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-1.99 1.8ZM12 5.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5ZM12 9a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5Zm0 3.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5ZM16 8a1 1 0 0 1 1 1v5.06A3.94 3.94 0 0 1 13.06 18H7a1 1 0 0 1-1-1h7a3 3 0 0 0 3-3V8Z\"]);\nexport const DocumentOnePageMultiple20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple20Regular', \"20\", [\"M12 5.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5ZM12 9a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5Zm0 3.5a.5.5 0 0 1-.41.5H7.5a.5.5 0 0 1-.09-1h4.09c.28 0 .5.22.5.5ZM6 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6ZM5 14V3.89A1 1 0 0 1 6 3h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1Zm11-6a1 1 0 0 1 1 1v5.06A3.94 3.94 0 0 1 13.06 18H7a1 1 0 0 1-1-1h7a3 3 0 0 0 3-3V8Z\"]);\nexport const DocumentOnePageMultiple24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple24Filled', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v13c0 1.24 1 2.25 2.25 2.25h9c1.24 0 2.25-1 2.25-2.25v-13c0-1.24-1-2.25-2.25-2.25h-9ZM7 6.25c0-.41.33-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6A.75.75 0 0 1 7 6.25Zm.75 8.25h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5ZM7 10.75c0-.41.33-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM8.75 22c-.98 0-1.81-.63-2.12-1.5h8.62c1.8 0 3.25-1.46 3.25-3.25V8.94l.84.84c.42.42.66 1 .66 1.59v5.88A4.75 4.75 0 0 1 15.25 22h-6.5Z\"]);\nexport const DocumentOnePageMultiple24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageMultiple24Regular', \"24\", [\"M7 6.25c0-.41.33-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6A.75.75 0 0 1 7 6.25Zm.75 8.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6ZM7 10.75c0-.41.33-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm-3-6.5C4 3.01 5 2 6.25 2h9c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1 2.25-2.25 2.25h-9c-1.24 0-2.25-1-2.25-2.25v-13Zm1.5-.08v13.08c0 .41.34.75.75.75h9c.41 0 .75-.34.75-.75v-13a.75.75 0 0 0-.75-.75h-9c-.39 0-.7.3-.75.67ZM8.75 22c-.98 0-1.81-.63-2.12-1.5h8.62c1.8 0 3.25-1.46 3.25-3.25V8.94l.84.84c.42.42.66 1 .66 1.59v5.88A4.75 4.75 0 0 1 15.25 22h-6.5Z\"]);\nexport const DocumentOnePageSparkle16Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle16Filled', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM5 1h3.8l-.02.04a1.2 1.2 0 0 1-.29.47c-.13.13-.29.24-.45.3l-1.09.34A1.43 1.43 0 0 0 6 3.5a1.41 1.41 0 0 0 .97 1.35l1.06.35c.15.05.3.13.47.29.11.11.2.24.3.47l.35 1.1c.06.15.14.3.27.44H6.4a.5.5 0 0 0 .09 1H10c0 .27.08.54.24.76.16.22.38.38.65.48l.77.25c.08.03.16.08.22.14.07.06.1.14.14.22l.26.8c.1.25.26.46.48.62.07.05.15.1.24.13V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2Zm5 10.5a.5.5 0 0 0-.5-.5H6.41a.5.5 0 0 0 .09 1h3l.09-.02a.5.5 0 0 0 .41-.49Z\"]);\nexport const DocumentOnePageSparkle16Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle16Regular', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM13 11.91a1.32 1.32 0 0 1-.24-.14 1.4 1.4 0 0 1-.48-.62l-.26-.8a.98.98 0 0 0-.02-.04V13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h2.43l.61-.2c.16-.05.32-.16.45-.29.13-.13.23-.29.3-.47V1H5a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-1.1ZM9.59 8.48a.5.5 0 0 0-.09-.99H6.41a.5.5 0 0 0 .09 1h3.09Zm.41 3a.5.5 0 0 1-.41.5H6.5a.5.5 0 0 1-.09-.99H9.5c.28 0 .5.22.5.5Z\"]);\nexport const DocumentOnePageSparkle20Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle20Filled', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM6 2h5.43l-.48.15A1.43 1.43 0 0 0 10 3.5a1.41 1.41 0 0 0 .97 1.35l1.06.35c.15.05.3.13.47.29.11.11.2.24.3.47l.05.19A.5.5 0 0 0 12.5 6h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.43l.15.48c.1.25.25.48.52.7.14.1.3.16.45.2a1.3 1.3 0 0 0 .77 1.79l.77.25c.08.03.16.08.22.14.05.05.1.11.12.18V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2Zm1 11.5c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5Zm5.5-4h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1Z\"]);\nexport const DocumentOnePageSparkle20Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle20Regular', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM11.43 2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-5.7a.48.48 0 0 0-.12-.17.64.64 0 0 0-.22-.14L15 9.77V16a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4.09a1.42 1.42 0 0 1 .86-.85l.48-.15Zm1.42 4.15A.5.5 0 0 0 12.5 6H7.41a.5.5 0 0 0 .09 1h5.09a.5.5 0 0 0 .26-.85Zm-.26 4.34a.5.5 0 0 0-.09-.99H7.41a.5.5 0 0 0 .09 1h5.09Zm0 3.5a.5.5 0 0 0-.09-.99H7.41a.5.5 0 0 0 .09 1h5.09Z\"]);\nexport const DocumentOnePageSparkle24Filled = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle24Filled', \"24\", [\"M16.08 6.63c-.07-.1-.15-.19-.23-.27h-.01a2.85 2.85 0 0 0-1.11-.69l-1.38-.45a.57.57 0 0 1-.26-.2.5.5 0 0 1-.1-.31.5.5 0 0 1 .1-.31.52.52 0 0 1 .26-.2l1.38-.45a2.81 2.81 0 0 0 1.77-1.76v-.03l.45-1.38c.04-.1.11-.2.2-.26a.5.5 0 0 1 .31-.1c.11 0 .22.04.31.1.09.06.16.15.2.26l.45 1.38a2.85 2.85 0 0 0 1.8 1.8l1.38.45h.03c.1.04.19.11.26.2.07.09.1.2.1.31a.5.5 0 0 1-.1.31.52.52 0 0 1-.26.2l-1.38.45a2.85 2.85 0 0 0-1.8 1.8l-.46 1.38v.03a.6.6 0 0 1-.19.23.5.5 0 0 1-.31.1.5.5 0 0 1-.31-.1.52.52 0 0 1-.2-.26l-.45-1.38c-.1-.31-.25-.6-.45-.85Zm7.7 3.8-.77-.24a1.58 1.58 0 0 1-1-1l-.25-.76a.33.33 0 0 0-.11-.15.27.27 0 0 0-.34 0 .33.33 0 0 0-.11.15l-.25.76c-.07.23-.2.44-.37.61-.17.17-.38.3-.61.38l-.77.25a.33.33 0 0 0-.15.11.27.27 0 0 0 0 .34c.04.05.09.09.15.11l.77.25a1.53 1.53 0 0 1 1 1l.25.76c.02.06.06.11.11.15a.27.27 0 0 0 .34 0 .33.33 0 0 0 .11-.15l.25-.76a1.58 1.58 0 0 1 1-1l.77-.25a.33.33 0 0 0 .15-.11.26.26 0 0 0 .05-.17.26.26 0 0 0-.05-.17c-.04-.05-.1-.08-.17-.11Zm-4.24 2.28.26.8c.05.14.12.25.2.37v6.08a2.25 2.25 0 0 1-2.25 2.25H6.25A2.25 2.25 0 0 1 4 19.96V4.46a2.25 2.25 0 0 1 2.25-2.25h8.26l-.22.11-1.42.46a2.06 2.06 0 0 0-1 3.11c.08.11.18.2.27.29l.05.04H7.75a.76.76 0 0 0-.75.75c0 .41.34.75.75.75h7.24l.03.06c.04.05.07.1.09.16l.46 1.41a2.04 2.04 0 0 0 1.93 1.36 1.78 1.78 0 0 0 1.24 1.71l.8.29Zm-11.79 5h8.5c.41 0 .75-.34.75-.75a.76.76 0 0 0-.75-.75h-8.5a.76.76 0 0 0-.75.75c0 .41.34.75.75.75Zm0-5h8.5c.41 0 .75-.34.75-.75a.76.76 0 0 0-.75-.75h-8.5a.76.76 0 0 0-.75.75c0 .41.34.75.75.75Z\"]);\nexport const DocumentOnePageSparkle24Regular = /*#__PURE__*/createFluentIcon('DocumentOnePageSparkle24Regular', \"24\", [\"M16.25 11h-8.5a.76.76 0 0 0-.75.75c0 .41.34.75.75.75h8.5c.41 0 .75-.34.75-.75a.76.76 0 0 0-.75-.75Zm0 4.5h-8.5a.76.76 0 0 0-.75.75c0 .41.34.75.75.75h8.5c.41 0 .75-.34.75-.75a.76.76 0 0 0-.75-.75ZM7 7.25c0 .41.34.75.75.75h7.45l-.09-.28a1.47 1.47 0 0 0-.21-.39l-.11-.13a1.3 1.3 0 0 0-.52-.32L13.1 6.5H7.75a.76.76 0 0 0-.75.75Zm12.8 6.04-.26-.79-.8-.29c-.09-.03-.16-.08-.24-.12v7.66c0 .41-.34.75-.75.75H6.25a.76.76 0 0 1-.75-.75V4.25c0-.41.34-.75.75-.75h5.53c.03-.06.05-.13.09-.19a2 2 0 0 1 .99-.74l1.41-.46.22-.11H6.25A2.25 2.25 0 0 0 4 4.25v15.5A2.25 2.25 0 0 0 6.25 22h11.5A2.25 2.25 0 0 0 20 19.75v-6.08a1.72 1.72 0 0 1-.2-.38Zm-3.95-7.14a2.67 2.67 0 0 1 .68 1.12l.45 1.38c.04.11.11.2.2.26.09.07.2.1.31.1a.5.5 0 0 0 .31-.1.6.6 0 0 0 .19-.23v-.03l.46-1.38a2.85 2.85 0 0 1 1.8-1.8l1.38-.45c.11-.04.2-.11.26-.2a.5.5 0 0 0 .1-.31.5.5 0 0 0-.1-.31.63.63 0 0 0-.26-.2h-.03l-1.38-.45a2.85 2.85 0 0 1-1.8-1.8L17.97.37a.52.52 0 0 0-.2-.26.57.57 0 0 0-.31-.1.5.5 0 0 0-.31.1.57.57 0 0 0-.2.26l-.45 1.38v.03a2.81 2.81 0 0 1-1.77 1.76l-1.38.45a.52.52 0 0 0-.26.2.5.5 0 0 0-.1.31c0 .11.03.22.1.31.06.09.16.16.26.2l1.38.45c.42.14.8.38 1.11.69h.01Zm7.93 4.07c.06 0 .13.06.17.11.04.05.05.11.05.17 0 .06-.01.12-.05.17a.33.33 0 0 1-.15.11l-.77.25a1.58 1.58 0 0 0-1 1l-.25.76a.33.33 0 0 1-.11.15.27.27 0 0 1-.34 0 .33.33 0 0 1-.11-.15l-.25-.76a1.53 1.53 0 0 0-1-1l-.77-.25a.33.33 0 0 1-.15-.11.27.27 0 0 1 0-.34.33.33 0 0 1 .15-.11l.77-.25c.23-.08.44-.21.61-.38.17-.17.3-.38.37-.61l.25-.76a.33.33 0 0 1 .11-.15.27.27 0 0 1 .34 0c.05.04.09.09.11.15l.25.76a1.58 1.58 0 0 0 1 1l.77.24Z\"]);\nexport const DocumentPageBottomCenter20Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomCenter20Filled', \"20\", [\"m10.75 13.5-.22 1.5H9.3l.22-1.5h1.24ZM5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9Zm2.57 14.44.07-.44H7.5a.5.5 0 0 1 0-1h.78l.22-1.5H8a.5.5 0 0 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h1.24l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74l-.22 1.5H12a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 0 1-.99-.15l.07-.44H9.15l-.09.59a.5.5 0 0 1-.99-.15Z\"]);\nexport const DocumentPageBottomCenter20Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomCenter20Regular', \"20\", [\"m8.07 15.44.07-.44H7.5a.5.5 0 1 1 0-1h.78l.22-1.5H8a.5.5 0 1 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h1.24l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74l-.22 1.5H12a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 1 1-.99-.15l.07-.44H9.15l-.09.59a.5.5 0 1 1-.99-.15Zm2.68-2.94H9.51L9.3 14h1.24l.22-1.5ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPageBottomCenter24Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomCenter24Filled', \"24\", [\"m11.26 16.88.23-1.5h1.48l-.23 1.5h-1.48ZM17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM12.4 19.04a.75.75 0 1 0 1.48.24l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.24l-.2 1.26h-1.48l.16-1.02a.75.75 0 1 0-1.48-.24l-.2 1.26h-.96a.75.75 0 0 0 0 1.5h.73l-.24 1.5h-.99a.75.75 0 0 0 0 1.5h.75l-.1.66a.75.75 0 0 0 1.48.24l.14-.9h1.48l-.1.66Z\"]);\nexport const DocumentPageBottomCenter24Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomCenter24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-4.72 16.4a.75.75 0 0 1-.63-.86l.1-.66h-1.47l-.14.9a.75.75 0 0 1-1.49-.24l.1-.66h-.74a.75.75 0 0 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 0 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h1.48l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h.52a.75.75 0 0 1 0 1.5h-.76l-.23 1.5h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62Zm-1.53-4.52-.23 1.5h1.48l.23-1.5H11.5Z\"]);\nexport const DocumentPageBottomLeft20Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomLeft20Filled', \"20\", [\"m7.25 14.5.22-1.5H8.7l-.22 1.5H7.25ZM14.5 18c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9Zm-4.57-6.44-.07.44h.64a.5.5 0 0 1 0 1h-.78l-.22 1.5h.5a.5.5 0 0 1 0 1h-.65l-.16 1.07a.5.5 0 0 1-.99-.14l.14-.93H7.1l-.16 1.07a.5.5 0 0 1-.99-.14l.14-.93H5.5a.5.5 0 0 1 0-1h.74l.22-1.5H6a.5.5 0 0 1 0-1h.6l.09-.59a.5.5 0 0 1 .99.15L7.6 12h1.24l.09-.59a.5.5 0 0 1 .99.15Z\"]);\nexport const DocumentPageBottomLeft20Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomLeft20Regular', \"20\", [\"M10.93 10.56a.5.5 0 1 0-1-.15l-.08.59H8.61l.07-.44a.5.5 0 1 0-1-.15L7.6 11H7a.5.5 0 1 0 0 1h.46l-.22 1.5H6.5a.5.5 0 1 0 0 1h.59l-.14.93a.5.5 0 1 0 1 .14l.15-1.07h1.24l-.14.93a.5.5 0 0 0 1 .14l.15-1.07H11a.5.5 0 0 0 0-1h-.5l.22-1.5h.78a.5.5 0 0 0 0-1h-.64l.07-.44ZM8.25 13.5l.22-1.5H9.7l-.22 1.5H8.25ZM14 18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8Zm0-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1Z\"]);\nexport const DocumentPageBottomLeft24Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomLeft24Filled', \"24\", [\"m9.26 16.88.23-1.5h1.48l-.23 1.5H9.26ZM17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM10.4 19.04a.75.75 0 1 0 1.48.24l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.24l-.2 1.26H9.73l.16-1.02a.75.75 0 0 0-1.48-.24l-.2 1.26h-.96a.75.75 0 0 0 0 1.5h.73l-.24 1.5h-.99a.75.75 0 0 0 0 1.5h.75l-.1.66a.75.75 0 0 0 1.48.24l.14-.9h1.48l-.1.66Z\"]);\nexport const DocumentPageBottomLeft24Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomLeft24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-6.72 16.4a.75.75 0 0 1-.63-.86l.1-.66H9.03l-.14.9a.75.75 0 0 1-1.49-.24l.1-.66h-.74a.75.75 0 1 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 1 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h1.48l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h.52a.75.75 0 0 1 0 1.5h-.76l-.23 1.5h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62Zm-1.53-4.52-.23 1.5h1.48l.23-1.5H9.5Z\"]);\nexport const DocumentPageBottomRight20Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomRight20Filled', \"20\", [\"m11.25 14.5.22-1.5h1.24l-.22 1.5h-1.24ZM14.5 18c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9Zm-.57-6.44-.07.44h.64a.5.5 0 1 1 0 1h-.78l-.22 1.5h.5a.5.5 0 1 1 0 1h-.65l-.16 1.07a.5.5 0 0 1-.99-.14l.14-.93H11.1l-.16 1.07a.5.5 0 0 1-.99-.14l.14-.93H9.5a.5.5 0 0 1 0-1h.74l.22-1.5H10a.5.5 0 0 1 0-1h.6l.09-.59a.5.5 0 1 1 .99.15l-.07.44h1.24l.09-.59a.5.5 0 1 1 .99.15Z\"]);\nexport const DocumentPageBottomRight20Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomRight20Regular', \"20\", [\"M12.93 10.56a.5.5 0 1 0-1-.15l-.08.59h-1.24l.07-.44a.5.5 0 1 0-1-.15L9.6 11H9a.5.5 0 0 0 0 1h.46l-.22 1.5H8.5a.5.5 0 0 0 0 1h.59l-.14.93a.5.5 0 0 0 1 .14l.15-1.07h1.24l-.14.93a.5.5 0 0 0 1 .14l.15-1.07H13a.5.5 0 0 0 0-1h-.5l.22-1.5h.78a.5.5 0 0 0 0-1h-.64l.07-.44Zm-2.68 2.94.22-1.5h1.24l-.22 1.5h-1.24ZM14 18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8Zm0-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1Z\"]);\nexport const DocumentPageBottomRight24Filled = /*#__PURE__*/createFluentIcon('DocumentPageBottomRight24Filled', \"24\", [\"m13.26 16.88.23-1.5h1.48l-.23 1.5h-1.48ZM17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM14.4 19.04a.75.75 0 1 0 1.48.24l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.24l-.2 1.26h-1.48l.16-1.02a.75.75 0 1 0-1.48-.24l-.2 1.26h-.96a.75.75 0 0 0 0 1.5h.72l-.23 1.5h-.99a.75.75 0 0 0 0 1.5h.75l-.1.66a.75.75 0 1 0 1.48.24l.14-.9h1.48l-.1.66Z\"]);\nexport const DocumentPageBottomRight24Regular = /*#__PURE__*/createFluentIcon('DocumentPageBottomRight24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-2.72 16.4a.75.75 0 0 1-.63-.86l.1-.66h-1.47l-.14.9a.75.75 0 0 1-1.49-.24l.1-.66h-.74a.75.75 0 1 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 1 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h1.48l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h.52a.75.75 0 0 1 0 1.5h-.76l-.23 1.5h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62Zm-1.53-4.52-.23 1.5h1.48l.23-1.5H13.5Z\"]);\nexport const DocumentPageBreak20Filled = /*#__PURE__*/createFluentIcon('DocumentPageBreak20Filled', \"20\", [\"M16 6V2.5a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5V6c0 .83.67 1.5 1.49 1.5h9.01c.82 0 1.5-.67 1.5-1.5ZM3 9.5a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1H3Zm3.2 0a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1H6.2Zm2.7.5c0-.28.22-.5.5-.5h1.2a.5.5 0 0 1 0 1H9.4a.5.5 0 0 1-.5-.5Zm3.7-.5a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1h-1.2Zm2.7.5c0-.28.22-.5.5-.5H17a.5.5 0 0 1 0 1h-1.2a.5.5 0 0 1-.5-.5Zm.7 7.5V14c0-.83-.68-1.5-1.5-1.5H5.49A1.5 1.5 0 0 0 4 14v3.5c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5Z\"]);\nexport const DocumentPageBreak20Regular = /*#__PURE__*/createFluentIcon('DocumentPageBreak20Regular', \"20\", [\"M16 2.5V6c0 .83-.68 1.5-1.5 1.5H5.49A1.5 1.5 0 0 1 4 6V2.5a.5.5 0 1 1 1 0V6c0 .28.21.5.49.5h9.01A.5.5 0 0 0 15 6V2.5c0-.28.23-.5.5-.5s.5.22.5.5Zm-13 7a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1H3Zm3.2 0a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1H6.2Zm2.7.5c0-.28.22-.5.5-.5h1.2a.5.5 0 0 1 0 1H9.4a.5.5 0 0 1-.5-.5Zm3.7-.5a.5.5 0 0 0 0 1h1.2a.5.5 0 0 0 0-1h-1.2Zm2.7.5c0-.28.22-.5.5-.5H17a.5.5 0 0 1 0 1h-1.2a.5.5 0 0 1-.5-.5Zm.7 4v3.5a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5V14a.5.5 0 0 0-.5-.5H5.49a.5.5 0 0 0-.5.5v3.5a.5.5 0 0 1-.5.5.5.5 0 0 1-.49-.5V14c0-.83.67-1.5 1.49-1.5h9.01c.82 0 1.5.67 1.5 1.5Z\"]);\nexport const DocumentPageBreak24Filled = /*#__PURE__*/createFluentIcon('DocumentPageBreak24Filled', \"24\", [\"M2.5 12c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 2.5 12Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 6.5 12Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM5 2a1 1 0 0 0-1 1v4c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V3a1 1 0 0 0-1-1H5Zm14 20a1 1 0 0 0 1-1v-4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4a1 1 0 0 0 1 1h14Z\"]);\nexport const DocumentPageBreak24Regular = /*#__PURE__*/createFluentIcon('DocumentPageBreak24Regular', \"24\", [\"M2.5 12c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 2.5 12Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 6.5 12Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4 0c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM4.75 2a.75.75 0 0 0-.75.75V7c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V2.75a.75.75 0 0 0-1.5 0V7a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V2.75A.75.75 0 0 0 4.75 2Zm14.5 20c.41 0 .75-.34.75-.75V17a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4.25a.75.75 0 0 0 1.5 0V17c0-.27.22-.5.5-.5h12c.28 0 .5.23.5.5v4.25c0 .41.34.75.75.75Z\"]);\nexport const DocumentPageNumber20Filled = /*#__PURE__*/createFluentIcon('DocumentPageNumber20Filled', \"20\", [\"m10.75 9.5-.22 1.5H9.3l.22-1.5h1.24ZM5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9Zm2.57 10.44.07-.44H7.5a.5.5 0 1 1 0-1h.78l.22-1.5H8a.5.5 0 0 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h1.24l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74l-.22 1.5H12a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 1 1-.99-.15l.07-.44H9.15l-.09.59a.5.5 0 1 1-.99-.15Z\"]);\nexport const DocumentPageNumber20Regular = /*#__PURE__*/createFluentIcon('DocumentPageNumber20Regular', \"20\", [\"M8.07 12.44a.5.5 0 1 0 1 .15l.08-.59h1.24l-.07.44a.5.5 0 1 0 1 .15l.08-.59h.6a.5.5 0 0 0 0-1h-.46l.22-1.5h.74a.5.5 0 0 0 0-1h-.59l.14-.93a.5.5 0 0 0-1-.14L10.9 8.5H9.66l.14-.93a.5.5 0 0 0-1-.14L8.66 8.5H8a.5.5 0 0 0 0 1h.5L8.28 11H7.5a.5.5 0 1 0 0 1h.64l-.07.44Zm2.68-2.94-.22 1.5H9.3l.22-1.5h1.24ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPageNumber24Filled = /*#__PURE__*/createFluentIcon('DocumentPageNumber24Filled', \"24\", [\"m11.26 13 .23-1.5h1.48l-.23 1.5h-1.48Zm6.49-11c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM12.4 15.16a.75.75 0 1 0 1.48.23l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.23l-.2 1.26h-1.48l.16-1.03a.75.75 0 1 0-1.48-.23l-.2 1.26h-.96a.75.75 0 0 0 0 1.5h.73L9.74 13h-.99a.75.75 0 0 0 0 1.5h.75l-.1.66a.75.75 0 0 0 1.48.23l.14-.9h1.48l-.1.67Z\"]);\nexport const DocumentPageNumber24Regular = /*#__PURE__*/createFluentIcon('DocumentPageNumber24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-4.72 12.52a.75.75 0 0 1-.63-.86l.1-.66h-1.47l-.14.9a.75.75 0 1 1-1.49-.24l.1-.66h-.74a.75.75 0 0 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 0 1 0-1.5h.96l.2-1.26a.75.75 0 0 1 1.48.24L11.73 10h1.48l.2-1.26a.75.75 0 0 1 1.48.24L14.73 10h.52a.75.75 0 0 1 0 1.5h-.76l-.23 1.5h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62Zm-1.53-4.52-.23 1.5h1.48l.23-1.5H11.5Z\"]);\nexport const DocumentPageTopCenter20Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopCenter20Filled', \"20\", [\"M10.75 5.5 10.53 7H9.3l.22-1.5h1.24ZM5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9Zm2.57 6.44L8.14 8H7.5a.5.5 0 1 1 0-1h.78l.22-1.5H8a.5.5 0 1 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h1.24l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74L11.54 7H12a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 0 1-.99-.15L10.4 8H9.15l-.09.59a.5.5 0 0 1-.99-.15Z\"]);\nexport const DocumentPageTopCenter20Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopCenter20Regular', \"20\", [\"M8.07 9.44a.5.5 0 1 0 1 .15L9.14 9h1.24l-.07.44a.5.5 0 1 0 1 .15L11.4 9h.6a.5.5 0 0 0 0-1h-.46l.22-1.5h.74a.5.5 0 0 0 0-1h-.59l.14-.93a.5.5 0 0 0-1-.14L10.9 5.5H9.66l.14-.93a.5.5 0 0 0-1-.14L8.66 5.5H8a.5.5 0 0 0 0 1h.5L8.28 8H7.5a.5.5 0 0 0 0 1h.64l-.07.44Zm2.68-2.94L10.53 8H9.3l.22-1.5h1.24ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPageTopCenter24Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopCenter24Filled', \"24\", [\"m11.26 9 .23-1.5h1.48L12.74 9h-1.48Zm6.49-7c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5Zm-5.35 9.16a.75.75 0 1 0 1.48.23l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.23L13.21 6h-1.48l.16-1.03a.75.75 0 1 0-1.48-.23L10.21 6h-.96a.75.75 0 1 0 0 1.5h.73L9.74 9h-.99a.75.75 0 1 0 0 1.5h.75l-.1.66a.75.75 0 0 0 1.48.23l.14-.9h1.48l-.1.67Z\"]);\nexport const DocumentPageTopCenter24Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopCenter24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1ZM13.02 12a.75.75 0 0 1-.63-.86l.1-.66h-1.47l-.14.9a.75.75 0 1 1-1.49-.24l.1-.66h-.74a.75.75 0 0 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 1 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h1.48l.2-1.26a.75.75 0 1 1 1.48.24l-.16 1.02h.52a.75.75 0 0 1 0 1.5h-.76l-.23 1.5h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62Zm-1.53-4.52-.23 1.5h1.48l.23-1.5H11.5Z\"]);\nexport const DocumentPageTopLeft20Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopLeft20Filled', \"20\", [\"M8.75 5.5 8.53 7H7.3l.22-1.5h1.24ZM5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9Zm.57 6.44L6.14 8H5.5a.5.5 0 0 1 0-1h.78l.22-1.5H6a.5.5 0 0 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93H8.9l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74L9.54 7H10a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 1 1-.99-.15L8.4 8H7.15l-.09.59a.5.5 0 1 1-.99-.15Z\"]);\nexport const DocumentPageTopLeft20Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopLeft20Regular', \"20\", [\"M7.07 9.44a.5.5 0 0 0 1 .15L8.14 9h1.24l-.07.44a.5.5 0 0 0 1 .15L10.4 9h.6a.5.5 0 0 0 0-1h-.46l.22-1.5h.74a.5.5 0 0 0 0-1h-.59l.14-.93a.5.5 0 0 0-1-.14L9.9 5.5H8.66l.14-.93a.5.5 0 0 0-1-.14L7.66 5.5H7a.5.5 0 0 0 0 1h.5L7.28 8H6.5a.5.5 0 0 0 0 1h.64l-.07.44ZM9.75 6.5 9.53 8H8.3l.22-1.5h1.24ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPageTopLeft24Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopLeft24Filled', \"24\", [\"m9.26 9 .23-1.5h1.48L10.74 9H9.26Zm8.49-7c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5Zm-7.35 9.16a.75.75 0 1 0 1.48.23l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.23L11.21 6H9.73l.16-1.03a.75.75 0 0 0-1.48-.23L8.21 6h-.96a.75.75 0 1 0 0 1.5h.73L7.74 9h-.99a.75.75 0 1 0 0 1.5h.75l-.1.66a.75.75 0 0 0 1.48.23l.14-.9h1.48l-.1.67Z\"]);\nexport const DocumentPageTopLeft24Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopLeft24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-6.72 8.52a.75.75 0 0 1-.63-.86l.1-.66H9.03l-.14.9a.75.75 0 0 1-1.49-.24l.1-.66h-.74a.75.75 0 0 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 1 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24L9.73 6h1.48l.2-1.26a.75.75 0 0 1 1.48.24L12.73 6h.52a.75.75 0 0 1 0 1.5h-.76L12.26 9h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62ZM9.49 7.5 9.26 9h1.48l.23-1.5H9.5Z\"]);\nexport const DocumentPageTopRight20Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopRight20Filled', \"20\", [\"M12.75 5.5 12.53 7H11.3l.22-1.5h1.24ZM5.5 2C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-13c0-.83-.67-1.5-1.5-1.5h-9Zm4.57 6.44.07-.44H9.5a.5.5 0 1 1 0-1h.78l.22-1.5H10a.5.5 0 1 1 0-1h.65l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h1.24l.16-1.07a.5.5 0 0 1 .99.14l-.14.93h.59a.5.5 0 0 1 0 1h-.74L13.54 7H14a.5.5 0 0 1 0 1h-.6l-.09.59a.5.5 0 0 1-.99-.15L12.4 8h-1.24l-.09.59a.5.5 0 0 1-.99-.15Z\"]);\nexport const DocumentPageTopRight20Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopRight20Regular', \"20\", [\"M9.07 9.44a.5.5 0 1 0 1 .15l.08-.59h1.24l-.07.44a.5.5 0 1 0 1 .15L12.4 9h.6a.5.5 0 0 0 0-1h-.46l.22-1.5h.74a.5.5 0 0 0 0-1h-.59l.14-.93a.5.5 0 0 0-1-.14L11.9 5.5h-1.24l.14-.93a.5.5 0 0 0-1-.14L9.66 5.5H9a.5.5 0 0 0 0 1h.5L9.28 8H8.5a.5.5 0 0 0 0 1h.64l-.07.44Zm2.68-2.94L11.53 8H10.3l.22-1.5h1.24ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6Zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPageTopRight24Filled = /*#__PURE__*/createFluentIcon('DocumentPageTopRight24Filled', \"24\", [\"m13.26 9 .23-1.5h1.48L14.74 9h-1.48Zm4.49-7c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5Zm-3.35 9.16a.75.75 0 1 0 1.48.23l.14-.9h.73a.75.75 0 0 0 0-1.5h-.5l.24-1.5h.76a.75.75 0 0 0 0-1.5h-.52l.16-1.02a.75.75 0 1 0-1.48-.23L15.21 6h-1.48l.16-1.03a.75.75 0 1 0-1.48-.23L12.21 6h-.96a.75.75 0 0 0 0 1.5h.72L11.74 9h-.99a.75.75 0 0 0 0 1.5h.75l-.1.66a.75.75 0 1 0 1.48.23l.14-.9h1.48l-.1.67Z\"]);\nexport const DocumentPageTopRight24Regular = /*#__PURE__*/createFluentIcon('DocumentPageTopRight24Regular', \"24\", [\"M17.74 2c1.2 0 2.17.92 2.25 2.1v15.65c0 1.18-.92 2.16-2.1 2.24H6.25c-1.19 0-2.16-.92-2.24-2.1V4.25C4 3.07 4.91 2.09 6.08 2h11.65Zm0 1.5H6.24c-.38 0-.69.28-.74.64v15.6c0 .38.28.7.64.75h11.6c.38 0 .7-.28.75-.64V4.25c0-.38-.28-.7-.64-.75h-.1Zm-2.72 8.52a.75.75 0 0 1-.63-.86l.1-.66h-1.47l-.14.9a.75.75 0 0 1-1.49-.24l.1-.66h-.74a.75.75 0 0 1 0-1.5h.99l.23-1.5h-.72a.75.75 0 0 1 0-1.5h.96l.2-1.26a.75.75 0 1 1 1.48.24L13.73 6h1.48l.2-1.26a.75.75 0 1 1 1.48.24L16.73 6h.52a.75.75 0 0 1 0 1.5h-.76L16.26 9h.49a.75.75 0 0 1 0 1.5h-.73l-.14.9a.75.75 0 0 1-.86.62ZM13.49 7.5 13.26 9h1.48l.23-1.5H13.5Z\"]);\nexport const DocumentPdf16Filled = /*#__PURE__*/createFluentIcon('DocumentPdf16Filled', \"16\", [\"M4.5 9a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.16h.33a1.17 1.17 0 0 0 0-2.34H4.5Zm.83 1.34H5V10h.33a.17.17 0 0 1 0 .34ZM10 9.5c0-.27.22-.5.5-.5h1a.5.5 0 0 1 0 1H11v.34h.5a.5.5 0 1 1 0 1H11v.16a.5.5 0 0 1-1 0v-2ZM7.5 9a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H8a1.5 1.5 0 0 0 0-3h-.5Zm.5 2v-1a.5.5 0 0 1 0 1Zm1-9H4.5C3.67 2 3 2.67 3 3.5v3.58c-.58.21-1 .77-1 1.42v4c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-4c0-.65-.42-1.21-1-1.42V6h-2.5A1.5 1.5 0 0 1 9 4.5V2ZM3.5 8h9c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5Zm9.2-3h-2.2a.5.5 0 0 1-.5-.5V2.3L12.7 5Z\"]);\nexport const DocumentPdf16Regular = /*#__PURE__*/createFluentIcon('DocumentPdf16Regular', \"16\", [\"M4.5 9a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.16h.33a1.17 1.17 0 0 0 0-2.34H4.5Zm.83 1.34H5V10h.33a.17.17 0 0 1 0 .34ZM10 9.5c0-.27.22-.5.5-.5h1a.5.5 0 0 1 0 1H11v.34h.5a.5.5 0 1 1 0 1H11v.16a.5.5 0 0 1-1 0v-2ZM7.5 9a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H8a1.5 1.5 0 0 0 0-3h-.5Zm.5 2v-1a.5.5 0 0 1 0 1ZM3 3.5v3.58c-.58.21-1 .77-1 1.42v4c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-4c0-.65-.42-1.21-1-1.42V5.41c0-.4-.16-.78-.44-1.06l-1.92-1.91A1.5 1.5 0 0 0 9.58 2H4.5C3.67 2 3 2.67 3 3.5ZM4.5 3H9v1.5c0 .83.67 1.5 1.5 1.5H12v1H4V3.5c0-.27.22-.5.5-.5Zm5.5.21L11.8 5h-1.3a.5.5 0 0 1-.5-.5V3.21ZM3.5 8h9c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentPdf20Filled = /*#__PURE__*/createFluentIcon('DocumentPdf20Filled', \"20\", [\"M6.5 11a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.17h.33a1.17 1.17 0 0 0 0-2.33H6.5Zm.83 1.33H7V12h.33a.17.17 0 0 1 0 .33ZM12 11.5c0-.28.23-.5.5-.5h1a.5.5 0 1 1 0 1H13v.33h.5a.5.5 0 1 1 0 1H13v.17a.5.5 0 1 1-1 0v-2ZM9.5 11a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h.5a1.5 1.5 0 0 0 0-3h-.5Zm.5 2v-1a.5.5 0 0 1 0 1Zm0-6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.58c-.58.2-1 .76-1 1.42v4c0 .65.42 1.2 1 1.41v.59c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-.59c.58-.2 1-.76 1-1.41v-4c0-.66-.42-1.21-1-1.42V8h-4.5A1.5 1.5 0 0 1 10 6.5ZM4.5 10h11c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-4c0-.28.23-.5.5-.5ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentPdf20Regular = /*#__PURE__*/createFluentIcon('DocumentPdf20Regular', \"20\", [\"M6.5 11a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-.17h.33a1.17 1.17 0 0 0 0-2.33H6.5Zm.83 1.33H7V12h.33a.17.17 0 0 1 0 .33ZM12 11.5c0-.28.23-.5.5-.5h1a.5.5 0 0 1 0 1H13v.33h.5a.5.5 0 1 1 0 1H13v.17a.5.5 0 0 1-1 0v-2ZM9.5 11a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h.5a1.5 1.5 0 0 0 0-3h-.5Zm.5 2v-1a.5.5 0 0 1 0 1ZM4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06v1.67c.58.2 1 .76 1 1.42v4c0 .65-.42 1.2-1 1.41V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-.09c-.58-.2-1-.76-1-1.41v-4c0-.66.42-1.21 1-1.42V4Zm11 4h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5h10V8ZM5 16a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1H5Zm6-12.8v3.3c0 .28.22.5.5.5h3.3L11 3.2ZM4.5 10a.5.5 0 0 0-.5.5v4c0 .28.23.5.5.5h11a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-11Z\"]);\nexport const DocumentPdf24Filled = /*#__PURE__*/createFluentIcon('DocumentPdf24Filled', \"24\", [\"M7.5 13a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0V16h.5a1.5 1.5 0 0 0 0-3h-1Zm1 2H8v-1h.5a.5.5 0 1 1 0 1Zm6.5-1.5c0-.27.22-.5.5-.5H17a.5.5 0 1 1 0 1h-1v1h1a.5.5 0 0 1 0 1h-1v.5a.5.5 0 0 1-1 0v-3Zm-3.5-.5h.5a2 2 0 0 1 0 4h-.5a.5.5 0 0 1-.5-.5v-3c0-.27.22-.5.5-.5Zm.5 3a1 1 0 0 0 0-2v2Zm0-8V2H6a2 2 0 0 0-2 2v6.67c-.6.28-1 .88-1 1.58v5.5c0 .7.4 1.3 1 1.58V20c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2v-.67c.6-.28 1-.88 1-1.58v-5.5c0-.7-.4-1.3-1-1.58V10h-6a2 2 0 0 1-2-2Zm-7.25 4h14.5c.14 0 .25.11.25.25v5.5c0 .14-.11.25-.25.25H4.75a.25.25 0 0 1-.25-.25v-5.5c0-.14.11-.25.25-.25Zm8.75-4V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentPdf24Regular = /*#__PURE__*/createFluentIcon('DocumentPdf24Regular', \"24\", [\"M7.5 13a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0V16h.5a1.5 1.5 0 0 0 0-3h-1Zm1 2H8v-1h.5a.5.5 0 1 1 0 1Zm6.5-1.5c0-.27.22-.5.5-.5H17a.5.5 0 1 1 0 1h-1v1h1a.5.5 0 0 1 0 1h-1v.5a.5.5 0 0 1-1 0v-3Zm-3.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h.5a2 2 0 0 0 0-4h-.5Zm.5 3v-2a1 1 0 0 1 0 2Zm8 4v-1.16c.6-.29 1-.89 1-1.59v-4.5c0-.7-.4-1.3-1-1.58V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.17c-.6.28-1 .88-1 1.58v4.5c0 .7.4 1.3 1 1.59V20c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2Zm-2 .5H6a.5.5 0 0 1-.5-.5v-1h13v1a.5.5 0 0 1-.5.5Zm.5-10.5v1h-13V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5Zm-1.12-1.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Zm-12.63 4h14.5c.14 0 .25.11.25.25v4.5c0 .14-.11.25-.25.25H4.75a.25.25 0 0 1-.25-.25v-4.5c0-.14.11-.25.25-.25Z\"]);\nexport const DocumentPdf32Filled = /*#__PURE__*/createFluentIcon('DocumentPdf32Filled', \"32\", [\"M9 16a1 1 0 0 0-1 1v5a1 1 0 1 0 2 0v-1h.5a2.5 2.5 0 0 0 0-5H9Zm1.5 3H10v-1h.5a.5.5 0 0 1 0 1Zm3.5-2a1 1 0 0 1 1-1h.5a3.5 3.5 0 1 1 0 7H15a1 1 0 0 1-1-1v-5Zm2 3.91a1.5 1.5 0 0 0 0-2.82v2.82ZM20 22v-5a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-2v1h2a1 1 0 1 1 0 2h-2v1a1 1 0 1 1-2 0ZM17 9V2H8a3 3 0 0 0-3 3v8a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2v1a3 3 0 0 0 3 3h16a3 3 0 0 0 3-3v-1a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2v-1h-7a3 3 0 0 1-3-3Zm10 6v9H5v-9h22Zm-8-6V2.12a3 3 0 0 1 1.3.76l5.82 5.83a3 3 0 0 1 .76 1.29H20a1 1 0 0 1-1-1Z\"]);\nexport const DocumentPdf32Regular = /*#__PURE__*/createFluentIcon('DocumentPdf32Regular', \"32\", [\"M9 16a1 1 0 0 0-1 1v5a1 1 0 1 0 2 0v-1h.5a2.5 2.5 0 0 0 0-5H9Zm1.5 3H10v-1h.5a.5.5 0 0 1 0 1Zm3.5-2a1 1 0 0 1 1-1h.5a3.5 3.5 0 1 1 0 7H15a1 1 0 0 1-1-1v-5Zm2 3.91a1.5 1.5 0 0 0 0-2.82v2.82ZM20 22v-5a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-2v1h2a1 1 0 1 1 0 2h-2v1a1 1 0 1 1-2 0ZM6 5v8H5a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2h1v1a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-1h1a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1V9.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H9a3 3 0 0 0-3 3Zm3-1h7v5a3 3 0 0 0 3 3h5v1H8V5a1 1 0 0 1 1-1ZM8 27v-1h16v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1ZM24 9.83V10h-5a1 1 0 0 1-1-1V4h.17a1 1 0 0 1 .7.3l4.84 4.82a1 1 0 0 1 .29.7ZM5 15h22v9H5v-9Z\"]);\nexport const DocumentPercent20Filled = /*#__PURE__*/createFluentIcon('DocumentPercent20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.67a3 3 0 0 1 2 2.71l1.44-1.44a1.5 1.5 0 0 1 2.12 2.12L8.12 14a3 3 0 0 1 2.7 4h3.68c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5ZM5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-1.15 5.85a.5.5 0 0 1-.7-.7l6-6a.5.5 0 0 1 .7.7l-6 6ZM6 17a2 2 0 0 0 2 2 2 2 0 1 0-2-2Zm2 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm3-11.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentPercent20Regular = /*#__PURE__*/createFluentIcon('DocumentPercent20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-3.17a3 3 0 0 0 .17-1h3a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5.76a3 3 0 0 0-1-.59V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5ZM5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm6 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-.15-5.85c.2.2.2.5 0 .7l-6 6a.5.5 0 0 1-.7-.7l6-6c.2-.2.5-.2.7 0Z\"]);\nexport const DocumentPercent24Filled = /*#__PURE__*/createFluentIcon('DocumentPercent24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v7.04c1.7.24 3 1.7 3 3.46v.03l2.01-2.02A1.75 1.75 0 1 1 11.5 15L9.47 17h.03a3.5 3.5 0 0 1 3.16 5H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-6.87 8.4A2.5 2.5 0 0 1 1 14.5a2.5 2.5 0 1 1 4.13 1.9ZM4 13.63a1 1 0 1 0-1 1.73 1 1 0 0 0 1-1.73Zm6.78.65a.75.75 0 1 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5ZM7 20.5A2.49 2.49 0 0 0 9.5 23 2.5 2.5 0 1 0 7 20.5Zm3.5 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-12.5V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentPercent24Regular = /*#__PURE__*/createFluentIcon('DocumentPercent24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5c0 .54-.12 1.05-.34 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.04c.55.07 1.06.28 1.5.59V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM6 14.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm-1.5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm7.5 6a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm-1.5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm.28-7.28c.3.3.3.77 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06-1.06l7.5-7.5c.3-.3.77-.3 1.06 0Z\"]);\nexport const DocumentPerson16Filled = /*#__PURE__*/createFluentIcon('DocumentPerson16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5H7.81l.02-.02A3.2 3.2 0 0 0 9 12.5c0-1.3-1-2.38-2.27-2.49A3 3 0 0 0 3 5.41V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM6.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 12.5C8 13.75 7 15 4.5 15S1 13.75 1 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DocumentPerson16Regular = /*#__PURE__*/createFluentIcon('DocumentPerson16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v2.4c.3-.17.64-.3 1-.36V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1H8.63c-.19.36-.45.7-.8.98L7.8 15H11a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM6.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 12.5C8 13.75 7 15 4.5 15S1 13.75 1 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DocumentPerson20Filled = /*#__PURE__*/createFluentIcon('DocumentPerson20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H8.63c.25-.47.37-.99.37-1.5 0-1.3-1-2.38-2.27-2.49A3 3 0 0 0 4 9.04V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM6.5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 16.5C8 17.75 7 19 4.5 19S1 17.75 1 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DocumentPerson20Regular = /*#__PURE__*/createFluentIcon('DocumentPerson20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.04a3.02 3.02 0 0 1 1 0V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H8.96c-.05.34-.16.68-.33 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-8.3 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 16.5C8 17.75 7 19 4.5 19S1 17.75 1 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const DocumentPill20Filled = /*#__PURE__*/createFluentIcon('DocumentPill20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v.91a3.6 3.6 0 0 0-2.06 1.03l-4 4A3.62 3.62 0 0 0 9.2 18H5.5A1.5 1.5 0 0 1 4 16.5v-13C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm7.35 8.4a2.62 2.62 0 0 0-3.7 0l-4 4a2.62 2.62 0 0 0 3.7 3.7l4-4a2.62 2.62 0 0 0 0-3.7Zm-3 .7a1.62 1.62 0 1 1 2.3 2.3L16 15.29 13.7 13l1.65-1.65Zm-1.5 4.3c.2.2.2.5 0 .7l-1 1a.5.5 0 0 1-.7-.7l1-1c.2-.2.5-.2.7 0Z\"]);\nexport const DocumentPill20Regular = /*#__PURE__*/createFluentIcon('DocumentPill20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h3.2a3.61 3.61 0 0 1-.29-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v1.2c.32-.14.66-.24 1-.29v-1.5c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm3.55 3.65a2.62 2.62 0 0 0-3.7 0l-4 4a2.62 2.62 0 0 0 3.7 3.7l4-4a2.62 2.62 0 0 0 0-3.7Zm-3 .7a1.62 1.62 0 1 1 2.3 2.3L16 15.29 13.7 13l1.65-1.65Zm-2.2 4.3a.5.5 0 0 1 .7.7l-1 1a.5.5 0 0 1-.7-.7l1-1Z\"]);\nexport const DocumentPill24Filled = /*#__PURE__*/createFluentIcon('DocumentPill24Filled', \"24\", [\"M12 8V2H5.5C4.67 2 4 2.67 4 3.5v17c0 .83.67 1.5 1.5 1.5h5.97l.2-.01a3.87 3.87 0 0 1 .6-4.73l5-5A3.86 3.86 0 0 1 20 11.13V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm8.53 4.97a2.87 2.87 0 0 0-4.06 0l-5 5a2.87 2.87 0 1 0 4.06 4.06l5-5a2.87 2.87 0 0 0 0-4.06Zm-3 1.06a1.37 1.37 0 1 1 1.94 1.94L19 17.94 17.06 16l1.97-1.97Zm-2 4.94c.3.3.3.77 0 1.06l-1 1a.75.75 0 1 1-1.06-1.06l1-1c.3-.3.77-.3 1.06 0Z\"]);\nexport const DocumentPill24Regular = /*#__PURE__*/createFluentIcon('DocumentPill24Regular', \"24\", [\"M5.5 4.25c0-.41.34-.75.75-.75H12V8c0 1.1.9 2 2 2h4.5v1.43c.48-.2.99-.3 1.5-.3V9.66c0-.46-.18-.9-.51-1.23L13.57 2.5A1.75 1.75 0 0 0 12.34 2H6.25C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h5.43a3.86 3.86 0 0 1-.52-1.5H6.25a.75.75 0 0 1-.75-.75V4.25ZM17.44 8.5H14a.5.5 0 0 1-.5-.5V4.56l3.94 3.94Zm4.59 4.47a2.87 2.87 0 0 0-4.06 0l-5 5a2.87 2.87 0 1 0 4.06 4.06l5-5a2.87 2.87 0 0 0 0-4.06Zm-3 1.06a1.37 1.37 0 1 1 1.94 1.94L19 17.94 17.06 16l1.97-1.97Zm-2 4.94c.3.3.3.77 0 1.06l-1 1a.75.75 0 1 1-1.06-1.06l1-1c.3-.3.77-.3 1.06 0Z\"]);\nexport const DocumentPrint20Filled = /*#__PURE__*/createFluentIcon('DocumentPrint20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9a2 2 0 0 0 2-2v-2.5a2.5 2.5 0 0 0-2.04-2.46A2.5 2.5 0 0 0 6.5 9h-2c-.17 0-.34.02-.5.05V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM4.5 10c-.83 0-1.5.67-1.5 1.5v.5h-.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 0 1 1h1v.5c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5V17h1a1 1 0 0 0 1-1v-2.5c0-.83-.67-1.5-1.5-1.5H8v-.5c0-.83-.67-1.5-1.5-1.5h-2ZM7 12H4v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v.5Zm-2.5 4h2c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentPrint20Regular = /*#__PURE__*/createFluentIcon('DocumentPrint20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.05c.16-.03.33-.05.5-.05H5V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.27A2 2 0 0 1 9 18h5a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM4.5 10c-.83 0-1.5.67-1.5 1.5v.5h-.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 0 1 1h1v.5c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5V17h1a1 1 0 0 0 1-1v-2.5c0-.83-.67-1.5-1.5-1.5H8v-.5c0-.83-.67-1.5-1.5-1.5h-2ZM7 12H4v-.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v.5Zm-2.5 4h2c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentPrint24Filled = /*#__PURE__*/createFluentIcon('DocumentPrint24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-7.1c.04-.16.07-.33.09-.5H11a2 2 0 0 0 2-2V16a2.5 2.5 0 0 0-2-2.45A2.75 2.75 0 0 0 8.24 11h-3.5c-.26 0-.51.04-.75.1V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM3 13.75c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v.75h.5c.83 0 1.5.67 1.5 1.5v3.5a1 1 0 0 1-1 1h-1v.75c0 .97-.78 1.75-1.75 1.75h-3.5C3.78 23 3 22.22 3 21.25v-.75H2a1 1 0 0 1-1-1V16c0-.83.67-1.5 1.5-1.5H3v-.75Zm5.5 0a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v.75h4v-.75Zm-4 5.5v2c0 .14.11.25.25.25h3.5c.14 0 .25-.11.25-.25v-2a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z\"]);\nexport const DocumentPrint24Regular = /*#__PURE__*/createFluentIcon('DocumentPrint24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.27a2 2 0 0 1-1.73 1h-.01c-.02.17-.05.34-.1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.1c.24-.06.49-.1.75-.1h.75V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM3 13.75c0-.97.78-1.75 1.75-1.75h3.5c.97 0 1.75.78 1.75 1.75v.75h.5c.83 0 1.5.67 1.5 1.5v3.5a1 1 0 0 1-1 1h-1v.75c0 .97-.78 1.75-1.75 1.75h-3.5C3.78 23 3 22.22 3 21.25v-.75H2a1 1 0 0 1-1-1V16c0-.83.67-1.5 1.5-1.5H3v-.75Zm5.5 0a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25v.75h4v-.75Zm-4 5.5v2c0 .14.11.25.25.25h3.5c.14 0 .25-.11.25-.25v-2a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z\"]);\nexport const DocumentPrint28Filled = /*#__PURE__*/createFluentIcon('DocumentPrint28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v11.6a2.4 2.4 0 0 1-2.4 2.4h-9.2c.06-.24.1-.49.1-.75V25a2.5 2.5 0 0 0 2.5-2.5V19a3 3 0 0 0-2.5-2.96v-.29A2.75 2.75 0 0 0 9.75 13h-4.5c-.45 0-.87.1-1.25.3V4.4A2.4 2.4 0 0 1 6.4 2H14Zm1.5.48V10c0 .28.22.5.5.5h7.5c-.09-.13-.2-.25-.3-.37L15.75 2.7a2.4 2.4 0 0 0-.26-.22ZM5.25 14c-.97 0-1.75.78-1.75 1.75V17H3a2 2 0 0 0-2 2v3.5c0 .83.67 1.5 1.5 1.5h1v1.25c0 .97.78 1.75 1.75 1.75h4.5c.97 0 1.75-.78 1.75-1.75V24h1c.83 0 1.5-.67 1.5-1.5V19a2 2 0 0 0-2-2h-.5v-1.25c0-.97-.78-1.75-1.75-1.75h-4.5ZM5 17v-1.25c0-.14.11-.25.25-.25h4.5c.14 0 .25.11.25.25V17H5Zm0 5.75c0-.14.11-.25.25-.25h4.5c.14 0 .25.11.25.25v2.5c0 .14-.11.25-.25.25h-4.5a.25.25 0 0 1-.25-.25v-2.5Z\"]);\nexport const DocumentPrint28Regular = /*#__PURE__*/createFluentIcon('DocumentPrint28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v8.9c.38-.2.8-.3 1.25-.3h.25V4.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9H14c-.42.31-.94.5-1.5.5v.25c0 .26-.04.51-.1.75h9.2a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm15.54 8.5H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44ZM5.25 14c-.97 0-1.75.78-1.75 1.75V17H3a2 2 0 0 0-2 2v3.5c0 .83.67 1.5 1.5 1.5h1v1.25c0 .97.78 1.75 1.75 1.75h4.5c.97 0 1.75-.78 1.75-1.75V24h1c.83 0 1.5-.67 1.5-1.5V19a2 2 0 0 0-2-2h-.5v-1.25c0-.97-.78-1.75-1.75-1.75h-4.5ZM5 17v-1.25c0-.14.11-.25.25-.25h4.5c.14 0 .25.11.25.25V17H5Zm0 5.75c0-.14.11-.25.25-.25h4.5c.14 0 .25.11.25.25v2.5c0 .14-.11.25-.25.25h-4.5a.25.25 0 0 1-.25-.25v-2.5Z\"]);\nexport const DocumentPrint32Filled = /*#__PURE__*/createFluentIcon('DocumentPrint32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3h-7.02a3.25 3.25 0 0 0 1.52-2.75v-5a3.75 3.75 0 0 0-2.51-3.54 3.5 3.5 0 0 0-3.49-3.21h-6c-.54 0-1.05.12-1.5.34V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM6.5 17a2 2 0 0 0-2 2v1h-.25C3.01 20 2 21 2 22.25v5c0 .97.78 1.75 1.75 1.75h.75c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2h.75c.97 0 1.75-.78 1.75-1.75v-5c0-1.24-1-2.25-2.25-2.25h-.25v-1a2 2 0 0 0-2-2h-6ZM6 20v-1c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5v1H6Zm0 6.5c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5V29a.5.5 0 0 1-.5.5h-6A.5.5 0 0 1 6 29v-2.5Z\"]);\nexport const DocumentPrint32Regular = /*#__PURE__*/createFluentIcon('DocumentPrint32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v10.84c.45-.22.96-.34 1.5-.34H7V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1h-5.59c-.2.84-.72 1.55-1.43 2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm16.59 8H20a1 1 0 0 1-1-1V4.41L24.59 10ZM6.5 17a2 2 0 0 0-2 2v1h-.25C3.01 20 2 21 2 22.25v5c0 .97.78 1.75 1.75 1.75h.75c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2h.75c.97 0 1.75-.78 1.75-1.75v-5c0-1.24-1-2.25-2.25-2.25h-.25v-1a2 2 0 0 0-2-2h-6ZM6 20v-1c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5v1H6Zm0 6.5c0-.28.22-.5.5-.5h6c.28 0 .5.22.5.5V29a.5.5 0 0 1-.5.5h-6A.5.5 0 0 1 6 29v-2.5Z\"]);\nexport const DocumentPrint48Filled = /*#__PURE__*/createFluentIcon('DocumentPrint48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H25.65A3.99 3.99 0 0 0 27 40v-7a5 5 0 0 0-4.08-4.92A5 5 0 0 0 18 24h-8c-.71 0-1.39.15-2 .42V7a3 3 0 0 1 3-3h13Zm2.5.46v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46ZM10 26a3 3 0 0 0-3 3v1H6a3 3 0 0 0-3 3v7c0 1.1.9 2 2 2h2v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1h2a2 2 0 0 0 2-2v-7a3 3 0 0 0-3-3h-1v-1a3 3 0 0 0-3-3h-8Zm9 4H9v-1a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1Zm-9 8h8a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentPrint48Regular = /*#__PURE__*/createFluentIcon('DocumentPrint48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25v16.17a4.98 4.98 0 0 1 2-.42h.5V8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75h-9.04A4 4 0 0 1 23 44h12.75C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26Zm23.23 12.5h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM10 26a3 3 0 0 0-3 3v1H6a3 3 0 0 0-3 3v7c0 1.1.9 2 2 2h2v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1h2a2 2 0 0 0 2-2v-7a3 3 0 0 0-3-3h-1v-1a3 3 0 0 0-3-3h-8Zm9 4H9v-1a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1Zm-9 8h8a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1Z\"]);\nexport const DocumentProhibited20Filled = /*#__PURE__*/createFluentIcon('DocumentProhibited20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm-8.68 9.07a4.5 4.5 0 1 0 6.36 6.36 4.5 4.5 0 0 0-6.36-6.36Zm5.65 5.65a3.5 3.5 0 0 1-4.57.33l4.9-4.9a3.5 3.5 0 0 1-.33 4.57ZM7.6 11.7l-4.9 4.9a3.5 3.5 0 0 1 4.9-4.9Z\"]);\nexport const DocumentProhibited20Regular = /*#__PURE__*/createFluentIcon('DocumentProhibited20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H9.74c.26-.3.48-.64.66-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5.02c-.34.03-.68.1-1 .19V4Zm7-.8v3.3c0 .28.22.5.5.5h3.3L11 3.2ZM8.68 17.69a4.5 4.5 0 1 1-6.36-6.36 4.5 4.5 0 0 1 6.36 6.36ZM3.4 17.3a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Zm-.7-.7 4.9-4.9a3.5 3.5 0 0 0-4.9 4.9Z\"]);\nexport const DocumentProhibited24Filled = /*#__PURE__*/createFluentIcon('DocumentProhibited24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6Zm-1.5 15a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const DocumentProhibited24Regular = /*#__PURE__*/createFluentIcon('DocumentProhibited24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const DocumentPy16Filled = /*#__PURE__*/createFluentIcon('DocumentPy16Filled', \"16\", [\"M10 4.5V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5Zm-1 0c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H7.91c.06-.16.09-.32.09-.5V13l1.2-1.6c.24-.31.34-.72.28-1.11-.05-.4-.26-.75-.58-.99-.25-.19-.58-.3-.9-.3h-.15l-.07.02c-.39.05-.74.26-.98.58l-.3.4-.3-.4a1.52 1.52 0 0 0-.99-.59L5.07 9H5a1.5 1.5 0 0 0-1 .39V2.5C4 1.67 4.67 1 5.5 1H9v3.5ZM1.5 10h1a1.5 1.5 0 1 1 0 3H2v1.5a.5.5 0 1 1-1 0v-4a.5.5 0 0 1 .5-.5Zm.5 2h.5a.5.5 0 1 0 0-1H2v1Zm5 .67 1.4-1.87a.5.5 0 0 0-.1-.7.5.5 0 0 0-.7.1l-1.1 1.47-1.1-1.47a.5.5 0 1 0-.8.6L6 12.67v1.83a.5.5 0 1 0 1 0v-1.83Z\"]);\nexport const DocumentPy16Regular = /*#__PURE__*/createFluentIcon('DocumentPy16Regular', \"16\", [\"m9.65 1.44 2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H7.91c.06-.16.09-.33.09-.5V14h3a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6.39l-.07.06c-.28-.19-.6-.33-.93-.39V3c0-1.1.9-2 2-2h3.59c.39 0 .78.16 1.06.44ZM9 4.5c0 .28.22.5.5.5h2.29L9 2.21V4.5ZM1.5 10h1a1.5 1.5 0 1 1 0 3H2v1.5a.5.5 0 1 1-1 0v-4a.5.5 0 0 1 .5-.5Zm.5 2h.5a.5.5 0 1 0 0-1H2v1Zm5 .67 1.4-1.87a.5.5 0 0 0-.1-.7.5.5 0 0 0-.7.1l-1.1 1.47-1.1-1.47a.5.5 0 1 0-.8.6L6 12.67v1.83a.5.5 0 1 0 1 0v-1.83Z\"]);\nexport const DocumentQuestionMark16Filled = /*#__PURE__*/createFluentIcon('DocumentQuestionMark16Filled', \"16\", [\"M6 1h3v3.5c0 .83.67 1.5 1.5 1.5H14v7a2 2 0 0 1-2 2H8.67A5.5 5.5 0 0 0 4 5.2V3c0-1.1.9-2 2-2Zm4.5 4H14l-4-4v3.5c0 .28.22.5.5.5Zm-.5 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 0 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const DocumentQuestionMark16Regular = /*#__PURE__*/createFluentIcon('DocumentQuestionMark16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.3.38-.67.71-1.07 1H12a2 2 0 0 0 2-2V5.42c0-.4-.16-.78-.44-1.06l-2.92-2.92A1.5 1.5 0 0 0 9.58 1H6Zm4 3.5V2.21l2.8 2.8h-2.3a.5.5 0 0 1-.5-.5Zm0 6a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.5 1.88a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Zm0-4.88c1.03 0 1.85.85 1.85 1.95 0 .59-.21.91-.72 1.32l-.28.22c-.25.19-.33.3-.35.44v.16a.5.5 0 0 1-1-.09c0-.57.21-.88.72-1.29l.27-.21c.3-.23.36-.35.36-.55 0-.55-.38-.95-.85-.95-.5 0-.86.37-.85.95a.5.5 0 0 1-1 0c-.01-1.13.8-1.95 1.85-1.95Z\"]);\nexport const DocumentQuestionMark20Filled = /*#__PURE__*/createFluentIcon('DocumentQuestionMark20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM10 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.5 1.88a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Zm0-4.88c1.03 0 1.85.85 1.85 1.95 0 .59-.21.91-.72 1.32l-.28.22c-.25.19-.33.3-.35.44v.16a.5.5 0 0 1-1-.09c0-.57.21-.88.72-1.29l.27-.21c.3-.23.36-.35.36-.55 0-.55-.38-.95-.85-.95-.5 0-.86.37-.85.95a.5.5 0 1 1-1 0c-.01-1.13.8-1.95 1.85-1.95Z\"]);\nexport const DocumentQuestionMark20Regular = /*#__PURE__*/createFluentIcon('DocumentQuestionMark20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.5 1.88a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Zm0-4.88c1.03 0 1.85.85 1.85 1.95 0 .59-.21.91-.72 1.32l-.28.22c-.25.19-.33.3-.35.44v.16a.5.5 0 0 1-1-.09c0-.57.21-.88.72-1.29l.27-.21c.3-.23.36-.35.36-.55 0-.55-.38-.95-.85-.95-.5 0-.86.37-.85.95a.5.5 0 1 1-1 0c-.01-1.13.8-1.95 1.85-1.95Z\"]);\nexport const DocumentQuestionMark24Filled = /*#__PURE__*/createFluentIcon('DocumentQuestionMark24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM1 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm4.75 3.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM4.5 16a2 2 0 1 1 4 0c0 .73-.21 1.14-.75 1.7l-.27.28-.11.12c-.29.32-.37.53-.37.9a.5.5 0 0 1-1 0c0-.73.21-1.14.75-1.7l.27-.28.11-.12c.29-.32.37-.53.37-.9a1 1 0 1 0-2 0 .5.5 0 0 1-1 0Z\"]);\nexport const DocumentQuestionMark24Regular = /*#__PURE__*/createFluentIcon('DocumentQuestionMark24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM1 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm4.75 3.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM4.5 16a2 2 0 1 1 4 0c0 .73-.21 1.14-.75 1.7l-.27.28-.11.12c-.29.32-.37.53-.37.9a.5.5 0 0 1-1 0c0-.73.21-1.14.75-1.7l.27-.28.11-.12c.29-.32.37-.53.37-.9a1 1 0 1 0-2 0 .5.5 0 0 1-1 0Z\"]);\nexport const DocumentQueue20Filled = /*#__PURE__*/createFluentIcon('DocumentQueue20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v6.5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 14.5v-11C4 2.67 4.67 2 5.5 2H10ZM6.5 5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 7.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5ZM6.5 9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM11 2.25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM2.5 13c.28 0 .5.22.5.5v1A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 1 1 0v1a3.5 3.5 0 0 1-3.5 3.5h-9A3.5 3.5 0 0 1 2 14.5v-1c0-.28.22-.5.5-.5Z\"]);\nexport const DocumentQueue20Regular = /*#__PURE__*/createFluentIcon('DocumentQueue20Regular', \"20\", [\"M6.5 5a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 7.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM6.5 9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Zm3.98-7h.04c.45.01.88.2 1.2.51l3.77 3.77A1.75 1.75 0 0 1 16 7.5v6.75c0 .97-.78 1.75-1.75 1.75h-8.5C4.78 16 4 15.22 4 14.25V3.75C4 2.78 4.78 2 5.75 2h4.73ZM5 3.75v10.5c0 .41.34.75.75.75h8.5c.41 0 .75-.34.75-.75V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H5.75a.75.75 0 0 0-.75.75Zm6 2.75c0 .28.22.5.5.5h3.3l-.02-.01-3.77-3.77-.01-.01V6.5Zm-8 7a.5.5 0 0 0-1 0v1A3.5 3.5 0 0 0 5.5 18h9a3.5 3.5 0 0 0 3.5-3.5v-1a.5.5 0 0 0-1 0v1a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-1Z\"]);\nexport const DocumentQueue24Filled = /*#__PURE__*/createFluentIcon('DocumentQueue24Filled', \"24\", [\"M7 2a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V8.5h-4.75c-.97 0-1.75-.78-1.75-1.75V2H7Zm1.75 3h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1 0-1.5ZM8 8.75c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 8 8.75ZM8.75 11h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1 0-1.5ZM14 2l5 5h-4.75a.25.25 0 0 1-.25-.25V2ZM2.75 15c.41 0 .75.34.75.75v1.75a3 3 0 0 0 3 3h11a3 3 0 0 0 3-3v-1.75a.75.75 0 0 1 1.5 0v1.75a4.5 4.5 0 0 1-4.5 4.5h-11A4.5 4.5 0 0 1 2 17.5v-1.75c0-.41.34-.75.75-.75ZM12.5 2H14Z\"]);\nexport const DocumentQueue24Regular = /*#__PURE__*/createFluentIcon('DocumentQueue24Regular', \"24\", [\"M8.75 5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM8 8.75c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 8 8.75ZM8.75 11a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM5 4c0-1.1.9-2 2-2h6.23a2 2 0 0 1 1.42.59l3.76 3.76A2 2 0 0 1 19 7.77V17a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4Zm2-.5a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h10a.5.5 0 0 0 .5-.5V8.5h-3.25c-.97 0-1.75-.78-1.75-1.75V3.5H7Zm7 .56v2.69c0 .14.11.25.25.25h2.69L14 4.06ZM3.5 15.75a.75.75 0 0 0-1.5 0v1.75A4.5 4.5 0 0 0 6.5 22h11a4.5 4.5 0 0 0 4.5-4.5v-1.75a.75.75 0 0 0-1.5 0v1.75a3 3 0 0 1-3 3h-11a3 3 0 0 1-3-3v-1.75Z\"]);\nexport const DocumentQueueAdd20Filled = /*#__PURE__*/createFluentIcon('DocumentQueueAdd20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v11c0 .83.67 1.5 1.5 1.5h3.7A5.5 5.5 0 0 1 16 9.2V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4-1c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM6.5 7h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1ZM6 9.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM5.5 17h4.1c.18.36.4.7.66 1H5.5A3.5 3.5 0 0 1 2 14.5v-1a.5.5 0 0 1 1 0v1A2.5 2.5 0 0 0 5.5 17ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm8 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const DocumentQueueAdd20Regular = /*#__PURE__*/createFluentIcon('DocumentQueueAdd20Regular', \"20\", [\"M10.5 2H5.74C4.78 2 4 2.78 4 3.75v10.5c0 .97.78 1.75 1.75 1.75h3.46c-.1-.32-.16-.66-.19-1H5.75a.75.75 0 0 1-.75-.75V3.75c0-.41.34-.75.75-.75H10v3.5c0 .83.67 1.5 1.5 1.5H15v1.02c.34.03.68.1 1 .19V7.48c-.01-.45-.2-.88-.51-1.2l-3.77-3.77A1.75 1.75 0 0 0 10.5 2Zm.5 1.2.01.02 3.77 3.77.01.01H11.5a.5.5 0 0 1-.5-.5V3.2ZM5.5 17h4.1c.18.36.4.7.66 1H5.5A3.5 3.5 0 0 1 2 14.5v-1a.5.5 0 0 1 1 0v1A2.5 2.5 0 0 0 5.5 17ZM6 5.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM6.5 7a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Zm0 2a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const DocumentQueueAdd24Filled = /*#__PURE__*/createFluentIcon('DocumentQueueAdd24Filled', \"24\", [\"M5 4c0-1.1.9-2 2-2h5.5v4.75c0 .97.78 1.75 1.75 1.75H19v2.67A6.52 6.52 0 0 0 11.17 19H7a2 2 0 0 1-2-2V4Zm3 1.75c0 .41.34.75.75.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0-.75.75ZM8.75 8a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM8 11.75c0 .41.34.75.75.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0-.75.75ZM12.81 22a6.52 6.52 0 0 1-1.08-1.5H6.5a3 3 0 0 1-3-3v-1.75a.75.75 0 0 0-1.5 0v1.75A4.5 4.5 0 0 0 6.5 22h6.31ZM19 7l-5-5v4.75c0 .14.11.25.25.25H19Zm4 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18ZM12.5 2H14Z\"]);\nexport const DocumentQueueAdd24Regular = /*#__PURE__*/createFluentIcon('DocumentQueueAdd24Regular', \"24\", [\"M7 2a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2h4.17a6.52 6.52 0 0 1-.17-1.5H7a.5.5 0 0 1-.5-.5V4c0-.28.22-.5.5-.5h5.5v3.25c0 .97.78 1.75 1.75 1.75h3.25V11c.52 0 1.02.06 1.5.17v-3.4a2 2 0 0 0-.59-1.42L14.65 2.6A2 2 0 0 0 13.23 2H7Zm7 4.75V4.06L16.94 7h-2.69a.25.25 0 0 1-.25-.25ZM6.5 20.5h5.23c.29.55.65 1.06 1.08 1.5H6.5A4.5 4.5 0 0 1 2 17.5v-1.75a.75.75 0 0 1 1.5 0v1.75a3 3 0 0 0 3 3ZM8 5.75c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5A.75.75 0 0 1 8 5.75ZM8.75 8a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Zm0 3a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const DocumentQueueMultiple20Filled = /*#__PURE__*/createFluentIcon('DocumentQueueMultiple20Filled', \"20\", [\"m12.38 3.75 1.11 1.12L16 7.37v-.66c0-.46-.18-.9-.5-1.23l-2.4-2.44A3.5 3.5 0 0 0 10.6 2H5.75C4.83 2 4.07 2.72 4 3.62 4.48 3.23 5.1 3 5.75 3h4.85c.67 0 1.31.27 1.78.75ZM2.5 13c.28 0 .5.22.5.5v1A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 1 1 0v1a3.5 3.5 0 0 1-3.5 3.5h-9A3.5 3.5 0 0 1 2 14.5v-1c0-.28.22-.5.5-.5ZM10 4v4.5c0 .83.67 1.5 1.5 1.5H16v4.5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 14.5v-9C4 4.67 4.67 4 5.5 4H10ZM6 7.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5ZM6.5 9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 11.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5Zm5-7.25V8.5c0 .28.22.5.5.5h4.25L11 4.25Z\"]);\nexport const DocumentQueueMultiple20Regular = /*#__PURE__*/createFluentIcon('DocumentQueueMultiple20Regular', \"20\", [\"m12.38 3.75 1.11 1.12L16 7.37v-.66c0-.46-.18-.9-.5-1.23l-2.4-2.44A3.5 3.5 0 0 0 10.6 2H5.75C4.83 2 4.07 2.72 4 3.62 4.48 3.23 5.1 3 5.75 3h4.85c.67 0 1.31.27 1.78.75ZM2.5 13c.28 0 .5.22.5.5v1A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 1 1 0v1a3.5 3.5 0 0 1-3.5 3.5h-9A3.5 3.5 0 0 1 2 14.5v-1c0-.28.22-.5.5-.5ZM6 7.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5ZM6.5 9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2ZM6 11.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm10-2v-.02c-.01-.45-.2-.88-.51-1.2l-3.77-3.77A1.75 1.75 0 0 0 10.5 4H5.74C4.78 4 4 4.78 4 5.75v8.5c0 .97.78 1.75 1.75 1.75h8.5c.97 0 1.75-.78 1.75-1.75V9.51ZM5 5.76c0-.41.34-.75.75-.75H10v3.5c0 .83.67 1.5 1.5 1.5H15v4.25c0 .41-.34.75-.75.75h-8.5a.75.75 0 0 1-.75-.75v-8.5Zm6-.54.01.01 3.77 3.77.01.01H11.5a.5.5 0 0 1-.5-.5V5.2Z\"]);\nexport const DocumentQueueMultiple24Filled = /*#__PURE__*/createFluentIcon('DocumentQueueMultiple24Filled', \"24\", [\"M17.35 6.16a.5.5 0 0 1 .07.08L19 7.82V6.5a2 2 0 0 0-.59-1.42L16.7 3.4A4.75 4.75 0 0 0 13.35 2H7a2 2 0 0 0-2 2v.13c.57-.4 1.26-.63 2-.63h6.35c.86 0 1.68.34 2.29.95l1.71 1.7ZM2.75 15c.41 0 .75.34.75.75v1.75a3 3 0 0 0 3 3h11a3 3 0 0 0 3-3v-1.75a.75.75 0 0 1 1.5 0v1.75a4.5 4.5 0 0 1-4.5 4.5h-11A4.5 4.5 0 0 1 2 17.5v-1.75c0-.41.34-.75.75-.75ZM12.5 5v4.75c0 .97.78 1.75 1.75 1.75H19V17a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h5.5ZM8 8.75c0 .41.34.75.75.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0-.75.75ZM8.75 11a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM8 14.75c0 .41.34.75.75.75h1.5a.75.75 0 0 0 0-1.5h-1.5a.75.75 0 0 0-.75.75ZM14 5v4.75c0 .14.11.25.25.25H19l-5-5Z\"]);\nexport const DocumentQueueMultiple24Regular = /*#__PURE__*/createFluentIcon('DocumentQueueMultiple24Regular', \"24\", [\"M17.35 6.16a.5.5 0 0 1 .07.08L19 7.82V6.5a2 2 0 0 0-.59-1.42L16.7 3.4A4.75 4.75 0 0 0 13.35 2H7a2 2 0 0 0-2 2v.13c.57-.4 1.26-.63 2-.63h6.35c.86 0 1.68.34 2.29.95l1.71 1.7ZM2.75 15c.41 0 .75.34.75.75v1.75a3 3 0 0 0 3 3h11a3 3 0 0 0 3-3v-1.75a.75.75 0 0 1 1.5 0v1.75a4.5 4.5 0 0 1-4.5 4.5h-11A4.5 4.5 0 0 1 2 17.5v-1.75c0-.41.34-.75.75-.75Zm6-7a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM8 11.75c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75ZM8.75 14a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM7 5a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2v-6.23a2 2 0 0 0-.59-1.42L14.65 5.6A2 2 0 0 0 13.23 5H7Zm-.5 2c0-.28.22-.5.5-.5h5.5v3.25c0 .97.78 1.75 1.75 1.75h3.25V17a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5V7ZM14 9.75V7.06L16.94 10h-2.69a.25.25 0 0 1-.25-.25Z\"]);\nexport const DocumentRb16Filled = /*#__PURE__*/createFluentIcon('DocumentRb16Filled', \"16\", [\"M13.75 5H10.5a.5.5 0 0 1-.5-.5V1.25L13.75 5ZM9 4.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.74c.15-.2.27-.4.36-.63a2.5 2.5 0 0 0-.2-2.16 2.48 2.48 0 0 0-1.1-2.85A2.5 2.5 0 0 0 6.5 9h-1a1.49 1.49 0 0 0-1.27.7l-.19-.15L4 9.52V2.5C4 1.67 4.67 1 5.5 1H9v3.5Zm-1 7.1a1.5 1.5 0 0 1-.27.76 1.5 1.5 0 0 1-.12 2.37 1.5 1.5 0 0 1-.86.27H5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1A1.5 1.5 0 0 1 8 11.6ZM6.5 11H6v1h.5a.5.5 0 1 0 0-1ZM6 14h.75a.5.5 0 1 0 0-1H6v1Zm-2.48-1.41c.24.39.4.82.5 1.27l.02.08.06.2a.5.5 0 0 1-.35.86c-.47 0-.59-.46-.7-.9v-.01c-.1-.36-.28-1.1-.55-1.1H2v1.5a.5.5 0 1 1-1 0v-4a.5.5 0 0 1 .5-.5h1a1.5 1.5 0 0 1 1.02 2.6Zm-1.02-1.6H2v1h.5a.5.5 0 1 0 0-1Z\"]);\nexport const DocumentRb16Regular = /*#__PURE__*/createFluentIcon('DocumentRb16Regular', \"16\", [\"m9.65 1.44 2.91 2.91c.28.29.44.67.44 1.06V13a2 2 0 0 1-2 2H8.74a2.45 2.45 0 0 0 .46-1H11a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6.52l-.04-.04-.06-.04c-.27-.19-.58-.3-.9-.36V3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44ZM9 4.5c0 .28.22.5.5.5h2.3L9 2.2v2.3Zm-1 7.1a1.5 1.5 0 0 1-.27.76 1.5 1.5 0 0 1-.12 2.37 1.5 1.5 0 0 1-.86.27H5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1A1.5 1.5 0 0 1 8 11.6ZM6.5 11H6v1h.5a.5.5 0 1 0 0-1ZM6 14h.75a.5.5 0 1 0 0-1H6v1Zm-2.48-1.41c.24.39.4.82.5 1.27l.02.08.06.2a.5.5 0 0 1-.35.86c-.47 0-.59-.46-.7-.9v-.01c-.1-.36-.28-1.1-.55-1.1H2v1.5a.5.5 0 1 1-1 0v-4a.5.5 0 0 1 .5-.5h1a1.5 1.5 0 0 1 1.02 2.6Zm-1.02-1.6H2v1h.5a.5.5 0 1 0 0-1Z\"]);\nexport const DocumentRibbon16Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5H6.98l.02-.25v-3.1a4 4 0 0 0-4-6.52V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM7 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.21L4 14l1.62.96c.17.1.38-.02.38-.21v-2.29Z\"]);\nexport const DocumentRibbon16Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v2.13A4 4 0 0 1 4 5V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1H7v.75c0 .09 0 .17-.02.25H11a2 2 0 0 0 2-2V5.4c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5ZM7 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.21L4 14l1.62.96c.17.1.38-.02.38-.21v-2.29Z\"]);\nexport const DocumentRibbon20Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H8v-2.35a4 4 0 0 0-4-6.52V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM8 13a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.21L5 18l1.62.96c.17.1.38-.02.38-.21v-2.29Z\"]);\nexport const DocumentRibbon20Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.13A4 4 0 0 1 5 9V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H8v1h6a2 2 0 0 0 2-2V7.4c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM8 13a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm-1 3.46a3.98 3.98 0 0 1-4 0v2.29c0 .2.21.31.38.21L5 18l1.62.96c.17.1.38-.02.38-.21v-2.29Z\"]);\nexport const DocumentRibbon24Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2H9v-3.67a4.5 4.5 0 0 0-5-7.07V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM9 15.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-6 3.74v3.05c0 .63.76.95 1.21.5L5.5 21.5l1.29 1.3A.71.71 0 0 0 8 22.28v-3.05a4.48 4.48 0 0 1-5 0Z\"]);\nexport const DocumentRibbon24Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5H9V22h9a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.49.49 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.26A4.5 4.5 0 0 1 5.5 11V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM9 15.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-6 3.74v3.05c0 .63.76.95 1.21.5L5.5 21.5l1.29 1.3A.71.71 0 0 0 8 22.28v-3.05a4.48 4.48 0 0 1-5 0Z\"]);\nexport const DocumentRibbon28Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon28Filled', \"28\", [\"M14 2v8c0 1.1.9 2 2 2h8v11.6a2.4 2.4 0 0 1-2.4 2.4H11v-4.34a5.5 5.5 0 0 0-7-8.06V4.4A2.4 2.4 0 0 1 6.4 2H14ZM9 23.4c.36-.19.7-.4 1-.66v3.56a.7.7 0 0 1-1.13.55L6.5 25l-1.04.8-1.33 1.05A.7.7 0 0 1 3 26.3v-3.56a5.51 5.51 0 0 0 6 .66ZM6.5 23A4.48 4.48 0 0 1 2 18.5 4.5 4.5 0 1 1 6.5 23Zm9-20.52V10c0 .27.22.5.5.5h7.5c-.09-.13-.2-.25-.3-.37L15.75 2.7a2.4 2.4 0 0 0-.26-.22Z\"]);\nexport const DocumentRibbon28Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon28Regular', \"28\", [\"M6.4 2A2.4 2.4 0 0 0 4 4.4v9.2c.47-.24.97-.41 1.5-.51V4.4c0-.5.4-.9.9-.9H14V10c0 1.1.9 2 2 2h6.5v11.6c0 .5-.4.9-.9.9H11V26h10.6a2.4 2.4 0 0 0 2.4-2.4V11.58c0-.73-.29-1.43-.8-1.95L16.25 2.7a2.4 2.4 0 0 0-1.7-.7H6.4Zm15.54 8.5H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44ZM5.5 14.1A4.48 4.48 0 0 0 2 18.5a4.5 4.5 0 1 0 3.5-4.39Zm-.04 11.7L6.5 25l2.37 1.85A.7.7 0 0 0 10 26.3v-3.56a5.48 5.48 0 0 1-7 0v3.56a.7.7 0 0 0 1.13.55l1.33-1.04Z\"]);\nexport const DocumentRibbon32Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3H13.5v-5.9A7 7 0 0 0 5 13.96V5.01a3 3 0 0 1 3-3h9Zm-6.5 24.55a6.76 6.76 0 0 0 1.5-1.02v4.52a.95.95 0 0 1-1.44.81L7.5 29l-3.06 1.86A.95.95 0 0 1 3 30.05v-4.52a6.75 6.75 0 0 0 4.49 1.72h.02c1.07 0 2.09-.25 2.99-.7Zm-3-.55A5.48 5.48 0 0 1 2 20.5 5.5 5.5 0 1 1 7.5 26ZM19 2.12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12Z\"]);\nexport const DocumentRibbon32Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v8.96c.63-.24 1.3-.4 2-.44V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1H13.5v2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm16.59 8H20a1 1 0 0 1-1-1V4.41L24.59 10ZM7 15.02a5.47 5.47 0 0 0-5 5.48 5.5 5.5 0 1 0 5-5.48ZM4.44 30.86A.95.95 0 0 1 3 30.05v-4.52a6.75 6.75 0 0 0 9 0v4.52a.95.95 0 0 1-1.44.81L7.5 29l-3.06 1.86Z\"]);\nexport const DocumentRibbon48Filled = /*#__PURE__*/createFluentIcon('DocumentRibbon48Filled', \"48\", [\"M24 4v11.25A3.75 3.75 0 0 0 27.75 19H40v21a3 3 0 0 1-3 3H19v-6.67A9.5 9.5 0 0 0 8 21.66V7a3 3 0 0 1 3-3h13Zm-9 35.33a9.48 9.48 0 0 0 2-1.08v6.7c0 .86-.96 1.35-1.65.85L11.5 43l-3.85 2.8c-.69.5-1.65 0-1.65-.84v-6.71a9.48 9.48 0 0 0 9 1.08ZM11.5 38A7.47 7.47 0 0 1 4 30.5a7.5 7.5 0 1 1 7.5 7.5Zm15-33.54v10.79c0 .69.56 1.25 1.25 1.25h11.71L26.5 4.46Z\"]);\nexport const DocumentRibbon48Regular = /*#__PURE__*/createFluentIcon('DocumentRibbon48Regular', \"48\", [\"M12.25 4A4.25 4.25 0 0 0 8 8.25v13.42a9.44 9.44 0 0 1 2.5-.62V8.25c0-.97.78-1.75 1.75-1.75H24v8.75A3.75 3.75 0 0 0 27.75 19h9.75v20.75c0 .97-.78 1.75-1.75 1.75H19V44h16.75C38.1 44 40 42.1 40 39.75V18.41c0-.6-.24-1.16-.66-1.59L27.18 4.66c-.43-.42-1-.66-1.6-.66H12.26Zm23.23 12.5h-7.73c-.69 0-1.25-.56-1.25-1.25V7.52l8.98 8.98ZM10.5 23.07a7.5 7.5 0 1 0 2 14.86 7.5 7.5 0 0 0-2-14.86ZM7.65 45.8c-.69.5-1.65 0-1.65-.84v-6.71a9.48 9.48 0 0 0 11 0v6.7c0 .86-.96 1.35-1.65.85L11.5 43l-3.85 2.8Z\"]);\nexport const DocumentSass16Filled = /*#__PURE__*/createFluentIcon('DocumentSass16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v3.04c-.5.08-.93.32-1.27.65A2.5 2.5 0 0 0 10 9h-.07c-.95 0-1.76.54-2.16 1.32l-.09-.27a1.5 1.5 0 0 0-2.86 0l-.1.3A2.5 2.5 0 0 0 3 9.06V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM2.43 11a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7H2.5A1.5 1.5 0 0 1 1 13.5a.5.5 0 0 1 1 0c0 .28.22.5.5.5h.07a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.07c.83 0 1.5.67 1.5 1.5a.5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5h-.07Zm4.3-.65a.5.5 0 0 0-.96 0l-1.25 4a.5.5 0 1 0 .96.3l.2-.65h1.14l.2.65a.5.5 0 1 0 .96-.3l-1.25-4ZM6.5 13h-.52l.26-.82.26.82Zm2.99-1.57c0-.24.2-.43.43-.43H10c.28 0 .5.22.5.5a.5.5 0 0 0 1 0c0-.83-.67-1.5-1.5-1.5h-.07a1.43 1.43 0 0 0-.64 2.7l.97.5a.43.43 0 0 1-.19.8H10a.5.5 0 0 1-.5-.5.5.5 0 0 0-1 0c0 .83.67 1.5 1.5 1.5h.07a1.43 1.43 0 0 0 .64-2.7l-.97-.5a.43.43 0 0 1-.24-.37Zm3.93-.43a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7h-.07a1.5 1.5 0 0 1-1.5-1.5.5.5 0 0 1 1 0c0 .28.22.5.5.5h.07a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.07c.83 0 1.5.67 1.5 1.5a.5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5h-.07Z\"]);\nexport const DocumentSass16Regular = /*#__PURE__*/createFluentIcon('DocumentSass16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v6.05c.37.07.7.23 1 .45V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v3.46c.3-.2.63-.36 1-.42V5.4c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5Zm-9.37 6a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7H2.5A1.5 1.5 0 0 1 1 13.5a.5.5 0 0 1 1 0c0 .28.22.5.5.5h.07a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.07c.83 0 1.5.67 1.5 1.5a.5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5h-.07Zm4.3-.65a.5.5 0 0 0-.96 0l-1.25 4a.5.5 0 1 0 .96.3l.2-.65h1.14l.2.65a.5.5 0 1 0 .96-.3l-1.25-4ZM6.5 13h-.52l.26-.82.26.82Zm2.99-1.57c0-.24.2-.43.43-.43H10c.28 0 .5.22.5.5a.5.5 0 0 0 1 0c0-.83-.67-1.5-1.5-1.5h-.07a1.43 1.43 0 0 0-.64 2.7l.97.5a.43.43 0 0 1-.19.8H10a.5.5 0 0 1-.5-.5.5.5 0 0 0-1 0c0 .83.67 1.5 1.5 1.5h.07a1.43 1.43 0 0 0 .64-2.7l-.97-.5a.43.43 0 0 1-.24-.37Zm3.93-.43a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7h-.07a1.5 1.5 0 0 1-1.5-1.5.5.5 0 0 1 1 0c0 .28.22.5.5.5h.07a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.07c.83 0 1.5.67 1.5 1.5a.5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5h-.07Z\"]);\nexport const DocumentSass20Filled = /*#__PURE__*/createFluentIcon('DocumentSass20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v8a2.5 2.5 0 0 1 .98 2.22l.6-1.72a1.5 1.5 0 0 1 2.84 0L9 13.67v-.17a2.5 2.5 0 0 1 4.5-1.5 2.5 2.5 0 0 1 2.5-.95V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM2.5 13a.5.5 0 0 0-.5.5v.24c0 .27.16.53.4.65l.64.32c.59.3.96.9.96 1.55v.24a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.24a.74.74 0 0 0-.4-.65l-.64-.32c-.59-.3-.96-.9-.96-1.55v-.24a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5Zm4.97-.67a.5.5 0 0 0-.94 0l-1.75 5a.5.5 0 1 0 .94.34l.23-.67h2.1l.23.67a.5.5 0 1 0 .94-.34l-1.75-5ZM7.7 16H6.3l.7-1.99.7 1.99Zm3.3-2.5a.5.5 0 0 1 1 0 .5.5 0 0 0 1 0 1.5 1.5 0 0 0-3 0v.24c0 .65.37 1.25.96 1.55l.63.32c.25.12.41.38.41.65v.24a.5.5 0 0 1-1 0 .5.5 0 0 0-1 0 1.5 1.5 0 0 0 3 0v-.24c0-.65-.37-1.25-.96-1.55l-.63-.32a.74.74 0 0 1-.41-.65v-.24Zm4.5-.5a.5.5 0 0 0-.5.5v.24c0 .27.16.53.4.65l.64.32c.59.3.96.9.96 1.55v.24a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.24a.74.74 0 0 0-.4-.65l-.64-.32c-.59-.3-.96-.9-.96-1.55v-.24a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5Z\"]);\nexport const DocumentSass20Regular = /*#__PURE__*/createFluentIcon('DocumentSass20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06v3.64a2.51 2.51 0 0 0-1 0V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v9.4a2.5 2.5 0 0 0-1-1.9V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-9 6a.5.5 0 0 0-.5.5v.24c0 .27.16.53.4.65l.64.32c.59.3.96.9.96 1.55v.24a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.24a.74.74 0 0 0-.4-.65l-.64-.32c-.59-.3-.96-.9-.96-1.55v-.24a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5Zm4.97-.67a.5.5 0 0 0-.94 0l-1.75 5a.5.5 0 1 0 .94.34l.23-.67h2.1l.23.67a.5.5 0 1 0 .94-.34l-1.75-5ZM7.7 16H6.3l.7-1.99.7 1.99Zm3.3-2.5a.5.5 0 0 1 1 0 .5.5 0 0 0 1 0 1.5 1.5 0 0 0-3 0v.24c0 .65.37 1.25.96 1.55l.63.32c.25.12.41.38.41.65v.24a.5.5 0 0 1-1 0 .5.5 0 0 0-1 0 1.5 1.5 0 0 0 3 0v-.24c0-.65-.37-1.25-.96-1.55l-.63-.32a.74.74 0 0 1-.41-.65v-.24Zm4.5-.5a.5.5 0 0 0-.5.5v.24c0 .27.16.53.4.65l.64.32c.59.3.96.9.96 1.55v.24a1.5 1.5 0 0 1-3 0 .5.5 0 0 1 1 0 .5.5 0 0 0 1 0v-.24a.74.74 0 0 0-.4-.65l-.64-.32c-.59-.3-.96-.9-.96-1.55v-.24a1.5 1.5 0 0 1 3 0 .5.5 0 0 1-1 0 .5.5 0 0 0-.5-.5Z\"]);\nexport const DocumentSave20Filled = /*#__PURE__*/createFluentIcon('DocumentSave20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H11v-5.59a2 2 0 0 0-.59-1.41L9 9.59A2 2 0 0 0 7.59 9H4V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM2 10h1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-2.41c.1.05.2.12.3.2l1.4 1.42a1 1 0 0 1 .3.7V18a1 1 0 0 1-1 1v-4.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0-.5.5V19a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1Zm6 5v4H3v-4h5Zm-4-5h3v2H4v-2Z\"]);\nexport const DocumentSave20Regular = /*#__PURE__*/createFluentIcon('DocumentSave20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3v1h3a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM4 10h3v2H4v-2Zm-2 0h1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-2.41c.1.05.2.12.3.2l1.4 1.42a1 1 0 0 1 .3.7V18a1 1 0 0 1-1 1v-4.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0-.5.5V19a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1Zm6 5v4H3v-4h5Z\"]);\nexport const DocumentSave24Filled = /*#__PURE__*/createFluentIcon('DocumentSave24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-5.05c.03-.16.05-.33.05-.5v-6.88c0-.66-.26-1.3-.73-1.77l-1.12-1.12A2.5 2.5 0 0 0 9.38 11H4V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM5 12h3v2H5v-2Zm-2.5 0H4v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V12h.38c.4 0 .78.16 1.06.44l1.12 1.12c.28.28.44.66.44 1.06v6.88c0 .83-.67 1.5-1.5 1.5H10v-5.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0-.5.5V23h-.5A1.5 1.5 0 0 1 1 21.5v-8c0-.83.67-1.5 1.5-1.5ZM9 18v5H4v-5h5Z\"]);\nexport const DocumentSave24Regular = /*#__PURE__*/createFluentIcon('DocumentSave24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5v1c0 .17-.02.34-.05.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7h1.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM5 12h3v2H5v-2Zm-2.5 0H4v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V12h.38c.4 0 .78.16 1.06.44l1.12 1.12c.28.28.44.66.44 1.06v6.88c0 .83-.67 1.5-1.5 1.5H10v-5.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0-.5.5V23h-.5A1.5 1.5 0 0 1 1 21.5v-8c0-.83.67-1.5 1.5-1.5ZM9 18v5H4v-5h5Z\"]);\nexport const DocumentSearch16Filled = /*#__PURE__*/createFluentIcon('DocumentSearch16Filled', \"16\", [\"M8 1v3.5C8 5.33 8.67 6 9.5 6H13v7.5c0 .83-.67 1.5-1.5 1.5h-.59a1.5 1.5 0 0 0-.35-1.56l-2-2A4.5 4.5 0 0 0 3 5.26V2.5C3 1.67 3.67 1 4.5 1H8Zm1 .25V4.5c0 .28.22.5.5.5h3.25L9 1.25ZM6.6 12.3a3.5 3.5 0 1 1 .7-.7l2.55 2.55a.5.5 0 0 1-.7.7L6.6 12.3ZM7 9.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const DocumentSearch16Regular = /*#__PURE__*/createFluentIcon('DocumentSearch16Regular', \"16\", [\"M5 1a2 2 0 0 0-2 2v2.26c.32-.12.65-.2 1-.23V3a1 1 0 0 1 1-1h3v2.5C8 5.33 8.67 6 9.5 6H12v7a1 1 0 0 1-1 1h-.09c.12.32.12.68 0 1H11a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5Zm6.8 4H9.5a.5.5 0 0 1-.5-.5V2.2L11.8 5Zm-5.2 7.3a3.5 3.5 0 1 1 .7-.7l2.55 2.55a.5.5 0 0 1-.7.7L6.6 12.3ZM7 9.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const DocumentSearch20Filled = /*#__PURE__*/createFluentIcon('DocumentSearch20Filled', \"20\", [\"M5 2h5v4.5c0 .83.67 1.5 1.5 1.5H16v9a1 1 0 0 1-1 1h-1.09a1.5 1.5 0 0 0-.35-.56l-3.13-3.13A4.98 4.98 0 0 0 6 7c-.71 0-1.39.15-2 .42V3a1 1 0 0 1 1-1Zm6 0 5 5h-4.5a.5.5 0 0 1-.5-.5V2Zm-1 10c0 .92-.31 1.78-.84 2.45l3.7 3.7a.5.5 0 1 1-.72.7l-3.69-3.69A4 4 0 1 1 10 12Zm-4 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"]);\nexport const DocumentSearch20Regular = /*#__PURE__*/createFluentIcon('DocumentSearch20Regular', \"20\", [\"M10 12c0 .92-.31 1.78-.84 2.45l3.7 3.7a.5.5 0 1 1-.72.7l-3.69-3.69A4 4 0 1 1 10 12Zm-4 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM5.5 3a.5.5 0 0 0-.5.5v3.6c-.35.07-.68.18-1 .32V3.5C4 2.67 4.67 2 5.5 2h5.09c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06v9.09c0 .83-.67 1.5-1.5 1.5h-.59a1.5 1.5 0 0 0-.35-.56l-.44-.44h1.38a.5.5 0 0 0 .5-.5V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H5.5Zm5.5.2v3.3c0 .28.22.5.5.5h3.3L11 3.2Z\"]);\nexport const DocumentSearch24Filled = /*#__PURE__*/createFluentIcon('DocumentSearch24Filled', \"24\", [\"M13 8V2H7a2 2 0 0 0-2 2v5.3a6 6 0 0 1 8.2 8.18l3.54 3.53c.28.28.44.63.5.99H19a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.97 14.78a.75.75 0 1 0 1.06-1.06l-4.11-4.11a4.98 4.98 0 0 0-.35-6.61A4.98 4.98 0 0 0 3 14.5a5 5 0 0 0 7.82 4.13l4.15 4.15ZM8 11a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm6.5-3V2.5l6 6H15a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentSearch24Regular = /*#__PURE__*/createFluentIcon('DocumentSearch24Regular', \"24\", [\"M11.4 10.95a4.93 4.93 0 0 1 .55 6.32l-.14.2 4.22 4.21.07.09a.77.77 0 0 1-1.08 1.08l-.09-.08-4.25-4.25a4.93 4.93 0 1 1 .73-7.57ZM13.14 2c.6 0 1.17.24 1.59.66l2.81 2.8 2.8 2.82c.43.42.67 1 .67 1.6v9.87c0 1.24-1.01 2.25-2.25 2.25h-1.51c-.04-.3-.15-.58-.34-.83l-.12-.14-.52-.53h2.49c.41 0 .75-.34.75-.75V10h-4.25c-1.2 0-2.17-.92-2.24-2.1L13 7.76V3.5H7.25a.75.75 0 0 0-.75.75v4.42a5.9 5.9 0 0 0-1.5.58v-5C5 3.01 6 2 7.25 2h5.88Zm-7.6 10.04a3.38 3.38 0 1 0 4.79 4.78 3.38 3.38 0 0 0-4.78-4.78Zm8.97-7.48v3.2c0 .37.28.69.65.74H18.45L14.5 4.56Z\"]);\nexport const DocumentSettings16Filled = /*#__PURE__*/createFluentIcon('DocumentSettings16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM1.63 9.92a2 2 0 0 0 1.43-2.48l-.15-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52L8 7.34a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.44 2.48l.16.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.7 4.7 0 0 1 0-1.01l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const DocumentSettings16Regular = /*#__PURE__*/createFluentIcon('DocumentSettings16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM1.62 9.92a2 2 0 0 0 1.43-2.48l-.15-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52L8 7.34a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.44 2.48l.16.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.7 4.7 0 0 1 0-1.01l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const DocumentSettings20Filled = /*#__PURE__*/createFluentIcon('DocumentSettings20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 8.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25Zm-7.94 8.2a2 2 0 0 1-1.43 2.47l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 16.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 10.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55ZM5.5 14.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DocumentSettings20Regular = /*#__PURE__*/createFluentIcon('DocumentSettings20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v4.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM3.05 10.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 16.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.44-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 10.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55ZM5.5 14.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const DocumentSplitHint16Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHint16Filled', \"16\", [\"M8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v5c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5V6H9.5A1.5 1.5 0 0 1 8 4.5Zm1 0V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5Zm-5 5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm9 0a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm-9 3a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H5a1 1 0 0 1-1-1v-.5Zm9 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM7.5 14a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DocumentSplitHint16Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHint16Regular', \"16\", [\"M5 2a1 1 0 0 0-1 1v4.5a.5.5 0 0 1-1 0V3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V7.5a.5.5 0 0 1-1 0V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5Zm4 .2v2.3c0 .28.22.5.5.5h2.3L9 2.2ZM3.5 9c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm9 0c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm-9 3c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H5a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5Zm9 0c.28 0 .5.22.5.5v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5a1 1 0 0 0 1-1v-.5c0-.28.22-.5.5-.5ZM7 14.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentSplitHint20Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHint20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-6C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM5 12a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm11 0a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1ZM5 15.5a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H6a1 1 0 0 1-1-1v-.5Zm11 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM9 17a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Z\"]);\nexport const DocumentSplitHint20Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHint20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V9.5a.5.5 0 0 1-1 0V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5.5a.5.5 0 0 1-1 0V4Zm7-.8v3.3c0 .28.22.5.5.5h3.3L11 3.2Zm-6.5 8.3c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm11 0c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5ZM4.5 15c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H6a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5Zm11 0c.28 0 .5.22.5.5v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5a1 1 0 0 0 1-1v-.5c0-.28.22-.5.5-.5Zm-7 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentSplitHint24Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHint24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v7.5c0 .28.22.5.5.5h15a.5.5 0 0 0 .5-.5V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm-8 5.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5ZM19.25 13c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75Zm-9 7.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm-5.5-2c.41 0 .75.34.75.75V20c0 .28.22.5.5.5h1.25a.75.75 0 0 1 0 1.5H6a2 2 0 0 1-2-2v-.75c0-.41.34-.75.75-.75Zm13.75.75a.75.75 0 0 1 1.5 0V20a2 2 0 0 1-2 2h-1.25a.75.75 0 0 1 0-1.5H18a.5.5 0 0 0 .5-.5v-.75Z\"]);\nexport const DocumentSplitHint24Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHint24Regular', \"24\", [\"M20 11.25a.75.75 0 0 1-1.5 0V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v7.25a.75.75 0 0 1-1.5 0V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.75v1.5Zm-6.5-6.63V8c0 .28.22.5.5.5h3.38L13.5 4.62ZM4.75 13c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75Zm15.25.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Zm-10.5 7.5c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm-4-2a.75.75 0 0 0-1.5 0V20c0 1.1.9 2 2 2h1.25a.75.75 0 0 0 0-1.5H6a.5.5 0 0 1-.5-.5v-.75Zm13.75-.75a.75.75 0 0 0-.75.75V20a.5.5 0 0 1-.5.5h-1.25a.75.75 0 0 0 0 1.5H18a2 2 0 0 0 2-2v-.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const DocumentSplitHintOff16Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff16Filled', \"16\", [\"M3 3.7v3.8c0 .28.22.5.5.5h3.8l4.7 4.7v.3a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 1.9-1.39l1.25 1.24a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L3 3.71Zm9 6.18.9.9a.5.5 0 0 0 .1-.28v-1a.5.5 0 0 0-1 0v.38Zm-8.5-8.5L10.12 8h2.38a.5.5 0 0 0 .5-.5V6H9.5A1.5 1.5 0 0 1 8 4.5V1H4.5c-.38 0-.73.14-1 .38ZM9 4.5V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5Zm-5 5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm0 3a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H5a1 1 0 0 1-1-1v-.5ZM7.5 14a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DocumentSplitHintOff16Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff16Regular', \"16\", [\"M3 3.7v3.8a.5.5 0 0 0 1 0V4.7l8 8v.3a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 1.9-1.39l1.25 1.24a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L3 3.71Zm9 6.18.9.9a.5.5 0 0 0 .1-.28v-1a.5.5 0 0 0-1 0v.38ZM3.65 1.53l.7.7A1 1 0 0 1 5 2h3v2.5C8 5.33 8.67 6 9.5 6H12v1.5a.5.5 0 0 0 1 0V5.41c0-.4-.16-.78-.44-1.06L9.65 1.44A1.5 1.5 0 0 0 8.59 1H5a2 2 0 0 0-1.35.53ZM9 2.2 11.8 5H9.5a.5.5 0 0 1-.5-.5V2.2ZM3.5 9c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm0 3c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H5a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5ZM7 14.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentSplitHintOff20Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff20Filled', \"20\", [\"M4 4.7v4.8c0 .28.22.5.5.5h4.8l5.7 5.7v.3a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 1.9-1.39l1.25 1.24a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7L4 4.71Zm11 8.18.6.6A.5.5 0 0 0 16 13v-1a.5.5 0 0 0-1 0v.88ZM4.5 2.38 12.12 10h3.38a.5.5 0 0 0 .5-.5V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5c-.38 0-.73.14-1 .38Zm6.5-.13V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM5 12a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm0 3.5a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H6a1 1 0 0 1-1-1v-.5Zm6 1.5H9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1Z\"]);\nexport const DocumentSplitHintOff20Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff20Regular', \"20\", [\"M4 4.7v4.8a.5.5 0 0 0 1 0V5.7l10 10v.3a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 1.9-1.39l1.25 1.24a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7L4 4.71Zm11 8.18.6.6A.5.5 0 0 0 16 13v-1a.5.5 0 0 0-1 0v.88ZM4.65 2.53l.7.7A1 1 0 0 1 6 3h4v3.5c0 .83.67 1.5 1.5 1.5H15v1.5a.5.5 0 0 0 1 0V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-1.35.53ZM11 3.2 14.8 7h-3.3a.5.5 0 0 1-.5-.5V3.2ZM4.5 11.5c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm0 3.5c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h.5a.5.5 0 0 1 0 1H6a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5ZM9 18a.5.5 0 0 1 0-1h2a.5.5 0 0 1 0 1H9Z\"]);\nexport const DocumentSplitHintOff24Filled = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 0 0-1.06 1.06L4 5.06v6.44c0 .28.22.5.5.5h6.44l7.56 7.56V20a.5.5 0 0 1-.5.5h-1.25a.75.75 0 1 0 0 1.5H18a2 2 0 0 0 1.8-1.14l.92.92a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm15.22 13.1 1.36 1.36a.75.75 0 0 0 .14-.44v-2.49a.75.75 0 0 0-1.5 0v1.57Zm-5.79-5.79L15.18 12h4.32a.5.5 0 0 0 .5-.5V10h-6a2 2 0 0 1-1.29-.47ZM12 8c0 .5.18.94.47 1.29L5.31 2.12A2 2 0 0 1 6 2h6v6Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5Zm-8 5.75a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5Zm4.75 6.75a.75.75 0 1 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm-5.5-2c.41 0 .75.34.75.75V20c0 .28.22.5.5.5h1.25a.75.75 0 0 1 0 1.5H6a2 2 0 0 1-2-2v-.75c0-.41.34-.75.75-.75Z\"]);\nexport const DocumentSplitHintOff24Regular = /*#__PURE__*/createFluentIcon('DocumentSplitHintOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 0 0-1.06 1.06L4 5.06v6.19a.75.75 0 0 0 1.5 0V6.56l13 13V20a.5.5 0 0 1-.5.5h-1.25a.75.75 0 1 0 0 1.5H18a2 2 0 0 0 1.8-1.14l.92.92a.75.75 0 0 0 1.06-1.06l-1.99-1.99a.8.8 0 0 0-.02-.02L3.28 2.22ZM12 8c0 .5.18.94.47 1.3l.24.23A2 2 0 0 0 14 10h4.5v1.25a.75.75 0 0 0 1.5 0v-1.5l-.01-.12a2 2 0 0 0-.58-1.22L13.6 2.6l-.05-.04-.04-.03a2.07 2.07 0 0 0-.3-.23l-.05-.02-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-.7.12L6.69 3.5H12V8Zm1.5-3.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62Zm5 10.7 1.36 1.36a.75.75 0 0 0 .14-.44v-2.49a.75.75 0 0 0-1.5 0v1.57ZM4.75 13c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75Zm5.5 7.5a.75.75 0 1 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm-5.5-2c.41 0 .75.34.75.75V20c0 .28.22.5.5.5h1.25a.75.75 0 0 1 0 1.5H6a2 2 0 0 1-2-2v-.75c0-.41.34-.75.75-.75Z\"]);\nexport const DocumentSync16Filled = /*#__PURE__*/createFluentIcon('DocumentSync16Filled', \"16\", [\"M9 1v3.5c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.66A5.5 5.5 0 0 0 4 5.2V2.5C4 1.67 4.67 1 5.5 1H9Zm1 .25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM5.5 15a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9ZM7 8v.15a3 3 0 0 0-3.62.48.5.5 0 0 0 .7.7A2 2 0 0 1 6.48 9H6a.5.5 0 0 0 0 1h1.5a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-1 0Zm-1.55 5.25a3 3 0 0 0 2.17-.88.5.5 0 1 0-.7-.7 2 2 0 0 1-2.39.33H5a.5.5 0 0 0 0-1H3.5a.5.5 0 0 0-.5.5V13a.5.5 0 0 0 1 0v-.15a3.02 3.02 0 0 0 1.45.4Z\"]);\nexport const DocumentSync16Regular = /*#__PURE__*/createFluentIcon('DocumentSync16Regular', \"16\", [\"M6 1a2 2 0 0 0-2 2v2.2c.32-.08.66-.15 1-.18V3a1 1 0 0 1 1-1h3v2.5c0 .83.67 1.5 1.5 1.5H13v7a1 1 0 0 1-1 1H9.74c-.31.38-.67.72-1.08 1H12a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06l-2.91-2.91A1.5 1.5 0 0 0 9.59 1H6Zm6.8 4h-2.3a.5.5 0 0 1-.5-.5V2.2L12.8 5ZM5.5 15a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9ZM7 8v.15a3 3 0 0 0-3.62.48.5.5 0 0 0 .7.7A2 2 0 0 1 6.48 9H6a.5.5 0 0 0 0 1h1.5a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-1 0Zm-1.55 5.25a3 3 0 0 0 2.17-.88.5.5 0 1 0-.7-.7 2 2 0 0 1-2.39.33H5a.5.5 0 0 0 0-1H3.5a.5.5 0 0 0-.5.5V13a.5.5 0 0 0 1 0v-.15a3.02 3.02 0 0 0 1.45.4Z\"]);\nexport const DocumentSync20Filled = /*#__PURE__*/createFluentIcon('DocumentSync20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.74A5.5 5.5 0 0 0 4 9.2V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H6a.5.5 0 0 1 0-1h.47a1.99 1.99 0 0 0-2.38.34.5.5 0 0 1-.71-.71A3 3 0 0 1 7 12.15V12c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 4 16.85V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.47a1.99 1.99 0 0 0 2.38-.34.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const DocumentSync20Regular = /*#__PURE__*/createFluentIcon('DocumentSync20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v5.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H6a.5.5 0 0 1 0-1h.47a1.99 1.99 0 0 0-2.38.34.5.5 0 0 1-.71-.71A3 3 0 0 1 7 12.15V12c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 4 16.85V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.47a1.99 1.99 0 0 0 2.38-.34.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const DocumentSync24Filled = /*#__PURE__*/createFluentIcon('DocumentSync24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-6.81A6.5 6.5 0 0 0 4 11.5V4c0-1.1.9-2 2-2h6Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM1 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0ZM9.5 14c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.04.5.5 0 1 1-.8-.59 3.5 3.5 0 0 1 5.33-.4v-.55c0-.28.22-.5.5-.5ZM4 19.95v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 0 1 .77.65 3.5 3.5 0 0 1-5.18.19Z\"]);\nexport const DocumentSync24Regular = /*#__PURE__*/createFluentIcon('DocumentSync24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM1 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0ZM9.5 14c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h1a2.5 2.5 0 0 0-4.03.04.5.5 0 1 1-.8-.59 3.5 3.5 0 0 1 5.33-.4v-.55c0-.28.22-.5.5-.5ZM4 19.95v.55a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-1a2.5 2.5 0 0 0 3.91.11.5.5 0 0 1 .77.65 3.5 3.5 0 0 1-5.18.19Z\"]);\nexport const DocumentSync32Filled = /*#__PURE__*/createFluentIcon('DocumentSync32Filled', \"32\", [\"M17 2v7a3 3 0 0 0 3 3h7v15a3 3 0 0 1-3 3h-8.84A9 9 0 0 0 5 15.2V5a3 3 0 0 1 3-3h9Zm2 .12V9a1 1 0 0 0 1 1h6.88a3 3 0 0 0-.76-1.3L20.3 2.89A3 3 0 0 0 19 2.12ZM17 23a7.5 7.5 0 1 0-15 0 7.5 7.5 0 0 0 15 0Zm-2.75 0h-3a.75.75 0 0 1 0-1.5h.85a3 3 0 0 0-4.4-.9.76.76 0 0 1-.8.1c-.48-.24-.63-.88-.2-1.23a4.48 4.48 0 0 1 6.8 1.47v-1.19a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75Zm-2.17 2.58c.33.33.33.88-.06 1.15a4.48 4.48 0 0 1-6.52-1.67v1.19a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75h3a.75.75 0 0 1 0 1.5H6.9a3 3 0 0 0 4.22 1.02c.3-.19.7-.2.96.06Z\"]);\nexport const DocumentSync32Regular = /*#__PURE__*/createFluentIcon('DocumentSync32Regular', \"32\", [\"M8 2a3 3 0 0 0-3 3v10.2c.62-.36 1.3-.64 2-.85V5a1 1 0 0 1 1-1h9v5a3 3 0 0 0 3 3h5v15a1 1 0 0 1-1 1h-7.02a9.05 9.05 0 0 1-1.82 2H24a3 3 0 0 0 3-3V10.83a3 3 0 0 0-.88-2.12L20.3 2.88A3 3 0 0 0 18.17 2H8Zm16.59 8H20a1 1 0 0 1-1-1V4.41L24.59 10ZM17 23a7.5 7.5 0 1 0-15 0 7.5 7.5 0 0 0 15 0Zm-2.75 0h-3a.75.75 0 0 1 0-1.5h.85a3 3 0 0 0-4.4-.9.76.76 0 0 1-.8.1c-.48-.24-.63-.88-.2-1.23a4.48 4.48 0 0 1 6.8 1.47v-1.19a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75Zm-2.17 2.58c.33.33.33.88-.06 1.15a4.48 4.48 0 0 1-6.52-1.67v1.19a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75h3a.75.75 0 0 1 0 1.5H6.9a3 3 0 0 0 4.22 1.02c.3-.19.7-.2.96.06Z\"]);\nexport const DocumentTable16Filled = /*#__PURE__*/createFluentIcon('DocumentTable16Filled', \"16\", [\"M6 9.25c0-.14.11-.25.25-.25H7v1H6v-.75ZM6 11h1v1h-.75a.25.25 0 0 1-.25-.25V11Zm4 .75V11H8v1h1.75c.14 0 .25-.11.25-.25ZM8 9v1h2v-.75A.25.25 0 0 0 9.75 9H8Zm0-4.5V1H4.5C3.67 1 3 1.67 3 2.5v11c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5V6H9.5A1.5 1.5 0 0 1 8 4.5ZM5 9.25C5 8.56 5.56 8 6.25 8h3.5c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25h-3.5C5.56 13 5 12.44 5 11.75v-2.5ZM9 4.5V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentTable16Regular = /*#__PURE__*/createFluentIcon('DocumentTable16Regular', \"16\", [\"M5 9.25v2.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-2.5C11 8.56 10.44 8 9.75 8h-3.5C5.56 8 5 8.56 5 9.25Zm1 0c0-.14.11-.25.25-.25H7v1H6v-.75Zm4 .75H8V9h1.75c.14 0 .25.11.25.25V10Zm-2 1h2v.75c0 .14-.11.25-.25.25H8v-1Zm-1 0v1h-.75a.25.25 0 0 1-.25-.25V11h1ZM3 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5Zm4.5 3h2.3L9 2.2v2.3c0 .28.22.5.5.5Z\"]);\nexport const DocumentTable20Filled = /*#__PURE__*/createFluentIcon('DocumentTable20Filled', \"20\", [\"M9 15v-2h4v1.5a.5.5 0 0 1-.5.5H9Zm4-4.5V12H9v-2h3.5c.28 0 .5.22.5.5ZM7 13h1v2h-.5a.5.5 0 0 1-.5-.5V13Zm1-1v-2h-.5a.5.5 0 0 0-.5.5V12h1Zm2-5.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4 4C6 9.67 6.67 9 7.5 9h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 6 14.5v-4Zm5-4V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentTable20Regular = /*#__PURE__*/createFluentIcon('DocumentTable20Regular', \"20\", [\"M6 10.5C6 9.67 6.67 9 7.5 9h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 6 14.5v-4ZM8 15v-2H7v1.5c0 .28.22.5.5.5H8Zm1-3h4v-1.5a.5.5 0 0 0-.5-.5H9v2Zm0 3h3.5a.5.5 0 0 0 .5-.5V13H9v2Zm-1.5-5a.5.5 0 0 0-.5.5V12h1v-2h-.5ZM6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6ZM5 4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4Zm9.8 3h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Z\"]);\nexport const DocumentTable24Filled = /*#__PURE__*/createFluentIcon('DocumentTable24Filled', \"24\", [\"M8.5 13.25c0-.14.11-.25.25-.25H10v1.5H8.5v-1.25Zm0 2.75H10v1.5H8.75a.25.25 0 0 1-.25-.25V16Zm7 1.25V16h-4v1.5h3.75c.14 0 .25-.11.25-.25Zm-4-4.25v1.5h4v-1.25a.25.25 0 0 0-.25-.25H11.5Zm.5-5V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-3.25 3.5h6.5c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-6.5C7.78 19 7 18.22 7 17.25v-4c0-.97.78-1.75 1.75-1.75ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentTable24Regular = /*#__PURE__*/createFluentIcon('DocumentTable24Regular', \"24\", [\"M8.75 11.5h6.5c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-6.5C7.78 19 7 18.22 7 17.25v-4c0-.97.78-1.75 1.75-1.75Zm-.25 1.75v1.25H10V13H8.75a.25.25 0 0 0-.25.25Zm0 2.75v1.25c0 .14.11.25.25.25H10V16H8.5Zm3 0v1.5h3.75c.14 0 .25-.11.25-.25V16h-4Zm4-1.5v-1.25a.25.25 0 0 0-.25-.25H11.5v1.5h4ZM13.59 2.59a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6ZM18 20.5H6a.5.5 0 0 1-.5-.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5Zm-.62-12H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Z\"]);\nexport const DocumentTableArrowRight20Filled = /*#__PURE__*/createFluentIcon('DocumentTableArrowRight20Filled', \"20\", [\"M9 10.26A5.52 5.52 0 0 1 10.4 12H13v-1.5a.5.5 0 0 0-.5-.5H9v.26ZM13 13h-2.2a5.5 5.5 0 0 1 .18 2h1.52a.5.5 0 0 0 .5-.5V13ZM5.5 9c.46 0 .9.06 1.32.16.2-.1.44-.16.68-.16h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-1.7a5.49 5.49 0 0 1-1.06 2h4.76c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.7c.48-.13.98-.2 1.5-.2ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm-1 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DocumentTableArrowRight20Regular = /*#__PURE__*/createFluentIcon('DocumentTableArrowRight20Regular', \"20\", [\"M7.5 9c-.24 0-.47.06-.68.16.82.2 1.56.58 2.18 1.1V10h3.5c.28 0 .5.22.5.5V12h-2.6c.16.32.3.65.4 1H13v1.5a.5.5 0 0 1-.5.5h-1.52c-.03.34-.1.68-.19 1h1.71c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5ZM4 9.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-2 2v5.2ZM14.8 7h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const DocumentTableArrowRight24Filled = /*#__PURE__*/createFluentIcon('DocumentTableArrowRight24Filled', \"24\", [\"M15.5 17.25V16h-2.67c.11.48.17.98.17 1.5h2.25c.14 0 .25-.11.25-.25Zm0-2.75h-3.23c-.22-.41-.48-.8-.77-1.15V13h3.75c.14 0 .25.11.25.25v1.25Zm-9-3.5c.89 0 1.73.18 2.5.5h6.25c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-2.42a6.49 6.49 0 0 1-1.64 3H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2V2H6a2 2 0 0 0-2 2v7.5c.77-.32 1.61-.5 2.5-.5Zm7-3V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L8.29 17H3.5Z\"]);\nexport const DocumentTableArrowRight24Regular = /*#__PURE__*/createFluentIcon('DocumentTableArrowRight24Regular', \"24\", [\"M18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v7.08c-.52.08-1.03.22-1.5.42V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-6.81c.43-.44.8-.95 1.08-1.5H18Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38Zm-4.38 9c0 .52-.06 1.02-.17 1.5h2.42c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75H9c.98.4 1.83 1.05 2.5 1.85V13h3.75c.14 0 .25.11.25.25v1.25h-3.23c.24.47.43.97.56 1.5h2.67v1.25c0 .14-.11.25-.25.25H13Zm-1 0a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L8.29 17H3.5Z\"]);\nexport const DocumentTableCheckmark20Filled = /*#__PURE__*/createFluentIcon('DocumentTableCheckmark20Filled', \"20\", [\"M9 10.26A5.52 5.52 0 0 1 10.4 12H13v-1.5a.5.5 0 0 0-.5-.5H9v.26ZM13 13h-2.2a5.5 5.5 0 0 1 .18 2h1.52a.5.5 0 0 0 .5-.5V13ZM5.5 9c.46 0 .9.06 1.32.16.2-.1.44-.16.68-.16h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-1.7a5.49 5.49 0 0 1-1.06 2h4.76c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.7c.48-.13.98-.2 1.5-.2ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Zm-1 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentTableCheckmark20Regular = /*#__PURE__*/createFluentIcon('DocumentTableCheckmark20Regular', \"20\", [\"M7.5 9c-.24 0-.47.06-.68.16.82.2 1.56.58 2.18 1.1V10h3.5c.28 0 .5.22.5.5V12h-2.6c.16.32.3.65.4 1H13v1.5a.5.5 0 0 1-.5.5h-1.52c-.03.34-.1.68-.19 1h1.71c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5ZM4 9.2c.32-.08.66-.15 1-.18V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-3.6c-.18.36-.4.7-.66 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-2 2v5.2ZM14.8 7h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentTableCheckmark24Filled = /*#__PURE__*/createFluentIcon('DocumentTableCheckmark24Filled', \"24\", [\"M15.5 17.25V16h-2.67c.11.48.17.98.17 1.5h2.25c.14 0 .25-.11.25-.25Zm0-2.75h-3.23c-.22-.41-.48-.8-.77-1.15V13h3.75c.14 0 .25.11.25.25v1.25Zm-9-3.5c.89 0 1.73.18 2.5.5h6.25c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-2.42a6.49 6.49 0 0 1-1.64 3H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2V2H6a2 2 0 0 0-2 2v7.5c.77-.32 1.61-.5 2.5-.5Zm7-3V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L5.5 18.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentTableCheckmark24Regular = /*#__PURE__*/createFluentIcon('DocumentTableCheckmark24Regular', \"24\", [\"M18 20.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5Zm-.62-12H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Zm-4.38 9c0 .52-.06 1.02-.17 1.5h2.42c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75H9c.98.4 1.83 1.05 2.5 1.85V13h3.75c.14 0 .25.11.25.25v1.25h-3.23c.24.47.43.97.56 1.5h2.67v1.25c0 .14-.11.25-.25.25H13Zm-1 0a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0L5.5 18.79l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const DocumentTableCube20Filled = /*#__PURE__*/createFluentIcon('DocumentTableCube20Filled', \"20\", [\"M9.86 12A2 2 0 0 0 9 11v-1h3.5c.28 0 .5.22.5.5V12H9.86ZM13 13v1.5a.5.5 0 0 1-.5.5H10v-2h3ZM6.27 9.64l-.38-.2a2 2 0 0 0-1.79 0L4 9.5v-6C4 2.67 4.67 2 5.5 2H10v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H9.32a2 2 0 0 0 .68-1.5V16h2.5c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5c-.5 0-.96.25-1.23.64ZM11 2.25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM1.03 16.51v-3.77a1 1 0 0 1 .55-.9l3-1.5a1 1 0 0 1 .9 0l3 1.5a1 1 0 0 1 .55.9v3.77a1 1 0 0 1-.55.9l-3 1.5a1 1 0 0 1-.9 0l-3-1.5a1 1 0 0 1-.55-.9Zm1.04-3.58a.5.5 0 0 0 .27.66l2.2.92v2.62a.5.5 0 1 0 1 0V14.5l2.19-.92a.5.5 0 1 0-.4-.93l-2.3.98-2.3-.98a.5.5 0 0 0-.66.27Z\"]);\nexport const DocumentTableCube20Regular = /*#__PURE__*/createFluentIcon('DocumentTableCube20Regular', \"20\", [\"M7.5 9c-.5 0-.96.25-1.23.64l.93.46a.5.5 0 0 1 .3-.1H8v.5l.9.45.1.05v-1h3.5c.28 0 .5.22.5.5V12H9.86a2 2 0 0 1 .14.74V13h3v1.5a.5.5 0 0 1-.5.5H10v1h2.5c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5Zm-3.4.45a2 2 0 0 1 .9-.21V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H9.94a2 2 0 0 1-.62 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.58 2H6a2 2 0 0 0-2 2v5.5l.1-.05ZM14.8 7h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM1.02 16.5v-3.76a1 1 0 0 1 .55-.9l3-1.5a1 1 0 0 1 .9 0l3 1.5a1 1 0 0 1 .55.9v3.77a1 1 0 0 1-.55.9l-3 1.5a1 1 0 0 1-.9 0l-3-1.5a1 1 0 0 1-.55-.9Zm1.04-3.57a.5.5 0 0 0 .27.66l2.2.92v2.62a.5.5 0 1 0 1 0V14.5l2.19-.92a.5.5 0 1 0-.4-.93l-2.3.98-2.3-.98a.5.5 0 0 0-.66.27Z\"]);\nexport const DocumentTableCube24Filled = /*#__PURE__*/createFluentIcon('DocumentTableCube24Filled', \"24\", [\"M11.72 14.5a2.5 2.5 0 0 0-.22-.37V13h3.75c.14 0 .25.11.25.25v1.25h-3.78Zm.26 3V16h3.52v1.25c0 .14-.11.25-.25.25h-3.27Zm0 1.5h3.27c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75h-6.5c-.42 0-.8.15-1.1.4l-.55-.28a2.5 2.5 0 0 0-2.24 0l-.86.43V4c0-1.1.9-2 2-2h6v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-7.43l.03-.02a2.5 2.5 0 0 0 1.38-2.23V19ZM13.5 2.5V8c0 .28.22.5.5.5h5.5l-6-6ZM.98 15.6v4.15c0 .57.32 1.09.83 1.34l3.5 1.75c.42.21.92.21 1.34 0l3.5-1.75c.5-.25.83-.77.83-1.34V15.6a1.5 1.5 0 0 0-.83-1.34l-3.5-1.75a1.5 1.5 0 0 0-1.34 0l-3.5 1.75c-.5.26-.83.77-.83 1.34Zm1.78.77a.5.5 0 1 1 .44-.9l2.78 1.4 2.78-1.4a.5.5 0 1 1 .44.9l-2.72 1.36v2.95a.5.5 0 0 1-1 0v-2.95l-2.72-1.36Z\"]);\nexport const DocumentTableCube24Regular = /*#__PURE__*/createFluentIcon('DocumentTableCube24Regular', \"24\", [\"M17 13.25c0-.97-.78-1.75-1.75-1.75h-6.5c-.42 0-.8.15-1.1.4L9.86 13H10v.07l.6.3c.36.18.67.44.9.76V13h3.75c.14 0 .25.11.25.25v1.25h-3.78c.17.34.26.71.26 1.1v.4h3.52v1.25c0 .14-.11.25-.25.25h-3.27V19h3.27c.97 0 1.75-.78 1.75-1.75v-4Zm-5.13 7.25H18a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v7.4a2.5 2.5 0 0 0-.64.22l-.86.43V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-7.43l.03-.02a2.5 2.5 0 0 0 1.27-1.48ZM14 8.5h3.38L13.5 4.62V8c0 .28.22.5.5.5ZM.98 19.75V15.6c0-.57.32-1.08.83-1.34l3.5-1.75a1.5 1.5 0 0 1 1.34 0l3.5 1.75c.5.26.83.77.83 1.34v4.15a1.5 1.5 0 0 1-.83 1.34l-3.5 1.75a1.5 1.5 0 0 1-1.34 0l-3.5-1.75a1.5 1.5 0 0 1-.83-1.34Zm1.55-4.05a.5.5 0 0 0 .23.67l2.72 1.36v2.95a.5.5 0 0 0 1 0v-2.95l2.72-1.36a.5.5 0 1 0-.44-.9l-2.78 1.4-2.78-1.4a.5.5 0 0 0-.67.23Z\"]);\nexport const DocumentTableSearch20Filled = /*#__PURE__*/createFluentIcon('DocumentTableSearch20Filled', \"20\", [\"M9 15h3.5a.5.5 0 0 0 .5-.5V13H9v2Zm.12 1 1.44 1.44c.16.16.28.36.35.56h3.59c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.53a4.55 4.55 0 0 1 2.44.4A1.5 1.5 0 0 1 7.5 9h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5H9.12ZM13 12v-1.5a.5.5 0 0 0-.5-.5H9v2h4Zm-2-9.75V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM7.3 15.6a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6ZM7 13.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"]);\nexport const DocumentTableSearch20Regular = /*#__PURE__*/createFluentIcon('DocumentTableSearch20Regular', \"20\", [\"M6.44 9.44A1.5 1.5 0 0 1 7.5 9h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5H9.12l-.56-.56c.28-.59.44-1.25.44-1.94V15h3.5a.5.5 0 0 0 .5-.5V13H9v.5c0-1.07-.37-2.06-1-2.83V10h-.5a.5.5 0 0 0-.15.02 4.5 4.5 0 0 0-.91-.58ZM13 10.5a.5.5 0 0 0-.5-.5H9v2h4v-1.5ZM5 9.03a4.55 4.55 0 0 0-1 0V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-3.09a1.5 1.5 0 0 0-.35-.56l-.44-.44H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v5.03ZM11.5 7h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-4.2 8.6a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6ZM7 13.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z\"]);\nexport const DocumentTableSearch24Filled = /*#__PURE__*/createFluentIcon('DocumentTableSearch24Filled', \"24\", [\"M10.47 19.5h4.78c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75h-6.5c-.24 0-.47.05-.68.14A5.48 5.48 0 0 0 4 11.7V4.5c0-1.1.9-2 2-2h6v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-5.02c-.05-.36-.21-.7-.5-.99l-2-2.01Zm5.03-3v1.25c0 .14-.11.25-.25.25H11.5v-1.5h4Zm-4-1.5v-1.5h3.75c.14 0 .25.11.25.25V15h-4Zm2-12v5.5c0 .28.22.5.5.5h5.5l-6-6ZM9.17 19.6a4.5 4.5 0 1 0-1.06 1.06l2.61 2.62a.75.75 0 1 0 1.06-1.06l-2.61-2.61ZM8.5 17a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"]);\nexport const DocumentTableSearch24Regular = /*#__PURE__*/createFluentIcon('DocumentTableSearch24Regular', \"24\", [\"M15.25 12c.97 0 1.75.78 1.75 1.75v4c0 .97-.78 1.75-1.75 1.75h-4.78l-.04-.05a5.48 5.48 0 0 0-.43-5.61v-.34h-.26a5.52 5.52 0 0 0-1.67-1.36c.21-.1.44-.14.68-.14h6.5Zm-3.75 4.5V18h3.75c.14 0 .25-.11.25-.25V16.5h-4Zm4-1.5v-1.25a.25.25 0 0 0-.25-.25H11.5V15h4Zm2.5 6h-6.03l.52.51c.28.28.44.63.5.99H18a2 2 0 0 0 2-2V10.33a2 2 0 0 0-.59-1.42L13.6 3.1a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.2c.48-.13.98-.2 1.5-.2v-7c0-.28.22-.5.5-.5h6v4.5c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5Zm-.62-12H14a.5.5 0 0 1-.5-.5V5.12L17.38 9ZM5.5 21.5c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61a4.5 4.5 0 1 0-3.67 1.9Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const DocumentTableTruck20Filled = /*#__PURE__*/createFluentIcon('DocumentTableTruck20Filled', \"20\", [\"m7.87 11.43.13.05V10h-.5a.5.5 0 0 0-.48.35c.39.26.7.64.85 1.08ZM13 13H9.32l.47.93a2 2 0 0 1 .21.9V15h2.5a.5.5 0 0 0 .5-.5V13Zm-7.17-3 .25.01A1.5 1.5 0 0 1 7.5 9h5c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5H10v1a2 2 0 0 1-.27 1h4.77c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5V2H5.5C4.67 2 4 2.67 4 3.5V10h1.83Zm7.17.5V12H9v-2h3.5c.28 0 .5.22.5.5Zm-2-4V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM2.17 11C1.52 11 1 11.52 1 12.17v4.66c0 .48.28.88.69 1.07a1.33 1.33 0 0 0 2.6.1h.75a1.33 1.33 0 0 0 2.58 0H8a1 1 0 0 0 1-1v-2.18a1 1 0 0 0-.1-.44l-.75-1.5a1 1 0 0 0-.9-.55H7v-.16C7 11.52 6.48 11 5.83 11H2.17ZM7 14.33V13h.25c.13 0 .25.07.3.18l.58 1.15H7Zm-4.67 3.34a.67.67 0 1 1 1.34 0 .67.67 0 0 1-1.34 0Zm4 .66a.67.67 0 1 1 0-1.33.67.67 0 0 1 0 1.33Z\"]);\nexport const DocumentTableTruck20Regular = /*#__PURE__*/createFluentIcon('DocumentTableTruck20Regular', \"20\", [\"M7.5 9a1.5 1.5 0 0 0-1.42 1.01c.35.04.67.16.94.34A.5.5 0 0 1 7.5 10H8v1.48a2 2 0 0 1 1.04.96l.28.56H13v1.5a.5.5 0 0 1-.5.5H10v1h2.5c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5Zm5.5 3H9v-2h3.5c.28 0 .5.22.5.5V12Zm-9-2h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-4a2 2 0 0 1-.27 1H14a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6a2 2 0 0 0-2 2v6Zm10.8-3h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM2.16 11C1.52 11 1 11.52 1 12.17v4.66c0 .48.28.88.69 1.07a1.33 1.33 0 0 0 2.6.1h.75a1.33 1.33 0 0 0 2.58 0H8a1 1 0 0 0 1-1v-2.18a1 1 0 0 0-.1-.44l-.75-1.5a1 1 0 0 0-.9-.55H7v-.16C7 11.52 6.48 11 5.83 11H2.17ZM7 14.33V13h.25c.13 0 .25.07.3.18l.58 1.15H7Zm-4.67 3.34a.67.67 0 1 1 1.34 0 .67.67 0 0 1-1.34 0Zm4 .66a.67.67 0 1 1 0-1.33.67.67 0 0 1 0 1.33Z\"]);\nexport const DocumentTableTruck24Filled = /*#__PURE__*/createFluentIcon('DocumentTableTruck24Filled', \"24\", [\"M15.11 17.25V16h-2.46l.1.2c.16.33.25.69.25 1.06v.24h1.86c.14 0 .25-.11.25-.25Zm0-2.75h-3.2l-.19-.35c-.15-.3-.36-.57-.6-.77V13h3.74c.14 0 .25.11.25.25v1.25ZM13 20.25V19h1.86c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75H9.18a2.6 2.6 0 0 0-1.53-.5H3.6V4c0-1.1.9-2 2-2h6v6c0 1.1.9 2 2 2h6v10a2 2 0 0 1-2 2h-5.38c.47-.43.77-1.06.77-1.75ZM13.11 8V2.5l6 6h-5.5a.5.5 0 0 1-.5-.5ZM1 13.6c0-.88.72-1.6 1.6-1.6h5.05c.88 0 1.6.72 1.6 1.6v.23h.35c.52 0 1 .3 1.23.76l1.02 2.05c.1.2.15.4.15.62v2.99c0 .76-.62 1.38-1.38 1.38h-.51a1.83 1.83 0 0 1-3.55 0H5.53a1.83 1.83 0 0 1-3.59-.15A1.6 1.6 0 0 1 1 20.02V13.6Zm8.25 1.15v1.83h1.55L10.01 15a.46.46 0 0 0-.41-.25h-.35Zm-5.5 5.5a.92.92 0 1 0 0 1.83.92.92 0 0 0 0-1.83Zm3.67.92a.92.92 0 1 0 1.83 0 .92.92 0 0 0-1.83 0Z\"]);\nexport const DocumentTableTruck24Regular = /*#__PURE__*/createFluentIcon('DocumentTableTruck24Regular', \"24\", [\"M18 20.5h-5.01c-.06.6-.34 1.12-.76 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7h1.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5Zm-.62-12H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Zm-4.38 9V19h2.25c.97 0 1.75-.78 1.75-1.75v-4c0-.97-.78-1.75-1.75-1.75H9.18c.47.34.81.83.97 1.4.54.13 1.02.44 1.35.88V13h3.75c.14 0 .25.11.25.25v1.25h-3.6l.75 1.5h2.85v1.25c0 .14-.11.25-.25.25H13ZM2.6 12c-.88 0-1.6.72-1.6 1.6v6.42c0 .65.39 1.21.94 1.46a1.83 1.83 0 0 0 3.59.14h1.03a1.83 1.83 0 0 0 3.55 0h.52c.75 0 1.37-.61 1.37-1.37v-3c0-.2-.05-.42-.15-.6l-1.02-2.06c-.23-.46-.7-.76-1.23-.76h-.35v-.23c0-.88-.72-1.6-1.6-1.6H2.6Zm6.65 4.58v-1.83h.35c.17 0 .33.1.41.25l.79 1.58H9.25Zm-6.42 4.59a.92.92 0 1 1 1.84 0 .92.92 0 0 1-1.84 0Zm5.5.91a.92.92 0 1 1 0-1.83.92.92 0 0 1 0 1.83Z\"]);\nexport const DocumentTarget16Filled = /*#__PURE__*/createFluentIcon('DocumentTarget16Filled', \"16\", [\"M9.5 5h3.25L9 1.25V4.5c0 .28.22.5.5.5Zm0 1A1.5 1.5 0 0 1 8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v4.78l.02-.01A1.49 1.49 0 0 1 4.5 6a1.49 1.49 0 0 1 1.48 1.27 4.52 4.52 0 0 1 2.75 2.75A1.5 1.5 0 0 1 10 11.5a1.5 1.5 0 0 1-1.27 1.48A4.5 4.5 0 0 1 7.4 14.9l-.13.1h4.24c.83 0 1.5-.67 1.5-1.5V6H9.5Zm-4.3 4.8a1 1 0 0 0-1.53.14 1 1 0 0 0 .12 1.27 1 1 0 0 0 1.7-.9 1 1 0 0 0-.28-.52Zm3.3.2a.5.5 0 1 1 0 1h-.55A3.49 3.49 0 0 1 5 14.95v.55a.5.5 0 1 1-1 0v-.55A3.49 3.49 0 0 1 1.05 12H.5a.5.5 0 1 1 0-1h.55A3.49 3.49 0 0 1 4 8.05V7.5a.5.5 0 1 1 1 0v.55A3.49 3.49 0 0 1 7.95 11h.55Zm-2.23 2.27a2.51 2.51 0 0 0 .16-3.36 2.5 2.5 0 1 0-.16 3.36Z\"]);\nexport const DocumentTarget16Regular = /*#__PURE__*/createFluentIcon('DocumentTarget16Regular', \"16\", [\"m9.65 1.44 2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H7.26l.13-.1c.1-.07.2-.14.28-.23.2-.2.38-.43.54-.67H11a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v3.1a1.48 1.48 0 0 0-1 1.17H3V3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44ZM9 4.5c0 .28.22.5.5.5h2.3L9 2.2v2.3Zm-4.5 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1.5h-.55A3.49 3.49 0 0 0 5 8.05V7.5a.5.5 0 1 0-1 0v.55A3.49 3.49 0 0 0 1.05 11H.5a.5.5 0 1 0 0 1h.55A3.49 3.49 0 0 0 4 14.95v.55a.5.5 0 1 0 1 0v-.55A3.49 3.49 0 0 0 7.95 12h.55a.5.5 0 1 0 0-1Zm-2.23 2.27a2.5 2.5 0 1 1-3.54-3.54 2.5 2.5 0 0 1 3.54 3.54Z\"]);\nexport const DocumentText16Filled = /*#__PURE__*/createFluentIcon('DocumentText16Filled', \"16\", [\"M8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v11c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5V6H9.5A1.5 1.5 0 0 1 8 4.5Zm1 0V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5ZM5.5 8h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1ZM5 10.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1Z\"]);\nexport const DocumentText16Regular = /*#__PURE__*/createFluentIcon('DocumentText16Regular', \"16\", [\"M3 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5Zm4.5 3h2.3L9 2.2v2.3c0 .28.22.5.5.5Zm-4 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM5 10.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const DocumentText20Filled = /*#__PURE__*/createFluentIcon('DocumentText20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v13c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5ZM6.5 10h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1Zm0 2h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1Zm0 2h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentText20Regular = /*#__PURE__*/createFluentIcon('DocumentText20Regular', \"20\", [\"M6.5 10a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm0 2a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm0 2a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6Zm5.5 4h3.3L11 3.2v3.3c0 .28.22.5.5.5Z\"]);\nexport const DocumentText24Filled = /*#__PURE__*/createFluentIcon('DocumentText24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-3.75 3.5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5Zm0 2.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5Zm0 2.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5Zm5.25-9V2.5l6 6H14a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentText24Regular = /*#__PURE__*/createFluentIcon('DocumentText24Regular', \"24\", [\"M8.75 11.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 2.75a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm0 2.75a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm4.84-14.41L19.4 8.4A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25ZM18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v16c0 .27.22.5.5.5h12Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38Z\"]);\nexport const DocumentTextClock20Filled = /*#__PURE__*/createFluentIcon('DocumentTextClock20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.7a5.5 5.5 0 0 1 4.66.8h4.84a.5.5 0 0 1 0 1H9.74c.26.3.48.64.66 1h3.1a.5.5 0 0 1 0 1h-2.7c.08.32.15.66.18 1h2.52a.5.5 0 0 1 0 1h-2.52a5.48 5.48 0 0 1-1.24 3h4.76c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM5.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM5 12.5a.5.5 0 0 1 1 0V14h1a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5v-2Z\"]);\nexport const DocumentTextClock20Regular = /*#__PURE__*/createFluentIcon('DocumentTextClock20Regular', \"20\", [\"M9.74 11a5.53 5.53 0 0 0-1.08-1h4.84a.5.5 0 0 1 0 1H9.74Zm.66 1c.16.32.3.65.4 1h2.7a.5.5 0 0 0 0-1h-3.1Zm.6 2.5c0 .17 0 .34-.02.5h2.52a.5.5 0 0 0 0-1h-2.52l.02.5ZM5 4v5.02c-.34.03-.68.1-1 .19V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2H9.74c.26-.3.48-.64.66-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1Zm6.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-6 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM5 12.5a.5.5 0 0 1 1 0V14h1a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5v-2Z\"]);\nexport const DocumentTextClock24Filled = /*#__PURE__*/createFluentIcon('DocumentTextClock24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v7.5a6.48 6.48 0 0 1 5 0h6.75a.75.75 0 0 1 0 1.5h-4.56c.36.38.68.8.94 1.25h3.62a.75.75 0 0 1 0 1.5h-2.99c.11.4.19.82.22 1.25h2.77a.75.75 0 0 1 0 1.5h-2.83A6.48 6.48 0 0 1 11.2 22H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM12 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5.5 0h2a.5.5 0 1 1 0 1H6a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0v2.5Z\"]);\nexport const DocumentTextClock24Regular = /*#__PURE__*/createFluentIcon('DocumentTextClock24Regular', \"24\", [\"M11.19 13A6.51 6.51 0 0 0 9 11.5h6.25a.75.75 0 0 1 0 1.5h-4.06Zm.94 1.25c.27.47.48.97.63 1.5h2.49a.75.75 0 0 0 0-1.5h-3.12ZM13 17.5c0 .34-.03.67-.08 1h2.33a.75.75 0 0 0 0-1.5h-2.27l.02.5ZM5.5 4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10a.5.5 0 0 1-.5.5h-5.73a6.52 6.52 0 0 1-1.08 1.5H18a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v7.5c.47-.2.98-.34 1.5-.42V4Zm11.88 4.5H14a.5.5 0 0 1-.5-.5V4.62l3.88 3.88Zm-5.38 9a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5.5 0h2a.5.5 0 1 1 0 1H6a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0v2.5Z\"]);\nexport const DocumentTextExtract20Filled = /*#__PURE__*/createFluentIcon('DocumentTextExtract20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5V11h5.5a1.5 1.5 0 0 1 0 3H4v2.5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm-4 3c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm0 6c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm5-9V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM2.5 12a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const DocumentTextExtract20Regular = /*#__PURE__*/createFluentIcon('DocumentTextExtract20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v7h1V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-2H4v2c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7Zm-8.3 3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-4 2a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm4 2a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const DocumentTextExtract24Filled = /*#__PURE__*/createFluentIcon('DocumentTextExtract24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v9.5h6.5a2 2 0 1 1 0 4H4V20c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-4.5 3.75c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75Zm0 7.5c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM2.75 14.75a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Z\"]);\nexport const DocumentTextExtract24Regular = /*#__PURE__*/createFluentIcon('DocumentTextExtract24Regular', \"24\", [\"M18.5 20a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5v-3H4v3c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L13.6 2.6a.5.5 0 0 0-.05-.04 2.07 2.07 0 0 0-.34-.25l-.05-.03-.05-.03-.16-.09c-.2-.08-.41-.12-.63-.14h-.06a.6.6 0 0 0-.08-.01H6a2 2 0 0 0-2 2v9h1.5V4c0-.27.22-.5.5-.5h6V8c0 1.1.9 2 2 2h4.5v10Zm-5-15.38 3.88 3.88H14a.5.5 0 0 1-.5-.5V4.62ZM8.75 11.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm-6 2.75a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm6 2.75a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const DocumentTextLink20Filled = /*#__PURE__*/createFluentIcon('DocumentTextLink20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5V13h2.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-6c.95 0 1.82.38 2.45 1h3.55a.5.5 0 0 1 0 1h-2.84a3.49 3.49 0 0 1 0 3h3.84c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5ZM6.5 10h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1ZM11 6.5V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3.5 14a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentTextLink20Regular = /*#__PURE__*/createFluentIcon('DocumentTextLink20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-3.34c.15-.31.25-.65.3-1H14a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v9H4V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm2 8h-2.84a3.51 3.51 0 0 0-.71-1h3.55a.5.5 0 0 1 0 1Zm0-2h-7a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1Zm-7-3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-3 4a2.5 2.5 0 0 0 0 5H4a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H4a.5.5 0 0 0 0-1h-.5ZM7 14a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H7a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H7Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const DocumentTextLink24Filled = /*#__PURE__*/createFluentIcon('DocumentTextLink24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v10.06c.24-.04.5-.06.75-.06h3.5c.53 0 1.05.09 1.52.25h5.98a.75.75 0 0 1 0 1.5h-3.82c.3.37.56.8.74 1.25h3.08a.75.75 0 0 1 0 1.5h-2.76a4.82 4.82 0 0 1-1.28 3.5H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm-3.75 3.5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5ZM13.5 8V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM12 18.75A3.75 3.75 0 0 0 8.25 15h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 12 18.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5H4.6a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DocumentTextLink24Regular = /*#__PURE__*/createFluentIcon('DocumentTextLink24Regular', \"24\", [\"M18 20.5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5v10h-.75c-.26 0-.5.02-.75.06V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-6.29c.41-.43.74-.94.96-1.5H18Zm-.62-12L13.5 4.62V8c0 .28.22.5.5.5h3.38Zm-7.6 5.75c.85.29 1.6.82 2.15 1.5h3.32a.75.75 0 0 0 0-1.5H9.77ZM12.66 17c.18.47.3.97.32 1.5h2.26a.75.75 0 0 0 0-1.5h-2.58Zm-3.92-5.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM12 18.75A3.75 3.75 0 0 0 8.25 15h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 12 18.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5H4.6a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DocumentTextToolbox20Filled = /*#__PURE__*/createFluentIcon('DocumentTextToolbox20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v5.55c.16-.03.33-.05.5-.05h2c.82 0 1.54.4 2 1h5a.5.5 0 0 1 0 1H8.95v.04a2.5 2.5 0 0 1 1.55.96h3a.5.5 0 0 1 0 1h-2.55c.03.16.05.33.05.5v.5h2.5a.5.5 0 0 1 0 1H11v2.5c0 .17-.02.34-.05.5h3.55c.83 0 1.5-.67 1.5-1.5V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15H8v-.5a.5.5 0 0 0-1 0v.5H4v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H3Zm4-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v.5h3v-.5ZM8 16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 1 17.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DocumentTextToolbox20Regular = /*#__PURE__*/createFluentIcon('DocumentTextToolbox20Regular', \"20\", [\"M8.95 11c-.07-.37-.23-.7-.45-1h5a.5.5 0 0 1 0 1H8.95Zm1.55 1c.22.3.38.63.45 1h2.55a.5.5 0 0 0 0-1h-3Zm3 2H11v1h2.5a.5.5 0 0 0 0-1ZM5 4v5h-.5c-.17 0-.34.02-.5.05V4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06V16a2 2 0 0 1-2 2h-3.05c.03-.16.05-.33.05-.5V17h3a1 1 0 0 0 1-1V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1Zm6.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5ZM3 12v-.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v.5h.5c.83 0 1.5.67 1.5 1.5V15H8v-.5a.5.5 0 0 0-1 0v.5H4v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H3Zm1-.5v.5h3v-.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5ZM8 16h2v1.5c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 1 17.5V16h2v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DocumentTextToolbox24Filled = /*#__PURE__*/createFluentIcon('DocumentTextToolbox24Filled', \"24\", [\"M12 8V2H6a2 2 0 0 0-2 2v7.35c.24-.06.49-.1.75-.1h3.5c.41 0 .8.09 1.15.25h6.35a.75.75 0 0 1 0 1.5h-4.94c.12.31.19.65.19 1v.05c.2.04.4.11.6.2h4.15a.75.75 0 0 1 0 1.5h-2.86c.07.24.11.49.11.75v.5h2.75a.75.75 0 0 1 0 1.5H13v3c0 .17-.02.34-.05.5H18a2 2 0 0 0 2-2V10h-6a2 2 0 0 1-2-2Zm1.5 0V2.5l6 6H14a.5.5 0 0 1-.5-.5ZM3 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H12v-1.5c0-.83-.67-1.5-1.5-1.5H10v-1c0-.97-.78-1.75-1.75-1.75h-3.5C3.78 12.25 3 13.03 3 14v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM1 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H12v2c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 21.5Z\"]);\nexport const DocumentTextToolbox24Regular = /*#__PURE__*/createFluentIcon('DocumentTextToolbox24Regular', \"24\", [\"M10.81 13a2.76 2.76 0 0 0-1.41-1.5h5.85a.75.75 0 0 1 0 1.5h-4.44Zm.78 1.25c.61.3 1.09.84 1.3 1.5h2.36a.75.75 0 0 0 0-1.5h-3.66ZM15.25 17H13v1.5h2.25a.75.75 0 0 0 0-1.5ZM5.5 4v7.25h-.75c-.26 0-.51.04-.75.1V4c0-1.1.9-2 2-2h6.17a.6.6 0 0 1 .08 0l.06.01c.22.02.43.06.63.14l.16.09c.02 0 .04.02.05.03l.05.02.08.05a2.07 2.07 0 0 1 .3.25l5.83 5.82A2 2 0 0 1 20 9.83V20a2 2 0 0 1-2 2h-5.05c.03-.16.05-.33.05-.5v-1h5a.5.5 0 0 0 .5-.5V10H14a2 2 0 0 1-2-2V3.5H6a.5.5 0 0 0-.5.5Zm11.88 4.5L13.5 4.62V8c0 .28.22.5.5.5h3.38ZM3 15h-.5c-.83 0-1.5.67-1.5 1.5V18h2.5v-.25a.75.75 0 0 1 1.5 0V18h3v-.25a.75.75 0 0 1 1.5 0V18H12v-1.5c0-.83-.67-1.5-1.5-1.5H10v-1c0-.97-.78-1.75-1.75-1.75h-3.5C3.78 12.25 3 13.03 3 14v1Zm1.5-1c0-.14.11-.25.25-.25h3.5c.14 0 .25.11.25.25v1h-4v-1ZM1 21.5v-2h2.5v.75a.75.75 0 0 0 1.5 0v-.75h3v.75a.75.75 0 0 0 1.5 0v-.75H12v2c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 21.5Z\"]);\nexport const DocumentToolbox20Filled = /*#__PURE__*/createFluentIcon('DocumentToolbox20Filled', \"20\", [\"M10 2v4.5c0 .83.67 1.5 1.5 1.5H16v8.5c0 .83-.67 1.5-1.5 1.5H13v-5a2 2 0 0 0-2-2h-1v-1a2 2 0 0 0-2-2H5a2 2 0 0 0-1 .27V3.5C4 2.67 4.67 2 5.5 2H10Zm1 .25V6.5c0 .28.22.5.5.5h4.25L11 2.25ZM4 12v-1.5C4 9.67 4.67 9 5.5 9h2c.83 0 1.5.67 1.5 1.5V12h1.5c.83 0 1.5.67 1.5 1.5V15H9v-.5a.5.5 0 0 0-1 0v.5H5v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H4Zm1-1.5V12h3v-1.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5ZM9 16h3v1.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 17.5V16h3v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DocumentToolbox20Regular = /*#__PURE__*/createFluentIcon('DocumentToolbox20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v4.27A2 2 0 0 1 5 8V4a1 1 0 0 1 1-1h4v3.5c0 .83.67 1.5 1.5 1.5H15v8a1 1 0 0 1-1 1h-1v1h1a2 2 0 0 0 2-2V7.41c0-.4-.16-.78-.44-1.06l-3.91-3.91A1.5 1.5 0 0 0 10.59 2H6Zm8.8 5h-3.3a.5.5 0 0 1-.5-.5V3.2L14.8 7ZM4 12v-1.5C4 9.67 4.67 9 5.5 9h2c.83 0 1.5.67 1.5 1.5V12h1.5c.83 0 1.5.67 1.5 1.5V15H9v-.5a.5.5 0 0 0-1 0v.5H5v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H4Zm1-1.5V12h3v-1.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5ZM9 16h3v1.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 17.5V16h3v.5a.5.5 0 0 0 1 0V16h3v.5a.5.5 0 0 0 1 0V16Z\"]);\nexport const DocumentToolbox24Filled = /*#__PURE__*/createFluentIcon('DocumentToolbox24Filled', \"24\", [\"M12 2v6c0 1.1.9 2 2 2h6v10.5c0 .83-.67 1.5-1.5 1.5H13v-5a2 2 0 0 0-2-2h-1v-1a2 2 0 0 0-2-2H5a2 2 0 0 0-1 .27V3.5C4 2.67 4.67 2 5.5 2H12Zm1.5.5V8c0 .28.22.5.5.5h5.5l-6-6ZM4 16v-1.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5V16h1.5c.83 0 1.5.67 1.5 1.5V19H9v-.5a.5.5 0 0 0-1 0v.5H5v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H4Zm1-1.5V16h3v-1.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5ZM9 20h3v1.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 21.5V20h3v.5a.5.5 0 0 0 1 0V20h3v.5a.5.5 0 0 0 1 0V20Z\"]);\nexport const DocumentToolbox24Regular = /*#__PURE__*/createFluentIcon('DocumentToolbox24Regular', \"24\", [\"M5.5 4.25c0-.41.34-.75.75-.75H12V8c0 1.1.9 2 2 2h4.5v9.75c0 .41-.34.75-.75.75H13V22h4.75c1.24 0 2.25-1 2.25-2.25V9.66c0-.46-.18-.9-.51-1.23L13.57 2.5A1.75 1.75 0 0 0 12.34 2H6.25C5.01 2 4 3 4 4.25v8.02A2 2 0 0 1 5 12h.5V4.25ZM17.44 8.5H14a.5.5 0 0 1-.5-.5V4.56l3.94 3.94ZM4 16v-1.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5V16h1.5c.83 0 1.5.67 1.5 1.5V19H9v-.5a.5.5 0 0 0-1 0v.5H5v-.5a.5.5 0 0 0-1 0v.5H1v-1.5c0-.83.67-1.5 1.5-1.5H4Zm1-1.5V16h3v-1.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5ZM9 20h3v1.5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 1 21.5V20h3v.5a.5.5 0 0 0 1 0V20h3v.5a.5.5 0 0 0 1 0V20Z\"]);\nexport const DocumentTs16Filled = /*#__PURE__*/createFluentIcon('DocumentTs16Filled', \"16\", [\"M10 1.25V4.5c0 .28.22.5.5.5h3.25L10 1.25ZM10.5 6A1.5 1.5 0 0 1 9 4.5V1H5.5C4.67 1 4 1.67 4 2.5V9c.4 0 .77.16 1.06.44.4-.28.87-.44 1.36-.44h.15c.64 0 1.27.26 1.72.71.45.45.71 1.08.71 1.72 0 .34-.11.67-.32.94l.04.09.05.08A2.42 2.42 0 0 1 8.53 15h3.97c.83 0 1.5-.67 1.5-1.5V6h-3.5Zm-3.93 9h-.14A1.43 1.43 0 0 1 5 13.57a.53.53 0 0 1 .5-.53.46.46 0 0 1 .35.12.47.47 0 0 1 .15.34.45.45 0 0 0 .43.5h.14a.43.43 0 0 0 .2-.8l-.98-.5a1.42 1.42 0 0 1 .64-2.7h.14A1.43 1.43 0 0 1 8 11.43a.53.53 0 0 1-.5.53.46.46 0 0 1-.35-.12.47.47 0 0 1-.15-.34v-.07a.43.43 0 0 0-.43-.43h-.14a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7Zm-2.22-4.15a.5.5 0 0 0 0-.7A.5.5 0 0 0 4 10H1a.5.5 0 1 0 0 1h1v3.5a.5.5 0 1 0 1 0V11h1a.5.5 0 0 0 .35-.15Z\"]);\nexport const DocumentTs16Regular = /*#__PURE__*/createFluentIcon('DocumentTs16Regular', \"16\", [\"M12.56 4.35 9.65 1.44A1.52 1.52 0 0 0 8.59 1H5a2 2 0 0 0-2 2v6h1V3a1 1 0 0 1 1-1h3v2.5A1.5 1.5 0 0 0 9.5 6H12v7a1 1 0 0 1-1 1H8.96c-.06.36-.2.7-.42 1H11a2 2 0 0 0 2-2V5.41c0-.4-.16-.78-.44-1.06ZM9.5 5a.5.5 0 0 1-.5-.5V2.21L11.79 5H9.5ZM6.57 15h-.14A1.43 1.43 0 0 1 5 13.57a.53.53 0 0 1 .5-.53.47.47 0 0 1 .5.46.45.45 0 0 0 .43.5h.14a.43.43 0 0 0 .2-.8l-.98-.5a1.43 1.43 0 0 1 .64-2.7h.14A1.43 1.43 0 0 1 8 11.43a.53.53 0 0 1-.5.53.47.47 0 0 1-.5-.46v-.07a.43.43 0 0 0-.43-.43h-.14a.43.43 0 0 0-.2.8l.98.5a1.43 1.43 0 0 1-.64 2.7Zm-2.22-4.15A.5.5 0 0 0 4 10H1a.5.5 0 0 0 0 1h1v3.5a.5.5 0 0 0 1 0V11h1a.5.5 0 0 0 .35-.15Z\"]);\nexport const DocumentVb16Filled = /*#__PURE__*/createFluentIcon('DocumentVb16Filled', \"16\", [\"M10 4.5V1.25L13.75 5H10.5a.5.5 0 0 1-.5-.5Zm-1 0c0 .83.67 1.5 1.5 1.5H14v7.5c0 .83-.67 1.5-1.5 1.5H8.75c.14-.19.26-.4.35-.63a2.56 2.56 0 0 0-.21-2.16 2.53 2.53 0 0 0-.17-1.87A2.47 2.47 0 0 0 6.5 9h-1c-.27 0-.53.07-.75.2A1.54 1.54 0 0 0 4 9V2.5C4 1.67 4.67 1 5.5 1H9v3.5Zm-1 7.1a1.5 1.5 0 0 1-.27.76 1.5 1.5 0 0 1-.12 2.37 1.5 1.5 0 0 1-.86.27H5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1A1.5 1.5 0 0 1 8 11.6ZM6.5 11H6v1h.5a.5.5 0 1 0 0-1ZM6 14h.75a.5.5 0 1 0 0-1H6v1Zm-3.03.67 1.5-4a.5.5 0 0 0-.94-.35L2.5 13.07l-1.03-2.75a.5.5 0 0 0-.93-.03.5.5 0 0 0 0 .38l1.5 4a.5.5 0 0 0 .46.33.5.5 0 0 0 .47-.33Z\"]);\nexport const DocumentVb16Regular = /*#__PURE__*/createFluentIcon('DocumentVb16Regular', \"16\", [\"m9.65 1.44 2.91 2.91c.28.28.44.67.44 1.06V13a2 2 0 0 1-2 2H8.75c.14-.19.26-.4.34-.63.05-.1.07-.22.1-.33L9.2 14H11a1 1 0 0 0 1-1V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6c-.22 0-.42.05-.62.13-.14.07-.27.15-.38.27V3c0-1.1.9-2 2-2h3.59c.39 0 .78.16 1.06.44ZM9 4.5c0 .28.22.5.5.5h2.29L9 2.21V4.5Zm-1 7.1a1.5 1.5 0 0 1-.27.76 1.5 1.5 0 0 1-.12 2.37 1.5 1.5 0 0 1-.86.27H5.5a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5h1A1.5 1.5 0 0 1 8 11.6ZM6.5 11H6v1h.5a.5.5 0 1 0 0-1ZM6 14h.75a.5.5 0 1 0 0-1H6v1Zm-3.03.68 1.5-4a.5.5 0 0 0-.94-.36L2.5 13.08l-1.03-2.76a.5.5 0 0 0-.93-.03.5.5 0 0 0 0 .39l1.5 4a.5.5 0 0 0 .46.32.5.5 0 0 0 .47-.32Z\"]);\nexport const DocumentWidth20Filled = /*#__PURE__*/createFluentIcon('DocumentWidth20Filled', \"20\", [\"M6 2h8a2 2 0 0 1 2 2v2.34A1.5 1.5 0 0 0 15.02 8h-.52a1.5 1.5 0 0 0 0 3h.52a1.5 1.5 0 0 0 .98 1.66V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3.34A1.5 1.5 0 0 0 4.98 11h.52a1.5 1.5 0 0 0 0-3h-.52A1.5 1.5 0 0 0 4 6.34V4c0-1.1.9-2 2-2ZM3.88 7.42a.5.5 0 0 1-.05.7l-1 .88H5.5a.5.5 0 1 1 0 1H2.83l1 .87a.5.5 0 0 1-.66.76l-2-1.75a.5.5 0 0 1 0-.76l2-1.75a.5.5 0 0 1 .7.05ZM17.17 10l-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 0 0-.66.76l1 .87H14.5a.5.5 0 0 0 0 1h2.67Z\"]);\nexport const DocumentWidth20Regular = /*#__PURE__*/createFluentIcon('DocumentWidth20Regular', \"20\", [\"M3.88 7.42a.5.5 0 0 1-.05.7l-1 .88H5.5a.5.5 0 0 1 0 1H2.83l1 .88a.5.5 0 1 1-.66.75l-2-1.75a.5.5 0 0 1 0-.75l2-1.75a.5.5 0 0 1 .7.04ZM17.17 10l-1 .88a.5.5 0 0 0 .66.75l2-1.75a.5.5 0 0 0 0-.75l-2-1.75a.5.5 0 0 0-.66.75l1 .87H14.5a.5.5 0 0 0 0 1h2.67ZM5 4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3.5h.02A1.5 1.5 0 0 1 16 6.34V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v2.34a1.5 1.5 0 0 1 .98 1.16H5V4Zm-.37 8.24c.19-.22.3-.48.35-.74H5V16a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-4.5h.02a1.5 1.5 0 0 0 .98 1.16V16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3.34c.24-.08.45-.22.63-.42Z\"]);\nexport const DocumentWidth24Filled = /*#__PURE__*/createFluentIcon('DocumentWidth24Filled', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v3.52a1.75 1.75 0 0 0-1.49.5A1.73 1.73 0 0 0 18.1 10l.05.16.04.09h-1.52c-.85 0-1.5.65-1.64 1.46l-.01.14L15 12c0 .8.51 1.51 1.33 1.7l.16.04h1.68l-.02.04c-.2.47-.2 1.02.05 1.51l.1.17.09.14.12.14c.4.4.95.57 1.49.48v3.53c0 1.2-.93 2.17-2.1 2.24l-.15.01H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75v-3.53c.54.09 1.09-.08 1.49-.48l.12-.14.1-.14c.33-.54.37-1.16.14-1.68l-.02-.03h1.51l.17-.01C8.42 13.6 9 12.84 9 12v-.15a1.7 1.7 0 0 0-1.66-1.6H5.82l.04-.1A1.74 1.74 0 0 0 4 7.78V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5ZM4.78 8.97c.27.26.3.68.07.97l-.07.09-1.22 1.22h3.78c.37 0 .66.33.66.75 0 .38-.25.7-.57.74H3.56l1.22 1.23c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07-2.37-2.37A.77.77 0 0 1 1 12c0-.29.14-.54.35-.66l2.37-2.37c.3-.3.77-.3 1.06 0Zm14.44 0a.75.75 0 0 1 .98-.08l.08.08 2.37 2.36c.2.13.35.38.35.67 0 .25-.1.47-.28.6l-.07.06-2.37 2.37-.08.07c-.27.2-.62.2-.89 0l-.1-.07-.06-.09a.75.75 0 0 1-.01-.88l.08-.1 1.22-1.21h-3.78l-.1-.01c-.31-.05-.56-.37-.56-.74 0-.38.25-.7.57-.75H20.44l-1.22-1.22-.07-.09a.75.75 0 0 1 .07-.97Z\"]);\nexport const DocumentWidth24Regular = /*#__PURE__*/createFluentIcon('DocumentWidth24Regular', \"24\", [\"m18.5 15.72.01.02c.4.4.95.57 1.49.48v3.53c0 1.2-.93 2.17-2.1 2.24l-.15.01H6.25c-1.2 0-2.17-.93-2.24-2.1L4 19.75v-3.53c.49.08.98-.05 1.36-.37l.14-.13v4.03c0 .38.28.7.65.74l.1.01h11.5c.38 0 .7-.28.74-.65l.01-.1v-4.03ZM4.78 8.97c.27.26.3.68.07.97l-.07.09-1.22 1.22h3.78c.37 0 .66.33.66.75 0 .38-.25.7-.57.74H3.56l1.22 1.23c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07-2.37-2.37A.77.77 0 0 1 1 12c0-.29.14-.54.35-.66l2.37-2.37c.3-.3.77-.3 1.06 0Zm14.44 0a.75.75 0 0 1 .98-.08l.08.08 2.37 2.36c.2.13.35.38.35.67 0 .25-.1.47-.28.6l-.07.06-2.37 2.37-.08.07c-.27.2-.62.2-.89 0l-.1-.07-.06-.09a.75.75 0 0 1-.01-.88l.08-.1 1.22-1.21h-3.78l-.1-.01c-.31-.05-.56-.37-.56-.74 0-.38.25-.7.57-.75H20.44l-1.22-1.22-.07-.09a.75.75 0 0 1 .07-.97ZM17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v3.52c-.47-.07-.97.06-1.36.38l-.14.12V4.25c0-.38-.28-.7-.65-.74l-.1-.01H6.25c-.38 0-.7.28-.74.65l-.01.1v4.02h-.01c-.4-.41-.96-.58-1.5-.5L4 4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h11.5Z\"]);\nexport const DocumentYml16Filled = /*#__PURE__*/createFluentIcon('DocumentYml16Filled', \"16\", [\"M8 4.5V1H4.5C3.67 1 3 1.67 3 2.5v6.88a1.5 1.5 0 0 1 1.75-.18 1.5 1.5 0 0 1 2.1.63l.65 1.32.66-1.32a1.5 1.5 0 0 1 2.34-.45 1.5 1.5 0 0 1 2.5 1.09V6H9.5A1.5 1.5 0 0 1 8 4.5Zm1 0V1.25L12.75 5H9.5a.5.5 0 0 1-.5-.5ZM2.5 15a.5.5 0 0 0 .5-.5v-1.36l1.43-2.38a.5.5 0 1 0-.86-.52L2.5 12.03l-1.07-1.79a.5.5 0 0 0-.86.52L2 13.14v1.36c0 .28.22.5.5.5Zm3.45-4.72a.5.5 0 0 0-.95.22v4a.5.5 0 1 0 1 0v-1.88l1.05 2.1a.5.5 0 0 0 .9 0L9 12.62v1.88a.5.5 0 1 0 1 0v-4a.5.5 0 0 0-.95-.22l-1.55 3.1-1.55-3.1Zm6.05.22a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h2a.5.5 0 1 0 0-1H12v-3.5Z\"]);\nexport const DocumentYml16Regular = /*#__PURE__*/createFluentIcon('DocumentYml16Regular', \"16\", [\"M3 3c0-1.1.9-2 2-2h3.59c.4 0 .78.16 1.06.44l2.91 2.91c.28.28.44.67.44 1.06v5.08c0-.65-.42-1.2-1-1.4V6H9.5A1.5 1.5 0 0 1 8 4.5V2H5a1 1 0 0 0-1 1v6c-.36 0-.72.13-1 .38V3Zm6.5 2h2.3L9 2.2v2.3c0 .28.22.5.5.5Zm-7 10a.5.5 0 0 0 .5-.5v-1.36l1.43-2.38a.5.5 0 1 0-.86-.52L2.5 12.03l-1.07-1.79a.5.5 0 0 0-.86.52L2 13.14v1.36c0 .28.22.5.5.5Zm3.45-4.72a.5.5 0 0 0-.95.22v4a.5.5 0 1 0 1 0v-1.88l1.05 2.1a.5.5 0 0 0 .9 0L9 12.62v1.88a.5.5 0 1 0 1 0v-4a.5.5 0 0 0-.95-.22l-1.55 3.1-1.55-3.1Zm6.05.22a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h2a.5.5 0 1 0 0-1H12v-3.5Z\"]);\nexport const DocumentYml20Filled = /*#__PURE__*/createFluentIcon('DocumentYml20Filled', \"20\", [\"M10 6.5V2H5.5C4.67 2 4 2.67 4 3.5v8.55l.25-.38a1.5 1.5 0 0 1 2.25-.29 1.5 1.5 0 0 1 2.34.45L10 14.15l1.16-2.32a1.5 1.5 0 0 1 2.34-.45 1.5 1.5 0 0 1 2.5 1.09V8h-4.5A1.5 1.5 0 0 1 10 6.5Zm1 0V2.25L15.75 7H11.5a.5.5 0 0 1-.5-.5ZM3.5 18a.5.5 0 0 0 .5-.5v-1.85l1.92-2.87a.5.5 0 0 0-.84-.56L3.5 14.6l-1.58-2.38a.5.5 0 0 0-.84.56L3 15.65v1.85c0 .28.22.5.5.5Zm4.45-5.72a.5.5 0 0 0-.95.22v5a.5.5 0 1 0 1 0v-2.88l1.55 3.1a.5.5 0 0 0 .9 0l1.55-3.1v2.88a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.95-.22L10 16.38l-2.05-4.1Zm7.05.22a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h3a.5.5 0 1 0 0-1H15v-4.5Z\"]);\nexport const DocumentYml20Regular = /*#__PURE__*/createFluentIcon('DocumentYml20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h4.59c.4 0 .78.16 1.06.44l3.91 3.91c.28.28.44.67.44 1.06v5.08c0-.65-.42-1.2-1-1.4V8h-3.5A1.5 1.5 0 0 1 10 6.5V3H6a1 1 0 0 0-1 1v7.09c-.3.1-.56.3-.75.58l-.25.38V4Zm7.5 3h3.3L11 3.2v3.3c0 .28.22.5.5.5Zm-8 11a.5.5 0 0 0 .5-.5v-1.85l1.92-2.87a.5.5 0 0 0-.84-.56L3.5 14.6l-1.58-2.38a.5.5 0 0 0-.84.56L3 15.65v1.85c0 .28.22.5.5.5Zm4.45-5.72a.5.5 0 0 0-.95.22v5a.5.5 0 1 0 1 0v-2.88l1.55 3.1a.5.5 0 0 0 .9 0l1.55-3.1v2.88a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.95-.22L10 16.38l-2.05-4.1Zm7.05.22a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h3a.5.5 0 1 0 0-1H15v-4.5Z\"]);\nexport const Door16Filled = /*#__PURE__*/createFluentIcon('Door16Filled', \"16\", [\"M3 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3Zm3 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Door16Regular = /*#__PURE__*/createFluentIcon('Door16Regular', \"16\", [\"M6 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 1a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H5ZM4 3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V3Z\"]);\nexport const Door20Filled = /*#__PURE__*/createFluentIcon('Door20Filled', \"20\", [\"M4.5 4c0-.83.67-1.5 1.5-1.5h8.15A1.5 1.5 0 0 1 15.5 4v12c0 .83-.67 1.5-1.5 1.5H6A1.5 1.5 0 0 1 4.5 16V4ZM7 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Door20Regular = /*#__PURE__*/createFluentIcon('Door20Regular', \"20\", [\"M7 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4Zm2 13h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1Z\"]);\nexport const Door28Filled = /*#__PURE__*/createFluentIcon('Door28Filled', \"28\", [\"M8 2a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H8Zm1.5 13a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z\"]);\nexport const Door28Regular = /*#__PURE__*/createFluentIcon('Door28Regular', \"28\", [\"M9.5 15a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM5 5a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V5Zm3-1.5c-.83 0-1.5.67-1.5 1.5v18c0 .83.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5V5c0-.83-.67-1.5-1.5-1.5H8Z\"]);\nexport const DoorArrowLeft16Filled = /*#__PURE__*/createFluentIcon('DoorArrowLeft16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75v3.46A5.5 5.5 0 0 0 7.26 15H4.75C3.78 15 3 14.22 3 13.25V2.75ZM6 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10 2.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L10.71 12h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DoorArrowLeft16Regular = /*#__PURE__*/createFluentIcon('DoorArrowLeft16Regular', \"16\", [\"M4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h2.5a5.5 5.5 0 0 1-.65-1H4.75a.75.75 0 0 1-.75-.75V2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v3.27c.34.03.68.1 1 .19V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm9 3.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L10.71 12h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DoorArrowLeft20Filled = /*#__PURE__*/createFluentIcon('DoorArrowLeft20Filled', \"20\", [\"M6 2.5c-.83 0-1.5.67-1.5 1.5v12c0 .83.67 1.5 1.5 1.5h3.89a5.5 5.5 0 0 1 5.61-8.4V4c0-.83-.67-1.5-1.5-1.5H6ZM8 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm11 4.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DoorArrowLeft20Regular = /*#__PURE__*/createFluentIcon('DoorArrowLeft20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H6Zm2 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm11 4.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const DoorArrowLeft24Filled = /*#__PURE__*/createFluentIcon('DoorArrowLeft24Filled', \"24\", [\"M6.25 2.75c-.83 0-1.5.67-1.5 1.5v15.5c0 .83.67 1.5 1.5 1.5h5.94a6.5 6.5 0 0 1 7.06-10.01V4.25c0-.83-.67-1.5-1.5-1.5H6.25Zm2.25 10.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm9 9.75a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm3.5-5.5a.5.5 0 0 1-.5.5h-4.8l1.65 1.65a.5.5 0 0 1-.7.7l-2.5-2.5a.5.5 0 0 1 0-.7l2.5-2.5a.5.5 0 0 1 .7.7L15.71 17h4.79c.28 0 .5.22.5.5Z\"]);\nexport const DoorArrowLeft24Regular = /*#__PURE__*/createFluentIcon('DoorArrowLeft24Regular', \"24\", [\"M6.25 2C5.01 2 4 3 4 4.25v15.5C4 20.99 5 22 6.25 22h6.56a6.52 6.52 0 0 1-1.08-1.5H6.25a.75.75 0 0 1-.75-.75V4.25c0-.41.34-.75.75-.75h11.5c.41 0 .75.34.75.75v6.83c.52.08 1.03.22 1.5.42V4.25C20 3.01 19 2 17.75 2H6.25ZM17.5 23a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm3.5-5.5a.5.5 0 0 1-.5.5h-4.8l1.65 1.65a.5.5 0 0 1-.7.7l-2.5-2.5a.5.5 0 0 1 0-.7l2.5-2.5a.5.5 0 0 1 .7.7L15.71 17h4.79c.28 0 .5.22.5.5ZM8.5 13.25a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const DoorArrowRight16Filled = /*#__PURE__*/createFluentIcon('DoorArrowRight16Filled', \"16\", [\"M3 2.75C3 1.78 3.78 1 4.75 1h6.5c.97 0 1.75.78 1.75 1.75v3.46A5.5 5.5 0 0 0 7.26 15H4.75C3.78 15 3 14.22 3 13.25V2.75ZM6 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5.5 7a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L12.29 12H9.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DoorArrowRight16Regular = /*#__PURE__*/createFluentIcon('DoorArrowRight16Regular', \"16\", [\"M4.75 1C3.78 1 3 1.78 3 2.75v10.5c0 .97.78 1.75 1.75 1.75h2.5a5.5 5.5 0 0 1-.65-1H4.75a.75.75 0 0 1-.75-.75V2.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v3.27c.34.03.68.1 1 .19V2.75C13 1.78 12.22 1 11.25 1h-6.5ZM7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4.5 8a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L12.29 12H9.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DoorArrowRight20Filled = /*#__PURE__*/createFluentIcon('DoorArrowRight20Filled', \"20\", [\"M6 2.5c-.83 0-1.5.67-1.5 1.5v12c0 .83.67 1.5 1.5 1.5h3.89a5.5 5.5 0 0 1 5.61-8.4V4c0-.83-.67-1.5-1.5-1.5H6ZM8 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm6.5 9a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DoorArrowRight20Regular = /*#__PURE__*/createFluentIcon('DoorArrowRight20Regular', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h4.26a5.5 5.5 0 0 1-.66-1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v5.02c.34.03.68.1 1 .19V4a2 2 0 0 0-2-2H6Zm2 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm6.5 9a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm.35-2.15a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const DoorArrowRight28Filled = /*#__PURE__*/createFluentIcon('DoorArrowRight28Filled', \"28\", [\"M8 2a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h7.4A7.5 7.5 0 0 1 23 13.43V5a3 3 0 0 0-3-3H8Zm1.5 13a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0ZM16.5 20a.5.5 0 0 0 0 1h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-3-3a.5.5 0 0 0-.7.7L23.29 20H16.5Z\"]);\nexport const DoorArrowRight28Regular = /*#__PURE__*/createFluentIcon('DoorArrowRight28Regular', \"28\", [\"M5 5a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v8.43c-.48-.17-.98-.3-1.5-.36V5c0-.83-.67-1.5-1.5-1.5H8c-.83 0-1.5.67-1.5 1.5v18c0 .83.67 1.5 1.5 1.5h6.15c.35.55.77 1.06 1.25 1.5H8a3 3 0 0 1-3-3V5Zm4.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0ZM16.5 20a.5.5 0 0 0 0 1h6.8l-2.15 2.15a.5.5 0 0 0 .7.7l3-3a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-3-3a.5.5 0 0 0-.7.7L23.29 20H16.5Z\"]);\nexport const DoorTag20Filled = /*#__PURE__*/createFluentIcon('DoorTag20Filled', \"20\", [\"M9.3 6.3A1 1 0 1 1 10 8H7a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V7.05a4.98 4.98 0 0 0-8.54-3.59A2 2 0 1 0 9.3 6.3ZM8 14h4a.5.5 0 0 1 0 1H8a.5.5 0 0 1 0-1Z\"]);\nexport const DoorTag20Regular = /*#__PURE__*/createFluentIcon('DoorTag20Regular', \"20\", [\"M9.3 6.3A1 1 0 1 1 10 8H7a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V7.05a4.98 4.98 0 0 0-8.54-3.59A2 2 0 1 0 9.3 6.3ZM11.4 8.4A2 2 0 1 0 8.6 5.6a1 1 0 0 1-1.42-1.42A4 4 0 0 1 14 7V16a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h3a2 2 0 0 0 1.41-.59ZM8 14a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8Z\"]);\nexport const DoorTag24Filled = /*#__PURE__*/createFluentIcon('DoorTag24Filled', \"24\", [\"M12 6.5c-.49 0-.92.23-1.2.6a2.25 2.25 0 0 1-3.6-2.7A6 6 0 0 1 18 8v12a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-8.5c0-1.1.9-2 2-2h4a1.5 1.5 0 0 0 0-3Zm-2.25 11a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z\"]);\nexport const DoorTag24Regular = /*#__PURE__*/createFluentIcon('DoorTag24Regular', \"24\", [\"M9.75 17.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM10.8 7.1A1.5 1.5 0 1 1 12 9.5H8a2 2 0 0 0-2 2V20c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V8A6 6 0 0 0 7.2 4.4a2.25 2.25 0 1 0 3.6 2.7ZM12 5a3 3 0 0 0-2.4 1.2.75.75 0 0 1-1.2-.9A4.5 4.5 0 0 1 16.5 8v12a.5.5 0 0 1-.5.5H8a.5.5 0 0 1-.5-.5v-8.5c0-.28.22-.5.5-.5h4a3 3 0 1 0 0-6Z\"]);\nexport const DoubleSwipeDown20Filled = /*#__PURE__*/createFluentIcon('DoubleSwipeDown20Filled', \"20\", [\"M6.28 17.78c-.3.3-.77.3-1.06 0l-2.5-2.5a.75.75 0 0 1 1.06-1.06L5 15.44V5.75a.75.75 0 0 1 1.5 0v9.69l1.22-1.22a.75.75 0 1 1 1.06 1.06l-2.5 2.5ZM2 5.75c0 1.44.81 2.69 2 3.32v-1.9a2.25 2.25 0 1 1 3.5 0v1.9A3.75 3.75 0 1 0 2 5.75Zm10.5 3.32a3.75 3.75 0 1 1 3.5 0v-1.9a2.25 2.25 0 1 0-3.5 0v1.9Zm2.28 8.71c-.3.3-.77.3-1.06 0l-2.5-2.5a.75.75 0 0 1 1.06-1.06l1.22 1.22V5.75a.75.75 0 0 1 1.5 0v9.69l1.22-1.22a.75.75 0 1 1 1.06 1.06l-2.5 2.5Z\"]);\nexport const DoubleSwipeDown20Regular = /*#__PURE__*/createFluentIcon('DoubleSwipeDown20Regular', \"20\", [\"M5.85 17.85a.5.5 0 0 1-.7 0l-3-3a.5.5 0 0 1 .7-.7L5 16.29V5.5a.5.5 0 0 1 1 0v10.8l2.15-2.15a.5.5 0 0 1 .7.7l-3 3Zm9 0a.5.5 0 0 1-.7 0l-3-3a.5.5 0 0 1 .7-.7L14 16.29V5.5a.5.5 0 0 1 1 0v10.8l2.15-2.15a.5.5 0 0 1 .7.7l-3 3ZM11 5.5c0 1.4.82 2.6 2 3.16V7.5a2.5 2.5 0 1 1 3 0v1.16a3.5 3.5 0 1 0-5-3.16ZM4 8.66a3.5 3.5 0 1 1 3 0V7.5a2.5 2.5 0 1 0-3 0v1.16Z\"]);\nexport const DoubleSwipeDown24Filled = /*#__PURE__*/createFluentIcon('DoubleSwipeDown24Filled', \"24\", [\"M18.2 21.7a1 1 0 0 1-1.4 0l-3-3a1 1 0 0 1 1.4-1.4l1.3 1.29V7a1 1 0 1 1 2 0v11.59l1.3-1.3a1 1 0 1 1 1.4 1.42l-3 3ZM12.5 7a5 5 0 0 0 3 4.58V9.24a3 3 0 0 1 2-5.24 3 3 0 0 1 2 5.24v2.34a5 5 0 1 0-7-4.58Zm-8 4.58a5 5 0 1 1 4 0V9.24A3 3 0 0 0 6.5 4a3 3 0 0 0-2 5.24v2.34Zm2.7 10.13a1 1 0 0 1-1.4 0l-3-3a1 1 0 1 1 1.4-1.42l1.3 1.3V7a1 1 0 0 1 2 0v11.59l1.3-1.3a1 1 0 1 1 1.4 1.42l-3 3Z\"]);\nexport const DoubleSwipeDown24Regular = /*#__PURE__*/createFluentIcon('DoubleSwipeDown24Regular', \"24\", [\"M6.75 6c.38 0 .7.28.74.65l.01.1v12.69l2.22-2.22a.75.75 0 0 1 .98-.07l.08.07c.27.27.3.68.07.98l-.07.08-3.5 3.5a.75.75 0 0 1-.98.07l-.08-.07-3.5-3.5a.75.75 0 0 1 .98-1.13l.08.07L6 19.44V6.75c0-.41.34-.75.75-.75Zm10.5 0c.38 0 .7.28.74.65v12.79l2.23-2.22a.75.75 0 0 1 .97-.07l.09.07c.26.27.29.68.07.98l-.07.08-3.5 3.5a.75.75 0 0 1-.98.07l-.08-.07-3.5-3.5a.75.75 0 0 1 .97-1.13l.09.07 2.22 2.22V6.75c0-.41.33-.75.75-.75ZM6.75 2a4.75 4.75 0 0 1 1.75 9.17V9.49a3.25 3.25 0 1 0-3.5 0v1.68A4.75 4.75 0 0 1 6.75 2Zm10.5 0A4.75 4.75 0 0 1 19 11.17V9.49a3.25 3.25 0 1 0-3.5 0v1.68A4.75 4.75 0 0 1 17.25 2Z\"]);\nexport const DoubleSwipeUp20Filled = /*#__PURE__*/createFluentIcon('DoubleSwipeUp20Filled', \"20\", [\"M6.28 2.22a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06L5 4.56v9.69a.75.75 0 0 0 1.5 0V4.56l1.22 1.22a.75.75 0 0 0 1.06-1.06l-2.5-2.5ZM2 14.25c0-1.44.81-2.69 2-3.32v1.9a2.25 2.25 0 1 0 3.5 0v-1.9A3.75 3.75 0 1 1 2 14.25Zm10.5-3.32a3.75 3.75 0 1 0 3.5 0v1.9a2.25 2.25 0 1 1-3.5 0v-1.9Zm2.28-8.71a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v9.69a.75.75 0 0 0 1.5 0V4.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5Z\"]);\nexport const DoubleSwipeUp20Regular = /*#__PURE__*/createFluentIcon('DoubleSwipeUp20Regular', \"20\", [\"M5.85 2.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L5 3.71V14.5a.5.5 0 0 0 1 0V3.7l2.15 2.15a.5.5 0 1 0 .7-.7l-3-3Zm9 0a.5.5 0 0 0-.7 0l-3 3a.5.5 0 0 0 .7.7L14 3.71V14.5a.5.5 0 0 0 1 0V3.7l2.15 2.15a.5.5 0 0 0 .7-.7l-3-3ZM11 14.5c0-1.4.82-2.6 2-3.16v1.16a2.5 2.5 0 1 0 3 0v-1.16a3.5 3.5 0 1 1-5 3.16Zm-7-3.16a3.5 3.5 0 1 0 3 0v1.16a2.5 2.5 0 1 1-3 0v-1.16Z\"]);\nexport const DoubleSwipeUp24Filled = /*#__PURE__*/createFluentIcon('DoubleSwipeUp24Filled', \"24\", [\"M18.2 2.3a1 1 0 0 0-1.4 0l-3 3a1 1 0 0 0 1.4 1.4l1.3-1.29V17a1 1 0 1 0 2 0V5.41l1.3 1.3a1 1 0 1 0 1.4-1.42l-3-3ZM12.5 17a5 5 0 0 1 3-4.58v2.34a3 3 0 0 0 2 5.24 3 3 0 0 0 2-5.24v-2.34a5 5 0 1 1-7 4.58Zm-8-4.58a5 5 0 1 0 4 0v2.34a3 3 0 0 1-2 5.24 3 3 0 0 1-2-5.24v-2.34ZM7.2 2.29a1 1 0 0 0-1.4 0l-3 3a1 1 0 0 0 1.4 1.42l1.3-1.3V17a1 1 0 1 0 2 0V5.41l1.3 1.3a1 1 0 0 0 1.4-1.42l-3-3Z\"]);\nexport const DoubleSwipeUp24Regular = /*#__PURE__*/createFluentIcon('DoubleSwipeUp24Regular', \"24\", [\"M6.75 18c.38 0 .7-.28.74-.65l.01-.1V4.56l2.22 2.22c.27.27.68.3.98.07l.08-.07a.75.75 0 0 0 .07-.98l-.07-.08-3.5-3.5a.75.75 0 0 0-.98-.07l-.08.07-3.5 3.5a.75.75 0 0 0 .98 1.13l.08-.07L6 4.56v12.69c0 .41.34.75.75.75Zm10.5 0c.38 0 .7-.28.74-.65V4.56l2.23 2.22c.26.27.68.3.97.07l.09-.07c.26-.27.29-.68.07-.98l-.07-.08-3.5-3.5a.75.75 0 0 0-.98-.07l-.08.07-3.5 3.5a.75.75 0 0 0 .97 1.13l.09-.07 2.22-2.22v12.69c0 .41.33.75.75.75Zm-10.5 4a4.75 4.75 0 0 0 1.75-9.17v1.68a3.25 3.25 0 1 1-3.5 0v-1.68A4.75 4.75 0 0 0 6.75 22Zm10.5 0A4.75 4.75 0 0 0 19 12.83v1.68a3.25 3.25 0 1 1-3.5 0v-1.68A4.75 4.75 0 0 0 17.25 22Z\"]);\nexport const DoubleTapSwipeDown20Filled = /*#__PURE__*/createFluentIcon('DoubleTapSwipeDown20Filled', \"20\", [\"M10.53 17.78c-.3.3-.77.3-1.06 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.22 1.22V7.75a.75.75 0 1 1 1.5 0v7.69l1.22-1.22a.75.75 0 1 1 1.06 1.06l-2.5 2.5ZM4.25 7.5a5.75 5.75 0 0 0 4 5.48v-1.6a4.25 4.25 0 1 1 3.5 0v1.6a5.75 5.75 0 1 0-7.5-5.48Zm2.5 0c0 1.15.6 2.16 1.5 2.74V7.5a1.75 1.75 0 1 1 3.5.13V10.24a3.25 3.25 0 1 0-5-2.74Z\"]);\nexport const DoubleTapSwipeDown20Regular = /*#__PURE__*/createFluentIcon('DoubleTapSwipeDown20Regular', \"20\", [\"M10.35 17.85a.5.5 0 0 1-.7 0l-3-3a.5.5 0 0 1 .7-.7l2.15 2.14V7.5a.5.5 0 0 1 1 0v8.8l2.15-2.15a.5.5 0 0 1 .7.7l-3 3ZM4.5 7.5a5.5 5.5 0 0 0 4 5.3v-1.06a4.5 4.5 0 1 1 3 0v1.05a5.5 5.5 0 1 0-7-5.29Zm2 0c0 1.4.82 2.6 2 3.16V9.5a2.5 2.5 0 1 1 3 0v1.16a3.5 3.5 0 1 0-5-3.16Z\"]);\nexport const DoubleTapSwipeDown24Filled = /*#__PURE__*/createFluentIcon('DoubleTapSwipeDown24Filled', \"24\", [\"M12.7 21.7a1 1 0 0 1-1.4 0l-3-3a1 1 0 1 1 1.4-1.4l1.3 1.29V9a1 1 0 1 1 2 0v9.59l1.3-1.3a1 1 0 0 1 1.4 1.42l-3 3ZM4.5 9a7.5 7.5 0 0 0 5.5 7.23v-2.1a5.5 5.5 0 1 1 4 0v2.1A7.5 7.5 0 1 0 4.5 9Zm3 0a4.5 4.5 0 0 0 2.5 4.03V10.5a2.5 2.5 0 1 1 4 0v2.53A4.5 4.5 0 1 0 7.5 9Z\"]);\nexport const DoubleTapSwipeDown24Regular = /*#__PURE__*/createFluentIcon('DoubleTapSwipeDown24Regular', \"24\", [\"M12.53 21.78c-.3.3-.77.3-1.06 0l-3.5-3.5a.75.75 0 1 1 1.06-1.06l2.22 2.22V8.75a.75.75 0 0 1 1.5 0v10.69l2.22-2.22a.75.75 0 1 1 1.06 1.06l-3.5 3.5ZM5 9a7 7 0 0 0 5.25 6.78v-1.56a5.5 5.5 0 1 1 3.5 0v1.56A7 7 0 1 0 5 9Zm2.5 0a4.5 4.5 0 0 0 2.75 4.15v-1.71a3 3 0 1 1 3.5 0v1.7A4.5 4.5 0 1 0 7.5 9Z\"]);\nexport const DoubleTapSwipeUp20Filled = /*#__PURE__*/createFluentIcon('DoubleTapSwipeUp20Filled', \"20\", [\"M10.53 2.22a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l1.22-1.22v7.69a.75.75 0 0 0 1.5 0V4.56l1.22 1.22a.75.75 0 1 0 1.06-1.06l-2.5-2.5ZM4.25 12.5a5.75 5.75 0 0 1 4-5.48v1.6a4.25 4.25 0 1 0 3.5 0v-1.6a5.75 5.75 0 1 1-7.5 5.48Zm2.5 0c0-1.15.6-2.16 1.5-2.74v2.74a1.75 1.75 0 1 0 3.5 0V9.76a3.25 3.25 0 1 1-5 2.74Z\"]);\nexport const DoubleTapSwipeUp20Regular = /*#__PURE__*/createFluentIcon('DoubleTapSwipeUp20Regular', \"20\", [\"M10.35 2.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L9.5 3.71v8.79a.5.5 0 0 0 1 0V3.7l2.15 2.15a.5.5 0 0 0 .7-.7l-3-3ZM4.5 12.5a5.5 5.5 0 0 1 4-5.3v1.06a4.5 4.5 0 1 0 3 0V7.2a5.5 5.5 0 1 1-7 5.29Zm2 0c0-1.4.82-2.6 2-3.16v1.16a2.5 2.5 0 1 0 3 0V9.34a3.5 3.5 0 1 1-5 3.16Z\"]);\nexport const DoubleTapSwipeUp24Filled = /*#__PURE__*/createFluentIcon('DoubleTapSwipeUp24Filled', \"24\", [\"M12.7 2.3a1 1 0 0 0-1.4 0l-3 3a1 1 0 0 0 1.4 1.4L11 5.42V15a1 1 0 1 0 2 0V5.41l1.3 1.3a1 1 0 1 0 1.4-1.42l-3-3ZM4.5 15A7.5 7.5 0 0 1 10 7.77v2.1a5.5 5.5 0 1 0 4 0v-2.1A7.5 7.5 0 1 1 4.5 15Zm3 0a4.5 4.5 0 0 1 2.5-4.03v2.53a2.5 2.5 0 1 0 4 0v-2.53A4.5 4.5 0 1 1 7.5 15Z\"]);\nexport const DoubleTapSwipeUp24Regular = /*#__PURE__*/createFluentIcon('DoubleTapSwipeUp24Regular', \"24\", [\"M12.53 2.22a.75.75 0 0 0-1.06 0l-3.5 3.5a.75.75 0 0 0 1.06 1.06l2.22-2.22v10.69a.75.75 0 0 0 1.5 0V4.56l2.22 2.22a.75.75 0 1 0 1.06-1.06l-3.5-3.5ZM5 15a7 7 0 0 1 5.25-6.78v1.56a5.5 5.5 0 1 0 3.5 0V8.22A7 7 0 1 1 5 15Zm2.5 0a4.5 4.5 0 0 1 2.75-4.15v1.71a3 3 0 1 0 3.5 0v-1.7A4.5 4.5 0 1 1 7.5 15Z\"]);\nexport const Drafts16Filled = /*#__PURE__*/createFluentIcon('Drafts16Filled', \"16\", [\"M13.98 2a2.62 2.62 0 0 0-3.71 0l-.78.78 3.7 3.71.8-.79a2.62 2.62 0 0 0-.01-3.7ZM2.8 9.49l5.98-6 3.71 3.7-5.98 6a1.5 1.5 0 0 1-.56.36L2 14.96a.75.75 0 0 1-.96-.96l1.42-3.96c.08-.2.2-.4.35-.55ZM1.5 2h7.36l-1 1H1.5a.5.5 0 0 1 0-1Zm0 2h5.36l-1 1H1.5a.5.5 0 0 1 0-1Zm0 2h3.37l-1 1H1.5a.5.5 0 0 1 0-1Z\"]);\nexport const Drafts16Regular = /*#__PURE__*/createFluentIcon('Drafts16Regular', \"16\", [\"M10.27 2a2.62 2.62 0 0 1 3.71 3.7l-7.47 7.5a1.5 1.5 0 0 1-.56.35L2 14.96a.75.75 0 0 1-.96-.96l1.42-3.96c.08-.2.2-.4.35-.55L10.27 2Zm3 .7a1.62 1.62 0 0 0-2.3 0l-.77.8 2.29 2.28.78-.78c.64-.64.63-1.66 0-2.3Zm-1.49 3.8L9.5 4.2l-5.98 6a.5.5 0 0 0-.12.18l-1.24 3.46 3.47-1.23a.5.5 0 0 0 .18-.12l5.98-6ZM8.86 2H1.5a.5.5 0 1 0 0 1h6.36l1-1Zm-2 2H1.5a.5.5 0 1 0 0 1h4.37l1-1Zm-2 2H1.5a.5.5 0 1 0 0 1h2.37l1-1Z\"]);\nexport const Drafts20Filled = /*#__PURE__*/createFluentIcon('Drafts20Filled', \"20\", [\"m15.61 8.32-3.93-3.94-8.04 8.04-.12.13a2 2 0 0 0-.4.76l-1.1 4.06-.02.08a.5.5 0 0 0 .63.53l4.06-1.1.16-.06a2 2 0 0 0 .73-.46l8.03-8.04Zm1.57-5.5a2.78 2.78 0 0 0-3.93 0l-.87.86 3.94 3.93.86-.86.13-.14c.96-1.09.91-2.75-.13-3.8ZM11.65 3H2.5a.5.5 0 0 0 0 1h8.15l1-1Zm-3 3H2.5a.5.5 0 0 0 0 1h5.15l1-1Zm-3 3-1 1H2.5a.5.5 0 1 1 0-1h3.15Z\"]);\nexport const Drafts20Regular = /*#__PURE__*/createFluentIcon('Drafts20Regular', \"20\", [\"m13.25 2.82-9.61 9.6-.12.13a2 2 0 0 0-.4.76l-1.1 4.06-.02.08a.5.5 0 0 0 .63.53l4.06-1.1.16-.06a2 2 0 0 0 .73-.46l9.6-9.6.13-.15a2.78 2.78 0 0 0-4.06-3.8Zm-8.9 10.31 8.04-8.04 2.52 2.52-8.04 8.04-.1.09-.1.07a1 1 0 0 1-.25.1l-3.2.87.87-3.2.04-.13a1 1 0 0 1 .22-.32Zm12.12-9.6.11.11c.59.7.55 1.75-.1 2.4l-.87.87-2.52-2.53.86-.86.12-.1c.7-.59 1.75-.55 2.4.1ZM11.65 3H2.5a.5.5 0 0 0 0 1h8.15l1-1Zm-3 3H2.5a.5.5 0 0 0 0 1h5.15l1-1Zm-4 4 1-1H2.5a.5.5 0 0 0 0 1h2.15Z\"]);\nexport const Drafts24Filled = /*#__PURE__*/createFluentIcon('Drafts24Filled', \"24\", [\"M13.94 5 19 10.06 9.06 20c-.27.28-.62.48-1 .58l-5.11 1.4a.75.75 0 0 1-.92-.93l1.4-5.11c.1-.38.3-.72.57-1L13.94 5Zm-7.41 6-1.5 1.5H2.75a.75.75 0 0 1 0-1.5h3.78Zm14.35-8.17.15.14.15.15a3.58 3.58 0 0 1-.15 4.91l-.97.97L15 3.94l.97-.97a3.58 3.58 0 0 1 4.9-.14ZM10.53 7l-1.5 1.5H2.75a.75.75 0 1 1 0-1.5h7.78Zm4-4-1.5 1.5H2.75a.75.75 0 1 1 0-1.5h11.78Z\"]);\nexport const Drafts24Regular = /*#__PURE__*/createFluentIcon('Drafts24Regular', \"24\", [\"m20.88 2.83.15.14.15.15a3.58 3.58 0 0 1-.15 4.91L9.06 20c-.27.28-.62.48-1 .58l-5.11 1.4a.75.75 0 0 1-.92-.93l1.4-5.11c.1-.38.3-.72.57-1L15.97 2.97a3.58 3.58 0 0 1 4.9-.14ZM15 6.06 5.06 16c-.09.1-.16.2-.19.33l-1.05 3.85 3.85-1.05c.13-.03.24-.1.33-.2L17.94 9 15 6.06ZM6.53 11l-1.5 1.5H2.75a.75.75 0 0 1 0-1.5h3.78Zm4-4-1.5 1.5H2.75a.75.75 0 1 1 0-1.5h7.78Zm6.5-2.97-.97.97L19 7.94l.97-.97a2.08 2.08 0 1 0-2.94-2.94ZM14.53 3l-1.5 1.5H2.75a.75.75 0 1 1 0-1.5h11.78Z\"]);\nexport const Drag20Filled = /*#__PURE__*/createFluentIcon('Drag20Filled', \"20\", [\"M10 2c.2 0 .39.08.53.22l1.5 1.5a.75.75 0 0 1-1.06 1.06l-.22-.22v1.69a.75.75 0 0 1-1.5 0V4.56l-.22.22a.75.75 0 0 1-1.06-1.06l1.5-1.5A.75.75 0 0 1 10 2Zm2 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-9.78-.53a.75.75 0 0 0 0 1.06l1.5 1.5a.75.75 0 0 0 1.06-1.06l-.22-.22h1.69a.75.75 0 0 0 0-1.5H4.56l.22-.22a.75.75 0 0 0-1.06-1.06l-1.5 1.5ZM10 18c.2 0 .39-.08.53-.22l1.5-1.5a.75.75 0 1 0-1.06-1.06l-.22.22v-1.69a.75.75 0 0 0-1.5 0v1.69l-.22-.22a.75.75 0 0 0-1.06 1.06l1.5 1.5c.14.14.33.22.53.22Zm7.78-8.53a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l.22-.22h-1.69a.75.75 0 0 1 0-1.5h1.69l-.22-.22a.75.75 0 0 1 1.06-1.06l1.5 1.5Z\"]);\nexport const Drag20Regular = /*#__PURE__*/createFluentIcon('Drag20Regular', \"20\", [\"M9.65 2.15c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7L10.5 3.71V6.5a.5.5 0 0 1-1 0V3.7L8.35 4.86a.5.5 0 1 1-.7-.7l2-2ZM10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5.85 1.35 2-2a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.7.7l1.14 1.15H13.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7Zm-5.5 5.5 2-2a.5.5 0 0 0-.7-.7l-1.15 1.14V13.5a.5.5 0 0 0-1 0v2.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0Zm-8.2-7.5a.5.5 0 0 1 0-.7l2-2a.5.5 0 1 1 .7.7L3.71 9.5H6.5a.5.5 0 0 1 0 1H3.7l1.15 1.15a.5.5 0 0 1-.7.7l-2-2Z\"]);\nexport const Drag24Filled = /*#__PURE__*/createFluentIcon('Drag24Filled', \"24\", [\"M12 16a1 1 0 0 1 1 .88V18.58l.3-.29a1 1 0 0 1 1.31-.08l.1.08a1 1 0 0 1 .08 1.32l-.08.1-2 2-.05.04-.06.05-.12.08-.1.05-.11.03-.12.03h-.27l-.11-.02-.11-.03-.08-.03-.1-.06-.1-.06a1.01 1.01 0 0 1-.09-.08l-2-2a1 1 0 0 1 1.32-1.5l.1.08.29.3V17a1 1 0 0 1 .88-1H12Zm6.3-6.7a1 1 0 0 1 1.31-.09l.1.08 2 2 .04.05.05.07.08.1.05.12.03.1.03.12v.27l-.02.11-.03.11-.03.08-.06.1-.07.1-.07.09-2 2a1 1 0 0 1-1.5-1.32l.08-.1.3-.29H17a1 1 0 0 1-1-.88V12a1 1 0 0 1 .88-1H18.58l-.29-.3a1 1 0 0 1-.08-1.31l.08-.1Zm-14 0a1 1 0 0 1 1.49 1.31l-.08.1-.3.29H7a1 1 0 0 1 1 .88V12a1 1 0 0 1-.88 1H5.4l.3.3a1 1 0 0 1 .08 1.31l-.08.1a1 1 0 0 1-1.32.08l-.1-.08-2-2-.1-.11-.07-.12-.05-.1-.03-.11-.03-.12v-.06l-.01-.1v-.08l.02-.11.03-.11.04-.11.06-.1.06-.1a1 1 0 0 1 .08-.09l2-2Zm7.7-.05a2.75 2.75 0 1 1 0 5.5 2.75 2.75 0 0 1 0-5.5Zm-.15-7.24h.32l.14.04.11.04.1.06.1.07.09.07 2 2a1 1 0 0 1-1.32 1.5l-.1-.08-.29-.3V7a1 1 0 0 1-.88 1H12a1 1 0 0 1-1-.88V5.4l-.3.3a1 1 0 0 1-1.31.08l-.1-.08a1 1 0 0 1-.08-1.32l.08-.1 2-2 .11-.1.12-.06.1-.06.11-.03.12-.03Z\"]);\nexport const Drag24Regular = /*#__PURE__*/createFluentIcon('Drag24Regular', \"24\", [\"M12 16.5c.38 0 .7.28.74.65l.01.1v2.19l.72-.72c.27-.27.68-.3.98-.07l.08.07c.27.27.3.68.07.98l-.07.08-2 2-.04.04-.07.05-.1.06-.08.03-.1.03h-.19l-.12-.01-.07-.02-.06-.02-.07-.04-.05-.03-.03-.02a.75.75 0 0 1-.08-.07l-2-2a.75.75 0 0 1 .98-1.13l.08.07.72.72v-2.19c0-.38.28-.7.65-.74l.1-.01ZM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm6.72.47a.75.75 0 0 1 .98-.07l.08.07 2 2 .04.04.05.07.06.1.03.08.03.1v.31l-.03.07-.02.06-.04.07-.03.05-.03.04-.06.07-2 2a.75.75 0 0 1-1.13-.98l.07-.08.72-.72h-2.19a.75.75 0 0 1-.74-.65V12c0-.38.27-.7.64-.74l.1-.01h2.19l-.72-.72a.75.75 0 0 1-.07-.98l.07-.08Zm-14.5 0a.75.75 0 0 1 1.13.98l-.07.08-.72.72h2.2c.37 0 .68.28.73.65l.01.1c0 .38-.28.7-.65.74l-.1.01H4.56l.72.72c.27.27.3.68.07.98l-.07.08a.75.75 0 0 1-.98.07l-.08-.07-2-2-.1-.11-.05-.1-.03-.08-.03-.1v-.19l.01-.12.02-.07.02-.06.04-.07.03-.05.02-.03a.75.75 0 0 1 .07-.08l2-2ZM12 10.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-.14-8.49h.07l.09-.01h.06l.1.02.06.02.06.02.07.04.05.03.04.03.07.06 2 2a.75.75 0 0 1-.98 1.13l-.08-.07-.72-.72v2.19c0 .38-.28.7-.65.74l-.1.01a.75.75 0 0 1-.74-.65V4.56l-.73.72a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08 2-2 .11-.1.1-.05.08-.03.1-.03Z\"]);\nexport const DrawImage20Filled = /*#__PURE__*/createFluentIcon('DrawImage20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v9.08c0 .45.55.68.87.36L5.2 14.1l3.74-3.68a1.5 1.5 0 0 1 2.1 0l1.74 1.72 2.31-2.3c.53-.54 1.21-.82 1.9-.85V6a3 3 0 0 0-3-3H6Zm8 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-1 0a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-2.73 7.17 1.82-1.81-1.74-1.71a.5.5 0 0 0-.7 0L5.43 15.3c-.23.23-.01.58.3.47l.32-.11c.7-.26 1.76-.55 2.75-.16.28.12.5.28.68.48.15-.5.42-.95.8-1.32Zm.71.7 4.83-4.82a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.22.3c-1.12.33-2.8.23-3.31-.18a1.05 1.05 0 0 1-.32-1.24c.04-.08-.02-.18-.1-.17-.5.07-.9.25-1.3.43-.6.25-1.16.5-1.98.4a1.7 1.7 0 0 1-1.33-.82c-.12-.2.15-.4.36-.28.37.18.83.33 1.22.24.25-.05.57-.19.94-.34.88-.37 2-.85 2.86-.5.64.26.59.98.4 1.33-.03.07 0 .16.07.18.27.06.65.1 1.11.09 0-.05.02-.1.03-.14l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const DrawImage20Regular = /*#__PURE__*/createFluentIcon('DrawImage20Regular', \"20\", [\"M14 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-1 0a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3c-.34.02-.68.1-1 .23V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8.83c0 .17.21.26.34.14l.8-.8 1.05-1.03.2-.2 2.56-2.5a1.5 1.5 0 0 1 2.1 0l1.75 1.7-.71.71-1.74-1.7a.5.5 0 0 0-.7 0l-2.76 2.7-1.85 1.83A1.2 1.2 0 0 1 3 14.83V6Zm.4 11.04c.37.18.83.33 1.22.24.25-.05.57-.19.94-.34.88-.37 2-.85 2.86-.5.64.26.59.98.4 1.33-.03.07 0 .16.07.18.27.06.65.1 1.11.09 0-.05.02-.1.03-.14l.37-1.5c.1-.39.3-.74.58-1.02l4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.22.3c-1.12.33-2.8.23-3.31-.18a1.05 1.05 0 0 1-.32-1.24c.04-.08-.02-.18-.1-.17-.5.07-.9.25-1.3.43-.6.25-1.16.5-1.98.4a1.7 1.7 0 0 1-1.33-.82c-.12-.2.15-.4.36-.28Z\"]);\nexport const DrawImage24Filled = /*#__PURE__*/createFluentIcon('DrawImage24Filled', \"24\", [\"m15.66 14.7-2.08-2.05-.13-.12c-.84-.7-2.06-.7-2.9 0l-.13.12-6.23 6.12a.7.7 0 0 1-1.2-.5V6.25C3 4.45 4.46 3 6.26 3h11.5C19.55 3 21 4.46 21 6.25v4.76c-.93-.08-1.9.24-2.6.95l-2.74 2.73ZM13.5 8.24a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 0 0-4.5 0Zm2.25-.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm-4.28 6.22.09-.07c.26-.2.61-.2.87-.01l.1.08 2.07 2.03-2.11 2.11c-.44.44-.76.98-.93 1.57a3 3 0 0 0-1.41-1.13 2.7 2.7 0 0 0-1.94.04l-.11.04c-.48.17-.87-.41-.53-.8l.2-.24 3.7-3.62Zm7.63-1.05-5.9 5.9c-.35.35-.6.78-.7 1.25l-.44 1.71c-.35.17-.7.2-1.13.1-.13-.02-.18-.17-.13-.29.43-.96-.19-1.77-1.03-2.11-.95-.38-2.22.51-3.29 1.27-.6.42-1.12.8-1.5.87-.52.12-1.16-.12-1.63-.38-.2-.1-.48.08-.38.3.24.52.73 1.12 1.7 1.25.99.12 1.77-.35 2.56-.82.58-.35 1.16-.7 1.82-.8.09-.01.15.1.1.17-.24.48-.35 1.37.22 1.82.85.66 3.24.29 3.83.09l.15-.03 1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const DrawImage24Regular = /*#__PURE__*/createFluentIcon('DrawImage24Regular', \"24\", [\"M21 6.25C21 4.45 19.54 3 17.75 3H6.25A3.25 3.25 0 0 0 3 6.25v12.28c0 1.3 1.57 1.96 2.5 1.05l4.03-3.96.02-.02 1.92-1.89.09-.07c.29-.2.7-.18.96.07l2.08 2.04 1.06-1.06-2.09-2.05-.12-.11a2.25 2.25 0 0 0-3.02.11L5.97 17h.01L4.5 18.46V6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v4.98c.48-.19 1-.26 1.5-.22V6.25Zm-3.5 2.5a2.25 2.25 0 1 0-4.5 0 2.25 2.25 0 0 0 4.5 0Zm-3 0a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm-1.3 9.82 5.9-5.9a2.29 2.29 0 1 1 3.23 3.23l-5.9 5.9c-.34.35-.78.6-1.25.71l-1.83.46-.15.03c-.59.2-2.98.57-3.82-.1-.58-.44-.47-1.33-.22-1.81.04-.08-.02-.18-.1-.17-.67.1-1.25.45-1.83.8-.79.47-1.57.94-2.55.82a2.08 2.08 0 0 1-1.71-1.26c-.1-.21.18-.4.38-.29.47.26 1.11.5 1.64.38.37-.08.9-.45 1.5-.87 1.06-.76 2.33-1.65 3.28-1.27.84.34 1.46 1.15 1.03 2.11-.05.12 0 .27.13.3.42.1.78.06 1.13-.1l.43-1.72c.12-.47.36-.9.7-1.25Z\"]);\nexport const DrawShape20Filled = /*#__PURE__*/createFluentIcon('DrawShape20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3c-.69.03-1.37.31-1.9.84l-4.83 4.83a3.2 3.2 0 0 0-.8 1.31c-.16-.19-.39-.35-.67-.47-.99-.4-2.05-.1-2.75.16a12 12 0 0 0-.41.15c-.38.19-.72.31-1.01.4A1.2 1.2 0 0 1 3.47 16c-.3-.26-.47-.64-.47-1.05V6Zm7.98 9.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.22.3c-1.12.33-2.8.23-3.31-.18a1.05 1.05 0 0 1-.32-1.24c.04-.08-.02-.18-.1-.17-.5.07-.9.25-1.3.43-.6.25-1.16.5-1.98.4a1.7 1.7 0 0 1-1.33-.82c-.12-.2.15-.4.36-.28.37.18.83.33 1.22.24.25-.05.57-.19.94-.34.88-.37 2-.85 2.86-.5.64.26.59.98.4 1.33-.03.07 0 .16.07.18.27.06.65.1 1.11.09 0-.05.02-.1.03-.14l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const DrawShape20Regular = /*#__PURE__*/createFluentIcon('DrawShape20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3c-.34.02-.68.1-1 .23V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9.5a.5.5 0 0 1-1 0V6Zm.4 11.04c.37.18.83.33 1.22.24.25-.05.57-.19.94-.34.88-.37 2-.85 2.86-.5.64.26.59.98.4 1.33-.03.07 0 .16.07.18.27.06.65.1 1.11.09 0-.05.02-.1.03-.14l.37-1.5c.1-.39.3-.74.58-1.02l4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.22.3c-1.12.33-2.8.23-3.31-.18a1.05 1.05 0 0 1-.32-1.24c.04-.08-.02-.18-.1-.17-.5.07-.9.25-1.3.43-.6.25-1.16.5-1.98.4a1.7 1.7 0 0 1-1.33-.82c-.12-.2.15-.4.36-.28Z\"]);\nexport const DrawShape24Filled = /*#__PURE__*/createFluentIcon('DrawShape24Filled', \"24\", [\"M3 6.25C3 4.45 4.45 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v4.76c-.93-.08-1.9.24-2.61.95l-5.9 5.9c-.44.44-.76.98-.93 1.57a3 3 0 0 0-1.42-1.13 2.7 2.7 0 0 0-1.93.04 5.46 5.46 0 0 0-.82.4l-1.7 1.03c-.46.28-.9.37-1.3.34a1.9 1.9 0 0 1-.9-.32c-.38-.25-.5-.68-.5-1V6.25Zm16.1 6.42-5.9 5.9c-.35.35-.6.78-.7 1.25l-.44 1.71c-.35.17-.7.2-1.13.1-.13-.02-.18-.17-.13-.29.43-.96-.19-1.77-1.03-2.11-.95-.38-2.22.51-3.29 1.27-.6.42-1.12.8-1.5.87-.52.12-1.16-.12-1.63-.38-.2-.1-.48.08-.38.3.24.52.73 1.12 1.7 1.25.99.12 1.77-.35 2.56-.82.58-.35 1.16-.7 1.82-.8.09-.01.15.1.1.17-.24.48-.35 1.37.22 1.82.85.66 3.24.29 3.83.09l.15-.03 1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const DrawShape24Regular = /*#__PURE__*/createFluentIcon('DrawShape24Regular', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v13a.75.75 0 0 0 1.5 0v-13c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v4.98c.48-.19 1-.26 1.5-.22V6.25C21 4.45 19.54 3 17.75 3H6.25Zm6.95 15.57 5.9-5.9a2.29 2.29 0 1 1 3.23 3.23l-5.9 5.9c-.34.35-.78.6-1.25.71l-1.83.46-.15.03c-.59.2-2.98.57-3.82-.1-.58-.44-.47-1.33-.22-1.81.04-.08-.02-.18-.1-.17-.67.1-1.25.45-1.83.8-.79.47-1.57.94-2.55.82a2.08 2.08 0 0 1-1.71-1.26c-.1-.21.18-.4.38-.29.47.26 1.11.5 1.64.38.37-.08.9-.45 1.5-.87 1.06-.76 2.33-1.65 3.28-1.27.84.34 1.46 1.15 1.03 2.11-.05.12 0 .27.13.3.42.1.78.06 1.13-.1l.43-1.72c.12-.47.36-.9.7-1.25Z\"]);\nexport const DrawText20Filled = /*#__PURE__*/createFluentIcon('DrawText20Filled', \"20\", [\"M10.14 10.5H6.86L8.5 5.82l1.64 4.68Zm.53 1.5.33.94 1.17-1.17-2.87-8.2a.85.85 0 0 0-1.6 0L4.04 14a.75.75 0 0 0 1.42.5l.87-2.5h4.34Zm5.14-2.45-4.83 4.83a2.2 2.2 0 0 0-.58 1.02l-.38 1.5a.92.92 0 0 0-.02.14 4.6 4.6 0 0 1-1.11-.1c-.07 0-.1-.1-.07-.17.18-.35.24-1.07-.4-1.33-.86-.35-1.98.13-2.86.5-.37.15-.7.29-.95.34-.38.09-.84-.06-1.21-.24-.21-.11-.48.08-.36.28.22.37.61.74 1.32.83.82.1 1.4-.16 1.98-.41.4-.18.8-.36 1.3-.43.08-.01.14.09.11.17-.15.35-.13.9.32 1.24.52.4 2.19.51 3.31.19l1.22-.31c.39-.1.74-.3 1.02-.58l4.83-4.83a1.87 1.87 0 1 0-2.64-2.64Z\"]);\nexport const DrawText20Regular = /*#__PURE__*/createFluentIcon('DrawText20Regular', \"20\", [\"M10.72 11H6.28L8.5 4.79 10.72 11Zm.35 1 .23.64.78-.78-3.02-8.47a.6.6 0 0 0-1.13 0l-3.9 10.95a.5.5 0 0 0 .94.33L5.92 12h5.15Zm4.74-2.45-4.83 4.83a2.2 2.2 0 0 0-.58 1.02l-.38 1.5a.91.91 0 0 0-.02.14 4.6 4.6 0 0 1-1.11-.1c-.07 0-.1-.1-.07-.17.18-.35.24-1.07-.4-1.33-.86-.34-1.98.13-2.86.5-.37.15-.7.29-.95.34-.38.09-.84-.06-1.21-.24-.21-.11-.48.08-.36.28.22.37.61.74 1.32.83.82.1 1.4-.16 1.98-.41.4-.18.8-.36 1.3-.43.08-.01.14.09.11.17-.15.36-.13.9.32 1.24.52.4 2.19.51 3.31.19l1.22-.31c.39-.1.74-.3 1.02-.58l4.83-4.83a1.87 1.87 0 1 0-2.64-2.64Z\"]);\nexport const DrawText24Filled = /*#__PURE__*/createFluentIcon('DrawText24Filled', \"24\", [\"M12.24 13.15H7.76L10 6.75l2.24 6.4Zm.7 2 .33.93 1.57-1.57-3.76-10.75a1.14 1.14 0 0 0-2.15 0L4.06 17.67a1 1 0 1 0 1.88.66l1.12-3.18h5.88Zm.26 2.42 5.9-5.9a2.29 2.29 0 1 1 3.23 3.23l-5.9 5.9c-.34.35-.78.6-1.25.71l-1.83.46-.15.03c-.59.2-2.98.57-3.82-.1-.58-.44-.47-1.33-.22-1.81.04-.08-.02-.18-.1-.17-.67.1-1.25.45-1.83.8-.79.47-1.57.94-2.55.82a2.08 2.08 0 0 1-1.71-1.26c-.1-.21.18-.4.38-.29.47.26 1.11.5 1.64.38.37-.08.9-.45 1.5-.87 1.06-.76 2.33-1.65 3.28-1.27.84.34 1.46 1.15 1.03 2.11-.05.12 0 .27.13.3.42.1.78.06 1.13-.1l.43-1.72c.12-.47.36-.9.7-1.25Z\"]);\nexport const DrawText24Regular = /*#__PURE__*/createFluentIcon('DrawText24Regular', \"24\", [\"M10 5.71 7.23 13.5h5.53L10 5.71Zm3.57 10.07L13.3 15H6.7l-1.24 3.5a.75.75 0 0 1-1.42-.5L9.16 3.6a.89.89 0 0 1 1.68 0l3.9 11-1.17 1.18ZM5 20.38c-.53.11-1.17-.13-1.64-.39-.2-.1-.48.08-.38.3.24.52.73 1.12 1.7 1.25.99.12 1.77-.35 2.56-.82.58-.35 1.16-.7 1.82-.8.09-.01.15.1.1.17-.24.48-.35 1.37.22 1.82.85.66 3.24.29 3.83.09l.15-.03 1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24l-5.9 5.9c-.35.35-.6.78-.7 1.25l-.44 1.71c-.35.17-.7.2-1.13.1-.13-.02-.18-.17-.13-.29.43-.96-.19-1.77-1.03-2.11-.95-.38-2.22.51-3.29 1.27-.6.42-1.12.8-1.5.87Z\"]);\nexport const Drawer20Filled = /*#__PURE__*/createFluentIcon('Drawer20Filled', \"20\", [\"M7.16 3a2 2 0 0 0-1.74 1L4.26 6.05a2 2 0 0 0-.26 1V9a1 1 0 0 0 1 1h.07l-.72 2A1.5 1.5 0 0 0 3 13.5v2c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-2c0-.78-.6-1.42-1.35-1.5l-.72-2H15a1 1 0 0 0 1-1V7.03a2 2 0 0 0-.26-1l-1.16-2.02A2 2 0 0 0 12.84 3H7.16Zm7.41 6-.71-2H15v2h-.43ZM12.8 7l1.78 5H5.42L7.2 7h5.6ZM6.14 7l-.71 2H5V7h1.14Zm2.36 7h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Z\"]);\nexport const Drawer20Regular = /*#__PURE__*/createFluentIcon('Drawer20Regular', \"20\", [\"M8.5 14a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm-4.15-2A1.5 1.5 0 0 0 3 13.5v2c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-2c0-.78-.6-1.42-1.35-1.5l-.72-2H15a1 1 0 0 0 1-1V7.03a2 2 0 0 0-.26-1l-1.16-2.02A2 2 0 0 0 12.84 3H7.16a2 2 0 0 0-1.74 1L4.26 6.05a2 2 0 0 0-.26 1V9a1 1 0 0 0 1 1h.07l-.72 2Zm8.49-8a1 1 0 0 1 .87.5l.85 1.5H5.44l.85-1.5a1 1 0 0 1 .87-.5h5.68Zm-.04 3 1.78 5H5.42L7.2 7h5.6Zm2.7 6c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h11ZM5.43 9H5V7h1.14l-.71 2Zm9.14 0-.71-2H15v2h-.43Z\"]);\nexport const Drawer24Filled = /*#__PURE__*/createFluentIcon('Drawer24Filled', \"24\", [\"M6.4 3.9A2 2 0 0 1 8.08 3h7.86a2 2 0 0 1 1.66.9L19.66 7A2 2 0 0 1 20 8.1V11a1 1 0 0 1-1 1h-.36l.86 2c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-15A1.5 1.5 0 0 1 3 19.5v-4c0-.83.67-1.5 1.5-1.5l.86-2H5a1 1 0 0 1-1-1V8.1A2 2 0 0 1 4.34 7L6.4 3.9ZM6 10.5l.86-2H5.5v2H6Zm9.51-2H8.5l-2.34 5.45.03.05h11.64l.03-.05L15.5 8.5Zm1.63 0 .86 2h.5v-2h-1.36Zm-6.89 8.25a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\"]);\nexport const Drawer24Regular = /*#__PURE__*/createFluentIcon('Drawer24Regular', \"24\", [\"M10.25 16.75a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM8.07 3a2 2 0 0 0-1.66.9L4.34 7A2 2 0 0 0 4 8.1V11a1 1 0 0 0 1 1h.36l-.86 2c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h15c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5l-.86-2H19a1 1 0 0 0 1-1V8.1a2 2 0 0 0-.34-1.1L17.6 3.9a2 2 0 0 0-1.66-.9H8.07ZM18 10.5l-.86-2h1.36v2H18Zm-2.49-2 2.34 5.45-.03.05H6.18l-.03-.05L8.5 8.5h7.02ZM17.86 7H6.14l1.51-2.28a.5.5 0 0 1 .42-.22h7.86a.5.5 0 0 1 .42.22L17.86 7Zm-11 1.5-.86 2h-.5v-2h1.36Zm-2.36 7h15v4h-15v-4Z\"]);\nexport const DrawerAdd20Filled = /*#__PURE__*/createFluentIcon('DrawerAdd20Filled', \"20\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H13v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H14V3.5ZM6 4h2.2c-.08.32-.15.66-.18 1H6a2 2 0 0 0-2 2h4.2c.1.35.24.68.4 1H4v3h3.5c.28 0 .5.22.5.5a2 2 0 1 0 4 0c0-.28.22-.5.5-.5H16v-.6c.36-.18.7-.4 1-.66V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Z\"]);\nexport const DrawerAdd20Regular = /*#__PURE__*/createFluentIcon('DrawerAdd20Regular', \"20\", [\"M13.5 10a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V5h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V6h-1.5a.5.5 0 0 1 0-1H13V3.5c0-.28.22-.5.5-.5ZM17 9.74V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2.2c-.08.32-.15.66-.18 1H6a2 2 0 0 0-2 2h4.2c.1.35.24.68.4 1H4v3h3.5c.28 0 .5.22.5.5a2 2 0 1 0 4 0c0-.28.22-.5.5-.5H16v-.6c.36-.18.7-.4 1-.66ZM14 17a2 2 0 0 0 2-2v-3h-3.04a3 3 0 0 1-5.92 0H4v3c0 1.1.9 2 2 2h8Z\"]);\nexport const DrawerAdd24Filled = /*#__PURE__*/createFluentIcon('DrawerAdd24Filled', \"24\", [\"M22 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM17 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H16V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H17ZM6.25 4h4.25c-.2.47-.34.98-.42 1.5H6.25c-.97 0-1.75.78-1.75 1.75V8h5.67c.13.53.32 1.03.56 1.5H4.5V14h4.56c.38 0 .69.31.69.7v.05a2.25 2.25 0 0 0 4.5 0v-.06c0-.38.31-.69.7-.69h4.55v-1.73a6.52 6.52 0 0 0 1.5-1.08v7.56c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 18.75V7.25C3 5.45 4.46 4 6.25 4Z\"]);\nexport const DrawerAdd24Regular = /*#__PURE__*/createFluentIcon('DrawerAdd24Regular', \"24\", [\"M22 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM17 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H16V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H17Zm4 4.19c-.44.43-.95.8-1.5 1.08V14h-4.56a.7.7 0 0 0-.69.7v.05a2.25 2.25 0 0 1-4.5 0v-.06a.7.7 0 0 0-.7-.69H4.5V9.5h6.23a6.46 6.46 0 0 1-.56-1.5H4.5v-.75c0-.97.78-1.75 1.75-1.75h3.83c.08-.52.22-1.03.42-1.5H6.25A3.25 3.25 0 0 0 3 7.25v11.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-7.56Zm-1.5 4.31v3.25c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h3.83a3.75 3.75 0 0 0 7.35 0h3.82Z\"]);\nexport const DrawerArrowDownload20Filled = /*#__PURE__*/createFluentIcon('DrawerArrowDownload20Filled', \"20\", [\"M9 5.5a4.5 4.5 0 0 1 4-4.47v3.76l-.65-.64a.5.5 0 0 0-.7.7l1.5 1.5c.2.2.5.2.7 0l1.5-1.5a.5.5 0 0 0-.7-.7l-.65.64V1.03A4.5 4.5 0 1 1 9 5.5Zm2 2c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5ZM6 4h2.2c-.08.32-.15.66-.18 1H6a2 2 0 0 0-2 2h4.2c.1.35.24.68.4 1H4v3h3.5c.28 0 .5.22.5.5a2 2 0 1 0 4 0c0-.28.22-.5.5-.5H16v-.6c.36-.18.7-.4 1-.66V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Z\"]);\nexport const DrawerArrowDownload20Regular = /*#__PURE__*/createFluentIcon('DrawerArrowDownload20Regular', \"20\", [\"M9 5.5a4.5 4.5 0 0 1 4-4.47v3.76l-.65-.64a.5.5 0 0 0-.7.7l1.5 1.5c.2.2.5.2.7 0l1.5-1.5a.5.5 0 0 0-.7-.7l-.65.64V1.03A4.5 4.5 0 1 1 9 5.5Zm2 2c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm6 2.24c-.3.26-.64.48-1 .66v.6h-3.5a.5.5 0 0 0-.5.5 2 2 0 1 1-4 0 .5.5 0 0 0-.5-.5H4V8h4.6c-.16-.32-.3-.65-.4-1H4c0-1.1.9-2 2-2h2.02c.03-.34.1-.68.19-1H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9.74ZM16 15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3h3.04a3 3 0 0 0 5.92 0H16v3Z\"]);\nexport const DrawerArrowDownload24Filled = /*#__PURE__*/createFluentIcon('DrawerArrowDownload24Filled', \"24\", [\"M11 6.5a5.5 5.5 0 0 1 5-5.48V6.8l-1.65-1.64a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L17 6.79V1.02a5.5 5.5 0 1 1-6 5.48Zm8.5 3A.5.5 0 0 0 19 9h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5ZM6.25 4h4.25c-.2.48-.34.98-.42 1.5H6.25c-.97 0-1.75.78-1.75 1.75V8h5.67c.13.53.32 1.03.56 1.5H4.5V14h4.56c.38 0 .69.31.69.7v.05a2.25 2.25 0 0 0 4.5 0v-.06c0-.38.31-.69.7-.69h4.55v-1.73a6.52 6.52 0 0 0 1.5-1.08v7.56c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 18.75V7.25C3 5.45 4.46 4 6.25 4Z\"]);\nexport const DrawerArrowDownload24Regular = /*#__PURE__*/createFluentIcon('DrawerArrowDownload24Regular', \"24\", [\"M11 6.5a5.5 5.5 0 0 1 5-5.48V6.8l-1.65-1.64a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7L17 6.79V1.02a5.5 5.5 0 1 1-6 5.48Zm8.5 3A.5.5 0 0 0 19 9h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 .5-.5Zm1.5 1.7c-.44.42-.95.78-1.5 1.07V14h-4.56a.7.7 0 0 0-.69.7v.05a2.25 2.25 0 0 1-4.5 0v-.06a.7.7 0 0 0-.7-.69H4.5V9.5h6.23a6.46 6.46 0 0 1-.56-1.5H4.5v-.75c0-.97.78-1.75 1.75-1.75h3.83c.08-.52.22-1.02.42-1.5H6.25A3.25 3.25 0 0 0 3 7.25v11.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.45 3.25-3.25V11.2Zm-1.5 4.3v3.25c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h3.83a3.75 3.75 0 0 0 7.35 0h3.82Z\"]);\nexport const DrawerDismiss20Filled = /*#__PURE__*/createFluentIcon('DrawerDismiss20Filled', \"20\", [\"M13.5 10a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7L14.21 5.5l1.14 1.15a.5.5 0 0 1-.7.7L13.5 6.21l-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0ZM8.21 4H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9.74c-.3.26-.64.48-1 .66v.6h-3.5a.5.5 0 0 0-.5.5 2 2 0 1 1-4 0 .5.5 0 0 0-.5-.5H4V8h4.6c-.16-.32-.3-.65-.4-1H4c0-1.1.9-2 2-2h2.02c.03-.34.1-.68.19-1Z\"]);\nexport const DrawerDismiss20Regular = /*#__PURE__*/createFluentIcon('DrawerDismiss20Regular', \"20\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L13.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L14.21 5.5l1.14-1.15ZM17 9.75c-.3.25-.64.47-1 .65v.6h-3.5a.5.5 0 0 0-.5.5 2 2 0 1 1-4 0 .5.5 0 0 0-.5-.5H4V8h4.6c-.16-.32-.3-.65-.4-1H4c0-1.1.9-2 2-2h2.02c.03-.34.1-.68.19-1H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9.74ZM16 15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3h3.04a3 3 0 0 0 5.92 0H16v3Z\"]);\nexport const DrawerDismiss24Filled = /*#__PURE__*/createFluentIcon('DrawerDismiss24Filled', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L17.21 6.5l1.64-1.65a.5.5 0 0 0-.7-.7L16.5 5.79l-1.65-1.64ZM6.25 4h4.25c-.2.47-.34.98-.42 1.5H6.25c-.97 0-1.75.78-1.75 1.75V8h5.67c.13.53.32 1.03.56 1.5H4.5V14h4.56c.38 0 .69.31.69.7v.05a2.25 2.25 0 0 0 4.5 0v-.06c0-.38.31-.69.7-.69h4.55v-1.73a6.52 6.52 0 0 0 1.5-1.08v7.56c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 18.75V7.25C3 5.45 4.46 4 6.25 4Z\"]);\nexport const DrawerDismiss24Regular = /*#__PURE__*/createFluentIcon('DrawerDismiss24Regular', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L17.21 6.5l1.64-1.65a.5.5 0 0 0-.7-.7L16.5 5.79l-1.65-1.64ZM21 11.19c-.44.43-.95.8-1.5 1.08V14h-4.56a.7.7 0 0 0-.69.7v.05a2.25 2.25 0 0 1-4.5 0v-.06a.7.7 0 0 0-.7-.69H4.5V9.5h6.23a6.46 6.46 0 0 1-.56-1.5H4.5v-.75c0-.97.78-1.75 1.75-1.75h3.83c.08-.52.22-1.03.42-1.5H6.25A3.25 3.25 0 0 0 3 7.25v11.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-7.56Zm-1.5 4.31v3.25c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h3.83a3.75 3.75 0 0 0 7.35 0h3.82Z\"]);\nexport const DrawerPlay20Filled = /*#__PURE__*/createFluentIcon('DrawerPlay20Filled', \"20\", [\"M8.2 4H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9.74c-.3.26-.64.48-1 .66v.6h-3.5a.5.5 0 0 0-.5.5 2 2 0 1 1-4 0 .5.5 0 0 0-.5-.5H4V8h4.6c-.16-.32-.3-.65-.4-1H4c0-1.1.9-2 2-2h2.02c.03-.34.1-.68.19-1Zm5.3 6a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.76-6.59 2.97 1.65a.5.5 0 0 1 0 .88l-2.97 1.65a.5.5 0 0 1-.74-.44v-3.3a.5.5 0 0 1 .74-.44Z\"]);\nexport const DrawerPlay20Regular = /*#__PURE__*/createFluentIcon('DrawerPlay20Regular', \"20\", [\"M17 9.74V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h2.2c-.08.32-.15.66-.18 1H6a2 2 0 0 0-2 2h4.2c.1.35.24.68.4 1H4v3h3.5c.28 0 .5.22.5.5a2 2 0 1 0 4 0c0-.28.22-.5.5-.5H16v-.6c.36-.18.7-.4 1-.66ZM14 17a2 2 0 0 0 2-2v-3h-3.04a3 3 0 0 1-5.92 0H4v3c0 1.1.9 2 2 2h8Zm-.5-7a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.76-6.59 2.97 1.65a.5.5 0 0 1 0 .88l-2.97 1.65a.5.5 0 0 1-.74-.44v-3.3a.5.5 0 0 1 .74-.44Z\"]);\nexport const DrawerPlay24Filled = /*#__PURE__*/createFluentIcon('DrawerPlay24Filled', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7 2.11c0 .4.42.63.76.43l3.53-2.11a.5.5 0 0 0 0-.86l-3.53-2.12a.5.5 0 0 0-.76.43v4.23ZM6.25 4h4.25c-.2.47-.34.98-.42 1.5H6.25c-.97 0-1.75.78-1.75 1.75V8h5.67c.13.53.32 1.03.56 1.5H4.5V14h4.56c.38 0 .69.31.69.7v.05a2.25 2.25 0 0 0 4.5 0v-.06c0-.38.31-.69.7-.69h4.55v-1.73a6.52 6.52 0 0 0 1.5-1.08v7.56c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 18.75V7.25C3 5.45 4.46 4 6.25 4Z\"]);\nexport const DrawerPlay24Regular = /*#__PURE__*/createFluentIcon('DrawerPlay24Regular', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7 2.11c0 .4.42.63.76.43l3.53-2.11a.5.5 0 0 0 0-.86l-3.53-2.12a.5.5 0 0 0-.76.43v4.23Zm6 2.58c-.44.43-.95.8-1.5 1.08V14h-4.56a.7.7 0 0 0-.69.7v.05a2.25 2.25 0 0 1-4.5 0v-.06a.7.7 0 0 0-.7-.69H4.5V9.5h6.23a6.46 6.46 0 0 1-.56-1.5H4.5v-.75c0-.97.78-1.75 1.75-1.75h3.83c.08-.52.22-1.03.42-1.5H6.25A3.25 3.25 0 0 0 3 7.25v11.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-7.56Zm-1.5 4.31v3.25c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h3.83a3.75 3.75 0 0 0 7.35 0h3.82Z\"]);\nexport const DrawerSubtract20Filled = /*#__PURE__*/createFluentIcon('DrawerSubtract20Filled', \"20\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2 0a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 .5-.5ZM6 4h2.2c-.08.32-.15.66-.18 1H6a2 2 0 0 0-2 2h4.2c.1.35.24.68.4 1H4v3h3.5c.28 0 .5.22.5.5a2 2 0 1 0 4 0c0-.28.22-.5.5-.5H16v-.6c.36-.18.7-.4 1-.66V15a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Z\"]);\nexport const DrawerSubtract20Regular = /*#__PURE__*/createFluentIcon('DrawerSubtract20Regular', \"20\", [\"M18 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2 0a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 .5-.5Zm1 4.24c-.3.26-.64.48-1 .66v.6h-3.5a.5.5 0 0 0-.5.5 2 2 0 1 1-4 0 .5.5 0 0 0-.5-.5H4V8h4.6c-.16-.32-.3-.65-.4-1H4c0-1.1.9-2 2-2h2.02c.03-.34.1-.68.19-1H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V9.74ZM16 15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3h3.04a3 3 0 0 0 5.92 0H16v3Z\"]);\nexport const DrawerSubtract24Filled = /*#__PURE__*/createFluentIcon('DrawerSubtract24Filled', \"24\", [\"M22 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-8.5.5a.5.5 0 0 1 0-1h6a.5.5 0 0 1 0 1h-6ZM6.25 4h4.25c-.2.47-.34.98-.42 1.5H6.25c-.97 0-1.75.78-1.75 1.75V8h5.67c.13.53.32 1.03.56 1.5H4.5V14h4.56c.38 0 .69.31.69.7v.05a2.25 2.25 0 0 0 4.5 0v-.06c0-.38.31-.69.7-.69h4.55v-1.73a6.52 6.52 0 0 0 1.5-1.08v7.56c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 18.75V7.25C3 5.45 4.46 4 6.25 4Z\"]);\nexport const DrawerSubtract24Regular = /*#__PURE__*/createFluentIcon('DrawerSubtract24Regular', \"24\", [\"M22 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-8.5.5a.5.5 0 0 1 0-1h6a.5.5 0 0 1 0 1h-6Zm7.5 4.19c-.44.43-.95.8-1.5 1.08V14h-4.56a.7.7 0 0 0-.69.7v.05a2.25 2.25 0 0 1-4.5 0v-.06a.7.7 0 0 0-.7-.69H4.5V9.5h6.23a6.46 6.46 0 0 1-.56-1.5H4.5v-.75c0-.97.78-1.75 1.75-1.75h3.83c.08-.52.22-1.03.42-1.5H6.25A3.25 3.25 0 0 0 3 7.25v11.5C3 20.55 4.46 22 6.25 22h11.5c1.8 0 3.25-1.46 3.25-3.25v-7.56Zm-1.5 4.31v3.25c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h3.83a3.75 3.75 0 0 0 7.35 0h3.82Z\"]);\nexport const DrinkBeer16Filled = /*#__PURE__*/createFluentIcon('DrinkBeer16Filled', \"16\", [\"M5.25 1C4.01 1 3 2 3 3.25V13.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5V12h.75C13.99 12 15 11 15 9.75v-3.5C15 5.01 14 4 12.75 4H12v-.75C12 2.01 11 1 9.75 1h-4.5ZM12 5h.75c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25H12V5ZM4 3.25C4 2.56 4.56 2 5.25 2h4.5c.69 0 1.25.56 1.25 1.25V4H4v-.75Zm6 3.25v5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0ZM7.5 6c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM6 6.5v5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 1 0Z\"]);\nexport const DrinkBeer16Regular = /*#__PURE__*/createFluentIcon('DrinkBeer16Regular', \"16\", [\"M10 6.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM7.5 6c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM6 6.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM5.25 1C4.01 1 3 2 3 3.25V13.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5V12h.75C13.99 12 15 11 15 9.75v-3.5C15 5.01 14 4 12.75 4H12v-.75C12 2.01 11 1 9.75 1h-4.5ZM12 5h.75c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25H12V5ZM4 3.25C4 2.56 4.56 2 5.25 2h4.5c.69 0 1.25.56 1.25 1.25V4H4v-.75ZM4 5h7v8.5a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5V5Z\"]);\nexport const DrinkBeer20Filled = /*#__PURE__*/createFluentIcon('DrinkBeer20Filled', \"20\", [\"M6.5 2A2.5 2.5 0 0 0 4 4.5v11.75c0 .97.78 1.75 1.75 1.75h7.5c.97 0 1.75-.78 1.75-1.75V15h.5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 5H15v-.5A2.5 2.5 0 0 0 12.5 2h-6ZM15 6h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5H15V6ZM5 4.5C5 3.67 5.67 3 6.5 3h6c.83 0 1.5.67 1.5 1.5V5H5v-.5ZM12.5 8v6a.5.5 0 0 1-1 0V8a.5.5 0 0 1 1 0Zm-3-.5c.28 0 .5.22.5.5v6a.5.5 0 0 1-1 0V8c0-.28.22-.5.5-.5Zm-2 .5v6a.5.5 0 0 1-1 0V8a.5.5 0 0 1 1 0Z\"]);\nexport const DrinkBeer20Regular = /*#__PURE__*/createFluentIcon('DrinkBeer20Regular', \"20\", [\"M12.5 8a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V8Zm-3-.5c.28 0 .5.22.5.5v6a.5.5 0 0 1-1 0V8c0-.28.22-.5.5-.5Zm-2 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V8Zm-1-6A2.5 2.5 0 0 0 4 4.5v11.75c0 .97.78 1.75 1.75 1.75h7.5c.97 0 1.75-.78 1.75-1.75V15h.5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 5H15v-.5A2.5 2.5 0 0 0 12.5 2h-6ZM15 6h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5H15V6ZM5 4.5C5 3.67 5.67 3 6.5 3h6c.83 0 1.5.67 1.5 1.5V5H5v-.5ZM5 6h9v10.25c0 .41-.34.75-.75.75h-7.5a.75.75 0 0 1-.75-.75V6Z\"]);\nexport const DrinkBeer24Filled = /*#__PURE__*/createFluentIcon('DrinkBeer24Filled', \"24\", [\"M7.25 2A3.25 3.25 0 0 0 4 5.25v14.5C4 20.99 5 22 6.25 22h9c1.24 0 2.25-1 2.25-2.25V18h1.25c1.8 0 3.25-1.46 3.25-3.25v-5.5C22 7.45 20.54 6 18.75 6H17.5v-.75c0-1.8-1.46-3.25-3.25-3.25h-7Zm11.5 14.5H17.5v-9h1.25c.97 0 1.75.78 1.75 1.75v5.5c0 .97-.78 1.75-1.75 1.75ZM16 6H5.5v-.75c0-.97.78-1.75 1.75-1.75h7c.97 0 1.75.78 1.75 1.75V6Zm-7.5 4v7A.75.75 0 0 1 7 17v-7a.75.75 0 0 1 1.5 0Zm3 0v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 1.5 0Zm3 0v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 1.5 0Z\"]);\nexport const DrinkBeer24Regular = /*#__PURE__*/createFluentIcon('DrinkBeer24Regular', \"24\", [\"M8.5 10A.75.75 0 0 0 7 10v7a.75.75 0 0 0 1.5 0v-7Zm3 0a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0v-7Zm3 0a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0v-7ZM4 5.25C4 3.45 5.46 2 7.25 2h7c1.8 0 3.25 1.46 3.25 3.25V6h1.25C20.55 6 22 7.46 22 9.25v5.5c0 1.8-1.46 3.25-3.25 3.25H17.5v1.75c0 1.24-1 2.25-2.25 2.25h-9C5.01 22 4 21 4 19.75V5.25ZM16 7.5H5.5v12.25c0 .41.34.75.75.75h9c.41 0 .75-.34.75-.75V7.5Zm1.5 9h1.25c.97 0 1.75-.78 1.75-1.75v-5.5c0-.97-.78-1.75-1.75-1.75H17.5v9ZM16 5.25c0-.97-.78-1.75-1.75-1.75h-7c-.97 0-1.75.78-1.75 1.75V6H16v-.75Z\"]);\nexport const DrinkBottle20Filled = /*#__PURE__*/createFluentIcon('DrinkBottle20Filled', \"20\", [\"M7 3.5c0 .64.4 1.18.96 1.4-.12.5-.47.88-1 1.43l-.33.34a4.3 4.3 0 0 0-1.62 3.61L5 10.5v5a2.5 2.5 0 0 0 3.75 2.17 2.49 2.49 0 0 0 2.5 0A2.5 2.5 0 0 0 15 15.5v-5l-.01-.22a4.07 4.07 0 0 0-.67-2.56c-.4-.6-.86-1.04-1.24-1.42l-.01-.01c-.55-.54-.9-.9-1.02-1.4A1.5 1.5 0 0 0 11.5 2h-3C7.67 2 7 2.67 7 3.5Zm-1 12V15h8v.5a1.5 1.5 0 0 1-2.44 1.17.5.5 0 0 0-.62 0 1.5 1.5 0 0 1-1.88 0 .5.5 0 0 0-.62 0A1.5 1.5 0 0 1 6 15.5ZM8.96 5h2.09c.16.86.74 1.43 1.27 1.96l.05.04H7.7l.02-.01C8.24 6.45 8.8 5.87 8.96 5Zm2.54-1h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1Z\"]);\nexport const DrinkBottle20Regular = /*#__PURE__*/createFluentIcon('DrinkBottle20Regular', \"20\", [\"M8.5 2h3a1.5 1.5 0 0 1 .55 2.9c.12.48.47.85 1.02 1.39l.01.01c.38.38.84.83 1.24 1.42l.02.05a4.14 4.14 0 0 1 .65 2.51l.01.22v5a2.5 2.5 0 0 1-3.75 2.17 2.49 2.49 0 0 1-2.5 0A2.5 2.5 0 0 1 5 15.5v-5l.01-.22L5 10a4.3 4.3 0 0 1 1.63-3.33l.33-.34c.53-.55.88-.92 1-1.43A1.5 1.5 0 0 1 8.5 2ZM14 14v-3.66a3.09 3.09 0 0 0-.53-2.1 5.2 5.2 0 0 0-.18-.24H6.72A3.2 3.2 0 0 0 6 10.34L6 10.5V14h8Zm-8 1v.5a1.5 1.5 0 0 0 2.44 1.17.5.5 0 0 1 .62 0 1.5 1.5 0 0 0 1.88 0 .5.5 0 0 1 .62 0A1.5 1.5 0 0 0 14 15.5V15H6Zm5.05-10h-2.1c-.15.87-.7 1.45-1.23 1.99L7.7 7h4.67l-.05-.04c-.53-.53-1.1-1.1-1.27-1.96ZM8.5 4h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0 0 1Z\"]);\nexport const DrinkBottle32Filled = /*#__PURE__*/createFluentIcon('DrinkBottle32Filled', \"32\", [\"M11 4.5A2.5 2.5 0 0 1 13.5 2h5a2.5 2.5 0 0 1 .88 4.84c.2 1.02.88 1.86 1.9 2.87a8.99 8.99 0 0 1 3.72 7.4V26a4 4 0 0 1-6.5 3.12 3.98 3.98 0 0 1-5 0A4 4 0 0 1 7 26v-8.8a4.3 4.3 0 0 1 0-.2 8.97 8.97 0 0 1 3.3-6.97c1.22-1.18 2.03-2.08 2.24-3.22A2.5 2.5 0 0 1 11 4.5Zm2.5-.5a.5.5 0 1 0 0 1h5a.5.5 0 0 0 0-1h-5Zm-1.33 7h7.57c-1.02-1.02-2.03-2.2-2.33-3.8h-2.9c-.31 1.6-1.31 2.78-2.34 3.8ZM9 26a2 2 0 0 0 3.67 1.1 1 1 0 0 1 1.66 0 2 2 0 0 0 3.34 0 1 1 0 0 1 1.66 0A2 2 0 0 0 23 26v-2H9v2Z\"]);\nexport const DrinkBottle32Regular = /*#__PURE__*/createFluentIcon('DrinkBottle32Regular', \"32\", [\"M13.5 2a2.5 2.5 0 0 0-.96 4.81c-.2 1.14-1.02 2.04-2.23 3.22A9.04 9.04 0 0 0 7 17.2V26a4 4 0 0 0 6.5 3.12 3.98 3.98 0 0 0 5 0A4 4 0 0 0 25 26v-9c0-3-1.47-5.65-3.72-7.29-1.02-1.01-1.7-1.85-1.9-2.87A2.5 2.5 0 0 0 18.5 2h-5ZM13 4.5c0-.28.23-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm6.74 6.5h-7.57c1.03-1.02 2.03-2.2 2.33-3.8h2.91c.3 1.6 1.31 2.78 2.33 3.8Zm-9.49 2h11.5A6.97 6.97 0 0 1 23 17.2V22H9v-4.8a2.22 2.22 0 0 1 0-.2c0-1.49.46-2.87 1.25-4ZM9 24h14v2a2 2 0 0 1-3.67 1.1 1 1 0 0 0-1.66 0 2 2 0 0 1-3.34 0 1 1 0 0 0-1.66 0A2 2 0 0 1 9 26v-2Z\"]);\nexport const DrinkBottleOff20Filled = /*#__PURE__*/createFluentIcon('DrinkBottleOff20Filled', \"20\", [\"m15 15.7 2.15 2.15a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7L6.28 7a4.24 4.24 0 0 0-1.27 3.29L5 10.5v5a2.5 2.5 0 0 0 3.75 2.17 2.49 2.49 0 0 0 2.5 0 2.49 2.49 0 0 0 3.74-1.97ZM6 15h8v.5a1.5 1.5 0 0 1-2.44 1.17.5.5 0 0 0-.62 0 1.5 1.5 0 0 1-1.88 0 .5.5 0 0 0-.62 0A1.5 1.5 0 0 1 6 15.5V15Zm9-4.5v2.38L9.12 7h3.25l-.05-.04c-.53-.53-1.1-1.1-1.27-1.96h-2.1c-.08.5-.3.9-.58 1.25l-.71-.71c.14-.2.24-.41.3-.64A1.5 1.5 0 0 1 8.5 2h3a1.5 1.5 0 0 1 .55 2.9c.12.48.47.85 1.02 1.39l.01.01c.38.38.84.83 1.24 1.42l.02.05a4.14 4.14 0 0 1 .65 2.51l.01.22ZM8.5 4h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0 0 1Z\"]);\nexport const DrinkBottleOff20Regular = /*#__PURE__*/createFluentIcon('DrinkBottleOff20Regular', \"20\", [\"M6.28 6.99 2.15 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-2.16-2.15a2.5 2.5 0 0 1-3.74 1.97 2.49 2.49 0 0 1-2.5 0A2.5 2.5 0 0 1 5 15.5v-5l.01-.22a4.11 4.11 0 0 1 1.27-3.29ZM13.3 14l-6-6h-.57A3.2 3.2 0 0 0 6 10.34L6 10.5V14h7.3ZM6 15v.5a1.5 1.5 0 0 0 2.44 1.17.5.5 0 0 1 .62 0 1.5 1.5 0 0 0 1.88 0 .5.5 0 0 1 .62 0A1.5 1.5 0 0 0 14 15.5V15H6Zm8-4.5v1.38l1 1V10.5l-.01-.22a4.07 4.07 0 0 0-.67-2.56c-.4-.6-.86-1.04-1.24-1.42l-.01-.01c-.55-.54-.9-.9-1.02-1.4A1.5 1.5 0 0 0 11.5 2h-3a1.5 1.5 0 0 0-.54 2.9c-.06.23-.16.43-.3.64l.71.71c.28-.35.5-.75.59-1.25h2.09c.16.86.74 1.43 1.27 1.96l.05.04H9.12l1 1h3.17a5.2 5.2 0 0 1 .19.27 3.15 3.15 0 0 1 .51 2.07l.01.16ZM8.5 4a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1h-3Z\"]);\nexport const DrinkBottleOff32Filled = /*#__PURE__*/createFluentIcon('DrinkBottleOff32Filled', \"32\", [\"m24.98 26.4 3.31 3.3a1 1 0 0 0 1.42-1.4l-26-26a1 1 0 0 0-1.42 1.4l7.14 7.15a9.1 9.1 0 0 0-.3.34A8.97 8.97 0 0 0 7 17.2V26a4 4 0 0 0 6.5 3.12 3.98 3.98 0 0 0 5 0 4 4 0 0 0 6.48-2.73Zm-2.4-2.4.42.41V26a2 2 0 0 1-3.67 1.1 1 1 0 0 0-1.66 0 2 2 0 0 1-3.34 0 1 1 0 0 0-1.66 0A2 2 0 0 1 9 26v-2h13.59ZM25 17.2v4.26L14.54 11h5.2c-1.02-1.02-2.02-2.2-2.33-3.8h-2.9a6 6 0 0 1-1.22 2.55l-1.43-1.43c.35-.48.58-.97.68-1.51A2.5 2.5 0 0 1 13.5 2h5a2.5 2.5 0 0 1 .88 4.84c.2 1.02.88 1.86 1.9 2.87a8.99 8.99 0 0 1 3.72 7.4v.09ZM13.5 4a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const DrinkBottleOff32Regular = /*#__PURE__*/createFluentIcon('DrinkBottleOff32Regular', \"32\", [\"M9.43 10.85 2.3 3.7a1 1 0 0 1 1.42-1.42l26 26a1 1 0 0 1-1.42 1.42L25 26.39a4 4 0 0 1-6.49 2.73 3.98 3.98 0 0 1-5 0A4 4 0 0 1 7 26v-8.8a4.2 4.2 0 0 1 0-.2 8.97 8.97 0 0 1 2.43-6.15ZM22.6 24H9v2a2 2 0 0 0 3.67 1.1 1 1 0 0 1 1.66 0 2 2 0 0 0 3.34 0 1 1 0 0 1 1.66 0A2 2 0 0 0 23 26v-1.59l-.41-.41Zm-2-2-9-9h-1.34A6.96 6.96 0 0 0 9 17.2V22h11.59ZM23 17.2v2.26l2 2V17c0-3-1.47-5.65-3.71-7.29-1.03-1.01-1.71-1.85-1.91-2.87A2.5 2.5 0 0 0 18.5 2h-5a2.5 2.5 0 0 0-.96 4.81c-.1.54-.33 1.03-.68 1.51l1.43 1.43A6 6 0 0 0 14.5 7.2h2.91c.3 1.6 1.31 2.78 2.33 3.8h-5.2l2 2h5.2A6.97 6.97 0 0 1 23 17.1v.03a.6.6 0 0 0 0 .06v.01ZM13 4.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DrinkCoffee16Filled = /*#__PURE__*/createFluentIcon('DrinkCoffee16Filled', \"16\", [\"M3 .5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87L3.8 1.6C3.27 1.2 3 .97 3 .5Zm3 0a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87L6.8 1.6C6.27 1.2 6 .97 6 .5ZM8.5 0c.28 0 .5.22.5.5 0 .47.27.7.8 1.1l.04.03c.47.35 1.16.87 1.16 1.87a.5.5 0 0 1-1 0c0-.47-.27-.7-.8-1.1l-.04-.03C8.69 2.02 8 1.5 8 .5c0-.28.22-.5.5-.5ZM2 5.9c0-.5.4-.9.9-.9h9.2c.5 0 .9.4.9.9V6h.5a2.5 2.5 0 0 1 0 5h-.7A5.5 5.5 0 0 1 2 9.5V5.9ZM12.98 10h.52a1.5 1.5 0 0 0 0-3H13v2.5c0 .17 0 .34-.02.5Z\"]);\nexport const DrinkCoffee16Regular = /*#__PURE__*/createFluentIcon('DrinkCoffee16Regular', \"16\", [\"M2.5 0c.28 0 .5.22.5.5 0 .47.27.7.8 1.1l.04.03C4.31 1.98 5 2.5 5 3.5a.5.5 0 0 1-1 0c0-.47-.27-.7-.8-1.1l-.04-.03C2.69 2.02 2 1.5 2 .5c0-.28.22-.5.5-.5Zm3 0c.28 0 .5.22.5.5 0 .47.27.7.8 1.1l.04.03C7.31 1.98 8 2.5 8 3.5a.5.5 0 0 1-1 0c0-.47-.27-.7-.8-1.1l-.04-.03C5.69 2.02 5 1.5 5 .5c0-.28.22-.5.5-.5ZM9 .5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87L9.8 1.6C9.27 1.2 9 .97 9 .5ZM13 6h.5a2.5 2.5 0 0 1 0 5h-.7A5.5 5.5 0 0 1 2 9.5V5.9c0-.5.4-.9.9-.9h9.2c.5 0 .9.4.9.9V6ZM3 6v3.5a4.5 4.5 0 1 0 9 0V6H3Zm10 1v2.5c0 .17 0 .34-.02.5h.52a1.5 1.5 0 0 0 0-3H13Z\"]);\nexport const DrinkCoffee20Filled = /*#__PURE__*/createFluentIcon('DrinkCoffee20Filled', \"20\", [\"M5 2.5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87L5.8 3.6c-.53-.4-.8-.63-.8-1.1ZM3.93 7a.93.93 0 0 0-.93.93V12a6 6 0 0 0 11.2 3H16a3 3 0 1 0 0-6h-1V7.93a.93.93 0 0 0-.93-.93H3.93ZM16 14h-1.34c.22-.63.34-1.3.34-2v-2h1a2 2 0 1 1 0 4ZM7.5 2c.28 0 .5.22.5.5 0 .47.27.7.8 1.1l.04.03C9.31 3.98 10 4.5 10 5.5a.5.5 0 0 1-1 0c0-.47-.27-.7-.8-1.1l-.04-.03C7.69 4.02 7 3.5 7 2.5c0-.28.22-.5.5-.5Zm3.5.5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87l-.04-.03c-.53-.4-.8-.63-.8-1.1Z\"]);\nexport const DrinkCoffee20Regular = /*#__PURE__*/createFluentIcon('DrinkCoffee20Regular', \"20\", [\"M5 2.5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87L5.8 3.6c-.53-.4-.8-.63-.8-1.1Zm10 5.43V9h1a3 3 0 1 1 0 6h-1.8A6 6 0 0 1 3 12V7.93c0-.51.42-.93.93-.93h10.14c.51 0 .93.42.93.93ZM4 8v4a5 5 0 0 0 10 0V8H4Zm11 4c0 .7-.12 1.37-.34 2H16a2 2 0 1 0 0-4h-1v2ZM7.5 2c.28 0 .5.22.5.5 0 .47.27.7.8 1.1l.04.03C9.31 3.98 10 4.5 10 5.5a.5.5 0 0 1-1 0c0-.47-.27-.7-.8-1.1l-.04-.03C7.69 4.02 7 3.5 7 2.5c0-.28.22-.5.5-.5Zm3.5.5a.5.5 0 0 0-1 0c0 1 .69 1.52 1.16 1.87l.04.03c.53.4.8.63.8 1.1a.5.5 0 0 0 1 0c0-1-.69-1.52-1.16-1.87l-.04-.03c-.53-.4-.8-.63-.8-1.1Z\"]);\nexport const DrinkCoffee24Filled = /*#__PURE__*/createFluentIcon('DrinkCoffee24Filled', \"24\", [\"M5.5 2.75a.75.75 0 0 0-1.5 0c0 1.27.93 1.92 1.5 2.32l.07.04c.68.48.93.7.93 1.14a.75.75 0 0 0 1.5 0c0-1.27-.93-1.92-1.5-2.32l-.07-.04c-.68-.48-.93-.7-.93-1.14ZM4.82 8C3.82 8 3 8.82 3 9.82V14a8 8 0 0 0 15.42 3h1.33a3.25 3.25 0 0 0 0-6.5H19v-.68c0-1-.82-1.82-1.82-1.82H4.82Zm14.93 7.5h-.89c.1-.49.14-.99.14-1.5v-2h.75a1.75 1.75 0 1 1 0 3.5ZM8.75 2c.41 0 .75.34.75.75 0 .43.25.66.93 1.14l.06.04c.58.4 1.51 1.05 1.51 2.32a.75.75 0 0 1-1.5 0c0-.43-.25-.66-.93-1.14l-.06-.04C8.93 4.67 8 4.02 8 2.75c0-.41.34-.75.75-.75Zm4.75.75a.75.75 0 0 0-1.5 0c0 1.27.93 1.92 1.5 2.32l.07.04c.68.48.93.7.93 1.14a.75.75 0 0 0 1.5 0c0-1.27-.93-1.92-1.5-2.32l-.07-.04c-.68-.48-.93-.7-.93-1.14Z\"]);\nexport const DrinkCoffee24Regular = /*#__PURE__*/createFluentIcon('DrinkCoffee24Regular', \"24\", [\"M5.5 2.75a.75.75 0 0 0-1.5 0c0 1.27.93 1.92 1.5 2.32l.07.04c.68.48.93.7.93 1.14a.75.75 0 0 0 1.5 0c0-1.27-.93-1.92-1.5-2.32l-.07-.04c-.68-.48-.93-.7-.93-1.14ZM3 9.82C3 8.82 3.82 8 4.82 8h12.36c1 0 1.82.82 1.82 1.82v.68h.75a3.25 3.25 0 0 1 0 6.5h-1.33A8 8 0 0 1 3 14V9.82Zm14.5 0a.32.32 0 0 0-.32-.32H4.82a.32.32 0 0 0-.32.32V14a6.5 6.5 0 1 0 13 0V9.82ZM19.75 12H19v2c0 .51-.05 1.01-.14 1.5h.89a1.75 1.75 0 1 0 0-3.5Zm-11-10c.41 0 .75.34.75.75 0 .43.25.66.93 1.14l.06.04c.58.4 1.51 1.05 1.51 2.32a.75.75 0 0 1-1.5 0c0-.43-.25-.66-.93-1.14l-.06-.04C8.93 4.67 8 4.02 8 2.75c0-.41.34-.75.75-.75Zm4.75.75a.75.75 0 0 0-1.5 0c0 1.27.93 1.92 1.5 2.32l.07.04c.68.48.93.7.93 1.14a.75.75 0 0 0 1.5 0c0-1.27-.93-1.92-1.5-2.32l-.07-.04c-.68-.48-.93-.7-.93-1.14Z\"]);\nexport const DrinkMargarita16Filled = /*#__PURE__*/createFluentIcon('DrinkMargarita16Filled', \"16\", [\"M13.59 2a.5.5 0 0 0-.18-1l-4.25.76a.5.5 0 0 0-.4.38L8.57 3H3.5a.5.5 0 0 0-.5.5v3c0 1.1.9 2 2 2a3 3 0 0 0 2.5 2.96V14h-2a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-2v-2.54A3 3 0 0 0 11 8.5a2 2 0 0 0 2-2v-3a.5.5 0 0 0-.5-.5H9.6l.07-.32L13.59 2ZM8.35 4l-.22 1H4V4h4.35ZM12 5H9.15l.22-1H12v1Z\"]);\nexport const DrinkMargarita16Regular = /*#__PURE__*/createFluentIcon('DrinkMargarita16Regular', \"16\", [\"M13.59 2a.5.5 0 0 0-.18-1l-4.25.76a.5.5 0 0 0-.4.38L8.57 3H3.5a.5.5 0 0 0-.5.5v3c0 1.1.9 2 2 2a3 3 0 0 0 2.5 2.96V14h-2a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-2v-2.54A3 3 0 0 0 11 8.5a2 2 0 0 0 2-2v-3a.5.5 0 0 0-.5-.5H9.6l.07-.32L13.59 2ZM8.35 4l-.22 1H4V4h4.35ZM4 6h3.9l-.64 2.9a.5.5 0 0 0 .98.2L8.93 6H12v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0-.5.5v.5a2 2 0 0 1-4 0V8a.5.5 0 0 0-.5-.5H5a1 1 0 0 1-1-1V6Zm8-1H9.15l.22-1H12v1Z\"]);\nexport const DrinkMargarita20Filled = /*#__PURE__*/createFluentIcon('DrinkMargarita20Filled', \"20\", [\"M16.1 2.99a.5.5 0 0 0-.2-.98l-4.5 1a.5.5 0 0 0-.38.37l-.29 1.12H4.5A.5.5 0 0 0 4 5v3.5A2.5 2.5 0 0 0 6.5 11H7v.5a3 3 0 0 0 2.5 2.96V17h-2a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-2v-2.54A3 3 0 0 0 13 11.5V11h.5A2.5 2.5 0 0 0 16 8.5V5a.5.5 0 0 0-.5-.5h-3.73l.14-.58 4.2-.93ZM10.49 5.5 10.11 7H5V5.5h5.48ZM15 7h-3.86l.38-1.5H15V7Z\"]);\nexport const DrinkMargarita20Regular = /*#__PURE__*/createFluentIcon('DrinkMargarita20Regular', \"20\", [\"M16.1 2.99a.5.5 0 0 0-.2-.98l-4.5 1a.5.5 0 0 0-.38.37l-.29 1.12H4.5A.5.5 0 0 0 4 5v3.5A2.5 2.5 0 0 0 6.5 11H7v.5a3 3 0 0 0 2.5 2.96V17h-2a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-2v-2.54A3 3 0 0 0 13 11.5V11h.5A2.5 2.5 0 0 0 16 8.5V5a.5.5 0 0 0-.5-.5h-3.73l.14-.58 4.2-.93ZM10.49 5.5 10.11 7H5V5.5h5.48ZM5 8h4.86l-.84 3.38a.5.5 0 0 0 .97.24l.9-3.62H15v.5c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0-.5.5v1a2 2 0 1 1-4 0v-1a.5.5 0 0 0-.5-.5h-1A1.5 1.5 0 0 1 5 8.5V8Zm10-1h-3.86l.38-1.5H15V7Z\"]);\nexport const DrinkMargarita24Filled = /*#__PURE__*/createFluentIcon('DrinkMargarita24Filled', \"24\", [\"M20.49 2.63c.07.4-.2.8-.62.86l-5.49.91-.12.6h3.99c.41 0 .75.34.75.75v4a3.25 3.25 0 0 1-3 3.24v.51a4 4 0 0 1-3.25 3.93v3.07h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5v-3.07A4 4 0 0 1 8 13.5V13a3.25 3.25 0 0 1-3-3.25v-4c0-.41.34-.75.75-.75h6.98l.28-1.4c.07-.3.3-.54.62-.59l6-1c.4-.07.8.2.86.62Zm-8.5 6.12.45-2.25H6.5v2.25h5.48Zm5.51 0V6.5h-3.54l-.45 2.25h3.99Z\"]);\nexport const DrinkMargarita24Regular = /*#__PURE__*/createFluentIcon('DrinkMargarita24Regular', \"24\", [\"M19.87 3.49a.75.75 0 1 0-.24-1.48l-6 1a.75.75 0 0 0-.62.6L12.73 5H5.75a.75.75 0 0 0-.75.75v4a3.25 3.25 0 0 0 3 3.24v.51a4 4 0 0 0 3.25 3.93v3.07h-2.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-2.5v-3.07A4 4 0 0 0 16 13.5V13c1.68-.14 3-1.54 3-3.25v-4a.75.75 0 0 0-.75-.75h-3.99l.12-.6 5.5-.91ZM17.5 8h-3.84l.3-1.5h3.54V8Zm-4.14 1.5h4.14v.25c0 .97-.78 1.75-1.75 1.75h-.5a.75.75 0 0 0-.75.75v1.25a2.5 2.5 0 0 1-5 0v-1.25a.75.75 0 0 0-.75-.75h-.5c-.97 0-1.75-.78-1.75-1.75V9.5h5.34L11 13.6a.75.75 0 1 0 1.48.3l.87-4.4ZM12.14 8H6.5V6.5h5.94l-.3 1.5Z\"]);\nexport const DrinkToGo20Filled = /*#__PURE__*/createFluentIcon('DrinkToGo20Filled', \"20\", [\"M13.85 2.15c.2.2.2.5 0 .7L12.71 4h1.62c.31 0 .6.2.7.5l.92 2.5c.18.48-.18 1-.7 1h-.34l-1.43 8.34A2 2 0 0 1 11.51 18H8.5a2 2 0 0 1-1.97-1.66L5.09 8h-.34a.75.75 0 0 1-.7-1.01l.92-2.5c.1-.3.39-.49.7-.49h5.65a.5.5 0 0 1 .08-.1l1.75-1.75c.2-.2.5-.2.7 0ZM5.11 7h9.78l-.73-2H5.85L5.1 7Z\"]);\nexport const DrinkToGo20Regular = /*#__PURE__*/createFluentIcon('DrinkToGo20Regular', \"20\", [\"M13.85 2.15c.2.2.2.5 0 .7L12.71 4h1.62c.31 0 .6.2.7.5l.92 2.5c.18.48-.18 1-.7 1h-.34l-1.43 8.34A2 2 0 0 1 11.51 18H8.5a2 2 0 0 1-1.97-1.66L5.09 8h-.34a.75.75 0 0 1-.7-1.01l.92-2.5c.1-.3.39-.49.7-.49h5.65a.5.5 0 0 1 .08-.1l1.75-1.75c.2-.2.5-.2.7 0ZM6.1 8l1.4 8.17a1 1 0 0 0 .99.83h3.02a1 1 0 0 0 .99-.83L13.9 8H6.1Zm-1-1h9.79l-.73-2H5.85L5.1 7Z\"]);\nexport const DrinkToGo24Filled = /*#__PURE__*/createFluentIcon('DrinkToGo24Filled', \"24\", [\"M15.72 2.22a.75.75 0 0 1 1.06 1.06L15.56 4.5h2.2c.3 0 .59.2.7.5l1.25 3.5c.17.49-.2 1-.7 1h-1.05l-1.6 10.05A2.89 2.89 0 0 1 13.4 22h-2.8c-1.5 0-2.76-.99-2.97-2.44L6.05 9.5H5a.75.75 0 0 1-.7-1L5.53 5c.11-.3.4-.5.71-.5h7.19l2.28-2.28ZM17.22 6H6.78l-.72 2h11.88l-.72-2Z\"]);\nexport const DrinkToGo24Regular = /*#__PURE__*/createFluentIcon('DrinkToGo24Regular', \"24\", [\"M15.72 2.22a.75.75 0 0 1 1.06 1.06L15.56 4.5h2.2c.3 0 .59.2.7.5l1.25 3.5c.17.49-.2 1-.7 1h-1.05l-1.6 10.05A2.89 2.89 0 0 1 13.4 22h-2.8c-1.5 0-2.76-.99-2.97-2.44L6.05 9.5H5a.75.75 0 0 1-.7-1L5.53 5c.11-.3.4-.5.71-.5h7.19l2.28-2.28Zm.72 7.28H7.56l1.56 9.84c.1.7.69 1.16 1.48 1.16h2.8c.8 0 1.38-.47 1.49-1.17l1.55-9.83Zm.78-3.5H6.78l-.72 2h11.88l-.72-2Z\"]);\nexport const DrinkWine16Filled = /*#__PURE__*/createFluentIcon('DrinkWine16Filled', \"16\", [\"M4.5 1a.5.5 0 0 0-.5.5v5a4 4 0 0 0 3.5 3.97.5.5 0 0 0 0 .03V14H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-3.5a.5.5 0 0 0 0-.03A4 4 0 0 0 12 6.5v-5a.5.5 0 0 0-.5-.5h-7ZM5 4V2h6v2H5Zm5.73 2.3a2.75 2.75 0 0 1-2.17 2.4.5.5 0 0 1-.2-.99A1.75 1.75 0 0 0 9.73 6.2a.5.5 0 0 1 1 .11Z\"]);\nexport const DrinkWine16Regular = /*#__PURE__*/createFluentIcon('DrinkWine16Regular', \"16\", [\"M10.73 6.3a.5.5 0 0 0-1-.1A1.75 1.75 0 0 1 8.36 7.7a.5.5 0 0 0 .2.98 2.75 2.75 0 0 0 2.18-2.39ZM4.5 1a.5.5 0 0 0-.5.5v5a4 4 0 0 0 3.5 3.97.5.5 0 0 0 0 .03V14H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-3.5a.5.5 0 0 0 0-.03A4 4 0 0 0 12 6.5v-5a.5.5 0 0 0-.5-.5h-7ZM5 4V2h6v2H5Zm0 1h6v1.5a3 3 0 0 1-6 0V5Z\"]);\nexport const DrinkWine20Filled = /*#__PURE__*/createFluentIcon('DrinkWine20Filled', \"20\", [\"M5.5 2a.5.5 0 0 0-.5.5V8a5 5 0 0 0 4.5 5v4h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-4.02A5 5 0 0 0 15 8V2.5a.5.5 0 0 0-.5-.5h-9ZM6 5.5V3h8v2.5H6Zm7.45 2.58a3.5 3.5 0 0 1-2.87 2.87.5.5 0 1 1-.16-.99 2.5 2.5 0 0 0 2.05-2.05.5.5 0 0 1 .98.17Z\"]);\nexport const DrinkWine20Regular = /*#__PURE__*/createFluentIcon('DrinkWine20Regular', \"20\", [\"M13.45 8.08a.5.5 0 0 0-.98-.17 2.5 2.5 0 0 1-2.05 2.05.5.5 0 0 0 .16 1 3.5 3.5 0 0 0 2.87-2.88ZM5.5 2a.5.5 0 0 0-.5.5V8a5 5 0 0 0 4.5 5v4h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-4.02A5 5 0 0 0 15 8V2.5a.5.5 0 0 0-.5-.5h-9ZM6 5.5V3h8v2.5H6Zm0 1h8V8a4 4 0 0 1-8 0V6.5Z\"]);\nexport const DrinkWine24Filled = /*#__PURE__*/createFluentIcon('DrinkWine24Filled', \"24\", [\"M6.75 2a.75.75 0 0 0-.75.75v7a5.75 5.75 0 0 0 5 5.7v5.06l-2.25-.01a.75.75 0 0 0 0 1.5l3 .01 3.5-.01a.75.75 0 0 0 0-1.5H12.5v-5.04c3.1-.38 5.5-3.01 5.5-6.21v-6.5a.75.75 0 0 0-.75-.75H6.75Zm.75 5V3.5h9V7h-9Zm8.18 2.7a3.73 3.73 0 0 1-2.91 2.97.5.5 0 0 1-.2-.98 2.74 2.74 0 0 0 2.13-2.17.5.5 0 0 1 .98.19Z\"]);\nexport const DrinkWine24Regular = /*#__PURE__*/createFluentIcon('DrinkWine24Regular', \"24\", [\"M15.93 9.75a.75.75 0 0 0-1.47-.28 2.48 2.48 0 0 1-1.95 1.98.75.75 0 1 0 .31 1.47 3.98 3.98 0 0 0 3.1-3.17ZM6 2.75c0-.41.34-.75.75-.75h10.5c.41 0 .75.34.75.75v6.5c0 3.2-2.4 5.83-5.5 6.2v5.06l2.75-.01a.75.75 0 0 1 0 1.5l-3.5.01-3-.01a.75.75 0 0 1 0-1.5H11v-5.05a5.75 5.75 0 0 1-5-5.7v-7Zm1.5.75v2.75h9V3.5h-9Zm0 6.25C7.5 12.1 9.4 14 11.75 14a4.75 4.75 0 0 0 4.75-4.75v-1.5h-9v2Z\"]);\nexport const DriveTrain20Filled = /*#__PURE__*/createFluentIcon('DriveTrain20Filled', \"20\", [\"M15 2a2 2 0 0 0-2 2v1h-1.59A1.5 1.5 0 0 0 8.6 5H7V4a2 2 0 1 0-4 0v3a2 2 0 1 0 4 0V6h1.59c.15.43.48.76.91.91v6.18a1.5 1.5 0 0 0-.91.91H7v-1a2 2 0 1 0-4 0v3a2 2 0 1 0 4 0v-1h1.59a1.5 1.5 0 0 0 2.82 0H13v1a2 2 0 1 0 4 0v-3a2 2 0 1 0-4 0v1h-1.59a1.5 1.5 0 0 0-.91-.91V6.9c.43-.15.76-.48.91-.91H13v1a2 2 0 1 0 4 0V4a2 2 0 0 0-2-2Z\"]);\nexport const DriveTrain20Regular = /*#__PURE__*/createFluentIcon('DriveTrain20Regular', \"20\", [\"M3 4a2 2 0 1 1 4 0v1h1.59a1.5 1.5 0 0 1 2.82 0H13V4a2 2 0 1 1 4 0v3a2 2 0 1 1-4 0V6h-1.59a1.5 1.5 0 0 1-.91.91v6.18c.43.15.76.48.91.91H13v-1a2 2 0 1 1 4 0v3a2 2 0 1 1-4 0v-1h-1.59a1.5 1.5 0 0 1-2.82 0H7v1a2 2 0 1 1-4 0v-3a2 2 0 1 1 4 0v1h1.59c.15-.43.48-.76.91-.91V6.9A1.5 1.5 0 0 1 8.59 6H7v1a2 2 0 1 1-4 0V4Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 2 0V4a1 1 0 0 0-1-1Zm10 0a1 1 0 0 0-1 1v3a1 1 0 1 0 2 0V4a1 1 0 0 0-1-1ZM5 12a1 1 0 0 0-1 1v3a1 1 0 1 0 2 0v-3a1 1 0 0 0-1-1Zm9 1v3a1 1 0 1 0 2 0v-3a1 1 0 1 0-2 0Z\"]);\nexport const DriveTrain24Filled = /*#__PURE__*/createFluentIcon('DriveTrain24Filled', \"24\", [\"M3 5.5a2.5 2.5 0 0 1 5 0v1h2.06a2 2 0 0 1 3.88 0H16v-1a2.5 2.5 0 0 1 5 0v3a2.5 2.5 0 0 1-5 0V8h-2.27a2 2 0 0 1-.98.85v6.3a2 2 0 0 1 .98.85H16v-.5a2.5 2.5 0 0 1 5 0v3a2.5 2.5 0 0 1-5 0v-1h-2.06a2 2 0 0 1-3.88 0H8v1a2.5 2.5 0 0 1-5 0v-3a2.5 2.5 0 0 1 5 0v.5h2.27a2 2 0 0 1 .98-.85v-6.3a2 2 0 0 1-.98-.85H8v.5a2.5 2.5 0 0 1-5 0v-3Z\"]);\nexport const DriveTrain24Regular = /*#__PURE__*/createFluentIcon('DriveTrain24Regular', \"24\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v3a2.5 2.5 0 0 0 5 0V8h2.27a2 2 0 0 0 .98.85v6.3a2 2 0 0 0-.98.85H8v-.5a2.5 2.5 0 0 0-5 0v3a2.5 2.5 0 0 0 5 0v-1h2.06a2 2 0 0 0 3.88 0H16v1a2.5 2.5 0 0 0 5 0v-3a2.5 2.5 0 0 0-5 0v.5h-2.27a2 2 0 0 0-.98-.85v-6.3a2 2 0 0 0 .98-.85H16v.5a2.5 2.5 0 0 0 5 0v-3a2.5 2.5 0 0 0-5 0v1h-2.06a2 2 0 0 0-3.88 0H8v-1A2.5 2.5 0 0 0 5.5 3Zm-1 2.5a1 1 0 0 1 2 0v3a1 1 0 0 1-2 0v-3Zm1 9a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1Zm12-9a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0v-3Zm1 9a1 1 0 0 1 1 1v3a1 1 0 1 1-2 0v-3a1 1 0 0 1 1-1Z\"]);\nexport const Drop12Filled = /*#__PURE__*/createFluentIcon('Drop12Filled', \"12\", [\"M6 1a.5.5 0 0 1 .35.15c.26.25 1.04 1.03 1.75 2.07A6.99 6.99 0 0 1 9.5 7c0 1.34-.36 2.35-1.02 3.03-.66.69-1.55.97-2.48.97-.93 0-1.82-.28-2.48-.97C2.86 9.35 2.5 8.33 2.5 7c0-1.4.7-2.76 1.4-3.78a14.9 14.9 0 0 1 1.75-2.07A.5.5 0 0 1 6 1Z\"]);\nexport const Drop12Regular = /*#__PURE__*/createFluentIcon('Drop12Regular', \"12\", [\"M6 1a.5.5 0 0 1 .35.15c.26.25 1.04 1.03 1.75 2.07A6.99 6.99 0 0 1 9.5 7c0 1.34-.36 2.35-1.02 3.03-.66.69-1.55.97-2.48.97-.93 0-1.82-.28-2.48-.97C2.86 9.35 2.5 8.33 2.5 7c0-1.4.7-2.76 1.4-3.78a14.9 14.9 0 0 1 1.75-2.07A.5.5 0 0 1 6 1Zm0 1.22c-.34.35-.82.9-1.28 1.56A6.02 6.02 0 0 0 3.5 7c0 1.16.31 1.9.74 2.34.42.44 1.03.66 1.76.66s1.34-.22 1.76-.66C8.2 8.9 8.5 8.16 8.5 7c0-1.1-.56-2.24-1.22-3.22-.46-.66-.94-1.2-1.28-1.56Z\"]);\nexport const Drop16Filled = /*#__PURE__*/createFluentIcon('Drop16Filled', \"16\", [\"M7.65 1.15c.2-.2.5-.2.7 0 .27.26 1.41 1.45 2.5 3C11.92 5.68 13 7.67 13 9.5c0 1.78-.58 3.16-1.52 4.1C10.55 14.54 9.3 15 8 15c-1.3 0-2.55-.46-3.48-1.4A5.63 5.63 0 0 1 3 9.5c0-1.83 1.08-3.82 2.15-5.35a24.33 24.33 0 0 1 2.5-3Z\"]);\nexport const Drop16Regular = /*#__PURE__*/createFluentIcon('Drop16Regular', \"16\", [\"M7.65 1.15c.2-.2.5-.2.7 0 .27.26 1.41 1.45 2.5 3C11.92 5.68 13 7.67 13 9.5c0 1.78-.58 3.16-1.52 4.1C10.55 14.54 9.3 15 8 15c-1.3 0-2.55-.46-3.48-1.4A5.63 5.63 0 0 1 3 9.5c0-1.83 1.08-3.82 2.15-5.35a24.33 24.33 0 0 1 2.5-3ZM5.97 4.72C4.92 6.23 4 8 4 9.5c0 1.56.5 2.67 1.22 3.4.73.73 1.72 1.1 2.78 1.1 1.06 0 2.05-.37 2.78-1.1A4.64 4.64 0 0 0 12 9.5c0-1.5-.92-3.27-1.97-4.78-.77-1.1-1.57-2-2.03-2.5-.46.5-1.26 1.4-2.03 2.5Z\"]);\nexport const Drop20Filled = /*#__PURE__*/createFluentIcon('Drop20Filled', \"20\", [\"M9.65 2.15c.2-.2.5-.2.7 0 .54.53 1.8 2.06 2.95 3.9 1.13 1.82 2.2 4.05 2.2 5.95 0 1.84-.53 3.35-1.5 4.4a5.3 5.3 0 0 1-4 1.6c-1.61 0-3-.54-4-1.6A6.29 6.29 0 0 1 4.5 12c0-1.9 1.07-4.13 2.2-5.95a25.3 25.3 0 0 1 2.95-3.9Z\"]);\nexport const Drop20Regular = /*#__PURE__*/createFluentIcon('Drop20Regular', \"20\", [\"M9.65 2.15c.2-.2.5-.2.7 0 .54.53 1.8 2.06 2.95 3.9 1.13 1.82 2.2 4.05 2.2 5.95 0 1.84-.53 3.35-1.5 4.4a5.3 5.3 0 0 1-4 1.6c-1.61 0-3-.54-4-1.6A6.29 6.29 0 0 1 4.5 12c0-1.9 1.07-4.13 2.2-5.95a25.3 25.3 0 0 1 2.95-3.9Zm-2.1 4.43C6.43 8.38 5.5 10.4 5.5 12c0 1.66.47 2.9 1.24 3.72A4.3 4.3 0 0 0 10 17a4.3 4.3 0 0 0 3.26-1.28A5.3 5.3 0 0 0 14.5 12c0-1.6-.93-3.62-2.05-5.42A26.85 26.85 0 0 0 10 3.24c-.59.67-1.56 1.9-2.45 3.34Z\"]);\nexport const Drop24Filled = /*#__PURE__*/createFluentIcon('Drop24Filled', \"24\", [\"M11.47 2.22c.3-.3.77-.3 1.06 0 .4.4 2 2.13 3.5 4.36C17.5 8.78 19 11.63 19 14.25c0 2.52-.75 4.48-2.04 5.8A6.78 6.78 0 0 1 12 22a6.78 6.78 0 0 1-4.96-1.94C5.74 18.73 5 16.77 5 14.25c0-2.62 1.5-5.46 2.97-7.67 1.5-2.23 3.1-3.96 3.5-4.36Z\"]);\nexport const Drop24Regular = /*#__PURE__*/createFluentIcon('Drop24Regular', \"24\", [\"M11.47 2.22c.3-.3.77-.3 1.06 0 .4.4 2 2.13 3.5 4.36C17.5 8.78 19 11.63 19 14.25c0 2.52-.75 4.48-2.04 5.8A6.78 6.78 0 0 1 12 22a6.78 6.78 0 0 1-4.96-1.94C5.74 18.73 5 16.77 5 14.25c0-2.62 1.5-5.46 2.97-7.67 1.5-2.23 3.1-3.96 3.5-4.36Zm-2.25 5.2c-1.46 2.17-2.72 4.7-2.72 6.83 0 2.23.65 3.77 1.62 4.76.96.98 2.32 1.49 3.88 1.49s2.92-.5 3.88-1.5c.97-.98 1.62-2.52 1.62-4.75 0-2.13-1.26-4.66-2.72-6.83A33.36 33.36 0 0 0 12 3.85c-.65.73-1.74 2.02-2.78 3.57Z\"]);\nexport const Drop28Filled = /*#__PURE__*/createFluentIcon('Drop28Filled', \"28\", [\"M13.47 2.22c.3-.3.77-.3 1.06 0 .52.52 2.5 2.61 4.34 5.32 1.82 2.66 3.63 6.08 3.63 9.21 0 3.04-.92 5.37-2.49 6.95A8.32 8.32 0 0 1 14 26c-2.3 0-4.44-.73-6.01-2.3-1.57-1.58-2.49-3.9-2.49-6.95 0-3.13 1.8-6.55 3.63-9.21 1.85-2.7 3.82-4.8 4.34-5.32Z\"]);\nexport const Drop28Regular = /*#__PURE__*/createFluentIcon('Drop28Regular', \"28\", [\"M13.47 2.22c.3-.3.77-.3 1.06 0 .52.52 2.5 2.61 4.34 5.32 1.82 2.66 3.63 6.08 3.63 9.21 0 3.04-.92 5.37-2.49 6.95A8.32 8.32 0 0 1 14 26c-2.3 0-4.44-.73-6.01-2.3-1.57-1.58-2.49-3.9-2.49-6.95 0-3.13 1.8-6.55 3.63-9.21 1.85-2.7 3.82-4.8 4.34-5.32ZM14 3.84c-.8.87-2.26 2.53-3.63 4.54C8.57 11.02 7 14.1 7 16.75c0 2.74.82 4.65 2.05 5.89A6.83 6.83 0 0 0 14 24.5c1.98 0 3.71-.63 4.95-1.86C20.18 21.4 21 19.49 21 16.75c0-2.65-1.57-5.73-3.37-8.37A41.01 41.01 0 0 0 14 3.84Z\"]);\nexport const Drop48Filled = /*#__PURE__*/createFluentIcon('Drop48Filled', \"48\", [\"M24 4c.33 0 .65.13.88.37l.24.23a68.22 68.22 0 0 1 7.17 8.23c3.13 4.3 6.21 9.88 6.21 15.42 0 5.38-1.6 9.36-4.31 12C31.49 42.85 27.83 44 24 44c-3.83 0-7.48-1.14-10.19-3.76-2.71-2.63-4.31-6.61-4.31-11.99 0-5.54 3.01-11.06 6.11-15.33 2.9-3.98 6-7.06 7.24-8.29l.27-.26c.23-.24.55-.37.88-.37Z\"]);\nexport const Drop48Regular = /*#__PURE__*/createFluentIcon('Drop48Regular', \"48\", [\"M24 4c.33 0 .65.13.88.37l.24.23a68.22 68.22 0 0 1 7.17 8.23c3.13 4.3 6.21 9.88 6.21 15.42 0 5.38-1.6 9.36-4.31 12C31.49 42.85 27.83 44 24 44c-3.83 0-7.48-1.14-10.19-3.76-2.71-2.63-4.31-6.61-4.31-11.99 0-5.54 3.01-11.06 6.11-15.33 2.9-3.98 6-7.06 7.24-8.29l.27-.26c.23-.24.55-.37.88-.37Zm-6.36 10.4C14.6 18.55 12 23.53 12 28.24c0 4.87 1.44 8.14 3.55 10.2 2.13 2.06 5.1 3.05 8.45 3.05 3.35 0 6.32-.99 8.45-3.05 2.11-2.06 3.55-5.33 3.55-10.2 0-4.71-2.67-9.75-5.73-13.95A64.03 64.03 0 0 0 24 7a63.67 63.67 0 0 0-6.36 7.38Z\"]);\nexport const DualScreen20Filled = /*#__PURE__*/createFluentIcon('DualScreen20Filled', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V4H4Zm2 9.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5ZM10.5 4v12H16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-5.5Zm2 9h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Z\"]);\nexport const DualScreen20Regular = /*#__PURE__*/createFluentIcon('DualScreen20Regular', \"20\", [\"M6 13.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM4 4h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm5.5 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V5Zm1 10H16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-5.5v10Z\"]);\nexport const DualScreen24Filled = /*#__PURE__*/createFluentIcon('DualScreen24Filled', \"24\", [\"M20.25 4C21.2 4 22 4.8 22 5.75v12.5c0 .96-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V4.02L13 4h7.25ZM11 4c.08 0 .16 0 .24.02v15.96L11 20H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.78 2.78 4 3.75 4H11ZM9.24 15.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Zm7 0h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1Z\"]);\nexport const DualScreen24Regular = /*#__PURE__*/createFluentIcon('DualScreen24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .96-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.78 2.78 4 3.75 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .25-.11.25-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5v-13Zm3.49 10h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6-1.5Zm-7 0h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6-1.5Z\"]);\nexport const DualScreenAdd20Filled = /*#__PURE__*/createFluentIcon('DualScreenAdd20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-.5 7.5c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenAdd20Regular = /*#__PURE__*/createFluentIcon('DualScreenAdd20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenAdd24Filled = /*#__PURE__*/createFluentIcon('DualScreenAdd24Filled', \"24\", [\"M22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V11.8A6.47 6.47 0 0 0 22 9.97ZM10.02 6a6.63 6.63 0 0 0 1.22 4.32v11.66L11 22H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm-.78 11.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Zm7 0h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V6h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H16v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V7h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4L19.5 6H17V3.4a.5.5 0 0 0-.5-.4Z\"]);\nexport const DualScreenAdd24Regular = /*#__PURE__*/createFluentIcon('DualScreenAdd24Regular', \"24\", [\"M10.02 6a6.63 6.63 0 0 0 .06 1.5H3.75a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5V10.33c.41.57.92 1.07 1.5 1.48v8.69h7.5c.13 0 .25-.11.25-.25v-8.62A6.53 6.53 0 0 0 22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm6.22 11.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6Zm-7 0a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V6h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H16v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V7h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4L19.5 6H17V3.4a.5.5 0 0 0-.5-.4Z\"]);\nexport const DualScreenArrowRight20Filled = /*#__PURE__*/createFluentIcon('DualScreenArrowRight20Filled', \"20\", [\"M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM14.5 11c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenArrowRight20Regular = /*#__PURE__*/createFluentIcon('DualScreenArrowRight20Regular', \"20\", [\"M14.5 1a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 17 5.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 5H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenArrowRight24Filled = /*#__PURE__*/createFluentIcon('DualScreenArrowRight24Filled', \"24\", [\"M22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V11.8A6.47 6.47 0 0 0 22 9.97ZM10.02 6a6.63 6.63 0 0 0 1.22 4.32v11.66L11 22H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm-.78 11.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Zm7 0h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm.3 2.55-.08.04-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07L18.29 6H13.4a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01h4.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.06-.07 2.53-2.53.04-.05.04-.08.03-.08V6.39l-.03-.08-.04-.08-.04-.05-2.53-2.53-.07-.06a.5.5 0 0 0-.49-.04Z\"]);\nexport const DualScreenArrowRight24Regular = /*#__PURE__*/createFluentIcon('DualScreenArrowRight24Regular', \"24\", [\"M10.02 6a6.63 6.63 0 0 0 .06 1.5H3.75a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5V10.33c.41.57.92 1.07 1.5 1.48v8.69h7.5c.13 0 .25-.11.25-.25v-8.62A6.53 6.53 0 0 0 22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm6.22 11.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6Zm-7 0a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm.3 2.55-.08.04-.07.06-.06.07a.5.5 0 0 0 0 .56l.06.07L18.29 6H13.4a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01h4.8l-1.65 1.65-.06.07a.5.5 0 0 0 .7.7l.06-.07 2.53-2.53.04-.05.04-.08.03-.08V6.39l-.03-.08-.04-.08-.04-.05-2.53-2.53-.07-.06a.5.5 0 0 0-.49-.04Z\"]);\nexport const DualScreenArrowUp20Filled = /*#__PURE__*/createFluentIcon('DualScreenArrowUp20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85-2.35-2 2a.5.5 0 0 0 .7.7L14 4.71V7.5a.5.5 0 0 0 1 0V4.7l1.15 1.15a.5.5 0 0 0 .7-.7l-2-2A.5.5 0 0 0 14.5 3a.5.5 0 0 0-.35.14ZM14.5 11c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenArrowUp20Regular = /*#__PURE__*/createFluentIcon('DualScreenArrowUp20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.85-2.35-2 2a.5.5 0 0 0 .7.7L14 4.71V7.5a.5.5 0 0 0 1 0V4.7l1.15 1.15a.5.5 0 0 0 .7-.7l-2-2A.5.5 0 0 0 14.5 3a.5.5 0 0 0-.35.14ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm7.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1Z\"]);\nexport const DualScreenArrowUp24Filled = /*#__PURE__*/createFluentIcon('DualScreenArrowUp24Filled', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6-1.8v4.8a.5.5 0 0 0 1 0V4.7l1.65 1.65a.5.5 0 0 0 .7-.7l-2.5-2.5a.5.5 0 0 0-.7 0l-2.5 2.5a.5.5 0 0 0 .7.7L16 4.71Zm6 15.55V9.97a6.5 6.5 0 0 1-9.26 1.83v10.18L13 22h7.25c.96 0 1.75-.78 1.75-1.75Zm-7.26-2.75h1.6a.75.75 0 0 1 0 1.5H14.64a.75.75 0 0 1 0-1.5h.1ZM10 6.5c0-.17 0-.33.02-.5H3.75C2.78 6 2 6.78 2 7.75v12.5C2 21.2 2.78 22 3.75 22H11c.08 0 .16 0 .24-.02V10.32A6.47 6.47 0 0 1 10 6.5Zm-2.26 11h1.6a.75.75 0 0 1 0 1.5H7.64a.75.75 0 0 1 0-1.5h.1Z\"]);\nexport const DualScreenArrowUp24Regular = /*#__PURE__*/createFluentIcon('DualScreenArrowUp24Regular', \"24\", [\"M22 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6-1.8v4.8a.5.5 0 0 0 1 0V4.7l1.65 1.65a.5.5 0 0 0 .7-.7l-2.5-2.5a.5.5 0 0 0-.7 0l-2.5 2.5a.5.5 0 0 0 .7.7L16 4.71Zm-6 1.8c0-.17 0-.33.02-.5H3.75C2.78 6 2 6.78 2 7.75v12.5C2 21.2 2.78 22 3.75 22h16.5c.96 0 1.75-.78 1.75-1.75V9.97c-.4.64-.91 1.2-1.5 1.66v8.62c0 .14-.12.25-.25.25h-7.5v-8.7c-.58-.4-1.09-.9-1.5-1.47V20.5h-7.5a.25.25 0 0 1-.25-.25V7.75c0-.14.11-.25.25-.25h6.33a6.55 6.55 0 0 1-.08-1Zm6.99 11.75a.75.75 0 0 0-.75-.75h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0 .65-.75Zm-7 0a.75.75 0 0 0-.75-.75h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DualScreenClock20Filled = /*#__PURE__*/createFluentIcon('DualScreenClock20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 3a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1V3.5a.5.5 0 0 0-.5-.5Zm0 8c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenClock20Regular = /*#__PURE__*/createFluentIcon('DualScreenClock20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 3a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1V3.5a.5.5 0 0 0-.5-.5ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenClock24Filled = /*#__PURE__*/createFluentIcon('DualScreenClock24Filled', \"24\", [\"M22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V11.8A6.47 6.47 0 0 0 22 9.97ZM10.02 6a6.63 6.63 0 0 0 1.22 4.32v11.66L11 22H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm-.78 11.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Zm7 0h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1 2a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H16V3.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const DualScreenClock24Regular = /*#__PURE__*/createFluentIcon('DualScreenClock24Regular', \"24\", [\"M10.02 6a6.63 6.63 0 0 0 .06 1.5H3.75a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5V10.33c.41.57.92 1.07 1.5 1.48v8.69h7.5c.13 0 .25-.11.25-.25v-8.62A6.53 6.53 0 0 0 22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm6.22 11.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6Zm-7 0a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1 2a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H16V3.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const DualScreenClosedAlert20Filled = /*#__PURE__*/createFluentIcon('DualScreenClosedAlert20Filled', \"20\", [\"M10.5 5a3 3 0 0 1 6 0v2l1.32 1.12a.5.5 0 0 1-.32.88h-8a.5.5 0 0 1-.32-.88L10.5 7V5Zm3 6a1.5 1.5 0 0 1-1.42-1h2.83c-.2.58-.76 1-1.41 1Zm-4-4.46-.97.82A1.5 1.5 0 0 0 9.5 10h1.52l.12.33A2.5 2.5 0 0 0 14 11.95V15a2 2 0 0 1-2 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h3.5v1.54Z\"]);\nexport const DualScreenClosedAlert20Regular = /*#__PURE__*/createFluentIcon('DualScreenClosedAlert20Regular', \"20\", [\"M10.5 5a3 3 0 0 1 6 0v2l1.32 1.12a.5.5 0 0 1-.32.88h-8a.5.5 0 0 1-.32-.88L10.5 7V5Zm3 6a1.5 1.5 0 0 1-1.42-1h2.83c-.2.58-.76 1-1.41 1ZM6 6h3.5V5H6a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6a2 2 0 0 0 2-2v-3.05a2.52 2.52 0 0 1-1 0V15a1 1 0 0 1-1 1H6V6Z\"]);\nexport const DualScreenClosedAlert24Filled = /*#__PURE__*/createFluentIcon('DualScreenClosedAlert24Filled', \"24\", [\"M16.5 2a4.01 4.01 0 0 1 4 4v2.52l1.38 1.66a.5.5 0 0 1-.38.82h-10a.5.5 0 0 1-.38-.82l1.38-1.66V6a4.01 4.01 0 0 1 4-4ZM5.75 5h5.85c-.06.33-.1.66-.1 1v2.16l-1.15 1.38A1.5 1.5 0 0 0 11.5 12h2.17A3 3 0 0 0 17 13.96v4.79c0 1.24-1 2.25-2.25 2.25h-9a.75.75 0 0 1-.75-.75V5.75c0-.41.34-.75.75-.75Zm9.75 7.73c-.3-.17-.55-.43-.72-.73h3.44a1.98 1.98 0 0 1-2.72.73Z\"]);\nexport const DualScreenClosedAlert24Regular = /*#__PURE__*/createFluentIcon('DualScreenClosedAlert24Regular', \"24\", [\"M16.5 2a4.01 4.01 0 0 1 4 4v2.52l1.38 1.66a.5.5 0 0 1-.38.82h-10a.5.5 0 0 1-.38-.82l1.38-1.66V6a4.01 4.01 0 0 1 4-4ZM5.75 5h5.85c-.06.33-.1.66-.1 1v.5h-5v13h8.25c.41 0 .75-.34.75-.75v-4.92a3 3 0 0 0 1.5.13v4.79c0 1.24-1 2.25-2.25 2.25h-9a.75.75 0 0 1-.75-.75V5.75c0-.41.34-.75.75-.75Zm9.75 7.73c-.3-.17-.55-.43-.72-.73h3.44a1.98 1.98 0 0 1-2.72.73Z\"]);\nexport const DualScreenDesktop20Filled = /*#__PURE__*/createFluentIcon('DualScreenDesktop20Filled', \"20\", [\"M4 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-2v2h1a.5.5 0 0 1 0 1h-2v-6a3 3 0 0 0-3-3H4V4Zm6 14H7.5V8H10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2ZM4 8h2.5v10H4a2 2 0 0 1-2-2v-6c0-1.1.9-2 2-2Zm5.5 7a.5.5 0 0 0 0 1h.5a.5.5 0 0 0 0-1h-.5Zm-6 .5c0 .28.22.5.5.5h.5a.5.5 0 0 0 0-1H4a.5.5 0 0 0-.5.5Z\"]);\nexport const DualScreenDesktop20Regular = /*#__PURE__*/createFluentIcon('DualScreenDesktop20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-2v2h1a.5.5 0 0 1 0 1h-2v-4h3a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3H4V4Zm-2 6c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.5V9H4Zm6 8a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H7.5v8H10Zm-1-2h.5a.5.5 0 0 1 0 1H9a.5.5 0 0 1 0-1Zm-5 .5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DualScreenDesktop24Filled = /*#__PURE__*/createFluentIcon('DualScreenDesktop24Filled', \"24\", [\"M7.5 10v12H3.75c-.92 0-1.67-.7-1.74-1.6L2 20.24v-8.5c0-.92.7-1.67 1.6-1.74l.15-.01H7.5Zm4.75 0c.92 0 1.67.7 1.74 1.6l.01.15v8.5c0 .92-.7 1.67-1.6 1.74l-.15.01H8.5V10h3.75Zm-1.6 8.5h-.6a.75.75 0 0 0 0 1.5h.7a.75.75 0 0 0-.1-1.5Zm-4.76 0h-.6a.75.75 0 0 0 0 1.5H6a.75.75 0 0 0-.1-1.5ZM19.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v9c0 1.2-.93 2.17-2.1 2.24l-.15.01H17v2h1.25a.75.75 0 0 1 .1 1.5H15v-1.5h.5v-2H15v-4A2.5 2.5 0 0 0 12.66 9H4V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h13.5Z\"]);\nexport const DualScreenDesktop24Regular = /*#__PURE__*/createFluentIcon('DualScreenDesktop24Regular', \"24\", [\"M12.25 10c.92 0 1.67.7 1.74 1.6l.01.15v8.5c0 .92-.7 1.67-1.6 1.74l-.15.01h-8.5c-.92 0-1.67-.7-1.74-1.6L2 20.24v-8.5c0-.92.7-1.67 1.6-1.74l.15-.01h8.5ZM7.5 11.5H3.75a.25.25 0 0 0-.24.2l-.01.05v8.5c0 .12.08.22.2.24l.05.01H7.5v-9Zm4.75 0H8.5v9h3.75c.12 0 .22-.08.24-.2l.01-.05v-8.5a.25.25 0 0 0-.2-.24l-.05-.01ZM10.62 18a.75.75 0 0 1 .1 1.5h-.6a.75.75 0 0 1-.1-1.5h.6Zm-4.74 0a.75.75 0 0 1 .1 1.5h-.6a.75.75 0 0 1-.1-1.5h.6ZM19.74 2c1.2 0 2.17.93 2.24 2.1l.01.15v9c0 1.2-.93 2.17-2.1 2.24l-.15.01H17v2h1.25a.75.75 0 0 1 .1 1.5H15v-1.5h.5v-2H15V14h4.75c.38 0 .7-.28.74-.65l.01-.1v-9a.75.75 0 0 0-.75-.75H6.25c-.38 0-.7.28-.74.65l-.01.1V9H4V4.25c0-1.2.93-2.17 2.1-2.24L6.25 2h13.5Z\"]);\nexport const DualScreenDismiss20Filled = /*#__PURE__*/createFluentIcon('DualScreenDismiss20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM14.5 11c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenDismiss20Regular = /*#__PURE__*/createFluentIcon('DualScreenDismiss20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenDismiss24Filled = /*#__PURE__*/createFluentIcon('DualScreenDismiss24Filled', \"24\", [\"M22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V11.8A6.47 6.47 0 0 0 22 9.97ZM10.02 6a6.63 6.63 0 0 0 1.22 4.32v11.66L11 22H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27Zm-.78 11.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Zm7 0h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-2.4 2.97-.08.05-.05.07a.5.5 0 0 0 0 .57l.05.07L15.8 6.5l-1.76 1.77-.06.07a.5.5 0 0 0 0 .57l.06.06.07.06c.17.12.4.12.56 0l.07-.06 1.77-1.76 1.77 1.77.07.05c.17.12.4.12.57 0l.07-.05.05-.07a.5.5 0 0 0 0-.57l-.05-.07L17.2 6.5l1.77-1.77.06-.07a.5.5 0 0 0 0-.57l-.06-.07-.07-.05a.5.5 0 0 0-.57 0l-.07.05L16.5 5.8l-1.77-1.77-.07-.05a.5.5 0 0 0-.5-.05l-.07.05Z\"]);\nexport const DualScreenDismiss24Regular = /*#__PURE__*/createFluentIcon('DualScreenDismiss24Regular', \"24\", [\"M10 6.5c0 .34.03.68.08 1H3.75a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5V10.33c.41.57.92 1.07 1.5 1.48v8.69h7.5c.13 0 .25-.11.25-.25v-8.62A6.53 6.53 0 0 0 22 9.97v10.28c0 .97-.79 1.75-1.75 1.75H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h6.27l-.02.5Zm6.24 11a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6Zm-7 0a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h1.6ZM16.5 1a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-1.84 2.97a.5.5 0 0 0-.57 0l-.07.05-.05.07a.5.5 0 0 0 0 .57l.05.07L15.8 6.5l-1.76 1.77-.06.07a.5.5 0 0 0 0 .57l.06.06.07.06c.17.12.4.12.56 0l.07-.06 1.77-1.76 1.77 1.77.07.05c.17.12.4.12.57 0l.07-.05.05-.07a.5.5 0 0 0 0-.57l-.05-.07L17.2 6.5l1.77-1.77.06-.07a.5.5 0 0 0 0-.57l-.06-.07-.07-.05a.5.5 0 0 0-.57 0l-.07.05L16.5 5.8l-1.77-1.77-.07-.05Z\"]);\nexport const DualScreenGroup20Filled = /*#__PURE__*/createFluentIcon('DualScreenGroup20Filled', \"20\", [\"M10.5 16H16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-5.5v12Zm-1-12H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V4Z\"]);\nexport const DualScreenGroup20Regular = /*#__PURE__*/createFluentIcon('DualScreenGroup20Regular', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4ZM3 6a1 1 0 0 1 1-1h5.5v10H4a1 1 0 0 1-1-1V6Zm7.5 9V5H16a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-5.5Z\"]);\nexport const DualScreenGroup24Filled = /*#__PURE__*/createFluentIcon('DualScreenGroup24Filled', \"24\", [\"M20.25 4C21.22 4 22 4.8 22 5.75v12.5c0 .97-.78 1.75-1.75 1.75h-7.24c-.1 0-.18 0-.26-.02V4.02l.26-.02h7.24Zm-9.24 0c.08 0 .16 0 .24.02v15.96l-.24.02H3.76C2.79 20 2 19.2 2 18.25V5.75C2 4.8 2.79 4 3.76 4H11Z\"]);\nexport const DualScreenGroup24Regular = /*#__PURE__*/createFluentIcon('DualScreenGroup24Regular', \"24\", [\"M12.76 4h7.5C21.21 4 22 4.8 22 5.75v12.5c0 .97-.78 1.75-1.75 1.75H3.75c-.96 0-1.74-.79-1.74-1.75V5.75C2 4.8 2.79 4 3.76 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .24-.11.24-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13Z\"]);\nexport const DualScreenHeader20Filled = /*#__PURE__*/createFluentIcon('DualScreenHeader20Filled', \"20\", [\"M16 16h-5.5V8H18v6a2 2 0 0 1-2 2Zm2-9V6a2 2 0 0 0-2-2h-5.5v3H18ZM9.5 7V4H4a2 2 0 0 0-2 2v1h7.5ZM2 8v6c0 1.1.9 2 2 2h5.5V8H2Z\"]);\nexport const DualScreenHeader20Regular = /*#__PURE__*/createFluentIcon('DualScreenHeader20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm7.5 9V7H3v7a1 1 0 0 0 1 1h5.5Zm1-8v8H16a1 1 0 0 0 1-1V7h-6.5Z\"]);\nexport const DualScreenHeader24Filled = /*#__PURE__*/createFluentIcon('DualScreenHeader24Filled', \"24\", [\"M22 8v10.25c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V8H22ZM11.24 8v11.98L11 20H3.75C2.78 20 2 19.2 2 18.25V8h9.24ZM11 4c.08 0 .16 0 .24.02V7H2V5.75C2 4.8 2.78 4 3.75 4H11Zm9.25 0C21.2 4 22 4.8 22 5.75V7h-9.26V4.02L13 4h7.25Z\"]);\nexport const DualScreenHeader24Regular = /*#__PURE__*/createFluentIcon('DualScreenHeader24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4h9Zm7.75 3h-7.75v11.5h7.5c.13 0 .25-.11.25-.25V7Zm-9.25 0H3.5v11.25c0 .14.11.25.25.25h7.5V7Z\"]);\nexport const DualScreenLock20Filled = /*#__PURE__*/createFluentIcon('DualScreenLock20Filled', \"20\", [\"M14.5 3v1H14a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-.5V3a2 2 0 1 0-4 0Zm1 1V3a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM12 9V6h-1.5v12H16a2 2 0 0 0 2-2v-5h-4a2 2 0 0 1-2-2ZM4 6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V6H4Zm2 9.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6 0c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const DualScreenLock20Regular = /*#__PURE__*/createFluentIcon('DualScreenLock20Regular', \"20\", [\"M14.5 3v1H14a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-.5V3a2 2 0 1 0-4 0Zm1 1V3a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM4 6h8v1h-1.5v10H16a1 1 0 0 0 1-1v-5h1v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2Zm2 9.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm-3-8H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7Z\"]);\nexport const DualScreenLock24Filled = /*#__PURE__*/createFluentIcon('DualScreenLock24Filled', \"24\", [\"M17 5h-.5A1.5 1.5 0 0 0 15 6.5v5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H22V4a2.5 2.5 0 0 0-5 0v1Zm1.5-1a1 1 0 1 1 2 0v1h-2V4Zm2 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM13 6h1.05c-.03.16-.05.33-.05.5v5a2.5 2.5 0 0 0 2.5 2.5H22v6.25c0 .96-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V6.02L13 6Zm3.24 11.5h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM11 6c.08 0 .16 0 .24.02v15.96L11 22H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6H11ZM9.24 17.5h-1.6a.75.75 0 0 0 0 1.5H9.34a.75.75 0 0 0 0-1.5h-.1Z\"]);\nexport const DualScreenLock24Regular = /*#__PURE__*/createFluentIcon('DualScreenLock24Regular', \"24\", [\"M17 5V4a2.5 2.5 0 0 1 5 0v1h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-5A1.5 1.5 0 0 1 16.5 5h.5Zm1.5-1v1h2V4a1 1 0 1 0-2 0Zm2 4.9a1 1 0 1 0 0 .2.98.98 0 0 0 0-.2ZM7.74 17.5h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Zm5-11.5h1.3c-.02.16-.04.33-.04.5v1h-1.25v13h7.5c.13 0 .25-.11.25-.25V14H22v6.25c0 .96-.79 1.75-1.75 1.75H3.75C2.78 22 2 21.2 2 20.25V7.75C2 6.78 2.78 6 3.75 6h9Zm-1.5 1.5H3.76a.25.25 0 0 0-.25.25v12.5c0 .13.11.25.25.25h7.5v-13Zm3.5 10h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Z\"]);\nexport const DualScreenMirror20Filled = /*#__PURE__*/createFluentIcon('DualScreenMirror20Filled', \"20\", [\"M10.5 16H16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-5.5v12Zm-1-12H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V4ZM5.75 8c.18 0 .34.1.43.25l1.75 3a.5.5 0 0 1-.43.75H4a.5.5 0 0 1-.43-.75l1.75-3A.5.5 0 0 1 5.75 8Zm8.93.25 1.75 3A.5.5 0 0 1 16 12h-3.5a.5.5 0 0 1-.43-.75l1.75-3a.5.5 0 0 1 .86 0Z\"]);\nexport const DualScreenMirror20Regular = /*#__PURE__*/createFluentIcon('DualScreenMirror20Regular', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4ZM3 6a1 1 0 0 1 1-1h5.5v10H4a1 1 0 0 1-1-1V6Zm7.5 9V5H16a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-5.5ZM6.25 8c.18 0 .34.1.43.25l1.75 3A.5.5 0 0 1 8 12H4.5a.5.5 0 0 1-.43-.75l1.75-3A.5.5 0 0 1 6.25 8Zm.88 3-.88-1.5-.88 1.5h1.76Zm7.05-2.75 1.75 3a.5.5 0 0 1-.43.75H12a.5.5 0 0 1-.43-.75l1.75-3a.5.5 0 0 1 .86 0Zm.45 2.75-.88-1.5-.88 1.5h1.76Z\"]);\nexport const DualScreenMirror24Filled = /*#__PURE__*/createFluentIcon('DualScreenMirror24Filled', \"24\", [\"M20.25 4C21.22 4 22 4.8 22 5.75v12.5c0 .97-.78 1.75-1.75 1.75h-7.24c-.1 0-.18 0-.26-.02V4.02l.26-.02h7.24Zm-2.08 5.42a.75.75 0 0 0-1.34 0l-2.25 4.5a.75.75 0 0 0 .67 1.08h4.5a.75.75 0 0 0 .67-1.08l-2.25-4.5ZM11.01 4c.08 0 .16 0 .24.02v15.96l-.24.02H3.76C2.79 20 2 19.2 2 18.25V5.75C2 4.8 2.79 4 3.76 4H11ZM7.17 9.42a.75.75 0 0 0-1.34 0l-2.25 4.5A.75.75 0 0 0 4.25 15h4.5a.75.75 0 0 0 .67-1.08l-2.25-4.5Z\"]);\nexport const DualScreenMirror24Regular = /*#__PURE__*/createFluentIcon('DualScreenMirror24Regular', \"24\", [\"M17.17 9.42a.75.75 0 0 0-1.34 0l-2.25 4.5a.75.75 0 0 0 .67 1.08h4.5a.75.75 0 0 0 .67-1.08l-2.25-4.5Zm-1.7 4.08 1.03-2.07 1.04 2.07h-2.08ZM7.5 9c.28 0 .54.16.67.42l2.25 4.5A.75.75 0 0 1 9.75 15h-4.5a.75.75 0 0 1-.67-1.08l2.25-4.5A.75.75 0 0 1 7.5 9Zm0 2.43L6.46 13.5h2.08L7.5 11.43ZM12.76 4h7.5C21.21 4 22 4.8 22 5.75v12.5c0 .97-.78 1.75-1.75 1.75H3.75c-.96 0-1.74-.79-1.74-1.75V5.75C2 4.8 2.79 4 3.76 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .24-.11.24-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13Z\"]);\nexport const DualScreenPagination20Filled = /*#__PURE__*/createFluentIcon('DualScreenPagination20Filled', \"20\", [\"M16 16h-5.5V4H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2ZM4 4h5.5v12H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm8.5 10a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DualScreenPagination20Regular = /*#__PURE__*/createFluentIcon('DualScreenPagination20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V5H4Zm12 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-5.5v10H16Zm-4.5-1a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const DualScreenPagination24Filled = /*#__PURE__*/createFluentIcon('DualScreenPagination24Filled', \"24\", [\"M20.25 4C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V4.02L13 4h7.25ZM11 4c.08 0 .16 0 .24.02v15.96L11 20H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4H11Zm6.63 12.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm2.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z\"]);\nexport const DualScreenPagination24Regular = /*#__PURE__*/createFluentIcon('DualScreenPagination24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .25-.11.25-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13Zm5.38 10a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm2.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm-5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const DualScreenSettings20Filled = /*#__PURE__*/createFluentIcon('DualScreenSettings20Filled', \"20\", [\"M12.07 2.44a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 8.65l-.13.43c.26.2.54.37.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.02l-.35-.08A2 2 0 0 1 17 2.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM14.5 6.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0 4.5c1.33 0 2.55-.47 3.5-1.26V16a2 2 0 0 1-2 2h-5.5V9.27a5.48 5.48 0 0 0 4 1.73Zm-5-3.2A5.47 5.47 0 0 1 9.02 6H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V7.8ZM6 15.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 1 0 0-1h-1Z\"]);\nexport const DualScreenSettings20Regular = /*#__PURE__*/createFluentIcon('DualScreenSettings20Regular', \"20\", [\"M12.07 2.44a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 8.65l-.13.43c.26.2.54.37.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.02l-.35-.08A2 2 0 0 1 17 2.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM14.5 6.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM17 16v-5.6c.36-.18.7-.4 1-.66V16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-1.1.9-2 2-2h5.02c.03.34.1.68.19 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.8c.25.54.6 1.04 1 1.47V17H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 1 0 0-1h-1Z\"]);\nexport const DualScreenSettings24Filled = /*#__PURE__*/createFluentIcon('DualScreenSettings24Filled', \"24\", [\"M13.27 2.98a2 2 0 0 1-1.44 2.5l-.58.14a5.73 5.73 0 0 0 0 1.8l.54.13a2 2 0 0 1 1.45 2.51l-.18.64c.44.38.94.7 1.48.92l.5-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.9l-.2-.7a2 2 0 0 1 1.44-2.5l.59-.14a5.73 5.73 0 0 0-.01-1.8l-.54-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.5.52a2 2 0 0 1-2.9 0l-.5-.52c-.53.22-1.03.53-1.47.91l.2.69ZM16.5 8c-.8 0-1.45-.67-1.45-1.5S15.7 5 16.5 5c.8 0 1.45.67 1.45 1.5S17.3 8 16.5 8Zm0 5A6.5 6.5 0 0 0 22 9.96v10.29c0 .97-.78 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V11.81A6.47 6.47 0 0 0 16.5 13Zm-.26 4.5h-1.6a.75.75 0 0 0 0 1.5H16.34a.75.75 0 0 0 0-1.5h-.1ZM10 6.5 10 6H3.75C2.78 6 2 6.78 2 7.75v12.5C2 21.2 2.78 22 3.75 22H11c.08 0 .16 0 .25-.02V10.33A6.47 6.47 0 0 1 10 6.5Zm-.76 11h.1a.75.75 0 0 1 0 1.5H7.65a.75.75 0 0 1 0-1.5h1.6Z\"]);\nexport const DualScreenSettings24Regular = /*#__PURE__*/createFluentIcon('DualScreenSettings24Regular', \"24\", [\"M13.28 2.98a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 .01 1.8l.54.13a2 2 0 0 1 1.45 2.51l-.19.64c.44.38.94.7 1.49.92l.5-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.47-.9l-.2-.7a2 2 0 0 1 1.45-2.5l.58-.14a5.72 5.72 0 0 0 0-1.8l-.54-.13a2 2 0 0 1-1.45-2.51l.18-.63c-.44-.39-.94-.7-1.48-.93l-.5.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.91l.2.69ZM16.5 8c-.8 0-1.45-.67-1.45-1.5S15.7 5 16.5 5c.8 0 1.45.67 1.45 1.5S17.3 8 16.5 8ZM10 6.5c0-.17 0-.33.02-.5H3.75C2.78 6 2 6.78 2 7.75v12.5C2 21.2 2.78 22 3.75 22h16.5c.97 0 1.75-.78 1.75-1.75V9.97c-.4.64-.91 1.2-1.5 1.66v8.62c0 .14-.11.25-.25.25h-7.5v-8.7c-.58-.4-1.08-.9-1.5-1.47V20.5h-7.5a.25.25 0 0 1-.25-.25V7.75c0-.14.11-.25.25-.25h6.33a6.54 6.54 0 0 1-.08-1Zm7 11.75a.75.75 0 0 0-.76-.75h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0 .65-.75Zm-7 0a.75.75 0 0 0-.76-.75h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const DualScreenSpan20Filled = /*#__PURE__*/createFluentIcon('DualScreenSpan20Filled', \"20\", [\"M16 16h-5.5v-5.5h3.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.7.7l1.14 1.15H10.5V4H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2ZM9.5 9.5V4H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5v-5.5H5.7l1.15 1.15a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 1 1 .7.7L5.71 9.5H9.5Z\"]);\nexport const DualScreenSpan20Regular = /*#__PURE__*/createFluentIcon('DualScreenSpan20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5v-3.5h1V15H16a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-5.5v3.5h-1V5H4Zm2.85 3.35a.5.5 0 1 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L5.71 10.5h8.58l-1.14 1.15a.5.5 0 0 0 .7.7l2-2a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.7.7l1.14 1.15H5.71l1.14-1.15Z\"]);\nexport const DualScreenSpan24Filled = /*#__PURE__*/createFluentIcon('DualScreenSpan24Filled', \"24\", [\"M22 5.75C22 4.8 21.22 4 20.25 4h-7.24l-.26.02v7.23h4.83l-.89-1a.75.75 0 1 1 1.12-1l2 2.25c.25.29.25.71 0 1l-2 2.25a.75.75 0 1 1-1.12-1l.9-1h-4.84v7.23l.26.02h7.24c.97 0 1.75-.78 1.75-1.75V5.75Zm-10.75 5.5H6.42l.9-1a.75.75 0 1 0-1.13-1l-2 2.25a.75.75 0 0 0 0 1l2 2.25a.75.75 0 1 0 1.12-1l-.89-1h4.83v7.23l-.24.02H3.76C2.79 20 2 19.2 2 18.25V5.75C2 4.8 2.79 4 3.76 4H11c.08 0 .16 0 .24.02v7.23Z\"]);\nexport const DualScreenSpan24Regular = /*#__PURE__*/createFluentIcon('DualScreenSpan24Regular', \"24\", [\"M8.31 10.25a.75.75 0 1 0-1.12-1l-2 2.25a.75.75 0 0 0 0 1l2 2.25a.75.75 0 1 0 1.12-1l-.89-1h9.16l-.89 1a.75.75 0 1 0 1.12 1l2-2.25.01-.01a.75.75 0 0 0-.01-.99l-2-2.25a.75.75 0 1 0-1.12 1l.9 1H7.41l.9-1ZM12.76 4h7.5C21.21 4 22 4.8 22 5.75v12.5c0 .97-.78 1.75-1.75 1.75H3.75c-.96 0-1.74-.79-1.74-1.75V5.75C2 4.8 2.79 4 3.76 4h9Zm7.5 1.5h-7.5v5h-1.5v-5h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-5h1.5v5h7.5c.13 0 .24-.11.24-.25V5.75a.25.25 0 0 0-.25-.25Z\"]);\nexport const DualScreenSpeaker20Filled = /*#__PURE__*/createFluentIcon('DualScreenSpeaker20Filled', \"20\", [\"M17.65 2.2c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-3.96-.16c.19.08.31.26.31.46v6a.5.5 0 0 1-.85.35L11.29 7h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm2.53 1.93c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53Zm.13 5.73a1.5 1.5 0 0 1-.53-.74 1.5 1.5 0 0 1-.87-.07 1.5 1.5 0 0 1-2.51.67L10.88 8h-.38v8H16a2 2 0 0 0 2-2V9.8c-.5.29-1.15.27-1.65-.1ZM9.5 16V7.62A1.5 1.5 0 0 1 9 6.5v-2c0-.18.03-.34.09-.5H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5ZM6 13.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1Z\"]);\nexport const DualScreenSpeaker20Regular = /*#__PURE__*/createFluentIcon('DualScreenSpeaker20Regular', \"20\", [\"M17.65 2.2c.12.16.29.45.44.87.26.68.41 1.5.41 2.43 0 .94-.15 1.75-.4 2.43-.16.42-.33.7-.45.87a.5.5 0 0 1-.85-.52l.12-.19a5.9 5.9 0 0 0 .58-2.6 5.9 5.9 0 0 0-.58-2.58l-.07-.11a.5.5 0 1 1 .8-.6Zm-3.96-.16c.19.08.31.26.31.46v6a.5.5 0 0 1-.85.35L11.29 7h-.79a.5.5 0 0 1-.5-.5v-2c0-.28.22-.5.5-.5h.8l1.85-1.85a.5.5 0 0 1 .54-.11Zm2.53 1.93c-.1-.3-.2-.55-.27-.7a.5.5 0 1 0-.9.45 4.59 4.59 0 0 1 .45 1.78 3.94 3.94 0 0 1-.37 1.6l-.08.18a.5.5 0 1 0 .9.44 5.5 5.5 0 0 0 .55-2.22c0-.5-.1-1.02-.28-1.53ZM17 14V9.98c.34.06.7 0 1-.18V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h5.09a1.5 1.5 0 0 0-.09.5V5H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V7.62c.27.24.62.38 1 .38v7H16a1 1 0 0 0 1-1Zm-11-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm6.5-.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const DualScreenSpeaker24Filled = /*#__PURE__*/createFluentIcon('DualScreenSpeaker24Filled', \"24\", [\"M22.14 3.3a4.53 4.53 0 0 0-.9-1.13.75.75 0 0 0-.97 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 0 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Z\", \"M19.87 4.4c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 6.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1Z\", \"M17 3.75a.75.75 0 0 0-1.31-.5L14.16 5h-1.4a.75.75 0 0 0-.76.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 9.25v-5.5Z\", \"M11 5a1 1 0 0 1 .25-.66v-.32a1.76 1.76 0 0 0-.24-.02H3.76C2.79 4 2 4.78 2 5.75v12.5C2 19.2 2.79 20 3.76 20H11l.24-.02V8.66A1 1 0 0 1 11 8V5ZM9.25 15.5h.1a.75.75 0 0 1 0 1.5H7.65a.75.75 0 0 1 0-1.5h1.6Z\", \"M13.53 9h-.78v10.98l.26.02h7.24c.97 0 1.75-.79 1.75-1.75v-6.77a1.75 1.75 0 0 1-2.99-1c-.42.07-.87-.03-1.23-.27a1.76 1.76 0 0 1-2.8.33L13.52 9Zm2.72 6.5h.1a.75.75 0 0 1 0 1.5H14.65a.75.75 0 0 1 0-1.5h1.6Z\"]);\nexport const DualScreenSpeaker24Regular = /*#__PURE__*/createFluentIcon('DualScreenSpeaker24Regular', \"24\", [\"M22.14 3.3a4.53 4.53 0 0 0-.9-1.13.75.75 0 0 0-.97 1.16c.13.1.35.35.59.74.4.67.64 1.48.64 2.43 0 .95-.24 1.76-.64 2.43-.24.39-.46.64-.59.74a.75.75 0 0 0 .96 1.16c.25-.21.59-.58.91-1.13.54-.9.86-1.96.86-3.2 0-1.24-.32-2.3-.86-3.2Z\", \"M19.87 4.4c-.23-.36-.48-.6-.67-.75a.75.75 0 0 0-.9 1.2A2.24 2.24 0 0 1 19 6.5a2.24 2.24 0 0 1-.7 1.65l-.08.07a.75.75 0 0 0 .98 1.13 3.73 3.73 0 0 0 1.3-2.85c0-.81-.23-1.52-.63-2.1Z\", \"M17 3.75a.75.75 0 0 0-1.31-.5L14.16 5h-1.4a.75.75 0 0 0-.76.75v1.5c0 .41.34.75.75.75h1.41l1.53 1.74A.75.75 0 0 0 17 9.25v-5.5Z\", \"M11.95 4h-8.2c-.96 0-1.74.78-1.74 1.75v12.5C2 19.2 2.79 20 3.76 20h16.5c.96 0 1.74-.79 1.74-1.75v-6.77a1.75 1.75 0 0 1-1.5.5v6.27c0 .14-.1.25-.25.25h-7.5V9H12a1 1 0 0 1-.74-.33v9.83h-7.5a.25.25 0 0 1-.25-.25V5.75c0-.14.11-.25.25-.25H11V5a1 1 0 0 1 .95-1Z\", \"M16.25 15.5h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0-.1-1.5Z\", \"M7.75 15.5h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Z\"]);\nexport const DualScreenStatusBar20Filled = /*#__PURE__*/createFluentIcon('DualScreenStatusBar20Filled', \"20\", [\"M16 16h-5.5V4H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2ZM4 4h5.5v12H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm8.5 2a.5.5 0 0 0 0 1H16a.5.5 0 0 0 0-1h-3.5Z\"]);\nexport const DualScreenStatusBar20Regular = /*#__PURE__*/createFluentIcon('DualScreenStatusBar20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V5H4Zm12 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-5.5v10H16Zm-4-9a.5.5 0 0 0 0 1h3.5a.5.5 0 0 0 0-1H12Z\"]);\nexport const DualScreenStatusBar24Filled = /*#__PURE__*/createFluentIcon('DualScreenStatusBar24Filled', \"24\", [\"M20.25 4C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V4.02L13 4h7.25ZM11 4c.08 0 .16 0 .24.02v15.96L11 20H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4H11Zm8.75 2.5h-4.5a.75.75 0 0 0-.1 1.5h4.6a.75.75 0 0 0 .1-1.5h-.1Z\"]);\nexport const DualScreenStatusBar24Regular = /*#__PURE__*/createFluentIcon('DualScreenStatusBar24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .25-.11.25-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13Zm7.5 1a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Z\"]);\nexport const DualScreenTablet20Filled = /*#__PURE__*/createFluentIcon('DualScreenTablet20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-3v-2h.5a.5.5 0 0 0 0-1H13V9a3 3 0 0 0-3-3H4V5Zm6 12H7.5V7H10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2ZM4 7h2.5v10H4a2 2 0 0 1-2-2V9c0-1.1.9-2 2-2Zm5.5 7a.5.5 0 0 0 0 1h.5a.5.5 0 0 0 0-1h-.5Zm-6 .5c0 .28.22.5.5.5h.5a.5.5 0 0 0 0-1H4a.5.5 0 0 0-.5.5Z\"]);\nexport const DualScreenTablet20Regular = /*#__PURE__*/createFluentIcon('DualScreenTablet20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-3v-1h3a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v1H4V5Zm9 6h.5a.5.5 0 0 0 0-1H13v1ZM2 9c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.5V8H4Zm6 8a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H7.5v8H10Zm-1-2a.5.5 0 0 0 0 1h.5a.5.5 0 0 0 0-1H9Zm-5 .5c0-.28.22-.5.5-.5H5a.5.5 0 0 1 0 1h-.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const DualScreenTablet24Filled = /*#__PURE__*/createFluentIcon('DualScreenTablet24Filled', \"24\", [\"M7.5 9v12H3.75c-.92 0-1.67-.7-1.74-1.6L2 19.24v-8.5c0-.92.7-1.67 1.6-1.74L3.76 9H7.5Zm4.75 0c.92 0 1.67.7 1.74 1.6l.01.15v8.5c0 .92-.7 1.67-1.6 1.74l-.15.01H8.5V9h3.75Zm-1.6 8.5h-.6a.75.75 0 0 0 0 1.5h.7a.75.75 0 0 0-.1-1.5Zm-4.76 0h-.6a.75.75 0 0 0 0 1.5H6a.75.75 0 0 0-.1-1.5ZM19.75 3c1.2 0 2.17.93 2.24 2.1l.01.15v8.5c0 1.2-.93 2.17-2.1 2.24l-.15.01H15v-2.5h1.25a.75.75 0 0 0 0-1.5H15v-1.5A2.5 2.5 0 0 0 12.66 8H6V5.25c0-1.2.93-2.17 2.1-2.24L8.25 3h11.5Z\"]);\nexport const DualScreenTablet24Regular = /*#__PURE__*/createFluentIcon('DualScreenTablet24Regular', \"24\", [\"M12.25 9c.92 0 1.67.7 1.74 1.6l.01.15v8.5c0 .92-.7 1.67-1.6 1.74l-.15.01h-8.5c-.92 0-1.67-.7-1.74-1.6L2 19.24v-8.5c0-.92.7-1.67 1.6-1.74L3.76 9h8.5ZM7.5 10.5H3.75a.25.25 0 0 0-.24.2l-.01.05v8.5c0 .12.08.22.2.24l.05.01H7.5v-9Zm4.75 0H8.5v9h3.75c.12 0 .22-.08.24-.2l.01-.05v-8.5a.25.25 0 0 0-.2-.24l-.05-.01ZM10.62 17a.75.75 0 0 1 .1 1.5h-.6a.75.75 0 0 1-.1-1.5h.6Zm-4.74 0a.75.75 0 0 1 .1 1.5h-.6a.75.75 0 0 1-.1-1.5h.6ZM19.74 3c1.2 0 2.17.93 2.24 2.1l.01.15v8.5c0 1.2-.93 2.17-2.1 2.24l-.15.01H15v-1.5h4.75c.38 0 .7-.28.74-.65l.01-.1v-8.5a.75.75 0 0 0-.75-.75H8.25c-.38 0-.7.28-.74.65l-.01.1V8H6V5.25c0-1.2.93-2.17 2.1-2.24L8.25 3h11.5Zm-3.5 9a.75.75 0 0 1 0 1.5H15V12h1.25Z\"]);\nexport const DualScreenUpdate20Filled = /*#__PURE__*/createFluentIcon('DualScreenUpdate20Filled', \"20\", [\"M16 16h-5.5V4H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2ZM4 4h5.5v12H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm12.85 7.85a.5.5 0 0 0-.7-.7L15 12.29V6.5a.5.5 0 0 0-1 0v5.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l2-2Z\"]);\nexport const DualScreenUpdate20Regular = /*#__PURE__*/createFluentIcon('DualScreenUpdate20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5V5H4Zm12 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-5.5v10H16Zm-.15-3.15a.5.5 0 0 0-.7-.7L14 12.29V6.5a.5.5 0 0 0-1 0v5.8l-1.15-1.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l2-2Z\"]);\nexport const DualScreenUpdate24Filled = /*#__PURE__*/createFluentIcon('DualScreenUpdate24Filled', \"24\", [\"M20.25 4C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V4.02L13 4h7.25ZM11 4c.08 0 .16 0 .24.02v15.96L11 20H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4H11Zm6.5 3h-.1l-.1.03a.75.75 0 0 0-.54.6l-.01.12v6.7l-.97-.96-.08-.08a.75.75 0 0 0-.98.08.75.75 0 0 0-.07.97l.07.09 2.25 2.23.1.1.08.04.11.04.1.03.1.01h.09l.09-.01.06-.02.1-.03.06-.03.07-.04.06-.05.04-.04 2.25-2.23.07-.09c.2-.26.2-.62.01-.88l-.08-.1-.08-.07a.76.76 0 0 0-.89 0l-.1.08-.96.96v-6.8A.75.75 0 0 0 17.6 7h-.1Z\"]);\nexport const DualScreenUpdate24Regular = /*#__PURE__*/createFluentIcon('DualScreenUpdate24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .25-.11.25-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13ZM16.5 7c.38 0 .7.28.75.65v6.8l.97-.96a.75.75 0 0 1 .98-.08l.08.08c.27.26.3.68.07.97l-.07.09-2.25 2.23-.04.04-.06.05-.07.04-.06.03-.1.03-.06.02-.1.01h-.09l-.09-.01-.1-.03-.1-.04-.08-.05-.11-.09-2.25-2.23a.75.75 0 0 1 0-1.06.75.75 0 0 1 .98-.08l.08.08.97.96v-6.7c0-.35.23-.64.55-.72l.1-.02h.1Z\"]);\nexport const DualScreenVerticalScroll20Filled = /*#__PURE__*/createFluentIcon('DualScreenVerticalScroll20Filled', \"20\", [\"M10.5 16H16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-5.5v12Zm-1-12H4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h5.5V4Zm7.35 7.15c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 .7-.7l1.65 1.64 1.65-1.64c.2-.2.5-.2.7 0Zm0-3a.5.5 0 0 1-.7.7L14.5 7.21l-1.65 1.64a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0l2 2Z\"]);\nexport const DualScreenVerticalScroll20Regular = /*#__PURE__*/createFluentIcon('DualScreenVerticalScroll20Regular', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4ZM3 6a1 1 0 0 1 1-1h5.5v10H4a1 1 0 0 1-1-1V6Zm7.5 9V5H16a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-5.5Zm5.35-3.85c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 .7-.7l1.65 1.64 1.65-1.64c.2-.2.5-.2.7 0Zm0-3a.5.5 0 0 1-.7.7L13.5 7.21l-1.65 1.64a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0l2 2Z\"]);\nexport const DualScreenVerticalScroll24Filled = /*#__PURE__*/createFluentIcon('DualScreenVerticalScroll24Filled', \"24\", [\"M20.25 4C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H13c-.09 0-.17 0-.26-.02V4.02L13 4h7.25ZM11 4c.08 0 .16 0 .24.02v15.96L11 20H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4H11Zm4.7 9.4a.75.75 0 0 0-1.06 1.04l.07.09 2.26 2.3.08.07c.27.2.64.2.9 0l.09-.08 2.25-2.3.07-.08a.75.75 0 0 0-1.06-1.04l-.08.08-1.72 1.75-1.71-1.75-.09-.08Zm2.34-6.17a.75.75 0 0 0-.99-.08l-.08.08-2.26 2.3a.75.75 0 0 0 1 1.12l.08-.08 1.71-1.75 1.72 1.75a.75.75 0 0 0 1.14-.96l-.07-.09-2.25-2.3Z\"]);\nexport const DualScreenVerticalScroll24Regular = /*#__PURE__*/createFluentIcon('DualScreenVerticalScroll24Regular', \"24\", [\"M12.75 4h7.5C21.2 4 22 4.8 22 5.75v12.5c0 .97-.79 1.75-1.75 1.75H3.75C2.78 20 2 19.2 2 18.25V5.75C2 4.8 2.78 4 3.75 4h9Zm7.5 1.5h-7.5v13h7.5c.13 0 .25-.11.25-.25V5.75a.25.25 0 0 0-.25-.25Zm-9 0h-7.5a.25.25 0 0 0-.25.25v12.5c0 .14.11.25.25.25h7.5v-13Zm3.45 7.9.09.08 1.71 1.75 1.72-1.75a.75.75 0 0 1 1.14.96l-.07.09-2.25 2.3c-.27.26-.7.29-.99.07l-.08-.08-2.26-2.3a.75.75 0 0 1 1-1.12Zm2.34-6.17 2.25 2.3a.75.75 0 0 1-1.07 1.04L16.5 8.82l-1.71 1.75a.75.75 0 1 1-1.08-1.05l2.26-2.3c.3-.3.77-.3 1.07 0Z\"]);\nexport const DualScreenVibrate20Filled = /*#__PURE__*/createFluentIcon('DualScreenVibrate20Filled', \"20\", [\"M10.5 15H13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2.5v10Zm-1-10H7a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2.5V5Zm2.5 7.5c0-.28.22-.5.5-.5h.5a.5.5 0 0 1 0 1h-.5a.5.5 0 0 1-.5-.5ZM7 12h.5a.5.5 0 0 1 0 1H7a.5.5 0 0 1 0-1ZM1.88 6.51a.5.5 0 0 1 .6.37l.41 1.64c.1.35.05.71-.1 1.03l-.62 1.23a.5.5 0 0 0 0 .44l.78 1.56a.5.5 0 1 1-.9.44l-.77-1.55a1.5 1.5 0 0 1 0-1.34l.6-1.22a.5.5 0 0 0 .04-.35l-.4-1.64a.5.5 0 0 1 .36-.6Zm16.6.37a.5.5 0 0 0-.97.24l.41 1.64a.5.5 0 0 1-.03.35l-.61 1.22a1.5 1.5 0 0 0 0 1.34l.77 1.55a.5.5 0 1 0 .9-.44l-.78-1.56a.5.5 0 0 1 0-.44l.61-1.23c.16-.32.2-.68.11-1.03l-.4-1.64Z\"]);\nexport const DualScreenVibrate20Regular = /*#__PURE__*/createFluentIcon('DualScreenVibrate20Regular', \"20\", [\"M7 5a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7ZM6 7a1 1 0 0 1 1-1h2.5v8H7a1 1 0 0 1-1-1V7Zm4.5 7V6H13a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-2.5Zm1-1.5c0-.28.22-.5.5-.5h.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5Zm-4-.5a.5.5 0 0 0 0 1H8a.5.5 0 0 0 0-1h-.5ZM1.88 6.51a.5.5 0 0 1 .6.37l.41 1.64c.1.35.05.71-.1 1.03l-.62 1.23a.5.5 0 0 0 0 .44l.78 1.56a.5.5 0 1 1-.9.44l-.77-1.55a1.5 1.5 0 0 1 0-1.34l.6-1.22a.5.5 0 0 0 .04-.35l-.4-1.64a.5.5 0 0 1 .36-.6Zm16.6.37a.5.5 0 0 0-.97.24l.41 1.64a.5.5 0 0 1-.03.35l-.61 1.22a1.5 1.5 0 0 0 0 1.34l.77 1.55a.5.5 0 1 0 .9-.44l-.78-1.56a.5.5 0 0 1 0-.44l.61-1.23c.16-.32.2-.68.11-1.03l-.4-1.64Z\"]);\nexport const DualScreenVibrate24Filled = /*#__PURE__*/createFluentIcon('DualScreenVibrate24Filled', \"24\", [\"M11.5 6v13H7.25c-.92 0-1.67-.7-1.74-1.6l-.01-.15v-9.5c0-.92.7-1.67 1.6-1.75h4.4Zm5.25 0c.92 0 1.67.7 1.75 1.6v9.65c0 .92-.7 1.67-1.6 1.74h-4.4V6h4.25Zm-1.5 9.5h-1.1a.75.75 0 0 0 0 1.5H15.35a.75.75 0 0 0-.1-1.5Zm-5.5 0h-1.1a.75.75 0 0 0 0 1.5H9.85a.75.75 0 0 0-.1-1.5Zm11.37-7.46.06.09.04.1.58 1.45c.34.83.24 1.77-.24 2.51l-.11.16-.15.2c-.23.31-.3.7-.2 1.08l.04.13.58 1.46a.75.75 0 0 1-1.35.65l-.04-.1-.58-1.45a2.75 2.75 0 0 1 .24-2.51l.1-.16.16-.2c.23-.31.3-.71.2-1.08l-.04-.14-.58-1.45a.75.75 0 0 1 1.29-.74Zm-17.55 0 .06.09.04.1.58 1.45c.34.83.24 1.77-.24 2.51l-.1.16-.16.2c-.23.31-.3.7-.2 1.08l.04.13.58 1.46a.75.75 0 0 1-1.35.65l-.04-.1-.58-1.45a2.75 2.75 0 0 1 .24-2.51l.11-.16.15-.2c.23-.31.3-.71.2-1.08l-.04-.14-.58-1.45a.75.75 0 0 1 1.29-.74Z\"]);\nexport const DualScreenVibrate24Regular = /*#__PURE__*/createFluentIcon('DualScreenVibrate24Regular', \"24\", [\"M16.75 6c.92 0 1.67.7 1.75 1.6v9.65c0 .92-.7 1.67-1.6 1.74l-.15.01h-9.5c-.92 0-1.67-.7-1.74-1.6l-.01-.15v-9.5c0-.92.7-1.68 1.6-1.75h9.65ZM11.5 7.5H7.25a.25.25 0 0 0-.24.19L7 7.75v9.5c0 .12.08.22.2.24l.05.01h4.25v-10Zm5.25 0H12.5v10h4.25c.12 0 .22-.08.24-.2l.01-.05v-9.5a.25.25 0 0 0-.2-.25h-.05Zm-1.5 7.5a.75.75 0 0 1 .1 1.5h-1.1a.75.75 0 0 1-.1-1.49h1.1Zm-5.5 0a.75.75 0 0 1 .1 1.5h-1.1a.75.75 0 0 1-.1-1.49h1.1Zm11.37-6.96.06.09.04.1.58 1.45c.34.83.24 1.77-.24 2.51l-.11.16-.15.2c-.23.31-.3.7-.2 1.08l.04.13.58 1.46a.75.75 0 0 1-1.35.65l-.04-.1-.58-1.45a2.75 2.75 0 0 1 .24-2.51l.1-.16.16-.2c.23-.31.3-.71.2-1.08l-.04-.14-.58-1.45a.75.75 0 0 1 1.29-.74Zm-17.55 0 .06.09.04.1.58 1.45c.34.83.24 1.77-.24 2.51l-.1.16-.16.2c-.23.31-.3.7-.2 1.08l.04.13.58 1.46a.75.75 0 0 1-1.35.65l-.04-.1-.58-1.45a2.75 2.75 0 0 1 .24-2.51l.11-.16.15-.2c.23-.31.3-.71.2-1.08l-.04-.14-.58-1.45a.75.75 0 0 1 1.29-.74Z\"]);\nexport const Dumbbell16Filled = /*#__PURE__*/createFluentIcon('Dumbbell16Filled', \"16\", [\"M11.75 2.04a1.72 1.72 0 0 0-2.6.2 2.08 2.08 0 0 0-1.84 3.53l.88.88-.84.83 1.19 1.18.83-.83.88.88a2.09 2.09 0 0 0 3.53-1.85l.2-.16c.66-.68.66-1.76 0-2.44l-.53-.51.46-.46a.84.84 0 0 0-1.19-1.18l-.45.45-.52-.52Zm.28 3.74a.5.5 0 0 1-.7 0l-1.1-1.1a.5.5 0 0 1 .7-.71l1.1 1.1c.2.2.2.51 0 .7ZM2.82 7.3a2.09 2.09 0 0 1 2.95 0l2.94 2.94a2.09 2.09 0 0 1-1.85 3.53l-.16.2c-.68.66-1.76.66-2.44 0l-.51-.53-.47.47a.84.84 0 1 1-1.19-1.18l.47-.47-.52-.52a1.72 1.72 0 0 1 .2-2.6c-.12-.65.08-1.34.58-1.84Zm2.6 4.38-1.1-1.1a.5.5 0 0 0-.72.7l1.1 1.1a.5.5 0 0 0 .72-.7Z\"]);\nexport const Dumbbell16Regular = /*#__PURE__*/createFluentIcon('Dumbbell16Regular', \"16\", [\"M12.03 5.78a.5.5 0 0 0 0-.71l-1.1-1.1a.5.5 0 1 0-.7.7l1.1 1.1c.2.2.5.2.7 0Zm-5.88 5.17a.5.5 0 1 1-.7.71l-1.1-1.1a.5.5 0 1 1 .7-.7l1.1 1.1Zm8.11-9.2a1.34 1.34 0 0 0-1.89 0l-.49.5-.16-.17a1.67 1.67 0 0 0-2.55.22 2.03 2.03 0 0 0-1.82 3.43l.52.53-1.61 1.6-.53-.51A2.04 2.04 0 0 0 2.3 9.18a1.68 1.68 0 0 0-.22 2.54l.16.16-.5.5a1.34 1.34 0 0 0 1.89 1.9l.5-.5.17.16a1.67 1.67 0 0 0 2.54-.22 2.03 2.03 0 0 0 1.83-3.44l-.52-.52 1.61-1.61.52.52a2.04 2.04 0 0 0 3.44-1.83 1.67 1.67 0 0 0 .22-2.54l-.17-.16.5-.5c.51-.52.51-1.36 0-1.89Zm-1.2 1.68-.47-.48.49-.49a.34.34 0 0 1 .48.48l-.5.49Zm-4 4.01L7.43 9.05l-.48-.47 1.62-1.62.47.48Zm-5.63 5.63-.5.5a.34.34 0 0 1-.48-.48l.5-.5.48.48Zm6.63-10.28a.67.67 0 0 1 .95 0L13.23 5a.67.67 0 0 1-.26 1.1.5.5 0 0 0-.3.69 1.04 1.04 0 0 1-1.68 1.16L8.05 5.03a1.04 1.04 0 0 1 1.17-1.68.5.5 0 0 0 .68-.3c.03-.1.09-.18.16-.26Zm-6.5 5.26c.4-.4 1.06-.4 1.47 0L7.96 11a1.04 1.04 0 0 1-1.16 1.68.5.5 0 0 0-.68.3.67.67 0 0 1-1.1.26l-2.23-2.22a.67.67 0 0 1 .26-1.1.5.5 0 0 0 .3-.7c-.17-.38-.1-.84.21-1.16Z\"]);\nexport const Dumbbell20Filled = /*#__PURE__*/createFluentIcon('Dumbbell20Filled', \"20\", [\"M14.33 3.13a1.98 1.98 0 0 0-3 .22A2.4 2.4 0 0 0 9.2 7.43l1.02 1-1.07 1.08 1.36 1.36 1.07-1.07 1.01 1.02a2.4 2.4 0 0 0 4.08-2.13 1.98 1.98 0 0 0 .23-3l-.6-.6.52-.52a.97.97 0 0 0-1.37-1.37l-.52.52-.6-.6Zm.27 3.54a.5.5 0 1 1-.7.71l-1.28-1.27a.5.5 0 0 1 .7-.71l1.28 1.27ZM4.02 9.2a2.4 2.4 0 0 1 3.4 0l3.4 3.4a2.4 2.4 0 0 1-2.13 4.07 1.98 1.98 0 0 1-3 .23l-.6-.6-.54.53a.97.97 0 1 1-1.36-1.36l.54-.54-.6-.6a1.98 1.98 0 0 1 .22-3 2.4 2.4 0 0 1 .67-2.13Zm2.94 5.82a.5.5 0 0 0 0-.71L5.7 13.04a.5.5 0 0 0-.7.7l1.27 1.28c.2.2.5.2.7 0Z\"]);\nexport const Dumbbell20Regular = /*#__PURE__*/createFluentIcon('Dumbbell20Regular', \"20\", [\"M14.6 7.38a.5.5 0 0 0 0-.7L13.32 5.4a.5.5 0 1 0-.7.7l1.27 1.28c.2.2.51.2.7 0ZM7.8 13.46a.5.5 0 0 1-.7.7L5.82 12.9a.5.5 0 0 1 .7-.71l1.28 1.27Zm9.36-10.61a1.47 1.47 0 0 0-2.07 0l-.62.62-.25-.25a1.85 1.85 0 0 0-2.84.28 2.27 2.27 0 0 0-2.1 3.83l.66.66L8 9.96l-.66-.66a2.27 2.27 0 0 0-3.83 2.09 1.85 1.85 0 0 0-.28 2.84l.25.25-.64.64a1.47 1.47 0 0 0 2.07 2.07l.64-.64.24.25a1.85 1.85 0 0 0 2.85-.28 2.27 2.27 0 0 0 2.09-3.83l-.66-.66 1.97-1.97.66.66a2.27 2.27 0 0 0 3.82-2.1 1.85 1.85 0 0 0 .28-2.84l-.24-.24.62-.62c.57-.57.57-1.5 0-2.07Zm-1.33 1.98-.66-.66.62-.62a.47.47 0 1 1 .66.66l-.62.62Zm-4.52 4.52-1.97 1.97-.66-.66 1.97-1.96.66.65Zm-6.49 6.5-.64.63a.47.47 0 0 1-.66-.66l.64-.64.66.66Zm7.5-11.92a.85.85 0 0 1 1.2 0l2.56 2.56a.85.85 0 0 1-.34 1.4.5.5 0 0 0-.3.7A1.27 1.27 0 0 1 13.39 10L10 6.62a1.27 1.27 0 0 1 1.43-2.05.5.5 0 0 0 .69-.3c.04-.13.1-.24.2-.34Zm-7.5 6.08c.49-.5 1.3-.5 1.8 0L10 13.39a1.27 1.27 0 0 1-1.43 2.06.5.5 0 0 0-.68.3.85.85 0 0 1-1.4.34l-2.57-2.56a.85.85 0 0 1 .33-1.41.5.5 0 0 0 .3-.68A1.27 1.27 0 0 1 4.82 10Z\"]);\nexport const Dumbbell24Filled = /*#__PURE__*/createFluentIcon('Dumbbell24Filled', \"24\", [\"M17.34 3.52a2.45 2.45 0 0 0-3.7.28A2.97 2.97 0 0 0 11 8.83l1.25 1.24-1.13 1.13 1.69 1.69 1.13-1.13 1.24 1.25a2.97 2.97 0 0 0 5.03-2.63 2.46 2.46 0 0 0 .28-3.7l-.74-.73.65-.65a1.2 1.2 0 1 0-1.69-1.68l-.64.64-.74-.74Zm.43 5.34c-.3.3-.77.3-1.06 0L15.14 7.3a.75.75 0 1 1 1.06-1.06l1.57 1.57c.29.3.29.77 0 1.06ZM4.62 11.02a2.97 2.97 0 0 1 4.2 0l4.19 4.18a2.97 2.97 0 0 1-2.63 5.02 2.45 2.45 0 0 1-3.7.28l-.74-.74-.66.67a1.2 1.2 0 0 1-1.69-1.68l.67-.67-.74-.74a2.45 2.45 0 0 1 .28-3.7c-.16-.92.11-1.9.82-2.62Zm3.73 7.26c.3-.29.3-.77 0-1.06l-1.57-1.57a.75.75 0 1 0-1.06 1.06l1.57 1.57c.29.3.76.3 1.06 0Z\"]);\nexport const Dumbbell24Regular = /*#__PURE__*/createFluentIcon('Dumbbell24Regular', \"24\", [\"M17.77 7.8a.75.75 0 1 1-1.07 1.06L15.14 7.3a.75.75 0 1 1 1.06-1.06l1.57 1.57Zm-8.38 9.44c.3-.3.3-.77 0-1.07L7.82 14.6a.75.75 0 1 0-1.06 1.07l1.57 1.57c.3.29.77.29 1.06 0ZM20.94 3.08a1.94 1.94 0 0 0-2.75 0l-.67.68-.2-.21a2.41 2.41 0 0 0-3.67.29 2.93 2.93 0 0 0-2.61 4.96l.72.72-2.24 2.24-.72-.72a2.94 2.94 0 0 0-4.96 2.61l-.3.25a2.41 2.41 0 0 0 0 3.42l.21.2-.69.7a1.94 1.94 0 0 0 2.75 2.74l.69-.7.2.22a2.41 2.41 0 0 0 3.67-.3 2.93 2.93 0 0 0 2.61-4.96l-.72-.72 2.24-2.24.72.72a2.94 2.94 0 0 0 4.96-2.61 2.42 2.42 0 0 0 .3-3.66l-.21-.21.67-.67c.75-.76.75-1.99 0-2.75ZM19.2 5.44l-.63-.62.67-.68a.44.44 0 1 1 .63.63l-.67.67Zm-5.77 5.76-2.24 2.24-.62-.62 2.24-2.24.62.62Zm-8 8-.7.7a.44.44 0 0 1-.62-.62l.7-.7.62.63Zm9.52-14.6a.91.91 0 0 1 1.3 0l3.15 3.17a.91.91 0 0 1-.36 1.51.75.75 0 0 0-.45 1.03 1.44 1.44 0 0 1-2.32 1.61L12.1 7.74a1.44 1.44 0 0 1 1.61-2.32.75.75 0 0 0 1.03-.45.9.9 0 0 1 .22-.36Zm-9.25 7.5a1.44 1.44 0 0 1 2.03 0l4.18 4.18a1.44 1.44 0 0 1-1.61 2.32.75.75 0 0 0-1.03.45.91.91 0 0 1-1.51.36L4.6 16.25a.91.91 0 0 1 .36-1.5.75.75 0 0 0 .45-1.03 1.44 1.44 0 0 1 .29-1.62Z\"]);\nexport const Dumbbell28Filled = /*#__PURE__*/createFluentIcon('Dumbbell28Filled', \"28\", [\"M20.5 3.69a2.98 2.98 0 0 0-4.5.34 3.6 3.6 0 0 0-3.2 6.11l1.52 1.52-1.6 1.6 2.05 2.05 1.6-1.6 1.52 1.51a3.61 3.61 0 0 0 6.1-3.19 2.98 2.98 0 0 0 .34-4.5l-.9-.9.8-.78a1.45 1.45 0 0 0-2.05-2.05l-.79.79-.9-.9Zm.4 6.38c-.3.3-.77.3-1.06 0l-1.91-1.9a.75.75 0 0 1 1.06-1.07l1.9 1.91c.3.3.3.77 0 1.06Zm-5.68 7.82-5.08-5.09A3.61 3.61 0 0 0 4.03 16a3 3 0 0 0-.34 4.5l.9.9-.82.8a1.45 1.45 0 0 0 2.05 2.05l.81-.8.9.89a2.98 2.98 0 0 0 4.5-.34 3.6 3.6 0 0 0 3.2-6.11Zm-5.78 2.57a.75.75 0 1 1-1.06 1.07l-1.9-1.91a.75.75 0 0 1 1.05-1.06l1.91 1.9Z\"]);\nexport const Dumbbell28Regular = /*#__PURE__*/createFluentIcon('Dumbbell28Regular', \"28\", [\"M20.9 10.07c.3-.3.3-.77 0-1.06L19 7.1a.75.75 0 0 0-1.07 1.06l1.91 1.91c.3.3.77.3 1.06 0Zm-10.18 9.12a.75.75 0 1 1-1.06 1.06l-1.91-1.9a.75.75 0 0 1 1.06-1.07l1.9 1.91ZM24.76 3.27a2.2 2.2 0 0 0-3.11 0l-.9.9-.37-.37a2.77 2.77 0 0 0-4.23.37 3.25 3.25 0 0 0-3.06.86l-.22.22a3.25 3.25 0 0 0 0 4.6l1.1 1.1-3.02 3.02-1.1-1.1a3.25 3.25 0 0 0-4.6 0l-.22.22c-.83.83-1.12 2-.86 3.06l-.37.31a2.77 2.77 0 0 0 0 3.92l.37.37-.92.92a2.2 2.2 0 0 0 3.1 3.11l.93-.92.37.37a2.77 2.77 0 0 0 4.22-.37 3.25 3.25 0 0 0 3.06-.86l.23-.23a3.25 3.25 0 0 0 0-4.6l-1.1-1.1 3.02-3.01 1.1 1.1a3.25 3.25 0 0 0 4.6 0l.22-.23c.83-.83 1.12-2 .86-3.06a2.79 2.79 0 0 0 .37-4.22l-.37-.37.9-.9a2.2 2.2 0 0 0 0-3.1ZM13 16.02l-.99-1 3.02-3 .99.98L13 16.02ZM6.22 22.8l-.93.92a.7.7 0 0 1-.98-.99l.92-.92.99.99ZM22.8 6.22l-.99-1 .9-.89a.7.7 0 1 1 .99.99l-.9.9Zm-5.28-1.36c.5-.5 1.3-.5 1.8 0l3.85 3.85a1.27 1.27 0 0 1-.48 2.1.75.75 0 0 0-.42 1.04c.32.66.21 1.48-.33 2.02l-.23.23c-.68.68-1.79.68-2.47 0l-5.31-5.31a1.75 1.75 0 0 1 0-2.47l.22-.23a1.75 1.75 0 0 1 2.03-.33.75.75 0 0 0 1.04-.42c.06-.17.16-.34.3-.48ZM8.8 13.93l5.3 5.3c.7.7.7 1.8 0 2.48l-.22.23c-.54.54-1.36.65-2.02.32a.75.75 0 0 0-1.04.43 1.27 1.27 0 0 1-2.1.48l-3.85-3.85a1.27 1.27 0 0 1 .48-2.1.75.75 0 0 0 .42-1.04 1.75 1.75 0 0 1 .33-2.03l.23-.22c.68-.68 1.79-.68 2.47 0Z\"]);\nexport const Dust20Filled = /*#__PURE__*/createFluentIcon('Dust20Filled', \"20\", [\"M5.75 3.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm2.34 2.65A4 4 0 1 1 14.65 10 4 4 0 0 1 12 17a4 4 0 0 1-3.9-3.15 4 4 0 1 1-.01-7.7ZM5.75 18a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM19 10a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z\"]);\nexport const Dust20Regular = /*#__PURE__*/createFluentIcon('Dust20Regular', \"20\", [\"M5.75 3.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM12 3a4 4 0 0 0-3.91 3.15 4 4 0 1 0 0 7.7A4 4 0 1 0 14.65 10 4 4 0 0 0 12 3ZM9 6.86a3 3 0 1 1 4.55 2.71.5.5 0 0 0 0 .86A3 3 0 1 1 9 13.14a.5.5 0 0 0-.71-.43 3 3 0 1 1 0-5.42.5.5 0 0 0 .71-.43ZM5.75 18a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM19 10a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z\"]);\nexport const Dust24Filled = /*#__PURE__*/createFluentIcon('Dust24Filled', \"24\", [\"M6 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm16 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 21a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM8.66 6.94A5.25 5.25 0 1 1 17.42 12a5.24 5.24 0 0 1-3.67 9 5.25 5.25 0 0 1-5.09-3.94 5.25 5.25 0 1 1 0-10.12Z\"]);\nexport const Dust24Regular = /*#__PURE__*/createFluentIcon('Dust24Regular', \"24\", [\"M7 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm14 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM6 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7.75-19a5.25 5.25 0 0 0-5.09 3.94 5.25 5.25 0 1 0 0 10.12A5.25 5.25 0 1 0 17.42 12a5.24 5.24 0 0 0-3.67-9Zm-3.74 5.02a3.75 3.75 0 1 1 5.81 3.36.75.75 0 0 0 0 1.24 3.75 3.75 0 1 1-5.81 3.36.75.75 0 0 0-1.09-.62 3.75 3.75 0 1 1 0-6.71.75.75 0 0 0 1.09-.63Z\"]);\nexport const Dust28Filled = /*#__PURE__*/createFluentIcon('Dust28Filled', \"28\", [\"M10.24 7.74A6.5 6.5 0 1 1 21.2 14a6.5 6.5 0 1 1-10.95 6.26 6.5 6.5 0 1 1 0-12.52ZM8 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm18 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 24a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const Dust28Regular = /*#__PURE__*/createFluentIcon('Dust28Regular', \"28\", [\"M16.5 3a6.5 6.5 0 0 0-6.26 4.74 6.5 6.5 0 1 0 0 12.52A6.5 6.5 0 1 0 21.2 14 6.5 6.5 0 0 0 16.5 3Zm-4.96 5.83a5 5 0 1 1 8.07 4.58.75.75 0 0 0 0 1.18 4.99 4.99 0 1 1-8.07 4.58.75.75 0 0 0-1.04-.59 5 5 0 1 1 0-9.17.75.75 0 0 0 1.04-.58ZM9 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm16 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM8 25a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Earth16Filled = /*#__PURE__*/createFluentIcon('Earth16Filled', \"16\", [\"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7-6h-.05c.09.18.19.4.28.63.24.65.46 1.6.07 2.43-.36.77-.98.97-1.45 1.1h-.07c-.45.13-.64.17-.77.38-.13.2-.1.43.04.9l.03.1c.06.19.13.4.16.6.04.26.06.58-.1.89-.16.3-.38.51-.63.65-.23.13-.47.17-.66.2l-.07.02c-.36.06-.54.1-.71.28-.14.15-.22.4-.27.77l-.05.46v.08l-.07.53-.03.11a5.98 5.98 0 0 0 7.4 1.03 3.16 3.16 0 0 1-.26-.28c-.23-.3-.54-.81-.43-1.41.05-.29.2-.53.35-.72a4.98 4.98 0 0 1 .62-.61l.32-.31.12-.15.04-.05c.05-.17-.01-.3-.09-.35-.05-.04-.2-.1-.44.05l-.26.16a.99.99 0 0 1-.27.12.53.53 0 0 1-.63-.36.64.64 0 0 1-.03-.2 1.15 1.15 0 0 1 .01-.19c.03-.21.07-.52-.06-.98-.1-.37-.23-.66-.38-.94a9.15 9.15 0 0 1-.2-.42c-.08-.2-.18-.46-.16-.73.02-.32.18-.58.44-.78.32-.24.72-.78 1.06-1.33.17-.27.31-.51.41-.7l.02-.03A5.97 5.97 0 0 0 8 2Z\"]);\nexport const Earth16Regular = /*#__PURE__*/createFluentIcon('Earth16Regular', \"16\", [\"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7-6h-.05c.09.18.19.4.28.63.24.65.46 1.6.07 2.43-.36.77-.98.97-1.45 1.1h-.07c-.45.13-.64.17-.77.38-.13.2-.1.43.04.9l.03.1c.06.19.13.4.16.6.04.26.06.58-.1.89-.16.3-.38.51-.63.65-.23.13-.47.17-.66.2l-.07.02c-.36.06-.54.1-.71.28-.14.15-.22.4-.27.77l-.05.46v.08l-.07.53-.03.11a5.98 5.98 0 0 0 7.4 1.03 3.16 3.16 0 0 1-.26-.28c-.23-.3-.54-.81-.43-1.41.05-.29.2-.53.35-.72a4.98 4.98 0 0 1 .62-.61l.32-.31.12-.15.04-.05c.05-.17-.01-.3-.09-.35-.05-.04-.2-.1-.44.05l-.26.16a.99.99 0 0 1-.27.12.53.53 0 0 1-.63-.36.64.64 0 0 1-.03-.2 1.15 1.15 0 0 1 .01-.19c.03-.21.07-.52-.06-.98-.1-.37-.23-.66-.38-.94a9.15 9.15 0 0 1-.2-.42c-.08-.2-.18-.46-.16-.73.02-.32.18-.58.44-.78.32-.24.72-.78 1.06-1.33.17-.27.31-.51.41-.7l.02-.03A5.97 5.97 0 0 0 8 2Zm4.03 1.56-.38.65a6.37 6.37 0 0 1-1.35 1.64c0 .03 0 .1.08.27l.13.27c.16.32.38.76.5 1.24.07.25.1.48.11.68.44-.15.88-.08 1.21.18.42.32.6.88.43 1.43-.07.25-.25.45-.39.6l-.38.37a22.63 22.63 0 0 0-.5.5.66.66 0 0 0-.15.25c-.03.17.05.38.24.61a2.22 2.22 0 0 0 .3.32 5.99 5.99 0 0 0 .15-9ZM2 8c0 1.08.29 2.1.79 2.97l.01-.15c.06-.4.17-.93.54-1.32.41-.45.92-.53 1.24-.58l.1-.02c.17-.03.27-.06.36-.1.06-.04.14-.1.21-.24.01-.02.03-.09 0-.24a28.64 28.64 0 0 1-.16-.58c-.13-.43-.33-1.12.08-1.75.36-.55.94-.69 1.32-.78.04 0 .08-.02.11-.03.4-.1.63-.2.8-.54.2-.46.12-1.07-.1-1.65a5.38 5.38 0 0 0-.44-.88A6 6 0 0 0 2 8Z\"]);\nexport const Earth20Filled = /*#__PURE__*/createFluentIcon('Earth20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7h-.25c.11.23.25.5.37.83.28.74.52 1.82.08 2.76-.4.86-1.1 1.08-1.63 1.22l-.1.02c-.5.13-.75.2-.93.46-.17.26-.12.58.04 1.12l.04.12c.07.21.14.46.18.69.05.28.06.63-.11.97-.18.34-.41.57-.69.72-.26.14-.53.2-.75.24l-.08.01c-.41.07-.65.12-.87.35-.18.2-.28.51-.34.94l-.05.54v.1c-.02.2-.04.41-.09.6v.02a6.98 6.98 0 0 0 8.86 1.25 3.56 3.56 0 0 1-.27-.31c-.27-.34-.61-.91-.5-1.57.06-.31.23-.58.4-.8a5.68 5.68 0 0 1 .7-.7c.15-.14.28-.25.39-.37a.9.9 0 0 0 .2-.26c.07-.23-.02-.4-.13-.5-.1-.06-.3-.13-.6.07l-.33.19c-.09.04-.2.1-.34.12a.6.6 0 0 1-.54-.18.73.73 0 0 1-.18-.37 2.58 2.58 0 0 1-.03-.28v-.07l-.02-.23c-.02-.22-.06-.5-.15-.83-.12-.49-.44-.89-.76-1.3l-.14-.18c-.16-.2-.37-.48-.44-.77a.9.9 0 0 1 .03-.55c.07-.19.2-.33.35-.44a18.6 18.6 0 0 0 1.74-1.66c.3-.31.58-.6.77-.82h.01A6.97 6.97 0 0 0 10 3Z\"]);\nexport const Earth20Regular = /*#__PURE__*/createFluentIcon('Earth20Regular', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7h-.25c.11.23.25.5.37.83.28.74.52 1.82.08 2.76-.4.86-1.1 1.08-1.63 1.22l-.1.02c-.5.13-.75.2-.93.46-.17.26-.12.58.04 1.12l.04.12c.07.21.14.46.18.69.05.28.06.63-.11.97-.18.34-.41.57-.69.72-.26.14-.53.2-.75.24l-.08.01c-.41.07-.65.12-.87.35-.18.2-.28.51-.34.94l-.05.54v.1c-.02.2-.04.41-.09.6v.02a6.98 6.98 0 0 0 8.86 1.25 3.56 3.56 0 0 1-.27-.31c-.27-.34-.61-.91-.5-1.57.06-.31.23-.58.4-.8a5.68 5.68 0 0 1 .7-.7c.15-.14.28-.25.39-.37a.9.9 0 0 0 .2-.26c.07-.23-.02-.4-.13-.5-.1-.06-.3-.13-.6.07l-.33.19c-.09.04-.2.1-.34.12a.6.6 0 0 1-.54-.18.74.74 0 0 1-.18-.37 2.57 2.57 0 0 1-.03-.28v-.07l-.02-.23c-.02-.22-.06-.5-.15-.83-.12-.49-.44-.89-.76-1.3l-.14-.18c-.16-.2-.37-.48-.44-.77a.9.9 0 0 1 .38-1 18.6 18.6 0 0 0 1.74-1.65c.3-.31.58-.6.77-.82h.01A6.97 6.97 0 0 0 10 3Zm4.64 1.76a42.1 42.1 0 0 1-2.71 2.66c.03.07.1.18.24.36l.12.16c.32.4.78.97.96 1.68.1.4.15.73.17.98v.01c.6-.33 1.21-.3 1.66.06.46.35.66.97.47 1.57-.08.27-.27.5-.43.66l-.44.43-.11.1c-.2.17-.36.33-.48.48a.83.83 0 0 0-.19.34c-.04.23.07.5.29.78.1.12.2.23.3.3 0 .01 0 .02.02.03a6.99 6.99 0 0 0 .13-10.6ZM8.8 3.36l-.13-.23a7 7 0 0 0-4.72 10.39l.02-.2c.06-.46.2-1.06.6-1.49.46-.5 1.02-.59 1.4-.65l.1-.02c.21-.03.34-.07.45-.13.1-.05.2-.13.28-.3.03-.06.05-.15.02-.34a4.4 4.4 0 0 0-.15-.54l-.05-.15c-.15-.5-.37-1.26.09-1.96.4-.6 1.04-.76 1.48-.87l.13-.03c.47-.12.77-.24.98-.68.26-.56.14-1.3-.12-1.98a6.33 6.33 0 0 0-.38-.83Z\"]);\nexport const Earth24Filled = /*#__PURE__*/createFluentIcon('Earth24Filled', \"24\", [\"M10.95 2.05A10 10 0 1 1 4.1 18.13a10 10 0 0 1 6.83-16.08h.02ZM12 3.5h-.16c.12.25.26.53.37.85.35.92.67 2.28.1 3.49-.52 1.11-1.42 1.4-2.09 1.57l-.08.02c-.66.17-.9.24-1.1.52-.16.25-.14.58.07 1.25l.04.14c.09.26.18.57.23.87.07.36.09.82-.15 1.27-.23.45-.54.75-.9.95-.34.18-.7.25-.96.3l-.09.02c-.51.09-.76.13-1 .39-.19.2-.3.55-.38 1.07l-.06.65v.12c-.03.24-.05.52-.1.76a8.48 8.48 0 0 0 10.58 1.58l-.31-.35c-.34-.43-.79-1.16-.63-2.03.07-.42.3-.77.51-1.04.22-.27.49-.52.72-.74l.16-.14c.18-.17.33-.3.46-.44.17-.18.21-.26.21-.27.07-.22-.01-.38-.1-.45a.3.3 0 0 0-.2-.06.75.75 0 0 0-.4.14.91.91 0 0 1-.83.08c-.27-.1-.41-.31-.49-.43a2.75 2.75 0 0 1-.27-.77l-.12-.55-.04-.21-.13-.54-.02-.04a6.23 6.23 0 0 0-.3-.42l-.1-.14c-.16-.21-.36-.47-.52-.71-.2-.3-.42-.7-.49-1.1a1.39 1.39 0 0 1 .54-1.38 13 13 0 0 0 1.83-1.97c.29-.36.54-.7.73-.95A8.46 8.46 0 0 0 12 3.5Z\"]);\nexport const Earth24Regular = /*#__PURE__*/createFluentIcon('Earth24Regular', \"24\", [\"M10.95 2.05A10 10 0 1 1 4.1 18.13a10 10 0 0 1 6.83-16.08h.02ZM12 3.5h-.16c.12.25.26.53.37.85.35.92.67 2.28.1 3.49-.52 1.11-1.42 1.4-2.09 1.57l-.08.02c-.66.17-.9.24-1.1.52-.16.25-.14.58.07 1.25l.04.14c.09.26.18.57.23.87.07.36.09.82-.15 1.27-.23.45-.54.75-.9.95-.34.18-.7.25-.96.3l-.09.02c-.51.09-.76.13-1 .39-.19.2-.3.55-.38 1.07l-.06.65v.12c-.03.24-.05.52-.1.76a8.48 8.48 0 0 0 10.58 1.58l-.31-.35c-.34-.43-.79-1.16-.63-2.03.07-.42.3-.77.51-1.04.22-.27.49-.52.72-.74l.16-.14c.18-.17.33-.3.46-.44.17-.18.21-.26.21-.27.07-.22-.01-.38-.1-.45a.3.3 0 0 0-.2-.06.75.75 0 0 0-.4.14.91.91 0 0 1-.83.08c-.27-.1-.41-.31-.49-.43a2.75 2.75 0 0 1-.27-.77l-.12-.55-.04-.21a4.1 4.1 0 0 0-.13-.54l-.02-.04a6.23 6.23 0 0 0-.3-.42l-.1-.14c-.16-.21-.36-.47-.52-.71-.2-.3-.42-.7-.49-1.1a1.39 1.39 0 0 1 .54-1.38 13 13 0 0 0 1.83-1.97c.29-.36.54-.7.73-.95A8.46 8.46 0 0 0 12 3.5Zm5.73 2.22-.76.98c-.6.75-1.4 1.68-2.05 2.19.03.1.1.26.26.5a10.73 10.73 0 0 0 .56.77c.18.23.42.54.52.84.1.23.15.52.2.76l.05.25.08.37c.6-.17 1.2-.07 1.67.3.6.46.86 1.28.62 2.07-.11.36-.36.66-.56.87l-.56.53-.13.12c-.23.2-.42.4-.57.57a.9.9 0 0 0-.2.36c-.04.22.06.51.32.84a3.14 3.14 0 0 0 .38.4 8.48 8.48 0 0 0 .17-12.72ZM3.5 12c0 1.4.34 2.72.94 3.88.08-.56.26-1.25.74-1.77a2.91 2.91 0 0 1 1.93-.86c.25-.04.4-.08.5-.14a.7.7 0 0 0 .3-.32c0-.03.03-.1 0-.33-.04-.18-.1-.38-.18-.63l-.06-.2c-.18-.6-.48-1.6.12-2.5.53-.8 1.36-1 1.9-1.13l.16-.04c.56-.15.88-.28 1.1-.76.3-.63.18-1.48-.14-2.32a7.61 7.61 0 0 0-.58-1.2A8.5 8.5 0 0 0 3.5 12Z\"]);\nexport const Earth32Filled = /*#__PURE__*/createFluentIcon('Earth32Filled', \"32\", [\"M8.22 4.36a14 14 0 1 1 15.56 23.28A14 14 0 0 1 8.22 4.36ZM8.3 20.6c-.8 1.07-.55 3.11-.39 4.24a11.92 11.92 0 0 0 14.49 1.28 3.75 3.75 0 0 1-1.9-2.42c-.36-1.79.83-2.91 1.73-3.74.9-.83 1.11-1.14 1-1.52a5 5 0 0 0-.73.15 2.13 2.13 0 0 1-2.08-.17 1.68 1.68 0 0 1-.42-1.59 4 4 0 0 0-1.07-2.93c-.67-.95-1.68-2.39-.3-3.64 1.44-1.3 2.7-2.77 3.76-4.4A11.92 11.92 0 0 0 16 4h-.37l.05.18.06.1c.83 1.53 1.74 3.17 1.19 5.45-.44 1.82-2.14 2.4-3.4 2.83l-.04.01c-.43.11-.85.3-1.23.53-.5.67-.36 1.34-.1 2.34a3.64 3.64 0 0 1-.16 3.11 2.62 2.62 0 0 1-2 1.13 2 2 0 0 0-1.7.92Z\"]);\nexport const Earth32Regular = /*#__PURE__*/createFluentIcon('Earth32Regular', \"32\", [\"M16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm-2.51 2.27.49.9c.76 1.36 1.43 2.53 1 4.1-.17.68-1 1-2.14 1.4-.82.2-1.56.62-2.14 1.23a4.31 4.31 0 0 0-.43 4c.19.74.3 1.2.1 1.5-.2.3-.15.18-.68.25a3.94 3.94 0 0 0-3 1.7c-.58.84-.9 1.82-.93 2.84a11.85 11.85 0 0 1 .91-13.73 12 12 0 0 1 6.82-4.19ZM7.91 24.84c-.16-1.13-.41-3.17.39-4.24a2 2 0 0 1 1.7-.92 2.62 2.62 0 0 0 2-1.13 3.64 3.64 0 0 0 .16-3.11c-.26-1-.4-1.67.1-2.34.38-.24.8-.42 1.23-.53 1.27-.43 3-1 3.44-2.84.56-2.33-.4-4-1.25-5.55L15.63 4H16c2.26 0 4.48.65 6.39 1.86a21.74 21.74 0 0 1-3.76 4.4c-1.38 1.25-.37 2.69.3 3.64A4 4 0 0 1 20 16.83a1.68 1.68 0 0 0 .42 1.59 2.13 2.13 0 0 0 2.08.17 5 5 0 0 1 .73-.15c.11.38-.1.69-1 1.52-.9.83-2.09 1.95-1.73 3.74a3.75 3.75 0 0 0 1.9 2.42 11.92 11.92 0 0 1-14.49-1.28Zm16.2 0-.39-.25c-.7-.42-1.13-.72-1.24-1.27-.11-.55.25-1.05 1.14-1.88.89-.83 2.13-2 1.47-3.77-.61-1.61-2.29-1.2-3.05-1a6.18 6.18 0 0 0-1.47-3.9c-.25-.3-.45-.64-.6-1a23.31 23.31 0 0 0 4-4.67 11.95 11.95 0 0 1 .12 17.75l.02-.01Z\"]);\nexport const Earth48Filled = /*#__PURE__*/createFluentIcon('Earth48Filled', \"48\", [\"m23.2 6.52.8-.02c3.45 0 6.67 1 9.38 2.73-2 3.06-4.4 5.46-5.63 6.6-.97.9-.97 2.39-.15 3.31a10.61 10.61 0 0 1 2.73 7.35c-.02.85.62 1.31.95 1.47.35.16 1.04.33 1.66-.12.93-.67 1.9-.36 2.14-.06.07.09.17.26.02.65-.17.46-.66 1.18-1.85 2.07a5.43 5.43 0 0 0-2.13 2.84c-.3 1.07-.1 2.07.3 2.91a7.16 7.16 0 0 0 2.08 2.45 17.44 17.44 0 0 1-21.75-2.2v-.1c-.25-2.82-.04-4.44.3-5.38.32-.84.74-1.12 1.19-1.28a4.71 4.71 0 0 1 1.31-.26c.28-.03.6-.07.88-.12.89-.15 2.05-.51 2.69-1.8.55-1.1.5-2.25.36-3.22-.07-.49-.18-.97-.29-1.41l-.04-.18c-.09-.38-.17-.73-.23-1.07-.15-.8-.13-1.27.01-1.58.1-.23.38-.6 1.42-.9 2.33-.66 3.98-1.65 5-2.95a5.66 5.66 0 0 0 1.11-4.27c-.16-1.41-.74-2.79-1.38-4-.28-.5-.57-1-.87-1.46ZM24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40Z\"]);\nexport const Earth48Regular = /*#__PURE__*/createFluentIcon('Earth48Regular', \"48\", [\"m23.2 6.52.8-.02c3.45 0 6.67 1 9.38 2.73-2 3.06-4.4 5.46-5.63 6.6-.97.9-.97 2.39-.15 3.31a10.61 10.61 0 0 1 2.73 7.35c-.02.85.62 1.31.95 1.47.35.16 1.04.33 1.66-.12.93-.67 1.9-.36 2.14-.06.07.09.17.26.02.65-.17.46-.66 1.18-1.85 2.07a5.43 5.43 0 0 0-2.13 2.84c-.3 1.07-.1 2.07.3 2.91a7.16 7.16 0 0 0 2.08 2.45 17.44 17.44 0 0 1-21.75-2.2v-.1c-.25-2.82-.04-4.44.3-5.38.32-.84.74-1.12 1.19-1.28a4.71 4.71 0 0 1 1.31-.26c.28-.03.6-.07.88-.12.89-.15 2.05-.51 2.69-1.8.55-1.1.5-2.25.36-3.22-.07-.49-.18-.97-.29-1.41l-.04-.18c-.09-.38-.17-.73-.23-1.07-.15-.8-.13-1.27.01-1.58.1-.23.38-.6 1.42-.9 2.33-.66 3.98-1.65 5-2.95a5.66 5.66 0 0 0 1.11-4.27c-.16-1.41-.74-2.79-1.38-4-.28-.5-.57-1-.87-1.46Zm-2.77.34c.5.71 1 1.5 1.44 2.31.58 1.08 1 2.14 1.11 3.1.11.94-.06 1.74-.6 2.45-.58.73-1.68 1.5-3.72 2.08-1.47.42-2.5 1.15-3 2.27a5.14 5.14 0 0 0-.2 3.07c.07.4.17.8.26 1.19l.04.16c.1.44.2.84.25 1.23.12.78.08 1.31-.13 1.72-.1.21-.26.35-.88.46l-.64.09-.5.06c-.44.06-.96.15-1.47.34a4.35 4.35 0 0 0-2.68 2.76c-.3.83-.5 1.85-.55 3.13A17.5 17.5 0 0 1 20.44 6.87ZM35.6 37.12a5.28 5.28 0 0 1-1.9-1.95c-.21-.43-.26-.8-.16-1.17.1-.37.4-.9 1.22-1.5 1.39-1.04 2.3-2.12 2.7-3.2a3.07 3.07 0 0 0-.44-3.1c-.97-1.2-2.68-1.52-4.22-1.04a13.12 13.12 0 0 0-3.24-7.59 39.12 39.12 0 0 0 5.85-6.85A17.46 17.46 0 0 1 41.5 24c0 5.22-2.29 9.9-5.91 13.12ZM24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40Z\"]);\nexport const EarthLeaf16Filled = /*#__PURE__*/createFluentIcon('EarthLeaf16Filled', \"16\", [\"M1 8a7 7 0 0 1 13.97-.67l-.61-.15a9.52 9.52 0 0 0-4.53.09 10.38 10.38 0 0 0-.36-.75c-.1-.2-.19-.46-.17-.73.02-.32.18-.58.44-.78.32-.24.72-.78 1.06-1.33.17-.27.31-.51.41-.7l.02-.03A5.97 5.97 0 0 0 8 2h-.05c.09.18.19.4.28.63.24.65.46 1.6.07 2.43-.36.77-.98.97-1.45 1.1h-.07c-.45.13-.64.17-.77.38-.13.2-.1.43.04.9l.03.1c.06.19.13.4.16.6.05.26.06.58-.1.89-.16.3-.37.51-.62.65-.24.13-.48.17-.67.2l-.07.02c-.36.06-.54.1-.71.28-.14.15-.22.4-.27.77l-.05.46v.08l-.07.53-.03.11a6 6 0 0 0 2.22 1.48c-.2.28-.37.57-.53.87A7 7 0 0 1 1 8Zm14.93.74a.5.5 0 0 0-.43-.24h-.03l-.1-.02a6.14 6.14 0 0 1-.3-.08l-.09-.03c-.23-.06-.51-.14-.84-.21A8.52 8.52 0 0 0 11.19 8c-1.2.15-2.12.56-2.75 1.15a2.85 2.85 0 0 0-.9 2.62 13.17 13.17 0 0 1 3.77-2.23.5.5 0 1 1 .38.92c-.8.32-1.54.7-2.2 1.1a8.47 8.47 0 0 0-3.44 3.72.5.5 0 1 0 .9.44c.38-.76.84-1.45 1.44-2.06a3.92 3.92 0 0 0 .59.8 3.07 3.07 0 0 0 3.9.58c.45-.28.77-.67 1-1.08.37-.63.58-1.38.74-1.94l.1-.37a7.5 7.5 0 0 1 1-2.03V9.6c.1-.14.18-.27.23-.38a.5.5 0 0 0-.02-.48Z\"]);\nexport const EarthLeaf16Regular = /*#__PURE__*/createFluentIcon('EarthLeaf16Regular', \"16\", [\"M1 8a7 7 0 0 1 13.97-.67 13.56 13.56 0 0 0-1.04-.24 5.99 5.99 0 0 0-1.9-3.53l-.38.65a6.37 6.37 0 0 1-1.35 1.64c0 .03 0 .1.08.27l.13.27c.1.18.2.4.3.66-.34.05-.67.12-.98.22a10.38 10.38 0 0 0-.36-.75c-.1-.2-.19-.46-.17-.73.02-.32.18-.58.44-.78.32-.24.72-.78 1.06-1.33.17-.27.31-.51.41-.7l.02-.03A5.97 5.97 0 0 0 8 2h-.05c.09.18.19.4.28.63.24.65.46 1.6.07 2.43-.36.77-.98.97-1.45 1.1h-.07c-.45.13-.64.17-.77.38-.13.2-.1.43.04.9l.03.1c.06.19.13.4.16.6.05.26.06.58-.1.89-.16.3-.37.51-.62.65-.24.13-.48.17-.67.2l-.07.02c-.36.06-.54.1-.71.28-.14.15-.22.4-.27.77l-.05.46v.08l-.07.53-.03.11a6 6 0 0 0 2.22 1.48c-.2.28-.37.57-.53.87A7 7 0 0 1 1 8Zm1 0c0 1.08.29 2.1.79 2.97 0-.05 0-.1.02-.15.05-.4.16-.93.53-1.32a2.02 2.02 0 0 1 1.34-.6c.17-.03.28-.06.36-.1.06-.04.14-.1.21-.24.01-.02.03-.09 0-.24a28.64 28.64 0 0 1-.16-.58c-.13-.43-.33-1.12.08-1.75.36-.55.94-.69 1.32-.78.04 0 .08-.02.11-.03.4-.1.63-.2.8-.54.2-.46.12-1.07-.1-1.65a5.38 5.38 0 0 0-.44-.88A6 6 0 0 0 2 8Zm13.93.74a.5.5 0 0 0-.43-.24h-.03l-.1-.02a6.14 6.14 0 0 1-.3-.08l-.09-.03c-.23-.06-.51-.14-.84-.21A8.52 8.52 0 0 0 11.19 8c-1.2.15-2.12.56-2.75 1.15a2.85 2.85 0 0 0-.9 2.62 13.17 13.17 0 0 1 3.77-2.23.5.5 0 1 1 .38.92c-.8.32-1.54.7-2.2 1.1a8.47 8.47 0 0 0-3.44 3.72.5.5 0 1 0 .9.44c.38-.76.84-1.45 1.44-2.06a3.92 3.92 0 0 0 .59.8 3.07 3.07 0 0 0 3.9.58c.45-.28.77-.67 1-1.08.37-.63.58-1.38.74-1.94l.1-.37a7.5 7.5 0 0 1 1-2.03V9.6c.1-.14.18-.27.23-.38a.5.5 0 0 0-.02-.48Z\"]);\nexport const EarthLeaf20Filled = /*#__PURE__*/createFluentIcon('EarthLeaf20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 .34l-.64-.16a9.52 9.52 0 0 0-3.3-.17c-.6.08-1.16.21-1.67.4a5 5 0 0 0-.1-.54c-.13-.49-.45-.89-.77-1.3l-.14-.18c-.16-.2-.37-.48-.44-.77a.9.9 0 0 1 .38-1 18.6 18.6 0 0 0 1.74-1.65l.78-.82A6.97 6.97 0 0 0 9.74 3c.12.23.26.5.38.83.28.74.52 1.82.08 2.76-.4.86-1.1 1.08-1.63 1.22l-.1.02c-.5.13-.75.2-.93.46-.17.26-.12.58.04 1.12l.04.12c.07.21.14.46.18.69.05.28.06.63-.11.97-.18.34-.41.57-.69.72-.26.14-.53.2-.75.24l-.08.01c-.41.07-.65.12-.87.35-.18.2-.28.51-.34.94l-.05.54v.1c-.02.2-.04.41-.09.6v.02a7 7 0 0 0 3.87 2.17c-.18.3-.35.6-.51.91A8 8 0 0 1 2 10Zm16.93 1.74a.5.5 0 0 0-.43-.24h-.03l-.1-.02a6.16 6.16 0 0 1-.3-.08l-.09-.03c-.23-.06-.51-.14-.84-.21a8.52 8.52 0 0 0-2.95-.16c-1.2.15-2.12.56-2.75 1.15a2.85 2.85 0 0 0-.9 2.62 13.17 13.17 0 0 1 3.77-2.23.5.5 0 1 1 .38.92c-.8.32-1.54.7-2.2 1.1a8.47 8.47 0 0 0-3.44 3.72.5.5 0 0 0 .9.44c.38-.76.84-1.45 1.44-2.06a3.71 3.71 0 0 0 .59.8 3.07 3.07 0 0 0 3.9.58c.45-.28.77-.67 1-1.08.37-.63.58-1.38.74-1.94l.1-.37a7.5 7.5 0 0 1 1-2.03v-.02c.1-.14.18-.27.23-.38a.5.5 0 0 0-.02-.48Z\"]);\nexport const EarthLeaf20Regular = /*#__PURE__*/createFluentIcon('EarthLeaf20Regular', \"20\", [\"M2 10a8 8 0 1 1 16 .34 13.76 13.76 0 0 0-1-.23V10c0-2.1-.91-3.97-2.36-5.25l-.07.07-.79.84c-.6.62-1.35 1.37-1.85 1.75.03.07.1.18.24.36l.12.16a4.67 4.67 0 0 1 1.07 2.2c-.34.06-.66.16-.97.28a5 5 0 0 0-.1-.55c-.13-.49-.45-.89-.77-1.3l-.14-.18c-.16-.2-.37-.48-.44-.77a.9.9 0 0 1 .38-1 18.6 18.6 0 0 0 1.74-1.65l.78-.82A6.97 6.97 0 0 0 9.74 3c.12.23.26.5.38.83.28.74.52 1.82.08 2.76-.4.86-1.1 1.08-1.63 1.22l-.1.02c-.5.13-.75.2-.93.46-.17.26-.12.58.04 1.12l.04.12c.07.21.14.46.18.69.05.28.06.63-.11.97-.18.34-.41.57-.69.72-.26.14-.53.2-.75.24l-.08.01c-.41.07-.65.12-.87.35-.18.2-.28.51-.34.94l-.05.54v.1c-.02.2-.04.41-.09.6v.02a7 7 0 0 0 3.87 2.17c-.18.3-.35.6-.51.91A8 8 0 0 1 2 10Zm6.8-6.65a5.8 5.8 0 0 0-.13-.22 7 7 0 0 0-4.72 10.39l.02-.2c.06-.46.2-1.06.6-1.49.46-.5 1.02-.59 1.4-.65l.1-.02c.21-.03.34-.07.45-.13.1-.05.2-.13.28-.3.03-.06.05-.15.02-.34a4.4 4.4 0 0 0-.15-.54l-.04-.15c-.16-.5-.38-1.26.08-1.96.4-.6 1.04-.76 1.48-.87l.13-.03c.47-.12.77-.24.98-.68.26-.56.14-1.3-.12-1.98a6.33 6.33 0 0 0-.38-.83Zm10.13 8.39a.5.5 0 0 0-.43-.24h-.03l-.1-.02a6.16 6.16 0 0 1-.3-.08l-.09-.03c-.23-.06-.51-.14-.84-.21a8.52 8.52 0 0 0-2.95-.16c-1.2.15-2.12.56-2.75 1.15a2.85 2.85 0 0 0-.9 2.62 13.17 13.17 0 0 1 3.77-2.23.5.5 0 1 1 .38.92c-.8.32-1.54.7-2.2 1.1a8.47 8.47 0 0 0-3.44 3.72.5.5 0 0 0 .9.44c.38-.76.84-1.45 1.44-2.06a3.71 3.71 0 0 0 .59.8 3.07 3.07 0 0 0 3.9.58c.45-.28.77-.67 1-1.08.37-.63.58-1.38.74-1.94l.1-.37a7.5 7.5 0 0 1 1-2.03v-.02c.1-.14.18-.27.23-.38a.5.5 0 0 0-.02-.48Z\"]);\nexport const EarthLeaf24Filled = /*#__PURE__*/createFluentIcon('EarthLeaf24Filled', \"24\", [\"M10.95 2.05A10 10 0 0 1 22 11.75c-1.17-.24-2.85-.4-5.23-.08-.64.09-1.22.26-1.76.5a25.3 25.3 0 0 0-.15-.65l-.02-.04a6.23 6.23 0 0 0-.3-.42l-.1-.14c-.16-.21-.36-.47-.52-.71-.2-.3-.42-.7-.49-1.1a1.39 1.39 0 0 1 .54-1.38 13 13 0 0 0 1.83-1.97c.29-.36.54-.7.73-.95a8.46 8.46 0 0 0-4.69-1.3c.12.24.25.52.37.84.35.92.67 2.28.1 3.49-.52 1.11-1.42 1.4-2.09 1.57l-.08.02c-.66.17-.9.24-1.1.52-.16.25-.14.58.07 1.25l.04.14a7 7 0 0 1 .23.87c.07.36.09.82-.15 1.27-.23.45-.54.75-.9.95-.34.18-.7.25-.96.3l-.09.02c-.51.09-.76.13-1 .39-.19.2-.3.55-.38 1.07l-.06.65-.01.12c-.02.24-.04.52-.1.76a8.48 8.48 0 0 0 5.63 2.74c-.17.5-.29 1-.34 1.47A9.96 9.96 0 0 1 2 12a10 10 0 0 1 8.93-9.94l.02-.01ZM12 22.2c.05-.97.49-2.15 1.23-3.26a8.9 8.9 0 0 1 5.38-3.97.5.5 0 0 0-.24-.96 9.9 9.9 0 0 0-5.73 4c-.1-.3-.15-.64-.15-1.02 0-.92.46-1.91 1.2-2.7a5.33 5.33 0 0 1 3.2-1.64 13.5 13.5 0 0 1 5.56.23.75.75 0 0 1 .21 1.35.92.92 0 0 0-.26.34c-.1.2-.2.48-.32.82l-.26.93-.05.21c-.12.41-.24.85-.39 1.29-.29.86-.7 1.78-1.4 2.48a4.02 4.02 0 0 1-3 1.2 3.82 3.82 0 0 1-2.84-1.16c-.4.74-.62 1.43-.65 1.95a.75.75 0 1 1-1.5-.1Z\"]);\nexport const EarthLeaf24Regular = /*#__PURE__*/createFluentIcon('EarthLeaf24Regular', \"24\", [\"M10.95 2.05h-.02A10 10 0 0 0 4.1 18.15a9.99 9.99 0 0 0 6.92 3.81c.05-.47.17-.97.34-1.47a8.48 8.48 0 0 1-5.63-2.74c.06-.24.08-.52.1-.76l.01-.12.06-.65c.07-.52.2-.87.38-1.07.24-.26.49-.3 1-.4l.1-.01c.26-.05.61-.12.95-.3.36-.2.67-.5.9-.95.24-.45.22-.9.15-1.27a7 7 0 0 0-.27-1.01c-.2-.67-.23-1-.06-1.25.18-.28.43-.35 1.09-.52l.08-.02c.67-.17 1.57-.46 2.1-1.57.56-1.2.24-2.57-.1-3.49-.13-.32-.26-.6-.38-.85H12c1.67 0 3.22.48 4.53 1.3-.19.26-.44.6-.73.96a13 13 0 0 1-1.82 1.96 1.39 1.39 0 0 0-.55 1.38c.07.42.3.8.5 1.1.15.25.35.5.5.72l.12.14a6.23 6.23 0 0 1 .29.42l.02.04a4.1 4.1 0 0 1 .15.65c.45-.2.93-.35 1.44-.45-.04-.23-.1-.5-.19-.72a3.69 3.69 0 0 0-.65-1.01c-.15-.21-.3-.4-.43-.6-.16-.24-.23-.4-.26-.5a14.6 14.6 0 0 0 2.05-2.2c.3-.36.56-.7.76-.97a8.48 8.48 0 0 1 2.76 5.82c.58.04 1.08.12 1.5.2a10 10 0 0 0-11.04-9.69ZM4.44 15.88a8.5 8.5 0 0 1 5.8-12.2 7.41 7.41 0 0 1 .57 1.2c.31.84.44 1.7.15 2.32-.23.48-.55.61-1.11.76L9.69 8c-.54.13-1.37.33-1.9 1.12-.6.91-.3 1.91-.12 2.52l.06.19c.08.25.14.45.18.63.03.22 0 .3 0 .33a.7.7 0 0 1-.3.32c-.1.06-.25.1-.5.14l-.13.02c-.46.08-1.2.2-1.8.84a3.27 3.27 0 0 0-.74 1.77ZM12 22.2c.06-.96.5-2.14 1.23-3.25a8.9 8.9 0 0 1 5.38-3.97.5.5 0 0 0-.24-.97 9.9 9.9 0 0 0-5.73 4c-.1-.3-.15-.63-.15-1.01 0-.92.47-1.91 1.2-2.7a5.33 5.33 0 0 1 3.2-1.64 13.5 13.5 0 0 1 5.56.23.75.75 0 0 1 .22 1.35.91.91 0 0 0-.26.34c-.11.2-.22.48-.32.82-.1.29-.17.6-.26.93l-.06.21c-.11.41-.24.85-.38 1.29-.3.86-.7 1.78-1.4 2.48a4.02 4.02 0 0 1-3 1.2 3.82 3.82 0 0 1-2.85-1.16c-.4.74-.61 1.43-.65 1.95a.75.75 0 0 1-1.5-.1Z\"]);\nexport const EarthLeaf32Filled = /*#__PURE__*/createFluentIcon('EarthLeaf32Filled', \"32\", [\"M8.22 4.36A14 14 0 0 1 30 16v.07c-1.77-.4-3.88-.7-6-.53-1.33.1-2.7.39-4 .95a4 4 0 0 0-1.07-2.59c-.67-.95-1.68-2.39-.3-3.64 1.44-1.3 2.7-2.77 3.76-4.4A11.92 11.92 0 0 0 16 4h-.37l.05.18.06.1c.83 1.53 1.74 3.17 1.19 5.45-.44 1.82-2.14 2.4-3.4 2.83l-.04.01c-.43.11-.85.3-1.23.53-.5.67-.36 1.34-.1 2.34a3.64 3.64 0 0 1-.16 3.11 2.62 2.62 0 0 1-2 1.13 2 2 0 0 0-1.7.92c-.8 1.07-.55 3.11-.39 4.24a11.92 11.92 0 0 0 7.03 3.1l.04.01c-.23.7-.38 1.36-.45 1.97A14.02 14.02 0 0 1 3.07 10.64a14 14 0 0 1 5.15-6.28ZM18.38 27.3c.77.8 2.18 1.69 4.62 1.69 4.3 0 5.64-5.53 6.25-8.04.1-.42.18-.75.25-.96.15-.45.54-.8.98-1.04.7-.4.7-1.05-.06-1.25-3.63-.95-9.03-1.48-12.42 1.9-1.4 1.41-1.38 3.25-1.1 4.6l.18-.25A14.6 14.6 0 0 1 24 18.79a.75.75 0 0 1 .5 1.42 13.1 13.1 0 0 0-6.2 4.64 11.4 11.4 0 0 0-2.3 5.42.75.75 0 0 0 1.5.04c.07-.91.36-1.95.88-3Z\"]);\nexport const EarthLeaf32Regular = /*#__PURE__*/createFluentIcon('EarthLeaf32Regular', \"32\", [\"M16 2a14 14 0 0 0-1.47 27.92c.07-.61.22-1.28.45-1.97h-.04a11.92 11.92 0 0 1-7.03-3.11c-.16-1.13-.41-3.17.39-4.24a2 2 0 0 1 1.7-.92 2.62 2.62 0 0 0 2-1.13 3.64 3.64 0 0 0 .16-3.11c-.26-1-.4-1.67.1-2.34.38-.24.8-.42 1.23-.53l.03-.01c1.27-.43 2.97-1 3.41-2.83.55-2.28-.36-3.92-1.2-5.44l-.05-.11-.05-.18H16c2.26 0 4.48.65 6.39 1.86a21.74 21.74 0 0 1-3.76 4.4c-1.38 1.25-.37 2.69.3 3.64A4 4 0 0 1 20 16.49c.65-.28 1.3-.49 1.97-.64a6.18 6.18 0 0 0-1.4-3.08c-.25-.3-.45-.64-.6-1a23.31 23.31 0 0 0 4-4.67 11.95 11.95 0 0 1 4 8.6c.71.1 1.4.22 2.03.37V16A14 14 0 0 0 16 2Zm-2.51 2.27.49.9.03.05c.75 1.34 1.4 2.5.97 4.05-.17.68-1 1-2.14 1.4-.82.2-1.56.62-2.14 1.23a4.31 4.31 0 0 0-.43 4c.19.74.3 1.2.1 1.5-.14.21-.16.21-.35.22l-.33.03a3.94 3.94 0 0 0-3 1.7c-.58.84-.9 1.82-.93 2.84a11.85 11.85 0 0 1 .91-13.73 12 12 0 0 1 6.82-4.19Zm4.89 23.04c.77.8 2.18 1.69 4.62 1.69 4.3 0 5.64-5.53 6.25-8.04.1-.42.18-.75.25-.96.15-.45.54-.8.98-1.04.7-.4.7-1.05-.06-1.25-3.63-.95-9.03-1.48-12.42 1.9-1.4 1.41-1.38 3.25-1.1 4.6l.18-.25A14.6 14.6 0 0 1 24 18.79a.75.75 0 0 1 .5 1.42 13.1 13.1 0 0 0-6.2 4.64 11.4 11.4 0 0 0-2.3 5.42.75.75 0 0 0 1.5.04c.07-.91.36-1.95.88-3Z\"]);\nexport const EarthLeaf48Filled = /*#__PURE__*/createFluentIcon('EarthLeaf48Filled', \"48\", [\"m23.2 6.52.8-.02c3.45 0 6.67 1 9.38 2.73-2 3.06-4.4 5.46-5.63 6.6-.97.9-.97 2.39-.15 3.31a10.65 10.65 0 0 1 2.61 5.47c.35-.2.71-.38 1.07-.55a24.9 24.9 0 0 1 12.63-1.93A20 20 0 1 0 24.17 44c.04-.12.1-.23.15-.35.39-.77.8-1.51 1.2-2.22a17.44 17.44 0 0 1-13.77-4.93v-.1c-.25-2.82-.04-4.44.3-5.38.32-.84.74-1.12 1.19-1.28a4.71 4.71 0 0 1 1.31-.26c.28-.03.6-.07.88-.12.89-.15 2.05-.51 2.69-1.8.55-1.1.5-2.25.36-3.22-.07-.49-.18-.97-.29-1.41l-.04-.18c-.09-.38-.17-.73-.23-1.07-.15-.8-.13-1.27.01-1.58.1-.23.38-.6 1.42-.9 2.33-.66 3.98-1.65 5-2.95a5.66 5.66 0 0 0 1.11-4.27c-.16-1.41-.74-2.79-1.38-4-.28-.5-.57-1-.87-1.46Zm21.75 17.76c-4.14-.66-9.05-.17-12.82 1.6-1.9.88-3.58 2.11-4.7 3.75a8.18 8.18 0 0 0-1.33 5.98 9.9 9.9 0 0 0 1.05 3.26 33.4 33.4 0 0 1 6.7-7.27 27.85 27.85 0 0 1 3.68-2.48h.01v-.01h.01a1 1 0 0 1 .9 1.78 5.67 5.67 0 0 0-.22.12l-.7.41c-.59.37-1.43.95-2.43 1.74a31.45 31.45 0 0 0-6.85 7.66 37.9 37.9 0 0 0-2.14 3.73 1 1 0 1 0 1.78.9c.64-1.27 1.3-2.42 1.99-3.46a10.54 10.54 0 0 0 7.37 1.94 6.54 6.54 0 0 0 3.78-1.63 9.04 9.04 0 0 0 2.44-3.62 11.9 11.9 0 0 0 .51-3.89c.07-2.18.15-4.77 1.91-8.77a1.25 1.25 0 0 0-.94-1.74Z\"]);\nexport const EarthLeaf48Regular = /*#__PURE__*/createFluentIcon('EarthLeaf48Regular', \"48\", [\"m23.2 6.52.8-.02c3.45 0 6.67 1 9.38 2.73-2 3.06-4.4 5.46-5.63 6.6-.97.9-.97 2.39-.15 3.31a10.65 10.65 0 0 1 2.61 5.47 17.17 17.17 0 0 1 2.34-1.08 13.13 13.13 0 0 0-3-5.96 39.12 39.12 0 0 0 5.85-6.85A17.47 17.47 0 0 1 41.39 22c.85 0 1.7.05 2.52.13A20 20 0 1 0 24.17 44c.04-.12.1-.23.15-.35.39-.77.8-1.51 1.2-2.22a17.44 17.44 0 0 1-13.77-4.93v-.1c-.25-2.82-.04-4.44.3-5.38.32-.84.74-1.12 1.19-1.28a4.71 4.71 0 0 1 1.31-.26c.28-.03.6-.07.88-.12.89-.15 2.05-.51 2.69-1.8.55-1.1.5-2.25.36-3.22-.07-.49-.18-.97-.29-1.41l-.04-.18c-.09-.38-.17-.73-.23-1.07-.15-.8-.13-1.27.01-1.58.1-.23.38-.6 1.42-.9 2.33-.66 3.98-1.65 5-2.95a5.66 5.66 0 0 0 1.11-4.27c-.16-1.41-.74-2.79-1.38-4-.28-.5-.57-1-.87-1.46Zm-2.77.34c.5.71 1 1.5 1.44 2.31.58 1.08 1 2.14 1.11 3.1.11.94-.06 1.74-.6 2.45-.58.73-1.68 1.5-3.72 2.08-1.47.42-2.5 1.15-3 2.27a5.14 5.14 0 0 0-.2 3.07c.07.4.17.8.26 1.19l.04.16c.1.44.2.84.25 1.23.12.78.08 1.31-.13 1.72-.1.21-.26.35-.88.46l-.64.09-.5.06c-.44.06-.96.15-1.47.34a4.35 4.35 0 0 0-2.68 2.76c-.3.83-.5 1.85-.55 3.13A17.5 17.5 0 0 1 20.44 6.87ZM44.95 24.3c-4.14-.67-9.05-.17-12.82 1.59-1.9.88-3.58 2.11-4.7 3.75a8.18 8.18 0 0 0-1.33 5.98 9.9 9.9 0 0 0 1.05 3.26 33.4 33.4 0 0 1 6.7-7.27 27.83 27.83 0 0 1 3.65-2.47l.03-.01h.01v-.01h.01a1 1 0 0 1 .9 1.78 5.67 5.67 0 0 0-.22.12l-.7.41c-.59.37-1.43.95-2.43 1.74a31.45 31.45 0 0 0-6.85 7.66 37.9 37.9 0 0 0-2.14 3.73 1 1 0 1 0 1.78.9c.64-1.27 1.3-2.42 1.99-3.46a10.54 10.54 0 0 0 7.37 1.94 6.54 6.54 0 0 0 3.78-1.63 9.04 9.04 0 0 0 2.44-3.62 11.9 11.9 0 0 0 .51-3.89c.07-2.18.15-4.77 1.91-8.77a1.25 1.25 0 0 0-.94-1.73Z\"]);\nexport const Edit12Filled = /*#__PURE__*/createFluentIcon('Edit12Filled', \"12\", [\"M7.74 1.56a1.91 1.91 0 0 1 2.7 2.7l-.23.24-2.7-2.7.23-.24Zm-.95.94L1.65 7.65a.5.5 0 0 0-.14.25l-.5 2.5a.5.5 0 0 0 .59.59l2.5-.5a.5.5 0 0 0 .26-.14L9.5 5.21 6.8 2.5Z\"]);\nexport const Edit12Regular = /*#__PURE__*/createFluentIcon('Edit12Regular', \"12\", [\"M10.44 1.56a1.91 1.91 0 0 0-2.7 0l-.55.55a.5.5 0 0 0-.08.08L1.65 7.65a.5.5 0 0 0-.14.25l-.5 2.5a.5.5 0 0 0 .59.59l2.5-.5a.5.5 0 0 0 .26-.14l6.08-6.08c.75-.75.75-1.96 0-2.7ZM7.5 3.21l1.3 1.3-5.04 5.03-1.62.32.32-1.61L7.5 3.2Zm2 .58L8.2 2.5l.24-.23a.91.91 0 1 1 1.3 1.3l-.24.22Z\"]);\nexport const Edit16Filled = /*#__PURE__*/createFluentIcon('Edit16Filled', \"16\", [\"M10.53 1.76a2.62 2.62 0 1 1 3.7 3.71l-.77.78-3.71-3.7.78-.79ZM9.04 3.25 2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.51-.14.98-.4 1.35-.78l6.39-6.38-3.7-3.71Z\"]);\nexport const Edit16Regular = /*#__PURE__*/createFluentIcon('Edit16Regular', \"16\", [\"M14.24 1.76a2.62 2.62 0 0 0-3.71 0L2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.51-.14.98-.4 1.35-.78l7.88-7.87a2.62 2.62 0 0 0 0-3.7Zm-3 .71a1.62 1.62 0 1 1 2.29 2.3l-.78.77-2.3-2.29.79-.78ZM9.75 3.96l2.3 2.29-6.4 6.39c-.24.24-.55.42-.89.5l-2.57.67.66-2.57c.09-.34.27-.65.51-.9l6.39-6.38Z\"]);\nexport const Edit20Filled = /*#__PURE__*/createFluentIcon('Edit20Filled', \"20\", [\"M12.92 2.87a2.97 2.97 0 0 1 4.2 4.21l-.66.67-4.2-4.2.66-.68Zm-1.38 1.38-8 8c-.32.33-.55.74-.65 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68l7.98-7.98-4.2-4.21Z\"]);\nexport const Edit20Regular = /*#__PURE__*/createFluentIcon('Edit20Regular', \"20\", [\"M17.18 2.93a2.97 2.97 0 0 0-4.26-.06l-9.37 9.38c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.93-.87c.46-.1.9-.34 1.23-.68l9.36-9.36a2.97 2.97 0 0 0 .05-4.15Zm-3.55.65a1.97 1.97 0 1 1 2.8 2.8l-.68.66-2.8-2.79.68-.67Zm-1.38 1.38 2.8 2.8-7.99 7.97c-.2.2-.46.35-.74.41l-3.16.7.7-3.18c.07-.27.2-.51.4-.7l8-8Z\"]);\nexport const Edit24Filled = /*#__PURE__*/createFluentIcon('Edit24Filled', \"24\", [\"M15.9 3.05a3.58 3.58 0 1 1 5.05 5.06l-.89.9L15 3.93l.9-.9ZM13.93 5l-10 10c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l10-10L13.94 5Z\"]);\nexport const Edit24Regular = /*#__PURE__*/createFluentIcon('Edit24Regular', \"24\", [\"M20.95 3.05a3.58 3.58 0 0 0-5.06 0L3.94 15c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07L20.95 8.11a3.58 3.58 0 0 0 0-5.06Zm-4 1.06a2.08 2.08 0 1 1 2.94 2.94l-.89.89L16.06 5l.9-.9ZM15 6.06 17.94 9l-10 10a1.6 1.6 0 0 1-.76.43l-3.42.8.82-3.4c.06-.3.21-.56.42-.77l10-10Z\"]);\nexport const Edit28Filled = /*#__PURE__*/createFluentIcon('Edit28Filled', \"28\", [\"M19.29 3.15a3.93 3.93 0 1 1 5.56 5.56l-1.54 1.54-5.56-5.56 1.54-1.54Zm-2.6 2.6L4.5 17.94c-.44.44-.76.98-.93 1.58l-1.54 5.53a.75.75 0 0 0 .92.92l5.53-1.54c.6-.17 1.14-.5 1.58-.93L22.25 11.3l-5.56-5.56Z\"]);\nexport const Edit28Regular = /*#__PURE__*/createFluentIcon('Edit28Regular', \"28\", [\"M24.85 3.15a3.93 3.93 0 0 0-5.56 0L4.5 17.94c-.44.44-.76.98-.93 1.58l-1.54 5.53a.75.75 0 0 0 .92.92l5.53-1.54c.6-.17 1.14-.5 1.58-.93L24.85 8.7a3.93 3.93 0 0 0 0-5.56Zm-4.5 1.06a2.43 2.43 0 1 1 3.44 3.44l-1.54 1.54-3.44-3.44 1.54-1.54Zm-2.6 2.6 3.44 3.44L9 22.44c-.26.26-.58.44-.93.54l-4.24 1.19 1.19-4.24c.1-.35.28-.67.54-.93L17.75 6.8Z\"]);\nexport const Edit32Filled = /*#__PURE__*/createFluentIcon('Edit32Filled', \"32\", [\"M21.65 3.43a4.89 4.89 0 1 1 6.91 6.92l-.9.9-6.91-6.91.9-.9Zm-2.31 2.32L4.36 20.73a3.7 3.7 0 0 0-1 1.84l-1.34 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l14.98-14.98-6.91-6.91Z\"]);\nexport const Edit32Regular = /*#__PURE__*/createFluentIcon('Edit32Regular', \"32\", [\"M28.56 3.43c-1.9-1.9-5-1.9-6.91 0l-17.3 17.3a3.7 3.7 0 0 0-1 1.84l-1.33 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l17.3-17.3c1.9-1.9 1.9-5 0-6.9Zm-5.5 1.42a2.89 2.89 0 0 1 4.09 4.08l-.9.9-4.09-4.08.9-.9Zm-2.31 2.31 4.09 4.09L9.86 26.23c-.24.23-.53.39-.85.46l-4.7 1 1-4.7c.07-.32.23-.62.46-.85L20.75 7.16Z\"]);\nexport const Edit48Filled = /*#__PURE__*/createFluentIcon('Edit48Filled', \"48\", [\"M32.2 6.03a6.9 6.9 0 1 1 9.77 9.76l-2.2 2.2L30 8.24l2.2-2.2ZM28.24 10 8.03 30.2a6 6 0 0 0-1.56 2.75l-2.43 9.49a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58L38 19.76 28.22 10Z\"]);\nexport const Edit48Regular = /*#__PURE__*/createFluentIcon('Edit48Regular', \"48\", [\"M41.97 6.02a6.9 6.9 0 0 0-9.76 0L8.04 30.2a6 6 0 0 0-1.57 2.75l-2.43 9.49a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58L41.97 15.8a6.9 6.9 0 0 0 0-9.77Zm-8 1.77a4.4 4.4 0 0 1 6.24 6.23L38 16.23 31.77 10l2.2-2.2ZM30 11.77 36.23 18l-20.2 20.2c-.44.44-1 .76-1.6.91l-7.45 1.9 1.9-7.44c.16-.6.48-1.16.93-1.6L30 11.76Z\"]);\nexport const EditArrowBack16Filled = /*#__PURE__*/createFluentIcon('EditArrowBack16Filled', \"16\", [\"M10.53 1.76a2.62 2.62 0 1 1 3.7 3.71l-.54.55a5.49 5.49 0 0 0-1.05-.59L9.75 2.54l.78-.78ZM10.5 5h.3L9.04 3.26 2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.36-.1.69-.25.98-.46A5.5 5.5 0 0 1 10.5 5Zm0 10a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const EditArrowBack16Regular = /*#__PURE__*/createFluentIcon('EditArrowBack16Regular', \"16\", [\"M14.24 1.76a2.62 2.62 0 0 0-3.71 0L2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.36-.1.69-.25.98-.46a5.5 5.5 0 0 1-.5-.88c-.21.17-.46.3-.73.37l-2.57.66.66-2.57c.09-.34.27-.65.51-.9L5.5 8.21A5.52 5.52 0 0 1 8.2 5.5l1.55-1.54L10.8 5c.65.03 1.27.18 1.84.42l-2.18-2.18.78-.78a1.62 1.62 0 1 1 2.29 2.3l-.74.73c.32.14.62.32.9.52l.55-.55a2.62 2.62 0 0 0 0-3.7ZM10.5 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const EditArrowBack20Filled = /*#__PURE__*/createFluentIcon('EditArrowBack20Filled', \"20\", [\"M12.92 2.87a2.97 2.97 0 0 1 4.2 4.21l-.66.67-4.2-4.2.66-.68Zm-1.38 1.38-8 8c-.32.33-.55.74-.65 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16A5.5 5.5 0 0 1 15 9.2l.75-.74-4.2-4.21ZM13.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 16 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const EditArrowBack20Regular = /*#__PURE__*/createFluentIcon('EditArrowBack20Regular', \"20\", [\"M17.18 2.93a2.97 2.97 0 0 0-4.26-.06l-9.37 9.38c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16c-.11-.39-.18-.8-.2-1.21l-.95.94c-.2.2-.46.35-.74.41l-3.16.7.7-3.18c.07-.27.2-.51.4-.7l7.99-8 2.8 2.8L13.78 9c.41.02.82.09 1.21.2l2.13-2.13a2.97 2.97 0 0 0 .05-4.15Zm-3.55.65a1.97 1.97 0 0 1 2.79 2.8l-.67.66-2.8-2.79.68-.67ZM13.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 16 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const EditArrowBack24Filled = /*#__PURE__*/createFluentIcon('EditArrowBack24Filled', \"24\", [\"M16.5 23a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm-1.15-8.35c.2.2.2.5 0 .7l-.64.65h2.04c1.8 0 3.25 1.46 3.25 3.25v.25a.5.5 0 0 1-1 0v-.25c0-1.24-1-2.25-2.25-2.25h-2.04l.64.65a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5c.2-.2.5-.2.7 0Zm.54-11.6a3.58 3.58 0 1 1 5.06 5.06l-.89.89L15 3.94l.9-.9ZM13.94 5l-10 10c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.06l1.15-1.15a6.52 6.52 0 0 1 7.76-7.76L19 10.06 13.94 5Z\"]);\nexport const EditArrowBack24Regular = /*#__PURE__*/createFluentIcon('EditArrowBack24Regular', \"24\", [\"M15.9 3.05 3.93 15c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l1.15-1.15a6.52 6.52 0 0 1-.12-2L7.94 19a1.6 1.6 0 0 1-.76.43l-3.42.8.82-3.4c.06-.3.21-.56.42-.77l10-10L17.94 9l-2.03 2.03a6.57 6.57 0 0 1 2 .12l3.04-3.04a3.58 3.58 0 0 0-5.06-5.06Zm4 1.06c.8.81.8 2.13 0 2.94l-.9.89L16.06 5l.9-.9a2.08 2.08 0 0 1 2.93 0ZM22 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.65-2.15a.5.5 0 0 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65h2.04c1.24 0 2.25 1 2.25 2.25v.25a.5.5 0 0 0 1 0v-.25c0-1.8-1.46-3.25-3.25-3.25h-2.04l.64-.65Z\"]);\nexport const EditOff16Filled = /*#__PURE__*/createFluentIcon('EditOff16Filled', \"16\", [\"m9.5 10.2 4.65 4.65a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L5.79 6.5 2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.51-.14.98-.4 1.35-.78l3.14-3.13Zm3.25-3.24-1.84 1.83-3.7-3.7 1.83-1.84 3.71 3.7Zm-2.22-5.2a2.62 2.62 0 1 1 3.7 3.71l-.77.78-3.71-3.7.78-.79Z\"]);\nexport const EditOff16Regular = /*#__PURE__*/createFluentIcon('EditOff16Regular', \"16\", [\"M5.8 6.5 1.14 1.85a.5.5 0 1 1 .7-.7l13 13a.5.5 0 0 1-.7.7L9.5 10.21l-3.14 3.13c-.37.38-.84.64-1.35.78l-3.39.86a.5.5 0 0 1-.6-.6l.86-3.39c.14-.51.4-.98.78-1.35L5.79 6.5Zm3 3L6.5 7.2l-3.14 3.14c-.24.25-.42.56-.5.9l-.67 2.57 2.57-.66c.34-.1.65-.27.9-.51L8.79 9.5Zm3.24-3.25-1.83 1.84.7.7 3.33-3.32a2.62 2.62 0 0 0-3.71-3.7L7.2 5.08l.7.7 1.84-1.83 2.3 2.29Zm-.8-3.78a1.62 1.62 0 1 1 2.29 2.3l-.78.77-2.3-2.29.79-.78Z\"]);\nexport const EditOff20Filled = /*#__PURE__*/createFluentIcon('EditOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l5.4 5.4-4 4c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68l3.98-3.98 5.4 5.4a.5.5 0 0 0 .7-.71l-15-15Zm12.9 6.3-2.59 2.6-4.2-4.21 2.58-2.6 4.21 4.22Zm-2.83-5.58a2.97 2.97 0 0 1 4.2 4.21l-.66.67-4.2-4.2.66-.68Z\"]);\nexport const EditOff20Regular = /*#__PURE__*/createFluentIcon('EditOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l5.4 5.4-4 4c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68l3.98-3.98 5.4 5.4a.5.5 0 0 0 .7-.71l-15-15Zm8.2 9.6-3.99 3.98c-.2.2-.46.35-.74.41l-3.16.7.7-3.18c.07-.27.2-.51.4-.7l3.99-4 2.8 2.79Zm4-4-2.6 2.59.71.7 3.97-3.96a2.97 2.97 0 0 0-4.21-4.2L8.96 6.83l.7.7 2.59-2.58 2.8 2.8Zm-1.42-4.17a1.97 1.97 0 0 1 2.79 2.8l-.67.66-2.8-2.79.68-.67Z\"]);\nexport const EditOff24Filled = /*#__PURE__*/createFluentIcon('EditOff24Filled', \"24\", [\"m14 15.06 6.72 6.72a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 0 0-1.06 1.06L8.94 10l-5 5c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l5-5Zm5-5-2.88 2.88-5.06-5.06L13.94 5 19 10.06Zm-3.1-7.01a3.58 3.58 0 1 1 5.05 5.06l-.89.9L15 3.93l.9-.9Z\"]);\nexport const EditOff24Regular = /*#__PURE__*/createFluentIcon('EditOff24Regular', \"24\", [\"M8.94 10 2.22 3.28a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L14 15.06l-5 5c-.4.4-.92.7-1.48.83l-4.6 1.1a.75.75 0 0 1-.9-.91l1.1-4.6A3.1 3.1 0 0 1 3.94 15l5-5Zm4 4L10 11.06l-5 5a1.6 1.6 0 0 0-.42.76l-.82 3.42 3.42-.81c.29-.07.55-.22.76-.43l5-5Zm5-5-2.88 2.88 1.06 1.06 4.83-4.83a3.58 3.58 0 0 0-5.06-5.06l-4.83 4.83 1.06 1.06L15 6.06 17.94 9Zm-.99-4.9a2.08 2.08 0 1 1 2.94 2.95l-.89.89L16.06 5l.9-.9Z\"]);\nexport const EditOff28Filled = /*#__PURE__*/createFluentIcon('EditOff28Filled', \"28\", [\"m16.25 17.31 8.47 8.47a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06l8.47 8.47-6.19 6.19c-.44.44-.76.98-.93 1.58l-1.54 5.53a.75.75 0 0 0 .92.92l5.53-1.54c.6-.17 1.14-.5 1.58-.93l6.19-6.19Zm-3.44-7.68 5.56 5.56 3.88-3.88-5.56-5.56-3.88 3.88Zm6.48-6.48a3.93 3.93 0 1 1 5.56 5.56l-1.54 1.54-5.56-5.56 1.54-1.54Z\"]);\nexport const EditOff28Regular = /*#__PURE__*/createFluentIcon('EditOff28Regular', \"28\", [\"M10.69 11.75 2.22 3.28a.75.75 0 1 1 1.06-1.06l22.5 22.5a.75.75 0 0 1-1.06 1.06l-8.47-8.47-6.19 6.19c-.44.44-.98.76-1.58.93l-5.53 1.54a.75.75 0 0 1-.92-.92l1.54-5.53c.17-.6.5-1.14.93-1.58l6.19-6.19Zm4.5 4.5-3.44-3.44L5.56 19c-.26.26-.44.58-.54.93l-1.19 4.24 4.24-1.19c.35-.1.67-.28.93-.54l6.19-6.19ZM12.8 9.63l6.48-6.48a3.93 3.93 0 1 1 5.56 5.56l-6.48 6.48-1.06-1.06 3.88-3.88-3.44-3.44-3.88 3.88-1.06-1.06Zm7.54-5.42-1.54 1.54 3.44 3.44 1.54-1.54a2.43 2.43 0 0 0-3.44-3.44Z\"]);\nexport const EditOff32Filled = /*#__PURE__*/createFluentIcon('EditOff32Filled', \"32\", [\"m18.75 20.16 9.54 9.55a1 1 0 0 0 1.42-1.42l-26-26a1 1 0 0 0-1.42 1.42l9.55 9.54-7.48 7.48a3.7 3.7 0 0 0-1 1.84l-1.34 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l7.48-7.48Zm7.5-7.5-5.02 5.03-6.92-6.92 5.03-5.02 6.9 6.91Zm-4.6-9.23a4.89 4.89 0 1 1 6.91 6.92l-.9.9-6.91-6.92.9-.9Z\"]);\nexport const EditOff32Regular = /*#__PURE__*/createFluentIcon('EditOff32Regular', \"32\", [\"m18.75 20.16 9.54 9.55a1 1 0 0 0 1.42-1.42l-26-26a1 1 0 0 0-1.42 1.42l9.55 9.54-7.48 7.48a3.7 3.7 0 0 0-1 1.84l-1.34 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l7.48-7.48Zm-1.41-1.41-7.48 7.48c-.24.23-.53.39-.85.46l-4.7 1 1-4.7c.07-.32.23-.62.46-.85l7.48-7.48 4.09 4.09Zm7.5-7.5-5.03 5.02 1.42 1.42 7.33-7.34a4.89 4.89 0 0 0-6.91-6.92l-7.34 7.34 1.42 1.42 5.02-5.03 4.09 4.09Zm-1.78-6.4a2.89 2.89 0 0 1 4.09 4.08l-.9.9-4.09-4.08.9-.9Z\"]);\nexport const EditOff48Filled = /*#__PURE__*/createFluentIcon('EditOff48Filled', \"48\", [\"m28 29.77 13.87 13.86a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L18.23 20 8.03 30.2a6 6 0 0 0-1.56 2.76l-2.43 9.48a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58L28 29.76Zm10-10-6.46 6.46-9.77-9.76L28.23 10 38 19.77ZM32.2 6.03a6.9 6.9 0 1 1 9.77 9.76l-2.2 2.2L30 8.24l2.2-2.2Z\"]);\nexport const EditOff48Regular = /*#__PURE__*/createFluentIcon('EditOff48Regular', \"48\", [\"m28 29.77 13.87 13.86a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L18.23 20 8.03 30.2a6 6 0 0 0-1.56 2.76l-2.43 9.48a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58L28 29.76ZM26.23 28l-10.2 10.2c-.44.44-1 .76-1.6.91l-7.45 1.9 1.9-7.44c.16-.6.48-1.16.93-1.6L20 21.76 26.22 28Zm10-10-6.46 6.47 1.77 1.76L41.97 15.8a6.9 6.9 0 0 0-9.76-9.76L21.77 16.47l1.77 1.76L30 11.77 36.23 18ZM33.97 7.8a4.4 4.4 0 0 1 6.24 6.23L38 16.23 31.77 10l2.2-2.2Z\"]);\nexport const EditProhibited16Filled = /*#__PURE__*/createFluentIcon('EditProhibited16Filled', \"16\", [\"M10.53 1.76a2.62 2.62 0 1 1 3.7 3.71l-.54.55a5.49 5.49 0 0 0-1.05-.59L9.75 2.54l.78-.78ZM10.5 5h.3L9.04 3.26 2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.36-.1.69-.25.98-.46A5.5 5.5 0 0 1 10.5 5ZM6 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const EditProhibited16Regular = /*#__PURE__*/createFluentIcon('EditProhibited16Regular', \"16\", [\"M14.24 1.76a2.62 2.62 0 0 0-3.71 0L2.66 9.64c-.38.37-.64.84-.78 1.35l-.86 3.39a.5.5 0 0 0 .6.6l3.39-.86c.36-.1.69-.25.98-.46a5.5 5.5 0 0 1-.5-.88c-.21.17-.46.3-.73.37l-2.57.66.66-2.57c.09-.34.27-.65.51-.9L5.5 8.21A5.52 5.52 0 0 1 8.2 5.5l1.55-1.54L10.8 5c.65.03 1.27.18 1.84.42l-2.18-2.18.78-.78a1.62 1.62 0 1 1 2.29 2.3l-.74.73c.32.14.62.32.9.52l.55-.55a2.62 2.62 0 0 0 0-3.7ZM6 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const EditProhibited20Filled = /*#__PURE__*/createFluentIcon('EditProhibited20Filled', \"20\", [\"M12.92 2.87a2.97 2.97 0 0 1 4.2 4.21l-.66.67-4.2-4.2.66-.68Zm-1.38 1.38-8 8c-.32.33-.55.74-.65 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16A5.5 5.5 0 0 1 15 9.2l.75-.74-4.2-4.21ZM9 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const EditProhibited20Regular = /*#__PURE__*/createFluentIcon('EditProhibited20Regular', \"20\", [\"M17.18 2.93a2.97 2.97 0 0 0-4.26-.06l-9.37 9.38c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16c-.11-.39-.18-.8-.2-1.21l-.95.94c-.2.2-.46.35-.74.41l-3.16.7.7-3.18c.07-.27.2-.51.4-.7l7.99-8 2.8 2.8L13.78 9c.41.02.82.09 1.21.2l2.13-2.13a2.97 2.97 0 0 0 .05-4.15Zm-3.55.65a1.97 1.97 0 0 1 2.79 2.8l-.67.66-2.8-2.79.68-.67ZM9 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const EditProhibited24Filled = /*#__PURE__*/createFluentIcon('EditProhibited24Filled', \"24\", [\"M15.9 3.05a3.58 3.58 0 1 1 5.05 5.06l-.89.9L15 3.93l.9-.9ZM13.93 5l-10 10c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l1.15-1.15a6.52 6.52 0 0 1 7.76-7.76L19 10.06 13.94 5ZM22 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.26 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.7 2.25.7ZM9 20.06l-.53-.53Z\"]);\nexport const EditProhibited24Regular = /*#__PURE__*/createFluentIcon('EditProhibited24Regular', \"24\", [\"M20.95 3.05a3.58 3.58 0 0 0-5.06 0L3.94 15c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l1.15-1.15a6.52 6.52 0 0 1-.12-2L7.94 19a1.6 1.6 0 0 1-.76.43l-3.42.8.82-3.4c.06-.3.21-.56.42-.77l10-10L17.94 9l-2.03 2.03a6.57 6.57 0 0 1 2 .12l3.04-3.04a3.58 3.58 0 0 0 0-5.06Zm-4 1.06a2.08 2.08 0 1 1 2.94 2.94l-.89.89L16.06 5l.9-.9ZM22 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.26 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const EditProhibited28Filled = /*#__PURE__*/createFluentIcon('EditProhibited28Filled', \"28\", [\"M19.29 3.15a3.93 3.93 0 1 1 5.56 5.56l-1.54 1.54-5.56-5.56 1.54-1.54Zm-2.6 2.6L4.5 17.94c-.44.44-.76.98-.93 1.58l-1.54 5.53a.75.75 0 0 0 .92.92l5.53-1.54c.6-.17 1.14-.5 1.58-.93l2-2a7.5 7.5 0 0 1 8.43-8.43l1.76-1.76-5.56-5.56ZM19.5 27a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13Zm0-1.5a4.98 4.98 0 0 1-2.97-.97l7-7a5 5 0 0 1-4.03 7.97Zm2.97-9.03-7 7a5 5 0 0 1 7-7Z\"]);\nexport const EditProhibited28Regular = /*#__PURE__*/createFluentIcon('EditProhibited28Regular', \"28\", [\"M24.85 3.15a3.93 3.93 0 0 0-5.56 0L4.5 17.94c-.44.44-.76.98-.93 1.58l-1.54 5.53a.75.75 0 0 0 .92.92l5.53-1.54c.6-.17 1.14-.5 1.58-.93l2-2a7.58 7.58 0 0 1 .03-2.15L9 22.44c-.26.26-.58.44-.93.54l-4.24 1.19 1.19-4.24c.1-.35.28-.67.54-.93L17.75 6.8l3.44 3.44-2.84 2.84a7.55 7.55 0 0 1 2.14-.02l4.36-4.36a3.93 3.93 0 0 0 0-5.56Zm-4.5 1.06a2.43 2.43 0 1 1 3.44 3.44l-1.54 1.54-3.44-3.44 1.54-1.54ZM19.5 27a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13Zm0-1.5a4.98 4.98 0 0 1-2.97-.97l7-7a5 5 0 0 1-4.03 7.97Zm2.97-9.03-7 7a5 5 0 0 1 7-7Z\"]);\nexport const EditProhibited32Filled = /*#__PURE__*/createFluentIcon('EditProhibited32Filled', \"32\", [\"M21.65 3.43a4.89 4.89 0 1 1 6.91 6.92l-.9.9-6.91-6.91.9-.9Zm-2.31 2.32L4.36 20.73a3.7 3.7 0 0 0-1 1.84l-1.34 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l2.1-2.1a9 9 0 0 1 11.18-11.17l1.7-1.7-6.91-6.92ZM22 30.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm0-2a5.47 5.47 0 0 1-3.12-.97l7.65-7.65A5.5 5.5 0 0 1 22 28.5Zm3.12-10.03-7.65 7.65a5.5 5.5 0 0 1 7.65-7.65Z\"]);\nexport const EditProhibited32Regular = /*#__PURE__*/createFluentIcon('EditProhibited32Regular', \"32\", [\"M28.56 3.43c-1.9-1.9-5-1.9-6.91 0l-17.3 17.3a3.7 3.7 0 0 0-1 1.84l-1.33 6.22a1 1 0 0 0 1.19 1.19l6.22-1.34a3.7 3.7 0 0 0 1.84-1l2.1-2.1a9 9 0 0 1-.37-2.46l-3.14 3.15c-.24.23-.53.39-.85.46l-4.7 1 1-4.7c.07-.32.23-.62.46-.85L20.75 7.16l4.09 4.09L22.08 14a9 9 0 0 1 2.47.37l4.01-4.02c1.91-1.91 1.91-5 0-6.92Zm-5.5 1.42a2.89 2.89 0 0 1 4.09 4.08l-.9.9-4.09-4.08.9-.9ZM22 30.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm0-2a5.47 5.47 0 0 1-3.12-.97l7.65-7.65A5.5 5.5 0 0 1 22 28.5Zm3.12-10.03-7.65 7.65a5.5 5.5 0 0 1 7.65-7.65Z\"]);\nexport const EditProhibited48Filled = /*#__PURE__*/createFluentIcon('EditProhibited48Filled', \"48\", [\"M32.2 6.03a6.9 6.9 0 1 1 9.77 9.76l-2.2 2.2L30 8.24l2.2-2.2ZM28.24 10 8.03 30.2a6 6 0 0 0-1.56 2.75l-2.43 9.49a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58l2.44-2.44a13 13 0 0 1 15.28-15.28L38 19.77 28.23 10ZM33 46a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm0-2.5c-1.9 0-3.65-.62-5.06-1.67l11.89-11.9A8.5 8.5 0 0 1 33 43.5Zm5.06-15.33-11.89 11.9a8.5 8.5 0 0 1 11.9-11.9Z\"]);\nexport const EditProhibited48Regular = /*#__PURE__*/createFluentIcon('EditProhibited48Regular', \"48\", [\"M41.97 6.02a6.9 6.9 0 0 0-9.76 0L8.04 30.2a6 6 0 0 0-1.57 2.75l-2.43 9.49a1.25 1.25 0 0 0 1.52 1.52l9.49-2.42a6 6 0 0 0 2.76-1.58l2.44-2.44a13.07 13.07 0 0 1-.23-3.31l-3.98 3.99c-.45.44-1 .76-1.61.91l-7.45 1.9 1.9-7.44c.16-.6.48-1.16.93-1.6L30 11.76 36.23 18l-4.02 4.02a13.2 13.2 0 0 1 3.31.22l6.45-6.45a6.9 6.9 0 0 0 0-9.77Zm-8 1.77a4.4 4.4 0 0 1 6.24 6.23L38 16.23 31.77 10l2.2-2.2ZM33 46a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm0-2.5c-1.9 0-3.65-.62-5.06-1.67l11.89-11.9A8.5 8.5 0 0 1 33 43.5Zm5.06-15.33-11.89 11.9a8.5 8.5 0 0 1 11.9-11.9Z\"]);\nexport const EditSettings20Filled = /*#__PURE__*/createFluentIcon('EditSettings20Filled', \"20\", [\"M12.92 2.87a2.97 2.97 0 0 1 4.2 4.21l-.66.67-4.2-4.2.66-.68Zm-1.38 1.38-8 8c-.32.33-.55.74-.65 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16A5.5 5.5 0 0 1 15 9.2l.75-.74-4.2-4.21Zm-.47 7.2a2 2 0 0 1-1.43 2.47l-.46.12a4.7 4.7 0 0 0 0 1.02l.35.08A2 2 0 0 1 11 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 16 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.29.13-.57.3-.82.5l.16.55Zm2.43 4.05a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const EditSettings20Regular = /*#__PURE__*/createFluentIcon('EditSettings20Regular', \"20\", [\"M17.18 2.93a2.97 2.97 0 0 0-4.26-.06l-9.37 9.38c-.33.33-.56.74-.66 1.2l-.88 3.94a.5.5 0 0 0 .6.6l3.92-.87c.47-.1.9-.34 1.24-.68L8.2 16c-.11-.39-.18-.8-.2-1.21l-.95.94c-.2.2-.46.35-.74.41l-3.16.7.7-3.18c.07-.27.2-.51.4-.7l7.99-8 2.8 2.8L13.78 9c.41.02.82.09 1.21.2l2.13-2.13a2.97 2.97 0 0 0 .05-4.15Zm-3.55.65a1.97 1.97 0 0 1 2.79 2.8l-.67.66-2.8-2.79.68-.67Zm-2.56 7.86a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 0 1.02l.35.08A2 2 0 0 1 11 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 16 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.29.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const EditSettings24Filled = /*#__PURE__*/createFluentIcon('EditSettings24Filled', \"24\", [\"M15.9 3.05a3.58 3.58 0 1 1 5.05 5.06l-.89.9L15 3.93l.9-.9ZM13.93 5l-10 10c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l1.15-1.15a6.52 6.52 0 0 1 7.76-7.76L19 10.06 13.94 5Zm-.66 8.98a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.64c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.9l-.2-.7a2 2 0 0 1 1.44-2.5l.59-.14a5.73 5.73 0 0 0-.01-1.8l-.54-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.91l.2.69ZM16.5 19c-.8 0-1.45-.67-1.45-1.5S15.7 16 16.5 16c.8 0 1.45.67 1.45 1.5S17.3 19 16.5 19Z\"]);\nexport const EditSettings24Regular = /*#__PURE__*/createFluentIcon('EditSettings24Regular', \"24\", [\"M20.95 3.05a3.58 3.58 0 0 0-5.06 0L3.94 15c-.4.4-.7.92-.82 1.48l-1.1 4.6a.75.75 0 0 0 .9.9l4.6-1.1A3.1 3.1 0 0 0 9 20.07l1.15-1.15a6.52 6.52 0 0 1-.12-2L7.94 19a1.6 1.6 0 0 1-.76.43l-3.42.8.82-3.4c.06-.3.21-.56.42-.77l10-10L17.94 9l-2.03 2.03a6.57 6.57 0 0 1 2 .12l3.04-3.04a3.58 3.58 0 0 0 0-5.06Zm-4 1.06a2.08 2.08 0 1 1 2.94 2.94l-.89.89L16.06 5l.9-.9Zm-3.67 9.87a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.64c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.9l-.2-.7a2 2 0 0 1 1.44-2.5l.59-.14a5.73 5.73 0 0 0-.01-1.8l-.54-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.91l.2.69ZM16.5 19c-.8 0-1.45-.67-1.45-1.5S15.7 16 16.5 16c.8 0 1.45.67 1.45 1.5S17.3 19 16.5 19Z\"]);\nexport const Elevator20Filled = /*#__PURE__*/createFluentIcon('Elevator20Filled', \"20\", [\"M9.5 3H5a3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h4.5V3ZM5.65 7.15c.2-.2.5-.2.7 0l1.5 1.5a.5.5 0 1 1-.7.7l-.65-.64v2.79a.5.5 0 0 1-1 0V8.7l-.65.65a.5.5 0 1 1-.7-.7l1.5-1.5ZM10.5 16H15a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-4.5v13Zm3.85-4.15a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 .7-.7l.65.64V7.5a.5.5 0 0 1 1 0v2.8l.65-.65a.5.5 0 0 1 .7.7l-1.5 1.5Z\"]);\nexport const Elevator20Regular = /*#__PURE__*/createFluentIcon('Elevator20Regular', \"20\", [\"M5.65 7.15c.2-.2.5-.2.7 0l1.5 1.5a.5.5 0 1 1-.7.7l-.65-.64v2.79a.5.5 0 0 1-1 0V8.7l-.65.65a.5.5 0 1 1-.7-.7l1.5-1.5Zm10.2 3.2-1.5 1.5a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 .7-.7l.65.64V7.5a.5.5 0 0 1 1 0v2.8l.65-.65a.5.5 0 0 1 .7.7ZM5 3a3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H5Zm4.5 1v11H5a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4.5Zm1 11V4H15a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-4.5Z\"]);\nexport const Elevator24Filled = /*#__PURE__*/createFluentIcon('Elevator24Filled', \"24\", [\"M12.75 20h6c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4h-6v16Zm3.97-5.22-1.75-1.75a.75.75 0 1 1 1.06-1.06l.47.47V9.5a.75.75 0 0 1 1.5 0v2.94l.47-.47a.75.75 0 1 1 1.06 1.06l-1.75 1.75c-.3.3-.77.3-1.06 0ZM11.25 4h-6A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h6V4ZM7.28 8.97l1.75 1.75a.75.75 0 1 1-1.06 1.06l-.47-.47v2.94a.75.75 0 0 1-1.5 0v-2.94l-.47.47a.75.75 0 0 1-1.06-1.06l1.75-1.75c.3-.3.77-.3 1.06 0Z\"]);\nexport const Elevator24Regular = /*#__PURE__*/createFluentIcon('Elevator24Regular', \"24\", [\"M8.03 8.97a.75.75 0 0 0-1.06 0l-1.75 1.75a.75.75 0 1 0 1.06 1.06l.47-.47v2.94a.75.75 0 0 0 1.5 0v-2.94l.47.47a.75.75 0 0 0 1.06-1.06L8.03 8.97Zm6.19 4.06 1.75 1.75c.3.3.77.3 1.06 0l1.75-1.75a.75.75 0 1 0-1.06-1.06l-.47.47V9.5a.75.75 0 0 0-1.5 0v2.94l-.47-.47a.75.75 0 1 0-1.06 1.06ZM5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM3.5 7.25c0-.97.78-1.75 1.75-1.75h6v13h-6c-.97 0-1.75-.78-1.75-1.75v-9.5Zm9.25-1.75h6c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75h-6v-13Z\"]);\nexport const Elevator32Filled = /*#__PURE__*/createFluentIcon('Elevator32Filled', \"32\", [\"M17 28h8.5a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 25.5 4H17v24Zm7.5-16v6.09l1.3-1.3a1 1 0 0 1 1.4 1.42l-3 3a1 1 0 0 1-1.4 0l-3-3a1 1 0 0 1 1.4-1.42l1.3 1.3V12a1 1 0 1 1 2 0ZM15 4H6.5A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28H15V4ZM8.5 21.5a1 1 0 0 1-1-1v-6.09l-1.3 1.3a1 1 0 0 1-1.4-1.42l3-3a1 1 0 0 1 1.4 0l3 3a1 1 0 0 1-1.4 1.42l-1.3-1.3v6.09a1 1 0 0 1-1 1Z\"]);\nexport const Elevator32Regular = /*#__PURE__*/createFluentIcon('Elevator32Regular', \"32\", [\"M9.5 21.5a1 1 0 0 0 1-1v-6.09l1.3 1.3a1 1 0 0 0 1.4-1.42l-3-3a1 1 0 0 0-1.4 0l-3 3a1 1 0 1 0 1.4 1.42l1.3-1.3v6.09a1 1 0 0 0 1 1Zm14-9.5a1 1 0 1 0-2 0v6.09l-1.3-1.3a1 1 0 0 0-1.4 1.42l3 3a1 1 0 0 0 1.4 0l3-3a1 1 0 0 0-1.4-1.42l-1.3 1.3V12Zm-17-8A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h19a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 25.5 4h-19ZM4 8.5A2.5 2.5 0 0 1 6.5 6H15v20H6.5A2.5 2.5 0 0 1 4 23.5v-15ZM17 26V6h8.5A2.5 2.5 0 0 1 28 8.5v15a2.5 2.5 0 0 1-2.5 2.5H17Z\"]);\nexport const Elevator48Filled = /*#__PURE__*/createFluentIcon('Elevator48Filled', \"48\", [\"M22.77 8H10.25A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h12.52a1.26 1.26 0 0 1-.02-.25V8.25c0-.09 0-.17.02-.25Zm2.46 32h12.52C41.2 40 44 37.2 44 33.75v-19.5C44 10.8 41.2 8 37.75 8H25.23l.02.25v31.5c0 .09 0 .17-.02.25Zm14.15-13.62-4.25 4.25c-.48.5-1.28.5-1.76 0l-4.25-4.25a1.25 1.25 0 0 1 1.76-1.76L33 26.73v-8.48a1.25 1.25 0 1 1 2.5 0v8.48l2.12-2.11a1.25 1.25 0 0 1 1.76 1.76Zm-26.51-9.01a1.25 1.25 0 0 1 1.76 0l4.25 4.25a1.25 1.25 0 0 1-1.76 1.76L15 21.27v8.48a1.25 1.25 0 1 1-2.5 0v-8.48l-2.12 2.11a1.25 1.25 0 0 1-1.76-1.76l4.25-4.25Z\"]);\nexport const Elevator48Regular = /*#__PURE__*/createFluentIcon('Elevator48Regular', \"48\", [\"M10.25 8A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h27.5C41.2 40 44 37.2 44 33.75v-19.5C44 10.8 41.2 8 37.75 8h-27.5Zm12.5 2.5v27h-12.5a3.75 3.75 0 0 1-3.75-3.75v-19.5a3.75 3.75 0 0 1 3.75-3.75h12.5Zm2.5 27v-27h12.5a3.75 3.75 0 0 1 3.75 3.75v19.5a3.75 3.75 0 0 1-3.75 3.75h-12.5Zm13.13-11.12-4.25 4.25c-.48.5-1.28.5-1.76 0l-4.25-4.25a1.25 1.25 0 0 1 1.76-1.76L32 26.73v-8.48a1.25 1.25 0 1 1 2.5 0v8.48l2.12-2.11a1.25 1.25 0 0 1 1.76 1.76Zm-24.51-9.01a1.25 1.25 0 0 1 1.76 0l4.25 4.25a1.25 1.25 0 0 1-1.76 1.76L16 21.27v8.48a1.25 1.25 0 1 1-2.5 0v-8.48l-2.12 2.11a1.25 1.25 0 0 1-1.76-1.76l4.25-4.25Z\"]);\nexport const Emoji16Filled = /*#__PURE__*/createFluentIcon('Emoji16Filled', \"16\", [\"M8 14A6 6 0 1 1 8 2a6 6 0 0 1 0 12ZM6.25 7.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-.11 1.92a.5.5 0 1 0-.75.66 3.5 3.5 0 0 0 5.22 0 .5.5 0 1 0-.75-.66 2.5 2.5 0 0 1-3.72 0Zm3.61-1.92a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Emoji16Regular = /*#__PURE__*/createFluentIcon('Emoji16Regular', \"16\", [\"M6.25 7.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-.11 1.92a.5.5 0 1 0-.75.66 3.5 3.5 0 0 0 5.22 0 .5.5 0 0 0-.75-.66 2.5 2.5 0 0 1-3.72 0ZM10.5 7A.75.75 0 1 1 9 7a.75.75 0 0 1 1.5 0ZM14 8A6 6 0 1 0 2 8a6 6 0 0 0 12 0ZM3 8a5 5 0 1 1 10 0A5 5 0 0 1 3 8Z\"]);\nexport const Emoji20Filled = /*#__PURE__*/createFluentIcon('Emoji20Filled', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16ZM7.15 12.43a.5.5 0 1 0-.7.7 5.01 5.01 0 0 0 6.9.2l.2-.2.06-.07a.5.5 0 0 0-.7-.7l-.06.07-.18.17a4.01 4.01 0 0 1-5.52-.17ZM12.5 7.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z\"]);\nexport const Emoji20Regular = /*#__PURE__*/createFluentIcon('Emoji20Regular', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 1a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-2.85 9.43a4.01 4.01 0 0 0 5.52.17l.18-.17a.5.5 0 0 1 .76.63l-.06.07-.02.02a5.01 5.01 0 0 1-7.08-.02.5.5 0 0 1 .7-.7ZM12.5 7.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-5 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const Emoji24Filled = /*#__PURE__*/createFluentIcon('Emoji24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20ZM8.46 14.78a.75.75 0 0 0-1.18.93 6 6 0 0 0 9.43 0 .75.75 0 1 0-1.18-.92 4.5 4.5 0 0 1-7.07 0ZM9 8.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const Emoji24Regular = /*#__PURE__*/createFluentIcon('Emoji24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17ZM8.46 14.78a4.5 4.5 0 0 0 7.07 0 .75.75 0 1 1 1.18.94 6 6 0 0 1-9.43 0 .75.75 0 1 1 1.18-.94ZM9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Emoji28Filled = /*#__PURE__*/createFluentIcon('Emoji28Filled', \"28\", [\"M2 14a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm15.5-1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 11.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm-3.67 5.63a.75.75 0 0 0-.2 1.04l.01.02a3.06 3.06 0 0 0 .1.13l.28.33A7.42 7.42 0 0 0 14 21a7.42 7.42 0 0 0 5.84-2.78l.02-.03v-.01h.01a.75.75 0 0 0-1.24-.85 2.22 2.22 0 0 1-.25.3A5.92 5.92 0 0 1 14 19.5a5.92 5.92 0 0 1-4.62-2.16l-.01-.01a.75.75 0 0 0-1.04-.2Z\"]);\nexport const Emoji28Regular = /*#__PURE__*/createFluentIcon('Emoji28Regular', \"28\", [\"M17.5 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-3.67 5.63a.75.75 0 0 1 1.04.2 2.25 2.25 0 0 0 .25.3A5.92 5.92 0 0 0 14 19.5a5.92 5.92 0 0 0 4.62-2.16l.01-.01a.75.75 0 0 1 1.24.84l-.01.02-.02.03a3.85 3.85 0 0 1-.36.43A7.42 7.42 0 0 1 14 21a7.42 7.42 0 0 1-5.86-2.81v-.01h-.01a.75.75 0 0 1 .2-1.05ZM14 2a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM3.5 14a10.5 10.5 0 1 1 21 0 10.5 10.5 0 0 1-21 0Z\"]);\nexport const Emoji32Filled = /*#__PURE__*/createFluentIcon('Emoji32Filled', \"32\", [\"M2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0Zm10-1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0ZM9.55 19.1a1 1 0 0 0-.44 1.35v.02a2.45 2.45 0 0 0 .1.18l.3.42c.25.34.63.78 1.18 1.21A8.28 8.28 0 0 0 16 24c2.5 0 4.21-.84 5.31-1.72a6.76 6.76 0 0 0 1.57-1.8v-.02h.01v-.01a1 1 0 0 0-1.78-.9l-.04.06-.17.26c-.17.22-.44.53-.84.85A6.3 6.3 0 0 1 16 22c-2 0-3.29-.66-4.06-1.28a4.76 4.76 0 0 1-1.05-1.17 1 1 0 0 0-1.34-.44Z\"]);\nexport const Emoji32Regular = /*#__PURE__*/createFluentIcon('Emoji32Regular', \"32\", [\"M12 15a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM9.55 19.1a1 1 0 0 1 1.34.45l.04.06.17.26c.17.22.44.53.84.85A6.3 6.3 0 0 0 16 22c2 0 3.29-.66 4.06-1.28a4.76 4.76 0 0 0 1.05-1.17 1 1 0 0 1 1.78.9v.02a2.61 2.61 0 0 1-.1.18l-.3.42c-.25.34-.63.78-1.18 1.21A8.28 8.28 0 0 1 16 24c-2.5 0-4.21-.84-5.31-1.72a6.76 6.76 0 0 1-1.57-1.8v-.02H9.1v-.01a1 1 0 0 1 .44-1.34ZM16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28ZM4 16a12 12 0 1 1 24 0 12 12 0 0 1-24 0Z\"]);\nexport const Emoji48Filled = /*#__PURE__*/createFluentIcon('Emoji48Filled', \"48\", [\"M4 24a20 20 0 1 1 40 0 20 20 0 0 1-40 0Zm13.5-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM33 19.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0ZM18.45 34.68c1.71.9 3.62 1.34 5.55 1.32a11.72 11.72 0 0 0 9.82-5.1 1.25 1.25 0 1 0-2.13-1.3A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3c1.1 1.6 2.56 2.9 4.27 3.78Z\"]);\nexport const Emoji48Regular = /*#__PURE__*/createFluentIcon('Emoji48Regular', \"48\", [\"M17.5 22a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM33 19.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM18.45 34.68c1.71.9 3.62 1.34 5.55 1.32a11.72 11.72 0 0 0 9.82-5.1 1.25 1.25 0 1 0-2.13-1.3A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3c1.1 1.6 2.56 2.9 4.27 3.78ZM24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40ZM6.5 24a17.5 17.5 0 1 1 35 0 17.5 17.5 0 0 1-35 0Z\"]);\nexport const EmojiAdd16Filled = /*#__PURE__*/createFluentIcon('EmojiAdd16Filled', \"16\", [\"M7 13h.25a4.5 4.5 0 0 1-.14-2.5A3.47 3.47 0 0 1 4.4 9.33a.5.5 0 0 1 .75-.66 2.5 2.5 0 0 0 2.35.78 4.5 4.5 0 0 1 5.5-2.2L13 7a6 6 0 1 0-6 6ZM5.25 6.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm3.5 0a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM15 11.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-3-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const EmojiAdd16Regular = /*#__PURE__*/createFluentIcon('EmojiAdd16Regular', \"16\", [\"M13 7a6 6 0 1 0-5.75 6 4.47 4.47 0 0 1-.22-1H7a5 5 0 1 1 5-5v.03c.34.04.68.11 1 .22V7Zm-5.89 3.5c.09-.37.21-.72.38-1.05a2.51 2.51 0 0 1-2.35-.78.5.5 0 0 0-.75.66 3.5 3.5 0 0 0 2.72 1.17ZM6 6a.75.75 0 1 1-1.5 0A.75.75 0 0 1 6 6Zm2.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-3-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const EmojiAdd20Filled = /*#__PURE__*/createFluentIcon('EmojiAdd20Filled', \"20\", [\"M9 1a8 8 0 0 1 7.98 8.59 5.48 5.48 0 0 0-7.64 3 4 4 0 0 1-3.19-1.16.5.5 0 1 0-.7.7 5 5 0 0 0 3.62 1.48 5.54 5.54 0 0 0 .52 3.37L9 17A8 8 0 1 1 9 1Zm2.5 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm12.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const EmojiAdd20Regular = /*#__PURE__*/createFluentIcon('EmojiAdd20Regular', \"20\", [\"M9 1a8 8 0 0 1 7.98 8.59A5.46 5.46 0 0 0 16 9.2V9a7 7 0 1 0-6.8 7c.1.34.23.67.39.98L9 17A8 8 0 1 1 9 1ZM6.15 11.43a4 4 0 0 0 3.19 1.17l-.03.06c-.1.3-.19.62-.24.95a5 5 0 0 1-3.62-1.48.5.5 0 0 1 .7-.7ZM11.5 6.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-5 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm12.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const EmojiAdd24Filled = /*#__PURE__*/createFluentIcon('EmojiAdd24Filled', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11ZM12 2a10 10 0 0 1 9.97 10.78 6.5 6.5 0 0 0-10.88 3.63 4.49 4.49 0 0 1-2.63-1.63.75.75 0 0 0-1.18.93 6 6 0 0 0 3.73 2.21c.1 1.56.76 2.98 1.77 4.05L12 22a10 10 0 1 1 0-20Zm5.5 12h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.4v.19c.04.2.2.36.4.4H17v2.61c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09ZM9 8.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const EmojiAdd24Regular = /*#__PURE__*/createFluentIcon('EmojiAdd24Regular', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11ZM12 2a10 10 0 0 1 9.97 10.78 6.5 6.5 0 0 0-1.47-1.05 8.5 8.5 0 1 0-8.77 8.77 6.5 6.5 0 0 0 1.05 1.47L12 22a10 10 0 1 1 0-20Zm5.5 12h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.4v.19c.04.2.2.36.4.4H17v2.61c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09Zm-9.04.78a4.5 4.5 0 0 0 2.63 1.63 6.46 6.46 0 0 0-.08 1.5 5.98 5.98 0 0 1-3.73-2.2.75.75 0 1 1 1.18-.93ZM9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const EmojiAngry16Filled = /*#__PURE__*/createFluentIcon('EmojiAngry16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM5.85 5.15a.5.5 0 1 0-.7.7l.6.6a.75.75 0 0 0 .5 1.3.75.75 0 0 0 .7-1.03.5.5 0 0 0-.1-.57l-1-1ZM10.5 7c0-.22-.1-.41-.24-.55l.6-.6a.5.5 0 0 0-.71-.7l-1 1a.5.5 0 0 0-.1.57.75.75 0 0 0 .7 1.03c.41 0 .75-.34.75-.75Zm-4.36 4.33a2.5 2.5 0 0 1 3.72 0 .5.5 0 0 0 .75-.66 3.5 3.5 0 0 0-5.22 0 .5.5 0 0 0 .75.66Z\"]);\nexport const EmojiAngry16Regular = /*#__PURE__*/createFluentIcon('EmojiAngry16Regular', \"16\", [\"M7 7a.75.75 0 1 1-1.26-.55l-.6-.6a.5.5 0 1 1 .71-.7l1 1a.5.5 0 0 1 .1.57c.03.09.05.18.05.28Zm2.75.75a.75.75 0 0 0 .5-1.3l.6-.6a.5.5 0 0 0-.7-.7l-1 1a.5.5 0 0 0-.1.57.75.75 0 0 0 .7 1.03Zm-4.32 3.62c.2.19.52.17.7-.04a2.5 2.5 0 0 1 3.73 0 .5.5 0 0 0 .75-.66 3.5 3.5 0 0 0-5.22 0 .5.5 0 0 0 .04.7ZM8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 1a5 5 0 1 0 0 10A5 5 0 0 0 8 3Z\"]);\nexport const EmojiAngry20Filled = /*#__PURE__*/createFluentIcon('EmojiAngry20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm6.5-1.5a.5.5 0 0 0 .26-.93l-2.5-1.5a.5.5 0 0 0-.52.86l1.22.73a1 1 0 1 0 1.54.84Zm5 0a1 1 0 0 0-.46-.84l1.22-.73a.5.5 0 0 0-.52-.86l-2.5 1.5a.5.5 0 0 0 .26.93 1 1 0 1 0 2 0Zm.06 4.89c.34-.3.07-.72.06-.73a2.05 2.05 0 0 0-.23-.23 4.06 4.06 0 0 0-.67-.49 5.3 5.3 0 0 0-2.72-.69 5.3 5.3 0 0 0-2.72.7 4.08 4.08 0 0 0-.9.7c-.18.23-.17.55.06.74a.5.5 0 0 0 .7-.07l.02-.03c.03-.03.06-.07.12-.11.1-.1.27-.24.5-.37a4.31 4.31 0 0 1 2.22-.56 4.3 4.3 0 0 1 2.22.56 3.07 3.07 0 0 1 .64.5c.18.22.5.27.7.08Z\"]);\nexport const EmojiAngry20Regular = /*#__PURE__*/createFluentIcon('EmojiAngry20Regular', \"20\", [\"M8.5 8.5a1 1 0 1 1-1.54-.84l-1.22-.73a.5.5 0 0 1 .52-.86l2.5 1.5a.5.5 0 0 1-.26.93Zm5 0a1 1 0 1 1-2 0 .5.5 0 0 1-.26-.93l2.5-1.5a.5.5 0 0 1 .52.86l-1.22.73a1 1 0 0 1 .46.84Zm.06 4.89a.5.5 0 0 1-.7-.07A4.3 4.3 0 0 0 10 12.25c-1.02-.01-1.75.27-2.21.55a3.09 3.09 0 0 0-.65.5.5.5 0 0 1-.78-.62l.39.31-.39-.31v-.01l.02-.02a1.78 1.78 0 0 1 .23-.23c.15-.13.37-.31.67-.49.6-.35 1.5-.69 2.72-.69a5.3 5.3 0 0 1 2.72.7 4.06 4.06 0 0 1 .9.71l.01.02h.01l-.39.32.39-.31a.5.5 0 0 1-.08.7ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const EmojiAngry24Filled = /*#__PURE__*/createFluentIcon('EmojiAngry24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 11.5c-1.63 0-3.17.66-4.29 1.8a.75.75 0 1 0 1.07 1.05 4.48 4.48 0 0 1 6.43 0 .75.75 0 1 0 1.07-1.06A5.98 5.98 0 0 0 12 13.5ZM8.22 6.66l-.1-.06a.75.75 0 0 0-.92 1.16l.08.07 1.26 1A1.25 1.25 0 1 0 10.25 10a.75.75 0 0 0 .55-1.26l-.08-.08-2.5-2-.1-.06.1.06Zm8.62.12a.75.75 0 0 0-.97-.18l-.09.06-2.5 2-.08.08a.75.75 0 0 0 .44 1.25h.11a1.25 1.25 0 1 0 1.83-1.1l-.12-.05 1.26-1 .08-.08a.75.75 0 0 0 .04-.98Z\"]);\nexport const EmojiAngry24Regular = /*#__PURE__*/createFluentIcon('EmojiAngry24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm0 10c1.63 0 3.16.65 4.28 1.8a.75.75 0 1 1-1.07 1.04 4.48 4.48 0 0 0-6.43 0 .75.75 0 1 1-1.07-1.04A5.98 5.98 0 0 1 12 13.5ZM7.16 6.78c.24-.3.65-.36.97-.18l.09.06 2.5 2a.75.75 0 0 1-.47 1.34 1.25 1.25 0 1 1-1.71-1.16l-1.26-1a.75.75 0 0 1-.12-1.06Zm6.12 1.88 2.5-2a.75.75 0 0 1 1.02 1.1l-.08.07-1.26 1a1.25 1.25 0 1 1-1.7 1.3V10a.75.75 0 0 1-.55-1.26l.07-.08 2.5-2-2.5 2Z\"]);\nexport const EmojiEdit16Filled = /*#__PURE__*/createFluentIcon('EmojiEdit16Filled', \"16\", [\"M8 2a6 6 0 0 1 5.2 3 2.86 2.86 0 0 0-2.1.84l-.73.73a.75.75 0 1 0-1.05 1.05l-2.55 2.56c-.24-.14-.45-.31-.63-.51a.5.5 0 1 0-.75.66c.2.22.42.42.67.58-.3.36-.51.79-.63 1.25l-.28 1.12A6 6 0 0 1 8 2ZM6.25 7.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm.73 3.63 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const EmojiEdit16Regular = /*#__PURE__*/createFluentIcon('EmojiEdit16Regular', \"16\", [\"M6.25 7.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-.11 1.92a.5.5 0 1 0-.75.66c.2.22.42.42.67.58l.21-.24.5-.5c-.24-.13-.45-.3-.63-.5ZM3 8a5 5 0 0 0 2.4 4.27l-.25 1.01A6 6 0 1 1 13.2 5c-.36 0-.73.05-1.07.18A5 5 0 0 0 3 8Zm6.75-1.75c.26 0 .48.13.62.32L9.32 7.62a.75.75 0 0 1 .43-1.37Zm-2.77 5.13 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const EmojiEdit20Filled = /*#__PURE__*/createFluentIcon('EmojiEdit20Filled', \"20\", [\"M10 2a8 8 0 0 1 7.95 7.12 2.87 2.87 0 0 0-2.85.72l-3.38 3.39c-1.5.7-3.33.44-4.57-.8a.5.5 0 1 0-.7.7 5 5 0 0 0 3.9 1.47l-.08.07c-.4.41-.7.92-.84 1.49l-.37 1.5c-.03.09-.04.18-.05.28A8 8 0 0 1 10 2Zm2.5 5.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-5 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3.48 7.88 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const EmojiEdit20Regular = /*#__PURE__*/createFluentIcon('EmojiEdit20Regular', \"20\", [\"M10 2a8 8 0 0 1 7.95 7.12c-.33-.1-.68-.14-1.02-.11a7 7 0 1 0-7.7 7.95l-.17.7c-.03.09-.04.18-.05.28A8 8 0 0 1 10 2ZM7.15 12.43a4.01 4.01 0 0 0 4.57.8l-1.38 1.37a5 5 0 0 1-3.9-1.47.5.5 0 0 1 .71-.7ZM12.5 7.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-5 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm3.48 7.88 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const EmojiEdit24Filled = /*#__PURE__*/createFluentIcon('EmojiEdit24Filled', \"24\", [\"M12 2a10 10 0 0 1 9.97 9.25 3.29 3.29 0 0 0-3.58.71l-2.63 2.64a.75.75 0 0 0-.23.19l-.16.2-.39.38a4.49 4.49 0 0 1-6.52-.59.75.75 0 0 0-1.18.93A6 6 0 0 0 12.37 18c-.4.45-.7 1-.85 1.59l-.46 1.83c-.04.18-.06.36-.06.54A10 10 0 0 1 12 2ZM9 8.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm4.1 3.92-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const EmojiEdit24Regular = /*#__PURE__*/createFluentIcon('EmojiEdit24Regular', \"24\", [\"M12 2a10 10 0 0 1 9.97 9.25 3.3 3.3 0 0 0-1.53-.24 8.5 8.5 0 1 0-9.14 9.46l-.24.94c-.04.18-.06.36-.06.54A10 10 0 0 1 12 2Zm0 14.5c1.12 0 2.17-.41 2.98-1.13l-2.49 2.5-.12.12a6 6 0 0 1-5.09-2.28.75.75 0 1 1 1.18-.93A4.5 4.5 0 0 0 12 16.5ZM9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm4.1 3.92-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const EmojiEdit28Filled = /*#__PURE__*/createFluentIcon('EmojiEdit28Filled', \"28\", [\"M2 14a12 12 0 0 1 23.98-.75 3.29 3.29 0 0 0-3.59.71l-3.04 3.05a.75.75 0 0 0-.72.32 2.22 2.22 0 0 1-.25.3A5.92 5.92 0 0 1 14 19.5a5.92 5.92 0 0 1-4.62-2.16l-.01-.01a.75.75 0 0 0-1.24.84l.01.02a3.06 3.06 0 0 0 .1.13l.28.33a7.42 7.42 0 0 0 6.98 2.21l-1.01 1c-.47.48-.8 1.07-.97 1.72l-.46 1.83c-.04.18-.06.37-.06.55A12 12 0 0 1 2 14Zm15.5-1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 11.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm11.1 3.17-7.9 7.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l7.9-7.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const EmojiEdit28Regular = /*#__PURE__*/createFluentIcon('EmojiEdit28Regular', \"28\", [\"M17.5 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-3.67 5.63a.75.75 0 0 1 1.04.2 2.25 2.25 0 0 0 .25.3A5.92 5.92 0 0 0 14 19.5a5.92 5.92 0 0 0 4.62-2.16l.01-.01a.75.75 0 0 1 .72-.32l-3.85 3.85c-.47.09-.96.14-1.5.14a7.42 7.42 0 0 1-5.86-2.81v-.01h-.01a.75.75 0 0 1 .2-1.05ZM14 3.5a10.5 10.5 0 0 1 10.45 9.51 3.3 3.3 0 0 1 1.53.24A12 12 0 1 0 13 25.95c0-.17.02-.36.06-.54l.24-.93A10.5 10.5 0 0 1 14 3.5Zm9.1 11.17-7.9 7.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l7.9-7.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const EmojiEdit48Filled = /*#__PURE__*/createFluentIcon('EmojiEdit48Filled', \"48\", [\"M4 24a20 20 0 0 1 39.93-1.69 5.98 5.98 0 0 0-6.17 1.48L32.62 29a1.24 1.24 0 0 0-.93.6A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3A11.72 11.72 0 0 0 24 36c.62 0 1.24-.03 1.85-.12l-1.6 1.63a5 5 0 0 0-1.28 2.25L22.13 43c-.08.3-.12.6-.13.9A20 20 0 0 1 4 24Zm13.5-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM33 19.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Zm11.83 5.67a3.98 3.98 0 0 0-5.65.02l-13.5 13.72a3 3 0 0 0-.78 1.35l-.83 3.24a2 2 0 0 0 2.43 2.44l3.24-.84a3 3 0 0 0 1.35-.77L44.8 30.82a3.98 3.98 0 0 0 .02-5.65Z\"]);\nexport const EmojiEdit48Regular = /*#__PURE__*/createFluentIcon('EmojiEdit48Regular', \"48\", [\"M17.5 22a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM33 19.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM18.45 34.68c1.71.9 3.62 1.34 5.55 1.32.62 0 1.24-.03 1.85-.12L32.62 29a1.24 1.24 0 0 0-.93.6A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3c1.1 1.6 2.56 2.9 4.27 3.78ZM6.5 24a17.5 17.5 0 0 0 16.03 17.44l-.4 1.56c-.08.3-.12.6-.13.9a20 20 0 1 1 21.93-21.59 6 6 0 0 0-2.54-.28A17.5 17.5 0 0 0 6.5 24Zm38.33 1.17a3.98 3.98 0 0 0-5.65.02l-13.5 13.72a3 3 0 0 0-.78 1.35l-.83 3.24a2 2 0 0 0 2.43 2.44l3.24-.84a3 3 0 0 0 1.35-.77L44.8 30.82a3.98 3.98 0 0 0 .02-5.65Z\"]);\nexport const EmojiHand16Filled = /*#__PURE__*/createFluentIcon('EmojiHand16Filled', \"16\", [\"M6 1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 1-1 0v-5a.5.5 0 0 0-1 0v5a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-1 0v6.3c0 .54.13 1.07.37 1.56L2 11.62A2.5 2.5 0 0 0 4.24 13h.26c1.39 0 2.44-1.14 2.99-2.17.42-.8 1.2-1.73 2.7-2.37a.5.5 0 0 0 .23-.74c-.3-.45-.66-.73-1.04-.9A2.08 2.08 0 0 0 8 6.76V2.5a.5.5 0 0 0-1 0v4a.5.5 0 0 1-1 0v-5ZM11 16a5 5 0 0 1-4.42-2.66 5.74 5.74 0 0 0 1.8-2.05c.31-.6.93-1.36 2.21-1.91a1.5 1.5 0 0 0 .66-2.21c-.32-.47-.7-.84-1.14-1.1A5 5 0 1 1 11 16Zm1.75-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-.03.55a.5.5 0 0 0-.67.23c-.12.24-.37.43-.7.55-.32.13-.65.17-.85.17a.5.5 0 0 0 0 1c.3 0 .77-.06 1.22-.23.45-.18.95-.5 1.23-1.05a.5.5 0 0 0-.23-.67Z\"]);\nexport const EmojiHand16Regular = /*#__PURE__*/createFluentIcon('EmojiHand16Regular', \"16\", [\"M3.09 2c.2-.58.76-1 1.41-1h2c.65 0 1.2.42 1.41 1H8a2 2 0 0 1 2 2v2.31c.17-.03.36-.06.56-.06.36 0 .77.08 1.13.35.37.27.65.69.8 1.28a.5.5 0 0 1-.3.58 8.04 8.04 0 0 0-3.61 3.03A3.1 3.1 0 0 1 6.06 13H4.24A2.5 2.5 0 0 1 2 11.62l-.63-1.26A3.5 3.5 0 0 1 1 8.79V4c0-1.1.9-2 2-2h.09ZM5 2h-.5a.5.5 0 0 0-.5.5v4a.5.5 0 1 1-1 0V3a1 1 0 0 0-1 1v4.8c0 .38.09.76.26 1.11l.63 1.26c.26.5.78.83 1.35.83h1.82c.64 0 1.27-.42 1.68-1.05a9.01 9.01 0 0 1 3.64-3.21.91.91 0 0 0-.28-.34.9.9 0 0 0-.54-.15 2 2 0 0 0-.83.2A.5.5 0 0 1 9 7V4a1 1 0 0 0-1-1v3.5a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5H6v4.5a.5.5 0 0 1-1 0V2Zm6 14a5 5 0 0 1-4.08-2.1c.35-.1.67-.23.96-.4a4 4 0 1 0 5.61-5.63c0-.08-.02-.15-.04-.23a3.5 3.5 0 0 0-.59-1.28A5 5 0 0 1 11 16Zm2.5-5.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.55 1.97a.5.5 0 1 0-.9-.44c-.12.24-.37.43-.7.55-.32.13-.65.17-.85.17a.5.5 0 0 0 0 1c.3 0 .77-.06 1.22-.23.45-.18.95-.5 1.23-1.05Z\"]);\nexport const EmojiHand20Filled = /*#__PURE__*/createFluentIcon('EmojiHand20Filled', \"20\", [\"M5.5 1c.28 0 .5.22.5.5v5a.5.5 0 0 0 1 0v-4a.5.5 0 0 1 1 0v4.25l.31-.06c.32-.04.7-.02 1.07.14.38.16.74.44 1.04.9a.5.5 0 0 1-.22.73 5.26 5.26 0 0 0-2.71 2.37C6.94 11.86 5.89 13 4.5 13h-.26A2.5 2.5 0 0 1 2 11.62l-.63-1.26A3.5 3.5 0 0 1 1 8.79V2.5a.5.5 0 0 1 1 0v4a.5.5 0 0 0 1 0v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 0 1 0v-5c0-.28.22-.5.5-.5Zm2.87 10.3c-.28.54-.74 1.18-1.35 1.7a5.5 5.5 0 1 0 4.21-5.85l.02.02a1.5 1.5 0 0 1-.66 2.2 4.27 4.27 0 0 0-2.22 1.92Zm2.38 1.2a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm4.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-4.05 2.53c.08.17.55.72 1.55.72s1.47-.55 1.55-.72a.5.5 0 1 1 .9.44c-.25.5-1.05 1.28-2.45 1.28-1.4 0-2.2-.78-2.45-1.28a.5.5 0 1 1 .9-.44Z\"]);\nexport const EmojiHand20Regular = /*#__PURE__*/createFluentIcon('EmojiHand20Regular', \"20\", [\"M4.5 1c-.65 0-1.2.42-1.41 1H3a2 2 0 0 0-2 2v4.8c0 .54.13 1.07.37 1.56L2 11.62A2.5 2.5 0 0 0 4.24 13h1.82a3.1 3.1 0 0 0 2.52-1.5 8.04 8.04 0 0 1 3.62-3.04.5.5 0 0 0 .29-.58 2.17 2.17 0 0 0-.8-1.28 1.9 1.9 0 0 0-1.13-.35c-.2 0-.4.03-.56.06V4a2 2 0 0 0-2-2h-.09c-.2-.58-.76-1-1.41-1h-2Zm0 1H5v4.5a.5.5 0 0 0 1 0V2h.5c.28 0 .5.22.5.5v4a.5.5 0 1 0 1 0V3a1 1 0 0 1 1 1v3a.5.5 0 0 0 .72.45h.01a1.51 1.51 0 0 1 .24-.1 2 2 0 0 1 .6-.1c.2 0 .39.05.53.15.1.07.19.17.28.34-1.87.9-3 2.22-3.64 3.21-.4.63-1.04 1.05-1.68 1.05H4.24a1.5 1.5 0 0 1-1.35-.83l-.63-1.26A2.5 2.5 0 0 1 2 8.79V4a1 1 0 0 1 1-1v3.5a.5.5 0 1 0 1 0v-4c0-.28.22-.5.5-.5Zm8.76 5.05a5.5 5.5 0 1 1-6.1 6.78c.33-.11.64-.27.93-.45a4.5 4.5 0 1 0 5.4-5.27c.02-.16 0-.32-.03-.47-.06-.2-.12-.4-.2-.59Zm-2.51 5.45a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm4.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-4.05 2.53a.5.5 0 1 0-.9.44c.25.5 1.05 1.28 2.45 1.28 1.4 0 2.2-.78 2.45-1.28a.5.5 0 1 0-.9-.44c-.08.17-.55.72-1.55.72s-1.47-.55-1.55-.72Z\"]);\nexport const EmojiHand24Filled = /*#__PURE__*/createFluentIcon('EmojiHand24Filled', \"24\", [\"M7.5 7.5V1.75a.75.75 0 0 1 1.5 0V7.5a.5.5 0 1 0 1 0v-5a.75.75 0 0 1 1.5 0v5.81A4.4 4.4 0 0 1 13 8c.5 0 .93.12 1.24.28.16.08.3.17.42.28l.19.21c.05.07.15.24.15.48 0 .26-.13.5-.35.64l-1.9 1.19-1.67 1.89-1.37 1.9A2.75 2.75 0 0 1 7.48 16H6.34c-.93 0-1.82-.47-2.3-1.31a20.7 20.7 0 0 1-.98-1.9 5.58 5.58 0 0 1-.56-2.04v-7a.75.75 0 0 1 1.5 0V8a.5.5 0 0 0 1 0V2.5a.75.75 0 0 1 1.5 0v5a.5.5 0 1 0 1 0ZM15 22a7 7 0 0 1-6.73-5.08c.9-.2 1.7-.71 2.25-1.47l1.35-1.86 1.53-1.74 1.78-1.12c.5-.32.82-.88.82-1.48a1.86 1.86 0 0 0-.47-1.23A7 7 0 0 1 15 22Zm3-8a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-5.86 2.71c-.3.29-.31.76-.02 1.06a3.99 3.99 0 0 0 5.76 0 .75.75 0 1 0-1.08-1.04 2.5 2.5 0 0 1-3.6 0 .75.75 0 0 0-1.06-.02ZM14 14a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const EmojiHand24Regular = /*#__PURE__*/createFluentIcon('EmojiHand24Regular', \"24\", [\"M9.24 1.82c.15-.04.33-.07.51-.07 1.1 0 1.75.9 1.75 1.75v3.67c.29-.1.63-.17 1-.17C13.9 7 15 8.03 15 9.5c0 .24-.12.47-.31.61l-1.72 1.23-.96.83c-.63.56-1.2 1.19-1.7 1.87l-.6.83A2.75 2.75 0 0 1 7.48 16H5.84c-.93 0-1.82-.47-2.3-1.31a20.7 20.7 0 0 1-.98-1.9A5.58 5.58 0 0 1 2 10.75v-6a1.74 1.74 0 0 1 2.07-1.72c.19-.69.79-1.28 1.68-1.28.18 0 .35.03.51.07.3-.47.8-.82 1.49-.82.68 0 1.2.35 1.49.82Zm-1.67.75a.27.27 0 0 0-.07.18v4.5a.75.75 0 0 1-1.5 0v-3.8a.22.22 0 0 0-.06-.12.25.25 0 0 0-.19-.08c-.1 0-.15.03-.18.07a.27.27 0 0 0-.07.18v4.25a.75.75 0 0 1-1.5 0v-3a.27.27 0 0 0-.07-.18c-.03-.04-.09-.07-.18-.07-.1 0-.15.03-.18.07a.27.27 0 0 0-.07.18v6c0 .28.15.79.43 1.43.27.62.62 1.26.9 1.76.2.34.58.56 1.01.56h1.64c.4 0 .78-.2 1.01-.52l.6-.82c.56-.78 1.21-1.49 1.94-2.12l.98-.86a.78.78 0 0 1 .06-.04l1.38-.99c-.12-.4-.48-.65-.95-.65-.63 0-1.09.4-1.24.53l-.03.03A.75.75 0 0 1 10 8.5V3.5a.28.28 0 0 0-.07-.18c-.04-.04-.09-.07-.18-.07-.1 0-.15.03-.18.07a.27.27 0 0 0-.07.18v3.75a.75.75 0 0 1-1.5 0v-4.5a.27.27 0 0 0-.07-.18c-.03-.04-.09-.07-.18-.07-.1 0-.15.03-.18.07ZM13 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-2 7a7 7 0 0 1-6.73-5.08c.5-.11.97-.32 1.39-.62A5.5 5.5 0 1 0 16 9.6V9.5c0-.53-.1-1.03-.3-1.47A7 7 0 0 1 15 22Zm-1.8-5.27a.75.75 0 0 0-1.08 1.04 4 4 0 0 0 5.76 0 .75.75 0 1 0-1.08-1.04 2.5 2.5 0 0 1-3.6 0Z\"]);\nexport const EmojiHand28Filled = /*#__PURE__*/createFluentIcon('EmojiHand28Filled', \"28\", [\"M8.5 8.5V2.75a.75.75 0 0 1 1.5 0V8.5a.5.5 0 0 0 1 0v-5a.75.75 0 0 1 1.5 0v5.81A4.4 4.4 0 0 1 14 9c.5 0 .93.12 1.24.28.16.08.3.17.42.28l.19.21c.05.07.15.24.15.48 0 .26-.13.5-.35.64l-1.9 1.19-1.67 1.89-1.37 1.9A2.75 2.75 0 0 1 8.48 17H7.34c-.93 0-1.82-.47-2.3-1.31a20.7 20.7 0 0 1-.98-1.9 5.58 5.58 0 0 1-.56-2.04v-7a.75.75 0 0 1 1.5 0V9a.5.5 0 0 0 1 0V3.5a.75.75 0 0 1 1.5 0v5a.5.5 0 1 0 1 0Zm9 17.5a8.5 8.5 0 0 1-8.49-8.04c1-.14 1.9-.68 2.5-1.5l1.36-1.87 1.53-1.74 1.78-1.12c.5-.32.82-.88.82-1.48a1.86 1.86 0 0 0-.44-1.2A8.5 8.5 0 1 1 17.5 26Zm3.63-10a1.12 1.12 0 1 0-2.25 0 1.12 1.12 0 0 0 2.25 0Zm-7.36 3.67a.75.75 0 0 0-.09 1.06 5 5 0 0 0 7.64 0 .75.75 0 1 0-1.14-.97 3.5 3.5 0 0 1-5.35 0 .75.75 0 0 0-1.06-.1ZM16.13 16a1.12 1.12 0 1 0-2.25 0 1.12 1.12 0 0 0 2.25 0Z\"]);\nexport const EmojiHand28Regular = /*#__PURE__*/createFluentIcon('EmojiHand28Regular', \"28\", [\"M10.75 2.75c-.18 0-.36.03-.51.07A1.7 1.7 0 0 0 8.75 2c-.68 0-1.2.35-1.49.82a1.82 1.82 0 0 0-.51-.07c-.9 0-1.5.6-1.68 1.28A1.74 1.74 0 0 0 3 5.75v6c0 .62.27 1.39.56 2.04.3.68.67 1.37.98 1.9A2.64 2.64 0 0 0 6.84 17h1.64c.88 0 1.7-.42 2.23-1.13l.6-.83c.5-.68 1.07-1.31 1.7-1.87l.96-.83 1.72-1.23c.2-.14.31-.37.31-.61C16 9.03 14.9 8 13.5 8c-.37 0-.71.07-1 .17V4.5c0-.85-.65-1.75-1.75-1.75Zm-2.25 1c0-.07.03-.13.07-.18.03-.04.09-.07.18-.07.1 0 .15.03.18.07.04.05.07.11.07.18v4.5a.75.75 0 0 0 1.5 0V4.5c0-.07.03-.13.07-.18.03-.04.08-.07.18-.07.1 0 .14.03.18.07.04.04.07.11.07.18v4.99a.75.75 0 0 0 1.23.57l.03-.03c.15-.13.6-.53 1.24-.53.47 0 .83.24.95.65l-1.38.99a.78.78 0 0 0-.06.04l-.98.86c-.73.63-1.38 1.34-1.94 2.12l-.6.82c-.23.33-.6.52-1.01.52H6.84c-.43 0-.8-.22-1-.56-.3-.5-.64-1.14-.9-1.76a4.33 4.33 0 0 1-.44-1.43v-6c0-.07.03-.13.07-.18.03-.04.09-.07.18-.07.1 0 .15.03.18.07.04.05.07.11.07.18v3a.75.75 0 0 0 1.5 0V4.5c0-.07.03-.13.07-.18.03-.04.08-.07.18-.07.1 0 .15.03.2.08.03.04.05.08.05.12v3.8a.75.75 0 0 0 1.5 0v-4.5Zm9 22.25a8.5 8.5 0 0 1-8.49-8.04 3.75 3.75 0 0 0 1.5-.55l-.01.09a7 7 0 1 0 6.5-6.98v-.02c0-.53-.1-1.03-.3-1.46A8.5 8.5 0 1 1 17.5 26Zm-1.38-10a1.12 1.12 0 1 1-2.24 0 1.12 1.12 0 0 1 2.24 0ZM20 17.12a1.12 1.12 0 1 0 0-2.24 1.12 1.12 0 0 0 0 2.24Zm-5.17 2.64a.75.75 0 0 0-1.15.97 5 5 0 0 0 7.64 0 .75.75 0 1 0-1.14-.97 3.5 3.5 0 0 1-5.35 0Z\"]);\nexport const EmojiHand32Filled = /*#__PURE__*/createFluentIcon('EmojiHand32Filled', \"32\", [\"M7 3a1 1 0 0 1 1 1v5.5a.5.5 0 0 0 1 0V3a1 1 0 0 1 2 0v6.5a.5.5 0 0 0 1 0V4a1 1 0 1 1 2 0v7.55a4.31 4.31 0 0 1 2.48-.5c.5.08.86.3 1.1.56a1.69 1.69 0 0 1 .35.53l.01.02v.02a1 1 0 0 1-.44 1.19h-.02l-.06.04a9.68 9.68 0 0 0-1.18.82c-.76.58-1.74 1.43-2.64 2.5-.37.45-.8.85-1.27 1.2A4.46 4.46 0 0 1 9.53 19H8.26a4 4 0 0 1-3.43-1.94l-1.12-1.87A5 5 0 0 1 3 12.62V5a1 1 0 0 1 2 0v5.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 1-1Zm4 17.5v-.26a7.83 7.83 0 0 0 3.75-2.54 14.84 14.84 0 0 1 3.5-3.03 2.5 2.5 0 0 0 .83-3.56A9.5 9.5 0 1 1 11 20.5Zm5.37 2.05a1 1 0 0 0-.15 1.4 5.5 5.5 0 0 0 8.56 0 1 1 0 0 0-1.56-1.25 3.5 3.5 0 0 1-5.44 0 1 1 0 0 0-1.4-.15ZM19.25 19a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0ZM23 20.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const EmojiHand32Regular = /*#__PURE__*/createFluentIcon('EmojiHand32Regular', \"32\", [\"M8.39 3.16a2.5 2.5 0 0 1 4.22 0A2.5 2.5 0 0 1 16 5.5v4.9c.9-.3 1.69-.3 2.4-.02a3.32 3.32 0 0 1 1.8 1.94c.46 1.13-.34 2.08-1.1 2.4a12.93 12.93 0 0 0-5 3.81A5.95 5.95 0 0 1 9.54 21H8.26a5 5 0 0 1-4.28-2.43L2.86 16.7A6 6 0 0 1 2 13.62V6.5a2.5 2.5 0 0 1 3.39-2.34 2.5 2.5 0 0 1 3-1ZM14 5.5a.5.5 0 0 0-1 0V10a1 1 0 1 1-2 0V4.5a.5.5 0 0 0-1 0V10a1 1 0 1 1-2 0V5.5a.5.5 0 0 0-1 0V11a1 1 0 1 1-2 0V6.5a.5.5 0 0 0-1 0v7.12a4 4 0 0 0 .57 2.05l1.12 1.87A3 3 0 0 0 8.26 19h1.27c1.1 0 2.19-.66 3-1.7a14.92 14.92 0 0 1 5.75-4.4c-.16-.33-.36-.56-.61-.66-.26-.1-.88-.18-2.14.6A1 1 0 0 1 14 12V5.5Zm-2.83 16.79a9.5 9.5 0 1 0 10.08-11.26c.15.27.27.53.35.73.2.48.26.94.24 1.36a7.5 7.5 0 1 1-8.78 8.35c-.57.35-1.2.64-1.9.82Zm5.2.26a1 1 0 0 1 1.4.15 3.5 3.5 0 0 0 5.45 0 1 1 0 0 1 1.56 1.26 5.5 5.5 0 0 1-8.56 0 1 1 0 0 1 .15-1.4Zm1.63-2.3a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM24.25 19a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z\"]);\nexport const EmojiHand48Filled = /*#__PURE__*/createFluentIcon('EmojiHand48Filled', \"48\", [\"M18.5 18.26a5.9 5.9 0 0 1 3.67-1.2 3.97 3.97 0 0 1 2.48 1.07l.02.02v.01a1.25 1.25 0 0 1-.32 1.93l-.01.01a3.48 3.48 0 0 0-.4.25c-.28.2-.7.5-1.2.95a19.7 19.7 0 0 0-3.84 4.6l-.11.23A6.16 6.16 0 0 1 13.82 29h-3.04a5.25 5.25 0 0 1-4.82-3.16L4.6 22.72c-.4-.92-.6-1.9-.6-2.9V7.25a1.25 1.25 0 1 1 2.5 0v9a.75.75 0 0 0 1.5 0V5.75a1.25 1.25 0 1 1 2.5 0v9.5a.75.75 0 0 0 1.5 0v-11a1.25 1.25 0 1 1 2.5 0v11a.75.75 0 0 0 1.5 0v-9.5a1.25 1.25 0 1 1 2.5 0v12.5ZM30 44.87a15 15 0 0 1-14.97-14.12 8.42 8.42 0 0 0 5.55-3.88l.05-.1.07-.1.07-.11a17.93 17.93 0 0 1 3.28-3.89c.45-.38.81-.65 1.03-.8l.08-.05a8.88 8.88 0 0 0 .22-.14 3.23 3.23 0 0 0 .83-4.94l-.09-.1-.04-.05-.07-.07-.24-.22c-.24-.21-.5-.39-.77-.55l-.03-.02A15 15 0 1 1 30 44.87Zm0-8.5c-2.3 0-4.3-1.16-5.45-2.93a1.25 1.25 0 1 0-2.1 1.36A8.97 8.97 0 0 0 30 38.87c3.15 0 5.94-1.6 7.55-4.07a1.25 1.25 0 1 0-2.1-1.36A6.47 6.47 0 0 1 30 36.37Zm6-9.5a2 2 0 1 0-4 0 2 2 0 0 0 4 0Zm-10 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const EmojiHand48Regular = /*#__PURE__*/createFluentIcon('EmojiHand48Regular', \"48\", [\"M11 7.75a.75.75 0 0 0-1.5 0v9a1.25 1.25 0 1 1-2.5 0v-7.5a.75.75 0 0 0-1.5 0v10.57c0 .8.16 1.57.48 2.3l1.36 3.13a3.75 3.75 0 0 0 3.44 2.25h3.04c1.42 0 2.8-.86 3.73-2.21 2.67-3.9 6.16-6.31 7.85-7.33a2.2 2.2 0 0 0-1.1-1c-.45-.15-1.45-.2-3.26 1.26a1.25 1.25 0 0 1-2.04-.97v-9.5a.75.75 0 0 0-1.5 0v7.5a1.25 1.25 0 1 1-2.5 0v-9a.75.75 0 0 0-1.5 0v9a1.25 1.25 0 1 1-2.5 0v-7.5Zm10.5 7.21a4.7 4.7 0 0 1 3.62-.36 4.93 4.93 0 0 1 2.7 2.58c.57 1.16-.08 2.3-.91 2.8a23.46 23.46 0 0 0-7.3 6.72c-1.26 1.85-3.33 3.3-5.8 3.3h-3.03a6.25 6.25 0 0 1-5.73-3.76l-1.36-3.12a8.25 8.25 0 0 1-.69-3.3V9.25a3.25 3.25 0 0 1 4.39-3.04 3.25 3.25 0 0 1 4-1.5 3.25 3.25 0 0 1 5.72 0 3.24 3.24 0 0 1 4.39 3.04v7.21ZM15.12 31.9a15 15 0 1 0 13.74-16.86c.35.49.6.94.76 1.26.2.4.32.81.38 1.2a12.5 12.5 0 1 1-12.45 13.61 8.4 8.4 0 0 1-2.43.79Zm7.7 1.3a1.25 1.25 0 0 1 1.73.37A6.47 6.47 0 0 0 30 36.5c2.3 0 4.3-1.16 5.45-2.93a1.25 1.25 0 1 1 2.1 1.36A8.97 8.97 0 0 1 30 39a8.97 8.97 0 0 1-7.55-4.07 1.25 1.25 0 0 1 .37-1.73ZM34 29a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-6-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const EmojiHint16Filled = /*#__PURE__*/createFluentIcon('EmojiHint16Filled', \"16\", [\"M6.83 2.11a.5.5 0 0 0 .2.99 5.14 5.14 0 0 1 1.95 0 .5.5 0 0 0 .2-.99 6.15 6.15 0 0 0-2.35 0Zm4.5.9a.5.5 0 0 0-.55.83c.54.37 1.01.84 1.38 1.38a.5.5 0 0 0 .83-.55c-.44-.66-1-1.22-1.66-1.66Zm-6.1.83a.5.5 0 1 0-.56-.83C4 3.45 3.45 4.01 3 4.67a.5.5 0 1 0 .83.55c.37-.54.84-1.01 1.38-1.38Zm8.66 2.99a.5.5 0 1 0-.99.2c.13.62.13 1.32 0 1.95a.5.5 0 0 0 .99.19c.15-.76.15-1.58 0-2.34Zm-10.8.2a.5.5 0 0 0-.98-.2 6.15 6.15 0 0 0 0 2.34.5.5 0 1 0 .99-.2 5.14 5.14 0 0 1 0-1.95Zm9.9 4.3a.5.5 0 0 0-.83-.55 5.03 5.03 0 0 1-1.38 1.38.5.5 0 0 0 .55.83c.66-.44 1.22-1 1.66-1.66Zm-9.15-.55a.5.5 0 1 0-.83.55c.44.66 1 1.22 1.66 1.66a.5.5 0 1 0 .55-.83 5.03 5.03 0 0 1-1.38-1.38Zm3.18 2.12a.5.5 0 0 0-.19.99c.76.15 1.58.15 2.34 0a.5.5 0 1 0-.2-.99c-.62.13-1.32.13-1.95 0ZM12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-1.7 1.1a.5.5 0 0 0-.7.1 2 2 0 0 1-3.2 0 .5.5 0 0 0-.8.6 3 3 0 0 0 4.8 0 .5.5 0 0 0-.1-.7ZM6.25 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm4.25-.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const EmojiHint16Regular = /*#__PURE__*/createFluentIcon('EmojiHint16Regular', \"16\", [\"M6.83 2.11a.5.5 0 0 0 .2.99 5.14 5.14 0 0 1 1.95 0 .5.5 0 0 0 .2-.99 6.15 6.15 0 0 0-2.35 0Zm4.5.9a.5.5 0 0 0-.55.83c.54.37 1.01.84 1.38 1.38a.5.5 0 0 0 .83-.55c-.44-.66-1-1.22-1.66-1.66Zm-6.1.83a.5.5 0 1 0-.56-.83C4 3.45 3.45 4.01 3 4.67a.5.5 0 1 0 .83.55c.37-.54.84-1.01 1.38-1.38Zm8.66 2.99a.5.5 0 1 0-.99.2c.13.62.13 1.32 0 1.95a.5.5 0 0 0 .99.19c.15-.76.15-1.58 0-2.34Zm-10.8.2a.5.5 0 0 0-.98-.2 6.15 6.15 0 0 0 0 2.34.5.5 0 1 0 .99-.2 5.14 5.14 0 0 1 0-1.95Zm9.9 4.3a.5.5 0 0 0-.83-.55 5.03 5.03 0 0 1-1.38 1.38.5.5 0 0 0 .55.83c.66-.44 1.22-1 1.66-1.66Zm-9.15-.55a.5.5 0 1 0-.83.55c.44.66 1 1.22 1.66 1.66a.5.5 0 1 0 .55-.83 5.03 5.03 0 0 1-1.38-1.38Zm3.18 2.12a.5.5 0 0 0-.19.99c.76.15 1.58.15 2.34 0a.5.5 0 1 0-.2-.99c-.62.13-1.32.13-1.95 0Zm3.38-3.1a.5.5 0 0 0-.8-.6 2 2 0 0 1-3.2 0 .5.5 0 0 0-.8.6 3 3 0 0 0 4.8 0ZM7 6.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm2.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const EmojiHint20Filled = /*#__PURE__*/createFluentIcon('EmojiHint20Filled', \"20\", [\"M8.44 2.15a.5.5 0 0 0 .2.98 7.2 7.2 0 0 1 2.73 0 .5.5 0 0 0 .19-.98 8.2 8.2 0 0 0-3.12 0Zm6 1.2a.5.5 0 0 0-.55.83 7.04 7.04 0 0 1 1.93 1.93.5.5 0 1 0 .83-.56 8.04 8.04 0 0 0-2.2-2.2Zm-8.33.83a.5.5 0 0 0-.56-.83 8.04 8.04 0 0 0-2.2 2.2.5.5 0 0 0 .83.56A7.04 7.04 0 0 1 6.1 4.18ZM3.13 8.63a.5.5 0 1 0-.98-.2 8.2 8.2 0 0 0 0 3.13.5.5 0 0 0 .98-.2 7.2 7.2 0 0 1 0-2.73Zm14.72-.2a.5.5 0 1 0-.98.2 7.2 7.2 0 0 1 0 2.74.5.5 0 1 0 .98.2 8.2 8.2 0 0 0 0-3.13ZM4.18 13.9a.5.5 0 0 0-.83.56 8.04 8.04 0 0 0 2.2 2.2.5.5 0 0 0 .56-.83 7.04 7.04 0 0 1-1.93-1.93Zm12.47.56a.5.5 0 1 0-.83-.56 7.04 7.04 0 0 1-1.93 1.93.5.5 0 1 0 .55.83 8.04 8.04 0 0 0 2.21-2.2Zm-8.02 2.42a.5.5 0 0 0-.2.98c1.02.2 2.12.2 3.13 0a.5.5 0 0 0-.2-.98c-.88.17-1.84.17-2.73 0ZM16 10a6 6 0 1 1-12 0 6 6 0 0 1 12 0Zm-9.44 2.11a.5.5 0 0 0-.07.7 4.5 4.5 0 0 0 7.02 0 .5.5 0 1 0-.78-.62 3.5 3.5 0 0 1-5.46 0 .5.5 0 0 0-.7-.08ZM7.75 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM13 8.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const EmojiHint20Regular = /*#__PURE__*/createFluentIcon('EmojiHint20Regular', \"20\", [\"M8.44 2.15a.5.5 0 0 0 .2.98 7.2 7.2 0 0 1 2.73 0 .5.5 0 0 0 .19-.98 8.2 8.2 0 0 0-3.12 0Zm6 1.2a.5.5 0 0 0-.55.83 7.04 7.04 0 0 1 1.93 1.93.5.5 0 1 0 .83-.56 8.04 8.04 0 0 0-2.2-2.2Zm-8.33.83a.5.5 0 0 0-.56-.83 8.04 8.04 0 0 0-2.2 2.2.5.5 0 0 0 .83.56A7.04 7.04 0 0 1 6.1 4.18ZM3.13 8.63a.5.5 0 1 0-.98-.2 8.2 8.2 0 0 0 0 3.13.5.5 0 0 0 .98-.2 7.2 7.2 0 0 1 0-2.73Zm14.72-.2a.5.5 0 1 0-.98.2 7.2 7.2 0 0 1 0 2.74.5.5 0 1 0 .98.2 8.2 8.2 0 0 0 0-3.13ZM4.18 13.9a.5.5 0 0 0-.83.56 8.04 8.04 0 0 0 2.2 2.2.5.5 0 0 0 .56-.83 7.04 7.04 0 0 1-1.93-1.93Zm12.47.56a.5.5 0 1 0-.83-.56 7.04 7.04 0 0 1-1.93 1.93.5.5 0 1 0 .55.83 8.04 8.04 0 0 0 2.21-2.2Zm-8.02 2.42a.5.5 0 0 0-.2.98c1.02.2 2.12.2 3.13 0a.5.5 0 0 0-.2-.98c-.88.17-1.84.17-2.73 0ZM7.75 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm4.5 0a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-5.69 3.11a.5.5 0 0 1 .7.08 3.5 3.5 0 0 0 5.47 0 .5.5 0 0 1 .78.62 4.5 4.5 0 0 1-7.02 0 .5.5 0 0 1 .07-.7Z\"]);\nexport const EmojiHint24Filled = /*#__PURE__*/createFluentIcon('EmojiHint24Filled', \"24\", [\"M10.05 2.19a.75.75 0 0 0 .29 1.47 8.74 8.74 0 0 1 3.32 0 .75.75 0 0 0 .3-1.47 10.25 10.25 0 0 0-3.91 0ZM7.28 4.93a.75.75 0 0 0-.84-1.25 10.05 10.05 0 0 0-2.76 2.76.75.75 0 1 0 1.25.84 8.55 8.55 0 0 1 2.35-2.35Zm10.28-1.25a.75.75 0 0 0-.84 1.25 8.55 8.55 0 0 1 2.35 2.35.75.75 0 1 0 1.25-.84 10.05 10.05 0 0 0-2.76-2.76Zm4.25 6.37a.75.75 0 0 0-1.47.29 8.73 8.73 0 0 1 0 3.32.75.75 0 0 0 1.47.3c.25-1.27.25-2.65 0-3.91Zm-18.15.29a.75.75 0 0 0-1.47-.3 10.25 10.25 0 0 0 0 3.91.75.75 0 1 0 1.47-.29 8.74 8.74 0 0 1 0-3.32Zm1.27 6.38a.75.75 0 0 0-1.25.84 10.05 10.05 0 0 0 2.76 2.76.75.75 0 1 0 .84-1.25 8.55 8.55 0 0 1-2.35-2.35Zm15.39.84a.75.75 0 1 0-1.25-.84 8.55 8.55 0 0 1-2.35 2.35.75.75 0 1 0 .84 1.25 10.05 10.05 0 0 0 2.76-2.76Zm-9.98 2.78a.75.75 0 0 0-.3 1.47c1.27.25 2.65.25 3.91 0a.75.75 0 1 0-.29-1.47 8.73 8.73 0 0 1-3.32 0ZM19 12a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM8.27 14.17a.75.75 0 0 0-.1 1.05 5 5 0 0 0 7.65 0 .75.75 0 0 0-1.14-.96 3.5 3.5 0 0 1-5.36 0 .75.75 0 0 0-1.05-.1ZM9.5 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const EmojiHint24Regular = /*#__PURE__*/createFluentIcon('EmojiHint24Regular', \"24\", [\"M10.05 2.19a.75.75 0 0 0 .29 1.47 8.74 8.74 0 0 1 3.32 0 .75.75 0 0 0 .3-1.47 10.25 10.25 0 0 0-3.91 0ZM7.28 4.93a.75.75 0 0 0-.84-1.25 10.05 10.05 0 0 0-2.76 2.76.75.75 0 1 0 1.25.84 8.55 8.55 0 0 1 2.35-2.35Zm10.28-1.25a.75.75 0 0 0-.84 1.25 8.55 8.55 0 0 1 2.35 2.35.75.75 0 1 0 1.25-.84 10.05 10.05 0 0 0-2.76-2.76Zm4.25 6.37a.75.75 0 0 0-1.47.29 8.73 8.73 0 0 1 0 3.32.75.75 0 0 0 1.47.3c.25-1.27.25-2.65 0-3.91Zm-18.15.29a.75.75 0 0 0-1.47-.3 10.25 10.25 0 0 0 0 3.91.75.75 0 1 0 1.47-.29 8.74 8.74 0 0 1 0-3.32Zm1.27 6.38a.75.75 0 0 0-1.25.84 10.05 10.05 0 0 0 2.76 2.76.75.75 0 1 0 .84-1.25 8.55 8.55 0 0 1-2.35-2.35Zm15.39.84a.75.75 0 1 0-1.25-.84 8.55 8.55 0 0 1-2.35 2.35.75.75 0 1 0 .84 1.25 10.05 10.05 0 0 0 2.76-2.76Zm-9.98 2.78a.75.75 0 0 0-.3 1.47c1.27.25 2.65.25 3.91 0a.75.75 0 1 0-.29-1.47 8.73 8.73 0 0 1-3.32 0ZM9.5 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-6.18 4.26a.75.75 0 1 0-1.14.96 5 5 0 0 0 7.64 0 .75.75 0 0 0-1.14-.96 3.5 3.5 0 0 1-5.36 0Z\"]);\nexport const EmojiHint28Filled = /*#__PURE__*/createFluentIcon('EmojiHint28Filled', \"28\", [\"M11.66 2.23a.75.75 0 1 0 .29 1.47c1.33-.26 2.78-.26 4.1 0a.75.75 0 0 0 .3-1.47 12.3 12.3 0 0 0-4.7 0Zm9 1.8a.75.75 0 0 0-.83 1.24c1.15.76 2.14 1.75 2.9 2.9a.75.75 0 1 0 1.25-.84c-.88-1.3-2-2.43-3.31-3.3ZM8.17 5.26a.75.75 0 0 0-.83-1.25c-1.3.88-2.43 2-3.3 3.31a.75.75 0 0 0 1.24.84 10.56 10.56 0 0 1 2.9-2.9Zm17.61 6.39a.75.75 0 1 0-1.47.29c.26 1.32.26 2.78 0 4.1a.75.75 0 0 0 1.47.3c.3-1.52.3-3.18 0-4.7Zm-22.07.29a.75.75 0 1 0-1.47-.3 12.3 12.3 0 0 0 0 4.7.75.75 0 0 0 1.47-.3 10.79 10.79 0 0 1 0-4.1Zm20.28 8.72a.75.75 0 1 0-1.25-.84 10.56 10.56 0 0 1-2.9 2.9.75.75 0 1 0 .84 1.25c1.3-.88 2.43-2 3.3-3.31Zm-18.71-.84a.75.75 0 0 0-1.25.84c.88 1.3 2 2.43 3.31 3.3a.75.75 0 1 0 .84-1.24 10.56 10.56 0 0 1-2.9-2.9Zm11.07 5.94a.75.75 0 0 0-.29-1.47c-1.32.26-2.77.26-4.1 0a.75.75 0 0 0-.3 1.47c1.52.3 3.18.3 4.7 0ZM23 14a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-11-2.75a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm5.25 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm-8.1 4.68a.75.75 0 0 0-.08 1.06 6.49 6.49 0 0 0 9.86 0 .75.75 0 0 0-1.14-.98 4.99 4.99 0 0 1-7.58 0 .75.75 0 0 0-1.06-.08Z\"]);\nexport const EmojiHint28Regular = /*#__PURE__*/createFluentIcon('EmojiHint28Regular', \"28\", [\"M11.66 2.23a.75.75 0 1 0 .29 1.47c1.33-.26 2.78-.26 4.1 0a.75.75 0 0 0 .3-1.47 12.3 12.3 0 0 0-4.7 0Zm9 1.8a.75.75 0 0 0-.83 1.24c1.15.76 2.14 1.75 2.9 2.9a.75.75 0 1 0 1.25-.84c-.88-1.3-2-2.43-3.31-3.3ZM8.17 5.26a.75.75 0 0 0-.83-1.25c-1.3.88-2.43 2-3.3 3.31a.75.75 0 0 0 1.24.84 10.56 10.56 0 0 1 2.9-2.9Zm17.61 6.39a.75.75 0 1 0-1.47.29c.26 1.32.26 2.78 0 4.1a.75.75 0 0 0 1.47.3c.3-1.52.3-3.18 0-4.7Zm-22.07.29a.75.75 0 1 0-1.47-.3 12.3 12.3 0 0 0 0 4.7.75.75 0 0 0 1.47-.3 10.79 10.79 0 0 1 0-4.1Zm20.28 8.72a.75.75 0 1 0-1.25-.84 10.56 10.56 0 0 1-2.9 2.9.75.75 0 1 0 .84 1.25c1.3-.88 2.43-2 3.3-3.31Zm-18.71-.84a.75.75 0 0 0-1.25.84c.88 1.3 2 2.43 3.31 3.3a.75.75 0 1 0 .84-1.24 10.56 10.56 0 0 1-2.9-2.9Zm11.07 5.94a.75.75 0 0 0-.29-1.47c-1.32.26-2.77.26-4.1 0a.75.75 0 0 0-.3 1.47c1.52.3 3.18.3 4.7 0ZM10.75 12.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm7.75-1.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm-8.3 6a.75.75 0 1 0-1.13.99 6.49 6.49 0 0 0 9.86 0 .75.75 0 0 0-1.14-.98 4.99 4.99 0 0 1-7.58 0Z\"]);\nexport const EmojiHint32Filled = /*#__PURE__*/createFluentIcon('EmojiHint32Filled', \"32\", [\"M13.27 2.27a1 1 0 0 0 .39 1.96c1.54-.3 3.14-.3 4.68 0a1 1 0 0 0 .4-1.96c-1.8-.36-3.67-.36-5.47 0ZM9.33 6.02a1 1 0 0 0-1.1-1.66 14.07 14.07 0 0 0-3.87 3.86 1 1 0 0 0 1.66 1.11c.88-1.3 2-2.43 3.31-3.3Zm14.45-1.66a1 1 0 0 0-1.11 1.66c1.3.88 2.43 2 3.31 3.31a1 1 0 0 0 1.66-1.1 14.07 14.07 0 0 0-3.86-3.87Zm5.95 8.9a1 1 0 0 0-1.96.4c.3 1.54.3 3.14 0 4.68a1 1 0 1 0 1.96.4c.36-1.8.36-3.67 0-5.47Zm-25.5.4a1 1 0 1 0-1.96-.4c-.36 1.8-.36 3.67 0 5.47a1 1 0 1 0 1.96-.39c-.3-1.54-.3-3.14 0-4.68Zm1.8 9a1 1 0 1 0-1.67 1.12 14.07 14.07 0 0 0 3.86 3.86 1 1 0 1 0 1.11-1.66c-1.3-.88-2.43-2-3.3-3.31Zm21.61 1.12a1 1 0 1 0-1.66-1.11c-.88 1.3-2 2.43-3.31 3.31a1 1 0 1 0 1.11 1.66 14.07 14.07 0 0 0 3.86-3.86Zm-13.98 4a1 1 0 1 0-.4 1.95c1.8.36 3.67.36 5.47 0a1 1 0 0 0-.39-1.96c-1.54.3-3.14.3-4.68 0ZM26 16a10 10 0 1 1-20 0 10 10 0 0 1 20 0Zm-15.14 3.26a1 1 0 0 0-.08 1.4 6.99 6.99 0 0 0 10.44 0 1 1 0 0 0-1.5-1.33 4.98 4.98 0 0 1-7.45 0 1 1 0 0 0-1.4-.07ZM12.25 15a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Zm9.25-1.75a1.75 1.75 0 1 0-3.5 0 1.75 1.75 0 0 0 3.5 0Z\"]);\nexport const EmojiHint32Regular = /*#__PURE__*/createFluentIcon('EmojiHint32Regular', \"32\", [\"M13.27 2.27a1 1 0 0 0 .39 1.96c1.54-.3 3.14-.3 4.68 0a1 1 0 0 0 .4-1.96c-1.8-.36-3.67-.36-5.47 0ZM9.33 6.02a1 1 0 0 0-1.1-1.66 14.07 14.07 0 0 0-3.87 3.86 1 1 0 0 0 1.66 1.11c.88-1.3 2-2.43 3.31-3.3Zm14.45-1.66a1 1 0 0 0-1.11 1.66c1.3.88 2.43 2 3.31 3.31a1 1 0 0 0 1.66-1.1 14.07 14.07 0 0 0-3.86-3.87Zm5.95 8.9a1 1 0 0 0-1.96.4c.3 1.54.3 3.14 0 4.68a1 1 0 1 0 1.96.4c.36-1.8.36-3.67 0-5.47Zm-25.5.4a1 1 0 1 0-1.96-.4c-.36 1.8-.36 3.67 0 5.47a1 1 0 1 0 1.96-.39c-.3-1.54-.3-3.14 0-4.68Zm1.8 9a1 1 0 1 0-1.67 1.12 14.07 14.07 0 0 0 3.86 3.86 1 1 0 1 0 1.11-1.66c-1.3-.88-2.43-2-3.3-3.31Zm21.61 1.12a1 1 0 1 0-1.66-1.11c-.88 1.3-2 2.43-3.31 3.31a1 1 0 1 0 1.11 1.66 14.07 14.07 0 0 0 3.86-3.86Zm-13.98 4a1 1 0 1 0-.4 1.95c1.8.36 3.67.36 5.47 0a1 1 0 0 0-.39-1.96c-1.54.3-3.14.3-4.68 0Zm-1.39-8.45a1 1 0 0 0-1.49 1.34 6.99 6.99 0 0 0 10.44 0 1 1 0 0 0-1.5-1.34 4.98 4.98 0 0 1-7.45 0ZM14 13.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM19.75 15a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Z\"]);\nexport const EmojiHint48Filled = /*#__PURE__*/createFluentIcon('EmojiHint48Filled', \"48\", [\"M20.1 4.38a1.25 1.25 0 1 0 .48 2.45c2.25-.44 4.59-.44 6.84 0a1.25 1.25 0 1 0 .48-2.45c-2.57-.5-5.23-.5-7.8 0Zm-5.82 5.07a1.25 1.25 0 1 0-1.4-2.08 20.1 20.1 0 0 0-5.51 5.52 1.25 1.25 0 1 0 2.08 1.39 17.6 17.6 0 0 1 4.83-4.83ZM35.1 7.37a1.25 1.25 0 0 0-1.39 2.08 17.6 17.6 0 0 1 4.83 4.83 1.25 1.25 0 1 0 2.08-1.4 20.1 20.1 0 0 0-5.52-5.51ZM6.83 20.58a1.25 1.25 0 0 0-2.45-.48c-.5 2.57-.5 5.23 0 7.8a1.25 1.25 0 0 0 2.45-.48 17.66 17.66 0 0 1 0-6.84Zm36.79-.48a1.25 1.25 0 0 0-2.45.48c.44 2.25.44 4.59 0 6.84a1.25 1.25 0 0 0 2.45.48c.5-2.57.5-5.23 0-7.8ZM9.45 33.72a1.25 1.25 0 1 0-2.08 1.4 20.1 20.1 0 0 0 5.52 5.51 1.25 1.25 0 0 0 1.39-2.08 17.6 17.6 0 0 1-4.83-4.83Zm31.18 1.4a1.25 1.25 0 1 0-2.08-1.4 17.6 17.6 0 0 1-4.83 4.83 1.25 1.25 0 0 0 1.4 2.08 20.1 20.1 0 0 0 5.51-5.52Zm-20.05 6.05a1.25 1.25 0 1 0-.48 2.45c2.57.5 5.23.5 7.8 0a1.25 1.25 0 1 0-.48-2.45c-2.25.44-4.59.44-6.84 0ZM39 24a15 15 0 1 1-30 0 15 15 0 0 1 30 0Zm-18.5-4.25a2.25 2.25 0 1 0-4.5 0 2.25 2.25 0 0 0 4.5 0ZM29.75 22a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5ZM15.7 29.27c-.53.44-.6 1.23-.16 1.76a10.98 10.98 0 0 0 16.92 0 1.25 1.25 0 1 0-1.92-1.6 8.48 8.48 0 0 1-13.08 0 1.25 1.25 0 0 0-1.76-.16Z\"]);\nexport const EmojiHint48Regular = /*#__PURE__*/createFluentIcon('EmojiHint48Regular', \"48\", [\"M20.1 4.38a1.25 1.25 0 1 0 .48 2.45c2.25-.44 4.59-.44 6.84 0a1.25 1.25 0 1 0 .48-2.45c-2.57-.5-5.23-.5-7.8 0Zm-5.82 5.07a1.25 1.25 0 1 0-1.4-2.08 20.1 20.1 0 0 0-5.51 5.52 1.25 1.25 0 1 0 2.08 1.39 17.6 17.6 0 0 1 4.83-4.83ZM35.1 7.37a1.25 1.25 0 0 0-1.39 2.08 17.6 17.6 0 0 1 4.83 4.83 1.25 1.25 0 1 0 2.08-1.4 20.1 20.1 0 0 0-5.52-5.51ZM6.83 20.58a1.25 1.25 0 0 0-2.45-.48c-.5 2.57-.5 5.23 0 7.8a1.25 1.25 0 0 0 2.45-.48 17.66 17.66 0 0 1 0-6.84Zm36.79-.48a1.25 1.25 0 0 0-2.45.48c.44 2.25.44 4.59 0 6.84a1.25 1.25 0 0 0 2.45.48c.5-2.57.5-5.23 0-7.8ZM9.45 33.72a1.25 1.25 0 1 0-2.08 1.4 20.1 20.1 0 0 0 5.52 5.51 1.25 1.25 0 0 0 1.39-2.08 17.6 17.6 0 0 1-4.83-4.83Zm31.18 1.4a1.25 1.25 0 1 0-2.08-1.4 17.6 17.6 0 0 1-4.83 4.83 1.25 1.25 0 0 0 1.4 2.08 20.1 20.1 0 0 0 5.51-5.52Zm-20.05 6.05a1.25 1.25 0 1 0-.48 2.45c2.57.5 5.23.5 7.8 0a1.25 1.25 0 1 0-.48-2.45c-2.25.44-4.59.44-6.84 0ZM18.25 22a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5ZM32 19.75a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-14.54 9.68a1.25 1.25 0 1 0-1.92 1.6 10.98 10.98 0 0 0 16.92 0 1.25 1.25 0 1 0-1.92-1.6 8.48 8.48 0 0 1-13.08 0Z\"]);\nexport const EmojiLaugh16Filled = /*#__PURE__*/createFluentIcon('EmojiLaugh16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM6 6c.28 0 .5.22.5.5a.5.5 0 0 0 1 0 1.5 1.5 0 1 0-3 0 .5.5 0 0 0 1 0c0-.28.22-.5.5-.5Zm4 0c.28 0 .5.22.5.5a.5.5 0 0 0 1 0 1.5 1.5 0 0 0-3 0 .5.5 0 0 0 1 0c0-.28.22-.5.5-.5ZM4.54 8.5a3.5 3.5 0 0 0 6.92 0H4.54Z\"]);\nexport const EmojiLaugh16Regular = /*#__PURE__*/createFluentIcon('EmojiLaugh16Regular', \"16\", [\"M6 6a.5.5 0 0 0-.5.5.5.5 0 0 1-1 0 1.5 1.5 0 1 1 3 0 .5.5 0 0 1-1 0A.5.5 0 0 0 6 6Zm4 0a.5.5 0 0 0-.5.5.5.5 0 0 1-1 0 1.5 1.5 0 1 1 3 0 .5.5 0 0 1-1 0A.5.5 0 0 0 10 6ZM4.54 8a.5.5 0 0 0-.5.57 4 4 0 0 0 7.92 0 .5.5 0 0 0-.5-.57H4.54ZM8 11a3 3 0 0 1-2.83-2h5.66A3 3 0 0 1 8 11Zm6-3A6 6 0 1 0 2 8a6 6 0 0 0 12 0ZM3 8a5 5 0 1 1 10 0A5 5 0 0 1 3 8Z\"]);\nexport const EmojiLaugh20Filled = /*#__PURE__*/createFluentIcon('EmojiLaugh20Filled', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM6.5 8.08a.5.5 0 1 1-1-.16c.13-.83.9-1.42 1.75-1.42s1.61.59 1.74 1.42a.5.5 0 1 1-.99.16c-.04-.3-.34-.58-.75-.58-.42 0-.71.28-.76.58Zm5.5 0a.5.5 0 0 1-1-.16c.13-.83.9-1.42 1.75-1.42s1.61.59 1.74 1.42a.5.5 0 0 1-.99.16c-.04-.3-.34-.58-.75-.58-.42 0-.71.28-.76.58ZM5.5 10.5h9c-.22 2.2-1.93 4-4.5 4a4.36 4.36 0 0 1-4.5-4Z\"]);\nexport const EmojiLaugh20Regular = /*#__PURE__*/createFluentIcon('EmojiLaugh20Regular', \"20\", [\"M6.5 8.08c.04-.3.33-.58.75-.58.41 0 .7.28.75.58A.5.5 0 1 0 9 7.92 1.73 1.73 0 0 0 7.25 6.5c-.86 0-1.62.59-1.74 1.42a.5.5 0 1 0 .98.16Zm6.25-.58c-.42 0-.71.28-.76.58a.5.5 0 0 1-.98-.16c.12-.83.88-1.42 1.74-1.42.85 0 1.61.59 1.74 1.42a.5.5 0 0 1-.99.16c-.04-.3-.34-.58-.75-.58ZM5.5 10a.5.5 0 0 0-.5.55A4.86 4.86 0 0 0 10 15c2.84 0 4.75-2 5-4.45a.5.5 0 0 0-.5-.55h-9Zm4.5 4a3.85 3.85 0 0 1-3.92-3h7.83c-.4 1.7-1.83 3-3.91 3Zm0-12a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const EmojiLaugh24Filled = /*#__PURE__*/createFluentIcon('EmojiLaugh24Filled', \"24\", [\"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm2.5 7.36a.75.75 0 1 1-1.5-.22 2.25 2.25 0 0 1 2.25-1.89c1.12 0 2.08.8 2.24 1.89a.75.75 0 1 1-1.48.22.75.75 0 0 0-.76-.61c-.4 0-.71.29-.76.61ZM12 18c-3.14 0-5.24-2.36-5.5-5.25h11C17.24 15.64 15.14 18 12 18ZM8.75 8.75c-.4 0-.71.29-.76.61a.75.75 0 1 1-1.48-.22 2.25 2.25 0 0 1 2.24-1.89c1.12 0 2.08.8 2.24 1.89a.75.75 0 1 1-1.48.22.75.75 0 0 0-.76-.61Z\"]);\nexport const EmojiLaugh24Regular = /*#__PURE__*/createFluentIcon('EmojiLaugh24Regular', \"24\", [\"M6.75 12a.75.75 0 0 0-.75.82c.28 3.07 2.55 5.68 6 5.68s5.72-2.6 6-5.68a.75.75 0 0 0-.75-.82H6.75ZM12 17a4.4 4.4 0 0 1-4.37-3.5h8.74A4.4 4.4 0 0 1 12 17Zm3.25-8.25c-.4 0-.71.29-.76.61a.75.75 0 1 1-1.48-.22 2.25 2.25 0 0 1 2.24-1.89c1.12 0 2.08.8 2.24 1.89a.75.75 0 1 1-1.48.22.75.75 0 0 0-.76-.61Zm-7.26.61a.75.75 0 0 1 .76-.61c.4 0 .71.29.76.61a.75.75 0 1 0 1.48-.22 2.25 2.25 0 0 0-2.24-1.89c-1.12 0-2.08.8-2.24 1.89a.75.75 0 0 0 1.48.22ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const EmojiMeh16Filled = /*#__PURE__*/createFluentIcon('EmojiMeh16Filled', \"16\", [\"M2 8a6 6 0 1 0 12 0A6 6 0 0 0 2 8Zm5-1a.75.75 0 1 1-1.5 0A.75.75 0 0 1 7 7Zm3.5 0A.75.75 0 1 1 9 7a.75.75 0 0 1 1.5 0ZM6 9h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1Z\"]);\nexport const EmojiMeh16Regular = /*#__PURE__*/createFluentIcon('EmojiMeh16Regular', \"16\", [\"M7 7a.75.75 0 1 1-1.5 0A.75.75 0 0 1 7 7Zm2.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM6 9a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H6Zm2-7a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 1a5 5 0 1 0 0 10A5 5 0 0 0 8 3Z\"]);\nexport const EmojiMeh20Filled = /*#__PURE__*/createFluentIcon('EmojiMeh20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm6.5-1.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm4 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-6.5 3c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const EmojiMeh20Regular = /*#__PURE__*/createFluentIcon('EmojiMeh20Regular', \"20\", [\"M7.5 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-7 3.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\"]);\nexport const EmojiMeh24Filled = /*#__PURE__*/createFluentIcon('EmojiMeh24Filled', \"24\", [\"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.75 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm6 0a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM7.5 15.75c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const EmojiMeh24Regular = /*#__PURE__*/createFluentIcon('EmojiMeh24Regular', \"24\", [\"M9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM8.25 15a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm10-8.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Z\"]);\nexport const EmojiMultiple20Filled = /*#__PURE__*/createFluentIcon('EmojiMultiple20Filled', \"20\", [\"M2 7a5 5 0 0 0 4.03 4.9 6.48 6.48 0 0 1 1.66-3.78 2 2 0 0 0-2.21.58.5.5 0 1 1-.76-.65 3 3 0 0 1 3.76-.66 6.47 6.47 0 0 1 3.43-1.36A5 5 0 0 0 2 7Zm4.25-1.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm3 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm8.75 7a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.75-1a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm3.86 2.57a.5.5 0 0 0-.71.05 2.5 2.5 0 0 1-3.8 0 .5.5 0 1 0-.76.66 3.5 3.5 0 0 0 5.32 0 .5.5 0 0 0-.05-.71Zm-.61-1.82a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const EmojiMultiple20Regular = /*#__PURE__*/createFluentIcon('EmojiMultiple20Regular', \"20\", [\"M7 2a5 5 0 0 1 4.9 4.03c-.33.03-.66.08-.98.16a4 4 0 1 0-4.73 4.73c-.08.32-.13.65-.16.99A5 5 0 0 1 7 2Zm.7 6.12c.24-.26.5-.5.78-.73a3 3 0 0 0-3.76.66.5.5 0 1 0 .76.65 2 2 0 0 1 2.21-.58ZM6.24 5.5a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm3 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm1.25 6.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm4.6 1.82c.21.18.24.5.06.7a3.5 3.5 0 0 1-5.32.01.5.5 0 1 1 .76-.65 2.5 2.5 0 0 0 3.8 0 .5.5 0 0 1 .7-.06Zm-.6-1.82a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-2 5.75a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm0-1a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Z\"]);\nexport const EmojiMultiple24Filled = /*#__PURE__*/createFluentIcon('EmojiMultiple24Filled', \"24\", [\"M2 8.5a6.5 6.5 0 0 0 4.94 6.31 8 8 0 0 1 1.72-4.8 2 2 0 0 0-1.68.69.75.75 0 0 1-1.14-.97 3.5 3.5 0 0 1 4.02-.95 8 8 0 0 1 4.95-1.84A6.5 6.5 0 0 0 2 8.5Zm5.5-2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM22 15a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm-8.5-1.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm4.47 3.22a.63.63 0 0 0-.88.07 2.75 2.75 0 0 1-4.18 0 .62.62 0 1 0-.95.82 4 4 0 0 0 6.08-.01.62.62 0 0 0-.07-.88Zm-.47-2.22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const EmojiMultiple24Regular = /*#__PURE__*/createFluentIcon('EmojiMultiple24Regular', \"24\", [\"M8.5 2a6.5 6.5 0 0 1 6.31 4.94c-.51.01-1.02.07-1.5.17a5 5 0 1 0-6.2 6.2c-.1.48-.16.99-.17 1.5A6.5 6.5 0 0 1 8.5 2Zm.16 8c.36-.45.76-.86 1.2-1.22a3.5 3.5 0 0 0-4.02.95.75.75 0 1 0 1.14.97 2 2 0 0 1 1.68-.7ZM7.5 6.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm1 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5.46 2.04c.31.27.35.74.08 1.06a4 4 0 0 1-6.08 0 .75.75 0 0 1 1.14-.97 2.5 2.5 0 0 0 3.8 0 .75.75 0 0 1 1.06-.09Zm-.46-2.04a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM15 22a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-1.5a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Z\"]);\nexport const EmojiSad16Filled = /*#__PURE__*/createFluentIcon('EmojiSad16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2ZM6.25 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.5 0a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm.12 3.32a.5.5 0 1 0 .76-.64 3.53 3.53 0 0 0-5.26 0 .5.5 0 1 0 .76.64 2.53 2.53 0 0 1 3.74 0Z\"]);\nexport const EmojiSad16Regular = /*#__PURE__*/createFluentIcon('EmojiSad16Regular', \"16\", [\"M14 8A6 6 0 1 0 2 8a6 6 0 0 0 12 0ZM3 8a5 5 0 1 1 10 0A5 5 0 0 1 3 8Zm4-1.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm3.5 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-4.37 4.07a2.53 2.53 0 0 1 3.74 0 .5.5 0 1 0 .76-.64 3.53 3.53 0 0 0-5.26 0 .5.5 0 1 0 .76.64Z\"]);\nexport const EmojiSad20Filled = /*#__PURE__*/createFluentIcon('EmojiSad20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5.5-.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm.06 4.89c.38-.35.07-.72.06-.73a2.02 2.02 0 0 0-.23-.23 4.06 4.06 0 0 0-.67-.49 5.3 5.3 0 0 0-2.72-.69 5.3 5.3 0 0 0-2.72.7 4.08 4.08 0 0 0-.9.7l-.01.03h-.01l.39.32-.39-.31a.5.5 0 0 0 .78.63l.02-.03c.03-.03.06-.07.12-.11.1-.1.27-.24.5-.37a4.31 4.31 0 0 1 2.22-.56 4.3 4.3 0 0 1 2.22.56 3.07 3.07 0 0 1 .64.5.5.5 0 0 0 .7.08Z\"]);\nexport const EmojiSad20Regular = /*#__PURE__*/createFluentIcon('EmojiSad20Regular', \"20\", [\"M7.5 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm.06 4.89a.5.5 0 0 1-.7-.07A4.3 4.3 0 0 0 10 12.25c-1.02-.01-1.75.27-2.21.55a3.09 3.09 0 0 0-.65.5.5.5 0 0 1-.78-.62l.39.31-.39-.31v-.01l.02-.02a2.07 2.07 0 0 1 .23-.23c.15-.13.37-.31.67-.49.6-.35 1.5-.69 2.72-.69a5.3 5.3 0 0 1 2.72.7 4.06 4.06 0 0 1 .9.71l.01.02h.01l-.39.32.39-.31a.5.5 0 0 1-.08.7ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const EmojiSad24Filled = /*#__PURE__*/createFluentIcon('EmojiSad24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 11.5c-1.63 0-3.17.65-4.29 1.8a.75.75 0 1 0 1.07 1.05 4.48 4.48 0 0 1 6.43 0 .75.75 0 1 0 1.07-1.06A5.98 5.98 0 0 0 12 13.5ZM9 8.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const EmojiSad24Regular = /*#__PURE__*/createFluentIcon('EmojiSad24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm0 10c1.63 0 3.16.65 4.28 1.8a.75.75 0 1 1-1.07 1.04 4.48 4.48 0 0 0-6.43 0 .75.75 0 1 1-1.07-1.04A5.98 5.98 0 0 1 12 13.5ZM9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const EmojiSadSlight20Filled = /*#__PURE__*/createFluentIcon('EmojiSadSlight20Filled', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.5 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4-1a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.3 4.5h.8a.5.5 0 0 1 0 1h-.8c-1.07 0-2.13.32-3.02.92a.5.5 0 1 1-.56-.84A6.45 6.45 0 0 1 12.8 12Z\"]);\nexport const EmojiSadSlight20Regular = /*#__PURE__*/createFluentIcon('EmojiSadSlight20Regular', \"20\", [\"M8.5 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm.3 2.5c-1.27 0-2.52.38-3.58 1.08a.5.5 0 0 0 .56.84c.9-.6 1.95-.92 3.02-.92h.8a.5.5 0 0 0 0-1h-.8ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8-7a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\"]);\nexport const EmojiSadSlight24Filled = /*#__PURE__*/createFluentIcon('EmojiSadSlight24Filled', \"24\", [\"M22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0ZM7.75 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm6 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm2 4h.6a.75.75 0 0 1 0 1.5h-.6a5.75 5.75 0 0 0-3.47 1.28.75.75 0 1 1-1.06-1.06A7.24 7.24 0 0 1 15.75 14Z\"]);\nexport const EmojiSadSlight24Regular = /*#__PURE__*/createFluentIcon('EmojiSadSlight24Regular', \"24\", [\"M10.25 10a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm6 0a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm-.5 4a7.24 7.24 0 0 0-4.53 1.72.75.75 0 1 0 1.06 1.06c.27-.28.8-.6 1.47-.86a5.75 5.75 0 0 1 2-.42h.6a.75.75 0 0 0 0-1.5h-.6ZM22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0ZM3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const EmojiSmileSlight20Filled = /*#__PURE__*/createFluentIcon('EmojiSmileSlight20Filled', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.5 8.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4-1a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-4.03 5.55c.42.21.97.32 1.53.32a3.5 3.5 0 0 0 1.53-.32.5.5 0 1 1 .44.9c-.58.29-1.28.43-1.97.43s-1.39-.14-1.97-.43a.5.5 0 1 1 .44-.9Z\"]);\nexport const EmojiSmileSlight20Regular = /*#__PURE__*/createFluentIcon('EmojiSmileSlight20Regular', \"20\", [\"M13.5 8.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-.03 4.55a.5.5 0 1 0-.44.9c.58.29 1.28.43 1.97.43s1.39-.14 1.97-.43a.5.5 0 1 0-.44-.9c-.42.21-.97.32-1.53.32a3.5 3.5 0 0 1-1.53-.32ZM18 10a8 8 0 1 0-16 0 8 8 0 0 0 16 0ZM3 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const EmojiSmileSlight24Filled = /*#__PURE__*/createFluentIcon('EmojiSmileSlight24Filled', \"24\", [\"M22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0ZM7.75 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm6 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm-3.61 5.1c.48.3 1.15.46 1.86.46.7 0 1.38-.16 1.86-.45a.75.75 0 1 1 .78 1.28 5.2 5.2 0 0 1-2.64.67 5.2 5.2 0 0 1-2.64-.67.75.75 0 1 1 .78-1.28Z\"]);\nexport const EmojiSmileSlight24Regular = /*#__PURE__*/createFluentIcon('EmojiSmileSlight24Regular', \"24\", [\"M10.25 10a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm6 0a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm-6.11 5.1a.75.75 0 0 0-.78 1.3 5.2 5.2 0 0 0 2.64.66c.92 0 1.87-.2 2.64-.67a.75.75 0 1 0-.78-1.28c-.48.29-1.15.45-1.86.45-.7 0-1.38-.16-1.86-.45ZM22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0ZM3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const EmojiSparkle16Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle16Filled', \"16\", [\"M13.8 2.22h-.02l-.76-.26a1.58 1.58 0 0 1-1-1L11.77.2a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.6.19-.17.05a.3.3 0 0 0-.15.11.3.3 0 0 0 .15.46l.77.25.08.03a1.58 1.58 0 0 1 .92.97l.24.77a.3.3 0 0 0 .29.2.3.3 0 0 0 .29-.2l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57Zm1.41 3.35.62.2a.24.24 0 0 1 0 .46l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.24.17.24.24 0 0 1-.22-.16l-.2-.61a1.26 1.26 0 0 0-.8-.8l-.61-.2a.24.24 0 0 1-.12-.1.25.25 0 0 1 .12-.36l.61-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8ZM8 14a6 6 0 0 0 5.92-5 1.24 1.24 0 0 1-1.1-.85l-.2-.61a.26.26 0 0 0-.16-.16l-.63-.2A1.24 1.24 0 0 1 11 6v-.1a1.3 1.3 0 0 1-.74-.8l-.24-.75a.54.54 0 0 0-.14-.23.6.6 0 0 0-.22-.14l-.8-.25A1.3 1.3 0 0 1 8.1 2H8a6 6 0 1 0 0 12ZM6.25 7.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm-.11 1.92a2.5 2.5 0 0 0 3.72 0 .5.5 0 1 1 .75.66 3.5 3.5 0 0 1-5.22 0 .5.5 0 0 1 .75-.66Zm3.61-1.92a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5ZM11.5 5Z\"]);\nexport const EmojiSparkle16Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle16Regular', \"16\", [\"M13.8 2.22h-.02l-.76-.26a1.58 1.58 0 0 1-1-1L11.77.2a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.6.19-.17.05a.3.3 0 0 0-.15.11.3.3 0 0 0 .15.46l.77.25.08.03a1.58 1.58 0 0 1 .89.9l.03.07.24.77a.3.3 0 0 0 .29.2.3.3 0 0 0 .29-.2l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57Zm1.41 3.35.62.2a.24.24 0 0 1 0 .46l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.24.17.24.24 0 0 1-.22-.16l-.2-.61a1.26 1.26 0 0 0-.8-.8l-.03-.01-.58-.2a.24.24 0 0 1 0-.45l.61-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8ZM8.06 2.9 8.1 3H8a5 5 0 1 0 4.98 5.46 1.25 1.25 0 0 0 .94.54A6 6 0 1 1 8.1 2a1.3 1.3 0 0 0-.04.9ZM6.25 7.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-.11 1.92a.5.5 0 1 0-.75.66 3.5 3.5 0 0 0 5.22 0 .5.5 0 0 0-.75-.66 2.5 2.5 0 0 1-3.72 0ZM10.5 7A.75.75 0 1 1 9 7a.75.75 0 0 1 1.5 0Z\"]);\nexport const EmojiSparkle20Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle20Filled', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.01.04-.01.01-.23.7-.1.32a.42.42 0 0 1-.16.2.42.42 0 0 1-.64-.2l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-.64-.22-.43-.13a.42.42 0 0 1-.28-.4.42.42 0 0 1 .28-.4l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0-.15.11.3.3 0 0 0 .15.46l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM10 18a8 8 0 0 0 7.75-6.02 1.3 1.3 0 0 1-1.48-.87l-.25-.76a.57.57 0 0 0-.36-.36l-.79-.26a1.3 1.3 0 0 1-.75-1.78 1.4 1.4 0 0 1-.44-.21l-.04-.03-.03-.02c-.21-.17-.37-.4-.46-.66l-.34-1.07a1.2 1.2 0 0 0-.76-.76l-1.1-.36a1.42 1.42 0 0 1 .02-2.7l.2-.06A8 8 0 1 0 10 18Zm-3.55-5.57c.2-.2.51-.2.7 0a4.01 4.01 0 0 0 5.52.17l.18-.17.06-.06a.5.5 0 0 1 .7.7l-.06.06-.2.2a5.01 5.01 0 0 1-6.9-.2.5.5 0 0 1 0-.7ZM11.5 8.5a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-5 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z\"]);\nexport const EmojiSparkle20Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle20Regular', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.03.1.21.67a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM17.3 12a1.3 1.3 0 0 1-.53-.21A7 7 0 1 1 10.1 3a1.42 1.42 0 0 1 .88-.85l.2-.07a8 8 0 1 0 6.59 9.9c-.15.03-.3.03-.46 0Zm-4.63.6a4.01 4.01 0 0 1-5.52-.16.5.5 0 1 0-.7.7 5.01 5.01 0 0 0 7.08.02l.02-.02.06-.07a.5.5 0 0 0-.76-.63l-.18.17Zm.83-4.09a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const EmojiSparkle24Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle24Filled', \"24\", [\"M14.74 5.46a2.84 2.84 0 0 1 1.8 1.8l.45 1.38a.54.54 0 0 0 1.01.03l.01-.02.05-.15.4-1.24a2.84 2.84 0 0 1 1.3-1.57c.16-.1.32-.17.5-.23l1.38-.44a.54.54 0 0 0 0-1.03h-.03l-1.38-.45a2.84 2.84 0 0 1-1.8-1.8L18 .36a.54.54 0 0 0-1.03 0l-.45 1.38-.01.03a2.84 2.84 0 0 1-1.76 1.76l-1.38.45a.54.54 0 0 0 0 1.03l1.38.45Zm9.04 4.75-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.1.03-.67.21a.3.3 0 0 0-.2.29.3.3 0 0 0 .2.28l.76.25a1.58 1.58 0 0 1 1 1l.25.77a.3.3 0 0 0 .12.14.3.3 0 0 0 .46-.14l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM12 22.01a10 10 0 0 0 9.8-8.04 1.3 1.3 0 0 1-1.54-.86l-.25-.76a.57.57 0 0 0-.36-.36l-.78-.26a1.3 1.3 0 0 1-.7-1.88 1.55 1.55 0 0 1-2.14-.9l-.44-1.38a1.81 1.81 0 0 0-1.16-1.16l-1.4-.46a1.54 1.54 0 0 1 .02-2.92l1.36-.44c.14-.05.28-.11.4-.2A10 10 0 1 0 12 22Zm-4.6-7.35c.33-.26.8-.2 1.06.12a4.5 4.5 0 0 0 7.07 0 .75.75 0 1 1 1.18.94 6 6 0 0 1-9.43 0 .75.75 0 0 1 .13-1.06ZM7.76 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm6 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z\"]);\nexport const EmojiSparkle24Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle24Regular', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l.71-.23.67-.22a2.82 2.82 0 0 0 1.76-1.76l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.57 1.3c-.1.15-.17.32-.23.5l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.72.88l-.26.11-.77.25a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .12.14.3.3 0 0 0 .46-.14l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02Zm-3.04 3.55c-.15-.1-.27-.23-.36-.38a8.5 8.5 0 1 1-8.03-9.87c.18-.22.42-.39.7-.48l1.35-.44c.14-.05.28-.11.4-.2a10 10 0 1 0 7 11.58 1.3 1.3 0 0 1-1.06-.2ZM12 16.5a4.5 4.5 0 0 1-3.54-1.72.75.75 0 0 0-1.18.93 6 6 0 0 0 9.43 0 .75.75 0 0 0-1.18-.92A4.5 4.5 0 0 1 12 16.5ZM10.25 10a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm6 0a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Z\"]);\nexport const EmojiSparkle28Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle28Filled', \"28\", [\"M17.32 6.22a3.16 3.16 0 0 1 1.6 1.85l.5 1.53a.6.6 0 0 0 .48.4.6.6 0 0 0 .63-.3.62.62 0 0 0 .04-.1l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.96 1.95l-1.53.5a.6.6 0 0 0-.1 1.1.6.6 0 0 0 .1.05l1.53.5c.14.04.27.09.4.15Zm4.72 4.62a.36.36 0 0 1 .2-.18l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2l.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-.95.71c-.1.15-.19.32-.25.5l-.3.91a.36.36 0 0 1-.68 0l-.3-.92a1.89 1.89 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1-.2-.5ZM14 26a12 12 0 0 0 11.99-11.42 1.36 1.36 0 0 1-2.28-.51l-.3-.91a.9.9 0 0 0-.56-.57l-.94-.3a1.36 1.36 0 0 1-.84-1.7 1.6 1.6 0 0 1-2.58-.7l-.5-1.52a2.1 2.1 0 0 0-.52-.84 2.16 2.16 0 0 0-.84-.52l-1.55-.5a1.6 1.6 0 0 1 .02-3.03l1.51-.5c.3-.1.57-.27.8-.49A12 12 0 1 0 14 26Zm3.5-13a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM12 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-3.67 5.63a.75.75 0 0 1 1.04.2 2.25 2.25 0 0 0 .25.3A5.92 5.92 0 0 0 14 19.5a5.92 5.92 0 0 0 4.62-2.16l.01-.01a.75.75 0 0 1 1.24.84l-.01.02-.01.01-.01.02a3.85 3.85 0 0 1-.36.43A7.42 7.42 0 0 1 14 21a7.42 7.42 0 0 1-5.86-2.81v-.01h-.01a.75.75 0 0 1 .2-1.05Z\"]);\nexport const EmojiSparkle28Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle28Regular', \"28\", [\"M18.17 6.83a3.16 3.16 0 0 1 .76 1.24l.5 1.53a.6.6 0 0 0 1.14 0l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.95 1.95h.02-.03l-1.53.5a.6.6 0 0 0 0 1.15l1.53.5c.47.15.9.41 1.24.76Zm8.65 3.53.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.2-.58-.1-.34a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3c.2-.07.4-.18.57-.32l.07-.06a1.87 1.87 0 0 0 .54-.82l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2Zm-2.03 4.63a1.36 1.36 0 0 1-.33-.1 10.5 10.5 0 1 1-9.53-11.35c.06-.02.11-.05.17-.06l1.51-.5c.3-.1.57-.27.8-.49A12 12 0 1 0 26 14.6a1.36 1.36 0 0 1-1.2.4ZM10.5 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm8.5-1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM8.33 17.13a.75.75 0 0 1 1.04.2 2.25 2.25 0 0 0 .25.3A5.92 5.92 0 0 0 14 19.5a5.92 5.92 0 0 0 4.62-2.16l.01-.01a.75.75 0 0 1 1.24.84l-.01.02-.02.03a3.85 3.85 0 0 1-.36.43A7.42 7.42 0 0 1 14 21a7.42 7.42 0 0 1-5.86-2.81v-.01h-.01a.75.75 0 0 1 .2-1.05Z\"]);\nexport const EmojiSparkle32Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle32Filled', \"32\", [\"M18 5.56a.67.67 0 0 0 .44.57l1.69.55a3.47 3.47 0 0 1 2.2 2.2l.54 1.68a.66.66 0 0 0 1.24.05v-.02l.02-.03.12-.36.42-1.33a3.47 3.47 0 0 1 2.2-2.2l1.69-.54a.67.67 0 0 0 0-1.25l-.04-.01-1.68-.55a3.47 3.47 0 0 1-2.2-2.2L24.1.45a.66.66 0 0 0-1.25 0l-.55 1.69-.01.04a3.47 3.47 0 0 1-2.15 2.15l-1.69.55a.67.67 0 0 0-.44.69Zm9.93 6.3c.19-.2.33-.44.41-.7l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2l.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-.94.7c-.1.15-.2.32-.26.5l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.89 1.89 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1-.23-.45.36.36 0 0 1 .23-.24l.92-.3a1.9 1.9 0 0 0 .77-.5ZM16 30a14 14 0 1 1 4.16-27.37c-.16.11-.33.2-.52.27l-1.66.54a2.18 2.18 0 0 0-1.45 1.72 2.16 2.16 0 0 0 1.42 2.37l1.71.56a1.97 1.97 0 0 1 1.24 1.25l.55 1.67a2.18 2.18 0 0 0 2.03 1.48c.44 0 .87-.12 1.23-.37a1.86 1.86 0 0 0 1.03 2.63l.95.3.15.1c.04.04.07.1.1.15l.3.91a1.88 1.88 0 0 0 1.48 1.26 1.86 1.86 0 0 0 1.23-.23A14 14 0 0 1 16 30Zm-4-15a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0ZM9.55 19.1a1 1 0 0 0-.44 1.35v.02a2.45 2.45 0 0 0 .1.18l.3.42c.25.34.63.78 1.18 1.21A8.28 8.28 0 0 0 16 24c2.5 0 4.21-.84 5.31-1.72a6.76 6.76 0 0 0 1.55-1.76l.01-.03.01-.02v-.01h.01v-.01a1 1 0 0 0-1.78-.9l-.04.06-.17.26c-.17.22-.44.53-.84.85A6.3 6.3 0 0 1 16 22c-2 0-3.29-.66-4.06-1.28a4.76 4.76 0 0 1-1.05-1.17 1 1 0 0 0-1.34-.44Z\"]);\nexport const EmojiSparkle32Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle32Regular', \"32\", [\"M21.49 7.51a3.49 3.49 0 0 1 .84 1.36l.54 1.69a.66.66 0 0 0 1.26 0l.54-1.69a3.47 3.47 0 0 1 2.2-2.2l1.69-.54a.67.67 0 0 0 0-1.25l-.04-.01-1.68-.55a3.47 3.47 0 0 1-2.2-2.2L24.1.45a.66.66 0 0 0-1.25 0l-.55 1.69-.01.04a3.47 3.47 0 0 1-2.15 2.15l-1.69.55a.67.67 0 0 0 0 1.25l1.69.55c.51.17.98.46 1.36.84Zm9.33 4.85.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-.94.7c-.1.15-.2.32-.26.5l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.89 1.89 0 0 0-.52-.8 1.9 1.9 0 0 0-.68-.4l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.89 1.89 0 0 0 1.18-1.2l.11-.35.19-.57a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM17.05 4.05a12 12 0 1 0 10.9 13.12 1.86 1.86 0 0 0 2 .07 14 14 0 1 1-9.79-14.61c-.16.11-.33.2-.52.27l-1.66.54c-.36.12-.68.33-.93.6ZM14 13a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm6 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM9.55 19.1a1 1 0 0 1 1.34.45l.04.06.17.26c.17.22.44.53.84.85A6.3 6.3 0 0 0 16 22c2 0 3.29-.66 4.06-1.28a4.76 4.76 0 0 0 1.05-1.17 1 1 0 0 1 1.78.9v.02l-.02.02-.01.03a3.76 3.76 0 0 1-.36.55c-.26.34-.64.78-1.19 1.21A8.28 8.28 0 0 1 16 24c-2.5 0-4.21-.84-5.31-1.72a6.76 6.76 0 0 1-1.57-1.8v-.02H9.1v-.01a1 1 0 0 1 .44-1.34Z\"]);\nexport const EmojiSparkle48Filled = /*#__PURE__*/createFluentIcon('EmojiSparkle48Filled', \"48\", [\"M32.83 12.11a5.36 5.36 0 0 0-2.54-1.8l-2.6-.85a1.03 1.03 0 0 1 0-1.94l2.6-.84a5.36 5.36 0 0 0 3.32-3.33l.02-.06.85-2.6a1.03 1.03 0 0 1 1.94 0l.84 2.6a5.36 5.36 0 0 0 3.4 3.39l2.6.84.05.02a1.03 1.03 0 0 1 0 1.94l-2.6.84a5.36 5.36 0 0 0-3.4 3.4l-.84 2.6-.03.06a1.03 1.03 0 0 1-1.9-.07l-.86-2.6a5.35 5.35 0 0 0-.85-1.6Zm6.27 7.07a.54.54 0 0 0-.09.2.54.54 0 0 0 .35.64l1.38.45a2.84 2.84 0 0 1 1.8 1.8l.45 1.38a.54.54 0 0 0 1 .04v-.01a.5.5 0 0 0 .02-.04l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03l-1.38-.45a2.84 2.84 0 0 1-1.8-1.8L44 15.36a.54.54 0 0 0-1.03 0l-.45 1.38a2.84 2.84 0 0 1-1.77 1.8l-1.38.44c-.1.04-.2.11-.26.2ZM24 44a20 20 0 1 1 5.61-39.2l-2.54.82a3.04 3.04 0 0 0-1.93 3.79 3.03 3.03 0 0 0 1.88 1.93l2.65.87a3.37 3.37 0 0 1 2.11 2.12l.85 2.6a3.05 3.05 0 0 0 2.85 2.06c.62 0 1.22-.18 1.73-.53a2.54 2.54 0 0 0 1.49 3.44l1.42.46a.84.84 0 0 1 .52.53l.45 1.37a2.57 2.57 0 0 0 2.02 1.71c.27.04.53.04.8 0A20 20 0 0 1 24 44Zm-6.5-22a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM33 19.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0ZM18.45 34.68c1.71.9 3.62 1.34 5.55 1.32a11.72 11.72 0 0 0 9.82-5.1 1.25 1.25 0 1 0-2.13-1.3A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3c1.1 1.6 2.56 2.9 4.27 3.78Z\"]);\nexport const EmojiSparkle48Regular = /*#__PURE__*/createFluentIcon('EmojiSparkle48Regular', \"48\", [\"M32.4 11.6a5.36 5.36 0 0 1 1.28 2.11l.85 2.6a1.03 1.03 0 0 0 1.94 0l.85-2.6a5.36 5.36 0 0 1 3.4-3.39l2.6-.84a1.03 1.03 0 0 0 0-1.94l-.06-.02-2.6-.84a5.36 5.36 0 0 1-3.4-3.4l-.84-2.6a1.03 1.03 0 0 0-1.94 0l-.85 2.6-.02.07a5.36 5.36 0 0 1-3.32 3.33l-2.6.84a1.03 1.03 0 0 0 0 1.94l2.6.85c.8.26 1.51.7 2.1 1.3Zm13.83 6.94 1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03.01l-.44-1.38a2.84 2.84 0 0 0-1.36-1.61v-.02a2.84 2.84 0 0 0-.44-.18L39.36 20a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.77-1.8l.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.83 2.83 0 0 0 1.8 1.8ZM25.68 6.58a17.5 17.5 0 1 0 15.79 18.41 2.57 2.57 0 0 0 1.64.98c.27.04.53.04.8 0A20 20 0 1 1 29.6 4.8l-2.54.82c-.55.19-1.03.52-1.39.96ZM20 19.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM30.5 22a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM18.45 34.68c1.71.9 3.62 1.34 5.55 1.32a11.72 11.72 0 0 0 9.82-5.1 1.25 1.25 0 1 0-2.13-1.3A9.21 9.21 0 0 1 24 33.5a9.22 9.22 0 0 1-7.69-3.9 1.25 1.25 0 1 0-2.13 1.3c1.1 1.6 2.56 2.9 4.27 3.78Z\"]);\nexport const EmojiSurprise20Filled = /*#__PURE__*/createFluentIcon('EmojiSurprise20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5.5-.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4.25 3a1.75 1.75 0 1 0-3.5 0 1.75 1.75 0 0 0 3.5 0Zm.75-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const EmojiSurprise20Regular = /*#__PURE__*/createFluentIcon('EmojiSurprise20Regular', \"20\", [\"M7.5 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4.25 3a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm.75-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const EmojiSurprise24Filled = /*#__PURE__*/createFluentIcon('EmojiSurprise24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 11a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM9 8.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const EmojiSurprise24Regular = /*#__PURE__*/createFluentIcon('EmojiSurprise24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm0 9.5a2.25 2.25 0 1 1 0 4.5 2.25 2.25 0 0 1 0-4.5ZM9 8.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Engine20Filled = /*#__PURE__*/createFluentIcon('Engine20Filled', \"20\", [\"M7.5 2.5c.28 0 .5.22.5.5v1h2V3a.5.5 0 0 1 1 0v1h2.2a1 1 0 0 1 .89.55L14.8 6H16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-1.2l-.71 1.45a1 1 0 0 1-.9.55H7.71a1 1 0 0 1-.71-.3l-2.41-2.4A2 2 0 0 1 4 12.87V10H3v2.5a.5.5 0 0 1-1 0v-6a.5.5 0 0 1 1 0V9h1V6c0-1.1.9-2 2-2h1V3c0-.28.22-.5.5-.5Zm0 4.5a.5.5 0 0 0-.5.5V10c0 1.1.9 2 2 2h5.5a.5.5 0 0 0 0-1H11V7.5a.5.5 0 0 0-1 0V11H9a1 1 0 0 1-1-1V7.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const Engine20Regular = /*#__PURE__*/createFluentIcon('Engine20Regular', \"20\", [\"M8 3a.5.5 0 0 0-1 0v1H6a2 2 0 0 0-2 2v3H3V6.5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V10h1v2.88a2 2 0 0 0 .59 1.41L7 16.71a1 1 0 0 0 .7.29h5.5a1 1 0 0 0 .89-.55L14.8 15H16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-1.2l-.71-1.45a1 1 0 0 0-.9-.55H11V3a.5.5 0 0 0-1 0v1H8V3ZM6 5h7.2l.71 1.45a1 1 0 0 0 .9.55H16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-1.2a1 1 0 0 0-.89.55L13.2 16H7.71l-2.42-2.41a1 1 0 0 1-.29-.71V6a1 1 0 0 1 1-1Zm1.5 2c.28 0 .5.22.5.5V10a1 1 0 0 0 1 1h1V7.5a.5.5 0 0 1 1 0V11h3.5a.5.5 0 0 1 0 1H9a2 2 0 0 1-2-2V7.5c0-.28.22-.5.5-.5Z\"]);\nexport const Engine24Filled = /*#__PURE__*/createFluentIcon('Engine24Filled', \"24\", [\"M9.75 3c.41 0 .75.34.75.75V5h2V3.75a.75.75 0 0 1 1.5 0V5h2.75c.3 0 .58.19.7.47l.8 2.03h1A2.75 2.75 0 0 1 22 10.25v5.5a2.75 2.75 0 0 1-2.75 2.75h-1l-.8 2.03a.75.75 0 0 1-.7.47h-7.5c-.2 0-.4-.09-.55-.24L5.74 17.6A2.75 2.75 0 0 1 5 15.7V12.5H3.5v3.75a.75.75 0 0 1-1.5 0v-8.5a.75.75 0 0 1 1.5 0V11H5V7.75A2.75 2.75 0 0 1 7.75 5H9V3.75c0-.41.34-.75.75-.75Zm.75 6.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 11.75 15h6.5a.75.75 0 0 0 0-1.5H14V9.75a.75.75 0 0 0-1.5 0v3.75h-.75c-.69 0-1.25-.56-1.25-1.25v-2.5Z\"]);\nexport const Engine24Regular = /*#__PURE__*/createFluentIcon('Engine24Regular', \"24\", [\"M9.75 9c.41 0 .75.34.75.75v2.5c0 .69.56 1.25 1.25 1.25h.75V9.75a.75.75 0 0 1 1.5 0v3.75h4.25a.75.75 0 0 1 0 1.5h-6.5A2.75 2.75 0 0 1 9 12.25v-2.5c0-.41.34-.75.75-.75Zm0-6c.41 0 .75.34.75.75V5h2V3.75a.75.75 0 0 1 1.5 0V5h2.75c.3 0 .58.19.7.47l.8 2.03h1A2.75 2.75 0 0 1 22 10.25v5.5a2.75 2.75 0 0 1-2.75 2.75h-1l-.8 2.03a.75.75 0 0 1-.7.47h-7.5c-.2 0-.4-.09-.55-.24L5.74 17.6A2.75 2.75 0 0 1 5 15.7V12.5H3.5v3.75a.75.75 0 0 1-1.5 0v-8.5a.75.75 0 0 1 1.5 0V11H5V7.75A2.75 2.75 0 0 1 7.75 5H9V3.75c0-.41.34-.75.75-.75Zm-2 3.5c-.69 0-1.25.56-1.25 1.25v7.96c0 .32.12.62.34.85l2.74 2.94h6.66l.81-2.03a.75.75 0 0 1 .7-.47h1.5c.69 0 1.25-.56 1.25-1.25v-5.5c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1-.7-.47l-.8-2.03h-8.5Z\"]);\nexport const EqualCircle20Filled = /*#__PURE__*/createFluentIcon('EqualCircle20Filled', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm3.5 7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1h7Zm0 3a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1h7Z\"]);\nexport const EqualCircle20Regular = /*#__PURE__*/createFluentIcon('EqualCircle20Regular', \"20\", [\"M13.5 9a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1h7Zm0 3a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1h7Zm4.5-2a8 8 0 1 0-16 0 8 8 0 0 0 16 0Zm-8-7a7 7 0 1 1 0 14 7 7 0 0 1 0-14Z\"]);\nexport const EqualCircle24Filled = /*#__PURE__*/createFluentIcon('EqualCircle24Filled', \"24\", [\"M22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0Zm-5.75-1.5h-8.5a.75.75 0 0 1 0-1.5h8.5a.75.75 0 0 1 0 1.5Zm0 4.5h-8.5a.75.75 0 0 1 0-1.5h8.5a.75.75 0 0 1 0 1.5Z\"]);\nexport const EqualCircle24Regular = /*#__PURE__*/createFluentIcon('EqualCircle24Regular', \"24\", [\"M16.26 10.5a.75.75 0 0 0 0-1.5H7.77a.75.75 0 0 0 0 1.5h8.49Zm0 4.5a.75.75 0 0 0 0-1.5H7.77a.75.75 0 0 0 0 1.5h8.49ZM22 12a10 10 0 1 0-20 0 10 10 0 0 0 20 0ZM12 3.5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17Z\"]);\nexport const EqualOff12Filled = /*#__PURE__*/createFluentIcon('EqualOff12Filled', \"12\", [\"M1.85 1.15a.5.5 0 1 0-.7.7L2.79 3.5h-.54a.75.75 0 0 0 0 1.5h2.04l2 2H2.25a.75.75 0 0 0 0 1.5h5.54l2.36 2.35a.5.5 0 0 0 .7-.7l-9-9ZM9.12 7l1.22 1.22c.1-.13.16-.3.16-.47A.75.75 0 0 0 9.75 7h-.63Zm-3.5-3.5L7.12 5h2.63a.75.75 0 0 0 0-1.5H5.62Z\"]);\nexport const EqualOff12Regular = /*#__PURE__*/createFluentIcon('EqualOff12Regular', \"12\", [\"M1.85 1.15a.5.5 0 1 0-.7.7L3.29 4H2a.5.5 0 0 0 0 1h2.3l2 2H2a.5.5 0 0 0 0 1h5.3l2.85 2.85a.5.5 0 0 0 .7-.7l-9-9ZM9.12 7l.99.99A.5.5 0 0 0 10 7h-.88Zm-3-3 1 1H10a.5.5 0 0 0 0-1H6.12Z\"]);\nexport const EqualOff16Filled = /*#__PURE__*/createFluentIcon('EqualOff16Filled', \"16\", [\"m10.3 11 3.85 3.85a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L3.79 4.5H2.75a.75.75 0 0 0 0 1.5h2.54l3.5 3.5H2.75a.75.75 0 0 0 0 1.5h7.54Zm1.32-1.5 1.5 1.5h.13a.75.75 0 0 0 0-1.5h-1.63Zm-5-5L8.12 6h5.13a.75.75 0 0 0 0-1.5H6.62Z\"]);\nexport const EqualOff16Regular = /*#__PURE__*/createFluentIcon('EqualOff16Regular', \"16\", [\"m10.3 11 3.85 3.85a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L4.29 5H2.5a.5.5 0 0 0 0 1h2.8l4 4H2.5a.5.5 0 0 0 0 1h7.8Zm1.82-1 1 1h.38a.5.5 0 0 0 0-1h-1.38Zm-5-5 1 1h5.38a.5.5 0 0 0 0-1H7.12Z\"]);\nexport const EqualOff20Filled = /*#__PURE__*/createFluentIcon('EqualOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.79 6.5H3.75a.75.75 0 0 0 0 1.5h3.54l3.5 3.5H3.75a.75.75 0 0 0 0 1.5h8.54l4.86 4.85a.5.5 0 0 0 .7-.7l-15-15Zm10.77 9.35 1.5 1.5h1.13a.75.75 0 0 0 0-1.5h-2.63Zm-5-5 1.5 1.5h6.13a.75.75 0 0 0 0-1.5H8.62Z\"]);\nexport const EqualOff20Regular = /*#__PURE__*/createFluentIcon('EqualOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L6.29 7H3.5a.5.5 0 0 0 0 1h3.8l4 4H3.5a.5.5 0 0 0 0 1h8.8l4.85 4.85a.5.5 0 0 0 .7-.7l-15-15ZM14.12 12l1 1h1.38a.5.5 0 0 0 0-1h-2.38Zm-5-5 1 1h6.38a.5.5 0 0 0 0-1H9.12Z\"]);\nexport const EqualOff24Filled = /*#__PURE__*/createFluentIcon('EqualOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06L6.94 8H4a1 1 0 0 0 0 2h4.94l4 4H4a1 1 0 1 0 0 2h10.94l5.78 5.78a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM20 14h-2.82l2 2H20a1 1 0 1 0 0-2Zm-8.82-6 2 2H20a1 1 0 1 0 0-2h-8.82Z\"]);\nexport const EqualOff24Regular = /*#__PURE__*/createFluentIcon('EqualOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06L6.94 8H3.75a.75.75 0 0 0 0 1.5h4.69l5 5H3.75a.75.75 0 0 0 0 1.5h11.19l5.78 5.78a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM20.25 14.5h-2.57l1.5 1.5h1.07a.75.75 0 0 0 0-1.5ZM11.18 8l1.5 1.5h7.57a.75.75 0 0 0 0-1.5h-9.07Z\"]);\nexport const Eraser20Filled = /*#__PURE__*/createFluentIcon('Eraser20Filled', \"20\", [\"M11.2 2.44a1.5 1.5 0 0 1 2.12 0l4.24 4.24a1.5 1.5 0 0 1 0 2.12L9.36 17h5.14a.5.5 0 1 1 0 1H7.82a1.5 1.5 0 0 1-1.14-.44l-4.24-4.24a1.5 1.5 0 0 1 0-2.12l8.76-8.76ZM9.78 15.17l-4.95-4.95-1.69 1.69a.5.5 0 0 0 0 .7l4.25 4.25c.2.2.5.2.7 0l1.7-1.7Z\"]);\nexport const Eraser20Regular = /*#__PURE__*/createFluentIcon('Eraser20Regular', \"20\", [\"M11.2 2.44a1.5 1.5 0 0 1 2.12 0l4.24 4.24a1.5 1.5 0 0 1 0 2.12L9.36 17h5.14a.5.5 0 1 1 0 1H7.82a1.5 1.5 0 0 1-1.14-.44l-4.24-4.24a1.5 1.5 0 0 1 0-2.12l8.76-8.76Zm1.41.7a.5.5 0 0 0-.7 0L5.53 9.52l4.95 4.95 6.36-6.36a.5.5 0 0 0 0-.71l-4.24-4.24ZM9.78 15.18l-4.95-4.95-1.69 1.69a.5.5 0 0 0 0 .7l4.25 4.25c.2.2.5.2.7 0l1.7-1.7Z\"]);\nexport const Eraser24Filled = /*#__PURE__*/createFluentIcon('Eraser24Filled', \"24\", [\"m15.87 2.67 4.97 4.97c.88.88.88 2.3 0 3.18l-8.68 8.68h6.1c.37 0 .69.28.74.65v.1c0 .38-.28.7-.64.74l-.1.01H9.83a2.24 2.24 0 0 1-1.71-.65l-4.97-4.97a2.25 2.25 0 0 1 0-3.18l9.53-9.53c.88-.88 2.3-.88 3.18 0ZM11.7 17.76 5.74 11.8l-1.5 1.47c-.3.3-.3.77 0 1.06l4.94 4.95c.3.28.77.28 1.06-.02l1.46-1.5Z\"]);\nexport const Eraser24Regular = /*#__PURE__*/createFluentIcon('Eraser24Regular', \"24\", [\"m15.87 2.67 4.97 4.97c.88.88.88 2.3 0 3.18l-8.68 8.68h6.1c.37 0 .69.28.74.65v.1c0 .38-.28.7-.64.74l-.1.01H9.83a2.24 2.24 0 0 1-1.71-.65l-4.97-4.97a2.25 2.25 0 0 1 0-3.18l9.53-9.53c.88-.88 2.3-.88 3.18 0Zm-10.16 9.1-1.49 1.49c-.3.29-.3.76 0 1.06l4.97 4.96c.15.15.34.22.53.22h.07a.75.75 0 0 0 .46-.22l1.49-1.48-6.03-6.03Zm8.04-8.04L6.77 10.7l6.03 6.03 6.98-6.98c.29-.3.29-.77 0-1.06L14.8 3.73a.75.75 0 0 0-1.06 0Z\"]);\nexport const EraserMedium20Filled = /*#__PURE__*/createFluentIcon('EraserMedium20Filled', \"20\", [\"M2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24a1.5 1.5 0 0 0 2.12 0l.72-.72a5.46 5.46 0 0 1-.37-1.04L8.1 16.86a.5.5 0 0 1-.71 0L3.15 12.6a.5.5 0 0 1 0-.7l1.69-1.7L9 14.39a5.5 5.5 0 0 1 7.84-4.86l.72-.72a1.5 1.5 0 0 0 0-2.12l-4.24-4.24a1.5 1.5 0 0 0-2.12 0L2.44 11.2ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z\"]);\nexport const EraserMedium20Regular = /*#__PURE__*/createFluentIcon('EraserMedium20Regular', \"20\", [\"M2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24a1.5 1.5 0 0 0 2.12 0l.72-.72a5.46 5.46 0 0 1-.37-1.04L8.1 16.86a.5.5 0 0 1-.71 0L3.15 12.6a.5.5 0 0 1 0-.7l1.69-1.7L9 14.39c.01-.43.07-.84.17-1.24L5.54 9.5l6.37-6.36c.2-.2.5-.2.7 0l4.25 4.24c.2.2.2.51 0 .7L15.8 9.16c.36.1.71.22 1.04.37l.72-.72a1.5 1.5 0 0 0 0-2.12l-4.24-4.24a1.5 1.5 0 0 0-2.12 0L2.44 11.2ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z\"]);\nexport const EraserMedium24Filled = /*#__PURE__*/createFluentIcon('EraserMedium24Filled', \"24\", [\"M12.65 2.64a2.25 2.25 0 0 1 3.2.02l4.9 5c.86.89.86 2.3 0 3.17l-.7.7a6.5 6.5 0 0 0-9.04 5.55L5.64 11.7 4.1 13.2c-.3.3-.3.78 0 1.07l5.1 5c.3.3.77.3 1.06 0l.8-.81c.09.58.25 1.13.48 1.65l-.22.22c-.87.88-2.29.89-3.17.02l-5.1-5.01c-.9-.88-.9-2.32 0-3.2l9.6-9.51ZM17.5 12a5.5 5.5 0 1 1 .01 10.99A5.5 5.5 0 0 1 17.5 12Z\"]);\nexport const EraserMedium24Regular = /*#__PURE__*/createFluentIcon('EraserMedium24Regular', \"24\", [\"M15.84 2.66c-.87-.89-2.3-.9-3.19-.02l-9.6 9.5c-.89.89-.89 2.33 0 3.21l5.1 5c.9.88 2.31.87 3.18-.01l.22-.22a6.45 6.45 0 0 1-.48-1.65l-.8.81c-.3.3-.77.3-1.06 0l-5.1-5a.75.75 0 0 1 0-1.07l1.53-1.51L11 17.07c.04-.6.17-1.2.37-1.75L6.7 10.64l7-6.94c.3-.29.78-.29 1.07.01l4.91 5.01c.29.3.29.76 0 1.05l-1.28 1.3c.58.07 1.14.23 1.66.45l.68-.7c.87-.87.87-2.27.01-3.15l-4.9-5Z\", \"M19.29 12.3a5.5 5.5 0 1 1-1.82-.3\", \"M17.5 12c.63 0 1.23.1 1.79.3Z\", \"M17.5 12h-.03Z\"]);\nexport const EraserSegment20Filled = /*#__PURE__*/createFluentIcon('EraserSegment20Filled', \"20\", [\"M13.32 2.44a1.5 1.5 0 0 0-2.12 0L2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24c.31.32.73.46 1.14.44h6.27a1.5 1.5 0 1 0 0-1H9.36l8.2-8.2a1.5 1.5 0 0 0 0-2.12l-4.24-4.24Zm-8.49 7.78 4.95 4.95-1.69 1.69a.5.5 0 0 1-.7 0L3.14 12.6a.5.5 0 0 1 0-.7l1.7-1.7Z\"]);\nexport const EraserSegment20Regular = /*#__PURE__*/createFluentIcon('EraserSegment20Regular', \"20\", [\"M13.32 2.44a1.5 1.5 0 0 0-2.12 0L2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24c.31.32.73.46 1.14.44h6.27a1.5 1.5 0 1 0 0-1H9.36l8.2-8.2a1.5 1.5 0 0 0 0-2.12l-4.24-4.24Zm-1.42.7c.2-.19.52-.19.71 0l4.24 4.25c.2.2.2.51 0 .7l-6.36 6.37-4.95-4.95 6.36-6.36Zm-7.07 7.08 4.95 4.95-1.69 1.69a.5.5 0 0 1-.7 0L3.14 12.6a.5.5 0 0 1 0-.7l1.7-1.7Z\"]);\nexport const EraserSegment24Filled = /*#__PURE__*/createFluentIcon('EraserSegment24Filled', \"24\", [\"M12.65 2.64a2.25 2.25 0 0 1 3.2.02l4.9 5c.86.89.86 2.3 0 3.17l-8.59 8.67h3.95a2.5 2.5 0 1 1 0 1.5H9.85c-.6.03-1.22-.18-1.7-.64l-5.09-5.01c-.9-.88-.9-2.32 0-3.2l9.6-9.51ZM9.8 19.5a.75.75 0 0 0 .47-.22l1.47-1.48-6.1-6.1L4.1 13.2c-.3.3-.3.78 0 1.07l5.1 5c.15.15.35.23.54.22h.05Z\"]);\nexport const EraserSegment24Regular = /*#__PURE__*/createFluentIcon('EraserSegment24Regular', \"24\", [\"M15.84 2.66c-.87-.89-2.3-.9-3.19-.02l-9.6 9.5c-.89.89-.89 2.33.01 3.21l5.1 5c.47.47 1.08.68 1.69.65h6.26a2.5 2.5 0 1 0 0-1.5h-3.95l8.58-8.67c.87-.88.87-2.28.01-3.16l-4.9-5ZM9.75 19.5a.75.75 0 0 1-.54-.21l-5.1-5.01a.75.75 0 0 1 0-1.07l1.53-1.51 6.1 6.1-1.47 1.48c-.13.13-.3.2-.47.22h-.05Zm3.96-15.8c.3-.29.77-.29 1.06.01l4.91 5.01c.29.3.29.76 0 1.05l-6.89 6.96-6.09-6.09 7-6.94Z\"]);\nexport const EraserSmall20Filled = /*#__PURE__*/createFluentIcon('EraserSmall20Filled', \"20\", [\"M2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24a1.5 1.5 0 0 0 2.12 0l2.22-2.2a4 4 0 0 1 4.34-4.34l2.2-2.22a1.5 1.5 0 0 0 0-2.12l-4.24-4.24a1.5 1.5 0 0 0-2.12 0L2.44 11.2Zm.7 1.41a.5.5 0 0 1 0-.7l1.7-1.7 4.95 4.96-1.7 1.69a.5.5 0 0 1-.7 0L3.15 12.6ZM15 18a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"]);\nexport const EraserSmall20Regular = /*#__PURE__*/createFluentIcon('EraserSmall20Regular', \"20\", [\"M2.44 11.2a1.5 1.5 0 0 0 0 2.12l4.24 4.24a1.5 1.5 0 0 0 2.12 0l2.22-2.2a4.06 4.06 0 0 1 .18-1.6l-.7.7-4.96-4.95 6.37-6.36c.2-.2.5-.2.7 0l4.25 4.24c.2.2.2.51 0 .7l-3.1 3.1a4 4 0 0 1 1.6-.17l2.2-2.22a1.5 1.5 0 0 0 0-2.12l-4.24-4.24a1.5 1.5 0 0 0-2.12 0L2.44 11.2Zm.7 1.41a.5.5 0 0 1 0-.7l1.7-1.7 4.95 4.96-1.7 1.69a.5.5 0 0 1-.7 0L3.15 12.6ZM15 18a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"]);\nexport const EraserSmall24Filled = /*#__PURE__*/createFluentIcon('EraserSmall24Filled', \"24\", [\"M12.65 2.64a2.25 2.25 0 0 1 3.2.02l4.9 5c.86.89.86 2.3 0 3.17l-2.26 2.28a4.51 4.51 0 0 0-5.37 5.42l-1.79 1.8c-.87.89-2.29.9-3.17.03l-5.1-5.01c-.9-.88-.9-2.32 0-3.2l9.6-9.51ZM4.11 13.2c-.3.3-.3.78 0 1.07l5.1 5c.3.3.77.3 1.06 0l1.47-1.48-6.1-6.1L4.1 13.2ZM17.5 21a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z\"]);\nexport const EraserSmall24Regular = /*#__PURE__*/createFluentIcon('EraserSmall24Regular', \"24\", [\"M15.84 2.66c-.87-.89-2.3-.9-3.19-.02l-9.6 9.5c-.89.89-.89 2.33 0 3.21l5.1 5c.9.88 2.31.87 3.18-.01l1.79-1.8a4.51 4.51 0 0 1 .02-2.16l-.35.35-6.09-6.09 7-6.94c.3-.29.78-.29 1.07.01l4.91 5.01c.29.3.29.76 0 1.05l-3.35 3.38a4.5 4.5 0 0 1 2.16-.04l2.25-2.28c.87-.88.87-2.28.01-3.16l-4.9-5ZM5.64 11.7l6.1 6.1-1.47 1.48c-.3.3-.77.3-1.06 0l-5.1-5a.75.75 0 0 1 0-1.07l1.53-1.51ZM17.6 14a3.5 3.5 0 1 1-3.6 3.51v-.01a3.5 3.5 0 0 1 3.6-3.5Z\"]);\nexport const EraserTool20Filled = /*#__PURE__*/createFluentIcon('EraserTool20Filled', \"20\", [\"M4 2.5a.5.5 0 0 0-1 0v12A3.5 3.5 0 0 0 6.5 18h7a3.5 3.5 0 0 0 3.5-3.5v-12a.5.5 0 0 0-1 0V6H4V2.5ZM4 10V7h12v3H4Z\"]);\nexport const EraserTool20Regular = /*#__PURE__*/createFluentIcon('EraserTool20Regular', \"20\", [\"M3.5 2c.28 0 .5.22.5.5V6h12V2.5a.5.5 0 0 1 1 0v12a3.5 3.5 0 0 1-3.5 3.5h-7A3.5 3.5 0 0 1 3 14.5v-12c0-.28.22-.5.5-.5Zm.5 9v3.5A2.5 2.5 0 0 0 6.5 17h7a2.5 2.5 0 0 0 2.5-2.5V11H4Zm12-1V7H4v3h12Z\"]);\nexport const EraserTool24Filled = /*#__PURE__*/createFluentIcon('EraserTool24Filled', \"24\", [\"M4.5 2.75a.75.75 0 0 0-1.5 0v14.5A4.75 4.75 0 0 0 7.75 22h8.5A4.75 4.75 0 0 0 21 17.25V2.75a.75.75 0 0 0-1.5 0V7h-15V2.75Zm0 5.75h15V12h-15V8.5Z\"]);\nexport const EraserTool24Regular = /*#__PURE__*/createFluentIcon('EraserTool24Regular', \"24\", [\"M3.75 2c.41 0 .75.34.75.75V7h15V2.75a.75.75 0 0 1 1.5 0v14.5A4.75 4.75 0 0 1 16.25 22h-8.5A4.75 4.75 0 0 1 3 17.25V2.75c0-.41.34-.75.75-.75ZM19.5 8.5h-15V12h15V8.5Zm-15 8.75c0 1.8 1.46 3.25 3.25 3.25h8.5c1.8 0 3.25-1.46 3.25-3.25V13.5h-15v3.75Z\"]);\nexport const ErrorCircle12Filled = /*#__PURE__*/createFluentIcon('ErrorCircle12Filled', \"12\", [\"M6 11A5 5 0 1 0 6 1a5 5 0 0 0 0 10Zm-.75-2.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.26-4.84a.5.5 0 0 1 .98 0l.01.09v2.59a.5.5 0 0 1-1 0V3.41Z\"]);\nexport const ErrorCircle12Regular = /*#__PURE__*/createFluentIcon('ErrorCircle12Regular', \"12\", [\"M5.25 8.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.26-4.84a.5.5 0 0 1 .98 0l.01.09v2.59a.5.5 0 0 1-1 0V3.41ZM11 6A5 5 0 1 1 1 6a5 5 0 0 1 10 0Zm-1 0a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z\"]);\nexport const ErrorCircle16Filled = /*#__PURE__*/createFluentIcon('ErrorCircle16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 8a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0-5.5a.5.5 0 0 0-.5.41V8.59a.5.5 0 0 0 1 0V4.91A.5.5 0 0 0 8 4.5Z\"]);\nexport const ErrorCircle16Regular = /*#__PURE__*/createFluentIcon('ErrorCircle16Regular', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 1a5 5 0 1 0 0 10A5 5 0 0 0 8 3Zm0 7a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm0-5.5a.5.5 0 0 1 .5.41V8.5a.5.5 0 0 1-1 .09V5c0-.28.22-.5.5-.5Z\"]);\nexport const ErrorCircle20Filled = /*#__PURE__*/createFluentIcon('ErrorCircle20Filled', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 10.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM10 6a.5.5 0 0 0-.5.41v4.68a.5.5 0 0 0 1 0V6.41A.5.5 0 0 0 10 6Z\"]);\nexport const ErrorCircle20Regular = /*#__PURE__*/createFluentIcon('ErrorCircle20Regular', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 1a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm0 9.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM10 6a.5.5 0 0 1 .5.41V11a.5.5 0 0 1-1 .09V6.5c0-.28.22-.5.5-.5Z\"]);\nexport const ErrorCircle24Filled = /*#__PURE__*/createFluentIcon('ErrorCircle24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-8a1 1 0 0 0-1 .88v5.24a1 1 0 0 0 2 0V7.88A1 1 0 0 0 12 7Z\"]);\nexport const ErrorCircle24Regular = /*#__PURE__*/createFluentIcon('ErrorCircle24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.67a8.34 8.34 0 0 0 0 16.66 8.34 8.34 0 0 0 0-16.66Zm0 10.83a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM12 7c.37 0 .69.28.74.65v4.6a.75.75 0 0 1-1.48.1l-.01-.1v-4.5c0-.41.33-.75.74-.75Z\"]);\nexport const ErrorCircle48Filled = /*#__PURE__*/createFluentIcon('ErrorCircle48Filled', \"48\", [\"M24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40Zm0 9c.69 0 1.25.56 1.25 1.25v12.5a1.25 1.25 0 1 1-2.5 0v-12.5c0-.69.56-1.25 1.25-1.25Zm0 21a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z\"]);\nexport const ErrorCircle48Regular = /*#__PURE__*/createFluentIcon('ErrorCircle48Regular', \"48\", [\"M24 13c.69 0 1.25.56 1.25 1.25v12.5a1.25 1.25 0 1 1-2.5 0v-12.5c0-.69.56-1.25 1.25-1.25Zm0 21a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 24a20 20 0 1 1 40 0 20 20 0 0 1-40 0ZM24 6.5a17.5 17.5 0 1 0 0 35 17.5 17.5 0 0 0 0-35Z\"]);\nexport const ErrorCircleSettings16Filled = /*#__PURE__*/createFluentIcon('ErrorCircleSettings16Filled', \"16\", [\"M14 8a6 6 0 1 0-5.75 6 4.5 4.5 0 0 1-.14-2.5H8a.75.75 0 1 1 .58-1.22A4.5 4.5 0 0 1 14 8.25L14 8ZM7.5 4.91a.5.5 0 0 1 1 0V8.59a.5.5 0 0 1-1 0V4.91Zm1.55 7.22a2 2 0 0 0 1.4-2.43v-.04c.25-.17.52-.32.8-.43a2 2 0 0 0 2.56.02c.3.13.59.3.84.5a2 2 0 0 0 1.3 2.2 3.52 3.52 0 0 1 .03.9l-.03.02a2 2 0 0 0-1.4 2.43v.04a3.5 3.5 0 0 1-.8.43 2 2 0 0 0-2.56-.02 3.5 3.5 0 0 1-.84-.5 2 2 0 0 0-1.3-2.2 3.52 3.52 0 0 1-.03-.9l.03-.02Zm4.2.37a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ErrorCircleSettings16Regular = /*#__PURE__*/createFluentIcon('ErrorCircleSettings16Regular', \"16\", [\"M14 8a6 6 0 1 0-5.75 6 4.47 4.47 0 0 1-.22-1H8a5 5 0 1 1 5-5v.03c.34.04.68.11 1 .22V8Zm-5.42 2.28a.75.75 0 1 0-.47 1.21c.1-.43.26-.84.47-1.21ZM8.5 4.91A.5.5 0 0 0 7.5 5v3.59a.5.5 0 0 0 1-.09V4.91Zm.56 7.22a2 2 0 0 0 1.4-2.43v-.04c.25-.17.52-.32.8-.43a2 2 0 0 0 2.56.02c.3.13.59.3.84.5a2 2 0 0 0 1.3 2.2 3.52 3.52 0 0 1 .03.9l-.03.02a2 2 0 0 0-1.4 2.43v.04a3.5 3.5 0 0 1-.8.43 2 2 0 0 0-2.56-.02 3.5 3.5 0 0 1-.84-.5 2 2 0 0 0-1.3-2.2 3.52 3.52 0 0 1-.03-.9l.03-.02Zm4.2.37a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ErrorCircleSettings20Filled = /*#__PURE__*/createFluentIcon('ErrorCircleSettings20Filled', \"20\", [\"M18 10a8 8 0 1 0-7.41 7.98 5.48 5.48 0 0 1-.37-4.01.75.75 0 1 1 .44-1.08 5.5 5.5 0 0 1 7.32-2.3L18 10ZM9.5 6.41a.5.5 0 0 1 1 0v4.68a.5.5 0 0 1-1 0V6.41Zm2.14 8.51a2 2 0 0 0 1.43-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.46-.12Zm4.86.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const ErrorCircleSettings20Regular = /*#__PURE__*/createFluentIcon('ErrorCircleSettings20Regular', \"20\", [\"M18 10a8 8 0 1 0-7.41 7.98 5.46 5.46 0 0 1-.38-.98H10a7 7 0 1 1 7-6.8c.34.1.67.23.98.39L18 10Zm-7.34 2.89a.75.75 0 1 0-.44 1.08c.1-.38.25-.74.44-1.08Zm-.17-6.48a.5.5 0 0 0-.99.09v4.59a.5.5 0 0 0 1-.09V6.41Zm1.15 8.51a2 2 0 0 0 1.43-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.46-.12Zm4.86.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const ExpandUpLeft16Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft16Filled', \"16\", [\"M7.23 2.5a.5.5 0 0 0-.5-.5H2.5a.5.5 0 0 0-.5.5v4.23a.5.5 0 0 0 1 0V3.71l3.38 3.37a.5.5 0 1 0 .7-.7L3.71 3h3.02a.5.5 0 0 0 .5-.5Zm4.27.5c.83 0 1.5.67 1.5 1.5V8H9.77C8.79 8 8 8.8 8 9.77V13H4.5A1.5 1.5 0 0 1 3 11.5V9.27a.5.5 0 0 0-1 0v2.23A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2H9.27a.5.5 0 0 0 0 1h2.23Z\"]);\nexport const ExpandUpLeft16Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft16Regular', \"16\", [\"M7.23 2.5a.5.5 0 0 0-.5-.5H2.5a.5.5 0 0 0-.5.5v4.23a.5.5 0 0 0 1 0V3.71l3.38 3.37a.5.5 0 1 0 .7-.7L3.71 3h3.02a.5.5 0 0 0 .5-.5Zm5.77 2c0-.83-.67-1.5-1.5-1.5H9.27a.5.5 0 0 1 0-1h2.23A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5V9.27a.5.5 0 0 1 1 0v2.23c0 .83.67 1.5 1.5 1.5H8V9.77C8 8.79 8.8 8 9.77 8H13V4.5ZM13 9H9.77a.77.77 0 0 0-.77.77V13h2.5c.83 0 1.5-.67 1.5-1.5V9Z\"]);\nexport const ExpandUpLeft20Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft20Filled', \"20\", [\"M14 4a2 2 0 0 1 2 2v4h-4a2 2 0 0 0-2 2v4H6a2 2 0 0 1-2-2v-2.5a.5.5 0 0 0-1 0V14a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3h-2.5a.5.5 0 0 0 0 1H14Zm-5-.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0V4.7l4.15 4.15a.5.5 0 1 0 .7-.7L4.71 4H8.5a.5.5 0 0 0 .5-.5Z\"]);\nexport const ExpandUpLeft20Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft20Regular', \"20\", [\"M16 6a2 2 0 0 0-2-2h-2.5a.5.5 0 0 1 0-1H14a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3v-2.5a.5.5 0 0 1 1 0V14c0 1.1.9 2 2 2h4v-4c0-1.1.9-2 2-2h4V6Zm-4 5a1 1 0 0 0-1 1v4h3a2 2 0 0 0 2-2v-3h-4ZM9 3.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0V4.7l4.15 4.15a.5.5 0 1 0 .7-.7L4.71 4H8.5a.5.5 0 0 0 .5-.5Z\"]);\nexport const ExpandUpLeft24Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft24Filled', \"24\", [\"M11 3.75a.75.75 0 0 0-.75-.75h-6.5a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V5.56l5.22 5.22a.75.75 0 0 0 1.06-1.06L5.56 4.5h4.69c.41 0 .75-.34.75-.75Zm6.75.75c.97 0 1.75.78 1.75 1.75V12h-4.75A2.75 2.75 0 0 0 12 14.75v4.75H6.25c-.97 0-1.75-.78-1.75-1.75v-4a.75.75 0 0 0-1.5 0v4C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3h-4a.75.75 0 1 0 0 1.5h4Z\"]);\nexport const ExpandUpLeft24Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft24Regular', \"24\", [\"M11 3.75a.75.75 0 0 0-.75-.75h-6.5a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V5.56l5.22 5.22a.75.75 0 0 0 1.06-1.06L5.56 4.5h4.69c.41 0 .75-.34.75-.75Zm8.5 2.5c0-.97-.78-1.75-1.75-1.75h-4a.75.75 0 1 1 0-1.5h4C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75v-4a.75.75 0 0 1 1.5 0v4c0 .97.78 1.75 1.75 1.75H12v-4.75A2.75 2.75 0 0 1 14.75 12h4.75V6.25Zm0 7.25h-4.75c-.69 0-1.25.56-1.25 1.25v4.75h4.25c.97 0 1.75-.78 1.75-1.75V13.5Z\"]);\nexport const ExpandUpLeft28Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft28Filled', \"28\", [\"M21.25 4.5c1.24 0 2.25 1 2.25 2.25V14h-6.75A2.75 2.75 0 0 0 14 16.75v6.75H6.75c-1.24 0-2.25-1-2.25-2.25v-5a.75.75 0 0 0-1.5 0v5A3.75 3.75 0 0 0 6.75 25h14.5A3.75 3.75 0 0 0 25 21.25V6.75A3.75 3.75 0 0 0 21.25 3h-5a.75.75 0 0 0 0 1.5h5Zm-8.75-.75a.75.75 0 0 0-.75-.75h-8a.75.75 0 0 0-.75.75v8a.75.75 0 0 0 1.5 0V5.56l6.22 6.22a.75.75 0 1 0 1.06-1.06L5.56 4.5h6.19c.41 0 .75-.34.75-.75Z\"]);\nexport const ExpandUpLeft28Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft28Regular', \"28\", [\"M23.5 6.75c0-1.24-1-2.25-2.25-2.25h-5a.75.75 0 0 1 0-1.5h5A3.75 3.75 0 0 1 25 6.75v14.5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25v-5a.75.75 0 0 1 1.5 0v5c0 1.24 1 2.25 2.25 2.25H14v-6.75A2.75 2.75 0 0 1 16.75 14h6.75V6.75Zm0 8.75h-6.75c-.69 0-1.25.56-1.25 1.25v6.75h5.75c1.24 0 2.25-1 2.25-2.25V15.5Zm-11-11.75a.75.75 0 0 0-.75-.75h-8a.75.75 0 0 0-.75.75v8a.75.75 0 0 0 1.5 0V5.56l6.22 6.22a.75.75 0 1 0 1.06-1.06L5.56 4.5h6.19c.41 0 .75-.34.75-.75Z\"]);\nexport const ExpandUpLeft32Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft32Filled', \"32\", [\"M14 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v9a1 1 0 1 0 2 0V6.41l7.3 7.3a1 1 0 0 0 1.4-1.42L6.42 5H13a1 1 0 0 0 1-1Zm10.5 1A2.5 2.5 0 0 1 27 7.5V16h-7.23A3.77 3.77 0 0 0 16 19.77V27H7.5A2.5 2.5 0 0 1 5 24.5V19a1 1 0 1 0-2 0v5.5A4.5 4.5 0 0 0 7.5 29h17a4.5 4.5 0 0 0 4.5-4.5v-17A4.5 4.5 0 0 0 24.5 3H19a1 1 0 1 0 0 2h5.5Z\"]);\nexport const ExpandUpLeft32Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft32Regular', \"32\", [\"M14 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v9a1 1 0 1 0 2 0V6.41l7.3 7.3a1 1 0 0 0 1.4-1.42L6.42 5H13a1 1 0 0 0 1-1Zm13 3.5A2.5 2.5 0 0 0 24.5 5H19a1 1 0 1 1 0-2h5.5A4.5 4.5 0 0 1 29 7.5v17a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5V19a1 1 0 1 1 2 0v5.5A2.5 2.5 0 0 0 7.5 27H16v-7.23A3.77 3.77 0 0 1 19.77 16H27V7.5ZM27 18h-7.23c-.98 0-1.77.8-1.77 1.77V27h6.5a2.5 2.5 0 0 0 2.5-2.5V18Z\"]);\nexport const ExpandUpLeft48Filled = /*#__PURE__*/createFluentIcon('ExpandUpLeft48Filled', \"48\", [\"M35.75 8.5a3.75 3.75 0 0 1 3.75 3.75V24H29.25A5.25 5.25 0 0 0 24 29.25V39.5H12.25a3.75 3.75 0 0 1-3.75-3.75v-7.88a1.25 1.25 0 1 0-2.5 0v7.88C6 39.2 8.8 42 12.25 42h23.5A6.25 6.25 0 0 0 42 35.75v-23.5C42 8.8 39.2 6 35.75 6h-7.88a1.25 1.25 0 1 0 0 2.5h7.88ZM21 7.25C21 6.56 20.44 6 19.75 6H7.25C6.56 6 6 6.56 6 7.25v12.5a1.25 1.25 0 1 0 2.5 0v-9.48l10.37 10.36a1.25 1.25 0 0 0 1.76-1.76L10.27 8.5h9.48c.69 0 1.25-.56 1.25-1.25Z\"]);\nexport const ExpandUpLeft48Regular = /*#__PURE__*/createFluentIcon('ExpandUpLeft48Regular', \"48\", [\"M39.5 12.25a3.75 3.75 0 0 0-3.75-3.75h-7.88a1.25 1.25 0 1 1 0-2.5h7.88C39.2 6 42 8.8 42 12.25v23.5C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-7.88a1.25 1.25 0 1 1 2.5 0v7.88a3.75 3.75 0 0 0 3.75 3.75H24V29.25c0-2.9 2.35-5.25 5.25-5.25H39.5V12.25Zm0 14.25H29.25a2.75 2.75 0 0 0-2.75 2.75V39.5h9.25a3.75 3.75 0 0 0 3.75-3.75V26.5ZM21 7.25C21 6.56 20.44 6 19.75 6H7.25C6.56 6 6 6.56 6 7.25v12.5a1.25 1.25 0 1 0 2.5 0v-9.48l10.37 10.36a1.25 1.25 0 0 0 1.76-1.76L10.27 8.5h9.48c.69 0 1.25-.56 1.25-1.25Z\"]);\nexport const ExpandUpRight16Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight16Filled', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5V8h3.23C7.21 8 8 8.8 8 9.77V13h3.5c.83 0 1.5-.67 1.5-1.5V9.27a.5.5 0 0 1 1 0v2.23a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7A2.5 2.5 0 0 1 4.5 2h2.23a.5.5 0 0 1 0 1H4.5Zm4.27-.5c0-.28.22-.5.5-.5h4.23c.28 0 .5.22.5.5v4.23a.5.5 0 0 1-1 0V3.71L9.62 7.08a.5.5 0 1 1-.7-.7L12.29 3H9.27a.5.5 0 0 1-.5-.5Z\"]);\nexport const ExpandUpRight16Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight16Regular', \"16\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2.23a.5.5 0 0 0 0-1H4.5A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5V9.27a.5.5 0 0 0-1 0v2.23c0 .83-.67 1.5-1.5 1.5H8V9.77C8 8.79 7.2 8 6.23 8H3V4.5ZM3 9h3.23c.43 0 .77.34.77.77V13H4.5A1.5 1.5 0 0 1 3 11.5V9Zm5.77-6.5c0-.28.22-.5.5-.5h4.23c.28 0 .5.22.5.5v4.23a.5.5 0 0 1-1 0V3.71L9.62 7.08a.5.5 0 1 1-.7-.7L12.29 3H9.27a.5.5 0 0 1-.5-.5Z\"]);\nexport const ExpandUpRight20Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight20Filled', \"20\", [\"M6 4a2 2 0 0 0-2 2v4h4a2 2 0 0 1 2 2v4h4a2 2 0 0 0 2-2v-2.5a.5.5 0 0 1 1 0V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h2.5a.5.5 0 0 1 0 1H6Zm5-.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0V4.7l-4.15 4.15a.5.5 0 0 1-.7-.7L15.29 4H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const ExpandUpRight20Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight20Regular', \"20\", [\"M4 6c0-1.1.9-2 2-2h2.5a.5.5 0 0 0 0-1H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-2.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-4v-4a2 2 0 0 0-2-2H4V6Zm0 5h4a1 1 0 0 1 1 1v4H6a2 2 0 0 1-2-2v-3Zm7-7.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0V4.7l-4.15 4.15a.5.5 0 0 1-.7-.7L15.29 4H11.5a.5.5 0 0 1-.5-.5Z\"]);\nexport const ExpandUpRight24Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight24Filled', \"24\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75V12h4.75A2.75 2.75 0 0 1 12 14.75v4.75h5.75c.97 0 1.75-.78 1.75-1.75v-4a.75.75 0 0 1 1.5 0v4c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h4a.75.75 0 0 1 0 1.5h-4ZM13 3.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0V5.56l-5.22 5.22a.75.75 0 0 1-1.06-1.06l5.22-5.22h-4.69a.75.75 0 0 1-.75-.75Z\"]);\nexport const ExpandUpRight24Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight24Regular', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h4a.75.75 0 0 0 0-1.5h-4A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25v-4a.75.75 0 0 0-1.5 0v4c0 .97-.78 1.75-1.75 1.75H12v-4.75A2.75 2.75 0 0 0 9.25 12H4.5V6.25Zm0 7.25h4.75c.69 0 1.25.56 1.25 1.25v4.75H6.25c-.97 0-1.75-.78-1.75-1.75V13.5ZM13 3.75c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v6.5a.75.75 0 0 1-1.5 0V5.56l-5.22 5.22a.75.75 0 0 1-1.06-1.06l5.22-5.22h-4.69a.75.75 0 0 1-.75-.75Z\"]);\nexport const ExpandUpRight28Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight28Filled', \"28\", [\"M6.75 4.5c-1.24 0-2.25 1-2.25 2.25V14h6.75A2.75 2.75 0 0 1 14 16.75v6.75h7.25c1.24 0 2.25-1 2.25-2.25v-5a.75.75 0 0 1 1.5 0v5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75A3.75 3.75 0 0 1 6.75 3h5a.75.75 0 0 1 0 1.5h-5Zm8.75-.75c0-.41.34-.75.75-.75h8c.41 0 .75.34.75.75v8a.75.75 0 1 1-1.5 0V5.56l-6.22 6.22a.75.75 0 1 1-1.06-1.06l6.22-6.22h-6.19a.75.75 0 0 1-.75-.75Z\"]);\nexport const ExpandUpRight28Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight28Regular', \"28\", [\"M4.5 6.75c0-1.24 1-2.25 2.25-2.25h5a.75.75 0 0 0 0-1.5h-5A3.75 3.75 0 0 0 3 6.75v14.5A3.75 3.75 0 0 0 6.75 25h14.5A3.75 3.75 0 0 0 25 21.25v-5a.75.75 0 0 0-1.5 0v5c0 1.24-1 2.25-2.25 2.25H14v-6.75A2.75 2.75 0 0 0 11.25 14H4.5V6.75Zm0 8.75h6.75c.69 0 1.25.56 1.25 1.25v6.75H6.75c-1.24 0-2.25-1-2.25-2.25V15.5Zm11-11.75c0-.41.34-.75.75-.75h8c.41 0 .75.34.75.75v8a.75.75 0 1 1-1.5 0V5.56l-6.22 6.22a.75.75 0 1 1-1.06-1.06l6.22-6.22h-6.19a.75.75 0 0 1-.75-.75Z\"]);\nexport const ExpandUpRight32Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight32Filled', \"32\", [\"M7.5 5A2.5 2.5 0 0 0 5 7.5V16h7.23A3.77 3.77 0 0 1 16 19.77V27h8.5a2.5 2.5 0 0 0 2.5-2.5V19a1 1 0 1 1 2 0v5.5a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5v-17A4.5 4.5 0 0 1 7.5 3H13a1 1 0 1 1 0 2H7.5ZM18 4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0V6.41l-7.3 7.3a1 1 0 0 1-1.4-1.42L25.58 5H19a1 1 0 0 1-1-1Z\"]);\nexport const ExpandUpRight32Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight32Regular', \"32\", [\"M5 7.5A2.5 2.5 0 0 1 7.5 5H13a1 1 0 1 0 0-2H7.5A4.5 4.5 0 0 0 3 7.5v17A4.5 4.5 0 0 0 7.5 29h17a4.5 4.5 0 0 0 4.5-4.5V19a1 1 0 1 0-2 0v5.5a2.5 2.5 0 0 1-2.5 2.5H16v-7.23A3.77 3.77 0 0 0 12.23 16H5V7.5ZM5 18h7.23c.98 0 1.77.8 1.77 1.77V27H7.5A2.5 2.5 0 0 1 5 24.5V18ZM18 4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 1 1-2 0V6.41l-7.3 7.3a1 1 0 0 1-1.4-1.42L25.58 5H19a1 1 0 0 1-1-1Z\"]);\nexport const ExpandUpRight48Filled = /*#__PURE__*/createFluentIcon('ExpandUpRight48Filled', \"48\", [\"M12.25 8.5a3.75 3.75 0 0 0-3.75 3.75V24h10.25c2.9 0 5.25 2.35 5.25 5.25V39.5h11.75a3.75 3.75 0 0 0 3.75-3.75v-7.88a1.25 1.25 0 1 1 2.5 0v7.88C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-23.5C6 8.8 8.8 6 12.25 6h7.88a1.25 1.25 0 1 1 0 2.5h-7.88ZM27 7.25c0-.69.56-1.25 1.25-1.25h12.5c.69 0 1.25.56 1.25 1.25v12.5a1.25 1.25 0 1 1-2.5 0v-9.48L29.13 20.63a1.25 1.25 0 0 1-1.76-1.76L37.73 8.5h-9.48c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const ExpandUpRight48Regular = /*#__PURE__*/createFluentIcon('ExpandUpRight48Regular', \"48\", [\"M8.5 12.25a3.75 3.75 0 0 1 3.75-3.75h7.88a1.25 1.25 0 1 0 0-2.5h-7.88A6.25 6.25 0 0 0 6 12.25v23.5C6 39.2 8.8 42 12.25 42h23.5C39.2 42 42 39.2 42 35.75v-7.88a1.25 1.25 0 1 0-2.5 0v7.88a3.75 3.75 0 0 1-3.75 3.75H24V29.25c0-2.9-2.35-5.25-5.25-5.25H8.5V12.25Zm0 14.25h10.25a2.75 2.75 0 0 1 2.75 2.75V39.5h-9.25a3.75 3.75 0 0 1-3.75-3.75V26.5ZM27 7.25c0-.69.56-1.25 1.25-1.25h12.5c.69 0 1.25.56 1.25 1.25v12.5a1.25 1.25 0 1 1-2.5 0v-9.48L29.13 20.63a1.25 1.25 0 0 1-1.76-1.76L37.73 8.5h-9.48c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const ExtendedDock20Filled = /*#__PURE__*/createFluentIcon('ExtendedDock20Filled', \"20\", [\"M10.35 4.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L10 5.21l2.65 2.64a.5.5 0 0 0 .7-.7l-3-3ZM3 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H3Zm6 0c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H9Zm4.5 1.5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5h-2a1.5 1.5 0 0 1-1.5-1.5v-2Z\"]);\nexport const ExtendedDock20Regular = /*#__PURE__*/createFluentIcon('ExtendedDock20Regular', \"20\", [\"M10.35 4.15a.5.5 0 0 0-.7 0l-3 3a.5.5 0 1 0 .7.7L10 5.21l2.65 2.64a.5.5 0 0 0 .7-.7l-3-3ZM3 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H3Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5v-2ZM9 10c-.83 0-1.5.67-1.5 1.5v2c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-2c0-.83-.67-1.5-1.5-1.5H9Zm-.5 1.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5H9a.5.5 0 0 1-.5-.5v-2Zm5 0c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5h-2a1.5 1.5 0 0 1-1.5-1.5v-2ZM15 11a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-2Z\"]);\nexport const ExtendedDock24Filled = /*#__PURE__*/createFluentIcon('ExtendedDock24Filled', \"24\", [\"M6.25 11c.97 0 1.75.78 1.75 1.75v2.5C8 16.2 7.22 17 6.25 17h-2.5C2.78 17 2 16.2 2 15.25v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .96-.78 1.75-1.75 1.75h-2.5C9.78 17 9 16.2 9 15.25v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .96-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.79-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5ZM7.97 7.72l3.5-3.5a.75.75 0 0 1 .97-.08l.08.07 3.6 3.5a.75.75 0 0 1-.95 1.15l-.09-.07-3.07-2.99-2.98 2.98A.75.75 0 0 1 7.9 7.8l.07-.08 3.5-3.5-3.5 3.5Z\"]);\nexport const ExtendedDock24Regular = /*#__PURE__*/createFluentIcon('ExtendedDock24Regular', \"24\", [\"M6.25 11c.97 0 1.75.78 1.75 1.75v2.5C8 16.2 7.22 17 6.25 17h-2.5C2.78 17 2 16.2 2 15.25v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .96-.78 1.75-1.75 1.75h-2.5C9.78 17 9 16.2 9 15.25v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm7 0c.97 0 1.75.78 1.75 1.75v2.5c0 .96-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.79-1.75-1.75v-2.5c0-.97.78-1.75 1.75-1.75h2.5Zm-14 1.5h-2.5a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0h-2.5a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0h-2.5a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25ZM7.97 7.72l3.5-3.5a.75.75 0 0 1 .97-.08l.08.07 3.6 3.5a.75.75 0 0 1-.95 1.15l-.09-.07-3.07-2.99-2.98 2.98A.75.75 0 0 1 7.9 7.8l.07-.08 3.5-3.5-3.5 3.5Z\"]);\nexport const Eye12Filled = /*#__PURE__*/createFluentIcon('Eye12Filled', \"12\", [\"M1.97 6.66a.5.5 0 0 1-.94-.32c-.01.03 0 0 0 0a1.63 1.63 0 0 1 .06-.16l.18-.38A5.15 5.15 0 0 1 6 3a5.15 5.15 0 0 1 4.96 3.3l.02.1.02.1s.08.33-.34.47a.5.5 0 0 1-.63-.31l-.01-.02a2.25 2.25 0 0 0-.17-.38A4.15 4.15 0 0 0 6 4a4.15 4.15 0 0 0-4.02 2.64v.02ZM4 7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"]);\nexport const Eye12Regular = /*#__PURE__*/createFluentIcon('Eye12Regular', \"12\", [\"M1.97 6.66a.5.5 0 0 1-.94-.32c-.01.03 0 0 0 0a1.63 1.63 0 0 1 .06-.16l.18-.38A5.15 5.15 0 0 1 6 3a5.15 5.15 0 0 1 4.96 3.3l.02.1.02.1s.08.33-.34.47a.5.5 0 0 1-.63-.31l-.01-.02a2.25 2.25 0 0 0-.17-.38A4.15 4.15 0 0 0 6 4a4.15 4.15 0 0 0-4.02 2.64v.02ZM6 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM5 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z\"]);\nexport const Eye16Filled = /*#__PURE__*/createFluentIcon('Eye16Filled', \"16\", [\"M2.98 8.62a.5.5 0 0 1-.6.36c-.44-.11-.36-.6-.36-.6l.01-.07.05-.14A6.7 6.7 0 0 1 3.2 6.19C4.1 5.08 5.6 4 8 4s3.9 1.09 4.8 2.18a6.7 6.7 0 0 1 1.18 2.17v.02a.5.5 0 0 1-.96.26L13 8.6a3.05 3.05 0 0 0-.2-.52 5.7 5.7 0 0 0-.78-1.26A4.96 4.96 0 0 0 8 5c-2.04 0-3.29.91-4.03 1.82A5.7 5.7 0 0 0 3 8.6v.02Zm2.52.88a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Z\"]);\nexport const Eye16Regular = /*#__PURE__*/createFluentIcon('Eye16Regular', \"16\", [\"M2.98 8.62a.5.5 0 0 1-.6.36c-.44-.11-.36-.6-.36-.6l.01-.07.05-.14A6.7 6.7 0 0 1 3.2 6.19C4.1 5.08 5.6 4 8 4s3.9 1.09 4.8 2.18a6.7 6.7 0 0 1 1.18 2.17v.02a.5.5 0 0 1-.96.26L13 8.6a3.05 3.05 0 0 0-.2-.52 5.7 5.7 0 0 0-.78-1.26A4.96 4.96 0 0 0 8 5c-2.04 0-3.29.91-4.03 1.82A5.7 5.7 0 0 0 3 8.6v.02ZM8 7a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM6.5 9.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const Eye20Filled = /*#__PURE__*/createFluentIcon('Eye20Filled', \"20\", [\"M3.26 11.6A6.97 6.97 0 0 1 10 6c3.2 0 6.06 2.33 6.74 5.6a.5.5 0 0 0 .98-.2A7.97 7.97 0 0 0 10 5a7.97 7.97 0 0 0-7.72 6.4.5.5 0 0 0 .98.2ZM9.99 8a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Z\"]);\nexport const Eye20Regular = /*#__PURE__*/createFluentIcon('Eye20Regular', \"20\", [\"M3.26 11.6A6.97 6.97 0 0 1 10 6c3.2 0 6.06 2.33 6.74 5.6a.5.5 0 0 0 .98-.2A7.97 7.97 0 0 0 10 5a7.97 7.97 0 0 0-7.72 6.4.5.5 0 0 0 .98.2ZM10 8a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm-2.5 3.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Z\"]);\nexport const Eye24Filled = /*#__PURE__*/createFluentIcon('Eye24Filled', \"24\", [\"M12 9a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0-3.5a10 10 0 0 1 9.7 7.56.75.75 0 1 1-1.45.37 8.5 8.5 0 0 0-16.5 0 .75.75 0 0 1-1.45-.36A10 10 0 0 1 12 5.5Z\"]);\nexport const Eye24Regular = /*#__PURE__*/createFluentIcon('Eye24Regular', \"24\", [\"M12 9a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 1.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm0-5a10 10 0 0 1 9.7 7.56.75.75 0 1 1-1.45.37 8.5 8.5 0 0 0-16.5 0 .75.75 0 0 1-1.45-.36A10 10 0 0 1 12 5.5Z\"]);\nexport const Eye28Filled = /*#__PURE__*/createFluentIcon('Eye28Filled', \"28\", [\"M25.26 16Zm-.7-.52c.1.32.38.52.7.52.07 0 .14-.02.22-.04a.74.74 0 0 0 .48-.94C25.93 14.93 22.93 6 14 6 5.07 6 2.07 14.93 2.04 15.02c-.13.39.09.81.48.94.4.13.82-.09.95-.48.13-.4 2.74-7.98 10.54-7.98 7.84 0 10.43 7.65 10.54 7.98ZM9 16a5 5 0 1 1 10 0 5 5 0 0 1-10 0Z\"]);\nexport const Eye28Regular = /*#__PURE__*/createFluentIcon('Eye28Regular', \"28\", [\"M25.26 16Zm-.7-.52c.1.32.38.52.7.52.07 0 .14-.02.22-.04a.74.74 0 0 0 .48-.94C25.93 14.93 22.93 6 14 6 5.07 6 2.07 14.93 2.04 15.02c-.13.39.09.81.48.94.4.13.82-.09.95-.48.13-.4 2.74-7.98 10.54-7.98 7.84 0 10.43 7.65 10.54 7.98ZM10.5 16a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm3.5-5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z\"]);\nexport const Eye32Filled = /*#__PURE__*/createFluentIcon('Eye32Filled', \"32\", [\"M28.03 17.29A1 1 0 0 0 29 18v-.01a1 1 0 0 0 .96-1.28C29.92 16.61 26.61 6 16 6 5.38 6 2.07 16.61 2.04 16.72a1 1 0 0 0 1.92.57C4.06 16.91 6.89 8 16 8c9.1 0 11.91 8.9 12.03 9.29ZM10 18a6 6 0 1 1 12 0 6 6 0 0 1-12 0Z\"]);\nexport const Eye32Regular = /*#__PURE__*/createFluentIcon('Eye32Regular', \"32\", [\"M28.03 17.29A1 1 0 0 0 29 18v-.01a1 1 0 0 0 .96-1.28C29.92 16.61 26.61 6 16 6 5.38 6 2.07 16.61 2.04 16.72a1 1 0 0 0 1.92.57C4.06 16.91 6.89 8 16 8c9.1 0 11.91 8.9 12.03 9.29ZM12 18a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z\"]);\nexport const Eye48Filled = /*#__PURE__*/createFluentIcon('Eye48Filled', \"48\", [\"M41.56 26.13a1.25 1.25 0 0 0 2.38-.76C43.85 25.1 38.84 10 24 10 9.16 10 4.15 25.1 4.06 25.37c-.21.66.15 1.36.81 1.57.66.21 1.36-.15 1.57-.81.18-.56 4.51-13.63 17.56-13.63 13.05 0 17.38 13.07 17.56 13.63ZM24 36a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z\"]);\nexport const Eye48Regular = /*#__PURE__*/createFluentIcon('Eye48Regular', \"48\", [\"M41.56 26.13a1.25 1.25 0 0 0 2.38-.76C43.85 25.1 38.84 10 24 10 9.16 10 4.15 25.1 4.06 25.37c-.21.66.15 1.36.81 1.57.66.21 1.36-.15 1.57-.81.18-.56 4.51-13.63 17.56-13.63 13.05 0 17.38 13.07 17.56 13.63ZM17.5 27a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Zm6.5-9a9 9 0 1 0 0 18 9 9 0 0 0 0-18Z\"]);\nexport const EyeLines20Filled = /*#__PURE__*/createFluentIcon('EyeLines20Filled', \"20\", [\"M10 6H3.92c.27-.34.57-.68.92-1H10V4H6.18C7.21 3.4 8.47 3 10 3a7.5 7.5 0 0 1 6.08 3 9.73 9.73 0 0 1 1.56 2.96c.06.2.11.4.11.54s-.05.35-.1.54A9.74 9.74 0 0 1 16.08 13 7.5 7.5 0 0 1 10 16c-1.53 0-2.8-.4-3.82-1H10v-1H4.84a8.59 8.59 0 0 1-.92-1H10v-.5a3 3 0 1 0 0-6V6ZM8.34 7h-5.1c-.21.35-.38.7-.52 1H7.4c.23-.4.56-.74.94-1Zm-1.3 2h-4.7c-.05.18-.09.37-.09.5s.04.32.1.5h4.7a3.02 3.02 0 0 1 0-1Zm.36 2H2.72c.14.3.3.65.52 1h5.1c-.38-.26-.7-.6-.94-1Z\"]);\nexport const EyeLines20Regular = /*#__PURE__*/createFluentIcon('EyeLines20Regular', \"20\", [\"M10 3c-1.53 0-2.8.4-3.82 1H10a6.5 6.5 0 0 1 5.3 2.62 8.73 8.73 0 0 1 1.38 2.62c.05.14.06.22.07.25v.01a6.5 6.5 0 0 1-.32.94c-.24.57-.6 1.26-1.14 1.94A6.5 6.5 0 0 1 10 15H6.18c1.03.6 2.29 1 3.82 1a7.44 7.44 0 0 0 6.08-3 9.74 9.74 0 0 0 1.56-2.96c.06-.2.11-.4.11-.54s-.05-.35-.1-.54A9.73 9.73 0 0 0 16.08 6 7.44 7.44 0 0 0 10 3Zm0 3H3.92c.27-.34.57-.68.92-1H10v1Zm0 7a3.5 3.5 0 1 0 0-7v1H3.24c-.21.35-.38.7-.52 1H8a2.5 2.5 0 1 1 0 3H2.72c.14.3.3.65.52 1H10v1Zm0 0H3.92c.27.34.57.68.92 1H10v-1ZM7.55 9h-5.2c-.06.18-.1.37-.1.5s.04.32.1.5h5.2a2.51 2.51 0 0 1 0-1Z\"]);\nexport const EyeLines24Filled = /*#__PURE__*/createFluentIcon('EyeLines24Filled', \"24\", [\"M4.39 7.06c.3-.37.63-.72 1-1.06h6.6V5H6.69A9.65 9.65 0 0 1 12 3.5c3.64 0 6.1 1.7 7.61 3.56.76.92 1.28 1.88 1.63 2.7.33.8.51 1.53.51 1.99 0 .46-.18 1.2-.51 1.99-.35.82-.87 1.78-1.63 2.7A9.51 9.51 0 0 1 12 20a9.65 9.65 0 0 1-5.32-1.5H12v-1H5.38A10.2 10.2 0 0 1 4.04 16H12v-.75a3.5 3.5 0 0 0 0-7V7.5H4.04l.35-.44Zm6.3 1.44H3.4a10.8 10.8 0 0 0-.72 1.5h6.3c.39-.67 1-1.2 1.73-1.5ZM8.6 11H2.34c-.06.3-.1.55-.1.75 0 .2.04.46.1.75h6.23a3.51 3.51 0 0 1 0-1.5Zm.38 2.5h-6.3a9.7 9.7 0 0 0 .72 1.5h7.3a3.51 3.51 0 0 1-1.72-1.5Z\"]);\nexport const EyeLines24Regular = /*#__PURE__*/createFluentIcon('EyeLines24Regular', \"24\", [\"M9.35 12.5a2.75 2.75 0 0 1 0-1.5h-7c-.06.3-.1.55-.1.75 0 .2.04.46.1.75h7Zm2.65 6H6.68A9.65 9.65 0 0 0 12 20c3.64 0 6.1-1.7 7.61-3.56.76-.92 1.29-1.88 1.63-2.7.33-.8.51-1.53.51-1.99 0-.46-.18-1.2-.51-1.99-.34-.82-.87-1.78-1.63-2.7a9.51 9.51 0 0 0-7.6-3.56H12c-2.18 0-3.94.61-5.32 1.5H12c3.11 0 5.16 1.43 6.45 3 .65.8 1.1 1.64 1.4 2.34.3.73.4 1.24.4 1.41 0 .17-.1.68-.4 1.41-.3.7-.75 1.54-1.4 2.33A8.02 8.02 0 0 1 12 18.5ZM5.38 6a10.21 10.21 0 0 0-1.34 1.5H12V6H5.38ZM12 8.5H3.4a10.8 10.8 0 0 0-.73 1.5h7.2a2.74 2.74 0 1 1 0 3.5h-7.2a9.7 9.7 0 0 0 .72 1.5H12v1a4.25 4.25 0 1 0 0-8.5v1Zm0 7.5H4.04a10.72 10.72 0 0 0 1.34 1.5H12V16Z\"]);\nexport const EyeLines28Filled = /*#__PURE__*/createFluentIcon('EyeLines28Filled', \"28\", [\"M8.04 5.5C9.66 4.6 11.64 4 14 4c4.25 0 7.26 1.95 9.18 4.08a13.45 13.45 0 0 1 2.11 3.11c.23.47.4.91.52 1.3.11.36.19.72.19 1.01 0 .52-.23 1.37-.64 2.29A12 12 0 0 1 14 23c-2.48 0-4.51-.6-6.15-1.5H14v-1H6.33c-.6-.47-1.14-.98-1.6-1.5H14v-1a4.5 4.5 0 0 0 0-9V8H4.89c.48-.52 1.02-1.03 1.63-1.5H14v-1H8.04ZM14 9H4.05c-.38.51-.7 1.02-.98 1.5h7.58A4.49 4.49 0 0 1 14 9Zm-4.03 2.5h-7.4a8.81 8.81 0 0 0-.51 1.5h7.47c.06-.53.2-1.04.44-1.5ZM9.53 14H2.05c.08.42.23.94.46 1.5h7.46a4.47 4.47 0 0 1-.44-1.5Zm1.12 2.5H2.98c.26.48.57.99.94 1.5H14a4.49 4.49 0 0 1-3.35-1.5Z\"]);\nexport const EyeLines28Regular = /*#__PURE__*/createFluentIcon('EyeLines28Regular', \"28\", [\"M14 4c-2.36 0-4.34.6-5.96 1.5H14c3.75 0 6.37 1.7 8.07 3.58.85.95 1.47 1.93 1.87 2.76.2.42.35.79.44 1.09.1.3.12.5.12.57 0 .2-.13.82-.5 1.68a10.51 10.51 0 0 1-10 6.32H7.85c1.64.9 3.67 1.5 6.15 1.5a12 12 0 0 0 11.36-7.21c.41-.92.64-1.77.64-2.29 0-.3-.08-.65-.19-1.02a9.37 9.37 0 0 0-.52-1.29 13.45 13.45 0 0 0-2.1-3.11A12.08 12.08 0 0 0 14 4Zm0 2.5H6.52c-.61.47-1.15.98-1.63 1.5H14V6.5ZM14 9H4.05c-.38.51-.7 1.02-.98 1.5h9.13a3.5 3.5 0 1 1 0 6H2.98c.26.48.57.99.94 1.5H14v.5a5 5 0 0 0 0-10V9ZM2.56 11.5h8.57c-.3.44-.52.95-.6 1.5H2.07a8.81 8.81 0 0 1 .5-1.5Zm-.5 2.5h8.48c.07.55.28 1.06.59 1.5H2.5a7.62 7.62 0 0 1-.46-1.5ZM14 19H4.72c.47.52 1 1.03 1.6 1.5H14V19Z\"]);\nexport const EyeLines32Filled = /*#__PURE__*/createFluentIcon('EyeLines32Filled', \"32\", [\"M8.63 6c1.93-1.19 4.36-2 7.37-2 5.37 0 8.89 2.58 11.03 5.27a16.53 16.53 0 0 1 2.78 5.23c.1.35.19.73.19 1s-.09.65-.19 1a16.53 16.53 0 0 1-2.78 5.23A13.64 13.64 0 0 1 16 27c-3.01 0-5.44-.81-7.37-2H16v-1.5H6.63a14.9 14.9 0 0 1-1.84-2H16v-1a5 5 0 0 0 0-10v-1H4.79a15.68 15.68 0 0 1 1.84-2H16V6H8.63Zm5.19 5H3.76c-.43.71-.77 1.4-1.03 2h8.94a5.02 5.02 0 0 1 2.15-2Zm-2.72 3.5H2.19c-.1.35-.19.73-.19 1s.09.65.19 1h8.91a5.02 5.02 0 0 1 0-2Zm.57 3.5H2.73c.26.6.6 1.29 1.03 2h10.06a5.02 5.02 0 0 1-2.15-2Z\"]);\nexport const EyeLines32Regular = /*#__PURE__*/createFluentIcon('EyeLines32Regular', \"32\", [\"M8.63 6c1.93-1.19 4.36-2 7.37-2 5.37 0 8.89 2.58 11.03 5.27a16.53 16.53 0 0 1 2.78 5.23c.1.35.2.73.2 1s-.1.65-.2 1a16.53 16.53 0 0 1-2.78 5.23A13.64 13.64 0 0 1 16 27c-3.01 0-5.44-.81-7.37-2H16c4.63 0 7.62-2.2 9.47-4.52a14.53 14.53 0 0 0 2.42-4.53c.07-.25.1-.39.1-.44l.01-.01v-.01l-.1-.44a14.53 14.53 0 0 0-2.42-4.54A11.64 11.64 0 0 0 15.99 6H8.63Zm-2 1.5H16v2H4.79a15.68 15.68 0 0 1 1.84-2Zm9.37 14a6 6 0 0 0 0-12V11H3.76c-.43.71-.77 1.4-1.03 2h10.15a4 4 0 1 1 0 5H2.73c.26.6.6 1.29 1.03 2H16v1.5Zm0 0v2H6.63a14.9 14.9 0 0 1-1.84-2H16Zm-3.87-7H2.19c-.1.35-.19.73-.19 1s.09.65.19 1h9.94a4.01 4.01 0 0 1 0-2Z\"]);\nexport const EyeLines48Filled = /*#__PURE__*/createFluentIcon('EyeLines48Filled', \"48\", [\"M14.23 9.5C16.86 8 20.08 7 24 7c7.7 0 12.72 3.84 15.78 7.83a24.76 24.76 0 0 1 3.96 7.75c.15.53.26 1.06.26 1.42 0 .36-.11.89-.26 1.42-.16.58-.4 1.3-.73 2.12a24.76 24.76 0 0 1-3.23 5.63A19.25 19.25 0 0 1 24 41c-3.92 0-7.14-1-9.77-2.5H24v-2H11.38A21.1 21.1 0 0 1 8.9 34H24v-2a8 8 0 1 0 0-16v-2H8.9a21.1 21.1 0 0 1 2.48-2.5H24v-2h-9.77Zm3.96 9H5.9c.41-.8.9-1.65 1.48-2.5H24c-2.29 0-4.35.96-5.81 2.5Zm-1.39 2H4.98a19.31 19.31 0 0 0-.83 2.5h11.91c.11-.89.37-1.73.74-2.5Zm-.74 4.5H4.15l.1.42c.17.57.4 1.28.73 2.08H16.8a7.95 7.95 0 0 1-.74-2.5Zm2.13 4.5a7.98 7.98 0 0 0 5.8 2.5H7.4c-.59-.85-1.08-1.7-1.49-2.5H18.2Z\"]);\nexport const EyeLines48Regular = /*#__PURE__*/createFluentIcon('EyeLines48Regular', \"48\", [\"M4.98 20.5h13.54c-.47.74-.8 1.6-.94 2.5H4.15l.1-.42c.17-.57.4-1.28.73-2.08ZM4.15 25h13.43c.14.9.47 1.76.94 2.5H4.98a19.31 19.31 0 0 1-.83-2.5ZM24 7c-3.92 0-7.14 1-9.77 2.5H24c6.73 0 11.08 3.32 13.8 6.85a22.26 22.26 0 0 1 3.53 6.9 5.68 5.68 0 0 1 .17.75 16.89 16.89 0 0 1-.8 2.59 22.26 22.26 0 0 1-2.9 5.06A16.75 16.75 0 0 1 24 38.5h-9.77A19.16 19.16 0 0 0 24 41c7.7 0 12.72-3.84 15.77-7.83a24.76 24.76 0 0 0 3.97-7.75c.15-.53.26-1.06.26-1.42 0-.36-.11-.89-.26-1.42a24.76 24.76 0 0 0-3.97-7.75A19.25 19.25 0 0 0 24 7Zm-12.62 4.5H24V14H8.89a21.1 21.1 0 0 1 2.49-2.5Zm-4 4.5H24v-1a9 9 0 1 1 0 18v-1H7.38c-.58-.85-1.07-1.7-1.48-2.5h14.63a6.5 6.5 0 1 0 3.47-12c-1.28 0-2.46.37-3.47 1H5.9c.41-.8.9-1.65 1.48-2.5Zm1.5 18H24v2.5H11.38a21.1 21.1 0 0 1-2.5-2.5ZM24 34v2.5Z\"]);\nexport const EyeOff16Filled = /*#__PURE__*/createFluentIcon('EyeOff16Filled', \"16\", [\"m10.12 10.83 4.03 4.02a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7l3.23 3.23a6.7 6.7 0 0 0-2.3 3.08l-.05.15-.01.06s-.08.5.35.61a.5.5 0 0 0 .61-.35L3 8.6a3.02 3.02 0 0 1 .2-.52c.16-.34.4-.8.78-1.26.3-.36.66-.72 1.13-1.02l1.57 1.58a2.5 2.5 0 1 0 3.45 3.45ZM6.32 4.2l.85.85C7.43 5.02 7.71 5 8 5c2.04 0 3.29.91 4.03 1.82A5.7 5.7 0 0 1 13 8.6v.02a.5.5 0 0 0 .97-.25v-.02a2.3 2.3 0 0 0-.06-.18 6.7 6.7 0 0 0-1.12-1.98A5.95 5.95 0 0 0 8 4a6.9 6.9 0 0 0-1.68.2Z\"]);\nexport const EyeOff16Regular = /*#__PURE__*/createFluentIcon('EyeOff16Regular', \"16\", [\"m10.12 10.83 4.03 4.02a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7l3.23 3.23a6.7 6.7 0 0 0-2.3 3.08l-.05.15-.01.06s-.08.5.35.61a.5.5 0 0 0 .61-.35L3 8.6a3.02 3.02 0 0 1 .2-.52c.16-.34.4-.8.78-1.26.3-.36.66-.72 1.13-1.02l1.57 1.58a2.5 2.5 0 1 0 3.45 3.45Zm-.74-.74a1.5 1.5 0 1 1-1.97-1.97l1.97 1.97Zm-3.06-5.9.85.86C7.43 5.02 7.71 5 8 5c2.04 0 3.29.91 4.03 1.82A5.7 5.7 0 0 1 13 8.6v.02a.5.5 0 0 0 .97-.25v-.02a2.3 2.3 0 0 0-.06-.18 6.7 6.7 0 0 0-1.12-1.98A5.95 5.95 0 0 0 8 4a6.9 6.9 0 0 0-1.68.2Z\"]);\nexport const EyeOff20Filled = /*#__PURE__*/createFluentIcon('EyeOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l3.5 3.5a8.1 8.1 0 0 0-3.37 5.05.5.5 0 1 0 .98.2 7.09 7.09 0 0 1 3.1-4.53l1.59 1.59a3.5 3.5 0 1 0 4.88 4.88l4.32 4.31a.5.5 0 0 0 .7-.7l-15-15ZM10.12 8l3.37 3.37A3.5 3.5 0 0 0 10.12 8ZM7.53 5.41l.8.8C8.87 6.07 9.43 6 10 6c3.2 0 6.06 2.33 6.74 5.6a.5.5 0 1 0 .98-.2A7.97 7.97 0 0 0 10 5c-.86 0-1.69.14-2.47.41Z\"]);\nexport const EyeOff20Regular = /*#__PURE__*/createFluentIcon('EyeOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7l3.5 3.5a8.1 8.1 0 0 0-3.37 5.05.5.5 0 1 0 .98.2 7.09 7.09 0 0 1 3.1-4.53l1.6 1.59a3.5 3.5 0 1 0 4.88 4.89l4.3 4.3a.5.5 0 0 0 .71-.7l-15-15Zm9.27 10.68a2.5 2.5 0 1 1-3.45-3.45l3.45 3.45Zm-2-4.83 3.38 3.38A3.5 3.5 0 0 0 10.12 8ZM10 6c-.57 0-1.13.07-1.67.21l-.8-.8A7.65 7.65 0 0 1 10 5c3.7 0 6.94 2.67 7.72 6.4a.5.5 0 0 1-.98.2A6.97 6.97 0 0 0 10 6Z\"]);\nexport const EyeOff24Filled = /*#__PURE__*/createFluentIcon('EyeOff24Filled', \"24\", [\"M2.22 2.22a.75.75 0 0 0-.07.98l.07.08 4.03 4.03a9.99 9.99 0 0 0-3.95 5.75.75.75 0 0 0 1.45.37 8.49 8.49 0 0 1 3.58-5.04l1.81 1.81A3.99 3.99 0 0 0 12 17c1.09 0 2.08-.43 2.8-1.14l5.92 5.92a.75.75 0 0 0 1.13-.98l-.07-.08-6.11-6.11-6.95-6.95-1.13-1.13-4.31-4.31a.75.75 0 0 0-1.06 0ZM12 5.5a10 10 0 0 0-2.89.42l1.24 1.24a8.52 8.52 0 0 1 9.9 6.27.75.75 0 0 0 1.45-.36A10 10 0 0 0 12 5.5Zm.2 3.5 3.8 3.81a4 4 0 0 0-3.8-3.8Z\"]);\nexport const EyeOff24Regular = /*#__PURE__*/createFluentIcon('EyeOff24Regular', \"24\", [\"M2.22 2.22a.75.75 0 0 0-.07.98l.07.08 4.03 4.03a9.99 9.99 0 0 0-3.95 5.75.75.75 0 0 0 1.45.37 8.49 8.49 0 0 1 3.58-5.04l1.81 1.81A3.99 3.99 0 0 0 12 17c1.09 0 2.08-.43 2.8-1.14l5.92 5.92a.75.75 0 0 0 1.13-.98l-.07-.08-6.11-6.11-1.2-1.2-2.87-2.87-2.88-2.88-1.13-1.13-4.31-4.31a.75.75 0 0 0-1.06 0Zm7.98 9.05 3.54 3.53A2.5 2.5 0 0 1 9.5 13c0-.67.27-1.28.7-1.73ZM12 5.5a10 10 0 0 0-2.89.42l1.24 1.24a8.52 8.52 0 0 1 9.9 6.27.75.75 0 0 0 1.45-.36A10 10 0 0 0 12 5.5Zm.2 3.5 3.8 3.81a4 4 0 0 0-3.8-3.8Z\"]);\nexport const EyeTracking16Filled = /*#__PURE__*/createFluentIcon('EyeTracking16Filled', \"16\", [\"M2 4c0-1.1.9-2 2-2h1.5a.5.5 0 0 1 0 1H4a1 1 0 0 0-1 1v1.5a.5.5 0 0 1-1 0V4Zm0 8c0 1.1.9 2 2 2h1.5a.5.5 0 0 0 0-1H4a1 1 0 0 1-1-1v-1.5a.5.5 0 0 0-1 0V12ZM12 2a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-1 0V4a1 1 0 0 0-1-1h-1.5a.5.5 0 0 1 0-1H12Zm2 10a2 2 0 0 1-2 2h-1.5a.5.5 0 0 1 0-1H12a1 1 0 0 0 1-1v-1.5a.5.5 0 0 1 1 0V12ZM5.5 9a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM3.31 7.96a.5.5 0 0 0 .65-.27v-.01L4 7.62c.02-.06.07-.14.13-.24.13-.2.34-.48.64-.76A4.6 4.6 0 0 1 8 5.5a4.6 4.6 0 0 1 3.23 1.12 3.73 3.73 0 0 1 .8 1.06s.25.45.66.28a.5.5 0 0 0 .27-.65c-.1-.22 0 0 0 0V7.3a1.8 1.8 0 0 0-.06-.13c-.04-.08-.1-.2-.19-.33a4.73 4.73 0 0 0-.81-.96A5.6 5.6 0 0 0 8 4.5a5.6 5.6 0 0 0-3.9 1.38A4.73 4.73 0 0 0 3.04 7.3v.01a.5.5 0 0 0 .27.65Z\"]);\nexport const EyeTracking16Regular = /*#__PURE__*/createFluentIcon('EyeTracking16Regular', \"16\", [\"M4 2a2 2 0 0 0-2 2v1.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 1-1h1.5a.5.5 0 0 0 0-1H4Zm0 12a2 2 0 0 1-2-2v-1.5a.5.5 0 0 1 1 0V12a1 1 0 0 0 1 1h1.5a.5.5 0 0 1 0 1H4ZM14 4a2 2 0 0 0-2-2h-1.5a.5.5 0 0 0 0 1H12a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 1 0V4Zm-2 10a2 2 0 0 0 2-2v-1.5a.5.5 0 0 0-1 0V12a1 1 0 0 1-1 1h-1.5a.5.5 0 0 0 0 1H12ZM5.5 9a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM8 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm-4.69.46a.5.5 0 0 0 .65-.27v-.01L4 7.62c.02-.06.07-.14.13-.24.13-.2.34-.48.64-.76A4.6 4.6 0 0 1 8 5.5a4.6 4.6 0 0 1 3.23 1.12 3.73 3.73 0 0 1 .8 1.06s.25.45.66.28a.5.5 0 0 0 .27-.65c-.1-.22 0 0 0 0V7.3a1.8 1.8 0 0 0-.06-.13c-.04-.08-.1-.2-.19-.33a4.73 4.73 0 0 0-.81-.96A5.6 5.6 0 0 0 8 4.5a5.6 5.6 0 0 0-3.9 1.38A4.73 4.73 0 0 0 3.04 7.3v.01a.5.5 0 0 0 .27.65Z\"]);\nexport const EyeTracking20Filled = /*#__PURE__*/createFluentIcon('EyeTracking20Filled', \"20\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v3a.5.5 0 0 1-1 0v-3A2.5 2.5 0 0 1 4.5 2h3a.5.5 0 0 1 0 1h-3Zm0 14A1.5 1.5 0 0 1 3 15.5v-3a.5.5 0 0 0-1 0v3A2.5 2.5 0 0 0 4.5 18h3a.5.5 0 0 0 0-1h-3ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-3a.5.5 0 0 1 0-1h3A2.5 2.5 0 0 1 18 4.5v3a.5.5 0 0 1-1 0v-3ZM15.5 17c.83 0 1.5-.67 1.5-1.5v-3a.5.5 0 0 1 1 0v3a2.5 2.5 0 0 1-2.5 2.5h-3a.5.5 0 0 1 0-1h3ZM7 11.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM4.95 9.72a.5.5 0 0 1-.9-.44l.45.22-.45-.22v-.01l.01-.01a2.1 2.1 0 0 1 .08-.14l.25-.38A6.85 6.85 0 0 1 10 6a6.85 6.85 0 0 1 5.62 2.74 5.13 5.13 0 0 1 .33.52v.01l-.44.23.45-.22a.5.5 0 0 1-.9.45V9.7a2.5 2.5 0 0 0-.25-.39A5.86 5.86 0 0 0 10 7a5.86 5.86 0 0 0-4.8 2.32 4.14 4.14 0 0 0-.24.39l-.01.01Z\"]);\nexport const EyeTracking20Regular = /*#__PURE__*/createFluentIcon('EyeTracking20Regular', \"20\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h3a.5.5 0 0 0 0-1h-3A2.5 2.5 0 0 0 2 4.5v3a.5.5 0 0 0 1 0v-3Zm0 11c0 .83.67 1.5 1.5 1.5h3a.5.5 0 0 1 0 1h-3A2.5 2.5 0 0 1 2 15.5v-3a.5.5 0 0 1 1 0v3ZM15.5 3c.83 0 1.5.67 1.5 1.5v3a.5.5 0 0 0 1 0v-3A2.5 2.5 0 0 0 15.5 2h-3a.5.5 0 0 0 0 1h3ZM17 15.5c0 .83-.67 1.5-1.5 1.5h-3a.5.5 0 0 0 0 1h3a2.5 2.5 0 0 0 2.5-2.5v-3a.5.5 0 0 0-1 0v3Zm-10-4a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-5.05.22a.5.5 0 0 1-.9-.44l.45.22-.45-.22v-.01l.01-.01a2.1 2.1 0 0 1 .08-.14l.25-.38A6.85 6.85 0 0 1 10 6a6.85 6.85 0 0 1 5.62 2.74 5.13 5.13 0 0 1 .33.52v.01l-.44.23.45-.22a.5.5 0 0 1-.9.45V9.7a2.5 2.5 0 0 0-.25-.39A5.86 5.86 0 0 0 10 7a5.86 5.86 0 0 0-4.8 2.32 4.14 4.14 0 0 0-.24.39l-.01.01Z\"]);\nexport const EyeTracking24Filled = /*#__PURE__*/createFluentIcon('EyeTracking24Filled', \"24\", [\"M3.49 15.65a.75.75 0 0 0-1.49 0V19.43A2.75 2.75 0 0 0 4.58 22h3.77a.75.75 0 0 0 0-1.5H4.62a1.25 1.25 0 0 1-1.12-1.12v-3.63l-.01-.1Zm18.5 0a.75.75 0 0 0-1.5.1v3.63c-.06.63-.6 1.12-1.24 1.12h-3.6a.75.75 0 0 0 .1 1.5h3.66A2.75 2.75 0 0 0 22 19.25v-3.5l-.01-.1Zm-13-12.9A.75.75 0 0 0 8.26 2H4.58A2.75 2.75 0 0 0 2 4.76v3.6a.75.75 0 0 0 1.5-.1V4.62C3.57 4 4.1 3.5 4.75 3.5h3.6A.75.75 0 0 0 9 2.74Zm10.42-.74L19.25 2h-3.6a.75.75 0 0 0 0 1.5h3.72c.6.07 1.06.53 1.12 1.12v3.63l.01.1a.75.75 0 0 0 1.49 0V4.58A2.75 2.75 0 0 0 19.41 2ZM8.5 13.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm-2.29-1.76v.02a.75.75 0 0 1-.97.44c-.6-.22-.44-.97-.44-.97v-.02a2.5 2.5 0 0 1 .1-.2A7.57 7.57 0 0 1 12 6.75a7.73 7.73 0 0 1 6.84 3.75 6.3 6.3 0 0 1 .35.71v.02h.01a.75.75 0 0 1-1.4.53l-.01-.02-.04-.1-.21-.39a6.07 6.07 0 0 0-5.54-3 6.24 6.24 0 0 0-5.54 3 4.78 4.78 0 0 0-.25.5Z\"]);\nexport const EyeTracking24Regular = /*#__PURE__*/createFluentIcon('EyeTracking24Regular', \"24\", [\"M8.25 2a.75.75 0 0 1 .1 1.5h-3.6c-.65 0-1.18.5-1.25 1.12v3.63a.75.75 0 0 1-1.5.1v-3.6a2.75 2.75 0 0 1 2.58-2.74L4.75 2h3.5ZM3.49 15.65a.75.75 0 0 0-1.49 0V19.43A2.75 2.75 0 0 0 4.58 22h3.77a.75.75 0 0 0 0-1.5H4.62a1.25 1.25 0 0 1-1.12-1.12v-3.63l-.01-.1Zm18.5 0a.75.75 0 0 0-1.5.1v3.63c-.06.63-.6 1.12-1.24 1.12h-3.6a.75.75 0 0 0 .1 1.5h3.66A2.75 2.75 0 0 0 22 19.25v-3.5l-.01-.1ZM19.41 2 19.25 2h-3.6a.75.75 0 0 0 0 1.5h3.72c.6.07 1.06.53 1.12 1.12v3.63l.01.1a.75.75 0 0 0 1.49 0V4.58A2.75 2.75 0 0 0 19.41 2Zm-13.2 9.75v-.02l.04-.1.21-.39a6.07 6.07 0 0 1 5.54-3 6.24 6.24 0 0 1 5.54 3 4.78 4.78 0 0 1 .25.5v.01c.16.38.59.59.97.44a.75.75 0 0 0 .44-.96v-.03a3.2 3.2 0 0 0-.1-.2A7.57 7.57 0 0 0 12 6.75a7.73 7.73 0 0 0-6.84 3.75 6.26 6.26 0 0 0-.35.71v.02c-.01 0-.17.75.43.97.38.15.81-.05.96-.43ZM12 10a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm-2 3.5a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"]);\nexport const EyeTrackingOff16Filled = /*#__PURE__*/createFluentIcon('EyeTrackingOff16Filled', \"16\", [\"m13.02 13.72 1.13 1.13a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7l1.13 1.13A2 2 0 0 0 2 4v1.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 .03-.26L4.7 5.41A4.95 4.95 0 0 0 3.04 7.3v.01a.5.5 0 0 0 .92.38v-.01L4 7.62c.02-.06.07-.14.13-.24a3.73 3.73 0 0 1 1.3-1.24l.95.95a2.5 2.5 0 1 0 3.53 3.53l2.35 2.35A1 1 0 0 1 12 13h-1.5a.5.5 0 0 0 0 1H12a2 2 0 0 0 1.02-.28Zm-6.29-9.1.9.89L8 5.5a4.6 4.6 0 0 1 3.23 1.12 3.73 3.73 0 0 1 .8 1.06s.25.45.66.28a.5.5 0 0 0 .27-.65c-.1-.22 0 0 0 0V7.3a1.8 1.8 0 0 0-.06-.13c-.04-.08-.1-.2-.19-.33a4.73 4.73 0 0 0-.81-.96A5.6 5.6 0 0 0 8 4.5c-.46 0-.88.04-1.27.11ZM13 10.87l1 1V10.5a.5.5 0 0 0-1 0v.38ZM4.12 2l1 1h.38a.5.5 0 0 0 0-1H4.12ZM2 12c0 1.1.9 2 2 2h1.5a.5.5 0 0 0 0-1H4a1 1 0 0 1-1-1v-1.5a.5.5 0 0 0-1 0V12ZM12 2a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-1 0V4a1 1 0 0 0-1-1h-1.5a.5.5 0 0 1 0-1H12Z\"]);\nexport const EyeTrackingOff16Regular = /*#__PURE__*/createFluentIcon('EyeTrackingOff16Regular', \"16\", [\"m13.02 13.72 1.13 1.13a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7l1.13 1.13A2 2 0 0 0 2 4v1.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 .03-.26L4.7 5.41A4.95 4.95 0 0 0 3.04 7.3v.01a.5.5 0 0 0 .92.38v-.01L4 7.62c.02-.06.07-.14.13-.24a3.73 3.73 0 0 1 1.3-1.24l.95.95a2.5 2.5 0 1 0 3.53 3.53l2.35 2.35A1 1 0 0 1 12 13h-1.5a.5.5 0 1 0 0 1H12a2 2 0 0 0 1.02-.28ZM9.2 9.9a1.5 1.5 0 1 1-2.1-2.1l2.1 2.1ZM6.73 4.61l.9.9L8 5.5a4.6 4.6 0 0 1 3.23 1.12 3.73 3.73 0 0 1 .8 1.06s.25.45.66.28a.5.5 0 0 0 .27-.65c-.1-.22 0 0 0 0V7.3a1.85 1.85 0 0 0-.06-.13c-.04-.08-.1-.2-.19-.33a4.73 4.73 0 0 0-.81-.96A5.6 5.6 0 0 0 8 4.5c-.46 0-.88.04-1.27.11ZM13 10.88l1 1V10.5a.5.5 0 1 0-1 0v.38ZM4.12 2l1 1h.38a.5.5 0 0 0 0-1H4.12ZM4 14a2 2 0 0 1-2-2v-1.5a.5.5 0 1 1 1 0V12a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H4ZM14 4a2 2 0 0 0-2-2h-1.5a.5.5 0 0 0 0 1H12a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 1 0V4Z\"]);\nexport const EyeTrackingOff20Filled = /*#__PURE__*/createFluentIcon('EyeTrackingOff20Filled', \"20\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v3a.5.5 0 0 0 1 0v-3c0-.23.05-.45.15-.65L6.29 7a6.6 6.6 0 0 0-2.23 2.27v.01l.44.23-.45-.22a.5.5 0 0 0 .9.44v-.01a2.39 2.39 0 0 1 .25-.39 5.49 5.49 0 0 1 1.82-1.6l1.3 1.3a3 3 0 1 0 4.16 4.17l3.67 3.66c-.2.1-.42.15-.65.15h-3a.5.5 0 0 0 0 1h3c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-.26-.27-.74-.73-3.93-3.94-3.63-3.63L8.01 7.3l-.78-.78-3.38-3.37-.73-.74-.27-.26a.5.5 0 1 0-.7.7l.26.27Zm15.57 12.73.02-.35v-3a.5.5 0 0 0-1 0v2.38l.98.97Zm-8.81-8.8A7 7 0 0 1 10 7a5.86 5.86 0 0 1 4.8 2.32 4.13 4.13 0 0 1 .24.39l.01.01a.5.5 0 0 0 .9-.44v-.01l-.01-.01a1.7 1.7 0 0 0-.08-.14l-.25-.38A6.85 6.85 0 0 0 10 6c-.63 0-1.2.07-1.7.18l.86.87Zm6.78 2.23-.06.03-.39.19.45-.22ZM5.12 3H7.5a.5.5 0 0 0 0-1h-3c-.12 0-.24 0-.35.02l.97.98ZM3 15.5c0 .83.67 1.5 1.5 1.5h3a.5.5 0 0 1 0 1h-3A2.5 2.5 0 0 1 2 15.5v-3a.5.5 0 0 1 1 0v3Zm14-11c0-.83-.67-1.5-1.5-1.5h-3a.5.5 0 0 1 0-1h3A2.5 2.5 0 0 1 18 4.5v3a.5.5 0 0 1-1 0v-3Z\"]);\nexport const EyeTrackingOff20Regular = /*#__PURE__*/createFluentIcon('EyeTrackingOff20Regular', \"20\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v3a.5.5 0 0 0 1 0v-3c0-.23.05-.45.15-.65L6.29 7a6.6 6.6 0 0 0-2.23 2.27v.01l.44.23-.45-.22a.5.5 0 0 0 .9.44v-.01a2.39 2.39 0 0 1 .25-.39 5.49 5.49 0 0 1 1.82-1.6l1.3 1.3a3 3 0 1 0 4.16 4.17l3.67 3.66c-.2.1-.42.15-.65.15h-3a.5.5 0 0 0 0 1h3c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-.26-.27-.74-.73-3.93-3.94-3.63-3.63L8.01 7.3l-.78-.78-3.38-3.37-.73-.74-.27-.26a.5.5 0 1 0-.7.7l.26.27Zm9.34 9.34a2 2 0 1 1-2.71-2.71l2.71 2.71Zm6.23 3.4.02-.36v-3a.5.5 0 0 0-1 0v2.38l.98.97ZM9.17 7.04A7 7 0 0 1 10 7a5.86 5.86 0 0 1 4.8 2.32 4.13 4.13 0 0 1 .24.39l.01.01a.5.5 0 0 0 .9-.44v-.01l-.01-.01a1.7 1.7 0 0 0-.08-.14l-.25-.38A6.85 6.85 0 0 0 10 6c-.63 0-1.2.07-1.7.18l.86.87Zm6.78 2.23-.06.03-.39.19.45-.22ZM5.12 3H7.5a.5.5 0 0 0 0-1h-3c-.12 0-.24 0-.35.02l.97.98ZM4.5 17A1.5 1.5 0 0 1 3 15.5v-3a.5.5 0 0 0-1 0v3A2.5 2.5 0 0 0 4.5 18h3a.5.5 0 0 0 0-1h-3Zm11-14c.83 0 1.5.67 1.5 1.5v3a.5.5 0 0 0 1 0v-3A2.5 2.5 0 0 0 15.5 2h-3a.5.5 0 0 0 0 1h3Z\"]);\nexport const EyeTrackingOff24Filled = /*#__PURE__*/createFluentIcon('EyeTrackingOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l.13.13c-.23.4-.35.85-.35 1.34v3.6a.75.75 0 0 0 1.5-.1V4.62l.01-.05 3.68 3.68A7.44 7.44 0 0 0 4.8 11.2v.02c-.01 0-.17.75.43.97.38.15.81-.05.96-.43l.01-.03a2.85 2.85 0 0 1 .25-.49 6.07 6.07 0 0 1 1.8-1.93l1.5 1.5a3.5 3.5 0 1 0 4.92 4.93l4.75 4.74-.18.01h-3.6a.75.75 0 0 0 .1 1.5h3.66c.43-.03.83-.15 1.18-.35l.13.13a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm8.17 6.05-1.33-1.33c.57-.12 1.2-.19 1.88-.19a7.73 7.73 0 0 1 6.84 3.75 6.3 6.3 0 0 1 .33.67l.02.04v.02h.01a.75.75 0 0 1-1.4.53l-.01-.02-.04-.1-.21-.39a6.07 6.07 0 0 0-5.54-3c-.19 0-.37 0-.55.02ZM22 18.82l-1.5-1.5v-1.57a.75.75 0 0 1 1.49-.1v3.17ZM6.68 3.5 5.18 2h3.07a.75.75 0 0 1 .1 1.5H6.68ZM2.75 15c.38 0 .7.28.74.65v3.6l.01.13c.06.59.53 1.06 1.12 1.12h3.73a.75.75 0 0 1 0 1.5H4.58A2.75 2.75 0 0 1 2 19.43V15.65a.75.75 0 0 1 .75-.65Zm16.5-13h.16A2.75 2.75 0 0 1 22 4.59v3.77a.75.75 0 0 1-1.49 0V4.62a1.25 1.25 0 0 0-1.13-1.11l-.12-.01h-3.6a.75.75 0 0 1 0-1.5h3.6Z\"]);\nexport const EyeTrackingOff24Regular = /*#__PURE__*/createFluentIcon('EyeTrackingOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l.13.13c-.23.4-.35.85-.35 1.34v3.6a.75.75 0 0 0 1.5-.1V4.62l.01-.05 3.68 3.68A7.44 7.44 0 0 0 4.8 11.2v.02c-.01 0-.17.75.43.97.38.15.81-.05.96-.43l.01-.03a2.85 2.85 0 0 1 .25-.49 6.07 6.07 0 0 1 1.8-1.93l1.5 1.5a3.5 3.5 0 1 0 4.92 4.93l4.75 4.74-.18.01h-3.6a.75.75 0 0 0 .1 1.5h3.66c.43-.03.83-.15 1.18-.35l.13.13a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm10.34 12.46a2 2 0 1 1-2.8-2.8l2.8 2.8Zm-2.17-6.41-1.33-1.33c.57-.12 1.2-.19 1.88-.19a7.73 7.73 0 0 1 6.84 3.75 6.3 6.3 0 0 1 .33.67l.02.04v.02h.01a.75.75 0 0 1-1.4.53l-.01-.02-.04-.1-.21-.39a6.07 6.07 0 0 0-5.54-3c-.19 0-.37 0-.55.02ZM22 18.82l-1.5-1.5v-1.57a.75.75 0 0 1 1.49-.1v3.17ZM6.68 3.5 5.18 2h3.07a.75.75 0 0 1 .1 1.5H6.68ZM2.75 15c.38 0 .7.28.74.65v3.6l.01.13c.06.59.53 1.06 1.12 1.12h3.73a.75.75 0 0 1 0 1.5H4.58A2.75 2.75 0 0 1 2 19.43V15.65a.75.75 0 0 1 .75-.65Zm16.5-13h.16A2.75 2.75 0 0 1 22 4.59v3.77a.75.75 0 0 1-1.49 0V4.62a1.25 1.25 0 0 0-1.13-1.11l-.12-.01h-3.6a.75.75 0 0 1 0-1.5h3.6Z\"]);\nexport const Eyedropper16Filled = /*#__PURE__*/createFluentIcon('Eyedropper16Filled', \"16\", [\"M13.43 2.57A1.94 1.94 0 0 1 14 3.94a1.98 1.98 0 0 1-.57 1.46l-.7.7.25.26a1.14 1.14 0 0 1 0 1.6l-.59.58a1.14 1.14 0 0 1-1.6 0l-.25-.25-4.94 4.93a.5.5 0 0 1-.35.15h-.53l-1.29.55a1.03 1.03 0 0 1-1.35-1.35l.55-1.29v-.53a.5.5 0 0 1 .15-.35l4.94-4.95-.26-.25a1.14 1.14 0 0 1 0-1.6l.6-.59a1.14 1.14 0 0 1 1.6 0l.25.26.7-.7A1.95 1.95 0 0 1 11.98 2a1.98 1.98 0 0 1 1.45.57Zm-5 3.6-4.8 4.78v.43a.5.5 0 0 1-.03.2L3 12.96l1.41-.56a.5.5 0 0 1 .2-.04h.43l4.79-4.79-1.4-1.4Z\"]);\nexport const Eyedropper16Regular = /*#__PURE__*/createFluentIcon('Eyedropper16Regular', \"16\", [\"M13.43 2.57A1.94 1.94 0 0 1 14 3.94a1.98 1.98 0 0 1-.57 1.46l-.7.7.25.26a1.14 1.14 0 0 1 0 1.6l-.59.58a1.14 1.14 0 0 1-1.6 0l-.25-.25-4.94 4.93a.5.5 0 0 1-.35.15h-.53l-1.29.55a1.03 1.03 0 0 1-1.35-1.35l.55-1.29v-.53a.5.5 0 0 1 .15-.35l4.94-4.95-.26-.25a1.14 1.14 0 0 1 0-1.6l.6-.59a1.14 1.14 0 0 1 1.6 0l.25.26.7-.7A1.95 1.95 0 0 1 11.98 2a1.98 1.98 0 0 1 1.45.57Zm-5 3.6-4.8 4.78v.43a.5.5 0 0 1-.03.2L3 12.96l1.41-.56a.5.5 0 0 1 .2-.04h.43l4.79-4.79-1.4-1.4Zm4.3-1.49a.96.96 0 0 0 .28-.67 1.02 1.02 0 0 0-.29-.73.95.95 0 0 0-.67-.28 1 1 0 0 0-.73.28l-1.05 1.05a.5.5 0 0 1-.71 0l-.61-.6a.14.14 0 0 0-.05-.03.13.13 0 0 0-.05-.01h-.06a.14.14 0 0 0-.04.04l-.58.58a.13.13 0 0 0-.04.1.13.13 0 0 0 .04.09l3.33 3.33.04.03.05.01a.13.13 0 0 0 .1-.04l.58-.58a.13.13 0 0 0 .04-.1.13.13 0 0 0-.04-.1l-.6-.6a.5.5 0 0 1 0-.7l1.05-1.07Z\"]);\nexport const Eyedropper20Filled = /*#__PURE__*/createFluentIcon('Eyedropper20Filled', \"20\", [\"M17.25 2.75a2.62 2.62 0 0 0-3.71 0L12.5 3.8l-.35-.35a1.5 1.5 0 0 0-2.12 0l-.59.59a1.5 1.5 0 0 0 0 2.12l.35.35-6.35 6.35A1.5 1.5 0 0 0 3 13.91v.5l-.96 2.26a1 1 0 0 0 1.32 1.31L5.6 17h.49c.4 0 .78-.16 1.06-.44l6.35-6.35.35.35a1.5 1.5 0 0 0 2.12 0l.59-.58a1.5 1.5 0 0 0 0-2.13l-.35-.35 1.04-1.04a2.62 2.62 0 0 0 0-3.7ZM10.5 7.21l2.3 2.3-6.36 6.34a.5.5 0 0 1-.35.15H5.5a.5.5 0 0 0-.2.04l-2.34 1.03 1-2.36a.5.5 0 0 0 .04-.2v-.6a.5.5 0 0 1 .15-.35l6.35-6.35Z\"]);\nexport const Eyedropper20Regular = /*#__PURE__*/createFluentIcon('Eyedropper20Regular', \"20\", [\"M17.25 2.75a2.62 2.62 0 0 0-3.71 0L12.5 3.8l-.35-.35a1.5 1.5 0 0 0-2.12 0l-.59.59a1.5 1.5 0 0 0 0 2.12l.35.35-6.35 6.35A1.5 1.5 0 0 0 3 13.91v.5l-.96 2.26a1 1 0 0 0 1.32 1.31L5.6 17h.49c.4 0 .78-.16 1.06-.44l6.35-6.35.35.35a1.5 1.5 0 0 0 2.12 0l.59-.58a1.5 1.5 0 0 0 0-2.13l-.35-.35 1.04-1.04a2.62 2.62 0 0 0 0-3.7Zm-3 .71a1.62 1.62 0 0 1 2.29 2.3l-1.4 1.39a.5.5 0 0 0 0 .7l.71.71c.2.2.2.51 0 .7l-.58.6a.5.5 0 0 1-.71 0l-4.41-4.42a.5.5 0 0 1 0-.7l.58-.59c.2-.2.52-.2.71 0l.7.7a.5.5 0 0 0 .71 0l1.4-1.39ZM12.79 9.5l-6.35 6.35a.5.5 0 0 1-.35.15H5.5a.5.5 0 0 0-.2.04l-2.34 1.03 1-2.36a.5.5 0 0 0 .04-.2v-.6a.5.5 0 0 1 .15-.35l6.35-6.35 2.3 2.3Z\"]);\nexport const Eyedropper24Filled = /*#__PURE__*/createFluentIcon('Eyedropper24Filled', \"24\", [\"M21.03 2.97a3.58 3.58 0 0 0-5.06 0L14 4.94l-.01-.01a1.75 1.75 0 0 0-2.48 0l-.58.58c-.69.69-.69 1.8 0 2.48V8l-6.77 6.78c-.42.42-.66 1-.66 1.6v.68L2.22 19.4c-.84 1.53.84 3.2 2.37 2.37l2.35-1.28h.69c.6 0 1.17-.24 1.59-.66L16 13.06l.01.01c.69.69 1.8.69 2.48 0l.58-.58c.69-.69.69-1.8 0-2.48V10l1.96-1.97a3.58 3.58 0 0 0 0-5.06ZM12 9.07 14.94 12l-6.78 6.78a.75.75 0 0 1-.53.22h-.88a.75.75 0 0 0-.36.1l-2.51 1.36a.23.23 0 0 1-.16.04.26.26 0 0 1-.14-.08.26.26 0 0 1-.08-.14c0-.03 0-.09.04-.16l1.37-2.51c.06-.11.09-.23.09-.36v-.88c0-.2.08-.39.22-.53L12 9.06Z\"]);\nexport const Eyedropper24Regular = /*#__PURE__*/createFluentIcon('Eyedropper24Regular', \"24\", [\"M21.03 2.97a3.58 3.58 0 0 0-5.06 0L14 4.94l-.01-.01a1.75 1.75 0 0 0-2.48 0l-.58.58c-.69.69-.69 1.8 0 2.48V8l-6.77 6.78c-.42.42-.66 1-.66 1.6v.68L2.22 19.4c-.84 1.53.84 3.2 2.37 2.37l2.35-1.28h.69c.6 0 1.17-.24 1.59-.66L16 13.06l.01.01c.69.69 1.8.69 2.48 0l.58-.58c.69-.69.69-1.8 0-2.48V10l1.96-1.97a3.58 3.58 0 0 0 0-5.06Zm-4 1.06a2.08 2.08 0 0 1 2.94 2.94l-2.5 2.5c-.3.3-.3.77 0 1.06l.54.54c.1.1.1.26 0 .36l-.58.58c-.1.1-.26.1-.36 0L12 6.93a.25.25 0 0 1 0-.36l.58-.58c.1-.1.26-.1.36 0l.54.54c.3.3.77.3 1.06 0l2.5-2.5ZM14.93 12l-6.77 6.78a.75.75 0 0 1-.53.22h-.88a.75.75 0 0 0-.36.1l-2.51 1.36a.23.23 0 0 1-.16.04.26.26 0 0 1-.14-.08.26.26 0 0 1-.08-.14c0-.03 0-.09.04-.16l1.37-2.51c.06-.11.09-.23.09-.36v-.88c0-.2.08-.39.22-.53L12 9.06 14.94 12Z\"]);\nexport const EyedropperOff20Filled = /*#__PURE__*/createFluentIcon('EyedropperOff20Filled', \"20\", [\"M7.8 8.5 2.14 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-5.65-5.64-4.35 4.35a1.5 1.5 0 0 1-1.06.44H5.6l-2.25.98a1 1 0 0 1-1.32-1.3L3 14.41v-.5c0-.4.16-.78.44-1.07L7.79 8.5Zm3 3L8.5 9.2l-4.35 4.36a.5.5 0 0 0-.15.35v.6a.5.5 0 0 1-.04.2l-1 2.36 2.34-1.03a.5.5 0 0 1 .2-.04h.59a.5.5 0 0 0 .35-.15l4.35-4.35Zm2-2-.6.59.72.7.58-.58.35.35a1.5 1.5 0 0 0 2.13 0l.58-.58a1.5 1.5 0 0 0 0-2.13l-.35-.35 1.04-1.04a2.62 2.62 0 1 0-3.71-3.7L12.5 3.78l-.35-.35a1.5 1.5 0 0 0-2.12 0l-.59.59a1.5 1.5 0 0 0 0 2.12l.35.35-.58.59.7.7.6-.58 2.28 2.3Z\"]);\nexport const EyedropperOff20Regular = /*#__PURE__*/createFluentIcon('EyedropperOff20Regular', \"20\", [\"M7.8 8.5 2.14 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-5.65-5.64-4.35 4.35a1.5 1.5 0 0 1-1.06.44H5.6l-2.25.98a1 1 0 0 1-1.32-1.3L3 14.41v-.5c0-.4.16-.78.44-1.07L7.79 8.5Zm3 3L8.5 9.2l-4.35 4.36a.5.5 0 0 0-.15.35v.6a.5.5 0 0 1-.04.2l-1 2.36 2.34-1.03a.5.5 0 0 1 .2-.04h.59a.5.5 0 0 0 .35-.15l4.35-4.35Zm2-2-.6.59.72.7.58-.58.35.35a1.5 1.5 0 0 0 2.13 0l.58-.58a1.5 1.5 0 0 0 0-2.13l-.35-.35 1.04-1.04a2.62 2.62 0 1 0-3.71-3.7L12.5 3.78l-.35-.35a1.5 1.5 0 0 0-2.12 0l-.59.59a1.5 1.5 0 0 0 0 2.12l.35.35-.58.59.7.7.6-.58 2.28 2.3Zm1.45-6.04a1.62 1.62 0 1 1 2.29 2.3l-1.4 1.39a.5.5 0 0 0 0 .7l.71.71c.2.2.2.51 0 .7l-.58.6a.5.5 0 0 1-.7 0l-4.42-4.42a.5.5 0 0 1 0-.7l.59-.59c.2-.2.5-.2.7 0l.7.7a.5.5 0 0 0 .71 0l1.4-1.39Z\"]);\nexport const EyedropperOff24Filled = /*#__PURE__*/createFluentIcon('EyedropperOff24Filled', \"24\", [\"m8.94 10-4.78 4.78c-.42.42-.66 1-.66 1.6v.68L2.22 19.4c-.84 1.53.84 3.2 2.38 2.37l2.34-1.28h.69c.6 0 1.17-.24 1.6-.66L14 15.06l6.72 6.72a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 0 0-1.06 1.06L8.94 10Zm4 4-4.78 4.78a.75.75 0 0 1-.53.22h-.88a.75.75 0 0 0-.36.1l-2.51 1.36a.23.23 0 0 1-.16.04.26.26 0 0 1-.14-.08.26.26 0 0 1-.07-.14c-.01-.03-.01-.09.03-.16l1.37-2.51c.06-.11.1-.23.1-.36v-.88c0-.2.07-.39.21-.53L10 11.06 12.94 14Zm5.55-.93c-.5.5-1.2.63-1.82.42l-6.16-6.16a1.75 1.75 0 0 1 .42-1.82l.58-.58c.69-.69 1.8-.69 2.48 0l.01.01 1.97-1.97a3.58 3.58 0 0 1 5.06 5.06L19.06 10l.01.01c.69.69.69 1.8 0 2.48l-.58.58Z\"]);\nexport const EyedropperOff24Regular = /*#__PURE__*/createFluentIcon('EyedropperOff24Regular', \"24\", [\"M8.94 10 2.22 3.28a.75.75 0 0 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L14 15.06l-4.78 4.78c-.42.42-1 .66-1.59.66h-.69L4.6 21.78c-1.54.84-3.22-.84-2.38-2.37l1.28-2.35v-.69c0-.6.24-1.17.66-1.59L8.94 10Zm4 4L10 11.06l-4.78 4.78a.75.75 0 0 0-.22.53v.88c0 .13-.03.25-.09.36l-1.37 2.51a.23.23 0 0 0-.03.16c0 .05.03.1.07.14.04.04.1.07.14.08.04 0 .09 0 .16-.04l2.51-1.37c.11-.06.24-.09.36-.09h.88c.2 0 .39-.08.53-.22L12.94 14Zm5.55-.93c-.5.5-1.2.63-1.82.42l-6.16-6.16a1.75 1.75 0 0 1 .42-1.82l.58-.58c.69-.69 1.8-.69 2.48 0l.01.01 1.97-1.97a3.58 3.58 0 0 1 5.06 5.06L19.06 10l.01.01c.69.69.69 1.8 0 2.48l-.58.58Zm-1.46-9.04-2.5 2.5c-.3.3-.77.3-1.06 0L12.93 6a.25.25 0 0 0-.36 0l-.58.58c-.1.1-.1.26 0 .36L17.07 12c.1.1.26.1.36 0l.58-.58c.1-.1.1-.26 0-.36l-.54-.54a.75.75 0 0 1 0-1.06l2.5-2.5a2.08 2.08 0 1 0-2.94-2.94Z\"]);\nexport const FStop16Filled = /*#__PURE__*/createFluentIcon('FStop16Filled', \"16\", [\"M9.06 4.1c.19-1.17 1.4-1.89 2.53-1.49l.4.15a.75.75 0 1 0 .51-1.42l-.4-.14c-2.01-.72-4.18.56-4.53 2.66L7.1 6.75H4.5a.75.75 0 1 0 0 1.5h2.35l-.43 2.63a1.92 1.92 0 0 1-2.93 1.3l-.34-.21a.75.75 0 1 0-.8 1.26l.34.22a3.42 3.42 0 0 0 5.2-2.32l.48-2.88h2.13a.75.75 0 0 0 0-1.5H8.62l.44-2.65Z\"]);\nexport const FStop16Regular = /*#__PURE__*/createFluentIcon('FStop16Regular', \"16\", [\"M8.84 3.84a2.17 2.17 0 0 1 2.72-1.73l.8.22a.5.5 0 1 0 .27-.96l-.8-.22a3.17 3.17 0 0 0-3.97 2.53L7.3 7H4.5a.5.5 0 1 0 0 1h2.65l-.53 3.18a2.17 2.17 0 0 1-3.19 1.55l-.69-.39a.5.5 0 0 0-.48.88l.69.38a3.17 3.17 0 0 0 4.66-2.25L8.16 8h2.34a.5.5 0 0 0 0-1H8.32l.52-3.16Z\"]);\nexport const FStop20Filled = /*#__PURE__*/createFluentIcon('FStop20Filled', \"20\", [\"M11.08 5.68c.28-1.63 2-2.58 3.53-1.95l.36.14a.75.75 0 1 0 .56-1.38l-.36-.15A4.08 4.08 0 0 0 9.6 5.43L9 9H5.74a.75.75 0 1 0 0 1.5h2.98l-.5 2.96a2.58 2.58 0 0 1-3.92 1.75l-.16-.1a.75.75 0 0 0-.8 1.27l.16.1c2.46 1.55 5.7.1 6.2-2.77l.55-3.21h2.99a.75.75 0 1 0 0-1.5h-2.74l.57-3.32Z\"]);\nexport const FStop20Regular = /*#__PURE__*/createFluentIcon('FStop20Regular', \"20\", [\"M10.88 5.35a2.83 2.83 0 0 1 3.68-2.22l.78.26a.5.5 0 1 0 .32-.95l-.8-.26a3.83 3.83 0 0 0-4.96 3L9.24 9H5.5a.5.5 0 1 0 0 1h3.57l-.62 3.63a2.83 2.83 0 0 1-4.24 1.96l-.45-.27a.5.5 0 1 0-.52.86l.46.27a3.83 3.83 0 0 0 5.74-2.65l.65-3.8h3.41a.5.5 0 0 0 0-1h-3.24l.62-3.65Z\"]);\nexport const FStop24Filled = /*#__PURE__*/createFluentIcon('FStop24Filled', \"24\", [\"M13.44 6.57a3 3 0 0 1 3.94-2.33l.6.2a1 1 0 0 0 .65-1.88l-.6-.21a5 5 0 0 0-6.56 3.88l-.73 4.27H7a1 1 0 0 0 0 2h3.4l-.69 4.04a3 3 0 0 1-4.4 2.13l-.08-.05a1 1 0 0 0-.96 1.76l.07.04a5 5 0 0 0 7.34-3.54l.75-4.38H16a1 1 0 1 0 0-2h-3.23l.67-3.93Z\"]);\nexport const FStop24Regular = /*#__PURE__*/createFluentIcon('FStop24Regular', \"24\", [\"M13.2 6.53A3.25 3.25 0 0 1 17.46 4l.6.2a.75.75 0 1 0 .49-1.4l-.6-.21a4.75 4.75 0 0 0-6.23 3.69L11 10.5H6.75a.75.75 0 0 0 0 1.5h3.99l-.78 4.58a3.25 3.25 0 0 1-4.77 2.3l-.08-.04a.75.75 0 0 0-.72 1.32l.07.04a4.75 4.75 0 0 0 6.98-3.36l.82-4.84h3.99a.75.75 0 0 0 0-1.5h-3.73l.68-3.97Z\"]);\nexport const FStop28Filled = /*#__PURE__*/createFluentIcon('FStop28Filled', \"28\", [\"M15.6 7.99A4 4 0 0 1 20.93 5l.47.18a1 1 0 1 0 .7-1.88l-.47-.17a6 6 0 0 0-8 4.46l-.86 4.4H7.75a1 1 0 1 0 0 2h4.63l-.98 5.01A4 4 0 0 1 6.07 22l-.47-.18a1 1 0 1 0-.7 1.88l.47.17a6 6 0 0 0 8-4.46l1.05-5.4h4.83a1 1 0 1 0 0-2h-4.44l.79-4.01Z\"]);\nexport const FStop28Regular = /*#__PURE__*/createFluentIcon('FStop28Regular', \"28\", [\"M15.35 7.94a4.25 4.25 0 0 1 5.67-3.16l.47.17a.75.75 0 1 0 .52-1.4l-.47-.18a5.75 5.75 0 0 0-7.66 4.28L13.03 12H7.75a.75.75 0 1 0 0 1.5h4.99l-1.1 5.56a4.25 4.25 0 0 1-5.66 3.16l-.47-.17a.75.75 0 0 0-.52 1.4l.47.18a5.75 5.75 0 0 0 7.66-4.28l1.14-5.85h4.99a.75.75 0 0 0 0-1.5h-4.7l.8-4.06Z\"]);\nexport const FastAcceleration20Filled = /*#__PURE__*/createFluentIcon('FastAcceleration20Filled', \"20\", [\"M8.9 7.2a3.48 3.48 0 0 1 4.2 0l-1.08 1.08a2 2 0 0 0-2.04 0L8.9 7.2ZM13 10a2 2 0 0 0-.28-1.02L13.8 7.9a3.48 3.48 0 0 1 0 4.2l-1.08-1.08A2 2 0 0 0 13 10Zm-2 2a2 2 0 0 0 1.02-.28l1.08 1.08a3.48 3.48 0 0 1-4.2 0l1.08-1.08A2 2 0 0 0 11 12Zm-2-2c0 .37.1.72.28 1.02L8.2 12.1a3.48 3.48 0 0 1 0-4.2l1.08 1.08A2 2 0 0 0 9 10ZM6.1 5a6.98 6.98 0 0 0-1.43 8H3.5a.5.5 0 0 0 0 1h1.75c.26.36.54.7.85 1H1.5a.5.5 0 0 0 0 1h5.9a7 7 0 1 0 0-12H2.5a.5.5 0 0 0 0 1h3.6ZM11 9a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const FastAcceleration20Regular = /*#__PURE__*/createFluentIcon('FastAcceleration20Regular', \"20\", [\"M11 4a6 6 0 1 1-3.3 11.01V15h-.02A6 6 0 0 1 11 4ZM5.25 14c.26.36.54.7.85 1H1.5a.5.5 0 0 0 0 1h5.9a7 7 0 1 0 0-12H2.5a.5.5 0 0 0 0 1h3.6a6.98 6.98 0 0 0-1.43 8H3.5a.5.5 0 0 0 0 1h1.75ZM8.2 7.9a3.48 3.48 0 0 0 0 4.2l1.08-1.08a2 2 0 0 1 0-2.04L8.2 7.9Zm.7-.7 1.08 1.08a2 2 0 0 1 2.04 0L13.1 7.2a3.48 3.48 0 0 0-4.2 0Zm4.9.7-1.08 1.08a2 2 0 0 1 0 2.04l1.08 1.08a3.48 3.48 0 0 0 0-4.2Zm-.7 4.9-1.08-1.08a2 2 0 0 1-2.04 0L8.9 12.8a3.48 3.48 0 0 0 4.2 0ZM6.5 10a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm3.5 0a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const FastAcceleration24Filled = /*#__PURE__*/createFluentIcon('FastAcceleration24Filled', \"24\", [\"M13.5 4a8.5 8.5 0 1 1-4.82 15.5H1.75a.75.75 0 0 1-.1-1.5H7.02c-.4-.46-.73-.96-1.02-1.5H3.75a.75.75 0 0 1-.1-1.5H5.37a8.5 8.5 0 0 1 1.65-8H2.75a.75.75 0 0 1-.1-1.5H8.68A8.46 8.46 0 0 1 13.5 4Zm1.15 10.72a2.49 2.49 0 0 1-2.3 0l-1.09 1.1a3.98 3.98 0 0 0 4.5 0l-1.1-1.1ZM9.5 12.5c0 .84.26 1.62.7 2.26l1.09-1.1a2.49 2.49 0 0 1 0-2.32l-1.1-1.09c-.43.65-.69 1.42-.69 2.25Zm7.32-2.24-1.1 1.1a2.49 2.49 0 0 1 0 2.3l1.1 1.1a3.98 3.98 0 0 0 0-4.5ZM13.5 11.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-3c-.83 0-1.6.26-2.25.7l1.1 1.08a2.49 2.49 0 0 1 2.32 0l1.09-1.08a3.98 3.98 0 0 0-2.26-.7Z\"]);\nexport const FastAcceleration24Regular = /*#__PURE__*/createFluentIcon('FastAcceleration24Regular', \"24\", [\"M13.5 4a8.5 8.5 0 1 1-4.82 15.5H1.75a.75.75 0 0 1-.1-1.5H7.02c-.4-.46-.73-.96-1.02-1.5H3.75a.75.75 0 0 1-.1-1.5H5.37a8.5 8.5 0 0 1 1.65-8H2.75a.75.75 0 0 1-.1-1.5H8.68A8.46 8.46 0 0 1 13.5 4Zm0 1.5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm0 1.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm1.15 7.72a2.49 2.49 0 0 1-2.3 0l-1.09 1.1a3.98 3.98 0 0 0 4.5 0l-1.1-1.1ZM9.5 12.5c0 .84.26 1.62.7 2.26l1.09-1.1a2.49 2.49 0 0 1 0-2.32l-1.1-1.09c-.43.65-.69 1.42-.69 2.25Zm7.32-2.24-1.1 1.1a2.49 2.49 0 0 1 0 2.3l1.1 1.1a3.98 3.98 0 0 0 0-4.5ZM13.5 11.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-3c-.83 0-1.6.26-2.25.7l1.1 1.08a2.49 2.49 0 0 1 2.32 0l1.09-1.08a3.98 3.98 0 0 0-2.26-.7Z\"]);\nexport const FastForward16Filled = /*#__PURE__*/createFluentIcon('FastForward16Filled', \"16\", [\"M8 4.46a1 1 0 0 1 1.58-.81l5 3.53a1 1 0 0 1 0 1.64l-5 3.53A1 1 0 0 1 8 11.54v-2.3l-4.42 3.11A1 1 0 0 1 2 11.54V4.46a1 1 0 0 1 1.58-.81L8 6.77v-2.3Z\"]);\nexport const FastForward16Regular = /*#__PURE__*/createFluentIcon('FastForward16Regular', \"16\", [\"M2 4.46a1 1 0 0 1 1.58-.81L8 6.77v-2.3a1 1 0 0 1 1.58-.82l5 3.53a1 1 0 0 1 0 1.64l-5 3.53A1 1 0 0 1 8 11.54v-2.3l-4.42 3.11A1 1 0 0 1 2 11.54V4.46ZM8 8 3 4.46v7.08L8 8v-.02Zm1 3.55L14.01 8 9 4.46v7.08Z\"]);\nexport const FastForward20Filled = /*#__PURE__*/createFluentIcon('FastForward20Filled', \"20\", [\"M10.02 5.49a1 1 0 0 1 1.59-.81l5.88 4.31c.68.5.68 1.52 0 2.02l-5.88 4.3a1 1 0 0 1-1.6-.8v-3.16l-5.4 3.97a1 1 0 0 1-1.6-.8V5.48a1 1 0 0 1 1.6-.81l5.4 3.97V5.49Z\"]);\nexport const FastForward20Regular = /*#__PURE__*/createFluentIcon('FastForward20Regular', \"20\", [\"M10.02 5.49a1 1 0 0 1 1.59-.81l5.88 4.31c.68.5.68 1.52 0 2.02l-5.88 4.3a1 1 0 0 1-1.6-.8v-3.16l-5.4 3.97a1 1 0 0 1-1.6-.8V5.48a1 1 0 0 1 1.6-.81l5.4 3.97V5.49Zm6.88 4.3-5.88-4.3v9.02l5.88-4.3c.13-.1.13-.31 0-.41Zm-7 0L4.02 5.5v9.02l5.88-4.3c.13-.1.13-.31 0-.41Z\"]);\nexport const FastForward24Filled = /*#__PURE__*/createFluentIcon('FastForward24Filled', \"24\", [\"M13.97 4.36A1.5 1.5 0 0 0 11.5 5.5v4L5.47 4.35A1.5 1.5 0 0 0 3 5.51V18.5c0 .88.7 1.48 1.46 1.5h.09c.32 0 .64-.12.92-.36l6.03-5.13v3.99a1.5 1.5 0 0 0 2.47 1.14l7.41-6.3c.82-.7.82-1.97 0-2.67l-7.4-6.3Z\"]);\nexport const FastForward24Regular = /*#__PURE__*/createFluentIcon('FastForward24Regular', \"24\", [\"M11.5 5.5a1.5 1.5 0 0 1 2.47-1.14l7.41 6.3c.82.7.82 1.97 0 2.67l-7.4 6.3a1.5 1.5 0 0 1-2.48-1.13v-4l-6.03 5.14A1.5 1.5 0 0 1 3 18.5v-13a1.5 1.5 0 0 1 2.47-1.14L11.5 9.5V5.5Zm0 5.96-7-5.96v13l7-5.96v-1.08Zm8.91.35L13 5.5V18.5l7.41-6.31a.25.25 0 0 0 0-.38Z\"]);\nexport const FastForward28Filled = /*#__PURE__*/createFluentIcon('FastForward28Filled', \"28\", [\"M15.64 4.86A1.63 1.63 0 0 0 13 6.13v4.57L5.64 4.86A1.62 1.62 0 0 0 3 6.13v15.74a1.62 1.62 0 0 0 2.64 1.27L13 17.3v4.57a1.63 1.63 0 0 0 2.64 1.27l9.63-7.64c.97-.77.97-2.23 0-3l-9.63-7.64Z\"]);\nexport const FastForward28Regular = /*#__PURE__*/createFluentIcon('FastForward28Regular', \"28\", [\"M13 10.7V6.13a1.63 1.63 0 0 1 2.64-1.27l9.63 7.64c.97.77.97 2.24 0 3l-9.63 7.64A1.63 1.63 0 0 1 13 21.87V17.3l-7.36 5.84A1.63 1.63 0 0 1 3 21.87V6.13a1.62 1.62 0 0 1 2.64-1.27L13 10.7Zm0 4.69V12.6L4.7 6.03A.12.12 0 0 0 4.64 6c-.02 0-.04 0-.07.02a.13.13 0 0 0-.05.04l-.02.07v15.74c0 .03 0 .05.02.07l.05.04.07.02.06-.03 8.3-6.58Zm1.7-9.36a.12.12 0 0 0-.06-.03c-.02 0-.04 0-.07.02a.13.13 0 0 0-.05.04l-.02.07v15.74l.02.07.05.04.07.02.06-.03 9.64-7.64a.42.42 0 0 0 0-.66L14.7 6.03Z\"]);\nexport const Fax16Filled = /*#__PURE__*/createFluentIcon('Fax16Filled', \"16\", [\"M5.5 2C4.67 2 4 2.67 4 3.5V6a2 2 0 0 0-2 2v4.5c0 .83.67 1.5 1.5 1.5h6c-.31-.42-.5-.94-.5-1.5v-5c0-.56.19-1.08.5-1.5H5V3.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v1.55c.16-.03.33-.05.5-.05h.5V3.5c0-.83-.67-1.5-1.5-1.5h-5Zm-1 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Zm0 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1ZM7 8.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM6.5 11a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1ZM10 7.5c0-.83.67-1.5 1.5-1.5h1c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5v-5Z\"]);\nexport const Fax16Regular = /*#__PURE__*/createFluentIcon('Fax16Regular', \"16\", [\"M5.5 2C4.67 2 4 2.67 4 3.5V6a2 2 0 0 0-2 2v4.5c0 .83.67 1.5 1.5 1.5h6c-.22-.3-.38-.63-.45-1H3.5a.5.5 0 0 1-.5-.5V8a1 1 0 0 1 1-1h5.05c.07-.37.23-.7.45-1H5V3.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v1.55c.16-.03.33-.05.5-.05h.5V3.5c0-.83-.67-1.5-1.5-1.5h-5Zm6 4c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h1c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-1ZM11 7.5c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-5Zm-6 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM4.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM7 8.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM6.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const Fax20Filled = /*#__PURE__*/createFluentIcon('Fax20Filled', \"20\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V7h-1V4.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V8h5.5c-.31.42-.5.94-.5 1.5v6c0 .56.19 1.08.5 1.5h-7A1.5 1.5 0 0 1 3 15.5V10c0-1.1.9-2 2-2V4.5Zm1.25 6.13a.62.62 0 1 0-1.25 0 .62.62 0 0 0 1.25 0Zm0 2.24a.62.62 0 1 0-1.25 0 .62.62 0 0 0 1.25 0Zm1.63-.5a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.24Zm.62-1.74a.62.62 0 1 0-1.25 0 .62.62 0 0 0 1.25 0Zm5-2.63c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h2c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5h-2Z\"]);\nexport const Fax20Regular = /*#__PURE__*/createFluentIcon('Fax20Regular', \"20\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V7h-1V4.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V8h5.5c-.22.3-.38.63-.45 1H5a1 1 0 0 0-1 1v5.5c0 .28.22.5.5.5h6.55c.07.37.23.7.45 1h-7A1.5 1.5 0 0 1 3 15.5V10c0-1.1.9-2 2-2V4.5Zm7 5c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-2a1.5 1.5 0 0 1-1.5-1.5v-6Zm1.5-.5a.5.5 0 0 0-.5.5v6c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5h-2Zm-7.88 1a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Zm0 2.25a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25ZM8.5 13a.62.62 0 1 0-1.25 0 .62.62 0 0 0 1.25 0Zm-.63-3a.62.62 0 1 1 0 1.25.62.62 0 0 1 0-1.25Z\"]);\nexport const Feed16Filled = /*#__PURE__*/createFluentIcon('Feed16Filled', \"16\", [\"M2 4.5C2 3.67 2.67 3 3.5 3h4C8.31 3 9 3.67 9 4.5V5h3.55c.73.03 1.45.55 1.45 1.5v3.04c0 .83-.67 1.5-1.5 1.5h-1.39l-.14.75a1.44 1.44 0 0 1-1.47 1.2l-6 .01A1.5 1.5 0 0 1 2 11.5v-7Zm7 7c0 .6.87.69.99.1L10.88 7l.15-.78V6.2l.01-.06.02-.04c0-.03.01-.07.03-.1h-2.1v5.5ZM4.47 5.99a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm.01 1.5a.5.5 0 0 0 0 1h2a.5.5 0 1 0 0-1h-2Zm0 2.51a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .26-.93h-.02A.5.5 0 0 0 6.6 10H6.5L6.48 10H4.5Z\"]);\nexport const Feed16Regular = /*#__PURE__*/createFluentIcon('Feed16Regular', \"16\", [\"M4.5 7.49a.5.5 0 0 0 0 1h1.98a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5H4.5Zm0 2.51a.5.5 0 0 0 0 1h1.98a.5.5 0 0 0 0-1H4.5Zm.48-4.51a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM3.5 3C2.67 3 2 3.67 2 4.5v7c0 .83.67 1.5 1.5 1.5h6c.65 0 1.3-.39 1.47-1.21l.14-.75h1.39c.83 0 1.5-.67 1.5-1.5V6.51c0-.96-.72-1.48-1.45-1.51H8.99v-.5C9 3.67 8.32 3 7.5 3H3.5ZM9 6h2.09a1.57 1.57 0 0 0-.06.23l-.15.78-.9 4.58c-.11.6-.99.51-.99-.1V6Zm-1 5.5c0 .18.02.35.07.5H3.5a.5.5 0 0 1-.5-.5v-7c0-.28.22-.5.5-.5h4c.27 0 .5.22.5.5v7Zm4.5-1.46h-1.2l.56-2.84.15-.78c.11-.6.99-.52.99.09v3.03a.5.5 0 0 1-.5.5Z\"]);\nexport const Feed20Filled = /*#__PURE__*/createFluentIcon('Feed20Filled', \"20\", [\"M12.47 17H4a2 2 0 0 1-2-2V4.5C2 3.67 2.67 3 3.5 3h7c.83 0 1.5.67 1.5 1.5V6h4.48c.77.02 1.52.6 1.52 1.58v4.92c0 .83-.67 1.5-1.5 1.5h-2.1l-.43 1.82c-.19.82-.85 1.2-1.5 1.18ZM15 7H12v8.48c0 .6.86.7 1 .12l1.94-8.37.07-.23ZM5.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM5 10c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5Zm0 3.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5Z\"]);\nexport const Feed20Regular = /*#__PURE__*/createFluentIcon('Feed20Regular', \"20\", [\"M5.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM5 10c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3A.5.5 0 0 1 5 10Zm.5 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4 17h8.47c.65.02 1.31-.36 1.5-1.18L14.4 14h2.11c.83 0 1.5-.67 1.5-1.5V7.58c0-.98-.75-1.56-1.52-1.58H12V4.5c0-.83-.67-1.5-1.5-1.5h-7C2.67 3 2 3.67 2 4.5V15c0 1.1.9 2 2 2ZM3 4.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v10.98c0 .2.03.36.08.52H4a1 1 0 0 1-1-1V4.5ZM16.5 13h-1.87l1.28-5.54c.15-.64 1.09-.53 1.09.12v4.92a.5.5 0 0 1-.5.5ZM12 7h3.01a1.8 1.8 0 0 0-.07.23L13 15.6c-.14.58-1 .48-1-.12V7Z\"]);\nexport const Feed24Filled = /*#__PURE__*/createFluentIcon('Feed24Filled', \"24\", [\"M15 21c.94 0 1.75-.67 1.93-1.6l.48-2.4h2.84c.97 0 1.75-.78 1.75-1.75V9.26c0-1.24-1-2.25-2.25-2.26H14.5V5.25c0-1.24-1-2.25-2.25-2.25h-8C3.01 3 2 4 2 5.25v12.5C2 19.55 3.46 21 5.25 21H15Zm2.52-12.18L15.46 19.1a.49.49 0 0 1-.96-.1V8.5h3.11c-.04.1-.07.2-.09.32ZM5.78 8.5a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm-.75 7.25c0-.41.34-.75.75-.75h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.75-.75ZM5.78 11h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1 0-1.5Z\"]);\nexport const Feed24Regular = /*#__PURE__*/createFluentIcon('Feed24Regular', \"24\", [\"M6.53 7.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM5.78 15a.75.75 0 0 0 0 1.5h5a.75.75 0 1 0 0-1.5h-5Zm-.75-3.25c0-.41.34-.75.75-.75h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.75-.75ZM15 21c.94 0 1.75-.67 1.93-1.6l.48-2.4h2.84c.97 0 1.75-.78 1.75-1.75V9.26c0-1.24-1-2.25-2.25-2.26H14.5V5.25c0-1.24-1-2.25-2.25-2.25h-8C3.01 3 2 4 2 5.25v12.5C2 19.55 3.46 21 5.25 21H15ZM3.5 5.25c0-.41.34-.75.75-.75h8c.41 0 .75.34.75.75v13.76c0 .17.02.33.06.49H5.25c-.97 0-1.75-.78-1.75-1.75V5.25Zm11 3.25h3.11c-.04.1-.07.2-.09.32L15.46 19.1a.49.49 0 0 1-.96-.1V8.5Zm4.5.61a.76.76 0 0 1 1.5.15v5.99c0 .14-.11.25-.25.25h-2.54L19 9.11Z\"]);\nexport const Feed28Filled = /*#__PURE__*/createFluentIcon('Feed28Filled', \"28\", [\"M5.25 25H17.1c1.41 0 2.43-.48 2.75-1.96l.66-3.08h2.86a2.75 2.75 0 0 0 2.75-2.75v-6.7c0-1.68-1.36-2.58-2.67-2.52H16.4V5.75A2.75 2.75 0 0 0 13.66 3H4.75A2.75 2.75 0 0 0 2 5.75v16c0 1.79 1.46 3.24 3.25 3.24ZM16.41 9.48h4.86a2.9 2.9 0 0 0-.15.49l-2.74 12.74c-.25 1.17-1.97.99-1.97-.2V9.48Zm-9.63.01a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm0 9.02h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1 0-1.5Zm0-5.27h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1 0-1.5Z\"]);\nexport const Feed28Regular = /*#__PURE__*/createFluentIcon('Feed28Regular', \"28\", [\"M6.78 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 9a.75.75 0 0 0 0 1.5h5a.75.75 0 1 0 0-1.5h-5ZM6.03 14c0-.42.34-.76.75-.76h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.75-.75ZM17.1 25H5.25A3.25 3.25 0 0 1 2 21.73V5.75A2.75 2.75 0 0 1 4.75 3h8.9a2.75 2.75 0 0 1 2.76 2.75v2.24h7.04c1.31-.06 2.68.84 2.68 2.52v6.7a2.75 2.75 0 0 1-2.75 2.75H20.5l-.66 3.08c-.32 1.48-1.34 1.95-2.75 1.95ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v16c0 .96.78 1.74 1.75 1.74h9.83a2.66 2.66 0 0 1-.17-.98V5.75c0-.69-.56-1.25-1.25-1.25H4.75Zm11.66 18.01c0 1.2 1.72 1.38 1.97.21l2.74-12.74c.04-.18.09-.34.15-.5h-4.86v13.03Zm6.18-12.22-1.76 8.17h2.55c.69 0 1.25-.56 1.25-1.25v-6.7c0-.63-.49-1-.99-1.02h-.14a.97.97 0 0 0-.91.8Z\"]);\nexport const Feed32Filled = /*#__PURE__*/createFluentIcon('Feed32Filled', \"32\", [\"M20 29v-.02l.3.02a3.04 3.04 0 0 0 3-2.49l.64-3.51h2.81c1.8 0 3.25-1.46 3.25-3.25v-8.84a2.91 2.91 0 0 0-3-2.9V8h-7.73V6.25c0-1.8-1.46-3.25-3.25-3.25H5.25A3.25 3.25 0 0 0 2 6.25V24.5A4.5 4.5 0 0 0 6.5 29H20Zm-.73-19h5.06c-.04.12-.08.25-.1.38l-2.9 15.77a1.04 1.04 0 0 1-2.06-.19V10ZM7 10a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-1 6a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm1 5h7a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2Z\"]);\nexport const Feed32Regular = /*#__PURE__*/createFluentIcon('Feed32Regular', \"32\", [\"M5.25 5C4.56 5 4 5.56 4 6.25V24.5A2.5 2.5 0 0 0 6.5 27h10.95a3.03 3.03 0 0 1-.18-1.04V6.25c0-.69-.56-1.25-1.25-1.25H5.25ZM20 28.98V29H6.5A4.5 4.5 0 0 1 2 24.5V6.25C2 4.45 3.46 3 5.25 3h10.77c1.8 0 3.25 1.46 3.25 3.25V8h7.82C28.69 8 30 9.3 30 10.91v8.84c0 1.8-1.46 3.25-3.25 3.25h-2.81l-.65 3.51A3.04 3.04 0 0 1 20 28.98ZM24.33 10h-5.06v15.96a1.04 1.04 0 0 0 2.05.2l2.9-15.78.1-.38Zm-.02 11h2.44c.69 0 1.25-.56 1.25-1.25v-8.84a.91.91 0 0 0-1.8-.17L24.3 21ZM8 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 6a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2H7Zm-1 7a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z\"]);\nexport const Feed48Filled = /*#__PURE__*/createFluentIcon('Feed48Filled', \"48\", [\"M29.63 42h.25c1.82 0 3.4-1.27 3.79-3.06L34.73 34h5.02C42.1 34 44 32.1 44 29.75v-11.6A4.16 4.16 0 0 0 40 14H28.5v-3.75C28.5 7.9 26.6 6 24.25 6h-16A4.25 4.25 0 0 0 4 10.25v25.5C4 39.2 6.8 42 10.25 42h19.38ZM28.5 16.5h7.53c-.1.25-.19.5-.25.78L31.23 38.4a1.38 1.38 0 0 1-2.73-.29V16.5Zm-15.5-1a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM11.25 22h10.5a1.25 1.25 0 1 1 0 2.5h-10.5a1.25 1.25 0 1 1 0-2.5ZM10 31.25c0-.69.56-1.25 1.25-1.25h10.5a1.25 1.25 0 1 1 0 2.5h-10.5c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const Feed48Regular = /*#__PURE__*/createFluentIcon('Feed48Regular', \"48\", [\"M8.25 8.5c-.97 0-1.75.78-1.75 1.75v25.5a3.75 3.75 0 0 0 3.75 3.75h16c-.16-.43-.25-.9-.25-1.38V10.25c0-.97-.78-1.75-1.75-1.75h-16ZM29.63 42H10.25A6.25 6.25 0 0 1 4 35.75v-25.5C4 7.9 5.9 6 8.25 6h16c2.35 0 4.25 1.9 4.25 4.25V14H40c2.22.08 4 1.91 4 4.15v11.6C44 32.1 42.1 34 39.75 34h-5.02l-1.06 4.94a3.88 3.88 0 0 1-4.05 3.05Zm-1.13-3.88a1.38 1.38 0 0 0 2.73.3l4.55-21.14c.06-.27.15-.53.25-.78H28.5v21.62Zm9.73-20.31L35.27 31.5h4.48c.97 0 1.75-.78 1.75-1.75v-11.6a1.65 1.65 0 0 0-3.27-.34ZM11.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM10 23.25c0-.69.56-1.25 1.25-1.25h10.5a1.25 1.25 0 1 1 0 2.5h-10.5c-.69 0-1.25-.56-1.25-1.25ZM11.25 30a1.25 1.25 0 1 0 0 2.5h10.5a1.25 1.25 0 1 0 0-2.5h-10.5Z\"]);\nexport const Filmstrip16Filled = /*#__PURE__*/createFluentIcon('Filmstrip16Filled', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5v-5Zm11 0v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM3 5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0ZM3.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const Filmstrip16Regular = /*#__PURE__*/createFluentIcon('Filmstrip16Regular', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5v-5ZM3.5 4C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-9ZM12 5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM3 5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const Filmstrip20Filled = /*#__PURE__*/createFluentIcon('Filmstrip20Filled', \"20\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm13-.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0Zm.5 5.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM15 9.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0ZM4.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 12.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0ZM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const Filmstrip20Regular = /*#__PURE__*/createFluentIcon('Filmstrip20Regular', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11ZM15 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 5.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM15 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM4.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 12.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const Filmstrip24Filled = /*#__PURE__*/createFluentIcon('Filmstrip24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5Zm16.5.5v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0Zm.75 7.25a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm-.75-3.25v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0ZM4.75 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 4.75 7ZM4 15.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0ZM4.75 11a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const Filmstrip24Regular = /*#__PURE__*/createFluentIcon('Filmstrip24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM5.25 5.5c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h13.5c.97 0 1.75-.78 1.75-1.75v-9.5c0-.97-.78-1.75-1.75-1.75H5.25ZM17.5 7.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm.75 7.25a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm-.75-3.25a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM5.75 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 5.75 7ZM5 15.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM5.75 11a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const Filmstrip32Filled = /*#__PURE__*/createFluentIcon('Filmstrip32Filled', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v15a4.5 4.5 0 0 1-4.5 4.5h-19A4.5 4.5 0 0 1 2 23.5v-15ZM25 9v2a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm-1 7v2a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0ZM6 8a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm-1 7v2a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Z\"]);\nexport const Filmstrip32Regular = /*#__PURE__*/createFluentIcon('Filmstrip32Regular', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v15a4.5 4.5 0 0 1-4.5 4.5h-19A4.5 4.5 0 0 1 2 23.5v-15ZM6.5 6A2.5 2.5 0 0 0 4 8.5v15A2.5 2.5 0 0 0 6.5 26h19a2.5 2.5 0 0 0 2.5-2.5v-15A2.5 2.5 0 0 0 25.5 6h-19ZM24 9a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0V9Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2ZM7 8a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Z\"]);\nexport const Filmstrip48Filled = /*#__PURE__*/createFluentIcon('Filmstrip48Filled', \"48\", [\"M10.25 8A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h27.5C41.2 40 44 37.2 44 33.75v-19.5C44 10.8 41.2 8 37.75 8h-27.5ZM10 15.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 14c.83 0 1.5.67 1.5 1.5v1a1.5 1.5 0 0 1-3 0v-1c0-.83.67-1.5 1.5-1.5ZM10 23.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 22c.83 0 1.5.67 1.5 1.5v1a1.5 1.5 0 0 1-3 0v-1c0-.83.67-1.5 1.5-1.5ZM10 31.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 30c.83 0 1.5.67 1.5 1.5v1a1.5 1.5 0 0 1-3 0v-1c0-.83.67-1.5 1.5-1.5Z\"]);\nexport const Filmstrip48Regular = /*#__PURE__*/createFluentIcon('Filmstrip48Regular', \"48\", [\"M10 15.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 14c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 23.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 22c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 31.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 30c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM4 14.25C4 10.8 6.8 8 10.25 8h27.5C41.2 8 44 10.8 44 14.25v19.5C44 37.2 41.2 40 37.75 40h-27.5A6.25 6.25 0 0 1 4 33.75v-19.5Zm6.25-3.75a3.75 3.75 0 0 0-3.75 3.75v19.5a3.75 3.75 0 0 0 3.75 3.75h27.5a3.75 3.75 0 0 0 3.75-3.75v-19.5a3.75 3.75 0 0 0-3.75-3.75h-27.5Z\"]);\nexport const FilmstripImage20Filled = /*#__PURE__*/createFluentIcon('FilmstripImage20Filled', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H7v-2.5A3.5 3.5 0 0 1 10.5 7H14V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm0 2c.28 0 .5.22.5.5V5a.5.5 0 0 1-1 0v-.5c0-.28.22-.5.5-.5Zm7.5.5V5a.5.5 0 0 1-1 0v-.5a.5.5 0 0 1 1 0ZM4.5 6.75c.28 0 .5.22.5.5v.5a.5.5 0 0 1-1 0v-.5c0-.28.22-.5.5-.5ZM5 10v.5a.5.5 0 0 1-1 0V10a.5.5 0 0 1 1 0Zm3 .5A2.5 2.5 0 0 1 10.5 8h5a2.5 2.5 0 0 1 2.5 2.5v5c0 .51-.15.98-.41 1.38L14.2 13.5a1.71 1.71 0 0 0-2.42 0l-3.38 3.38C8.15 16.48 8 16 8 15.5v-5Zm6 .5a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-4.88 6.59c.4.26.87.41 1.38.41h5c.5 0 .98-.15 1.38-.41L13.5 14.2a.71.71 0 0 0-1 0l-3.38 3.38Z\"]);\nexport const FilmstripImage20Regular = /*#__PURE__*/createFluentIcon('FilmstripImage20Regular', \"20\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5V7h-1V4.5c0-.83-.67-1.5-1.5-1.5h-7C3.67 3 3 3.67 3 4.5v6c0 .83.67 1.5 1.5 1.5H7v1H4.5A2.5 2.5 0 0 1 2 10.5v-6ZM16 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-8-.5A2.5 2.5 0 0 1 10.5 8h5a2.5 2.5 0 0 1 2.5 2.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 8 15.5v-5ZM10.5 9C9.67 9 9 9.67 9 10.5v5c0 .23.05.45.15.65l2.64-2.65a1.71 1.71 0 0 1 2.42 0l2.64 2.65c.1-.2.15-.42.15-.65v-5c0-.83-.67-1.5-1.5-1.5h-5Zm2 5.2-2.65 2.65c.2.1.42.15.65.15h5c.23 0 .45-.05.65-.15l-2.65-2.64a.71.71 0 0 0-1 0ZM4.5 4c.28 0 .5.22.5.5V5a.5.5 0 0 1-1 0v-.5c0-.28.22-.5.5-.5Zm7.5.5a.5.5 0 0 0-1 0V5a.5.5 0 0 0 1 0v-.5ZM4.5 6.75c.28 0 .5.22.5.5v.5a.5.5 0 0 1-1 0v-.5c0-.28.22-.5.5-.5ZM5 10a.5.5 0 0 0-1 0v.5a.5.5 0 0 0 1 0V10Z\"]);\nexport const FilmstripImage24Filled = /*#__PURE__*/createFluentIcon('FilmstripImage24Filled', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h9.5C16.55 2 18 3.46 18 5.25V8h-5.75A4.25 4.25 0 0 0 8 12.25V16H5.25A3.25 3.25 0 0 1 2 12.75v-7.5ZM4.75 4a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 4.75 4Zm.75 4.75a.75.75 0 0 0-1.5 0v.5a.75.75 0 0 0 1.5 0v-.5ZM15.25 4a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75ZM5.5 12.75a.75.75 0 0 0-1.5 0v.5a.75.75 0 0 0 1.5 0v-.5Zm3.5-.5C9 10.45 10.46 9 12.25 9h6.5c1.8 0 3.25 1.46 3.25 3.25v6.5c0 .6-.17 1.18-.46 1.67l-4.49-4.31c-.86-.81-2.2-.81-3.07 0l-4.5 4.34c-.3-.5-.48-1.08-.48-1.7v-6.5Zm8.75 2.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm-5.5 7.5c-.63 0-1.21-.18-1.71-.49l4.46-4.3a.75.75 0 0 1 1.03 0l4.47 4.28c-.5.32-1.1.51-1.75.51h-6.5Z\"]);\nexport const FilmstripImage24Regular = /*#__PURE__*/createFluentIcon('FilmstripImage24Regular', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h9.5C16.55 2 18 3.46 18 5.25V8h-1.5V5.25c0-.97-.78-1.75-1.75-1.75h-9.5c-.97 0-1.75.78-1.75 1.75v7.5c0 .97.78 1.75 1.75 1.75H8V16H5.25A3.25 3.25 0 0 1 2 12.75v-7.5Zm17 8a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm-10-1C9 10.45 10.46 9 12.25 9h6.5c1.8 0 3.25 1.46 3.25 3.25v6.5c0 1.8-1.46 3.25-3.25 3.25h-6.5A3.25 3.25 0 0 1 9 18.75v-6.5Zm3.25-1.75c-.97 0-1.75.78-1.75 1.75v6.5c0 .19.03.37.09.54l3.39-3.18c.87-.81 2.2-.81 3.07 0l3.37 3.15c.05-.16.08-.33.08-.51v-6.5c0-.97-.78-1.75-1.75-1.75h-6.5Zm0 10h6.5c.24 0 .46-.05.66-.13l-3.38-3.17a.75.75 0 0 0-1.03 0l-3.38 3.18c.2.08.4.12.63.12ZM5.75 5c.41 0 .75.34.75.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.41.34-.75.75-.75Zm.75 3.75a.75.75 0 0 0-1.5 0v.5a.75.75 0 0 0 1.5 0v-.5ZM14.25 5c.41 0 .75.34.75.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.41.34-.75.75-.75ZM6.5 11.75a.75.75 0 0 0-1.5 0v.5a.75.75 0 0 0 1.5 0v-.5Z\"]);\nexport const FilmstripOff48Filled = /*#__PURE__*/createFluentIcon('FilmstripOff48Filled', \"48\", [\"m38.22 39.98 3.65 3.65a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76l2.72 2.73A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h27.5c.16 0 .31 0 .47-.02ZM44 33.75c0 1.57-.58 3.01-1.54 4.11l-4.64-4.64c.11-.21.18-.46.18-.72v-1a1.5 1.5 0 0 0-2.74-.84L12.6 8h25.15C41.2 8 44 10.8 44 14.25v19.5ZM10 15.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 14c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 23.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 22c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 31.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1Z\"]);\nexport const FilmstripOff48Regular = /*#__PURE__*/createFluentIcon('FilmstripOff48Regular', \"48\", [\"m38.22 39.98 3.65 3.65a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76l2.72 2.73A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40h27.5c.16 0 .31 0 .47-.02Zm-2.49-2.48H10.25a3.75 3.75 0 0 1-3.75-3.75v-19.5c0-1.62 1.02-3 2.46-3.52L35.73 37.5ZM44 33.75c0 1.57-.58 3.01-1.54 4.11l-1.78-1.77c.51-.64.82-1.46.82-2.34v-19.5a3.75 3.75 0 0 0-3.75-3.75H15.1L12.6 8h25.15C41.2 8 44 10.8 44 14.25v19.5Zm-6-1.25c0 .26-.07.5-.18.72l-2.56-2.56a1.5 1.5 0 0 1 2.74.84v1Zm-28-17a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 14c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 23.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1ZM36.5 22c-.83 0-1.5.67-1.5 1.5v1a1.5 1.5 0 0 0 3 0v-1c0-.83-.67-1.5-1.5-1.5ZM10 31.5a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1-3 0v-1Z\"]);\nexport const FilmstripPlay16Filled = /*#__PURE__*/createFluentIcon('FilmstripPlay16Filled', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h9a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 12.5 3h-9Zm9 2c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5ZM12 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3.5 5c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5ZM3 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm4-3c0-.39.35-.63.62-.43l2.2 1.56c.24.17.24.57 0 .74l-2.2 1.56c-.27.2-.62-.04-.62-.43v-3Z\"]);\nexport const FilmstripPlay16Regular = /*#__PURE__*/createFluentIcon('FilmstripPlay16Regular', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h9a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 12.5 3h-9ZM2 5.5C2 4.67 2.67 4 3.5 4h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 2 10.5v-5ZM12.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM12 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM3 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm4-3c0-.39.35-.63.62-.43l2.2 1.56c.24.17.24.57 0 .74l-2.2 1.56c-.27.2-.62-.04-.62-.43v-3Z\"]);\nexport const FilmstripPlay20Filled = /*#__PURE__*/createFluentIcon('FilmstripPlay20Filled', \"20\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Zm10.5 2c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5Zm-.5 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5-3.5c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5ZM4 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 5.5c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0v-1c0-.28.22-.5.5-.5ZM4 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm4-1.37c0-.49.46-.79.83-.54l2.94 1.95c.3.2.3.72 0 .92l-2.94 1.95c-.37.25-.83-.05-.83-.54V8.13Z\"]);\nexport const FilmstripPlay20Regular = /*#__PURE__*/createFluentIcon('FilmstripPlay20Regular', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM3 6.5C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-7ZM15.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Zm-.5 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5-3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 5.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm4-1.37c0-.49.46-.79.83-.54l2.94 1.95c.3.2.3.72 0 .92l-2.94 1.95c-.37.25-.83-.05-.83-.54V8.13Z\"]);\nexport const FilmstripPlay24Filled = /*#__PURE__*/createFluentIcon('FilmstripPlay24Filled', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25Zm14 3c.41 0 .75.34.75.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.41.34-.75.75-.75Zm-.75 8.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm.75-4.75c.41 0 .75.34.75.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.41.34-.75.75-.75ZM4 7.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM4.75 15c.41 0 .75.34.75.75v.5a.75.75 0 0 1-1.5 0v-.5c0-.41.34-.75.75-.75ZM4 11.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm6-2c0-.58.58-.94 1.03-.65l3.68 2.35c.39.24.39.86 0 1.1l-3.68 2.35c-.45.29-1.03-.07-1.03-.65v-4.5Z\"]);\nexport const FilmstripPlay24Regular = /*#__PURE__*/createFluentIcon('FilmstripPlay24Regular', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM3.5 7.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75H5.25c-.97 0-1.75-.78-1.75-1.75v-9.5ZM18.25 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm-.75 8.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm.75-4.75a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75ZM5 7.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM5.75 15a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75ZM5 11.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm5-2c0-.58.58-.94 1.03-.65l3.68 2.35c.39.24.39.86 0 1.1l-3.68 2.35c-.45.29-1.03-.07-1.03-.65v-4.5Z\"]);\nexport const FilmstripPlay32Filled = /*#__PURE__*/createFluentIcon('FilmstripPlay32Filled', \"32\", [\"M6.5 4A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h19a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 25.5 4h-19ZM26 8a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0V9a1 1 0 0 1 1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm1 5a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1ZM5 9a1 1 0 0 1 2 0v2a1 1 0 1 1-2 0V9Zm1 5a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm8-7.95c0-.81.88-1.31 1.58-.9l5.6 3.27a.9.9 0 0 1 0 1.54l-5.6 3.28c-.7.4-1.58-.1-1.58-.9v-6.3Z\"]);\nexport const FilmstripPlay32Regular = /*#__PURE__*/createFluentIcon('FilmstripPlay32Regular', \"32\", [\"M6.5 4A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h19a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 25.5 4h-19ZM4 8.5A2.5 2.5 0 0 1 6.5 6h19A2.5 2.5 0 0 1 28 8.5v15a2.5 2.5 0 0 1-2.5 2.5h-19A2.5 2.5 0 0 1 4 23.5v-15ZM25 8a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1ZM6 9a1 1 0 0 1 2 0v2a1 1 0 1 1-2 0V9Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm7-7.95c0-.81.88-1.31 1.58-.9l5.6 3.27a.9.9 0 0 1 0 1.54l-5.6 3.28c-.7.4-1.58-.1-1.58-.9v-6.3Z\"]);\nexport const FilmstripSplit16Filled = /*#__PURE__*/createFluentIcon('FilmstripSplit16Filled', \"16\", [\"M8.5 1.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM1 5.5A2.5 2.5 0 0 1 3.5 3h3v10h-3A2.5 2.5 0 0 1 1 10.5v-5Zm2 0v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0ZM3.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Zm6 4V3h3A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-3ZM12 5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const FilmstripSplit16Regular = /*#__PURE__*/createFluentIcon('FilmstripSplit16Regular', \"16\", [\"M8.5 1.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM1 5.5A2.5 2.5 0 0 1 3.5 3h3v1h-3C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h3v1h-3A2.5 2.5 0 0 1 1 10.5v-5ZM9.5 4V3h3A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-3v-1h3c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-3ZM12 5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 3.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM3 5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM3.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const FilmstripSplit20Filled = /*#__PURE__*/createFluentIcon('FilmstripSplit20Filled', \"20\", [\"M10.5 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM2 7a3 3 0 0 1 3-3h3.5v12H5a3 3 0 0 1-3-3V7Zm2.5-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 13.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0v1ZM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Zm7 7V4H15a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3h-3.5ZM15 7.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0v1Zm.5 4.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM15 9.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-1 0Z\"]);\nexport const FilmstripSplit20Regular = /*#__PURE__*/createFluentIcon('FilmstripSplit20Regular', \"20\", [\"M10.5 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM2 6.5A2.5 2.5 0 0 1 4.5 4h4v1h-4C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h4v1h-4A2.5 2.5 0 0 1 2 13.5v-7ZM11.5 5V4h4A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-4v-1h4c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-4ZM15 6.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1Zm.5 5.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM15 9.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM4.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5ZM4 12.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM4.5 9a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Z\"]);\nexport const FilmstripSplit24Filled = /*#__PURE__*/createFluentIcon('FilmstripSplit24Filled', \"24\", [\"M12.75 2.75a.75.75 0 0 0-1.5 0v18.5a.75.75 0 0 0 1.5 0V2.75ZM2 7.25C2 5.45 3.46 4 5.25 4h5v16h-5A3.25 3.25 0 0 1 2 16.75v-9.5ZM4.75 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 4.75 7ZM4 15.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0ZM4.75 11a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm9 9V4h5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25h-5ZM18.5 7.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0Zm.75 7.25a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm-.75-3.25v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-1.5 0Z\"]);\nexport const FilmstripSplit24Regular = /*#__PURE__*/createFluentIcon('FilmstripSplit24Regular', \"24\", [\"M12.75 2.75a.75.75 0 0 0-1.5 0v18.5a.75.75 0 0 0 1.5 0V2.75ZM2 7.25C2 5.45 3.46 4 5.25 4h5v1.5h-5c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h5V20h-5A3.25 3.25 0 0 1 2 16.75v-9.5ZM13.75 5.5V4h5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25h-5v-1.5h5c.97 0 1.75-.78 1.75-1.75v-9.5c0-.97-.78-1.75-1.75-1.75h-5Zm3.75 2.25a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5Zm.75 7.25a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Zm-.75-3.25a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM5.75 7a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5A.75.75 0 0 0 5.75 7ZM5 15.75a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-1.5 0v-.5ZM5.75 11a.75.75 0 0 0-.75.75v.5a.75.75 0 0 0 1.5 0v-.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const FilmstripSplit32Filled = /*#__PURE__*/createFluentIcon('FilmstripSplit32Filled', \"32\", [\"M17 3a1 1 0 1 0-2 0v26a1 1 0 1 0 2 0V3ZM6.5 4h7v24h-7A4.5 4.5 0 0 1 2 23.5v-15A4.5 4.5 0 0 1 6.5 4ZM6 8a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm-1 7v2a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm19.5 8h-7V4h7A4.5 4.5 0 0 1 30 8.5v15a4.5 4.5 0 0 1-4.5 4.5ZM25 9v2a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm-1 7v2a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0Z\"]);\nexport const FilmstripSplit32Regular = /*#__PURE__*/createFluentIcon('FilmstripSplit32Regular', \"32\", [\"M17 3a1 1 0 1 0-2 0v26a1 1 0 1 0 2 0V3ZM6.5 4h7v2h-7A2.5 2.5 0 0 0 4 8.5v15A2.5 2.5 0 0 0 6.5 26h7v2h-7A4.5 4.5 0 0 1 2 23.5v-15A4.5 4.5 0 0 1 6.5 4Zm19 22h-7v2h7a4.5 4.5 0 0 0 4.5-4.5v-15A4.5 4.5 0 0 0 25.5 4h-7v2h7A2.5 2.5 0 0 1 28 8.5v15a2.5 2.5 0 0 1-2.5 2.5ZM24 9a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0V9Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2ZM7 8a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm-1 7a1 1 0 1 1 2 0v2a1 1 0 1 1-2 0v-2Zm1 5a1 1 0 0 0-1 1v2a1 1 0 1 0 2 0v-2a1 1 0 0 0-1-1Z\"]);\nexport const Filter12Filled = /*#__PURE__*/createFluentIcon('Filter12Filled', \"12\", [\"M1 2.75c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 1 2.75Zm2 3c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 3 5.75ZM5.25 8a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z\"]);\nexport const Filter12Regular = /*#__PURE__*/createFluentIcon('Filter12Regular', \"12\", [\"M1 2.5c0-.28.22-.5.5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5Zm2 3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM5 8a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H5Z\"]);\nexport const Filter16Filled = /*#__PURE__*/createFluentIcon('Filter16Filled', \"16\", [\"M1.75 3.75c0-.41.34-.75.75-.75h11a.75.75 0 0 1 0 1.5h-11a.75.75 0 0 1-.75-.75Zm2 4c0-.41.34-.75.75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm2 4c0-.41.34-.75.75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z\"]);\nexport const Filter16Regular = /*#__PURE__*/createFluentIcon('Filter16Regular', \"16\", [\"M2 3.5c0-.28.22-.5.5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5Zm2 4c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm2 4c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Z\"]);\nexport const Filter20Filled = /*#__PURE__*/createFluentIcon('Filter20Filled', \"20\", [\"M12.25 13.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Zm2-4.25a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h8.5Zm2-4.25a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5h12.5Z\"]);\nexport const Filter20Regular = /*#__PURE__*/createFluentIcon('Filter20Regular', \"20\", [\"M7.5 13h5a.5.5 0 0 1 .09 1H7.5a.5.5 0 0 1-.09-1h5.09-5Zm-2-4h9a.5.5 0 0 1 .09 1H5.5a.5.5 0 0 1-.09-1h9.09-9Zm-2-4h13a.5.5 0 0 1 .09 1H3.5a.5.5 0 0 1-.09-1H16.5h-13Z\"]);\nexport const Filter24Filled = /*#__PURE__*/createFluentIcon('Filter24Filled', \"24\", [\"M10 16h4a1 1 0 0 1 .12 2H10a1 1 0 0 1-.12-2H14h-4Zm-2-5h8a1 1 0 0 1 .12 2H8a1 1 0 0 1-.12-2H16 8ZM5 6h14a1 1 0 0 1 .12 2H5a1 1 0 0 1-.12-2H19 5Z\"]);\nexport const Filter24Regular = /*#__PURE__*/createFluentIcon('Filter24Regular', \"24\", [\"M13.5 16a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm3-5a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1 0-1.5h9Zm3-5a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1 0-1.5h15Z\"]);\nexport const Filter28Filled = /*#__PURE__*/createFluentIcon('Filter28Filled', \"28\", [\"M17 19a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2h6Zm4-6a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2h14Zm3-6a1 1 0 1 1 0 2H4a1 1 0 0 1 0-2h20Z\"]);\nexport const Filter28Regular = /*#__PURE__*/createFluentIcon('Filter28Regular', \"28\", [\"M17.25 19a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h6.5Zm4-6a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1 0-1.5h14.5Zm3-6a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1 0-1.5h20.5Z\"]);\nexport const FilterAdd20Filled = /*#__PURE__*/createFluentIcon('FilterAdd20Filled', \"20\", [\"M17 9.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48Zm-2.15-6.1a.5.5 0 0 0-.85.36V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5a.5.5 0 0 0-.15-.35ZM9.02 5a5.57 5.57 0 0 0 .07 1.5H3.75a.75.75 0 0 1 0-1.5h5.27Zm1.46 4.25a5.5 5.5 0 0 0 2.38 1.5H5.75a.75.75 0 0 1 0-1.5h4.73Zm1.77 4.25a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Z\"]);\nexport const FilterAdd20Regular = /*#__PURE__*/createFluentIcon('FilterAdd20Regular', \"20\", [\"M17 9.24a4.5 4.5 0 1 1-5-7.48 4.5 4.5 0 0 1 5 7.48Zm-2.15-6.1a.5.5 0 0 0-.85.36V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5a.5.5 0 0 0-.15-.35ZM9.02 5H3.41a.5.5 0 0 0 .09 1h5.52a5.57 5.57 0 0 1 0-1Zm1.24 4H5.4a.5.5 0 0 0 .09 1h5.84c-.4-.28-.77-.62-1.08-1ZM7.4 13h5.09a.5.5 0 0 1 .09 1H7.5a.5.5 0 0 1-.09-1Z\"]);\nexport const FilterDismiss16Filled = /*#__PURE__*/createFluentIcon('FilterDismiss16Filled', \"16\", [\"M6.26 9a5.52 5.52 0 0 0 1.95 1.5H3.5a.75.75 0 0 1 0-1.5h2.76ZM5.02 5a5.57 5.57 0 0 0 .07 1.5H1.5a.75.75 0 0 1 0-1.5h3.52Zm.48 8a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Zm5-3a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7L11.21 5.5l1.14 1.15a.5.5 0 0 1-.7.7L10.5 6.21 9.35 7.35a.5.5 0 1 1-.7-.7L9.79 5.5 8.65 4.35a.5.5 0 1 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const FilterDismiss16Regular = /*#__PURE__*/createFluentIcon('FilterDismiss16Regular', \"16\", [\"M6.26 9c.31.38.67.72 1.08 1H3.5a.5.5 0 0 1 0-1h2.76ZM5.02 5a5.57 5.57 0 0 0 0 1H1.5a.5.5 0 0 1 0-1h3.52Zm.48 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm5-3a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7L11.21 5.5l1.14 1.15a.5.5 0 0 1-.7.7L10.5 6.21 9.35 7.35a.5.5 0 1 1-.7-.7L9.79 5.5 8.65 4.35a.5.5 0 1 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const FilterDismiss20Filled = /*#__PURE__*/createFluentIcon('FilterDismiss20Filled', \"20\", [\"M11.73 10.25A5.46 5.46 0 0 0 14 11c0 .41-.34.75-.75.75h-8.5a.75.75 0 0 1 0-1.5h6.98ZM9.03 6c.04.52.16 1.03.34 1.5H2.75a.75.75 0 0 1 0-1.5h6.27ZM12 15.25a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h4.5c.41 0 .75-.34.75-.75ZM14.5 10a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7L15.21 5.5l1.14 1.15a.5.5 0 0 1-.7.7L14.5 6.21l-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const FilterDismiss20Regular = /*#__PURE__*/createFluentIcon('FilterDismiss20Regular', \"20\", [\"M9.2 7H2.42a.5.5 0 0 0 .09 1h7.1c-.16-.32-.3-.65-.4-1Zm2.8 8.5a.5.5 0 0 0-.5-.5H6.41a.5.5 0 0 0 .09 1h5.09a.5.5 0 0 0 .41-.5Zm1.5-4.5H4.41a.5.5 0 0 0 .09 1h9.09a.5.5 0 0 0-.09-1Zm1-1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7L15.21 5.5l1.14 1.15a.5.5 0 0 1-.7.7L14.5 6.21l-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const FilterDismiss24Filled = /*#__PURE__*/createFluentIcon('FilterDismiss24Filled', \"24\", [\"M23 7.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L18.21 7.5l1.64-1.65a.5.5 0 0 0-.7-.7L17.5 6.79l-1.65-1.64Z\", \"M8 11h4.02c.52.8 1.2 1.49 2.01 2H8a1 1 0 0 1-.12-2H8Z\", \"M5 6h6.17a6.52 6.52 0 0 0-.15 2H5a1 1 0 0 1-.12-2H5Z\", \"M9.88 16H14a1 1 0 0 1 .12 2H10a1 1 0 0 1-.12-2Z\"]);\nexport const FilterDismiss24Regular = /*#__PURE__*/createFluentIcon('FilterDismiss24Regular', \"24\", [\"M23 7.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L18.21 7.5l1.64-1.65a.5.5 0 0 0-.7-.7L17.5 6.79l-1.65-1.64Z\", \"M13.35 12.5a6.54 6.54 0 0 1-1.33-1.5H7.5a.75.75 0 0 0 0 1.5h5.85Z\", \"M11 7.5c0-.52.06-1.02.17-1.5H4.5a.75.75 0 0 0 0 1.5H11Z\", \"M13.5 16a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z\"]);\nexport const FilterSync20Filled = /*#__PURE__*/createFluentIcon('FilterSync20Filled', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.98 1.98 0 0 0-1.72-.1 2 2 0 0 0-.66.44.5.5 0 1 1-.71-.71A3 3 0 0 1 16 3.15V3c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 13 7.85V8a.5.5 0 0 1-1 0V6.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.98 1.98 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 1 1 .71.71 3 3 0 0 1-1 .66ZM14 10.98a5.46 5.46 0 0 1-2.27-.73H4.75a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 .75-.77ZM9.37 7.5c-.18-.47-.3-.98-.35-1.5H2.75a.75.75 0 0 0 0 1.5h6.62Zm1.88 7a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5h4.5Z\"]);\nexport const FilterSync20Regular = /*#__PURE__*/createFluentIcon('FilterSync20Regular', \"20\", [\"M10 5.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.98 1.98 0 0 0-1.72-.1 2 2 0 0 0-.66.44.5.5 0 1 1-.71-.71A3 3 0 0 1 16 3.15V3c0-.28.22-.5.5-.5Zm-.88 5.53A3 3 0 0 1 13 7.85V8a.5.5 0 0 1-1 0V6.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.98 1.98 0 0 0 1.72.1 2 2 0 0 0 .66-.44.5.5 0 1 1 .71.71 3 3 0 0 1-1 .66ZM2.5 7h6.7c.1.35.24.68.4 1H2.5a.5.5 0 0 1-.09-1h.09Zm9 8a.5.5 0 0 1 .09 1H6.5a.5.5 0 0 1-.09-1h5.09Zm-7-4h9a.5.5 0 0 1 .09 1H4.5a.5.5 0 0 1-.09-1h.09Z\"]);","import { createFluentIcon } from \"../utils/createFluentIcon\";\nexport const PlugDisconnected20Regular = /*#__PURE__*/createFluentIcon('PlugDisconnected20Regular', \"20\", [\"M17.85 2.15c.2.2.2.5 0 .7L16.2 4.52a4.04 4.04 0 0 1-.34 5.33l-.3.3-.3.31c-.42.41-1.08.41-1.5 0L9.55 6.24a1.05 1.05 0 0 1 0-1.48l.6-.61a4.04 4.04 0 0 1 5.34-.34l1.67-1.66c.2-.2.5-.2.7 0Zm-2.71 2.7a3.04 3.04 0 0 0-4.29 0l-.3.3c-.19.2-.19.5 0 .7l3.6 3.6c.2.19.5.19.7 0l.3-.3a3.04 3.04 0 0 0 0-4.29l-.01-.01Zm-5.79 3.8c.2.2.2.5 0 .7L7.71 11 9 12.3l1.65-1.65a.5.5 0 0 1 .7.7L9.71 13l.44.45c.59.58.59 1.52 0 2.1l-.3.3a4.04 4.04 0 0 1-5.33.34l-1.67 1.66a.5.5 0 0 1-.7-.7l1.66-1.67a4.04 4.04 0 0 1 .34-5.33l.3-.3a1.49 1.49 0 0 1 2.1 0l.45.44 1.65-1.64c.2-.2.5-.2.7 0Zm-4.5 6.5a3.04 3.04 0 0 0 4.3 0l.3-.3c.19-.2.19-.5 0-.7l-3.6-3.6c-.2-.19-.5-.19-.7 0l-.3.3a3.04 3.04 0 0 0 0 4.3Z\"]);\nexport const PlugDisconnected24Filled = /*#__PURE__*/createFluentIcon('PlugDisconnected24Filled', \"24\", [\"M21.7 3.7a1 1 0 0 0-1.4-1.4l-1.8 1.79a4.25 4.25 0 0 0-5.26.6l-1.06 1.07c-.69.69-.69 1.8 0 2.48l3.58 3.58c.69.69 1.8.69 2.48 0l1.07-1.06a4.25 4.25 0 0 0 .6-5.26l1.8-1.8Zm-11 8a1 1 0 0 0-1.4-1.4l-1.48 1.46-.29-.29a.75.75 0 0 0-1.06 0l-1.78 1.77a4.25 4.25 0 0 0-.6 5.26l-1.8 1.8a1 1 0 1 0 1.42 1.4l1.8-1.79a4.25 4.25 0 0 0 5.25-.6l1.77-1.78c.3-.3.3-.77 0-1.06l-.3-.3 1.48-1.46a1 1 0 0 0-1.42-1.42l-1.47 1.47-1.58-1.58 1.47-1.47Z\"]);\nexport const PlugDisconnected24Regular = /*#__PURE__*/createFluentIcon('PlugDisconnected24Regular', \"24\", [\"M21.78 3.28a.75.75 0 0 0-1.06-1.06l-2.01 2.01a4.25 4.25 0 0 0-5.47.46l-1.06 1.07c-.69.69-.69 1.8 0 2.48l3.58 3.58c.69.69 1.8.69 2.48 0l1.07-1.06a4.25 4.25 0 0 0 .46-5.47l2.01-2.01Zm-3.59 2.48.03.02.02.03a2.75 2.75 0 0 1 0 3.88l-1.06 1.07c-.1.1-.26.1-.36 0l-3.58-3.58a.25.25 0 0 1 0-.36l1.07-1.06a2.75 2.75 0 0 1 3.88 0Zm-7.41 5.52a.75.75 0 1 0-1.06-1.06L8 11.94l-.47-.47a.75.75 0 0 0-1.06 0l-1.78 1.77a4.25 4.25 0 0 0-.46 5.47l-2.01 2.01a.75.75 0 1 0 1.06 1.06l2.01-2.01a4.25 4.25 0 0 0 5.47-.46l1.77-1.78c.3-.3.3-.77 0-1.06l-.47-.47 1.72-1.72a.75.75 0 1 0-1.06-1.06L11 14.94 9.06 13l1.72-1.72Zm-3.31 2.25 3 3 .47.47-1.25 1.24a2.75 2.75 0 0 1-3.88 0l-.05-.05a2.75 2.75 0 0 1 0-3.88L7 13.06l.47.47Z\"]);\nexport const PlugDisconnected28Filled = /*#__PURE__*/createFluentIcon('PlugDisconnected28Filled', \"28\", [\"M22.74 6.33a5.5 5.5 0 0 1-.5 7.2l-1.94 1.95c-.3.3-.77.3-1.06 0l-6.72-6.71a.75.75 0 0 1 0-1.06l1.95-1.95a5.5 5.5 0 0 1 7.2-.5l3.05-3.04a.75.75 0 0 1 1.06 1.06l-3.04 3.05Zm-9.96 5.95a.75.75 0 0 0-1.06-1.06l-2.13 2.12-.82-.82a.75.75 0 0 0-1.06 0l-1.95 1.94a5.5 5.5 0 0 0-.5 7.22l-3.04 3.04a.75.75 0 1 0 1.06 1.06l3.05-3.04a5.5 5.5 0 0 0 7.21-.5l1.95-1.94c.29-.3.29-.77 0-1.06l-.83-.83 2.12-2.13a.75.75 0 1 0-1.06-1.06l-2.12 2.13-2.95-2.95 2.13-2.12Z\"]);\nexport const PlugDisconnected28Regular = /*#__PURE__*/createFluentIcon('PlugDisconnected28Regular', \"28\", [\"M22.74 6.33a5.5 5.5 0 0 1-.5 7.2l-1.94 1.95c-.3.3-.77.3-1.06 0l-6.72-6.71a.75.75 0 0 1 0-1.06l1.95-1.95a5.5 5.5 0 0 1 7.2-.5l3.05-3.04a.75.75 0 0 1 1.06 1.06l-3.04 3.05Zm-2.97 7.56 1.41-1.41a4 4 0 1 0-5.65-5.66L14.1 8.24l5.66 5.65Zm-7-2.68c.3.3.3.77 0 1.07l-2.12 2.12 2.95 2.95 2.12-2.13a.75.75 0 0 1 1.06 1.06l-2.12 2.13.83.83c.29.29.29.76 0 1.06l-1.95 1.94a5.5 5.5 0 0 1-7.21.5l-3.05 3.04a.75.75 0 0 1-1.06-1.06l3.05-3.04a5.5 5.5 0 0 1 .5-7.22l1.94-1.94c.29-.3.76-.3 1.06 0l.82.82 2.13-2.13c.29-.29.76-.29 1.06 0ZM6.84 21.2a4 4 0 0 0 5.65 0l1.41-1.42-5.65-5.66-1.42 1.41a4 4 0 0 0 0 5.65v.01h.01Z\"]);\nexport const PlugDisconnected48Filled = /*#__PURE__*/createFluentIcon('PlugDisconnected48Filled', \"48\", [\"M43.63 4.37c.5.48.5 1.28 0 1.76l-4.91 4.92a9.25 9.25 0 0 1-.74 12.24l-3.35 3.34c-.48.5-1.28.5-1.76 0l-11.5-11.5a1.25 1.25 0 0 1 0-1.76l3.34-3.35a9.25 9.25 0 0 1 12.24-.74l4.92-4.91a1.25 1.25 0 0 1 1.76 0ZM9.28 36.95l-4.91 4.92a1.25 1.25 0 0 0 1.76 1.76l4.92-4.91a9.25 9.25 0 0 0 12.24-.74l3.34-3.35c.5-.48.5-1.28 0-1.76l-1.36-1.37 3.36-3.37a1.25 1.25 0 0 0-1.76-1.76l-3.37 3.36-5.23-5.23 3.36-3.37a1.25 1.25 0 0 0-1.76-1.76l-3.37 3.36-1.37-1.36a1.25 1.25 0 0 0-1.76 0l-3.35 3.34a9.25 9.25 0 0 0-.74 12.24Z\"]);\nexport const PlugDisconnected48Regular = /*#__PURE__*/createFluentIcon('PlugDisconnected48Regular', \"48\", [\"M43.63 4.37c.5.48.5 1.28 0 1.76l-4.91 4.92a9.25 9.25 0 0 1-.74 12.24l-3.35 3.34c-.48.5-1.28.5-1.76 0l-11.5-11.5a1.25 1.25 0 0 1 0-1.76l3.34-3.35a9.25 9.25 0 0 1 12.24-.74l4.92-4.91a1.25 1.25 0 0 1 1.76 0Zm-7.6 7.42a6.75 6.75 0 0 0-9.55 0l-2.46 2.46 9.73 9.73 2.46-2.46a6.75 6.75 0 0 0 0-9.54l-.19-.19ZM9.27 36.95l-4.91 4.92a1.25 1.25 0 0 0 1.76 1.76l4.92-4.91a9.25 9.25 0 0 0 12.24-.74l3.34-3.35c.5-.48.5-1.28 0-1.76l-1.36-1.37 3.36-3.37a1.25 1.25 0 0 0-1.76-1.76l-3.37 3.36-5.23-5.23 3.36-3.37a1.25 1.25 0 0 0-1.76-1.76l-3.37 3.36-1.37-1.36a1.25 1.25 0 0 0-1.76 0l-3.35 3.34a9.25 9.25 0 0 0-.74 12.24Zm2.51-10.47 2.46-2.46 9.73 9.73-2.46 2.46a6.75 6.75 0 0 1-9.54 0l-.19-.19a6.75 6.75 0 0 1 0-9.54Z\"]);\nexport const PointScan20Filled = /*#__PURE__*/createFluentIcon('PointScan20Filled', \"20\", [\"M9 2.5a.5.5 0 0 0-1 0v4.02A5 5 0 0 0 3.52 11H8V6.52a5.07 5.07 0 0 1 1 0V2.5ZM2.5 11h1.02a5.06 5.06 0 0 0 0 1H2.5a.5.5 0 0 1 0-1ZM8 17.5v-1.02a5.07 5.07 0 0 0 1 0v1.02a.5.5 0 0 1-1 0Zm5.48-5.5h4.02a.5.5 0 0 0 0-1h-4.02a5.07 5.07 0 0 1 0 1H9v4.48A5 5 0 0 0 13.48 12ZM8 16.48A5 5 0 0 1 3.52 12H8v4.48ZM9 11h4.48A5 5 0 0 0 9 6.52V11Z\"]);\nexport const PointScan20Regular = /*#__PURE__*/createFluentIcon('PointScan20Regular', \"20\", [\"M8.5 2c.28 0 .5.22.5.5v4.02A5 5 0 0 1 13.48 11h4.02a.5.5 0 0 1 0 1h-4.02A5 5 0 0 1 9 16.48v1.02a.5.5 0 0 1-1 0v-1.02A5 5 0 0 1 3.52 12H2.5a.5.5 0 0 1 0-1h1.02A5 5 0 0 1 8 6.52V2.5c0-.28.22-.5.5-.5ZM4.53 12A4 4 0 0 0 8 15.47V12H4.53ZM8 11V7.53A4 4 0 0 0 4.53 11H8Zm1 1v3.47A4 4 0 0 0 12.47 12H9Zm3.47-1A4 4 0 0 0 9 7.53V11h3.47Z\"]);\nexport const PointScan24Filled = /*#__PURE__*/createFluentIcon('PointScan24Filled', \"24\", [\"M10.25 2c.38 0 .7.28.74.65l.01.1v4.8A6.25 6.25 0 0 1 16.46 13h4.79a.75.75 0 0 1 .1 1.5H16.45A6.25 6.25 0 0 1 11 19.96v1.29a.75.75 0 0 1-1.5.1V19.95a6.25 6.25 0 0 1-5.46-5.45H2.75a.75.75 0 0 1-.1-1.5H4.05A6.25 6.25 0 0 1 9.5 7.54V2.75c0-.41.34-.75.75-.75Zm0 5.5c-.25 0-.5.01-.75.04V13H4.04a6.31 6.31 0 0 0 0 1.5H9.5v5.46a6.3 6.3 0 0 0 1.5 0V14.5h5.46a6.31 6.31 0 0 0 0-1.5H11V7.54c-.25-.03-.5-.04-.75-.04Z\"]);\nexport const PointScan24Regular = /*#__PURE__*/createFluentIcon('PointScan24Regular', \"24\", [\"M10.25 2c.38 0 .7.28.74.65l.01.1v4.8A6.25 6.25 0 0 1 16.46 13h4.79a.75.75 0 0 1 .1 1.5H16.45A6.25 6.25 0 0 1 11 19.96v1.29a.75.75 0 0 1-1.5.1V19.95a6.25 6.25 0 0 1-5.46-5.45H2.75a.75.75 0 0 1-.1-1.5H4.05A6.25 6.25 0 0 1 9.5 7.54V2.75c0-.41.34-.75.75-.75ZM9.5 14.5H5.56a4.75 4.75 0 0 0 3.94 3.94V14.5Zm5.44 0H11v3.94a4.75 4.75 0 0 0 3.94-3.94ZM9.5 9.06A4.75 4.75 0 0 0 5.56 13H9.5V9.06Zm1.5 0V13h3.94a4.75 4.75 0 0 0-3.72-3.9L11 9.06Z\"]);\nexport const Poll16Filled = /*#__PURE__*/createFluentIcon('Poll16Filled', \"16\", [\"M6 3a2 2 0 1 1 4 0v10a2 2 0 1 1-4 0V3ZM1 9a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0V9Zm10-2a2 2 0 1 1 4 0v6a2 2 0 1 1-4 0V7Z\"]);\nexport const Poll16Regular = /*#__PURE__*/createFluentIcon('Poll16Regular', \"16\", [\"M8 1a2 2 0 0 0-2 2v10a2 2 0 1 0 4 0V3a2 2 0 0 0-2-2Zm1 2v10a1 1 0 1 1-2 0V3a1 1 0 0 1 2 0ZM3 7a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0V9a2 2 0 0 0-2-2Zm1 6a1 1 0 1 1-2 0V9a1 1 0 0 1 2 0v4Zm7-6a2 2 0 1 1 4 0v6a2 2 0 1 1-4 0V7Zm3 0a1 1 0 1 0-2 0v6a1 1 0 1 0 2 0V7Z\"]);\nexport const Poll20Filled = /*#__PURE__*/createFluentIcon('Poll20Filled', \"20\", [\"M10 2a2 2 0 0 0-2 2v12a2 2 0 1 0 4 0V4a2 2 0 0 0-2-2Zm-6 8a2 2 0 0 0-2 2v4a2 2 0 1 0 4 0v-4a2 2 0 0 0-2-2Zm12-4a2 2 0 0 0-2 2v8a2 2 0 1 0 4 0V8a2 2 0 0 0-2-2Z\"]);\nexport const Poll20Regular = /*#__PURE__*/createFluentIcon('Poll20Regular', \"20\", [\"M8 4a2 2 0 1 1 4 0v12a2 2 0 1 1-4 0V4Zm2-1a1 1 0 0 0-1 1v12a1 1 0 1 0 2 0V4a1 1 0 0 0-1-1Zm-8 9a2 2 0 1 1 4 0v4a2 2 0 1 1-4 0v-4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0v-4a1 1 0 0 0-1-1Zm12-5a2 2 0 0 0-2 2v8a2 2 0 1 0 4 0V8a2 2 0 0 0-2-2Zm-1 2a1 1 0 1 1 2 0v8a1 1 0 1 1-2 0V8Z\"]);\nexport const Poll24Filled = /*#__PURE__*/createFluentIcon('Poll24Filled', \"24\", [\"M11.75 2a2.75 2.75 0 0 1 2.75 2.75v14.5a2.75 2.75 0 1 1-5.5 0V4.75A2.75 2.75 0 0 1 11.75 2Zm7 5a2.75 2.75 0 0 1 2.75 2.75v9.5a2.75 2.75 0 1 1-5.5 0v-9.5A2.75 2.75 0 0 1 18.75 7Zm-14 5a2.75 2.75 0 0 1 2.75 2.75v4.5a2.75 2.75 0 0 1-5.5 0v-4.5A2.75 2.75 0 0 1 4.75 12Z\"]);\nexport const Poll24Regular = /*#__PURE__*/createFluentIcon('Poll24Regular', \"24\", [\"M11.75 2a2.75 2.75 0 0 1 2.75 2.75v14.5a2.75 2.75 0 1 1-5.5 0V4.75A2.75 2.75 0 0 1 11.75 2Zm7 5a2.75 2.75 0 0 1 2.75 2.75v9.5a2.75 2.75 0 1 1-5.5 0v-9.5A2.75 2.75 0 0 1 18.75 7Zm-14 5a2.75 2.75 0 0 1 2.75 2.75v4.5a2.75 2.75 0 0 1-5.5 0v-4.5A2.75 2.75 0 0 1 4.75 12Zm7-8.5c-.69 0-1.25.56-1.25 1.25v14.5a1.25 1.25 0 0 0 2.5 0V4.75c0-.69-.56-1.25-1.25-1.25Zm7 5c-.69 0-1.25.56-1.25 1.25v9.5a1.25 1.25 0 0 0 2.5 0v-9.5c0-.69-.56-1.25-1.25-1.25Zm-14 5c-.69 0-1.25.56-1.25 1.25v4.5a1.25 1.25 0 1 0 2.5 0v-4.5c0-.69-.56-1.25-1.25-1.25Z\"]);\nexport const PollHorizontal16Filled = /*#__PURE__*/createFluentIcon('PollHorizontal16Filled', \"16\", [\"M13 6a2 2 0 1 1 0 4H3a2 2 0 1 1 0-4h10ZM7 1a2 2 0 1 1 0 4H3a2 2 0 1 1 0-4h4Zm2 10a2 2 0 1 1 0 4H3a2 2 0 1 1 0-4h6Z\"]);\nexport const PollHorizontal16Regular = /*#__PURE__*/createFluentIcon('PollHorizontal16Regular', \"16\", [\"M15 8a2 2 0 0 0-2-2H3a2 2 0 1 0 0 4h10a2 2 0 0 0 2-2Zm-2 1H3a1 1 0 1 1 0-2h10a1 1 0 1 1 0 2ZM9 3a2 2 0 0 0-2-2H3a2 2 0 1 0 0 4h4a2 2 0 0 0 2-2ZM3 4a1 1 0 0 1 0-2h4a1 1 0 0 1 0 2H3Zm6 7a2 2 0 1 1 0 4H3a2 2 0 1 1 0-4h6Zm0 3a1 1 0 1 0 0-2H3a1 1 0 1 0 0 2h6Z\"]);\nexport const PollHorizontal20Filled = /*#__PURE__*/createFluentIcon('PollHorizontal20Filled', \"20\", [\"M18 10a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h12a2 2 0 0 0 2-2Zm-8-6a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h4a2 2 0 0 0 2-2Zm4 12a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h8a2 2 0 0 0 2-2Z\"]);\nexport const PollHorizontal20Regular = /*#__PURE__*/createFluentIcon('PollHorizontal20Regular', \"20\", [\"M16 8a2 2 0 1 1 0 4H4a2 2 0 1 1 0-4h12Zm1 2a1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h12a1 1 0 0 0 1-1ZM8 2a2 2 0 1 1 0 4H4a2 2 0 1 1 0-4h4Zm1 2a1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm5 12a2 2 0 0 0-2-2H4a2 2 0 1 0 0 4h8a2 2 0 0 0 2-2Zm-2-1a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2h8Z\"]);\nexport const PollHorizontal24Filled = /*#__PURE__*/createFluentIcon('PollHorizontal24Filled', \"24\", [\"M22 11.75a2.75 2.75 0 0 1-2.75 2.75H4.75a2.75 2.75 0 1 1 0-5.5h14.5A2.75 2.75 0 0 1 22 11.75Zm-5 7a2.75 2.75 0 0 1-2.75 2.75h-9.5a2.75 2.75 0 1 1 0-5.5h9.5A2.75 2.75 0 0 1 17 18.75Zm-5-14A2.75 2.75 0 0 1 9.25 7.5h-4.5a2.75 2.75 0 1 1 0-5.5h4.5A2.75 2.75 0 0 1 12 4.75Z\"]);\nexport const PollHorizontal24Regular = /*#__PURE__*/createFluentIcon('PollHorizontal24Regular', \"24\", [\"M22 11.75a2.75 2.75 0 0 1-2.75 2.75H4.75a2.75 2.75 0 1 1 0-5.5h14.5A2.75 2.75 0 0 1 22 11.75Zm-5 7a2.75 2.75 0 0 1-2.75 2.75h-9.5a2.75 2.75 0 1 1 0-5.5h9.5A2.75 2.75 0 0 1 17 18.75Zm-5-14A2.75 2.75 0 0 1 9.25 7.5h-4.5a2.75 2.75 0 1 1 0-5.5h4.5A2.75 2.75 0 0 1 12 4.75Zm8.5 7c0-.69-.56-1.25-1.25-1.25H4.75a1.25 1.25 0 0 0 0 2.5h14.5c.69 0 1.25-.56 1.25-1.25Zm-5 7c0-.69-.56-1.25-1.25-1.25h-9.5a1.25 1.25 0 0 0 0 2.5h9.5c.69 0 1.25-.56 1.25-1.25Zm-5-14c0-.69-.56-1.25-1.25-1.25h-4.5a1.25 1.25 0 1 0 0 2.5h4.5c.69 0 1.25-.56 1.25-1.25Z\"]);\nexport const PortHdmi20Filled = /*#__PURE__*/createFluentIcon('PortHdmi20Filled', \"20\", [\"M4.85 7.44A1.5 1.5 0 0 1 5.91 7h8.18c.4 0 .78.16 1.06.44l2.41 2.41c.28.28.44.67.44 1.06v.59c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 11.5v-.59c0-.4.16-.78.44-1.06l2.41-2.41ZM6.5 9.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const PortHdmi20Regular = /*#__PURE__*/createFluentIcon('PortHdmi20Regular', \"20\", [\"M4.85 7.44A1.5 1.5 0 0 1 5.91 7h8.18c.4 0 .78.16 1.06.44l2.41 2.41c.28.28.44.67.44 1.06v.59c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 11.5v-.59c0-.4.16-.78.44-1.06l2.41-2.41ZM5.91 8a.5.5 0 0 0-.35.15l-2.41 2.41a.5.5 0 0 0-.15.35v.59c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5v-.59a.5.5 0 0 0-.15-.35l-2.41-2.41a.5.5 0 0 0-.35-.15H5.9ZM6 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 6 10Z\"]);\nexport const PortHdmi24Filled = /*#__PURE__*/createFluentIcon('PortHdmi24Filled', \"24\", [\"m21.41 11.41-2.82-2.82A2 2 0 0 0 17.17 8H6.83a2 2 0 0 0-1.42.59l-2.82 2.82A2 2 0 0 0 2 12.83V14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-1.17a2 2 0 0 0-.59-1.42ZM17 12a.75.75 0 0 1-.75.75h-8.5a.75.75 0 1 1 0-1.5h8.5A.76.76 0 0 1 17 12Z\"]);\nexport const PortHdmi24Regular = /*#__PURE__*/createFluentIcon('PortHdmi24Regular', \"24\", [\"M21.41 11.41 18.6 8.6A2 2 0 0 0 17.17 8H6.83a2 2 0 0 0-1.42.59L2.6 11.4A2 2 0 0 0 2 12.83V14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-1.17a2 2 0 0 0-.59-1.42ZM20.5 14a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5v-1.17a.5.5 0 0 1 .15-.36l2.82-2.82a.5.5 0 0 1 .36-.15h10.34a.5.5 0 0 1 .36.15l2.82 2.82a.5.5 0 0 1 .15.36V14Zm-4.25-2.75h-8.5a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5Z\"]);\nexport const PortMicroUsb20Filled = /*#__PURE__*/createFluentIcon('PortMicroUsb20Filled', \"20\", [\"M6.43 8.3c.26-.2.58-.3.9-.3h5.34c.32 0 .64.1.9.3l1.33 1A1.5 1.5 0 0 1 14 12H6a1.5 1.5 0 0 1-.9-2.7l1.33-1Z\"]);\nexport const PortMicroUsb20Regular = /*#__PURE__*/createFluentIcon('PortMicroUsb20Regular', \"20\", [\"M6.43 8.3c.26-.2.58-.3.9-.3h5.34c.32 0 .64.1.9.3l1.33 1A1.5 1.5 0 0 1 14 12H6a1.5 1.5 0 0 1-.9-2.7l1.33-1Zm.9.7a.5.5 0 0 0-.3.1l-1.33 1a.5.5 0 0 0 .3.9h8a.5.5 0 0 0 .3-.9l-1.33-1a.5.5 0 0 0-.3-.1H7.33Z\"]);\nexport const PortMicroUsb24Filled = /*#__PURE__*/createFluentIcon('PortMicroUsb24Filled', \"24\", [\"M19 12.83V13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-.17a2 2 0 0 1 .59-1.42l1.82-1.82A2 2 0 0 1 8.83 9h6.34a2 2 0 0 1 1.42.59l1.82 1.82a2 2 0 0 1 .59 1.42Z\"]);\nexport const PortMicroUsb24Regular = /*#__PURE__*/createFluentIcon('PortMicroUsb24Regular', \"24\", [\"M15.17 10.5a.5.5 0 0 1 .36.15l1.82 1.82a.5.5 0 0 1 .15.36V13a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5v-.17a.5.5 0 0 1 .15-.36l1.82-1.82a.5.5 0 0 1 .36-.15h6.34Zm0-1.5H8.83a2 2 0 0 0-1.42.59L5.6 11.4A2 2 0 0 0 5 12.83V13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-.17a2 2 0 0 0-.59-1.42L16.6 9.6A2 2 0 0 0 15.17 9Z\"]);\nexport const PortUsbA20Filled = /*#__PURE__*/createFluentIcon('PortUsbA20Filled', \"20\", [\"M4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11Zm0 1.5h11V10h-11V8.5Z\"]);\nexport const PortUsbA20Regular = /*#__PURE__*/createFluentIcon('PortUsbA20Regular', \"20\", [\"M4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11ZM4 8.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5V10H4V8.5Z\"]);\nexport const PortUsbA24Filled = /*#__PURE__*/createFluentIcon('PortUsbA24Filled', \"24\", [\"M18 8H6a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2ZM6 10h12v2H6v-2Z\"]);\nexport const PortUsbA24Regular = /*#__PURE__*/createFluentIcon('PortUsbA24Regular', \"24\", [\"M18 8H6a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2ZM5.5 10a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .5.5v2h-13v-2Z\"]);\nexport const PortUsbC20Filled = /*#__PURE__*/createFluentIcon('PortUsbC20Filled', \"20\", [\"M4.5 10c0-1.1.9-2 2-2h7a2 2 0 1 1 0 4h-7a2 2 0 0 1-2-2Z\"]);\nexport const PortUsbC20Regular = /*#__PURE__*/createFluentIcon('PortUsbC20Regular', \"20\", [\"M4.5 10c0-1.1.9-2 2-2h7a2 2 0 1 1 0 4h-7a2 2 0 0 1-2-2Zm2-1a1 1 0 0 0 0 2h7a1 1 0 1 0 0-2h-7Z\"]);\nexport const PortUsbC24Filled = /*#__PURE__*/createFluentIcon('PortUsbC24Filled', \"24\", [\"M19 12a3 3 0 0 1-3 3H8a3 3 0 0 1 0-6h8a3 3 0 0 1 3 3Z\"]);\nexport const PortUsbC24Regular = /*#__PURE__*/createFluentIcon('PortUsbC24Regular', \"24\", [\"M16 10.5a1.5 1.5 0 1 1 0 3H8a1.5 1.5 0 1 1 0-3h8ZM16 9H8a3 3 0 1 0 0 6h8a3 3 0 0 0 0-6Z\"]);\nexport const PositionBackward20Filled = /*#__PURE__*/createFluentIcon('PositionBackward20Filled', \"20\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V6H9.5A3.5 3.5 0 0 0 6 9.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6ZM9.5 7A2.5 2.5 0 0 0 7 9.5v6A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7h-6ZM8 9.5C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);\nexport const PositionBackward20Regular = /*#__PURE__*/createFluentIcon('PositionBackward20Regular', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H6v-1.7l-.7.7h-.8a1.5 1.5 0 0 1-.65-.15L6 9.71V9.5c0-.57.14-1.11.38-1.59l-3.23 3.24A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3h.94c.23 0 .45.05.65.15L7.9 6.38A3.49 3.49 0 0 1 9.5 6h.2l2.15-2.15c.1.2.15.42.15.65v.8l-.7.7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6ZM3 4.5C3 3.67 3.67 3 4.5 3h.65L3 5.15V4.5Zm0 2.06L6.56 3h1.59L3 8.15V6.56ZM7 9.5A2.5 2.5 0 0 1 9.5 7h6A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5v-6ZM9.5 8C8.67 8 8 8.67 8 9.5v6c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5h-6Z\"]);\nexport const PositionBackward24Filled = /*#__PURE__*/createFluentIcon('PositionBackward24Filled', \"24\", [\"M16.5 6.5h-5.75a4.25 4.25 0 0 0-4.25 4.25v5.75H5.25A3.25 3.25 0 0 1 2 13.25v-8C2 3.45 3.46 2 5.25 2h8c1.8 0 3.25 1.46 3.25 3.25V6.5ZM22 18.75c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25v-8c0-1.8 1.46-3.25 3.25-3.25h8c1.8 0 3.25 1.46 3.25 3.25v8Zm-3.25 1.75c.97 0 1.75-.78 1.75-1.75v-8c0-.97-.78-1.75-1.75-1.75h-8C9.78 9 9 9.78 9 10.75v8c0 .97.78 1.75 1.75 1.75h8Z\"]);\nexport const PositionBackward24Regular = /*#__PURE__*/createFluentIcon('PositionBackward24Regular', \"24\", [\"M6.5 16.5H5.25A3.25 3.25 0 0 1 2 13.25v-8C2 3.45 3.46 2 5.25 2h8c1.8 0 3.25 1.46 3.25 3.25V6.5h-1.65l.15-.15v-1.1c0-.23-.04-.45-.13-.65l-1.9 1.9h-2.12l2.92-2.92a1.75 1.75 0 0 0-.52-.08h-1.28L3.5 11.97v1.28c0 .18.03.36.08.52l2.92-2.92v2.12l-1.9 1.9c.2.09.42.13.65.13h1.1l.15-.15v1.65Zm3.35-13H7.97L3.5 7.97v1.88L9.85 3.5Zm-4 0h-.6c-.97 0-1.75.78-1.75 1.75v.6L5.85 3.5ZM22 18.75c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25v-8c0-1.8 1.46-3.25 3.25-3.25h8c1.8 0 3.25 1.46 3.25 3.25v8Zm-3.25 1.75c.97 0 1.75-.78 1.75-1.75v-8c0-.97-.78-1.75-1.75-1.75h-8C9.78 9 9 9.78 9 10.75v8c0 .97.78 1.75 1.75 1.75h8Z\"]);\nexport const PositionForward20Filled = /*#__PURE__*/createFluentIcon('PositionForward20Filled', \"20\", [\"M7 14v1.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H14v1h1.5c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5V14H7ZM2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 10.5v-6Z\"]);\nexport const PositionForward20Regular = /*#__PURE__*/createFluentIcon('PositionForward20Regular', \"20\", [\"M7 14v1.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H14v1h1.5c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5V14H7ZM2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 10.5v-6ZM4.5 3C3.67 3 3 3.67 3 4.5v.65L5.15 3H4.5Zm2.06 0L3 6.56v1.59L8.15 3H6.56ZM3 10.5c0 .23.05.45.15.65l8-8A1.5 1.5 0 0 0 10.5 3h-.94L3 9.56v.94ZM4.5 12h.8L12 5.3v-.8c0-.23-.05-.45-.15-.65l-8 8c.2.1.42.15.65.15Zm5.2 0h.8c.83 0 1.5-.67 1.5-1.5v-.8L9.7 12Zm-1.4 0L12 8.3V6.7L6.7 12h1.6Z\"]);\nexport const PositionForward24Filled = /*#__PURE__*/createFluentIcon('PositionForward24Filled', \"24\", [\"M13.25 16.5c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25h-8A3.25 3.25 0 0 0 2 5.25v8c0 1.8 1.46 3.25 3.25 3.25h8Zm-5.75 1H9v1.25c0 .97.78 1.75 1.75 1.75h8c.97 0 1.75-.78 1.75-1.75v-8c0-.97-.78-1.75-1.75-1.75H17.5V7.5h1.25c1.8 0 3.25 1.46 3.25 3.25v8c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25V17.5Z\"]);\nexport const PositionForward24Regular = /*#__PURE__*/createFluentIcon('PositionForward24Regular', \"24\", [\"M18.75 22c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25H17.5V9h1.25c.97 0 1.75.78 1.75 1.75v8c0 .97-.78 1.75-1.75 1.75h-8c-.97 0-1.75-.78-1.75-1.75V17.5H7.5v1.25c0 1.8 1.46 3.25 3.25 3.25h8Zm-5.5-5.5c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25h-8A3.25 3.25 0 0 0 2 5.25v8c0 1.8 1.46 3.25 3.25 3.25h8ZM15 13.25c0 .97-.78 1.75-1.75 1.75h-.78L15 12.47v.78Zm0-2.78L10.47 15h-2L15 8.47v2ZM6.35 15h-1.1c-.23 0-.45-.04-.65-.13L14.87 4.6c.09.2.13.42.13.65v1.1L6.35 15Zm-2.77-1.23a1.75 1.75 0 0 1-.08-.52v-1.28l8.47-8.47h1.28c.18 0 .36.03.52.08L3.57 13.77ZM3.5 9.85V7.97L7.97 3.5h1.88L3.5 9.85Zm0-4v-.6c0-.97.78-1.75 1.75-1.75h.6L3.5 5.85Z\"]);\nexport const PositionToBack20Filled = /*#__PURE__*/createFluentIcon('PositionToBack20Filled', \"20\", [\"M12 14c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3ZM5 9h1.3C7.8 9 9 7.8 9 6.3V5h3.5A2.5 2.5 0 0 1 15 7.5V11h-1.3a2.7 2.7 0 0 0-2.7 2.7V15H7.5A2.5 2.5 0 0 1 5 12.5V9ZM1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z\"]);\nexport const PositionToBack20Regular = /*#__PURE__*/createFluentIcon('PositionToBack20Regular', \"20\", [\"M12 14c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-3ZM5 9v3.5A2.5 2.5 0 0 0 7.5 15H11v-1H9.7l1.67-1.66c.23-.4.57-.74.97-.97L14 9.7V11h1V7.5A2.5 2.5 0 0 0 12.5 5H9v1h1.3L8.62 7.66c-.23.4-.57.74-.97.97L6 10.3V9H5Zm6.7-3h.8c.23 0 .45.05.65.15l-7 7A1.5 1.5 0 0 1 6 12.5v-.8L11.7 6Zm-4.2 8a1.5 1.5 0 0 1-.65-.15l7-7c.1.2.15.42.15.65v.8L8.3 14h-.8ZM1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z\"]);\nexport const PositionToBack24Filled = /*#__PURE__*/createFluentIcon('PositionToBack24Filled', \"24\", [\"M6 11h1.25A3.75 3.75 0 0 0 11 7.25V6h3.75C16.55 6 18 7.46 18 9.25V13h-1.25A3.75 3.75 0 0 0 13 16.75V18H9.25A3.25 3.25 0 0 1 6 14.75V11ZM1 3.75A2.75 2.75 0 0 1 3.75 1h3.5A2.75 2.75 0 0 1 10 3.75v3.5A2.75 2.75 0 0 1 7.25 10h-3.5A2.75 2.75 0 0 1 1 7.25v-3.5ZM3.75 2.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM14 16.75A2.75 2.75 0 0 1 16.75 14h3.5A2.75 2.75 0 0 1 23 16.75v3.5A2.75 2.75 0 0 1 20.25 23h-3.5A2.75 2.75 0 0 1 14 20.25v-3.5Zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-3.5Z\"]);\nexport const PositionToBack24Regular = /*#__PURE__*/createFluentIcon('PositionToBack24Regular', \"24\", [\"M14 16.75A2.75 2.75 0 0 1 16.75 14h3.5A2.75 2.75 0 0 1 23 16.75v3.5A2.75 2.75 0 0 1 20.25 23h-3.5A2.75 2.75 0 0 1 14 20.25v-3.5Zm2.75-1.25c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-3.5ZM6 11v3.75C6 16.55 7.46 18 9.25 18H13v-1.5h-.32l.37-.37a3.75 3.75 0 0 1 3.08-3.08l.37-.37v.33l.25-.01H18V9.25C18 7.45 16.54 6 14.75 6H11v1.5h.56l-.68.68a3.76 3.76 0 0 1-2.7 2.7l-.68.68V11l-.25.01H6Zm7.68-3.5h1.07c.24 0 .47.05.68.14l-7.8 7.79c-.08-.21-.13-.44-.13-.68v-1.07l6.18-6.18Zm-4.43 9c-.17 0-.34-.02-.5-.07l7.68-7.68c.05.16.07.33.07.5v1.31l-5.94 5.94H9.25ZM1 3.75A2.75 2.75 0 0 1 3.75 1h3.5A2.75 2.75 0 0 1 10 3.75v3.5A2.75 2.75 0 0 1 7.25 10h-3.5A2.75 2.75 0 0 1 1 7.25v-3.5ZM3.75 2.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h3.5c.69 0 1.25-.56 1.25-1.25v-3.5c0-.69-.56-1.25-1.25-1.25h-3.5Z\"]);\nexport const PositionToFront20Filled = /*#__PURE__*/createFluentIcon('PositionToFront20Filled', \"20\", [\"M1 3c0-1.1.9-2 2-2h3a2 2 0 0 1 2 2v1h-.5c-.17 0-.34.01-.5.04V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h1.04C4 7.16 4 7.33 4 7.5V8H3a2 2 0 0 1-2-2V3Zm11 13v1c0 1.1.9 2 2 2h3a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2h-1v.5c0 .17-.01.34-.04.5H17a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-1.04c-.16.03-.33.04-.5.04H12ZM5 7.5A2.5 2.5 0 0 1 7.5 5h5A2.5 2.5 0 0 1 15 7.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 12.5v-5Z\"]);\nexport const PositionToFront20Regular = /*#__PURE__*/createFluentIcon('PositionToFront20Regular', \"20\", [\"M3 1a2 2 0 0 0-2 2v3c0 1.1.9 2 2 2h1v-.5c0-.17.01-.34.04-.5H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v1.04C7.16 4 7.33 4 7.5 4H8V3a2 2 0 0 0-2-2H3Zm9 16v-1h.5c.17 0 .34-.01.5-.04V17a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-1.04c.03-.16.04-.33.04-.5V12h1a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2ZM5 7.5A2.5 2.5 0 0 1 7.5 5h5A2.5 2.5 0 0 1 15 7.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 12.5v-5Zm2.28-1.48a1.5 1.5 0 0 0-1.26 1.26l1.26-1.26ZM6 10.29 10.3 6H8.7L6 8.7v1.6ZM11.7 6 6 11.7v.8c0 .23.05.45.15.65l7-7A1.5 1.5 0 0 0 12.5 6h-.8Zm-4.2 8h.8L14 8.3v-.8c0-.23-.05-.45-.15-.65l-7 7c.2.1.42.15.65.15Zm2.2 0h1.6l2.7-2.7V9.7L9.7 14Zm3.02-.02a1.5 1.5 0 0 0 1.26-1.26l-1.26 1.26Z\"]);\nexport const PositionToFront24Filled = /*#__PURE__*/createFluentIcon('PositionToFront24Filled', \"24\", [\"M1 3.75A2.75 2.75 0 0 1 3.75 1h3.5A2.75 2.75 0 0 1 10 3.75V5h-.75c-.26 0-.5.02-.75.07V3.75c0-.69-.56-1.25-1.25-1.25h-3.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h1.32c-.05.24-.07.5-.07.75V10H3.75A2.75 2.75 0 0 1 1 7.25v-3.5ZM14 19v1.25A2.75 2.75 0 0 0 16.75 23h3.5A2.75 2.75 0 0 0 23 20.25v-3.5A2.75 2.75 0 0 0 20.25 14H19v.75c0 .26-.02.5-.07.75h1.32c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-3.5c-.69 0-1.25-.56-1.25-1.25v-1.32c-.24.05-.5.07-.75.07H14ZM6 9.25C6 7.45 7.46 6 9.25 6h5.5C16.55 6 18 7.46 18 9.25v5.5c0 1.8-1.46 3.25-3.25 3.25h-5.5A3.25 3.25 0 0 1 6 14.75v-5.5Z\"]);\nexport const PositionToFront24Regular = /*#__PURE__*/createFluentIcon('PositionToFront24Regular', \"24\", [\"M1 3.75A2.75 2.75 0 0 1 3.75 1h3.5A2.75 2.75 0 0 1 10 3.75V5h-.75c-.26 0-.5.02-.75.07V3.75c0-.69-.56-1.25-1.25-1.25h-3.5c-.69 0-1.25.56-1.25 1.25v3.5c0 .69.56 1.25 1.25 1.25h1.32c-.05.24-.07.5-.07.75V10H3.75A2.75 2.75 0 0 1 1 7.25v-3.5ZM14 19v1.25A2.75 2.75 0 0 0 16.75 23h3.5A2.75 2.75 0 0 0 23 20.25v-3.5A2.75 2.75 0 0 0 20.25 14H19v.75c0 .26-.02.5-.07.75h1.32c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-3.5c-.69 0-1.25-.56-1.25-1.25v-1.32c-.24.05-.5.07-.75.07H14ZM9.25 6A3.25 3.25 0 0 0 6 9.25v5.5C6 16.55 7.46 18 9.25 18h5.5c1.8 0 3.25-1.46 3.25-3.25v-5.5C18 7.45 16.54 6 14.75 6h-5.5Zm2.31 1.5L7.5 11.56V9.68L9.68 7.5h1.88ZM7.5 13.68l6.18-6.18h1.07c.24 0 .47.05.68.14l-7.8 7.79c-.08-.21-.13-.44-.13-.68v-1.07Zm1.25 2.75 7.68-7.68c.05.16.07.33.07.5v1.31l-5.94 5.94H9.25c-.17 0-.34-.02-.5-.07Zm5.94.07h-2l3.81-3.82v2.07l-.03-.03-1.78 1.78Z\"]);\nexport const Power20Filled = /*#__PURE__*/createFluentIcon('Power20Filled', \"20\", [\"M10.75 2.5a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0v-6Zm3 1.5a.75.75 0 1 0-.76 1.3A6 6 0 1 1 7 5.3.75.75 0 1 0 6.25 4a7.5 7.5 0 1 0 7.5 0Z\"]);\nexport const Power20Regular = /*#__PURE__*/createFluentIcon('Power20Regular', \"20\", [\"M10.5 2.5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0v-6ZM13.74 4a.5.5 0 1 0-.5.87 6.5 6.5 0 1 1-6.49 0 .5.5 0 1 0-.5-.87 7.5 7.5 0 1 0 7.5 0Z\"]);\nexport const Power24Filled = /*#__PURE__*/createFluentIcon('Power24Filled', \"24\", [\"M8.2 4.84a1 1 0 0 1 .85 1.82 7 7 0 1 0 5.92 0 1 1 0 0 1 .84-1.8 9 9 0 1 1-7.6-.02ZM12 2a1 1 0 0 1 1 .88V10a1 1 0 0 1-2 .12V3a1 1 0 0 1 1-1Z\"]);\nexport const Power24Regular = /*#__PURE__*/createFluentIcon('Power24Regular', \"24\", [\"M8.2 4.82a.75.75 0 0 1 .64 1.36 7.51 7.51 0 1 0 6.34 0 .75.75 0 1 1 .63-1.35 9 9 0 1 1-7.6-.01ZM12 2.5c.38 0 .7.28.74.64v7.6a.75.75 0 0 1-1.48.1l-.01-.1v-7.5c0-.4.33-.74.75-.74Z\"]);\nexport const Power28Filled = /*#__PURE__*/createFluentIcon('Power28Filled', \"28\", [\"M15 3a1 1 0 1 0-2 0v9a1 1 0 1 0 2 0V3Zm-4.6 3.75a1 1 0 1 0-.8-1.83 11 11 0 1 0 8.8 0 1 1 0 0 0-.8 1.83 9 9 0 1 1-7.2 0Z\"]);\nexport const Power28Regular = /*#__PURE__*/createFluentIcon('Power28Regular', \"28\", [\"M10.69 5.27a.75.75 0 0 1-.4.98 9.5 9.5 0 1 0 7.42 0 .75.75 0 0 1 .58-1.38 11 11 0 1 1-8.58 0c.38-.16.82.02.98.4ZM14 2c.41 0 .75.34.75.75v9.5a.75.75 0 0 1-1.5 0v-9.5c0-.41.34-.75.75-.75Z\"]);\nexport const Predictions20Filled = /*#__PURE__*/createFluentIcon('Predictions20Filled', \"20\", [\"M14.5 1c.28 0 .5.22.5.5 0 .46.07 1.22.47 1.84.38.6 1.08 1.14 2.53 1.14a.5.5 0 1 1 0 1 3.5 3.5 0 0 0-1.82.73A2.77 2.77 0 0 0 15 8.45a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-.5-.16-1.26-.6-1.88-.44-.6-1.16-1.1-2.4-1.1a.5.5 0 0 1-.5-.5c0-.27.22-.5.5-.5.51 0 1.25 0 1.87-.36.57-.33 1.13-1 1.13-2.61 0-.28.22-.5.5-.5ZM6.15 12.17l-.94 3.4c-.17.61.08 1.34.74 1.63 1.64.73 4.65 1.35 7.97.01a1.43 1.43 0 0 0 .82-1.75l-.98-3.23a6.5 6.5 0 0 1-7.61-.06Zm6.77-9.84c-.04.22-.1.38-.16.5a.97.97 0 0 1-.4.42c-.34.2-.82.23-1.36.23a1.5 1.5 0 1 0 0 2.98c.91 0 1.34.35 1.58.7.3.4.42.95.42 1.3a1.5 1.5 0 0 0 1.61 1.48A5.5 5.5 0 0 1 4.5 6.96a5.48 5.48 0 0 1 8.42-4.63Z\"]);\nexport const Predictions20Regular = /*#__PURE__*/createFluentIcon('Predictions20Regular', \"20\", [\"M14.5 1c.28 0 .5.22.5.5 0 .46.07 1.22.47 1.84.38.6 1.08 1.14 2.53 1.14a.5.5 0 1 1 0 1 3.5 3.5 0 0 0-1.82.73A2.77 2.77 0 0 0 15 8.45a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-.5-.16-1.26-.6-1.88-.44-.6-1.16-1.1-2.4-1.1a.5.5 0 0 1-.5-.5c0-.27.22-.5.5-.5.51 0 1.25 0 1.87-.36.57-.33 1.13-1 1.13-2.61 0-.28.22-.5.5-.5Zm.04 2.73a2.95 2.95 0 0 1-1.33 1.33 3.53 3.53 0 0 1 1.33 1.48 4.2 4.2 0 0 1 1.52-1.44 3.22 3.22 0 0 1-1.52-1.37Zm-7.26 6.8A4.46 4.46 0 0 1 10 2.5c.9 0 1.74.26 2.44.72a.99.99 0 0 0 .32-.38c.06-.12.12-.28.16-.5A5.5 5.5 0 0 0 4.5 6.96c0 1.67.75 3.16 1.93 4.16l-1.22 4.44c-.17.62.08 1.35.74 1.64 1.64.73 4.65 1.35 7.97.01a1.43 1.43 0 0 0 .82-1.75l-1.26-4.17a.49.49 0 0 0-.03-.07c.45-.36.85-.8 1.16-1.28a1.53 1.53 0 0 1-1.01-.3 4.5 4.5 0 0 1-6.32.89Zm5.3 1.26 1.2 3.96c.07.24-.05.46-.23.54a9.36 9.36 0 0 1-7.19 0c-.14-.06-.24-.24-.18-.47l1.12-4.1a5.5 5.5 0 0 0 5.28.07Z\"]);\nexport const Predictions24Filled = /*#__PURE__*/createFluentIcon('Predictions24Filled', \"24\", [\"m16.68 14.93 1.29 3.85c.26.8-.08 1.67-.81 2.08-1.37.77-3.1 1.14-5.16 1.14s-3.79-.37-5.16-1.14a1.75 1.75 0 0 1-.8-2.08l1.28-3.85a7.72 7.72 0 0 0 9.36 0ZM12 2c1.34 0 2.58.39 3.63 1.06-.08.31-.2.54-.37.7-.25.26-.68.42-1.32.47l-.22.02h-.38c-2.17.16-2.12 3.5.16 3.5.89 0 1.46.18 1.76.49.26.25.42.68.47 1.32l.02.22v.38c.1 1.32 1.36 1.81 2.34 1.5A6.75 6.75 0 1 1 12 2Zm6.25 0c0 1.15.27 1.96.78 2.47.47.47 1.2.74 2.21.78h.26c.96 0 1 1.38.12 1.5h-.12c-1.15 0-1.96.27-2.47.78-.47.47-.74 1.2-.78 2.21V10c0 1-1.5 1-1.5 0 0-1.15-.27-1.96-.78-2.47-.47-.47-1.2-.74-2.21-.78h-.26c-.96 0-1-1.38-.12-1.5h.12c1.15 0 1.96-.27 2.47-.78.51-.51.78-1.32.78-2.47 0-1 1.5-1 1.5 0Z\"]);\nexport const Predictions24Regular = /*#__PURE__*/createFluentIcon('Predictions24Regular', \"24\", [\"M12 2c1.15 0 2.24.29 3.19.8-.08.45-.23.76-.43.96-.1.11-.25.2-.43.28A5.25 5.25 0 1 0 11.77 14L12 14a5.28 5.28 0 0 0 4.38-2.35c.64.22 1.4.08 1.9-.4a6.76 6.76 0 0 1-1.93 2.67l1.62 4.86c.26.8-.08 1.67-.81 2.08-1.37.77-3.1 1.14-5.16 1.14s-3.79-.37-5.16-1.14a1.75 1.75 0 0 1-.8-2.08l1.61-4.86A6.74 6.74 0 0 1 12 2Zm3.06 12.8-.36.14h-.02c-.73.32-1.52.51-2.35.55H12.24l-.24.01h-.33a6.68 6.68 0 0 1-2.35-.55l-.02-.01-.36-.15-1.48 4.46c-.04.12 0 .24.11.3 1.13.63 2.6.95 4.43.95 1.83 0 3.3-.32 4.43-.95.1-.06.15-.18.11-.3l-1.48-4.46Zm-3.37.7H12h-.31Zm6.3-13.62L18 2c0 1.15.27 1.96.78 2.47.47.47 1.2.74 2.21.78h.26c.96 0 1 1.38.12 1.5h-.12c-1.15 0-1.96.27-2.47.78-.47.47-.74 1.2-.78 2.21V10c0 1-1.5 1-1.5 0 0-1.15-.27-1.96-.78-2.47-.47-.47-1.2-.74-2.21-.78h-.26c-.96 0-1-1.38-.12-1.5h.12c1.15 0 1.96-.27 2.47-.78.51-.51.78-1.32.78-2.47 0-.96 1.38-1 1.5-.12Zm-.74 3.07-.14.2a3.6 3.6 0 0 1-.9.85 3.64 3.64 0 0 1 1.04 1.05A3.64 3.64 0 0 1 18.3 6a3.64 3.64 0 0 1-.9-.84l-.15-.2Z\"]);\nexport const Premium12Filled = /*#__PURE__*/createFluentIcon('Premium12Filled', \"12\", [\"M3 1h1.05L3 4H1.2l1.35-2.72A.5.5 0 0 1 3 1ZM1.23 5l3.01 4.69L2.97 5H1.23ZM4 5l1.53 5.65a.48.48 0 0 0 .92 0L8 5H4Zm5.02 0L7.76 9.69 10.77 5H9.03Zm1.78-1H9L7.96 1H9c.19 0 .36.1.45.28L10.8 4ZM7.95 4h-3.9l1.06-3H6.9l1.05 3Z\"]);\nexport const Premium12Regular = /*#__PURE__*/createFluentIcon('Premium12Regular', \"12\", [\"M6.99 1H3a.5.5 0 0 0-.45.28l-1.5 3a.5.5 0 0 0 .05.52l4.5 6a.5.5 0 0 0 .58.17.5.5 0 0 0 .23-.18L10.9 4.8a.5.5 0 0 0 .05-.52l-1.5-3A.5.5 0 0 0 9 1H6.99Zm-.35 1 .67 2H4.69l.67-2h1.28Zm1.72 2-.67-2h1l1 2H8.36ZM7.31 5 6 8.92 4.7 5h2.6Zm.14 2.74L8.36 5H9.5L7.45 7.74Zm-2.9 0L2.5 5h1.14l.91 2.74ZM3.64 4H2.31l1-2h1l-.67 2Z\"]);\nexport const Premium16Filled = /*#__PURE__*/createFluentIcon('Premium16Filled', \"16\", [\"M3.75 2a.75.75 0 0 0-.66.4l-2 3.75a.75.75 0 0 0 .07.81l6.25 8a.75.75 0 0 0 1.18 0l6.25-8a.75.75 0 0 0 .07-.81l-2-3.75a.75.75 0 0 0-.66-.4h-8.5Zm-.88 4L4.2 3.5h1.28L4.85 6H2.87Zm.61 1.5h1.55l1.03 3.3-2.58-3.3Zm3.12 0h2.8L8 11.99 6.6 7.5Zm4.37 0h1.55l-2.58 3.3 1.03-3.3ZM13.13 6h-1.98l-.63-2.5h1.28L13.13 6ZM9.6 6H6.4l.62-2.5h1.96L9.6 6Z\"]);\nexport const Premium16Regular = /*#__PURE__*/createFluentIcon('Premium16Regular', \"16\", [\"M3.5 2a.5.5 0 0 0-.45.28l-2 4a.5.5 0 0 0 .06.54l6.5 8a.5.5 0 0 0 .78 0l6.5-8a.5.5 0 0 0 .06-.54l-2-4A.5.5 0 0 0 12.5 2h-9ZM2.3 6l1.5-3h2.06l-.75 3h-2.8Zm.25 1h2.58l1.62 5.16L2.55 7Zm3.63 0h3.64L8 12.82 6.18 7Zm4.69 0h2.58l-4.2 5.16L10.87 7Zm2.82-1h-2.8l-.75-3h2.05l1.5 3ZM9.86 6H6.14l.75-3h2.22l.75 3Z\"]);\nexport const Premium20Filled = /*#__PURE__*/createFluentIcon('Premium20Filled', \"20\", [\"M5.5 2.75a.75.75 0 0 0-.66.39l-2.75 5c-.15.27-.11.6.08.84l7.25 8.75a.75.75 0 0 0 1.16 0l7.25-8.75c.2-.24.23-.57.08-.84l-2.75-5a.75.75 0 0 0-.66-.39h-9ZM4.16 7.5l1.78-3.25h1.5L6.31 7.5H4.16ZM6.14 9l1.93 4.75L4.14 9h2ZM10 14.48 7.76 9h4.39l-2.16 5.48ZM7.89 7.5l1.14-3.25h1.95l1.2 3.25H7.88Zm5.88 0-1.2-3.25h1.49l1.78 3.25h-2.07Zm0 1.5h2.1l-4.01 4.83L13.76 9Z\"]);\nexport const Premium20Regular = /*#__PURE__*/createFluentIcon('Premium20Regular', \"20\", [\"M5.5 3a.5.5 0 0 0-.43.24l-3 5a.5.5 0 0 0 .05.58l7.5 9a.5.5 0 0 0 .76 0l7.5-9a.5.5 0 0 0 .05-.58l-3-5A.5.5 0 0 0 14.5 3h-9ZM3.38 8l2.4-4h1.98l-1.6 4H3.38Zm2.78 1 2.26 5.83L3.57 9h2.59ZM10 16.12 7.23 9h5.54L10 16.12ZM7.24 8l1.6-4h2.32l1.6 4H7.24Zm6.6 0-1.6-4h1.98l2.4 4h-2.78Zm0 1h2.6l-4.86 5.83L13.84 9Z\"]);\nexport const Premium24Filled = /*#__PURE__*/createFluentIcon('Premium24Filled', \"24\", [\"M18 3a1 1 0 0 1 .83.44l.06.11 3 6a1 1 0 0 1-.06 1.01l-.09.1-8.97 9.98a.99.99 0 0 1-.89.35l-.1-.02a.98.98 0 0 1-.54-.32l-8.98-9.98a1 1 0 0 1-.2-1l.05-.12 3-6a1 1 0 0 1 .77-.54L6 3h12Zm-3.42 8H9.42L12 17.34 14.58 11Zm4.17 0h-2.02l-1.66 4.09L18.75 11ZM7.26 11H5.25l3.67 4.09L7.26 11Zm1.36-6h-2l-2 4h2.7l1.3-4Zm4.65 0h-2.54l-1.3 4h5.14l-1.3-4Zm4.11 0h-2l1.3 4h2.7l-2-4Z\"]);\nexport const Premium24Regular = /*#__PURE__*/createFluentIcon('Premium24Regular', \"24\", [\"M18 3c.24 0 .46.12.6.3l.06.1 3.26 6.02.04.1.01.03.02.1v.1c0 .07 0 .14-.02.2l-.05.13-.03.06a.76.76 0 0 1-.08.1l.06-.07-.02.03-9.25 10.5a.72.72 0 0 1-.3.24l-.1.03-.08.02L12 21h-.1l-.12-.03a.72.72 0 0 1-.17-.08h-.01a.67.67 0 0 1-.13-.1l-9.3-10.55-.02-.04-.04-.06a.74.74 0 0 1-.1-.3L2 9.75v-.07l.02-.08.02-.1.02-.05.03-.06 3.25-6a.75.75 0 0 1 .56-.38L6 3h12Zm-3 7.5H9l3 7.69 3-7.69Zm-7.61 0H4.4l5.35 6.07-2.37-6.07Zm12.2 0H16.6l-2.37 6.07 5.35-6.07Zm-10.62-6H6.44L4.01 9h3.52l1.44-4.5Zm4.48 0h-2.9L9.1 9h5.79l-1.44-4.5Zm4.1 0h-2.52L16.47 9h3.52l-2.44-4.5Z\"]);\nexport const Premium28Filled = /*#__PURE__*/createFluentIcon('Premium28Filled', \"28\", [\"M20.75 3c.3 0 .6.14.78.37l.07.11 4.25 7a1 1 0 0 1-.01 1.06l-.08.1-11 13a1 1 0 0 1-1.44.1l-.08-.1-11-13a1 1 0 0 1-.15-1.05l.06-.1 4.25-7A1 1 0 0 1 7.12 3L7.25 3h13.5Zm-3.23 9h-7.04L14 20.67 17.52 12Zm5.32 0h-3.17l-2.91 7.2 6.08-7.2ZM8.33 12H5.16l6.08 7.2L8.33 12Zm1.34-7H7.81l-3.03 5h3.46l1.43-5Zm6.58 0h-4.5l-1.43 5h7.36l-1.43-5Zm3.94 0h-1.87l1.43 5h3.47L20.2 5Z\"]);\nexport const Premium28Regular = /*#__PURE__*/createFluentIcon('Premium28Regular', \"28\", [\"M21.25 3c.24 0 .47.12.6.31l.06.09 4.01 7.51.04.1.01.04.02.08.01.09v.1-.07c0 .1-.02.2-.06.3l-.03.06-.04.06-.05.07L14.6 24.7a.73.73 0 0 1-.38.27l-.06.01-.1.02h-.16l-.08-.02-.1-.04h-.03a.7.7 0 0 1-.25-.19L2.17 11.73l-.06-.1-.05-.08-.03-.1-.03-.13v-.13l.02-.1v-.04l.04-.1.03-.05 4-7.5a.75.75 0 0 1 .56-.4h14.6Zm-3.34 9h-7.82L14 22.16 17.9 12Zm-9.42 0h-4.1l7.37 8.52L8.5 12Zm15.12 0h-4.1l-3.27 8.51L23.61 12ZM10.03 4.5H7.2l-3.2 6h4.42l1.6-6Zm6.4 0h-4.85l-1.6 6h8.04l-1.6-6Zm4.37 0h-2.82l1.6 6H24l-3.2-6Z\"]);\nexport const Premium32Filled = /*#__PURE__*/createFluentIcon('Premium32Filled', \"32\", [\"M7 4c-.48 0-.92.27-1.13.7l-3.75 7.76c-.2.43-.15.95.16 1.33l12.75 15.75a1.25 1.25 0 0 0 1.94 0l12.75-15.75c.3-.38.37-.9.16-1.33L26.13 4.7C25.92 4.27 25.48 4 25 4H7Zm-1.64 7.5 2.42-5h3.7l-1.57 5H5.36Zm.3 2.5h4.1l2.87 8.6L5.67 14Zm6.74 0h7.2L16 24.8 12.4 14Zm9.83 0h4.1l-6.96 8.6 2.86-8.6Zm4.4-2.5H22.1l-1.56-5h3.69l2.42 5Zm-7.16 0h-6.94l1.56-5h3.82l1.56 5Z\"]);\nexport const Premium32Regular = /*#__PURE__*/createFluentIcon('Premium32Regular', \"32\", [\"M7 4a1 1 0 0 0-.9.55l-4 8a1 1 0 0 0 .12 1.08l13 16a1 1 0 0 0 1.56 0l13-16a1 1 0 0 0 .11-1.08l-4-8A1 1 0 0 0 25 4H7Zm-2.38 8 3-6h4.1l-1.5 6h-5.6Zm.48 2h5.17l3.22 10.33L5.1 14Zm7.26 0h7.28L16 25.65 12.36 14Zm9.38 0h5.16l-8.4 10.33L21.75 14Zm5.64-2h-5.6l-1.5-6h4.1l3 6Zm-7.66 0h-7.44l1.5-6h4.44l1.5 6Z\"]);\nexport const PremiumPerson16Filled = /*#__PURE__*/createFluentIcon('PremiumPerson16Filled', \"16\", [\"M3.75 2a.75.75 0 0 0-.66.4l-2 3.75a.75.75 0 0 0 .07.81l4.93 6.32c-.06-.26-.09-.52-.09-.78 0-1 .6-1.87 1.45-2.27L6.6 7.5h.94c.1-.57.35-1.09.72-1.5H6.4l.62-2.5h1.96l.42 1.7a3 3 0 0 1 1.5-.17l-.38-1.53h1.28L13.13 6h-.4a2.99 2.99 0 0 1 .65 2.83l1.46-1.87a.75.75 0 0 0 .07-.81l-2-3.75a.75.75 0 0 0-.66-.4h-8.5Zm-.88 4L4.2 3.5h1.28L4.85 6H2.87Zm.61 1.5h1.55l1.03 3.3-2.58-3.3Zm9.02.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S7 13.75 7 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const PremiumPerson16Regular = /*#__PURE__*/createFluentIcon('PremiumPerson16Regular', \"16\", [\"M3.5 2a.5.5 0 0 0-.45.28l-2 4a.5.5 0 0 0 .06.54l4.9 6.03a2.5 2.5 0 0 1 .19-1.35L2.56 7h2.58l1.29 4.11c.2-.3.48-.57.8-.76L6.19 7h1.5a3 3 0 0 1 .58-1H6.14l.75-3h2.22l.53 2.12a3 3 0 0 1 1-.12l-.5-2h2.05l1.5 3h-.95a3 3 0 0 1 .59 1h.12l-.09.1a3 3 0 0 1 .08 1.5l1.45-1.78a.5.5 0 0 0 .06-.54l-2-4A.5.5 0 0 0 12.5 2h-9ZM2.3 6l1.5-3h2.06l-.75 3h-2.8Zm10.2 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S7 13.75 7 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const PremiumPerson20Filled = /*#__PURE__*/createFluentIcon('PremiumPerson20Filled', \"20\", [\"M5.5 2.75a.75.75 0 0 0-.66.39l-2.75 5c-.15.27-.11.6.08.84l7.25 8.75a.75.75 0 0 0 1.16 0l.48-.59a3.27 3.27 0 0 1-.06-.64c0-1.3 1-2.38 2.27-2.49a2.99 2.99 0 0 1 .17-4.19l.32-.82h4.05l.02-.02c.2-.24.23-.57.08-.84l-2.75-5a.75.75 0 0 0-.66-.39h-9ZM4.16 7.5l1.78-3.25h1.5L6.31 7.5H4.16ZM6.14 9l1.93 4.75L4.14 9h2ZM10 14.48 7.76 9h4.39l-2.16 5.48ZM7.89 7.5l1.14-3.25h1.95l1.2 3.25H7.88Zm5.88 0-1.2-3.25h1.49l1.78 3.25h-2.07ZM17.5 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const PremiumPerson20Regular = /*#__PURE__*/createFluentIcon('PremiumPerson20Regular', \"20\", [\"M5.5 3a.5.5 0 0 0-.43.24l-3 5a.5.5 0 0 0 .05.58l7.49 9a.5.5 0 0 0 .86-.13L13.84 9h3.9l.14-.18a.5.5 0 0 0 .05-.58l-3-5A.5.5 0 0 0 14.5 3h-9Zm7.27 6L10 16.12 7.23 9h5.54ZM3.38 8l2.4-4h1.98l-1.6 4H3.38Zm2.78 1 2.26 5.83L3.57 9h2.59Zm1.08-1 1.6-4h2.32l1.6 4H7.24Zm6.6 0-1.6-4h1.98l2.4 4h-2.78Zm1.66 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Z\"]);\nexport const PremiumPerson24Filled = /*#__PURE__*/createFluentIcon('PremiumPerson24Filled', \"24\", [\"M18.83 3.44A1 1 0 0 0 18 3H5.88a1 1 0 0 0-.77.55l-3 6-.06.13a1 1 0 0 0 .2.99l8.99 9.98c.14.17.33.28.53.32l.11.02a1 1 0 0 0 .89-.35l.26-.29a3.79 3.79 0 0 1-.03-.48v-.1A2.77 2.77 0 0 1 15.77 17h.28a3.49 3.49 0 0 1 2.45-6c.85 0 1.62.3 2.23.8l1.01-1.13.09-.1a1 1 0 0 0 .06-1.02l-3-6-.06-.1ZM9.43 11h5.15L12 17.34 9.42 11Zm-4.18 0h2.01l1.66 4.09L5.25 11Zm1.37-6h2l-1.3 4h-2.7l2-4Zm4.1 0h2.55l1.3 4H9.43l1.3-4Zm4.66 0h2l2 4h-2.7l-1.3-4ZM21 14.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const PremiumPerson24Regular = /*#__PURE__*/createFluentIcon('PremiumPerson24Regular', \"24\", [\"M18 3c.24 0 .46.12.6.3l.06.1 3.26 6.02.04.1.01.03.02.1v.1c0 .07 0 .14-.02.2l-.05.13-.03.06a.8.8 0 0 1-.04.06.75.75 0 0 1-.04.05l.02-.03-1.27 1.45c-.43-.31-.92-.53-1.46-.62l.49-.55H16.6L12.7 20.52c-.12.3-.4.48-.7.48h-.1a.74.74 0 0 1-.1-.03h-.02a.72.72 0 0 1-.17-.08h-.01a.67.67 0 0 1-.13-.1l-9.3-10.55-.02-.04-.04-.06a.74.74 0 0 1-.1-.3L2 9.75v-.07l.02-.08.02-.1.02-.05.03-.06 3.25-6a.75.75 0 0 1 .56-.38L6 3h12Zm-3 7.5H9l3 7.69 3-7.69Zm-7.61 0H4.4l5.35 6.07-2.37-6.07Zm1.58-6H6.44L4.01 9h3.52l1.44-4.5Zm4.48 0h-2.9L9.1 9h5.79l-1.44-4.5Zm4.1 0h-2.52L16.47 9h3.52l-2.44-4.5Zm3.45 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const PresenceAvailable10Filled = /*#__PURE__*/createFluentIcon('PresenceAvailable10Filled', \"10\", [\"M5 10A5 5 0 1 0 5 0a5 5 0 0 0 0 10Zm2.1-5.9L4.85 6.35a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 1.9-1.9a.5.5 0 0 1 .7.71Z\"]);\nexport const PresenceAvailable10Regular = /*#__PURE__*/createFluentIcon('PresenceAvailable10Regular', \"10\", [\"M5 0a5 5 0 1 0 0 10A5 5 0 0 0 5 0ZM1 5a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm6.1-1.6c.2.2.2.5 0 .7L4.85 6.35a.5.5 0 0 1-.7 0l-1-1a.5.5 0 1 1 .7-.7l.65.64 1.9-1.9c.2-.19.5-.19.7 0Z\"]);\nexport const PresenceAvailable12Filled = /*#__PURE__*/createFluentIcon('PresenceAvailable12Filled', \"12\", [\"M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12Zm2.53-6.72L5.78 8.03c-.3.3-.77.3-1.06 0l-1-1a.75.75 0 0 1 1.06-1.06l.47.47 2.22-2.22a.75.75 0 0 1 1.06 1.06Z\"]);\nexport const PresenceAvailable12Regular = /*#__PURE__*/createFluentIcon('PresenceAvailable12Regular', \"12\", [\"M6 0a6 6 0 1 0 0 12A6 6 0 0 0 6 0ZM1.5 6a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Zm7.03-1.78c.3.3.3.77 0 1.06L5.78 8.03c-.3.3-.77.3-1.06 0l-1-1a.75.75 0 0 1 1.06-1.06l.47.47 2.22-2.22c.3-.3.77-.3 1.06 0Z\"]);\nexport const PresenceAvailable16Filled = /*#__PURE__*/createFluentIcon('PresenceAvailable16Filled', \"16\", [\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm3.7-9.3-4 4a1 1 0 0 1-1.41 0l-2-2a1 1 0 1 1 1.42-1.4L7 8.58l3.3-3.3a1 1 0 0 1 1.4 1.42Z\"]);\nexport const PresenceAvailable16Regular = /*#__PURE__*/createFluentIcon('PresenceAvailable16Regular', \"16\", [\"M11.7 6.7a1 1 0 0 0-1.4-1.4L7 8.58l-1.3-1.3a1 1 0 0 0-1.4 1.42l2 2a1 1 0 0 0 1.4 0l4-4ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z\"]);\nexport const PresenceAvailable20Filled = /*#__PURE__*/createFluentIcon('PresenceAvailable20Filled', \"20\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm4.2-11.8-4.5 4.5a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4L9 10.58l3.8-3.8a1 1 0 1 1 1.4 1.42Z\"]);\nexport const PresenceAvailable20Regular = /*#__PURE__*/createFluentIcon('PresenceAvailable20Regular', \"20\", [\"M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm12.2-3.2a1 1 0 0 1 0 1.4l-4.5 4.5a1 1 0 0 1-1.4 0l-2-2a1 1 0 0 1 1.4-1.4L9 10.58l3.8-3.8a1 1 0 0 1 1.4 0Z\"]);\nexport const PresenceAvailable24Filled = /*#__PURE__*/createFluentIcon('PresenceAvailable24Filled', \"24\", [\"M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24Zm5.06-13.44-5.5 5.5a1.5 1.5 0 0 1-2.12 0l-2-2a1.5 1.5 0 0 1 2.12-2.12l.94.94 4.44-4.44a1.5 1.5 0 0 1 2.12 2.12Z\"]);\nexport const PresenceAvailable24Regular = /*#__PURE__*/createFluentIcon('PresenceAvailable24Regular', \"24\", [\"M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm14.06-3.56a1.5 1.5 0 0 1 0 2.12l-5.5 5.5a1.5 1.5 0 0 1-2.12 0l-2-2a1.5 1.5 0 0 1 2.12-2.12l.94.94 4.44-4.44a1.5 1.5 0 0 1 2.12 0Z\"]);\nexport const PresenceAway10Filled = /*#__PURE__*/createFluentIcon('PresenceAway10Filled', \"10\", [\"M5 10A5 5 0 1 0 5 0a5 5 0 0 0 0 10Zm0-7v1.8l1.35 1.35a.5.5 0 1 1-.7.7l-1.5-1.5A.5.5 0 0 1 4 5V3a.5.5 0 0 1 1 0Z\"]);\nexport const PresenceAway10Regular = /*#__PURE__*/createFluentIcon('PresenceAway10Regular', \"10\", [\"M5 4.8V3a.5.5 0 0 0-1 0v2c0 .13.05.26.15.35l1.5 1.5a.5.5 0 1 0 .7-.7L5 4.79Zm5 .2A5 5 0 1 1 0 5a5 5 0 0 1 10 0ZM9 5a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z\"]);\nexport const PresenceAway12Filled = /*#__PURE__*/createFluentIcon('PresenceAway12Filled', \"12\", [\"M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12Zm.5-8.75v2.4l1.49 1.28A.75.75 0 1 1 7 8.07l-1.75-1.5A.75.75 0 0 1 5 6V3.25a.75.75 0 0 1 1.5 0Z\"]);\nexport const PresenceAway12Regular = /*#__PURE__*/createFluentIcon('PresenceAway12Regular', \"12\", [\"M6.5 5.66V3.25a.75.75 0 0 0-1.5 0V6c0 .22.1.43.26.57l1.75 1.5A.75.75 0 1 0 8 6.93L6.5 5.66ZM12 6A6 6 0 1 1 0 6a6 6 0 0 1 12 0Zm-1.5 0a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Z\"]);\nexport const PresenceAway16Filled = /*#__PURE__*/createFluentIcon('PresenceAway16Filled', \"16\", [\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.5-11.5v3.02l2.12 1.7a1 1 0 1 1-1.24 1.56l-2.5-2A1 1 0 0 1 6.5 8V4.5a1 1 0 0 1 2 0Z\"]);\nexport const PresenceAway16Regular = /*#__PURE__*/createFluentIcon('PresenceAway16Regular', \"16\", [\"M8.5 7.52V4.5a1 1 0 1 0-2 0V8c0 .3.14.6.38.78l2.5 2a1 1 0 1 0 1.24-1.56L8.5 7.52ZM8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z\"]);\nexport const PresenceAway20Filled = /*#__PURE__*/createFluentIcon('PresenceAway20Filled', \"20\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-14V9.6l2.7 2.7a1 1 0 0 1-1.4 1.42l-3-3A1 1 0 0 1 8 10V6a1 1 0 1 1 2 0Z\"]);\nexport const PresenceAway20Regular = /*#__PURE__*/createFluentIcon('PresenceAway20Regular', \"20\", [\"M10 9.59V6a1 1 0 1 0-2 0V10c0 .27.1.52.3.7l3 3a1 1 0 1 0 1.4-1.4L10 9.58Zm-10 .4a10 10 0 1 1 20 0 10 10 0 0 1-20 0ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const PresenceAway24Filled = /*#__PURE__*/createFluentIcon('PresenceAway24Filled', \"24\", [\"M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24Zm1-17.5v4.81l2.98 2.55a1.5 1.5 0 0 1-1.96 2.28l-3.5-3A1.5 1.5 0 0 1 10 12V6.5a1.5 1.5 0 0 1 3 0Z\"]);\nexport const PresenceAway24Regular = /*#__PURE__*/createFluentIcon('PresenceAway24Regular', \"24\", [\"M13 11.31V6.5a1.5 1.5 0 0 0-3 0V12c0 .44.2.85.52 1.14l3.5 3a1.5 1.5 0 0 0 1.96-2.28L13 11.31ZM0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm12-9a9 9 0 1 0 0 18 9 9 0 0 0 0-18Z\"]);\nexport const PresenceBlocked10Regular = /*#__PURE__*/createFluentIcon('PresenceBlocked10Regular', \"10\", [\"M10 5A5 5 0 1 0 0 5a5 5 0 0 0 10 0ZM9 5a4 4 0 0 1-6.45 3.16l5.61-5.61C8.69 3.22 9 4.08 9 5ZM7.45 1.84 1.84 7.45a4 4 0 0 1 5.61-5.61Z\"]);\nexport const PresenceBlocked12Regular = /*#__PURE__*/createFluentIcon('PresenceBlocked12Regular', \"12\", [\"M12 6A6 6 0 1 1 0 6a6 6 0 0 1 12 0Zm-1.5 0c0-.97-.3-1.87-.83-2.6L3.39 9.66A4.5 4.5 0 0 0 10.5 6ZM8.6 2.33a4.5 4.5 0 0 0-6.28 6.28l6.29-6.28Z\"]);\nexport const PresenceBlocked16Regular = /*#__PURE__*/createFluentIcon('PresenceBlocked16Regular', \"16\", [\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-2 0c0-1.3-.41-2.5-1.1-3.48L4.51 12.9A6 6 0 0 0 14 8Zm-2.52-4.9a6 6 0 0 0-8.37 8.37l8.37-8.36Z\"]);\nexport const PresenceBlocked20Regular = /*#__PURE__*/createFluentIcon('PresenceBlocked20Regular', \"20\", [\"M20 10a10 10 0 1 0-20 0 10 10 0 0 0 20 0Zm-2 0a8 8 0 0 1-12.9 6.32L16.31 5.09A7.97 7.97 0 0 1 18 10Zm-3.1-6.32L3.69 14.91A8 8 0 0 1 14.91 3.68Z\"]);\nexport const PresenceBlocked24Regular = /*#__PURE__*/createFluentIcon('PresenceBlocked24Regular', \"24\", [\"M24 12a12 12 0 1 1-24 0 12 12 0 0 1 24 0Zm-3 0c0-1.94-.62-3.74-1.66-5.21L6.79 19.34A9 9 0 0 0 21 12Zm-3.79-7.34A9 9 0 0 0 4.66 17.21L17.21 4.66Z\"]);\nexport const PresenceBusy10Filled = /*#__PURE__*/createFluentIcon('PresenceBusy10Filled', \"10\", [\"M10 5A5 5 0 1 1 0 5a5 5 0 0 1 10 0Z\"]);\nexport const PresenceBusy12Filled = /*#__PURE__*/createFluentIcon('PresenceBusy12Filled', \"12\", [\"M12 6A6 6 0 1 1 0 6a6 6 0 0 1 12 0Z\"]);\nexport const PresenceBusy16Filled = /*#__PURE__*/createFluentIcon('PresenceBusy16Filled', \"16\", [\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Z\"]);\nexport const PresenceBusy20Filled = /*#__PURE__*/createFluentIcon('PresenceBusy20Filled', \"20\", [\"M20 10a10 10 0 1 1-20 0 10 10 0 0 1 20 0Z\"]);\nexport const PresenceBusy24Filled = /*#__PURE__*/createFluentIcon('PresenceBusy24Filled', \"24\", [\"M24 12a12 12 0 1 1-24 0 12 12 0 0 1 24 0Z\"]);\nexport const PresenceDnd10Filled = /*#__PURE__*/createFluentIcon('PresenceDnd10Filled', \"10\", [\"M5 10A5 5 0 1 0 5 0a5 5 0 0 0 0 10ZM3.5 4.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Z\"]);\nexport const PresenceDnd10Regular = /*#__PURE__*/createFluentIcon('PresenceDnd10Regular', \"10\", [\"M5 0a5 5 0 1 0 0 10A5 5 0 0 0 5 0ZM1 5a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm2 0c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3A.5.5 0 0 1 3 5Z\"]);\nexport const PresenceDnd12Filled = /*#__PURE__*/createFluentIcon('PresenceDnd12Filled', \"12\", [\"M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12ZM3.75 5.25h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5Z\"]);\nexport const PresenceDnd12Regular = /*#__PURE__*/createFluentIcon('PresenceDnd12Regular', \"12\", [\"M6 0a6 6 0 1 0 0 12A6 6 0 0 0 6 0ZM1.5 6a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM3 6c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 3 6Z\"]);\nexport const PresenceDnd16Filled = /*#__PURE__*/createFluentIcon('PresenceDnd16Filled', \"16\", [\"M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16ZM5.25 7h5.5a1 1 0 1 1 0 2h-5.5a1 1 0 1 1 0-2Z\"]);\nexport const PresenceDnd16Regular = /*#__PURE__*/createFluentIcon('PresenceDnd16Regular', \"16\", [\"M5.25 7a1 1 0 0 0 0 2h5.5a1 1 0 1 0 0-2h-5.5ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z\"]);\nexport const PresenceDnd20Filled = /*#__PURE__*/createFluentIcon('PresenceDnd20Filled', \"20\", [\"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM7 9h6a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2Z\"]);\nexport const PresenceDnd20Regular = /*#__PURE__*/createFluentIcon('PresenceDnd20Regular', \"20\", [\"M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm4 0a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Z\"]);\nexport const PresenceDnd24Filled = /*#__PURE__*/createFluentIcon('PresenceDnd24Filled', \"24\", [\"M12 24a12 12 0 1 0 0-24 12 12 0 0 0 0 24ZM7.5 10.5h9a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3Z\"]);\nexport const PresenceDnd24Regular = /*#__PURE__*/createFluentIcon('PresenceDnd24Regular', \"24\", [\"M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Zm3 0c0-.83.67-1.5 1.5-1.5h9a1.5 1.5 0 0 1 0 3h-9A1.5 1.5 0 0 1 6 12Z\"]);\nexport const PresenceOffline10Regular = /*#__PURE__*/createFluentIcon('PresenceOffline10Regular', \"10\", [\"M6.85 3.15c.2.2.2.5 0 .7L5.71 5l1.14 1.15a.5.5 0 1 1-.7.7L5 5.71 3.85 6.85a.5.5 0 1 1-.7-.7L4.29 5 3.15 3.85a.5.5 0 1 1 .7-.7L5 4.29l1.15-1.14c.2-.2.5-.2.7 0ZM0 5a5 5 0 1 1 10 0A5 5 0 0 1 0 5Zm5-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z\"]);\nexport const PresenceOffline12Regular = /*#__PURE__*/createFluentIcon('PresenceOffline12Regular', \"12\", [\"M8.03 3.97c.3.3.3.77 0 1.06L7.06 6l.97.97a.75.75 0 0 1-1.06 1.06L6 7.06l-.97.97a.75.75 0 0 1-1.06-1.06L4.94 6l-.97-.97a.75.75 0 0 1 1.06-1.06l.97.97.97-.97c.3-.3.77-.3 1.06 0ZM0 6a6 6 0 1 1 12 0A6 6 0 0 1 0 6Zm6-4.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Z\"]);\nexport const PresenceOffline16Regular = /*#__PURE__*/createFluentIcon('PresenceOffline16Regular', \"16\", [\"M10.7 5.3a1 1 0 0 1 0 1.4L9.42 8l1.3 1.3a1 1 0 0 1-1.42 1.4L8 9.42l-1.3 1.3a1 1 0 0 1-1.4-1.42L6.58 8l-1.3-1.3a1 1 0 0 1 1.42-1.4L8 6.58l1.3-1.3a1 1 0 0 1 1.4 0ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z\"]);\nexport const PresenceOffline20Regular = /*#__PURE__*/createFluentIcon('PresenceOffline20Regular', \"20\", [\"M13.7 6.3a1 1 0 0 1 0 1.4L11.42 10l2.3 2.3a1 1 0 0 1-1.42 1.4L10 11.42l-2.3 2.3a1 1 0 0 1-1.4-1.42L8.58 10l-2.3-2.3a1 1 0 0 1 1.42-1.4L10 8.58l2.3-2.3a1 1 0 0 1 1.4 0ZM0 10a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm10-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const PresenceOffline24Regular = /*#__PURE__*/createFluentIcon('PresenceOffline24Regular', \"24\", [\"M16.06 7.94a1.5 1.5 0 0 1 0 2.12L14.12 12l1.94 1.94a1.5 1.5 0 0 1-2.12 2.12L12 14.12l-1.94 1.94a1.5 1.5 0 0 1-2.12-2.12L9.88 12l-1.94-1.94a1.5 1.5 0 1 1 2.12-2.12L12 9.88l1.94-1.94a1.5 1.5 0 0 1 2.12 0ZM0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm12-9a9 9 0 1 0 0 18 9 9 0 0 0 0-18Z\"]);\nexport const PresenceOof10Regular = /*#__PURE__*/createFluentIcon('PresenceOof10Regular', \"10\", [\"M5.35 3.85a.5.5 0 1 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 1 0 .7-.7L4.7 5.5h1.8a.5.5 0 1 0 0-1H4.7l.65-.65ZM5 0a5 5 0 1 0 0 10A5 5 0 0 0 5 0ZM1 5a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z\"]);\nexport const PresenceOof12Regular = /*#__PURE__*/createFluentIcon('PresenceOof12Regular', \"12\", [\"M6.28 4.53a.75.75 0 0 0-1.06-1.06l-2 2c-.3.3-.3.77 0 1.06l2 2a.75.75 0 0 0 1.06-1.06l-.72-.72h2.69a.75.75 0 1 0 0-1.5h-2.7l.73-.72ZM6 0a6 6 0 1 0 0 12A6 6 0 0 0 6 0ZM1.5 6a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Z\"]);\nexport const PresenceOof16Regular = /*#__PURE__*/createFluentIcon('PresenceOof16Regular', \"16\", [\"M8.2 6.2a1 1 0 1 0-1.4-1.4L4.3 7.3a1 1 0 0 0 0 1.4l2.5 2.5a1 1 0 0 0 1.4-1.4L7.42 9H11a1 1 0 1 0 0-2H7.41l.8-.8ZM8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z\"]);\nexport const PresenceOof20Regular = /*#__PURE__*/createFluentIcon('PresenceOof20Regular', \"20\", [\"M10.7 7.7A1 1 0 1 0 9.28 6.3l-3 3a1 1 0 0 0 0 1.41l3 3a1 1 0 1 0 1.42-1.41l-1.3-1.3H13a1 1 0 1 0 0-2H9.4l1.3-1.29ZM10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z\"]);\nexport const PresenceOof24Regular = /*#__PURE__*/createFluentIcon('PresenceOof24Regular', \"24\", [\"M12.56 9.06a1.5 1.5 0 0 0-2.12-2.12l-4 4a1.5 1.5 0 0 0 0 2.12l4 4a1.5 1.5 0 0 0 2.12-2.12l-1.44-1.44h5.38a1.5 1.5 0 1 0 0-3h-5.38l1.44-1.44ZM12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Z\"]);\nexport const PresenceUnknown10Regular = /*#__PURE__*/createFluentIcon('PresenceUnknown10Regular', \"10\", [\"M5 1a4 4 0 1 0 0 8 4 4 0 0 0 0-8ZM0 5a5 5 0 1 1 10 0A5 5 0 0 1 0 5Z\"]);\nexport const PresenceUnknown12Regular = /*#__PURE__*/createFluentIcon('PresenceUnknown12Regular', \"12\", [\"M6 1.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9ZM0 6a6 6 0 1 1 12 0A6 6 0 0 1 0 6Z\"]);\nexport const PresenceUnknown16Regular = /*#__PURE__*/createFluentIcon('PresenceUnknown16Regular', \"16\", [\"M8 2a6 6 0 1 0 0 12A6 6 0 0 0 8 2ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Z\"]);\nexport const PresenceUnknown20Regular = /*#__PURE__*/createFluentIcon('PresenceUnknown20Regular', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM0 10a10 10 0 1 1 20 0 10 10 0 0 1-20 0Z\"]);\nexport const PresenceUnknown24Regular = /*#__PURE__*/createFluentIcon('PresenceUnknown24Regular', \"24\", [\"M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18ZM0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0Z\"]);\nexport const Presenter20Filled = /*#__PURE__*/createFluentIcon('Presenter20Filled', \"20\", [\"M12 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM7 14.78v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l3.7-3.56a.5.5 0 0 0-.34-.86H3.49a.5.5 0 0 0-.35.86l3.7 3.56c.1.1.16.23.16.36ZM8.5 7C7.67 7 7 7.67 7 8.5V9h6v-.5c0-.83-.67-1.5-1.5-1.5h-3Z\"]);\nexport const Presenter20Regular = /*#__PURE__*/createFluentIcon('Presenter20Regular', \"20\", [\"M10 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM8.5 8a.5.5 0 0 0-.5.5V9H7v-.5C7 7.67 7.67 7 8.5 7h3c.83 0 1.5.67 1.5 1.5V9h-1v-.5a.5.5 0 0 0-.5-.5h-3ZM7 14.78v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l3.7-3.56a.5.5 0 0 0-.34-.86H3.49a.5.5 0 0 0-.35.86l3.7 3.56c.1.1.16.23.16.36Zm1 1.72v-1.72c0-.4-.17-.8-.46-1.08L4.73 11h10.54l-2.81 2.7c-.3.29-.46.68-.46 1.08v1.72a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5Z\"]);\nexport const Presenter24Filled = /*#__PURE__*/createFluentIcon('Presenter24Filled', \"24\", [\"M20.24 13c.71 0 1.03.89.47 1.33L16 18.11v1.64C16 21 14.99 22 13.75 22h-3.5C9.01 22 8 21 8 19.75v-1.64l-4.72-3.78A.75.75 0 0 1 3.75 13h16.5ZM8.75 9h6.5c.91 0 1.67.7 1.74 1.6V12H7v-1.25c0-.92.7-1.67 1.6-1.74L8.76 9h6.5-6.5ZM12 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z\"]);\nexport const Presenter24Regular = /*#__PURE__*/createFluentIcon('Presenter24Regular', \"24\", [\"M20.24 13c.71 0 1.03.89.47 1.33L16 18.11v1.64C16 21 14.99 22 13.75 22h-3.5C9.01 22 8 21 8 19.75v-1.64l-4.72-3.78A.75.75 0 0 1 3.75 13h16.5Zm-2.13 1.5H5.89l3.33 2.66c.18.15.28.36.28.59v2c0 .42.34.75.75.75h3.5c.41 0 .75-.33.75-.75v-2c0-.23.1-.44.28-.59l3.33-2.66ZM8.75 9h6.5c.91 0 1.67.7 1.74 1.6V12h-1.5v-1.25a.25.25 0 0 0-.19-.24l-.05-.01h-6.5a.25.25 0 0 0-.24.2l-.01.05V12H7v-1.25c0-.92.7-1.67 1.6-1.74L8.76 9h6.5-6.5ZM12 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z\"]);\nexport const PresenterOff20Filled = /*#__PURE__*/createFluentIcon('PresenterOff20Filled', \"20\", [\"M7.15 7.85c-.1.2-.15.42-.15.65V9h1.3l1 1H3.5a.5.5 0 0 0-.36.86l3.7 3.56c.1.1.16.23.16.36v1.72c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-1.72a.5.5 0 0 1 .15-.36l.29-.27 3.7 3.7a.5.5 0 0 0 .71-.7l-10-10-5-5a.5.5 0 1 0-.7.7l5 5Zm9.7 3.01-1.97 1.9L12.12 10h4.39a.5.5 0 0 1 .35.86ZM13 9h-1.88l-2-2h2.38c.83 0 1.5.67 1.5 1.5V9Zm-3-3a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const PresenterOff20Regular = /*#__PURE__*/createFluentIcon('PresenterOff20Regular', \"20\", [\"M7 8.5c0-.23.05-.45.15-.65l-5-5a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-3.71-3.7-.29.27a.5.5 0 0 0-.15.36v1.72c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 7 16.5v-1.72a.5.5 0 0 0-.15-.36l-3.7-3.56a.5.5 0 0 1 .34-.86h5.8l-1-1H7v-.5Zm3.3 2.5H4.72l2.81 2.7c.3.29.46.68.46 1.08v1.72c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-1.72c0-.4.17-.8.46-1.08l.27-.26L10.3 11ZM12 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-1 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-.88 4h1.38c.28 0 .5.22.5.5V9h1v-.5c0-.83-.67-1.5-1.5-1.5H9.12l1 1Zm4.76 4.76-.7-.7L15.26 11h-2.15l-1-1h4.39a.5.5 0 0 1 .35.86l-1.98 1.9Z\"]);\nexport const PresenterOff24Filled = /*#__PURE__*/createFluentIcon('PresenterOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l5.85 5.86C7.44 9.4 7 10.02 7 10.75V12h3.94l1 1h-8.2c-.7 0-1.01.89-.46 1.33L8 18.11v1.64C8 21 9 22 10.25 22h3.5c1.24 0 2.25-1 2.25-2.25v-1.64l.58-.47 4.14 4.14a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM16.18 13l2.76 2.76 1.77-1.43a.75.75 0 0 0-.47-1.33h-4.06Zm-4-4 3 3H17V10.61C16.92 9.7 16.16 9 15.24 9h-3.06ZM12 8a3 3 0 0 1-.98-.16L9.16 5.98A3 3 0 1 1 12 8Z\"]);\nexport const PresenterOff24Regular = /*#__PURE__*/createFluentIcon('PresenterOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l5.85 5.86C7.44 9.4 7 10.02 7 10.75V12h1.5v-1.31c.03-.1.13-.19.25-.19h.69l2.5 2.5h-8.2c-.7 0-1.01.89-.46 1.33L8 18.11v1.64C8 21 9 22 10.25 22h3.5c1.24 0 2.25-1 2.25-2.25v-1.64l.58-.47 4.14 4.14a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm12.23 14.35-.73.6a.75.75 0 0 0-.28.58v2c0 .42-.34.75-.75.75h-3.5a.75.75 0 0 1-.75-.75v-2c0-.23-.1-.44-.28-.59L5.89 14.5h7.55l2.07 2.07ZM12 8a3 3 0 0 1-.98-.16L9.16 5.98A3 3 0 1 1 12 8Zm0-4.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm8.24 9.5h-4.06l2.76 2.76 1.77-1.43a.75.75 0 0 0-.47-1.33Zm-6.56-2.5L12.18 9h3.06c.92 0 1.68.7 1.75 1.6V12h-1.5v-1.25a.25.25 0 0 0-.19-.24l-.06-.01h-1.56Z\"]);\nexport const PreviewLink16Filled = /*#__PURE__*/createFluentIcon('PreviewLink16Filled', \"16\", [\"M4 5v1h8V5H4Zm6 4v2h2V9h-2ZM1 4.75A2.75 2.75 0 0 1 3.75 2h8.5A2.75 2.75 0 0 1 15 4.75v6.5A2.75 2.75 0 0 1 12.25 14h-8.5A2.75 2.75 0 0 1 1 11.25v-6.5Zm2-.25v2c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5Zm6 4v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Zm-5.5 0a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM3 11c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const PreviewLink16Regular = /*#__PURE__*/createFluentIcon('PreviewLink16Regular', \"16\", [\"M3 4.5c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5v2a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-2ZM4 5v1h8V5H4Zm5.5 3a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V9h2v2h-2ZM3 9c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4A.5.5 0 0 1 3 9Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 1 0 0-1h-4ZM1 4.5A2.5 2.5 0 0 1 3.5 2h9A2.5 2.5 0 0 1 15 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 11.5v-7ZM3.5 3C2.67 3 2 3.67 2 4.5v7c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const PreviewLink20Filled = /*#__PURE__*/createFluentIcon('PreviewLink20Filled', \"20\", [\"M5 6v2h10V6H5Zm7 5v3h3v-3h-3ZM2 5.75A2.75 2.75 0 0 1 4.75 3h10.5A2.75 2.75 0 0 1 18 5.75v8.5A2.75 2.75 0 0 1 15.25 17H4.75A2.75 2.75 0 0 1 2 14.25v-8.5Zm2-.25v3c0 .27.22.5.5.5h11a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5Zm7 5v4c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 0-.5.5Zm-6.5 0a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM4 14c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const PreviewLink20Regular = /*#__PURE__*/createFluentIcon('PreviewLink20Regular', \"20\", [\"M4 5.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-3ZM5 6v2h10V6H5Zm6.5 4a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4Zm.5 4v-3h3v3h-3Zm-8-3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5A.5.5 0 0 1 4 11Zm.5 2.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM2 5.5A2.5 2.5 0 0 1 4.5 3h11A2.5 2.5 0 0 1 18 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5v-9ZM4.5 4C3.67 4 3 4.67 3 5.5v9c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const PreviewLink24Filled = /*#__PURE__*/createFluentIcon('PreviewLink24Filled', \"24\", [\"M6.02 7v2h11.96V7H6.02Zm8.96 6.48v3h3v-3h-3ZM2 5.75A2.75 2.75 0 0 1 4.75 3h14.5A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75Zm2.52.5v3.5c0 .41.34.75.75.75h13.46c.41 0 .75-.34.75-.75v-3.5a.75.75 0 0 0-.75-.75H5.27a.75.75 0 0 0-.75.75Zm8.96 6.48v4.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0-.75.75Zm-8.2-.23a.75.75 0 0 0 0 1.5h5.97a.75.75 0 0 0 0-1.5H5.27Zm-.76 4.25c0 .41.34.75.75.75h5.98a.75.75 0 0 0 0-1.5H5.27a.75.75 0 0 0-.75.75Z\"]);\nexport const PreviewLink24Regular = /*#__PURE__*/createFluentIcon('PreviewLink24Regular', \"24\", [\"M4.52 6.25c0-.41.34-.75.75-.75h13.46c.41 0 .75.34.75.75v3.5c0 .41-.34.75-.75.75H5.27a.75.75 0 0 1-.75-.75v-3.5Zm1.5.75v2h11.96V7H6.02Zm8.21 4.98a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75v-4.5a.75.75 0 0 0-.75-.75h-4.5Zm.75 4.5v-3h3v3h-3ZM4.52 13.25c0-.41.34-.75.75-.75h5.98a.75.75 0 0 1 0 1.5H5.27a.75.75 0 0 1-.75-.75ZM5.27 16a.75.75 0 0 0 0 1.5h5.98a.75.75 0 0 0 0-1.5H5.27ZM2 5.75A2.75 2.75 0 0 1 4.75 3h14.5A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75ZM4.75 4.5c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const Previous16Filled = /*#__PURE__*/createFluentIcon('Previous16Filled', \"16\", [\"M14 3a1 1 0 0 0-1.58-.81l-7 4.96a1 1 0 0 0 0 1.63l7 5.03a1 1 0 0 0 1.58-.8V3ZM2 2.5a.5.5 0 0 1 1 0v11a.5.5 0 0 1-1 0v-11Z\"]);\nexport const Previous16Regular = /*#__PURE__*/createFluentIcon('Previous16Regular', \"16\", [\"M2 2.5a.5.5 0 0 1 1 0v11a.5.5 0 0 1-1 0v-11ZM14 3a1 1 0 0 0-1.58-.81l-7 4.96a1 1 0 0 0 0 1.63l7 5.03a1 1 0 0 0 1.58-.8V3ZM6 7.96 13 3v10L6 7.96Z\"]);\nexport const Previous20Filled = /*#__PURE__*/createFluentIcon('Previous20Filled', \"20\", [\"M17 4.25c0-1-1.12-1.6-1.95-1.04l-8.5 5.71c-.73.5-.73 1.57 0 2.07l8.5 5.8c.83.56 1.95-.03 1.95-1.04V4.25ZM3 3.5a.5.5 0 0 1 1 0v13a.5.5 0 0 1-1 0v-13Z\"]);\nexport const Previous20Regular = /*#__PURE__*/createFluentIcon('Previous20Regular', \"20\", [\"M3 3.5a.5.5 0 0 1 1 0v13a.5.5 0 0 1-1 0v-13Zm14 .75c0-1-1.12-1.6-1.95-1.04l-8.5 5.71c-.73.5-.73 1.57 0 2.07l8.5 5.8c.83.56 1.95-.03 1.95-1.04V4.25Zm-1.39-.2c.17-.12.39 0 .39.2v11.5c0 .2-.22.32-.4.2l-8.49-5.78a.25.25 0 0 1 0-.42l8.5-5.7Z\"]);\nexport const Previous24Filled = /*#__PURE__*/createFluentIcon('Previous24Filled', \"24\", [\"M3 3.75a.75.75 0 0 1 1.5 0v16.5a.75.75 0 0 1-1.5 0V3.75Zm18 1c0-1.4-1.58-2.24-2.74-1.44l-10.5 7.2a1.75 1.75 0 0 0 0 2.87l10.5 7.3c1.15.81 2.74-.02 2.74-1.43V4.75Z\"]);\nexport const Previous24Regular = /*#__PURE__*/createFluentIcon('Previous24Regular', \"24\", [\"M21 4.75c0-1.4-1.58-2.24-2.74-1.44l-10.5 7.2a1.75 1.75 0 0 0 0 2.87l10.5 7.3c1.15.81 2.74-.02 2.74-1.43V4.75Zm-1.9-.2c.17-.12.4 0 .4.2v14.5c0 .2-.23.32-.4.2l-10.5-7.3a.25.25 0 0 1 .01-.41l10.5-7.2ZM3 3.75a.75.75 0 0 1 1.5 0v16.5a.75.75 0 0 1-1.5 0V3.75Z\"]);\nexport const Previous28Filled = /*#__PURE__*/createFluentIcon('Previous28Filled', \"28\", [\"M4.5 3.75a.75.75 0 0 0-1.5 0v20.5a.75.75 0 0 0 1.5 0V3.75ZM25 5.25a2.25 2.25 0 0 0-3.53-1.84l-12.5 8.68a2.25 2.25 0 0 0-.02 3.68l12.5 8.81A2.25 2.25 0 0 0 25 22.75V5.25Z\"]);\nexport const Previous28Regular = /*#__PURE__*/createFluentIcon('Previous28Regular', \"28\", [\"M4.5 3.75a.75.75 0 0 0-1.5 0v20.5a.75.75 0 0 0 1.5 0V3.75ZM25 5.25a2.25 2.25 0 0 0-3.53-1.84l-12.5 8.68a2.25 2.25 0 0 0-.02 3.68l12.5 8.81A2.25 2.25 0 0 0 25 22.75V5.25Zm-2.68-.61a.75.75 0 0 1 1.18.61v17.5c0 .6-.69.96-1.18.6l-12.5-8.8a.75.75 0 0 1 0-1.23l12.5-8.68Z\"]);\nexport const Previous32Filled = /*#__PURE__*/createFluentIcon('Previous32Filled', \"32\", [\"M6 5a1 1 0 0 0-2 0v22a1 1 0 1 0 2 0V5Zm22 1.5c0-2-2.23-3.19-3.9-2.07l-14 9.43A2.5 2.5 0 0 0 10.1 18l14 9.56A2.5 2.5 0 0 0 28 25.5v-19Z\"]);\nexport const Previous32Regular = /*#__PURE__*/createFluentIcon('Previous32Regular', \"32\", [\"M6 5a1 1 0 0 0-2 0v22a1 1 0 1 0 2 0V5Zm22 1.5c0-2-2.23-3.19-3.9-2.07l-14 9.43A2.5 2.5 0 0 0 10.1 18l14 9.56A2.5 2.5 0 0 0 28 25.5v-19Zm-2.78-.41a.5.5 0 0 1 .78.41v19a.5.5 0 0 1-.78.4l-14-9.55a.5.5 0 0 1 0-.83l14-9.43Z\"]);\nexport const Previous48Filled = /*#__PURE__*/createFluentIcon('Previous48Filled', \"48\", [\"M7.25 6c.69 0 1.25.56 1.25 1.25v33.5a1.25 1.25 0 1 1-2.5 0V7.25C6 6.56 6.56 6 7.25 6ZM42 9.26a3.25 3.25 0 0 0-5.09-2.68l-21.5 14.74a3.25 3.25 0 0 0 0 5.36l21.5 14.74A3.25 3.25 0 0 0 42 38.74V9.26Z\"]);\nexport const Previous48Regular = /*#__PURE__*/createFluentIcon('Previous48Regular', \"48\", [\"M8.5 7.25a1.25 1.25 0 1 0-2.5 0v33.5a1.25 1.25 0 1 0 2.5 0V7.25Zm33.5 2a3.25 3.25 0 0 0-5.09-2.67l-21.5 14.74a3.25 3.25 0 0 0 0 5.36l21.5 14.74A3.25 3.25 0 0 0 42 38.74V9.26Zm-3.67-.61a.75.75 0 0 1 1.17.62v29.48c0 .6-.68.96-1.17.62l-21.5-14.74a.75.75 0 0 1 0-1.24l21.5-14.74Z\"]);\nexport const PreviousFrame20Filled = /*#__PURE__*/createFluentIcon('PreviousFrame20Filled', \"20\", [\"M15.5 3a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5Zm-5.45.21c.83-.55 1.95.04 1.95 1.04v11.5c0 1-1.12 1.6-1.95 1.04l-8.5-5.8a1.25 1.25 0 0 1 0-2.07l8.5-5.7Z\"]);\nexport const PreviousFrame20Regular = /*#__PURE__*/createFluentIcon('PreviousFrame20Regular', \"20\", [\"M15.5 3a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5Zm-5.45.21c.83-.55 1.95.04 1.95 1.04v11.5c0 1-1.12 1.6-1.95 1.04l-8.5-5.8a1.25 1.25 0 0 1 0-2.07l8.5-5.7ZM11 4.25c0-.2-.22-.32-.39-.2l-8.5 5.7a.25.25 0 0 0 0 .42l8.5 5.79c.17.11.39 0 .39-.2V4.25Z\"]);\nexport const PreviousFrame24Filled = /*#__PURE__*/createFluentIcon('PreviousFrame24Filled', \"24\", [\"M18.5 3.75a.75.75 0 0 1 1.5 0v16.5a.75.75 0 0 1-1.5 0V3.75Zm-6.24-.44c1.16-.8 2.74.04 2.74 1.44v14.5a1.75 1.75 0 0 1-2.75 1.43l-10.5-7.3c-1-.7-1-2.19.01-2.88l10.5-7.2Z\"]);\nexport const PreviousFrame24Regular = /*#__PURE__*/createFluentIcon('PreviousFrame24Regular', \"24\", [\"M18.5 3.75a.75.75 0 0 1 1.5 0v16.5a.75.75 0 0 1-1.5 0V3.75Zm-6.24-.44c1.16-.8 2.74.04 2.74 1.44v14.5a1.75 1.75 0 0 1-2.75 1.43l-10.5-7.3c-1-.7-1-2.19.01-2.88l10.5-7.2Zm1.24 1.44c0-.2-.22-.32-.4-.2L2.62 11.74a.25.25 0 0 0 0 .41l10.5 7.3c.16.12.39 0 .39-.2V4.75Z\"]);\nexport const Print16Filled = /*#__PURE__*/createFluentIcon('Print16Filled', \"16\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h5c.83 0 1.5.67 1.5 1.5V4h1a2 2 0 0 1 2 2v4.5c0 .83-.67 1.5-1.5 1.5H12v.5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 4 12.5V12H2.5A1.5 1.5 0 0 1 1 10.5V6c0-1.1.9-2 2-2h1v-.5Zm7 0a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V4h6v-.5Zm-6 7v2c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const Print16Regular = /*#__PURE__*/createFluentIcon('Print16Regular', \"16\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h5c.83 0 1.5.67 1.5 1.5V4h1a2 2 0 0 1 2 2v4.5c0 .83-.67 1.5-1.5 1.5H12v.5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 4 12.5V12H2.5A1.5 1.5 0 0 1 1 10.5V6c0-1.1.9-2 2-2h1v-.5ZM4 11v-.5C4 9.67 4.67 9 5.5 9h5c.83 0 1.5.67 1.5 1.5v.5h1.5a.5.5 0 0 0 .5-.5V6a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4.5c0 .28.22.5.5.5H4Zm1-7h6v-.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V4Zm0 6.5v2c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const Print20Filled = /*#__PURE__*/createFluentIcon('Print20Filled', \"20\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V5h.5A2.5 2.5 0 0 1 18 7.5v5c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5V14H3.5A1.5 1.5 0 0 1 2 12.5v-5A2.5 2.5 0 0 1 4.5 5H5v-.5Zm9 0a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V5h8v-.5Zm-8 7v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const Print20Regular = /*#__PURE__*/createFluentIcon('Print20Regular', \"20\", [\"M5 4.5C5 3.67 5.67 3 6.5 3h7c.83 0 1.5.67 1.5 1.5V5h.5A2.5 2.5 0 0 1 18 7.5v5c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5V14H3.5A1.5 1.5 0 0 1 2 12.5v-5A2.5 2.5 0 0 1 4.5 5H5v-.5ZM6 5h8v-.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V5Zm-1 8v-1.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V13h1.5a.5.5 0 0 0 .5-.5v-5c0-.83-.67-1.5-1.5-1.5h-11C3.67 6 3 6.67 3 7.5v5c0 .28.22.5.5.5H5Zm1.5-2a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const Print24Filled = /*#__PURE__*/createFluentIcon('Print24Filled', \"24\", [\"M18 17.5v1.25c0 1.24-1 2.25-2.25 2.25h-7.5C7.01 21 6 20 6 18.75V17.5H4.25c-1.24 0-2.25-1-2.25-2.25v-6C2 7.45 3.46 6 5.25 6H6v-.75C6 4.01 7 3 8.25 3h7.5C17 3 18 4 18 5.25V6h.75C20.55 6 22 7.46 22 9.25v6c0 1.24-1 2.25-2.24 2.25H18Zm-2.25-4h-7.5a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h7.5c.41 0 .75-.34.75-.75v-4.5a.75.75 0 0 0-.75-.75Zm0-9h-7.5a.75.75 0 0 0-.75.75V6h9v-.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const Print24Regular = /*#__PURE__*/createFluentIcon('Print24Regular', \"24\", [\"M15.75 3C17 3 18 4 18 5.25V6h.75C20.55 6 22 7.46 22 9.25v6c0 1.24-1 2.25-2.24 2.25H18v1.25c0 1.24-1 2.25-2.25 2.25h-7.5C7.01 21 6 20 6 18.75V17.5H4.25c-1.24 0-2.25-1-2.25-2.25v-6C2 7.45 3.46 6 5.25 6H6v-.75C6 4.01 7 3 8.25 3h7.5Zm0 10.5h-7.5a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h7.5c.41 0 .75-.34.75-.75v-4.5a.75.75 0 0 0-.75-.75Zm3-6H5.25c-.97 0-1.75.79-1.75 1.75v6c0 .41.34.75.75.75H6v-1.75C6 13.01 7 12 8.25 12h7.5c1.24 0 2.25 1 2.25 2.25V16h1.78c.4-.01.73-.34.73-.75v-6c0-.96-.8-1.75-1.76-1.75Zm-3-3h-7.5a.75.75 0 0 0-.75.75V6h9v-.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const Print28Filled = /*#__PURE__*/createFluentIcon('Print28Filled', \"28\", [\"M7 5.77V7H6a4 4 0 0 0-4 4v7a3 3 0 0 0 3 3h2v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1h2a3 3 0 0 0 3-3v-7a4 4 0 0 0-4-4h-1V5.75A2.75 2.75 0 0 0 18.25 3l-8.5.02A2.75 2.75 0 0 0 7 5.77Zm12.5-.02V7h-11V5.77c0-.7.56-1.25 1.25-1.25l8.5-.02c.69 0 1.25.56 1.25 1.25ZM10 15.5h8c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 8.5 22v-5c0-.83.67-1.5 1.5-1.5Z\"]);\nexport const Print28Regular = /*#__PURE__*/createFluentIcon('Print28Regular', \"28\", [\"M7 5.77V7H6a4 4 0 0 0-4 4v7a3 3 0 0 0 3 3h2v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1h2a3 3 0 0 0 3-3v-7a4 4 0 0 0-4-4h-1V5.75A2.75 2.75 0 0 0 18.25 3l-8.5.02A2.75 2.75 0 0 0 7 5.77ZM21 19.5V17a3 3 0 0 0-3-3h-8a3 3 0 0 0-3 3v2.5H5A1.5 1.5 0 0 1 3.5 18v-7A2.5 2.5 0 0 1 6 8.5h16a2.5 2.5 0 0 1 2.5 2.5v7c0 .83-.67 1.5-1.5 1.5h-2ZM19.5 5.75V7h-11V5.77c0-.7.56-1.25 1.25-1.25l8.5-.02c.69 0 1.25.56 1.25 1.25ZM10 15.5h8c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 8.5 22v-5c0-.83.67-1.5 1.5-1.5Z\"]);\nexport const Print32Filled = /*#__PURE__*/createFluentIcon('Print32Filled', \"32\", [\"M8 6.5V8H7a5 5 0 0 0-5 5v7.5A3.5 3.5 0 0 0 5.5 24H7v1.5a3.5 3.5 0 0 0 3.5 3.5h11a3.5 3.5 0 0 0 3.5-3.5V24h1.5a3.5 3.5 0 0 0 3.5-3.5V13a5 5 0 0 0-5-5h-1V6.5A3.5 3.5 0 0 0 20.5 3h-9A3.5 3.5 0 0 0 8 6.5ZM11.5 5h9c.83 0 1.5.67 1.5 1.5V8H10V6.5c0-.83.67-1.5 1.5-1.5ZM9 19.5c0-.83.67-1.5 1.5-1.5h11c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 9 25.5v-6Z\"]);\nexport const Print32Regular = /*#__PURE__*/createFluentIcon('Print32Regular', \"32\", [\"M24 6.5V8h1a5 5 0 0 1 5 5v7.5a3.5 3.5 0 0 1-3.5 3.5H25v1.5a3.5 3.5 0 0 1-3.5 3.5h-11A3.5 3.5 0 0 1 7 25.5V24H5.5A3.5 3.5 0 0 1 2 20.5V13a5 5 0 0 1 5-5h1V6.5A3.5 3.5 0 0 1 11.5 3h9A3.5 3.5 0 0 1 24 6.5Zm-14 0V8h12V6.5c0-.83-.67-1.5-1.5-1.5h-9c-.83 0-1.5.67-1.5 1.5Zm-1 19c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5h-11c-.83 0-1.5.67-1.5 1.5v6ZM25 22h1.5c.83 0 1.5-.67 1.5-1.5V13a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7.5c0 .83.67 1.5 1.5 1.5H7v-2.5a3.5 3.5 0 0 1 3.5-3.5h11a3.5 3.5 0 0 1 3.5 3.5V22Z\"]);\nexport const Print48Filled = /*#__PURE__*/createFluentIcon('Print48Filled', \"48\", [\"M31.75 8a3.25 3.25 0 0 1 3.24 3.07l.01.18V14h1.75c2.9 0 5.25 2.35 5.25 5.25v13.5c0 1.8-1.46 3.25-3.25 3.25H35v1.75c0 1.8-1.46 3.25-3.25 3.25h-15.5A3.25 3.25 0 0 1 13 37.75V36H9.25A3.25 3.25 0 0 1 6 32.75v-13.5C6 16.35 8.35 14 11.25 14H13v-2.75a3.25 3.25 0 0 1 3.07-3.24l.18-.01h15.5ZM15.5 37.75c0 .41.34.75.75.75h15.5c.41 0 .75-.34.75-.75v-8.5a.75.75 0 0 0-.75-.75h-15.5a.75.75 0 0 0-.75.75v8.5ZM31.75 10.5h-15.5c-.38 0-.7.28-.74.65l-.01.1V14h17v-2.75c0-.38-.28-.7-.65-.74l-.1-.01Z\"]);\nexport const Print48Regular = /*#__PURE__*/createFluentIcon('Print48Regular', \"48\", [\"M16.25 8h15.5a3.25 3.25 0 0 1 3.24 3.07l.01.18V14h1.75c2.9 0 5.25 2.35 5.25 5.25v13.5c0 1.8-1.46 3.25-3.25 3.25H35v1.75c0 1.8-1.46 3.25-3.25 3.25h-15.5A3.25 3.25 0 0 1 13 37.75V36H9.25A3.25 3.25 0 0 1 6 32.75v-13.5C6 16.35 8.35 14 11.25 14H13v-2.75a3.25 3.25 0 0 1 3.07-3.24l.18-.01Zm15.5 20.5h-15.5a.75.75 0 0 0-.75.75v8.5c0 .41.34.75.75.75h15.5c.41 0 .75-.34.75-.75v-8.5a.75.75 0 0 0-.75-.75Zm5-12h-25.5a2.75 2.75 0 0 0-2.75 2.75v13.5c0 .41.34.75.75.75H13v-4.25c0-1.8 1.46-3.25 3.25-3.25h15.5c1.8 0 3.25 1.46 3.25 3.25v4.25h3.75c.41 0 .75-.34.75-.75v-13.5a2.75 2.75 0 0 0-2.75-2.75Zm-5-6h-15.5c-.38 0-.7.28-.74.65l-.01.1V14h17v-2.75c0-.38-.28-.7-.65-.74l-.1-.01Z\"]);\nexport const PrintAdd20Filled = /*#__PURE__*/createFluentIcon('PrintAdd20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-.5 7.5c1.33 0 2.55-.47 3.5-1.26v3.76c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5V15H3.5A1.5 1.5 0 0 1 2 13.5v-5A2.5 2.5 0 0 1 4.5 6H5v-.5C5 4.67 5.67 4 6.5 4h2.7c-.08.32-.15.66-.18 1H6.5a.5.5 0 0 0-.5.5V6h3.02c.26 2.8 2.61 5 5.48 5ZM6 12.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const PrintAdd20Regular = /*#__PURE__*/createFluentIcon('PrintAdd20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm2 10v-3.1c.36-.18.7-.4 1-.66v3.76c0 .83-.67 1.5-1.5 1.5H15v1.5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 16.5V15H3.5A1.5 1.5 0 0 1 2 13.5v-5A2.5 2.5 0 0 1 4.5 6H5v-.5C5 4.67 5.67 4 6.5 4h2.7c-.08.32-.15.66-.18 1H6.5a.5.5 0 0 0-.5.5V6h3.02c.03.34.1.68.19 1H4.5C3.67 7 3 7.67 3 8.5v5c0 .28.22.5.5.5H5v-1.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V14h1.5a.5.5 0 0 0 .5-.5ZM6.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const PrintAdd24Filled = /*#__PURE__*/createFluentIcon('PrintAdd24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM18 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H17V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H18Zm-.5 6c1.75 0 3.34-.7 4.5-1.81v5.06c0 1.24-1 2.25-2.24 2.25H18v1.25c0 1.24-1 2.25-2.25 2.25h-7.5C7.01 22 6 21 6 19.75V18.5H4.25c-1.24 0-2.25-1-2.25-2.25v-6C2 8.45 3.46 7 5.25 7H6v-.75C6 5.01 7 4 8.25 4h3.25c-.2.47-.34.98-.42 1.5H8.25a.75.75 0 0 0-.75.75V7h3.52a6.5 6.5 0 0 0 6.48 6Zm-1 2.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h7.5c.41 0 .75-.34.75-.75v-4.5Z\"]);\nexport const PrintAdd24Regular = /*#__PURE__*/createFluentIcon('PrintAdd24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM18 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H17V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H18Zm2.5 9.25v-3.98a6.52 6.52 0 0 0 1.5-1.08v5.06c0 1.24-1 2.25-2.24 2.25H18v1.25c0 1.24-1 2.25-2.25 2.25h-7.5C7.01 22 6 21 6 19.75V18.5H4.25c-1.24 0-2.25-1-2.25-2.25v-6C2 8.45 3.46 7 5.25 7H6v-.75C6 5.01 7 4 8.25 4h3.25c-.2.47-.34.98-.42 1.5H8.25a.75.75 0 0 0-.75.75V7h3.52c.04.52.14 1.03.3 1.5H5.24c-.97 0-1.75.79-1.75 1.75v6c0 .41.34.75.75.75H6v-1.75C6 14.01 7 13 8.25 13h7.5c1.24 0 2.25 1 2.25 2.25V17h1.78c.4-.01.73-.34.73-.75Zm-4-1a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h7.5c.41 0 .75-.34.75-.75v-4.5Z\"]);\nexport const Production20Filled = /*#__PURE__*/createFluentIcon('Production20Filled', \"20\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 0 8H6a4 4 0 0 1-4-4Zm5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Production20Regular = /*#__PURE__*/createFluentIcon('Production20Regular', \"20\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2Zm-6 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm5-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 0 8H6a4 4 0 0 1-4-4Zm4-3a3 3 0 1 0 0 6h8a3 3 0 1 0 0-6H6Z\"]);\nexport const Production24Filled = /*#__PURE__*/createFluentIcon('Production24Filled', \"24\", [\"M4.5 5.25c0-.97.78-1.75 1.75-1.75h2.5c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5ZM15.25 3.5c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75h-2.5ZM15 5.25c0-.14.11-.25.25-.25h2.5c.14 0 .25.11.25.25v2.5c0 .14-.11.25-.25.25h-2.5a.25.25 0 0 1-.25-.25v-2.5ZM2 16a4.5 4.5 0 0 1 4.5-4.5h11a4.5 4.5 0 1 1 0 9h-11A4.5 4.5 0 0 1 2 16Zm6.5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm3.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const Production24Regular = /*#__PURE__*/createFluentIcon('Production24Regular', \"24\", [\"M6.25 3.5c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75h-2.5Zm7.25 1.75c0-.97.78-1.75 1.75-1.75h2.5c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5ZM15.25 5a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25h-2.5ZM7 17.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm6.5-1.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm3.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM2 16a4.5 4.5 0 0 1 4.5-4.5h11a4.5 4.5 0 1 1 0 9h-11A4.5 4.5 0 0 1 2 16Zm4.5-3a3 3 0 1 0 0 6h11a3 3 0 1 0 0-6h-11Z\"]);\nexport const ProductionCheckmark20Filled = /*#__PURE__*/createFluentIcon('ProductionCheckmark20Filled', \"20\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM6 8a4 4 0 1 0 0 8h3.2a5.5 5.5 0 0 1 .1-3.29A1 1 0 0 1 10 11a1 1 0 0 1 .23.03 5.49 5.49 0 0 1 7.1-1.25A4 4 0 0 0 14 8H6Zm0 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm13 1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ProductionCheckmark20Regular = /*#__PURE__*/createFluentIcon('ProductionCheckmark20Regular', \"20\", [\"M5 3.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Zm6.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Zm.5 3V4h2v2h-2ZM2 12a4 4 0 0 1 4-4h8a4 4 0 0 1 3.33 1.78A5.47 5.47 0 0 0 14 9H6a3 3 0 1 0 0 6h3.02c.03.34.1.68.19 1H6a4 4 0 0 1-4-4Zm8-1a1 1 0 0 1 .23.03 5.5 5.5 0 0 0-.93 1.68A1 1 0 0 1 10 11Zm-4 2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm13 1.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ProductionCheckmark24Filled = /*#__PURE__*/createFluentIcon('ProductionCheckmark24Filled', \"24\", [\"M6.25 3.5c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75h-2.5Zm7.25 1.75v2.5c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75h-2.5c-.97 0-1.75.78-1.75 1.75ZM15.25 5h2.5c.14 0 .25.11.25.25v2.5c0 .14-.11.25-.25.25h-2.5a.25.25 0 0 1-.25-.25v-2.5c0-.14.11-.25.25-.25ZM6.5 11.5a4.5 4.5 0 1 0 0 9h5.23a6.47 6.47 0 0 1-.72-3.37 1.5 1.5 0 0 1 .7-2.6A6.53 6.53 0 0 1 15 11.5H6.5Zm.5 6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm16 0a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const ProductionCheckmark24Regular = /*#__PURE__*/createFluentIcon('ProductionCheckmark24Regular', \"24\", [\"M6.25 3.5c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h2.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75h-2.5Zm7.25 1.75c0-.97.78-1.75 1.75-1.75h2.5c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75h-2.5c-.97 0-1.75-.78-1.75-1.75v-2.5ZM15.25 5a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h2.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25h-2.5ZM7 17.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM6.5 13h6.31A6.51 6.51 0 0 1 15 11.5H6.5a4.5 4.5 0 1 0 0 9h5.23a6.46 6.46 0 0 1-.56-1.5H6.5a3 3 0 1 1 0-6Zm4 3c0 .45.2.85.51 1.13.05-.94.3-1.82.7-2.6A1.5 1.5 0 0 0 10.5 16ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const Prohibited12Filled = /*#__PURE__*/createFluentIcon('Prohibited12Filled', \"12\", [\"M11 6A5 5 0 1 1 1 6a5 5 0 0 1 10 0ZM9.5 6c0-.7-.2-1.34-.55-1.89L4.1 8.95A3.5 3.5 0 0 0 9.5 6ZM7.89 3.05A3.5 3.5 0 0 0 3.05 7.9L7.9 3.05Z\"]);\nexport const Prohibited12Regular = /*#__PURE__*/createFluentIcon('Prohibited12Regular', \"12\", [\"M6 1a5 5 0 1 0 0 10A5 5 0 0 0 6 1ZM2 6a4 4 0 0 1 6.45-3.16L2.84 8.45A3.98 3.98 0 0 1 2 6Zm1.55 3.16 5.61-5.61a4 4 0 0 1-5.61 5.61Z\"]);\nexport const Prohibited16Filled = /*#__PURE__*/createFluentIcon('Prohibited16Filled', \"16\", [\"M11.32 3.62a5.5 5.5 0 0 0-7.7 7.7l7.7-7.7Zm1.06 1.06-7.7 7.7a5.5 5.5 0 0 0 7.7-7.7ZM3.05 3.05a7 7 0 1 1 9.9 9.9 7 7 0 0 1-9.9-9.9Z\"]);\nexport const Prohibited16Regular = /*#__PURE__*/createFluentIcon('Prohibited16Regular', \"16\", [\"M11.87 3.42a6 6 0 0 0-8.45 8.45l8.45-8.45Zm.71.7-8.45 8.46a6 6 0 0 0 8.45-8.45ZM3.05 3.06a7 7 0 1 1 9.9 9.9 7 7 0 0 1-9.9-9.9Z\"]);\nexport const Prohibited20Filled = /*#__PURE__*/createFluentIcon('Prohibited20Filled', \"20\", [\"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1.5 0c0-1.52-.53-2.93-1.4-4.04L5.96 15.1A6.5 6.5 0 0 0 16.5 10ZM4.9 14.04l9.14-9.14a6.5 6.5 0 0 0-9.13 9.13Z\"]);\nexport const Prohibited20Regular = /*#__PURE__*/createFluentIcon('Prohibited20Regular', \"20\", [\"M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-1 0c0-1.75-.64-3.36-1.7-4.58l-9.88 9.87A7 7 0 0 0 17 10ZM4.7 14.58l9.88-9.87a7 7 0 0 0-9.87 9.87Z\"]);\nexport const Prohibited24Filled = /*#__PURE__*/createFluentIcon('Prohibited24Filled', \"24\", [\"M16.9 5.68A8 8 0 0 0 5.69 16.91L16.91 5.68Zm1.42 1.41L7.09 18.32A8 8 0 0 0 18.32 7.09ZM4.92 4.93a10 10 0 1 1 14.15 14.14A10 10 0 0 1 4.93 4.93Z\"]);\nexport const Prohibited24Regular = /*#__PURE__*/createFluentIcon('Prohibited24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm6.52 4.54L6.54 18.52A8.5 8.5 0 0 0 18.51 6.55ZM12 3.5a8.5 8.5 0 0 0-6.52 13.96L17.46 5.48A8.47 8.47 0 0 0 12 3.5Z\"]);\nexport const Prohibited28Filled = /*#__PURE__*/createFluentIcon('Prohibited28Filled', \"28\", [\"M20.33 6.26A10 10 0 0 0 6.26 20.33L20.33 6.26Zm1.41 1.41L7.67 21.74A10 10 0 0 0 21.74 7.67ZM5.51 5.51A12 12 0 1 1 22.5 22.5 12 12 0 0 1 5.5 5.5Z\"]);\nexport const Prohibited28Regular = /*#__PURE__*/createFluentIcon('Prohibited28Regular', \"28\", [\"M14 2a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm7.94 5.12L7.12 21.94A10.5 10.5 0 0 0 21.93 7.13ZM14 3.5a10.5 10.5 0 0 0-7.94 17.38L20.88 6.06A10.46 10.46 0 0 0 14 3.5Z\"]);\nexport const Prohibited32Filled = /*#__PURE__*/createFluentIcon('Prohibited32Filled', \"32\", [\"M7.03 23.2A11.5 11.5 0 0 1 23.2 7.03L7.03 23.2Zm1.77 1.77L24.97 8.8A11.5 11.5 0 0 1 8.8 24.97ZM2 16a14 14 0 1 0 28 0 14 14 0 0 0-28 0Z\"]);\nexport const Prohibited32Regular = /*#__PURE__*/createFluentIcon('Prohibited32Regular', \"32\", [\"M6.84 23.75A12 12 0 0 1 23.75 6.84L6.84 23.74Zm1.41 1.41 16.91-16.9A12 12 0 0 1 8.25 25.16ZM2 16a14 14 0 1 0 28 0 14 14 0 0 0-28 0Z\"]);\nexport const Prohibited48Filled = /*#__PURE__*/createFluentIcon('Prohibited48Filled', \"48\", [\"M34.91 10.96a17 17 0 0 0-23.95 23.95l23.95-23.95Zm2.13 2.13L13.09 37.04a17 17 0 0 0 23.95-23.95ZM9.86 9.86a20 20 0 1 1 28.28 28.28A20 20 0 0 1 9.86 9.86Z\"]);\nexport const Prohibited48Regular = /*#__PURE__*/createFluentIcon('Prohibited48Regular', \"48\", [\"M35.46 10.77a17.5 17.5 0 0 0-24.69 24.69l24.69-24.69Zm1.77 1.77L12.54 37.23a17.5 17.5 0 0 0 24.69-24.69ZM9.86 9.86a20 20 0 1 1 28.28 28.28A20 20 0 0 1 9.86 9.86Z\"]);\nexport const ProhibitedMultiple16Filled = /*#__PURE__*/createFluentIcon('ProhibitedMultiple16Filled', \"16\", [\"M7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10Zm0-1.5c-.7 0-1.34-.2-1.89-.55L9.95 5.1A3.5 3.5 0 0 1 7 10.5Zm1.89-6.45L4.05 8.9A3.5 3.5 0 0 1 8.9 4.05ZM13 7a6 6 0 0 1-7.14 5.9 5 5 0 0 0 7.03-7.03c.07.36.11.74.11 1.13Z\"]);\nexport const ProhibitedMultiple16Regular = /*#__PURE__*/createFluentIcon('ProhibitedMultiple16Regular', \"16\", [\"M7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10Zm0-1c-.92 0-1.78-.31-2.45-.84l5.61-5.61A4 4 0 0 1 7 11Zm2.45-7.16L3.84 9.45a4 4 0 0 1 5.61-5.61ZM13 7c0 .38-.03.75-.1 1.1a4.01 4.01 0 0 1-4.8 4.8 6.03 6.03 0 0 1-2.24 0 5 5 0 0 0 7.03-7.03c.07.36.11.74.11 1.13Z\"]);\nexport const ProhibitedMultiple20Filled = /*#__PURE__*/createFluentIcon('ProhibitedMultiple20Filled', \"20\", [\"M9 2a7 7 0 1 1 0 14A7 7 0 0 1 9 2Zm3.32 2.62a5.5 5.5 0 0 0-7.7 7.7l7.7-7.7Zm1.06 1.06-7.7 7.7a5.5 5.5 0 0 0 7.7-7.7ZM9 17a8 8 0 0 0 7.75-10 7 7 0 0 1-9.74 9.74c.63.17 1.3.26 1.99.26Z\"]);\nexport const ProhibitedMultiple20Regular = /*#__PURE__*/createFluentIcon('ProhibitedMultiple20Regular', \"20\", [\"M2 9a7 7 0 1 1 14 0A7 7 0 0 1 2 9Zm7-6a6 6 0 0 0-4.58 9.87l8.45-8.45A5.98 5.98 0 0 0 9 3Zm0 12a6 6 0 0 0 4.58-9.87l-8.45 8.45A5.98 5.98 0 0 0 9 15Zm2 3a6.97 6.97 0 0 1-4-1.25 8.01 8.01 0 0 0 3.07.18 6 6 0 0 0 6.86-6.86 8.07 8.07 0 0 0-.18-3.06A7 7 0 0 1 11 18Z\"]);\nexport const ProhibitedMultiple24Filled = /*#__PURE__*/createFluentIcon('ProhibitedMultiple24Filled', \"24\", [\"M10.75 19.5a8.75 8.75 0 1 0 0-17.5 8.75 8.75 0 0 0 0 17.5Zm0-2c-1.5 0-2.9-.5-4.01-1.32l9.44-9.44a6.75 6.75 0 0 1-5.43 10.76Zm4.01-12.18-9.44 9.44a6.75 6.75 0 0 1 9.44-9.44Zm5.74 5.43a9.75 9.75 0 0 1-12.8 9.26A8.75 8.75 0 0 0 20.02 7.7c.3.97.48 2 .48 3.06Z\"]);\nexport const ProhibitedMultiple24Regular = /*#__PURE__*/createFluentIcon('ProhibitedMultiple24Regular', \"24\", [\"M2 10.75a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0Zm8.75-7.25a7.25 7.25 0 0 0-5.63 11.82l10.2-10.2a7.22 7.22 0 0 0-4.57-1.62Zm0 14.5a7.25 7.25 0 0 0 5.63-11.82l-10.2 10.2A7.22 7.22 0 0 0 10.75 18Zm2.5 4c-2.1 0-4.04-.75-5.55-1.99a9.74 9.74 0 0 0 4.4.4 7.25 7.25 0 0 0 8.32-8.31 9.84 9.84 0 0 0-.4-4.4A8.75 8.75 0 0 1 13.25 22Z\"]);\nexport const ProhibitedMultiple28Filled = /*#__PURE__*/createFluentIcon('ProhibitedMultiple28Filled', \"28\", [\"M6.56 6.56A8.75 8.75 0 0 1 18.2 5.9L5.89 18.19a8.75 8.75 0 0 1 .67-11.63Zm.75 13.04 12.3-12.3A8.75 8.75 0 0 1 7.3 19.6ZM20.35 5.15a10.75 10.75 0 1 0-15.2 15.2 10.75 10.75 0 0 0 15.2-15.2Zm3.44 3.57A11.75 11.75 0 0 1 8.72 23.8 10.75 10.75 0 0 0 23.8 8.72Z\"]);\nexport const ProhibitedMultiple28Regular = /*#__PURE__*/createFluentIcon('ProhibitedMultiple28Regular', \"28\", [\"M6.2 6.2a9.25 9.25 0 0 1 12.54-.5L5.7 18.74A9.25 9.25 0 0 1 6.2 6.2Zm.56 13.6L19.8 6.76A9.25 9.25 0 0 1 6.76 19.8Zm13.6-14.65a10.75 10.75 0 1 0-15.21 15.2 10.75 10.75 0 0 0 15.2-15.2Zm-6.29 19.28a9.25 9.25 0 0 0 10.35-10.35 11.88 11.88 0 0 0-.63-5.36A10.75 10.75 0 0 1 8.72 23.8a11.73 11.73 0 0 0 5.35.64Z\"]);\nexport const ProhibitedNote20Filled = /*#__PURE__*/createFluentIcon('ProhibitedNote20Filled', \"20\", [\"M18 10.17A8.02 8.02 0 0 0 10 2a8 8 0 0 0-.84 15.96A3 3 0 0 1 9 17v-.58a6.47 6.47 0 0 1-3.04-1.32l1.57-1.57 7.57-7.57A6.47 6.47 0 0 1 16.5 10h.5a3 3 0 0 1 1 .17ZM14.04 4.9 4.9 14.04a6.5 6.5 0 0 1 9.13-9.13ZM10 13c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-4Zm6.5 3h-4a.5.5 0 1 0 0 1h4a.5.5 0 1 0 0-1Zm-4-3a.5.5 0 1 0 0 1h4a.5.5 0 1 0 0-1h-4Z\"]);\nexport const ProhibitedNote20Regular = /*#__PURE__*/createFluentIcon('ProhibitedNote20Regular', \"20\", [\"M18 10v.17a3 3 0 0 0-1-.17c0-1.75-.64-3.36-1.7-4.58l-9.88 9.87A6.97 6.97 0 0 0 9 16.93V17a3 3 0 0 0 .16.96A8 8 0 1 1 18 10ZM4.7 14.58l9.88-9.87a7 7 0 0 0-9.87 9.87ZM12 11a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-5Zm.5 5h4a.5.5 0 1 1 0 1h-4a.5.5 0 1 1 0-1Zm-.5-2.5c0-.28.22-.5.5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ProjectionScreen16Filled = /*#__PURE__*/createFluentIcon('ProjectionScreen16Filled', \"16\", [\"M3 2a1 1 0 0 0 0 2v4.5A2.5 2.5 0 0 0 5.5 11h2v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2h2A2.5 2.5 0 0 0 13 8.5V4a1 1 0 1 0 0-2H3Z\"]);\nexport const ProjectionScreen16Regular = /*#__PURE__*/createFluentIcon('ProjectionScreen16Regular', \"16\", [\"M3 2a1 1 0 0 0 0 2v4.5A2.5 2.5 0 0 0 5.5 11h2v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2h2A2.5 2.5 0 0 0 13 8.5V4a1 1 0 1 0 0-2H3Zm1 2h8v4.5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 4 8.5V4Z\"]);\nexport const ProjectionScreen20Filled = /*#__PURE__*/createFluentIcon('ProjectionScreen20Filled', \"20\", [\"M3 3a1 1 0 0 0 0 2v6a3 3 0 0 0 3 3h3.5v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2H14a3 3 0 0 0 3-3V5a1 1 0 1 0 0-2H3Z\"]);\nexport const ProjectionScreen20Regular = /*#__PURE__*/createFluentIcon('ProjectionScreen20Regular', \"20\", [\"M3 3a1 1 0 0 0 0 2v6a3 3 0 0 0 3 3h3.5v2h-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-2v-2H14a3 3 0 0 0 3-3V5a1 1 0 1 0 0-2H3Zm1 2h12v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V5Z\"]);\nexport const ProjectionScreen24Filled = /*#__PURE__*/createFluentIcon('ProjectionScreen24Filled', \"24\", [\"M3.5 3A1.5 1.5 0 0 0 3 5.91v7.34A3.75 3.75 0 0 0 6.75 17h4.5v2.5h-3.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-3.5V17h4.5A3.75 3.75 0 0 0 21 13.25V5.91A1.5 1.5 0 0 0 20.5 3h-17Z\"]);\nexport const ProjectionScreen24Regular = /*#__PURE__*/createFluentIcon('ProjectionScreen24Regular', \"24\", [\"M3.5 3A1.5 1.5 0 0 0 3 5.91v7.34A3.75 3.75 0 0 0 6.75 17h4.5v2.5h-3.5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-3.5V17h4.5A3.75 3.75 0 0 0 21 13.25V5.91A1.5 1.5 0 0 0 20.5 3h-17Zm1 3h15v7.25c0 1.24-1 2.25-2.25 2.25H6.75c-1.24 0-2.25-1-2.25-2.25V6Z\"]);\nexport const ProjectionScreen28Filled = /*#__PURE__*/createFluentIcon('ProjectionScreen28Filled', \"28\", [\"M4 3a2 2 0 0 0-1 3.73v9.52c0 2.35 1.9 4.25 4.25 4.25h6v3h-4.5a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5h-4.5v-3h6c2.35 0 4.25-1.9 4.25-4.25V6.73A2 2 0 0 0 24 3H4Z\"]);\nexport const ProjectionScreen28Regular = /*#__PURE__*/createFluentIcon('ProjectionScreen28Regular', \"28\", [\"M4 3a2 2 0 0 0-1 3.73v9.52c0 2.35 1.9 4.25 4.25 4.25h6v3h-4.5a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5h-4.5v-3h6c2.35 0 4.25-1.9 4.25-4.25V6.73A2 2 0 0 0 24 3H4Zm.5 4h19v9.25A2.75 2.75 0 0 1 20.75 19H7.25a2.75 2.75 0 0 1-2.75-2.75V7Z\"]);\nexport const ProjectionScreenDismiss16Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss16Filled', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L10.5 4.79 9.35 3.65a.5.5 0 1 0-.7.7L9.79 5.5 8.65 6.65a.5.5 0 1 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L11.21 5.5l1.14-1.15ZM10.5 11c.37 0 .73-.04 1.07-.1A2.5 2.5 0 0 1 9.5 12h-2v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2h-2A2.5 2.5 0 0 1 2 9.5V5a1 1 0 0 1 0-2h3.6a5.5 5.5 0 0 0 4.9 8Z\"]);\nexport const ProjectionScreenDismiss16Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss16Regular', \"16\", [\"M15 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L10.5 4.79 9.35 3.65a.5.5 0 1 0-.7.7L9.79 5.5 8.65 6.65a.5.5 0 1 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L11.21 5.5l1.14-1.15ZM10.5 11c.37 0 .73-.04 1.07-.1A2.5 2.5 0 0 1 9.5 12h-2v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2h-2A2.5 2.5 0 0 1 2 9.5V5a1 1 0 0 1 0-2h3.6a5.46 5.46 0 0 0-.58 2H3v4.5c0 .83.67 1.5 1.5 1.5h5c.12 0 .23-.01.34-.04.22.03.44.04.66.04Z\"]);\nexport const ProjectionScreenDismiss20Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM14.5 11c.9 0 1.75-.22 2.5-.6v.6a3 3 0 0 1-3 3h-3.5v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2H6a3 3 0 0 1-3-3V5a1 1 0 0 1 0-2h6.6a5.5 5.5 0 0 0 4.9 8Z\"]);\nexport const ProjectionScreenDismiss20Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L14.5 4.79l-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7L15.21 5.5l1.14-1.15ZM16 11v-.2c.35-.1.68-.24 1-.4v.6a3 3 0 0 1-3 3h-3.5v2h2a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1h2v-2H6a3 3 0 0 1-3-3V5a1 1 0 0 1 0-2h6.6a5.47 5.47 0 0 0-.58 2H4v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2Z\"]);\nexport const ProjectionScreenDismiss24Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L18.21 6.5l1.64-1.65a.5.5 0 0 0-.7-.7L17.5 5.79l-1.65-1.64ZM17.5 13c1.29 0 2.49-.38 3.5-1.02v1.27A3.75 3.75 0 0 1 17.25 17h-4.5v2.5h3.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.5V17h-4.5A3.75 3.75 0 0 1 3 13.25V5.91A1.5 1.5 0 0 1 3.5 3h8.52a6.5 6.5 0 0 0 5.48 10Z\"]);\nexport const ProjectionScreenDismiss24Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7L18.21 6.5l1.64-1.65a.5.5 0 0 0-.7-.7L17.5 5.79l-1.65-1.64Zm3.65 9.1v-.56a6.47 6.47 0 0 0 1.5-.71v1.27A3.75 3.75 0 0 1 17.25 17h-4.5v2.5h3.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.5V17h-4.5A3.75 3.75 0 0 1 3 13.25V5.91A1.5 1.5 0 0 1 3.5 3h8.52c-.56.88-.92 1.9-1 3H4.5v7.25c0 1.24 1 2.25 2.25 2.25h10.5c1.24 0 2.25-1 2.25-2.25Z\"]);\nexport const ProjectionScreenDismiss28Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss28Filled', \"28\", [\"M27 7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-9.15-3.35a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7L21.21 7.5l2.64-2.65a.5.5 0 0 0-.7-.7L20.5 6.79l-2.65-2.64ZM20.5 15c1.69 0 3.25-.56 4.5-1.5v2.75c0 2.35-1.9 4.25-4.25 4.25h-6v3h4.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5h4.5v-3h-6A4.25 4.25 0 0 1 3 16.25V6.73A2 2 0 0 1 4 3h10.5a7.5 7.5 0 0 0 6 12Z\"]);\nexport const ProjectionScreenDismiss28Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenDismiss28Regular', \"28\", [\"M27 7.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-9.15-3.35a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7L21.21 7.5l2.64-2.65a.5.5 0 0 0-.7-.7L20.5 6.79l-2.65-2.64Zm5.65 12.1v-1.87a7.49 7.49 0 0 0 1.5-.88v2.75c0 2.35-1.9 4.25-4.25 4.25h-6v3h4.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5h4.5v-3h-6A4.25 4.25 0 0 1 3 16.25V6.73A2 2 0 0 1 4 3h10.5a7.46 7.46 0 0 0-1.48 4H4.5v9.25A2.75 2.75 0 0 0 7.25 19h13.5a2.75 2.75 0 0 0 2.75-2.75Z\"]);\nexport const ProjectionScreenText20Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenText20Filled', \"20\", [\"M1 3.5C1 2.67 1.67 2 2.5 2h15a1.5 1.5 0 0 1 .5 2.91V12a3 3 0 0 1-3 3h-4.5v2h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2H5a3 3 0 0 1-3-3V4.91c-.58-.2-1-.76-1-1.41ZM7.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM6 9.5c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5ZM7.5 11a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const ProjectionScreenText20Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenText20Regular', \"20\", [\"M7.5 7a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM6 9.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5ZM7.5 11a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm-5-9A1.5 1.5 0 0 0 2 4.91V12a3 3 0 0 0 3 3h4.5v2h-3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-3v-2H15a3 3 0 0 0 3-3V4.91A1.5 1.5 0 0 0 17.5 2h-15ZM3 12V5h14v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z\"]);\nexport const ProjectionScreenText24Filled = /*#__PURE__*/createFluentIcon('ProjectionScreenText24Filled', \"24\", [\"M2 4.5C2 3.67 2.67 3 3.5 3h17a1.5 1.5 0 0 1 .5 2.91v7.34A3.75 3.75 0 0 1 17.25 17h-4.5v2.5h3.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.5V17h-4.5A3.75 3.75 0 0 1 3 13.25V5.91c-.58-.2-1-.76-1-1.41Zm7 3.25c0 .41.34.75.75.75h4a.75.75 0 0 0 0-1.5h-4a.75.75 0 0 0-.75.75ZM9.75 13a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Zm-1-3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const ProjectionScreenText24Regular = /*#__PURE__*/createFluentIcon('ProjectionScreenText24Regular', \"24\", [\"M9 7.75c0-.41.34-.75.75-.75h4a.75.75 0 0 1 0 1.5h-4A.75.75 0 0 1 9 7.75ZM9.75 13a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Zm-1-3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM2 4.5C2 3.67 2.67 3 3.5 3h17a1.5 1.5 0 0 1 .5 2.91v7.34A3.75 3.75 0 0 1 17.25 17h-4.5v2.5h3.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.5V17h-4.5A3.75 3.75 0 0 1 3 13.25V5.91c-.58-.2-1-.76-1-1.41ZM19.5 6h-15v7.25c0 1.24 1 2.25 2.25 2.25h10.5c1.24 0 2.25-1 2.25-2.25V6Z\"]);\nexport const ProtocolHandler16Filled = /*#__PURE__*/createFluentIcon('ProtocolHandler16Filled', \"16\", [\"M3.59 4.41 1.4 6.6a2 2 0 0 0 0 2.82L3.6 11.6a2 2 0 0 0 2.82 0L8.6 9.4a2 2 0 0 0 0-2.82L6.4 4.4a2 2 0 0 0-2.82 0Zm6 7.18-.88-.88.58-.59a3 3 0 0 0 0-4.24l-.58-.59.88-.88a2 2 0 0 1 2.82 0L14.6 6.6a2 2 0 0 1 0 2.82L12.4 11.6a2 2 0 0 1-2.82 0Z\"]);\nexport const ProtocolHandler16Regular = /*#__PURE__*/createFluentIcon('ProtocolHandler16Regular', \"16\", [\"M3.59 4.41 1.4 6.6a2 2 0 0 0 0 2.82L3.6 11.6a2 2 0 0 0 2.82 0L8.6 9.4a2 2 0 0 0 0-2.82L6.4 4.4a2 2 0 0 0-2.82 0ZM2.12 7.3 4.3 5.12a1 1 0 0 1 1.42 0L7.88 7.3a1 1 0 0 1 0 1.42L5.7 10.88a1 1 0 0 1-1.42 0L2.12 8.7a1 1 0 0 1 0-1.42Zm7.47 4.3-.88-.88.58-.59.12-.12.88.88a1 1 0 0 0 1.42 0l2.17-2.17a1 1 0 0 0 0-1.42L11.7 5.12a1 1 0 0 0-1.42 0L9.41 6a3.05 3.05 0 0 0-.12-.12l-.58-.59.88-.88a2 2 0 0 1 2.82 0L14.6 6.6a2 2 0 0 1 0 2.82L12.4 11.6a2 2 0 0 1-2.82 0Z\"]);\nexport const ProtocolHandler20Filled = /*#__PURE__*/createFluentIcon('ProtocolHandler20Filled', \"20\", [\"M5.59 5.41 2.4 8.6a2 2 0 0 0 0 2.82L5.6 14.6a2 2 0 0 0 2.82 0l3.18-3.18a2 2 0 0 0 0-2.82L8.4 5.4a2 2 0 0 0-2.82 0Zm6 9.18-.88-.88 1.58-1.59a3 3 0 0 0 0-4.24l-1.58-1.59.88-.88a2 2 0 0 1 2.82 0L17.6 8.6a2 2 0 0 1 0 2.82L14.4 14.6a2 2 0 0 1-2.82 0Z\"]);\nexport const ProtocolHandler20Regular = /*#__PURE__*/createFluentIcon('ProtocolHandler20Regular', \"20\", [\"M5.59 5.41 2.4 8.6a2 2 0 0 0 0 2.82L5.6 14.6a2 2 0 0 0 2.82 0l3.18-3.18a2 2 0 0 0 0-2.82L8.4 5.4a2 2 0 0 0-2.82 0ZM3.12 9.3 6.3 6.12a1 1 0 0 1 1.42 0l3.17 3.17a1 1 0 0 1 0 1.42L7.7 13.88a1 1 0 0 1-1.42 0L3.12 10.7a1 1 0 0 1 0-1.42Zm8.47 5.3-.88-.88.7-.71.88.88a1 1 0 0 0 1.42 0l3.17-3.17a1 1 0 0 0 0-1.42L13.7 6.12a1 1 0 0 0-1.42 0l-.88.88-.7-.7.88-.89a2 2 0 0 1 2.82 0L17.6 8.6a2 2 0 0 1 0 2.82L14.4 14.6a2 2 0 0 1-2.82 0Z\"]);\nexport const ProtocolHandler24Filled = /*#__PURE__*/createFluentIcon('ProtocolHandler24Filled', \"24\", [\"m13.48 17.73-.77-.77 2.48-2.49a3.5 3.5 0 0 0 0-4.95L12.7 7.04l.77-.77a2.5 2.5 0 0 1 3.54 0l3.96 3.96a2.5 2.5 0 0 1 0 3.54l-3.96 3.96a2.5 2.5 0 0 1-3.54 0Zm1-3.96a2.5 2.5 0 0 0 0-3.54l-3.96-3.96a2.5 2.5 0 0 0-3.54 0l-3.96 3.96a2.5 2.5 0 0 0 0 3.54l3.96 3.96a2.5 2.5 0 0 0 3.54 0l3.96-3.96Z\"]);\nexport const ProtocolHandler24Regular = /*#__PURE__*/createFluentIcon('ProtocolHandler24Regular', \"24\", [\"m13.73 17.73-1.02-1.02 1.06-1.06 1.02 1.02a1 1 0 0 0 1.42 0l3.96-3.96a1 1 0 0 0 0-1.42l-3.96-3.96a1 1 0 0 0-1.42 0l-1.02 1.02L12.7 7.3l1.02-1.02a2.5 2.5 0 0 1 3.54 0l3.96 3.96a2.5 2.5 0 0 1 0 3.54l-3.96 3.96a2.5 2.5 0 0 1-3.54 0Zm-7-11.46-3.96 3.96a2.5 2.5 0 0 0 0 3.54l3.96 3.96a2.5 2.5 0 0 0 3.54 0l3.96-3.96a2.5 2.5 0 0 0 0-3.54l-3.96-3.96a2.5 2.5 0 0 0-3.54 0Zm-2.9 5.02 3.96-3.96a1 1 0 0 1 1.42 0l3.96 3.96a1 1 0 0 1 0 1.42l-3.96 3.96a1 1 0 0 1-1.42 0l-3.96-3.96a1 1 0 0 1 0-1.42Z\"]);\nexport const Pulse20Filled = /*#__PURE__*/createFluentIcon('Pulse20Filled', \"20\", [\"M7.01 3c.33 0 .62.23.71.55l2.82 10.07 2.24-7.1a.75.75 0 0 1 1.4-.07L15.5 9.5h1.76a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.69-.45l-.7-1.65-2.4 7.58a.75.75 0 0 1-1.43-.03L6.97 6.41l-1.25 4.06A.75.75 0 0 1 5 11H2.75a.75.75 0 0 1 0-1.5h1.7l1.83-5.97c.1-.32.4-.53.73-.53Z\"]);\nexport const Pulse20Regular = /*#__PURE__*/createFluentIcon('Pulse20Regular', \"20\", [\"M7 3a.5.5 0 0 1 .48.37l3.05 11.3 2.5-8.31a.5.5 0 0 1 .94-.04L15.35 10h2.15a.5.5 0 0 1 0 1H15a.5.5 0 0 1-.47-.32l-.98-2.62-2.57 8.58a.5.5 0 0 1-.96-.01L6.99 5.37l-1.5 5.27A.5.5 0 0 1 5 11H2.5a.5.5 0 0 1 0-1h2.12l1.9-6.64A.5.5 0 0 1 7 3Z\"]);\nexport const Pulse24Filled = /*#__PURE__*/createFluentIcon('Pulse24Filled', \"24\", [\"m8.47 7.24 3.06 12.99c.23 1 1.63 1.04 1.93.06l2.94-9.58.39 1.53a1 1 0 0 0 .97.76H21a1 1 0 1 0 0-2h-2.47l-1.06-4.24c-.25-.99-1.63-1.02-1.93-.05l-2.91 9.47-3.15-13.4c-.24-1.03-1.7-1.04-1.95-.02L5.47 11H3a1 1 0 0 0 0 2h3.25a1 1 0 0 0 .97-.76l1.25-5Z\"]);\nexport const Pulse24Regular = /*#__PURE__*/createFluentIcon('Pulse24Regular', \"24\", [\"m8.46 6.8 3.29 13.63c.17.73 1.2.77 1.44.05l3.26-10.12.58 2.1c.1.32.39.54.72.54h3.5a.75.75 0 0 0 0-1.5h-2.93l-1.1-3.95a.75.75 0 0 0-1.44-.03l-3.2 9.96-3.35-13.9c-.19-.76-1.26-.77-1.46-.02l-2.1 7.94H2.75a.75.75 0 0 0 0 1.5h3.5c.34 0 .63-.23.72-.56l1.5-5.63Z\"]);\nexport const Pulse28Filled = /*#__PURE__*/createFluentIcon('Pulse28Filled', \"28\", [\"M10.04 3a1 1 0 0 1 .94.78l3.7 16.5 3.87-11.6a1 1 0 0 1 1.88-.05L22.18 13H25a1 1 0 1 1 0 2h-3.5a1 1 0 0 1-.93-.63l-.98-2.46-4.14 12.4a1 1 0 0 1-1.93-.09L9.86 7.94l-1.9 6.35A1 1 0 0 1 7 15H3a1 1 0 1 1 0-2h3.26l2.78-9.29a1 1 0 0 1 1-.7Z\"]);\nexport const Pulse28Regular = /*#__PURE__*/createFluentIcon('Pulse28Regular', \"28\", [\"M10.02 3c.35.01.64.25.71.59l3.9 17.79L18.8 8.52a.75.75 0 0 1 1.43.03l1.35 4.95h3.68a.75.75 0 0 1 0 1.5H21a.75.75 0 0 1-.72-.55l-.84-3.07-4.23 13.1a.75.75 0 0 1-1.44-.07L9.9 6.81l-2.18 7.65A.75.75 0 0 1 7 15H2.75a.75.75 0 0 1 0-1.5h3.68l2.85-9.96c.1-.33.4-.55.74-.54Z\"]);\nexport const Pulse32Filled = /*#__PURE__*/createFluentIcon('Pulse32Filled', \"32\", [\"M11.53 5c.55.01 1.02.38 1.17.91l4.36 15.44 3.25-10.47a1.25 1.25 0 0 1 2.33-.15l2.16 4.77h2.95a1.25 1.25 0 1 1 0 2.5H24c-.49 0-.94-.29-1.14-.73l-1.14-2.51-3.53 11.36a1.25 1.25 0 0 1-2.4-.03L11.4 10.5l-2.21 6.65c-.17.5-.65.85-1.19.85H4.25a1.25 1.25 0 1 1 0-2.5H7.1l3.21-9.65c.18-.52.67-.86 1.22-.85Z\"]);\nexport const Pulse32Regular = /*#__PURE__*/createFluentIcon('Pulse32Regular', \"32\", [\"M11.52 5a1 1 0 0 1 .94.73l4.58 16.65 3.5-11.67a1 1 0 0 1 1.88-.1L24.67 16H28a1 1 0 1 1 0 2h-4a1 1 0 0 1-.92-.62l-1.43-3.41-3.7 12.32a1 1 0 0 1-1.91-.02L11.43 9.52 8.95 17.3A1 1 0 0 1 8 18H4a1 1 0 1 1 0-2h3.27l3.28-10.3a1 1 0 0 1 .97-.7Z\"]);\nexport const PulseSquare20Filled = /*#__PURE__*/createFluentIcon('PulseSquare20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm5.97 1.33a.5.5 0 0 0-.94 0L6.65 10H5.5a.5.5 0 0 0 0 1H7c.2 0 .4-.13.47-.32l1.02-2.73 2.04 5.72a.5.5 0 0 0 .92.05L12.8 11h1.69a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.45.28l-.97 1.95-2.1-5.9Z\"]);\nexport const PulseSquare20Regular = /*#__PURE__*/createFluentIcon('PulseSquare20Regular', \"20\", [\"M8.97 6.33a.5.5 0 0 0-.94 0L6.65 10H5.5a.5.5 0 0 0 0 1H7c.2 0 .4-.13.47-.32l1.02-2.73 2.04 5.72a.5.5 0 0 0 .92.05L12.8 11h1.69a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.45.28l-.97 1.95-2.1-5.9ZM5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5ZM4 5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Z\"]);\nexport const PulseSquare24Filled = /*#__PURE__*/createFluentIcon('PulseSquare24Filled', \"24\", [\"M18.75 3C19.99 3 21 4 21 5.25v13.5C21 20 20 21 18.75 21H5.25C4.01 21 3 20 3 18.75V5.25C3 4.01 4 3 5.25 3h13.5ZM9.8 7.95 8.26 11.5H6.75a.75.75 0 0 0 0 1.5h2c.3 0 .56-.18.68-.45l1.04-2.36 2.33 5.83a.75.75 0 0 0 1.37.06L15.71 13h1.54a.75.75 0 1 0 0-1.5h-2a.75.75 0 0 0-.67.41l-1 2-2.39-5.94a.75.75 0 0 0-1.38-.02Z\"]);\nexport const PulseSquare24Regular = /*#__PURE__*/createFluentIcon('PulseSquare24Regular', \"24\", [\"M18.75 3C19.99 3 21 4 21 5.25v13.5C21 20 20 21 18.75 21H5.25C4.01 21 3 20 3 18.75V5.25C3 4.01 4 3 5.25 3h13.5Zm0 1.5H5.25a.75.75 0 0 0-.75.75v13.5c0 .42.34.75.75.75h13.5c.41 0 .75-.33.75-.75V5.25a.75.75 0 0 0-.75-.75Zm-10.5 7 1.56-3.55a.75.75 0 0 1 1.34-.08l.04.1 2.39 5.95 1-2a.75.75 0 0 1 .56-.41l.11-.01h2a.75.75 0 0 1 .1 1.5H15.71l-1.54 3.08a.75.75 0 0 1-1.32.04l-.05-.1-2.33-5.83-1.04 2.36c-.1.24-.32.4-.57.44l-.11.01h-2a.75.75 0 0 1-.1-1.5h1.6l1.56-3.55-1.55 3.55Z\"]);\nexport const PuzzleCube16Filled = /*#__PURE__*/createFluentIcon('PuzzleCube16Filled', \"16\", [\"M6 2v3h4V2H6ZM5 6H2v4h3V6Zm1 4V6h4v4H6Zm-1 1H2v.5A2.5 2.5 0 0 0 4.5 14H5v-3Zm1 3h4v-3H6v3Zm5 0v-3h3v.5a2.5 2.5 0 0 1-2.5 2.5H11Zm3-8v4h-3V6h3Zm0-1v-.5A2.5 2.5 0 0 0 11.5 2H11v3h3Z\"]);\nexport const PuzzleCube16Regular = /*#__PURE__*/createFluentIcon('PuzzleCube16Regular', \"16\", [\"M2 5v6.5A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2H5v3H2Zm8 8H6v-2h4v2Zm-7-2h2v2h-.5A1.5 1.5 0 0 1 3 11.5V11Zm7-1H6V6h4v4ZM3 6h2v4H3V6Zm7-1H6V3h4v2Zm1 1h2v4h-2V6Zm0 5h2v.5c0 .83-.67 1.5-1.5 1.5H11v-2Zm2-6.5V5h-2V3h.5c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const PuzzleCube20Filled = /*#__PURE__*/createFluentIcon('PuzzleCube20Filled', \"20\", [\"M13 17h1.5a2.5 2.5 0 0 0 2.5-2.5V13h-4v4Zm0-5V8h4v4h-4Zm-1 0H8V8h4v4Zm-4 1h4v4H8v-4Zm-1-1V8H3v4h4Zm-4 1h4v4H5.5A2.5 2.5 0 0 1 3 14.5V13Zm10-6h4V5.5A2.5 2.5 0 0 0 14.5 3H13v4Zm-1-4v4H8V3h4Z\"]);\nexport const PuzzleCube20Regular = /*#__PURE__*/createFluentIcon('PuzzleCube20Regular', \"20\", [\"M3 14.5V7h4V3h7.5A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5ZM8 4v3h4V4H8Zm5 0v3h3V5.5c0-.83-.67-1.5-1.5-1.5H13Zm3 4h-3v4h3V8Zm0 5h-3v3h1.5c.83 0 1.5-.67 1.5-1.5V13Zm-4 3v-3H8v3h4Zm-5 0v-3H4v1.5c0 .83.67 1.5 1.5 1.5H7Zm-3-4h3V8H4v4Zm8-4H8v4h4V8Z\"]);\nexport const PuzzleCube24Filled = /*#__PURE__*/createFluentIcon('PuzzleCube24Filled', \"24\", [\"M9.5 21h5v-5h-5v5Zm6.5 0h1.75c1.8 0 3.25-1.46 3.25-3.25V16h-5v5Zm5-6.5v-5h-5v5h5ZM21 8V6.25C21 4.45 19.54 3 17.75 3H16v5h5Zm-6.5-5h-5v5h5V3ZM3 9.5v5h5v-5H3ZM3 16v1.75C3 19.55 4.46 21 6.25 21H8v-5H3Zm11.5-6.5v5h-5v-5h5Z\"]);\nexport const PuzzleCube24Regular = /*#__PURE__*/createFluentIcon('PuzzleCube24Regular', \"24\", [\"M3 8.5v9.25C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H8.5v5.5H3ZM8.5 10v4h-4v-4h4Zm1.5 4v-4h4v4h-4Zm5.5 0v-4h4v4h-4ZM10 15.5h4v4h-4v-4Zm5.5 0h4v2.25c0 .97-.78 1.75-1.75 1.75H15.5v-4Zm0-11h2.25c.97 0 1.75.78 1.75 1.75V8.5h-4v-4Zm-1.5 4h-4v-4h4v4Zm-5.5 7v4H6.25c-.97 0-1.75-.78-1.75-1.75V15.5h4Z\"]);\nexport const PuzzleCube28Filled = /*#__PURE__*/createFluentIcon('PuzzleCube28Filled', \"28\", [\"M3 11v6h6.5v-6H3Zm0 7.5v2.75A3.75 3.75 0 0 0 6.75 25H9.5v-6.5H3Zm8 6.5h6v-6.5h-6V25Zm7.5 0h2.75A3.75 3.75 0 0 0 25 21.25V18.5h-6.5V25Zm6.5-8v-6h-6.5v6H25Zm0-7.5V6.75A3.75 3.75 0 0 0 21.25 3H18.5v6.5H25ZM17 3h-6v6.5h6V3Zm0 8v6h-6v-6h6Z\"]);\nexport const PuzzleCube28Regular = /*#__PURE__*/createFluentIcon('PuzzleCube28Regular', \"28\", [\"M3 9.5v11.75A3.75 3.75 0 0 0 6.75 25h14.5A3.75 3.75 0 0 0 25 21.25V6.75A3.75 3.75 0 0 0 21.25 3H9.5v6.5H3Zm1.5 11.75V18.5h5v5H6.75c-1.24 0-2.25-1-2.25-2.25ZM9.5 11v6h-5v-6h5ZM11 23.5v-5h6v5h-6ZM17 11v6h-6v-6h6Zm1.5 12.5v-5h5v2.75c0 1.24-1 2.25-2.25 2.25H18.5Zm5-12.5v6h-5v-6h5Zm-2.25-6.5c1.24 0 2.25 1 2.25 2.25V9.5h-5v-5h2.75ZM11 4.5h6v5h-6v-5Z\"]);\nexport const PuzzleCube48Filled = /*#__PURE__*/createFluentIcon('PuzzleCube48Filled', \"48\", [\"M19 6v10.5h10V6H19Zm-2.5 13H6v10h10.5V19ZM19 29V19h10v10H19Zm-2.5 2.5H6v4.25C6 39.2 8.8 42 12.25 42h4.25V31.5ZM19 42h10V31.5H19V42Zm12.5 0V31.5H42v4.25C42 39.2 39.2 42 35.75 42H31.5ZM42 19v10H31.5V19H42Zm0-2.5v-4.25C42 8.8 39.2 6 35.75 6H31.5v10.5H42Z\"]);\nexport const PuzzleCube48Regular = /*#__PURE__*/createFluentIcon('PuzzleCube48Regular', \"48\", [\"M6 17v18.75C6 39.2 8.8 42 12.25 42h23.5C39.2 42 42 39.2 42 35.75v-23.5C42 8.8 39.2 6 35.75 6H17v11H6Zm2.5 11.5v-9H17v9H8.5Zm0 7.25V31H17v8.5h-4.75a3.75 3.75 0 0 1-3.75-3.75Zm20 3.75h-9V31h9v8.5Zm7.25 0H31V31h8.5v4.75a3.75 3.75 0 0 1-3.75 3.75Zm3.75-20v9H31v-9h8.5Zm0-7.25V17H31V8.5h4.75a3.75 3.75 0 0 1 3.75 3.75Zm-20-3.75h9V17h-9V8.5Zm9 11v9h-9v-9h9Z\"]);\nexport const PuzzleCubePiece20Filled = /*#__PURE__*/createFluentIcon('PuzzleCubePiece20Filled', \"20\", [\"M15.8 1.29a1 1 0 0 1 1.4 0l1.51 1.5a1 1 0 0 1 0 1.42l-1.5 1.5a1 1 0 0 1-1.42 0l-1.5-1.5a1 1 0 0 1 0-1.42l1.5-1.5ZM5.5 17H7v-4H3v1.5A2.5 2.5 0 0 0 5.5 17ZM7 8v4H3V8h4Zm5 4H8V8h4v4Zm-4 1h4v4H8v-4Zm5-5v4h4V8h-4Zm0 5h4v1.5a2.5 2.5 0 0 1-2.5 2.5H13v-4ZM3 7h4V3H5.5A2.5 2.5 0 0 0 3 5.5V7Zm5 0V3h4v4H8Z\"]);\nexport const PuzzleCubePiece20Regular = /*#__PURE__*/createFluentIcon('PuzzleCubePiece20Regular', \"20\", [\"M17.2 1.29a1 1 0 0 0-1.4 0l-1.5 1.5a1 1 0 0 0 0 1.42l1.5 1.5a1 1 0 0 0 1.4 0l1.51-1.5a1 1 0 0 0 0-1.42l-1.5-1.5ZM15 3.5 16.5 2 18 3.5 16.5 5 15 3.5ZM13 3H5.5A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5V7h-4V3ZM5.36 16A1.5 1.5 0 0 1 4 14.5V13h3v3H5.36ZM8 13h4v3H8v-3Zm8 1.64A1.5 1.5 0 0 1 14.5 16H13v-3h3V14.64ZM8 8h4v4H8V8Zm5 4V8h3v4h-3ZM8 4h4v3H8V4ZM5.5 4H7v3H4V5.36A1.5 1.5 0 0 1 5.5 4ZM4 12V8h3v4H4Z\"]);\nexport const PuzzlePiece16Filled = /*#__PURE__*/createFluentIcon('PuzzlePiece16Filled', \"16\", [\"M9 1a2 2 0 0 0-2 2H5.5C4.67 3 4 3.67 4 4.5V6a2 2 0 0 0 0 4v1.5c0 .83.67 1.5 1.5 1.5H7a2 2 0 0 0 4 0h1.5c.83 0 1.5-.67 1.5-1.5V9h-1a1 1 0 1 1 0-2h1V4.5c0-.83-.67-1.5-1.5-1.5H11a2 2 0 0 0-2-2Z\"]);\nexport const PuzzlePiece16Regular = /*#__PURE__*/createFluentIcon('PuzzlePiece16Regular', \"16\", [\"M7 3a2 2 0 0 1 4 0h1.5c.83 0 1.5.67 1.5 1.5V7h-1a1 1 0 0 0 0 2h1v2.5c0 .83-.67 1.5-1.5 1.5H11a2 2 0 0 1-4 0H5.5A1.5 1.5 0 0 1 4 11.5V10a2 2 0 0 1 0-4V4.5C4 3.67 4.67 3 5.5 3H7Zm2-1a1 1 0 0 0-1 1v1H5.5a.5.5 0 0 0-.5.5V7H4a1 1 0 0 0 0 2h1v2.5c0 .28.22.5.5.5H8v1a1 1 0 0 0 2 0v-1h2.5a.5.5 0 0 0 .5-.5V10a2 2 0 0 1 0-4V4.5a.5.5 0 0 0-.5-.5H10V3a1 1 0 0 0-1-1Z\"]);\nexport const PuzzlePiece20Filled = /*#__PURE__*/createFluentIcon('PuzzlePiece20Filled', \"20\", [\"M11 2a2 2 0 0 1 2 2v.06h3a1 1 0 0 1 1 1V8h-1a2 2 0 0 0-2 1.85V10a2 2 0 0 0 1.85 2H17v3.06a1 1 0 0 1-1 1h-3v.09a2 2 0 0 1-4-.1H6a1 1 0 0 1-1-1V12a2 2 0 1 1 0-4V5.06a1 1 0 0 1 1-1h3V4c0-1.1.9-2 2-2Z\"]);\nexport const PuzzlePiece20Regular = /*#__PURE__*/createFluentIcon('PuzzlePiece20Regular', \"20\", [\"M11.1 2c-1.07.08-1.94.9-2.08 1.94V4H6.35A1.5 1.5 0 0 0 5 5.5v2.27h-.06A2.25 2.25 0 0 0 3 10v.16c.08 1.06.9 1.93 1.94 2.07H5v2.42A1.5 1.5 0 0 0 6.5 16h2.02v.06A2.25 2.25 0 0 0 10.75 18h.16a2.25 2.25 0 0 0 2.07-1.94V16h2.52c.83 0 1.5-.67 1.5-1.5v-3.25h-1.87A1.25 1.25 0 0 1 14 10v-.12c.06-.63.6-1.13 1.25-1.13H17V5.36A1.5 1.5 0 0 0 15.5 4h-2.02v-.06A2.25 2.25 0 0 0 11.25 2h-.15Zm.15 1c.69 0 1.25.56 1.25 1.25V5h3l.1.01a.5.5 0 0 1 .4.5v2.24h-.75c-1.17 0-2.15.9-2.24 2.07l-.01.16c0 1.2.9 2.17 2.07 2.26l.16.01H16v2.25a.5.5 0 0 1-.5.5H12v.75a1.25 1.25 0 0 1-2.5 0V15h-3a.5.5 0 0 1-.5-.5v-3.25h-.75a1.25 1.25 0 0 1 0-2.5H6V5.5c0-.27.23-.5.5-.5H10v-.75c0-.69.56-1.25 1.25-1.25Z\"]);\nexport const PuzzlePiece24Filled = /*#__PURE__*/createFluentIcon('PuzzlePiece24Filled', \"24\", [\"M13 2c1.36 0 2.47 1.1 2.47 2.47V5H19a1 1 0 0 1 1 1v3.5h-1.53a2.47 2.47 0 0 0-2.46 2.3l-.01.17v.06c0 1.31 1.02 2.38 2.3 2.46l.17.01H20V18a1 1 0 0 1-1 1h-3.53v.53a2.47 2.47 0 1 1-4.94 0V19H7a1 1 0 0 1-1-1v-3.53h-.53a2.47 2.47 0 0 1 0-4.94H6V6a1 1 0 0 1 1-1h3.53v-.53C10.53 3.11 11.63 2 13 2Z\"]);\nexport const PuzzlePiece24Regular = /*#__PURE__*/createFluentIcon('PuzzlePiece24Regular', \"24\", [\"M13 2a3 3 0 0 1 3 2.82V5h2.25c.87 0 1.59.63 1.73 1.46l.01.15v3.89H18a1.5 1.5 0 0 0-1.48 1.24l-.01.13V12c0 .74.53 1.37 1.23 1.48l.13.02H20v3.75c0 .92-.7 1.67-1.6 1.75H16v.17a3 3 0 0 1-2.64 2.8l-.18.02H13a3 3 0 0 1-3-2.81V19H7.75c-.87 0-1.59-.63-1.73-1.46l-.01-.14-.01-.15V15h-.16a3 3 0 0 1-2.8-2.64l-.02-.18V12a3 3 0 0 1 2.82-3H6V6.75c0-.87.63-1.59 1.46-1.73l.15-.01.14-.01H10v-.17a3 3 0 0 1 2.64-2.8l.18-.02H13Zm0 1.5c-.78 0-1.42.6-1.5 1.36V6.5H7.75a.25.25 0 0 0-.24.2l-.01.05v3.75H6a1.5 1.5 0 0 0-.14 3H7.5v3.75c0 .12.08.22.2.25h3.8V19a1.5 1.5 0 0 0 3 .14V17.5h3.75c.12 0 .22-.08.24-.19V15h-.69a3 3 0 0 1-2.8-2.85v-.35A3 3 0 0 1 17.84 9h.67V6.75c0-.1-.05-.18-.13-.22l-.06-.02-.06-.01H14.5V5c0-.82-.67-1.5-1.5-1.5Z\"]);\nexport const PuzzlePieceShield20Filled = /*#__PURE__*/createFluentIcon('PuzzlePieceShield20Filled', \"20\", [\"M5 15.06V12.7c.18.08.36.15.55.21.29.1.61.1.9 0a6.77 6.77 0 0 0 3.39-2.38A6.63 6.63 0 0 0 11 6.58V4.04l-.02-.19v-.04A1.4 1.4 0 0 0 9.5 2.67 2 2 0 0 1 13 4v.06h3a1 1 0 0 1 1 1V8h-1a2 2 0 0 0-2 1.85V10a2 2 0 0 0 1.85 2H17v3.06a1 1 0 0 1-1 1h-3v.09a2 2 0 0 1-4-.1H6a1 1 0 0 1-1-1ZM8 3.35a4.06 4.06 0 0 0 1.6.32c.2 0 .35.14.4.33v2.58c0 2.69-1.31 4.51-3.87 5.4a.38.38 0 0 1-.26 0A6.66 6.66 0 0 1 4 11c-.39-.3-.72-.63-.99-1a5.5 5.5 0 0 1-1-3.15L2 6.58v-2.5a.4.4 0 0 1 .4-.41 4.5 4.5 0 0 0 3.32-1.55.39.39 0 0 1 .56 0C6.82 2.7 7.4 3.1 8 3.35Z\"]);\nexport const PuzzlePieceShield20Regular = /*#__PURE__*/createFluentIcon('PuzzlePieceShield20Regular', \"20\", [\"M5 14.5v-1.79a9 9 0 0 0 .54.21c.15.05.3.08.46.08v1.5c0 .28.22.5.5.5h3v.75a1.25 1.25 0 0 0 2.5 0V15h3.5a.5.5 0 0 0 .5-.5v-2.25H15.06A2.25 2.25 0 0 1 13 9.97v-.16a2.25 2.25 0 0 1 2.25-2.07H16V5.5a.5.5 0 0 0-.41-.49H12.5v-.76a1.25 1.25 0 0 0-1.85-1.1c-.24-.28-.59-.47-1-.48.37-.38.88-.63 1.44-.66l.16-.01c1.14 0 2.08.85 2.23 1.94V4h2.02c.78 0 1.42.6 1.5 1.36v3.39h-1.75c-.65 0-1.2.5-1.25 1.13V10c0 .65.5 1.2 1.13 1.24l.12.01H17v3.25c0 .83-.67 1.5-1.5 1.5h-2.52v.06a2.25 2.25 0 0 1-2.08 1.93l-.15.01a2.25 2.25 0 0 1-2.23-1.94V16H6.5A1.5 1.5 0 0 1 5 14.65v-.15ZM8 3.35a4.06 4.06 0 0 0 1.6.32c.2 0 .35.14.4.33v2.58c0 2.69-1.31 4.51-3.87 5.4a.38.38 0 0 1-.26 0A6.66 6.66 0 0 1 4 11c-.39-.3-.72-.63-.99-1a5.5 5.5 0 0 1-1-3.15L2 6.58v-2.5a.4.4 0 0 1 .4-.41 4.5 4.5 0 0 0 3.32-1.55.39.39 0 0 1 .56 0C6.82 2.7 7.4 3.1 8 3.35Z\"]);\nexport const QrCode20Filled = /*#__PURE__*/createFluentIcon('QrCode20Filled', \"20\", [\"M13 11h-2v2h2v2h-2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v2h-2v-2ZM5 5h2v2H5V5Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5ZM5 13h2v2H5v-2Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2H5Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5ZM13 5h2v2h-2V5Zm0-2a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-2Zm-.75 1.75c0-.28.22-.5.5-.5h2.5c.28 0 .5.22.5.5v2.5a.5.5 0 0 1-.5.5h-2.5a.5.5 0 0 1-.5-.5v-2.5Z\"]);\nexport const QrCode20Regular = /*#__PURE__*/createFluentIcon('QrCode20Regular', \"20\", [\"M11 15h2v2h-2v-2Zm4 0h2v2h-2v-2Zm-4-4h2v2h-2v-2Zm2 2h2v2h-2v-2Zm2-2h2v2h-2v-2ZM3 5c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Zm0 1h2v2H5V5Zm-2 8c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H5Zm0 1h2v2H5v-2Zm6-8c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-2Zm0 1h2v2h-2V5Z\"]);\nexport const QrCode24Filled = /*#__PURE__*/createFluentIcon('QrCode24Filled', \"24\", [\"M8 6H6v2h2V6Zm-5-.5A2.5 2.5 0 0 1 5.5 3h3A2.5 2.5 0 0 1 11 5.5v3A2.5 2.5 0 0 1 8.5 11h-3A2.5 2.5 0 0 1 3 8.5v-3ZM5.5 5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3ZM6 16h2v2H6v-2Zm-3-.5A2.5 2.5 0 0 1 5.5 13h3a2.5 2.5 0 0 1 2.5 2.5v3A2.5 2.5 0 0 1 8.5 21h-3A2.5 2.5 0 0 1 3 18.5v-3Zm2.5-.5a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3ZM18 6h-2v2h2V6Zm-2.5-3A2.5 2.5 0 0 0 13 5.5v3a2.5 2.5 0 0 0 2.5 2.5h3A2.5 2.5 0 0 0 21 8.5v-3A2.5 2.5 0 0 0 18.5 3h-3ZM15 5.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3ZM13 13h2.75v2.75H13V13Zm5.25 2.75h-2.5v2.5H13V21h2.75v-2.75h2.5V21H21v-2.75h-2.75v-2.5Zm0 0V13H21v2.75h-2.75Z\"]);\nexport const QrCode24Regular = /*#__PURE__*/createFluentIcon('QrCode24Regular', \"24\", [\"M8 6H6v2h2V6Zm-5-.75C3 4.01 4 3 5.25 3h3.5C9.99 3 11 4 11 5.25v3.5C11 9.99 10 11 8.75 11h-3.5C4.01 11 3 10 3 8.75v-3.5Zm2.25-.75a.75.75 0 0 0-.75.75v3.5c0 .41.34.75.75.75h3.5c.41 0 .75-.34.75-.75v-3.5a.75.75 0 0 0-.75-.75h-3.5ZM6 16h2v2H6v-2Zm-3-.75C3 14.01 4 13 5.25 13h3.5C9.99 13 11 14 11 15.25v3.5C11 19.99 10 21 8.75 21h-3.5C4.01 21 3 20 3 18.75v-3.5Zm2.25-.75a.75.75 0 0 0-.75.75v3.5c0 .41.34.75.75.75h3.5c.41 0 .75-.34.75-.75v-3.5a.75.75 0 0 0-.75-.75h-3.5ZM18 6h-2v2h2V6Zm-2.75-3C14.01 3 13 4 13 5.25v3.5C13 9.99 14 11 15.25 11h3.5C19.99 11 21 10 21 8.75v-3.5C21 4.01 20 3 18.75 3h-3.5Zm-.75 2.25c0-.41.34-.75.75-.75h3.5c.41 0 .75.34.75.75v3.5c0 .41-.34.75-.75.75h-3.5a.75.75 0 0 1-.75-.75v-3.5ZM13 13h2.75v2.75H13V13Zm5.25 2.75h-2.5v2.5H13V21h2.75v-2.75h2.5V21H21v-2.75h-2.75v-2.5Zm0 0V13H21v2.75h-2.75Z\"]);\nexport const QrCode28Filled = /*#__PURE__*/createFluentIcon('QrCode28Filled', \"28\", [\"M18.33 15v3.33h3.34v3.34H25V25h-3.33v-3.33h-3.34V25H15v-3.33h3.33v-3.34H15V15h3.33Zm-7.83 0a2.5 2.5 0 0 1 2.5 2.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 3 22.5v-5A2.5 2.5 0 0 1 5.5 15h5Zm0 2h-5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm-.75 1.25v3.5h-3.5v-3.5h3.5ZM25 15v3.33h-3.33V15H25ZM10.5 3A2.5 2.5 0 0 1 13 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 3 10.5v-5A2.5 2.5 0 0 1 5.5 3h5Zm12 0A2.5 2.5 0 0 1 25 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-5a2.5 2.5 0 0 1-2.5-2.5v-5A2.5 2.5 0 0 1 17.5 3h5Zm-12 2h-5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm12 0h-5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5Zm-.75 1.25v3.5h-3.5v-3.5h3.5Zm-12 0v3.5h-3.5v-3.5h3.5Z\"]);\nexport const QrCode28Regular = /*#__PURE__*/createFluentIcon('QrCode28Regular', \"28\", [\"M10.75 15c1.24 0 2.25 1 2.25 2.25v5.5c0 1.24-1 2.25-2.25 2.25h-5.5C4.01 25 3 24 3 22.75v-5.5C3 16.01 4 15 5.25 15h5.5Zm7.58 0v3.33h3.34v3.34h-3.34V25H15v-3.33h3.33v-3.34H15V15h3.33ZM25 21.67V25h-3.33v-3.33H25ZM10.75 16.5h-5.5a.75.75 0 0 0-.75.75v5.5c0 .41.34.75.75.75h5.5c.41 0 .75-.34.75-.75v-5.5a.75.75 0 0 0-.75-.75Zm-1.25 2v3h-3v-3h3ZM25 15v3.33h-3.33V15H25ZM10.75 3C11.99 3 13 4 13 5.25v5.5c0 1.24-1 2.25-2.25 2.25h-5.5C4.01 13 3 12 3 10.75v-5.5C3 4.01 4 3 5.25 3h5.5Zm12 0C23.99 3 25 4 25 5.25v5.5c0 1.24-1 2.25-2.25 2.25h-5.5C16.01 13 15 12 15 10.75v-5.5C15 4.01 16 3 17.25 3h5.5Zm-12 1.5h-5.5a.75.75 0 0 0-.75.75v5.5c0 .41.34.75.75.75h5.5c.41 0 .75-.34.75-.75v-5.5a.75.75 0 0 0-.75-.75Zm12 0h-5.5a.75.75 0 0 0-.75.75v5.5c0 .41.34.75.75.75h5.5c.41 0 .75-.34.75-.75v-5.5a.75.75 0 0 0-.75-.75ZM9.5 6.5v3h-3v-3h3Zm12 0v3h-3v-3h3Z\"]);\nexport const Question16Filled = /*#__PURE__*/createFluentIcon('Question16Filled', \"16\", [\"M8 2a3 3 0 0 0-3 3 .75.75 0 0 0 1.5 0 1.5 1.5 0 0 1 3 0c0 .65-.12 1.02-.25 1.25-.14.24-.33.4-.6.64l-.06.05c-.26.21-.6.5-.88.93-.3.49-.46 1.08-.46 1.88v.5a.75.75 0 0 0 1.5 0v-.5c0-.58.12-.89.24-1.08.13-.22.31-.37.62-.63.28-.23.66-.55.94-1.05.29-.5.45-1.14.45-1.99a3 3 0 0 0-3-3Zm0 12.25a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Question16Regular = /*#__PURE__*/createFluentIcon('Question16Regular', \"16\", [\"M8 2a3 3 0 0 0-3 3 .5.5 0 0 0 1 0 2 2 0 0 1 4 0c0 .68-.14 1.08-.31 1.36-.19.3-.43.5-.75.75l-.02.02c-.3.24-.67.53-.95.98-.3.47-.47 1.07-.47 1.89v.5a.5.5 0 0 0 1 0V10c0-.68.14-1.08.31-1.36.19-.3.43-.5.75-.75l.02-.02c.3-.24.67-.53.95-.98.3-.47.47-1.07.47-1.89a3 3 0 0 0-3-3Zm0 12a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Question20Filled = /*#__PURE__*/createFluentIcon('Question20Filled', \"20\", [\"M10 3a4 4 0 0 0-4 4 .75.75 0 0 0 1.5 0A2.5 2.5 0 0 1 10 4.5 2.5 2.5 0 0 1 12.5 7c0 .6-.16.97-.37 1.27a5 5 0 0 1-.97.92c-.4.33-.9.73-1.28 1.3-.39.58-.63 1.3-.63 2.26v.5a.75.75 0 0 0 1.5 0v-.5c0-.67.16-1.1.38-1.43.23-.35.55-.62.97-.96l.06-.05c.38-.3.84-.67 1.2-1.17C13.74 8.6 14 7.9 14 7a4 4 0 0 0-4-4Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Question20Regular = /*#__PURE__*/createFluentIcon('Question20Regular', \"20\", [\"M10 3a4 4 0 0 0-4 4 .5.5 0 0 0 1 0 3 3 0 0 1 6 0c0 1.25-.7 1.86-1.58 2.62l-.03.03c-.86.73-1.89 1.62-1.89 3.35v.5a.5.5 0 0 0 1 0V13c0-1.25.7-1.86 1.58-2.62l.03-.03C12.97 9.62 14 8.73 14 7a4 4 0 0 0-4-4Zm0 14a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Question24Filled = /*#__PURE__*/createFluentIcon('Question24Filled', \"24\", [\"M12 4a5 5 0 0 0-5 5 1 1 0 0 0 2 0 3 3 0 1 1 6 0c0 .82-.2 1.3-.44 1.63-.26.36-.62.64-1.13.98l-.11.08c-.45.3-1.02.7-1.47 1.25A3.89 3.89 0 0 0 11 15.5v.5a1 1 0 1 0 2 0v-.5c0-.66.18-1.02.4-1.3.26-.31.6-.55 1.11-.9l.06-.04a6.2 6.2 0 0 0 1.62-1.47c.5-.7.81-1.6.81-2.79a5 5 0 0 0-5-5Zm0 17.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const Question24Regular = /*#__PURE__*/createFluentIcon('Question24Regular', \"24\", [\"M12 4a5 5 0 0 0-5 5 .75.75 0 0 0 1.5 0 3.5 3.5 0 1 1 7 0c0 .85-.22 1.42-.53 1.86a5.82 5.82 0 0 1-1.44 1.34c-1 .77-2.28 1.73-2.28 3.8v.25a.75.75 0 0 0 1.5 0V16c0-1.32.71-1.86 1.79-2.68l.04-.04c.53-.4 1.15-.88 1.62-1.56A5 5 0 0 0 12 4Zm0 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Question28Filled = /*#__PURE__*/createFluentIcon('Question28Filled', \"28\", [\"M14 4a6 6 0 0 0-6 6 1 1 0 1 0 2 0 4 4 0 0 1 8 0c0 1.06-.26 1.74-.61 2.27-.36.53-.84.95-1.44 1.48l-.1.1a8.85 8.85 0 0 0-1.93 2.14 7.15 7.15 0 0 0-.92 3.76V20a1 1 0 1 0 2 0v-.25c0-1.28.28-2.12.64-2.74a6.94 6.94 0 0 1 1.66-1.79c.57-.5 1.24-1.07 1.75-1.84.58-.87.95-1.94.95-3.38a6 6 0 0 0-6-6Zm0 21.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const Question28Regular = /*#__PURE__*/createFluentIcon('Question28Regular', \"28\", [\"M14 4a6 6 0 0 0-6 6 .75.75 0 0 0 1.5 0 4.5 4.5 0 1 1 9 0c0 1.38-.3 2.23-.7 2.84a6.53 6.53 0 0 1-1.63 1.56l-.03.03c-.64.48-1.38 1.05-1.95 1.9-.58.9-.94 2.05-.94 3.67v.25a.75.75 0 0 0 1.5 0V20c0-1.38.3-2.23.7-2.84.4-.63.96-1.05 1.63-1.56l.03-.03a7.82 7.82 0 0 0 1.95-1.9c.58-.9.94-2.05.94-3.67a6 6 0 0 0-6-6Zm0 21a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Question48Filled = /*#__PURE__*/createFluentIcon('Question48Filled', \"48\", [\"M24 5c-5.55 0-10 4.51-10 10.25a1.5 1.5 0 0 0 3 0A7.06 7.06 0 0 1 24 8c3.83 0 7 3.11 7 7.25 0 1.84-.45 2.85-1.02 3.6-.48.63-1.03 1.09-1.73 1.68l-1 .85a12.25 12.25 0 0 0-3.3 4.37c-.9 2.04-1.45 4.73-1.45 8.5v.25a1.5 1.5 0 0 0 3 0v-.25c0-3.48.51-5.73 1.2-7.28a9.27 9.27 0 0 1 2.54-3.35c.22-.18.46-.38.7-.6.8-.66 1.73-1.43 2.43-2.35 1.01-1.33 1.63-3 1.63-5.42C34 9.51 29.55 5 24 5Zm0 37a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Z\"]);\nexport const Question48Regular = /*#__PURE__*/createFluentIcon('Question48Regular', \"48\", [\"M24 5.5a10 10 0 0 0-10 10 1.25 1.25 0 1 0 2.5 0 7.5 7.5 0 0 1 15 0c0 1.88-.47 2.94-1.1 3.74-.51.66-1.1 1.14-1.85 1.74l-.99.82c-1.17 1-2.4 2.27-3.33 4.29-.92 2-1.48 4.66-1.48 8.41v.25a1.25 1.25 0 1 0 2.5 0v-.25c0-3.5.53-5.78 1.25-7.37a9.56 9.56 0 0 1 2.69-3.43l.75-.62c.82-.66 1.73-1.4 2.43-2.3 1-1.28 1.63-2.9 1.63-5.28a10 10 0 0 0-10-10ZM24 42a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const QuestionCircle12Filled = /*#__PURE__*/createFluentIcon('QuestionCircle12Filled', \"12\", [\"M6 1a5 5 0 1 0 0 10A5 5 0 0 0 6 1Zm.5 7.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM5 4.75a.5.5 0 0 1-1 0c0-.59.27-1.04.67-1.34C5.05 3.13 5.54 3 6 3c.46 0 .95.12 1.33.41.4.3.67.75.67 1.34 0 .43-.14.76-.37 1-.18.2-.41.34-.58.43L7 6.21c-.19.11-.3.19-.37.29-.06.08-.13.22-.13.5a.5.5 0 0 1-1 0c0-.47.12-.83.34-1.11.2-.27.47-.43.66-.54l.03-.02c.2-.11.3-.17.37-.25.05-.05.1-.13.1-.33 0-.25-.1-.42-.27-.54A1.25 1.25 0 0 0 6 4c-.29 0-.55.08-.73.21a.63.63 0 0 0-.27.54Z\"]);\nexport const QuestionCircle12Regular = /*#__PURE__*/createFluentIcon('QuestionCircle12Regular', \"12\", [\"M5.27 4.21a.63.63 0 0 0-.27.54.5.5 0 0 1-1 0c0-.59.27-1.04.67-1.34C5.05 3.12 5.54 3 6 3c.46 0 .95.12 1.33.4.4.3.67.76.67 1.35 0 .43-.14.76-.37 1-.18.2-.41.34-.58.43L7 6.21c-.19.11-.3.19-.37.28-.06.09-.13.22-.13.5a.5.5 0 0 1-1 0c0-.46.12-.82.34-1.1.2-.27.47-.43.66-.54l.03-.02c.2-.11.3-.17.37-.25.05-.05.1-.13.1-.33 0-.25-.1-.42-.27-.54A1.25 1.25 0 0 0 6 4c-.29 0-.55.08-.73.21ZM6 9a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM1 6a5 5 0 1 1 10 0A5 5 0 0 1 1 6Zm5-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z\"]);\nexport const QuestionCircle16Filled = /*#__PURE__*/createFluentIcon('QuestionCircle16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 8.5A.75.75 0 1 0 8 12a.75.75 0 0 0 0-1.5Zm0-6a2 2 0 0 0-2 2 .5.5 0 0 0 1 0 1 1 0 0 1 2 0c0 .37-.08.58-.37.9l-.11.12-.27.27c-.54.57-.75.98-.75 1.71a.5.5 0 0 0 1 0c0-.37.08-.58.37-.9l.11-.12.27-.27c.54-.57.75-.98.75-1.71a2 2 0 0 0-2-2Z\"]);\nexport const QuestionCircle16Regular = /*#__PURE__*/createFluentIcon('QuestionCircle16Regular', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm0 1a5 5 0 1 0 0 10A5 5 0 0 0 8 3Zm0 7.5A.75.75 0 1 1 8 12a.75.75 0 0 1 0-1.5Zm0-6a2 2 0 0 1 2 2c0 .73-.21 1.14-.75 1.7l-.27.28c-.38.4-.48.6-.48 1.02a.5.5 0 0 1-1 0c0-.73.21-1.14.75-1.7l.27-.28c.38-.4.48-.6.48-1.02a1 1 0 0 0-2 0 .5.5 0 0 1-1 0c0-1.1.9-2 2-2Z\"]);\nexport const QuestionCircle20Filled = /*#__PURE__*/createFluentIcon('QuestionCircle20Filled', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 11.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0-8A2.5 2.5 0 0 0 7.5 8a.5.5 0 0 0 1 0 1.5 1.5 0 1 1 2.63.98l-.1.11-.12.1-.25.19A3.2 3.2 0 0 0 9.5 12a.5.5 0 0 0 1 0c0-.76.2-1.25.53-1.61l.08-.08.08-.07.09-.07.22-.17.15-.12A2.5 2.5 0 0 0 10 5.5Z\"]);\nexport const QuestionCircle20Regular = /*#__PURE__*/createFluentIcon('QuestionCircle20Regular', \"20\", [\"M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 1a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm0 10.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm0-8a2.5 2.5 0 0 1 1.65 4.38l-.15.12-.22.17-.09.07-.16.15c-.33.36-.53.85-.53 1.61a.5.5 0 0 1-1 0 3.2 3.2 0 0 1 1.16-2.62l.25-.19.12-.1A1.5 1.5 0 0 0 10 6.5c-.83 0-1.5.67-1.5 1.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 10 5.5Z\"]);\nexport const QuestionCircle24Filled = /*#__PURE__*/createFluentIcon('QuestionCircle24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 13.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm0-8.75A2.75 2.75 0 0 0 9.25 9.5a.75.75 0 0 0 1.5.1v-.1a1.25 1.25 0 1 1 2.5 0c0 .54-.13.8-.64 1.33l-.14.14c-.88.88-1.22 1.45-1.22 2.53a.75.75 0 0 0 1.5 0c0-.54.13-.8.64-1.33l.14-.14c.88-.88 1.22-1.45 1.22-2.53A2.75 2.75 0 0 0 12 6.75Z\"]);\nexport const QuestionCircle24Regular = /*#__PURE__*/createFluentIcon('QuestionCircle24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.67a8.34 8.34 0 0 0 0 16.66 8.34 8.34 0 0 0 0-16.66Zm0 11.83a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm0-8.75a2.75 2.75 0 0 1 2.75 2.75c0 1.01-.3 1.57-1.05 2.36l-.17.17c-.62.62-.78.89-.78 1.47a.75.75 0 0 1-1.5 0c0-1.01.3-1.57 1.05-2.36l.17-.17c.62-.62.78-.89.78-1.47a1.25 1.25 0 0 0-2.5-.13v.13a.75.75 0 0 1-1.5 0A2.75 2.75 0 0 1 12 6.75Z\"]);\nexport const QuestionCircle28Filled = /*#__PURE__*/createFluentIcon('QuestionCircle28Filled', \"28\", [\"M14 2a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm0 16.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm0-11.75a3.85 3.85 0 0 0-3.75 3.75.75.75 0 0 0 1.5 0c0-1.18 1.1-2.25 2.25-2.25a2.36 2.36 0 0 1 2.25 2.25c0 .88-.24 1.38-.93 2.08l-.16.15-.57.52c-.94.9-1.34 1.6-1.34 2.75a.75.75 0 0 0 1.5 0c0-.65.21-1.03.89-1.67l.16-.15.2-.19.2-.18c1.08-1.04 1.55-1.88 1.55-3.31A3.85 3.85 0 0 0 14 6.75Z\"]);\nexport const QuestionCircle28Regular = /*#__PURE__*/createFluentIcon('QuestionCircle28Regular', \"28\", [\"M14 2a12 12 0 1 1 0 24 12 12 0 0 1 0-24Zm0 1.5a10.5 10.5 0 1 0 0 21 10.5 10.5 0 0 0 0-21Zm0 15a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm0-11.75a3.85 3.85 0 0 1 3.75 3.75c0 1.43-.47 2.27-1.55 3.3L16 14l-.2.19c-.8.74-1.05 1.12-1.05 1.82a.75.75 0 0 1-1.5 0c0-1.15.4-1.84 1.34-2.75l.57-.52c.81-.78 1.09-1.29 1.09-2.23 0-1.18-1.1-2.25-2.25-2.25a2.36 2.36 0 0 0-2.25 2.25.75.75 0 0 1-1.5 0A3.85 3.85 0 0 1 14 6.75Z\"]);\nexport const QuestionCircle32Filled = /*#__PURE__*/createFluentIcon('QuestionCircle32Filled', \"32\", [\"M16 2a14 14 0 1 1 0 28 14 14 0 0 1 0-28Zm1.5 20a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM14 12c0-.54.18-1.04.5-1.4.3-.34.77-.6 1.5-.6 1.3 0 2.38 1.35 2.03 2.76-.18.72-.61 1.13-1.26 1.75-.05.06-.11.12-.18.17-.72.7-1.59 1.65-1.59 3.32a1 1 0 1 0 2 0c0-.83.35-1.27.98-1.88l.2-.18a5.5 5.5 0 0 0 1.79-2.7A4.2 4.2 0 0 0 16 8a3.9 3.9 0 0 0-3 1.27A4.1 4.1 0 0 0 12 12a1 1 0 1 0 2 0Z\"]);\nexport const QuestionCircle32Regular = /*#__PURE__*/createFluentIcon('QuestionCircle32Regular', \"32\", [\"M17.5 22a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM14 12c0-.54.18-1.04.5-1.4.3-.34.77-.6 1.5-.6 1.3 0 2.38 1.35 2.03 2.76-.18.72-.61 1.13-1.26 1.75-.05.06-.11.12-.18.17-.72.7-1.59 1.65-1.59 3.32a1 1 0 1 0 2 0c0-.83.35-1.27.98-1.88l.2-.18a5.5 5.5 0 0 0 1.79-2.7A4.2 4.2 0 0 0 16 8a3.9 3.9 0 0 0-3 1.27A4.1 4.1 0 0 0 12 12a1 1 0 1 0 2 0ZM2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0ZM16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24Z\"]);\nexport const QuestionCircle48Filled = /*#__PURE__*/createFluentIcon('QuestionCircle48Filled', \"48\", [\"M24 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm.25 28a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0-19A6.37 6.37 0 0 0 18 19.25a1.25 1.25 0 0 0 2.47.25l.02-.12.02-.32a3.88 3.88 0 0 1 3.74-3.56A3.87 3.87 0 0 1 28 19.25c0 1.19-.42 2.04-1.62 3.4l-.2.23-1.03 1.1c-1.64 1.77-2.32 2.99-2.31 4.78a1.25 1.25 0 0 0 2.44.35l.03-.12.02-.12v-.13l.01-.16c.04-.8.4-1.49 1.28-2.5l.19-.22 1.01-1.08c1.91-2.06 2.68-3.41 2.68-5.53A6.36 6.36 0 0 0 24.25 13Z\"]);\nexport const QuestionCircle48Regular = /*#__PURE__*/createFluentIcon('QuestionCircle48Regular', \"48\", [\"M24 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm0 2.5a17.5 17.5 0 1 0 0 35 17.5 17.5 0 0 0 0-35Zm.25 25.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm0-19a6.36 6.36 0 0 1 6.25 6.25c0 2.12-.77 3.47-2.68 5.53l-1.01 1.08c-1.03 1.14-1.43 1.87-1.47 2.72V28.87l-.03.12a1.25 1.25 0 0 1-2.47-.23c-.01-1.79.67-3.01 2.3-4.79l1.03-1.1C27.53 21.39 28 20.5 28 19.26a3.87 3.87 0 0 0-3.75-3.75 3.88 3.88 0 0 0-3.74 3.56l-.02.32a1.25 1.25 0 0 1-2.49-.13A6.37 6.37 0 0 1 24.25 13Z\"]);\nexport const QuizNew20Filled = /*#__PURE__*/createFluentIcon('QuizNew20Filled', \"20\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1a5.48 5.48 0 0 1-.4-4H5.5a.5.5 0 0 1 0-1h4.1A5.5 5.5 0 0 1 17 9.6V5.5A2.5 2.5 0 0 0 14.5 3h-9Zm0 11h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1ZM8 5c.2 0 .38.12.46.3l2 4.5a.5.5 0 1 1-.92.4L9.01 9H6.99l-.53 1.2a.5.5 0 0 1-.92-.4l2-4.5A.5.5 0 0 1 8 5Zm.56 3L8 6.73 7.44 8h1.12Zm4.94-2.5v1h1a.5.5 0 0 1 0 1h-1v1a.5.5 0 0 1-1 0v-1h-1a.5.5 0 0 1 0-1h1v-1a.5.5 0 0 1 1 0Zm5.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const QuizNew20Regular = /*#__PURE__*/createFluentIcon('QuizNew20Regular', \"20\", [\"M5.5 3A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h4.1c-.16-.32-.3-.65-.4-1H5.5A1.5 1.5 0 0 1 4 14.5v-9C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v3.7c.35.1.68.24 1 .4V5.5A2.5 2.5 0 0 0 14.5 3h-9Zm3.7 10c.1-.35.24-.68.4-1H5.5a.5.5 0 0 0 0 1h3.7Zm-.7 2a.5.5 0 0 0 0-1h-3a.5.5 0 0 0 0 1h3ZM8 5c.2 0 .38.12.46.3l2 4.5a.5.5 0 1 1-.92.4L9.01 9H6.99l-.53 1.2a.5.5 0 0 1-.92-.4l2-4.5A.5.5 0 0 1 8 5Zm.56 3L8 6.73 7.44 8h1.12Zm4.94-2.5a.5.5 0 0 0-1 0v1h-1a.5.5 0 0 0 0 1h1v1a.5.5 0 0 0 1 0v-1h1a.5.5 0 0 0 0-1h-1v-1Zm5.5 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const QuizNew24Filled = /*#__PURE__*/createFluentIcon('QuizNew24Filled', \"24\", [\"M10.52 9 10 7.73 9.48 9h1.04ZM5.75 3A2.75 2.75 0 0 0 3 5.75v12.5A2.75 2.75 0 0 0 5.75 21h6.27a6.47 6.47 0 0 1-.52-6H5.75a.75.75 0 0 1 0-1.5h6.63A6.49 6.49 0 0 1 21 12.02V5.75A2.75 2.75 0 0 0 18.25 3H5.75Zm3.5 15.5h-3.5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5Zm1.44-13.04 2.25 5.5a.75.75 0 0 1-1.39.57l-.42-1.03H8.87l-.43 1.03a.75.75 0 0 1-1.38-.56l2.25-5.5a.75.75 0 0 1 1.38 0Zm5.81.29V7h1.25a.75.75 0 0 1 0 1.5H16.5v1.25a.75.75 0 0 1-1.5 0V8.5h-1.25a.75.75 0 0 1 0-1.5H15V5.75a.75.75 0 0 1 1.5 0ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 1 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 1 1 0 1H18Z\"]);\nexport const QuizNew24Regular = /*#__PURE__*/createFluentIcon('QuizNew24Regular', \"24\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h12.5A2.75 2.75 0 0 1 21 5.75v6.27c-.46-.3-.97-.53-1.5-.7V5.74c0-.69-.56-1.25-1.25-1.25H5.75c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25h5.56c.18.53.42 1.04.71 1.5H5.75A2.75 2.75 0 0 1 3 18.25V5.75Zm3.75 7.75h5.63a6.5 6.5 0 0 0-.88 1.5H6.75a.75.75 0 0 1 0-1.5Zm3.5 5h-3.5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5ZM10 5c.3 0 .58.18.7.46l2.24 5.5a.75.75 0 0 1-1.39.57l-.42-1.03H8.87l-.43 1.03a.75.75 0 0 1-1.38-.56l2.25-5.5A.75.75 0 0 1 10 5Zm-.52 4h1.04L10 7.73 9.48 9Zm6.27-4c.41 0 .75.33.75.75V7h1.25a.75.75 0 0 1 0 1.5H16.5v1.25a.75.75 0 0 1-1.5 0V8.5h-1.25a.75.75 0 0 1 0-1.5H15V5.75c0-.42.34-.75.75-.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 1 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 1 1 0 1H18Z\"]);\nexport const QuizNew28Filled = /*#__PURE__*/createFluentIcon('QuizNew28Filled', \"28\", [\"M12.48 11h-1.96l.98-2.32.98 2.32ZM3 5.75A2.75 2.75 0 0 1 5.75 3h16.5A2.75 2.75 0 0 1 25 5.75v8.79A7.47 7.47 0 0 0 14.45 16H7.23a.75.75 0 0 0 0 1.5h6.35a7.47 7.47 0 0 0 .87 7.5h-8.7A2.75 2.75 0 0 1 3 22.25V5.75Zm9.2.7a.75.75 0 0 0-1.39 0l-2.75 6.51a.75.75 0 1 0 1.38.58l.44-1.04h3.24l.44 1.04a.75.75 0 0 0 1.38-.58l-2.75-6.5Zm-5.72 14.3c0 .42.33.75.75.75h4.52a.75.75 0 0 0 0-1.5H7.23a.75.75 0 0 0-.75.75Zm12.02-14a.75.75 0 0 0-1.5 0V8h-1.25a.75.75 0 0 0 0 1.5H17v1.25a.75.75 0 0 0 1.5 0V9.5h1.25a.75.75 0 0 0 0-1.5H18.5V6.75Zm8.45 13.75a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1h3.5v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1h-3.5v-3.5Z\"]);\nexport const QuizNew28Regular = /*#__PURE__*/createFluentIcon('QuizNew28Regular', \"28\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h16.5A2.75 2.75 0 0 1 25 5.75v8.75a7.49 7.49 0 0 0-1.5-.88V5.75c0-.69-.56-1.25-1.25-1.25H5.75c-.69 0-1.25.56-1.25 1.25v16.5c0 .69.56 1.25 1.25 1.25h7.87c.24.54.53 1.04.88 1.5H5.75A2.75 2.75 0 0 1 3 22.25V5.75ZM6.75 16h7.75a7.5 7.5 0 0 0-.88 1.5H6.75a.75.75 0 0 1 0-1.5ZM6 20.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM11.5 6c.3 0 .57.18.7.46l2.74 6.5a.75.75 0 1 1-1.38.58l-.44-1.04H9.88l-.44 1.04a.75.75 0 1 1-1.38-.58l2.75-6.5a.75.75 0 0 1 .7-.46Zm-.98 5h1.96l-.98-2.32-.98 2.32Zm7.23-5c.41 0 .75.34.75.75V8h1.25a.75.75 0 0 1 0 1.5H18.5v1.25a.75.75 0 0 1-1.5 0V9.5h-1.25a.75.75 0 0 1 0-1.5H17V6.75c0-.41.34-.75.75-.75ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H21v-3.5Z\"]);\nexport const QuizNew48Filled = /*#__PURE__*/createFluentIcon('QuizNew48Filled', \"48\", [\"M17.64 19.02h3.71l-1.85-4.5-1.86 4.5ZM11.25 6A5.25 5.25 0 0 0 6 11.25v25.5C6 39.65 8.35 42 11.25 42h13.27a12.94 12.94 0 0 1-1.24-11.5H11.25a1.25 1.25 0 1 1 0-2.5h13.27A12.99 12.99 0 0 1 42 23.75v-12.5C42 8.35 39.65 6 36.75 6h-25.5ZM10 35.25c0-.69.56-1.25 1.25-1.25h8a1.25 1.25 0 0 1 0 2.5h-8c-.69 0-1.25-.56-1.25-1.25ZM19.5 10c.5 0 .96.3 1.15.77l4.76 11.5a1.25 1.25 0 0 1-2.32.96l-.7-1.71H16.6l-.7 1.71a1.25 1.25 0 1 1-2.32-.95l4.75-11.5c.2-.48.65-.78 1.16-.78Zm12.25 0c.69 0 1.25.56 1.25 1.25V14h2.75a1.25 1.25 0 1 1 0 2.5H33v2.75a1.25 1.25 0 0 1-2.5 0V16.5h-2.75a1.25 1.25 0 1 1 0-2.5h2.75v-2.75c0-.7.56-1.25 1.25-1.25Zm14.73 25a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-10-7a1 1 0 1 0-2 0v6h-6a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6v-6Z\"]);\nexport const QuizNew48Regular = /*#__PURE__*/createFluentIcon('QuizNew48Regular', \"48\", [\"M11.25 6A5.25 5.25 0 0 0 6 11.25v25.5C6 39.65 8.35 42 11.25 42h13.27c-.5-.78-.92-1.62-1.25-2.5H11.25a2.75 2.75 0 0 1-2.75-2.75v-25.5a2.75 2.75 0 0 1 2.75-2.75h25.5a2.75 2.75 0 0 1 2.75 2.75v11.39c.88.28 1.72.66 2.5 1.11v-12.5C42 8.35 39.65 6 36.75 6h-25.5Zm13.27 22c-.5.78-.92 1.61-1.24 2.5H11.25a1.25 1.25 0 1 1 0-2.5h13.27ZM33 11.25a1.25 1.25 0 0 0-2.5 0V14h-2.75a1.25 1.25 0 1 0 0 2.5h2.75v2.75a1.25 1.25 0 0 0 2.5 0V16.5h2.75a1.25 1.25 0 1 0 0-2.5H33v-2.75Zm-12.35-.48a1.25 1.25 0 0 0-2.3 0l-4.76 11.5a1.25 1.25 0 1 0 2.32.96l.7-1.71h5.78l.7 1.71a1.25 1.25 0 1 0 2.32-.95l-4.76-11.5Zm.7 8.25h-3.7l1.85-4.5 1.85 4.5ZM10 35.25c0-.69.56-1.25 1.25-1.25h8a1.25 1.25 0 0 1 0 2.5h-8c-.69 0-1.25-.56-1.25-1.25ZM46.48 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-10-7a1 1 0 1 0-2 0v6h-6a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6v-6Z\"]);\nexport const Radar20Filled = /*#__PURE__*/createFluentIcon('Radar20Filled', \"20\", [\"m14.28 3.24-1.09 1.1a6.5 6.5 0 1 0 1.4 10.26.75.75 0 0 1 1.07 1.06 8 8 0 1 1-1.38-12.42Zm-3.3 3.3 1.17-1.17a5.1 5.1 0 1 0 1.46 8.24.75.75 0 1 0-1.06-1.06 3.6 3.6 0 1 1-1.56-6.01Zm4.8-2.32c.3.3.3.77 0 1.06l-4.33 4.33a1.5 1.5 0 1 1-1.06-1.06l4.33-4.33c.3-.3.77-.3 1.06 0Zm1.47 9.03a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Radar20Regular = /*#__PURE__*/createFluentIcon('Radar20Regular', \"20\", [\"m14.5 3.38-.72.72a7 7 0 1 0 1.17 10.85.5.5 0 0 1 .7.7A8 8 0 1 1 14.5 3.39Zm-2.94 2.94.75-.75a5 5 0 1 0 1.23 7.97.5.5 0 1 0-.71-.71 4 4 0 1 1-1.27-6.51Zm4.3-2.17c.19.2.19.5 0 .7l-4.9 4.9a1 1 0 1 1-.7-.72l4.89-4.88c.2-.2.5-.2.7 0ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const RadarCheckmark20Filled = /*#__PURE__*/createFluentIcon('RadarCheckmark20Filled', \"20\", [\"m14.28 3.24-1.09 1.1a6.5 6.5 0 0 0-9.66 5.02 5.5 5.5 0 0 0-1.53.9 8 8 0 0 1 12.28-7.01ZM9.75 18c.37-.46.67-.97.89-1.53a6.47 6.47 0 0 0 3.96-1.87.75.75 0 0 1 1.06 1.06A7.98 7.98 0 0 1 9.75 18ZM11 14.5c0 .17 0 .34-.02.5a5.08 5.08 0 0 0 2.63-1.4.75.75 0 1 0-1.06-1.05c-.47.47-1.04.78-1.64.93.06.33.09.67.09 1.02ZM5.5 9c.35 0 .69.03 1.02.1a3.58 3.58 0 0 1 4.47-2.56l1.16-1.17A5.1 5.1 0 0 0 5 9.02L5.5 9Zm3 .9c.64.41 1.19.96 1.6 1.6a1.5 1.5 0 0 0 1.35-1.89l4.33-4.33a.75.75 0 0 0-1.06-1.06l-4.33 4.33A1.5 1.5 0 0 0 8.5 9.9Zm8.75 3.35a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-4.25 5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const RadarCheckmark20Regular = /*#__PURE__*/createFluentIcon('RadarCheckmark20Regular', \"20\", [\"m14.5 3.38-.72.72A7 7 0 0 0 3 9.6c-.36.18-.7.4-1 .65a8 8 0 0 1 12.5-6.87ZM9.75 18c.25-.31.47-.65.66-1.01a6.97 6.97 0 0 0 4.54-2.04.5.5 0 0 1 .7.7A7.98 7.98 0 0 1 9.76 18ZM11 14.5l-.01.4a4.98 4.98 0 0 0 2.55-1.36.5.5 0 1 0-.71-.71c-.54.53-1.18.88-1.86 1.05.02.2.03.41.03.62ZM5.5 9l.62.03a3.98 3.98 0 0 1 5.44-2.71l.75-.75A5 5 0 0 0 5.1 9L5.5 9Zm3.54 1.3c.24.2.46.42.67.66a1 1 0 0 0 1.26-1.22l4.88-4.89a.5.5 0 0 0-.7-.7l-4.9 4.88a1 1 0 0 0-1.2 1.26ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM10 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const RadarRectangleMultiple20Filled = /*#__PURE__*/createFluentIcon('RadarRectangleMultiple20Filled', \"20\", [\"m14.28 3.24-1.09 1.1A6.5 6.5 0 0 0 3.58 11H2.06a7.99 7.99 0 0 1 12.22-7.76ZM10 17v-.5c1.66 0 3.33-.63 4.6-1.9a.75.75 0 0 1 1.06 1.06A7.98 7.98 0 0 1 9.83 18a3 3 0 0 0 .17-1Zm0-2.5v.6c1.3 0 2.61-.5 3.6-1.5a.75.75 0 1 0-1.05-1.05 3.6 3.6 0 0 1-2.86 1.04c.2.25.31.57.31.91ZM6.5 11h.04A3.6 3.6 0 0 1 11 6.54l1.16-1.17A5.1 5.1 0 0 0 5 11h1.5Zm9.28-6.78c.3.3.3.77 0 1.06l-4.33 4.33a1.5 1.5 0 1 1-1.06-1.06l4.33-4.33c.3-.3.77-.3 1.06 0Zm1.47 9.03a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM16.5 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM15 11.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75-1.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM1.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-5Zm7 2c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3.5a.5.5 0 0 1 0-1H7a1 1 0 0 0 1-1v-2.5c0-.28.22-.5.5-.5Z\"]);\nexport const RadarRectangleMultiple20Regular = /*#__PURE__*/createFluentIcon('RadarRectangleMultiple20Regular', \"20\", [\"m14.5 3.38-.72.72A7 7 0 0 0 3.08 11H2.05A7.99 7.99 0 0 1 14.5 3.38ZM9.83 18a3 3 0 0 0 .17-1c1.8 0 3.58-.68 4.95-2.05a.5.5 0 0 1 .7.7A7.98 7.98 0 0 1 9.84 18Zm.17-3.5v.5c1.28 0 2.56-.49 3.54-1.46a.5.5 0 1 0-.71-.71c-.8.8-1.86 1.2-2.92 1.17.06.16.09.32.09.5ZM5.1 11h1.03a4 4 0 0 1 5.43-4.68l.75-.75A5 5 0 0 0 5.1 11Zm10.75-6.85c.2.2.2.5 0 .7l-4.88 4.9a1 1 0 1 1-.71-.72l4.89-4.88c.2-.2.5-.2.7 0ZM17 13.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM16.5 7a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 4.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm-2.5 2a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm-.5-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM1.5 12a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-5Zm7 2c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3.5a.5.5 0 0 1 0-1H7a1 1 0 0 0 1-1v-2.5c0-.28.22-.5.5-.5Z\"]);\nexport const RadioButton16Filled = /*#__PURE__*/createFluentIcon('RadioButton16Filled', \"16\", [\"M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-9a6 6 0 1 0 0 12A6 6 0 0 0 8 2ZM3 8a5 5 0 1 1 10 0A5 5 0 0 1 3 8Z\"]);\nexport const RadioButton16Regular = /*#__PURE__*/createFluentIcon('RadioButton16Regular', \"16\", [\"M8 3a5 5 0 1 0 0 10A5 5 0 0 0 8 3ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z\"]);\nexport const RadioButton20Filled = /*#__PURE__*/createFluentIcon('RadioButton20Filled', \"20\", [\"M10 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0-13a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const RadioButton20Regular = /*#__PURE__*/createFluentIcon('RadioButton20Regular', \"20\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z\"]);\nexport const RadioButton24Filled = /*#__PURE__*/createFluentIcon('RadioButton24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17ZM12 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12Z\"]);\nexport const RadioButton24Regular = /*#__PURE__*/createFluentIcon('RadioButton24Regular', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-1.5a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17Z\"]);\nexport const RadioButtonOff16Filled = /*#__PURE__*/createFluentIcon('RadioButtonOff16Filled', \"16\", [\"M14.15 14.85c.1.1.22.15.35.15a.5.5 0 0 0 .35-.85l-13-13a.5.5 0 0 0-.7.7l2.28 2.28a6 6 0 0 0 8.44 8.44l2.28 2.28Zm-2.99-2.98a5 5 0 0 1-7.03-7.03l1.43 1.42a3 3 0 0 0 4.18 4.18l1.42 1.43ZM4.95 2.83a6 6 0 0 1 8.22 8.22l-.74-.74a5 5 0 0 0-6.74-6.74l-.74-.74Zm5.94 5.94a3 3 0 0 0-3.66-3.66l3.66 3.66Z\"]);\nexport const RadioButtonOff16Regular = /*#__PURE__*/createFluentIcon('RadioButtonOff16Regular', \"16\", [\"m1.85 1.15 13 13a.5.5 0 0 1-.7.7l-2.28-2.27a6 6 0 0 1-8.46-8.46L1.16 1.86a.5.5 0 0 1 .7-.7ZM3 8a5 5 0 0 0 5 5c1.2 0 2.3-.42 3.16-1.13L4.13 4.84A4.98 4.98 0 0 0 3 8Zm10 0a5 5 0 0 0-5-5c-.83 0-1.6.22-2.3.58l-.74-.75a6 6 0 0 1 8.2 8.2l-.74-.73c.36-.7.58-1.47.58-2.3Z\"]);\nexport const Ram16Filled = /*#__PURE__*/createFluentIcon('Ram16Filled', \"16\", [\"M10 8h2V6h-2v2ZM7 8h2V6H7v2ZM4 8h2V6H4v2Zm9-5H3a2 2 0 0 0-2 2v4a2 2 0 0 0 1 1.73v1.02c0 .69.56 1.25 1.25 1.25H6.5a.5.5 0 0 0 .35-.15L8 11.71l1.15 1.14c.09.1.22.15.35.15h3.25c.69 0 1.25-.56 1.25-1.25v-1.02A2 2 0 0 0 15 9V5a2 2 0 0 0-2-2Zm0 5.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5h9c.28 0 .5.22.5.5v3Z\"]);\nexport const Ram16Regular = /*#__PURE__*/createFluentIcon('Ram16Regular', \"16\", [\"M3.5 5h9c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5ZM9 8V6H7v2h2ZM6 6H4v2h2V6Zm4 2h2V6h-2v2ZM3 3h10a2 2 0 0 1 2 2v4a2 2 0 0 1-1 1.73v1.02c0 .69-.56 1.25-1.25 1.25H9.5a.5.5 0 0 1-.35-.15L8 11.71l-1.15 1.14a.5.5 0 0 1-.35.15H3.25C2.56 13 2 12.44 2 11.75v-1.02A2 2 0 0 1 1 9V5c0-1.1.9-2 2-2Zm.25 9h3.04l1-1H3v.75c0 .14.11.25.25.25Zm9.5 0c.14 0 .25-.11.25-.25V11H8.7l1 1h3.05Zm.25-2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h10Z\"]);\nexport const Ram20Filled = /*#__PURE__*/createFluentIcon('Ram20Filled', \"20\", [\"M5 7h2.5v3H5V7Zm6.5 0v3h-3V7h3Zm1 3H15V7h-2.5v3Zm3.54-6c.26 0 .5.05.74.16A2.06 2.06 0 0 1 18 5.96V11a2 2 0 0 1-1 1.73v1.77a1.45 1.45 0 0 1-.44 1.05c-.13.14-.3.25-.48.33-.19.09-.38.13-.58.12h-4a.48.48 0 0 1-.35-.15L10 14.7l-1.15 1.15c-.1.1-.21.15-.35.15h-4a1.45 1.45 0 0 1-1.05-.44c-.14-.13-.25-.3-.33-.48A1.32 1.32 0 0 1 3 14.5v-1.77c-.3-.17-.55-.42-.73-.73A2.06 2.06 0 0 1 2 11V5.96c0-.26.05-.5.16-.74A2.06 2.06 0 0 1 3.96 4h12.08Zm-.66 2.08A.95.95 0 0 0 15 6H5a.85.85 0 0 0-.4.08c-.12.06-.22.13-.31.22A1 1 0 0 0 4 7v3c0 .15.03.28.08.4.04.12.12.22.2.31.1.09.21.16.33.21.12.05.25.08.39.08h10c.14 0 .27-.02.4-.08.12-.06.22-.13.31-.22A1 1 0 0 0 16 10V7a1 1 0 0 0-.3-.71 1.1 1.1 0 0 0-.32-.21Z\"]);\nexport const Ram20Regular = /*#__PURE__*/createFluentIcon('Ram20Regular', \"20\", [\"M16.04 4c.26 0 .5.05.74.16A2.06 2.06 0 0 1 18 5.96V11a2 2 0 0 1-1 1.73v1.77a1.45 1.45 0 0 1-.44 1.05c-.13.14-.3.25-.48.33-.19.09-.38.13-.58.12h-4a.48.48 0 0 1-.35-.15L10 14.7l-1.15 1.15c-.1.1-.21.15-.35.15h-4a1.45 1.45 0 0 1-1.05-.44c-.14-.13-.25-.3-.33-.48A1.32 1.32 0 0 1 3 14.5v-1.77c-.3-.17-.55-.42-.73-.73A2.06 2.06 0 0 1 2 11V5.96c0-.26.05-.5.16-.74A2.06 2.06 0 0 1 3.96 4h12.08ZM17 6a.95.95 0 0 0-.08-.38 1.1 1.1 0 0 0-.2-.32A1 1 0 0 0 16 5H3.99a.97.97 0 0 0-.7.29c-.1.09-.16.2-.22.32A.85.85 0 0 0 3 6v5c0 .14.03.27.08.4.05.11.12.22.2.31.1.1.2.16.32.21.12.05.25.07.4.08h12a.97.97 0 0 0 .7-.29c.1-.09.16-.2.22-.32A.85.85 0 0 0 17 11V6Zm-2 0c.14 0 .26.03.38.08s.23.12.32.2A1 1 0 0 1 16 7v3.01a.97.97 0 0 1-.29.7c-.09.1-.2.16-.32.22A.85.85 0 0 1 15 11H5a.97.97 0 0 1-.4-.08 1.1 1.1 0 0 1-.31-.2.85.85 0 0 1-.21-.32A1.2 1.2 0 0 1 4 10V7a.97.97 0 0 1 .29-.7c.09-.1.2-.16.32-.22A.85.85 0 0 1 5 6h10ZM7.5 7H5v3h2.5V7Zm4 3V7h-3v3h3Zm1 0H15V7h-2.5v3Zm3.5 3H4v1.5c0 .14.05.25.15.35.1.1.21.15.35.15h3.8l1.35-1.35c.1-.1.21-.15.35-.15.14 0 .25.05.35.15L11.71 15h3.79c.14 0 .25-.05.35-.15.1-.1.15-.21.15-.35V13Z\"]);\nexport const RatingMature16Filled = /*#__PURE__*/createFluentIcon('RatingMature16Filled', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7Zm3.92.74A.5.5 0 0 0 5 5.5v5a.5.5 0 1 0 1 0V7.24l1.58 2.53a.5.5 0 0 0 .84 0L10 7.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L8 8.56 5.92 5.24Z\"]);\nexport const RatingMature16Regular = /*#__PURE__*/createFluentIcon('RatingMature16Regular', \"16\", [\"M5.92 5.24A.5.5 0 0 0 5 5.5v5a.5.5 0 1 0 1 0V7.24l1.58 2.53a.5.5 0 0 0 .84 0L10 7.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L8 8.56 5.92 5.24ZM4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2h-7ZM3 4.5C3 3.67 3.67 3 4.5 3h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7Z\"]);\nexport const RatingMature20Filled = /*#__PURE__*/createFluentIcon('RatingMature20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm4.92 1.24A.5.5 0 0 0 7 7.5v5a.5.5 0 1 0 1 0V9.24l1.58 2.53a.5.5 0 0 0 .84 0L12 9.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L10 10.56 7.92 7.24Z\"]);\nexport const RatingMature20Regular = /*#__PURE__*/createFluentIcon('RatingMature20Regular', \"20\", [\"M7.92 7.24A.5.5 0 0 0 7 7.5v5a.5.5 0 1 0 1 0V9.24l1.58 2.53a.5.5 0 0 0 .84 0L12 9.24v3.26a.5.5 0 1 0 1 0v-5a.5.5 0 0 0-.92-.26L10 10.56 7.92 7.24ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const RatingMature24Filled = /*#__PURE__*/createFluentIcon('RatingMature24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25Zm5.83 2.02a.75.75 0 0 0-1.33.48v6.5a.75.75 0 1 0 1.5 0v-4.43l2.42 2.91a.75.75 0 0 0 1.16 0l2.42-2.9v4.42a.75.75 0 1 0 1.5 0v-6.5a.75.75 0 0 0-1.33-.48L12 12.07l-3.17-3.8Z\"]);\nexport const RatingMature24Regular = /*#__PURE__*/createFluentIcon('RatingMature24Regular', \"24\", [\"M8.83 8.27a.75.75 0 0 0-1.33.48v6.5a.75.75 0 1 0 1.5 0v-4.43l2.42 2.91a.75.75 0 0 0 1.16 0l2.42-2.9v4.42a.75.75 0 1 0 1.5 0v-6.5a.75.75 0 0 0-1.33-.48L12 12.07l-3.17-3.8ZM6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z\"]);\nexport const RatioOneToOne20Filled = /*#__PURE__*/createFluentIcon('RatioOneToOne20Filled', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM7 7.5v5a.5.5 0 0 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5A.5.5 0 0 1 7 7.5Zm7 0v5a.5.5 0 1 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5a.5.5 0 0 1 .72.45Zm-4 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM9.5 12a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z\"]);\nexport const RatioOneToOne20Regular = /*#__PURE__*/createFluentIcon('RatioOneToOne20Regular', \"20\", [\"M6.76 7.07c.15.1.24.26.24.43v5a.5.5 0 0 1-1 0V8.3l-.28.15a.5.5 0 1 1-.44-.9l1-.5a.5.5 0 0 1 .48.02ZM14 7.5a.5.5 0 0 0-.72-.45l-1 .5a.5.5 0 1 0 .44.9L13 8.3v4.19a.5.5 0 0 0 1 0v-5Zm-4 1a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM9.5 12a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM4.75 5C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75Z\"]);\nexport const RatioOneToOne24Filled = /*#__PURE__*/createFluentIcon('RatioOneToOne24Filled', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM8.5 8.75v6.5a.75.75 0 0 1-1.5 0v-5.1l-.33.22a.75.75 0 1 1-.84-1.24l1.5-1a.75.75 0 0 1 1.17.62Zm9 0v6.5a.75.75 0 1 1-1.5 0v-5.1l-.33.22a.75.75 0 1 1-.84-1.24l1.5-1a.75.75 0 0 1 1.17.62ZM13 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1-3a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const RatioOneToOne24Regular = /*#__PURE__*/createFluentIcon('RatioOneToOne24Regular', \"24\", [\"M8.5 8.75a.75.75 0 0 0-1.17-.62l-1.5 1a.75.75 0 1 0 .84 1.24l.33-.22v5.1a.75.75 0 0 0 1.5 0v-6.5Zm9 0a.75.75 0 0 0-1.17-.62l-1.5 1a.75.75 0 1 0 .84 1.24l.33-.22v5.1a.75.75 0 1 0 1.5 0v-6.5ZM13 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1-3a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM3.5 7.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75H5.25c-.97 0-1.75-.78-1.75-1.75v-9.5Z\"]);\nexport const ReOrder16Filled = /*#__PURE__*/createFluentIcon('ReOrder16Filled', \"16\", [\"M2.75 9.25h10.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h10.6-10.5Zm0-4h10.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h10.6-10.5Z\"]);\nexport const ReOrder16Regular = /*#__PURE__*/createFluentIcon('ReOrder16Regular', \"16\", [\"M2.5 9h11a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H13.5h-11Zm0-3h11a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H13.5h-11Z\"]);\nexport const ReOrder20Filled = /*#__PURE__*/createFluentIcon('ReOrder20Filled', \"20\", [\"M2.75 7.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Zm0 3a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Z\"]);\nexport const ReOrder20Regular = /*#__PURE__*/createFluentIcon('ReOrder20Regular', \"20\", [\"M2.5 8a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Z\"]);\nexport const ReOrder24Filled = /*#__PURE__*/createFluentIcon('ReOrder24Filled', \"24\", [\"M3 13h18a1 1 0 0 1 .12 2H3a1 1 0 0 1-.12-2H21 3Zm0-4h18a1 1 0 0 1 .12 2H3a1 1 0 0 1-.12-2H21 3Z\"]);\nexport const ReOrder24Regular = /*#__PURE__*/createFluentIcon('ReOrder24Regular', \"24\", [\"M2.75 13.25h18.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h18.6-18.5Zm0-4h18.5a.75.75 0 0 1 .1 1.5H2.75a.75.75 0 0 1-.1-1.5h18.6-18.5Z\"]);\nexport const ReOrderDotsHorizontal16Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal16Filled', \"16\", [\"M11 5.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-4.5 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM3.5 7a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm7.5 3.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM8 12a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-6-1.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const ReOrderDotsHorizontal16Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal16Regular', \"16\", [\"M11 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm0 4a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-3 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM7 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-3 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM3 6a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const ReOrderDotsHorizontal20Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal20Filled', \"20\", [\"M14 6.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-5 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM5.5 8a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm8.5 5.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM10.5 15a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM4 13.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const ReOrderDotsHorizontal20Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal20Regular', \"20\", [\"M15 7a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM9 7a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM4 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm11 5a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-5 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-7-1a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z\"]);\nexport const ReOrderDotsHorizontal24Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal24Filled', \"24\", [\"M7 16a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0-8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0-8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm0-8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const ReOrderDotsHorizontal24Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsHorizontal24Regular', \"24\", [\"M7 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0-7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm7 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0-7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm7 7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0-7a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"]);\nexport const ReOrderDotsVertical16Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical16Filled', \"16\", [\"M5.5 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 4.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm1.5 3a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM10.5 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-1.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const ReOrderDotsVertical16Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical16Regular', \"16\", [\"M6 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm3-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ReOrderDotsVertical20Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical20Filled', \"20\", [\"M6.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM8 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM13.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM15 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM13.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"]);\nexport const ReOrderDotsVertical20Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical20Regular', \"20\", [\"M7 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5-11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ReOrderDotsVertical24Filled = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical24Filled', \"24\", [\"M16 17a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm-8 0a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm8-7a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm-8 0a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm8-7a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM8 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z\"]);\nexport const ReOrderDotsVertical24Regular = /*#__PURE__*/createFluentIcon('ReOrderDotsVertical24Regular', \"24\", [\"M15.5 17a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-7 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm7-7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-7 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm7-7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-7 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const ReadAloud16Filled = /*#__PURE__*/createFluentIcon('ReadAloud16Filled', \"16\", [\"M10.04 1.5c.14-.4.57-.6.96-.46.22.1 0 0 0 0h.01l.02.01a2.15 2.15 0 0 1 .19.08c.11.06.28.14.47.26.38.23.87.6 1.37 1.14 1 1.1 1.94 2.91 1.94 5.72a.75.75 0 0 1-1.5 0c0-2.44-.8-3.89-1.56-4.72a4.69 4.69 0 0 0-1.43-1.07h-.02a.75.75 0 0 1-.45-.96ZM7.2 3.47a.75.75 0 0 0-1.4 0l-3.75 9.5a.75.75 0 0 0 1.4.56l.9-2.28h4.3l.9 2.28a.75.75 0 1 0 1.4-.56L7.2 3.47Zm.86 6.28H4.94L6.5 5.79l1.56 3.96Zm2.67-6.08a.75.75 0 0 0-.96 1.15v.01a1.83 1.83 0 0 1 .18.17c.12.12.28.3.44.53.32.46.61 1.06.61 1.72a.75.75 0 0 0 1.5 0c0-1.09-.46-1.99-.89-2.59a5.94 5.94 0 0 0-.85-.96l-.02-.02h-.01Zm-.96 1.15Z\"]);\nexport const ReadAloud16Regular = /*#__PURE__*/createFluentIcon('ReadAloud16Regular', \"16\", [\"M10.03 1.32a.5.5 0 0 1 .65-.29l.02.01a2.25 2.25 0 0 1 .19.08l.5.27c.4.25.94.63 1.47 1.2A8.3 8.3 0 0 1 15 8.5a.5.5 0 0 1-1 0c0-2.61-.95-4.24-1.86-5.22a6.07 6.07 0 0 0-1.81-1.31.5.5 0 0 1-.3-.65Zm-3.07 2a.5.5 0 0 0-.92 0l-4 10a.5.5 0 1 0 .92.37L4.04 11h4.92l1.08 2.69a.5.5 0 1 0 .92-.38l-4-10ZM8.56 10H4.44L6.5 4.85 8.56 10Zm1.66-6.45a.5.5 0 0 0-.45.9h.01a1.54 1.54 0 0 1 .24.15 3.45 3.45 0 0 1 1.48 2.9.5.5 0 0 0 1 0 4.45 4.45 0 0 0-2.24-3.93l-.02-.01h-.01s.15.08 0 0Zm-.45.9Z\"]);\nexport const ReadAloud20Filled = /*#__PURE__*/createFluentIcon('ReadAloud20Filled', \"20\", [\"M11.84 2.14c.2-.36.66-.5 1.02-.3a9.94 9.94 0 0 1 5.39 8.08.75.75 0 1 1-1.5.16 8.45 8.45 0 0 0-4.6-6.92.75.75 0 0 1-.3-1.02ZM8.7 4.22a.75.75 0 0 0-1.38 0l-4.5 11a.75.75 0 0 0 1.38.56l1.45-3.53h4.72l1.45 3.53a.75.75 0 0 0 1.38-.56l-4.5-11Zm1.06 6.53h-3.5L8 6.48l1.75 4.27Zm2.62-6.4a.75.75 0 0 0-.74 1.3c1.52.87 2.4 2.4 2.63 3.96a.75.75 0 1 0 1.48-.22 6.92 6.92 0 0 0-3.37-5.04Z\"]);\nexport const ReadAloud20Regular = /*#__PURE__*/createFluentIcon('ReadAloud20Regular', \"20\", [\"M12.06 2.26a.5.5 0 0 1 .68-.2A9.7 9.7 0 0 1 18 9.94a.5.5 0 0 1-1 .12 8.7 8.7 0 0 0-4.74-7.12.5.5 0 0 1-.2-.68Zm-3.6 2.05a.5.5 0 0 0-.92 0l-4.5 11a.5.5 0 1 0 .92.38l1.54-3.76V12h5v-.07l1.54 3.76a.5.5 0 1 0 .92-.38l-4.5-11ZM10.12 11H5.88L8 5.82 10.12 11Zm2.13-6.43a.5.5 0 0 0-.5.86 5.67 5.67 0 0 1 2.76 4.14.5.5 0 0 0 .98-.14 6.67 6.67 0 0 0-3.24-4.86Z\"]);\nexport const ReadAloud24Filled = /*#__PURE__*/createFluentIcon('ReadAloud24Filled', \"24\", [\"M14.6 2.08a1 1 0 0 1 1.32-.49c.26.14 0 0 0 0h.01l.02.02a4.9 4.9 0 0 1 .3.16 12.27 12.27 0 0 1 3.11 2.5A10.75 10.75 0 0 1 22 13.13a1 1 0 0 1-1.98-.26 8.75 8.75 0 0 0-2.13-7.27 10.27 10.27 0 0 0-2.8-2.19 1 1 0 0 1-.49-1.33ZM9.92 4.63a1 1 0 0 0-1.86 0l-5.5 14a1 1 0 0 0 1.86.74L6.15 15h5.7l1.72 4.37a1 1 0 0 0 1.86-.74l-5.5-14ZM11.07 13H6.93L9 7.73 11.07 13Zm4.38-7.4a1 1 0 0 0-.9 1.8c.3.14.8.57 1.23 1.26.42.67.72 1.48.72 2.34a1 1 0 0 0 2 0c0-1.31-.45-2.5-1.03-3.41a5.57 5.57 0 0 0-2.02-1.98Z\"]);\nexport const ReadAloud24Regular = /*#__PURE__*/createFluentIcon('ReadAloud24Regular', \"24\", [\"M15.86 2.1a.75.75 0 1 0-.72 1.3 10.23 10.23 0 0 1 4.1 3.83c.9 1.53 1.31 3.35 1.26 5.46a.75.75 0 0 0 1.5.04c.06-2.38-.43-4.47-1.46-6.25a11.72 11.72 0 0 0-4.68-4.39Zm-.24 3.6A.75.75 0 1 0 14.91 7c.72.4 1.3.96 1.73 1.72.44.76.65 1.54.63 2.37a.75.75 0 0 0 1.5.03 5.92 5.92 0 0 0-.83-3.15 5.92 5.92 0 0 0-2.32-2.29ZM9 4c.3 0 .58.19.7.47l5.75 14.5a.75.75 0 0 1-1.4.56L12.25 15h-6.5l-1.8 4.53a.75.75 0 1 1-1.4-.56L8.3 4.47A.75.75 0 0 1 9 4Zm0 2.78L6.34 13.5h5.32L9 6.78Z\"]);\nexport const ReadAloud28Filled = /*#__PURE__*/createFluentIcon('ReadAloud28Filled', \"28\", [\"M17.6 2.58a1 1 0 0 1 1.32-.49A12.89 12.89 0 0 1 26 14.54a1 1 0 0 1-2-.08c.26-6.28-3.76-9.55-5.92-10.55a1 1 0 0 1-.49-1.33Zm-5.91 2.07a1 1 0 0 0-1.88 0l-6.75 18a1 1 0 0 0 1.88.7l2-5.35h7.62l2 5.35a1 1 0 0 0 1.88-.7l-6.75-18ZM13.8 16H7.69l3.06-8.15L13.81 16Zm4.77-9.81a1 1 0 0 0-1.16 1.62c.8.57 1.42 1.2 1.86 2 .44.78.72 1.8.72 3.19a1 1 0 0 0 2 0c0-1.68-.34-3.04-.97-4.17a8.04 8.04 0 0 0-2.45-2.64Z\"]);\nexport const ReadAloud28Regular = /*#__PURE__*/createFluentIcon('ReadAloud28Regular', \"28\", [\"M17.57 2.93a.75.75 0 0 1 1-.36 12.64 12.64 0 0 1 6.93 12.21.75.75 0 1 1-1.5-.06c.27-6.41-3.85-9.76-6.07-10.79a.75.75 0 0 1-.36-1Zm-6.12 1.55a.75.75 0 0 0-1.4 0l-7 18.5a.75.75 0 1 0 1.4.54L6.54 18h8.42l2.09 5.52a.75.75 0 0 0 1.4-.54l-7-18.5ZM14.4 16.5H7.11l3.64-9.63 3.64 9.63Zm3.8-9.86a.75.75 0 1 0-.88 1.22c1.68 1.2 3.19 2.68 3.19 5.39a.75.75 0 1 0 1.5 0c0-3.44-2-5.31-3.81-6.61Z\"]);\nexport const ReadingList16Filled = /*#__PURE__*/createFluentIcon('ReadingList16Filled', \"16\", [\"M3.5 4.39a.61.61 0 0 1 1.13-.34.75.75 0 0 0 1.24-.84A2.11 2.11 0 1 0 4 6.5h7.31a.75.75 0 0 0 0-1.5h-7.2a.61.61 0 0 1-.61-.61ZM7.75 2.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-3 5a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM2 10.75c0-.41.34-.75.75-.75h8.5a.75.75 0 1 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm2.75 1.75a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5h-8.5Z\"]);\nexport const ReadingList16Regular = /*#__PURE__*/createFluentIcon('ReadingList16Regular', \"16\", [\"M3 5a1 1 0 0 1 1.84-.56.5.5 0 1 0 .83-.55A2 2 0 1 0 4.07 7h7.43a.5.5 0 0 0 0-1H4.08a.5.5 0 0 0-.04 0A1 1 0 0 1 3 5Zm4.5-1a.5.5 0 0 0 0 1h6a.5.5 0 1 0 0-1h-6Zm-3 4a.5.5 0 0 0 0 1h9a.5.5 0 1 0 0-1h-9ZM2 10.5c0-.28.22-.5.5-.5h9a.5.5 0 1 1 0 1h-9a.5.5 0 0 1-.5-.5ZM4.5 12a.5.5 0 0 0 0 1h9a.5.5 0 1 0 0-1h-9Z\"]);\nexport const ReadingList20Filled = /*#__PURE__*/createFluentIcon('ReadingList20Filled', \"20\", [\"M3.5 5.5a1 1 0 0 1 1.84-.56.75.75 0 0 0 1.24-.83A2.5 2.5 0 1 0 4.6 8h10.67a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1ZM9.75 4a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm-4 5a.75.75 0 0 0 0 1.5h11.5a.75.75 0 1 0 0-1.5H5.75ZM2 12.25c0-.41.34-.75.75-.75h12.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75ZM5.75 14a.75.75 0 0 0 0 1.5h11.5a.75.75 0 1 0 0-1.5H5.75Z\"]);\nexport const ReadingList20Regular = /*#__PURE__*/createFluentIcon('ReadingList20Regular', \"20\", [\"M3 6.25a1.25 1.25 0 0 1 2.3-.7.5.5 0 1 0 .82-.55 2.25 2.25 0 1 0-1.74 3.5H15.5a.5.5 0 0 0 0-1H4.38a.5.5 0 0 0-.06 0A1.25 1.25 0 0 1 3 6.25ZM8.5 5a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm-3 5a.5.5 0 0 0 0 1h12a.5.5 0 0 0 0-1h-12ZM2 13c0-.28.22-.5.5-.5h12a.5.5 0 0 1 0 1h-12A.5.5 0 0 1 2 13Zm3.5 2a.5.5 0 0 0 0 1h12a.5.5 0 1 0 0-1h-12Z\"]);\nexport const ReadingList24Filled = /*#__PURE__*/createFluentIcon('ReadingList24Filled', \"24\", [\"M20 18a1 1 0 0 1 .12 2H7a1 1 0 0 1-.12-2H20Zm-3-3a1 1 0 0 1 .12 2H4a1 1 0 0 1-.12-2H17Zm3-3a1 1 0 0 1 .12 2H7a1 1 0 0 1-.12-2H20ZM6 5a3 3 0 0 1 2.78 1.87 1 1 0 0 1-1.8.86l-.05-.1A1 1 0 1 0 6 9h11.5a1 1 0 0 1 .12 2H6a3 3 0 0 1 0-6Zm14 1a1 1 0 0 1 .12 2H11a1 1 0 0 1-.12-2H20Z\"]);\nexport const ReadingList24Regular = /*#__PURE__*/createFluentIcon('ReadingList24Regular', \"24\", [\"M7 18h13a.75.75 0 0 1 .1 1.5H7a.75.75 0 0 1-.1-1.5H7Zm10-3a.75.75 0 0 1 .1 1.5H4a.75.75 0 0 1-.1-1.5H17Zm3-3a.75.75 0 0 1 .1 1.5H7a.75.75 0 0 1-.1-1.5H20ZM6 5c1.13 0 2.13.69 2.55 1.72a.75.75 0 0 1-1.35.65l-.04-.09A1.25 1.25 0 1 0 6 9h11.5a.75.75 0 0 1 .1 1.5H6A2.75 2.75 0 0 1 6 5Zm14 1a.75.75 0 0 1 .1 1.5H11a.75.75 0 0 1-.1-1.5H20Z\"]);\nexport const ReadingList28Filled = /*#__PURE__*/createFluentIcon('ReadingList28Filled', \"28\", [\"M4 7.5a1.5 1.5 0 0 1 2.75-.83A1 1 0 0 0 8.4 5.56 3.5 3.5 0 1 0 5.48 11H21a1 1 0 1 0 0-2H5.5A1.5 1.5 0 0 1 4 7.5ZM12 5a1 1 0 1 0 0 2h13a1 1 0 1 0 0-2H12Zm-5 8a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H7Zm-5 5a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm5 3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H7Z\"]);\nexport const ReadingList28Regular = /*#__PURE__*/createFluentIcon('ReadingList28Regular', \"28\", [\"M3.5 7.51a1.98 1.98 0 0 1 3.63-1.1.75.75 0 1 0 1.25-.83 3.48 3.48 0 1 0-2.94 5.4c.05.02.1.02.14.02h15.67a.75.75 0 0 0 0-1.5H5.62a.75.75 0 0 0-.14-.01c-1.1 0-1.98-.89-1.98-1.98ZM11.75 6a.75.75 0 0 0 0 1.5h13.5a.75.75 0 0 0 0-1.5h-13.5Zm-5 7.25a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H6.75ZM2 17.75c0-.41.33-.75.75-.75h18.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm4.74 2.75a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H6.74Z\"]);\nexport const ReadingListAdd16Filled = /*#__PURE__*/createFluentIcon('ReadingListAdd16Filled', \"16\", [\"M3.5 3.88a.61.61 0 0 1 1.13-.34.75.75 0 0 0 1.24-.83 2.11 2.11 0 1 0-2.09 3.26c.07.02.15.03.22.03h3.34a5.47 5.47 0 0 1 4.72-.78.75.75 0 0 0-.75-.72H4.11a.61.61 0 0 1-.61-.62ZM4.75 7h1.5a5.5 5.5 0 0 0-.88 1.5h-.62a.75.75 0 0 1 0-1.5Zm-2 2.5h2.34a5.53 5.53 0 0 0-.07 1.5H2.75a.75.75 0 0 1 0-1.5Zm2 2.5h.46c.15.54.38 1.04.68 1.5H4.75a.75.75 0 0 1 0-1.5Zm3-10a.75.75 0 1 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM15 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 1 0 1 0V11h1.5a.5.5 0 0 0 0-1H11V8.5Z\"]);\nexport const ReadingListAdd16Regular = /*#__PURE__*/createFluentIcon('ReadingListAdd16Regular', \"16\", [\"M3 4a1 1 0 0 1 1.84-.56.5.5 0 1 0 .83-.55A2 2 0 1 0 4.07 6h3.27c.89-.63 1.98-1 3.15-1H4.08a.5.5 0 0 0-.04 0A1 1 0 0 1 3 4Zm.5 3h2.76c-.26.3-.48.64-.66 1H3.5a.5.5 0 1 1 0-1Zm-1 2h2.7c-.08.32-.15.66-.18 1H2.5a.5.5 0 0 1 0-1Zm1 2h1.52c.03.34.1.68.19 1H3.5a.5.5 0 0 1 0-1Zm4-8a.5.5 0 0 0 0 1h6a.5.5 0 1 0 0-1h-6Zm7.5 7.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 1 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 1 0 0-1H11V8.5Z\"]);\nexport const ReadingListAdd20Filled = /*#__PURE__*/createFluentIcon('ReadingListAdd20Filled', \"20\", [\"M3.5 5.5a1 1 0 0 1 1.84-.56.75.75 0 0 0 1.24-.83A2.5 2.5 0 1 0 4.6 8h10.67a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1ZM9.75 4a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm-4 5a.75.75 0 0 0 0 1.5h4.98A5.48 5.48 0 0 1 14.5 9H5.75Zm-3 2.5h7.14c-.3.46-.53.96-.68 1.5H2.75a.75.75 0 0 1 0-1.5Zm3 2.5h3.27a5.57 5.57 0 0 0 .07 1.5H5.75a.75.75 0 0 1 0-1.5Zm13.25.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const ReadingListAdd20Regular = /*#__PURE__*/createFluentIcon('ReadingListAdd20Regular', \"20\", [\"M3 5.25a1.25 1.25 0 0 1 2.3-.7.5.5 0 1 0 .82-.55 2.25 2.25 0 1 0-1.74 3.5H15.5a.5.5 0 0 0 0-1H4.38a.5.5 0 0 0-.06 0A1.25 1.25 0 0 1 3 5.25ZM8.5 4a.5.5 0 0 0 0 1h9a.5.5 0 0 0 0-1h-9Zm-3 5a.5.5 0 0 0 0 1h5.84c.9-.63 1.98-1 3.16-1h-9Zm-3 2.5h7.39c-.2.31-.38.65-.52 1H2.5a.5.5 0 0 1 0-1Zm3 2.5h3.52a5.57 5.57 0 0 0 0 1H5.5a.5.5 0 0 1 0-1Zm13.5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ReadingListAdd24Filled = /*#__PURE__*/createFluentIcon('ReadingListAdd24Filled', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H17v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09Zm-6.48 4c.05.7.22 1.38.48 2H7a1 1 0 0 1-.12-2h4.14Zm.48-3c-.26.62-.43 1.3-.48 2H4a1 1 0 0 1-.12-2h7.62Zm2.54-3c-.81.51-1.5 1.2-2.02 2H7a1 1 0 0 1-.12-2h7.16ZM6 5a3 3 0 0 1 2.78 1.87 1 1 0 0 1-1.8.86l-.05-.1A1 1 0 1 0 6 9h11.5a1 1 0 0 1 .12 2H6a3 3 0 0 1 0-6Zm14 1a1 1 0 0 1 .12 2H11a1 1 0 0 1-.12-2H20Z\"]);\nexport const ReadingListAdd24Regular = /*#__PURE__*/createFluentIcon('ReadingListAdd24Regular', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H17v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09Zm-6.48 4c.04.52.14 1.02.3 1.5H7a.75.75 0 0 1-.1-1.5H11.02Zm.48-3c-.2.47-.34.98-.42 1.5H4a.75.75 0 0 1-.1-1.5h7.6Zm2.54-3c-.64.4-1.2.91-1.66 1.5H7a.75.75 0 0 1-.1-1.5h7.14ZM6 5c1.13 0 2.13.69 2.55 1.72a.75.75 0 0 1-1.35.65l-.04-.09A1.25 1.25 0 1 0 6 9h11.5a.75.75 0 0 1 .1 1.5H6A2.75 2.75 0 0 1 6 5Zm14 1a.75.75 0 0 1 .1 1.5H11a.75.75 0 0 1-.1-1.5H20Z\"]);\nexport const ReadingListAdd28Filled = /*#__PURE__*/createFluentIcon('ReadingListAdd28Filled', \"28\", [\"M4 7.5a1.5 1.5 0 0 1 2.75-.83A1 1 0 0 0 8.4 5.56 3.5 3.5 0 1 0 5.46 11H21a1 1 0 1 0 0-2H5.5A1.5 1.5 0 0 1 4 7.5ZM12 5a1 1 0 1 0 0 2h13a1 1 0 1 0 0-2H12Zm-5 8a1 1 0 1 0 0 2h8.4a7.47 7.47 0 0 1 5.06-2H7Zm-4 4h10.87c-.33.62-.58 1.3-.72 2H3a1 1 0 1 1 0-2Zm4 4h6.02c.04.7.18 1.37.4 2H7a1 1 0 1 1 0-2Zm20-.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H21v-3.5Z\"]);\nexport const ReadingListAdd28Regular = /*#__PURE__*/createFluentIcon('ReadingListAdd28Regular', \"28\", [\"M3.5 7.51a1.98 1.98 0 0 1 3.63-1.1.75.75 0 1 0 1.25-.83 3.48 3.48 0 1 0-2.93 5.4c.04.02.08.02.13.02h15.67a.75.75 0 1 0 0-1.5H5.62a.75.75 0 0 0-.14-.01C4.4 9.49 3.5 8.6 3.5 7.5ZM11.75 6a.75.75 0 0 0 0 1.5h13.5a.75.75 0 0 0 0-1.5h-13.5Zm-5 7.25a.75.75 0 0 0 0 1.5h8.93a7.48 7.48 0 0 1 2.9-1.5H6.74Zm-4 3.75h11.11c-.24.47-.45.97-.59 1.5H2.75a.75.75 0 1 1 0-1.5Zm4 3.5H13c0 .51.05 1.02.15 1.5h-6.4a.75.75 0 1 1 0-1.5Zm20.25 0a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 1 0 0 1H20v3.5a.5.5 0 1 0 1 0V21h3.5a.5.5 0 1 0 0-1H21v-3.5Z\"]);\nexport const ReadingModeMobile20Filled = /*#__PURE__*/createFluentIcon('ReadingModeMobile20Filled', \"20\", [\"M4 3.5C4 2.67 4.67 2 5.5 2h9c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5v-13Zm2 3c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5ZM6.5 8a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM6 10.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const ReadingModeMobile20Regular = /*#__PURE__*/createFluentIcon('ReadingModeMobile20Regular', \"20\", [\"M6.5 6a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7ZM6 8.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM4 3.5C4 2.67 4.67 2 5.5 2h9c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 16.5v-13ZM5.5 3a.5.5 0 0 0-.5.5v13c0 .28.22.5.5.5h9a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5h-9Z\"]);\nexport const ReadingModeMobile24Filled = /*#__PURE__*/createFluentIcon('ReadingModeMobile24Filled', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.19.93-2.16 2.1-2.24h11.65Zm-5.5 11h-4.6a.75.75 0 0 0 0 1.5H12.35a.75.75 0 0 0 0-1.5h-.1Zm4-3h-8.6a.75.75 0 0 0 0 1.5h8.7a.75.75 0 0 0 0-1.5h-.1Zm0-3h-8.6a.75.75 0 0 0 0 1.5h8.7a.75.75 0 0 0 0-1.5h-.1Z\"]);\nexport const ReadingModeMobile24Regular = /*#__PURE__*/createFluentIcon('ReadingModeMobile24Regular', \"24\", [\"M17.75 2c1.2 0 2.17.93 2.24 2.1l.01.15v15.5c0 1.19-.93 2.16-2.1 2.24H6.25c-1.2 0-2.17-.92-2.24-2.09L4 19.75V4.25c0-1.19.93-2.16 2.1-2.24h11.65Zm0 1.5H6.25c-.38 0-.7.28-.74.65l-.01.1v15.5c0 .38.28.7.65.74h11.6c.38 0 .7-.27.74-.64l.01-.1V4.25c0-.38-.28-.7-.65-.74h-.1Zm-5.5 9.5a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.1-1.5h4.6Zm4-3a.75.75 0 0 1 .1 1.5h-8.6a.75.75 0 0 1-.1-1.5h8.6Zm0-3a.75.75 0 0 1 .1 1.5h-8.6a.75.75 0 0 1-.1-1.5h8.6Z\"]);\nexport const RealEstate20Filled = /*#__PURE__*/createFluentIcon('RealEstate20Filled', \"20\", [\"M2 3a1 1 0 0 1 2 0h13a1 1 0 1 1 0 2H4v12.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5V3Zm3 3.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 5 13.5v-7Zm3 7c0 .28.22.5.5.5h1a.5.5 0 0 0 .5-.5v-1c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v1c0 .28.22.5.5.5h1a.5.5 0 0 0 .5-.5v-2.55a1 1 0 0 0-.34-.75l-2.33-2.07a.5.5 0 0 0-.66 0L8.34 10.2a1 1 0 0 0-.34.75v2.55Z\"]);\nexport const RealEstate20Regular = /*#__PURE__*/createFluentIcon('RealEstate20Regular', \"20\", [\"M2 3.5A1.5 1.5 0 0 1 4.91 3H16.5a1.5 1.5 0 0 1 .5 2.92V13a3 3 0 0 1-3 3H7c-.77 0-1.47-.29-2-.76v2.01c0 .41-.34.75-.75.75h-1.5a.75.75 0 0 1-.75-.75V3.5ZM16 13V6H5v7c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2ZM4 5h12.5a.5.5 0 0 0 0-1H4v-.5a.5.5 0 0 0-1 0V17h1V5Zm3.5 4.95v2.56c0 .27.22.5.5.5h1a.5.5 0 0 0 .5-.5v-1c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v1c0 .27.22.5.5.5h1a.5.5 0 0 0 .5-.5V9.95a1 1 0 0 0-.34-.74l-2.33-2.07a.5.5 0 0 0-.66 0L7.84 9.2a1 1 0 0 0-.34.74Z\"]);\nexport const RealEstate24Filled = /*#__PURE__*/createFluentIcon('RealEstate24Filled', \"24\", [\"M2 21.5V3a1 1 0 0 1 2 0v.96h16.98a1.02 1.02 0 0 1 0 2.04H4v15.5a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5Zm3-14c0-.28.22-.5.5-.5h14c.28 0 .5.22.5.5v7.75A3.75 3.75 0 0 1 16.25 19h-7.5A3.75 3.75 0 0 1 5 15.25V7.5Zm4.35 4.2a1 1 0 0 0-.35.76v3.04c0 .28.22.5.5.5h1.75c.14 0 .25-.11.25-.25V14.5c0-.28.22-.5.5-.5h1c.28 0 .5.22.5.5v1.25c0 .14.11.25.25.25h1.75a.5.5 0 0 0 .5-.5v-3.04a1 1 0 0 0-.35-.76l-2.82-2.42a.5.5 0 0 0-.66 0L9.35 11.7Z\"]);\nexport const RealEstate24Regular = /*#__PURE__*/createFluentIcon('RealEstate24Regular', \"24\", [\"M3.5 4.25V20.5H5v-14h14.73a.77.77 0 0 0 0-1.54H5V4.2a.7.7 0 0 0-.7-.71h-.05a.75.75 0 0 0-.75.75ZM22 5.73c0 .78-.4 1.47-1 1.88v7.64A3.75 3.75 0 0 1 17.25 19h-8.5c-.84 0-1.62-.28-2.25-.75v2.5c0 .69-.56 1.25-1.25 1.25h-2C2.56 22 2 21.44 2 20.75V4.25C2 3.01 3 2 4.25 2h.04c.96 0 1.77.6 2.08 1.46h13.36A2.27 2.27 0 0 1 22 5.73ZM6.5 8v7.25c0 1.24 1 2.25 2.25 2.25h8.5c1.24 0 2.25-1 2.25-2.25V8h-13Zm3 4.46a1 1 0 0 1 .35-.76l2.82-2.42a.5.5 0 0 1 .66 0l2.82 2.42a1 1 0 0 1 .35.76v3.04a.5.5 0 0 1-.5.5h-1.75a.25.25 0 0 1-.25-.25V14.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.25c0 .14-.11.25-.25.25H10a.5.5 0 0 1-.5-.5v-3.04Z\"]);\nexport const Receipt16Filled = /*#__PURE__*/createFluentIcon('Receipt16Filled', \"16\", [\"M2 3.75C2 2.78 2.78 2 3.75 2h5.5c.97 0 1.75.78 1.75 1.75V10h3v1.5a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5V3.75ZM11 13h.5c.83 0 1.5-.67 1.5-1.5V11h-2v2ZM4.5 5.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H5a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1H5Zm-.5 3c0 .28.22.5.5.5h1.5a.5.5 0 0 0 0-1H5a.5.5 0 0 0-.5.5Z\"]);\nexport const Receipt16Regular = /*#__PURE__*/createFluentIcon('Receipt16Regular', \"16\", [\"M3.75 2C2.78 2 2 2.78 2 3.75v7.75A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5V10h-3V3.75C11 2.78 10.22 2 9.25 2h-5.5ZM11 11h2v.5c0 .83-.67 1.5-1.5 1.5H11v-2ZM3 3.75c0-.41.34-.75.75-.75h5.5c.41 0 .75.34.75.75V13H4.5A1.5 1.5 0 0 1 3 11.5V3.75ZM4.5 5.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Zm0 2.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Zm.5 2a.5.5 0 0 0 0 1h1.5a.5.5 0 0 0 0-1H5Z\"]);\nexport const Receipt20Filled = /*#__PURE__*/createFluentIcon('Receipt20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM6.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const Receipt20Regular = /*#__PURE__*/createFluentIcon('Receipt20Regular', \"20\", [\"M3 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5Zm11 8v3a2 2 0 0 0 2-2v-1h-2Zm-1 3V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9c0 1.1.9 2 2 2h7ZM6 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const Receipt24Filled = /*#__PURE__*/createFluentIcon('Receipt24Filled', \"24\", [\"M3 5.25C3 4.01 4 3 5.25 3h9.5C15.99 3 17 4 17 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V5.25ZM17 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H17v4ZM6.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM7.25 11a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0 .41.34.75.75.75h3a.75.75 0 0 0 0-1.5h-3a.75.75 0 0 0-.75.75Z\"]);\nexport const Receipt24Regular = /*#__PURE__*/createFluentIcon('Receipt24Regular', \"24\", [\"M3 5.25C3 4.01 4 3 5.25 3h9.5C15.99 3 17 4 17 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V5.25ZM17 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H17v4ZM5.25 4.5a.75.75 0 0 0-.75.75v12.5c0 .97.78 1.75 1.75 1.75h9.25V5.25a.75.75 0 0 0-.75-.75h-9.5Zm2 2.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM7.25 15a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z\"]);\nexport const Receipt28Filled = /*#__PURE__*/createFluentIcon('Receipt28Filled', \"28\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h11.5A2.75 2.75 0 0 1 20 5.75V17h5v4.25A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V5.75ZM20 23.5h1.25c1.24 0 2.25-1 2.25-2.25V18.5H20v5ZM7 8.75c0 .41.34.75.75.75h7.5a.75.75 0 0 0 0-1.5h-7.5a.75.75 0 0 0-.75.75ZM7.75 13a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM7 18.75c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5h-3.5a.75.75 0 0 0-.75.75Z\"]);\nexport const Receipt28Regular = /*#__PURE__*/createFluentIcon('Receipt28Regular', \"28\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h11.5A2.75 2.75 0 0 1 20 5.75V17h5v4.25A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V5.75ZM20 23.5h1.25c1.24 0 2.25-1 2.25-2.25V18.5H20v5ZM5.75 4.5c-.69 0-1.25.56-1.25 1.25v15.5c0 1.24 1 2.25 2.25 2.25H18.5V5.75c0-.69-.56-1.25-1.25-1.25H5.75Zm2 3.5a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM7 13.75c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75ZM7.75 18a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\"]);\nexport const Receipt32Filled = /*#__PURE__*/createFluentIcon('Receipt32Filled', \"32\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h13.5C21.55 3 23 4.46 23 6.25V19h6v5.5a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5V6.25ZM23 27h1.5a2.5 2.5 0 0 0 2.5-2.5V21h-4v6ZM8 10a1 1 0 0 0 1 1h8a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1Zm1 5a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H9Zm-1 7a1 1 0 0 0 1 1h4a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1Z\"]);\nexport const Receipt32Regular = /*#__PURE__*/createFluentIcon('Receipt32Regular', \"32\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h13.5C21.55 3 23 4.46 23 6.25V19h6v5.5a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5V6.25ZM23 27h1.5a2.5 2.5 0 0 0 2.5-2.5V21h-4v6ZM6.25 5C5.56 5 5 5.56 5 6.25V24.5A2.5 2.5 0 0 0 7.5 27H21V6.25C21 5.56 20.44 5 19.75 5H6.25ZM9 9a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H9Zm-1 7a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H9Z\"]);\nexport const ReceiptAdd20Filled = /*#__PURE__*/createFluentIcon('ReceiptAdd20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6a5.48 5.48 0 0 0-1.74-7h2.84a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.42.23A5.5 5.5 0 0 0 4 9.21V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ReceiptAdd20Regular = /*#__PURE__*/createFluentIcon('ReceiptAdd20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6c.16-.32.3-.65.4-1H14V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4.02c-.34.03-.68.1-1 .19V5Zm7.5 5H8.66a5.48 5.48 0 0 0-1.58-.77A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1Zm3.5 6a2 2 0 0 0 2-2v-1h-2v3ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ReceiptAdd24Filled = /*#__PURE__*/createFluentIcon('ReceiptAdd24Filled', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-6.77a6.47 6.47 0 0 0-1.33-8.5h3.1a.75.75 0 0 0 0-1.5h-5.5c-.16 0-.3.05-.43.13A6.53 6.53 0 0 0 4 11.5V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM12 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 18v2.5a.5.5 0 1 1-1 0V18H3.5a.5.5 0 0 1 0-1H6v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H7Z\"]);\nexport const ReceiptAdd24Regular = /*#__PURE__*/createFluentIcon('ReceiptAdd24Regular', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-6.77c.3-.46.53-.97.7-1.5h3.82V5.25a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v5.83c-.52.08-1.03.22-1.5.42V5.25Zm9.75 7.25h-3.1a6.48 6.48 0 0 0-2.83-1.37.75.75 0 0 1 .43-.13h5.5a.75.75 0 0 1 0 1.5Zm4.25 7h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM8.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM12 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 18v2.5a.5.5 0 1 1-1 0V18H3.5a.5.5 0 0 1 0-1H6v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H7Z\"]);\nexport const ReceiptBag20Filled = /*#__PURE__*/createFluentIcon('ReceiptBag20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-5v-4.5c0-.65-.42-1.2-1-1.41V11a3 3 0 0 0-.17-1h2.67a.5.5 0 0 0 0-1H8.24A3 3 0 0 0 5 8.17 3 3 0 0 0 4 8V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM4 9a2 2 0 0 1 1 .27A2 2 0 0 1 8 11v1h.5c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4.5c0-.28.22-.5.5-.5H2v-1c0-1.1.9-2 2-2Zm1 3v-1a1 1 0 1 0-2 0v1h2Zm.75-1.97A2 2 0 0 1 6 11v1h1v-1a1 1 0 0 0-1.25-.97Z\"]);\nexport const ReceiptBag20Regular = /*#__PURE__*/createFluentIcon('ReceiptBag20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-5v-1h4V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3.17A3 3 0 0 0 4 8V5Zm7.5 5H8.83a3 3 0 0 0-.6-1h3.27a.5.5 0 0 1 0 1Zm3.5 3v3a2 2 0 0 0 2-2v-1h-2ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM4 9a2 2 0 0 1 1 .27A2 2 0 0 1 8 11v1h.5c.28 0 .5.22.5.5V17a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4.5c0-.28.22-.5.5-.5H2v-1c0-1.1.9-2 2-2Zm1 3v-1a1 1 0 1 0-2 0v1h2Zm.75-1.97A2 2 0 0 1 6 11v1h1v-1a1 1 0 0 0-1.25-.97Z\"]);\nexport const ReceiptBag24Filled = /*#__PURE__*/createFluentIcon('ReceiptBag24Filled', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-7.26l.01-.25v-6c0-.7-.4-1.3-1-1.58V13c0-.17-.01-.34-.04-.5h3.29a.75.75 0 0 0 0-1.5H9.87a3.5 3.5 0 0 0-4.12-1.27A3.5 3.5 0 0 0 4 9.53V5.26ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75Zm-6.5 7c0-.41.34-.75.75-.75H2v-1a2.5 2.5 0 0 1 3.75-2.17A2.5 2.5 0 0 1 9.5 13v1h.25c.41 0 .75.34.75.75v6c0 1.24-1 2.25-2.25 2.25h-5C2.01 23 1 22 1 20.75v-6ZM7 13v1h1v-1a1 1 0 0 0-1.2-.98c.13.3.2.63.2.98Zm-1.5 1v-1a1 1 0 0 0-2 0v1h2Z\"]);\nexport const ReceiptBag24Regular = /*#__PURE__*/createFluentIcon('ReceiptBag24Regular', \"24\", [\"M6.25 3C5.01 3 4 4 4 5.25v4.29a3.53 3.53 0 0 1 1.5.1V5.26c0-.41.34-.75.75-.75h9.5c.41 0 .75.34.75.75V19.5h-5V21h7.25c1.8 0 3.25-1.46 3.25-3.25V14h-4V5.25C18 4.01 17 3 15.75 3h-9.5Zm4.21 9.5h3.29a.75.75 0 0 0 0-1.5H9.87c.3.44.52.95.6 1.5Zm8.29 7H18v-4h2.5v2.25c0 .97-.78 1.75-1.75 1.75ZM7.5 7.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm-6.5 7c0-.41.34-.75.75-.75H2v-1a2.5 2.5 0 0 1 3.75-2.17A2.5 2.5 0 0 1 9.5 13v1h.25c.41 0 .75.34.75.75v6c0 1.24-1 2.25-2.25 2.25h-5C2.01 23 1 22 1 20.75v-6ZM7 13v1h1v-1a1 1 0 0 0-1.2-.98c.13.3.2.63.2.98Zm-1.5 1v-1a1 1 0 0 0-2 0v1h2Z\"]);\nexport const ReceiptCube20Filled = /*#__PURE__*/createFluentIcon('ReceiptCube20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H9.94a2 2 0 0 0 .06-.5v-4a2 2 0 0 0-1.1-1.79L7.46 10a.5.5 0 0 0 .03 0h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.38.82l-1.23-.6a2 2 0 0 0-1.78 0L4 9.25V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm.95 5.6-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const ReceiptCube20Regular = /*#__PURE__*/createFluentIcon('ReceiptCube20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3H9.94a2 2 0 0 0 .06-.5V16h4V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4a2 2 0 0 0-.9.21l-.1.05V5Zm3.5 5a.5.5 0 0 1-.03 0l-.35-.18A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1h-4Zm7.5 3v3a2 2 0 0 0 2-2v-1h-2ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm1.45 5.1-3-1.5a1 1 0 0 0-.9 0l-3 1.5a1 1 0 0 0-.55.9v4a1 1 0 0 0 .55.9l3 1.5a1 1 0 0 0 .9 0l3-1.5a1 1 0 0 0 .55-.9v-4a1 1 0 0 0-.55-.9Zm-6.41 1.13a.5.5 0 0 1 .66-.26l2.3.99 2.3-1a.5.5 0 0 1 .4.93l-2.2.94V17a.5.5 0 1 1-1 0v-2.67l-2.2-.94a.5.5 0 0 1-.26-.66Z\"]);\nexport const ReceiptCube24Filled = /*#__PURE__*/createFluentIcon('ReceiptCube24Filled', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-7.08c.21-.37.33-.8.33-1.25v-4.5a2.5 2.5 0 0 0-1.38-2.24l-1.03-.51h4.16a.75.75 0 0 0 0-1.5h-5.5c-.32 0-.6.2-.7.48l-.43-.22a2.5 2.5 0 0 0-2.24 0L4 11.7V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75Zm2.67 6.16-3.5-1.75a1.5 1.5 0 0 0-1.34 0l-3.5 1.75c-.5.25-.83.77-.83 1.34v4.5c0 .57.32 1.09.83 1.34l3.5 1.75c.42.22.92.22 1.34 0l3.5-1.75c.5-.25.83-.77.83-1.34v-4.5a1.5 1.5 0 0 0-.83-1.34Zm-7.62 1.37a.5.5 0 0 1 .67-.23L6 16.45l2.78-1.4a.5.5 0 1 1 .44.9L6.5 17.3v3.19a.5.5 0 1 1-1 0v-3.2l-2.72-1.35a.5.5 0 0 1-.23-.67Z\"]);\nexport const ReceiptCube24Regular = /*#__PURE__*/createFluentIcon('ReceiptCube24Regular', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-7.08c.21-.37.33-.8.33-1.25v-.25h4.5V5.25a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v5.8a2.5 2.5 0 0 0-.62.21L4 11.7V5.25Zm9.75 7.25H9.59l-2.04-1.02c.1-.28.38-.48.7-.48h5.5a.75.75 0 0 1 0 1.5Zm4.25 7h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM8.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm1.92 6.9-3.5-1.74a1.5 1.5 0 0 0-1.34 0l-3.5 1.75c-.5.25-.83.77-.83 1.34v4.5c0 .57.32 1.09.83 1.34l3.5 1.75c.42.22.92.22 1.34 0l3.5-1.75c.5-.25.83-.77.83-1.34v-4.5a1.5 1.5 0 0 0-.83-1.34Zm-7.62 1.38a.5.5 0 0 1 .67-.23L6 16.45l2.78-1.4a.5.5 0 1 1 .44.9L6.5 17.3v3.19a.5.5 0 1 1-1 0v-3.2l-2.72-1.35a.5.5 0 0 1-.23-.67Z\"]);\nexport const ReceiptMoney16Filled = /*#__PURE__*/createFluentIcon('ReceiptMoney16Filled', \"16\", [\"M3 3.75C3 2.78 3.78 2 4.75 2h5.5c.97 0 1.75.78 1.75 1.75V10h3v1.5a2.5 2.5 0 0 1-2.5 2.5h-1.55c.03-.16.05-.33.05-.5v-3a2.5 2.5 0 0 0-1.54-2.3.5.5 0 0 0-.46-.7H6a.5.5 0 0 0-.5.5H3V3.75ZM12 13h.5c.83 0 1.5-.67 1.5-1.5V11h-2v2ZM5.5 5.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H6a.5.5 0 0 0-.5.5Zm4.5 5C10 9.67 9.33 9 8.5 9h-6C1.67 9 1 9.67 1 10.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 10c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 10h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 12a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptMoney16Regular = /*#__PURE__*/createFluentIcon('ReceiptMoney16Regular', \"16\", [\"M4.75 2C3.78 2 3 2.78 3 3.75V8h1V3.75c0-.41.34-.75.75-.75h5.5c.41 0 .75.34.75.75v9.75c0 .17-.02.34-.05.5h1.55a2.5 2.5 0 0 0 2.5-2.5V10h-3V3.75C12 2.78 11.22 2 10.25 2h-5.5ZM8.5 8c.34 0 .67.07.96.2A.5.5 0 0 0 9 7.5H6a.5.5 0 0 0-.5.5h3Zm3.5 3h2v.5c0 .83-.67 1.5-1.5 1.5H12v-2ZM5.5 5.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5Zm4.5 5C10 9.67 9.33 9 8.5 9h-6C1.67 9 1 9.67 1 10.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 10c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 10h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 12a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptMoney20Filled = /*#__PURE__*/createFluentIcon('ReceiptMoney20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.05c.03-.16.05-.33.05-.5v-3A2.5 2.5 0 0 0 8.5 11H4V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 4.5c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 13c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 13h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 15a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptMoney20Regular = /*#__PURE__*/createFluentIcon('ReceiptMoney20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.05c.03-.16.05-.33.05-.5V16h3V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v6H4V5Zm13 8h-2v3a2 2 0 0 0 2-2v-1ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 4c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-3Zm-1 2v1a.5.5 0 0 0-.5.5h-1c0-.83.67-1.5 1.5-1.5ZM8.5 13c0 .28.22.5.5.5v1A1.5 1.5 0 0 1 7.5 13h1Zm-6.5.5a.5.5 0 0 0 .5-.5h1c0 .83-.67 1.5-1.5 1.5v-1Zm.5 3.5a.5.5 0 0 0-.5-.5v-1c.83 0 1.5.67 1.5 1.5h-1ZM4 15a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z\"]);\nexport const ReceiptMoney24Filled = /*#__PURE__*/createFluentIcon('ReceiptMoney24Filled', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-5.8c.03-.16.05-.33.05-.5v-4a2.5 2.5 0 0 0-2.5-2.5H4V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM8.25 11a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM2.5 15c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-8Zm7.5 1a1 1 0 0 0 1 1v1a2 2 0 0 1-2-2h1Zm-1 5c0-1.1.9-2 2-2v1a1 1 0 0 0-1 1H9Zm-7-4a1 1 0 0 0 1-1h1a2 2 0 0 1-2 2v-1Zm0 2a2 2 0 0 1 2 2H3a1 1 0 0 0-1-1v-1Zm4.5-2.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Z\"]);\nexport const ReceiptMoney24Regular = /*#__PURE__*/createFluentIcon('ReceiptMoney24Regular', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-5.8c.03-.16.05-.33.05-.5v-1h3.5V5.25a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75V14H4V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM8.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM2.5 15c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h8c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-8Zm7.5 1a1 1 0 0 0 1 1v1a2 2 0 0 1-2-2h1Zm-1 5c0-1.1.9-2 2-2v1a1 1 0 0 0-1 1H9Zm-7-4a1 1 0 0 0 1-1h1a2 2 0 0 1-2 2v-1Zm0 2a2 2 0 0 1 2 2H3a1 1 0 0 0-1-1v-1Zm4.5-2.25a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5Z\"]);\nexport const ReceiptPlay20Filled = /*#__PURE__*/createFluentIcon('ReceiptPlay20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6a5.48 5.48 0 0 0-1.74-7h2.84a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.42.23A5.5 5.5 0 0 0 4 9.21V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm2.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM4 16c0 .38.42.62.76.42l2.5-1.5a.5.5 0 0 0 0-.85l-2.5-1.5A.5.5 0 0 0 4 13v3Z\"]);\nexport const ReceiptPlay20Regular = /*#__PURE__*/createFluentIcon('ReceiptPlay20Regular', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-4.6c.16-.32.3-.65.4-1H14V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v4.02c-.34.03-.68.1-1 .19V5Zm7.5 5H8.66a5.48 5.48 0 0 0-1.58-.77A.5.5 0 0 1 7.5 9h4a.5.5 0 0 1 0 1Zm3.5 6a2 2 0 0 0 2-2v-1h-2v3ZM7 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm3 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM4 16c0 .38.42.62.76.42l2.5-1.5a.5.5 0 0 0 0-.85l-2.5-1.5A.5.5 0 0 0 4 13v3Z\"]);\nexport const ReceiptPlay24Filled = /*#__PURE__*/createFluentIcon('ReceiptPlay24Filled', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-6.77a6.47 6.47 0 0 0-1.33-8.5h3.1a.75.75 0 0 0 0-1.5h-5.5c-.16 0-.3.05-.43.13A6.53 6.53 0 0 0 4 11.5V5.25ZM18 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM7.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7 2c0 .4.44.64.78.42l3-2a.5.5 0 0 0 0-.84l-3-2a.5.5 0 0 0-.78.42v4Z\"]);\nexport const ReceiptPlay24Regular = /*#__PURE__*/createFluentIcon('ReceiptPlay24Regular', \"24\", [\"M4 5.25C4 4.01 5 3 6.25 3h9.5C16.99 3 18 4 18 5.25V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25h-6.77c.3-.46.53-.97.7-1.5h3.82V5.25a.75.75 0 0 0-.75-.75h-9.5a.75.75 0 0 0-.75.75v5.83c-.52.08-1.03.22-1.5.42V5.25Zm9.75 7.25h-3.1a6.48 6.48 0 0 0-2.83-1.37.75.75 0 0 1 .43-.13h5.5a.75.75 0 0 1 0 1.5Zm4.25 7h.75c.97 0 1.75-.78 1.75-1.75V15.5H18v4ZM8.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7 2c0 .4.44.64.78.42l3-2a.5.5 0 0 0 0-.84l-3-2a.5.5 0 0 0-.78.42v4Z\"]);\nexport const ReceiptSearch20Filled = /*#__PURE__*/createFluentIcon('ReceiptSearch20Filled', \"20\", [\"M4 5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v7h3v2a3 3 0 0 1-3 3h-3.88l-1.56-1.56A4.48 4.48 0 0 0 8.33 10h3.17a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.45.28A4.5 4.5 0 0 0 4 9.26V5Zm11 11a2 2 0 0 0 2-2v-1h-2v3ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-2 11c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L8.3 15.6A3.5 3.5 0 1 0 5.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ReceiptSearch20Regular = /*#__PURE__*/createFluentIcon('ReceiptSearch20Regular', \"20\", [\"M6 3a2 2 0 0 0-2 2v4.26c.32-.12.65-.2 1-.23V5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v11h-3.88l1 1H15a3 3 0 0 0 3-3v-2h-3V5a2 2 0 0 0-2-2H6Zm2.33 7h3.17a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.45.28c.47.17.9.41 1.28.72ZM15 16v-3h2v1a2 2 0 0 1-2 2ZM7.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm-2 11c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L8.3 15.6A3.5 3.5 0 1 0 5.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ReceiptSparkles16Filled = /*#__PURE__*/createFluentIcon('ReceiptSparkles16Filled', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM13.5 12c-.19 0-.38-.04-.55-.12A1.5 1.5 0 0 1 11.5 13H11v-2h1.23l-.21-.65a.52.52 0 0 0-.14-.22.63.63 0 0 0-.2-.13H11v-.23l-.1-.03c-.28-.1-.5-.26-.66-.48a1.3 1.3 0 0 1-.12-1.3 1.32 1.32 0 0 1-.45-.22 1.51 1.51 0 0 1-.52-.69L8.8 5.96a1.27 1.27 0 0 0-.29-.47v.01A.5.5 0 0 1 8 6H5a.5.5 0 0 1 0-1h2.43l-.46-.15A1.41 1.41 0 0 1 6 3.5a1.4 1.4 0 0 1 .95-1.35L7.43 2H3.75C2.78 2 2 2.78 2 3.75v7.75A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.46-2.07c-.14.05-.3.07-.46.07ZM5 7.5h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1 0-1Zm-.5 3c0-.28.22-.5.5-.5h1.5a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Z\"]);\nexport const ReceiptSparkles16Regular = /*#__PURE__*/createFluentIcon('ReceiptSparkles16Regular', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM13.5 12c-.19 0-.38-.04-.55-.12A1.5 1.5 0 0 1 11.5 13H11v-2h1.23l-.21-.65a.52.52 0 0 0-.14-.22.63.63 0 0 0-.2-.13H11v-.23l-.1-.03c-.28-.1-.5-.26-.66-.48A1.27 1.27 0 0 1 10 8.5V13H4.5A1.5 1.5 0 0 1 3 11.5V3.75c0-.41.34-.75.75-.75h2.34a1.42 1.42 0 0 1 .86-.85L7.43 2H3.75C2.78 2 2 2.78 2 3.75v7.75A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.46-2.07c-.14.05-.3.07-.46.07ZM8.03 5.2l-.6-.2H5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5v-.01a1.3 1.3 0 0 0-.47-.3ZM4.5 8c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5Zm.5 2a.5.5 0 0 0 0 1h1.5a.5.5 0 0 0 0-1H5Z\"]);\nexport const ReceiptSparkles20Filled = /*#__PURE__*/createFluentIcon('ReceiptSparkles20Filled', \"20\", [\"M15.23 1.35 14.88.28a.42.42 0 0 0-.8 0l-.35 1.07a2.2 2.2 0 0 1-1.38 1.4l-1.07.35a.42.42 0 0 0 0 .8l1.07.34a2.2 2.2 0 0 1 1.4 1.4l.35 1.08a.42.42 0 0 0 .8 0l.35-1.07a2.2 2.2 0 0 1 1.4-1.4l1.07-.35a.42.42 0 0 0 0-.8h-.02l-1.08-.35a2.2 2.2 0 0 1-1.4-1.4Zm3.79 6.61.76.25h.02a.3.3 0 0 1 0 .58l-.77.25a1.58 1.58 0 0 0-1 1l-.24.76a.3.3 0 0 1-.58 0l-.24-.77a1.58 1.58 0 0 0-1-1l-.77-.25a.3.3 0 0 1 0-.57l.77-.25a1.58 1.58 0 0 0 .98-1l.25-.76a.3.3 0 0 1 .57 0l.25.77a1.57 1.57 0 0 0 1 1ZM14 8.5V12h2.5c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5c0-1.1.9-2 2-2h5.1c-.06.16-.1.33-.1.5a1.42 1.42 0 0 0 1 1.34l1.1.36a1 1 0 0 1 .4.23l.06.06c.11.1.2.24.26.38L13.15 7c.09.26.25.49.46.66.12.09.25.15.39.2v.21a1.3 1.3 0 0 0 0 .43Zm0 7.5a2 2 0 0 0 2-2v-1h-2v3ZM6.5 6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const ReceiptSparkles20Regular = /*#__PURE__*/createFluentIcon('ReceiptSparkles20Regular', \"20\", [\"M15.23 1.35 14.88.28a.42.42 0 0 0-.8 0l-.35 1.07a2.2 2.2 0 0 1-1.38 1.4l-1.07.35a.42.42 0 0 0 0 .8l1.07.34a2.2 2.2 0 0 1 1.4 1.4l.35 1.08a.42.42 0 0 0 .8 0l.35-1.07a2.2 2.2 0 0 1 1.4-1.4l1.07-.35a.42.42 0 0 0 0-.8h-.02l-1.08-.35a2.2 2.2 0 0 1-1.4-1.4Zm3.79 6.61.76.25h.02a.3.3 0 0 1 0 .58l-.77.25a1.58 1.58 0 0 0-1 1l-.24.76a.3.3 0 0 1-.58 0l-.24-.77a1.58 1.58 0 0 0-1-1l-.77-.25a.3.3 0 0 1 0-.57l.77-.25a1.58 1.58 0 0 0 .98-1l.25-.76a.3.3 0 0 1 .57 0l.25.77a1.57 1.57 0 0 0 1 1ZM14 8.5a1.3 1.3 0 0 1 0-.43v-.21c-.14-.05-.27-.11-.39-.2-.21-.17-.37-.4-.46-.66L13 6.49V16H6a2 2 0 0 1-2-2V5a1 1 0 0 1 1-1h5.1c-.06-.16-.1-.33-.1-.5 0-.17.04-.34.1-.5H5a2 2 0 0 0-2 2v9a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-1.5a.5.5 0 0 0-.5-.5H14V8.5Zm0 4.5h2v1a2 2 0 0 1-2 2v-3ZM6 6.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const ReceiptSparkles24Filled = /*#__PURE__*/createFluentIcon('ReceiptSparkles24Filled', \"24\", [\"M15.85 6.15c-.3-.32-.69-.55-1.1-.7l-1.39-.44a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.02 0l-.45-1.38c-.14-.42-.37-.8-.69-1.11Zm7.93 4.06-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM5.25 3h7.8c-.3.11-.58.3-.77.57a1.57 1.57 0 0 0 0 1.79c.17.28.42.5.72.64l1.4.46c.27.09.52.24.72.44l.18.1c.13.17.22.35.29.55L16 9c.1.3.3.58.57.77.13.1.28.16.43.2V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V5.25C3 4.01 4 3 5.25 3ZM17 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H17v4ZM6.5 7.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75ZM7.25 11a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0 .41.34.75.75.75h3a.75.75 0 0 0 0-1.5h-3a.75.75 0 0 0-.75.75Z\"]);\nexport const ReceiptSparkles24Regular = /*#__PURE__*/createFluentIcon('ReceiptSparkles24Regular', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM5.24 3h7.8c-.3.11-.58.3-.77.57a1.6 1.6 0 0 0-.28.93H5.25a.75.75 0 0 0-.75.75v12.5c0 .97.78 1.75 1.75 1.75h9.25V7.33l.09.22L16 9c.1.3.3.58.57.77.13.1.28.16.43.2V14h4v3.75c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V5.25C3 4.01 4 3 5.25 3ZM17 19.5h.75c.97 0 1.75-.78 1.75-1.75V15.5H17v4ZM7.25 7a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 4.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM7.25 15a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z\"]);\nexport const Record12Filled = /*#__PURE__*/createFluentIcon('Record12Filled', \"12\", [\"M6 11A5 5 0 1 0 6 1a5 5 0 0 0 0 10Zm0-2a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const Record12Regular = /*#__PURE__*/createFluentIcon('Record12Regular', \"12\", [\"M6 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm5-3A5 5 0 1 1 1 6a5 5 0 0 1 10 0Zm-1 0a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z\"]);\nexport const Record16Filled = /*#__PURE__*/createFluentIcon('Record16Filled', \"16\", [\"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7 4a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z\"]);\nexport const Record16Regular = /*#__PURE__*/createFluentIcon('Record16Regular', \"16\", [\"M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Z\"]);\nexport const Record20Filled = /*#__PURE__*/createFluentIcon('Record20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm8 4.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z\"]);\nexport const Record20Regular = /*#__PURE__*/createFluentIcon('Record20Regular', \"20\", [\"M10 14.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const Record24Filled = /*#__PURE__*/createFluentIcon('Record24Filled', \"24\", [\"M2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm10 6a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z\"]);\nexport const Record24Regular = /*#__PURE__*/createFluentIcon('Record24Regular', \"24\", [\"M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-16a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const Record28Filled = /*#__PURE__*/createFluentIcon('Record28Filled', \"28\", [\"M14 2a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm0 19.5a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15Z\"]);\nexport const Record28Regular = /*#__PURE__*/createFluentIcon('Record28Regular', \"28\", [\"M14 21.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15ZM14 2a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM3.5 14a10.5 10.5 0 1 1 21 0 10.5 10.5 0 0 1-21 0Z\"]);\nexport const Record32Filled = /*#__PURE__*/createFluentIcon('Record32Filled', \"32\", [\"M16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm0 23a9 9 0 1 1 0-18 9 9 0 0 1 0 18Z\"]);\nexport const Record32Regular = /*#__PURE__*/createFluentIcon('Record32Regular', \"32\", [\"M16 25a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm0-23a14 14 0 1 0 0 28 14 14 0 0 0 0-28ZM4 16a12 12 0 1 1 24 0 12 12 0 0 1-24 0Z\"]);\nexport const Record48Filled = /*#__PURE__*/createFluentIcon('Record48Filled', \"48\", [\"M24 4a20 20 0 1 0 0 40 20 20 0 0 0 0-40Zm0 33a13 13 0 1 1 0-26 13 13 0 0 1 0 26Z\"]);\nexport const Record48Regular = /*#__PURE__*/createFluentIcon('Record48Regular', \"48\", [\"M24 37a13 13 0 1 0 0-26 13 13 0 0 0 0 26Zm0-33a20 20 0 1 0 0 40 20 20 0 0 0 0-40ZM6.5 24a17.5 17.5 0 1 1 35 0 17.5 17.5 0 0 1-35 0Z\"]);\nexport const RecordStop12Filled = /*#__PURE__*/createFluentIcon('RecordStop12Filled', \"12\", [\"M6 11A5 5 0 1 0 6 1a5 5 0 0 0 0 10ZM5 4h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1Z\"]);\nexport const RecordStop12Regular = /*#__PURE__*/createFluentIcon('RecordStop12Regular', \"12\", [\"M5 4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Zm6 2A5 5 0 1 1 1 6a5 5 0 0 1 10 0Zm-1 0a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z\"]);\nexport const RecordStop16Filled = /*#__PURE__*/createFluentIcon('RecordStop16Filled', \"16\", [\"M1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm5-3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6Z\"]);\nexport const RecordStop16Regular = /*#__PURE__*/createFluentIcon('RecordStop16Regular', \"16\", [\"M6 5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6ZM1 8a7 7 0 1 1 14 0A7 7 0 0 1 1 8Zm7-6a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z\"]);\nexport const RecordStop20Filled = /*#__PURE__*/createFluentIcon('RecordStop20Filled', \"20\", [\"M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8 7h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1Z\"]);\nexport const RecordStop20Regular = /*#__PURE__*/createFluentIcon('RecordStop20Regular', \"20\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5-2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V8Z\"]);\nexport const RecordStop24Filled = /*#__PURE__*/createFluentIcon('RecordStop24Filled', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM9.5 8h5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 8 14.5v-5C8 8.67 8.67 8 9.5 8Z\"]);\nexport const RecordStop24Regular = /*#__PURE__*/createFluentIcon('RecordStop24Regular', \"24\", [\"M12 3.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17ZM2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm6-2.5C8 8.67 8.67 8 9.5 8h5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 8 14.5v-5Z\"]);\nexport const RecordStop28Filled = /*#__PURE__*/createFluentIcon('RecordStop28Filled', \"28\", [\"M14 26a12 12 0 1 0 0-24 12 12 0 0 0 0 24ZM10.5 9h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 9 17.5v-7c0-.83.67-1.5 1.5-1.5Z\"]);\nexport const RecordStop28Regular = /*#__PURE__*/createFluentIcon('RecordStop28Regular', \"28\", [\"M14 3.5a10.5 10.5 0 1 0 0 21 10.5 10.5 0 0 0 0-21ZM2 14a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm7-3.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 9 17.5v-7Z\"]);\nexport const RecordStop32Filled = /*#__PURE__*/createFluentIcon('RecordStop32Filled', \"32\", [\"M2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0Zm10-6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-8Z\"]);\nexport const RecordStop32Regular = /*#__PURE__*/createFluentIcon('RecordStop32Regular', \"32\", [\"M16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24ZM2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0Zm8-4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8Z\"]);\nexport const RecordStop48Filled = /*#__PURE__*/createFluentIcon('RecordStop48Filled', \"48\", [\"M44 24a20 20 0 1 1-40 0 20 20 0 0 1 40 0Zm-27-9a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V17a2 2 0 0 0-2-2H17Z\"]);\nexport const RecordStop48Regular = /*#__PURE__*/createFluentIcon('RecordStop48Regular', \"48\", [\"M17 15a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V17a2 2 0 0 0-2-2H17Zm27 9a20 20 0 1 1-40 0 20 20 0 0 1 40 0Zm-2.5 0a17.5 17.5 0 1 0-35 0 17.5 17.5 0 0 0 35 0Z\"]);\nexport const RectangleLandscape12Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape12Filled', \"12\", [\"M3 2a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H3Z\"]);\nexport const RectangleLandscape12Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape12Regular', \"12\", [\"M1 4c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H3Z\"]);\nexport const RectangleLandscape16Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape16Filled', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h9a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 12.5 3h-9Z\"]);\nexport const RectangleLandscape16Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape16Regular', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5v-5ZM3.5 4C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const RectangleLandscape20Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape20Filled', \"20\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z\"]);\nexport const RectangleLandscape20Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape20Regular', \"20\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-2a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5Z\"]);\nexport const RectangleLandscape24Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape24Filled', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25Z\"]);\nexport const RectangleLandscape24Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM5.25 5.5c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h13.5c.97 0 1.75-.78 1.75-1.75v-9.5c0-.97-.78-1.75-1.75-1.75H5.25Z\"]);\nexport const RectangleLandscape28Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25V7.75A3.75 3.75 0 0 0 22.25 4H5.75Z\"]);\nexport const RectangleLandscape28Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape28Regular', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v12.5A3.75 3.75 0 0 1 22.25 24H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM5.75 5.5c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1.01 2.25 2.25 2.25h16.5c1.24 0 2.25-1 2.25-2.25V7.75c0-1.24-1-2.25-2.25-2.25H5.75Z\"]);\nexport const RectangleLandscape32Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape32Filled', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v15a4.5 4.5 0 0 1-4.5 4.5h-19A4.5 4.5 0 0 1 2 23.5v-15Z\"]);\nexport const RectangleLandscape32Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape32Regular', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v15a4.5 4.5 0 0 1-4.5 4.5h-19A4.5 4.5 0 0 1 2 23.5v-15ZM6.5 6A2.5 2.5 0 0 0 4 8.5v15A2.5 2.5 0 0 0 6.5 26h19a2.5 2.5 0 0 0 2.5-2.5v-15A2.5 2.5 0 0 0 25.5 6h-19Z\"]);\nexport const RectangleLandscape48Filled = /*#__PURE__*/createFluentIcon('RectangleLandscape48Filled', \"48\", [\"M4 13.25C4 10.35 6.35 8 9.25 8h29.5c2.9 0 5.25 2.35 5.25 5.25v21.5c0 2.9-2.35 5.25-5.25 5.25H9.25A5.25 5.25 0 0 1 4 34.75v-21.5Z\"]);\nexport const RectangleLandscape48Regular = /*#__PURE__*/createFluentIcon('RectangleLandscape48Regular', \"48\", [\"M4 14.25C4 10.8 6.8 8 10.25 8h27.5C41.2 8 44 10.8 44 14.25v19.5C44 37.2 41.2 40 37.75 40h-27.5A6.25 6.25 0 0 1 4 33.75v-19.5Zm6.25-3.75a3.75 3.75 0 0 0-3.75 3.75v19.5a3.75 3.75 0 0 0 3.75 3.75h27.5a3.75 3.75 0 0 0 3.75-3.75v-19.5a3.75 3.75 0 0 0-3.75-3.75h-27.5Z\"]);\nexport const RectangleLandscapeHintCopy16Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy16Filled', \"16\", [\"M4 3.75C4 2.78 4.78 2 5.75 2h.75a.5.5 0 0 1 0 1h-.75a.75.75 0 0 0-.75.75v.75a.5.5 0 0 1-1 0v-.75ZM8 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm5.25-.5c.97 0 1.75.78 1.75 1.75v.75a.5.5 0 0 1-1 0v-.75a.75.75 0 0 0-.75-.75h-.75a.5.5 0 0 1 0-1h.75ZM8 11.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5Zm-2.25.5C4.78 12 4 11.22 4 10.25V9.5a.5.5 0 0 1 1 0v.75c0 .41.34.75.75.75h.75a.5.5 0 0 1 0 1h-.75ZM15 10.25c0 .97-.78 1.75-1.75 1.75h-.75a.5.5 0 0 1 0-1h.75c.41 0 .75-.34.75-.75V9.5a.5.5 0 0 1 1 0v.75ZM4.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Zm9.5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM1 7.4a3.4 3.4 0 0 1 2-3.1v5.95A2.75 2.75 0 0 0 5.75 13h6.95a3.4 3.4 0 0 1-3.1 2H5.75A4.75 4.75 0 0 1 1 10.25V7.4Z\"]);\nexport const RectangleLandscapeHintCopy16Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy16Regular', \"16\", [\"M4 3.75C4 2.78 4.78 2 5.75 2h.75a.5.5 0 0 1 0 1h-.75a.75.75 0 0 0-.75.75v.75a.5.5 0 0 1-1 0v-.75ZM8 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm5.25-.5c.97 0 1.75.78 1.75 1.75v.75a.5.5 0 0 1-1 0v-.75a.75.75 0 0 0-.75-.75h-.75a.5.5 0 0 1 0-1h.75ZM8 11.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5Zm-2.25.5C4.78 12 4 11.22 4 10.25V9.5a.5.5 0 0 1 1 0v.75c0 .41.34.75.75.75h.75a.5.5 0 0 1 0 1h-.75ZM15 10.25c0 .97-.78 1.75-1.75 1.75h-.75a.5.5 0 0 1 0-1h.75c.41 0 .75-.34.75-.75V9.5a.5.5 0 0 1 1 0v.75ZM4.5 6a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5Zm9.5.5a.5.5 0 0 1 1 0v1a.5.5 0 0 1-1 0v-1ZM1 7.41c0-.94.38-1.8 1-2.4v5.24A3.73 3.73 0 0 0 5.75 14H12c-.62.62-1.47 1-2.41 1H5.75A4.75 4.75 0 0 1 1 10.25V7.41Z\"]);\nexport const RectangleLandscapeHintCopy20Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy20Filled', \"20\", [\"M17 5.5a.5.5 0 0 0 1 0V5a2 2 0 0 0-2-2h-1.5a.5.5 0 0 0 0 1H16a1 1 0 0 1 1 1v.5Zm-8-2a.5.5 0 0 1-.5.5H7a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V5c0-1.1.9-2 2-2h1.5c.27 0 .5.22.5.5ZM5.5 11c.28 0 .5.22.5.5v.5a1 1 0 0 0 1 1h1.5a.5.5 0 0 1 0 1H7a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5Zm11.5.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-1.5a.5.5 0 1 1 0-1H16a1 1 0 0 0 1-1v-.5Zm-4-8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2c.28 0 .5.22.5.5ZM5.5 7c.28 0 .5.23.5.5v2a.5.5 0 0 1-1 0v-2c0-.27.22-.5.5-.5Zm12.5.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2ZM12.5 14a.5.5 0 1 0 0-1h-2a.5.5 0 1 0 0 1h2ZM2 7.41c0-1.38.82-2.57 2-3.1v7.94A2.75 2.75 0 0 0 6.75 15h9.95a3.41 3.41 0 0 1-3.11 2H6.5A4.5 4.5 0 0 1 2 12.5V7.41Z\"]);\nexport const RectangleLandscapeHintCopy20Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy20Regular', \"20\", [\"M5 5c0-1.1.9-2 2-2h1.5a.5.5 0 0 1 0 1H7a1 1 0 0 0-1 1v.5a.5.5 0 0 1-1 0V5Zm5-1.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Zm6-.5a2 2 0 0 1 2 2v.5a.5.5 0 0 1-1 0V5a1 1 0 0 0-1-1h-1.5a.5.5 0 0 1 0-1H16Zm-6 10.5c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.5.5ZM7 14a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5a1 1 0 0 0 1 1h1.5a.5.5 0 0 1 0 1H7Zm11-2a2 2 0 0 1-2 2h-1.5a.5.5 0 0 1 0-1H16a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5ZM5.5 7a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm11.5.5a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0v-2ZM2 7.41c0-.94.38-1.8 1-2.41v7.5A3.5 3.5 0 0 0 6.5 16H16a3.4 3.4 0 0 1-2.41 1H6.5A4.5 4.5 0 0 1 2 12.5V7.41Z\"]);\nexport const RectangleLandscapeHintCopy24Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy24Filled', \"24\", [\"M7.51 6.25c0-.96.79-1.75 1.75-1.75h1a.75.75 0 0 0 0-1.5h-1a3.25 3.25 0 0 0-3.25 3.25v.5a.75.75 0 1 0 1.5 0v-.5ZM12.76 3a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm-.75 13.25c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm8.5-2.5c0 .97-.78 1.75-1.75 1.75h-1a.75.75 0 0 0 0 1.5h1c1.8 0 3.25-1.45 3.25-3.25v-.48a.75.75 0 0 0-1.5 0v.48ZM18.76 4.5c.97 0 1.75.79 1.75 1.75v.5a.75.75 0 0 0 1.5 0v-.5c0-1.8-1.45-3.25-3.25-3.25h-1a.75.75 0 0 0 0 1.5h1ZM7.51 13.75c0 .97.79 1.75 1.75 1.75h1a.75.75 0 0 1 0 1.5h-1a3.25 3.25 0 0 1-3.25-3.25v-.48a.75.75 0 0 1 1.5 0v.48ZM2 9.6a5.1 5.1 0 0 1 3-4.65v8.8C5 16.1 6.9 18 9.25 18h11.8a5.1 5.1 0 0 1-4.65 3H9.25C5.25 21 2 17.75 2 13.75V9.6Zm5.5-.34a.75.75 0 0 0-1.5 0l.01 1.5a.75.75 0 0 0 1.5 0l-.01-1.5Zm13.75-.75c.41 0 .75.34.75.75l.01 1.5a.75.75 0 0 1-1.5 0l-.01-1.5c0-.41.34-.75.75-.75Z\"]);\nexport const RectangleLandscapeHintCopy24Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeHintCopy24Regular', \"24\", [\"M7.5 6.25c0-.97.78-1.75 1.75-1.75h1a.75.75 0 0 0 0-1.5h-1A3.25 3.25 0 0 0 6 6.25v.49a.75.75 0 0 0 1.5 0v-.49Zm-1.5 3a.75.75 0 0 1 1.5 0v1.5a.75.75 0 0 1-1.5 0v-1.5Zm14.5 0a.75.75 0 1 1 1.5 0v1.5a.75.75 0 0 1-1.5 0v-1.5ZM18.75 4.5c.97 0 1.75.78 1.75 1.75v.49a.75.75 0 1 0 1.5 0v-.49C22 4.45 20.55 3 18.75 3h-1a.75.75 0 1 0 0 1.5h1Zm-6-1.5a.75.75 0 1 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm-3.5 12.5c-.97 0-1.75-.78-1.75-1.75v-.5a.75.75 0 0 0-1.5 0v.5C6 15.55 7.46 17 9.25 17h1a.75.75 0 0 0 0-1.5h-1Zm11.25-1.75c0 .97-.78 1.75-1.75 1.75h-1a.75.75 0 1 0 0 1.5h1c1.8 0 3.25-1.46 3.25-3.25v-.5a.75.75 0 0 0-1.5 0v.5Zm-8.5 2.5c0 .41.34.75.75.75h2.5a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0-.75.75ZM2 9.6c0-1.41.57-2.69 1.5-3.61v7.76a5.75 5.75 0 0 0 5.75 5.75h10.76c-.92.93-2.2 1.5-3.61 1.5H9.25C5.25 21 2 17.75 2 13.75V9.6Z\"]);\nexport const RectangleLandscapeSparkle16Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle16Filled', \"16\", [\"M1.3 7.78a1.25 1.25 0 0 1-.3-.3v3.77c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C15 3.78 14.22 3 13.25 3H3.22l.15.47a.3.3 0 0 0 .06.1l.1.06.46.15h.02l.17.05c.24.09.44.25.6.45v.01a1.24 1.24 0 0 1 0 1.43l-.01.01c-.1.14-.23.26-.37.34l.24.13.02.02.11.08.06.07c.1.11.18.25.23.4l.04.12h.05l.28.13.04.03c.12.07.23.17.32.28v.02l.02.02c.12.18.2.4.2.62V8c0 .23-.08.45-.2.63v.01H5.8c-.13.2-.32.34-.54.42h-.01l-.14.05-.04.13A1.12 1.12 0 0 1 4 10c-.23 0-.45-.07-.64-.2l-.01-.01c-.18-.13-.32-.31-.4-.52v-.02L2.9 9.1l-.13-.04A1.12 1.12 0 0 1 2.01 8c-.26 0-.5-.08-.71-.22ZM1 5.53a1.24 1.24 0 0 1 .38.32c.09.11.15.24.2.38l.2.6A.25.25 0 0 0 2 7a.24.24 0 0 0 .22-.15v-.01l.2-.61c.07-.19.17-.36.3-.5.15-.13.32-.24.5-.3l.61-.2a.24.24 0 0 0 0-.46l-.62-.2a1.26 1.26 0 0 1-.8-.79l-.2-.6a.24.24 0 0 0-.37-.12.24.24 0 0 0-.09.11l-.2.61v.02a1.26 1.26 0 0 1-.79.78l-.6.2a.24.24 0 0 0-.16.23c-.01.05 0 .1.03.14.03.04.07.07.12.09l.61.2.23.1Zm2.93 1.5a.12.12 0 0 0-.04.05l-.1.3a.6.6 0 0 1-.15.25.64.64 0 0 1-.25.16l-.3.1a.12.12 0 0 0-.06.04.12.12 0 0 0 .06.18l.3.1a.62.62 0 0 1 .4.4l.1.31.05.06L4 9c.02 0 .05 0 .07-.02a.12.12 0 0 0 .04-.06l.1-.3a.63.63 0 0 1 .4-.4l.3-.1a.12.12 0 0 0 .03-.22l-.02-.01h-.01l-.3-.1a.64.64 0 0 1-.4-.4l-.1-.3a.11.11 0 0 0-.03-.05l-.02-.02A.12.12 0 0 0 4 7l-.04.01-.03.01ZM5 5\"]);\nexport const RectangleLandscapeSparkle16Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle16Regular', \"16\", [\"M1 11.25V7.49A1.25 1.25 0 0 0 2 8v3.25c0 .41.34.75.75.75h10.5c.41 0 .75-.34.75-.75v-6.5a.75.75 0 0 0-.75-.75H4.49c-.1-.07-.2-.13-.31-.17L4 3.78H4l-.46-.15a.26.26 0 0 1-.1-.06.29.29 0 0 1-.06-.1L3.22 3h10.03c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H2.75C1.78 13 1 12.22 1 11.25Zm0-5.72a1.24 1.24 0 0 1 .38.32c.09.11.15.24.2.38l.2.6A.25.25 0 0 0 2 7a.24.24 0 0 0 .22-.15v-.01l.2-.61c.07-.19.17-.36.3-.5.15-.13.32-.24.5-.3l.61-.2a.24.24 0 0 0 0-.46l-.62-.2a1.26 1.26 0 0 1-.8-.79l-.2-.6a.24.24 0 0 0-.37-.12.24.24 0 0 0-.09.11l-.2.61v.02a1.26 1.26 0 0 1-.79.78l-.6.2a.24.24 0 0 0-.16.23c-.01.05 0 .1.03.14.03.04.07.07.12.09l.61.2.23.1Zm2.93 1.5a.12.12 0 0 0-.04.05l-.1.3a.6.6 0 0 1-.15.25.64.64 0 0 1-.25.16l-.3.1a.12.12 0 0 0-.06.04.12.12 0 0 0 .06.18l.3.1a.62.62 0 0 1 .4.4l.1.31.05.06L4 9c.02 0 .05 0 .07-.02a.12.12 0 0 0 .04-.06l.1-.3a.63.63 0 0 1 .4-.4l.3-.1a.12.12 0 0 0 .03-.22l-.02-.01h-.01l-.3-.1a.64.64 0 0 1-.4-.4l-.1-.3a.11.11 0 0 0-.03-.05l-.02-.02A.12.12 0 0 0 4 7l-.04.01-.03.01Z\"]);\nexport const RectangleLandscapeSparkle20Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle20Filled', \"20\", [\"M4.03 9.4a.18.18 0 0 1 .09-.07l.45-.15a.94.94 0 0 0 .6-.6l.14-.46a.18.18 0 0 1 .1-.1C5.45 8 5.47 8 5.49 8a.18.18 0 0 1 .13.06l.04.06.15.46a.95.95 0 0 0 .6.6l.46.15.04.01a.18.18 0 0 1-.04.32l-.45.15a.95.95 0 0 0-.6.6l-.15.46a.18.18 0 0 1-.17.12.18.18 0 0 1-.17-.12l-.14-.46a.94.94 0 0 0-.6-.6l-.46-.15a.18.18 0 0 1-.09-.06.18.18 0 0 1-.03-.1c0-.04 0-.08.03-.1Zm-1.7-.46A.3.3 0 0 0 2.5 9a.3.3 0 0 0 .27-.18l.01-.02.25-.77a1.58 1.58 0 0 1 1-1l.76-.25a.3.3 0 0 0 .15-.45.3.3 0 0 0-.15-.12h-.01L4 5.97c-.23-.08-.44-.21-.61-.38-.12-.12-.21-.26-.28-.4a1.44 1.44 0 0 1-.1-.22l-.25-.77a.3.3 0 0 0-.29-.2.3.3 0 0 0-.28.2l-.25.77v.02a1.58 1.58 0 0 1-.98.97l-.77.25a.3.3 0 0 0-.2.29.3.3 0 0 0 .2.28l.77.25a1.58 1.58 0 0 1 1 1l.24.77c.02.06.06.1.11.14ZM2.5 10c.2 0 .38-.04.56-.13.02.08.05.14.08.19l.02.05.04.05c.17.26.39.37.47.41l.07.04.5.16.17.53.05.09.01.01.01.02a1.65 1.65 0 0 0 .13.19c.03.03.11.12.24.2a1.17 1.17 0 0 0 1.3 0c.26-.17.37-.39.41-.47l.04-.07.16-.5.53-.17.09-.05.01-.01.02-.01a1.64 1.64 0 0 0 .19-.13c.03-.03.12-.11.2-.24a1.2 1.2 0 0 0 .03-1.27c-.1-.19-.27-.34-.46-.43l-.21-.11h-.08l-.3-.1-.17-.5-.04-.07v-.01l-.01-.02-.03-.06a1.2 1.2 0 0 0-.18-.23l-.1-.1-.09-.05c-.1-.07-.2-.12-.3-.15.06-.14.1-.3.12-.48.03-.36-.1-.67-.27-.87a1.33 1.33 0 0 0-.61-.44l-.16-.05h-.01l-.6-.2a.67.67 0 0 1-.22-.13.58.58 0 0 1-.1-.12L4 4.73l-.02-.04-.03-.05-.2-.62L4 4h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.9c.16.07.33.1.5.1Z\"]);\nexport const RectangleLandscapeSparkle20Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle20Regular', \"20\", [\"M4.03 9.4a.18.18 0 0 1 .09-.07l.45-.15a.94.94 0 0 0 .6-.6l.14-.46a.18.18 0 0 1 .1-.1C5.45 8 5.47 8 5.49 8a.18.18 0 0 1 .13.06l.04.06.15.46a.95.95 0 0 0 .6.6l.46.15.04.01a.18.18 0 0 1-.04.32l-.45.15a.95.95 0 0 0-.6.6l-.15.46a.18.18 0 0 1-.17.12.18.18 0 0 1-.17-.12l-.14-.46a.94.94 0 0 0-.6-.6l-.46-.15a.18.18 0 0 1-.09-.06.18.18 0 0 1-.03-.1c0-.04 0-.08.03-.1Zm-1.7-.46A.3.3 0 0 0 2.5 9a.3.3 0 0 0 .27-.18l.01-.02.25-.77a1.58 1.58 0 0 1 1-1l.76-.25a.3.3 0 0 0 .15-.45.3.3 0 0 0-.15-.12h-.01L4 5.97c-.23-.08-.44-.21-.61-.38-.12-.12-.21-.26-.28-.4a1.44 1.44 0 0 1-.1-.22l-.25-.77a.3.3 0 0 0-.29-.2.3.3 0 0 0-.28.2l-.25.77v.02a1.58 1.58 0 0 1-.98.97l-.77.25a.3.3 0 0 0-.2.29.3.3 0 0 0 .2.28l.77.25a1.58 1.58 0 0 1 1 1l.24.77c.02.06.06.1.11.14ZM2.5 10c.17 0 .34-.03.5-.1V14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4.27a.64.64 0 0 1-.16-.1.58.58 0 0 1-.1-.13L4 4.73l-.02-.04-.03-.05-.2-.62L4 4h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.9c.16.07.33.1.5.1Z\"]);\nexport const RectangleLandscapeSparkle24Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle24Filled', \"24\", [\"M6.56 8c.22.02.44.09.62.22h.01l.01.01.17.15.01.02h.01c.1.12.18.26.24.4v.02l.18.54.02.04.05.03.37.12h.04l.17.06.18.09h.02a1.21 1.21 0 0 1 .36 1.75c-.14.2-.34.35-.57.44h-.02l-.55.18a.1.1 0 0 0-.06.06l-.18.56-.01.03a1.21 1.21 0 0 1-1.82.56c-.21-.15-.36-.35-.45-.58v-.02l-.18-.55a.1.1 0 0 0-.03-.04.12.12 0 0 0-.04-.02l-.54-.18a1.2 1.2 0 0 1-.82-1.12 1.37 1.37 0 0 1-1.53-.02 1.37 1.37 0 0 1-.22-.2v7.2C2 18.99 3 20 4.25 20h15.5c1.24 0 2.25-1 2.25-2.25V6.25C22 5.01 21 4 19.75 4H4.3l.27.85a.88.88 0 0 0 .57.56l.76.25h.03l.16.05a1.37 1.37 0 0 1 .66 2.07v.01c-.06.08-.12.15-.19.21Zm-3.9 1.76-.3-.92a1.91 1.91 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1-.17-.55c.04-.06.1-.1.17-.13l.92-.3a1.9 1.9 0 0 0 1.18-1.18v-.02l.3-.92a.36.36 0 0 1 .55-.17c.07.04.11.1.14.17l.3.92a1.88 1.88 0 0 0 1.2 1.2l.91.3h.02c.07.02.13.07.18.13a.37.37 0 0 1 0 .42c-.05.06-.1.1-.18.13l-.92.3a1.89 1.89 0 0 0-1.2 1.2l-.3.92v.02a.38.38 0 0 1-.13.15.37.37 0 0 1-.42 0 .36.36 0 0 1-.13-.17Zm2.77.61-.54.18a.21.21 0 0 0-.1.32.2.2 0 0 0 .1.08l.54.17a1.12 1.12 0 0 1 .7.7l.17.54a.21.21 0 0 0 .32.1.22.22 0 0 0 .08-.1l.17-.54a1.1 1.1 0 0 1 .7-.7l.54-.17a.21.21 0 0 0 .14-.2.2.2 0 0 0-.14-.2H8.1l-.54-.17a1.12 1.12 0 0 1-.7-.7l-.17-.54a.22.22 0 0 0-.08-.1.22.22 0 0 0-.2-.03.22.22 0 0 0-.12.12l-.18.54c-.02.08-.05.16-.1.23-.04.07-.1.14-.15.2-.12.12-.27.22-.43.27Z\"]);\nexport const RectangleLandscapeSparkle24Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle24Regular', \"24\", [\"M3.5 17.75V10.9a1.36 1.36 0 0 1-1.28-.15 1.37 1.37 0 0 1-.22-.2v7.2C2 18.99 3 20 4.25 20h15.5c1.24 0 2.25-1 2.25-2.25V6.25C22 5.01 21 4 19.75 4H4.3l.27.85a.88.88 0 0 0 .57.56l.28.09h14.33c.41 0 .75.34.75.75v11.5c0 .41-.34.75-.75.75H4.25a.75.75 0 0 1-.75-.75Zm-.84-8-.3-.91a1.91 1.91 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1-.17-.55c.04-.06.1-.1.17-.13l.92-.3a1.9 1.9 0 0 0 1.18-1.18v-.02l.3-.92a.36.36 0 0 1 .55-.17c.07.04.11.1.14.17l.3.92a1.88 1.88 0 0 0 1.2 1.2l.91.3h.02c.07.02.13.07.18.13a.37.37 0 0 1 0 .42c-.05.06-.1.1-.18.13l-.92.3a1.89 1.89 0 0 0-1.2 1.2l-.3.92v.02a.38.38 0 0 1-.13.15.37.37 0 0 1-.42 0 .36.36 0 0 1-.13-.17Zm2.77.62-.54.18a.21.21 0 0 0-.1.32.2.2 0 0 0 .1.08l.54.17a1.12 1.12 0 0 1 .7.7l.17.54a.21.21 0 0 0 .32.1.22.22 0 0 0 .08-.1l.17-.54a1.1 1.1 0 0 1 .7-.7l.54-.17a.21.21 0 0 0 .14-.2.2.2 0 0 0-.14-.2H8.1l-.54-.17a1.12 1.12 0 0 1-.7-.7l-.17-.54a.22.22 0 0 0-.08-.1.22.22 0 0 0-.2-.03.22.22 0 0 0-.12.12l-.18.54c-.02.08-.05.16-.1.23-.04.07-.1.14-.15.2-.12.12-.27.22-.43.27Z\"]);\nexport const RectangleLandscapeSparkle28Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle28Filled', \"28\", [\"M2.23 8.78A2.25 2.25 0 0 0 2 8.61V8.6c-.2-.16-.42-.28-.66-.37L.28 7.88a.42.42 0 0 1-.28-.4.42.42 0 0 1 .28-.4l1.07-.34a2.19 2.19 0 0 0 .8-.48 2.21 2.21 0 0 0 .58-.89v-.03l.35-1.07a.42.42 0 0 1 .4-.28c.08 0 .17.03.24.08.05.04.1.1.12.16l.02.02.02.03.34 1.07.14.3a2.2 2.2 0 0 0 1.26 1.1l1.08.35h.02a.42.42 0 0 1 .28.4c0 .09-.03.17-.08.24a.43.43 0 0 1-.2.16l-1.07.35a2.19 2.19 0 0 0-1.4 1.4L3.9 10.7v.03a.43.43 0 0 1-.15.18.42.42 0 0 1-.48 0 .42.42 0 0 1-.16-.2l-.35-1.07a2.22 2.22 0 0 0-.53-.87Zm3.44 3.49.6-.2a1.27 1.27 0 0 0 .67-.53c.05-.08.1-.17.12-.26l.2-.6a.24.24 0 0 1 .14-.15.25.25 0 0 1 .27.06l.05.08.2.61a1.26 1.26 0 0 0 .79.8l.61.2h.01l.05.02.07.07a.24.24 0 0 1 0 .28.24.24 0 0 1-.12.09l-.6.2c-.2.06-.36.16-.5.3-.14.14-.24.3-.3.49l-.2.61a.24.24 0 0 1-.23.16.24.24 0 0 1-.23-.16l-.2-.61a1.27 1.27 0 0 0-.3-.5c-.14-.14-.3-.24-.5-.3l-.6-.2a.24.24 0 0 1 0-.45ZM2 21.25v-10.7l.16.5v.01a1.42 1.42 0 0 0 1.35.94 1.43 1.43 0 0 0 1.02-.45h.01c.11-.12.2-.26.27-.42v-.01l.03-.07.36-1.1a1.19 1.19 0 0 1 .76-.76l1.09-.35h.02a1.43 1.43 0 0 0 0-2.68l-.05-.01-.04-.01-1.04-.34a1.2 1.2 0 0 1-.47-.29 1.2 1.2 0 0 1-.21-.3l-.01-.02-.01-.03c-.03-.04-.05-.1-.07-.15L4.84 4h18.41A2.75 2.75 0 0 1 26 6.75v14.5A2.75 2.75 0 0 1 23.25 24H4.75A2.75 2.75 0 0 1 2 21.25Zm3.96-7.38.1.06c.03.03.05.07.06.1l.2.64.01.01c.09.24.25.45.45.6a1.25 1.25 0 0 0 1.42 0h.02c.2-.15.37-.37.45-.61v-.01l.2-.62a.27.27 0 0 1 .07-.1.28.28 0 0 1 .1-.05l.61-.2h.01a1.24 1.24 0 0 0 .6-1.9c-.1-.14-.22-.25-.36-.34h-.01l-.01-.01a1.26 1.26 0 0 0-.22-.1l-.16-.06h-.02l-.46-.15a.27.27 0 0 1-.1-.06.26.26 0 0 1-.05-.1l-.2-.63-.01-.01a1.26 1.26 0 0 0-.24-.4l-.01-.01-.02-.02-.15-.14-.02-.02-.03-.01c-.2-.14-.44-.22-.7-.22-.16 0-.31.03-.45.08h-.01l-.01.01-.24.13-.01.01c-.21.15-.37.36-.45.6l-.21.63a.27.27 0 0 1-.06.1.27.27 0 0 1-.09.05l-.61.2h-.01a1.24 1.24 0 0 0-.84 1.17 1.24 1.24 0 0 0 .84 1.18l.62.2Z\"]);\nexport const RectangleLandscapeSparkle28Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle28Regular', \"28\", [\"M2.23 8.78A2.25 2.25 0 0 0 2 8.61V8.6c-.2-.16-.42-.28-.66-.37L.28 7.88a.42.42 0 0 1-.28-.4.42.42 0 0 1 .28-.4l1.07-.34a2.19 2.19 0 0 0 .8-.48 2.21 2.21 0 0 0 .58-.89v-.03l.35-1.07a.42.42 0 0 1 .4-.28c.08 0 .17.03.24.08.05.04.1.1.12.16l.02.02.02.03.34 1.07.14.3a2.2 2.2 0 0 0 1.26 1.1l1.08.35h.02a.42.42 0 0 1 .28.4c0 .09-.03.17-.08.24a.43.43 0 0 1-.2.16l-1.07.35a2.19 2.19 0 0 0-1.4 1.4L3.9 10.7v.03a.43.43 0 0 1-.15.18.42.42 0 0 1-.48 0 .42.42 0 0 1-.16-.2l-.35-1.07a2.22 2.22 0 0 0-.53-.87Zm3.44 3.49.6-.2a1.27 1.27 0 0 0 .67-.53c.05-.08.1-.17.12-.26l.2-.6a.24.24 0 0 1 .14-.15.25.25 0 0 1 .27.06l.05.08.2.61a1.26 1.26 0 0 0 .79.8l.61.2h.01l.05.02.07.07a.24.24 0 0 1 0 .28.24.24 0 0 1-.12.09l-.6.2c-.2.06-.36.16-.5.3-.14.14-.24.3-.3.49l-.2.61a.24.24 0 0 1-.23.16.24.24 0 0 1-.23-.16l-.2-.61a1.27 1.27 0 0 0-.3-.5c-.14-.14-.3-.24-.5-.3l-.6-.2a.24.24 0 0 1 0-.45ZM2 21.25v-10.7l.16.5v.01A1.42 1.42 0 0 0 3.5 12v9.25c0 .69.56 1.25 1.25 1.25h18.5c.7 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H5.46a1.2 1.2 0 0 1-.2-.3l-.01-.01-.01-.03c-.03-.04-.05-.1-.07-.15L4.84 4h18.41A2.75 2.75 0 0 1 26 6.75v14.5A2.75 2.75 0 0 1 23.25 24H4.75A2.75 2.75 0 0 1 2 21.25Z\"]);\nexport const RectangleLandscapeSparkle32Filled = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle32Filled', \"32\", [\"M2.55 9.47a2.57 2.57 0 0 0-.25-.2h-.01a2.53 2.53 0 0 0-.74-.42l-1.23-.4A.49.49 0 0 1 0 7.99a.48.48 0 0 1 .32-.45l1.23-.4c.31-.11.6-.29.84-.5.02-.03.04-.04.06-.05l.07-.06c.27-.27.47-.6.6-.96v-.03l.4-1.22A.48.48 0 0 1 3.98 4c.1 0 .2.03.27.09.06.05.11.1.14.18l.02.02.02.03.4 1.23c.04.11.1.23.16.34.11.24.27.46.45.65.28.28.62.49 1 .6l1.22.4.02.01a.48.48 0 0 1 .32.46.5.5 0 0 1-.32.46l-1.22.4a2.5 2.5 0 0 0-1.6 1.59l-.4 1.22-.01.03a.49.49 0 0 1-.17.2.48.48 0 0 1-.55 0 .48.48 0 0 1-.18-.22l-.4-1.23a2.54 2.54 0 0 0-.6-.99Zm4.42 3.48-.77.25a.3.3 0 0 0 0 .57l.77.26c.23.07.44.2.62.38.17.17.3.39.37.62l.26.77a.3.3 0 0 0 .46.15.3.3 0 0 0 .1-.15l.26-.77c.07-.23.2-.44.37-.61.18-.18.39-.3.62-.38l.77-.25a.3.3 0 0 0 .2-.28.3.3 0 0 0-.2-.29h-.02l-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.77a.32.32 0 0 0-.1-.14.31.31 0 0 0-.3-.04.3.3 0 0 0-.17.18l-.25.77a1.59 1.59 0 0 1-.38.61c-.17.17-.37.3-.6.37ZM2 24.75V11.76l.14.42v.02a1.98 1.98 0 0 0 1.87 1.3h.01c.16 0 .32-.02.48-.06v.05a1.8 1.8 0 0 0 1.21 1.7h.02l.77.26.02.01.02.03.26.8v.02a1.8 1.8 0 0 0 1.7 1.2h.01a1.8 1.8 0 0 0 1.7-1.21v-.02l.25-.78.01-.02.03-.01.78-.26a1.8 1.8 0 0 0 .89-2.75c-.14-.2-.33-.37-.54-.5h-.01l-.02-.01a1.8 1.8 0 0 0-.32-.15l-.23-.08h-.03l-.53-.17a.1.1 0 0 1-.03-.02l-.01-.03-.26-.79-.01-.02c-.08-.21-.2-.4-.34-.58l-.02-.02-.02-.02a1.93 1.93 0 0 0-.23-.2l-.03-.03-.03-.02a1.81 1.81 0 0 0-.72-.3 2 2 0 0 0-.59-3.37l-.06-.03-.05-.01-1.19-.39a1.01 1.01 0 0 1-.39-.23 1.01 1.01 0 0 1-.18-.26l-.01-.03-.02-.03a1.1 1.1 0 0 1-.06-.12L5.9 4h20.85C28.55 4 30 5.46 30 7.25v17.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 24.75Z\"]);\nexport const RectangleLandscapeSparkle32Regular = /*#__PURE__*/createFluentIcon('RectangleLandscapeSparkle32Regular', \"32\", [\"M2.55 9.47a2.57 2.57 0 0 0-.25-.2h-.01a2.53 2.53 0 0 0-.74-.42l-1.23-.4A.49.49 0 0 1 0 7.99a.48.48 0 0 1 .32-.45l1.23-.4c.31-.11.6-.29.84-.5.02-.03.04-.04.06-.05l.07-.06c.27-.27.47-.6.6-.96v-.03l.4-1.22A.48.48 0 0 1 3.98 4c.1 0 .2.03.27.09.06.05.11.1.14.18l.02.02.02.03.4 1.23c.04.11.1.23.16.34.11.24.27.46.45.65.28.28.62.49 1 .6l1.22.4.02.01a.48.48 0 0 1 .32.46.5.5 0 0 1-.32.46l-1.22.4a2.5 2.5 0 0 0-1.6 1.59l-.4 1.22-.01.03a.49.49 0 0 1-.17.2.48.48 0 0 1-.55 0 .48.48 0 0 1-.18-.22l-.4-1.23a2.54 2.54 0 0 0-.6-.99Zm4.42 3.48-.77.25a.3.3 0 0 0 0 .57l.77.26c.23.07.44.2.62.38.17.17.3.39.37.62l.26.77a.3.3 0 0 0 .46.15.3.3 0 0 0 .1-.15l.26-.77c.07-.23.2-.44.37-.61.18-.18.39-.3.62-.38l.77-.25a.3.3 0 0 0 .2-.28.3.3 0 0 0-.2-.29h-.02l-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.77a.32.32 0 0 0-.1-.14.31.31 0 0 0-.3-.04.3.3 0 0 0-.17.18l-.25.77a1.59 1.59 0 0 1-.38.61c-.17.17-.37.3-.6.37ZM2 24.75V11.76l.14.42v.02A1.98 1.98 0 0 0 4 13.5v11.25c0 .69.56 1.25 1.25 1.25h21.5c.69 0 1.25-.56 1.25-1.25V7.25C28 6.56 27.44 6 26.75 6h-19l-.85-.28a1.01 1.01 0 0 1-.39-.23 1.01 1.01 0 0 1-.18-.26l-.01-.03-.02-.03a1.1 1.1 0 0 1-.06-.12L5.9 4h20.85C28.55 4 30 5.46 30 7.25v17.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 24.75Z\"]);\nexport const RectanglePortraitLocationTarget20Filled = /*#__PURE__*/createFluentIcon('RectanglePortraitLocationTarget20Filled', \"20\", [\"M6 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h5.7a4.5 4.5 0 0 1-1.43-2.02 1.5 1.5 0 0 1 0-2.96 4.49 4.49 0 0 1 2.75-2.75 1.5 1.5 0 0 1 2.96 0H16V4a2 2 0 0 0-2-2H6Zm9.06 13.33a1 1 0 1 1-1.12-1.66 1 1 0 0 1 1.12 1.66ZM17.95 14h.55a.5.5 0 0 1 0 1h-.55A3.49 3.49 0 0 1 15 17.95v.55a.5.5 0 0 1-1 0v-.55A3.49 3.49 0 0 1 11.05 15h-.55a.5.5 0 0 1 0-1h.55A3.49 3.49 0 0 1 14 11.05v-.55a.5.5 0 0 1 1 0v.55A3.49 3.49 0 0 1 17.95 14Zm-3.2 2.99a2.5 2.5 0 1 0-.5-4.98 2.5 2.5 0 0 0 .5 4.98Z\"]);\nexport const RectanglePortraitLocationTarget20Regular = /*#__PURE__*/createFluentIcon('RectanglePortraitLocationTarget20Regular', \"20\", [\"M4 4c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6.27h-.02A1.5 1.5 0 0 0 15 9.09V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h4.78a4.5 4.5 0 0 0 .92 1H6a2 2 0 0 1-2-2V4Zm11.06 11.33a1 1 0 1 1-1.12-1.66 1 1 0 0 1 1.12 1.66ZM17.95 14h.55a.5.5 0 0 1 0 1h-.55A3.49 3.49 0 0 1 15 17.95v.55a.5.5 0 0 1-1 0v-.55A3.49 3.49 0 0 1 11.05 15h-.55a.5.5 0 0 1 0-1h.55A3.49 3.49 0 0 1 14 11.05v-.55a.5.5 0 0 1 1 0v.55A3.49 3.49 0 0 1 17.95 14Zm-3.2 2.99a2.5 2.5 0 1 0-.5-4.98 2.5 2.5 0 0 0 .5 4.98Z\"]);\nexport const Recycle20Filled = /*#__PURE__*/createFluentIcon('Recycle20Filled', \"20\", [\"M8.9 3.04a1.25 1.25 0 0 1 2.2 0l1.66 3.1-1.02-.35a.75.75 0 0 0-.48 1.42l3 1a.75.75 0 0 0 .98-.59l.5-3a.75.75 0 1 0-1.48-.24l-.17 1.04-1.67-3.1a2.75 2.75 0 0 0-4.84 0L5.84 5.57a.75.75 0 0 0 1.33.7L8.9 3.05Zm8.04 10.87-1.91-3.56a.75.75 0 1 1 1.32-.71l1.91 3.56a2.75 2.75 0 0 1-2.42 4.05H12.3l.72.72a.75.75 0 1 1-1.06 1.06l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 1 1 1.06 1.06l-.72.72h3.53c.94 0 1.55-1 1.1-1.84Zm-9.69 1.84a.75.75 0 0 1 0 1.5H4.16a2.75 2.75 0 0 1-2.42-4.05L3.6 9.76l-1.35.45a.75.75 0 1 1-.48-1.42l3-1a.75.75 0 0 1 .95.47l1 3a.75.75 0 1 1-1.42.48l-.4-1.22-1.83 3.39c-.44.83.16 1.84 1.1 1.84h3.09Z\"]);\nexport const Recycle20Regular = /*#__PURE__*/createFluentIcon('Recycle20Regular', \"20\", [\"M11.32 2.92a1.5 1.5 0 0 0-2.64 0L6.83 6.37a.5.5 0 1 1-.88-.47L7.8 2.45a2.5 2.5 0 0 1 4.4 0l2.01 3.74.3-1.77a.5.5 0 0 1 .98.16l-.5 3a.5.5 0 0 1-.65.4l-3-1a.5.5 0 0 1 .32-.95l1.62.54-1.96-3.65Zm4.03 6.4a.5.5 0 0 0-.22.7l2.03 3.77c.54 1-.19 2.21-1.32 2.21H11.7l1.14-1.15a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L11.71 17h4.13a2.5 2.5 0 0 0 2.2-3.68l-2.03-3.78a.5.5 0 0 0-.66-.21ZM4.16 16H7.5a.5.5 0 0 1 0 1H4.16a2.5 2.5 0 0 1-2.2-3.68l2.15-4-1.95.65a.5.5 0 1 1-.32-.94l3-1a.5.5 0 0 1 .63.31l1 3a.5.5 0 0 1-.94.32l-.6-1.77-2.09 3.9A1.5 1.5 0 0 0 4.16 16Z\"]);\nexport const Recycle32Filled = /*#__PURE__*/createFluentIcon('Recycle32Filled', \"32\", [\"M14.04 5.65a2.25 2.25 0 0 1 3.92 0l2.6 4.65-1.6-.28a1.25 1.25 0 1 0-.43 2.46l4.25.75c.61.1 1.21-.25 1.4-.83l1.26-3.76a1.25 1.25 0 0 0-2.38-.79l-.37 1.12-2.55-4.54a4.75 4.75 0 0 0-8.28 0l-2.2 3.93a1.25 1.25 0 1 0 2.17 1.23l2.2-3.94Zm12.05 9.38a1.25 1.25 0 0 0-2.19 1.22l3.3 5.9a2.25 2.25 0 0 1-1.95 3.35h-6.33l.79-.95a1.25 1.25 0 0 0-1.92-1.6l-2.5 3a1.25 1.25 0 0 0 0 1.6l2.5 3a1.25 1.25 0 0 0 1.92-1.6l-.79-.95h6.33c3.62 0 5.91-3.9 4.14-7.07l-3.3-5.9ZM11.75 25.5h-5a2.25 2.25 0 0 1-1.96-3.35l3.55-6.33.8 1.52a1.25 1.25 0 0 0 2.21-1.18l-2-3.75a1.25 1.25 0 0 0-1.3-.64l-4.5.75a1.25 1.25 0 1 0 .4 2.46l2.2-.36-3.54 6.3A4.75 4.75 0 0 0 6.75 28h5a1.25 1.25 0 1 0 0-2.5Z\"]);\nexport const Recycle32Regular = /*#__PURE__*/createFluentIcon('Recycle32Regular', \"32\", [\"M18.18 5.28a2.5 2.5 0 0 0-4.36 0l-2.9 5.18-1.79-.9 2.94-5.26a4.5 4.5 0 0 1 7.86 0l2.74 4.9.36-1.44a1 1 0 0 1 1.94.48l-1 4a1 1 0 0 1-1.21.73l-4-1a1 1 0 1 1 .48-1.94l1.86.46-2.92-5.21Zm5.4 9.68 1.8-.9 4.04 7.24c1.68 3-.49 6.7-3.92 6.7H18.4l1.3 1.3a1 1 0 1 1-1.42 1.4l-3-3a1 1 0 0 1 0-1.4l3-3a1 1 0 1 1 1.42 1.4L18.4 26h7.09a2.5 2.5 0 0 0 2.18-3.72l-4.1-7.32ZM13 26H6.5a2.5 2.5 0 0 1-2.18-3.72l3.87-6.93.9 2.05a1 1 0 0 0 1.83-.8l-1.75-4a1 1 0 0 0-1.15-.57l-4.25 1a1 1 0 1 0 .46 1.94l2.17-.5-3.83 6.83A4.5 4.5 0 0 0 6.5 28H13v-2Z\"]);\nexport const RemixAdd16Filled = /*#__PURE__*/createFluentIcon('RemixAdd16Filled', \"16\", [\"M1 1.75c0-.41.34-.75.75-.75l7.91.2A7 7 0 0 1 15 8c0 1.72-.62 3.28-1.64 4.5h-2.2A5.5 5.5 0 0 0 8 2.5H1.75A.75.75 0 0 1 1 1.75ZM1 8a7 7 0 0 0 7 7h6.25a.75.75 0 0 0 0-1.5H8a5.5 5.5 0 0 1-3.16-10h-2.2A6.97 6.97 0 0 0 1 8Zm7-3c.41 0 .75.34.75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5c0-.41.34-.75.75-.75Z\"]);\nexport const RemixAdd16Regular = /*#__PURE__*/createFluentIcon('RemixAdd16Regular', \"16\", [\"M1 1.5c0-.28.22-.5.5-.5H8a7.03 7.03 0 0 1 6.84 5.5A7 7 0 0 1 12.9 13h-1.58A6 6 0 0 0 8 2H1.5a.5.5 0 0 1-.5-.5ZM1 8a7 7 0 0 0 7 7h6.5a.5.5 0 0 0 0-1H8a6.02 6.02 0 0 1-6-6 6 6 0 0 1 2.68-5H3.1A6.98 6.98 0 0 0 1 8Zm7-3c.28 0 .5.22.5.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2c0-.28.22-.5.5-.5Z\"]);\nexport const RemixAdd20Filled = /*#__PURE__*/createFluentIcon('RemixAdd20Filled', \"20\", [\"M2.75 2a.75.75 0 0 0 0 1.5H10a6.52 6.52 0 0 1 6.5 6.5 6.5 6.5 0 0 1-3.03 5.5h2.34A8 8 0 0 0 10 2H2.75Zm5.6 15.83A8 8 0 0 1 4.19 4.5h2.34a6.5 6.5 0 0 0 3.47 12h7.25a.75.75 0 0 1 0 1.5H10c-.57 0-1.12-.06-1.65-.17ZM10 7c.41 0 .75.34.75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5c0-.41.34-.75.75-.75Z\"]);\nexport const RemixAdd20Regular = /*#__PURE__*/createFluentIcon('RemixAdd20Regular', \"20\", [\"M2 2.5c0-.28.22-.5.5-.5H10a7.98 7.98 0 0 1 5.3 14h-1.7A7 7 0 0 0 10 3H2.5a.5.5 0 0 1-.5-.5ZM10 18A8 8 0 0 1 4.7 4h1.7A7 7 0 0 0 10 17h7.5a.5.5 0 0 1 0 1H10Zm.5-10.5a.5.5 0 0 0-1 0v2h-2a.5.5 0 1 0 0 1h2v2a.5.5 0 0 0 1 0v-2h2a.5.5 0 0 0 0-1h-2v-2Z\"]);\nexport const RemixAdd24Filled = /*#__PURE__*/createFluentIcon('RemixAdd24Filled', \"24\", [\"M2 3a1 1 0 0 1 1-1h9a10 10 0 0 1 7.14 17h-3.26A8 8 0 0 0 12 4H3a1 1 0 0 1-1-1Zm8.18 18.84c.6.1 1.2.16 1.82.16h9a1 1 0 1 0 0-2h-9A8 8 0 0 1 8.12 5H4.86a10 10 0 0 0 5.32 16.83ZM12 8a1 1 0 0 1 1 1v2h2a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H9a1 1 0 1 1 0-2h2V9a1 1 0 0 1 1-1Z\"]);\nexport const RemixAdd24Regular = /*#__PURE__*/createFluentIcon('RemixAdd24Regular', \"24\", [\"M2 2.75c0-.41.34-.75.75-.75H12a10 10 0 0 1 6.61 17.5h-2.6A8.5 8.5 0 0 0 12 3.5H2.75A.75.75 0 0 1 2 2.75Zm8.36 19.12c.53.08 1.08.13 1.64.13h9.25a.75.75 0 0 0 0-1.5H12a8.5 8.5 0 0 1-4-16H5.39a10 10 0 0 0 4.98 17.37ZM12 8c.41 0 .75.34.75.75v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5c0-.41.34-.75.75-.75Z\"]);\nexport const RemixAdd32Filled = /*#__PURE__*/createFluentIcon('RemixAdd32Filled', \"32\", [\"M2 3.25C2 2.56 2.56 2 3.25 2H16a14 14 0 0 1 9.8 24h-4.12A11.5 11.5 0 0 0 16 4.5H3.25C2.56 4.5 2 3.94 2 3.25ZM2 16a13.94 13.94 0 0 0 2.04 7.29A14 14 0 0 0 16 30h11.75a1.25 1.25 0 1 0 0-2.5H16A11.5 11.5 0 0 1 10.32 6H6.2A13.96 13.96 0 0 0 2 16Zm14-6c.69 0 1.25.56 1.25 1.25v3.5h3.5a1.25 1.25 0 1 1 0 2.5h-3.5v3.5a1.25 1.25 0 1 1-2.5 0v-3.5h-3.5a1.25 1.25 0 1 1 0-2.5h3.5v-3.5c0-.69.56-1.25 1.25-1.25Z\"]);\nexport const RemixAdd32Regular = /*#__PURE__*/createFluentIcon('RemixAdd32Regular', \"32\", [\"M2 3a1 1 0 0 1 1-1h13a14 14 0 0 1 9.26 24.5h-3.45A12 12 0 0 0 16 4H3a1 1 0 0 1-1-1Zm0 13a13.95 13.95 0 0 0 1.28 5.85A14 14 0 0 0 16 30h13a1 1 0 1 0 0-2H16a12 12 0 0 1-5.81-22.5H6.74A13.97 13.97 0 0 0 2 16Zm14-6a1 1 0 0 1 1 1v4h4a1 1 0 1 1 0 2h-4v4a1 1 0 1 1-2 0v-4h-4a1 1 0 1 1 0-2h4v-4a1 1 0 0 1 1-1Z\"]);\nexport const Remote16Filled = /*#__PURE__*/createFluentIcon('Remote16Filled', \"16\", [\"M13.8 3.26a.75.75 0 1 0-1.1-1.02l-4 4.25a.75.75 0 0 0 0 1.02l4 4.25a.75.75 0 1 0 1.1-1.02L10.28 7l3.52-3.74Zm-10.5.98a.75.75 0 1 0-1.1 1.02L5.72 9 2.2 12.74a.75.75 0 1 0 1.1 1.02l4-4.25a.75.75 0 0 0 0-1.02l-4-4.25Z\"]);\nexport const Remote16Regular = /*#__PURE__*/createFluentIcon('Remote16Regular', \"16\", [\"M13.85 2.85a.5.5 0 0 0-.7-.7l-4.5 4.5a.5.5 0 0 0 0 .7l4.5 4.5a.5.5 0 0 0 .7-.7L9.71 7l4.14-4.15Zm-11 1.3a.5.5 0 1 0-.7.7L6.29 9l-4.14 4.15a.5.5 0 0 0 .7.7l4.5-4.5a.5.5 0 0 0 0-.7l-4.5-4.5Z\"]);\nexport const Remote20Filled = /*#__PURE__*/createFluentIcon('Remote20Filled', \"20\", [\"M16.97 15.03a.75.75 0 1 0 1.06-1.06L12.56 8.5l5.47-5.47a.75.75 0 0 0-1.06-1.06l-6 6c-.3.3-.3.77 0 1.06l6 6ZM3.03 4.97a.75.75 0 0 0-1.06 1.06l5.47 5.47-5.47 5.47a.75.75 0 1 0 1.06 1.06l6-6c.3-.3.3-.77 0-1.06l-6-6Z\"]);\nexport const Remote20Regular = /*#__PURE__*/createFluentIcon('Remote20Regular', \"20\", [\"M17.15 14.85a.5.5 0 0 0 .7-.7L12.21 8.5l5.64-5.65a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 0 .7l6 6Zm-14.3-9.7a.5.5 0 1 0-.7.7l5.64 5.65-5.64 5.65a.5.5 0 0 0 .7.7l6-6a.5.5 0 0 0 0-.7l-6-6Z\"]);\nexport const Rename16Filled = /*#__PURE__*/createFluentIcon('Rename16Filled', \"16\", [\"M6.5 2a.5.5 0 0 0 0 1h1v10h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3ZM4 4h2.5v8H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm8 8H9.5V4H12a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2Z\"]);\nexport const Rename16Regular = /*#__PURE__*/createFluentIcon('Rename16Regular', \"16\", [\"M6.5 2a.5.5 0 0 0 0 1h1v10h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3ZM4 4h2.5v1H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h2.5v1H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm8 7H9.5v1H12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H9.5v1H12a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1Z\"]);\nexport const Rename20Filled = /*#__PURE__*/createFluentIcon('Rename20Filled', \"20\", [\"M8.5 2a.5.5 0 0 0 0 1h1v14h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3Zm-4 2h4v12h-4A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4Zm11 12h-4V4h4A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5Z\"]);\nexport const Rename20Regular = /*#__PURE__*/createFluentIcon('Rename20Regular', \"20\", [\"M8.5 2a.5.5 0 0 0 0 1h1v14h-1a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-1V3h1a.5.5 0 0 0 0-1h-3Zm-4 2h4v1h-4C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h4v1h-4A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4Zm11 11h-4v1h4a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-4v1h4c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5Z\"]);\nexport const Rename24Filled = /*#__PURE__*/createFluentIcon('Rename24Filled', \"24\", [\"M9.75 2h4a.75.75 0 0 1 .1 1.5H12.5v17h1.25c.37 0 .69.28.74.65v.1c0 .38-.28.7-.64.74l-.1.01h-4a.75.75 0 0 1-.1-1.5H11v-17H9.75a.75.75 0 0 1-.74-.65L9 2.75c0-.38.28-.7.65-.74l.1-.01Zm8.5 3c1.79 0 3.24 1.45 3.25 3.25v7.5A3.25 3.25 0 0 1 18.44 19H13.5V5h4.74ZM10 5v14H5.24A3.25 3.25 0 0 1 2 15.75v-7.5C2 6.45 3.46 5 5.25 5H10Z\"]);\nexport const Rename24Regular = /*#__PURE__*/createFluentIcon('Rename24Regular', \"24\", [\"M9.75 2h4a.75.75 0 0 1 .1 1.5H12.5v17h1.25c.37 0 .69.28.74.65v.1c0 .38-.28.7-.64.74l-.1.01h-4a.75.75 0 0 1-.1-1.5H11v-17H9.75a.75.75 0 0 1-.74-.65L9 2.75c0-.38.28-.7.65-.74l.1-.01h4-4Zm8.5 3c1.79 0 3.24 1.45 3.25 3.25v7.5A3.25 3.25 0 0 1 18.44 19H13.5v-1.5h4.8c.94-.03 1.7-.8 1.69-1.75v-7.5c0-.97-.79-1.75-1.75-1.75H13.5V5h4.74ZM10 5v1.5H5.25c-.97 0-1.75.78-1.75 1.75v7.5c0 .97.78 1.75 1.75 1.75H10V19H5.25A3.25 3.25 0 0 1 2 15.75v-7.5C2 6.45 3.46 5 5.25 5H10Z\"]);\nexport const Rename28Filled = /*#__PURE__*/createFluentIcon('Rename28Filled', \"28\", [\"M11.75 2a.75.75 0 0 0 0 1.5h1.5v21h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-21h1.5a.75.75 0 0 0 0-1.5h-4.5Zm-5.5 4.02h6v16h-6A3.25 3.25 0 0 1 3 18.77v-9.5c0-1.8 1.46-3.25 3.25-3.25Zm15.5 16h-6v-16h6c1.8 0 3.25 1.45 3.25 3.25v9.5c0 1.8-1.46 3.25-3.25 3.25Z\"]);\nexport const Rename28Regular = /*#__PURE__*/createFluentIcon('Rename28Regular', \"28\", [\"M11.75 2a.75.75 0 0 0 0 1.5h1.5v21h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-21h1.5a.75.75 0 0 0 0-1.5h-4.5Zm-5.5 4.02h6v1.5h-6c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h6v1.5h-6A3.25 3.25 0 0 1 3 18.77v-9.5c0-1.8 1.46-3.25 3.25-3.25Zm15.5 14.5h-6v1.5h6c1.8 0 3.25-1.46 3.25-3.25v-9.5c0-1.8-1.46-3.25-3.25-3.25h-6v1.5h6c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75Z\"]);\nexport const Reorder20Filled = /*#__PURE__*/createFluentIcon('Reorder20Filled', \"20\", [\"M2.75 7.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Zm0 3a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5H2.75Z\"]);\nexport const Reorder20Regular = /*#__PURE__*/createFluentIcon('Reorder20Regular', \"20\", [\"M2.5 8a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Z\"]);\nexport const Replay20Filled = /*#__PURE__*/createFluentIcon('Replay20Filled', \"20\", [\"M3 6.5v-3a.5.5 0 0 1 1 0v1.2a7.98 7.98 0 0 1 7.94-2.46A8 8 0 1 1 2 9.48a.5.5 0 1 1 1 .07A6.97 6.97 0 0 0 3 10a7 7 0 1 0 1.25-4H6a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5Zm4.5 1.47c0-.93.98-1.54 1.81-1.12l4.04 2.03c.92.47.92 1.77 0 2.24l-4.04 2.03a1.25 1.25 0 0 1-1.81-1.12V7.97Z\"]);\nexport const Replay20Regular = /*#__PURE__*/createFluentIcon('Replay20Regular', \"20\", [\"M3 6.5v-3a.5.5 0 0 1 1 0v1.2a7.98 7.98 0 0 1 7.94-2.46A8 8 0 1 1 2 9.48a.5.5 0 1 1 1 .07A6.97 6.97 0 0 0 3 10a7 7 0 1 0 1.25-4H6a.5.5 0 0 1 0 1H3.5a.5.5 0 0 1-.5-.5Zm4.5 1.47c0-.93.98-1.54 1.81-1.12l4.04 2.03c.92.47.92 1.77 0 2.24l-4.04 2.03a1.25 1.25 0 0 1-1.81-1.12V7.97Zm1.36-.23a.25.25 0 0 0-.36.23v4.06c0 .19.2.31.36.23l4.04-2.04a.25.25 0 0 0 0-.44L8.86 7.74Z\"]);\nexport const Resize20Filled = /*#__PURE__*/createFluentIcon('Resize20Filled', \"20\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3Zm-9 9c.41 0 .75.34.75.75v3c0 .97.78 1.75 1.75 1.75h3a.75.75 0 0 1 0 1.5h-3A3.25 3.25 0 0 1 2 14.75v-3c0-.41.34-.75.75-.75Zm15.25.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3Z\"]);\nexport const Resize20Regular = /*#__PURE__*/createFluentIcon('Resize20Regular', \"20\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm-9 9c.28 0 .5.22.5.5V15c0 1.1.9 2 2 2h3.5a.5.5 0 0 1 0 1H5a3 3 0 0 1-3-3v-3.5c0-.28.22-.5.5-.5Zm15.5.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5Z\"]);\nexport const Resize24Filled = /*#__PURE__*/createFluentIcon('Resize24Filled', \"24\", [\"M11 3a1 1 0 0 0-1-1H5.25A3.25 3.25 0 0 0 2 5.25V10a1 1 0 1 0 2 0V5.25C4 4.56 4.56 4 5.25 4H10a1 1 0 0 0 1-1Zm3-1a1 1 0 1 0 0 2h4.75c.69 0 1.25.56 1.25 1.25V10a1 1 0 1 0 2 0V5.25C22 3.45 20.54 2 18.75 2H14Zm0 20a1 1 0 1 1 0-2h4.75c.69 0 1.25-.56 1.25-1.25V14a1 1 0 1 1 2 0v4.75c0 1.8-1.46 3.25-3.25 3.25H14Zm-4 0a1 1 0 1 0 0-2H5.25C4.56 20 4 19.44 4 18.75V14a1 1 0 1 0-2 0v4.75C2 20.55 3.46 22 5.25 22H10Z\"]);\nexport const Resize24Regular = /*#__PURE__*/createFluentIcon('Resize24Regular', \"24\", [\"M11 2.75a.75.75 0 0 0-.75-.75h-5A3.25 3.25 0 0 0 2 5.25v5a.75.75 0 0 0 1.5 0v-5c0-.97.78-1.75 1.75-1.75h5c.41 0 .75-.34.75-.75ZM13.75 2a.75.75 0 0 0 0 1.5h5c.97 0 1.75.78 1.75 1.75v5a.75.75 0 0 0 1.5 0v-5C22 3.45 20.54 2 18.75 2h-5Zm0 20a.75.75 0 0 1 0-1.5h5c.97 0 1.75-.78 1.75-1.75v-5a.75.75 0 0 1 1.5 0v5c0 1.8-1.46 3.25-3.25 3.25h-5Zm-3.5 0a.75.75 0 0 0 0-1.5h-5c-.97 0-1.75-.78-1.75-1.75v-5a.75.75 0 0 0-1.5 0v5C2 20.55 3.46 22 5.25 22h5Z\"]);\nexport const ResizeImage20Filled = /*#__PURE__*/createFluentIcon('ResizeImage20Filled', \"20\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3ZM18 11.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3ZM1 12.5A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const ResizeImage20Regular = /*#__PURE__*/createFluentIcon('ResizeImage20Regular', \"20\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm6.5 9.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5Zm-17 1A2.5 2.5 0 0 1 3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0L1.4 17.88C1.15 17.48 1 17 1 16.5v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.51 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0L2.12 18.6Z\"]);\nexport const ResizeImage24Filled = /*#__PURE__*/createFluentIcon('ResizeImage24Filled', \"24\", [\"M11 3a1 1 0 0 0-1-1H5.25A3.25 3.25 0 0 0 2 5.25V10a1 1 0 1 0 2 0V5.25C4 4.56 4.56 4 5.25 4H10a1 1 0 0 0 1-1Zm3-1a1 1 0 1 0 0 2h4.75c.69 0 1.25.56 1.25 1.25V10a1 1 0 1 0 2 0V5.25C22 3.45 20.54 2 18.75 2H14Zm0 20a1 1 0 1 1 0-2h4.75c.69 0 1.25-.56 1.25-1.25V14a1 1 0 1 1 2 0v4.75c0 1.8-1.46 3.25-3.25 3.25H14ZM4 12a3 3 0 0 0-3 3v5c0 .56.15 1.08.42 1.52l3.49-3.49c.88-.88 2.3-.88 3.18 0l3.5 3.5c.26-.45.41-.97.41-1.53v-5a3 3 0 0 0-3-3H4Zm0 11c-.56 0-1.08-.15-1.52-.42l3.49-3.49c.3-.3.77-.3 1.06 0l3.5 3.5c-.45.26-.97.41-1.53.41H4Zm5-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ResizeImage24Regular = /*#__PURE__*/createFluentIcon('ResizeImage24Regular', \"24\", [\"M11 2.75a.75.75 0 0 0-.75-.75h-5A3.25 3.25 0 0 0 2 5.25v5a.75.75 0 0 0 1.5 0v-5c0-.97.78-1.75 1.75-1.75h5c.41 0 .75-.34.75-.75ZM13.75 2a.75.75 0 0 0 0 1.5h5c.97 0 1.75.78 1.75 1.75v5a.75.75 0 0 0 1.5 0v-5C22 3.45 20.54 2 18.75 2h-5Zm0 20a.75.75 0 0 1 0-1.5h5c.97 0 1.75-.78 1.75-1.75v-5a.75.75 0 0 1 1.5 0v5c0 1.8-1.46 3.25-3.25 3.25h-5ZM4 12a3 3 0 0 0-3 3v5c0 .56.15 1.08.42 1.52l3.49-3.49c.88-.88 2.3-.88 3.18 0l3.5 3.5c.26-.45.41-.97.41-1.53v-5a3 3 0 0 0-3-3H4Zm0 11c-.56 0-1.08-.15-1.52-.42l3.49-3.49c.3-.3.77-.3 1.06 0l3.5 3.5c-.45.26-.97.41-1.53.41H4Zm5-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ResizeLarge16Filled = /*#__PURE__*/createFluentIcon('ResizeLarge16Filled', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 4.5 2h1a.5.5 0 0 1 0 1h-1Zm1 1C4.67 4 4 4.67 4 5.5v5c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-5Zm6-1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1a.5.5 0 0 0 0 1h1Zm0 10c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-7 0A1.5 1.5 0 0 1 3 11.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 4.5 14h1.25a.5.5 0 0 0 0-1H4.5Z\"]);\nexport const ResizeLarge16Regular = /*#__PURE__*/createFluentIcon('ResizeLarge16Regular', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 4.5 2h1a.5.5 0 0 1 0 1h-1ZM13 4.5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 14 4.5v1a.5.5 0 0 1-1 0v-1Zm0 7c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1Zm-10 0c0 .83.67 1.5 1.5 1.5h1.25a.5.5 0 0 1 0 1H4.5A2.5 2.5 0 0 1 2 11.5v-1.25a.5.5 0 0 1 1 0v1.25ZM5.5 4C4.67 4 4 4.67 4 5.5v5c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-5ZM5 5.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-5Z\"]);\nexport const ResizeLarge20Filled = /*#__PURE__*/createFluentIcon('ResizeLarge20Filled', \"20\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1Zm1 1C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7Zm8-1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 14.5 3h-1a.5.5 0 0 0 0 1h1Zm0 12c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-9 0A1.5 1.5 0 0 1 4 14.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 5.5 17h1.25a.5.5 0 0 0 0-1H5.5Z\"]);\nexport const ResizeLarge20Regular = /*#__PURE__*/createFluentIcon('ResizeLarge20Regular', \"20\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1ZM16 5.5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1Zm0 9c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1Zm-12 0c0 .83.67 1.5 1.5 1.5h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25ZM6.5 5C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7ZM6 6.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v7a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-7Z\"]);\nexport const ResizeLarge24Filled = /*#__PURE__*/createFluentIcon('ResizeLarge24Filled', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h1.5a.75.75 0 0 0 0-1.5h-1.5A3.25 3.25 0 0 0 3 6.25v1.5a.75.75 0 0 0 1.5 0v-1.5ZM17.75 4.5c.97 0 1.75.78 1.75 1.75v1.5a.75.75 0 0 0 1.5 0v-1.5C21 4.45 19.54 3 17.75 3h-1.5a.75.75 0 0 0 0 1.5h1.5Zm0 15c.97 0 1.75-.78 1.75-1.75v-1.5a.75.75 0 0 1 1.5 0v1.5c0 1.8-1.46 3.25-3.25 3.25h-1.5a.75.75 0 0 1 0-1.5h1.5Zm-11.5 0c-.97 0-1.75-.78-1.75-1.75v-1.5a.75.75 0 0 0-1.5 0v1.5C3 19.55 4.46 21 6.25 21h1.5a.75.75 0 0 0 0-1.5h-1.5Zm2-13.5C7.01 6 6 7 6 8.25v7.5C6 16.99 7 18 8.25 18h7.5c1.24 0 2.25-1 2.25-2.25v-7.5C18 7.01 17 6 15.75 6h-7.5Z\"]);\nexport const ResizeLarge24Regular = /*#__PURE__*/createFluentIcon('ResizeLarge24Regular', \"24\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75v1.5a.75.75 0 0 1-1.5 0v-1.5C3 4.45 4.46 3 6.25 3h1.5a.75.75 0 0 1 0 1.5h-1.5ZM19.5 6.25c0-.97-.78-1.75-1.75-1.75h-1.5a.75.75 0 0 1 0-1.5h1.5C19.55 3 21 4.46 21 6.25v1.5a.75.75 0 0 1-1.5 0v-1.5Zm0 11.5c0 .97-.78 1.75-1.75 1.75h-1.5a.75.75 0 0 0 0 1.5h1.5c1.8 0 3.25-1.46 3.25-3.25v-1.5a.75.75 0 0 0-1.5 0v1.5Zm-15 0c0 .97.78 1.75 1.75 1.75h1.5a.75.75 0 0 1 0 1.5h-1.5A3.25 3.25 0 0 1 3 17.75v-1.5a.75.75 0 0 1 1.5 0v1.5ZM8.25 6C7.01 6 6 7 6 8.25v7.5C6 16.99 7 18 8.25 18h7.5c1.24 0 2.25-1 2.25-2.25v-7.5C18 7.01 17 6 15.75 6h-7.5ZM7.5 8.25c0-.41.34-.75.75-.75h7.5c.41 0 .75.34.75.75v7.5c0 .41-.34.75-.75.75h-7.5a.75.75 0 0 1-.75-.75v-7.5Z\"]);\nexport const ResizeSmall16Filled = /*#__PURE__*/createFluentIcon('ResizeSmall16Filled', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 4.5 2h1a.5.5 0 0 1 0 1h-1Zm3 3C6.67 6 6 6.67 6 7.5v1c0 .83.67 1.5 1.5 1.5h1c.83 0 1.5-.67 1.5-1.5v-1C10 6.67 9.33 6 8.5 6h-1Zm4-3c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1a.5.5 0 0 0 0 1h1Zm0 10c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-7 0A1.5 1.5 0 0 1 3 11.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 4.5 14h1.25a.5.5 0 0 0 0-1H4.5Z\"]);\nexport const ResizeSmall16Regular = /*#__PURE__*/createFluentIcon('ResizeSmall16Regular', \"16\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 4.5 2h1a.5.5 0 0 1 0 1h-1ZM6 7.5C6 6.67 6.67 6 7.5 6h1c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5h-1A1.5 1.5 0 0 1 6 8.5v-1ZM7.5 7a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1Zm4-4c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1a.5.5 0 0 0 0 1h1Zm0 10c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-7 0A1.5 1.5 0 0 1 3 11.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 4.5 14h1.25a.5.5 0 0 0 0-1H4.5Z\"]);\nexport const ResizeSmall20Filled = /*#__PURE__*/createFluentIcon('ResizeSmall20Filled', \"20\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1Zm3 3C7.67 7 7 7.67 7 8.5v3c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3Zm6-3c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 14.5 3h-1a.5.5 0 0 0 0 1h1Zm0 12c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1Zm-9 0A1.5 1.5 0 0 1 4 14.5v-1.25a.5.5 0 0 0-1 0v1.25A2.5 2.5 0 0 0 5.5 17h1.25a.5.5 0 0 0 0-1H5.5Z\"]);\nexport const ResizeSmall20Regular = /*#__PURE__*/createFluentIcon('ResizeSmall20Regular', \"20\", [\"M5.5 4C4.67 4 4 4.67 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1ZM16 5.5c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1Zm0 9c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1Zm-12 0c0 .83.67 1.5 1.5 1.5h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25ZM8.5 7C7.67 7 7 7.67 7 8.5v3c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-3ZM8 8.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3Z\"]);\nexport const ResizeSmall24Filled = /*#__PURE__*/createFluentIcon('ResizeSmall24Filled', \"24\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75v1.5a.75.75 0 0 1-1.5 0v-1.5C3 4.45 4.46 3 6.25 3h1.5a.75.75 0 0 1 0 1.5h-1.5ZM10.2 8c-1.24 0-2.25 1-2.25 2.25v3.5c0 1.24 1 2.25 2.25 2.25h3.5c1.24 0 2.25-1 2.25-2.25v-3.5c0-1.24-1-2.25-2.25-2.25h-3.5Zm7.55-3.5c.97 0 1.75.78 1.75 1.75v1.5a.75.75 0 0 0 1.5 0v-1.5C21 4.45 19.54 3 17.75 3h-1.5a.75.75 0 0 0 0 1.5h1.5Zm0 15c.97 0 1.75-.78 1.75-1.75v-1.5a.75.75 0 0 1 1.5 0v1.5c0 1.8-1.46 3.25-3.25 3.25h-1.5a.75.75 0 0 1 0-1.5h1.5Zm-11.5 0c-.97 0-1.75-.78-1.75-1.75v-1.5a.75.75 0 0 0-1.5 0v1.5C3 19.55 4.46 21 6.25 21h1.5a.75.75 0 0 0 0-1.5h-1.5Z\"]);\nexport const ResizeSmall24Regular = /*#__PURE__*/createFluentIcon('ResizeSmall24Regular', \"24\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75v1.5a.75.75 0 0 1-1.5 0v-1.5C3 4.45 4.46 3 6.25 3h1.5a.75.75 0 0 1 0 1.5h-1.5Zm1.7 5.75c0-1.24 1-2.25 2.25-2.25h3.5c1.24 0 2.25 1 2.25 2.25v3.5c0 1.24-1 2.25-2.25 2.25h-3.5c-1.24 0-2.25-1-2.25-2.25v-3.5Zm2.25-.75a.75.75 0 0 0-.75.75v3.5c0 .41.34.75.75.75h3.5c.41 0 .75-.34.75-.75v-3.5a.75.75 0 0 0-.75-.75h-3.5Zm7.55-5c.97 0 1.75.78 1.75 1.75v1.5a.75.75 0 0 0 1.5 0v-1.5C21 4.45 19.54 3 17.75 3h-1.5a.75.75 0 0 0 0 1.5h1.5Zm0 15c.97 0 1.75-.78 1.75-1.75v-1.5a.75.75 0 0 1 1.5 0v1.5c0 1.8-1.46 3.25-3.25 3.25h-1.5a.75.75 0 0 1 0-1.5h1.5Zm-11.5 0c-.97 0-1.75-.78-1.75-1.75v-1.5a.75.75 0 0 0-1.5 0v1.5C3 19.55 4.46 21 6.25 21h1.5a.75.75 0 0 0 0-1.5h-1.5Z\"]);\nexport const ResizeTable20Filled = /*#__PURE__*/createFluentIcon('ResizeTable20Filled', \"20\", [\"M5 2a3 3 0 0 0-3 3v2.35c.29-.32.62-.6 1-.81V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm10 16h-2.35c.32-.29.6-.62.81-1H15a2 2 0 0 0 2-2v-3.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3ZM11.5 2a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5ZM5 7a3 3 0 0 0-3 3h3V7Zm0 4v3H2v-3h3Zm0 4H2a3 3 0 0 0 3 3v-3Zm1 0h3v3H6v-3Zm0-1h3v-3H6v3Zm4 1h3a3 3 0 0 1-3 3v-3Zm0-4v3h3v-3h-3Zm0-1V7a3 3 0 0 1 3 3h-3ZM6 7h3v3H6V7Z\"]);\nexport const ResizeTable20Regular = /*#__PURE__*/createFluentIcon('ResizeTable20Regular', \"20\", [\"M5 2a3 3 0 0 0-3 3v2.35c.29-.32.62-.6 1-.81V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm10 16h-2.35c.32-.29.6-.62.81-1H15a2 2 0 0 0 2-2v-3.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3ZM11.5 2a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5ZM5 7a3 3 0 0 0-3 3v5a3 3 0 0 0 3 3h5a3 3 0 0 0 3-3v-5a3 3 0 0 0-3-3H5Zm-2 3c0-1.1.9-2 2-2v2H3Zm3 0V8h3v2H6Zm4 0V8a2 2 0 0 1 2 2h-2Zm-4 1h3v3H6v-3Zm4 0h2v3h-2v-3Zm-4 4h3v2H6v-2Zm6 0a2 2 0 0 1-2 2v-2h2Zm-9-4h2v3H3v-3Zm0 4h2v2a2 2 0 0 1-2-2Z\"]);\nexport const ResizeTable24Filled = /*#__PURE__*/createFluentIcon('ResizeTable24Filled', \"24\", [\"M5.25 2h5a.75.75 0 0 1 0 1.5h-5c-.97 0-1.75.78-1.75 1.75v2.96c-.58.2-1.1.55-1.5.99V5.25C2 3.45 3.46 2 5.25 2Zm10.54 18.5c-.2.58-.55 1.1-.99 1.5h3.95c1.8 0 3.25-1.46 3.25-3.25v-5a.75.75 0 0 0-1.5 0v5c0 .97-.78 1.75-1.75 1.75h-2.96Zm5.46-9.5c.41 0 .75-.34.75-.75v-5C22 3.45 20.54 2 18.75 2h-5a.75.75 0 0 0 0 1.5h5c.97 0 1.75.78 1.75 1.75v5c0 .41.34.75.75.75ZM7 9h3v3.5H7V9Zm0 5h3v3.5H7V14Zm4.5 0v3.5H15V14h-3.5ZM7 19h3v3H7v-3Zm4.5 0v3h.75A2.75 2.75 0 0 0 15 19.25V19h-3.5Zm0-10v3.5H15v-.75A2.75 2.75 0 0 0 12.25 9h-.75Zm-6 0h-.75A2.75 2.75 0 0 0 2 11.75v.75h3.5V9Zm0 5H2v3.5h3.5V14Zm0 5H2v.25A2.75 2.75 0 0 0 4.75 22h.75v-3Z\"]);\nexport const ResizeTable24Regular = /*#__PURE__*/createFluentIcon('ResizeTable24Regular', \"24\", [\"M5.25 2h5a.75.75 0 0 1 0 1.5h-5c-.97 0-1.75.78-1.75 1.75v3.13c-.58.26-1.1.65-1.5 1.13V5.25C2 3.45 3.46 2 5.25 2Zm10.37 18.5c-.26.58-.65 1.1-1.13 1.5h4.26c1.8 0 3.25-1.46 3.25-3.25v-5a.75.75 0 0 0-1.5 0v5c0 .97-.78 1.75-1.75 1.75h-3.13Zm5.63-9.5c.41 0 .75-.34.75-.75v-5C22 3.45 20.54 2 18.75 2h-5a.75.75 0 0 0 0 1.5h5c.97 0 1.75.78 1.75 1.75v5c0 .41.34.75.75.75Zm-16-2A3.25 3.25 0 0 0 2 12.25v6.5C2 20.55 3.46 22 5.25 22h6.5c1.8 0 3.25-1.46 3.25-3.25v-6.5C15 10.45 13.54 9 11.75 9h-6.5ZM3.5 12.25c0-.97.78-1.75 1.75-1.75H6V13H3.5v-.75ZM6 14.5V17H3.5v-2.5H6ZM7.5 17v-2.5h2V17h-2Zm3.5 0v-2.5h2.5V17H11Zm-3.5 1.5h2v2h-2v-2Zm3.5 0h2.5v.25c0 .97-.78 1.75-1.75 1.75H11v-2Zm0-8h.75c.97 0 1.75.78 1.75 1.75V13H11v-2.5ZM9.5 13h-2v-2.5h2V13ZM6 18.5v2h-.75c-.97 0-1.75-.78-1.75-1.75v-.25H6Z\"]);\nexport const ResizeVideo20Filled = /*#__PURE__*/createFluentIcon('ResizeVideo20Filled', \"20\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm6.5 0a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C18 3.45 16.54 2 14.75 2h-3ZM18 11.75a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3ZM3.5 10h4a2.5 2.5 0 0 1 2.5 2.5v4A2.5 2.5 0 0 1 7.5 19h-4A2.5 2.5 0 0 1 1 16.5v-4A2.5 2.5 0 0 1 3.5 10Zm.72 2.55a.5.5 0 0 0-.72.45v3a.5.5 0 0 0 .72.45l3-1.5a.5.5 0 0 0 0-.9l-3-1.5Z\"]);\nexport const ResizeVideo20Regular = /*#__PURE__*/createFluentIcon('ResizeVideo20Regular', \"20\", [\"M5 2a3 3 0 0 0-3 3v3.5a.5.5 0 0 0 1 0V5c0-1.1.9-2 2-2h3.5a.5.5 0 0 0 0-1H5Zm6.5 0a.5.5 0 0 0 0 1H15a2 2 0 0 1 2 2v3.5a.5.5 0 0 0 1 0V5a3 3 0 0 0-3-3h-3.5Zm6.5 9.5a.5.5 0 0 0-1 0V15a2 2 0 0 1-2 2h-3.5a.5.5 0 0 0 0 1H15a3 3 0 0 0 3-3v-3.5ZM3.5 10A2.5 2.5 0 0 0 1 12.5v4A2.5 2.5 0 0 0 3.5 19h4a2.5 2.5 0 0 0 2.5-2.5v-4A2.5 2.5 0 0 0 7.5 10h-4Zm.72 2.55 3 1.5a.5.5 0 0 1 0 .9l-3 1.5A.5.5 0 0 1 3.5 16v-3a.5.5 0 0 1 .72-.45Z\"]);\nexport const ResizeVideo24Filled = /*#__PURE__*/createFluentIcon('ResizeVideo24Filled', \"24\", [\"M21.25 13c.38 0 .7.28.74.65l.01.1v5a3.25 3.25 0 0 1-3.07 3.24l-.18.01h-4.67c.54-.39.98-.9 1.27-1.5h3.4c.92 0 1.67-.7 1.74-1.6l.01-.15v-5c0-.41.34-.75.75-.75Zm-9.5-4c1.8 0 3.25 1.46 3.25 3.25v6.5c0 1.8-1.45 3.25-3.25 3.25h-6.5A3.25 3.25 0 0 1 2 18.75v-6.5C2 10.45 3.46 9 5.25 9h6.5Zm-5.69 4.1a.5.5 0 0 0-.06.24v4.32a.5.5 0 0 0 .74.44l3.96-2.16a.5.5 0 0 0 0-.88L6.74 12.9a.5.5 0 0 0-.68.2ZM18.75 2A3.25 3.25 0 0 1 22 5.07v5.18a.75.75 0 0 1-1.5.1v-5.1c0-.92-.7-1.67-1.6-1.74l-.15-.01h-5a.75.75 0 0 1-.1-1.5h5.1Zm-8.5 0a.75.75 0 0 1 .1 1.5h-5.1c-.92 0-1.67.7-1.74 1.6l-.01.15v3.4c-.6.3-1.11.73-1.5 1.27V5.25a3.25 3.25 0 0 1 3.07-3.24L5.25 2h5Z\"]);\nexport const ResizeVideo24Regular = /*#__PURE__*/createFluentIcon('ResizeVideo24Regular', \"24\", [\"M21.25 13c.38 0 .7.28.74.65l.01.1v5a3.25 3.25 0 0 1-3.07 3.24l-.18.01h-4.67c.54-.39.98-.9 1.27-1.5h3.4c.92 0 1.67-.7 1.74-1.6l.01-.15v-5c0-.41.34-.75.75-.75Zm-9.5-4c1.8 0 3.25 1.46 3.25 3.25v6.5c0 1.8-1.45 3.25-3.25 3.25h-6.5A3.25 3.25 0 0 1 2 18.75v-6.5C2 10.45 3.46 9 5.25 9h6.5Zm0 1.5h-6.5c-.97 0-1.75.78-1.75 1.75v6.5c0 .97.78 1.75 1.75 1.75h6.5c.97 0 1.75-.78 1.75-1.75v-6.5c0-.97-.78-1.75-1.75-1.75Zm-5.69 2.6a.5.5 0 0 1 .6-.23l.08.03 3.96 2.16a.5.5 0 0 1 .07.83l-.07.05-3.96 2.16a.5.5 0 0 1-.73-.35l-.01-.1v-4.3a.5.5 0 0 1 .06-.25ZM18.75 2A3.25 3.25 0 0 1 22 5.07v5.18a.75.75 0 0 1-1.5.1v-5.1c0-.92-.7-1.67-1.6-1.74l-.15-.01h-5a.75.75 0 0 1-.1-1.5h5.1Zm-8.5 0a.75.75 0 0 1 .1 1.5h-5.1c-.92 0-1.67.7-1.74 1.6l-.01.15v3.4c-.6.3-1.11.73-1.5 1.27V5.25a3.25 3.25 0 0 1 3.07-3.24L5.25 2h5Z\"]);\nexport const Reward12Filled = /*#__PURE__*/createFluentIcon('Reward12Filled', \"12\", [\"M2.25 1C1.56 1 1 1.56 1 2.25v1.16c0 .55.3 1.05.77 1.31l2.88 1.6a3 3 0 1 0 2.7 0l2.88-1.6c.47-.26.77-.76.77-1.3V2.24C11 1.56 10.44 1 9.75 1h-7.5ZM5 5.37V2h2v3.37l-1 .56-1-.56ZM8 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const Reward12Regular = /*#__PURE__*/createFluentIcon('Reward12Regular', \"12\", [\"M2.25 1C1.56 1 1 1.56 1 2.25v1.16c0 .55.3 1.05.77 1.31l2.88 1.6a3 3 0 1 0 2.7 0l2.88-1.6c.47-.26.77-.76.77-1.3V2.24C11 1.56 10.44 1 9.75 1h-7.5ZM2 2.25c0-.14.11-.25.25-.25H4v2.82l-1.74-.97A.5.5 0 0 1 2 3.4V2.25Zm3 3.12V2h2v3.37l-1 .56-1-.56Zm3-.55V2h1.75c.14 0 .25.11.25.25v1.16a.5.5 0 0 1-.26.44L8 4.82ZM8 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\"]);\nexport const Reward16Filled = /*#__PURE__*/createFluentIcon('Reward16Filled', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v1.2c0 .51.27 1 .71 1.27l3.87 2.39a3 3 0 1 0 2.84 0l3.87-2.4c.44-.26.71-.75.71-1.27V3.5c0-.83-.67-1.5-1.5-1.5h-9ZM6 6.83V3h4v3.83L8.26 7.9a.5.5 0 0 1-.52 0L6 6.83ZM8 9a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z\"]);\nexport const Reward16Regular = /*#__PURE__*/createFluentIcon('Reward16Regular', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v1.2c0 .51.27 1 .71 1.27l3.87 2.39a3 3 0 1 0 2.84 0l3.87-2.4c.44-.26.71-.75.71-1.27V3.5c0-.83-.67-1.5-1.5-1.5h-9ZM3 3.5c0-.28.22-.5.5-.5H5v3.2L3.24 5.13A.5.5 0 0 1 3 4.69V3.5Zm3 3.33V3h4v3.83L8.26 7.9a.5.5 0 0 1-.52 0L6 6.83Zm5-.62V3h1.5c.28 0 .5.22.5.5v1.2a.5.5 0 0 1-.24.42L11 6.2ZM6 11a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"]);\nexport const Reward20Filled = /*#__PURE__*/createFluentIcon('Reward20Filled', \"20\", [\"M15.53 3c.82 0 1.5.67 1.5 1.5v1.4c0 .93-.53 1.8-1.37 2.22l-4.19 2.14a3.54 3.54 0 1 1-2.92 0L4.36 8.12a2.5 2.5 0 0 1-1.35-2.04L3 5.9V4.5C3 3.67 3.67 3 4.5 3h11.03ZM10 10.95a2.54 2.54 0 1 0 0 5.07 2.54 2.54 0 0 0 0-5.07ZM12.61 4h-5.2v4.55l2.38 1.22a.5.5 0 0 0 .45 0l2.38-1.22V4Z\"]);\nexport const Reward20Regular = /*#__PURE__*/createFluentIcon('Reward20Regular', \"20\", [\"M15.53 3c.83 0 1.5.67 1.5 1.5v1.4c0 .94-.53 1.8-1.36 2.22l-4.2 2.14a3.54 3.54 0 1 1-2.92 0L4.36 8.12a2.5 2.5 0 0 1-1.35-2.04V4.5C3 3.67 3.66 3 4.5 3h11.02ZM10 10.95a2.54 2.54 0 1 0 0 5.08 2.54 2.54 0 0 0 0-5.08ZM12.55 4H7.47V8.6L9.8 9.77a.5.5 0 0 0 .45 0l2.31-1.18V4ZM6.47 4H4.5a.5.5 0 0 0-.5.5v1.54c.06.5.36.96.82 1.2l1.65.84V4Zm9.06 0h-1.98v4.08l1.66-.85c.5-.25.82-.77.82-1.33V4.5a.5.5 0 0 0-.5-.5Z\"]);\nexport const Reward24Filled = /*#__PURE__*/createFluentIcon('Reward24Filled', \"24\", [\"M20.25 2c.97 0 1.75.78 1.75 1.75v3.04c0 1.03-.57 1.97-1.48 2.44l-6.3 3.29a5 5 0 1 1-4.44 0l-6.3-3.3A2.75 2.75 0 0 1 2 6.8V3.75C2 2.78 2.78 2 3.75 2h16.5ZM12 13.5a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm4-10H8v6.4l3.88 2.03c.08.04.16.04.24 0L16 9.9V3.5Z\"]);\nexport const Reward24Regular = /*#__PURE__*/createFluentIcon('Reward24Regular', \"24\", [\"M20.25 2c.97 0 1.75.78 1.75 1.75v3.04c0 1.03-.57 1.97-1.48 2.44l-6.28 3.28a5 5 0 1 1-4.48 0L3.48 9.23A2.75 2.75 0 0 1 2 6.79V3.75C2 2.78 2.78 2 3.75 2h16.5ZM12 13.48a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm3.5-9.98h-7v6.66l3.38 1.77c.08.04.16.04.24 0l3.38-1.77V3.5ZM7 3.5H3.75a.25.25 0 0 0-.25.25v3.04c0 .47.26.9.67 1.11L7 9.38V3.5Zm13.25 0H17v5.88l2.83-1.48c.41-.22.67-.64.67-1.1V3.74a.25.25 0 0 0-.25-.25Z\"]);\nexport const Rewind16Filled = /*#__PURE__*/createFluentIcon('Rewind16Filled', \"16\", [\"M8 4.46a1 1 0 0 0-1.58-.81l-5 3.53a1 1 0 0 0 0 1.64l5 3.53A1 1 0 0 0 8 11.54v-2.3l4.42 3.11a1 1 0 0 0 1.58-.81V4.46a1 1 0 0 0-1.58-.81L8 6.77v-2.3Z\"]);\nexport const Rewind16Regular = /*#__PURE__*/createFluentIcon('Rewind16Regular', \"16\", [\"M8 4.46a1 1 0 0 0-1.58-.81l-5 3.53a1 1 0 0 0 0 1.64l5 3.53A1 1 0 0 0 8 11.54v-2.3l4.42 3.11a1 1 0 0 0 1.58-.81V4.46a1 1 0 0 0-1.58-.81L8 6.77v-2.3Zm0 3.55v-.02l5-3.53v7.08L8 8Zm-1 3.53L1.99 8 7 4.46v7.08Z\"]);\nexport const Rewind20Filled = /*#__PURE__*/createFluentIcon('Rewind20Filled', \"20\", [\"M10 5.49a1 1 0 0 0-1.6-.8l-5.87 4.3c-.68.5-.68 1.52 0 2.02l5.88 4.31a1 1 0 0 0 1.59-.8v-3.17l5.4 3.97a1 1 0 0 0 1.6-.8V5.48a1 1 0 0 0-1.6-.8L10 8.64V5.49Zm-1.6-.8.3.39Z\"]);\nexport const Rewind20Regular = /*#__PURE__*/createFluentIcon('Rewind20Regular', \"20\", [\"M10 5.49a1 1 0 0 0-1.6-.8l-5.87 4.3c-.68.5-.68 1.52 0 2.02l5.88 4.31a1 1 0 0 0 1.59-.8v-3.17l5.4 3.97a1 1 0 0 0 1.6-.8V5.48a1 1 0 0 0-1.6-.8L10 8.64V5.49Zm-6.88 4.3L9 5.5v9.02l-5.88-4.3a.25.25 0 0 1 0-.41Zm7 0L16 5.5v9.02l-5.88-4.3a.25.25 0 0 1 0-.41Z\"]);\nexport const Rewind24Filled = /*#__PURE__*/createFluentIcon('Rewind24Filled', \"24\", [\"M10.03 4.36A1.5 1.5 0 0 1 12.5 5.5v4l6.03-5.14A1.5 1.5 0 0 1 21 5.51V18.5c0 .88-.7 1.48-1.46 1.5h-.09c-.32 0-.64-.12-.92-.36l-6.03-5.13v3.99a1.5 1.5 0 0 1-2.47 1.14l-7.41-6.3a1.75 1.75 0 0 1 0-2.67l7.41-6.3Zm-7.41 6.3.49.58Z\"]);\nexport const Rewind24Regular = /*#__PURE__*/createFluentIcon('Rewind24Regular', \"24\", [\"M12.5 5.5a1.5 1.5 0 0 0-2.47-1.14l-7.41 6.3c-.82.7-.82 1.97 0 2.67l7.4 6.3a1.5 1.5 0 0 0 2.48-1.13v-4l6.03 5.14A1.5 1.5 0 0 0 21 18.5v-13a1.5 1.5 0 0 0-2.47-1.14L12.5 9.5V5.5Zm0 7.04v-1.08l7-5.96v13l-7-5.96Zm-8.9-.73L11 5.5V18.5l-7.4-6.31a.25.25 0 0 1 0-.38Z\"]);\nexport const Rewind28Filled = /*#__PURE__*/createFluentIcon('Rewind28Filled', \"28\", [\"M12.36 4.86A1.63 1.63 0 0 1 15 6.13v4.57l7.36-5.84A1.63 1.63 0 0 1 25 6.13v15.74a1.63 1.63 0 0 1-2.64 1.28L15 17.3v4.56a1.63 1.63 0 0 1-2.64 1.27L2.73 15.5a1.92 1.92 0 0 1 0-3l9.63-7.64Z\"]);\nexport const Rewind28Regular = /*#__PURE__*/createFluentIcon('Rewind28Regular', \"28\", [\"m15 17.3 7.36 5.84c1.07.85 2.64.09 2.64-1.27V6.13a1.63 1.63 0 0 0-2.64-1.27L15 10.7V6.13a1.63 1.63 0 0 0-2.64-1.27L2.73 12.5a1.92 1.92 0 0 0 0 3l9.63 7.64c1.07.85 2.64.09 2.64-1.27V17.3Zm0-4.69 8.3-6.58a.12.12 0 0 1 .06-.03c.02 0 .04 0 .07.02l.05.04.02.07v15.74c0 .03 0 .05-.02.07a.13.13 0 0 1-.05.04.13.13 0 0 1-.07.02l-.06-.03-8.3-6.58V12.6Zm-1.7-6.58a.12.12 0 0 1 .06-.03c.02 0 .04 0 .07.02l.05.04.02.07v15.74l-.02.07a.13.13 0 0 1-.05.04.13.13 0 0 1-.07.02l-.06-.03-9.64-7.64a.42.42 0 0 1 0-.66l9.64-7.64Z\"]);\nexport const Rhombus16Filled = /*#__PURE__*/createFluentIcon('Rhombus16Filled', \"16\", [\"M3.9 4.07C4.16 3.42 4.8 3 5.5 3h7.75c1.25 0 2.1 1.28 1.61 2.43l-2.74 6.5c-.28.65-.91 1.07-1.62 1.07H2.76a1.75 1.75 0 0 1-1.62-2.43l2.75-6.5Z\"]);\nexport const Rhombus16Regular = /*#__PURE__*/createFluentIcon('Rhombus16Regular', \"16\", [\"M3.9 4.07C4.16 3.42 4.8 3 5.5 3h7.75c1.25 0 2.1 1.28 1.61 2.43l-2.74 6.5c-.28.65-.91 1.07-1.62 1.07H2.76a1.75 1.75 0 0 1-1.62-2.43l2.75-6.5ZM5.5 4c-.3 0-.57.18-.69.46l-2.75 6.5c-.2.5.16 1.04.7 1.04h7.74c.3 0 .58-.18.7-.46l2.74-6.5A.75.75 0 0 0 13.25 4H5.5Z\"]);\nexport const Rhombus20Filled = /*#__PURE__*/createFluentIcon('Rhombus20Filled', \"20\", [\"M4.89 4.3A2 2 0 0 1 6.76 3H17a2 2 0 0 1 1.87 2.7l-3.76 10a2 2 0 0 1-1.87 1.3H3a2 2 0 0 1-1.87-2.7l3.76-10Z\"]);\nexport const Rhombus20Regular = /*#__PURE__*/createFluentIcon('Rhombus20Regular', \"20\", [\"M4.89 4.3A2 2 0 0 1 6.76 3H17a2 2 0 0 1 1.87 2.7l-3.76 10a2 2 0 0 1-1.87 1.3H3a2 2 0 0 1-1.87-2.7l3.76-10ZM6.76 4a1 1 0 0 0-.93.65l-3.76 10A1 1 0 0 0 3 16h10.24a1 1 0 0 0 .93-.65l3.76-10A1 1 0 0 0 17 4H6.76Z\"]);\nexport const Rhombus24Filled = /*#__PURE__*/createFluentIcon('Rhombus24Filled', \"24\", [\"M5.8 5.4A2.25 2.25 0 0 1 7.9 4h12.85c1.6 0 2.69 1.61 2.09 3.1L18.2 18.6A2.25 2.25 0 0 1 16.1 20H3.25a2.25 2.25 0 0 1-2.08-3.1L5.8 5.4Z\"]);\nexport const Rhombus24Regular = /*#__PURE__*/createFluentIcon('Rhombus24Regular', \"24\", [\"M5.8 5.4A2.25 2.25 0 0 1 7.9 4h12.85c1.6 0 2.69 1.61 2.09 3.1L18.2 18.6A2.25 2.25 0 0 1 16.1 20H3.25a2.25 2.25 0 0 1-2.08-3.1L5.8 5.4Zm2.1.1c-.31 0-.59.19-.7.47l-4.64 11.5c-.2.5.16 1.03.7 1.03H16.1c.3 0 .58-.19.7-.47l4.64-11.5a.75.75 0 0 0-.7-1.03H7.9Z\"]);\nexport const Rhombus28Filled = /*#__PURE__*/createFluentIcon('Rhombus28Filled', \"28\", [\"M6.55 5.93A3 3 0 0 1 9.35 4H24a3 3 0 0 1 2.8 4.07l-5.36 14a3 3 0 0 1-2.8 1.93H4a3 3 0 0 1-2.8-4.07l5.35-14Z\"]);\nexport const Rhombus28Regular = /*#__PURE__*/createFluentIcon('Rhombus28Regular', \"28\", [\"M6.55 5.93A3 3 0 0 1 9.35 4H24a3 3 0 0 1 2.8 4.07l-5.36 14a3 3 0 0 1-2.8 1.93H4a3 3 0 0 1-2.8-4.07l5.35-14Zm2.8-.43a1.5 1.5 0 0 0-1.4.96l-5.35 14A1.5 1.5 0 0 0 4 22.5h14.64a1.5 1.5 0 0 0 1.4-.96l5.36-14A1.5 1.5 0 0 0 24 5.5H9.36Z\"]);\nexport const Rhombus32Filled = /*#__PURE__*/createFluentIcon('Rhombus32Filled', \"32\", [\"M10.52 5C9.2 5 8 5.8 7.51 7.04l-6.2 15.5A3.25 3.25 0 0 0 4.32 27h17.16c1.33 0 2.52-.8 3.01-2.04l6.2-15.5A3.25 3.25 0 0 0 27.68 5H10.52Z\"]);\nexport const Rhombus32Regular = /*#__PURE__*/createFluentIcon('Rhombus32Regular', \"32\", [\"M7.5 7.04A3.25 3.25 0 0 1 10.53 5h17.16c2.3 0 3.87 2.32 3.01 4.46l-6.2 15.5A3.25 3.25 0 0 1 21.48 27H4.32a3.25 3.25 0 0 1-3.01-4.46l6.2-15.5ZM10.53 7c-.5 0-.97.31-1.16.79l-6.2 15.5c-.33.82.28 1.71 1.16 1.71h17.16c.5 0 .97-.31 1.16-.79l6.2-15.5A1.25 1.25 0 0 0 27.68 7H10.52Z\"]);\nexport const Rhombus48Filled = /*#__PURE__*/createFluentIcon('Rhombus48Filled', \"48\", [\"M12 11.04A4.75 4.75 0 0 1 16.45 8h23.8a4.75 4.75 0 0 1 4.44 6.46l-8.69 22.5A4.75 4.75 0 0 1 31.56 40H7.76a4.75 4.75 0 0 1-4.44-6.46l8.69-22.5Z\"]);\nexport const Rhombus48Regular = /*#__PURE__*/createFluentIcon('Rhombus48Regular', \"48\", [\"M12 11.04A4.75 4.75 0 0 1 16.45 8h23.8a4.75 4.75 0 0 1 4.44 6.46l-8.69 22.5A4.75 4.75 0 0 1 31.56 40H7.76a4.75 4.75 0 0 1-4.44-6.46l8.69-22.5Zm4.44-.54c-.93 0-1.77.57-2.1 1.44l-8.68 22.5a2.25 2.25 0 0 0 2.1 3.06h23.8c.93 0 1.77-.57 2.1-1.44l8.69-22.5a2.25 2.25 0 0 0-2.1-3.06H16.44Z\"]);\nexport const Ribbon12Filled = /*#__PURE__*/createFluentIcon('Ribbon12Filled', \"12\", [\"M6 8a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm0 1c.73 0 1.41-.2 2-.54v2.04a.5.5 0 0 1-.78.42L6 10.1l-1.22.82A.5.5 0 0 1 4 10.5V8.46c.59.35 1.27.54 2 .54Z\"]);\nexport const Ribbon12Regular = /*#__PURE__*/createFluentIcon('Ribbon12Regular', \"12\", [\"M3.5 4.5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0ZM6 1a3.5 3.5 0 0 0-2 6.37v3.13a.5.5 0 0 0 .78.42L6 10.1l1.22.82A.5.5 0 0 0 8 10.5V7.37A3.5 3.5 0 0 0 6 1Zm1 6.86v1.7l-.72-.48a.5.5 0 0 0-.56 0L5 9.57V7.86a3.5 3.5 0 0 0 2 0Z\"]);\nexport const Ribbon16Filled = /*#__PURE__*/createFluentIcon('Ribbon16Filled', \"16\", [\"M8 1a5 5 0 1 0 0 10A5 5 0 0 0 8 1ZM5 14.5v-3.3a5.97 5.97 0 0 0 6 0v3.3a.5.5 0 0 1-.76.43L8 13.58l-2.24 1.35A.5.5 0 0 1 5 14.5Z\"]);\nexport const Ribbon16Regular = /*#__PURE__*/createFluentIcon('Ribbon16Regular', \"16\", [\"M8 1a5 5 0 0 0-3 9v4.5a.5.5 0 0 0 .76.43L8 13.58l2.24 1.35a.5.5 0 0 0 .76-.43V10a5 5 0 0 0-3-9ZM4 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm6 4.58v3.04l-1.74-1.05a.5.5 0 0 0-.52 0L6 13.62v-3.04a4.98 4.98 0 0 0 4 0Z\"]);\nexport const Ribbon20Filled = /*#__PURE__*/createFluentIcon('Ribbon20Filled', \"20\", [\"M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0Zm-6 7c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L10 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 10 15Z\"]);\nexport const Ribbon20Regular = /*#__PURE__*/createFluentIcon('Ribbon20Regular', \"20\", [\"M16 8c0 1.78-.77 3.37-2 4.47v5.03a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03A5.98 5.98 0 0 1 10 2a6 6 0 0 1 6 6Zm-6 6c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.2c-.88.5-1.9.8-3 .8Zm0-1a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"]);\nexport const Ribbon24Filled = /*#__PURE__*/createFluentIcon('Ribbon24Filled', \"24\", [\"M17 15.24v6c0 .61-.68.97-1.18.62L12 19.17l-3.82 2.69A.75.75 0 0 1 7 21.25v-6a7.97 7.97 0 0 0 10 0ZM12 2a7 7 0 1 1 0 14 7 7 0 0 1 0-14Z\"]);\nexport const Ribbon24Regular = /*#__PURE__*/createFluentIcon('Ribbon24Regular', \"24\", [\"M12 2a7 7 0 0 1 5 11.9v7.35c0 .57-.6.92-1.1.67l-.08-.06L12 19.18l-3.82 2.68a.75.75 0 0 1-1.17-.5v-.11L7 13.9A7 7 0 0 1 12 2Zm3.5 17.8v-4.74a6.97 6.97 0 0 1-7 0v4.74l3.07-2.15a.75.75 0 0 1 .76-.06l.1.06 3.07 2.16v-4.75 4.75ZM12 3.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z\"]);\nexport const Ribbon32Filled = /*#__PURE__*/createFluentIcon('Ribbon32Filled', \"32\", [\"M10 21.81V29a1 1 0 0 0 1.51.86l4.49-2.7 4.49 2.7A1 1 0 0 0 22 29v-7.19a11.45 11.45 0 0 1-12 0Zm12-1.8a9.96 9.96 0 0 1-12.36-.3A10 10 0 1 1 22 20Z\"]);\nexport const Ribbon32Regular = /*#__PURE__*/createFluentIcon('Ribbon32Regular', \"32\", [\"M16 2a10 10 0 0 0-6 18v9a1 1 0 0 0 1.51.86l4.49-2.7 4.49 2.7A1 1 0 0 0 22 29v-9a9.98 9.98 0 0 0-6-18ZM8 12a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm12 9.17v6.06l-3.49-2.09a1 1 0 0 0-1.02 0L12 27.24v-6.07a9.97 9.97 0 0 0 8 0Z\"]);\nexport const RibbonAdd20Filled = /*#__PURE__*/createFluentIcon('RibbonAdd20Filled', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5Zm-6 2c0-1.28.44-2.45 1.17-3.39A6 6 0 1 0 14.2 11 5.5 5.5 0 0 1 9 5.5ZM9 15c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L9 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 9 15Z\"]);\nexport const RibbonAdd20Regular = /*#__PURE__*/createFluentIcon('RibbonAdd20Regular', \"20\", [\"M19 5.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V5h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V6h1.5a.5.5 0 0 0 0-1H15V3.5ZM9 2c.4 0 .79.04 1.17.11-.23.29-.42.6-.59.92a5 5 0 1 0 3.54 7.8c.35.09.71.14 1.08.16a6.03 6.03 0 0 1-1.2 1.48v5.03a.5.5 0 0 1-.75.43L9 16.08l-3.25 1.85A.5.5 0 0 1 5 17.5v-5.03A5.98 5.98 0 0 1 9 2Zm0 12c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L12 16.64V13.2c-.88.5-1.9.8-3 .8Z\"]);\nexport const RibbonAdd24Filled = /*#__PURE__*/createFluentIcon('RibbonAdd24Filled', \"24\", [\"M23 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM18 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H17V3.5a.5.5 0 1 1 1 0V6h2.5a.5.5 0 0 1 0 1H18Zm-7-.5c0-1.65.62-3.16 1.63-4.3A7.02 7.02 0 0 0 4 9a7 7 0 0 0 12.77 3.96A6.5 6.5 0 0 1 11 6.5Zm5 8.75v6c0 .6-.68.96-1.18.61L11 19.17l-3.82 2.7A.75.75 0 0 1 6 21.24v-6a7.97 7.97 0 0 0 10 0Z\"]);\nexport const RibbonAdd24Regular = /*#__PURE__*/createFluentIcon('RibbonAdd24Regular', \"24\", [\"M23 6.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM18 7v2.5a.5.5 0 1 1-1 0V7h-2.5a.5.5 0 0 1 0-1H17V3.5a.5.5 0 0 1 1 0V6h2.5a.5.5 0 0 1 0 1H18Zm-7-5c.56 0 1.1.07 1.63.2-.36.4-.67.85-.92 1.35a5.5 5.5 0 1 0 3.47 9.03c.5.19 1.04.32 1.6.38-.24.33-.5.65-.78.94v7.35c0 .57-.6.92-1.1.67l-.08-.06L11 19.17l-3.82 2.7a.75.75 0 0 1-1.17-.52v-.1L6 13.9A7 7 0 0 1 11 2Zm3.5 17.8v-4.74a6.97 6.97 0 0 1-7 0v4.74l3.07-2.16a.75.75 0 0 1 .76-.06l.1.06 3.07 2.16Z\"]);\nexport const RibbonOff12Filled = /*#__PURE__*/createFluentIcon('RibbonOff12Filled', \"12\", [\"M2.68 3.39a3.5 3.5 0 0 0 4.43 4.43l.73.73A3.98 3.98 0 0 1 4 8.46v2.04a.5.5 0 0 0 .78.42L6 10.1l1.22.82A.5.5 0 0 0 8 10.5V8.7l2.15 2.15a.5.5 0 0 0 .7-.7l-9-9a.5.5 0 1 0-.7.7L2.68 3.4ZM9.5 4.5c0 .8-.27 1.55-.73 2.14l-4.91-4.9A3.5 3.5 0 0 1 9.5 4.5Z\"]);\nexport const RibbonOff12Regular = /*#__PURE__*/createFluentIcon('RibbonOff12Regular', \"12\", [\"M2.68 3.39 1.15 1.85a.5.5 0 1 1 .7-.7l9 9a.5.5 0 0 1-.7.7L8 8.71v1.79a.5.5 0 0 1-.78.42L6 10.1l-1.22.82A.5.5 0 0 1 4 10.5V7.37A3.5 3.5 0 0 1 2.68 3.4Zm3.6 3.6L3.52 4.21l-.02.28a2.5 2.5 0 0 0 2.78 2.48ZM8.5 4.5c0 .53-.17 1.02-.45 1.43l.72.71a3.5 3.5 0 0 0-4.91-4.91l.71.72A2.5 2.5 0 0 1 8.5 4.5ZM7 7.86a3.5 3.5 0 0 1-2 0v1.7l.72-.48a.5.5 0 0 1 .56 0l.72.49V7.86Z\"]);\nexport const RibbonOff16Filled = /*#__PURE__*/createFluentIcon('RibbonOff16Filled', \"16\", [\"M3.38 4.09A4.98 4.98 0 0 0 8 11c.68 0 1.32-.13 1.91-.38l.76.76A5.98 5.98 0 0 1 5 11.2v3.3a.5.5 0 0 0 .76.43L8 13.58l2.24 1.35a.5.5 0 0 0 .76-.43v-2.8l3.15 3.15a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L3.38 4.1ZM13 6c0 1.35-.53 2.57-1.4 3.47L4.53 2.4A4.98 4.98 0 0 1 13 6Z\"]);\nexport const RibbonOff16Regular = /*#__PURE__*/createFluentIcon('RibbonOff16Regular', \"16\", [\"M3.38 4.09 1.15 1.85a.5.5 0 1 1 .7-.7l13 13a.5.5 0 0 1-.7.7L11 11.71v2.79a.5.5 0 0 1-.76.43L8 13.58l-2.24 1.35A.5.5 0 0 1 5 14.5V10a5 5 0 0 1-1.62-5.91Zm6.53 6.53A4.98 4.98 0 0 1 6 10.58v3.04l1.74-1.05a.5.5 0 0 1 .52 0L10 13.62V10.7l-.09-.09Zm-.78-.78L4.16 4.87a4 4 0 0 0 4.97 4.97ZM12 6c0 1.07-.42 2.05-1.11 2.77l.7.7A4.98 4.98 0 0 0 8 1c-1.35 0-2.57.53-3.47 1.4l.7.71A3.99 3.99 0 0 1 12 6Z\"]);\nexport const RibbonOff20Filled = /*#__PURE__*/createFluentIcon('RibbonOff20Filled', \"20\", [\"M4.62 5.33a6 6 0 0 0 8.04 8.04l.75.75A6.97 6.97 0 0 1 6 13.75v3.75a.5.5 0 0 0 .8.4L10 16l3.2 1.9a.5.5 0 0 0 .8-.4v-2.8l3.15 3.15a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l2.47 2.48Zm1.2-1.63 8.48 8.48A6 6 0 0 0 5.82 3.7Z\"]);\nexport const RibbonOff20Regular = /*#__PURE__*/createFluentIcon('RibbonOff20Regular', \"20\", [\"M4.62 5.33 2.15 2.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7L14 14.71v2.79a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03a5.98 5.98 0 0 1-1.38-7.14Zm8.05 8.05A5.98 5.98 0 0 1 7 13.2v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.7l-.33-.33Zm-.76-.76L5.38 6.1A4.98 4.98 0 0 0 10 13c.68 0 1.32-.13 1.91-.38ZM15 8c0 1.35-.53 2.57-1.4 3.47l.7.71A6 6 0 0 0 5.82 3.7l.7.7A4.98 4.98 0 0 1 15 8Z\"]);\nexport const RibbonOff24Filled = /*#__PURE__*/createFluentIcon('RibbonOff24Filled', \"24\", [\"M5.45 6.51A6.98 6.98 0 0 0 12 16c.88 0 1.71-.16 2.49-.45l.76.76A7.97 7.97 0 0 1 7 15.25v6c0 .6.69.96 1.18.6L12 19.18l3.82 2.69c.5.35 1.18 0 1.18-.61v-3.19l3.72 3.72a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06l3.23 3.23Zm1.7-2.55 9.89 9.9a7 7 0 0 0-9.9-9.9Z\"]);\nexport const RibbonOff24Regular = /*#__PURE__*/createFluentIcon('RibbonOff24Regular', \"24\", [\"M5.45 6.51 2.22 3.28a.75.75 0 1 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L17 18.06v3.19c0 .57-.6.92-1.1.67l-.08-.06L12 19.18l-3.82 2.68a.75.75 0 0 1-1.17-.5v-.11L7 13.9A6.98 6.98 0 0 1 5.45 6.5ZM15.5 16.56l-1.01-1.01a6.98 6.98 0 0 1-5.99-.49v4.74l3.07-2.15a.75.75 0 0 1 .76-.06l.1.06 3.07 2.16v-3.25Zm-2.21-2.21L6.65 7.7a5.51 5.51 0 0 0 6.64 6.64ZM17.5 9c0 1.47-.58 2.81-1.52 3.8l1.06 1.06a7 7 0 0 0-9.9-9.9L8.2 5.02A5.5 5.5 0 0 1 17.5 9Z\"]);\nexport const RibbonOff32Filled = /*#__PURE__*/createFluentIcon('RibbonOff32Filled', \"32\", [\"M6.76 8.17A9.97 9.97 0 0 0 10 20a9.96 9.96 0 0 0 9.83 1.24l1.13 1.14A11.45 11.45 0 0 1 10 21.8V29a1 1 0 0 0 1.51.86l4.49-2.7 4.49 2.7A1 1 0 0 0 22 29v-5.59l6.3 6.3a1 1 0 0 0 1.4-1.42l-26-26a1 1 0 0 0-1.4 1.42l4.46 4.46Zm1.94-3L22.83 19.3A10 10 0 1 0 8.7 5.17Z\"]);\nexport const RibbonOff32Regular = /*#__PURE__*/createFluentIcon('RibbonOff32Regular', \"32\", [\"M6.76 8.17 2.29 3.71a1 1 0 0 1 1.42-1.42l26 26a1 1 0 1 1-1.42 1.42L22 23.4V29a1 1 0 0 1-1.51.86L16 27.16l-4.49 2.7A1 1 0 0 1 10 29v-9A9.98 9.98 0 0 1 6.76 8.17Zm13.07 13.07a9.97 9.97 0 0 1-7.83-.07v6.06l3.49-2.09a1 1 0 0 1 1.02 0l3.49 2.1V21.4l-.17-.17Zm-1.57-1.56L8.32 9.74a8 8 0 0 0 9.94 9.94ZM24 12c0 2.33-1 4.42-2.58 5.88l1.41 1.42A10 10 0 1 0 8.7 5.17l1.41 1.41A8 8 0 0 1 24 12Z\"]);\nexport const RibbonStar20Filled = /*#__PURE__*/createFluentIcon('RibbonStar20Filled', \"20\", [\"M16 8A6 6 0 1 1 4 8a6 6 0 0 1 12 0ZM9.85 5.1l-.72 1.55a.18.18 0 0 1-.14.1l-1.7.2c-.14.02-.2.2-.1.3l1.26 1.17c.05.04.07.1.05.16l-.33 1.68c-.03.15.13.26.26.19l1.49-.84a.18.18 0 0 1 .17 0l1.5.84c.12.07.28-.04.25-.19l-.33-1.68a.17.17 0 0 1 .05-.16l1.26-1.16a.18.18 0 0 0-.1-.3l-1.7-.2a.17.17 0 0 1-.14-.1l-.72-1.56a.17.17 0 0 0-.31 0ZM10 15c1.49 0 2.87-.46 4-1.25v3.75a.5.5 0 0 1-.8.4L10 16l-3.2 1.9a.5.5 0 0 1-.8-.4v-3.75A6.97 6.97 0 0 0 10 15Z\"]);\nexport const RibbonStar20Regular = /*#__PURE__*/createFluentIcon('RibbonStar20Regular', \"20\", [\"M10.16 5.1a.18.18 0 0 0-.31 0l-.72 1.55a.18.18 0 0 1-.14.1l-1.7.2c-.15.02-.2.2-.1.3l1.26 1.17c.05.04.07.1.05.16l-.33 1.68c-.03.15.13.26.26.19l1.49-.84a.17.17 0 0 1 .17 0l1.5.84c.12.07.28-.04.25-.19l-.33-1.68a.18.18 0 0 1 .05-.16l1.26-1.16a.17.17 0 0 0-.1-.3l-1.7-.2a.18.18 0 0 1-.14-.1l-.72-1.56ZM16 8c0 1.78-.77 3.37-2 4.47v5.03a.5.5 0 0 1-.75.43L10 16.08l-3.25 1.85A.5.5 0 0 1 6 17.5v-5.03A5.98 5.98 0 0 1 10 2a6 6 0 0 1 6 6Zm-6 6c-1.1 0-2.12-.3-3-.8v3.44l2.75-1.57a.5.5 0 0 1 .5 0L13 16.64V13.2c-.88.5-1.9.8-3 .8Zm0-1a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"]);\nexport const RibbonStar24Filled = /*#__PURE__*/createFluentIcon('RibbonStar24Filled', \"24\", [\"M17 21.25v-6a7.97 7.97 0 0 1-10 0v6c0 .6.69.96 1.18.6L12 19.18l3.82 2.69c.5.35 1.18 0 1.18-.61ZM19 9A7 7 0 1 0 5 9a7 7 0 0 0 14 0Zm-6.77-3.36.91 1.86 2.05.29c.2.03.29.29.14.44l-1.48 1.44.35 2.03c.03.21-.19.37-.37.27L12 11.01l-1.83.96a.25.25 0 0 1-.37-.27l.35-2.03-1.48-1.44a.26.26 0 0 1 .14-.44l2.05-.3.91-1.85c.1-.19.37-.19.46 0Z\"]);\nexport const RibbonStar24Regular = /*#__PURE__*/createFluentIcon('RibbonStar24Regular', \"24\", [\"m12.23 5.64.91 1.86 2.05.29c.2.03.29.29.14.44l-1.48 1.44.35 2.03c.03.21-.19.37-.37.27L12 11.01l-1.83.96a.25.25 0 0 1-.37-.27l.35-2.03-1.48-1.44a.26.26 0 0 1 .14-.44l2.05-.3.91-1.85c.1-.19.37-.19.46 0ZM19 9a7 7 0 1 0-12 4.9V21.35c.08.55.71.84 1.18.51L12 19.18l3.82 2.68.09.06a.75.75 0 0 0 1.09-.67V13.9c1.24-1.26 2-3 2-4.9Zm-3.5 6.06v4.75l-3.07-2.16-.1-.06a.75.75 0 0 0-.76.06L8.5 19.8v-4.74a6.97 6.97 0 0 0 7 0ZM6.5 9a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Z\"]);\nexport const RoadCone16Filled = /*#__PURE__*/createFluentIcon('RoadCone16Filled', \"16\", [\"M7.46 1a1 1 0 0 0-.97.76L5.06 7.5H8.5a.5.5 0 0 1 0 1H4.8l-.5 2h4.95a.5.5 0 0 1 0 1h-5.2L3.44 14H1.5a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-1.93L9.5 1.76A1 1 0 0 0 8.54 1H7.46Z\"]);\nexport const RoadCone16Regular = /*#__PURE__*/createFluentIcon('RoadCone16Regular', \"16\", [\"M7.46 1a1 1 0 0 0-.97.76L3.43 14H1.5a.5.5 0 0 0 0 1h13a.5.5 0 0 0 0-1h-1.93L9.5 1.76A1 1 0 0 0 8.54 1H7.46Zm4.08 13H4.46l.63-2.5h4.16a.5.5 0 0 0 0-1H5.34l.5-2H8.5a.5.5 0 0 0 0-1H6.09L7.46 2h1.08l3 12Z\"]);\nexport const RoadCone20Filled = /*#__PURE__*/createFluentIcon('RoadCone20Filled', \"20\", [\"M8.42 2.76A1 1 0 0 1 9.4 2h1.23a1 1 0 0 1 .96.74L15.38 17h2.12a.5.5 0 0 1 0 1h-15a.5.5 0 0 1 0-1h2.11l.8-3h6.09a.5.5 0 0 0 0-1H5.69l.45-1.63.1-.37h4.26a.5.5 0 0 0 0-1H6.52c.68-2.48 1.35-4.96 1.9-7.24Z\"]);\nexport const RoadCone20Regular = /*#__PURE__*/createFluentIcon('RoadCone20Regular', \"20\", [\"M9.38 2a1 1 0 0 0-.96.74L4.62 17H2.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-2.12l-3.8-14.26a1 1 0 0 0-.96-.74H9.38ZM5.65 17l.8-3h5.05a.5.5 0 0 0 0-1H6.72l.53-2h3.25a.5.5 0 0 0 0-1H7.52l1.86-7h1.24l3.73 14h-8.7Z\"]);\nexport const RoadCone24Filled = /*#__PURE__*/createFluentIcon('RoadCone24Filled', \"24\", [\"M11.2 2c-.58 0-1.08.4-1.22.96A325.4 325.4 0 0 1 7.59 12h5.16a.75.75 0 0 1 0 1.5H7.18l-.55 2h7.12a.75.75 0 0 1 0 1.5H6.22l-.93 3.5H2.75a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5h-2.54L14.02 2.93a1.25 1.25 0 0 0-1.2-.93h-1.63Z\"]);\nexport const RoadCone24Regular = /*#__PURE__*/createFluentIcon('RoadCone24Regular', \"24\", [\"M11.18 2c-.56 0-1.06.38-1.2.93L5.29 20.5H2.75a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5h-2.54L14.02 2.93a1.25 1.25 0 0 0-1.2-.93h-1.64ZM6.84 20.5l.94-3.5h5.97a.75.75 0 0 0 0-1.5H8.18l.53-2h4.04a.75.75 0 0 0 0-1.5H9.11l2.27-8.5h1.24l4.54 17H6.84Z\"]);\nexport const RoadCone28Filled = /*#__PURE__*/createFluentIcon('RoadCone28Filled', \"28\", [\"M12.98 2c-.56 0-1.05.38-1.2.92L8.67 14.25h6.58a.75.75 0 0 1 0 1.5h-7l-.68 2.5h8.68a.75.75 0 0 1 0 1.5H7.16l-1.3 4.75H3.08a.75.75 0 0 0 0 1.5h21.84a.75.75 0 1 0 0-1.5h-2.78L16.22 2.92a1.25 1.25 0 0 0-1.2-.92h-2.04Z\"]);\nexport const RoadCone28Regular = /*#__PURE__*/createFluentIcon('RoadCone28Regular', \"28\", [\"M12.98 2c-.56 0-1.06.38-1.2.92L5.86 24.5H3.08a.75.75 0 0 0 0 1.5h21.84a.75.75 0 1 0 0-1.5h-2.78L16.22 2.92a1.25 1.25 0 0 0-1.2-.92h-2.04Zm-5.5 22.25 1.24-4.5h7.53a.75.75 0 0 0 0-1.5H9.13l.68-2.5h5.44a.75.75 0 0 0 0-1.5h-5.03L13.17 3.5h1.66l5.69 20.75H7.48Z\"]);\nexport const RoadCone32Filled = /*#__PURE__*/createFluentIcon('RoadCone32Filled', \"32\", [\"M14.77 2a1.5 1.5 0 0 0-1.43 1.06L9.4 16H17a1 1 0 1 1 0 2H8.8l-.81 2.67H18.5a1 1 0 1 1 0 2h-11l-.12-.01L5.76 28H3a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2h-2.76L18.66 3.06A1.5 1.5 0 0 0 17.23 2h-2.46Z\"]);\nexport const RoadCone32Regular = /*#__PURE__*/createFluentIcon('RoadCone32Regular', \"32\", [\"M14.77 2a1.5 1.5 0 0 0-1.43 1.06L5.76 28H3a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2h-2.76L18.66 3.06A1.5 1.5 0 0 0 17.23 2h-2.46ZM7.85 28l1.66-5.46a1 1 0 0 0 .49.13h8.5a1 1 0 1 0 0-2h-8.42l.8-2.67H17a1 1 0 1 0 0-2h-5.5l3.64-12h1.72l7.3 24H7.84Z\"]);\nexport const RoadCone48Filled = /*#__PURE__*/createFluentIcon('RoadCone48Filled', \"48\", [\"M22.39 4a2.5 2.5 0 0 0-2.43 1.91A650.69 650.69 0 0 1 15.19 24H25.5a1.5 1.5 0 1 1 0 3H14.36l-1.1 4H27.5a1.5 1.5 0 0 1 0 3H12.44c-.65 2.4-1.27 4.74-1.86 7H5.5a1.5 1.5 0 0 0 0 3h37a1.5 1.5 0 1 0 0-3h-5.08L28.05 5.86A2.5 2.5 0 0 0 25.63 4H22.4Z\"]);\nexport const RoadCone48Regular = /*#__PURE__*/createFluentIcon('RoadCone48Regular', \"48\", [\"M22.37 4a2.5 2.5 0 0 0-2.42 1.86L10.58 41H5.5a1.5 1.5 0 0 0 0 3h37a1.5 1.5 0 1 0 0-3h-5.08L28.05 5.86A2.5 2.5 0 0 0 25.63 4h-3.26Zm-8.68 37 1.86-7H27.5a1.5 1.5 0 0 0 0-3H16.35l1.07-4h8.08a1.5 1.5 0 0 0 0-3h-7.28l4.53-17h2.5l9.06 34H13.7Z\"]);\nexport const Rocket16Filled = /*#__PURE__*/createFluentIcon('Rocket16Filled', \"16\", [\"M8.36 5.35a1.62 1.62 0 1 1 2.3 2.3 1.62 1.62 0 0 1-2.3-2.3Zm1.59.7a.62.62 0 0 0-.88 0 .62.62 0 0 0 0 .88c.25.25.64.25.88 0a.62.62 0 0 0 0-.87ZM7.5 11l.17.17c.39.4.94.52 1.44.4l.85.84c.2.2.51.2.7 0l1.08-1.07c.66-.66.75-1.66.3-2.41l.54-.55a4.84 4.84 0 0 0 1.2-4.88c-.2-.6-.67-1.08-1.27-1.27a4.84 4.84 0 0 0-4.88 1.2l-.55.54a1.97 1.97 0 0 0-2.41.3L3.6 5.34a.5.5 0 0 0 0 .7l.85.86c-.13.5 0 1.05.39 1.44L5 8.5l-.77.46a.5.5 0 0 0-.1.78l2.13 2.12a.5.5 0 0 0 .78-.1L7.5 11Zm5.32-7.2a3.84 3.84 0 0 1-.94 3.87l-2.8 2.8a.5.5 0 0 1-.7 0l-.62-.62-1.6-1.6-.62-.62a.5.5 0 0 1 0-.7l2.8-2.8a3.84 3.84 0 0 1 3.87-.95c.29.1.52.33.61.62Zm-7.97 8.06a.5.5 0 1 0-.7-.7l-1.33 1.32a.5.5 0 1 0 .7.7l1.33-1.32ZM3.79 10.1c.2.2.2.5 0 .7l-.53.53a.5.5 0 1 1-.7-.7l.52-.53c.2-.2.51-.2.7 0Zm2.12 2.83a.5.5 0 1 0-.7-.71l-.54.53a.5.5 0 1 0 .71.7l.53-.52Z\"]);\nexport const Rocket16Regular = /*#__PURE__*/createFluentIcon('Rocket16Regular', \"16\", [\"M8.36 5.35a1.62 1.62 0 1 1 2.3 2.3 1.62 1.62 0 0 1-2.3-2.3Zm1.59.7a.62.62 0 0 0-.88 0 .62.62 0 0 0 0 .88c.25.25.64.25.88 0a.62.62 0 0 0 0-.87Zm3.83-2.55c-.2-.6-.67-1.08-1.27-1.27a4.84 4.84 0 0 0-4.88 1.2L7 4.04a2.38 2.38 0 0 0-2.62.5l-.78.79a.5.5 0 0 0 0 .7l.85.86c-.13.5 0 1.05.39 1.44L5 8.5l-.77.46a.5.5 0 0 0-.1.78l2.13 2.12a.5.5 0 0 0 .78-.1L7.5 11l.17.17c.39.4.94.52 1.44.4l.85.84c.2.2.51.2.7 0l.8-.78c.7-.71.87-1.76.5-2.63l.62-.62a4.84 4.84 0 0 0 1.2-4.88Zm-1.57-.32c.29.1.52.33.61.62a3.84 3.84 0 0 1-.94 3.87l-2.8 2.8a.5.5 0 0 1-.7 0L5.53 7.62a.5.5 0 0 1 0-.7l2.8-2.8a3.84 3.84 0 0 1 3.87-.95Zm-1.07 6.64c.04.39-.1.8-.4 1.1l-.43.43-.35-.35 1.18-1.18ZM5.1 5.26c.3-.3.7-.43 1.1-.4L5 6.04l-.35-.35.43-.43Zm1.68 5.01-.26.44L5.29 9.5l.44-.27 1.04 1.04Zm-1.92 1.6a.5.5 0 1 0-.7-.71l-1.33 1.32a.5.5 0 1 0 .7.7l1.33-1.32ZM3.79 10.1c.2.2.2.5 0 .7l-.53.53a.5.5 0 1 1-.7-.7l.52-.53c.2-.2.51-.2.7 0Zm2.12 2.83a.5.5 0 1 0-.7-.71l-.54.53a.5.5 0 1 0 .71.7l.53-.52Z\"]);\nexport const Rocket20Filled = /*#__PURE__*/createFluentIcon('Rocket20Filled', \"20\", [\"M10.76 6.43a2 2 0 1 1 2.82 2.82 2 2 0 0 1-2.82-2.82Zm2.11.7a1 1 0 1 0-1.4 1.41 1 1 0 0 0 1.4-1.4ZM9.44 13.6l.6.6a1.5 1.5 0 0 0 1.71.3l1.12 1.12c.2.2.51.2.7 0L15 14.2c.86-.86.96-2.17.31-3.14l.85-.85a6.3 6.3 0 0 0 1.56-6.33 2.43 2.43 0 0 0-1.6-1.6A6.3 6.3 0 0 0 9.8 3.86l-.85.85A2.5 2.5 0 0 0 5.8 5L4.38 6.43a.5.5 0 0 0 0 .7L5.5 8.27a1.5 1.5 0 0 0 .3 1.7l.6.61-1.21.73a.5.5 0 0 0-.1.78l2.83 2.83a.5.5 0 0 0 .79-.1l.73-1.21Zm7.32-9.42a5.3 5.3 0 0 1-1.3 5.33l-4 4a.5.5 0 0 1-.7 0l-1.07-1.07-2.12-2.12L6.5 9.24a.5.5 0 0 1 0-.7l3.99-4a5.3 5.3 0 0 1 5.33-1.3c.44.13.8.48.93.93ZM5.8 14.91a.5.5 0 0 0-.7-.7l-1.77 1.76a.5.5 0 1 0 .7.7l1.77-1.76ZM4.4 12.79c.2.2.2.5 0 .7l-.7.71a.5.5 0 1 1-.72-.7l.71-.71c.2-.2.51-.2.71 0Zm2.83 3.53a.5.5 0 1 0-.7-.7l-.72.7a.5.5 0 1 0 .71.71l.71-.7Z\"]);\nexport const Rocket20Regular = /*#__PURE__*/createFluentIcon('Rocket20Regular', \"20\", [\"M10.76 6.43a2 2 0 1 1 2.82 2.82 2 2 0 0 1-2.82-2.82Zm2.11.7a1 1 0 1 0-1.4 1.42 1 1 0 0 0 1.4-1.42Zm-1.12 7.37a1.5 1.5 0 0 1-1.7-.3l-.61-.6-.74 1.22a.5.5 0 0 1-.78.1L5.1 12.09a.5.5 0 0 1 .1-.79l1.22-.73-.61-.6a1.5 1.5 0 0 1-.3-1.71L4.38 7.14a.5.5 0 0 1 0-.7l1.06-1.07a3 3 0 0 1 3.42-.59l.93-.93a6.3 6.3 0 0 1 6.33-1.56c.76.24 1.36.83 1.6 1.6a6.3 6.3 0 0 1-1.56 6.32l-.94.94a3 3 0 0 1-.58 3.41l-1.06 1.06a.5.5 0 0 1-.71 0l-1.12-1.12Zm4.08-11.26a5.3 5.3 0 0 0-5.33 1.31l-.81.82-.7.7h-.01L6.86 8.2l-.4.4a.5.5 0 0 0 .05.66l4.24 4.24c.18.18.46.2.66.05l.4-.4 2.12-2.12.7-.71.82-.81a5.3 5.3 0 0 0 1.31-5.33c-.14-.45-.49-.8-.93-.94Zm-3.31 10.62.7.7.7-.7a2 2 0 0 0 .53-1.93l-1.93 1.93Zm-4.44-8.3a2 2 0 0 0-1.93.52l-.7.7.7.71 1.93-1.93Zm.63 7.31L7.14 11.3l-.89.53 1.93 1.93.53-.89Zm-2.9 2.04a.5.5 0 1 0-.71-.7l-1.77 1.76a.5.5 0 1 0 .7.71l1.77-1.77ZM4.38 12.8c.2.2.2.51 0 .7l-.71.72a.5.5 0 0 1-.7-.71l.7-.71c.2-.2.51-.2.7 0Zm2.83 3.54a.5.5 0 0 0-.7-.71l-.72.7a.5.5 0 1 0 .7.72l.72-.71Z\"]);\nexport const Rocket24Filled = /*#__PURE__*/createFluentIcon('Rocket24Filled', \"24\", [\"M13.06 7.43a2.5 2.5 0 1 1 3.53 3.54 2.5 2.5 0 0 1-3.53-3.54Zm2.47 1.06a1 1 0 1 0-1.41 1.42 1 1 0 0 0 1.41-1.42Zm4.17-5.98c.86.27 1.54.95 1.8 1.81l.21.67c.75 2.4.1 5-1.67 6.77l-1 1a3.5 3.5 0 0 1-.32 4.57l-1.25 1.24c-.29.3-.76.3-1.06 0l-1.59-1.59-.17.18c-.69.68-1.8.68-2.48 0l-.48-.49-.82 1.4a.75.75 0 0 1-1.17.14l-3.9-3.89a.75.75 0 0 1 .15-1.17l1.39-.83-.47-.47a1.75 1.75 0 0 1 0-2.47l.18-.18-1.6-1.6a.75.75 0 0 1 0-1.05L6.7 5.3a3.5 3.5 0 0 1 4.57-.32l1-1a6.75 6.75 0 0 1 6.77-1.67l.66.2Zm.38 2.26c-.13-.4-.43-.7-.83-.83l-.66-.2a5.25 5.25 0 0 0-5.27 1.3l-5.4 5.4c-.1.1-.1.25 0 .35l5.31 5.3c.1.1.26.1.36 0l5.4-5.39a5.25 5.25 0 0 0 1.3-5.27l-.21-.66ZM6.69 18.39a.75.75 0 0 0-1.06-1.06l-2.48 2.48a.75.75 0 0 0 1.06 1.06l2.48-2.48Zm-1.94-3c.29.3.29.77 0 1.06l-1.07 1.06a.75.75 0 0 1-1.06-1.06l1.06-1.06c.3-.3.77-.3 1.07 0Zm3.88 4.95a.75.75 0 1 0-1.06-1.06l-1.06 1.06a.75.75 0 0 0 1.06 1.06l1.06-1.06Z\"]);\nexport const Rocket24Regular = /*#__PURE__*/createFluentIcon('Rocket24Regular', \"24\", [\"M13.06 7.43a2.5 2.5 0 1 1 3.53 3.54 2.5 2.5 0 0 1-3.53-3.54Zm2.47 1.06a1 1 0 1 0-1.41 1.42 1 1 0 0 0 1.41-1.42Zm5.98-4.17a2.75 2.75 0 0 0-1.81-1.8l-.66-.21c-2.4-.75-5-.1-6.78 1.67l-1 1a3.5 3.5 0 0 0-4.56.32L5.45 6.55c-.29.29-.29.76 0 1.06l1.6 1.59-.18.18c-.69.68-.69 1.79 0 2.47l.5.5-1.4.8a.75.75 0 0 0-.16 1.17l3.89 3.9a.75.75 0 0 0 1.18-.16l.8-1.4.5.5c.68.68 1.78.68 2.47 0l.17-.18 1.6 1.6c.29.28.76.28 1.05 0l1.25-1.25a3.5 3.5 0 0 0 .32-4.57l1-1A6.75 6.75 0 0 0 21.72 5l-.21-.67Zm-2.26-.38c.4.13.7.43.83.83l.2.66c.58 1.86.08 3.9-1.3 5.27l-5.4 5.4c-.1.1-.25.1-.35 0l-5.3-5.3a.25.25 0 0 1 0-.36l5.4-5.4a5.25 5.25 0 0 1 5.26-1.3l.66.2Zm-1.29 9.9a2 2 0 0 1-.3 2.43l-.72.71-1.06-1.06 2.08-2.08ZM7.76 6.36a2 2 0 0 1 2.43-.3L8.1 8.14 7.05 7.08l.7-.72Zm2.82 9.2-.52.9-2.5-2.5.9-.51 2.12 2.11ZM6.69 18.4a.75.75 0 0 0-1.06-1.06l-2.48 2.48a.75.75 0 0 0 1.06 1.06l2.48-2.48Zm-1.94-3c.29.3.29.77 0 1.06l-1.07 1.06a.75.75 0 0 1-1.06-1.06l1.06-1.06c.3-.3.77-.3 1.07 0Zm3.88 4.95a.75.75 0 1 0-1.06-1.06l-1.06 1.06a.75.75 0 0 0 1.06 1.06l1.06-1.06Z\"]);\nexport const RotateLeft20Filled = /*#__PURE__*/createFluentIcon('RotateLeft20Filled', \"20\", [\"M12.39 12a.53.53 0 0 1-.54-.52c0-.29.24-.52.54-.52h.35c1.77 0 3.2-1.08 3.2-2.42 0-1.3-1.35-2.36-3.04-2.42H7.82L9.04 7.3c.2.2.2.53 0 .73a.54.54 0 0 1-.7.05l-.06-.05-2.12-2.08a.51.51 0 0 1 0-.73l2.12-2.08.06-.05c.21-.15.5-.13.7.05.2.2.2.53 0 .74L7.82 5.08h4.92C15.1 5.08 17 6.63 17 8.54S15.1 12 12.74 12h-.35Zm-9-3c-.21 0-.39.17-.39.38v6.87c0 .41.36.75.8.75h12.8a.4.4 0 0 0 .35-.19.37.37 0 0 0-.15-.51L3.6 9.05A.41.41 0 0 0 3.4 9Z\"]);\nexport const RotateLeft20Regular = /*#__PURE__*/createFluentIcon('RotateLeft20Regular', \"20\", [\"M12.39 12a.53.53 0 0 1-.54-.52c0-.29.24-.52.54-.52h.35c1.77 0 3.2-1.08 3.2-2.42 0-1.3-1.35-2.36-3.04-2.42H7.82L9.04 7.3c.2.2.2.53 0 .73a.54.54 0 0 1-.7.05l-.06-.05-2.12-2.08a.51.51 0 0 1 0-.73l2.12-2.08.06-.05c.21-.15.5-.13.7.05.2.2.2.53 0 .74L7.82 5.08h4.92C15.1 5.08 17 6.63 17 8.54S15.1 12 12.74 12h-.35ZM4 10.41V16h10.18L4 10.41ZM3.8 17a.77.77 0 0 1-.8-.75V9.38c0-.21.18-.38.4-.38.07 0 .14.02.2.05l13.2 7.25c.2.1.26.33.15.51a.4.4 0 0 1-.35.19H3.8Z\"]);\nexport const RotateLeft24Filled = /*#__PURE__*/createFluentIcon('RotateLeft24Filled', \"24\", [\"M14.5 15a.75.75 0 0 1 0-1.5h.5c2.49 0 4.5-1.57 4.5-3.5 0-1.87-1.9-3.4-4.28-3.5H8.06l1.72 1.72a.75.75 0 0 1-.98 1.13l-.08-.07-3-3a.75.75 0 0 1 0-1.06l3-3 .08-.07a.75.75 0 0 1 .98 1.13L8.06 5H15c3.31 0 6 2.24 6 5s-2.69 5-6 5h-.5Zm-11-4.63a.5.5 0 0 0-.5.5V20a1 1 0 0 0 1 1h16.14a.5.5 0 0 0 .25-.93L3.75 10.43a.5.5 0 0 0-.25-.06Z\"]);\nexport const RotateLeft24Regular = /*#__PURE__*/createFluentIcon('RotateLeft24Regular', \"24\", [\"M15.02 5h.26c1.16.05 2.24.37 3.13.89C19.98 6.79 21 8.29 21 10c0 1.7-1.03 3.22-2.6 4.12-.96.55-2.14.88-3.4.88h-.5a.75.75 0 1 1 0-1.5h.5a5.4 5.4 0 0 0 2.59-.64c1.15-.63 1.91-1.68 1.91-2.86s-.76-2.23-1.91-2.86a5.36 5.36 0 0 0-2.37-.64H8.06l1.72 1.72a.75.75 0 0 1-.98 1.13l-.08-.07-3-3-.02-.02a.75.75 0 0 1 .02-1.04l3-3 .08-.07a.75.75 0 0 1 .98 1.13L8.06 5h6.96Zm5.37 15.07a.5.5 0 0 1-.25.93H4a1 1 0 0 1-1-1v-9.13a.5.5 0 0 1 .75-.44l16.64 9.64Zm-3.97-.57L4.5 12.6v6.9h11.92Z\"]);\nexport const RotateRight20Filled = /*#__PURE__*/createFluentIcon('RotateRight20Filled', \"20\", [\"M7.61 12c.3 0 .54-.23.54-.52a.53.53 0 0 0-.54-.52h-.35c-1.77 0-3.2-1.08-3.2-2.42 0-1.3 1.35-2.36 3.04-2.42h5.08L10.96 7.3c-.2.2-.2.53 0 .73.2.18.49.2.7.05l.06-.05 2.12-2.08c.21-.2.21-.53 0-.73l-2.12-2.08-.06-.05a.54.54 0 0 0-.7.05c-.2.2-.2.53 0 .74l1.22 1.19H7.26C4.9 5.08 3 6.63 3 8.54S4.9 12 7.26 12h.35Zm9-3c.21 0 .39.17.39.38v6.87c0 .41-.36.75-.8.75H3.4a.4.4 0 0 1-.35-.19.37.37 0 0 1 .15-.51l13.2-7.25a.41.41 0 0 1 .2-.05Z\"]);\nexport const RotateRight20Regular = /*#__PURE__*/createFluentIcon('RotateRight20Regular', \"20\", [\"M7.61 12c.3 0 .54-.23.54-.52a.53.53 0 0 0-.54-.52h-.35c-1.77 0-3.2-1.08-3.2-2.42 0-1.3 1.35-2.36 3.04-2.42h5.08L10.96 7.3c-.2.2-.2.53 0 .73.2.18.49.2.7.05l.06-.05 2.12-2.08c.21-.2.21-.53 0-.73l-2.12-2.08-.06-.05a.54.54 0 0 0-.7.05c-.2.2-.2.53 0 .74l1.22 1.19H7.26C4.9 5.08 3 6.63 3 8.54S4.9 12 7.26 12h.35ZM16 10.41V16H5.82L16 10.41Zm.2 6.59c.44 0 .8-.34.8-.75V9.38c0-.21-.18-.38-.4-.38a.41.41 0 0 0-.2.05L3.2 16.3a.37.37 0 0 0-.15.51c.07.12.2.19.35.19h12.8Z\"]);\nexport const RotateRight24Filled = /*#__PURE__*/createFluentIcon('RotateRight24Filled', \"24\", [\"M9.5 15a.75.75 0 0 0 0-1.5H9c-2.49 0-4.5-1.57-4.5-3.5 0-1.87 1.9-3.4 4.28-3.5h7.16l-1.72 1.72a.75.75 0 0 0 .98 1.13l.08-.07 3-3c.3-.3.3-.77 0-1.06l-3-3-.08-.07a.75.75 0 0 0-.98 1.13L15.94 5H9c-3.31 0-6 2.24-6 5s2.69 5 6 5h.5Zm11-4.63c.28 0 .5.22.5.5V20a1 1 0 0 1-1 1H3.86a.5.5 0 0 1-.25-.93l16.64-9.64a.5.5 0 0 1 .25-.06Z\"]);\nexport const RotateRight24Regular = /*#__PURE__*/createFluentIcon('RotateRight24Regular', \"24\", [\"M8.98 5h-.26a6.79 6.79 0 0 0-3.13.89A4.82 4.82 0 0 0 3 10c0 1.7 1.03 3.22 2.6 4.12.96.55 2.14.88 3.4.88h.5a.75.75 0 0 0 0-1.5H9a5.4 5.4 0 0 1-2.59-.64C5.26 12.23 4.5 11.18 4.5 10s.76-2.23 1.91-2.86c.68-.37 1.49-.6 2.37-.64h7.16l-1.72 1.72a.75.75 0 0 0 .98 1.13l.08-.07 3-3 .02-.02a.75.75 0 0 0-.02-1.04l-3-3-.08-.07a.75.75 0 0 0-.98 1.13L15.94 5H8.98ZM3.61 20.07a.5.5 0 0 0 .25.93H20a1 1 0 0 0 1-1v-9.13a.5.5 0 0 0-.75-.44L3.6 20.07Zm3.97-.57 11.92-6.9v6.9H7.58Z\"]);\nexport const Router20Filled = /*#__PURE__*/createFluentIcon('Router20Filled', \"20\", [\"M3.5 9.5a6.5 6.5 0 0 1 13 0 .5.5 0 0 0 1 0 7.5 7.5 0 0 0-15 0 .5.5 0 0 0 1 0Zm6.5-4a4 4 0 0 0-4 4 .5.5 0 0 1-1 0 5 5 0 0 1 10 0 .5.5 0 0 1-1 0 4 4 0 0 0-4-4ZM7.75 9.25a2.25 2.25 0 1 1 2.75 2.2V13h4a2.5 2.5 0 0 1 0 5h-9a2.5 2.5 0 0 1 0-5h4v-1.56a2.25 2.25 0 0 1-1.75-2.19Z\"]);\nexport const Router20Regular = /*#__PURE__*/createFluentIcon('Router20Regular', \"20\", [\"M3.5 9.5a6.5 6.5 0 0 1 13 0 .5.5 0 0 0 1 0 7.5 7.5 0 0 0-15 0 .5.5 0 0 0 1 0Zm6.5-4a4 4 0 0 0-4 4 .5.5 0 0 1-1 0 5 5 0 0 1 10 0 .5.5 0 0 1-1 0 4 4 0 0 0-4-4ZM7.75 9.25a2.25 2.25 0 1 1 2.75 2.2V13h4a2.5 2.5 0 0 1 0 5h-9a2.5 2.5 0 0 1 0-5h4v-1.56a2.25 2.25 0 0 1-1.75-2.19ZM10 8a1.25 1.25 0 1 0 0 2.5A1.25 1.25 0 0 0 10 8Zm-4.5 6a1.5 1.5 0 0 0 0 3h9a1.5 1.5 0 0 0 0-3h-9Z\"]);\nexport const Router24Filled = /*#__PURE__*/createFluentIcon('Router24Filled', \"24\", [\"M12 3.5A7.5 7.5 0 0 0 4.5 11v.25a.75.75 0 0 1-1.5 0V11a9 9 0 0 1 18 0v.25a.75.75 0 0 1-1.5 0V11A7.5 7.5 0 0 0 12 3.5Zm0 3A4.5 4.5 0 0 0 7.5 11v.25a.75.75 0 0 1-1.5 0V11a6 6 0 1 1 12 0v.25a.75.75 0 0 1-1.5 0V11A4.5 4.5 0 0 0 12 6.5ZM9 11a3 3 0 1 1 3.75 2.9V16H18a3 3 0 1 1 0 6H6a3 3 0 1 1 0-6h5.25v-2.1A3 3 0 0 1 9 11Z\"]);\nexport const Router24Regular = /*#__PURE__*/createFluentIcon('Router24Regular', \"24\", [\"M12 3.5A7.5 7.5 0 0 0 4.5 11v.25a.75.75 0 0 1-1.5 0V11a9 9 0 0 1 18 0v.25a.75.75 0 0 1-1.5 0V11A7.5 7.5 0 0 0 12 3.5Zm0 3A4.5 4.5 0 0 0 7.5 11v.25a.75.75 0 0 1-1.5 0V11a6 6 0 1 1 12 0v.25a.75.75 0 0 1-1.5 0V11A4.5 4.5 0 0 0 12 6.5ZM12 8a3 3 0 0 0-.75 5.9V16H6a3 3 0 1 0 0 6h12a3 3 0 1 0 0-6h-5.25v-2.1A3 3 0 0 0 12 8Zm-1.5 3a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM6 17.5h12a1.5 1.5 0 0 1 0 3H6a1.5 1.5 0 0 1 0-3Z\"]);\nexport const RowTriple20Filled = /*#__PURE__*/createFluentIcon('RowTriple20Filled', \"20\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v1C3 5.33 3.67 6 4.5 6h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Zm0 6C3.67 8 3 8.67 3 9.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Zm0 6c-.83 0-1.5.67-1.5 1.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const RowTriple20Regular = /*#__PURE__*/createFluentIcon('RowTriple20Regular', \"20\", [\"M3 3.5C3 2.67 3.67 2 4.5 2h11c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 4.5v-1ZM4.5 3a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-11ZM3 9.5C3 8.67 3.67 8 4.5 8h11c.83 0 1.5.67 1.5 1.5v1c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 10.5v-1ZM4.5 9a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-11Zm0 5c-.83 0-1.5.67-1.5 1.5v1c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-1c0-.83-.67-1.5-1.5-1.5h-11ZM4 15.5c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-1Z\"]);\nexport const RowTriple24Filled = /*#__PURE__*/createFluentIcon('RowTriple24Filled', \"24\", [\"M5.75 2.02C4.78 2.02 4 2.8 4 3.77v2.5c0 .97.78 1.75 1.75 1.75h12.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75H5.75Zm0 7C4.78 9.02 4 9.8 4 10.77v2.5c0 .97.78 1.75 1.75 1.75h12.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75H5.75Zm0 7c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h12.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75H5.75Z\"]);\nexport const RowTriple24Regular = /*#__PURE__*/createFluentIcon('RowTriple24Regular', \"24\", [\"M4 3.77c0-.97.78-1.75 1.75-1.75h12.5c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75H5.75C4.78 8.02 4 7.24 4 6.27v-2.5Zm1.75-.25a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h12.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25H5.75ZM4 10.77c0-.97.78-1.75 1.75-1.75h12.5c.97 0 1.75.78 1.75 1.75v2.5c0 .97-.78 1.75-1.75 1.75H5.75c-.97 0-1.75-.78-1.75-1.75v-2.5Zm1.75-.25a.25.25 0 0 0-.25.25v2.5c0 .14.11.25.25.25h12.5c.14 0 .25-.11.25-.25v-2.5a.25.25 0 0 0-.25-.25H5.75Zm0 5.5c-.97 0-1.75.78-1.75 1.75v2.5c0 .97.78 1.75 1.75 1.75h12.5c.97 0 1.75-.78 1.75-1.75v-2.5c0-.97-.78-1.75-1.75-1.75H5.75Zm-.25 1.75c0-.14.11-.25.25-.25h12.5c.14 0 .25.11.25.25v2.5c0 .14-.11.25-.25.25H5.75a.25.25 0 0 1-.25-.25v-2.5Z\"]);\nexport const Rss16Filled = /*#__PURE__*/createFluentIcon('Rss16Filled', \"16\", [\"M11.5 2h-7A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2Zm-6 9.25a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm3-.25a.5.5 0 0 1-.5-.5A2.5 2.5 0 0 0 5.5 8a.5.5 0 0 1 0-1A3.5 3.5 0 0 1 9 10.5a.5.5 0 0 1-.5.5Zm3 0a.5.5 0 0 1-.5-.5A5.5 5.5 0 0 0 5.5 5a.5.5 0 0 1 0-1 6.5 6.5 0 0 1 6.5 6.5.5.5 0 0 1-.5.5Z\"]);\nexport const Rss16Regular = /*#__PURE__*/createFluentIcon('Rss16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7ZM4.5 3C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7Zm1 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM9 10.5A3.5 3.5 0 0 0 5.5 7a.5.5 0 0 0 0 1A2.5 2.5 0 0 1 8 10.5a.5.5 0 0 0 1 0Zm3 0A6.5 6.5 0 0 0 5.5 4a.5.5 0 0 0 0 1 5.5 5.5 0 0 1 5.5 5.5.5.5 0 0 0 1 0Z\"]);\nexport const Rss20Filled = /*#__PURE__*/createFluentIcon('Rss20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm.5 3a7.5 7.5 0 0 1 7.5 7.5.5.5 0 0 1-1 0A6.5 6.5 0 0 0 6.5 7a.5.5 0 0 1 0-1ZM6 9.5c0-.28.22-.5.5-.5a4.5 4.5 0 0 1 4.5 4.5.5.5 0 0 1-1 0A3.5 3.5 0 0 0 6.5 10a.5.5 0 0 1-.5-.5ZM7 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const Rss20Regular = /*#__PURE__*/createFluentIcon('Rss20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Zm2.5 0a.5.5 0 0 0 0 1 6.5 6.5 0 0 1 6.5 6.5.5.5 0 0 0 1 0A7.5 7.5 0 0 0 6.5 6ZM6 9.5c0-.28.22-.5.5-.5a4.5 4.5 0 0 1 4.5 4.5.5.5 0 0 1-1 0A3.5 3.5 0 0 0 6.5 10a.5.5 0 0 1-.5-.5ZM7 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const Rss24Filled = /*#__PURE__*/createFluentIcon('Rss24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25Zm.5 4.5A.74.74 0 0 1 6 6.78v-.06c0-.39.3-.72.7-.72h.05C12.96 6 18 11.04 18 17.25v.05c0 .4-.33.7-.72.7h-.06a.74.74 0 0 1-.72-.75A9.75 9.75 0 0 0 6.75 7.5ZM13.29 18h-.09c-.4 0-.7-.35-.7-.75a5.75 5.75 0 0 0-5.75-5.75c-.4 0-.75-.3-.75-.7v-.1a.69.69 0 0 1 .75-.7A7.25 7.25 0 0 1 14 17.33c0 .38-.33.67-.7.67ZM7.5 18a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z\"]);\nexport const Rss24Regular = /*#__PURE__*/createFluentIcon('Rss24Regular', \"24\", [\"M6.75 7.5A.74.74 0 0 1 6 6.78v-.06c0-.39.3-.72.7-.72h.05C12.96 6 18 11.04 18 17.25v.05c0 .4-.33.7-.72.7h-.06a.74.74 0 0 1-.72-.75A9.75 9.75 0 0 0 6.75 7.5Z\", \"M13.3 18a.69.69 0 0 0 .7-.75A7.25 7.25 0 0 0 6.67 10a.69.69 0 0 0-.67.7v.1c0 .4.35.7.75.7a5.75 5.75 0 0 1 5.75 5.75c0 .4.3.75.7.75h.1Z\", \"M9 16.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\", \"M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z\"]);\nexport const Ruler16Filled = /*#__PURE__*/createFluentIcon('Ruler16Filled', \"16\", [\"M9.5 2c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 5 12.5v-9C5 2.67 5.67 2 6.5 2h3Zm-2 9a.5.5 0 0 0 0-1H6v1h1.5ZM8 8.5a.5.5 0 0 0 0-1H6v1h2ZM7.5 6a.5.5 0 0 0 0-1H6v1h1.5Z\"]);\nexport const Ruler16Regular = /*#__PURE__*/createFluentIcon('Ruler16Regular', \"16\", [\"M11 3.5c0-.83-.67-1.5-1.5-1.5h-3C5.67 2 5 2.67 5 3.5v9c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-9ZM9.5 3c.28 0 .5.22.5.5v9a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5V11h1.5a.5.5 0 0 0 0-1H6V8.5h2a.5.5 0 1 0 0-1H6V6h1.5a.5.5 0 1 0 0-1H6V3.5c0-.28.22-.5.5-.5h3Z\"]);\nexport const Ruler20Filled = /*#__PURE__*/createFluentIcon('Ruler20Filled', \"20\", [\"m13.97 3.2.03.3v13c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 6 16.5v-13A1.5 1.5 0 0 1 7.5 2h5c.72 0 1.33.51 1.47 1.2ZM7 14.5v1h1.5a.5.5 0 0 0 0-1H7Zm0-10v1h1.5a.5.5 0 0 0 0-1H7ZM7 7v1h2.5a.5.5 0 0 0 0-1H7Zm0 2.5v1h1.5a.5.5 0 0 0 0-1H7ZM7 12v1h2.5a.5.5 0 1 0 0-1H7Z\"]);\nexport const Ruler20Regular = /*#__PURE__*/createFluentIcon('Ruler20Regular', \"20\", [\"M14 3.5c0-.83-.67-1.5-1.5-1.5h-5C6.67 2 6 2.67 6 3.5v13c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-13ZM7 13h2.5a.5.5 0 0 0 0-1H7v-1.5h1.5a.5.5 0 0 0 0-1H7V8h2.5a.5.5 0 0 0 0-1H7V5.5h1.5a.5.5 0 0 0 0-1H7v-1c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5v13a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5v-1h1.5a.5.5 0 0 0 0-1H7V13Z\"]);\nexport const Ruler24Filled = /*#__PURE__*/createFluentIcon('Ruler24Filled', \"24\", [\"M7 4.25C7 3.01 8 2 9.25 2h5.5C15.99 2 17 3 17 4.25v15.5c0 1.24-1 2.25-2.25 2.25h-5.5A2.26 2.26 0 0 1 7 19.75V4.25ZM8.5 5v1.5h1.75a.75.75 0 0 0 0-1.5H8.5Zm0 3v1.5h3.75a.75.75 0 0 0 0-1.5H8.5Zm0 3.25v1.5h1.75a.75.75 0 0 0 0-1.5H8.5Zm0 3.25V16h3.75a.75.75 0 0 0 0-1.5H8.5Zm0 3V19h1.75a.75.75 0 0 0 0-1.5H8.5Z\"]);\nexport const Ruler24Regular = /*#__PURE__*/createFluentIcon('Ruler24Regular', \"24\", [\"M9.25 2C8.01 2 7 3 7 4.25v15.5C7 20.99 8 22 9.25 22h5.5c1.24 0 2.25-1 2.25-2.25V4.25C17 3.01 16 2 14.75 2h-5.5ZM8.5 19h1.75a.75.75 0 0 0 0-1.5H8.5V16h3.75a.75.75 0 0 0 0-1.5H8.5v-1.75h1.75a.75.75 0 0 0 0-1.5H8.5V9.5h3.75a.75.75 0 0 0 0-1.5H8.5V6.5h1.75a.75.75 0 0 0 0-1.5H8.5v-.75c0-.41.34-.75.75-.75h5.5c.41 0 .75.34.75.75v15.5c0 .41-.34.75-.75.75h-5.5a.75.75 0 0 1-.75-.75V19Z\"]);\nexport const Ruler28Filled = /*#__PURE__*/createFluentIcon('Ruler28Filled', \"28\", [\"M9 2.63c.48-.4 1.09-.63 1.75-.63h6.5A2.75 2.75 0 0 1 20 4.75v18.5A2.75 2.75 0 0 1 17.25 26h-6.5A2.75 2.75 0 0 1 8 23.25V4.75a2.74 2.74 0 0 1 1-2.12Zm.5 3.12v1.5h2.75a.75.75 0 0 0 0-1.5H9.5Zm0 3.75V11h4.75a.75.75 0 0 0 0-1.5H9.5Zm0 3.75v1.5h2.75a.75.75 0 0 0 0-1.5H9.5Zm0 3.75v1.5h4.75a.75.75 0 0 0 0-1.5H9.5Zm0 3.75v1.5h2.75a.75.75 0 0 0 0-1.5H9.5Z\"]);\nexport const Ruler28Regular = /*#__PURE__*/createFluentIcon('Ruler28Regular', \"28\", [\"M10.75 2A2.75 2.75 0 0 0 8 4.75v18.5A2.75 2.75 0 0 0 10.75 26h6.5A2.75 2.75 0 0 0 20 23.25V4.75A2.75 2.75 0 0 0 17.25 2h-6.5ZM9.5 14.75h2.75a.75.75 0 0 0 0-1.5H9.5V11h4.75a.75.75 0 0 0 0-1.5H9.5V7.25h2.75a.75.75 0 0 0 0-1.5H9.5v-1c0-.69.56-1.25 1.25-1.25h6.5c.69 0 1.25.56 1.25 1.25v18.5c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-1h2.75a.75.75 0 0 0 0-1.5H9.5V18.5h4.75a.75.75 0 0 0 0-1.5H9.5v-2.25Z\"]);\nexport const Ruler32Filled = /*#__PURE__*/createFluentIcon('Ruler32Filled', \"32\", [\"M9 5.5A3.5 3.5 0 0 1 12.5 2h7A3.5 3.5 0 0 1 23 5.5v21a3.5 3.5 0 0 1-3.5 3.5h-7A3.5 3.5 0 0 1 9 26.5v-21Zm2 .5v2h3a1 1 0 1 0 0-2h-3Zm0 4.5v2h5a1 1 0 1 0 0-2h-5Zm0 4.5v2h3a1 1 0 1 0 0-2h-3Zm0 4.5v2h5a1 1 0 1 0 0-2h-5Zm0 4.5v2h3a1 1 0 1 0 0-2h-3Z\"]);\nexport const Ruler32Regular = /*#__PURE__*/createFluentIcon('Ruler32Regular', \"32\", [\"M12.5 2A3.5 3.5 0 0 0 9 5.5v21a3.5 3.5 0 0 0 3.5 3.5h7a3.5 3.5 0 0 0 3.5-3.5v-21A3.5 3.5 0 0 0 19.5 2h-7ZM11 8h3a1 1 0 1 0 0-2h-3v-.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5v21c0 .83-.67 1.5-1.5 1.5h-7a1.5 1.5 0 0 1-1.5-1.5V26h3a1 1 0 1 0 0-2h-3v-2.5h5a1 1 0 1 0 0-2h-5V17h3a1 1 0 1 0 0-2h-3v-2.5h5a1 1 0 1 0 0-2h-5V8Z\"]);\nexport const Ruler48Filled = /*#__PURE__*/createFluentIcon('Ruler48Filled', \"48\", [\"M14.02 7.82A4.25 4.25 0 0 1 18.25 4h11.5C32.1 4 34 5.9 34 8.25v31.5C34 42.1 32.1 44 29.75 44h-11.5A4.25 4.25 0 0 1 14 39.75V8.25c0-.15 0-.3.02-.43Zm2.48 2.43v2.5h4.25a1.25 1.25 0 1 0 0-2.5H16.5Zm0 6.25V19h8.25a1.25 1.25 0 1 0 0-2.5H16.5Zm0 6.25v2.5h4.25a1.25 1.25 0 1 0 0-2.5H16.5Zm0 6.25v2.5h8.25a1.25 1.25 0 1 0 0-2.5H16.5Zm0 6.25v2.5h4.25a1.25 1.25 0 1 0 0-2.5H16.5Z\"]);\nexport const Ruler48Regular = /*#__PURE__*/createFluentIcon('Ruler48Regular', \"48\", [\"M18.25 4A4.25 4.25 0 0 0 14 8.25v31.5C14 42.1 15.9 44 18.25 44h11.5C32.1 44 34 42.1 34 39.75V8.25C34 5.9 32.1 4 29.75 4h-11.5Zm-1.75 8.75h4.25a1.25 1.25 0 1 0 0-2.5H16.5v-2c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v31.5c0 .97-.78 1.75-1.75 1.75h-11.5c-.97 0-1.75-.78-1.75-1.75v-2h4.25a1.25 1.25 0 1 0 0-2.5H16.5V31.5h8.25a1.25 1.25 0 1 0 0-2.5H16.5v-3.75h4.25a1.25 1.25 0 1 0 0-2.5H16.5V19h8.25a1.25 1.25 0 1 0 0-2.5H16.5v-3.75Z\"]);\nexport const Run16Filled = /*#__PURE__*/createFluentIcon('Run16Filled', \"16\", [\"M7.31 1.04a.5.5 0 0 1 .39 0l4.9 2.1a.5.5 0 0 1 .08.88h-.02a2.69 2.69 0 0 0-.22.17c-.15.11-.35.28-.55.48-.4.38-.75.85-.87 1.3a26.17 26.17 0 0 0 1.36 3.18l1.6.96A2.1 2.1 0 0 1 15 11.9v1.59a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a7.94 7.94 0 0 1-.42 0 21.2 21.2 0 0 1-5-.72c-2.9-.79-6.32-2.47-8.01-6.07a.5.5 0 0 1 0-.43 12.84 12.84 0 0 1 2.72-3.32 13 13 0 0 1 3.54-2.42ZM14 13v-.54C7.67 11.9 4.16 9.28 2.44 6.42c-.15.2-.27.4-.38.59 1.55 3.06 4.55 4.57 7.27 5.3A20.2 20.2 0 0 0 14 13Zm-.53-2.04-1.4-.83-.88.89c.83.19 1.73.33 2.71.43a1.1 1.1 0 0 0-.43-.49Zm-3.33-5.53a4.45 4.45 0 0 1 1.29-1.7L7.5 2.04c-.82.37-1.84 1.09-2.81 1.94l1.16 1.17c.1.09.15.22.15.35v3.3c.54.39 1.15.75 1.84 1.08l1.05-1.4-1.8-2.7a.5.5 0 0 1 .5-.77l2.55.42Z\"]);\nexport const Run16Regular = /*#__PURE__*/createFluentIcon('Run16Regular', \"16\", [\"M7.31 1.04a.5.5 0 0 1 .39 0l4.9 2.1a.5.5 0 0 1 .08.88h-.02a2.69 2.69 0 0 0-.22.17c-.15.11-.35.28-.55.48-.4.38-.75.85-.87 1.3a26.17 26.17 0 0 0 1.36 3.18l1.6.96A2.1 2.1 0 0 1 15 11.9v1.59a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a7.94 7.94 0 0 1-.42 0 21.2 21.2 0 0 1-5-.72c-2.9-.79-6.32-2.47-8.01-6.07a.5.5 0 0 1 0-.43 12.84 12.84 0 0 1 2.72-3.32 13 13 0 0 1 3.54-2.42ZM14 13v-.54C7.67 11.9 4.16 9.28 2.44 6.42c-.15.2-.27.4-.38.59 1.55 3.06 4.55 4.57 7.27 5.3A20.2 20.2 0 0 0 14 13Zm-.53-2.04-1.4-.83-.88.89c.83.19 1.73.33 2.71.43a1.1 1.1 0 0 0-.43-.49Zm-3.32-.31 1.24-1.25v-.02a43.7 43.7 0 0 1-1.27-2.94l-1.56-.26 1.36 2.04a.5.5 0 0 1-.02.58l-1.12 1.49c.41.16.84.3 1.3.44a.5.5 0 0 1 .07-.08Zm0-5.22a4.45 4.45 0 0 1 1.28-1.7L7.5 2.04c-.82.37-1.84 1.09-2.81 1.94l1.16 1.17c.1.09.15.22.15.35v3.3c.54.39 1.15.75 1.84 1.08l1.05-1.4-1.8-2.7a.5.5 0 0 1 .5-.77l2.55.42Zm-6.2-.77c-.3.3-.59.61-.85.92A9.45 9.45 0 0 0 5 7.98V5.71L3.96 4.66Z\"]);\nexport const Run20Filled = /*#__PURE__*/createFluentIcon('Run20Filled', \"20\", [\"M9.31 2.04a.5.5 0 0 1 .35-.01l6 2a.5.5 0 0 1 .07.92h-.03a6.13 6.13 0 0 0-.37.22c-.25.15-.58.36-.91.62a5.8 5.8 0 0 0-.94.87c-.22.27-.38.53-.45.78l1.86 3.72 2 1.33A2.5 2.5 0 0 1 18 14.57v1.93a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a6.42 6.42 0 0 1-.47 0 21.98 21.98 0 0 1-5.65-.84c-3.32-.95-7.23-3.02-9.31-7.45a.5.5 0 0 1 0-.43A12.43 12.43 0 0 1 5.2 4.59a16.2 16.2 0 0 1 4.12-2.55ZM17 15.47c-7.41-.6-11.41-4.2-13.55-7.58-.15.2-.28.41-.39.62 1.94 3.92 5.46 5.8 8.58 6.7A20.97 20.97 0 0 0 17 16v-.54ZM5.96 5.25l1.9 1.9a.5.5 0 0 1 .13.42l-.48 3.4c.7.56 1.5 1.08 2.4 1.55l1.48-1.6-2.33-4.18a.5.5 0 0 1 .6-.71l2.52.84c.13-.31.32-.6.53-.84a6.78 6.78 0 0 1 1.6-1.4l-4.8-1.6c-1.1.47-2.38 1.27-3.55 2.22Zm7.8 8.7c1 .24 2.07.41 3.24.51a1.5 1.5 0 0 0-.67-1.14l-1.65-1.1-.92 1.73Z\"]);\nexport const Run20Regular = /*#__PURE__*/createFluentIcon('Run20Regular', \"20\", [\"M9.31 2.04a.5.5 0 0 1 .35-.01l6 2a.5.5 0 0 1 .07.92h-.03a6.13 6.13 0 0 0-.37.22c-.25.15-.58.36-.91.62a5.8 5.8 0 0 0-.94.87c-.22.27-.38.53-.45.78l1.86 3.72 2 1.33A2.5 2.5 0 0 1 18 14.57v1.93a.5.5 0 0 1-.48.5l-.02-.5.02.5h-.04a6.42 6.42 0 0 1-.47 0 21.98 21.98 0 0 1-5.65-.84c-3.32-.95-7.23-3.02-9.31-7.45a.5.5 0 0 1 0-.43A12.43 12.43 0 0 1 5.2 4.59a16.2 16.2 0 0 1 4.12-2.55ZM17 16v-.53c-7.41-.6-11.41-4.2-13.55-7.58-.15.2-.28.41-.39.62 1.94 3.92 5.46 5.8 8.58 6.7A20.97 20.97 0 0 0 17 16Zm-.67-2.68-1.65-1.1-.92 1.73c1 .24 2.07.41 3.24.51a1.5 1.5 0 0 0-.67-1.14Zm-4.18-5.41-1.59-.53 1.88 3.38a.5.5 0 0 1-.07.58l-1.52 1.63c.6.27 1.23.5 1.92.71l1.17-2.19-1.8-3.58Zm.03-1.04c.13-.31.32-.6.53-.84a6.78 6.78 0 0 1 1.6-1.4l-4.8-1.6c-1.1.47-2.38 1.27-3.55 2.22l1.9 1.9a.5.5 0 0 1 .13.42l-.48 3.4c.7.56 1.5 1.08 2.4 1.55l1.48-1.6-2.33-4.18a.5.5 0 0 1 .6-.71l2.52.84ZM5.2 5.9c-.4.37-.76.75-1.1 1.13a14.82 14.82 0 0 0 2.51 3.14l.36-2.5L5.2 5.9Z\"]);\nexport const Run24Filled = /*#__PURE__*/createFluentIcon('Run24Filled', \"24\", [\"M11.03 2.58a.75.75 0 0 0-.39-.03c-.99.17-2 .65-2.9 1.23a18.85 18.85 0 0 0-3.87 3.27 13 13 0 0 1-.65.7c-.26.27-.57.6-.74.84-.38.54-.75 1.13-1.09 1.75-.1.18-.11.4-.05.6.9 2.66 3.7 5.1 7 6.86 3.31 1.78 7.3 2.95 10.83 2.95h.84c.41 0 .75-.33.75-.75v-2.8c0-1.03-.6-1.99-1.52-2.45l-2.38-1.2a11.4 11.4 0 0 1-1.25-1.92 6.91 6.91 0 0 1-.72-1.97l.54-.9a4.25 4.25 0 0 1 2-1.71l.86-.36a.75.75 0 0 0-.03-1.39l-7.23-2.72Zm8.23 14.64c-1.58-.21-2.25-.4-3.51-.76l.89-1.34 1.93.97c.42.2.7.64.7 1.12Zm-4 .65c1.4.4 2.13.62 4 .86v.52h-.09c-3.22 0-6.98-1.08-10.13-2.77-3.03-1.62-5.34-3.7-6.17-5.72l.27-.44a22.6 22.6 0 0 0 3.91 3.55 25.95 25.95 0 0 0 4.75 2.8l2.5.93.05.01.91.26ZM8.79 8.94 6.76 6.35c.55-.46 1.15-.92 1.77-1.3a7.3 7.3 0 0 1 2.17-.99l5.36 2.01A5.75 5.75 0 0 0 14.15 8l-.33.54-2.74-1.27a.75.75 0 0 0-1 .95l2.14 5.43-.55 1.31c-1.39-.7-2.32-1.27-3.36-2.01l.62-3.41a.75.75 0 0 0-.14-.6Z\"]);\nexport const Run24Regular = /*#__PURE__*/createFluentIcon('Run24Regular', \"24\", [\"M10.64 2.55a.75.75 0 0 1 .39.03l7.23 2.72a.75.75 0 0 1 .03 1.4l-.86.35c-.83.35-1.53.95-2 1.72l-.54.89c.08.55.34 1.25.72 1.97.38.75.85 1.45 1.25 1.93l2.38 1.19a2.75 2.75 0 0 1 1.52 2.46V20c0 .4-.34.74-.75.74h-.84c-3.52 0-7.52-1.17-10.84-2.95-3.28-1.76-6.09-4.2-6.99-6.86a.75.75 0 0 1 .05-.6c.34-.62.71-1.2 1.1-1.75a9.12 9.12 0 0 1 .91-1.04 13 13 0 0 0 .48-.52 19.24 19.24 0 0 1 3.86-3.25 8.31 8.31 0 0 1 2.9-1.23Zm4.82 11.65c-.4-.54-.83-1.2-1.18-1.88a8.58 8.58 0 0 1-.85-2.33l-1.28-.59 1.58 3.97c.07.18.07.38 0 .56l-.68 1.61 1.21.45 1.2-1.8Zm.29 2.26c1.26.36 1.93.55 3.51.76v-.01c0-.48-.27-.91-.7-1.12l-1.92-.97-.9 1.34Zm3.51 2.27c-1.87-.24-2.6-.45-4-.86a142.76 142.76 0 0 0-.96-.27l-2.5-.93a22.6 22.6 0 0 1-8.66-6.36l-.27.45c.83 2.02 3.14 4.1 6.17 5.72 3.15 1.69 6.9 2.77 10.13 2.77h.1v-.52ZM4.04 9.06c.6.76 1.57 1.77 2.94 2.87l.42-2.34-1.75-2.23c-.25.25-.47.47-.65.67l-.54.58-.16.17-.26.28Zm2.72-2.71L8.8 8.94c.13.16.18.38.14.59l-.62 3.4c1.04.75 1.97 1.33 3.36 2.02l.55-1.31-2.15-5.43a.75.75 0 0 1 1.01-.95l2.74 1.27.33-.54a5.75 5.75 0 0 1 1.91-1.92L10.7 4.06c-.66.15-1.4.5-2.17.98-.62.4-1.22.85-1.77 1.31Z\"]);\nexport const Sanitize20Filled = /*#__PURE__*/createFluentIcon('Sanitize20Filled', \"20\", [\"M2.77 5.23a2.5 2.5 0 0 0 0 3.54l3.46 3.46c.11.11.23.2.35.3.04-.13.1-.25.17-.36.4-.6.9-1.02 1.49-1.27.26-.1.51-.17.76-.2V7.5a1.5 1.5 0 0 1 2.05-1.4c.07-.25.2-.48.39-.66L8.77 2.77a2.5 2.5 0 0 0-3.54 0L2.77 5.23ZM12.5 6a.5.5 0 0 0-.5.5v5a.5.5 0 1 1-1 0v-4a.5.5 0 0 0-1 0v4.25a2.08 2.08 0 0 0-1.38.08c-.38.16-.74.44-1.04.9a.5.5 0 0 0 .22.73 5.26 5.26 0 0 1 2.71 2.37c.55 1.03 1.6 2.17 2.99 2.17h.26A2.5 2.5 0 0 0 16 16.62l.63-1.26a3.5 3.5 0 0 0 .37-1.57V7.5a.5.5 0 0 0-1 0v4a.5.5 0 1 1-1 0v-5a.5.5 0 0 0-1 0v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 0-.5-.5Zm-9 6c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 1 1-1 0V14h-.5a.5.5 0 1 1 0-1H3v-.5c0-.28.22-.5.5-.5Zm3 3c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H7v.5a.5.5 0 1 1-1 0V17h-.5a.5.5 0 1 1 0-1H6v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const Sanitize20Regular = /*#__PURE__*/createFluentIcon('Sanitize20Regular', \"20\", [\"M5.94 3.47 3.47 5.94a1.5 1.5 0 0 0 0 2.12l2.97 2.96c-.25.24-.45.51-.6.82L2.77 8.77a2.5 2.5 0 0 1 0-3.54l2.46-2.46a2.5 2.5 0 0 1 3.54 0L11.3 5.3c-.3.17-.55.39-.76.65L8.06 3.47a1.5 1.5 0 0 0-2.12 0ZM15.9 7c-.2-.58-.76-1-1.41-1h-2c-.65 0-1.2.42-1.41 1H11a2 2 0 0 0-2 2v2.31a2.77 2.77 0 0 0-.56-.06c-.36 0-.77.08-1.13.35-.37.27-.65.69-.8 1.28a.5.5 0 0 0 .3.58c1.9.81 3 2.1 3.61 3.03A3.1 3.1 0 0 0 12.94 18h1.82A2.5 2.5 0 0 0 17 16.62l.63-1.26a3.5 3.5 0 0 0 .37-1.57V9a2 2 0 0 0-2-2h-.09ZM14 7h.5c.28 0 .5.22.5.5v4a.5.5 0 1 0 1 0V8a1 1 0 0 1 1 1v4.8c0 .38-.09.76-.26 1.1l-.63 1.27c-.26.5-.78.83-1.35.83h-1.82c-.64 0-1.27-.42-1.68-1.05a9.01 9.01 0 0 0-3.64-3.21.91.91 0 0 1 .28-.34.9.9 0 0 1 .54-.15 2 2 0 0 1 .83.2A.5.5 0 0 0 10 12V9a1 1 0 0 1 1-1v3.5a.5.5 0 1 0 1 0v-4c0-.28.22-.5.5-.5h.5v4.5a.5.5 0 1 0 1 0V7ZM3.5 12c.28 0 .5.22.5.5v.5h.5a.5.5 0 0 1 0 1H4v.5a.5.5 0 1 1-1 0V14h-.5a.5.5 0 1 1 0-1H3v-.5c0-.28.22-.5.5-.5ZM7 15.5a.5.5 0 0 0-1 0v.5h-.5a.5.5 0 0 0 0 1H6v.5a.5.5 0 1 0 1 0V17h.5a.5.5 0 1 0 0-1H7v-.5Z\"]);\nexport const Sanitize24Filled = /*#__PURE__*/createFluentIcon('Sanitize24Filled', \"24\", [\"M3.62 10.62a3 3 0 0 1 0-4.24l3.26-3.26a3 3 0 0 1 4.24 0L14.8 6.8l-.13.22A1.75 1.75 0 0 0 12 8.5v4.52a3.78 3.78 0 0 0-2.2.36 2.9 2.9 0 0 0-.75.54c-.07.08-.15.17-.23.29a1.86 1.86 0 0 0-.3 1.3l-4.9-4.9ZM17 7.75v5.75a.5.5 0 0 0 1 0v-5a.75.75 0 0 1 1.5 0V14a.5.5 0 1 0 1 0V9.75a.75.75 0 0 1 1.5 0v7c0 .62-.27 1.39-.56 2.04-.3.68-.68 1.37-.98 1.9a2.64 2.64 0 0 1-2.3 1.3h-1.14c-.88.01-1.7-.41-2.23-1.12l-1.37-1.9-1.66-1.9-1.9-1.18a.75.75 0 0 1-.36-.64c0-.24.1-.4.15-.48l.18-.2c.12-.12.27-.21.43-.29.31-.16.74-.28 1.24-.28.53 0 1.07.15 1.5.31V8.5a.75.75 0 0 1 1.5 0v5a.5.5 0 0 0 1 0V7.75a.75.75 0 0 1 1.5 0ZM4.25 14c.42 0 .75.34.75.75v.75h.75a.75.75 0 0 1 0 1.5H5v.75a.75.75 0 0 1-1.5 0V17h-.75a.75.75 0 0 1 0-1.5h.75v-.75c0-.41.34-.75.75-.75ZM9 18.25a.75.75 0 0 0-1.5 0V19h-.75a.75.75 0 0 0 0 1.5h.75v.75a.75.75 0 1 0 1.5 0v-.75h.75a.75.75 0 0 0 0-1.5H9v-.75Z\"]);\nexport const Sanitize24Regular = /*#__PURE__*/createFluentIcon('Sanitize24Regular', \"24\", [\"M7.94 4.18 4.68 7.44a1.5 1.5 0 0 0 0 2.12l3.93 3.92c-.3.45-.51.97-.58 1.55l-4.4-4.4a3 3 0 0 1 0-4.25l3.25-3.26a3 3 0 0 1 4.24 0l3.45 3.45c-.08.05-.15.12-.22.18a2.98 2.98 0 0 0-1.4.32l-2.89-2.89a1.5 1.5 0 0 0-2.12 0Zm6.82 3.64a1.82 1.82 0 0 0-.51-.07c-1.1 0-1.75.9-1.75 1.75v3.67c-.29-.1-.63-.17-1-.17-1.4 0-2.5 1.03-2.5 2.5 0 .24.12.47.31.6l1.72 1.24.96.83c.63.56 1.2 1.19 1.7 1.87l.6.83A2.75 2.75 0 0 0 16.52 22h1.64c.93 0 1.82-.47 2.3-1.31.3-.53.68-1.22.98-1.9.29-.65.56-1.42.56-2.04v-6a1.74 1.74 0 0 0-2.07-1.72c-.19-.69-.79-1.28-1.68-1.28-.18 0-.35.03-.51.07A1.7 1.7 0 0 0 16.25 7c-.68 0-1.2.35-1.49.82Zm1.67.75c.04.05.07.11.07.18v4.5a.75.75 0 0 0 1.5 0v-3.8c0-.04.02-.09.06-.13.04-.04.1-.07.19-.07.1 0 .15.03.18.07.04.05.07.11.07.18v4.25a.75.75 0 0 0 1.5 0v-3c0-.07.03-.13.07-.18.03-.04.09-.07.18-.07.1 0 .15.03.18.07.04.05.07.11.07.18v6c0 .28-.15.78-.43 1.43a19.2 19.2 0 0 1-.9 1.76c-.2.34-.58.56-1.01.56h-1.64c-.4 0-.78-.2-1.01-.52l-.6-.82a12.75 12.75 0 0 0-1.94-2.12l-.98-.86a.78.78 0 0 0-.06-.04l-1.38-1c.12-.4.48-.64.95-.64.63 0 1.09.4 1.24.53l.03.03A.75.75 0 0 0 14 14.5V9.5c0-.07.03-.14.07-.18.04-.04.09-.07.18-.07.1 0 .15.03.18.07.04.05.07.11.07.18v3.75a.75.75 0 0 0 1.5 0v-4.5c0-.07.03-.13.07-.18.03-.04.09-.07.18-.07.1 0 .15.03.18.07ZM4.25 14c.42 0 .75.34.75.75v.75h.75a.75.75 0 0 1 0 1.5H5v.75a.75.75 0 0 1-1.5 0V17h-.75a.75.75 0 0 1 0-1.5h.75v-.75c0-.41.34-.75.75-.75Zm4 3.5c.42 0 .75.34.75.75V19h.75a.75.75 0 0 1 0 1.5H9v.75a.75.75 0 0 1-1.5 0v-.75h-.75a.75.75 0 0 1 0-1.5h.75v-.75c0-.41.34-.75.75-.75Z\"]);\nexport const Save16Filled = /*#__PURE__*/createFluentIcon('Save16Filled', \"16\", [\"M5 2v2.5C5 5.33 5.67 6 6.5 6h2c.83 0 1.5-.67 1.5-1.5V2h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 14 5.62V12a2 2 0 0 1-2 2V9.5c0-.83-.67-1.5-1.5-1.5h-5C4.67 8 4 8.67 4 9.5V14a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h1Zm1 0v2.5c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5V2H6ZM5 14h6V9.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V14Z\"]);\nexport const Save16Regular = /*#__PURE__*/createFluentIcon('Save16Regular', \"16\", [\"M4 3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1V9.5C4 8.67 4.67 8 5.5 8h5c.83 0 1.5.67 1.5 1.5V13a1 1 0 0 0 1-1V5.62a1 1 0 0 0-.3-.7L11.1 3.28a1 1 0 0 0-.71-.29H10v1.5C10 5.33 9.33 6 8.5 6h-2A1.5 1.5 0 0 1 5 4.5V3H4Zm2 0v1.5c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5V3H6Zm5 10V9.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V13h6ZM2 4c0-1.1.9-2 2-2h6.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 14 5.62V12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Z\"]);\nexport const Save20Filled = /*#__PURE__*/createFluentIcon('Save20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2v-5.5c0-.83-.67-1.5-1.5-1.5h-7c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm9-2H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm2 8.5V17H6v-5.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5Z\"]);\nexport const Save20Regular = /*#__PURE__*/createFluentIcon('Save20Regular', \"20\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h7c.83 0 1.5.67 1.5 1.5V16a1 1 0 0 0 1-1V6.62a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5Zm2 0v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm7 12v-4.5a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5V16h8Z\"]);\nexport const Save24Filled = /*#__PURE__*/createFluentIcon('Save24Filled', \"24\", [\"M6.75 3h-1A2.75 2.75 0 0 0 3 5.75v12.5A2.75 2.75 0 0 0 5.75 21H6v-6c0-1.24 1-2.25 2.25-2.25h7.5c1.24 0 2.25 1 2.25 2.25v6h.25A2.75 2.75 0 0 0 21 18.25V8.29c0-.87-.34-1.7-.95-2.3L18 3.95c-.6-.6-1.41-.94-2.26-.95v4.5c0 1.24-1 2.25-2.25 2.25H9c-1.24 0-2.25-1-2.25-2.25V3Zm7.5 0v4.5c0 .41-.34.75-.75.75H9a.75.75 0 0 1-.75-.75V3h6Zm2.25 18v-6a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75v6h9Z\"]);\nexport const Save24Regular = /*#__PURE__*/createFluentIcon('Save24Regular', \"24\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h9.96c.87 0 1.7.34 2.3.95L20.05 6c.6.6.95 1.43.95 2.3v9.96A2.75 2.75 0 0 1 18.25 21H5.75A2.75 2.75 0 0 1 3 18.25V5.75ZM5.75 4.5c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25H6v-5.25C6 13.01 7 12 8.25 12h7.5c1.24 0 2.25 1 2.25 2.25v5.25h.25c.69 0 1.25-.56 1.25-1.25V8.29c0-.47-.18-.91-.51-1.24L16.95 5c-.26-.26-.6-.43-.95-.49v2.73c0 1.24-1 2.25-2.25 2.25h-4.5C8.01 9.5 7 8.5 7 7.25V4.5H5.75Zm10.75 15v-5.25a.75.75 0 0 0-.75-.75h-7.5a.75.75 0 0 0-.75.75v5.25h9Zm-8-15v2.75c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75V4.5h-6Z\"]);\nexport const Save28Filled = /*#__PURE__*/createFluentIcon('Save28Filled', \"28\", [\"M8 3H6.25A3.25 3.25 0 0 0 3 6.25v15.5a3.25 3.25 0 0 0 3 3.24v-8.74C6 15.01 7 14 8.25 14h11.5c1.24 0 2.25 1 2.25 2.25v8.74c1.68-.13 3-1.53 3-3.24V8.79c0-.87-.34-1.7-.95-2.3L21.5 3.95a3.25 3.25 0 0 0-2.3-.95H19v5.75C19 9.99 18 11 16.75 11h-6.5C9.01 11 8 10 8 8.75V3Zm9.5 0h-8v5.75c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75V3Zm3 22v-8.75a.75.75 0 0 0-.75-.75H8.25a.75.75 0 0 0-.75.75V25h13Z\"]);\nexport const Save28Regular = /*#__PURE__*/createFluentIcon('Save28Regular', \"28\", [\"M6.25 4.5c-.97 0-1.75.78-1.75 1.75v15.5c0 .88.65 1.61 1.5 1.73v-7.23C6 15.01 7 14 8.25 14h11.5c1.24 0 2.25 1 2.25 2.25v7.23c.85-.12 1.5-.85 1.5-1.73V8.79c0-.47-.18-.91-.51-1.24L20.45 5a1.75 1.75 0 0 0-1.24-.51H19v4.25C19 9.99 18 11 16.75 11h-6.5C9.01 11 8 10 8 8.75V4.5H6.25Zm3.25 0v4.25c0 .41.34.75.75.75h6.5c.41 0 .75-.34.75-.75V4.5h-8Zm11 19v-7.25a.75.75 0 0 0-.75-.75H8.25a.75.75 0 0 0-.75.75v7.25h13ZM3 6.25C3 4.45 4.46 3 6.25 3h12.96c.87 0 1.7.34 2.3.95l2.54 2.54c.6.6.95 1.43.95 2.3v12.96c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 21.75V6.25Z\"]);\nexport const SaveArrowRight20Filled = /*#__PURE__*/createFluentIcon('SaveArrowRight20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6a5.48 5.48 0 0 0-5.66.4H6.5c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm6 9.5c0-1.33.47-2.55 1.26-3.5H6.5a.5.5 0 0 0-.5.5V17h3.6c-.38-.75-.6-1.6-.6-2.5ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm7 11.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SaveArrowRight20Regular = /*#__PURE__*/createFluentIcon('SaveArrowRight20Regular', \"20\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6c-.32-.16-.65-.3-1-.4V6.63a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h4.84c-.4.28-.77.62-1.08 1H6.5a.5.5 0 0 0-.5.5V16h3.2c.1.35.24.68.4 1H5a2 2 0 0 1-2-2V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm12 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SaveArrowRight24Filled = /*#__PURE__*/createFluentIcon('SaveArrowRight24Filled', \"24\", [\"M6.75 3h-1A2.75 2.75 0 0 0 3 5.75v12.5A2.75 2.75 0 0 0 5.75 21H6v-6c0-1.24 1-2.25 2.25-2.25h4.81a6.48 6.48 0 0 1 7.94-.73V8.3c0-.87-.34-1.7-.95-2.3L18 3.95c-.6-.6-1.41-.94-2.26-.95v4.5c0 1.24-1 2.25-2.25 2.25H9c-1.24 0-2.25-1-2.25-2.25V3Zm1.5 11.25h3.62a6.47 6.47 0 0 0 .15 6.75H7.5v-6c0-.41.34-.75.75-.75Zm6-11.25v4.5c0 .41-.34.75-.75.75H9a.75.75 0 0 1-.75-.75V3h6ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SaveArrowRight24Regular = /*#__PURE__*/createFluentIcon('SaveArrowRight24Regular', \"24\", [\"M3 5.75A2.75 2.75 0 0 1 5.75 3h9.96c.87 0 1.7.34 2.3.95L20.05 6c.6.6.95 1.43.95 2.3v3.73c-.46-.3-.97-.53-1.5-.7V8.28c0-.47-.18-.91-.51-1.24L16.95 5c-.26-.26-.6-.43-.95-.49v2.73c0 1.24-1 2.25-2.25 2.25h-4.5C8.01 9.5 7 8.5 7 7.25V4.5H5.75c-.69 0-1.25.56-1.25 1.25v12.5c0 .69.56 1.25 1.25 1.25H6v-5.25C6 13.01 7 12 8.25 12h5.78c-.63.4-1.2.91-1.65 1.5H8.25a.75.75 0 0 0-.75.75v5.25h3.81c.18.53.42 1.04.71 1.5H5.75A2.75 2.75 0 0 1 3 18.25V5.75ZM8.5 4.5v2.75c0 .41.34.75.75.75h4.5c.41 0 .75-.34.75-.75V4.5h-6Zm14.5 13a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SaveCopy20Filled = /*#__PURE__*/createFluentIcon('SaveCopy20Filled', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v9A2.5 2.5 0 0 0 4.5 16h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 13.5 2h-9Zm5 4.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2a.5.5 0 0 1 1 0ZM7.5 18c-.95 0-1.82-.38-2.45-1h9.45a2.5 2.5 0 0 0 2.5-2.5V5.05c.62.63 1 1.5 1 2.45v7a3.5 3.5 0 0 1-3.5 3.5h-7Z\"]);\nexport const SaveCopy20Regular = /*#__PURE__*/createFluentIcon('SaveCopy20Regular', \"20\", [\"M9.5 6.5a.5.5 0 0 0-1 0v2h-2a.5.5 0 0 0 0 1h2v2a.5.5 0 0 0 1 0v-2h2a.5.5 0 0 0 0-1h-2v-2ZM4.5 2A2.5 2.5 0 0 0 2 4.5v9A2.5 2.5 0 0 0 4.5 16h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 13.5 2h-9ZM3 4.5C3 3.67 3.67 3 4.5 3h9c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 3 13.5v-9ZM7.5 18c-.95 0-1.82-.38-2.45-1h9.45a2.5 2.5 0 0 0 2.5-2.5V5.05c.62.63 1 1.5 1 2.45v7a3.5 3.5 0 0 1-3.5 3.5h-7Z\"]);\nexport const SaveCopy24Filled = /*#__PURE__*/createFluentIcon('SaveCopy24Filled', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Zm-6.5 4.75c-.38 0-.7.28-.74.65l-.01.1V10H7.5a.75.75 0 0 0-.1 1.5H10V14a.75.75 0 0 0 1.5.1v-2.6H14a.75.75 0 0 0 .1-1.5h-2.6V7.5a.75.75 0 0 0-.75-.75Z\"]);\nexport const SaveCopy24Regular = /*#__PURE__*/createFluentIcon('SaveCopy24Regular', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Zm0 1.5h-13a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h13c.41 0 .75-.34.75-.75v-13a.75.75 0 0 0-.75-.75Zm-6.5 3.25c.41 0 .75.34.75.75V10H14a.75.75 0 0 1 0 1.5h-2.5V14a.75.75 0 0 1-1.5 0v-2.5H7.5a.75.75 0 0 1 0-1.5H10V7.5c0-.41.34-.75.75-.75Z\"]);\nexport const SaveEdit20Filled = /*#__PURE__*/createFluentIcon('SaveEdit20Filled', \"20\", [\"M5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2v-5.5c0-.83.67-1.5 1.5-1.5h6.44l1.16-1.16a2.87 2.87 0 0 1 2.9-.7V6.61a2 2 0 0 0-.59-1.41L14.8 3.59A2 2 0 0 0 13.38 3H13v3.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V3H5Zm6.94 8-2.67 2.67c-.4.41-.7.92-.84 1.49l-.37 1.5c-.03.11-.05.23-.06.34H6v-5.5c0-.28.22-.5.5-.5h5.44ZM7 3h5v3.5a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5V3Zm7.8 6.55-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const SaveEdit20Regular = /*#__PURE__*/createFluentIcon('SaveEdit20Regular', \"20\", [\"M5 3a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h3l.06-.35.16-.65H6v-4.5c0-.28.22-.5.5-.5h5.44l1-1H6.5c-.83 0-1.5.67-1.5 1.5V16a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h1v2.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V4h.38a1 1 0 0 1 .7.3l1.63 1.61a1 1 0 0 1 .29.71V8c.34-.01.68.03 1 .13v-1.5a2 2 0 0 0-.59-1.42L14.8 3.59A2 2 0 0 0 13.38 3H5Zm2 3.5V4h5v2.5a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5Zm7.8 3.05-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const SaveEdit24Filled = /*#__PURE__*/createFluentIcon('SaveEdit24Filled', \"24\", [\"M6.75 3h-1A2.75 2.75 0 0 0 3 5.75v12.5A2.75 2.75 0 0 0 5.75 21H6v-6c0-1.24 1-2.25 2.25-2.25h7.35l1.8-1.79a3.3 3.3 0 0 1 3.6-.7V8.3c0-.87-.34-1.7-.95-2.3L18 3.95c-.6-.6-1.41-.94-2.26-.95v4.5c0 1.24-1 2.25-2.25 2.25H9c-1.24 0-2.25-1-2.25-2.25V3Zm7.35 11.25-2.61 2.61c-.47.48-.8 1.07-.97 1.72l-.46 1.83c-.05.2-.07.4-.06.59H7.5v-6c0-.41.34-.75.75-.75h5.85ZM14.25 3v4.5c0 .41-.34.75-.75.75H9a.75.75 0 0 1-.75-.75V3h6Zm5.47 8c-.6 0-1.18.22-1.62.67l-5.9 5.9c-.35.35-.6.78-.71 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9A2.29 2.29 0 0 0 19.72 11Z\"]);\nexport const SaveEdit24Regular = /*#__PURE__*/createFluentIcon('SaveEdit24Regular', \"24\", [\"M5.75 3A2.75 2.75 0 0 0 3 5.75v12.5A2.75 2.75 0 0 0 5.75 21H10c0-.2.01-.4.06-.6l.23-.9H7.5v-5.25c0-.41.34-.75.75-.75h6.6l1.44-1.44a2.26 2.26 0 0 0-.54-.06h-7.5C7.01 12 6 13 6 14.25v5.25h-.25c-.69 0-1.25-.56-1.25-1.25V5.75c0-.69.56-1.25 1.25-1.25H7v2.75C7 8.49 8 9.5 9.25 9.5h4.5c1.24 0 2.25-1 2.25-2.25V4.52c.36.06.7.23.95.5L19 7.04c.33.33.51.77.51 1.24V10l.21-.01c.44 0 .88.09 1.29.26V8.3c0-.87-.34-1.7-.95-2.3L18 3.95a3.25 3.25 0 0 0-2.3-.95H5.75ZM8.5 7.25V4.5h6v2.75c0 .41-.34.75-.75.75h-4.5a.75.75 0 0 1-.75-.75ZM19.72 11c-.6 0-1.18.22-1.62.67l-5.9 5.9c-.35.35-.6.78-.71 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9A2.29 2.29 0 0 0 19.72 11Z\"]);\nexport const SaveImage20Filled = /*#__PURE__*/createFluentIcon('SaveImage20Filled', \"20\", [\"M5 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2v-5.5C5 9.67 5.67 9 6.5 9h10c.17 0 .34.01.5.04V5.62a2 2 0 0 0-.59-1.41L14.8 2.59A2 2 0 0 0 13.38 2H13v3.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 5.5V2H5Zm5.05 8A3.49 3.49 0 0 0 9 12.5V16H6v-5.5c0-.28.22-.5.5-.5h3.55ZM12 2H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V2Zm-2 10.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const SaveImage20Regular = /*#__PURE__*/createFluentIcon('SaveImage20Regular', \"20\", [\"M17 6.13v2.9a3.53 3.53 0 0 0-.5-.03H16V6.13a.97.97 0 0 0-.29-.72L13.6 3.3A.96.96 0 0 0 13 3V5.5a1.45 1.45 0 0 1-.44 1.06c-.14.13-.3.24-.48.32-.18.08-.38.12-.58.12h-4a1.45 1.45 0 0 1-1.05-.44 1.6 1.6 0 0 1-.33-.48A1.33 1.33 0 0 1 6 5.5V3H5a.97.97 0 0 0-.7.29c-.1.1-.17.2-.22.32A.86.86 0 0 0 4 4v10c0 .13.03.27.08.4.05.1.12.22.2.31.1.1.2.17.32.21.13.05.26.08.4.08v-4.5a1.45 1.45 0 0 1 .44-1.05c.14-.14.3-.25.48-.33.18-.08.38-.12.58-.12h6c-.96 0-1.82.38-2.45 1H6.5a.5.5 0 0 0-.5.5V15h3v1H5c-.26 0-.52-.05-.76-.16a2.2 2.2 0 0 1-.64-.42 1.9 1.9 0 0 1-.6-1.38V4c0-.26.05-.52.16-.76.1-.24.24-.45.42-.64A1.9 1.9 0 0 1 4.96 2h7.92c.26 0 .52.05.76.15.25.1.47.25.65.44L16.4 4.7c.19.19.34.4.43.65.1.24.16.5.16.77ZM7 3v2.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5V3H7Zm3 9.5a2.5 2.5 0 0 1 2.5-2.5h4a2.5 2.5 0 0 1 2.5 2.5v4c0 .5-.15.98-.41 1.38l-3.03-3.03a1.5 1.5 0 0 0-2.12 0l-3.03 3.03c-.26-.4-.41-.87-.41-1.38v-4Zm7 .25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-5.88 5.84c.4.26.87.41 1.38.41h4c.5 0 .98-.15 1.38-.41l-3.03-3.03a.5.5 0 0 0-.7 0l-3.03 3.03Z\"]);\nexport const SaveMultiple16Filled = /*#__PURE__*/createFluentIcon('SaveMultiple16Filled', \"16\", [\"M14 7.12V10a4 4 0 0 1-4 4H6a2.04 2.04 0 0 1-1.73-1H10a3 3 0 0 0 3-3V5.3l.41.41A1.96 1.96 0 0 1 14 7.12ZM8 2H6v2h2V2ZM5 12h4V8H5v4Zm0-5h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2-2V5.12c0-.53-.21-1.04-.59-1.41L10.3 2.59A2 2 0 0 0 9 2V4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V2H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2V8a1 1 0 0 1 1-1Z\"]);\nexport const SaveMultiple16Regular = /*#__PURE__*/createFluentIcon('SaveMultiple16Regular', \"16\", [\"M10.3 2.59 11.4 3.7c.38.37.59.88.59 1.41V10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4.88c.53 0 1.04.21 1.41.59ZM8 3H6v1h2V3Zm-3 8h4V8H5v3Zm5.7-.3a1 1 0 0 0 .3-.7V5.12a1 1 0 0 0-.3-.7L9.6 3.28A1 1 0 0 0 9 3.02V4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3a1 1 0 0 0 .7-.3ZM14 10V7.12a1.98 1.98 0 0 0-.59-1.41L13 5.3V10a3 3 0 0 1-3 3H4.27A2.04 2.04 0 0 0 6 14h4a4 4 0 0 0 4-4Z\"]);\nexport const SaveMultiple20Filled = /*#__PURE__*/createFluentIcon('SaveMultiple20Filled', \"20\", [\"M6 5.5V3H5a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2v-4.5C5 9.67 5.67 9 6.5 9h5c.83 0 1.5.67 1.5 1.5V15a2 2 0 0 0 2-2V6.62a2 2 0 0 0-.59-1.41L12.8 3.59A2 2 0 0 0 11.38 3H11v2.5c0 .83-.67 1.5-1.5 1.5h-2A1.5 1.5 0 0 1 6 5.5Zm1 0V3h3v2.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5Zm5 9.5H6v-4.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5V15Zm-3.5 2c-.95 0-1.82-.38-2.45-1h7.45a2.5 2.5 0 0 0 2.5-2.5V6.05c.62.63 1 1.5 1 2.45v5a3.5 3.5 0 0 1-3.5 3.5h-5Z\"]);\nexport const SaveMultiple20Regular = /*#__PURE__*/createFluentIcon('SaveMultiple20Regular', \"20\", [\"M5 3a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6.62a2 2 0 0 0-.59-1.41L12.8 3.59A2 2 0 0 0 11.38 3H5ZM4 5a1 1 0 0 1 1-1h1v1.5C6 6.33 6.67 7 7.5 7h2c.83 0 1.5-.67 1.5-1.5V4h.38a1 1 0 0 1 .7.3l1.63 1.61a1 1 0 0 1 .29.71V13a1 1 0 0 1-1 1v-3.5c0-.83-.67-1.5-1.5-1.5h-5C5.67 9 5 9.67 5 10.5V14a1 1 0 0 1-1-1V5Zm3 .5V4h3v1.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5Zm5 5V14H6v-3.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5ZM8.5 17c-.95 0-1.82-.38-2.45-1h7.45a2.5 2.5 0 0 0 2.5-2.5V6.05c.62.63 1 1.5 1 2.45v5a3.5 3.5 0 0 1-3.5 3.5h-5Z\"]);\nexport const SaveMultiple24Filled = /*#__PURE__*/createFluentIcon('SaveMultiple24Filled', \"24\", [\"M5.75 3H7v3.25C7 7.49 8 8.5 9.25 8.5h2.5c1.24 0 2.25-1 2.25-2.25V3.27c.37.16.72.39 1.01.68L17.05 6c.6.6.95 1.43.95 2.3v6.96A2.75 2.75 0 0 1 15.25 18H15v-4.75c0-1.24-1-2.25-2.25-2.25h-4.5C7.01 11 6 12 6 13.25V18h-.25A2.75 2.75 0 0 1 3 15.25v-9.5A2.75 2.75 0 0 1 5.75 3ZM7.5 18h6v-4.75a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0-.75.75V18Zm1-15h4v3.25c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 1-.75-.75V3Zm2.25 18c-1.37 0-2.6-.58-3.46-1.5h8.96c1.8 0 3.25-1.45 3.25-3.25V8.44l.55.55c.6.6.95 1.43.95 2.3v4.96A4.75 4.75 0 0 1 16.25 21h-5.5Z\"]);\nexport const SaveMultiple24Regular = /*#__PURE__*/createFluentIcon('SaveMultiple24Regular', \"24\", [\"M5.75 18A2.75 2.75 0 0 1 3 15.25v-9.5A2.75 2.75 0 0 1 5.75 3h6.96c.87 0 1.7.34 2.3.95L17.05 6c.6.6.95 1.43.95 2.3v6.96A2.75 2.75 0 0 1 15.25 18h-9.5ZM4.5 5.75v9.5c0 .69.56 1.25 1.25 1.25H6v-3.25C6 12.01 7 11 8.25 11h4.5c1.24 0 2.25 1 2.25 2.25v3.25h.25c.69 0 1.25-.56 1.25-1.25V8.29c0-.47-.18-.91-.51-1.24L14 5.06v1.19c0 1.24-1 2.25-2.25 2.25h-2.5C8.01 8.5 7 7.5 7 6.25V4.5H5.75c-.69 0-1.25.56-1.25 1.25Zm9 10.75v-3.25a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0-.75.75v3.25h6Zm-5-10.25c0 .41.34.75.75.75h2.5c.41 0 .75-.34.75-.75V4.5h-4v1.75ZM10.75 21c-1.37 0-2.6-.58-3.46-1.5h8.96c1.8 0 3.25-1.45 3.25-3.25V8.44l.55.55c.6.6.95 1.43.95 2.3v4.96A4.75 4.75 0 0 1 16.25 21h-5.5Z\"]);\nexport const SaveSearch20Filled = /*#__PURE__*/createFluentIcon('SaveSearch20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2v-5.5c0-.83-.67-1.5-1.5-1.5H9.33a4.5 4.5 0 0 0-6.33.67V5Zm7.56 10.44L12.12 17H14v-5.5a.5.5 0 0 0-.5-.5h-3.26a4.5 4.5 0 0 1 .32 4.44ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm-2 10.5c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L8.6 16.3a3.5 3.5 0 1 1 1.4-2.8Zm-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0Z\"]);\nexport const SaveSearch20Regular = /*#__PURE__*/createFluentIcon('SaveSearch20Regular', \"20\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V15a2 2 0 0 1-2 2h-2.88l-1-1H14v-4.5a.5.5 0 0 0-.5-.5h-3.26a4.53 4.53 0 0 0-.91-1h4.17c.83 0 1.5.67 1.5 1.5V16a1 1 0 0 0 1-1V6.62a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v4.76a4.52 4.52 0 0 0-1 .91V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm3 9.5c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L8.6 16.3a3.5 3.5 0 1 1 1.4-2.8Zm-6 0a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0Z\"]);\nexport const SaveSync20Filled = /*#__PURE__*/createFluentIcon('SaveSync20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h1v3.5C6 7.33 6.67 8 7.5 8h4c.83 0 1.5-.67 1.5-1.5V3h.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6a5.48 5.48 0 0 0-5.66.4H6.5c-.83 0-1.5.67-1.5 1.5V17a2 2 0 0 1-2-2V5Zm6 9.5c0-1.33.47-2.55 1.26-3.5H6.5a.5.5 0 0 0-.5.5V17h3.6c-.38-.75-.6-1.6-.6-2.5ZM12 3H7v3.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V3Zm-2 11.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const SaveSync20Regular = /*#__PURE__*/createFluentIcon('SaveSync20Regular', \"20\", [\"M3 5c0-1.1.9-2 2-2h8.38a2 2 0 0 1 1.41.59l1.62 1.62A2 2 0 0 1 17 6.62V9.6c-.32-.16-.65-.3-1-.4V6.63a1 1 0 0 0-.3-.7L14.1 4.28a1 1 0 0 0-.71-.29H13v2.5c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 6 6.5V4H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1v-4.5c0-.83.67-1.5 1.5-1.5h4.84c-.4.28-.77.62-1.08 1H6.5a.5.5 0 0 0-.5.5V16h3.2c.1.35.24.68.4 1H5a2 2 0 0 1-2-2V5Zm4-1v2.5c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5V4H7Zm3 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm6.5-3c.28 0 .5.22.5.5v1.5a.5.5 0 0 1-.5.5H15a.5.5 0 0 1 0-1h.47a1.97 1.97 0 0 0-.94-.25 2 2 0 0 0-1.44.59.5.5 0 0 1-.71-.71 3 3 0 0 1 3.62-.48V12c0-.28.22-.5.5-.5Zm-.88 5.53a3 3 0 0 1-2.62-.18V17a.5.5 0 0 1-1 0v-1.5c0-.28.22-.5.5-.5H14a.5.5 0 0 1 0 1h-.47a1.97 1.97 0 0 0 .94.25 2 2 0 0 0 1.44-.59.5.5 0 0 1 .71.71 3 3 0 0 1-1 .66Z\"]);\nexport const Savings16Filled = /*#__PURE__*/createFluentIcon('Savings16Filled', \"16\", [\"M13.5 8.16a4 4 0 0 0 1.23-1.64c.18.52.27 1.1.27 1.75a5.21 5.21 0 0 1-1.88 4.1l-.12.09v1.04c0 .83-.67 1.5-1.5 1.5H11a1 1 0 0 1-1-1H8a1 1 0 0 1-1 1h-.5A1.5 1.5 0 0 1 5 13.5v-.21a4.02 4.02 0 0 1-1.69-1.04c-.6-.6-.92-1.35-1.09-1.82a.43.43 0 0 0-.27-.28A1.3 1.3 0 0 1 1 8.89v-.8c0-.57.38-1.08.94-1.23.1-.03.21-.13.27-.3.13-.4.39-1.01.87-1.5a5.82 5.82 0 0 1 1.39-1.02V2.16c0-.35.23-.6.48-.7.24-.1.58-.08.82.15.26.24.59.52.94.76.37.23.71.39.99.41a4 4 0 0 0-.65 2.7c.12 1.04.91 1.66 1.58 1.93l2.39 1c.67.27 1.67.4 2.48-.25ZM4.75 7.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.48-3.58a3 3 0 0 1 5.56-.04 3 3 0 0 1-.9 3.5c-.43.33-1 .3-1.49.1l-2.39-1c-.49-.2-.9-.58-.97-1.1a2.98 2.98 0 0 1 0-.77l.19-.69Zm0 0-.14.44a3.01 3.01 0 0 1 .14-.44Z\"]);\nexport const Savings16Regular = /*#__PURE__*/createFluentIcon('Savings16Regular', \"16\", [\"M13.97 7.72c.02.17.03.36.03.55 0 1.3-.45 2.17-.89 2.71a3.6 3.6 0 0 1-.84.76.5.5 0 0 0-.27.44v1.32a.5.5 0 0 1-.5.5H11a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1h-.5a.5.5 0 0 1-.5-.5v-.6a.5.5 0 0 0-.45-.5l-.1-.02a3.16 3.16 0 0 1-1.43-.83 4.02 4.02 0 0 1-.86-1.45c-.14-.41-.47-.78-.94-.92A.3.3 0 0 1 2 8.9v-.8c0-.12.09-.24.21-.27.48-.14.8-.53.95-.95.1-.34.3-.77.63-1.1a4.82 4.82 0 0 1 1.35-.95l.02-.01a.5.5 0 0 0 .3-.46V2.68c.22.17.45.36.7.52.32.21.7.4 1.08.51.11-.33.27-.64.46-.93a2.39 2.39 0 0 1-.99-.41 7.02 7.02 0 0 1-.94-.76.77.77 0 0 0-.82-.15.76.76 0 0 0-.48.7v1.88a6.09 6.09 0 0 0-1.4 1.03 3.88 3.88 0 0 0-.86 1.49c-.06.16-.17.27-.27.3C1.38 7 1 7.52 1 8.1v.79c0 .58.39 1.1.95 1.26.1.03.22.12.27.28.17.47.5 1.22 1.1 1.82A4.16 4.16 0 0 0 5 13.3v.21c0 .83.67 1.5 1.5 1.5H7a1 1 0 0 0 1-1h2a1 1 0 0 0 1 1h.5c.83 0 1.5-.67 1.5-1.5v-1.04l.12-.1c.21-.16.5-.4.77-.75A5.21 5.21 0 0 0 15 8.27c0-.65-.1-1.24-.27-1.75-.18.44-.43.85-.76 1.2Zm-.18-3.85a3 3 0 0 1-.9 3.5c-.43.34-1 .31-1.49.1L9.01 6.5c-.49-.2-.9-.6-.97-1.12a3 3 0 0 1 5.75-1.5ZM12.26 6.6a2 2 0 1 0-3.23-1.33c0 .01.01.05.07.11.06.07.16.14.3.2l2.39.98c.13.06.26.08.34.08.08 0 .12-.03.13-.04Zm-6.51.91a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Savings20Filled = /*#__PURE__*/createFluentIcon('Savings20Filled', \"20\", [\"m9.65 4.06.18.02a4.5 4.5 0 0 0-.7 3.2c.15.98.91 1.6 1.6 1.87l3.03 1.26c.68.29 1.65.39 2.46-.2a4.5 4.5 0 0 0 1.49-1.86c.19.58.29 1.23.29 1.96 0 1.75-.54 2.98-1.09 3.78a4.95 4.95 0 0 1-.91 1v1.41c0 .83-.67 1.5-1.5 1.5h-1.38c-.62 0-1.12-.5-1.12-1.12a.12.12 0 0 0-.12-.11h-1.76a.12.12 0 0 0-.12.11C10 17.5 9.5 18 8.88 18H7.5A1.5 1.5 0 0 1 6 16.5v-.54l-.16-.1c-.28-.18-.69-.5-1.2-1-.62-.64-1-1.34-1.2-1.8-.07-.17-.2-.27-.33-.3-.64-.1-1.11-.65-1.11-1.3V9.95c0-.63.45-1.17 1.08-1.27.11-.02.24-.13.3-.3a4.4 4.4 0 0 1 1-1.71A6.63 6.63 0 0 1 6 5.47v-2.3c0-.36.23-.61.48-.71.25-.1.58-.08.83.15.29.28.68.63 1.11.92.44.3.87.5 1.23.53ZM6.75 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm10.29-2.46a3.5 3.5 0 0 1-1.4 2.36c-.43.31-1 .3-1.5.09l-3.03-1.26c-.48-.2-.88-.56-.98-1.05l-.02-.07a3.5 3.5 0 1 1 6.93-.07Z\"]);\nexport const Savings20Regular = /*#__PURE__*/createFluentIcon('Savings20Regular', \"20\", [\"M16.95 9.54c.03.24.05.5.05.77 0 1.53-.46 2.56-.91 3.2a3.96 3.96 0 0 1-.85.89.5.5 0 0 0-.24.43v1.67a.5.5 0 0 1-.5.5h-1.38a.12.12 0 0 1-.12-.12c0-.61-.5-1.11-1.12-1.11h-1.76c-.62 0-1.12.5-1.12 1.11 0 .07-.05.12-.12.12H7.5a.5.5 0 0 1-.5-.5v-.85a.5.5 0 0 0-.34-.47l-.04-.02a6.37 6.37 0 0 1-1.26-1.01 4.99 4.99 0 0 1-1-1.49c-.19-.42-.57-.8-1.09-.88a.33.33 0 0 1-.27-.32V9.95c0-.14.1-.26.24-.29.55-.09.94-.51 1.1-.97.12-.4.36-.93.75-1.32a5.64 5.64 0 0 1 1.58-1.1l.02-.02A.5.5 0 0 0 7 5.79v-2.1c.25.22.55.46.87.67.43.3.95.56 1.48.66.12-.33.28-.65.48-.94l-.18-.02a2.9 2.9 0 0 1-1.23-.53 8.47 8.47 0 0 1-1.11-.92.77.77 0 0 0-.83-.15.76.76 0 0 0-.48.7v2.32a6.9 6.9 0 0 0-1.63 1.19 4.4 4.4 0 0 0-.99 1.7c-.06.18-.19.29-.3.3A1.3 1.3 0 0 0 2 9.96v1.5c0 .66.47 1.2 1.1 1.32.13.02.27.12.34.3.2.45.58 1.15 1.2 1.78A7.34 7.34 0 0 0 6 15.96v.54c0 .83.67 1.5 1.5 1.5h1.38c.62 0 1.12-.5 1.12-1.12 0-.06.05-.11.12-.11h1.76c.07 0 .12.05.12.11 0 .62.5 1.12 1.12 1.12h1.38c.83 0 1.5-.67 1.5-1.5v-1.42c.04-.03.1-.07.14-.12.22-.2.5-.48.77-.87A6.48 6.48 0 0 0 18 10.3c0-.73-.1-1.38-.3-1.96-.18.43-.43.84-.75 1.2Zm-.15-4.3a3.5 3.5 0 0 1-1.17 4.16c-.43.31-1 .29-1.49.09L11.1 8.23c-.49-.2-.9-.6-.99-1.12a3.5 3.5 0 0 1 6.7-1.88Zm-1.76 3.35a2.5 2.5 0 1 0-3.94-1.63c0 .03.03.08.09.15.06.06.16.14.3.2l3.04 1.25c.13.06.26.08.35.08.09 0 .13-.03.16-.05Zm-8.29.91a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const Savings24Filled = /*#__PURE__*/createFluentIcon('Savings24Filled', \"24\", [\"M18.82 11.13a5 5 0 0 0 1.97-2.7A6.89 6.89 0 0 1 22 12.5a7.1 7.1 0 0 1-3 5.93v1.83c0 .97-.78 1.75-1.75 1.75H16a1.5 1.5 0 0 1-1.5-1.5h-2c0 .83-.67 1.5-1.5 1.5H9.75C8.78 22 8 21.22 8 20.25v-.68a7 7 0 0 1-2.53-1.54 9.86 9.86 0 0 1-1.6-2.13.49.49 0 0 0-.33-.26A1.84 1.84 0 0 1 2 13.83v-1.76c0-.84.6-1.56 1.44-1.7.09-.01.22-.1.28-.28.19-.58.56-1.43 1.25-2.12A7.94 7.94 0 0 1 7 6.52V3.67c0-.94 1.13-1.32 1.74-.72.33.33.81.77 1.34 1.14.53.36 1.04.6 1.46.66a5 5 0 0 0-.45 3.17c.18.96.9 1.57 1.6 1.85l3.7 1.53c.68.29 1.63.38 2.43-.17ZM8 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10.26-.7a3.98 3.98 0 0 0 1.44-4.83 4 4 0 0 0-7.63 2.27 1.27 1.27 0 0 0 .3.62c.19.21.43.38.7.49l3.7 1.53c.49.2 1.05.22 1.49-.08Z\"]);\nexport const Savings24Regular = /*#__PURE__*/createFluentIcon('Savings24Regular', \"24\", [\"M10.08 4.09c.53.36 1.04.6 1.46.66-.23.45-.4.94-.47 1.44a5.39 5.39 0 0 1-1.84-.87 10 10 0 0 1-.73-.55V7c0 .3-.19.58-.47.7a2.52 2.52 0 0 0-.17.07 6.99 6.99 0 0 0-1.83 1.26 4 4 0 0 0-.9 1.54c-.2.6-.7 1.16-1.44 1.28a.22.22 0 0 0-.19.22v1.76c0 .16.12.3.28.33.63.1 1.12.51 1.4 1 .25.46.7 1.15 1.35 1.8a4.96 4.96 0 0 0 2.36 1.3c.36.07.61.38.61.74v1.25c0 .14.11.25.25.25H11c0-.83.67-1.5 1.5-1.5h2c.83 0 1.5.67 1.5 1.5h1.25c.14 0 .25-.11.25-.25V18c0-.28.16-.54.41-.67h.02l.07-.05.28-.19a5.6 5.6 0 0 0 2.22-4.6c0-1-.19-1.81-.5-2.48.35-.47.62-1 .79-1.57A6.89 6.89 0 0 1 22 12.5a7.1 7.1 0 0 1-3 5.92v1.83c0 .97-.78 1.75-1.75 1.75H16a1.5 1.5 0 0 1-1.5-1.5h-2c0 .83-.67 1.5-1.5 1.5H9.75C8.78 22 8 21.22 8 20.25v-.68a7 7 0 0 1-2.53-1.54 9.86 9.86 0 0 1-1.6-2.13.49.49 0 0 0-.33-.26A1.84 1.84 0 0 1 2 13.83v-1.76c0-.84.6-1.56 1.44-1.7.09-.01.22-.1.28-.28.19-.58.56-1.43 1.25-2.12A7.94 7.94 0 0 1 7 6.52V3.67c0-.94 1.13-1.32 1.74-.72.33.33.81.77 1.34 1.14Zm2.99 4.76c-.49-.2-.9-.6-1-1.11a4 4 0 1 1 6.19 2.56c-.44.3-1 .28-1.5.08l-3.69-1.53Zm4.4.18a2.5 2.5 0 1 0-3.94-1.63l.02.01.1.05L17.33 9a.54.54 0 0 0 .12.04ZM9 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const ScaleFill20Filled = /*#__PURE__*/createFluentIcon('ScaleFill20Filled', \"20\", [\"M3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm3.3 1.04a.5.5 0 0 0-.3.46v2a.5.5 0 0 0 1 0v-.8l1.15 1.15a.5.5 0 1 0 .7-.7L7.71 7h.79a.5.5 0 0 0 0-1h-2a.5.5 0 0 0-.2.04ZM6 11.5v2a.5.5 0 0 0 .14.35.5.5 0 0 0 .36.15h2a.5.5 0 0 0 0-1h-.8l1.15-1.15a.5.5 0 0 0-.7-.7L7 12.29v-.79a.5.5 0 0 0-1 0Zm7.85-5.36A.5.5 0 0 0 13.5 6h-2a.5.5 0 0 0 0 1h.8l-1.15 1.15a.5.5 0 0 0 .7.7L13 7.71v.79a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.14-.35Zm-.16 7.82a.5.5 0 0 0 .3-.46v-2a.5.5 0 0 0-.99 0v.8l-1.15-1.15a.5.5 0 0 0-.7.7L12.29 13h-.79a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .2-.04Z\"]);\nexport const ScaleFill20Regular = /*#__PURE__*/createFluentIcon('ScaleFill20Regular', \"20\", [\"M6 6.5a.5.5 0 0 1 .14-.35A.5.5 0 0 1 6.5 6h2a.5.5 0 0 1 0 1h-.8l1.15 1.15a.5.5 0 1 1-.7.7L7 7.71v.79a.5.5 0 0 1-1 0v-2Zm.04 7.2a.5.5 0 0 1-.04-.2v-2a.5.5 0 0 1 1 0v.8l1.15-1.15a.5.5 0 0 1 .7.7L7.71 13h.79a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.46-.3Zm7.65-7.66a.5.5 0 0 1 .3.46v2a.5.5 0 0 1-.99 0v-.8l-1.15 1.15a.5.5 0 0 1-.7-.7L12.29 7h-.79a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .2.04Zm.16 7.82a.5.5 0 0 1-.35.14h-2a.5.5 0 0 1 0-1h.8l-1.15-1.15a.5.5 0 0 1 .7-.7L13 12.29v-.79a.5.5 0 0 1 1 0v2a.5.5 0 0 1-.14.35ZM3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Z\"]);\nexport const ScaleFill24Filled = /*#__PURE__*/createFluentIcon('ScaleFill24Filled', \"24\", [\"M5.25 3C4.01 3 3 4 3 5.25v13.5C3 19.99 4 21 5.25 21h13.5c1.24 0 2.25-1 2.25-2.25V5.25C21 4.01 20 3 18.75 3H5.25ZM6 6.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-.69l1.72 1.72a.75.75 0 1 1-1.06 1.06L7.5 8.56v.7a.75.75 0 1 1-1.5 0V6.74Zm11.78 11.03a.75.75 0 0 1-.53.22h-2.5a.75.75 0 0 1 0-1.5h.69l-1.72-1.72a.75.75 0 0 1 1.06-1.06l1.72 1.72v-.69a.75.75 0 0 1 1.5 0v2.5c0 .2-.08.4-.22.53ZM18 6.75v2.5a.75.75 0 0 1-1.5 0v-.69l-1.72 1.72a.75.75 0 1 1-1.06-1.06l1.72-1.72h-.7a.75.75 0 0 1 0-1.5h2.51a.75.75 0 0 1 .75.75ZM6.22 17.78a.75.75 0 0 1-.22-.53v-2.5a.75.75 0 0 1 1.5 0v.69l1.72-1.72a.75.75 0 0 1 1.06 1.06L8.56 16.5h.7a.75.75 0 1 1 0 1.5H6.74a.75.75 0 0 1-.53-.22Z\"]);\nexport const ScaleFill24Regular = /*#__PURE__*/createFluentIcon('ScaleFill24Regular', \"24\", [\"M6 6.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-.69l1.72 1.72a.75.75 0 1 1-1.06 1.06L7.5 8.56v.7a.75.75 0 1 1-1.5 0V6.74ZM17.25 18a.75.75 0 0 0 .75-.75v-2.5a.75.75 0 0 0-1.5 0v.69l-1.72-1.72a.75.75 0 0 0-1.06 1.06l1.72 1.72h-.69a.75.75 0 0 0 0 1.5h2.5Zm.53-11.78c.14.14.22.33.22.53v2.5a.75.75 0 0 1-1.5 0v-.69l-1.72 1.72a.75.75 0 1 1-1.06-1.06l1.72-1.72h-.7a.75.75 0 0 1 0-1.5h2.51c.2 0 .39.08.53.22ZM6 17.25a.75.75 0 0 0 .75.75h2.5a.75.75 0 0 0 0-1.5h-.69l1.72-1.72a.75.75 0 0 0-1.06-1.06L7.5 15.44v-.69a.75.75 0 0 0-1.5 0v2.5Zm-3-12C3 4.01 4 3 5.25 3h13.5C19.99 3 21 4 21 5.25v13.5c0 1.24-1 2.25-2.25 2.25H5.25C4.01 21 3 20 3 18.75V5.25Zm2.25-.75a.75.75 0 0 0-.75.75v13.5c0 .41.34.75.75.75h13.5c.41 0 .75-.34.75-.75V5.25a.75.75 0 0 0-.75-.75H5.25Z\"]);\nexport const ScaleFit16Filled = /*#__PURE__*/createFluentIcon('ScaleFit16Filled', \"16\", [\"M2 5v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7.65 4.86a.5.5 0 0 1 0-.7l.65-.66H8.75a.5.5 0 0 1 0-1h1.54l-.64-.64a.5.5 0 1 1 .7-.7l1.5 1.5c.2.19.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7 0Zm-3.3-3.7c.2.19.2.5 0 .7l-.64.64h1.54a.5.5 0 1 1 0 1H5.7l.65.65a.5.5 0 1 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5c.19-.2.5-.2.7 0Z\"]);\nexport const ScaleFit16Regular = /*#__PURE__*/createFluentIcon('ScaleFit16Regular', \"16\", [\"M6.35 6.15c.2.2.2.51 0 .7l-.64.65h1.54a.5.5 0 1 1 0 1H5.7l.65.65a.5.5 0 1 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7l1.5-1.5c.19-.2.5-.2.7 0ZM10.3 8.5l-.65.65a.5.5 0 1 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5a.5.5 0 0 0-.7.7l.64.65H8.75a.5.5 0 1 0 0 1h1.55ZM2 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Z\"]);\nexport const ScaleFit20Filled = /*#__PURE__*/createFluentIcon('ScaleFit20Filled', \"20\", [\"M2 6v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm11.12 6.08a.5.5 0 0 1 .05-.7l1-.88H11.5a.5.5 0 0 1 0-1h2.67l-1-.87a.5.5 0 0 1 .66-.76l2 1.75a.5.5 0 0 1 0 .76l-2 1.75a.5.5 0 0 1-.7-.05ZM6.88 7.92a.5.5 0 0 1-.05.7l-1 .88H8.5a.5.5 0 0 1 0 1H5.83l1 .87a.5.5 0 0 1-.66.76l-2-1.75a.5.5 0 0 1 0-.76l2-1.75a.5.5 0 0 1 .7.05Z\"]);\nexport const ScaleFit20Regular = /*#__PURE__*/createFluentIcon('ScaleFit20Regular', \"20\", [\"M6.88 7.92a.5.5 0 0 1-.05.7l-1 .88H8.5a.5.5 0 0 1 0 1H5.83l1 .87a.5.5 0 1 1-.66.76l-2-1.75a.5.5 0 0 1 0-.76l2-1.75a.5.5 0 0 1 .7.05Zm7.29 2.58-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 0 0-.66.76l1 .87H11.5a.5.5 0 0 0 0 1h2.67ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const ScaleFit24Filled = /*#__PURE__*/createFluentIcon('ScaleFit24Filled', \"24\", [\"M4.25 4C3.01 4 2 5 2 6.25v11.5C2 18.99 3 20 4.25 20h15.5c1.24 0 2.25-1 2.25-2.25V6.25C22 5.01 21 4 19.75 4H4.25Zm3.74 5.44c.32.27.35.74.07 1.05l-.66.76h2.86a.75.75 0 0 1 0 1.5H7.4l.66.76a.75.75 0 0 1-1.12.98l-1.75-2a.75.75 0 0 1 0-.98l1.75-2a.75.75 0 0 1 1.05-.07Zm7.96 1.05a.75.75 0 0 1 1.13-.98l1.75 2c.25.28.25.7 0 .98l-1.75 2a.75.75 0 0 1-1.13-.98l.66-.76h-2.86a.75.75 0 0 1 0-1.5h2.86l-.66-.76Z\"]);\nexport const ScaleFit24Regular = /*#__PURE__*/createFluentIcon('ScaleFit24Regular', \"24\", [\"M8 9.44c.3.27.34.74.06 1.05l-.66.76h2.86a.75.75 0 0 1 0 1.5H7.4l.66.76a.75.75 0 0 1-1.12.98l-1.75-2a.75.75 0 0 1 0-.98l1.75-2a.75.75 0 0 1 1.05-.07Zm7.95 1.05a.75.75 0 0 1 1.13-.98l1.75 2c.25.28.25.7 0 .98l-1.75 2a.75.75 0 0 1-1.13-.98l.66-.76h-2.86a.75.75 0 0 1 0-1.5h2.86l-.66-.76ZM2 6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v11.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 20 2 19 2 17.75V6.25Zm2.25-.75a.75.75 0 0 0-.75.75v11.5c0 .41.34.75.75.75h15.5c.41 0 .75-.34.75-.75V6.25a.75.75 0 0 0-.75-.75H4.25Z\"]);\nexport const Scales20Filled = /*#__PURE__*/createFluentIcon('Scales20Filled', \"20\", [\"M3.5 3a.5.5 0 1 0 0 1h.75L2.08 9.22a.95.95 0 0 0-.08.4 3 3 0 0 0 6 0 .95.95 0 0 0-.08-.4L5.75 4H9.5v11h-4a1.5 1.5 0 0 0 0 3h9a1.5 1.5 0 0 0 0-3h-4V4h3.75l-2.17 5.22a.96.96 0 0 0-.08.4 3 3 0 0 0 6 0 .96.96 0 0 0-.08-.4L15.75 4h.75a.5.5 0 0 0 0-1h-13ZM5 4.8 6.75 9h-3.5L5 4.8ZM16.75 9h-3.5L15 4.8 16.75 9Z\"]);\nexport const Scales20Regular = /*#__PURE__*/createFluentIcon('Scales20Regular', \"20\", [\"M3.5 3a.5.5 0 1 0 0 1h.75L2.08 9.22a.95.95 0 0 0-.08.4 3 3 0 0 0 6 0 .95.95 0 0 0-.08-.4L5.75 4H9.5v10H6a2 2 0 1 0 0 4h8a2 2 0 0 0 0-4h-3.5V4h3.75l-2.17 5.22a.96.96 0 0 0-.08.4 3 3 0 0 0 6 0 .96.96 0 0 0-.08-.4L15.75 4h.75a.5.5 0 0 0 0-1h-13ZM5 11.5A2 2 0 0 1 3.06 10h3.88A2 2 0 0 1 5 11.5Zm0-6.7L6.75 9h-3.5L5 4.8ZM6 15h8a1 1 0 0 1 0 2H6a1 1 0 1 1 0-2Zm10.75-6h-3.5L15 4.8 16.75 9Zm-3.69 1h3.88a2 2 0 0 1-3.88 0Z\"]);\nexport const Scales24Filled = /*#__PURE__*/createFluentIcon('Scales24Filled', \"24\", [\"M3.75 3a.75.75 0 0 0 0 1.5h1.04l-2.73 6.72a.75.75 0 0 0-.06.28 3.5 3.5 0 1 0 7 0c0-.1-.02-.2-.06-.28L6.21 4.5h5.04v12h-4a2.25 2.25 0 0 0 0 4.5h9.5a2.25 2.25 0 0 0 0-4.5h-4v-12h5.04l-2.73 6.72a.75.75 0 0 0-.06.28 3.5 3.5 0 1 0 7 0c0-.1-.02-.2-.06-.28L19.21 4.5h1.04a.75.75 0 0 0 0-1.5H3.75ZM5.5 6.74l1.63 4.01H3.87L5.5 6.74Zm11.37 4.01 1.63-4.01 1.63 4.01h-3.26Z\"]);\nexport const Scales24Regular = /*#__PURE__*/createFluentIcon('Scales24Regular', \"24\", [\"M3 3.75c0-.41.34-.75.75-.75h16.5a.75.75 0 0 1 0 1.5h-1.04l2.73 6.72c.04.09.06.18.06.28a3.5 3.5 0 1 1-7 0c0-.1.02-.2.06-.28l2.73-6.72h-5.04v12h4a2.25 2.25 0 0 1 0 4.5h-9.5a2.25 2.25 0 0 1 0-4.5h4v-12H6.21l2.73 6.72c.04.09.06.18.06.28a3.5 3.5 0 1 1-7 0c0-.1.02-.2.06-.28L4.79 4.5H3.75A.75.75 0 0 1 3 3.75Zm3.5 15c0 .41.34.75.75.75h9.5a.75.75 0 0 0 0-1.5h-9.5a.75.75 0 0 0-.75.75Zm.85-6.5h-3.7a2 2 0 0 0 3.7 0Zm-.22-1.5L5.5 6.74l-1.63 4.01h3.26ZM18.5 13.5a2 2 0 0 0 1.85-1.25h-3.7a2 2 0 0 0 1.85 1.25Zm-1.63-2.75h3.26L18.5 6.74l-1.63 4.01Z\"]);\nexport const Scales32Filled = /*#__PURE__*/createFluentIcon('Scales32Filled', \"32\", [\"M5 4a1 1 0 0 0 0 2h1.56l-3.5 9.14a1 1 0 0 0-.06.36C3 18.08 4.92 20 7.5 20s4.5-1.92 4.5-4.5a1 1 0 0 0-.07-.36L8.44 6H15v16H9a3 3 0 1 0 0 6h14a3 3 0 0 0 0-6h-6V6h6.43l-3.37 9.15a1 1 0 0 0-.06.35c0 2.58 1.92 4.5 4.5 4.5s4.5-1.92 4.5-4.5a1 1 0 0 0-.06-.35L25.57 6H27a1 1 0 1 0 0-2H5Zm2.5 5.14 2.05 5.36h-4.1L7.5 9.14Zm14.93 5.36 2.07-5.6 2.07 5.6h-4.14Z\"]);\nexport const Scales32Regular = /*#__PURE__*/createFluentIcon('Scales32Regular', \"32\", [\"M4 5a1 1 0 0 1 1-1h22a1 1 0 1 1 0 2h-1.43l3.37 9.15a1 1 0 0 1 .06.35c0 2.58-1.92 4.5-4.5 4.5a4.39 4.39 0 0 1-4.5-4.5 1 1 0 0 1 .06-.35L23.43 6H17v16h6a3 3 0 1 1 0 6H9a3 3 0 0 1 0-6h6V6H8.44l3.5 9.14a1 1 0 0 1 .06.36c0 2.58-1.92 4.5-4.5 4.5A4.39 4.39 0 0 1 3 15.5a1 1 0 0 1 .07-.36L6.56 6H5a1 1 0 0 1-1-1Zm4 20a1 1 0 0 0 1 1h14a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1ZM7.5 9.14 5.45 14.5h4.1L7.5 9.14Zm2.32 7.36H5.18c.35.92 1.21 1.5 2.32 1.5 1.1 0 1.97-.58 2.32-1.5ZM24.5 18c1.1 0 1.97-.58 2.32-1.5h-4.64c.35.92 1.21 1.5 2.32 1.5Zm-2.07-3.5h4.14L24.5 8.9l-2.07 5.6Z\"]);\nexport const Scan16Filled = /*#__PURE__*/createFluentIcon('Scan16Filled', \"16\", [\"M4.94 4.7a4.48 4.48 0 0 1 2.77-1.2l-1.73 3-1.04-1.8ZM3.96 6 5.7 9H3.61a4.51 4.51 0 0 1 .35-3Zm3.17 2.5v-.01a1 1 0 0 1 0-.99l.01-.01a1 1 0 0 1 1.73.01v.01a1 1 0 0 1 0 .99l-.01.01a1 1 0 0 1-1.73-.01Zm1.16-3 1.04-1.8c1 .3 1.84.95 2.41 1.8H8.3ZM10.3 7h2.08a4.51 4.51 0 0 1-.35 3L10.3 7Zm-.29 2.5 1.04 1.8a4.48 4.48 0 0 1-2.77 1.2l1.73-3Zm-2.3 1-1.05 1.8c-1-.3-1.84-.95-2.41-1.8H7.7ZM8 2a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z\"]);\nexport const Scan16Regular = /*#__PURE__*/createFluentIcon('Scan16Regular', \"16\", [\"M4.68 4.26a4.98 4.98 0 0 1 3.88-1.23L6.29 6.96 6.27 7 4.68 4.26Zm-.7.77L6.27 9H3.1a5.02 5.02 0 0 1 .88-3.97ZM6.27 9ZM8 6l1.58-2.74a5.02 5.02 0 0 1 3 2.74H8Zm-.87 1.5.02-.02A1 1 0 0 1 8.87 8.5l-.02.02A1 1 0 0 1 7.13 7.5Zm2.6-.5h3.17a5.02 5.02 0 0 1-.88 3.97L9.73 7Zm0 2 1.59 2.74a4.98 4.98 0 0 1-3.88 1.23l2.27-3.93.02-.04ZM8 10l-1.58 2.74a5.01 5.01 0 0 1-3-2.74H8Zm0-8a6 6 0 1 0 0 12A6 6 0 0 0 8 2Zm1.73 5Z\"]);\nexport const Scan20Filled = /*#__PURE__*/createFluentIcon('Scan20Filled', \"20\", [\"M9.7 3.5 7.02 8.19l-.18.33-1.65-2.87A6.48 6.48 0 0 1 9.7 3.51ZM8.28 9l.03-.05a2 2 0 0 1 3.43.05l.03.06a2 2 0 0 1-.03 1.94l-.03.05A2 2 0 0 1 8.27 11l-.03-.06A2 2 0 0 1 8.27 9Zm-1.35 2.67.2.33h-3.3a6.5 6.5 0 0 1 .41-5l2.7 4.67ZM10 13.5l.3-.01-1.66 2.87a6.5 6.5 0 0 1-4.12-2.86H10Zm2.99-1.68.18-.33 1.65 2.87a6.48 6.48 0 0 1-4.53 2.13l2.7-4.67Zm.09-3.49a3.52 3.52 0 0 0-.2-.33h3.3a6.5 6.5 0 0 1-.41 5l-2.7-4.67ZM10 6.5l-.3.01 1.66-2.87a6.5 6.5 0 0 1 4.12 2.86H10ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const Scan20Regular = /*#__PURE__*/createFluentIcon('Scan20Regular', \"20\", [\"M4.91 5.19a6.98 6.98 0 0 1 5.65-2.17L7.4 8.5c-.1.18-.19.36-.25.56L4.91 5.2Zm-.67.83 3.12 5.4a3 3 0 0 0 .4.58H3.3a7 7 0 0 1 .95-5.98ZM8.27 11l-.04-.06A2 2 0 0 1 11.73 9l.04.06A2 2 0 0 1 8.27 11Zm1.12-3.94 2.23-3.87c2.08.5 3.8 1.92 4.7 3.81H10c-.21 0-.42.02-.61.06Zm2.85.94h4.47a7 7 0 0 1-.95 5.98l-3.12-5.4c-.1-.2-.25-.4-.4-.58Zm.61 2.94 2.24 3.87a6.98 6.98 0 0 1-5.65 2.17l3.16-5.48c.1-.18.19-.36.25-.56Zm-2.24 2L8.38 16.8A7.01 7.01 0 0 1 3.68 13H10c.21 0 .42-.02.61-.06ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z\"]);\nexport const Scan24Filled = /*#__PURE__*/createFluentIcon('Scan24Filled', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm3.33 12.22a4 4 0 0 1-.26.34l-.14.17-3.95 5.2a8.07 8.07 0 0 0 6.24-1.87l-1.9-3.84Zm-3.9 1.8H5.09a8.03 8.03 0 0 0 3.82 3.36l2.54-3.36Zm8.32-6.03h-4.28l.06.13.12.23 3 6.09a7.96 7.96 0 0 0 1.1-6.45ZM5.05 8.05a7.96 7.96 0 0 0-.8 5.97h4.29l-.06-.09-3.44-5.88ZM12 10a2 2 0 0 0-1.58.77l-.1.17a1 1 0 0 1-.09.12 2 2 0 0 0 3.17 2.36l.16-.2a1 1 0 0 1 .12-.13A2 2 0 0 0 12 10Zm0-6c-2.2 0-4.2.9-5.65 2.33l2.17 3.7a4 4 0 0 1 .25-.39L12.15 4H12Zm2.28.33L12.1 8h6.83a8.02 8.02 0 0 0-4.64-3.66Z\"]);\nexport const Scan24Regular = /*#__PURE__*/createFluentIcon('Scan24Regular', \"24\", [\"M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm3.25 12.33-.04.07-.06.1-4.76 5.85a8.54 8.54 0 0 0 7.26-2l-2.08-4.54c-.1.18-.2.36-.32.52ZM4.49 16a8.53 8.53 0 0 0 4.34 3.9L11.99 16h-.19l-.13-.01H4.49ZM20.13 9.5h-5a4.02 4.02 0 0 1 .3.41l.05.1.04.07c.08.16.16.33.22.5l3.02 6.57a8.46 8.46 0 0 0 1.37-7.65ZM3.5 12c0 .86.13 1.7.37 2.49h5a4 4 0 0 1-.23-.32l-.14-.23-3.61-6.6A8.46 8.46 0 0 0 3.5 12Zm6.52-1.53-.04.08A2.48 2.48 0 0 0 9.5 12c0 1.3.98 2.36 2.24 2.49h.52a2.5 2.5 0 0 0-.03-4.98h-.43a2.5 2.5 0 0 0-1.78.96ZM12 3.5c-2.4 0-4.55.99-6.1 2.58l2.4 4.38a4 4 0 0 1 .49-.85l3.9-6.08A8.62 8.62 0 0 0 12 3.5Zm-.4 4.52a4.05 4.05 0 0 1 .7 0h7.2A8.52 8.52 0 0 0 14.6 3.9l-.3-.09-2.7 4.21Z\"]);\nexport const ScanCamera16Filled = /*#__PURE__*/createFluentIcon('ScanCamera16Filled', \"16\", [\"M4.75 2A2.75 2.75 0 0 0 2 4.75v.86a.75.75 0 0 0 1.5 0v-.86c0-.69.56-1.25 1.25-1.25h.86a.75.75 0 0 0 0-1.5h-.86Zm5.64 0a.75.75 0 1 0 0 1.5h.86c.69 0 1.25.56 1.25 1.25v.86a.75.75 0 0 0 1.5 0v-.86A2.75 2.75 0 0 0 11.25 2h-.86ZM3.5 10.39a.75.75 0 1 0-1.5 0v.86A2.75 2.75 0 0 0 4.75 14h.86a.75.75 0 0 0 0-1.5h-.86c-.69 0-1.25-.56-1.25-1.25v-.86Zm10.5 0a.75.75 0 1 0-1.5 0v.86c0 .69-.56 1.25-1.25 1.25h-.86a.75.75 0 1 0 0 1.5h.86A2.75 2.75 0 0 0 14 11.25v-.86ZM4.5 10V7.38a1 1 0 0 1 1-1h.75l.58-.91A1 1 0 0 1 7.68 5h.64a1 1 0 0 1 .85.47l.58.91h.75a1 1 0 0 1 1 1V10a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1ZM8 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ScanCamera16Regular = /*#__PURE__*/createFluentIcon('ScanCamera16Regular', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm6 0a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1ZM3 10.5a.5.5 0 0 0-1 0v1A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1Zm11 0a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1ZM4.5 10V7.38a1 1 0 0 1 1-1h.75l.58-.91A1 1 0 0 1 7.68 5h.64a1 1 0 0 1 .85.47l.58.91h.75a1 1 0 0 1 1 1V10a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1ZM8 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ScanCamera20Filled = /*#__PURE__*/createFluentIcon('ScanCamera20Filled', \"20\", [\"M3 6.25C3 4.45 4.46 3 6.25 3H7.6a.75.75 0 1 1 0 1.5H6.25c-.97 0-1.75.78-1.75 1.75V7.6a.75.75 0 1 1-1.5 0V6.25Zm8.65-2.5c0-.41.34-.75.75-.75h1.35C15.55 3 17 4.46 17 6.25V7.6a.75.75 0 0 1-1.5 0V6.25c0-.97-.78-1.75-1.75-1.75H12.4a.75.75 0 0 1-.75-.75Zm-7.9 7.9c.41 0 .75.34.75.75v1.35c0 .97.78 1.75 1.75 1.75H7.6a.75.75 0 0 1 0 1.5H6.25A3.25 3.25 0 0 1 3 13.75V12.4c0-.41.34-.75.75-.75Zm12.5 0c.41 0 .75.34.75.75v1.35c0 1.8-1.46 3.25-3.25 3.25H12.4a.75.75 0 0 1 0-1.5h1.35c.97 0 1.75-.78 1.75-1.75V12.4c0-.41.34-.75.75-.75ZM10 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-4 1V9a1 1 0 0 1 1-1h1l.7-1.05a1 1 0 0 1 .84-.45h.92a1 1 0 0 1 .84.45L12 8h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Zm6-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z\"]);\nexport const ScanCamera20Regular = /*#__PURE__*/createFluentIcon('ScanCamera20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5ZM10 11a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-4 1V9a1 1 0 0 1 1-1h1l.7-1.05a1 1 0 0 1 .84-.45h.92a1 1 0 0 1 .84.45L12 8h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1Zm6-2a2 2 0 1 0-4 0 2 2 0 0 0 4 0Z\"]);\nexport const ScanCamera24Filled = /*#__PURE__*/createFluentIcon('ScanCamera24Filled', \"24\", [\"M3 6.5A3.5 3.5 0 0 1 6.5 3h1.86a1 1 0 0 1 0 2H6.5C5.67 5 5 5.67 5 6.5v1.86a1 1 0 0 1-2 0V6.5ZM14.64 4a1 1 0 0 1 1-1h1.86A3.5 3.5 0 0 1 21 6.5v1.86a1 1 0 1 1-2 0V6.5c0-.83-.67-1.5-1.5-1.5h-1.86a1 1 0 0 1-1-1ZM4 14.64a1 1 0 0 1 1 1v1.86c0 .83.67 1.5 1.5 1.5h1.86a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 17.5v-1.86a1 1 0 0 1 1-1Zm16 0a1 1 0 0 1 1 1v1.86a3.5 3.5 0 0 1-3.5 3.5h-1.86a1 1 0 1 1 0-2h1.86c.83 0 1.5-.67 1.5-1.5v-1.86a1 1 0 0 1 1-1ZM12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-1.15-6c-.48 0-.9.26-1.12.68L9.24 9h-.57C7.75 9 7 9.6 7 10.5v3.86c0 .9.75 1.64 1.67 1.64h6.66c.92 0 1.67-.73 1.67-1.64V10.5c0-.9-.75-1.5-1.67-1.5h-.57l-.49-1.32A1.25 1.25 0 0 0 13.15 7h-2.3ZM12 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z\"]);\nexport const ScanCamera24Regular = /*#__PURE__*/createFluentIcon('ScanCamera24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h2a.75.75 0 0 1 0 1.5h-2c-.97 0-1.75.78-1.75 1.75v2a.75.75 0 0 1-1.5 0v-2Zm12-2.5c0-.41.34-.75.75-.75h2C19.55 3 21 4.46 21 6.25v2a.75.75 0 0 1-1.5 0v-2c0-.97-.78-1.75-1.75-1.75h-2a.75.75 0 0 1-.75-.75ZM3.75 15c.41 0 .75.34.75.75v2c0 .97.78 1.75 1.75 1.75h2a.75.75 0 0 1 0 1.5h-2A3.25 3.25 0 0 1 3 17.75v-2c0-.41.34-.75.75-.75Zm16.5 0c.41 0 .75.34.75.75v2c0 1.8-1.46 3.25-3.25 3.25h-2a.75.75 0 0 1 0-1.5h2c.97 0 1.75-.78 1.75-1.75v-2c0-.41.34-.75.75-.75ZM12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm-1.15-6c-.48 0-.9.26-1.12.68L9.24 9h-.57C7.75 9 7 9.6 7 10.5v3.86c0 .9.75 1.64 1.67 1.64h6.66c.92 0 1.67-.73 1.67-1.64V10.5c0-.9-.75-1.5-1.67-1.5h-.57l-.49-1.32A1.25 1.25 0 0 0 13.15 7h-2.3ZM12 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z\"]);\nexport const ScanCamera28Filled = /*#__PURE__*/createFluentIcon('ScanCamera28Filled', \"28\", [\"M3 7a4 4 0 0 1 4-4h3.34a1 1 0 0 1 0 2H7a2 2 0 0 0-2 2v3.34a1 1 0 0 1-2 0V7Zm13.66-3a1 1 0 0 1 1-1H21a4 4 0 0 1 4 4v3.34a1 1 0 0 1-2 0V7a2 2 0 0 0-2-2h-3.34a1 1 0 0 1-1-1ZM4 16.66a1 1 0 0 1 1 1V21c0 1.1.9 2 2 2h3.34a1 1 0 0 1 0 2H7a4 4 0 0 1-4-4v-3.34a1 1 0 0 1 1-1Zm20 0a1 1 0 0 1 1 1V21a4 4 0 0 1-4 4h-3.34a1 1 0 0 1 0-2H21a2 2 0 0 0 2-2v-3.34a1 1 0 0 1 1-1ZM14 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-1.38-8a1.5 1.5 0 0 0-1.34.83L10.69 10H10a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-.7l-.58-1.17A1.5 1.5 0 0 0 15.38 8h-2.76ZM14 11a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z\"]);\nexport const ScanCamera28Regular = /*#__PURE__*/createFluentIcon('ScanCamera28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h3.5a.75.75 0 0 1 0 1.5h-3.5c-1.24 0-2.25 1-2.25 2.25v3.5a.75.75 0 0 1-1.5 0v-3.5Zm14-3c0-.41.34-.75.75-.75h3.5A3.75 3.75 0 0 1 25 6.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-1.24-1-2.25-2.25-2.25h-3.5a.75.75 0 0 1-.75-.75ZM3.75 17c.41 0 .75.34.75.75v3.5c0 1.24 1 2.25 2.25 2.25h3.5a.75.75 0 0 1 0 1.5h-3.5A3.75 3.75 0 0 1 3 21.25v-3.5c0-.41.34-.75.75-.75Zm20.5 0c.41 0 .75.34.75.75v3.5A3.75 3.75 0 0 1 21.25 25h-3.5a.75.75 0 0 1 0-1.5h3.5c1.24 0 2.25-1 2.25-2.25v-3.5c0-.41.34-.75.75-.75ZM14 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-1.38-8a1.5 1.5 0 0 0-1.34.83L10.69 10H10a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2h-.7l-.58-1.17A1.5 1.5 0 0 0 15.38 8h-2.76ZM14 11a3 3 0 1 1 0 6 3 3 0 0 1 0-6Z\"]);\nexport const ScanCamera48Filled = /*#__PURE__*/createFluentIcon('ScanCamera48Filled', \"48\", [\"M6 12.5A6.5 6.5 0 0 1 12.5 6h5.34a1.5 1.5 0 0 1 0 3H12.5A3.5 3.5 0 0 0 9 12.5v5.34a1.5 1.5 0 0 1-3 0V12.5Zm22.66-5c0-.83.67-1.5 1.5-1.5h5.34a6.5 6.5 0 0 1 6.5 6.5v5.34a1.5 1.5 0 0 1-3 0V12.5A3.5 3.5 0 0 0 35.5 9h-5.34a1.5 1.5 0 0 1-1.5-1.5ZM7.5 28.66c.83 0 1.5.67 1.5 1.5v5.34a3.5 3.5 0 0 0 3.5 3.5h5.34a1.5 1.5 0 0 1 0 3H12.5A6.5 6.5 0 0 1 6 35.5v-5.34c0-.83.67-1.5 1.5-1.5Zm33 0c.83 0 1.5.67 1.5 1.5v5.34a6.5 6.5 0 0 1-6.5 6.5h-5.34a1.5 1.5 0 0 1 0-3h5.34a3.5 3.5 0 0 0 3.5-3.5v-5.34c0-.83.67-1.5 1.5-1.5ZM27 24.5a3 3 0 1 0-6 0 3 3 0 0 0 6 0Zm.86-8.89a2.25 2.25 0 0 0-1.94-1.1h-3.8c-.78 0-1.5.4-1.92 1.07L19.33 17h-2.08A3.25 3.25 0 0 0 14 20.25v9.5c0 1.8 1.46 3.25 3.25 3.25h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5c0-1.8-1.46-3.25-3.25-3.25h-2.07l-.82-1.39ZM19.5 24.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Z\"]);\nexport const ScanCamera48Regular = /*#__PURE__*/createFluentIcon('ScanCamera48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h5.5a1.25 1.25 0 1 1 0 2.5h-5.5a3.75 3.75 0 0 0-3.75 3.75v5.5a1.25 1.25 0 1 1-2.5 0v-5.5Zm23-5c0-.69.56-1.25 1.25-1.25h5.5C39.2 6 42 8.8 42 12.25v5.5a1.25 1.25 0 1 1-2.5 0v-5.5a3.75 3.75 0 0 0-3.75-3.75h-5.5c-.69 0-1.25-.56-1.25-1.25ZM7.25 29c.69 0 1.25.56 1.25 1.25v5.5a3.75 3.75 0 0 0 3.75 3.75h5.5a1.25 1.25 0 1 1 0 2.5h-5.5A6.25 6.25 0 0 1 6 35.75v-5.5c0-.69.56-1.25 1.25-1.25Zm33.5 0c.69 0 1.25.56 1.25 1.25v5.5C42 39.2 39.2 42 35.75 42h-5.5a1.25 1.25 0 1 1 0-2.5h5.5a3.75 3.75 0 0 0 3.75-3.75v-5.5c0-.69.56-1.25 1.25-1.25ZM27 24.5a3 3 0 1 0-6 0 3 3 0 0 0 6 0Zm.86-8.89a2.25 2.25 0 0 0-1.94-1.1h-3.8c-.78 0-1.5.4-1.92 1.07L19.33 17h-2.08A3.25 3.25 0 0 0 14 20.25v9.5c0 1.8 1.46 3.25 3.25 3.25h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5c0-1.8-1.46-3.25-3.25-3.25h-2.07l-.82-1.39ZM19.5 24.5a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0Z\"]);\nexport const ScanDash12Filled = /*#__PURE__*/createFluentIcon('ScanDash12Filled', \"12\", [\"M4.25 2C3.01 2 2 3 2 4.25v.36a.75.75 0 1 0 1.5 0v-.36c0-.41.34-.75.75-.75h.36a.75.75 0 1 0 0-1.5h-.36Zm3.14 0a.75.75 0 1 0 0 1.5h.36c.41 0 .75.34.75.75v.36a.75.75 0 1 0 1.5 0v-.36C10 3.01 9 2 7.75 2h-.36ZM3.5 7.4a.75.75 0 1 0-1.5 0v.35C2 8.99 3 10 4.25 10h.36a.75.75 0 1 0 0-1.5h-.36a.75.75 0 0 1-.75-.75v-.36Zm6.5 0a.75.75 0 1 0-1.5 0v.35c0 .41-.34.75-.75.75h-.36a.75.75 0 1 0 0 1.5h.36C8.99 10 10 9 10 7.75v-.36ZM4.75 5.24a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z\"]);\nexport const ScanDash12Regular = /*#__PURE__*/createFluentIcon('ScanDash12Regular', \"12\", [\"M4 2a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V4a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H4Zm3.5 0a.5.5 0 0 0 0 1H8a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2h-.5ZM3 7.5a.5.5 0 0 0-1 0V8c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H4a1 1 0 0 1-1-1v-.5Zm7 0a.5.5 0 0 0-1 0V8a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1H8a2 2 0 0 0 2-2v-.5Zm-5.5-2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const ScanDash16Filled = /*#__PURE__*/createFluentIcon('ScanDash16Filled', \"16\", [\"M4.75 2A2.75 2.75 0 0 0 2 4.75v.86a.75.75 0 0 0 1.5 0v-.86c0-.69.56-1.25 1.25-1.25h.86a.75.75 0 0 0 0-1.5h-.86Zm5.64 0a.75.75 0 1 0 0 1.5h.86c.69 0 1.25.56 1.25 1.25v.86a.75.75 0 0 0 1.5 0v-.86A2.75 2.75 0 0 0 11.25 2h-.86ZM3.5 10.39a.75.75 0 1 0-1.5 0v.86A2.75 2.75 0 0 0 4.75 14h.86a.75.75 0 0 0 0-1.5h-.86c-.69 0-1.25-.56-1.25-1.25v-.86Zm10.5 0a.75.75 0 1 0-1.5 0v.86c0 .69-.56 1.25-1.25 1.25h-.86a.75.75 0 1 0 0 1.5h.86A2.75 2.75 0 0 0 14 11.25v-.86ZM5.25 7.25a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Z\"]);\nexport const ScanDash16Regular = /*#__PURE__*/createFluentIcon('ScanDash16Regular', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm6 0a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1ZM3 10.5a.5.5 0 0 0-1 0v1A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1Zm11 0a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1Zm-9-3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5Z\"]);\nexport const ScanDash20Filled = /*#__PURE__*/createFluentIcon('ScanDash20Filled', \"20\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25V7.6a.75.75 0 1 0 1.5 0V6.25c0-.97.78-1.75 1.75-1.75H7.6a.75.75 0 1 0 0-1.5H6.25Zm6.15 0a.75.75 0 0 0 0 1.5h1.35c.97 0 1.75.78 1.75 1.75V7.6a.75.75 0 0 0 1.5 0V6.25C17 4.45 15.54 3 13.75 3H12.4Zm-7.9 9.4a.75.75 0 0 0-1.5 0v1.35C3 15.55 4.46 17 6.25 17H7.6a.75.75 0 0 0 0-1.5H6.25c-.97 0-1.75-.78-1.75-1.75V12.4Zm12.5 0a.75.75 0 0 0-1.5 0v1.35c0 .97-.78 1.75-1.75 1.75H12.4a.75.75 0 0 0 0 1.5h1.35c1.8 0 3.25-1.46 3.25-3.25V12.4ZM6.75 9.25a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z\"]);\nexport const ScanDash20Regular = /*#__PURE__*/createFluentIcon('ScanDash20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v1.5a.5.5 0 0 0 1 0V6c0-1.1.9-2 2-2h1.5a.5.5 0 0 0 0-1H6Zm6.5 0a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5ZM4 12.5a.5.5 0 0 0-1 0V14a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H6a2 2 0 0 1-2-2v-1.5Zm13 0a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Zm-10.5-3a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Z\"]);\nexport const ScanDash24Filled = /*#__PURE__*/createFluentIcon('ScanDash24Filled', \"24\", [\"M6.5 3A3.5 3.5 0 0 0 3 6.5v1.86a1 1 0 0 0 2 0V6.5C5 5.67 5.67 5 6.5 5h1.86a1 1 0 0 0 0-2H6.5Zm9.14 0a1 1 0 1 0 0 2h1.86c.83 0 1.5.67 1.5 1.5v1.86a1 1 0 1 0 2 0V6.5A3.5 3.5 0 0 0 17.5 3h-1.86ZM5 15.64a1 1 0 1 0-2 0v1.86A3.5 3.5 0 0 0 6.5 21h1.86a1 1 0 1 0 0-2H6.5A1.5 1.5 0 0 1 5 17.5v-1.86Zm16 0a1 1 0 1 0-2 0v1.86c0 .83-.67 1.5-1.5 1.5h-1.86a1 1 0 1 0 0 2h1.86a3.5 3.5 0 0 0 3.5-3.5v-1.86ZM8 11a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8Z\"]);\nexport const ScanDash24Regular = /*#__PURE__*/createFluentIcon('ScanDash24Regular', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v2a.75.75 0 0 0 1.5 0v-2c0-.97.78-1.75 1.75-1.75h2a.75.75 0 0 0 0-1.5h-2Zm9.5 0a.75.75 0 0 0 0 1.5h2c.97 0 1.75.78 1.75 1.75v2a.75.75 0 0 0 1.5 0v-2C21 4.45 19.54 3 17.75 3h-2ZM4.5 15.75a.75.75 0 0 0-1.5 0v2C3 19.55 4.46 21 6.25 21h2a.75.75 0 0 0 0-1.5h-2c-.97 0-1.75-.78-1.75-1.75v-2Zm16.5 0a.75.75 0 0 0-1.5 0v2c0 .97-.78 1.75-1.75 1.75h-2a.75.75 0 0 0 0 1.5h2c1.8 0 3.25-1.46 3.25-3.25v-2Zm-13.5-4.5a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z\"]);\nexport const ScanDash28Filled = /*#__PURE__*/createFluentIcon('ScanDash28Filled', \"28\", [\"M7 3a4 4 0 0 0-4 4v3.34a1 1 0 0 0 2 0V7c0-1.1.9-2 2-2h3.34a1 1 0 0 0 0-2H7Zm10.66 0a1 1 0 0 0 0 2H21a2 2 0 0 1 2 2v3.34a1 1 0 0 0 2 0V7a4 4 0 0 0-4-4h-3.34ZM5 17.66a1 1 0 0 0-2 0V21a4 4 0 0 0 4 4h3.34a1 1 0 0 0 0-2H7a2 2 0 0 1-2-2v-3.34Zm20 0a1 1 0 0 0-2 0V21a2 2 0 0 1-2 2h-3.34a1 1 0 0 0 0 2H21a4 4 0 0 0 4-4v-3.34ZM8.75 13a1 1 0 1 0 0 2h10.5a1 1 0 1 0 0-2H8.75Z\"]);\nexport const ScanDash28Regular = /*#__PURE__*/createFluentIcon('ScanDash28Regular', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v3.5a.75.75 0 0 0 1.5 0v-3.5c0-1.24 1-2.25 2.25-2.25h3.5a.75.75 0 0 0 0-1.5h-3.5Zm11 0a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5A3.75 3.75 0 0 0 21.25 3h-3.5ZM4.5 17.75a.75.75 0 0 0-1.5 0v3.5A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5c-1.24 0-2.25-1-2.25-2.25v-3.5Zm20.5 0a.75.75 0 0 0-1.5 0v3.5c0 1.24-1 2.25-2.25 2.25h-3.5a.75.75 0 0 0 0 1.5h3.5A3.75 3.75 0 0 0 25 21.25v-3.5Zm-16.75-4.5a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5H8.25Z\"]);\nexport const ScanDash32Filled = /*#__PURE__*/createFluentIcon('ScanDash32Filled', \"32\", [\"M7.75 3A4.75 4.75 0 0 0 3 7.75v3.35a1.25 1.25 0 0 0 2.5 0V7.75c0-1.24 1-2.25 2.25-2.25h3.35a1.25 1.25 0 0 0 0-2.5H7.75ZM20.9 3a1.25 1.25 0 0 0 0 2.5h3.35c1.24 0 2.25 1 2.25 2.25v3.35a1.25 1.25 0 0 0 2.5 0V7.75A4.75 4.75 0 0 0 24.25 3H20.9ZM5.5 20.9a1.25 1.25 0 0 0-2.5 0v3.35A4.75 4.75 0 0 0 7.75 29h3.35a1.25 1.25 0 0 0 0-2.5H7.75c-1.24 0-2.25-1-2.25-2.25V20.9Zm23.5 0a1.25 1.25 0 0 0-2.5 0v3.35c0 1.24-1 2.25-2.25 2.25H20.9a1.25 1.25 0 0 0 0 2.5h3.35A4.75 4.75 0 0 0 29 24.25V20.9ZM9.5 14.75a1.25 1.25 0 1 0 0 2.5h13a1.25 1.25 0 1 0 0-2.5h-13Z\"]);\nexport const ScanDash32Regular = /*#__PURE__*/createFluentIcon('ScanDash32Regular', \"32\", [\"M7.5 3A4.5 4.5 0 0 0 3 7.5V11a1 1 0 1 0 2 0V7.5A2.5 2.5 0 0 1 7.5 5H11a1 1 0 1 0 0-2H7.5ZM21 3a1 1 0 1 0 0 2h3.5A2.5 2.5 0 0 1 27 7.5V11a1 1 0 1 0 2 0V7.5A4.5 4.5 0 0 0 24.5 3H21ZM5 21a1 1 0 1 0-2 0v3.5A4.5 4.5 0 0 0 7.5 29H11a1 1 0 1 0 0-2H7.5A2.5 2.5 0 0 1 5 24.5V21Zm24 0a1 1 0 1 0-2 0v3.5a2.5 2.5 0 0 1-2.5 2.5H21a1 1 0 1 0 0 2h3.5a4.5 4.5 0 0 0 4.5-4.5V21ZM9 15a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H9Z\"]);\nexport const ScanDash48Filled = /*#__PURE__*/createFluentIcon('ScanDash48Filled', \"48\", [\"M12.5 6A6.5 6.5 0 0 0 6 12.5v5.34a1.5 1.5 0 0 0 3 0V12.5A3.5 3.5 0 0 1 12.5 9h5.34a1.5 1.5 0 0 0 0-3H12.5Zm17.66 0a1.5 1.5 0 0 0 0 3h5.34a3.5 3.5 0 0 1 3.5 3.5v5.34a1.5 1.5 0 0 0 3 0V12.5A6.5 6.5 0 0 0 35.5 6h-5.34ZM9 30.16a1.5 1.5 0 0 0-3 0v5.34a6.5 6.5 0 0 0 6.5 6.5h5.34a1.5 1.5 0 0 0 0-3H12.5A3.5 3.5 0 0 1 9 35.5v-5.34Zm33 0a1.5 1.5 0 0 0-3 0v5.34a3.5 3.5 0 0 1-3.5 3.5h-5.34a1.5 1.5 0 0 0 0 3h5.34a6.5 6.5 0 0 0 6.5-6.5v-5.34ZM14.5 22.5a1.5 1.5 0 0 0 0 3h19a1.5 1.5 0 0 0 0-3h-19Z\"]);\nexport const ScanDash48Regular = /*#__PURE__*/createFluentIcon('ScanDash48Regular', \"48\", [\"M12.25 6A6.25 6.25 0 0 0 6 12.25v5.5a1.25 1.25 0 1 0 2.5 0v-5.5a3.75 3.75 0 0 1 3.75-3.75h5.5a1.25 1.25 0 1 0 0-2.5h-5.5Zm18 0a1.25 1.25 0 1 0 0 2.5h5.5a3.75 3.75 0 0 1 3.75 3.75v5.5a1.25 1.25 0 1 0 2.5 0v-5.5C42 8.8 39.2 6 35.75 6h-5.5ZM8.5 30.25a1.25 1.25 0 1 0-2.5 0v5.5C6 39.2 8.8 42 12.25 42h5.5a1.25 1.25 0 1 0 0-2.5h-5.5a3.75 3.75 0 0 1-3.75-3.75v-5.5Zm33.5 0a1.25 1.25 0 1 0-2.5 0v5.5a3.75 3.75 0 0 1-3.75 3.75h-5.5a1.25 1.25 0 1 0 0 2.5h5.5C39.2 42 42 39.2 42 35.75v-5.5Zm-28-7.5a1.25 1.25 0 1 0 0 2.5h20a1.25 1.25 0 1 0 0-2.5H14Z\"]);\nexport const ScanObject20Filled = /*#__PURE__*/createFluentIcon('ScanObject20Filled', \"20\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Zm8.23-8.6a1.5 1.5 0 0 0-2.46 0l-2.6 3.75A1.5 1.5 0 0 0 7.42 13h5.18a1.5 1.5 0 0 0 1.23-2.35L11.23 6.9Z\"]);\nexport const ScanObject20Regular = /*#__PURE__*/createFluentIcon('ScanObject20Regular', \"20\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2Zm11 14c.83 0 1.5-.67 1.5-1.5v-2a.5.5 0 0 1 1 0v2a2.5 2.5 0 0 1-2.5 2.5h-2a.5.5 0 0 1 0-1h2ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM4.5 17A1.5 1.5 0 0 1 3 15.5v-2a.5.5 0 0 0-1 0v2A2.5 2.5 0 0 0 4.5 18h2a.5.5 0 0 0 0-1h-2Zm6.73-10.1a1.5 1.5 0 0 0-2.46 0l-2.6 3.75A1.5 1.5 0 0 0 7.42 13h5.18a1.5 1.5 0 0 0 1.23-2.35L11.23 6.9Zm-1.64.57a.5.5 0 0 1 .82 0l2.6 3.75a.5.5 0 0 1-.42.78H7.41a.5.5 0 0 1-.41-.78l2.59-3.75Z\"]);\nexport const ScanObject24Filled = /*#__PURE__*/createFluentIcon('ScanObject24Filled', \"24\", [\"M3.5 5.25c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3Zm17 0c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM5.25 20.5c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3Zm15.25-1.75c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3a.75.75 0 0 0-1.5 0v3ZM13.82 8.23a2.25 2.25 0 0 0-3.64 0l-3.05 4.2A2.25 2.25 0 0 0 8.95 16h6.1c1.84 0 2.9-2.09 1.82-3.57l-3.05-4.2Z\"]);\nexport const ScanObject24Regular = /*#__PURE__*/createFluentIcon('ScanObject24Regular', \"24\", [\"M5.25 3.5c-.97 0-1.75.78-1.75 1.75v3a.75.75 0 0 1-1.5 0v-3C2 3.45 3.46 2 5.25 2h3a.75.75 0 0 1 0 1.5h-3Zm13.5 0c.97 0 1.75.78 1.75 1.75v3a.75.75 0 0 0 1.5 0v-3C22 3.45 20.54 2 18.75 2h-3a.75.75 0 0 0 0 1.5h3ZM3.5 18.75c0 .97.78 1.75 1.75 1.75h3a.75.75 0 0 1 0 1.5h-3A3.25 3.25 0 0 1 2 18.75v-3a.75.75 0 0 1 1.5 0v3Zm15.25 1.75c.97 0 1.75-.78 1.75-1.75v-3a.75.75 0 0 1 1.5 0v3c0 1.8-1.46 3.25-3.25 3.25h-3a.75.75 0 0 1 0-1.5h3ZM13.82 8.23a2.25 2.25 0 0 0-3.64 0l-3.05 4.2A2.25 2.25 0 0 0 8.95 16h6.1c1.84 0 2.9-2.09 1.82-3.57l-3.05-4.2Zm-2.43.88a.75.75 0 0 1 1.22 0l3.05 4.2c.36.5 0 1.19-.6 1.19H8.94a.75.75 0 0 1-.61-1.2l3.05-4.2Z\"]);\nexport const ScanPerson16Filled = /*#__PURE__*/createFluentIcon('ScanPerson16Filled', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm6 0a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1ZM3 10.5a.5.5 0 0 0-1 0v1A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1l-.17-.01A1.5 1.5 0 0 1 3 11.5v-1Zm11 0a.5.5 0 0 0-1 0v1a1.5 1.5 0 0 1-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1ZM9.09 13c.2-.58.76-1 1.41-1h1a.5.5 0 0 0 .5-.5c0-.83-.67-1.5-1.5-1.5h-5c-.83 0-1.5.67-1.5 1.5 0 .28.22.5.5.5h1c.65 0 1.2.42 1.41 1H9.1ZM8 9a2.25 2.25 0 1 0 0-4.5A2.25 2.25 0 0 0 8 9Z\"]);\nexport const ScanPerson16Regular = /*#__PURE__*/createFluentIcon('ScanPerson16Regular', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm6 0a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1ZM3 10.5a.5.5 0 0 0-1 0v1A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1l-.17-.01h-.01A1.5 1.5 0 0 1 3 11.5v-1Zm11 0a.5.5 0 0 0-1 0v1a1.5 1.5 0 0 1-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1ZM5.04 12a2.75 2.75 0 0 1-.04-.5c0-.28.22-.5.5-.5h5c.28 0 .5.22.5.5 0 .18-.02.34-.04.5h.54a.5.5 0 0 0 .5-.47v-.03c0-.83-.67-1.5-1.5-1.5h-5A1.5 1.5 0 0 0 4 11.45v.05c0 .28.22.5.5.5h.54Zm4.21-5.25a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Zm1 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z\"]);\nexport const ScanPerson20Filled = /*#__PURE__*/createFluentIcon('ScanPerson20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14a2 2 0 0 0 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5Zm-4 3c-.65 0-1.2.42-1.41 1H8.9c-.2-.58-.76-1-1.41-1H6a1 1 0 0 1-.97-.78A1.5 1.5 0 0 1 6.5 13h7c.73 0 1.35.53 1.47 1.22A1 1 0 0 1 14 15h-1.5Zm.25-5.75a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0Z\"]);\nexport const ScanPerson20Regular = /*#__PURE__*/createFluentIcon('ScanPerson20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1-.5-.5ZM3.5 12c.28 0 .5.22.5.5V14a1.99 1.99 0 0 0 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H14a2 2 0 0 0 2-2v-1.5c0-.28.22-.5.5-.5ZM5.03 14.22c.1.45.5.78.97.78v-.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v.5a1 1 0 0 0 .97-.78A1.5 1.5 0 0 0 13.5 13h-7a1.5 1.5 0 0 0-1.47 1.22Zm7.72-4.97a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0Zm-4.5 0a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Z\"]);\nexport const ScanPerson24Filled = /*#__PURE__*/createFluentIcon('ScanPerson24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h2a.75.75 0 0 1 0 1.5h-2c-.97 0-1.75.78-1.75 1.75v2a.75.75 0 0 1-1.5 0v-2Zm12-2.5c0-.41.34-.75.75-.75h2C19.55 3 21 4.46 21 6.25v2a.75.75 0 0 1-1.5 0v-2c0-.97-.78-1.75-1.75-1.75h-2a.75.75 0 0 1-.75-.75ZM3.75 15c.41 0 .75.34.75.75v2c0 .97.78 1.75 1.75 1.75h2a.75.75 0 0 1 0 1.5h-2A3.25 3.25 0 0 1 3 17.75v-2c0-.41.34-.75.75-.75Zm16.5 0c.41 0 .75.34.75.75v2c0 1.8-1.46 3.25-3.25 3.25h-2a.75.75 0 0 1 0-1.5h2a1.75 1.75 0 0 0 1.75-1.75v-2c0-.41.34-.75.75-.75Zm-4.5 3.5c-.88 0-1.61.65-1.73 1.5H9.98a1.75 1.75 0 0 0-1.73-1.5h-2a.75.75 0 0 1-.67-.41A2.75 2.75 0 0 1 8.25 16h7.5c1.29 0 2.37.89 2.67 2.09a.75.75 0 0 1-.67.41h-2Zm-3.75-4A3.75 3.75 0 1 0 12 7a3.75 3.75 0 0 0 0 7.5Z\"]);\nexport const ScanPerson24Regular = /*#__PURE__*/createFluentIcon('ScanPerson24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h2a.75.75 0 0 1 0 1.5h-2c-.97 0-1.75.78-1.75 1.75v2a.75.75 0 0 1-1.5 0v-2Zm12-2.5c0-.41.34-.75.75-.75h2C19.55 3 21 4.46 21 6.25v2a.75.75 0 0 1-1.5 0v-2c0-.97-.78-1.75-1.75-1.75h-2a.75.75 0 0 1-.75-.75ZM3.75 15c.41 0 .75.34.75.75v2c0 .97.78 1.75 1.75 1.75h2a.75.75 0 0 1 0 1.5h-2A3.25 3.25 0 0 1 3 17.75v-2c0-.41.34-.75.75-.75Zm16.5 0c.41 0 .75.34.75.75v2c0 1.8-1.46 3.25-3.25 3.25h-2a.75.75 0 0 1 0-1.5h2a1.75 1.75 0 0 0 1.75-1.75v-2c0-.41.34-.75.75-.75ZM7.02 18.5c.12-.57.62-1 1.23-1h7.5c.6 0 1.1.43 1.22 1h.78c.3 0 .55-.17.67-.41A2.75 2.75 0 0 0 15.75 16h-7.5c-1.3 0-2.37.89-2.67 2.09.12.24.38.41.67.41h.77ZM12 13a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5Zm0 1.5A3.75 3.75 0 1 0 12 7a3.75 3.75 0 0 0 0 7.5Z\"]);\nexport const ScanPerson28Filled = /*#__PURE__*/createFluentIcon('ScanPerson28Filled', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v3.5a.75.75 0 0 0 1.5 0v-3.5c0-1.24 1-2.25 2.25-2.25h3.5a.75.75 0 0 0 0-1.5h-3.5Zm11 0a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5A3.75 3.75 0 0 0 21.25 3h-3.5ZM4.5 17.75a.75.75 0 0 0-1.5 0v3.5A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5a2.25 2.25 0 0 1-2.25-2.25v-3.5Zm20.5 0a.75.75 0 0 0-1.5 0v3.5a2.25 2.25 0 0 1-2.25 2.25h-3.5a.75.75 0 1 0 0 1.5h3.5A3.75 3.75 0 0 0 25 21.25v-3.5ZM16.02 24c.12-.85.85-1.5 1.73-1.5h3.5c.28 0 .54-.1.75-.25v-1C22 20 21 19 19.75 19H8.25C7.01 19 6 20 6 21.25v1c.21.16.47.25.75.25h3.5c.88 0 1.61.65 1.73 1.5h4.04ZM14 17a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z\"]);\nexport const ScanPerson28Regular = /*#__PURE__*/createFluentIcon('ScanPerson28Regular', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v3.5a.75.75 0 0 0 1.5 0v-3.5c0-1.24 1-2.25 2.25-2.25h3.5a.75.75 0 0 0 0-1.5h-3.5Zm11 0a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5A3.75 3.75 0 0 0 21.25 3h-3.5ZM4.5 17.75a.75.75 0 0 0-1.5 0v3.5A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5a2.26 2.26 0 0 1-2.25-2.25v-3.5Zm20.5 0a.75.75 0 0 0-1.5 0v3.5a2.25 2.25 0 0 1-2.25 2.25h-3.5a.75.75 0 0 0 0 1.5h3.5A3.75 3.75 0 0 0 25 21.25v-3.5ZM7.5 21.83c0 .23.04.45.1.67h-.85c-.27 0-.52-.08-.72-.23L6 21.83v-.58C6 20 7.01 19 8.25 19h11.5C21 19 22 20 22 21.25v.57c0 .15 0 .3-.02.45-.2.14-.46.23-.73.23h-.85c.07-.22.1-.45.1-.68v-.57a.75.75 0 0 0-.75-.75H8.25a.75.75 0 0 0-.75.75v.58ZM17 12.5a3 3 0 1 0-6 0 3 3 0 0 0 6 0Zm1.5 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\"]);\nexport const ScanPerson48Filled = /*#__PURE__*/createFluentIcon('ScanPerson48Filled', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h5.5a1.25 1.25 0 1 1 0 2.5h-5.5a3.75 3.75 0 0 0-3.75 3.75v5.5a1.25 1.25 0 1 1-2.5 0v-5.5Zm23-5c0-.69.56-1.25 1.25-1.25h5.5C39.2 6 42 8.8 42 12.25v5.5a1.25 1.25 0 1 1-2.5 0v-5.5a3.75 3.75 0 0 0-3.75-3.75h-5.5c-.69 0-1.25-.56-1.25-1.25ZM7.25 29c.69 0 1.25.56 1.25 1.25v5.5a3.75 3.75 0 0 0 3.75 3.75h5.5a1.25 1.25 0 0 1 0 2.5h-5.5A6.25 6.25 0 0 1 6 35.75v-5.5c0-.69.56-1.25 1.25-1.25Zm33.5 0c.69 0 1.25.56 1.25 1.25v5.5C42 39.2 39.2 42 35.75 42h-5.5a1.25 1.25 0 0 1 0-2.5h5.5a3.87 3.87 0 0 0 1.06-.15 3.75 3.75 0 0 0 2.69-3.6v-5.5c0-.69.56-1.25 1.25-1.25ZM27 40.75V41H21v-.25c0-1.8-1.45-3.25-3.24-3.25h-5.5c-.49 0-.93-.2-1.24-.52A5.25 5.25 0 0 1 16.25 32h15.5c2.8 0 5.1 2.2 5.24 4.98-.31.32-.75.52-1.24.52h-5.5A3.25 3.25 0 0 0 27 40.75ZM24 29a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"]);\nexport const ScanPerson48Regular = /*#__PURE__*/createFluentIcon('ScanPerson48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h5.5a1.25 1.25 0 1 1 0 2.5h-5.5a3.75 3.75 0 0 0-3.75 3.75v5.5a1.25 1.25 0 1 1-2.5 0v-5.5Zm23-5c0-.69.56-1.25 1.25-1.25h5.5C39.2 6 42 8.8 42 12.25v5.5a1.25 1.25 0 1 1-2.5 0v-5.5a3.75 3.75 0 0 0-3.75-3.75h-5.5c-.69 0-1.25-.56-1.25-1.25ZM7.25 29c.69 0 1.25.56 1.25 1.25v5.5a3.75 3.75 0 0 0 3.75 3.75h5.5a1.25 1.25 0 1 1 0 2.5h-5.5A6.25 6.25 0 0 1 6 35.75v-5.5c0-.69.56-1.25 1.25-1.25Zm33.5 0c.69 0 1.25.56 1.25 1.25v5.5C42 39.2 39.2 42 35.75 42h-5.5a1.25 1.25 0 1 1 0-2.5h5.5a3.87 3.87 0 0 0 1.06-.15 3.75 3.75 0 0 0 2.69-3.6v-5.5c0-.69.56-1.25 1.25-1.25ZM13.5 37.5v-.25a2.75 2.75 0 0 1 2.75-2.75h15.5a2.75 2.75 0 0 1 2.75 2.75v.25h1.25c.49 0 .93-.2 1.24-.52A5.25 5.25 0 0 0 31.75 32h-15.5c-2.81 0-5.1 2.2-5.24 4.98.31.32.75.52 1.24.52h1.25Zm10.5-11a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm0 2.5a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z\"]);\nexport const ScanQrCode24Filled = /*#__PURE__*/createFluentIcon('ScanQrCode24Filled', \"24\", [\"M3 6.5A3.5 3.5 0 0 1 6.5 3h1.86a1 1 0 0 1 0 2H6.5C5.67 5 5 5.67 5 6.5v1.86a1 1 0 0 1-2 0V6.5ZM14.64 4a1 1 0 0 1 1-1h1.86A3.5 3.5 0 0 1 21 6.5v1.86a1 1 0 1 1-2 0V6.5c0-.83-.67-1.5-1.5-1.5h-1.86a1 1 0 0 1-1-1ZM4 14.64a1 1 0 0 1 1 1v1.86c0 .83.67 1.5 1.5 1.5h1.86a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 17.5v-1.86a1 1 0 0 1 1-1Zm16 0a1 1 0 0 1 1 1v1.86a3.5 3.5 0 0 1-3.5 3.5h-1.86a1 1 0 1 1 0-2h1.86c.83 0 1.5-.67 1.5-1.5v-1.86a1 1 0 0 1 1-1ZM10 7H7v3h3v4H7v3h3v-3h4v3h3v-3h-3v-4h3V7h-3v3h-4V7Z\"]);\nexport const ScanQrCode24Regular = /*#__PURE__*/createFluentIcon('ScanQrCode24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h2a.75.75 0 0 1 0 1.5h-2c-.97 0-1.75.78-1.75 1.75v2a.75.75 0 0 1-1.5 0v-2Zm12-2.5c0-.41.34-.75.75-.75h2C19.55 3 21 4.46 21 6.25v2a.75.75 0 0 1-1.5 0v-2c0-.97-.78-1.75-1.75-1.75h-2a.75.75 0 0 1-.75-.75ZM3.75 15c.41 0 .75.34.75.75v2c0 .97.78 1.75 1.75 1.75h2a.75.75 0 0 1 0 1.5h-2A3.25 3.25 0 0 1 3 17.75v-2c0-.41.34-.75.75-.75Zm16.5 0c.41 0 .75.34.75.75v2c0 1.8-1.46 3.25-3.25 3.25h-2a.75.75 0 0 1 0-1.5h2c.97 0 1.75-.78 1.75-1.75v-2c0-.41.34-.75.75-.75ZM10 7H7v3h3v4H7v3h3v-3h4v3h3v-3h-3v-4h3V7h-3v3h-4V7Z\"]);\nexport const ScanTable20Filled = /*#__PURE__*/createFluentIcon('ScanTable20Filled', \"20\", [\"M6 4.5c-.83 0-1.5.67-1.5 1.5v1.75a.75.75 0 0 1-1.5 0V6a3 3 0 0 1 3-3h1.75a.75.75 0 0 1 0 1.5H6ZM6 8c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2H6Zm0 1v3c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V9H6Zm6.25-6a.75.75 0 0 0 0 1.5H14c.83 0 1.5.67 1.5 1.5v1.75a.75.75 0 0 0 1.5 0V6a3 3 0 0 0-3-3h-1.75Zm-8.5 8.5c.41 0 .75.34.75.75V14c0 .83.67 1.5 1.5 1.5h1.75a.75.75 0 0 1 0 1.5H6a3 3 0 0 1-3-3v-1.75c0-.41.34-.75.75-.75Zm13.25.75a.75.75 0 0 0-1.5 0V14c0 .83-.67 1.5-1.5 1.5h-1.75a.75.75 0 0 0 0 1.5H14a3 3 0 0 0 3-3v-1.75Z\"]);\nexport const ScanTable20Regular = /*#__PURE__*/createFluentIcon('ScanTable20Regular', \"20\", [\"M6 4a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6Zm2 2a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H8Zm5 2H7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1ZM7 9h6v3a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1V9Zm5.5-6a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5Zm-9 9c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13.5.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Z\"]);\nexport const ScanTable24Filled = /*#__PURE__*/createFluentIcon('ScanTable24Filled', \"24\", [\"M2.75 15c.38 0 .69.28.74.65v3.6l.01.13c.06.59.53 1.06 1.12 1.12h3.73a.75.75 0 0 1 0 1.5H4.58A2.75 2.75 0 0 1 2 19.43V15.65a.75.75 0 0 1 .75-.65Zm18.5 0c.38 0 .69.28.74.65v3.6A2.75 2.75 0 0 1 19.42 22h-3.66a.75.75 0 0 1-.1-1.5h3.6c.64 0 1.18-.49 1.24-1.12v-3.63c0-.41.34-.75.76-.75ZM18 11v4a3 3 0 0 1-2.82 3H9a3 3 0 0 1-3-2.82V11h12Zm-3-5a3 3 0 0 1 3 2.82V9.5H6V9a3 3 0 0 1 2.82-3H15ZM8.25 2a.75.75 0 0 1 .1 1.5h-3.6c-.65 0-1.18.5-1.25 1.12v3.63a.75.75 0 0 1-1.5.1v-3.6a2.75 2.75 0 0 1 2.58-2.74L4.75 2h3.5Zm11 0h.16A2.75 2.75 0 0 1 22 4.59v3.77a.75.75 0 0 1-1.49 0v-3.6l-.01-.13a1.25 1.25 0 0 0-1.12-1.11l-.12-.01h-3.6a.75.75 0 0 1 0-1.5h3.6Z\"]);\nexport const ScanTable24Regular = /*#__PURE__*/createFluentIcon('ScanTable24Regular', \"24\", [\"M2.75 15c.38 0 .69.28.74.65v3.6l.01.13c.06.59.53 1.06 1.12 1.12h3.73a.75.75 0 0 1 0 1.5H4.58A2.75 2.75 0 0 1 2 19.43V15.65a.75.75 0 0 1 .75-.65Zm18.5 0c.38 0 .69.28.74.65v3.6A2.75 2.75 0 0 1 19.42 22h-3.66a.75.75 0 0 1-.1-1.5h3.6c.64 0 1.18-.49 1.24-1.12v-3.63c0-.41.34-.75.76-.75Zm-6-9a2.75 2.75 0 0 1 2.74 2.58l.01.17v6.5A2.75 2.75 0 0 1 15.42 18H8.75A2.75 2.75 0 0 1 6 15.42V8.75a2.75 2.75 0 0 1 2.58-2.74L8.75 6h6.5Zm1.25 5h-9v4.25c0 .65.5 1.18 1.12 1.24l.13.01h6.5c.65 0 1.18-.5 1.24-1.12l.01-.13v-4.26Zm-1.25-3.5h-6.5c-.65 0-1.18.5-1.24 1.12l-.01.13v.74h9v-.74c0-.65-.5-1.18-1.12-1.24l-.13-.01Zm-7-5.5a.75.75 0 0 1 .1 1.5h-3.6c-.65 0-1.18.5-1.25 1.12v3.63a.75.75 0 0 1-1.5.1v-3.6a2.75 2.75 0 0 1 2.58-2.74L4.75 2h3.5Zm11 0h.16A2.75 2.75 0 0 1 22 4.59v3.77a.75.75 0 0 1-1.49 0v-3.6l-.01-.13a1.25 1.25 0 0 0-1.12-1.11l-.12-.01h-3.6a.75.75 0 0 1 0-1.5h3.6Z\"]);\nexport const ScanText16Filled = /*#__PURE__*/createFluentIcon('ScanText16Filled', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v.75a.75.75 0 0 0 1.5 0V4.5a1 1 0 0 1 1-1h.75a.75.75 0 0 0 0-1.5H4.5Zm6.25 0a.75.75 0 0 0 0 1.5h.75a1 1 0 0 1 1 1v.75a.75.75 0 0 0 1.5 0V4.5A2.5 2.5 0 0 0 11.5 2h-.75ZM3.5 10.75a.75.75 0 0 0-1.5 0v.75A2.5 2.5 0 0 0 4.5 14h.75a.75.75 0 0 0 0-1.5H4.5a1 1 0 0 1-1-1v-.75Zm10.5 0a.75.75 0 0 0-1.5 0v.75a1 1 0 0 1-1 1h-.75a.75.75 0 0 0 0 1.5h.75a2.5 2.5 0 0 0 2.5-2.5v-.75ZM5.25 4.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Zm-.75 6.25c0-.41.34-.75.75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm.75-3.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Z\"]);\nexport const ScanText16Regular = /*#__PURE__*/createFluentIcon('ScanText16Regular', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm6 0a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1A2.5 2.5 0 0 0 11.5 2h-1ZM3 10.5a.5.5 0 0 0-1 0v1A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1Zm11 0a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1Zm-9-3a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5Zm-.5 3c0-.28.22-.5.5-.5h3.5a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5ZM5 5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5Z\"]);\nexport const ScanText20Filled = /*#__PURE__*/createFluentIcon('ScanText20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 .49.61l.01.14c0 .41-.34.75-.75.75H6c-.83 0-1.5.67-1.5 1.5v1.25a.75.75 0 0 1-.89.74A.5.5 0 0 1 3 7.5V6Zm9-2.5c0-.28.22-.5.5-.5H14a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-.61.49l-.14.01a.75.75 0 0 1-.75-.75V6c0-.83-.67-1.5-1.5-1.5h-1.25a.75.75 0 0 1-.74-.89.5.5 0 0 1-.01-.11ZM3.5 12a.5.5 0 0 1 .11.01.75.75 0 0 1 .89.74V14c0 .83.67 1.5 1.5 1.5h1.25a.75.75 0 0 1 .74.89.5.5 0 0 1-.49.61H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13 0c.28 0 .5.22.5.5V14a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1-.49-.61.75.75 0 0 1 .74-.89H14c.83 0 1.5-.67 1.5-1.5v-1.25a.75.75 0 0 1 .89-.74.5.5 0 0 1 .11-.01ZM6.75 6a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM6 9.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 6 9.75ZM6.75 12a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z\"]);\nexport const ScanText20Regular = /*#__PURE__*/createFluentIcon('ScanText20Regular', \"20\", [\"M6 4a2 2 0 0 0-2 2v1.5a.5.5 0 0 1-1 0V6a3 3 0 0 1 3-3h1.5a.5.5 0 0 1 0 1H6Zm0 2.5c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm0 3c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm6-9a.5.5 0 0 0 0 1H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 0 1 0V6a3 3 0 0 0-3-3h-1.5Zm-9 9c.28 0 .5.22.5.5V14c0 1.1.9 2 2 2h1.5a.5.5 0 0 1 0 1H6a3 3 0 0 1-3-3v-1.5c0-.28.22-.5.5-.5Zm13.5.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14a3 3 0 0 0 3-3v-1.5Z\"]);\nexport const ScanText24Filled = /*#__PURE__*/createFluentIcon('ScanText24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25V8a1 1 0 0 0 2 0V6.25C5 5.56 5.56 5 6.25 5H8a1 1 0 0 0 0-2H6.25ZM16 3a1 1 0 1 0 0 2h1.75c.69 0 1.25.56 1.25 1.25V8a1 1 0 1 0 2 0V6.25C21 4.45 19.54 3 17.75 3H16ZM5 16a1 1 0 1 0-2 0v1.75C3 19.55 4.46 21 6.25 21H8a1 1 0 1 0 0-2H6.25C5.56 19 5 18.44 5 17.75V16Zm16 0a1 1 0 1 0-2 0v1.75c0 .69-.56 1.25-1.25 1.25H16a1 1 0 1 0 0 2h1.75c1.8 0 3.25-1.46 3.25-3.25V16ZM8 7a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H8Zm-1 5a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H8Z\"]);\nexport const ScanText24Regular = /*#__PURE__*/createFluentIcon('ScanText24Regular', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v2.12a.75.75 0 0 0 1.5 0V6.25c0-.97.78-1.75 1.75-1.75h2.12a.75.75 0 0 0 0-1.5H6.25Zm9.38 1.5a.75.75 0 0 1 0-1.5h2.12C19.55 3 21 4.46 21 6.25v2.12a.75.75 0 0 1-1.5 0V6.25c0-.97-.78-1.75-1.75-1.75h-2.12ZM3 15.63a.75.75 0 0 1 1.5 0v2.12a1.75 1.75 0 0 0 1.75 1.75h2.12a.75.75 0 0 1 0 1.5H6.25A3.25 3.25 0 0 1 3 17.75v-2.12Zm16.5 0a.75.75 0 0 1 1.5 0v2.12A3.25 3.25 0 0 1 17.75 21h-2.12a.75.75 0 0 1 0-1.5h2.12a1.75 1.75 0 0 0 1.75-1.75v-2.12ZM7 7.75c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 7 7.75ZM7.75 11a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM7 15.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const ScanText28Filled = /*#__PURE__*/createFluentIcon('ScanText28Filled', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75V10a1 1 0 1 0 2 0V6.75C5 5.78 5.78 5 6.75 5H10a1 1 0 1 0 0-2H6.75ZM18 3a1 1 0 1 0 0 2h3.25c.97 0 1.75.78 1.75 1.75V10a1 1 0 1 0 2 0V6.75A3.75 3.75 0 0 0 21.25 3H18ZM5 18a1 1 0 1 0-2 0v3.25A3.75 3.75 0 0 0 6.75 25H10a1 1 0 1 0 0-2H6.75C5.78 23 5 22.22 5 21.25V18Zm20 0a1 1 0 1 0-2 0v3.25c0 .97-.78 1.75-1.75 1.75H18a1 1 0 1 0 0 2h3.25A3.75 3.75 0 0 0 25 21.25V18ZM9 8a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2H9Zm0 5a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H9Zm-1 6a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Z\"]);\nexport const ScanText28Regular = /*#__PURE__*/createFluentIcon('ScanText28Regular', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v3.5a.75.75 0 0 0 1.5 0v-3.5c0-1.24 1-2.25 2.25-2.25h3.5a.75.75 0 0 0 0-1.5h-3.5Zm11 0a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5A3.75 3.75 0 0 0 21.25 3h-3.5ZM4.5 17.75a.75.75 0 0 0-1.5 0v3.5A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5c-1.24 0-2.25-1-2.25-2.25v-3.5Zm20.5 0a.75.75 0 0 0-1.5 0v3.5c0 1.24-1 2.25-2.25 2.25h-3.5a.75.75 0 0 0 0 1.5h3.5A3.75 3.75 0 0 0 25 21.25v-3.5ZM8.75 8a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5H8.75ZM8 13.75c0-.41.34-.75.75-.75h10.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1-.75-.75ZM8.75 18a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Z\"]);\nexport const ScanThumbUp16Filled = /*#__PURE__*/createFluentIcon('ScanThumbUp16Filled', \"16\", [\"M11.5 2A2.5 2.5 0 0 1 14 4.5v1a.5.5 0 0 1-1 0v-1c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1Zm-7 0A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm7 12a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1ZM2 11.5A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1a.5.5 0 0 0-1 0v1Zm6.9-7.46c-.72-.2-1.22.35-1.38.73-.1.28-.2.47-.34.72l-.27.56a3.78 3.78 0 0 1-.73 1.06l-.01.01-.92.54a1.5 1.5 0 0 0-.65 1.82l.26.7c.16.43.52.76.96.9l2.71.84c.94.3 1.94-.23 2.22-1.18l.69-2.32a1.5 1.5 0 0 0-1.45-1.93h-.06c.04-.24.08-.5.07-.75 0-.26-.03-.6-.18-.93a1.4 1.4 0 0 0-.92-.77Z\"]);\nexport const ScanThumbUp16Regular = /*#__PURE__*/createFluentIcon('ScanThumbUp16Regular', \"16\", [\"M14 4.5A2.5 2.5 0 0 0 11.5 2h-1a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1Zm-12 0A2.5 2.5 0 0 1 4.5 2h1a.5.5 0 0 1 0 1h-1C3.67 3 3 3.67 3 4.5v1a.5.5 0 0 1-1 0v-1Zm12 7a2.5 2.5 0 0 1-2.5 2.5h-1a.5.5 0 0 1 0-1h1c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1ZM4.5 14A2.5 2.5 0 0 1 2 11.5v-1a.5.5 0 0 1 1 0v1c0 .83.67 1.5 1.5 1.5h1a.5.5 0 0 1 0 1h-1Zm4.4-9.96c-.72-.2-1.22.35-1.38.73-.1.28-.2.47-.34.72l-.27.56a3.78 3.78 0 0 1-.73 1.06l-.01.01-.92.54a1.5 1.5 0 0 0-.65 1.82l.26.7c.16.43.52.76.96.9l2.71.84c.94.3 1.94-.23 2.22-1.18l.69-2.32a1.5 1.5 0 0 0-1.45-1.93h-.06c.04-.24.08-.5.07-.75 0-.26-.03-.6-.18-.93a1.4 1.4 0 0 0-.92-.77ZM5.75 8.52l.93-.54a.5.5 0 0 0 .04-.03h.01l.01-.01.08-.07a4.76 4.76 0 0 0 .99-1.4l.27-.52c.13-.26.24-.48.37-.8a.3.3 0 0 1 .1-.13A.12.12 0 0 1 8.6 5h.05a.4.4 0 0 1 .28.23c.06.13.08.3.08.53 0 .2-.04.48-.1.75-.03.12-.06.24-.1.34a.5.5 0 0 0 .49.64h.7a.5.5 0 0 1 .49.64l-.69 2.33a.77.77 0 0 1-.96.5l-2.71-.84a.5.5 0 0 1-.32-.3l-.27-.7a.5.5 0 0 1 .22-.6Z\"]);\nexport const ScanThumbUp20Filled = /*#__PURE__*/createFluentIcon('ScanThumbUp20Filled', \"20\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2ZM9.52 5.4c.2-.47.8-1.08 1.63-.85.54.14.92.46 1.13.9.19.39.22.81.23 1.15 0 .36-.06.76-.14 1.1h.28c1.2 0 2.13 1.13 1.77 2.3l-.92 3a2.2 2.2 0 0 1-2.74 1.4l-3.6-1.08a1.82 1.82 0 0 1-1.19-1.07l-.35-.89c-.32-.83.03-1.74.8-2.18l1.24-.7.03-.02c.04-.04.12-.1.22-.21.2-.22.5-.6.79-1.2l.36-.71c.18-.33.3-.58.46-.94Z\"]);\nexport const ScanThumbUp20Regular = /*#__PURE__*/createFluentIcon('ScanThumbUp20Regular', \"20\", [\"M3 4.5C3 3.67 3.67 3 4.5 3h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 2 4.5v2a.5.5 0 0 0 1 0v-2Zm14 11c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-2a.5.5 0 0 0-1 0v2ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Zm8.15-10.95c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94l-.37.71a4.98 4.98 0 0 1-1.04 1.43l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08A2.2 2.2 0 0 0 13.5 13l.92-3c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9Zm-4.24 5.5 1.24-.7a.5.5 0 0 0 .04-.02h.01v-.01l.02-.01.1-.08A5.97 5.97 0 0 0 9.6 7.5l.35-.69c.17-.32.32-.61.5-1.02.03-.08.1-.17.19-.23a.3.3 0 0 1 .26-.04c.26.07.4.2.48.38.09.18.12.43.13.73 0 .28-.06.64-.15.99-.03.16-.08.31-.12.45a.5.5 0 0 0 .48.65h.93c.6 0 .96.53.82 1l-.92 2.99a1.2 1.2 0 0 1-1.5.75l-3.61-1.09a.82.82 0 0 1-.54-.48L6.55 11a.76.76 0 0 1 .36-.94Z\"]);\nexport const ScanThumbUp24Filled = /*#__PURE__*/createFluentIcon('ScanThumbUp24Filled', \"24\", [\"M3.5 5.25c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3Zm17 0c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM5.25 20.5c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3Zm15.25-1.75c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3a.75.75 0 0 0-1.5 0v3ZM11.29 6.42c.26-.61 1.06-1.4 2.18-1.11.7.18 1.2.6 1.49 1.18.25.5.29 1.05.3 1.46 0 .4-.06.83-.14 1.22h.2c1.55 0 2.82 1.43 2.33 2.99L16.5 15.8a2.88 2.88 0 0 1-3.58 1.82L8.4 16.3a2.4 2.4 0 0 1-1.56-1.4l-.44-1.08a2.27 2.27 0 0 1 1.06-2.84L9 10.14l.03-.03.26-.24c.24-.25.6-.7.96-1.43l.46-.87c.22-.4.38-.7.57-1.15Z\"]);\nexport const ScanThumbUp24Regular = /*#__PURE__*/createFluentIcon('ScanThumbUp24Regular', \"24\", [\"M3.5 5.25c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3A3.25 3.25 0 0 0 2 5.25v3a.75.75 0 0 0 1.5 0v-3Zm17 0c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM5.25 20.5c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3Zm15.25-1.75c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25v-3a.75.75 0 0 0-1.5 0v3ZM13.47 5.31c-1.12-.29-1.92.5-2.18 1.11-.19.44-.35.75-.57 1.14l-.46.88a5.94 5.94 0 0 1-1.25 1.7l-1.54.85a2.27 2.27 0 0 0-1.06 2.84l.44 1.09a2.4 2.4 0 0 0 1.56 1.39l4.5 1.32a2.88 2.88 0 0 0 3.59-1.82l1.15-3.65c.49-1.56-.78-3-2.34-3h-.19c.08-.38.15-.81.14-1.2-.01-.42-.05-.97-.3-1.47-.29-.58-.8-1-1.5-1.18ZM8.19 12.3l1.55-.85a.79.79 0 0 0 .06-.04h.01l.01-.01.02-.01.13-.1A7.42 7.42 0 0 0 11.6 9.1l.44-.84c.22-.4.41-.75.63-1.25.03-.08.1-.17.19-.22a.28.28 0 0 1 .23-.04c.3.08.44.22.52.4.1.19.14.46.15.82 0 .32-.07.75-.18 1.17-.04.2-.1.38-.15.54a.75.75 0 0 0 .72.98h1.16c.7 0 1.05.58.9 1.04l-1.14 3.65c-.2.63-.96 1.06-1.73.83l-4.51-1.32a.9.9 0 0 1-.59-.51l-.44-1.09c-.13-.34 0-.75.4-.97Z\"]);\nexport const ScanThumbUp28Filled = /*#__PURE__*/createFluentIcon('ScanThumbUp28Filled', \"28\", [\"M6.75 3A3.75 3.75 0 0 0 3 6.75v3.5a.75.75 0 0 0 1.5 0v-3.5c0-1.24 1-2.25 2.25-2.25h3.5a.75.75 0 0 0 0-1.5h-3.5Zm14.5 0A3.75 3.75 0 0 1 25 6.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-1.24-1-2.25-2.25-2.25h-3.5a.75.75 0 0 1 0-1.5h3.5ZM3 21.25A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5c-1.24 0-2.25-1-2.25-2.25v-3.5a.75.75 0 0 0-1.5 0v3.5ZM21.25 25A3.75 3.75 0 0 0 25 21.25v-3.5a.75.75 0 0 0-1.5 0v3.5c0 1.24-1 2.25-2.25 2.25h-3.5a.75.75 0 0 0 0 1.5h3.5Zm-9.2-14.79a7.8 7.8 0 0 1-1.53 2.2l-.04.04-1.86 1.08a2.74 2.74 0 0 0-1.2 3.35l.53 1.38c.3.8.96 1.4 1.77 1.66l5.41 1.68c1.75.54 3.6-.43 4.13-2.18l1.38-4.66a2.76 2.76 0 0 0-2.66-3.52h-.43c.12-.55.22-1.18.2-1.75a4.4 4.4 0 0 0-.33-1.76 2.54 2.54 0 0 0-1.68-1.4c-1.28-.36-2.18.6-2.46 1.3-.23.57-.43.97-.69 1.47l-.55 1.11Z\"]);\nexport const ScanThumbUp28Regular = /*#__PURE__*/createFluentIcon('ScanThumbUp28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h3.5a.75.75 0 0 1 0 1.5h-3.5c-1.24 0-2.25 1-2.25 2.25v3.5a.75.75 0 0 1-1.5 0v-3.5Zm22 0A3.75 3.75 0 0 0 21.25 3h-3.5a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5ZM6.75 25A3.75 3.75 0 0 1 3 21.25v-3.5a.75.75 0 0 1 1.5 0v3.5c0 1.24 1 2.25 2.25 2.25h3.5a.75.75 0 0 1 0 1.5h-3.5ZM25 21.25A3.75 3.75 0 0 1 21.25 25h-3.5a.75.75 0 0 1 0-1.5h3.5c1.24 0 2.25-1 2.25-2.25v-3.5a.75.75 0 0 1 1.5 0v3.5ZM15.74 6.32c-1.28-.35-2.18.61-2.46 1.32-.23.56-.43.96-.69 1.46l-.55 1.11a7.8 7.8 0 0 1-1.52 2.2l-.04.04-1.86 1.08a2.74 2.74 0 0 0-1.2 3.35l.53 1.38c.3.8.96 1.4 1.77 1.66l5.41 1.68c1.75.54 3.6-.43 4.13-2.18l1.38-4.66a2.76 2.76 0 0 0-2.66-3.52h-.43c.12-.55.22-1.18.2-1.75a4.4 4.4 0 0 0-.33-1.76 2.54 2.54 0 0 0-1.68-1.4Zm-6.37 8.5 1.86-1.08a.76.76 0 0 0 .07-.04h.01l.01-.01.02-.02.15-.11a9.28 9.28 0 0 0 1.91-2.7l.53-1.08c.26-.5.48-.95.74-1.58a.84.84 0 0 1 .3-.37c.11-.07.23-.1.37-.06.38.1.6.31.72.59.14.3.19.69.2 1.16 0 .44-.09 1-.22 1.55-.05.25-.12.49-.18.7a.75.75 0 0 0 .72.97h1.4c.86 0 1.45.8 1.22 1.6l-1.38 4.65a1.78 1.78 0 0 1-2.24 1.18l-5.42-1.69c-.37-.11-.67-.4-.8-.75l-.53-1.39c-.21-.56.01-1.2.54-1.51Z\"]);\nexport const ScanThumbUp48Filled = /*#__PURE__*/createFluentIcon('ScanThumbUp48Filled', \"48\", [\"M12.25 6A6.25 6.25 0 0 0 6 12.25v6.5a1.25 1.25 0 1 0 2.5 0v-6.5a3.75 3.75 0 0 1 3.75-3.75h6.5a1.25 1.25 0 1 0 0-2.5h-6.5Zm23.5 0C39.2 6 42 8.8 42 12.25v6.5a1.25 1.25 0 1 1-2.5 0v-6.5a3.75 3.75 0 0 0-3.75-3.75h-6.5a1.25 1.25 0 1 1 0-2.5h6.5ZM6 35.75C6 39.2 8.8 42 12.25 42h6.5a1.25 1.25 0 1 0 0-2.5h-6.5a3.75 3.75 0 0 1-3.75-3.75v-6.5a1.25 1.25 0 1 0-2.5 0v6.5ZM35.75 42C39.2 42 42 39.2 42 35.75v-6.5a1.25 1.25 0 1 0-2.5 0v6.5a3.75 3.75 0 0 1-3.75 3.75h-6.5a1.25 1.25 0 1 0 0 2.5h6.5ZM25.29 11.75c-.9 0-1.53.49-1.94 1-.38.5-.63 1.1-.8 1.63a15.6 15.6 0 0 0-.47 1.9l-.13.6-2.77 4.32A4.62 4.62 0 0 1 16.93 23l-1.25.48a2.98 2.98 0 0 0-1.87 3.36l.68 3.5a3.49 3.49 0 0 0 2.6 2.72l8.24 2a6 6 0 0 0 7.22-4.3l1.58-6.13a3.85 3.85 0 0 0-3.51-4.86 7.37 7.37 0 0 0-.62-.03h-1.33c.22-.88.37-1.75.37-2.54 0-1.33-.26-2.61-.83-3.61-.58-1.02-1.56-1.85-2.92-1.85Z\"]);\nexport const ScanThumbUp48Regular = /*#__PURE__*/createFluentIcon('ScanThumbUp48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h6.5a1.25 1.25 0 1 1 0 2.5h-6.5a3.75 3.75 0 0 0-3.75 3.75v6.5a1.25 1.25 0 1 1-2.5 0v-6.5Zm36 0C42 8.8 39.2 6 35.75 6h-6.5a1.25 1.25 0 1 0 0 2.5h6.5a3.75 3.75 0 0 1 3.75 3.75v6.5a1.25 1.25 0 1 0 2.5 0v-6.5ZM12.25 42A6.25 6.25 0 0 1 6 35.75v-6.5a1.25 1.25 0 1 1 2.5 0v6.5a3.75 3.75 0 0 0 3.75 3.75h6.5a1.25 1.25 0 1 1 0 2.5h-6.5ZM42 35.75C42 39.2 39.2 42 35.75 42h-6.5a1.25 1.25 0 1 1 0-2.5h6.5a3.75 3.75 0 0 0 3.75-3.75v-6.5a1.25 1.25 0 1 1 2.5 0v6.5Zm-16.7-24c-.93 0-1.63.43-2.1 1.05a4.6 4.6 0 0 0-.71 1.74 20.28 20.28 0 0 0-.27 1.52l-.12.51-.06.18-2.86 4.45A4.62 4.62 0 0 1 16.93 23l-1.25.48a2.98 2.98 0 0 0-1.87 3.36l.68 3.5a3.49 3.49 0 0 0 2.6 2.72l8.24 2a6 6 0 0 0 7.22-4.3l1.58-6.13a3.85 3.85 0 0 0-3.51-4.86 7.37 7.37 0 0 0-.62-.03h-1.33c.22-.88.37-1.75.37-2.54 0-1.33-.26-2.61-.83-3.61-.58-1.02-1.56-1.85-2.92-1.85Zm-1.16 6.35c.32-.5.46-1.15.54-1.6l.1-.58c.04-.3.08-.55.15-.84.1-.44.2-.68.29-.8v-.01l.02-.02h.05c.2 0 .47.1.75.58.29.51.5 1.33.5 2.38 0 .86-.27 2-.73 3.4A1.25 1.25 0 0 0 27 22.25h3a5.16 5.16 0 0 1 .61.05l.08.01c.8.2 1.22.92 1.01 1.71l-1.57 6.12a3.5 3.5 0 0 1-4.21 2.5l-8.24-2a.99.99 0 0 1-.74-.76l-.68-3.51a.48.48 0 0 1 .3-.54l1.26-.48a7.12 7.12 0 0 0 3.46-2.8l2.86-4.45Z\"]);\nexport const ScanThumbUpOff16Filled = /*#__PURE__*/createFluentIcon('ScanThumbUpOff16Filled', \"16\", [\"m12.88 13.59 1.27 1.26a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L2.4 3.12C2.15 3.52 2 4 2 4.5v1a.5.5 0 0 0 1 0v-1c0-.23.05-.45.15-.65L6.29 7a1.4 1.4 0 0 1-.1.1l-.02.02-.92.54a1.5 1.5 0 0 0-.65 1.82l.26.7c.16.43.52.76.96.9l2.71.84c.76.24 1.57-.07 1.99-.7l1.63 1.63c-.2.1-.42.15-.65.15h-1a.5.5 0 0 0 0 1h1c.5 0 .98-.15 1.38-.41ZM7.33 5.2l3.9 3.9.2-.7A1.5 1.5 0 0 0 10 6.5h-.06c.04-.24.08-.5.07-.75 0-.26-.03-.6-.18-.93a1.4 1.4 0 0 0-.92-.77c-.72-.2-1.22.35-1.38.73-.06.17-.13.3-.2.44ZM13 10.88l.98.97.02-.35v-1a.5.5 0 0 0-1 0v.38ZM4.15 2.02l.97.98h.38a.5.5 0 0 0 0-1h-1c-.12 0-.24 0-.35.02ZM11.5 2A2.5 2.5 0 0 1 14 4.5v1a.5.5 0 0 1-1 0v-1c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1ZM2 11.5A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1a.5.5 0 0 0-1 0v1Z\"]);\nexport const ScanThumbUpOff16Regular = /*#__PURE__*/createFluentIcon('ScanThumbUpOff16Regular', \"16\", [\"m12.88 13.59 1.27 1.26a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L2.4 3.12C2.15 3.52 2 4 2 4.5v1a.5.5 0 0 0 1 0v-1c0-.23.05-.45.15-.65L6.29 7a1.4 1.4 0 0 1-.1.1l-.02.02-.92.54a1.5 1.5 0 0 0-.65 1.82l.26.7c.16.43.52.76.96.9l2.71.84c.76.24 1.57-.07 1.99-.7l1.63 1.63c-.2.1-.42.15-.65.15h-1a.5.5 0 0 0 0 1h1c.5 0 .98-.15 1.38-.41Zm-3.1-3.1a.77.77 0 0 1-.95.47l-2.71-.84a.5.5 0 0 1-.32-.3l-.27-.7a.5.5 0 0 1 .22-.6l.93-.54a.5.5 0 0 0 .04-.03h.01l.01-.01A1.47 1.47 0 0 0 7 7.7l2.78 2.78ZM7.33 5.2l.74.74c.14-.26.25-.48.38-.8a.3.3 0 0 1 .1-.13A.12.12 0 0 1 8.6 5h.05a.4.4 0 0 1 .28.23c.06.13.08.3.08.53a3.25 3.25 0 0 1-.15.96l.76.77H10a.5.5 0 0 1 .49.64l-.05.18.8.8.2-.7A1.5 1.5 0 0 0 10 6.5h-.06c.04-.24.08-.5.07-.75 0-.26-.03-.6-.18-.93a1.4 1.4 0 0 0-.92-.77c-.72-.2-1.22.35-1.38.73-.06.17-.13.3-.2.44ZM13 10.88l.98.97.02-.35v-1a.5.5 0 0 0-1 0v.38ZM4.15 2.02l.97.98h.38a.5.5 0 0 0 0-1h-1c-.12 0-.24 0-.35.02ZM14 4.5A2.5 2.5 0 0 0 11.5 2h-1a.5.5 0 0 0 0 1h1c.83 0 1.5.67 1.5 1.5v1a.5.5 0 0 0 1 0v-1ZM4.5 14A2.5 2.5 0 0 1 2 11.5v-1a.5.5 0 0 1 1 0v1c0 .83.67 1.5 1.5 1.5h1a.5.5 0 0 1 0 1h-1Z\"]);\nexport const ScanThumbUpOff20Filled = /*#__PURE__*/createFluentIcon('ScanThumbUpOff20Filled', \"20\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l4.57 4.58a1.42 1.42 0 0 1-.06.05l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08c.85.26 1.75-.01 2.3-.63l3.09 3.08c-.2.1-.42.15-.65.15h-2a.5.5 0 0 0 0 1h2c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l.26.27Zm6.45 3.62 5.02 5.02.54-1.76c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94a37 37 0 0 0-.21.4ZM17 14.88l.98.97.02-.35v-2a.5.5 0 0 0-1 0v1.38ZM4.15 2.02l.97.98H6.5a.5.5 0 0 0 0-1h-2c-.12 0-.24 0-.35.02ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Z\"]);\nexport const ScanThumbUpOff20Regular = /*#__PURE__*/createFluentIcon('ScanThumbUpOff20Regular', \"20\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l4.57 4.58a1.42 1.42 0 0 1-.06.05l-1.24.7a1.76 1.76 0 0 0-.8 2.18l.35.9c.2.51.65.9 1.18 1.06l3.61 1.08c.85.26 1.75-.01 2.3-.63l3.09 3.08c-.2.1-.42.15-.65.15h-2a.5.5 0 0 0 0 1h2c.5 0 .98-.15 1.38-.41l.27.26a.5.5 0 0 0 .7-.7l-15-15a.5.5 0 1 0-.7.7l.26.27Zm9.94 9.94c-.29.36-.8.54-1.3.39l-3.61-1.09a.82.82 0 0 1-.54-.48L6.55 11a.76.76 0 0 1 .36-.94l1.24-.7a.5.5 0 0 0 .04-.02h.01v-.01l.02-.01a1.79 1.79 0 0 0 .21-.17l3.92 3.92Zm-3.5-6.32.75.74.35-.68c.17-.32.32-.61.5-1.02.03-.08.1-.17.19-.23a.3.3 0 0 1 .26-.04c.26.07.4.2.48.38.09.18.12.43.13.73 0 .28-.06.64-.15.99-.03.16-.08.31-.12.45a.5.5 0 0 0 .48.65h.93c.6 0 .96.53.82 1l-.39 1.25.8.8.54-1.76c.36-1.17-.56-2.3-1.77-2.3h-.28c.08-.34.14-.74.14-1.1-.01-.34-.04-.76-.23-1.15a1.68 1.68 0 0 0-1.13-.9c-.83-.23-1.43.38-1.63.85-.15.36-.28.61-.45.94l-.21.4ZM17 14.88l.98.97.02-.35v-2a.5.5 0 0 0-1 0v1.38ZM4.15 2.02l.97.98H6.5a.5.5 0 0 0 0-1h-2c-.12 0-.24 0-.35.02ZM15.5 3c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2A2.5 2.5 0 0 0 15.5 2h-2a.5.5 0 0 0 0 1h2ZM3 15.5c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 1 0 1h-2A2.5 2.5 0 0 1 2 15.5v-2a.5.5 0 0 1 1 0v2Z\"]);\nexport const ScanThumbUpOff24Filled = /*#__PURE__*/createFluentIcon('ScanThumbUpOff24Filled', \"24\", [\"M2.48 3.54c-.3.5-.48 1.08-.48 1.71v3a.75.75 0 0 0 1.5 0v-3c0-.2.04-.4.1-.59l5.45 5.45h-.01l-.03.03-1.54.85a2.27 2.27 0 0 0-1.06 2.84l.44 1.09a2.4 2.4 0 0 0 1.56 1.39l4.5 1.32c1.06.3 2.2 0 2.93-.73l3.5 3.5c-.19.06-.38.1-.59.1h-3a.75.75 0 0 0 0 1.5h3c.63 0 1.21-.18 1.7-.48l.27.26a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06l.26.26Zm8.25 4 6.36 6.37.56-1.75c.49-1.56-.78-3-2.34-3h-.19c.08-.38.15-.81.14-1.2-.01-.42-.05-.97-.3-1.47-.29-.58-.8-1-1.5-1.18-1.1-.29-1.9.5-2.17 1.11-.19.44-.35.74-.56 1.13Zm9.77 9.78 1.5 1.5v-3.07a.75.75 0 0 0-1.5 0v1.57ZM5.18 2l1.5 1.5h1.57a.75.75 0 0 0 0-1.5H5.18ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM5.25 20.5c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3Z\"]);\nexport const ScanThumbUpOff24Regular = /*#__PURE__*/createFluentIcon('ScanThumbUpOff24Regular', \"24\", [\"M2.48 3.54c-.3.5-.48 1.08-.48 1.71v3a.75.75 0 0 0 1.5 0v-3c0-.2.04-.4.1-.59l5.45 5.45h-.01l-.03.03-1.54.85a2.27 2.27 0 0 0-1.06 2.84l.44 1.09a2.4 2.4 0 0 0 1.56 1.39l4.5 1.32c1.06.3 2.2 0 2.93-.73l3.5 3.5c-.19.06-.38.1-.59.1h-3a.75.75 0 0 0 0 1.5h3c.63 0 1.21-.18 1.7-.48l.27.26a.75.75 0 0 0 1.06-1.06L3.28 2.22a.75.75 0 1 0-1.06 1.06l.26.26Zm12.3 12.3c-.34.34-.89.51-1.44.35l-4.51-1.32a.9.9 0 0 1-.59-.51l-.44-1.09c-.13-.34 0-.75.4-.97l1.54-.85a.79.79 0 0 0 .06-.04h.01l.01-.01.02-.01a2.35 2.35 0 0 0 .27-.22l4.67 4.67Zm-4.05-8.3 1.1 1.12.21-.39c.22-.4.41-.75.63-1.25.03-.08.1-.17.19-.22a.28.28 0 0 1 .23-.04c.3.08.44.22.52.4.1.19.14.46.15.82 0 .32-.07.75-.18 1.17-.04.2-.1.38-.15.54a.75.75 0 0 0 .11.67l.16.16c.13.1.29.15.45.15h1.16c.7 0 1.05.58.9 1.04l-.31 1 1.2 1.2.55-1.75c.49-1.56-.78-3-2.34-3h-.19c.08-.38.15-.81.14-1.2-.01-.42-.05-.97-.3-1.47-.29-.58-.8-1-1.5-1.18-1.1-.29-1.9.5-2.17 1.11-.19.44-.35.74-.56 1.13Zm9.77 9.78 1.5 1.5v-3.07a.75.75 0 0 0-1.5 0v1.57ZM5.18 2l1.5 1.5h1.57a.75.75 0 0 0 0-1.5H5.18ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM5.25 20.5c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3Z\"]);\nexport const ScanThumbUpOff28Filled = /*#__PURE__*/createFluentIcon('ScanThumbUpOff28Filled', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l1.4 1.4c-.4.6-.62 1.3-.62 2.07v3.5a.75.75 0 0 0 1.5 0v-3.5c0-.35.08-.68.22-.97l6.21 6.21a5.44 5.44 0 0 1-.45.46l-1.86 1.08a2.74 2.74 0 0 0-1.2 3.35l.53 1.38c.3.8.96 1.4 1.77 1.66l5.41 1.68c1.52.47 3.13-.2 3.86-1.55l3.23 3.23c-.3.14-.62.22-.97.22h-3.5a.75.75 0 0 0 0 1.5h3.5c.76 0 1.48-.23 2.07-.62l1.4 1.4a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm2.94.82L7.68 4.5h2.57a.75.75 0 0 0 0-1.5h-3.5c-.18 0-.36.01-.53.04Zm6.27 6.27 7.53 7.53.62-2.08a2.76 2.76 0 0 0-2.66-3.52h-.43c.12-.55.22-1.18.2-1.75a4.4 4.4 0 0 0-.33-1.76 2.54 2.54 0 0 0-1.68-1.4c-1.28-.36-2.18.6-2.46 1.3-.23.57-.43.97-.69 1.47l-.1.2Zm11.01 11 1.46 1.47c.03-.17.04-.35.04-.53v-3.5a.75.75 0 0 0-1.5 0v2.57ZM21.25 3A3.75 3.75 0 0 1 25 6.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-1.24-1-2.25-2.25-2.25h-3.5a.75.75 0 0 1 0-1.5h3.5ZM3 21.25A3.75 3.75 0 0 0 6.75 25h3.5a.75.75 0 0 0 0-1.5h-3.5c-1.24 0-2.25-1-2.25-2.25v-3.5a.75.75 0 0 0-1.5 0v3.5Z\"]);\nexport const ScanThumbUpOff28Regular = /*#__PURE__*/createFluentIcon('ScanThumbUpOff28Regular', \"28\", [\"m3.28 2.22 22.5 22.5a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.6.4-1.3.62-2.07.62h-3.5a.75.75 0 0 1 0-1.5h3.5c.35 0 .68-.08.97-.22l-3.23-3.23a3.29 3.29 0 0 1-3.86 1.55l-5.41-1.68a2.76 2.76 0 0 1-1.77-1.66l-.52-1.38a2.74 2.74 0 0 1 1.19-3.35l1.86-1.08.04-.04a3.34 3.34 0 0 0 .41-.42L4.72 5.78c-.14.3-.22.62-.22.97v3.5a.75.75 0 0 1-1.5 0v-3.5c0-.76.23-1.48.62-2.07l-1.4-1.4a.75.75 0 1 1 1.06-1.06ZM17.84 18.9 12 13.06a5.13 5.13 0 0 1-.65.61h-.01l-.02.02-.02.01a.76.76 0 0 1-.07.04l-1.86 1.09c-.53.31-.75.95-.54 1.51l.53 1.39c.13.36.43.64.8.75l5.42 1.69c.95.3 1.96-.24 2.24-1.18l.02-.09ZM6.22 3.04 7.68 4.5h2.57a.75.75 0 0 0 0-1.5h-3.5c-.18 0-.36.01-.53.04Zm6.27 6.27 1.12 1.12.32-.65c.26-.5.48-.95.74-1.58a.84.84 0 0 1 .3-.37c.11-.07.23-.1.37-.06.38.1.6.31.72.59.14.3.19.69.2 1.16 0 .44-.09 1-.22 1.55-.05.25-.12.49-.18.7a.75.75 0 0 0 .72.97h1.4c.86 0 1.45.8 1.22 1.6l-.39 1.3 1.21 1.2.62-2.08a2.76 2.76 0 0 0-2.66-3.52h-.43c.12-.55.22-1.18.2-1.75a4.4 4.4 0 0 0-.33-1.76 2.54 2.54 0 0 0-1.68-1.4c-1.28-.36-2.18.6-2.46 1.3-.23.57-.43.97-.69 1.47l-.1.2Zm11.01 11 1.46 1.47c.03-.17.04-.35.04-.53v-3.5a.75.75 0 0 0-1.5 0v2.57ZM25 6.76A3.75 3.75 0 0 0 21.25 3h-3.5a.75.75 0 0 0 0 1.5h3.5c1.24 0 2.25 1 2.25 2.25v3.5a.75.75 0 0 0 1.5 0v-3.5ZM6.75 25A3.75 3.75 0 0 1 3 21.25v-3.5a.75.75 0 0 1 1.5 0v3.5c0 1.24 1 2.25 2.25 2.25h3.5a.75.75 0 0 1 0 1.5h-3.5Z\"]);\nexport const ScanThumbUpOff48Filled = /*#__PURE__*/createFluentIcon('ScanThumbUpOff48Filled', \"48\", [\"m39.2 40.96 2.67 2.67a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L7.04 8.8A6.22 6.22 0 0 0 6 12.25v6.5a1.25 1.25 0 1 0 2.5 0v-6.5c0-.58.13-1.13.37-1.62l10.4 10.41-.1.16A4.62 4.62 0 0 1 16.94 23l-1.25.48a2.98 2.98 0 0 0-1.87 3.36l.68 3.5a3.49 3.49 0 0 0 2.6 2.72l8.24 2c2.28.57 4.6-.27 6.02-1.96l6.02 6.02c-.5.24-1.04.37-1.62.37h-6.5a1.25 1.25 0 1 0 0 2.5h6.5c1.27 0 2.46-.38 3.45-1.04ZM22 16.7l11.27 11.28.86-3.33a3.85 3.85 0 0 0-3.51-4.86 7.37 7.37 0 0 0-.62-.03h-1.33c.22-.88.37-1.75.37-2.54 0-1.33-.26-2.61-.83-3.61-.58-1.02-1.56-1.85-2.92-1.85-.9 0-1.53.49-1.94 1-.38.5-.63 1.1-.8 1.63a15.6 15.6 0 0 0-.47 1.9l-.08.41Zm17.5 17.5 2.44 2.44c.04-.28.06-.58.06-.88v-6.5a1.25 1.25 0 1 0-2.5 0v4.95ZM11.37 6.07 13.8 8.5h4.95a1.25 1.25 0 1 0 0-2.5h-6.5c-.3 0-.6.02-.88.06ZM35.75 6C39.2 6 42 8.8 42 12.25v6.5a1.25 1.25 0 1 1-2.5 0v-6.5a3.75 3.75 0 0 0-3.75-3.75h-6.5a1.25 1.25 0 1 1 0-2.5h6.5ZM6 35.75C6 39.2 8.8 42 12.25 42h6.5a1.25 1.25 0 1 0 0-2.5h-6.5a3.75 3.75 0 0 1-3.75-3.75v-6.5a1.25 1.25 0 1 0-2.5 0v6.5Z\"]);\nexport const ScanThumbUpOff48Regular = /*#__PURE__*/createFluentIcon('ScanThumbUpOff48Regular', \"48\", [\"m39.2 40.96 2.67 2.67a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L7.04 8.8A6.22 6.22 0 0 0 6 12.25v6.5a1.25 1.25 0 1 0 2.5 0v-6.5c0-.58.13-1.13.37-1.62l10.4 10.41-.1.16A4.62 4.62 0 0 1 16.94 23l-1.25.48a2.98 2.98 0 0 0-1.87 3.36l.68 3.5a3.49 3.49 0 0 0 2.6 2.72l8.24 2c2.28.57 4.6-.27 6.02-1.96l6.02 6.02c-.5.24-1.04.37-1.62.37h-6.5a1.25 1.25 0 1 0 0 2.5h6.5c1.27 0 2.46-.38 3.45-1.04Zm-9.63-9.63a3.5 3.5 0 0 1-3.65 1.32l-8.24-2a.99.99 0 0 1-.74-.77l-.68-3.51a.48.48 0 0 1 .3-.54l1.26-.48a7.12 7.12 0 0 0 3.26-2.5l8.49 8.48Zm-7.53-14.6 1.81 1.82.29-.45c.32-.5.46-1.15.54-1.6l.1-.58c.04-.3.08-.55.15-.84a2.28 2.28 0 0 1 .31-.83h.05c.2 0 .47.1.75.58.29.51.5 1.33.5 2.38 0 .84-.26 1.96-.7 3.32l1.71 1.72H30a5.16 5.16 0 0 1 .61.05l.08.01c.8.2 1.22.92 1.01 1.71l-.48 1.9 2.05 2.05.86-3.33a3.85 3.85 0 0 0-3.51-4.86 7.37 7.37 0 0 0-.62-.03h-1.33c.22-.88.37-1.75.37-2.54 0-1.33-.26-2.61-.83-3.61-.58-1.02-1.56-1.85-2.92-1.85-.92 0-1.62.43-2.08 1.05a4.6 4.6 0 0 0-.72 1.74 20.28 20.28 0 0 0-.27 1.52 5.12 5.12 0 0 1-.18.68ZM39.5 34.2l2.44 2.43c.04-.28.06-.58.06-.88v-6.5a1.25 1.25 0 1 0-2.5 0v4.95ZM11.37 6.06 13.8 8.5h4.95a1.25 1.25 0 1 0 0-2.5h-6.5c-.3 0-.6.02-.88.06ZM42 12.25C42 8.8 39.2 6 35.75 6h-6.5a1.25 1.25 0 1 0 0 2.5h6.5a3.75 3.75 0 0 1 3.75 3.75v6.5a1.25 1.25 0 1 0 2.5 0v-6.5ZM12.25 42A6.25 6.25 0 0 1 6 35.75v-6.5a1.25 1.25 0 1 1 2.5 0v6.5a3.75 3.75 0 0 0 3.75 3.75h6.5a1.25 1.25 0 1 1 0 2.5h-6.5Z\"]);\nexport const ScanType20Filled = /*#__PURE__*/createFluentIcon('ScanType20Filled', \"20\", [\"M4.75 3.5c-.69 0-1.25.56-1.25 1.25v1.5a.75.75 0 0 1-1.5 0v-1.5A2.75 2.75 0 0 1 4.75 2h1.5a.75.75 0 0 1 0 1.5h-1.5Zm0 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5ZM15.25 16.5c.69 0 1.25-.56 1.25-1.25v-1.5a.75.75 0 0 1 1.5 0v1.5A2.75 2.75 0 0 1 15.25 18h-1.5a.75.75 0 0 1 0-1.5h1.5ZM6.5 5a.75.75 0 0 0-.75.75v1a.75.75 0 0 0 1.5 0V6.5h2v7H9A.75.75 0 0 0 9 15h2a.75.75 0 0 0 0-1.5h-.25v-7h2v.25a.75.75 0 0 0 1.5 0v-1A.75.75 0 0 0 13.5 5h-7Z\"]);\nexport const ScanType20Regular = /*#__PURE__*/createFluentIcon('ScanType20Regular', \"20\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM15 17a2 2 0 0 0 2-2v-1.5a.5.5 0 0 1 1 0V15a3 3 0 0 1-3 3h-1.5a.5.5 0 0 1 0-1H15ZM6.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V6h2.5v8H9a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1h-.5V6H13v.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5h-7Z\"]);\nexport const ScanType24Filled = /*#__PURE__*/createFluentIcon('ScanType24Filled', \"24\", [\"M5.5 4C4.67 4 4 4.67 4 5.5V8a1 1 0 0 1-2 0V5.5A3.5 3.5 0 0 1 5.5 2H8a1 1 0 0 1 0 2H5.5Zm0 16A1.5 1.5 0 0 1 4 18.5V16a1 1 0 1 0-2 0v2.5A3.5 3.5 0 0 0 5.5 22H8a1 1 0 1 0 0-2H5.5ZM20 5.5c0-.83-.67-1.5-1.5-1.5H16a1 1 0 1 1 0-2h2.5A3.5 3.5 0 0 1 22 5.5V8a1 1 0 1 1-2 0V5.5ZM18.5 20c.83 0 1.5-.67 1.5-1.5V16a1 1 0 1 1 2 0v2.5a3.5 3.5 0 0 1-3.5 3.5H16a1 1 0 1 1 0-2h2.5ZM7.75 6a1 1 0 0 0-1 1v1.5a1 1 0 0 0 2 0V8H11v8H9.75a1 1 0 1 0 0 2h4.5a1 1 0 1 0 0-2H13V8h2.25v.5a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1h-8.5Z\"]);\nexport const ScanType24Regular = /*#__PURE__*/createFluentIcon('ScanType24Regular', \"24\", [\"M5.25 3.5c-.97 0-1.75.78-1.75 1.75v3a.75.75 0 0 1-1.5 0v-3C2 3.45 3.46 2 5.25 2h3a.75.75 0 0 1 0 1.5h-3Zm0 17c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM18.75 20.5c.97 0 1.75-.78 1.75-1.75v-3a.75.75 0 0 1 1.5 0v3c0 1.8-1.46 3.25-3.25 3.25h-3a.75.75 0 0 1 0-1.5h3ZM7.75 6a.75.75 0 0 0-.75.75V8a.75.75 0 0 0 1.5 0v-.5h2.75v9h-1.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-1.5v-9h2.75V8A.75.75 0 0 0 17 8V6.75a.75.75 0 0 0-.75-.75h-8.5Z\"]);\nexport const ScanTypeCheckmark20Filled = /*#__PURE__*/createFluentIcon('ScanTypeCheckmark20Filled', \"20\", [\"M4.75 3.5c-.69 0-1.25.56-1.25 1.25v1.5a.75.75 0 0 1-1.5 0v-1.5A2.75 2.75 0 0 1 4.75 2h1.5a.75.75 0 0 1 0 1.5h-1.5Zm0 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5ZM6.5 5a.75.75 0 0 0-.75.75v1a.75.75 0 0 0 1.5 0V6.5h2v6.36a5.5 5.5 0 0 1 1.5-2.38V6.5h2v.25a.75.75 0 0 0 1.5 0v-1A.75.75 0 0 0 13.5 5h-7Zm1.25 8.5h1.34a5.53 5.53 0 0 0-.07 1.5H7.75a.75.75 0 0 1 0-1.5Zm11.25 1a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-5.5.8-.65-.65a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7l-2.65 2.64Z\"]);\nexport const ScanTypeCheckmark20Regular = /*#__PURE__*/createFluentIcon('ScanTypeCheckmark20Regular', \"20\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v2a.5.5 0 0 1-1 0v-2A2.5 2.5 0 0 1 4.5 2h2a.5.5 0 0 1 0 1h-2ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2ZM6.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 1 0V6h2.5v6.2c.25-.54.6-1.04 1-1.47V6H13v.5a.5.5 0 0 0 1 0v-1a.5.5 0 0 0-.5-.5h-7ZM8 14h1.02a5.57 5.57 0 0 0 0 1H8a.5.5 0 0 1 0-1Zm11 .5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.85-1.85-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0-.7-.7Z\"]);\nexport const ScanTypeCheckmark24Filled = /*#__PURE__*/createFluentIcon('ScanTypeCheckmark24Filled', \"24\", [\"M5.5 4C4.67 4 4 4.67 4 5.5V8a1 1 0 0 1-2 0V5.5A3.5 3.5 0 0 1 5.5 2H8a1 1 0 0 1 0 2H5.5Zm0 16A1.5 1.5 0 0 1 4 18.5V16a1 1 0 1 0-2 0v2.5A3.5 3.5 0 0 0 5.5 22H8a1 1 0 1 0 0-2H5.5ZM20 5.5c0-.83-.67-1.5-1.5-1.5H16a1 1 0 1 1 0-2h2.5A3.5 3.5 0 0 1 22 5.5V8a1 1 0 1 1-2 0V5.5ZM7.75 6a1 1 0 0 0-1 1v1.5a1 1 0 0 0 2 0V8H11v8H9.75a1 1 0 1 0 0 2h1.27A6.48 6.48 0 0 1 13 12.81V8h2.25v.5a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1h-8.5ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const ScanTypeCheckmark24Regular = /*#__PURE__*/createFluentIcon('ScanTypeCheckmark24Regular', \"24\", [\"M5.25 3.5c-.97 0-1.75.78-1.75 1.75v3a.75.75 0 0 1-1.5 0v-3C2 3.45 3.46 2 5.25 2h3a.75.75 0 0 1 0 1.5h-3Zm0 17c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3C2 20.55 3.46 22 5.25 22h3a.75.75 0 0 0 0-1.5h-3ZM20.5 5.25c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3C20.55 2 22 3.46 22 5.25v3a.75.75 0 0 1-1.5 0v-3ZM7.75 6a.75.75 0 0 0-.75.75V8a.75.75 0 0 0 1.5 0v-.5h2.75v8.2c.29-1 .8-1.9 1.5-2.64V7.5h2.75V8A.75.75 0 0 0 17 8V6.75a.75.75 0 0 0-.75-.75h-8.5Zm2 10.5h1.33a6.55 6.55 0 0 0-.06 1.5H9.75a.75.75 0 0 1 0-1.5Zm13.25 1a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const ScanTypeOff20Filled = /*#__PURE__*/createFluentIcon('ScanTypeOff20Filled', \"20\", [\"M2.48 3.2c-.3.43-.48.97-.48 1.55v1.5a.75.75 0 0 0 1.5 0v-1.5c0-.16.03-.32.09-.46l2.16 2.17v.29a.75.75 0 0 0 1 .7l2.5 2.5v3.55H9A.75.75 0 0 0 9 15h2a.75.75 0 0 0 0-1.5h-.25v-2.04l4.96 4.95c-.14.06-.3.09-.46.09h-1.5a.75.75 0 0 0 0 1.5h1.5c.58 0 1.12-.18 1.56-.48l.34.33a.5.5 0 0 0 .7-.7l-.33-.34-1.1-1.1L5.94 5.24 4.29 3.6l-1.1-1.1-.34-.34a.5.5 0 1 0-.7.7l.33.34ZM18 15.24c0 .2-.02.39-.06.57l-1.44-1.44v-.63a.75.75 0 0 1 1.5 0v1.5ZM10.75 6.5v2.13l-1.5-1.5V6.5h-.63L7.12 5h6.38c.41 0 .75.34.75.75v1a.75.75 0 0 1-1.5 0V6.5h-2Zm-4.5-3h-.63L4.18 2.06c.18-.04.37-.06.57-.06h1.5a.75.75 0 0 1 0 1.5Zm-1.5 13c-.69 0-1.25-.56-1.25-1.25v-1.5a.75.75 0 0 0-1.5 0v1.5A2.75 2.75 0 0 0 4.75 18h1.5a.75.75 0 0 0 0-1.5h-1.5ZM16.5 4.75c0-.69-.56-1.25-1.25-1.25h-1.5a.75.75 0 0 1 0-1.5h1.5A2.75 2.75 0 0 1 18 4.75v1.5a.75.75 0 0 1-1.5 0v-1.5Z\"]);\nexport const ScanTypeOff20Regular = /*#__PURE__*/createFluentIcon('ScanTypeOff20Regular', \"20\", [\"M2.41 3.12C2.15 3.52 2 4 2 4.5v2a.5.5 0 0 0 1 0v-2c0-.23.05-.45.15-.65l6.35 6.36V14H9a.5.5 0 1 0 0 1h2a.5.5 0 0 0 0-1h-.5v-2.8l5.52 5.52A2 2 0 0 1 15 17h-1.5a.5.5 0 1 0 0 1H15c.65 0 1.25-.2 1.74-.55l.4.4a.5.5 0 0 0 .71-.7l-.4-.41-.73-.72L6.03 5.32 3.85 3.15l-.73-.74-.27-.26a.5.5 0 1 0-.7.7l.26.27ZM18 15a3 3 0 0 1-.1.78l-.9-.9V13.5a.5.5 0 1 1 1 0V15Zm-7.5-9v2.38l-1-1V6H8.12l-1-1h6.38c.28 0 .5.22.5.5v1a.5.5 0 0 1-1 0V6h-2.5Zm-4-3H5.12l-.97-.98L4.5 2h2a.5.5 0 0 1 0 1ZM5 17a2 2 0 0 1-2-2v-1.5a.5.5 0 1 0-1 0V15a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H5ZM17 4.5c0-.83-.67-1.5-1.5-1.5h-2a.5.5 0 0 1 0-1h2A2.5 2.5 0 0 1 18 4.5v2a.5.5 0 0 1-1 0v-2Z\"]);\nexport const Scratchpad20Filled = /*#__PURE__*/createFluentIcon('Scratchpad20Filled', \"20\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v13c0 .83.67 1.5 1.5 1.5H12v-.7A5.5 5.5 0 0 1 8 12H6.5a.5.5 0 0 1 0-1h1.59c.2-.58.76-1 1.41-1v-.5h-3a.5.5 0 0 1 0-1h3c0-.53.1-1.04.3-1.5H6.5a.5.5 0 0 1 0-1h3.88a4 4 0 0 1 6.62.56V3.5c0-.83-.67-1.5-1.5-1.5h-11Zm9 3.5a3 3 0 0 0-3 3v3a3 3 0 1 0 6 0v-3a3 3 0 0 0-3-3Zm-4 5.5c.28 0 .5.22.5.5v.5a3.5 3.5 0 1 0 7 0v-.5a.5.5 0 0 1 1 0v.5a4.5 4.5 0 0 1-4 4.47V18a.5.5 0 0 1-1 0v-1.53A4.5 4.5 0 0 1 9 12v-.5c0-.28.22-.5.5-.5Z\"]);\nexport const Scratchpad20Regular = /*#__PURE__*/createFluentIcon('Scratchpad20Regular', \"20\", [\"M4.5 2C3.67 2 3 2.67 3 3.5v13c0 .83.67 1.5 1.5 1.5H12v-.7a5.46 5.46 0 0 1-.8-.3H4.5a.5.5 0 0 1-.5-.5v-13c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v1.88c.4.32.75.72 1 1.18V3.5c0-.83-.67-1.5-1.5-1.5h-11ZM8 11.5c0-.18.03-.34.09-.5H6.5a.5.5 0 0 0 0 1H8v-.5Zm-1.5-3h3v1h-3a.5.5 0 0 1 0-1ZM9.8 7a4 4 0 0 1 .58-1H6.5a.5.5 0 0 0 0 1h3.3Zm3.7-1.5a3 3 0 0 0-3 3v3a3 3 0 1 0 6 0v-3a3 3 0 0 0-3-3Zm-2 3a2 2 0 1 1 4 0v3a2 2 0 1 1-4 0v-3Zm-1.5 3a.5.5 0 0 0-1 0v.5a4.5 4.5 0 0 0 4 4.47V18a.5.5 0 0 0 1 0v-1.53A4.5 4.5 0 0 0 18 12v-.5a.5.5 0 0 0-1 0v.5a3.5 3.5 0 1 1-7 0v-.5Z\"]);\nexport const Scratchpad24Filled = /*#__PURE__*/createFluentIcon('Scratchpad24Filled', \"24\", [\"M17.78 2A2.23 2.23 0 0 1 20 4.18v4.08A4.24 4.24 0 0 0 13.51 7H8.25a.75.75 0 0 0 0 1.5h4.13c-.21.47-.34.97-.37 1.5H8.25a.75.75 0 0 0 0 1.5H12v.67a1.74 1.74 0 0 0-.6-.16l-.15-.01c-.7 0-1.3.4-1.58 1H8.25a.75.75 0 0 0 0 1.5H9.5c0 3 1.98 5.53 4.76 6.36l.24.07v.32c0 .27.06.52.17.75H6.25a2.29 2.29 0 0 1-2.24-2.03L4 19.81V4.2c0-.93.82-2.1 2.08-2.18L6.25 2h11.53Zm3.47 11c.38 0 .7.28.74.65l.01.1v.75a5.64 5.64 0 0 1-5 5.6v1.15a.75.75 0 0 1-1.5.1V20.1a5.65 5.65 0 0 1-5-5.36v-.99a.75.75 0 0 1 1.5-.1v.85c0 2.35 1.9 4.15 4.25 4.15 2.28 0 4.13-1.7 4.24-3.94l.01-.21v-.75c0-.41.34-.75.75-.75Zm-5-6c1.8 0 3.25 1.46 3.25 3.25v4a3.25 3.25 0 0 1-6.5 0v-4C13 8.45 14.46 7 16.25 7Z\"]);\nexport const Scratchpad24Regular = /*#__PURE__*/createFluentIcon('Scratchpad24Regular', \"24\", [\"M17.78 2C19.03 2 20 3 20 4.26v4a4.76 4.76 0 0 0-1.5-1.6v-2.4c0-.4-.3-.74-.72-.74H6.26a.75.75 0 0 0-.75.75l-.01 15.5c0 .41.34.74.76.74H13.3c.54.26 1.07.39 1.2.43a2 2 0 0 0 .16 1.07H6.26C5 22 4 21 4 19.76V4.26C4 3 5.02 2 6.27 2h11.52Zm3.47 11c.38 0 .7.28.74.65l.01.1v.75a5.64 5.64 0 0 1-5 5.6v1.15a.75.75 0 0 1-1.5.1V20.1a5.65 5.65 0 0 1-5-5.36v-.99a.75.75 0 0 1 1.5-.1v.85c0 2.35 1.9 4.15 4.25 4.15 2.28 0 4.13-1.7 4.24-3.94l.01-.21v-.75c0-.41.34-.75.75-.75Zm-5-6c1.8 0 3.25 1.46 3.25 3.25v4a3.25 3.25 0 1 1-6.5 0v-4C13 8.45 14.46 7 16.25 7Zm0 1.5c-.97 0-1.75.78-1.75 1.75v4a1.75 1.75 0 1 0 3.5 0v-4c0-.97-.78-1.75-1.75-1.75ZM9.67 13a.66.66 0 0 0-.12.25c-.03.1-.05.25-.05.45v.8H8.25a.75.75 0 0 1-.1-1.5h1.52Zm-1.42-3H12v1.5H8.25a.75.75 0 0 1-.1-1.5h.1Zm5.25-3c-.3.26-.53.48-.65.65-.09.12-.2.3-.33.54l-.17.31h-4.1a.75.75 0 0 1-.1-1.5h5.35Z\"]);\nexport const ScreenCut20Filled = /*#__PURE__*/createFluentIcon('ScreenCut20Filled', \"20\", [\"M3 6a1 1 0 0 1 1-1h.5a.5.5 0 1 0 0-1H4a2 2 0 0 0-2 2v.5a.5.5 0 1 0 1 0V6Z\", \"M4 14a1 1 0 0 1-1-1v-.5a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.25a.5.5 0 0 0 0-1H4Z\", \"M2.5 8c.28 0 .5.22.5.5v2a.5.5 0 1 1-1 0v-2c0-.28.22-.5.5-.5Z\", \"M17 6a1 1 0 0 0-1-1h-.5a.5.5 0 0 1 0-1h.5a2 2 0 0 1 2 2v.5a.5.5 0 0 1-1 0V6Z\", \"M17 13a1 1 0 0 1-1 1h-.25a.5.5 0 0 0 0 1H16a2 2 0 0 0 2-2v-.5a.5.5 0 0 0-1 0v.5Z\", \"M17 8.5a.5.5 0 0 1 1 0v2a.5.5 0 1 1-1 0v-2Z\", \"M6 4.5c0-.28.22-.5.5-.5H9a.5.5 0 0 1 0 1H6.5a.5.5 0 0 1-.5-.5Z\", \"M11 4a.5.5 0 0 0 0 1h2.5a.5.5 0 0 0 0-1H11Z\", \"M5 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2.7l.5-.74-1.96-2.93a1.5 1.5 0 1 1 2.5-1.66L10 9.55l1.25-1.88a1.5 1.5 0 0 1 2.5 1.66l-1.95 2.93.5.74H15a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z\", \"M7.22 8.09a.5.5 0 0 0-.14.69l2.31 3.48-1.23 1.85a2 2 0 0 0-2.51 2.64 2 2 0 1 0 3.34-2.08l1-1.51L11 14.67a2 2 0 1 0 .84-.55l-1.24-1.86-.6-.9L7.9 8.23a.5.5 0 0 0-.7-.14ZM12.5 17a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-5 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\", \"m10.6 10.45.6.9 1.72-2.57a.5.5 0 0 0-.14-.7.5.5 0 0 0-.7.15l-1.48 2.22Z\"]);\nexport const ScreenCut20Regular = /*#__PURE__*/createFluentIcon('ScreenCut20Regular', \"20\", [\"M4 5a1 1 0 0 0-1 1v.5a.5.5 0 1 1-1 0V6c0-1.1.9-2 2-2h.5a.5.5 0 0 1 0 1H4Z\", \"M3 13a1 1 0 0 0 1 1h.25a.5.5 0 0 1 0 1H4a2 2 0 0 1-2-2v-.5a.5.5 0 0 1 1 0v.5Z\", \"M3 8.5a.5.5 0 0 0-1 0v2a.5.5 0 1 0 1 0v-2Z\", \"M16 5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Z\", \"M16 14a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.25a.5.5 0 0 1 0-1H16Z\", \"M17.5 8a.5.5 0 0 0-.5.5v2a.5.5 0 1 0 1 0v-2a.5.5 0 0 0-.5-.5Z\", \"M6.5 4a.5.5 0 0 0 0 1H9a.5.5 0 1 0 0-1H6.5Z\", \"M10.5 4.5c0-.28.22-.5.5-.5h2.5a.5.5 0 0 1 0 1H11a.5.5 0 0 1-.5-.5Z\", \"M7.22 8.09a.5.5 0 0 0-.14.69l2.31 3.48-1.23 1.85a2 2 0 0 0-2.51 2.64 2 2 0 1 0 3.34-2.08l1-1.51L11 14.67a2 2 0 1 0 .84-.55l-1.24-1.86-.6-.9L7.9 8.23a.5.5 0 0 0-.7-.14ZM12.5 17a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-5 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\", \"m10.6 10.45.6.9 1.72-2.57a.5.5 0 0 0-.14-.7.5.5 0 0 0-.7.15l-1.48 2.22Z\"]);\nexport const ScreenPerson20Filled = /*#__PURE__*/createFluentIcon('ScreenPerson20Filled', \"20\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6.05a2.5 2.5 0 0 1 2.22-1.99A2.99 2.99 0 0 1 15.5 9a3 3 0 0 1 2.5 1.34V7a3 3 0 0 0-3-3H5Zm12.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ScreenPerson20Regular = /*#__PURE__*/createFluentIcon('ScreenPerson20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h6.3c.07-.37.23-.7.45-1H4.75C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V9.4c.4.23.74.56 1 .94V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm12.75 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ScreenSearch20Filled = /*#__PURE__*/createFluentIcon('ScreenSearch20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16h-5.13l-1.56-1.56A4.5 4.5 0 0 0 2 8.76V6.75ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ScreenSearch20Regular = /*#__PURE__*/createFluentIcon('ScreenSearch20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16h-5.13l-1-1h6.13c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v1.5c-.36.13-.7.3-1 .5v-2ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const ScreenSearch24Filled = /*#__PURE__*/createFluentIcon('ScreenSearch24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25h-6.28l-2.04-2.05A5.5 5.5 0 0 0 2 11.25v-4ZM5.5 20c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 20Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const ScreenSearch24Regular = /*#__PURE__*/createFluentIcon('ScreenSearch24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25h-6.28l-1.5-1.5h7.78c.97 0 1.75-.78 1.75-1.75v-9.5c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v3.12a5.5 5.5 0 0 0-1.5.89V7.25ZM5.5 20c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 20Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const Screenshot20Filled = /*#__PURE__*/createFluentIcon('Screenshot20Filled', \"20\", [\"M5 3h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2Zm1.5 2C5.67 5 5 5.67 5 6.5v2a.5.5 0 0 0 1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 0 0-1h-2Zm5 0a.5.5 0 0 0 0 1h2c.28 0 .5.22.5.5v2a.5.5 0 0 0 1 0v-2c0-.83-.67-1.5-1.5-1.5h-2ZM6 11.5a.5.5 0 0 0-1 0v2c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 1-.5-.5v-2Zm9 0a.5.5 0 0 0-1 0v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2c.83 0 1.5-.67 1.5-1.5v-2Z\"]);\nexport const Screenshot20Regular = /*#__PURE__*/createFluentIcon('Screenshot20Regular', \"20\", [\"M6.5 5C5.67 5 5 5.67 5 6.5v2a.5.5 0 0 0 1 0v-2c0-.28.22-.5.5-.5h2a.5.5 0 0 0 0-1h-2Zm5 0a.5.5 0 0 0 0 1h2c.28 0 .5.22.5.5v2a.5.5 0 0 0 1 0v-2c0-.83-.67-1.5-1.5-1.5h-2ZM6 11.5a.5.5 0 0 0-1 0v2c0 .83.67 1.5 1.5 1.5h2a.5.5 0 0 0 0-1h-2a.5.5 0 0 1-.5-.5v-2Zm9 0a.5.5 0 0 0-1 0v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 0 0 1h2c.83 0 1.5-.67 1.5-1.5v-2ZM3 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm1 0v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Z\"]);\nexport const Screenshot24Filled = /*#__PURE__*/createFluentIcon('Screenshot24Filled', \"24\", [\"M17.25 3A3.75 3.75 0 0 1 21 6.75v10.5A3.75 3.75 0 0 1 17.25 21H6.75A3.75 3.75 0 0 1 3 17.25V6.75A3.75 3.75 0 0 1 6.75 3h10.5Zm0 10c-.38 0-.7.28-.74.65l-.01.1V16a.5.5 0 0 1-.41.5h-2.34a.75.75 0 0 0-.1 1.5H16a2 2 0 0 0 2-1.85v-2.4a.75.75 0 0 0-.75-.75Zm-10.5 0c-.38 0-.7.28-.74.65l-.01.1V16a2 2 0 0 0 1.85 2h2.4a.75.75 0 0 0 .1-1.5H8a.5.5 0 0 1-.5-.41v-2.34a.75.75 0 0 0-.75-.75Zm3.5-7h-2.4a2 2 0 0 0-1.84 1.84L6 8v2.35a.75.75 0 0 0 1.5 0V7.91a.5.5 0 0 1 .41-.4L8 7.5h2.35a.75.75 0 0 0 0-1.5h-.1ZM16 6h-2.25a.75.75 0 0 0-.1 1.5H16a.5.5 0 0 1 .5.41v2.34a.75.75 0 0 0 1.5.1V8a2 2 0 0 0-1.85-2H16Z\"]);\nexport const Screenshot24Regular = /*#__PURE__*/createFluentIcon('Screenshot24Regular', \"24\", [\"M17.25 3A3.75 3.75 0 0 1 21 6.75v10.5A3.75 3.75 0 0 1 17.25 21H6.75A3.75 3.75 0 0 1 3 17.25V6.75A3.75 3.75 0 0 1 6.75 3h10.5Zm0 1.5H6.75c-1.24 0-2.25 1-2.25 2.25v10.5c0 1.24 1 2.25 2.25 2.25h10.5c1.24 0 2.25-1 2.25-2.25V6.75c0-1.24-1-2.25-2.25-2.25Zm0 8.5c.41 0 .75.34.75.75V16a2 2 0 0 1-2 2h-2.25a.75.75 0 0 1 0-1.5H16a.5.5 0 0 0 .5-.5v-2.25c0-.41.34-.75.75-.75Zm-10.5 0c.41 0 .75.34.75.75V16c0 .28.22.5.5.5h2.25a.75.75 0 0 1 0 1.5H8a2 2 0 0 1-2-2v-2.25c0-.41.34-.75.75-.75ZM8 6h2.25a.75.75 0 0 1 .1 1.5H8a.5.5 0 0 0-.5.41v2.34a.75.75 0 0 1-1.5.1V8a2 2 0 0 1 1.85-2h2.4H8Zm8 0a2 2 0 0 1 2 2v2.25a.75.75 0 0 1-1.5 0V8a.5.5 0 0 0-.5-.5h-2.25a.75.75 0 0 1 0-1.5H16Z\"]);\nexport const Script16Filled = /*#__PURE__*/createFluentIcon('Script16Filled', \"16\", [\"M13 1a2.1 2.1 0 0 1 .5.07c-.8.21-1.4.89-1.48 1.73l-.02.14V13.5a1.5 1.5 0 0 1-3 0V12a1 1 0 0 0-1-1H3V3.5A2.5 2.5 0 0 1 5.5 1H13ZM8 12v1.5c0 .56.2 1.08.51 1.5H5.18h.37H3a2 2 0 0 1-2-2v-.5c0-.28.22-.5.5-.5H8Zm6-10a.97.97 0 0 0-.5.14c-.3.17-.5.49-.5.86v2h1a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1Z\"]);\nexport const Script16Regular = /*#__PURE__*/createFluentIcon('Script16Regular', \"16\", [\"M13 1H5.5A2.5 2.5 0 0 0 3 3.5V11H2a1 1 0 0 0-1 1v1c0 1.1.9 2 2 2h7a2 2 0 0 0 2-2V5h2a1 1 0 0 0 1-1V3a2 2 0 0 0-2-2ZM3 14a1 1 0 0 1-1-1v-1h6v1c0 .36.1.7.27 1H3Zm8-1a1 1 0 0 1-2 0v-1a1 1 0 0 0-1-1H4V3.5C4 2.67 4.67 2 5.5 2h5.77c-.17.3-.27.64-.27 1v10Zm3-9h-2V3a1 1 0 0 1 2 0v1Z\"]);\nexport const Script20Filled = /*#__PURE__*/createFluentIcon('Script20Filled', \"20\", [\"M16.56 2H6.5A2.5 2.5 0 0 0 4 4.5V13h6a1 1 0 0 1 1 1v2.1c0 1.1.9 1.9 2 1.9s1.99-.79 2-1.88V4.37a2.5 2.5 0 0 1 2-2.32 2.5 2.5 0 0 0-.44-.05Zm-5.88 16a2.99 2.99 0 0 1-.68-1.9V14H1.5a.5.5 0 0 0-.5.5v1.19A2.32 2.32 0 0 0 3.38 18h7.3ZM18 7a1 1 0 0 0 1-1V4.5a1.5 1.5 0 0 0-3 0V7h2Z\"]);\nexport const Script20Regular = /*#__PURE__*/createFluentIcon('Script20Regular', \"20\", [\"M16.56 2H6.5A2.5 2.5 0 0 0 4 4.5V13H2a1 1 0 0 0-1 1v1.69A2.32 2.32 0 0 0 3.38 18h9.14A2.5 2.5 0 0 0 15 15.53V7h3a1 1 0 0 0 1-1V4.5A2.5 2.5 0 0 0 16.56 2ZM6.5 3h8c-.3.39-.47.86-.5 1.38V15.5a1.5 1.5 0 0 1-3 0V14a1 1 0 0 0-1-1H5V4.5C5 3.67 5.67 3 6.5 3Zm10 0c.83 0 1.5.67 1.5 1.5V6h-3V4.5c0-.83.67-1.5 1.5-1.5ZM2 14h8v1.5c0 .56.19 1.08.5 1.5H3.37C2.6 17 2 16.42 2 15.69V14Z\"]);\nexport const Script24Filled = /*#__PURE__*/createFluentIcon('Script24Filled', \"24\", [\"M20 2.04V2H7.75A3.25 3.25 0 0 0 4.5 5.25V15.5h7.75c.69 0 1.25.56 1.25 1.25v3c0 1.27 1.1 2.25 2.53 2.25 1.29 0 2.3-.78 2.5-1.88V4.6c0-1.1.6-2.05 1.47-2.57ZM1 17.9c0-.5.4-.9.9-.9H12v2.85c.02.8.3 1.55.75 2.15H4c-1.62 0-3-1.24-3-2.93V17.9ZM23.25 4.37v2.67c0 .94-.77 1.71-1.71 1.71H20V4.37a1.62 1.62 0 1 1 3.25 0Z\"]);\nexport const Script24Regular = /*#__PURE__*/createFluentIcon('Script24Regular', \"24\", [\"M19.8 2H7.75A3.25 3.25 0 0 0 4.5 5.25V15.5H2.75c-.97 0-1.75.78-1.75 1.75v1.82A2.94 2.94 0 0 0 4 22h11.25a3.22 3.22 0 0 0 3.28-3.11V8.5h3.27c.66 0 1.2-.54 1.2-1.2V4.98a2.98 2.98 0 0 0-3.2-2.97ZM7.75 3.5h9.68c-.25.44-.4.94-.4 1.48v13.87c0 .88-.76 1.65-1.78 1.65-1.01 0-1.77-.77-1.77-1.65v-2.1c0-.69-.56-1.25-1.25-1.25H6V5.25c0-.97.78-1.75 1.75-1.75Zm-5 13.5h9.23v1.85c0 .61.17 1.17.48 1.65H4c-.86 0-1.5-.63-1.5-1.43v-1.82c0-.14.11-.25.25-.25ZM21.5 4.98V7h-2.97V4.98a1.48 1.48 0 1 1 2.97 0Z\"]);\nexport const Script32Filled = /*#__PURE__*/createFluentIcon('Script32Filled', \"32\", [\"M26 2a4.21 4.21 0 0 1 1 .14 3.97 3.97 0 0 0-2.96 3.46l-.04.29a.4.4 0 0 0 0 .03V27a3 3 0 0 1-6 0v-3a2 2 0 0 0-2-2H6V7a5 5 0 0 1 5-5h15ZM16 24v3c0 1.13.4 2.16 1.03 3H6a4 4 0 0 1-4-4v-1a1 1 0 0 1 1-1h13ZM28 4c-.36 0-.7.1-1 .28-.6.34-1 .98-1 1.72v4h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"]);\nexport const Script32Regular = /*#__PURE__*/createFluentIcon('Script32Regular', \"32\", [\"M30 8a2 2 0 0 1-2 2h-4v16.13a4 4 0 0 1-4.22 3.86V30H6a4 4 0 0 1-4-4v-2c0-1.1.9-2 2-2h2V7a5 5 0 0 1 5-5h15a4 4 0 0 1 4 4v2Zm-8 18V6c0-.73.2-1.41.54-2H11a3 3 0 0 0-3 3v15h8a2 2 0 0 1 2 2v2a2 2 0 1 0 4 0Zm2-20v2h4V6a2 2 0 1 0-4 0ZM4 24v2c0 1.1.9 2 2 2h10.54a3.98 3.98 0 0 1-.54-2v-2H4Z\"]);\nexport const Search12Filled = /*#__PURE__*/createFluentIcon('Search12Filled', \"12\", [\"M5 1a4 4 0 1 0 2.25 7.3l2.47 2.48a.75.75 0 1 0 1.06-1.06L8.31 7.25A4 4 0 0 0 5 1ZM2.5 5a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Z\"]);\nexport const Search12Regular = /*#__PURE__*/createFluentIcon('Search12Regular', \"12\", [\"M5 1a4 4 0 1 0 2.45 7.16l2.7 2.7a.5.5 0 1 0 .7-.71l-2.69-2.7A4 4 0 0 0 5 1ZM2 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"]);\nexport const Search16Filled = /*#__PURE__*/createFluentIcon('Search16Filled', \"16\", [\"M9.1 10.17a4.5 4.5 0 1 1 1.06-1.06l3.62 3.61a.75.75 0 1 1-1.06 1.06l-3.61-3.61Zm.4-3.67a3 3 0 1 0-6 0 3 3 0 0 0 6 0Z\"]);\nexport const Search16Regular = /*#__PURE__*/createFluentIcon('Search16Regular', \"16\", [\"M9.3 10.02a4.5 4.5 0 1 1 .7-.7l3.85 3.83a.5.5 0 0 1-.7.7L9.3 10.02ZM10 6.5a3.5 3.5 0 1 0-7 0 3.5 3.5 0 0 0 7 0Z\"]);\nexport const Search20Filled = /*#__PURE__*/createFluentIcon('Search20Filled', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15A5.5 5.5 0 1 1 8.5 3Zm0 1.5a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z\"]);\nexport const Search20Regular = /*#__PURE__*/createFluentIcon('Search20Regular', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12A5.5 5.5 0 1 1 8.5 3Zm0 1a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Z\"]);\nexport const Search24Filled = /*#__PURE__*/createFluentIcon('Search24Filled', \"24\", [\"M10 2.5a7.5 7.5 0 0 1 5.96 12.05l4.75 4.74a1 1 0 0 1-1.32 1.5l-.1-.08-4.74-4.75A7.5 7.5 0 1 1 10 2.5Zm0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z\"]);\nexport const Search24Regular = /*#__PURE__*/createFluentIcon('Search24Regular', \"24\", [\"M10 2.75a7.25 7.25 0 0 1 5.63 11.82l4.9 4.9a.75.75 0 0 1-.98 1.13l-.08-.07-4.9-4.9A7.25 7.25 0 1 1 10 2.75Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5Z\"]);\nexport const Search28Filled = /*#__PURE__*/createFluentIcon('Search28Filled', \"28\", [\"M11.5 2.5a9 9 0 1 0 5.62 16.03l6.67 6.68a1 1 0 0 0 1.42-1.42l-6.68-6.67A9 9 0 0 0 11.5 2.5Zm-7 9a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const Search28Regular = /*#__PURE__*/createFluentIcon('Search28Regular', \"28\", [\"M11.5 2.75a8.75 8.75 0 0 1 6.7 14.38l6.83 6.84a.75.75 0 0 1-.98 1.13l-.08-.07-6.84-6.84A8.75 8.75 0 1 1 11.5 2.75Zm0 1.5a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5Z\"]);\nexport const Search32Filled = /*#__PURE__*/createFluentIcon('Search32Filled', \"32\", [\"M13.5 3a10.5 10.5 0 1 0 6.49 18.76l6.88 6.87a1.25 1.25 0 1 0 1.77-1.76l-6.88-6.88A10.5 10.5 0 0 0 13.5 3Zm-8 10.5a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z\"]);\nexport const Search32Regular = /*#__PURE__*/createFluentIcon('Search32Regular', \"32\", [\"M13.5 3a10.5 10.5 0 1 0 6.68 18.6l7.11 7.1a1 1 0 0 0 1.42-1.4l-7.11-7.12A10.5 10.5 0 0 0 13.5 3ZM5 13.5a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const Search48Filled = /*#__PURE__*/createFluentIcon('Search48Filled', \"48\", [\"M20.5 6a14.5 14.5 0 1 0 9.14 25.76l9.8 9.8a1.5 1.5 0 1 0 2.12-2.12l-9.8-9.8A14.5 14.5 0 0 0 20.5 6ZM9 20.5a11.5 11.5 0 1 1 23 0 11.5 11.5 0 0 1-23 0Z\"]);\nexport const Search48Regular = /*#__PURE__*/createFluentIcon('Search48Regular', \"48\", [\"M20 6a14 14 0 1 0 8.98 24.74l10.89 10.9a1.25 1.25 0 0 0 1.76-1.77l-10.89-10.9A14 14 0 0 0 20 6ZM8.5 20a11.5 11.5 0 1 1 23 0 11.5 11.5 0 0 1-23 0Z\"]);\nexport const SearchInfo20Filled = /*#__PURE__*/createFluentIcon('SearchInfo20Filled', \"20\", [\"M14 8.5a5.5 5.5 0 1 0-1.98 4.23l4.13 4.12.07.06a.5.5 0 0 0 .63-.76l-4.12-4.13A5.48 5.48 0 0 0 14 8.5ZM8.5 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1ZM9 8.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 1 0Z\"]);\nexport const SearchInfo20Regular = /*#__PURE__*/createFluentIcon('SearchInfo20Regular', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12A5.5 5.5 0 1 1 8.5 3Zm0 1a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm0 4c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5ZM9 6.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z\"]);\nexport const SearchInfo24Filled = /*#__PURE__*/createFluentIcon('SearchInfo24Filled', \"24\", [\"M17.25 10a7.25 7.25 0 1 0-2.68 5.63l4.9 4.9.08.07a.75.75 0 0 0 .98-1.13l-4.9-4.9A7.22 7.22 0 0 0 17.25 10ZM11 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 2c.41 0 .75.34.75.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-.41.34-.75.75-.75Z\"]);\nexport const SearchInfo24Regular = /*#__PURE__*/createFluentIcon('SearchInfo24Regular', \"24\", [\"M10 9c.41 0 .75.34.75.75v3.5a.75.75 0 0 1-1.5 0v-3.5c0-.41.34-.75.75-.75Zm0-1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-5.25a7.25 7.25 0 0 1 5.63 11.82l4.9 4.9a.75.75 0 0 1-.98 1.13l-.08-.07-4.9-4.9A7.25 7.25 0 1 1 10 2.75Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5Z\"]);\nexport const SearchSettings20Filled = /*#__PURE__*/createFluentIcon('SearchSettings20Filled', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15c-.28.22-.6.41-.92.57-.1-.5-.27-.99-.5-1.43a4 4 0 1 0-5.86-2.94c-.5.1-.99.25-1.44.47A5.5 5.5 0 0 1 8.5 3Zm-5.43 8.44a2 2 0 0 1-1.44 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM5.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SearchSettings20Regular = /*#__PURE__*/createFluentIcon('SearchSettings20Regular', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12a5.5 5.5 0 0 1-1.12.72 5.45 5.45 0 0 0-.29-.98A4.5 4.5 0 1 0 4.05 9.2c-.33.1-.65.21-.95.36A5.5 5.5 0 0 1 8.5 3Zm-5.43 8.44a2 2 0 0 1-1.44 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 3 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 8 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55ZM5.5 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SearchShield20Filled = /*#__PURE__*/createFluentIcon('SearchShield20Filled', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.38 8.82l4.15 4.15a.75.75 0 0 1-.98 1.13l-.08-.07-4.15-4.15c-.54.41-1.15.72-1.82.91V12.21a4 4 0 1 0-5.48-4.12c-.2.07-.37.18-.52.34-.32.33-.63.58-.96.78A5.5 5.5 0 0 1 8.5 3ZM7 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 3 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0C7.69 18.09 9 16.27 9 13.58V11a.4.4 0 0 0-.4-.33 4.23 4.23 0 0 1-1.6-.32Z\"]);\nexport const SearchShield20Regular = /*#__PURE__*/createFluentIcon('SearchShield20Regular', \"20\", [\"M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12c-.58.48-1.27.85-2.02 1.06v-1.05a4.5 4.5 0 1 0-6-4.31c-.32.33-.63.58-.96.78A5.5 5.5 0 0 1 8.5 3ZM7 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 3 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0C7.69 18.09 9 16.27 9 13.58V11a.4.4 0 0 0-.4-.33 4.23 4.23 0 0 1-1.6-.32Z\"]);\nexport const SearchSquare20Filled = /*#__PURE__*/createFluentIcon('SearchSquare20Filled', \"20\", [\"M9 11.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm6 6.5c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L11.8 11.1A3.5 3.5 0 1 0 9 12.5Z\"]);\nexport const SearchSquare20Regular = /*#__PURE__*/createFluentIcon('SearchSquare20Regular', \"20\", [\"M9 12.5c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L11.8 11.1A3.5 3.5 0 1 0 9 12.5Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const SearchSquare24Filled = /*#__PURE__*/createFluentIcon('SearchSquare24Filled', \"24\", [\"M11 14a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25Zm8 9.25c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 11 15.5Z\"]);\nexport const SearchSquare24Regular = /*#__PURE__*/createFluentIcon('SearchSquare24Regular', \"24\", [\"M11 15.5c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 11 15.5Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z\"]);\nexport const SearchVisual16Filled = /*#__PURE__*/createFluentIcon('SearchVisual16Filled', \"16\", [\"M2 4.75A2.75 2.75 0 0 1 4.75 2h.5a.75.75 0 0 1 0 1.5h-.5c-.69 0-1.25.56-1.25 1.25v.5a.75.75 0 0 1-1.5 0v-.5Zm12 6.5A2.75 2.75 0 0 1 11.25 14h-.5a.75.75 0 0 1 0-1.5h.5c.69 0 1.25-.56 1.25-1.25v-.5a.75.75 0 0 1 1.5 0v.5Zm0-6.5A2.75 2.75 0 0 0 11.25 2h-.5a.75.75 0 0 0 0 1.5h.5c.69 0 1.25.56 1.25 1.25v.5a.75.75 0 0 0 1.5 0v-.5ZM4.75 14A2.75 2.75 0 0 1 2 11.25v-.5a.75.75 0 0 1 1.5 0v.5c0 .69.56 1.25 1.25 1.25h.5a.75.75 0 0 1 0 1.5h-.5ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM5.25 6a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const SearchVisual16Regular = /*#__PURE__*/createFluentIcon('SearchVisual16Regular', \"16\", [\"M11.5 2A2.5 2.5 0 0 1 14 4.5v1a.5.5 0 0 1-1 0v-1c0-.83-.67-1.5-1.5-1.5h-1a.5.5 0 0 1 0-1h1Zm-7 0A2.5 2.5 0 0 0 2 4.5v1a.5.5 0 0 0 1 0v-1C3 3.67 3.67 3 4.5 3h1a.5.5 0 0 0 0-1h-1Zm7 12a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-1a.5.5 0 0 0 0 1h1ZM2 11.5A2.5 2.5 0 0 0 4.5 14h1a.5.5 0 0 0 0-1h-1A1.5 1.5 0 0 1 3 11.5v-1a.5.5 0 0 0-1 0v1ZM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM5 5.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const SearchVisual20Filled = /*#__PURE__*/createFluentIcon('SearchVisual20Filled', \"20\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h1a.75.75 0 0 1 0 1.5h-1c-.97 0-1.75.78-1.75 1.75v1a.75.75 0 0 1-1.5 0v-1Zm14 7.5c0 1.8-1.46 3.25-3.25 3.25h-1a.75.75 0 0 1 0-1.5h1c.97 0 1.75-.78 1.75-1.75v-1a.75.75 0 0 1 1.5 0v1Zm0-7.5C17 4.45 15.54 3 13.75 3h-1a.75.75 0 0 0 0 1.5h1c.97 0 1.75.78 1.75 1.75v1a.75.75 0 0 0 1.5 0v-1ZM6.25 17A3.25 3.25 0 0 1 3 13.75v-1a.75.75 0 0 1 1.5 0v1c0 .97.78 1.75 1.75 1.75h1a.75.75 0 0 1 0 1.5h-1ZM10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM7 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const SearchVisual20Regular = /*#__PURE__*/createFluentIcon('SearchVisual20Regular', \"20\", [\"M14 3a3 3 0 0 1 3 3v1.5a.5.5 0 0 1-1 0V6a2 2 0 0 0-2-2h-1.5a.5.5 0 0 1 0-1H14ZM6 3a3 3 0 0 0-3 3v1.5a.5.5 0 0 0 1 0V6c0-1.1.9-2 2-2h1.5a.5.5 0 0 0 0-1H6Zm8 14a3 3 0 0 0 3-3v-1.5a.5.5 0 0 0-1 0V14a2 2 0 0 1-2 2h-1.5a.5.5 0 0 0 0 1H14ZM3 14a3 3 0 0 0 3 3h1.5a.5.5 0 0 0 0-1H6a2 2 0 0 1-2-2v-1.5a.5.5 0 0 0-1 0V14Zm7-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-1a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM6.5 7.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const SearchVisual24Filled = /*#__PURE__*/createFluentIcon('SearchVisual24Filled', \"24\", [\"M3 6.5A3.5 3.5 0 0 1 6.5 3H9a1 1 0 0 1 0 2H6.5C5.67 5 5 5.67 5 6.5V9a1 1 0 1 1-2 0V6.5Zm18 11a3.5 3.5 0 0 1-3.5 3.5H15a1 1 0 1 1 0-2h2.5c.83 0 1.5-.67 1.5-1.5V15a1 1 0 1 1 2 0v2.5Zm0-11A3.5 3.5 0 0 0 17.5 3H15a1 1 0 1 0 0 2h2.5c.83 0 1.5.67 1.5 1.5V9a1 1 0 1 0 2 0V6.5ZM6.5 21A3.5 3.5 0 0 1 3 17.5V15a1 1 0 1 1 2 0v2.5c0 .83.67 1.5 1.5 1.5H9a1 1 0 1 1 0 2H6.5Zm5.5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM7.5 8.75a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const SearchVisual24Regular = /*#__PURE__*/createFluentIcon('SearchVisual24Regular', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v3a.75.75 0 0 1-1.5 0v-3c0-.97-.78-1.75-1.75-1.75h-3a.75.75 0 0 1 0-1.5h3ZM6.25 3A3.25 3.25 0 0 0 3 6.25v3a.75.75 0 0 0 1.5 0v-3c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3Zm11.5 18c1.8 0 3.25-1.46 3.25-3.25v-3a.75.75 0 0 0-1.5 0v3c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3ZM3 17.75C3 19.55 4.46 21 6.25 21h3a.75.75 0 0 0 0-1.5h-3c-.97 0-1.75-.78-1.75-1.75v-3a.75.75 0 0 0-1.5 0v3ZM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Zm-4.5-5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const SelectAllOff20Filled = /*#__PURE__*/createFluentIcon('SelectAllOff20Filled', \"20\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm.27 15c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOff20Regular = /*#__PURE__*/createFluentIcon('SelectAllOff20Regular', \"20\", [\"M4 2a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4ZM3 4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm1.27 13c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOff24Filled = /*#__PURE__*/createFluentIcon('SelectAllOff24Filled', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Z\"]);\nexport const SelectAllOff24Regular = /*#__PURE__*/createFluentIcon('SelectAllOff24Regular', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Zm0 1.5h-13a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h13c.41 0 .75-.34.75-.75v-13a.75.75 0 0 0-.75-.75Z\"]);\nexport const SelectAllOn20Filled = /*#__PURE__*/createFluentIcon('SelectAllOn20Filled', \"20\", [\"M2 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm10.33 2.62a.5.5 0 0 0-.7.05l-3.15 3.6-1.63-1.62a.5.5 0 1 0-.7.7l2 2a.5.5 0 0 0 .73-.02l3.5-4a.5.5 0 0 0-.05-.7ZM4.27 17c.34.6.99 1 1.73 1h8a4 4 0 0 0 4-4V6a2 2 0 0 0-1-1.73V14a3 3 0 0 1-3 3H4.27Z\"]);\nexport const SelectAllOn20Regular = /*#__PURE__*/createFluentIcon('SelectAllOn20Regular', \"20\", [\"M2 4c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4Zm2 15a2 2 0 0 1-1.73-1H14a3 3 0 0 0 3-3V4.27c.6.34 1 .99 1 1.73v8a4 4 0 0 1-4 4H6Zm6.38-10.67a.5.5 0 0 0-.76-.66l-3.14 3.6-1.63-1.62a.5.5 0 1 0-.7.7l2 2a.5.5 0 0 0 .73-.02l3.5-4Z\"]);\nexport const SelectAllOn24Filled = /*#__PURE__*/createFluentIcon('SelectAllOn24Filled', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Zm-3.78 5.47-3.89 3.89-.98-1.31a.75.75 0 1 0-1.2.9l1.5 2c.27.37.8.4 1.13.08l4.5-4.5a.75.75 0 0 0-1.06-1.06Z\"]);\nexport const SelectAllOn24Regular = /*#__PURE__*/createFluentIcon('SelectAllOn24Regular', \"24\", [\"M20.5 5.63c.87.3 1.5 1.14 1.5 2.12v10C22 20.1 20.1 22 17.75 22h-10c-.98 0-1.82-.63-2.12-1.5h12.12a2.75 2.75 0 0 0 2.75-2.75V5.63ZM17.25 2c1.24 0 2.25 1 2.25 2.25v13c0 1.24-1.01 2.25-2.25 2.25h-13C3.01 19.5 2 18.49 2 17.25v-13C2 3.01 3 2 4.25 2h13Zm0 1.5h-13a.75.75 0 0 0-.75.75v13c0 .41.34.75.75.75h13c.41 0 .75-.34.75-.75v-13a.75.75 0 0 0-.75-.75Zm-7.67 7.86 3.89-3.89a.75.75 0 0 1 1.13.98l-.07.08-4.5 4.5c-.3.3-.77.29-1.06 0l-.07-.08-1.5-2a.75.75 0 0 1 1.13-.98l.07.08.98 1.3 3.89-3.88-3.89 3.89Z\"]);\nexport const SelectObject20Filled = /*#__PURE__*/createFluentIcon('SelectObject20Filled', \"20\", [\"M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-11 11a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM7 4.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 7 4.75Zm0 10.5c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm-3-7.5a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-1.5 0v-4.5Zm10.5 0a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-1.5 0v-4.5Z\"]);\nexport const SelectObject20Regular = /*#__PURE__*/createFluentIcon('SelectObject20Regular', \"20\", [\"M6 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-11 11a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm11 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM7 4.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 11c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm-3-8a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm11 0a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Z\"]);\nexport const SelectObject24Filled = /*#__PURE__*/createFluentIcon('SelectObject24Filled', \"24\", [\"M7 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1 0a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1ZM5 8a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1Zm14 0a1 1 0 0 0-1 1v6a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1ZM9 20a1 1 0 1 1 0-2h6a1 1 0 1 1 0 2H9Zm-4 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM21 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-2 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const SelectObject24Regular = /*#__PURE__*/createFluentIcon('SelectObject24Regular', \"24\", [\"M7 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1-.25c0 .41.34.75.75.75h6.5a.75.75 0 0 0 0-1.5h-6.5a.75.75 0 0 0-.75.75ZM4.75 8a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0v-6.5A.75.75 0 0 0 4.75 8Zm14.5 0a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0v-6.5a.75.75 0 0 0-.75-.75ZM8.75 20a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5h-6.5ZM5 21a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM21 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-2 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"]);\nexport const SelectObjectSkew20Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkew20Filled', \"20\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-4 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0ZM3.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM6 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm8.11.75H9.9a2.5 2.5 0 0 0 0-1.5h4.22a2.5 2.5 0 0 0 0 1.5ZM3.61 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm6.5 3.25H5.9a2.5 2.5 0 0 0 0-1.5h4.22a2.5 2.5 0 0 0 0 1.5Zm2.5-3.25 2.37-6.51c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Z\"]);\nexport const SelectObjectSkew20Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkew20Regular', \"20\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02A1.5 1.5 0 0 0 16.48 6Zm-5.4 10a1.5 1.5 0 1 0 1.42-2h-.01c-.65 0-1.2.42-1.41 1l-.01.02a1.5 1.5 0 0 0 0 .98ZM3.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM7.49 6a1.5 1.5 0 1 0 .02-3 1.5 1.5 0 0 0-.02 3Zm-3.62 7.03 2.32-6.4c.28.17.6.3.94.34l-2.32 6.4c-.28-.17-.6-.3-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm-8.1 11h4.1a2.51 2.51 0 0 1 0-1h-4.1a2.51 2.51 0 0 1 0 1Zm6.92-2.97 2.32-6.4c.28.17.6.3.94.34l-2.32 6.4c-.28-.17-.6-.3-.94-.34Z\"]);\nexport const SelectObjectSkew24Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkew24Filled', \"24\", [\"M18.59 6.41A2 2 0 0 0 22 5a2 2 0 1 0-3.41 1.41ZM14.27 20a2 2 0 1 0 3.46-2 2 2 0 0 0-3.46 2ZM4 21a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM6.59 6.41A2 2 0 0 0 10 5a2 2 0 0 0-2-2 2 2 0 0 0-1.41 3.41Zm-2.77 9.6 2.44-8.56a2.99 2.99 0 0 0 1.92.54l-2.44 8.56a2.99 2.99 0 0 0-1.92-.54ZM17.17 6h-6.34a3 3 0 0 0 0-2h6.34a3 3 0 0 0 0 2Zm-4 14a3 3 0 0 1 0-2H6.83a3 3 0 0 1 0 2h6.34Zm2.65-4 2.44-8.55a2.99 2.99 0 0 0 1.92.54l-2.44 8.56a2.99 2.99 0 0 0-1.92-.54Z\"]);\nexport const SelectObjectSkew24Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkew24Regular', \"24\", [\"M18.88 6.66a2 2 0 0 0 1.33.33 2 2 0 1 0-1.33-.33ZM14 19a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM4 21a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM6.88 6.66a2 2 0 0 0 3-.97 2 2 0 1 0-3 .97Zm-.4.93L4.08 16c.52.01 1.01.16 1.44.41L7.92 8a2.98 2.98 0 0 1-1.44-.41ZM17.1 5.75h-6.18a3 3 0 0 0 0-1.5h6.18a3 3 0 0 0 0 1.5Zm-4 14a3 3 0 0 1 0-1.5H6.91a3 3 0 0 1 0 1.5h6.18ZM16.08 16l2.4-8.41c.43.25.92.4 1.44.4l-2.4 8.42c-.43-.25-.92-.4-1.44-.4Z\"]);\nexport const SelectObjectSkewDismiss20Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismiss20Filled', \"20\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-13 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm4-11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm3.89.75h4.22a2.5 2.5 0 0 1 0-1.5H9.9a2.5 2.5 0 0 1 0 1.5ZM3.6 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm2.28 3.25h3.4a5.48 5.48 0 0 1-.28-1.5H5.89a2.5 2.5 0 0 1 0 1.5ZM16.39 7l-.77 2.11a5.52 5.52 0 0 0-1.56-.1l.92-2.52c.4.3.88.48 1.41.5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const SelectObjectSkewDismiss20Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismiss20Regular', \"20\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02a1.5 1.5 0 0 0 .47 1.64c.26.21.58.34.94.34ZM2 15.5a1.5 1.5 0 1 0 2.92-.48V15a1.5 1.5 0 0 0-1.4-1H3.5c-.83 0-1.5.67-1.5 1.5ZM7.49 6h.01c.65 0 1.2-.42 1.41-1l.01-.02a1.5 1.5 0 1 0-2.37.68c.26.21.58.34.94.34Zm-1.3.63-2.32 6.4c.34.05.66.17.94.34l2.32-6.4a2.48 2.48 0 0 1-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm.45 4c.3 0 .59.02.87.07l.76-2.1a2.48 2.48 0 0 1-.94-.34L14.33 9h.17Zm-5.48 6c.03.34.1.68.19 1H5.95a2.51 2.51 0 0 0 0-1h3.07Zm9.98-.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const SelectObjectSkewDismiss24Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismiss24Filled', \"24\", [\"M18.59 6.41A2 2 0 0 0 22 5a2 2 0 1 0-3.44 1.4l.03.01ZM2 19a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM6.59 6.41A2 2 0 0 0 10 5a2 2 0 0 0-2-2 2 2 0 0 0-1.44 3.4l.03.01Zm-.33 1.04L3.82 16a3.05 3.05 0 0 1 1.92.54L8.18 8a3.05 3.05 0 0 1-1.92-.54ZM17.17 6h-6.34a3 3 0 0 0 0-2h6.34a3 3 0 0 0 0 2ZM11.5 20a6.46 6.46 0 0 1-.48-2h-4.2a3 3 0 0 1 0 2h4.68Zm8.68-12-.92 3.24a6.5 6.5 0 0 0-2.02-.24l1.02-3.55a2.99 2.99 0 0 0 1.92.54ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const SelectObjectSkewDismiss24Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkewDismiss24Regular', \"24\", [\"M18.88 6.66a2 2 0 0 0 1.33.33 2 2 0 1 0-1.33-.33ZM2 19a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM6.88 6.66a2 2 0 0 0 3-.97 2 2 0 1 0-3 .97ZM4.08 16l2.4-8.41c.43.25.92.4 1.44.4l-2.4 8.42c-.43-.25-.92-.4-1.44-.4ZM17.09 5.75h-6.18a3 3 0 0 0 0-1.5h6.18a3 3 0 0 0 0 1.5Zm-5.69 14c-.18-.48-.3-.98-.36-1.5H6.91a3 3 0 0 1 0 1.5h4.49ZM19.92 8l-.9 3.18A6.52 6.52 0 0 0 17.5 11l.97-3.41c.43.25.92.4 1.44.4ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const SelectObjectSkewEdit20Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkewEdit20Filled', \"20\", [\"M15 4.5a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm-13 11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm4-11a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Zm3.89.75h4.22a2.5 2.5 0 0 1 0-1.5H9.9a2.5 2.5 0 0 1 0 1.5ZM3.6 13 5.98 6.5c.4.3.88.48 1.41.5l-2.37 6.52c-.4-.3-.88-.48-1.41-.5Zm2.28 3.25H9.4l.02-.1c.12-.46.34-.9.65-1.26 0-.05.02-.1.03-.14H5.9a2.5 2.5 0 0 1 0 1.5ZM16.39 7l-.92 2.53-.37.31-2.1 2.1 1.98-5.45c.4.3.88.48 1.41.5Zm-5.41 8.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SelectObjectSkewEdit20Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkewEdit20Regular', \"20\", [\"M16.49 6h.01a1.5 1.5 0 1 0-1.41-2l-.01.02a1.5 1.5 0 0 0 .47 1.64c.26.21.58.34.94.34ZM2 15.5a1.5 1.5 0 1 0 2.92-.48V15a1.5 1.5 0 0 0-1.4-1H3.5c-.83 0-1.5.67-1.5 1.5ZM7.49 6h.01c.65 0 1.2-.42 1.41-1l.01-.02a1.5 1.5 0 1 0-2.37.68c.26.21.58.34.94.34Zm-1.3.63-2.32 6.4c.34.05.66.17.94.34l2.32-6.4a2.48 2.48 0 0 1-.94-.34ZM14.05 5h-4.1a2.51 2.51 0 0 0 0-1h4.1a2.51 2.51 0 0 0 0 1Zm-.64 6.53 1.67-1.67 1.05-2.89a2.48 2.48 0 0 1-.94-.34l-1.78 4.9ZM5.95 16h3.52c.11-.36.29-.7.52-1H5.95a2.51 2.51 0 0 1 0 1Zm5.03-.62 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SelectObjectSkewEdit24Filled = /*#__PURE__*/createFluentIcon('SelectObjectSkewEdit24Filled', \"24\", [\"M18.59 6.41A2 2 0 0 0 22 5a2 2 0 1 0-3.44 1.4l.03.01ZM2 19a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM6.59 6.41A2 2 0 0 0 10 5a2 2 0 0 0-2-2 2 2 0 0 0-1.44 3.4l.03.01Zm-.33 1.04L3.82 16a3.05 3.05 0 0 1 1.92.54L8.18 8a3.05 3.05 0 0 1-1.92-.54ZM17.17 6h-6.34a3 3 0 0 0 0-2h6.34a3 3 0 0 0 0 2Zm-5.65 13.58c.15-.6.44-1.13.84-1.58H6.83a3 3 0 0 1 0 2h4.59l.1-.42Zm8.66-11.59-.96 3.37c-.3.15-.58.35-.83.6l-1.99 2 1.86-6.51a2.99 2.99 0 0 0 1.92.54Zm-1.08 4.68-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const SelectObjectSkewEdit24Regular = /*#__PURE__*/createFluentIcon('SelectObjectSkewEdit24Regular', \"24\", [\"M18.88 6.66a2 2 0 0 0 1.33.33 2 2 0 1 0-1.33-.33ZM2 19a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM6.88 6.66a2 2 0 0 0 3-.97 2 2 0 1 0-3 .97ZM4.08 16l2.4-8.41c.43.25.92.4 1.44.4l-2.4 8.42c-.43-.25-.92-.4-1.44-.4ZM17.09 5.75h-6.18a3 3 0 0 0 0-1.5h6.18a3 3 0 0 0 0 1.5Zm-5.57 13.83c.12-.49.34-.94.64-1.33H6.9a3 3 0 0 1 0 1.5h4.57l.04-.17ZM19.92 8l-1 3.54a3.3 3.3 0 0 0-.53.42l-1.62 1.63 1.71-6c.43.25.92.4 1.44.4Zm-.82 4.67-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const Send16Filled = /*#__PURE__*/createFluentIcon('Send16Filled', \"16\", [\"M1.72 1.05a.5.5 0 0 0-.71.55l1.4 4.85c.06.18.21.32.4.35l5.69.95c.27.06.27.44 0 .5l-5.69.95a.5.5 0 0 0-.4.35l-1.4 4.85a.5.5 0 0 0 .71.55l13-6.5a.5.5 0 0 0 0-.9l-13-6.5Z\"], {\n flipInRtl: true\n});\nexport const Send16Regular = /*#__PURE__*/createFluentIcon('Send16Regular', \"16\", [\"M1.18 1.12a.5.5 0 0 1 .54-.07l13 6.5a.5.5 0 0 1 0 .9l-13 6.5a.5.5 0 0 1-.7-.6L2.98 8 1.02 1.65a.5.5 0 0 1 .16-.53ZM3.87 8.5l-1.55 5.03L13.38 8 2.32 2.47 3.87 7.5H9.5a.5.5 0 0 1 0 1H3.87Z\"], {\n flipInRtl: true\n});\nexport const Send20Filled = /*#__PURE__*/createFluentIcon('Send20Filled', \"20\", [\"M2.72 2.05a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l15-7.5a.5.5 0 0 0 0-.9l-15-7.5Z\"], {\n flipInRtl: true\n});\nexport const Send20Regular = /*#__PURE__*/createFluentIcon('Send20Regular', \"20\", [\"M2.18 2.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 0 1 0 .9l-15 7.5a.5.5 0 0 1-.7-.58L3.98 10 2.02 2.63a.5.5 0 0 1 .16-.52Zm2.7 8.39-1.61 6.06L16.38 10 3.27 3.44 4.88 9.5h6.62a.5.5 0 1 1 0 1H4.88Z\"], {\n flipInRtl: true\n});\nexport const Send24Filled = /*#__PURE__*/createFluentIcon('Send24Filled', \"24\", [\"m12.81 12.2-7.53 1.25a.5.5 0 0 0-.38.32l-2.6 6.96a.75.75 0 0 0 1.03.94l18-9a.75.75 0 0 0 0-1.34l-18-9a.75.75 0 0 0-1.03.94l2.6 6.96a.5.5 0 0 0 .38.32l7.53 1.25a.2.2 0 0 1 0 .4Z\"], {\n flipInRtl: true\n});\nexport const Send24Regular = /*#__PURE__*/createFluentIcon('Send24Regular', \"24\", [\"M5.7 12 2.3 3.27a.75.75 0 0 1 .94-.98l.1.04 18 9c.51.26.54.97.1 1.28l-.1.06-18 9a.75.75 0 0 1-1.07-.85l.03-.1L5.7 12 2.3 3.27 5.7 12ZM4.4 4.54l2.61 6.7 6.63.01c.38 0 .7.28.74.65v.1c0 .38-.27.7-.64.74l-.1.01H7l-2.6 6.7L19.31 12 4.4 4.54Z\"], {\n flipInRtl: true\n});\nexport const Send28Filled = /*#__PURE__*/createFluentIcon('Send28Filled', \"28\", [\"M3.79 2.62a1.25 1.25 0 0 0-1.75 1.46l2.02 7.53a1 1 0 0 0 .82.73l9.89 1.41c.28.04.28.46 0 .5l-9.88 1.4a1 1 0 0 0-.83.74l-2.02 7.54a1.25 1.25 0 0 0 1.75 1.45l21.5-10.25c.95-.45.95-1.8 0-2.26L3.79 2.62Z\"], {\n flipInRtl: true\n});\nexport const Send28Regular = /*#__PURE__*/createFluentIcon('Send28Regular', \"28\", [\"M2.04 4.08A1.25 1.25 0 0 1 3.8 2.62l21.5 10.25c.95.46.95 1.8 0 2.26L3.79 25.38a1.25 1.25 0 0 1-1.75-1.45L4.7 14 2.04 4.08Zm4.01 10.67L3.63 23.8 24.17 14 3.63 4.21l2.42 9.04h11.2a.75.75 0 0 1 0 1.5H6.05Z\"], {\n flipInRtl: true\n});\nexport const Send32Filled = /*#__PURE__*/createFluentIcon('Send32Filled', \"32\", [\"M4.18 2.16a1.5 1.5 0 0 0-2.1 1.8l2.85 8.89a1 1 0 0 0 .8.68l11.86 1.98c.56.09.56.89 0 .98L5.72 18.47a1 1 0 0 0-.78.68l-2.86 8.89a1.5 1.5 0 0 0 2.1 1.8l24.99-12.5a1.5 1.5 0 0 0 0-2.68l-25-12.5Z\"], {\n flipInRtl: true\n});\nexport const Send32Regular = /*#__PURE__*/createFluentIcon('Send32Regular', \"32\", [\"M2.08 3.97a1.5 1.5 0 0 1 2.1-1.8l25 12.49a1.5 1.5 0 0 1 0 2.68l-25 12.5a1.5 1.5 0 0 1-2.1-1.8L5.95 16 2.08 3.97ZM7.73 17 4.35 27.52 27.38 16 4.35 4.48 7.73 15H19a1 1 0 1 1 0 2H7.73Z\"], {\n flipInRtl: true\n});\nexport const Send48Filled = /*#__PURE__*/createFluentIcon('Send48Filled', \"48\", [\"M7.26 4.24a2.25 2.25 0 0 0-3.14 2.72l4 12.3A2 2 0 0 0 9.7 20.6l15.86 2.65c.84.13.84 1.34 0 1.47L9.7 27.38a2 2 0 0 0-1.57 1.35L4.12 41.04a2.25 2.25 0 0 0 3.14 2.71l35.5-17.74a2.25 2.25 0 0 0 0-4.02L7.26 4.24Z\"], {\n flipInRtl: true\n});\nexport const Send48Regular = /*#__PURE__*/createFluentIcon('Send48Regular', \"48\", [\"M4.13 6.96a2.25 2.25 0 0 1 3.14-2.7l35.49 17.73a2.25 2.25 0 0 1 0 4.03L7.27 43.75a2.25 2.25 0 0 1-3.14-2.7L9.69 24 4.13 6.96Zm7.78 18.3L6.69 41.24 41.19 24 6.7 6.76l5.22 16h16.84a1.25 1.25 0 0 1 0 2.5H11.91Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker16Filled = /*#__PURE__*/createFluentIcon('SendBeaker16Filled', \"16\", [\"M1.72.55a.5.5 0 0 0-.71.55l1.4 4.85c.06.18.21.32.4.35l5.69.95c.27.06.27.44 0 .5l-5.69.95a.5.5 0 0 0-.4.35l-1.4 4.85a.5.5 0 0 0 .71.55L10 10.3v-1.4A1.5 1.5 0 0 1 10.5 6h2.12L1.72.55ZM14 10.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V8h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H14v2.4ZM9.9 13l-.8 1.54a1 1 0 0 0 .9 1.46H15a1 1 0 0 0 .89-1.46l-.8-1.54H9.9Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker16Regular = /*#__PURE__*/createFluentIcon('SendBeaker16Regular', \"16\", [\"M1.18.62a.5.5 0 0 1 .54-.07L12.62 6h-2.23L2.32 1.97 3.87 7h5.21a1.5 1.5 0 0 0 0 1H3.87l-1.55 5.03L10 9.19v1.12l-8.28 4.14a.5.5 0 0 1-.7-.6L2.98 7.5 1.02 1.15a.5.5 0 0 1 .16-.53ZM14 10.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V8h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H14v2.4ZM9.9 13l-.8 1.54a1 1 0 0 0 .9 1.46H15a1 1 0 0 0 .89-1.46l-.8-1.54H9.9Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker20Filled = /*#__PURE__*/createFluentIcon('SendBeaker20Filled', \"20\", [\"M2.72 1.55a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l9.74-4.87A1.5 1.5 0 0 1 13.5 10h4.11l.11-.05a.5.5 0 0 0 0-.9l-15-7.5ZM17 14.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V12h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H17v2.4ZM12.9 17l-.8 1.54a1 1 0 0 0 .9 1.46H18a1 1 0 0 0 .89-1.46l-.8-1.54H12.9Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker20Regular = /*#__PURE__*/createFluentIcon('SendBeaker20Regular', \"20\", [\"M2.18 1.61a.5.5 0 0 1 .54-.06L17.5 10h-.01a.5.5 0 0 1-.21-.05l-14.01-7L4.88 9h6.62a.5.5 0 1 1 0 1H4.88l-1.61 6.06L12 11.69c.04.35.2.66.45.89l-9.74 4.87a.5.5 0 0 1-.7-.58L3.98 9.5 2.02 2.13a.5.5 0 0 1 .16-.52Zm.54-.06L17.51 10a.5.5 0 0 0 .21-.95l-15-7.5ZM17 14.4a2 2 0 0 0 .22.92l.35.68h-4.14l.35-.67a2 2 0 0 0 .22-.92V12h-.5a.5.5 0 1 1 0-1h4a.5.5 0 0 1 0 1H17v2.4ZM12.9 17l-.8 1.54a1 1 0 0 0 .9 1.46H18a1 1 0 0 0 .89-1.46l-.8-1.54H12.9Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker24Filled = /*#__PURE__*/createFluentIcon('SendBeaker24Filled', \"24\", [\"m12.81 11.95-7.53 1.26a.5.5 0 0 0-.38.31l-2.6 6.96a.75.75 0 0 0 1.03.94l11.97-5.98a1.75 1.75 0 0 1 .45-3.44h5.5c.15 0 .3.02.44.05a.75.75 0 0 0-.36-.97l-18-9a.75.75 0 0 0-1.03.94l2.6 6.96a.5.5 0 0 0 .38.32l7.53 1.26a.2.2 0 0 1 0 .39Zm2.94 2.55h.75v2.7a2 2 0 0 1-.26.99l-.47.81h5.46l-.47-.81a2 2 0 0 1-.26-1V14.5h.75a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5ZM15.2 20l-1 1.76A1.5 1.5 0 0 0 15.5 24h6a1.5 1.5 0 0 0 1.3-2.24l-1-1.76h-6.6Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker24Regular = /*#__PURE__*/createFluentIcon('SendBeaker24Regular', \"24\", [\"M18 11.09 4.4 4.3 7.01 11h6.63c.38 0 .7.28.74.65v.1c0 .38-.27.7-.64.75H7.01l-2.6 6.71 9.7-4.85c.2.53.64.93 1.19 1.08L3.33 21.42a.75.75 0 0 1-1.06-.84l.03-.1 3.4-8.73-3.4-8.73a.73.73 0 0 1 .1-.73.75.75 0 0 1 .94-.21l18 9c.36.18.5.61.35.97a1.75 1.75 0 0 0-.44-.05h-1.43L18 11.09Zm-2.25 3.41h.75v2.7a2 2 0 0 1-.26.99l-.47.81h5.46l-.47-.81a2 2 0 0 1-.26-1V14.5h.75a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5ZM15.2 20l-1 1.76A1.5 1.5 0 0 0 15.5 24h6a1.5 1.5 0 0 0 1.3-2.24l-1-1.76h-6.6Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker28Filled = /*#__PURE__*/createFluentIcon('SendBeaker28Filled', \"28\", [\"M3.79 1.87a1.25 1.25 0 0 0-1.75 1.46l2.02 7.53a1 1 0 0 0 .82.73L14.77 13c.28.04.28.46 0 .5l-9.88 1.4a1 1 0 0 0-.83.74l-2.02 7.54a1.25 1.25 0 0 0 1.75 1.45L18 17.85v-.35h-.25a1.75 1.75 0 1 1 0-3.5h7.5c.16 0 .31.02.46.06.5-.59.36-1.56-.42-1.94L3.79 1.87Zm13.2 13.88c0-.41.34-.75.76-.75h7.5a.75.75 0 1 1 0 1.5H24v3.8a2 2 0 0 0 .26 1l.69 1.2h-6.9l.69-1.2a2 2 0 0 0 .26-.99V16.5h-1.25a.75.75 0 0 1-.75-.75Zm.2 8.25-1 1.76A1.5 1.5 0 0 0 17.5 28h8a1.5 1.5 0 0 0 1.3-2.24l-1-1.76h-8.6Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker28Regular = /*#__PURE__*/createFluentIcon('SendBeaker28Regular', \"28\", [\"M2.04 3.33A1.25 1.25 0 0 1 3.8 1.87l21.5 10.25c.78.38.92 1.35.42 1.94-.15-.04-.3-.06-.46-.06H22.6l1.57-.75L3.63 3.46l2.42 9.04h11.2a.75.75 0 0 1 0 1.5H6.05l-2.42 9.04 12.83-6.11c.32.35.78.57 1.29.57H18v.35L3.79 24.63a1.25 1.25 0 0 1-1.75-1.45l2.66-9.93-2.66-9.92ZM17 15.75c0-.41.33-.75.75-.75h7.5a.75.75 0 1 1 0 1.5H24v3.8a2 2 0 0 0 .26 1l.69 1.2h-6.9l.69-1.2a2 2 0 0 0 .26-.99V16.5h-1.25a.75.75 0 0 1-.75-.75Zm.2 8.25-1 1.76A1.5 1.5 0 0 0 17.5 28h8a1.5 1.5 0 0 0 1.3-2.24l-1-1.76h-8.6Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker32Filled = /*#__PURE__*/createFluentIcon('SendBeaker32Filled', \"32\", [\"M4.17 1.16a1.5 1.5 0 0 0-2.1 1.8l2.86 8.89a1 1 0 0 0 .79.68l11.87 1.98c.56.09.56.89 0 .98L5.72 17.47a1 1 0 0 0-.79.68l-2.85 8.89a1.5 1.5 0 0 0 2.1 1.8l16.32-8.16v-.23a2.5 2.5 0 0 1 .5-4.95h8c.3 0 .59.05.85.15.33-.7.1-1.6-.68-2l-25-12.49ZM20 18a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-1v4.66a3 3 0 0 0 .44 1.56l.47.78h-7.82l.47-.78a3 3 0 0 0 .44-1.56V19h-1a1 1 0 0 1-1-1Zm.18 9.5-.89 1.46A2 2 0 0 0 21 32h8a2 2 0 0 0 1.7-3.04l-.88-1.46h-9.64Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker32Regular = /*#__PURE__*/createFluentIcon('SendBeaker32Regular', \"32\", [\"M2.08 2.97 5.95 15 2.08 27.04a1.5 1.5 0 0 0 2.1 1.8l16.32-8.16v-.23a2.5 2.5 0 0 1-1.66-1.18l-14.5 7.25L7.73 16H19a1 1 0 1 0 0-2H7.73L4.34 3.48l.15.08.06.03 24 12a1 1 0 0 0 .9-1.79L25 11.58 4.17 1.16a1.5 1.5 0 0 0-2.1 1.8ZM21 17a1 1 0 1 0 0 2h1v4.66a3 3 0 0 1-.44 1.56l-.47.78h7.82l-.47-.78a3 3 0 0 1-.44-1.56V19h1a1 1 0 1 0 0-2h-8Zm-1.7 11.96.88-1.46h9.64l.88 1.46A2 2 0 0 1 29 32h-8a2 2 0 0 1-1.7-3.04Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker48Filled = /*#__PURE__*/createFluentIcon('SendBeaker48Filled', \"48\", [\"M7.26 3.24a2.25 2.25 0 0 0-3.14 2.72l4 12.3A2 2 0 0 0 9.7 19.6l15.86 2.65c.84.13.84 1.34 0 1.47L9.7 26.38a2 2 0 0 0-1.57 1.35L4.12 40.04a2.25 2.25 0 0 0 3.14 2.71L32 30.4v-.9a3.25 3.25 0 0 1 .25-6.49H44c0-.8-.41-1.6-1.24-2.01L7.26 3.24ZM31 26.25c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 0 1 0 2.5H42v6.27a5 5 0 0 0 .77 2.67l.98 1.56h-11.5l.98-1.56a5 5 0 0 0 .77-2.67V27.5h-1.75c-.7 0-1.25-.56-1.25-1.25ZM30.98 40l-1.51 2.4A3 3 0 0 0 32 47h12a3 3 0 0 0 2.53-4.6L45.02 40H30.98Z\"], {\n flipInRtl: true\n});\nexport const SendBeaker48Regular = /*#__PURE__*/createFluentIcon('SendBeaker48Regular', \"48\", [\"M4.13 5.96a2.25 2.25 0 0 1 3.14-2.7l35.49 17.73A2.22 2.22 0 0 1 44 23.01l-.25-.01H41.2L6.69 5.76l5.22 16h16.84a1.25 1.25 0 0 1 0 2.5H11.91L6.69 40.24 30 28.6c.53.5 1.23.83 2 .9v.9L7.27 42.74a2.25 2.25 0 0 1-3.14-2.7L9.69 23 4.13 5.96ZM31 26.25c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 0 1 0 2.5H42v6.27a5 5 0 0 0 .77 2.67l.98 1.56h-11.5l.98-1.56a5 5 0 0 0 .77-2.67V27.5h-1.75c-.7 0-1.25-.56-1.25-1.25ZM30.98 40l-1.51 2.4A3 3 0 0 0 32 47h12a3 3 0 0 0 2.53-4.6L45.02 40H30.98Z\"], {\n flipInRtl: true\n});\nexport const SendClock20Filled = /*#__PURE__*/createFluentIcon('SendClock20Filled', \"20\", [\"M2.72 1.05a.5.5 0 0 0-.7.58l1.5 5.62c.05.19.2.33.4.36l6.85 1.14c.28.05.28.45 0 .5l-6.85 1.14a.5.5 0 0 0-.4.36l-1.5 5.62a.5.5 0 0 0 .7.58l6.33-3.16A5.5 5.5 0 0 1 17.2 9.7l.52-.26a.5.5 0 0 0 0-.9l-15-7.5ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"], {\n flipInRtl: true\n});\nexport const SendClock20Regular = /*#__PURE__*/createFluentIcon('SendClock20Regular', \"20\", [\"M2.18 1.11a.5.5 0 0 1 .54-.06l15 7.5a.5.5 0 1 1-.44.9l-14.01-7L4.88 8.5h6.62a.5.5 0 1 1 0 1H4.88l-1.61 6.06 6.1-3.06c-.15.41-.27.84-.32 1.29l-6.33 3.16a.5.5 0 0 1-.7-.58L3.98 9 2.02 1.63a.5.5 0 0 1 .16-.52ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H16a.5.5 0 0 0 0-1h-1v-1.5a.5.5 0 0 0-.5-.5Z\"], {\n flipInRtl: true\n});\nexport const SendClock24Filled = /*#__PURE__*/createFluentIcon('SendClock24Filled', \"24\", [\"m12.81 12.2-7.53 1.25a.5.5 0 0 0-.38.32l-2.6 6.96a.75.75 0 0 0 1.03.94l7.68-3.84-.01-.33a6.5 6.5 0 0 1 10.6-5.05.75.75 0 0 0-.27-1.12l-18-9a.75.75 0 0 0-1.03.94l2.6 6.96a.5.5 0 0 0 .38.32l7.53 1.25a.2.2 0 0 1 0 .4Zm4.69-.2a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm2 5.5h-2V15a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2.5a.5.5 0 0 0 0-1Z\"], {\n flipInRtl: true\n});\nexport const SendClock24Regular = /*#__PURE__*/createFluentIcon('SendClock24Regular', \"24\", [\"M5.7 12 2.3 3.27a.75.75 0 0 1 .94-.98l.1.04 18 9c.44.22.52.77.26 1.12A6.47 6.47 0 0 0 17.33 11L4.4 4.54l2.61 6.7 6.63.01c.35 0 .64.24.72.56-.47.26-.9.57-1.3.94H7.01l-2.6 6.7 6.74-3.37a6.52 6.52 0 0 0-.14 1.75l-7.68 3.84a.75.75 0 0 1-1.06-.85l.03-.1L5.7 12Z\", \"M23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5.5 0h2a.5.5 0 0 1 0 1H17a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0v2.5Z\"], {\n flipInRtl: true\n});\nexport const SendCopy20Filled = /*#__PURE__*/createFluentIcon('SendCopy20Filled', \"20\", [\"M8.47 2.22c.3-.3.77-.3 1.06 0l2.5 2.5a.75.75 0 0 1-1.06 1.06L9.75 4.56v6.69a.75.75 0 0 1-1.5 0V4.56L7.03 5.78a.75.75 0 0 1-1.06-1.06l2.5-2.5ZM5.57 16.5A2 2 0 0 0 7.5 18H13a4.5 4.5 0 0 0 4.5-4.5v-2.25a.75.75 0 0 0-1.5 0v2.25a3 3 0 0 1-3 3H5.57ZM4.5 8.75a.75.75 0 0 0-1.5 0v4.75c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V8.75a.75.75 0 0 0-1.5 0v4.75a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V8.75Z\"]);\nexport const SendCopy20Regular = /*#__PURE__*/createFluentIcon('SendCopy20Regular', \"20\", [\"M8.65 2.15c.2-.2.5-.2.7 0l3 3a.5.5 0 0 1-.7.7L9.5 3.71v7.79a.5.5 0 0 1-1 0V3.7L6.35 5.86a.5.5 0 1 1-.7-.7l3-3ZM5.27 17c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4v-3.5a.5.5 0 1 0-1 0V14a3 3 0 0 1-3 3H5.27ZM4 8.5a.5.5 0 0 0-1 0V14c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-1 0V14a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8.5Z\"]);\nexport const SendCopy24Filled = /*#__PURE__*/createFluentIcon('SendCopy24Filled', \"24\", [\"M20 11.5a1 1 0 0 1 1 .88V17a5.5 5.5 0 0 1-5.27 5.5H8.25a2.5 2.5 0 0 1-2.45-2.01h2.4l.05.01h7.25a3.5 3.5 0 0 0 3.5-3.3v-4.7a1 1 0 0 1 1-1Zm-3-2.01a1 1 0 0 1 1 .88v6.62a2.5 2.5 0 0 1-2.34 2.5H5.5A2.5 2.5 0 0 1 3 17.15V10.5a1 1 0 0 1 2-.1v6.6c0 .24.17.45.4.49h10.1a.5.5 0 0 0 .49-.4v-6.6a1 1 0 0 1 1-1ZM6.3 5.79l3.49-3.5a1 1 0 0 1 1.32-.08l.1.08 3.5 3.5a1 1 0 0 1-1.32 1.5l-.1-.08-1.8-1.8.01 8.84a1 1 0 0 1-.88 1h-.12a1 1 0 0 1-1-.88V5.41l-1.8 1.8a1 1 0 0 1-1.31.08l-.1-.08a1 1 0 0 1-.08-1.32l.08-.1 3.5-3.5-3.5 3.5Z\"]);\nexport const SendCopy24Regular = /*#__PURE__*/createFluentIcon('SendCopy24Regular', \"24\", [\"M19.75 11.5c.38 0 .7.28.74.65l.01.1v5A4.75 4.75 0 0 1 15.97 22H8.25c-.98 0-1.81-.63-2.12-1.5H15.93A3.25 3.25 0 0 0 19 17.42l.01-.18v-5c0-.41.34-.75.75-.75Zm-2.5-2c.38 0 .7.28.74.65l.01.1v7c0 1.2-.93 2.17-2.1 2.24l-.15.01h-10c-1.2 0-2.17-.93-2.24-2.1l-.01-.15v-7a.75.75 0 0 1 1.5-.1v7.1c0 .38.28.7.65.74l.1.01h10c.38 0 .7-.28.74-.65l.01-.1v-7c0-.41.34-.75.75-.75ZM6.22 6.22l4-4a.75.75 0 0 1 .97-.07l.09.07 4 4a.75.75 0 0 1-.98 1.13l-.08-.07-2.72-2.72v9.7c0 .37-.28.69-.65.74h-.1a.75.75 0 0 1-.74-.64l-.01-.1v-9.7L7.28 7.28a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08 4-4-4 4Z\"]);\nexport const SerialPort16Filled = /*#__PURE__*/createFluentIcon('SerialPort16Filled', \"16\", [\"M1.08 7.47A2 2 0 0 1 3.02 5H13a2 2 0 0 1 1.95 2.47l-.73 3A2 2 0 0 1 12.27 12H3.75a2 2 0 0 1-1.95-1.53l-.72-3ZM5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM8 10a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM7 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM11 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const SerialPort16Regular = /*#__PURE__*/createFluentIcon('SerialPort16Regular', \"16\", [\"M5 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm1.5 1.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM8 10a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM7 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM11 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM3.02 5a2 2 0 0 0-1.94 2.47l.72 3A2 2 0 0 0 3.75 12h8.52a2 2 0 0 0 1.94-1.53l.73-3A2 2 0 0 0 12.99 5H3.02Zm-.97 2.23A1 1 0 0 1 3.02 6H13a1 1 0 0 1 .97 1.24l-.72 3a1 1 0 0 1-.97.76H3.75a1 1 0 0 1-.98-.77l-.72-3Z\"]);\nexport const SerialPort20Filled = /*#__PURE__*/createFluentIcon('SerialPort20Filled', \"20\", [\"M2.33 9.07A2.5 2.5 0 0 1 4.77 6h10.46a2.5 2.5 0 0 1 2.43 3.07l-.7 3A2.5 2.5 0 0 1 14.53 14H5.47a2.5 2.5 0 0 1-2.44-1.93l-.7-3ZM6 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM8.5 9a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM7 11.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0ZM10 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z\"]);\nexport const SerialPort20Regular = /*#__PURE__*/createFluentIcon('SerialPort20Regular', \"20\", [\"M6 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM8.5 9a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM7 11.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0ZM10 9.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm1.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM4.77 6a2.5 2.5 0 0 0-2.44 3.07l.7 3A2.5 2.5 0 0 0 5.47 14h9.06a2.5 2.5 0 0 0 2.43-1.93l.7-3A2.5 2.5 0 0 0 15.23 6H4.77ZM3.3 8.84A1.5 1.5 0 0 1 4.77 7h10.46c.97 0 1.68.9 1.46 1.84l-.7 3A1.5 1.5 0 0 1 14.53 13H5.47c-.7 0-1.3-.48-1.46-1.16l-.7-3Z\"]);\nexport const SerialPort24Filled = /*#__PURE__*/createFluentIcon('SerialPort24Filled', \"24\", [\"M2.23 10.39a2.75 2.75 0 0 1 2.68-3.4h14.18a2.75 2.75 0 0 1 2.68 3.4l-1.08 4.5A2.75 2.75 0 0 1 18.02 17H5.98a2.75 2.75 0 0 1-2.68-2.11l-1.07-4.5ZM7 11.5A.75.75 0 1 0 7 10a.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-2 3.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM12 11.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const SerialPort24Regular = /*#__PURE__*/createFluentIcon('SerialPort24Regular', \"24\", [\"M7 11.5A.75.75 0 1 0 7 10a.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-2 3.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12 11.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm3.25-.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM4.9 7a2.75 2.75 0 0 0-2.67 3.39l1.07 4.5A2.75 2.75 0 0 0 5.98 17h12.04c1.27 0 2.38-.87 2.67-2.11l1.08-4.5a2.75 2.75 0 0 0-2.68-3.4H4.91Zm-1.2 3.04c-.2-.79.4-1.54 1.2-1.54h14.2c.8 0 1.4.75 1.2 1.54l-1.07 4.5c-.13.56-.63.96-1.21.96H5.98c-.58 0-1.08-.4-1.22-.96l-1.07-4.5Z\"]);\nexport const Server12Filled = /*#__PURE__*/createFluentIcon('Server12Filled', \"12\", [\"M3 2.5C3 1.67 3.67 1 4.5 1h3C8.33 1 9 1.67 9 2.5v7c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 3 9.5v-7Zm2.5.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM5 6.5c0 .28.22.5.5.5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0-.5.5ZM5.5 8a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const Server12Regular = /*#__PURE__*/createFluentIcon('Server12Regular', \"12\", [\"M4.5 1C3.67 1 3 1.67 3 2.5v7c0 .83.67 1.5 1.5 1.5h3c.83 0 1.5-.67 1.5-1.5v-7C9 1.67 8.33 1 7.5 1h-3ZM4 2.5c0-.28.22-.5.5-.5h3c.28 0 .5.22.5.5v7a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-7Zm1.5.5a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM5 6.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5ZM5.5 8a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const Server16Filled = /*#__PURE__*/createFluentIcon('Server16Filled', \"16\", [\"M11.41 1.59A2 2 0 0 0 10 1H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V3a2 2 0 0 0-.59-1.41ZM9.85 12.85a.5.5 0 0 1-.35.15h-3a.5.5 0 1 1 0-1h3a.5.5 0 0 1 .35.85Zm0-2a.5.5 0 0 1-.35.15h-3a.5.5 0 1 1 0-1h3a.5.5 0 0 1 .35.85Zm0-6A.5.5 0 0 1 9.5 5h-3a.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .35.85Z\"]);\nexport const Server16Regular = /*#__PURE__*/createFluentIcon('Server16Regular', \"16\", [\"M6.5 5h3a.5.5 0 1 0 0-1h-3a.5.5 0 1 0 0 1Zm3 6h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 0 1Zm-3 2h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0 0 1ZM6 15h4a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2ZM5.3 2.3A1 1 0 0 1 6 2h4a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V3a1 1 0 0 1 .3-.7Z\"]);\nexport const Server20Filled = /*#__PURE__*/createFluentIcon('Server20Filled', \"20\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h5a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 12.5 2h-5ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 7c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Z\"]);\nexport const Server20Regular = /*#__PURE__*/createFluentIcon('Server20Regular', \"20\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM5 4.5A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5v11a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 5 15.5v-11ZM7.5 3C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-5Z\"]);\nexport const Server24Filled = /*#__PURE__*/createFluentIcon('Server24Filled', \"24\", [\"M9 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H9Zm-.5 4.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm0 11c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm0-3c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const Server24Regular = /*#__PURE__*/createFluentIcon('Server24Regular', \"24\", [\"M9.25 6a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM8.5 17.75c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75ZM9.25 14a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM6 5a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V5Zm3-1.5c-.83 0-1.5.67-1.5 1.5v14c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5V5c0-.83-.67-1.5-1.5-1.5H9Z\"]);\nexport const ServerLink16Filled = /*#__PURE__*/createFluentIcon('ServerLink16Filled', \"16\", [\"M11.41 1.59A2 2 0 0 0 10 1H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h.05A3.49 3.49 0 0 1 8.5 9H12V3a2 2 0 0 0-.59-1.41ZM9.85 4.85A.5.5 0 0 1 9.5 5h-3a.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .35.85ZM8.5 10a2.5 2.5 0 0 0 0 5H9a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H9a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H12a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H12Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerLink16Regular = /*#__PURE__*/createFluentIcon('ServerLink16Regular', \"16\", [\"M6.5 5h3a.5.5 0 1 0 0-1h-3a.5.5 0 1 0 0 1ZM6 15h.05c-.4-.4-.72-.9-.9-1.46A1 1 0 0 1 5 13V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6h1V3a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2Zm2.5-5a2.5 2.5 0 0 0 0 5H9a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3H9a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H12a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H12Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerLink20Filled = /*#__PURE__*/createFluentIcon('ServerLink20Filled', \"20\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h1.84a3.49 3.49 0 0 1 0-3H7.5a.5.5 0 0 1 0-1h2.55c.63-.62 1.5-1 2.45-1H15V4.5A2.5 2.5 0 0 0 12.5 2h-5Zm5 11h-5a.5.5 0 0 1 0-1h5a.5.5 0 0 1 0 1ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm5.5 8.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerLink20Regular = /*#__PURE__*/createFluentIcon('ServerLink20Regular', \"20\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm7-8V13h1V4.5A2.5 2.5 0 0 0 12.5 2h-5A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h1.84a3.48 3.48 0 0 1-.3-1H7.5A1.5 1.5 0 0 1 6 15.5v-11C6 3.67 6.67 3 7.5 3h5c.83 0 1.5.67 1.5 1.5ZM9.34 15c.17-.37.42-.71.71-1H7.5a.5.5 0 0 0 0 1h1.84Zm3.16-1a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16Zm-4 2.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerLink24Filled = /*#__PURE__*/createFluentIcon('ServerLink24Filled', \"24\", [\"M6 5a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v9H9.25a.75.75 0 0 0 0 1.5h3.04c-.41.43-.74.94-.96 1.5H9.25a.75.75 0 0 0 0 1.5h1.76a4.82 4.82 0 0 0 1.28 3.5H9a3 3 0 0 1-3-3V5Zm3.25 1a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM23 18.75A3.75 3.75 0 0 0 19.25 15h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 23 18.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const ServerLink24Regular = /*#__PURE__*/createFluentIcon('ServerLink24Regular', \"24\", [\"M9.25 6a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5ZM8.5 17.75c0-.41.34-.75.75-.75h2.08c-.18.47-.3.97-.32 1.5H9.25a.75.75 0 0 1-.75-.75Zm3.79-2.25a4.74 4.74 0 0 1 2.74-1.45.75.75 0 0 0-.28-.05h-5.5a.75.75 0 0 0 0 1.5h3.04ZM16.5 5v9H18V5a3 3 0 0 0-3-3H9a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h3.29c-.41-.43-.74-.94-.96-1.5H9A1.5 1.5 0 0 1 7.5 19V5c0-.83.67-1.5 1.5-1.5h6c.83 0 1.5.67 1.5 1.5ZM23 18.75A3.75 3.75 0 0 0 19.25 15h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5v-.01h.2A3.75 3.75 0 0 0 23 18.74Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const ServerMultiple20Filled = /*#__PURE__*/createFluentIcon('ServerMultiple20Filled', \"20\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h5a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 12.5 2h-5Zm0 3h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm0 2c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM2 7c0-1.1.9-2 2-2v10.5c0 .17.01.34.04.5H4a2 2 0 0 1-2-2V7Zm14 8.5c0 .17-.01.34-.04.5H16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2v10.5Z\"]);\nexport const ServerMultiple20Regular = /*#__PURE__*/createFluentIcon('ServerMultiple20Regular', \"20\", [\"M7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 1.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM5 4.5A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5V5h1a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-1.05a2.5 2.5 0 0 1-2.45 2h-5a2.5 2.5 0 0 1-2.45-2H4a2 2 0 0 1-2-2V7c0-1.1.9-2 2-2h1v-.5ZM15 15h1a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1v9ZM5 6H4a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h1V6Zm2.5-3C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-5Z\"]);\nexport const ServerPlay20Filled = /*#__PURE__*/createFluentIcon('ServerPlay20Filled', \"20\", [\"M7.5 2A2.5 2.5 0 0 0 5 4.5v11A2.5 2.5 0 0 0 7.5 18h2.76a5.47 5.47 0 0 1-1.24-3H7.5a.5.5 0 0 1 0-1h1.52c.03-.34.1-.68.19-1H7.5a.5.5 0 0 1 0-1h2.1A5.5 5.5 0 0 1 15 9.02V4.5A2.5 2.5 0 0 0 12.5 2h-5ZM7 5.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm12 9a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const ServerPlay20Regular = /*#__PURE__*/createFluentIcon('ServerPlay20Regular', \"20\", [\"M14 9.02V4.5c0-.83-.67-1.5-1.5-1.5h-5C6.67 3 6 3.67 6 4.5v11c0 .83.67 1.5 1.5 1.5h2.1c.18.36.4.7.66 1H7.5A2.5 2.5 0 0 1 5 15.5v-11A2.5 2.5 0 0 1 7.5 2h5A2.5 2.5 0 0 1 15 4.5v4.52a5.57 5.57 0 0 0-1 0ZM7.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM7 12.5c0-.28.22-.5.5-.5h2.1c-.16.32-.3.65-.4 1H7.5a.5.5 0 0 1-.5-.5Zm2 2c0-.17 0-.34.02-.5H7.5a.5.5 0 0 0 0 1h1.52a5.57 5.57 0 0 1-.02-.5Zm10 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.29-.44-2.97-1.65a.5.5 0 0 0-.74.44v3.3c0 .38.41.62.74.44l2.97-1.65a.5.5 0 0 0 0-.88Z\"]);\nexport const ServerSurface16Filled = /*#__PURE__*/createFluentIcon('ServerSurface16Filled', \"16\", [\"M5.5 13h4c.83 0 1.5-.67 1.5-1.5v-9A1.5 1.5 0 0 0 9.5 1h-4A1.5 1.5 0 0 0 4 2.5v9c0 .83.67 1.5 1.5 1.5Zm.65-8.85A.5.5 0 0 1 6.5 4h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5.5.5 0 0 1 .15-.35Zm0 4A.5.5 0 0 1 6.5 8h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5.5.5 0 0 1 .15-.35Zm0 2A.5.5 0 0 1 6.5 10h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.35-.85Zm7.82 4.17-1.5-4A.5.5 0 0 0 12 10v1.5A2.5 2.5 0 0 1 9.5 14h-4A2.5 2.5 0 0 1 3 11.5V10a.5.5 0 0 0-.47.32l-1.5 4c-.03.08-.04.16-.03.24a.5.5 0 0 0 .5.44h12a.5.5 0 0 0 .41-.22.5.5 0 0 0 .06-.46Z\"]);\nexport const ServerSurface16Regular = /*#__PURE__*/createFluentIcon('ServerSurface16Regular', \"16\", [\"m13.97 14.32-1.5-4A.5.5 0 0 0 12 10h-1V2.5A1.5 1.5 0 0 0 9.5 1h-4A1.5 1.5 0 0 0 4 2.5V10H3a.5.5 0 0 0-.47.32l-1.5 4a.5.5 0 0 0 .47.68h12a.5.5 0 0 0 .47-.68ZM5 2.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-9ZM2.22 14l1.13-3H4v.5A1.5 1.5 0 0 0 5.5 13h4a1.5 1.5 0 0 0 1.5-1.5V11h.65l1.13 3H2.22ZM6 4.5a.5.5 0 0 1 .5-.5h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5Zm0 4a.5.5 0 0 1 .5-.5h2a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5Zm0 2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServerSurfaceMultiple16Filled = /*#__PURE__*/createFluentIcon('ServerSurfaceMultiple16Filled', \"16\", [\"M10 8h.5a.5.5 0 1 0 0-1H10V5.5A2.47 2.47 0 0 0 9.5 4h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.5.5v.01A2.47 2.47 0 0 0 7.5 3H7v-.5A1.5 1.5 0 0 1 8.5 1h3A1.5 1.5 0 0 1 13 2.5v6c0 .83-.67 1.5-1.5 1.5H10V8Zm4 .41.97 2.93a.5.5 0 0 1-.07.45.5.5 0 0 1-.4.21h-3.25l-.33-.97V11h.58A2.5 2.5 0 0 0 14 8.5v-.09Zm-4 3 .98 2.93a.5.5 0 0 1-.07.45.5.5 0 0 1-.4.21h-9a.5.5 0 0 1-.5-.42.5.5 0 0 1 .02-.24L2 11.42v.08A2.5 2.5 0 0 0 4.5 14h3a2.5 2.5 0 0 0 2.5-2.5v-.09ZM7.5 13h-3A1.5 1.5 0 0 1 3 11.5v-6A1.5 1.5 0 0 1 4.5 4h3A1.5 1.5 0 0 1 9 5.5v6c0 .83-.67 1.5-1.5 1.5Zm-2-7a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1h-1Zm0 4a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1h-1Z\"]);\nexport const ServerSurfaceMultiple16Regular = /*#__PURE__*/createFluentIcon('ServerSurfaceMultiple16Regular', \"16\", [\"M10 7h.5a.5.5 0 1 1 0 1H10V7Zm.85-3.85a.5.5 0 0 1-.35.85H9.5c-.14-.18-.3-.35-.49-.48V3.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .35.15Zm3.13 5.2 1 3a.5.5 0 0 1-.48.65h-3.26l-.32-.98-.01-.02h2.9l-.67-2h-.23a1.5 1.5 0 0 1-1.4 1H10V9h1.5a.5.5 0 0 0 .5-.5v-6a.5.5 0 0 0-.5-.5H8.5a.5.5 0 0 0-.5.5v.55A2.5 2.5 0 0 0 7.5 3H7v-.5A1.5 1.5 0 0 1 8.5 1h3A1.5 1.5 0 0 1 13 2.5V8h.5a.5.5 0 0 1 .48.34Zm-8.83-2.2A.5.5 0 0 0 5.5 7h1a.5.5 0 1 0 0-1h-1a.5.5 0 0 0-.35.15ZM6.5 11h-1a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1Zm4.23 3.94a.5.5 0 0 0 .25-.6l-1-3A.5.5 0 0 0 9.5 11H9V5.5A1.5 1.5 0 0 0 7.5 4h-3A1.5 1.5 0 0 0 3 5.5V11h-.5a.5.5 0 0 0-.47.34l-1 3a.5.5 0 0 0 .47.66h9a.5.5 0 0 0 .23-.06Zm-6.58-3.09A.5.5 0 0 1 4 11.5v-6a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.35-.15ZM8.9 12h.23l.67 2H2.19l.67-2h.23a1.5 1.5 0 0 0 1.41 1h3a1.5 1.5 0 0 0 1.4-1Z\"]);\nexport const ServiceBell16Filled = /*#__PURE__*/createFluentIcon('ServiceBell16Filled', \"16\", [\"M8 1.5a2 2 0 0 0-2 2v.34A6 6 0 0 0 2 9.5c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5 6 6 0 0 0-4-5.66V3.5a2 2 0 0 0-2-2ZM7.5 6c0-.28.22-.5.5-.5a4 4 0 0 1 3.28 1.71.5.5 0 1 1-.82.58A3 3 0 0 0 8 6.5a.5.5 0 0 1-.5-.5Zm-5 5a1.5 1.5 0 0 0 0 3h11a1.5 1.5 0 0 0 0-3h-11Z\"]);\nexport const ServiceBell16Regular = /*#__PURE__*/createFluentIcon('ServiceBell16Regular', \"16\", [\"M8 2.5a1 1 0 0 1 1 1v.08a6.04 6.04 0 0 0-2 0V3.5a1 1 0 0 1 1-1Zm-2 1v.34A6 6 0 0 0 2 9.5c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5 6 6 0 0 0-4-5.66V3.5a2 2 0 1 0-4 0Zm2 1A5 5 0 0 1 12.98 9H3.02A5 5 0 0 1 8 4.5Zm0 1a.5.5 0 0 0 0 1 3 3 0 0 1 2.46 1.29.5.5 0 1 0 .82-.58A4 4 0 0 0 8 5.5ZM2.5 11a1.5 1.5 0 0 0 0 3h11a1.5 1.5 0 0 0 0-3h-11ZM2 12.5c0-.28.22-.5.5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServiceBell20Filled = /*#__PURE__*/createFluentIcon('ServiceBell20Filled', \"20\", [\"M8 5a2 2 0 1 1 4 0v.79a7 7 0 0 1 5 6.71.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5 7 7 0 0 1 5-6.71V5Zm2.5 3.5c.42 0 .84 0 1.27.16.41.15.87.45 1.31 1.12a.5.5 0 0 0 .84-.56 3.66 3.66 0 0 0-1.81-1.5 4.51 4.51 0 0 0-1.59-.22h-.02a.5.5 0 0 0 0 1Zm-7 5.5a1.5 1.5 0 0 0 0 3h13a1.5 1.5 0 0 0 0-3h-13Z\"]);\nexport const ServiceBell20Regular = /*#__PURE__*/createFluentIcon('ServiceBell20Regular', \"20\", [\"M10.5 8.5c.42 0 .84 0 1.27.16.41.15.87.45 1.31 1.12a.5.5 0 0 0 .84-.56 3.66 3.66 0 0 0-1.81-1.5 4.51 4.51 0 0 0-1.59-.22h-.02a.5.5 0 0 0 0 1ZM8 5v.79a7 7 0 0 0-5 6.71c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5 7 7 0 0 0-5-6.71V5a2 2 0 1 0-4 0Zm2-1a1 1 0 0 1 1 1v.57a7.06 7.06 0 0 0-2 0V5a1 1 0 0 1 1-1Zm0 2.5a6 6 0 0 1 5.98 5.5H4.02A6 6 0 0 1 10 6.5ZM3.5 14a1.5 1.5 0 0 0 0 3h13a1.5 1.5 0 0 0 0-3h-13ZM3 15.5c0-.28.22-.5.5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5Z\"]);\nexport const ServiceBell24Filled = /*#__PURE__*/createFluentIcon('ServiceBell24Filled', \"24\", [\"M10 4a2 2 0 1 1 4 0v1.24a8.24 8.24 0 0 1 6.25 8c0 .42-.34.76-.75.76h-15a.75.75 0 0 1-.75-.75c0-3.86 2.67-7.1 6.25-8V4Zm3.25 3.5a.75.75 0 0 0 0 1.5c1.25 0 2.14.62 2.89 1.68a.75.75 0 0 0 1.22-.86 4.87 4.87 0 0 0-4.11-2.32ZM2 17c0-1.1.9-2 2-2h16a2 2 0 1 1 0 4H4a2 2 0 0 1-2-2Z\"]);\nexport const ServiceBell24Regular = /*#__PURE__*/createFluentIcon('ServiceBell24Regular', \"24\", [\"M11.75 7.5a.75.75 0 0 0 0 1.5 4.4 4.4 0 0 1 3.4 1.76.75.75 0 1 0 1.24-.86 5.9 5.9 0 0 0-4.64-2.4Zm-2.25-3a2.5 2.5 0 0 1 5 0v.88a8.25 8.25 0 0 1 5.75 7.87c0 .41-.34.75-.75.75h-15a.75.75 0 0 1-.75-.75c0-3.68 2.42-6.8 5.75-7.86V4.5Zm3.5 0a1 1 0 1 0-2 0v.56a8.33 8.33 0 0 1 2 0V4.5Zm-7.7 8h13.4a6.73 6.73 0 0 0-6.68-6 6.77 6.77 0 0 0-6.73 6ZM4 15a2 2 0 1 0 0 4h16a2 2 0 1 0 0-4H4Zm-.5 2c0-.28.22-.5.5-.5h16a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.5-.5Z\"]);\nexport const Settings16Filled = /*#__PURE__*/createFluentIcon('Settings16Filled', \"16\", [\"M2.27 6.15c.26-.8.69-1.54 1.26-2.17.1-.1.25-.14.38-.1l1.36.49a.71.71 0 0 0 .94-.54l.26-1.41a.35.35 0 0 1 .27-.29 6.07 6.07 0 0 1 2.52 0c.14.03.25.14.27.28l.26 1.42a.7.7 0 0 0 .94.54l1.36-.49a.36.36 0 0 1 .38.1c.57.63 1 1.37 1.26 2.17.05.14 0 .29-.1.38l-1.1.93a.7.7 0 0 0 0 1.08l1.1.93c.1.1.15.24.1.38-.26.8-.69 1.54-1.26 2.17-.1.1-.25.14-.38.1l-1.36-.49a.71.71 0 0 0-.94.54l-.26 1.41a.35.35 0 0 1-.27.29 6.07 6.07 0 0 1-2.52 0 .35.35 0 0 1-.27-.29l-.26-1.41a.7.7 0 0 0-.94-.54l-1.36.49a.36.36 0 0 1-.38-.1c-.57-.63-1-1.37-1.26-2.17a.35.35 0 0 1 .1-.38l1.1-.93a.7.7 0 0 0 0-1.08l-1.1-.93a.35.35 0 0 1-.1-.38ZM6.25 8a1.75 1.75 0 1 0 3.5 0 1.75 1.75 0 0 0-3.5 0Z\"]);\nexport const Settings16Regular = /*#__PURE__*/createFluentIcon('Settings16Regular', \"16\", [\"M8 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM7 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm3.62-3.6a.7.7 0 0 1-.83-.57l-.26-1.42a.35.35 0 0 0-.27-.28 6.07 6.07 0 0 0-2.52 0 .35.35 0 0 0-.27.29L6.2 3.83a.71.71 0 0 1-.94.54l-1.36-.49a.36.36 0 0 0-.38.1c-.57.63-1 1.37-1.26 2.17-.05.14 0 .29.1.38l1.1.93a.7.7 0 0 1 0 1.08l-1.1.93c-.1.1-.15.24-.1.38.26.8.69 1.54 1.26 2.17.1.1.25.14.38.1l1.36-.49a.7.7 0 0 1 .94.54l.26 1.41c.02.15.13.26.27.29a6.07 6.07 0 0 0 2.52 0 .35.35 0 0 0 .27-.29l.26-1.41a.71.71 0 0 1 .94-.54l1.36.49c.13.04.28 0 .38-.1.57-.63 1-1.37 1.26-2.17a.35.35 0 0 0-.1-.38l-1.1-.93a.7.7 0 0 1 0-1.08l1.1-.93c.1-.1.15-.24.1-.38-.26-.8-.69-1.54-1.26-2.17a.36.36 0 0 0-.38-.1l-1.36.49a.71.71 0 0 1-.11.03ZM4 4.98l.94.33a1.71 1.71 0 0 0 2.25-1.3l.18-.97a5.1 5.1 0 0 1 1.26 0l.18.97a1.7 1.7 0 0 0 2.25 1.3l.94-.33c.26.33.47.7.63 1.08l-.75.64a1.7 1.7 0 0 0 0 2.6l.75.64c-.16.39-.37.75-.63 1.08l-.94-.33a1.7 1.7 0 0 0-2.25 1.3l-.18.97a5.1 5.1 0 0 1-1.26 0l-.18-.97a1.7 1.7 0 0 0-2.25-1.3l-.94.33c-.26-.33-.47-.7-.63-1.08l.75-.64a1.7 1.7 0 0 0 0-2.6l-.75-.64c.16-.39.37-.75.63-1.08Z\"]);\nexport const Settings20Filled = /*#__PURE__*/createFluentIcon('Settings20Filled', \"20\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32a1 1 0 0 0 0 1.52l1.56 1.32a.5.5 0 0 1 .15.54 8.5 8.5 0 0 1-1.78 3.08.5.5 0 0 1-.54.13l-1.92-.68a1 1 0 0 0-1.32.76l-.37 2a.5.5 0 0 1-.38.4 8.53 8.53 0 0 1-3.56 0 .5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54ZM8 10a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z\"]);\nexport const Settings20Regular = /*#__PURE__*/createFluentIcon('Settings20Regular', \"20\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32a1 1 0 0 0 0 1.52l1.56 1.32a.5.5 0 0 1 .15.54 8.5 8.5 0 0 1-1.78 3.08.5.5 0 0 1-.54.13l-1.92-.68a1 1 0 0 0-1.32.76l-.37 2a.5.5 0 0 1-.38.4 8.53 8.53 0 0 1-3.56 0 .5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm1.06 0 1.3 1.1a2 2 0 0 1 0 3.04l-1.3 1.1c.3.79.72 1.51 1.25 2.16l1.6-.58a2 2 0 0 1 2.63 1.53l.3 1.67a7.56 7.56 0 0 0 2.5 0l.3-1.67a2 2 0 0 1 2.64-1.53l1.6.58a7.5 7.5 0 0 0 1.24-2.16l-1.3-1.1a2 2 0 0 1 0-3.04l1.3-1.1a7.5 7.5 0 0 0-1.25-2.16l-1.6.58a2 2 0 0 1-2.63-1.53l-.3-1.67a7.55 7.55 0 0 0-2.5 0l-.3 1.67A2 2 0 0 1 5.81 5.8l-1.6-.58a7.5 7.5 0 0 0-1.24 2.16ZM7.5 10a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm1 0a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const Settings24Filled = /*#__PURE__*/createFluentIcon('Settings24Filled', \"24\", [\"M12.01 2.25c.74 0 1.47.1 2.18.25.32.07.55.33.59.65l.17 1.53a1.38 1.38 0 0 0 1.92 1.11l1.4-.61c.3-.13.64-.06.85.17a9.8 9.8 0 0 1 2.2 3.8c.1.3 0 .63-.26.82l-1.25.92a1.38 1.38 0 0 0 0 2.22l1.25.92c.26.19.36.52.27.82a9.8 9.8 0 0 1-2.2 3.8.75.75 0 0 1-.85.17l-1.4-.62a1.38 1.38 0 0 0-1.93 1.12l-.17 1.52a.75.75 0 0 1-.58.65 9.52 9.52 0 0 1-4.4 0 .75.75 0 0 1-.57-.65l-.17-1.52a1.38 1.38 0 0 0-1.93-1.11l-1.4.62a.75.75 0 0 1-.85-.18 9.8 9.8 0 0 1-2.2-3.8c-.1-.3 0-.63.26-.82l1.25-.92a1.38 1.38 0 0 0 0-2.22l-1.24-.92a.75.75 0 0 1-.28-.82 9.8 9.8 0 0 1 2.2-3.8c.23-.23.57-.3.86-.17l1.4.62c.4.17.86.15 1.25-.08.38-.22.63-.6.68-1.04l.17-1.53a.75.75 0 0 1 .58-.65c.72-.16 1.45-.24 2.2-.25ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z\"]);\nexport const Settings24Regular = /*#__PURE__*/createFluentIcon('Settings24Regular', \"24\", [\"M12.01 2.25c.74 0 1.47.1 2.18.25.32.07.55.33.59.65l.17 1.53a1.38 1.38 0 0 0 1.92 1.11l1.4-.61c.3-.13.64-.06.85.17a9.8 9.8 0 0 1 2.2 3.8c.1.3 0 .63-.26.82l-1.25.92a1.38 1.38 0 0 0 0 2.22l1.25.92c.26.19.36.52.27.82a9.8 9.8 0 0 1-2.2 3.8.75.75 0 0 1-.85.17l-1.4-.62a1.38 1.38 0 0 0-1.93 1.12l-.17 1.52a.75.75 0 0 1-.58.65 9.52 9.52 0 0 1-4.4 0 .75.75 0 0 1-.57-.65l-.17-1.52a1.38 1.38 0 0 0-1.93-1.11l-1.4.62a.75.75 0 0 1-.85-.18 9.8 9.8 0 0 1-2.2-3.8c-.1-.3 0-.63.26-.82l1.25-.92a1.38 1.38 0 0 0 0-2.22l-1.24-.92a.75.75 0 0 1-.28-.82 9.8 9.8 0 0 1 2.2-3.8c.23-.23.57-.3.86-.17l1.4.62c.4.17.86.15 1.25-.08.38-.22.63-.6.68-1.04l.17-1.53a.75.75 0 0 1 .58-.65c.72-.16 1.45-.24 2.2-.25Zm0 1.5c-.45 0-.9.04-1.35.12l-.11.97a2.89 2.89 0 0 1-4.03 2.33l-.9-.4A8.3 8.3 0 0 0 4.29 9.1l.8.59a2.88 2.88 0 0 1 0 4.64l-.8.59a8.3 8.3 0 0 0 1.35 2.32l.9-.4a2.88 2.88 0 0 1 4.02 2.32l.1.99c.9.15 1.8.15 2.7 0l.1-.99a2.88 2.88 0 0 1 4.02-2.32l.9.4a8.3 8.3 0 0 0 1.35-2.32l-.8-.59a2.88 2.88 0 0 1 0-4.64l.8-.59a8.3 8.3 0 0 0-1.35-2.32l-.9.4a2.88 2.88 0 0 1-4.02-2.32l-.1-.98c-.45-.08-.9-.11-1.34-.12ZM12 8.25a3.75 3.75 0 1 1 0 7.5 3.75 3.75 0 0 1 0-7.5Zm0 1.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z\"]);\nexport const Settings28Filled = /*#__PURE__*/createFluentIcon('Settings28Filled', \"28\", [\"M16.7 2.31c-.89-.2-1.79-.3-2.69-.31-.92.01-1.82.11-2.7.31a.92.92 0 0 0-.72.8l-.2 1.88A1.7 1.7 0 0 1 8 6.36L6.3 5.61a.92.92 0 0 0-1.04.21 12.06 12.06 0 0 0-2.7 4.67c-.12.37 0 .78.33 1.02l1.52 1.12a1.7 1.7 0 0 1 0 2.74L2.87 16.5a.92.92 0 0 0-.33 1.01 12.06 12.06 0 0 0 2.7 4.68c.27.28.7.37 1.05.21l1.73-.76a1.7 1.7 0 0 1 2.36 1.37l.21 1.88c.04.38.32.7.7.8 1.78.42 3.64.42 5.42 0 .37-.1.66-.42.7-.8l.2-1.88a1.7 1.7 0 0 1 2.37-1.37l1.73.75c.36.16.77.08 1.04-.21a12.06 12.06 0 0 0 2.7-4.67.92.92 0 0 0-.32-1.01l-1.53-1.13a1.7 1.7 0 0 1 0-2.74l1.52-1.13a.92.92 0 0 0 .34-1.01 12.06 12.06 0 0 0-2.71-4.67.92.92 0 0 0-1.05-.21l-1.72.75c-.21.1-.44.15-.67.15a1.7 1.7 0 0 1-1.7-1.52l-.2-1.88a.92.92 0 0 0-.72-.8ZM14 18a4 4 0 1 1 0-8 4 4 0 0 1 0 8Z\"]);\nexport const Settings28Regular = /*#__PURE__*/createFluentIcon('Settings28Regular', \"28\", [\"M14 9.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9ZM11 14a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm10.7 8.4-1.72-.76A1.68 1.68 0 0 0 17.61 23l-.2 1.88a.92.92 0 0 1-.7.8c-1.78.42-3.64.42-5.42 0a.92.92 0 0 1-.7-.8L10.4 23a1.7 1.7 0 0 0-2.37-1.37l-1.73.76a.92.92 0 0 1-1.04-.21 12.06 12.06 0 0 1-2.7-4.68.92.92 0 0 1 .32-1.01l1.53-1.13a1.7 1.7 0 0 0 0-2.74l-1.52-1.12a.92.92 0 0 1-.34-1.02 12.06 12.06 0 0 1 2.71-4.67.92.92 0 0 1 1.04-.21l1.72.75a1.7 1.7 0 0 0 2.37-1.38l.21-1.87c.05-.4.33-.71.72-.8.88-.2 1.78-.3 2.7-.31.9.01 1.8.11 2.68.31.39.09.67.4.72.8l.2 1.88a1.7 1.7 0 0 0 2.37 1.37l1.72-.75a.92.92 0 0 1 1.05.21 12.06 12.06 0 0 1 2.7 4.67.92.92 0 0 1-.33 1.01l-1.52 1.13c-.44.32-.7.83-.7 1.37 0 .54.26 1.05.7 1.37l1.53 1.13c.31.23.44.64.33 1.01a12.06 12.06 0 0 1-2.7 4.67.92.92 0 0 1-1.05.21Zm-5.44-.2c.24-.73.73-1.37 1.43-1.78a3.22 3.22 0 0 1 2.9-.16l1.34.6c.86-1 1.53-2.16 1.97-3.4l-1.2-.88a3.2 3.2 0 0 1 0-5.16l1.2-.88c-.44-1.24-1.11-2.4-1.98-3.4l-1.33.6a3.2 3.2 0 0 1-4.46-2.58l-.17-1.47c-.64-.12-1.3-.18-1.95-.19-.67 0-1.33.07-1.97.2l-.16 1.45A3.2 3.2 0 0 1 7.4 7.74l-1.34-.6c-.86 1-1.53 2.16-1.97 3.4l1.2.88a3.2 3.2 0 0 1 0 5.16l-1.2.88c.44 1.24 1.1 2.4 1.97 3.4l1.35-.6a3.2 3.2 0 0 1 4.45 2.58l.17 1.47c1.3.25 2.63.25 3.92 0l.16-1.47c.03-.22.08-.43.14-.64Z\"]);\nexport const Settings32Filled = /*#__PURE__*/createFluentIcon('Settings32Filled', \"32\", [\"M28.83 18.47a1.48 1.48 0 0 1 .54 1.63 14.27 14.27 0 0 1-3.16 5.45 1.48 1.48 0 0 1-1.67.35l-1.95-.86a1.47 1.47 0 0 0-2.07 1.2l-.24 2.12a1.48 1.48 0 0 1-1.12 1.28c-2.08.5-4.24.5-6.32 0a1.47 1.47 0 0 1-1.13-1.27l-.23-2.13a1.48 1.48 0 0 0-2.07-1.2l-1.95.87a1.48 1.48 0 0 1-1.67-.35 14.27 14.27 0 0 1-3.16-5.45 1.48 1.48 0 0 1 .54-1.63l1.72-1.27a1.49 1.49 0 0 0 0-2.4l-1.72-1.28a1.48 1.48 0 0 1-.54-1.62A14.25 14.25 0 0 1 5.8 6.47 1.44 1.44 0 0 1 6.88 6c.2 0 .4.04.58.12l1.95.85a1.5 1.5 0 0 0 2.07-1.2l.24-2.12a1.46 1.46 0 0 1 1.14-1.29c1.04-.22 2.1-.34 3.15-.36 1.05.02 2.1.14 3.13.36a1.48 1.48 0 0 1 1.14 1.29l.24 2.12a1.48 1.48 0 0 0 2.07 1.2l1.94-.86a1.48 1.48 0 0 1 1.68.35 14.23 14.23 0 0 1 3.15 5.44 1.48 1.48 0 0 1-.53 1.63L27.1 14.8a1.48 1.48 0 0 0 0 2.4l1.72 1.27ZM16 20a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z\"]);\nexport const Settings32Regular = /*#__PURE__*/createFluentIcon('Settings32Regular', \"32\", [\"M16 11a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm-3 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm-.16 13.63a13.59 13.59 0 0 0 6.32 0 1.48 1.48 0 0 0 1.13-1.28l.23-2.13a1.47 1.47 0 0 1 2.07-1.2l1.95.86a1.47 1.47 0 0 0 1.67-.35 14.25 14.25 0 0 0 3.16-5.44 1.48 1.48 0 0 0-.54-1.63l-1.73-1.27a1.48 1.48 0 0 1 0-2.4l1.73-1.27a1.47 1.47 0 0 0 .53-1.63 14.2 14.2 0 0 0-3.15-5.44 1.48 1.48 0 0 0-1.68-.35l-1.94.86a1.48 1.48 0 0 1-2.07-1.2l-.24-2.12a1.48 1.48 0 0 0-1.14-1.29A15.12 15.12 0 0 0 16 2a15.4 15.4 0 0 0-3.15.36 1.47 1.47 0 0 0-1.14 1.28l-.24 2.13a1.5 1.5 0 0 1-2.07 1.2l-1.95-.85a1.5 1.5 0 0 0-1.67.35 14.25 14.25 0 0 0-3.16 5.44 1.48 1.48 0 0 0 .54 1.63l1.72 1.27a1.49 1.49 0 0 1 0 2.4l-1.72 1.27a1.48 1.48 0 0 0-.54 1.63c.64 2.03 1.71 3.9 3.16 5.45a1.46 1.46 0 0 0 1.08.46c.2 0 .4-.04.59-.12l1.96-.86a1.48 1.48 0 0 1 2.06 1.2l.24 2.13a1.48 1.48 0 0 0 1.12 1.27Zm5.5-1.87c-1.54.32-3.13.32-4.68 0l-.2-1.74a3.48 3.48 0 0 0-4.85-2.8l-1.6.7a12.24 12.24 0 0 1-2.35-4.06l1.42-1.05a3.49 3.49 0 0 0 0-5.61l-1.42-1.05A12.24 12.24 0 0 1 7 8.1l1.6.7a3.45 3.45 0 0 0 3.72-.6A3.5 3.5 0 0 0 13.47 6l.2-1.75c.77-.15 1.56-.23 2.35-.24.78.01 1.56.09 2.32.24l.2 1.74A3.48 3.48 0 0 0 23.4 8.8l1.6-.7a12.21 12.21 0 0 1 2.34 4.04l-1.42 1.05a3.48 3.48 0 0 0 0 5.62l1.42 1.05A12.27 12.27 0 0 1 25 23.9l-1.6-.7a3.47 3.47 0 0 0-4.87 2.81l-.19 1.75Z\"]);\nexport const Settings48Filled = /*#__PURE__*/createFluentIcon('Settings48Filled', \"48\", [\"M19.5 43.47a19.44 19.44 0 0 0 9.01 0 1.94 1.94 0 0 0 1.47-1.68l.34-3.07a2.32 2.32 0 0 1 3.25-1.87l2.81 1.23a1.92 1.92 0 0 0 2.2-.45 20.37 20.37 0 0 0 4.51-7.78 1.94 1.94 0 0 0-.7-2.13l-2.49-1.84a2.33 2.33 0 0 1 0-3.77l2.49-1.83a1.94 1.94 0 0 0 .7-2.14c-.9-2.9-2.45-5.55-4.52-7.78a1.94 1.94 0 0 0-2.2-.45l-2.8 1.24c-.29.13-.6.2-.92.2a2.34 2.34 0 0 1-2.32-2.09l-.34-3.06a1.94 1.94 0 0 0-1.5-1.68c-1.47-.33-2.97-.5-4.47-.52-1.52.02-3.02.2-4.5.52a1.93 1.93 0 0 0-1.5 1.68l-.34 3.06a2.35 2.35 0 0 1-3.26 1.9l-2.8-1.24a1.94 1.94 0 0 0-2.2.45 20.35 20.35 0 0 0-4.51 7.78 1.94 1.94 0 0 0 .7 2.13l2.49 1.84a2.34 2.34 0 0 1 0 3.77l-2.5 1.83a1.94 1.94 0 0 0-.7 2.14c.91 2.9 2.45 5.56 4.52 7.78a1.9 1.9 0 0 0 1.41.62c.27 0 .53-.06.78-.16l2.82-1.24a2.34 2.34 0 0 1 3.25 1.88l.34 3.06a1.94 1.94 0 0 0 1.47 1.67ZM24 30.25a6.25 6.25 0 1 1 0-12.5 6.25 6.25 0 0 1 0 12.5Z\"]);\nexport const Settings48Regular = /*#__PURE__*/createFluentIcon('Settings48Regular', \"48\", [\"M24 16.5a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15ZM19 24a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm.5 19.47a19.44 19.44 0 0 0 9.01 0 1.94 1.94 0 0 0 1.47-1.68l.34-3.07a2.32 2.32 0 0 1 3.25-1.87l2.81 1.23a1.92 1.92 0 0 0 2.2-.45 20.37 20.37 0 0 0 4.51-7.78 1.94 1.94 0 0 0-.7-2.13l-2.49-1.84a2.33 2.33 0 0 1 0-3.77l2.49-1.83a1.94 1.94 0 0 0 .7-2.14c-.9-2.9-2.45-5.55-4.52-7.78a1.94 1.94 0 0 0-2.2-.45l-2.8 1.24c-.29.13-.6.2-.92.2a2.34 2.34 0 0 1-2.32-2.09l-.34-3.06a1.94 1.94 0 0 0-1.5-1.68c-1.47-.33-2.97-.5-4.47-.52-1.52.02-3.02.2-4.5.52a1.93 1.93 0 0 0-1.5 1.68l-.34 3.06a2.35 2.35 0 0 1-3.26 1.9l-2.8-1.24a1.94 1.94 0 0 0-2.2.45 20.35 20.35 0 0 0-4.51 7.78 1.94 1.94 0 0 0 .7 2.13l2.49 1.84a2.34 2.34 0 0 1 0 3.77l-2.5 1.83a1.94 1.94 0 0 0-.7 2.14c.91 2.9 2.45 5.56 4.52 7.78a1.9 1.9 0 0 0 1.41.62c.27 0 .53-.06.78-.16l2.82-1.24a2.34 2.34 0 0 1 3.25 1.88l.34 3.06a1.94 1.94 0 0 0 1.47 1.67Zm8.06-2.35c-2.34.5-4.76.5-7.1 0l-.3-2.66a4.84 4.84 0 0 0-4.8-4.3h-.02c-.66 0-1.31.13-1.92.4l-2.45 1.07a17.84 17.84 0 0 1-3.56-6.14l2.17-1.6a4.84 4.84 0 0 0 0-7.8L7.4 18.5a17.85 17.85 0 0 1 3.56-6.13l2.44 1.07a4.85 4.85 0 0 0 6.75-3.9l.3-2.67c1.17-.23 2.36-.36 3.56-.37 1.19.01 2.37.14 3.53.37l.3 2.66a4.83 4.83 0 0 0 6.75 3.9l2.43-1.07a17.83 17.83 0 0 1 3.56 6.15l-2.16 1.59a4.83 4.83 0 0 0 0 7.8l2.17 1.6a17.88 17.88 0 0 1-3.56 6.14l-2.44-1.07a4.82 4.82 0 0 0-6.75 3.9l-.3 2.66Z\"]);\nexport const SettingsChat20Filled = /*#__PURE__*/createFluentIcon('SettingsChat20Filled', \"20\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32-.07.06a5.5 5.5 0 0 0-4.35.32 2 2 0 1 0-2.34 2.34 5.48 5.48 0 0 0-.13 4.81l-.43 1.4-.05.27a8.48 8.48 0 0 1-.79-.13.5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm8.1 11.12a.4.4 0 0 0 .52.48l1.79-.54A4.5 4.5 0 1 0 14.5 10a4.49 4.49 0 0 0-2.72.92 4.48 4.48 0 0 0-1.21 5.77l-.55 1.78v.03ZM14.5 15a.5.5 0 0 1 0 1h-2a.5.5 0 1 1 0-1h2Zm-2-2h4a.5.5 0 1 1 0 1h-4a.5.5 0 1 1 0-1Z\"]);\nexport const SettingsChat20Regular = /*#__PURE__*/createFluentIcon('SettingsChat20Regular', \"20\", [\"M1.91 7.38A8.5 8.5 0 0 1 3.7 4.3a.5.5 0 0 1 .54-.13l1.92.68a1 1 0 0 0 1.32-.76l.36-2a.5.5 0 0 1 .4-.4 8.53 8.53 0 0 1 3.55 0c.2.04.35.2.38.4l.37 2a1 1 0 0 0 1.32.76l1.92-.68a.5.5 0 0 1 .54.13 8.5 8.5 0 0 1 1.78 3.08c.06.2 0 .4-.15.54l-1.56 1.32-.07.06c-.33-.11-.68-.2-1.04-.25a2 2 0 0 1 .47-.57l1.29-1.1a7.5 7.5 0 0 0-1.25-2.16l-1.6.58a2 2 0 0 1-2.63-1.53l-.3-1.67a7.55 7.55 0 0 0-2.5 0l-.3 1.67A2 2 0 0 1 5.81 5.8l-1.6-.58a7.5 7.5 0 0 0-1.24 2.16l1.3 1.1a2 2 0 0 1 0 3.04l-1.3 1.1c.3.79.72 1.51 1.25 2.16l1.6-.58a2 2 0 0 1 2.63 1.53l.3 1.67.53.07-.22.7-.05.27a8.48 8.48 0 0 1-.79-.13.5.5 0 0 1-.39-.4l-.36-2a1 1 0 0 0-1.32-.76l-1.92.68a.5.5 0 0 1-.54-.13 8.5 8.5 0 0 1-1.78-3.08.5.5 0 0 1 .15-.54l1.56-1.32a1 1 0 0 0 0-1.52L2.06 7.92a.5.5 0 0 1-.15-.54Zm8.1 11.12a.4.4 0 0 0 .52.48l1.79-.54a4.5 4.5 0 1 0 .13-7.94 4.48 4.48 0 0 0-1.89 6.19l-.24.8-.3.98v.03ZM14.5 15a.5.5 0 0 1 0 1h-2a.5.5 0 1 1 0-1h2Zm2-1h-4a.5.5 0 1 1 0-1h4a.5.5 0 1 1 0 1ZM10 7.5a2.5 2.5 0 0 1 2.43 1.9c-.33.14-.64.3-.93.5a1.5 1.5 0 1 0-1.6 1.6c-.2.29-.36.6-.5.93A2.5 2.5 0 0 1 10 7.5Z\"]);\nexport const SettingsChat24Filled = /*#__PURE__*/createFluentIcon('SettingsChat24Filled', \"24\", [\"M14.2 2.5c-.72-.16-1.45-.24-2.19-.25-.75 0-1.48.1-2.2.25a.75.75 0 0 0-.58.65l-.17 1.53A1.39 1.39 0 0 1 7.13 5.8l-1.4-.62a.75.75 0 0 0-.85.17 9.8 9.8 0 0 0-2.2 3.8c-.1.3 0 .63.27.82l1.24.92a1.38 1.38 0 0 1 0 2.22l-1.24.92a.75.75 0 0 0-.28.82 9.8 9.8 0 0 0 2.2 3.8c.23.23.57.3.86.18l1.4-.62a1.38 1.38 0 0 1 1.93 1.11l.17 1.52c.03.32.26.58.57.65.45.1.91.18 1.37.22l.45-1.45a6.48 6.48 0 0 1-.1-5.3 3 3 0 1 1 3.44-3.45 6.48 6.48 0 0 1 4.49-.21c.09-.16.21-.3.37-.41l1.24-.92a.75.75 0 0 0 .27-.82 9.8 9.8 0 0 0-2.2-3.8.75.75 0 0 0-.86-.17l-1.4.61a1.38 1.38 0 0 1-1.93-1.12l-.16-1.52a.75.75 0 0 0-.59-.65Zm5.08 9.8A5.49 5.49 0 0 0 12 17.5c0 .97.25 1.88.69 2.67l-.67 2.19a.5.5 0 0 0 .63.62l2.18-.67a5.5 5.5 0 1 0 4.45-10.02ZM15.5 18h2a.5.5 0 1 1 0 1h-2a.5.5 0 1 1 0-1Zm4-1h-4a.5.5 0 1 1 0-1h4a.5.5 0 1 1 0 1Z\"]);\nexport const SettingsChat24Regular = /*#__PURE__*/createFluentIcon('SettingsChat24Regular', \"24\", [\"M12.01 2.25c.74 0 1.47.1 2.18.25.32.07.55.33.59.65l.17 1.53a1.38 1.38 0 0 0 1.92 1.11l1.4-.61c.3-.13.64-.06.85.17a9.8 9.8 0 0 1 2.2 3.8c.1.3 0 .63-.26.82l-1.24.92c-.16.1-.28.25-.37.4-.49-.15-1-.24-1.52-.28.19-.52.53-1 1-1.33l.8-.59a8.3 8.3 0 0 0-1.35-2.32l-.9.4a2.88 2.88 0 0 1-4.02-2.32l-.11-.98A9 9 0 0 0 12 3.75c-.45 0-.9.04-1.35.12l-.11.97a2.89 2.89 0 0 1-4.02 2.33l-.9-.4A8.3 8.3 0 0 0 4.28 9.1l.8.59a2.88 2.88 0 0 1 0 4.64l-.8.59a8.3 8.3 0 0 0 1.35 2.32l.9-.4a2.88 2.88 0 0 1 4.02 2.32l.1.99c.32.05.64.08.95.1l.02.02-.45 1.45a9.53 9.53 0 0 1-1.37-.22.75.75 0 0 1-.57-.65l-.17-1.52a1.38 1.38 0 0 0-1.93-1.11l-1.4.62a.75.75 0 0 1-.85-.18 9.8 9.8 0 0 1-2.2-3.8c-.1-.3 0-.63.27-.82l1.24-.92a1.38 1.38 0 0 0 0-2.22l-1.24-.92a.75.75 0 0 1-.28-.82 9.8 9.8 0 0 1 2.2-3.8c.23-.23.57-.3.86-.17l1.4.62c.4.17.86.15 1.25-.08.38-.22.63-.6.68-1.04l.17-1.53a.75.75 0 0 1 .58-.65c.72-.16 1.45-.24 2.2-.25Zm5.74 9.76a5.5 5.5 0 1 1-2.92 10.3l-2.18.67a.5.5 0 0 1-.63-.62l.67-2.2A5.5 5.5 0 0 1 17.75 12Zm-.25 6h-2a.5.5 0 0 0-.4.8c.1.12.24.2.4.2h2a.5.5 0 1 0 0-1Zm-2-1h4a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.36.83c.09.1.22.16.36.16ZM12 8.24c1.82 0 3.33 1.3 3.68 3-.5.16-.99.36-1.43.62a2.25 2.25 0 1 0-2.38 2.38c-.26.44-.46.92-.61 1.43A3.75 3.75 0 0 1 12 8.25Z\"]);\nexport const SettingsCogMultiple20Filled = /*#__PURE__*/createFluentIcon('SettingsCogMultiple20Filled', \"20\", [\"M8 2c-.37 0-.73.04-1.08.1a.5.5 0 0 0-.4.4l-.26 1.36c-.05.25-.3.4-.54.31l-1.3-.45a.5.5 0 0 0-.55.14A5.5 5.5 0 0 0 2.8 5.74c-.07.2-.01.4.14.54l1.05.9c.19.17.19.47 0 .63l-1.05.91a.5.5 0 0 0-.14.54c.23.7.6 1.34 1.08 1.88.14.15.35.2.54.14l1.3-.45c.25-.08.5.06.55.31l.27 1.36c.03.2.19.35.39.4a5.52 5.52 0 0 0 2.17 0 .5.5 0 0 0 .4-.4l.25-1.36c.05-.25.3-.4.55-.31l1.3.45c.19.06.4 0 .54-.14a5.5 5.5 0 0 0 1.08-1.89.5.5 0 0 0-.14-.53l-1.04-.9a.42.42 0 0 1 0-.63l1.04-.9a.5.5 0 0 0 .14-.54 5.5 5.5 0 0 0-1.08-1.89.5.5 0 0 0-.54-.14l-1.3.45a.42.42 0 0 1-.55-.31L9.48 2.5a.5.5 0 0 0-.4-.4C8.75 2.05 8.39 2 8 2ZM6.5 7.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Zm4.66 4.95a.46.46 0 0 1 .53-.15l.8.27c.26.1.54-.07.6-.34l.15-.83c.04-.2.2-.36.4-.38a3.55 3.55 0 0 1 .72 0c.2.02.35.18.4.38l.15.83c.06.27.34.43.6.34l.8-.27c.19-.07.4-.02.52.15.14.2.27.4.36.62.09.19.03.4-.13.53l-.64.56c-.2.18-.2.5 0 .68l.64.56c.16.13.22.34.13.53-.1.22-.22.43-.36.62a.46.46 0 0 1-.52.15l-.8-.27a.45.45 0 0 0-.6.34l-.16.83c-.04.2-.19.36-.4.38a3.55 3.55 0 0 1-.71 0 .46.46 0 0 1-.4-.38l-.16-.83a.45.45 0 0 0-.6-.34l-.8.27c-.18.07-.4.02-.52-.15a3.5 3.5 0 0 1-.36-.62.46.46 0 0 1 .13-.53l.64-.56c.21-.18.21-.5 0-.68l-.64-.56a.46.46 0 0 1-.13-.53c.1-.22.22-.43.36-.62ZM15 14.5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const SettingsCogMultiple20Regular = /*#__PURE__*/createFluentIcon('SettingsCogMultiple20Regular', \"20\", [\"m7.44 3.03-.2 1.02A1.42 1.42 0 0 1 5.4 5.12l-.98-.34c-.22.3-.41.62-.56.97l.78.68c.65.56.65 1.57 0 2.14l-.78.68c.15.35.34.67.56.97l.98-.34c.82-.28 1.7.23 1.85 1.07l.2 1.02a4.55 4.55 0 0 0 1.13 0l.2-1.02a1.42 1.42 0 0 1 1.84-1.07l.98.34c.22-.3.41-.63.56-.98l-.78-.67a1.42 1.42 0 0 1 0-2.14l.78-.67a4.5 4.5 0 0 0-.56-.98l-.98.34a1.42 1.42 0 0 1-1.85-1.07l-.2-1.01a4.55 4.55 0 0 0-1.12 0Zm-.52-.92a5.52 5.52 0 0 1 2.17 0c.2.04.35.2.4.4l.25 1.35c.05.25.3.4.55.31l1.3-.45a.5.5 0 0 1 .54.14 5.5 5.5 0 0 1 1.08 1.89c.07.19.01.4-.14.53l-1.04.9c-.2.17-.2.47 0 .63l1.04.9a.5.5 0 0 1 .14.54 5.5 5.5 0 0 1-1.08 1.89.5.5 0 0 1-.54.14l-1.3-.45a.42.42 0 0 0-.55.31l-.26 1.36a.5.5 0 0 1-.4.4 5.52 5.52 0 0 1-2.16 0 .5.5 0 0 1-.4-.4l-.26-1.36a.42.42 0 0 0-.54-.31l-1.3.45a.5.5 0 0 1-.55-.14A5.5 5.5 0 0 1 2.8 9.26a.5.5 0 0 1 .14-.54l1.05-.9c.19-.17.19-.47 0-.63l-1.05-.91a.5.5 0 0 1-.14-.54c.23-.7.6-1.34 1.08-1.88a.5.5 0 0 1 .54-.14l1.3.45c.25.08.5-.06.55-.31l.27-1.36a.5.5 0 0 1 .39-.4Zm4.77 10.19a.46.46 0 0 0-.53.15c-.14.2-.26.4-.36.62-.08.19-.02.4.13.53l.64.56c.21.18.21.5 0 .68l-.64.56a.46.46 0 0 0-.13.53c.1.22.22.43.36.62.12.17.34.22.53.15l.8-.27c.26-.1.54.07.6.34l.15.83c.04.2.2.36.4.38a3.56 3.56 0 0 0 .72 0c.2-.02.35-.18.4-.38l.15-.83a.45.45 0 0 1 .6-.34l.8.27c.19.07.4.02.52-.15.14-.2.27-.4.36-.62a.46.46 0 0 0-.13-.53l-.64-.56a.45.45 0 0 1 0-.68l.64-.56a.46.46 0 0 0 .13-.53 3.5 3.5 0 0 0-.36-.62.46.46 0 0 0-.52-.15l-.8.27a.45.45 0 0 1-.6-.34l-.16-.83a.46.46 0 0 0-.4-.38 3.55 3.55 0 0 0-.71 0 .46.46 0 0 0-.4.38l-.16.83a.45.45 0 0 1-.6.34l-.8-.27ZM14 15.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-7-8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z\"]);\nexport const SettingsCogMultiple24Filled = /*#__PURE__*/createFluentIcon('SettingsCogMultiple24Filled', \"24\", [\"M9 2c-.47 0-.93.05-1.38.14-.3.06-.53.29-.59.59l-.36 1.86a.25.25 0 0 1-.32.19l-1.8-.62a.75.75 0 0 0-.8.21 7 7 0 0 0-1.38 2.4c-.1.28-.02.6.21.8L4.02 8.8c.11.1.11.28 0 .38l-1.44 1.24a.75.75 0 0 0-.21.8 7 7 0 0 0 1.38 2.4c.2.23.52.31.8.21l1.8-.62c.14-.05.3.04.32.2l.36 1.85c.06.3.3.54.6.6a7.03 7.03 0 0 0 2.76 0c.3-.07.53-.3.58-.6l.36-1.86a.25.25 0 0 1 .33-.19l1.79.62c.28.1.6.02.8-.21a7 7 0 0 0 1.39-2.4c.1-.29 0-.6-.22-.8l-1.43-1.24a.25.25 0 0 1 0-.38l1.43-1.24c.23-.2.31-.51.22-.8a7 7 0 0 0-1.39-2.4.75.75 0 0 0-.8-.21l-1.79.62a.25.25 0 0 1-.33-.2l-.36-1.85a.75.75 0 0 0-.58-.6A7.03 7.03 0 0 0 9 2ZM7.25 9a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Zm6.16 5.78a.47.47 0 0 1 .53-.15l1.26.44c.26.09.54-.07.6-.34l.25-1.31c.04-.2.2-.36.4-.39a4.54 4.54 0 0 1 1.1 0c.2.03.36.19.4.39l.26 1.3c.05.28.33.44.59.35l1.26-.44c.2-.06.4 0 .53.15.22.3.41.62.56.97.08.19.02.4-.14.53l-1 .88c-.21.18-.21.5 0 .68l1 .88c.16.13.22.34.14.53a4.5 4.5 0 0 1-.56.97.47.47 0 0 1-.53.15l-1.26-.44a.45.45 0 0 0-.6.34l-.25 1.31c-.04.2-.2.36-.4.39a4.53 4.53 0 0 1-1.1 0 .47.47 0 0 1-.4-.39l-.26-1.3a.45.45 0 0 0-.59-.35l-1.26.44c-.2.06-.4 0-.53-.15a4.5 4.5 0 0 1-.56-.97.47.47 0 0 1 .14-.53l1-.88c.21-.18.21-.5 0-.68l-1-.88a.47.47 0 0 1-.14-.53c.15-.35.34-.67.56-.97Zm4.84 2.72a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0Z\"]);\nexport const SettingsCogMultiple24Regular = /*#__PURE__*/createFluentIcon('SettingsCogMultiple24Regular', \"24\", [\"m8.4 3.53-.25 1.34a1.75 1.75 0 0 1-2.3 1.32l-1.29-.44a5.5 5.5 0 0 0-.6 1.03l1.04.9c.8.7.8 1.94 0 2.64l-1.03.9c.16.37.36.71.6 1.03l1.29-.44c1-.35 2.08.27 2.29 1.32l.26 1.34c.39.04.8.04 1.2 0l.25-1.34a1.75 1.75 0 0 1 2.29-1.32l1.29.44c.23-.32.43-.67.6-1.04L13 10.32c-.8-.7-.8-1.94 0-2.64l1.03-.9a5.5 5.5 0 0 0-.6-1.03l-1.29.44c-1 .35-2.09-.27-2.29-1.32L9.6 3.53c-.39-.04-.8-.04-1.2 0Zm-.78-1.4a7.03 7.03 0 0 1 2.77 0c.3.07.53.3.58.6l.36 1.86c.03.15.19.24.33.19l1.79-.62c.28-.1.6-.02.8.21a7 7 0 0 1 1.39 2.4c.1.29 0 .6-.22.8l-1.43 1.24a.25.25 0 0 0 0 .38l1.43 1.24c.23.2.31.51.22.8a7 7 0 0 1-1.39 2.4.75.75 0 0 1-.8.21l-1.79-.62a.25.25 0 0 0-.33.2l-.36 1.85a.75.75 0 0 1-.58.6 7.03 7.03 0 0 1-2.77 0 .75.75 0 0 1-.59-.6l-.36-1.86a.25.25 0 0 0-.32-.19l-1.8.62c-.28.1-.6.02-.8-.21a7 7 0 0 1-1.38-2.4.75.75 0 0 1 .21-.8L4.02 9.2a.25.25 0 0 0 0-.38L2.58 7.57a.75.75 0 0 1-.21-.8 7 7 0 0 1 1.38-2.4c.2-.23.52-.31.8-.21l1.8.62c.14.05.3-.04.32-.2l.36-1.85c.06-.3.3-.53.6-.6Zm6.32 12.5a.47.47 0 0 0-.53.15c-.22.3-.41.62-.56.97-.08.19-.02.4.14.53l1 .88c.21.18.21.5 0 .68l-1 .88a.47.47 0 0 0-.14.53c.15.35.34.67.56.97.12.16.34.21.53.15l1.26-.44c.26-.09.54.07.6.34l.25 1.31c.04.2.2.36.4.39a4.53 4.53 0 0 0 1.1 0c.2-.03.36-.19.4-.39l.26-1.3a.45.45 0 0 1 .59-.35l1.26.44c.2.06.4 0 .53-.15.22-.3.41-.62.56-.97a.47.47 0 0 0-.14-.53l-1-.88a.45.45 0 0 1 0-.68l1-.88a.47.47 0 0 0 .14-.53 4.5 4.5 0 0 0-.56-.97.47.47 0 0 0-.53-.15l-1.26.44a.45.45 0 0 1-.6-.34l-.25-1.31a.47.47 0 0 0-.4-.39 4.53 4.53 0 0 0-1.1 0 .47.47 0 0 0-.4.39l-.26 1.3a.45.45 0 0 1-.59.35l-1.26-.44ZM17 18.75a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5ZM8 9a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z\"]);\nexport const ShapeExclude16Filled = /*#__PURE__*/createFluentIcon('ShapeExclude16Filled', \"16\", [\"M3 2.27A2 2 0 0 0 2 4v5c0 1.1.9 2 2 2h1v1c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2H4a2 2 0 0 0-1 .27ZM11 5v4a2 2 0 0 1-2 2H5V7c0-1.1.9-2 2-2h4Z\"]);\nexport const ShapeExclude16Regular = /*#__PURE__*/createFluentIcon('ShapeExclude16Regular', \"16\", [\"M2 4c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-1H4a2 2 0 0 1-2-2V4Zm1 2.56v1.58L8.14 3H6.56L3 6.56ZM5.14 3H4a1 1 0 0 0-1 1v1.14L5.14 3Zm4.31.1L7.55 5H9.3l.71-.7V4a1 1 0 0 0-.55-.9ZM5 7.57 3.1 9.45A1 1 0 0 0 4 10h.3l.7-.7V7.55ZM11.7 13h.3a1 1 0 0 0 1-1v-.3L11.7 13Zm1.3-2.7V8.7L8.7 13h1.6l2.7-2.7Zm0-3V7a1 1 0 0 0-.45-.84L11 7.71V9c0 .1 0 .21-.03.32L13 7.29Zm-3.68 3.67C9.22 11 9.1 11 9 11H7.7l-1.54 1.55A1 1 0 0 0 7 13h.3l2.02-2.03ZM6 7v3h3a1 1 0 0 0 1-1V6H7a1 1 0 0 0-1 1Z\"]);\nexport const ShapeExclude20Filled = /*#__PURE__*/createFluentIcon('ShapeExclude20Filled', \"20\", [\"M2 10.5v-6A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7H9.5A2.5 2.5 0 0 0 7 9.5V13H4.5A2.5 2.5 0 0 1 2 10.5ZM7 13v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13v3.5a2.5 2.5 0 0 1-2.5 2.5H7Z\"]);\nexport const ShapeExclude20Regular = /*#__PURE__*/createFluentIcon('ShapeExclude20Regular', \"20\", [\"M2 10.53V4.5A2.5 2.5 0 0 1 4.5 2h6.06A2.49 2.49 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6.22A2.5 2.5 0 0 1 15.5 18h-6A2.5 2.5 0 0 1 7 15.5V13H4.5a2.52 2.52 0 0 1-2.09-1.12c-.25-.38-.4-.84-.4-1.32L2 10.53ZM12 8H9.5C8.67 8 8 8.67 8 9.5V12h2.5c.83 0 1.5-.67 1.5-1.5V8ZM3 9.56v.94c0 .23.05.45.15.65l8-8A1.5 1.5 0 0 0 10.5 3h-.94L3 9.56ZM8.14 3H6.56L3 6.56v1.58L8.14 3ZM3 5.14 5.14 3H4.5C3.67 3 3 3.67 3 4.5v.64Zm8.85-1.29L8.5 7.21c.3-.14.64-.21 1-.21h.8L12 5.3v-.8c0-.23-.05-.45-.15-.65ZM7.21 8.5l-3.36 3.35c.2.1.42.15.65.15h.8L7 10.3v-.8c0-.36.07-.7.2-1ZM8 13.7v1.6l2.3-2.3H8.7l-.7.7Zm5-3.4L15.3 8h-1.6l-.7.7v1.6Zm3.4-2-8.1 8.1c.24.32.6.53 1 .59L17 9.3a1.5 1.5 0 0 0-.59-1Zm.6 2.4L10.7 17h1.6l4.7-4.7v-1.6Zm0 3L13.7 17h1.6l1.7-1.7v-1.6Z\"]);\nexport const ShapeExclude24Filled = /*#__PURE__*/createFluentIcon('ShapeExclude24Filled', \"24\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v8c0 1.8 1.46 3.25 3.25 3.25H7.5v2.25c0 1.8 1.46 3.25 3.25 3.25h8c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25H16.5V5.25c0-1.8-1.46-3.25-3.25-3.25h-8ZM16.5 7.5v5.75c0 1.8-1.46 3.25-3.25 3.25H7.5v-5.75c0-1.8 1.46-3.25 3.25-3.25h5.75Z\"]);\nexport const ShapeExclude24Regular = /*#__PURE__*/createFluentIcon('ShapeExclude24Regular', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h8a3.3 3.3 0 0 1 1.82.56 3.27 3.27 0 0 1 1.42 2.4l.01.29V7.5h2.25A3.24 3.24 0 0 1 22 10.75v8c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25V16.5H5.25a3.28 3.28 0 0 1-1.7-.48h-.02a3.27 3.27 0 0 1-1.52-2.47l-.01-.3v-8Zm1.5 2.81v1.88L9.94 3.5H8.06L3.5 8.06ZM5.94 3.5h-.69c-.97 0-1.75.78-1.75 1.75v.69L5.94 3.5Zm6.12 0L3.5 12.06v1.19c0 .2.04.4.1.59L7.64 9.8A3.26 3.26 0 0 1 9.8 7.64l4.04-4.04c-.19-.06-.38-.1-.59-.1h-1.19Zm2.84 1.16L12.06 7.5h1.88L15 6.44V5.25c0-.2-.04-.4-.1-.59Zm-7.4 7.4L4.66 14.9c.19.06.38.1.59.1h1.19l1.06-1.06v-1.88Zm1.5 6.5v.19c0 .47.18.9.48 1.2l3.46-3.45h-1.88L9 18.56Zm7.5-5.62 3.46-3.46c-.32-.3-.74-.48-1.21-.48h-.19l-2.06 2.06v1.88Zm4-1.88-9.44 9.44h1.88l7.56-7.56v-1.88Zm0 4-5.44 5.44h1.88l3.56-3.56v-1.88Zm-.03 4.03a1.75 1.75 0 0 1-1.38 1.38l1.38-1.38ZM9 10.75V15h4.25c.97 0 1.75-.78 1.75-1.75V9h-4.25C9.78 9 9 9.78 9 10.75Z\"]);\nexport const ShapeIntersect16Filled = /*#__PURE__*/createFluentIcon('ShapeIntersect16Filled', \"16\", [\"M2 4c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-1H4a2 2 0 0 1-2-2V4Zm8 0a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h1V7c0-1.1.9-2 2-2h3V4Zm-4 7v1a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1v3a2 2 0 0 1-2 2H6Z\"]);\nexport const ShapeIntersect16Regular = /*#__PURE__*/createFluentIcon('ShapeIntersect16Regular', \"16\", [\"M2 4c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-1H4a2 2 0 0 1-2-2V4Zm8 0a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h1V7c0-1.1.9-2 2-2h3V4ZM6 9.7v.3h1.3L10 7.3V6h-.3L6 9.7ZM8.3 6H7a1 1 0 0 0-1 1v1.3L8.3 6ZM11 9a2.01 2.01 0 0 1-1.68 1.97C9.22 11 9.1 11 9 11H6v1a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-1v3Zm-2.3 1H9a1 1 0 0 0 1-1v-.3L8.7 10Z\"]);\nexport const ShapeIntersect20Filled = /*#__PURE__*/createFluentIcon('ShapeIntersect20Filled', \"20\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6ZM7 12V9.5A2.5 2.5 0 0 1 9.5 7H12V4.5c0-.83-.67-1.5-1.5-1.5h-6C3.67 3 3 3.67 3 4.5v6c0 .83.67 1.5 1.5 1.5H7Zm1 1v2.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5H13v2.5a2.5 2.5 0 0 1-2.5 2.5H8Z\"]);\nexport const ShapeIntersect20Regular = /*#__PURE__*/createFluentIcon('ShapeIntersect20Regular', \"20\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h6A2.5 2.5 0 0 1 13 4.5V7h2.5A2.5 2.5 0 0 1 18 9.5v6a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 7 15.5V13H4.5A2.5 2.5 0 0 1 2 10.5v-6Zm10 0c0-.83-.67-1.5-1.5-1.5h-6C3.67 3 3 3.67 3 4.5v6c0 .83.67 1.5 1.5 1.5H7V9.5A2.5 2.5 0 0 1 9.5 7H12V4.5Zm-4 6.2V12h.3L12 8.3V8h-1.3L8 10.7Zm.02-1.42 1.26-1.26a1.5 1.5 0 0 0-1.26 1.26ZM13 8v2.5a2.5 2.5 0 0 1-2.5 2.5H8v2.5c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-6c0-.83-.67-1.5-1.5-1.5H13Zm-3.3 4h.8c.83 0 1.5-.67 1.5-1.5v-.8L9.7 12Z\"]);\nexport const ShapeIntersect24Filled = /*#__PURE__*/createFluentIcon('ShapeIntersect24Filled', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h8c1.8 0 3.25 1.46 3.25 3.25V7.5h2.25c1.8 0 3.25 1.46 3.25 3.25v8c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25V16.5H5.25A3.25 3.25 0 0 1 2 13.25v-8Zm13 0c0-.97-.78-1.75-1.75-1.75h-8c-.97 0-1.75.78-1.75 1.75v8c0 .97.78 1.75 1.75 1.75H7.5v-4.25a3.23 3.23 0 0 1 3.25-3.25H15V5.25Zm1 9.73A3.38 3.38 0 0 1 14.98 16c-.5.32-1.1.5-1.73.5H9v2.25c0 .97.78 1.75 1.75 1.75h8c.97 0 1.75-.78 1.75-1.75v-8c0-.97-.78-1.75-1.75-1.75H16.5v4.25c0 .64-.18 1.23-.5 1.73Z\"]);\nexport const ShapeIntersect24Regular = /*#__PURE__*/createFluentIcon('ShapeIntersect24Regular', \"24\", [\"M2 5.25C2 3.45 3.46 2 5.25 2h8c1.8 0 3.25 1.46 3.25 3.25V7.5h2.25c1.8 0 3.25 1.46 3.25 3.25v8c0 1.8-1.46 3.25-3.25 3.25h-8a3.25 3.25 0 0 1-3.25-3.25V16.5H5.25A3.25 3.25 0 0 1 2 13.25v-8Zm13 0c0-.97-.78-1.75-1.75-1.75h-8c-.97 0-1.75.78-1.75 1.75v8c0 .97.78 1.75 1.75 1.75H7.5v-4.25a3.25 3.25 0 0 1 3.25-3.25H15V5.25Zm-6 9.31V15h1.44L15 10.44V9h-.44L9 14.56ZM12.44 9h-1.69l-.2.01L9 10.55l-.01.2v1.69L12.44 9Zm4.06 0v4.25c0 1.8-1.46 3.25-3.25 3.25H9v2.25c0 .97.78 1.75 1.75 1.75h8c.97 0 1.75-.78 1.75-1.75v-8c0-.97-.78-1.75-1.75-1.75H16.5Zm-3.94 6h.69c.97 0 1.75-.78 1.75-1.75v-.69L12.56 15Z\"]);\nexport const ShapeOrganic16Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic16Filled', \"16\", [\"M11.95 6.07c-.35-.27-.76-.81-.76-1.97 0-1.62-1.2-2.4-2.2-2.75A6.6 6.6 0 0 0 6.96 1c-1.56 0-2.74.48-3.62 1.23a6.17 6.17 0 0 0-1.75 2.65A10.38 10.38 0 0 0 1 8.3c-.02 2.14.66 4.5 2.62 5.64 1.55.9 3.55 1.06 5.42 1.06 1.73 0 3.23-.28 4.3-1.05 1.1-.8 1.66-2.05 1.66-3.78 0-1.6-.52-2.56-1.1-3.12a2.79 2.79 0 0 0-.8-.53c-.4-.18-.8-.18-1.15-.45Z\"]);\nexport const ShapeOrganic16Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic16Regular', \"16\", [\"M13.1 6.52c-.22-.1-.43-.12-.65-.2a1.64 1.64 0 0 1-.5-.25c-.35-.27-.76-.81-.76-1.97 0-1.62-1.19-2.4-2.2-2.75A6.49 6.49 0 0 0 6.96 1a5.7 5.7 0 0 0-3.6 1.12 5.68 5.68 0 0 0-1.77 2.45 8.87 8.87 0 0 0-.55 2.37C.82 9.3 1.3 12.08 3.3 13.6 4.72 14.67 6.6 15 8.5 15c1.73 0 3.35-.28 4.54-1.03a4.21 4.21 0 0 0 1.96-3.8c0-1.6-.52-2.56-1.1-3.12a2.79 2.79 0 0 0-.8-.53ZM3.9 12.8C2.39 11.64 1.99 9.54 2 7.73a8.28 8.28 0 0 1 .52-2.8c.3-.75.75-1.48 1.45-2.02a5.1 5.1 0 0 1 4.7-.61c.84.3 1.52.82 1.52 1.8 0 1.44.54 2.29 1.15 2.76.56.43 1.34.41 1.86.92 1.47 1.4.92 4.32-.7 5.34-.95.6-2.34.88-4 .88-1.82 0-3.44-.32-4.6-1.2Z\"]);\nexport const ShapeOrganic20Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic20Filled', \"20\", [\"M14.5 7.83c.42.32.89.33 1.35.53.25.1.57.3.9.6.66.63 1.25 1.72 1.25 3.54a4.73 4.73 0 0 1-2.54 4.33C13.97 17.68 12 18 10 18c-2.19 0-4.21-.38-5.68-1.62-1.91-1.6-2.35-4.35-2.32-6.7 0-.66.09-2.12.67-3.61.4-1 1.02-2.02 2.01-2.8A6.65 6.65 0 0 1 8.86 2c.25 0 1.23.05 2.26.4 1.15.4 2.48 1.28 2.48 3.1 0 1.36.49 2 .9 2.33Z\"]);\nexport const ShapeOrganic20Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic20Regular', \"20\", [\"M14.5 7.83c.42.32.89.33 1.35.53.25.1.57.3.9.6.66.63 1.25 1.72 1.25 3.54a4.73 4.73 0 0 1-2.54 4.33C13.97 17.68 12 18 10 18c-2.19 0-4.21-.38-5.68-1.62-1.91-1.6-2.35-4.35-2.32-6.7 0-.66.09-2.12.67-3.61.4-1 1.02-2.02 2.01-2.8A6.65 6.65 0 0 1 8.86 2c.25 0 1.23.05 2.26.4 1.15.4 2.48 1.28 2.48 3.1 0 1.36.49 2 .9 2.33Zm-9.54 7.79C6.16 16.62 7.89 17 10 17c1.92 0 3.7-.31 4.97-1.04 2.04-1.15 2.93-4.5 1.09-6.27a2.14 2.14 0 0 0-.62-.42c-.5-.22-1.1-.3-1.54-.65-.69-.53-1.3-1.48-1.3-3.12 0-1.18-.82-1.8-1.81-2.15A6.94 6.94 0 0 0 8.96 3 5.59 5.59 0 0 0 5.3 4.07a5.48 5.48 0 0 0-1.7 2.36A9.62 9.62 0 0 0 3 9.68c-.02 2.1.26 4.5 1.96 5.94Z\"]);\nexport const ShapeOrganic24Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic24Filled', \"24\", [\"M16.85 8.95c-.35-.3-.85-.97-.85-2.6 0-1.07-.34-1.92-.88-2.56a4.6 4.6 0 0 0-1.85-1.29 7.36 7.36 0 0 0-2.53-.5 8.5 8.5 0 0 0-5.28 1.6 8.12 8.12 0 0 0-2.6 3.5 12.4 12.4 0 0 0-.8 3.38c-.33 3.35.4 7.27 3.2 9.44 2 1.56 4.7 2.08 7.5 2.08 2.57 0 4.87-.57 6.54-1.82a6.68 6.68 0 0 0 2.7-5.62 5.05 5.05 0 0 0-3.7-5.14c-.47-.15-1.05-.14-1.45-.47Z\"]);\nexport const ShapeOrganic24Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic24Regular', \"24\", [\"M16.85 8.95c-.35-.3-.85-.97-.85-2.6 0-1.07-.34-1.92-.88-2.56a4.6 4.6 0 0 0-1.85-1.29 7.36 7.36 0 0 0-2.53-.5 8.5 8.5 0 0 0-5.28 1.6 8.12 8.12 0 0 0-2.6 3.5 12.4 12.4 0 0 0-.8 3.38c-.33 3.35.4 7.27 3.2 9.44 2 1.56 4.7 2.08 7.5 2.08 2.57 0 4.87-.57 6.54-1.82a6.68 6.68 0 0 0 2.7-5.62 5.05 5.05 0 0 0-3.7-5.14c-.47-.15-1.05-.14-1.45-.47ZM6.17 18.73c-2.4-1.86-2.9-5.25-2.61-8.1.08-.82.27-1.9.7-2.97a6.63 6.63 0 0 1 2.1-2.87 6.98 6.98 0 0 1 6.35-.9c.5.2.94.48 1.26.86.3.37.53.87.53 1.6 0 1.97.62 3.12 1.4 3.75.37.31.75.47 1.04.56.3.08.62.1.92.2.3.09.7.25 1.1.51 2.6 1.75 1.68 5.96-.55 7.6-1.33 1-3.28 1.53-5.66 1.53-2.65 0-4.95-.5-6.58-1.77Z\"]);\nexport const ShapeOrganic28Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic28Filled', \"28\", [\"M21.88 11.06c.45.15 1.06.4 1.67.85 1.25.9 2.45 2.5 2.45 5.26 0 3-1.38 5.24-3.56 6.7-2.16 1.46-5.07 2.13-8.19 2.13-3.39 0-6.48-.61-8.72-2.48-2.85-2.38-3.57-6.44-3.53-9.97A15.6 15.6 0 0 1 3.05 8.1a9.75 9.75 0 0 1 3.1-4.2 10.44 10.44 0 0 1 9.48-1.31c.79.3 1.63.77 2.27 1.51a4.48 4.48 0 0 1 1.08 3.03c0 2.04.63 2.91 1.1 3.3.5.41 1.2.42 1.8.62Z\"]);\nexport const ShapeOrganic28Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic28Regular', \"28\", [\"M21.88 11.06c.45.15 1.06.4 1.67.85 1.25.9 2.45 2.5 2.45 5.26 0 3-1.38 5.24-3.56 6.7-2.16 1.46-5.07 2.13-8.19 2.13-3.39 0-6.48-.61-8.72-2.48-2.85-2.38-3.57-6.44-3.53-9.97A15.6 15.6 0 0 1 3.05 8.1a9.75 9.75 0 0 1 3.1-4.2 10.44 10.44 0 0 1 9.48-1.31c.79.3 1.63.77 2.27 1.51a4.48 4.48 0 0 1 1.08 3.03c0 2.04.63 2.91 1.1 3.3.5.41 1.2.42 1.8.62ZM6.5 22.36c1.84 1.54 4.5 2.14 7.76 2.14 2.93 0 5.52-.64 7.35-1.87 2.91-1.95 4.35-7.15 1.08-9.5a4.74 4.74 0 0 0-1.27-.65c-.35-.11-.72-.14-1.07-.24a3.4 3.4 0 0 1-1.21-.64c-.9-.74-1.65-2.1-1.65-4.46 0-.91-.3-1.56-.71-2.04A4.16 4.16 0 0 0 15.09 4a7.93 7.93 0 0 0-2.6-.5c-2.44 0-4.18.66-5.43 1.61a8.26 8.26 0 0 0-2.62 3.57 13.47 13.47 0 0 0-.94 4.88c-.03 3.1.47 6.7 3 8.8Z\"]);\nexport const ShapeOrganic32Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic32Filled', \"32\", [\"M23.26 11.78c-.5-.41-1.22-1.38-1.22-3.7 0-1.52-.51-2.7-1.31-3.6A6.8 6.8 0 0 0 18 2.7a11.45 11.45 0 0 0-3.74-.7c-3.18 0-5.6.87-7.41 2.24a11.4 11.4 0 0 0-3.63 4.91c-.7 1.75-1 3.48-1.13 4.76-.45 4.6.3 10.08 4.04 13.2C8.75 29.28 12.36 30 16.29 30c3.62 0 7.01-.78 9.53-2.48A9.1 9.1 0 0 0 30 19.66c0-3.2-1.36-5.1-2.8-6.18-.7-.52-1.4-.83-1.91-1-.67-.23-1.47-.23-2.03-.7Z\"]);\nexport const ShapeOrganic32Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic32Regular', \"32\", [\"M23.26 11.78c-.5-.41-1.22-1.38-1.22-3.7 0-1.52-.51-2.7-1.31-3.6A6.8 6.8 0 0 0 18 2.7a11.45 11.45 0 0 0-3.74-.7c-3.18 0-5.6.87-7.41 2.24a11.4 11.4 0 0 0-3.63 4.91c-.7 1.75-1 3.48-1.13 4.76-.45 4.6.3 10.08 4.04 13.2C8.75 29.28 12.36 30 16.29 30c3.62 0 7.01-.78 9.53-2.48A9.1 9.1 0 0 0 30 19.66c0-3.2-1.36-5.1-2.8-6.18-.7-.52-1.4-.83-1.91-1-.67-.23-1.47-.23-2.03-.7ZM7.41 25.56c-3.22-2.68-3.72-7.52-3.33-11.45.11-1.17.38-2.7 1-4.21a9.4 9.4 0 0 1 2.98-4.06C9.48 4.76 11.46 4 14.26 4c.31 0 .63.03.94.07 1.43.18 3.04.62 4.04 1.74.47.53.8 1.24.8 2.27 0 2.76.88 4.36 1.95 5.25.53.43 1.05.65 1.45.77.4.11.8.14 1.2.27.38.13.88.35 1.37.72 3.64 2.7 1.97 8.58-1.3 10.77-2.1 1.4-5.05 2.14-8.42 2.14-3.75 0-6.79-.69-8.88-2.44Z\"]);\nexport const ShapeOrganic48Filled = /*#__PURE__*/createFluentIcon('ShapeOrganic48Filled', \"48\", [\"M39.65 20.43a11.3 11.3 0 0 0-2.95-1.4c-1.05-.32-2.15-.28-3.04-1.01-.78-.65-1.82-2.1-1.82-5.47a7.6 7.6 0 0 0-1.72-5.02A9.06 9.06 0 0 0 26.47 5a14.65 14.65 0 0 0-5.04-1c-3.52 0-7.34.8-10.53 3.18a16.2 16.2 0 0 0-5.16 6.98c-1 2.49-1.44 4.95-1.61 6.79-.67 6.73.74 14.52 6.35 18.89 4 3.1 9.4 4.16 15.04 4.16 5.18 0 9.79-1.16 13.12-3.63C42.04 37.87 44 34.1 44 29.2c0-4.6-2.15-7.28-4.35-8.76Z\"]);\nexport const ShapeOrganic48Regular = /*#__PURE__*/createFluentIcon('ShapeOrganic48Regular', \"48\", [\"M39.65 20.43a11.3 11.3 0 0 0-2.95-1.4c-1.05-.32-2.15-.28-3.04-1.01-.78-.65-1.82-2.1-1.82-5.47a7.6 7.6 0 0 0-1.72-5.02A9.06 9.06 0 0 0 26.47 5a14.65 14.65 0 0 0-5.04-1c-3.52 0-7.34.8-10.53 3.18a16.2 16.2 0 0 0-5.16 6.98c-1 2.49-1.44 4.95-1.61 6.79-.67 6.73.74 14.52 6.35 18.89 4 3.1 9.4 4.16 15.04 4.16 5.18 0 9.79-1.16 13.12-3.63C42.04 37.87 44 34.1 44 29.2c0-4.6-2.15-7.28-4.35-8.76ZM12.02 37.86C7.18 34.11 6.04 27 6.62 21.2c.16-1.68.55-3.9 1.44-6.1 2.29-5.67 7.33-8.59 13.37-8.59a12.16 12.16 0 0 1 4.12.82c1.02.41 1.96 1 2.65 1.81a5.1 5.1 0 0 1 1.14 3.42c0 3.92 1.24 6.17 2.73 7.4 1.21 1 2.48 1.03 3.9 1.47.63.2 1.46.53 2.28 1.08 5.44 3.66 3.57 12.42-1.1 15.86-2.76 2.05-6.77 3.14-11.63 3.14-5.4 0-10.13-1.02-13.5-3.64Z\"]);\nexport const ShapeSubtract16Filled = /*#__PURE__*/createFluentIcon('ShapeSubtract16Filled', \"16\", [\"M3 2.27A2 2 0 0 0 2 4v5a2.03 2.03 0 0 0 .38 1.18A2 2 0 0 0 4 11h1v1c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2H4a2 2 0 0 0-1 .27ZM6 7a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7Z\"]);\nexport const ShapeSubtract16Regular = /*#__PURE__*/createFluentIcon('ShapeSubtract16Regular', \"16\", [\"M4 2a2 2 0 0 0-2 2v5a2.03 2.03 0 0 0 .38 1.18A2 2 0 0 0 4 11h1v1c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2H4Zm1.14 1L3 5.14V4a1 1 0 0 1 1-1h1.14ZM3 6.56 6.56 3h1.58L3 8.14V6.56ZM9.45 3.1A1 1 0 0 1 10 4v.3l-.7.7H7.55l1.89-1.9ZM5 7.56v1.73l-.7.71H4a1 1 0 0 1-.9-.55L5 7.55ZM6 7a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7Z\"]);\nexport const ShapeSubtract20Filled = /*#__PURE__*/createFluentIcon('ShapeSubtract20Filled', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6ZM8 9.5C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);\nexport const ShapeSubtract20Regular = /*#__PURE__*/createFluentIcon('ShapeSubtract20Regular', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5V10.56c.01.48.16.94.41 1.32l.02.02A2.52 2.52 0 0 0 4.3 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5a2.52 2.52 0 0 0-.41-1.38l-.02-.02A2.51 2.51 0 0 0 10.51 2H4.5Zm.64 1L3 5.14V4.5C3 3.67 3.67 3 4.5 3h.64ZM3 6.56 6.56 3h1.58L3 8.14V6.56ZM9.56 3h.94c.23 0 .45.05.65.15l-8 8A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3Zm2.3.85c.09.2.14.42.14.65v.8L10.3 7h-.8c-.36 0-.7.07-1 .2l3.35-3.35ZM7.2 8.5c-.14.3-.21.64-.21 1v.8L5.3 12h-.8a1.5 1.5 0 0 1-.65-.15L7.21 8.5Zm.79 1C8 8.67 8.67 8 9.5 8h6c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 8 15.5v-6Z\"]);","import { createFluentIcon } from \"../utils/createFluentIcon\";\nexport const ShapeSubtract24Filled = /*#__PURE__*/createFluentIcon('ShapeSubtract24Filled', \"24\", [\"M3 2.9c-.62.6-1 1.43-1 2.35v8a3.3 3.3 0 0 0 .56 1.82 3.25 3.25 0 0 0 2.69 1.43H7.5v2.25c0 1.8 1.46 3.25 3.25 3.25h8c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25H16.5V5.25c0-1.8-1.46-3.25-3.25-3.25h-8c-.87 0-1.67.34-2.25.9Zm6 7.85C9 9.78 9.78 9 10.75 9h8c.97 0 1.75.78 1.75 1.75v8c0 .97-.78 1.75-1.75 1.75h-8c-.97 0-1.75-.78-1.75-1.75v-8Z\"]);\nexport const ShapeSubtract24Regular = /*#__PURE__*/createFluentIcon('ShapeSubtract24Regular', \"24\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v8a3.3 3.3 0 0 0 .56 1.82 3.27 3.27 0 0 0 2.4 1.42l.29.01H7.5v2.25c0 1.8 1.46 3.25 3.25 3.25h8c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25H16.5V5.25a3.28 3.28 0 0 0-1.54-2.77 3.29 3.29 0 0 0-1.7-.48H5.24Zm.69 1.5L3.5 5.94v-.69c0-.97.78-1.75 1.75-1.75h.69ZM3.5 8.06 8.06 3.5h1.88L3.5 9.94V8.06Zm8.56-4.56h1.19c.2 0 .4.04.59.1L9.8 7.64A3.26 3.26 0 0 0 7.64 9.8L3.6 13.84c-.06-.19-.1-.38-.1-.59v-1.19l8.56-8.56Zm2.84 1.16c.06.19.1.38.1.59v1.19L13.94 7.5h-1.88l2.84-2.84Zm-7.4 7.4v1.88L6.44 15H5.25c-.2 0-.4-.04-.59-.1l2.84-2.84ZM9 10.75C9 9.78 9.78 9 10.75 9h8c.97 0 1.75.78 1.75 1.75v8c0 .97-.78 1.75-1.75 1.75h-8c-.97 0-1.75-.78-1.75-1.75v-8Z\"]);\nexport const ShapeUnion16Filled = /*#__PURE__*/createFluentIcon('ShapeUnion16Filled', \"16\", [\"M4 2a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h1v1c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2H4Z\"]);\nexport const ShapeUnion16Regular = /*#__PURE__*/createFluentIcon('ShapeUnion16Regular', \"16\", [\"M4 2a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2h1v1c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-1V4a2 2 0 0 0-2-2H4Zm1.14 1L3 5.14V4a1 1 0 0 1 1-1h1.14ZM3 6.56 6.56 3h1.58L3 8.14V6.56ZM9.45 3.1A1 1 0 0 1 10 4v.3L4.3 10H4a1 1 0 0 1-.9-.55l6.35-6.34ZM10 5.7V6h1.3L6 11.3V10h-.3L10 5.7Zm-3.84 6.84 6.39-6.39A1 1 0 0 1 13 7v.3L7.3 13H7a1 1 0 0 1-.84-.45ZM13 8.7v1.58L10.3 13H8.7L13 8.7Zm0 3V12a1 1 0 0 1-1 1h-.3l1.3-1.3Z\"]);\nexport const ShapeUnion20Filled = /*#__PURE__*/createFluentIcon('ShapeUnion20Filled', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.5 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6a2.5 2.5 0 0 0 2.5-2.5v-6A2.5 2.5 0 0 0 15.5 7H13V4.5A2.5 2.5 0 0 0 10.5 2h-6Z\"]);\nexport const ShapeUnion20Regular = /*#__PURE__*/createFluentIcon('ShapeUnion20Regular', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v6A2.5 2.5 0 0 0 4.3 13H7v2.5A2.5 2.5 0 0 0 9.5 18h6.22a2.5 2.5 0 0 0 2.27-2.28v-.01l.01-.21v-6A2.5 2.5 0 0 0 15.5 7H13V4.5a2.52 2.52 0 0 0-.5-1.5 2.5 2.5 0 0 0-2-1h-6Zm6.65 1.15-8 8A1.5 1.5 0 0 1 3 10.5v-.94L9.56 3h.94c.23 0 .45.05.65.15Zm-7.3 8.7 8-8c.1.2.15.42.15.65v.8L5.3 12h-.8a1.5 1.5 0 0 1-.65-.15ZM12 6.71v.79c0 .21.13.4.32.47l-4.35 4.35A.5.5 0 0 0 7.5 12h-.8L12 6.7ZM13.7 8h1.6L8 15.3v-1.6L13.7 8Zm2.7.3c.32.24.53.6.59 1L9.3 17a1.5 1.5 0 0 1-1-.59l8.1-8.1Zm.6 2.4v1.6L12.3 17h-1.6l6.3-6.3Zm0 3v1.6L15.3 17h-1.6l3.3-3.3ZM3 8.15V6.56L6.56 3h1.58L3 8.14Zm0-3V4.5C3 3.67 3.67 3 4.5 3h.64L3 5.14Z\"]);\nexport const ShapeUnion24Filled = /*#__PURE__*/createFluentIcon('ShapeUnion24Filled', \"24\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v8c0 1.8 1.46 3.25 3.25 3.25H7.5v2.25c0 1.8 1.46 3.25 3.25 3.25h8c1.8 0 3.25-1.46 3.25-3.25v-8c0-1.8-1.46-3.25-3.25-3.25H16.5V5.25c0-1.8-1.46-3.25-3.25-3.25h-8Z\"]);\nexport const ShapeUnion24Regular = /*#__PURE__*/createFluentIcon('ShapeUnion24Regular', \"24\", [\"M5.25 2A3.25 3.25 0 0 0 2 5.25v8a3.3 3.3 0 0 0 .56 1.82 3.27 3.27 0 0 0 2.4 1.42l.29.01H7.5v2.25A3.24 3.24 0 0 0 10.75 22h8c1.8 0 3.25-1.46 3.25-3.25v-8a3.25 3.25 0 0 0-3.25-3.25H16.5V5.25a3.28 3.28 0 0 0-1.54-2.77 3.29 3.29 0 0 0-1.7-.48H5.24Zm.69 1.5L3.5 5.94v-.69c0-.97.78-1.75 1.75-1.75h.69ZM3.5 8.06 8.06 3.5h1.88L3.5 9.94V8.06Zm8.56-4.56h1.19c.2 0 .4.04.59.1L3.6 13.84c-.06-.19-.1-.38-.1-.59v-1.19l8.56-8.56Zm2.84 1.16c.06.19.1.38.1.59v1.19L6.44 15H5.25c-.2 0-.4-.04-.59-.1L14.9 4.66Zm.1 3.9a.5.5 0 0 0 .5.44h.94L9 16.44v-.94a.5.5 0 0 0-.44-.5L15 8.56Zm3.56.44h.19c.47 0 .9.18 1.2.48L9.49 19.96c-.3-.32-.48-.74-.48-1.21v-.19L18.56 9Zm1.94 2.06v1.88l-7.56 7.56h-1.88l9.44-9.44Zm0 4v1.88l-3.56 3.56h-1.88l5.44-5.44Zm-.03 4.03a1.75 1.75 0 0 1-1.38 1.38l1.38-1.38Z\"]);\nexport const Shapes16Filled = /*#__PURE__*/createFluentIcon('Shapes16Filled', \"16\", [\"M1 5.5A4.5 4.5 0 0 1 9.97 5H8.5A3.5 3.5 0 0 0 5 8.5v1.47A4.5 4.5 0 0 1 1 5.5Zm7.5.5A2.5 2.5 0 0 0 6 8.5v4A2.5 2.5 0 0 0 8.5 15h4a2.5 2.5 0 0 0 2.5-2.5v-4A2.5 2.5 0 0 0 12.5 6h-4Z\"]);\nexport const Shapes16Regular = /*#__PURE__*/createFluentIcon('Shapes16Regular', \"16\", [\"M5.5 2A3.5 3.5 0 0 0 5 8.96v1.01A4.5 4.5 0 1 1 9.97 5h-1A3.5 3.5 0 0 0 5.5 2Zm3 4A2.5 2.5 0 0 0 6 8.5v4A2.5 2.5 0 0 0 8.5 15h4a2.5 2.5 0 0 0 2.5-2.5v-4A2.5 2.5 0 0 0 12.5 6h-4ZM7 8.5C7 7.67 7.67 7 8.5 7h4c.83 0 1.5.67 1.5 1.5v4c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 7 12.5v-4Z\"]);\nexport const Shapes20Filled = /*#__PURE__*/createFluentIcon('Shapes20Filled', \"20\", [\"M2 7.5A5.5 5.5 0 0 1 12.98 7H10.5A3.5 3.5 0 0 0 7 10.5v2.48A5.5 5.5 0 0 1 2 7.5Zm8.5.5A2.5 2.5 0 0 0 8 10.5v5a2.5 2.5 0 0 0 2.5 2.5h5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 8h-5Z\"]);\nexport const Shapes20Regular = /*#__PURE__*/createFluentIcon('Shapes20Regular', \"20\", [\"M7.5 3a4.5 4.5 0 0 0-.5 8.97v1A5.5 5.5 0 1 1 12.98 7h-1A4.5 4.5 0 0 0 7.5 3Zm3 5A2.5 2.5 0 0 0 8 10.5v5a2.5 2.5 0 0 0 2.5 2.5h5a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 15.5 8h-5ZM9 10.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 9 15.5v-5Z\"]);\nexport const Shapes24Filled = /*#__PURE__*/createFluentIcon('Shapes24Filled', \"24\", [\"M2 8.75A6.75 6.75 0 0 1 15.46 8h-3.21A4.25 4.25 0 0 0 8 12.25v3.2a6.75 6.75 0 0 1-6-6.7ZM12.25 9A3.25 3.25 0 0 0 9 12.25v6.5c0 1.8 1.46 3.25 3.25 3.25h6.5c1.8 0 3.25-1.46 3.25-3.25v-6.5C22 10.45 20.54 9 18.75 9h-6.5Z\"]);\nexport const Shapes24Regular = /*#__PURE__*/createFluentIcon('Shapes24Regular', \"24\", [\"M8.75 3.5A5.25 5.25 0 0 0 8 13.95v1.5A6.75 6.75 0 1 1 15.46 8h-1.51a5.25 5.25 0 0 0-5.2-4.5Zm3.5 5.5A3.25 3.25 0 0 0 9 12.25v6.5c0 1.8 1.46 3.25 3.25 3.25h6.5c1.8 0 3.25-1.46 3.25-3.25v-6.5C22 10.45 20.54 9 18.75 9h-6.5Zm-1.75 3.25c0-.97.78-1.75 1.75-1.75h6.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75h-6.5c-.97 0-1.75-.78-1.75-1.75v-6.5Z\"]);\nexport const Shapes28Filled = /*#__PURE__*/createFluentIcon('Shapes28Filled', \"28\", [\"M10 2a8 8 0 0 1 8 8h-3.25A4.75 4.75 0 0 0 10 14.75V18a8 8 0 1 1 0-16Zm1 12.75A3.75 3.75 0 0 1 14.75 11h7.5A3.75 3.75 0 0 1 26 14.75v7.5A3.75 3.75 0 0 1 22.25 26h-7.5A3.75 3.75 0 0 1 11 22.25v-7.5Z\"]);\nexport const Shapes28Regular = /*#__PURE__*/createFluentIcon('Shapes28Regular', \"28\", [\"M10 16.5a6.5 6.5 0 1 1 6.5-6.5H18a8 8 0 1 0-8 8v-1.5Zm4.75-5.5A3.75 3.75 0 0 0 11 14.75v7.5A3.75 3.75 0 0 0 14.75 26h7.5A3.75 3.75 0 0 0 26 22.25v-7.5A3.75 3.75 0 0 0 22.25 11h-7.5Zm-2.25 3.75c0-1.24 1-2.25 2.25-2.25h7.5c1.24 0 2.25 1 2.25 2.25v7.5c0 1.24-1 2.25-2.25 2.25h-7.5c-1.24 0-2.25-1-2.25-2.25v-7.5Z\"]);\nexport const Shapes32Filled = /*#__PURE__*/createFluentIcon('Shapes32Filled', \"32\", [\"M3 12a9 9 0 0 1 17.88-1.5H16.5a6 6 0 0 0-6 6v4.38A9 9 0 0 1 3 12Zm9 4.5a4.5 4.5 0 0 1 4.5-4.5h8a4.5 4.5 0 0 1 4.5 4.5v8a4.5 4.5 0 0 1-4.5 4.5h-8a4.5 4.5 0 0 1-4.5-4.5v-8Z\"]);\nexport const Shapes32Regular = /*#__PURE__*/createFluentIcon('Shapes32Regular', \"32\", [\"M5 12a7 7 0 0 1 13.84-1.5h2.04A9 9 0 1 0 10.5 20.88v-2.04A7 7 0 0 1 5 12Zm11.5 0a4.5 4.5 0 0 0-4.5 4.5v8a4.5 4.5 0 0 0 4.5 4.5h8a4.5 4.5 0 0 0 4.5-4.5v-8a4.5 4.5 0 0 0-4.5-4.5h-8ZM14 16.5a2.5 2.5 0 0 1 2.5-2.5h8a2.5 2.5 0 0 1 2.5 2.5v8a2.5 2.5 0 0 1-2.5 2.5h-8a2.5 2.5 0 0 1-2.5-2.5v-8Z\"]);\nexport const Shapes48Filled = /*#__PURE__*/createFluentIcon('Shapes48Filled', \"48\", [\"M23.25 15.5h7.6A13.5 13.5 0 1 0 15.5 30.85v-7.6a7.75 7.75 0 0 1 7.75-7.75Zm0 2.5A5.25 5.25 0 0 0 18 23.25v15.5c0 2.9 2.35 5.25 5.25 5.25h15.5c2.9 0 5.25-2.35 5.25-5.25v-15.5c0-2.9-2.35-5.25-5.25-5.25h-15.5Z\"]);\nexport const Shapes48Regular = /*#__PURE__*/createFluentIcon('Shapes48Regular', \"48\", [\"M17.5 6.5a11 11 0 0 0-2 21.82v2.53A13.5 13.5 0 1 1 30.85 15.5h-2.53a11 11 0 0 0-10.82-9ZM23.25 18A5.25 5.25 0 0 0 18 23.25v15.5c0 2.9 2.35 5.25 5.25 5.25h15.5c2.9 0 5.25-2.35 5.25-5.25v-15.5c0-2.9-2.35-5.25-5.25-5.25h-15.5Zm-2.75 5.25a2.75 2.75 0 0 1 2.75-2.75h15.5a2.75 2.75 0 0 1 2.75 2.75v15.5a2.75 2.75 0 0 1-2.75 2.75h-15.5a2.75 2.75 0 0 1-2.75-2.75v-15.5Z\"]);\nexport const Share16Filled = /*#__PURE__*/createFluentIcon('Share16Filled', \"16\", [\"M9.78 2.05a.5.5 0 0 1 .53.06l4.5 3.5a.5.5 0 0 1 .02.76l-4.5 4A.5.5 0 0 1 9.5 10V8.06c-.24.04-.54.1-.9.23-.88.29-2.06.87-3.25 2.06a.5.5 0 0 1-.85-.4c.14-1.57.6-2.71 1.23-3.54a4.7 4.7 0 0 1 2.1-1.57 5.37 5.37 0 0 1 1.67-.35V2.5c0-.2.1-.37.28-.45ZM2 5.5A2.5 2.5 0 0 1 4.5 3h2a.5.5 0 0 1 0 1h-2C3.67 4 3 4.67 3 5.5v6c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-1a.5.5 0 0 1 1 0v1a2.5 2.5 0 0 1-2.5 2.5h-6A2.5 2.5 0 0 1 2 11.5v-6Z\"]);\nexport const Share16Regular = /*#__PURE__*/createFluentIcon('Share16Regular', \"16\", [\"M10.3 2.1a.5.5 0 0 0-.8.4v2a5.27 5.27 0 0 0-1.68.34 4.7 4.7 0 0 0-2.1 1.57A6.77 6.77 0 0 0 4.5 9.95a.5.5 0 0 0 .85.4A8.33 8.33 0 0 1 8.6 8.3c.36-.12.66-.2.9-.23V10a.5.5 0 0 0 .83.37l4.5-4a.5.5 0 0 0-.02-.76l-4.5-3.5Zm-.36 3.4a.5.5 0 0 0 .56-.5V3.52l3.22 2.5L10.5 8.9V7.5A.5.5 0 0 0 10 7h-.04a2.97 2.97 0 0 0-.46.04A8.9 8.9 0 0 0 5.73 8.7c.2-.7.48-1.26.8-1.68a3.7 3.7 0 0 1 1.65-1.24 4.37 4.37 0 0 1 1.74-.28h.02ZM4.5 3A2.5 2.5 0 0 0 2 5.5v6A2.5 2.5 0 0 0 4.5 14h6a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-6A1.5 1.5 0 0 1 3 11.5v-6C3 4.67 3.67 4 4.5 4h2a.5.5 0 0 0 0-1h-2Z\"]);\nexport const Share20Filled = /*#__PURE__*/createFluentIcon('Share20Filled', \"20\", [\"M12.38 5.7V3.59c0-.48.53-.74.89-.47l.06.05 4.5 4.42c.2.2.23.54.05.77l-.05.07-4.5 4.42c-.34.33-.89.12-.95-.34v-2.18l-.26.03a9.25 9.25 0 0 0-5.19 2.5c-.39.35-.99.03-.93-.5.5-4.09 2.59-6.34 6.15-6.63l.23-.01ZM5.5 4A2.5 2.5 0 0 0 3 6.5v8A2.5 2.5 0 0 0 5.5 17h8a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 4 14.5v-8C4 5.67 4.67 5 5.5 5h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const Share20Regular = /*#__PURE__*/createFluentIcon('Share20Regular', \"20\", [\"m13.33 12.84 4.5-4.42.05-.07a.59.59 0 0 0-.05-.77l-4.5-4.42-.06-.05c-.36-.27-.9-.01-.9.47V5.7l-.22.01C8.6 6.01 6.5 8.26 6 12.35c-.06.53.54.85.93.5a9.64 9.64 0 0 1 4.45-2.38c.24-.06.5-.1.74-.12l.26-.02v2.17c.06.46.61.67.95.34Zm-1.1-6.12 1.15-.08V4.61L16.82 8l-3.44 3.39V9.23l-1.36.12c-1.7.19-3.32.87-4.83 2 .3-1.33.8-2.34 1.47-3.06a5.2 5.2 0 0 1 3.57-1.57ZM5.5 4A2.5 2.5 0 0 0 3 6.5v8A2.5 2.5 0 0 0 5.5 17h8a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 4 14.5v-8C4 5.67 4.67 5 5.5 5h3a.5.5 0 0 0 0-1h-3Z\"]);\nexport const Share24Filled = /*#__PURE__*/createFluentIcon('Share24Filled', \"24\", [\"M6.75 4h3.46a.75.75 0 0 1 .1 1.5H6.75c-1.2 0-2.17.92-2.25 2.1v9.65c0 1.19.92 2.17 2.1 2.24l.15.01h9.5c1.19 0 2.16-.93 2.24-2.1v-.65a.75.75 0 0 1 1.5-.1v.6c0 2-1.56 3.64-3.54 3.74l-.2.01h-9.5c-2 0-3.64-1.57-3.75-3.55v-9.7c0-2 1.57-3.64 3.55-3.75h3.66-3.46Zm7.75 2.54V3.75c0-.62.7-.96 1.19-.61l.08.07 6 5.75c.27.27.3.7.07 1l-.08.08-5.99 5.75a.75.75 0 0 1-1.26-.43v-2.91h-.33c-2.66-.01-4.93 1.08-6.86 3.3-.5.56-1.43.13-1.31-.62.83-5.14 3.6-8.04 8.19-8.56l.3-.03V3.75v2.8Z\"]);\nexport const Share24Regular = /*#__PURE__*/createFluentIcon('Share24Regular', \"24\", [\"M6.75 4h3.46a.75.75 0 0 1 .1 1.5H6.75c-1.2 0-2.17.92-2.25 2.1v9.65c0 1.19.92 2.17 2.1 2.24l.15.01h9.5c1.19 0 2.16-.93 2.24-2.1v-.65a.75.75 0 0 1 1.5-.1v.6c0 2-1.56 3.64-3.54 3.74l-.2.01h-9.5c-2 0-3.64-1.57-3.75-3.55v-9.7c0-2 1.57-3.64 3.55-3.75h3.66-3.46Zm7.75 2.52V3.75c0-.62.7-.96 1.19-.61l.08.07 6 5.75c.27.27.3.7.07 1l-.08.08-5.99 5.75a.75.75 0 0 1-1.26-.43v-2.83l-.35.03c-2.4.25-4.7 1.33-6.92 3.26a.75.75 0 0 1-1.23-.66c.66-5.32 3.44-8.25 8.2-8.62l.3-.02V3.75v2.77ZM16 5.5v1.74c0 .41-.33.75-.75.75-3.87 0-6.27 1.68-7.31 5.16l-.08.28.35-.24a12.68 12.68 0 0 1 7.04-2.2c.38 0 .7.28.74.65l.01.1v1.74l4.16-3.99-4.16-4Z\"]);\nexport const Share28Filled = /*#__PURE__*/createFluentIcon('Share28Filled', \"28\", [\"m18.27 3.21 7.5 7.25a.75.75 0 0 1 0 1.08l-7.5 7.25a.73.73 0 0 1-.81.15.75.75 0 0 1-.46-.69v-3.74c-6.7.27-9.52 4.02-9.64 4.18a.77.77 0 0 1-.84.27.75.75 0 0 1-.52-.71c0-8.02 6.59-10.48 11-10.73V3.75a.75.75 0 0 1 1.27-.54ZM7.75 4A4.75 4.75 0 0 0 3 8.75v11.5A4.75 4.75 0 0 0 7.75 25h11.5A4.75 4.75 0 0 0 24 20.25v-.5a.75.75 0 0 0-1.5 0v.5c0 1.8-1.46 3.25-3.25 3.25H7.75a3.25 3.25 0 0 1-3.25-3.25V8.75c0-1.8 1.46-3.25 3.25-3.25h4.5a.75.75 0 0 0 0-1.5h-4.5Z\"]);\nexport const Share28Regular = /*#__PURE__*/createFluentIcon('Share28Regular', \"28\", [\"m18.27 3.21 7.5 7.25a.75.75 0 0 1 0 1.08l-7.5 7.25a.73.73 0 0 1-.81.15.75.75 0 0 1-.46-.69v-3.74c-6.7.27-9.52 4.02-9.64 4.18a.77.77 0 0 1-.84.27.75.75 0 0 1-.52-.71c0-8.02 6.59-10.48 11-10.73V3.75a.75.75 0 0 1 1.27-.54Zm.23 10.54v2.71L24.17 11 18.5 5.52v2.73a.76.76 0 0 1-.75.75c-.97 0-8.85.22-10.09 7.28A15.58 15.58 0 0 1 17.75 13a.76.76 0 0 1 .75.75Zm4.22 5.47a.76.76 0 0 1 .53-.22.76.76 0 0 1 .75.75v.5A4.75 4.75 0 0 1 19.25 25H7.75A4.75 4.75 0 0 1 3 20.25V8.75A4.75 4.75 0 0 1 7.75 4h4.5a.75.75 0 1 1 0 1.5h-4.5A3.26 3.26 0 0 0 4.5 8.75v11.5a3.26 3.26 0 0 0 3.25 3.25h11.5a3.26 3.26 0 0 0 3.25-3.25v-.5c0-.2.08-.39.22-.53Z\"]);\nexport const Share48Filled = /*#__PURE__*/createFluentIcon('Share48Filled', \"48\", [\"M31.6 6.84a1.25 1.25 0 0 0-2.1.91v5.47a18.14 18.14 0 0 0-7.02 1.58c-4.4 2-8.92 6.37-9.97 15.56a1.25 1.25 0 0 0 2.07 1.07c4.34-3.85 8.4-5.5 11.34-6.21 1.47-.36 2.67-.47 3.48-.5h.1v5.53a1.25 1.25 0 0 0 2.1.91l12-11.25a1.25 1.25 0 0 0 0-1.82l-12-11.25ZM6 14.25C6 10.8 8.8 8 12.25 8h8.25a1.25 1.25 0 1 1 0 2.5h-8.25a3.75 3.75 0 0 0-3.75 3.75v21.5a3.75 3.75 0 0 0 3.75 3.75h21.5a3.75 3.75 0 0 0 3.75-3.75V33.5a1.25 1.25 0 0 1 2.5 0v2.25C40 39.2 37.2 42 33.75 42h-21.5A6.25 6.25 0 0 1 6 35.75v-21.5Z\"]);\nexport const Share48Regular = /*#__PURE__*/createFluentIcon('Share48Regular', \"48\", [\"M31.6 6.84a1.25 1.25 0 0 0-2.1.91v5.47a18.14 18.14 0 0 0-7.02 1.58c-4.4 2-8.92 6.37-9.97 15.56a1.25 1.25 0 0 0 2.07 1.07c4.34-3.85 8.4-5.5 11.34-6.21 1.47-.36 2.67-.47 3.48-.5h.1v5.53a1.25 1.25 0 0 0 2.1.91l12-11.25a1.25 1.25 0 0 0 0-1.82l-12-11.25Zm-1 8.9h.03A1.25 1.25 0 0 0 32 14.5v-3.86L40.92 19 32 27.36V23.5c0-.63-.45-1.16-1.1-1.24h-.04a4.78 4.78 0 0 0-.4-.04c-.28 0-.66-.02-1.14 0-.97.03-2.33.17-3.99.56-2.68.65-6.1 1.98-9.78 4.66 1.5-6.08 4.87-8.96 7.97-10.36a15.64 15.64 0 0 1 7.09-1.34ZM12.26 8A6.25 6.25 0 0 0 6 14.25v21.5C6 39.2 8.8 42 12.25 42h21.5C37.2 42 40 39.2 40 35.75V33.5a1.25 1.25 0 0 0-2.5 0v2.25a3.75 3.75 0 0 1-3.75 3.75h-21.5a3.75 3.75 0 0 1-3.75-3.75v-21.5a3.75 3.75 0 0 1 3.75-3.75h8.25a1.25 1.25 0 1 0 0-2.5h-8.25Z\"]);\nexport const ShareAndroid20Filled = /*#__PURE__*/createFluentIcon('ShareAndroid20Filled', \"20\", [\"M17 5.5a2.5 2.5 0 0 1-4.47 1.54L7.92 9.35a2.5 2.5 0 0 1 0 1.3l4.61 2.3a2.5 2.5 0 1 1-.45.9l-4.61-2.3a2.5 2.5 0 1 1 0-3.1l4.61-2.3A2.5 2.5 0 1 1 17 5.5Z\"]);\nexport const ShareAndroid20Regular = /*#__PURE__*/createFluentIcon('ShareAndroid20Regular', \"20\", [\"M12 5.5a2.5 2.5 0 1 1 .53 1.54L7.92 9.35a2.5 2.5 0 0 1 0 1.3l4.61 2.3a2.5 2.5 0 1 1-.45.9l-4.61-2.3a2.5 2.5 0 1 1 0-3.1l4.61-2.3A2.5 2.5 0 0 1 12 5.5ZM14.5 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0 9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM4 10a1.5 1.5 0 1 0 3 0 1.5 1.5 0 0 0-3 0Z\"]);\nexport const ShareAndroid24Filled = /*#__PURE__*/createFluentIcon('ShareAndroid24Filled', \"24\", [\"M17 3a3 3 0 1 1-2.15 5.1L9.4 11.2a3 3 0 0 1 0 1.58l5.45 3.12A2.99 2.99 0 0 1 20 18a3 3 0 1 1-5.9-.79L8.66 14.1A2.99 2.99 0 0 1 3.5 12a3 3 0 0 1 5.15-2.1L14.1 6.8A3 3 0 0 1 17 3Z\"]);\nexport const ShareAndroid24Regular = /*#__PURE__*/createFluentIcon('ShareAndroid24Regular', \"24\", [\"M17 2.5a3.5 3.5 0 1 1-2.6 5.85l-4.56 2.6a3.5 3.5 0 0 1 0 2.1l4.56 2.6A3.5 3.5 0 0 1 20.5 18a3.5 3.5 0 1 1-6.84-1.05l-4.56-2.6A3.5 3.5 0 0 1 3 12a3.5 3.5 0 0 1 6.1-2.35l4.56-2.6A3.5 3.5 0 0 1 17 2.5ZM17 16a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM6.5 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM17 4a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z\"]);\nexport const ShareCloseTray20Filled = /*#__PURE__*/createFluentIcon('ShareCloseTray20Filled', \"20\", [\"M4 16a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4Zm6-10a.5.5 0 0 0-.5.5v5.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7l-1.65 1.64V6.5A.5.5 0 0 0 10 6Z\"]);\nexport const ShareCloseTray20Regular = /*#__PURE__*/createFluentIcon('ShareCloseTray20Regular', \"20\", [\"M10 6a.5.5 0 0 0-.5.5v5.8l-1.65-1.65a.5.5 0 0 0-.7.7l2.5 2.5c.2.2.5.2.7 0l2.5-2.5a.5.5 0 0 0-.7-.7l-1.65 1.64V6.5A.5.5 0 0 0 10 6Zm-8 8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8Zm2 1a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4Z\"]);\nexport const ShareCloseTray24Filled = /*#__PURE__*/createFluentIcon('ShareCloseTray24Filled', \"24\", [\"M4.25 20C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v11.5c0 1.24-1 2.25-2.25 2.25H4.25Zm8.28-3.47 3.25-3.25a.75.75 0 1 0-1.06-1.06l-1.97 1.97V7.75a.75.75 0 0 0-1.5 0v6.44l-1.97-1.97a.75.75 0 1 0-1.06 1.06l3.25 3.25a.75.75 0 0 0 1.06 0Z\"]);\nexport const ShareCloseTray24Regular = /*#__PURE__*/createFluentIcon('ShareCloseTray24Regular', \"24\", [\"M2 17.75C2 18.99 3 20 4.25 20h15.5c1.24 0 2.25-1 2.25-2.25V6.25C22 5.01 21 4 19.75 4H4.25C3.01 4 2 5 2 6.25v11.5Zm2.25.75a.75.75 0 0 1-.75-.75V6.25c0-.41.34-.75.75-.75h15.5c.41 0 .75.34.75.75v11.5c0 .41-.34.75-.75.75H4.25ZM12 16.75c.2 0 .39-.07.53-.22l3.25-3.25a.75.75 0 1 0-1.06-1.06l-1.97 1.97V7.75a.75.75 0 0 0-1.5 0v6.44l-1.97-1.97a.75.75 0 1 0-1.06 1.06l3.25 3.25c.14.15.33.22.53.22Z\"]);\nexport const ShareIos20Filled = /*#__PURE__*/createFluentIcon('ShareIos20Filled', \"20\", [\"M15.75 9.25c.38 0 .7.28.74.65l.01.1v5.25A2.75 2.75 0 0 1 13.92 18H6.25a2.75 2.75 0 0 1-2.74-2.58l-.01-.17V10A.75.75 0 0 1 5 9.9v5.35c0 .65.5 1.18 1.12 1.24l.13.01h7.5c.65 0 1.18-.5 1.24-1.12l.01-.13V10c0-.41.34-.75.75-.75ZM5.23 6.46l4.24-4.24a.75.75 0 0 1 .98-.07l.08.07 4.24 4.24a.75.75 0 0 1-.97 1.14l-.09-.08-2.96-2.96v7.69c0 .38-.28.7-.65.74L10 13a.75.75 0 0 1-.74-.65l-.01-.1V4.56L6.29 7.52a.75.75 0 0 1-.98.08l-.08-.08a.75.75 0 0 1-.08-.97l.08-.09 4.24-4.24-4.24 4.24Z\"]);\nexport const ShareIos20Regular = /*#__PURE__*/createFluentIcon('ShareIos20Regular', \"20\", [\"M16 9.5a.5.5 0 0 1 .5.41V16a2.5 2.5 0 0 1-2.34 2.5H6a2.5 2.5 0 0 1-2.5-2.34V10a.5.5 0 0 1 1-.09V16c0 .78.6 1.42 1.36 1.5H14c.78 0 1.42-.6 1.5-1.36V10c0-.28.22-.5.5-.5ZM5.4 6.39l4.25-4.24a.5.5 0 0 1 .63-.06l.07.06 4.25 4.24a.5.5 0 0 1-.64.76l-.07-.05-3.39-3.4V13a.5.5 0 0 1-.41.5H10a.5.5 0 0 1-.5-.41V3.7L6.11 7.1a.5.5 0 0 1-.64.05L5.4 7.1a.5.5 0 0 1-.05-.64l.05-.07 4.25-4.24L5.4 6.39Z\"]);\nexport const ShareIos24Filled = /*#__PURE__*/createFluentIcon('ShareIos24Filled', \"24\", [\"M19 11a1 1 0 0 1 .99.88V18a4 4 0 0 1-3.8 4H8a4 4 0 0 1-4-3.8V12a1 1 0 0 1 2-.12V18a2 2 0 0 0 1.85 2H16a2 2 0 0 0 1.99-1.85V12a1 1 0 0 1 1-1ZM6.29 7.29l5-5a1 1 0 0 1 1.32-.08l.09.08 5 5a1 1 0 0 1-1.32 1.5l-.09-.09-3.3-3.28v9.83a1 1 0 0 1-.88 1H12a1 1 0 0 1-1-.88V5.41l-3.3 3.3a1 1 0 0 1-1.32.08l-.1-.09a1 1 0 0 1-.07-1.32l.08-.1 5-4.99-5 5Z\"]);\nexport const ShareIos24Regular = /*#__PURE__*/createFluentIcon('ShareIos24Regular', \"24\", [\"M19.75 11c.38 0 .7.28.75.65v7.1A3.25 3.25 0 0 1 17.44 22H6.25a3.25 3.25 0 0 1-3.24-3.06v-7.19a.75.75 0 0 1 1.49-.1v7.1c0 .92.71 1.67 1.61 1.75h11.14c.92 0 1.68-.7 1.75-1.6v-7.15c0-.41.34-.75.75-.75ZM6.22 7.22l5-5a.75.75 0 0 1 .97-.07l.09.07 5 5a.75.75 0 0 1-.98 1.13l-.08-.07-3.72-3.72v11.7c0 .37-.28.69-.65.74h-.1a.75.75 0 0 1-.74-.64l-.01-.1V4.55L7.28 8.28a.75.75 0 0 1-.98.07l-.08-.07a.75.75 0 0 1-.07-.98l.07-.08 5-5-5 5Z\"]);\nexport const ShareIos28Filled = /*#__PURE__*/createFluentIcon('ShareIos28Filled', \"28\", [\"M24 13a1 1 0 0 1 1 .88V22a4 4 0 0 1-3.8 4H7a4 4 0 0 1-4-3.8V14a1 1 0 0 1 2-.12V22a2 2 0 0 0 1.85 2H21a2 2 0 0 0 2-1.85V14a1 1 0 0 1 1-1ZM6.93 8.66l6.36-6.37a1 1 0 0 1 1.32-.08l.1.08 6.36 6.37a1 1 0 0 1-1.32 1.5l-.1-.09L15 5.41V18a1 1 0 0 1-.88 1H14a1 1 0 0 1-1-.88V5.4l-4.66 4.66a1 1 0 0 1-1.32.08l-.1-.08a1 1 0 0 1-.07-1.32l.08-.1 6.36-6.36-6.36 6.37Z\"]);\nexport const ShareIos28Regular = /*#__PURE__*/createFluentIcon('ShareIos28Regular', \"28\", [\"M24.25 13c.38 0 .7.28.74.65l.01.1v8.5c0 2-1.57 3.64-3.55 3.74l-.2.01H6.75c-2 0-3.64-1.57-3.74-3.55l-.01-.2v-8.5a.75.75 0 0 1 1.5-.1v8.6c0 1.2.93 2.17 2.1 2.24l.15.01h14.5c1.2 0 2.17-.93 2.24-2.1l.01-.15v-8.5c0-.41.34-.75.75-.75ZM13.86 2.26h.07l.09-.01h.06l.1.02.06.02.06.02.07.04.05.03.04.03.07.06 6.36 6.36a.75.75 0 0 1-.97 1.14l-.09-.08-5.08-5.08v13.44c0 .38-.28.7-.65.74L14 19a.75.75 0 0 1-.74-.65l-.01-.1V4.81L8.17 9.89a.75.75 0 0 1-.98.08l-.08-.08a.75.75 0 0 1-.08-.97l.08-.09 6.36-6.36.11-.1.1-.05.08-.03.1-.03Z\"]);\nexport const ShareIos48Filled = /*#__PURE__*/createFluentIcon('ShareIos48Filled', \"48\", [\"M37.75 20.25c.92 0 1.67.7 1.74 1.6l.01.15v14.25c0 3.1-2.46 5.63-5.53 5.75H14.25a5.75 5.75 0 0 1-5.75-5.53V22a1.75 1.75 0 0 1 3.5-.14v14.39c0 1.19.93 2.17 2.1 2.24l.15.01h19.5c1.2 0 2.17-.93 2.24-2.1l.01-.15V22c0-.97.78-1.75 1.75-1.75ZM23.5 6.27l.15-.02h.17l.16.01.17.04.07.01c.2.06.39.15.56.27l.12.1.09.08 7.78 7.78a1.75 1.75 0 0 1-2.35 2.59l-.13-.11-4.79-4.8V31.5c0 .92-.7 1.67-1.6 1.74l-.15.01c-.92 0-1.67-.7-1.74-1.6L22 31.5V12.23l-4.79 4.79c-.64.64-1.66.68-2.35.1l-.12-.1a1.75 1.75 0 0 1-.12-2.35l.12-.13 7.75-7.75c.05-.06.11-.12.18-.17l.11-.08.12-.07h.02c.17-.1.37-.17.58-.2Z\"]);\nexport const ShareIos48Regular = /*#__PURE__*/createFluentIcon('ShareIos48Regular', \"48\", [\"M37.75 20.75c.65 0 1.18.5 1.24 1.12L39 22v14.75A5.25 5.25 0 0 1 33.97 42H14.25A5.25 5.25 0 0 1 9 36.97V22a1.25 1.25 0 0 1 2.5-.13v14.88a2.75 2.75 0 0 0 2.58 2.74l.17.01h19.5a2.75 2.75 0 0 0 2.74-2.58l.01-.17V22c0-.69.56-1.25 1.25-1.25Zm-22.66-6.6 7.78-7.78a1.25 1.25 0 0 1 1.66-.1l.1.1 7.78 7.77A1.25 1.25 0 0 1 30.75 16l-.1-.09L25 10.27V30.5c0 .65-.5 1.18-1.12 1.24l-.13.01c-.65 0-1.18-.5-1.24-1.12l-.01-.13V10.27l-5.64 5.64c-.46.46-1.18.49-1.67.1l-.1-.1a1.25 1.25 0 0 1-.1-1.66l.1-.1 7.78-7.78-7.78 7.77Z\"]);\nexport const ShareScreenPerson16Filled = /*#__PURE__*/createFluentIcon('ShareScreenPerson16Filled', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h3.54a2.5 2.5 0 0 1 2.23-2.99 3 3 0 1 1 5.22-2.26c.01.14.12.25.26.25s.25-.11.25-.25V5.5A2.5 2.5 0 0 0 12.5 3h-9Zm10 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S8 13.75 8 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPerson16Regular = /*#__PURE__*/createFluentIcon('ShareScreenPerson16Regular', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h3.54a3.29 3.29 0 0 1 .01-1H3.5A1.5 1.5 0 0 1 2 10.5v-5C2 4.67 2.67 4 3.5 4h9c.83 0 1.5.67 1.5 1.5v.84c.27.41.45.9.49 1.41.01.14.12.25.26.25s.25-.11.25-.25V5.5A2.5 2.5 0 0 0 12.5 3h-9Zm10 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S8 13.75 8 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPerson20Filled = /*#__PURE__*/createFluentIcon('ShareScreenPerson20Filled', \"20\", [\"M5 4a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6.05a2.5 2.5 0 0 1 2.22-1.99A2.99 2.99 0 0 1 15.5 9a3 3 0 0 1 2.5 1.34V7a3 3 0 0 0-3-3H5Zm12.5 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPerson20Regular = /*#__PURE__*/createFluentIcon('ShareScreenPerson20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h6.3c.07-.37.23-.7.45-1H4.75C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75V9.4c.4.23.74.56 1 .94V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm12.75 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPerson24Filled = /*#__PURE__*/createFluentIcon('ShareScreenPerson24Filled', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20H13a4 4 0 0 1 0-.13v-.1A2.77 2.77 0 0 1 15.77 17h.28a3.49 3.49 0 0 1 2.45-6 3.5 3.5 0 0 1 3.5 3.5V7.25C22 5.45 20.54 4 18.75 4H5.25ZM21 14.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const ShareScreenPerson24Regular = /*#__PURE__*/createFluentIcon('ShareScreenPerson24Regular', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20H13a4 4 0 0 1 0-.13v-.1c0-.46.11-.89.3-1.27H5.26c-.97 0-1.75-.78-1.75-1.75v-9.5c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75v4.38A3.5 3.5 0 0 1 22 14.5V7.25C22 5.45 20.54 4 18.75 4H5.25ZM21 14.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const ShareScreenPerson28Filled = /*#__PURE__*/createFluentIcon('ShareScreenPerson28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h9.32c-.05-.25-.07-.5-.07-.75v-.2A3.04 3.04 0 0 1 18.05 20h.8a3.99 3.99 0 0 1 2.65-7 4 4 0 0 1 4 3.75.25.25 0 1 0 .5 0v-9A3.75 3.75 0 0 0 22.25 4H5.75ZM24.5 17a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const ShareScreenPerson28Regular = /*#__PURE__*/createFluentIcon('ShareScreenPerson28Regular', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h9.32c-.05-.25-.07-.5-.07-.75v-.2c0-.2.02-.37.05-.55h-9.3c-1.24 0-2.25-1-2.25-2.25V7.75c0-1.24 1-2.25 2.25-2.25h16.5c1.24 0 2.25 1 2.25 2.25v6.6c.57.65.94 1.48 1 2.4a.25.25 0 1 0 .5 0v-9A3.75 3.75 0 0 0 22.25 4H5.75ZM24.5 17a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const ShareScreenPersonOverlay16Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay16Filled', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v2.25c0 .14-.11.25-.25.25a.27.27 0 0 1-.26-.25 3 3 0 1 0-5.22 2.26A2.5 2.5 0 0 0 7.04 13H3.5A2.5 2.5 0 0 1 1 10.5v-5ZM3 6v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1Zm10.5 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S8 13.75 8 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonOverlay16Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay16Regular', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v2.25c0 .14-.11.25-.25.25a.27.27 0 0 1-.26-.25c-.04-.52-.22-1-.49-1.4V5.5c0-.83-.67-1.5-1.5-1.5h-9C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h3.55a2.51 2.51 0 0 0-.01 1H3.5A2.5 2.5 0 0 1 1 10.5v-5ZM11.5 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5ZM4 5a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const ShareScreenPersonOverlay20Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay20Filled', \"20\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v3.34a3 3 0 1 0-4.73 3.67c-1.1.1-2 .92-2.22 1.99H5a3 3 0 0 1-3-3V7Zm2 0v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Zm13.5 5a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonOverlay20Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.6c-.26-.4-.6-.72-1-.95V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h6.75c-.22.3-.38.63-.45 1h-6.3A2.75 2.75 0 0 1 2 13.25v-6.5ZM15.5 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5ZM5 6a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Z\"]);\nexport const ShareScreenPersonOverlay24Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v7.25a3.5 3.5 0 1 0-5.95 2.5h-.28A2.77 2.77 0 0 0 13 19.77v.1a4 4 0 0 0 0 .13H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM5 8v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1Zm16 6.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const ShareScreenPersonOverlay24Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v7.25a3.5 3.5 0 0 0-1.5-2.87V7.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h8.06c-.2.38-.31.81-.31 1.27v.1a4 4 0 0 0 0 .13H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM18.5 17a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 6c3.21 0 4.5-1.57 4.5-3.13v-.1c0-.98-.8-1.77-1.77-1.77h-5.46c-.98 0-1.77.8-1.77 1.77v.1c0 1.57 1.29 3.13 4.5 3.13ZM6 7a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6Z\"]);\nexport const ShareScreenPersonOverlay28Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay28Filled', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v9c0 .14-.11.25-.25.25a.26.26 0 0 1-.26-.25A4 4 0 1 0 18.85 20h-.8A3.04 3.04 0 0 0 15 23.04v.21c0 .25.02.5.07.75H5.75A3.75 3.75 0 0 1 2 20.25V7.75Zm4 1.5v4.5c0 .69.56 1.25 1.25 1.25h5.5c.69 0 1.25-.56 1.25-1.25v-4.5C14 8.56 13.44 8 12.75 8h-5.5C6.56 8 6 8.56 6 9.25ZM24.5 17a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const ShareScreenPersonOverlay28Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlay28Regular', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v9c0 .14-.11.25-.25.25a.26.26 0 0 1-.26-.25 3.98 3.98 0 0 0-.99-2.4v-6.6c0-1.24-1-2.25-2.25-2.25H5.75c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1 2.25 2.25 2.25h9.3c-.03.18-.05.36-.05.54v.21c0 .25.02.5.07.75H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM21.5 20a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 7c3.93 0 5.5-1.88 5.5-3.75v-.2c0-1.13-.92-2.05-2.05-2.05h-6.9c-1.13 0-2.05.92-2.05 2.04v.21c0 1.87 1.57 3.75 5.5 3.75ZM7.25 8C6.56 8 6 8.56 6 9.25v4.5c0 .69.56 1.25 1.25 1.25h5.5c.69 0 1.25-.56 1.25-1.25v-4.5C14 8.56 13.44 8 12.75 8h-5.5Z\"]);\nexport const ShareScreenPersonOverlayInside16Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside16Filled', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 10.5v-5ZM4 5a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Zm9 3.75a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v.5c0 .97.78 1.75 1.75 1.75h.5c.97 0 1.75-.78 1.75-1.75v-.5ZM11 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ShareScreenPersonOverlayInside16Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside16Regular', \"16\", [\"M4 5a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Zm9 3.75a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0-.75.75v.5c0 .97.78 1.75 1.75 1.75h.5c.97 0 1.75-.78 1.75-1.75v-.5ZM11 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h9a2.5 2.5 0 0 0 2.5-2.5v-5A2.5 2.5 0 0 0 12.5 3h-9ZM2 5.5C2 4.67 2.67 4 3.5 4h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 2 10.5v-5Z\"]);\nexport const ShareScreenPersonOverlayInside20Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside20Filled', \"20\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm10 1.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0ZM12 10a1 1 0 0 0-1 1v1c0 1.1.9 2 2 2h1a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1h-3Z\"]);\nexport const ShareScreenPersonOverlayInside20Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside20Regular', \"20\", [\"M13.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM11 11a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-1ZM5 6a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm-.25-2A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM3 6.75C3 5.78 3.78 5 4.75 5h10.5c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H4.75C3.78 15 3 14.22 3 13.25v-6.5Z\"]);\nexport const ShareScreenPersonOverlayInside24Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v9.5c0 1.8-1.46 3.25-3.25 3.25H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM16 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM5 8v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1Zm9 5a1 1 0 0 0-1 1v.25A2.75 2.75 0 0 0 15.75 17h.5A2.75 2.75 0 0 0 19 14.25V14a1 1 0 0 0-1-1h-4Z\"]);\nexport const ShareScreenPersonOverlayInside24Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside24Regular', \"24\", [\"M16 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm-3 2a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.25A2.75 2.75 0 0 1 16.25 17h-.5A2.75 2.75 0 0 1 13 14.25V14ZM6.25 7C5.56 7 5 7.56 5 8.25v3.5c0 .69.56 1.25 1.25 1.25h4.5c.69 0 1.25-.56 1.25-1.25v-3.5C12 7.56 11.44 7 10.75 7h-4.5Zm-1-3A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h13.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C22 5.45 20.54 4 18.75 4H5.25ZM3.5 7.25c0-.97.78-1.75 1.75-1.75h13.5c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75H5.25c-.97 0-1.75-.78-1.75-1.75v-9.5Z\"]);\nexport const ShareScreenPersonOverlayInside28Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside28Filled', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v12.5A3.75 3.75 0 0 1 22.25 24H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM6.5 7C5.67 7 5 7.67 5 8.5v4c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5ZM21 10.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Zm-7 5v.25C14 18.1 15.9 20 18.25 20h.5C21.1 20 23 18.1 23 15.75v-.25c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5Z\"]);\nexport const ShareScreenPersonOverlayInside28Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonOverlayInside28Regular', \"28\", [\"M6.5 7C5.67 7 5 7.67 5 8.5v4c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5h-5ZM21 10.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm-7 5v.25C14 18.1 15.9 20 18.25 20h.5C21.1 20 23 18.1 23 15.75v-.25c0-.83-.67-1.5-1.5-1.5h-6c-.83 0-1.5.67-1.5 1.5ZM5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25V7.75A3.75 3.75 0 0 0 22.25 4H5.75ZM3.5 7.75c0-1.24 1.01-2.25 2.25-2.25h16.5c1.24 0 2.25 1 2.25 2.25v12.5c0 1.24-1 2.25-2.25 2.25H5.75c-1.24 0-2.25-1-2.25-2.25V7.75Z\"]);\nexport const ShareScreenPersonP16Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonP16Filled', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v2.25c0 .14-.11.25-.25.25a.27.27 0 0 1-.26-.25 3 3 0 1 0-5.22 2.26A2.5 2.5 0 0 0 7.04 13H3.5A2.5 2.5 0 0 1 1 10.5v-5Zm2 0v5a.5.5 0 0 0 1 0V9h1a2 2 0 1 0 0-4H3.5a.5.5 0 0 0-.5.5ZM4 8h1a1 1 0 0 0 0-2H4v2Zm9.5 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S8 13.75 8 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonP16Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonP16Regular', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v2.25c0 .14-.11.25-.25.25a.27.27 0 0 1-.26-.25c-.04-.52-.22-1-.49-1.4V5.5c0-.83-.67-1.5-1.5-1.5h-9C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h3.55a2.51 2.51 0 0 0-.01 1H3.5A2.5 2.5 0 0 1 1 10.5v-5ZM11.5 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Zm-8-10a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0V9h1a2 2 0 1 0 0-4H3.5ZM5 8H4V6h1a1 1 0 0 1 0 2Z\"]);\nexport const ShareScreenPersonP20Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonP20Filled', \"20\", [\"M2 7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v3.34a3 3 0 1 0-4.73 3.67c-1.1.1-2 .92-2.22 1.99H5a3 3 0 0 1-3-3V7Zm4 .5v5a.5.5 0 0 0 1 0V11h1a2 2 0 1 0 0-4H6.5a.5.5 0 0 0-.5.5ZM7 10h1a1 1 0 0 0 0-2H7v2Zm10.5 2a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 17.75 12 16.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const ShareScreenPersonP20Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonP20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.6c-.26-.4-.6-.72-1-.95V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h6.75c-.22.3-.38.63-.45 1h-6.3A2.75 2.75 0 0 1 2 13.25v-6.5ZM15.5 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.25 3.5-2.5 0-.83-.67-1.5-1.5-1.5h-4c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Zm-9-12a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0V11h1a2 2 0 1 0 0-4H6.5ZM8 10H7V8h1a1 1 0 0 1 0 2Z\"]);\nexport const ShareScreenPersonP24Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonP24Filled', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v7.25a3.5 3.5 0 1 0-5.95 2.5h-.28A2.77 2.77 0 0 0 13 19.77v.1a4 4 0 0 0 0 .13H5.25A3.25 3.25 0 0 1 2 16.75v-9.5Zm5 1.5v6.5a.75.75 0 0 0 1.5 0V13.5h1.25a2.75 2.75 0 1 0 0-5.5h-2a.75.75 0 0 0-.75.75ZM8.5 12h1.25a1.25 1.25 0 1 0 0-2.5H8.5V12ZM21 14.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const ShareScreenPersonP24Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonP24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v7.25a3.5 3.5 0 0 0-1.5-2.87V7.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h8.06c-.2.38-.31.81-.31 1.27v.1a4 4 0 0 0 0 .13H5.25A3.25 3.25 0 0 1 2 16.75v-9.5ZM18.5 17a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0 6c3.21 0 4.5-1.57 4.5-3.13v-.1c0-.98-.8-1.77-1.77-1.77h-5.46c-.98 0-1.77.8-1.77 1.77v.1c0 1.57 1.29 3.13 4.5 3.13ZM7.75 8a.75.75 0 0 0-.75.75v6.5a.75.75 0 0 0 1.5 0V13.5h1.25a2.75 2.75 0 1 0 0-5.5h-2Zm2 4H8.5V9.5h1.25a1.25 1.25 0 1 1 0 2.5Z\"]);\nexport const ShareScreenPersonP28Filled = /*#__PURE__*/createFluentIcon('ShareScreenPersonP28Filled', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v9c0 .14-.11.25-.25.25a.26.26 0 0 1-.26-.25A4 4 0 1 0 18.85 20h-.8A3.04 3.04 0 0 0 15 23.04v.21c0 .25.02.5.07.75H5.75A3.75 3.75 0 0 1 2 20.25V7.75Zm6 2v8.5a.75.75 0 0 0 1.5 0V16h2a3.5 3.5 0 1 0 0-7H8.75a.75.75 0 0 0-.75.75Zm1.5 4.75h2a2 2 0 1 0 0-4h-2v4Zm15 2.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const ShareScreenPersonP28Regular = /*#__PURE__*/createFluentIcon('ShareScreenPersonP28Regular', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v9c0 .14-.11.25-.25.25a.26.26 0 0 1-.26-.25 3.98 3.98 0 0 0-.99-2.4v-6.6c0-1.24-1-2.25-2.25-2.25H5.75c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1 2.25 2.25 2.25h9.3c-.03.18-.05.36-.05.54v.21c0 .25.02.5.07.75H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM21.5 20a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 7c3.93 0 5.5-1.88 5.5-3.75v-.2c0-1.13-.92-2.05-2.05-2.05h-6.9c-1.13 0-2.05.92-2.05 2.04v.21c0 1.87 1.57 3.75 5.5 3.75ZM8.75 9a.75.75 0 0 0-.75.75v8.5a.75.75 0 0 0 1.5 0V16h2a3.5 3.5 0 1 0 0-7H8.75Zm2.75 5.5h-2v-4h2a2 2 0 1 1 0 4Z\"]);\nexport const ShareScreenStart20Filled = /*#__PURE__*/createFluentIcon('ShareScreenStart20Filled', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm6 10a.5.5 0 0 1-.5-.5V7.7L7.85 9.36a.5.5 0 1 1-.7-.7l2.5-2.5c.2-.2.5-.2.7 0l2.5 2.5a.5.5 0 0 1-.7.7L10.5 7.71v5.79a.5.5 0 0 1-.5.5Z\"]);\nexport const ShareScreenStart20Regular = /*#__PURE__*/createFluentIcon('ShareScreenStart20Regular', \"20\", [\"M10 14a.5.5 0 0 1-.5-.5V7.7L7.85 9.36a.5.5 0 1 1-.7-.7l2.5-2.5c.2-.2.5-.2.7 0l2.5 2.5a.5.5 0 0 1-.7.7L10.5 7.71v5.79a.5.5 0 0 1-.5.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const ShareScreenStart24Filled = /*#__PURE__*/createFluentIcon('ShareScreenStart24Filled', \"24\", [\"M4.25 4C3.01 4 2 5 2 6.25v11.5C2 18.99 3 20 4.25 20h15.5c1.24 0 2.25-1 2.25-2.25V6.25C22 5.01 21 4 19.75 4H4.25Zm8.28 3.47 3.25 3.25a.75.75 0 1 1-1.06 1.06l-1.97-1.97v6.44a.75.75 0 1 1-1.5 0V9.81l-1.97 1.97a.75.75 0 1 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 1.06 0Z\"]);\nexport const ShareScreenStart24Regular = /*#__PURE__*/createFluentIcon('ShareScreenStart24Regular', \"24\", [\"M2 6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v11.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 20 2 19 2 17.75V6.25Zm2.25-.75a.75.75 0 0 0-.75.75v11.5c0 .41.34.75.75.75h15.5c.41 0 .75-.34.75-.75V6.25a.75.75 0 0 0-.75-.75H4.25ZM12 7.25c.2 0 .39.07.53.22l3.25 3.25a.75.75 0 1 1-1.06 1.06l-1.97-1.97v6.44a.75.75 0 0 1-1.5 0V9.81l-1.97 1.97a.75.75 0 1 1-1.06-1.06l3.25-3.25a.75.75 0 0 1 .53-.22Z\"]);\nexport const ShareScreenStart28Filled = /*#__PURE__*/createFluentIcon('ShareScreenStart28Filled', \"28\", [\"M4.25 5C3.01 5 2 6 2 7.25v13.5C2 21.99 3 23 4.25 23h19.5c1.24 0 2.25-1 2.25-2.25V7.25C26 6 25 5 23.75 5H4.25Zm10.28 3.84 3.25 3.25a.75.75 0 0 1-1.06 1.07l-1.97-1.98v7.45a.75.75 0 0 1-1.5 0v-7.45l-1.97 1.98a.75.75 0 1 1-1.06-1.06l3.25-3.26a.75.75 0 0 1 1.06 0Z\"]);\nexport const ShareScreenStart28Regular = /*#__PURE__*/createFluentIcon('ShareScreenStart28Regular', \"28\", [\"M2 7.25C2 6 3 5 4.25 5h19.5C24.99 5 26 6 26 7.25v13.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 23 2 22 2 20.75V7.25Zm2.25-.75a.75.75 0 0 0-.75.75v13.5c0 .41.34.75.75.75h19.5c.41 0 .75-.34.75-.75V7.25a.75.75 0 0 0-.75-.75H4.25ZM14 8.62c.2 0 .39.08.53.22l3.25 3.25a.75.75 0 0 1-1.06 1.07l-1.97-1.98v7.45a.75.75 0 1 1-1.5 0v-7.45l-1.97 1.98a.75.75 0 1 1-1.06-1.06l3.25-3.26a.75.75 0 0 1 .53-.22Z\"]);\nexport const ShareScreenStart48Filled = /*#__PURE__*/createFluentIcon('ShareScreenStart48Filled', \"48\", [\"M8.25 8A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40h31.5C42.1 40 44 38.1 44 35.75v-23.5C44 9.9 42.1 8 39.75 8H8.25ZM24 14.75c.33 0 .65.13.88.37l6 6a1.25 1.25 0 0 1-1.76 1.76l-3.87-3.86v12.73a1.25 1.25 0 1 1-2.5 0V19.02l-3.87 3.86a1.25 1.25 0 0 1-1.76-1.76l6-6c.23-.24.55-.37.88-.37Z\"]);\nexport const ShareScreenStart48Regular = /*#__PURE__*/createFluentIcon('ShareScreenStart48Regular', \"48\", [\"M24 14.75c.33 0 .65.13.88.37l6 6a1.25 1.25 0 0 1-1.76 1.76l-3.87-3.86v12.73a1.25 1.25 0 1 1-2.5 0V19.02l-3.87 3.86a1.25 1.25 0 0 1-1.76-1.76l6-6c.23-.24.55-.37.88-.37ZM8.25 8A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40h31.5C42.1 40 44 38.1 44 35.75v-23.5C44 9.9 42.1 8 39.75 8H8.25ZM6.5 12.25c0-.97.78-1.75 1.75-1.75h31.5c.97 0 1.75.78 1.75 1.75v23.5c0 .97-.78 1.75-1.75 1.75H8.25c-.97 0-1.75-.78-1.75-1.75v-23.5Z\"]);\nexport const ShareScreenStop16Filled = /*#__PURE__*/createFluentIcon('ShareScreenStop16Filled', \"16\", [\"M3 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H3Zm2.15 2.15c.2-.2.5-.2.7 0L8 7.29l2.15-2.14a.5.5 0 0 1 .7.7L8.71 8l2.14 2.15a.5.5 0 0 1-.7.7L8 8.71l-2.15 2.14a.5.5 0 0 1-.7-.7L7.29 8 5.15 5.85a.5.5 0 0 1 0-.7Z\"]);\nexport const ShareScreenStop16Regular = /*#__PURE__*/createFluentIcon('ShareScreenStop16Regular', \"16\", [\"M5.15 5.15c.2-.2.5-.2.7 0L8 7.29l2.15-2.14a.5.5 0 0 1 .7.7L8.71 8l2.14 2.15a.5.5 0 0 1-.7.7L8 8.71l-2.15 2.14a.5.5 0 0 1-.7-.7L7.29 8 5.15 5.85a.5.5 0 0 1 0-.7ZM1 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H3Z\"]);\nexport const ShareScreenStop20Filled = /*#__PURE__*/createFluentIcon('ShareScreenStop20Filled', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11Zm2.65 3.15c.2-.2.5-.2.7 0L10 9.29l2.15-2.14a.5.5 0 0 1 .7.7L10.71 10l2.14 2.15a.5.5 0 0 1-.7.7L10 10.71l-2.15 2.14a.5.5 0 0 1-.7-.7L9.29 10 7.15 7.85a.5.5 0 0 1 0-.7Z\"]);\nexport const ShareScreenStop20Regular = /*#__PURE__*/createFluentIcon('ShareScreenStop20Regular', \"20\", [\"M7.15 7.15c.2-.2.5-.2.7 0L10 9.29l2.15-2.14a.5.5 0 0 1 .7.7L10.71 10l2.14 2.15a.5.5 0 0 1-.7.7L10 10.71l-2.15 2.14a.5.5 0 0 1-.7-.7L9.29 10 7.15 7.85a.5.5 0 0 1 0-.7ZM2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const ShareScreenStop24Filled = /*#__PURE__*/createFluentIcon('ShareScreenStop24Filled', \"24\", [\"M4.25 4h15.5C20.99 4 22 5 22 6.25v11.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 20 2 19 2 17.75V6.25C2 5.01 3 4 4.25 4Zm5.03 4.22a.75.75 0 0 0-1.06 1.06L10.94 12l-2.72 2.72a.75.75 0 0 0 1.06 1.06L12 13.06l2.72 2.72a.75.75 0 1 0 1.06-1.06L13.06 12l2.72-2.72a.75.75 0 1 0-1.06-1.06L12 10.94 9.28 8.22Z\"]);\nexport const ShareScreenStop24Regular = /*#__PURE__*/createFluentIcon('ShareScreenStop24Regular', \"24\", [\"M2 6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v11.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 20 2 19 2 17.75V6.25Zm2.25-.75a.75.75 0 0 0-.75.75v11.5c0 .41.34.75.75.75h15.5c.41 0 .75-.34.75-.75V6.25a.75.75 0 0 0-.75-.75H4.25Zm3.97 2.72c.3-.3.77-.3 1.06 0L12 10.94l2.72-2.72a.75.75 0 0 1 1.06 1.06L13.06 12l2.72 2.72a.75.75 0 1 1-1.06 1.06L12 13.06l-2.72 2.72a.75.75 0 1 1-1.06-1.06L10.94 12 8.22 9.28a.75.75 0 0 1 0-1.06Z\"]);\nexport const ShareScreenStop28Filled = /*#__PURE__*/createFluentIcon('ShareScreenStop28Filled', \"28\", [\"M4.25 5h19.5C24.99 5 26 6 26 7.25v13.5c0 1.24-1 2.25-2.25 2.25H4.25C3.01 23 2 22 2 20.75V7.25C2 6 3 5 4.25 5Zm7.03 5.22a.75.75 0 0 0-1.06 1.06L12.94 14l-2.72 2.72a.75.75 0 0 0 1.06 1.06L14 15.06l2.72 2.72a.75.75 0 0 0 1.06-1.06L15.06 14l2.72-2.72a.75.75 0 1 0-1.06-1.06L14 12.94l-2.72-2.72Z\"]);\nexport const ShareScreenStop28Regular = /*#__PURE__*/createFluentIcon('ShareScreenStop28Regular', \"28\", [\"M11.28 10.22a.75.75 0 0 0-1.06 1.06L12.94 14l-2.72 2.72a.75.75 0 0 0 1.06 1.06L14 15.06l2.72 2.72a.75.75 0 0 0 1.06-1.06L15.06 14l2.72-2.72a.75.75 0 1 0-1.06-1.06L14 12.94l-2.72-2.72ZM4.25 5C3.01 5 2 6 2 7.25v13.5C2 21.99 3 23 4.25 23h19.5c1.24 0 2.25-1 2.25-2.25V7.25C26 6 25 5 23.75 5H4.25ZM3.5 7.25c0-.42.34-.75.75-.75h19.5c.41 0 .75.33.75.75v13.5c0 .41-.34.75-.75.75H4.25a.75.75 0 0 1-.75-.75V7.25Z\"]);\nexport const ShareScreenStop48Filled = /*#__PURE__*/createFluentIcon('ShareScreenStop48Filled', \"48\", [\"M8.75 8A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40h30.5A4.75 4.75 0 0 0 44 35.25v-22.5A4.75 4.75 0 0 0 39.25 8H8.75Zm13.48 16-5.86-5.87a1.25 1.25 0 0 1 1.76-1.76L24 22.23l5.87-5.86a1.25 1.25 0 0 1 1.76 1.76L25.77 24l5.86 5.87a1.25 1.25 0 0 1-1.76 1.76L24 25.77l-5.87 5.86a1.25 1.25 0 0 1-1.76-1.76L22.23 24Z\"]);\nexport const ShareScreenStop48Regular = /*#__PURE__*/createFluentIcon('ShareScreenStop48Regular', \"48\", [\"m22.23 24-5.86-5.87a1.25 1.25 0 0 1 1.76-1.76L24 22.23l5.87-5.86a1.25 1.25 0 0 1 1.76 1.76L25.77 24l5.86 5.87a1.25 1.25 0 0 1-1.76 1.76L24 25.77l-5.87 5.86a1.25 1.25 0 0 1-1.76-1.76L22.23 24ZM4 12.75A4.75 4.75 0 0 1 8.75 8h30.5A4.75 4.75 0 0 1 44 12.75v22.5A4.75 4.75 0 0 1 39.25 40H8.75A4.75 4.75 0 0 1 4 35.25v-22.5Zm4.75-2.25c-1.24 0-2.25 1-2.25 2.25v22.5c0 1.24 1 2.25 2.25 2.25h30.5c1.24 0 2.25-1 2.25-2.25v-22.5c0-1.24-1-2.25-2.25-2.25H8.75Z\"]);\nexport const Shield12Filled = /*#__PURE__*/createFluentIcon('Shield12Filled', \"12\", [\"M6.01 10.99c-.05 0-.1 0-.16-.03-4.43-1.47-4.37-4.84-4.34-7.29v-.68c0-.28.22-.5.5-.5.02 0 2.31-.02 3.63-1.35a.52.52 0 0 1 .71 0C7.7 2.47 9.97 2.49 10 2.49c.28 0 .5.22.5.5v.68c.04 2.45.1 5.81-4.34 7.3A.42.42 0 0 1 6 11l.02-.01Z\"]);\nexport const Shield12Regular = /*#__PURE__*/createFluentIcon('Shield12Regular', \"12\", [\"M6.01 10.99c-.05 0-.1 0-.16-.03-4.43-1.47-4.37-4.84-4.34-7.29v-.68c0-.28.22-.5.5-.5.02 0 2.31-.02 3.63-1.35a.52.52 0 0 1 .71 0C7.7 2.47 9.97 2.49 10 2.49c.28 0 .5.22.5.5v.68c.04 2.45.1 5.81-4.34 7.3A.42.42 0 0 1 6 11l.02-.01Zm-3.5-7.52v.22c-.03 2.35-.08 5 3.5 6.28C9.6 8.7 9.55 6.04 9.51 3.69v-.22a6.74 6.74 0 0 1-3.5-1.3 6.72 6.72 0 0 1-3.5 1.3Z\"]);\nexport const Shield16Filled = /*#__PURE__*/createFluentIcon('Shield16Filled', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v3c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.64 12.91 3 10.72 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85Z\"]);\nexport const Shield16Regular = /*#__PURE__*/createFluentIcon('Shield16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v3c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.64 12.91 3 10.72 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM8 3.19a6.65 6.65 0 0 1-4 1.8V7.5c0 1.43.36 2.57 1.02 3.45.64.85 1.61 1.54 2.98 2.02a6.13 6.13 0 0 0 2.98-2.02A5.57 5.57 0 0 0 12 7.5V4.98a6.64 6.64 0 0 1-4-1.8Z\"]);\nexport const Shield20Filled = /*#__PURE__*/createFluentIcon('Shield20Filled', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Z\"]);\nexport const Shield20Regular = /*#__PURE__*/createFluentIcon('Shield20Regular', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Z\"]);\nexport const Shield24Filled = /*#__PURE__*/createFluentIcon('Shield24Filled', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75Z\"]);\nexport const Shield24Regular = /*#__PURE__*/createFluentIcon('Shield24Regular', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75Zm1.5.73V11c0 4.26 2.45 7.38 7.5 9.44 5.05-2.06 7.5-5.18 7.5-9.44V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8Z\"]);\nexport const Shield28Filled = /*#__PURE__*/createFluentIcon('Shield28Filled', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 3.03-1.7 5.84-3.84 7.95-2.13 2.1-4.83 3.64-7.03 4.03L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04Z\"]);\nexport const Shield28Regular = /*#__PURE__*/createFluentIcon('Shield28Regular', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 3.03-1.7 5.84-3.84 7.95-2.13 2.1-4.83 3.64-7.03 4.03L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04ZM4.5 6.98V14c0 2.47 1.4 4.93 3.4 6.88 1.93 1.92 4.3 3.24 6.1 3.6 1.8-.36 4.17-1.68 6.1-3.6 1.99-1.95 3.4-4.4 3.4-6.88V6.98a18.8 18.8 0 0 1-5.73-1.4A23.46 23.46 0 0 1 14 3.65c-.84.54-2.19 1.27-3.78 1.91-1.69.69-3.7 1.28-5.72 1.4Z\"]);\nexport const Shield32Filled = /*#__PURE__*/createFluentIcon('Shield32Filled', \"32\", [\"M16.55 2.17a1 1 0 0 0-1.1 0A25.23 25.23 0 0 1 3.9 6.5a1 1 0 0 0-.9 1V16c0 3.88 2.12 7.17 4.7 9.55 2.57 2.37 5.74 3.97 8.12 4.41L16 30l.18-.04c2.38-.44 5.55-2.04 8.12-4.41C26.88 23.17 29 19.88 29 16V7.5a1 1 0 0 0-.9-1 25.23 25.23 0 0 1-11.55-4.33Z\"]);\nexport const Shield32Regular = /*#__PURE__*/createFluentIcon('Shield32Regular', \"32\", [\"M15.45 2.17a1 1 0 0 1 1.1 0A25.23 25.23 0 0 0 28.1 6.5a1 1 0 0 1 .9 1V16c0 3.88-2.12 7.17-4.7 9.55-2.57 2.37-5.74 3.97-8.12 4.41L16 30l-.18-.04c-2.38-.44-5.55-2.04-8.12-4.41C5.12 23.17 3 19.88 3 16V7.5a1 1 0 0 1 .9-1c4.79-.47 8.63-2.39 11.55-4.33ZM5 8.39V16c0 3.12 1.71 5.92 4.06 8.08 2.27 2.1 5 3.47 6.94 3.88a16.25 16.25 0 0 0 6.94-3.88C25.28 21.92 27 19.12 27 16V8.39a27.2 27.2 0 0 1-11-4.2A27.2 27.2 0 0 1 5 8.4Z\"]);\nexport const Shield48Filled = /*#__PURE__*/createFluentIcon('Shield48Filled', \"48\", [\"M24.86 4.35a1.25 1.25 0 0 0-1.73 0c-2.75 2.64-6.68 4.08-10.03 4.84a35.66 35.66 0 0 1-5.86.81h-.02c-.68.02-1.22.57-1.22 1.25v9.5c0 4.84 1.24 9.66 4.1 13.77 2.86 4.13 7.29 7.47 13.53 9.42.24.08.5.08.74 0C36.94 40.02 42 30.5 42 21v-9.75c0-.68-.54-1.23-1.22-1.25h-.02a9.38 9.38 0 0 1-.41-.02l-1.25-.1c-1.06-.11-2.54-.32-4.2-.7-3.35-.75-7.28-2.19-10.04-4.83Z\"]);\nexport const Shield48Regular = /*#__PURE__*/createFluentIcon('Shield48Regular', \"48\", [\"M23.13 4.35a1.25 1.25 0 0 1 1.73 0c2.76 2.64 6.69 4.08 10.04 4.84a35.65 35.65 0 0 0 5.86.81h.02c.68.02 1.22.57 1.22 1.25V21c0 9.5-5.06 19.02-17.63 22.94-.24.08-.5.08-.74 0-6.24-1.95-10.67-5.29-13.53-9.42A23.95 23.95 0 0 1 6 20.75v-9.5c0-.68.54-1.23 1.22-1.25h.02a9.4 9.4 0 0 0 .41-.02l1.25-.1c1.06-.11 2.54-.32 4.2-.7 3.35-.75 7.28-2.19 10.03-4.83ZM8.5 12.43v8.32c0 4.41 1.13 8.72 3.65 12.35 2.46 3.55 6.29 6.52 11.85 8.34C35.16 37.8 39.5 29.4 39.5 21v-8.57l-.65-.07a38.15 38.15 0 0 1-4.5-.73c-3.22-.74-7.21-2.1-10.35-4.7-3.14 2.6-7.13 3.96-10.35 4.7a38.15 38.15 0 0 1-5.15.8Z\"]);\nexport const ShieldAdd16Filled = /*#__PURE__*/createFluentIcon('ShieldAdd16Filled', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v1.1a5.5 5.5 0 0 0-7.5 7.2C3.84 11.6 3 9.81 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM15 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 0 0 0-1H11V8.5Z\"]);\nexport const ShieldAdd16Regular = /*#__PURE__*/createFluentIcon('ShieldAdd16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v1.1c-.32-.16-.65-.3-1-.4v-.22a6.64 6.64 0 0 1-4-1.8 6.65 6.65 0 0 1-4 1.8V7.5c0 1.43.36 2.56 1.02 3.44.05.66.22 1.29.48 1.86C3.84 11.6 3 9.81 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM15 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 0 0 0-1H11V8.5Z\"]);\nexport const ShieldAdd20Filled = /*#__PURE__*/createFluentIcon('ShieldAdd20Filled', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6a5.5 5.5 0 0 0-6.78 8.35l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldAdd20Regular = /*#__PURE__*/createFluentIcon('ShieldAdd20Regular', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6c-.32-.16-.65-.3-1-.4V5.44a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.24 1.8 5.64 5.48 7.25.2.43.44.84.74 1.2l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldAdd24Filled = /*#__PURE__*/createFluentIcon('ShieldAdd24Filled', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.5 6.5 0 0 0-8.33 9.8l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const ShieldAdd24Regular = /*#__PURE__*/createFluentIcon('ShieldAdd24Regular', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.47 6.47 0 0 0-1.46-.69V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8V11c0 4.15 2.33 7.22 7.13 9.28.26.56.6 1.07 1 1.52l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const ShieldBadge20Filled = /*#__PURE__*/createFluentIcon('ShieldBadge20Filled', \"20\", [\"M4 5a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h6V9c3.23 0 3.75-.83 4.11-1.43.2-.32.36-.57.89-.57s.69.25.89.57c.2.32.43.7 1.11 1V7a2 2 0 0 0-2-2H4Zm10.53 3.83v.02a1.63 1.63 0 0 1-.45.5c-.4.3-1.17.65-2.58.65a.5.5 0 0 0-.5.5v2c0 1.03.13 2.14.7 3.12.56 1 1.55 1.82 3.14 2.35.1.04.22.04.32 0a5.35 5.35 0 0 0 3.15-2.35c.56-.98.69-2.09.69-3.12v-2a.5.5 0 0 0-.5-.5c-1.41 0-2.18-.35-2.57-.65a1.63 1.63 0 0 1-.46-.52.5.5 0 0 0-.94 0Zm.94 0v.01Zm-.94 0v.01Z\"]);\nexport const ShieldBadge20Regular = /*#__PURE__*/createFluentIcon('ShieldBadge20Regular', \"20\", [\"M2 7c0-1.1.9-2 2-2h11a2 2 0 0 1 2 2v1.57a2.11 2.11 0 0 1-1-.82V7a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6v1H4a2 2 0 0 1-2-2V7Zm12.53 1.83a.5.5 0 0 1 .95.02 1.63 1.63 0 0 0 .45.5c.4.3 1.16.65 2.57.65.28 0 .5.22.5.5v2c0 1.03-.13 2.14-.7 3.12a5.35 5.35 0 0 1-3.14 2.35.5.5 0 0 1-.32 0 5.35 5.35 0 0 1-3.15-2.35A6.19 6.19 0 0 1 11 12.5v-2a.5.5 0 0 1 .5-.5c1.41 0 2.18-.35 2.57-.65a1.63 1.63 0 0 0 .46-.52Zm.94 0v.01Zm0 0Zm-.94 0v.01Zm.15 1.32c-.54.4-1.38.76-2.68.84v1.51c0 .97.12 1.86.56 2.63A4.27 4.27 0 0 0 15 16.97a4.27 4.27 0 0 0 2.44-1.84c.44-.77.56-1.66.56-2.63v-1.51a4.81 4.81 0 0 1-2.68-.84L15 9.87c-.1.09-.2.19-.32.28Zm-.15-1.32\"]);\nexport const ShieldBadge24Filled = /*#__PURE__*/createFluentIcon('ShieldBadge24Filled', \"24\", [\"M2 7.75A2.75 2.75 0 0 1 4.75 5h12.5A2.75 2.75 0 0 1 20 7.75v2.47a3.96 3.96 0 0 1-1.4-1.04 3.33 3.33 0 0 1-.17-.2 1.75 1.75 0 0 0-2.88.03l-.14.17c-.14.15-.34.35-.6.56-.54.41-1.24.75-2.06.75-.97 0-1.75.8-1.75 1.76V15H4.75A2.75 2.75 0 0 1 2 12.25v-4.5Zm13.57 1.23Zm3.01 1.55c-.35-.27-.7-.6-.97-.96a.75.75 0 0 0-1.22 0 4.98 4.98 0 0 1-3.64 1.93.75.75 0 0 0-.75.75V15c0 1.64.44 2.95 1.3 3.98a7.98 7.98 0 0 0 3.44 2.22c.17.07.35.07.52 0 1.4-.52 2.6-1.2 3.44-2.22A5.97 5.97 0 0 0 22 15v-2.75a.75.75 0 0 0-.75-.75c-.58 0-1.1-.13-1.56-.32-.42-.17-.8-.4-1.1-.65Z\"]);\nexport const ShieldBadge24Regular = /*#__PURE__*/createFluentIcon('ShieldBadge24Regular', \"24\", [\"M4.75 5A2.75 2.75 0 0 0 2 7.75v4.5A2.75 2.75 0 0 0 4.75 15H11v-1.5H4.75c-.69 0-1.25-.56-1.25-1.25v-4.5c0-.69.56-1.25 1.25-1.25h12.5c.69 0 1.25.56 1.25 1.25v1.33c.46.55 1 .9 1.5 1.13V7.75A2.75 2.75 0 0 0 17.25 5H4.75ZM17 9.25a.75.75 0 0 0-.61.32h-.01a5.64 5.64 0 0 1-.96.95c-.65.51-1.56.98-2.67.98a.75.75 0 0 0-.75.75V15c0 1.64.44 2.95 1.3 3.98a7.98 7.98 0 0 0 3.44 2.22c.17.07.35.07.52 0 1.4-.52 2.6-1.2 3.44-2.22A5.97 5.97 0 0 0 22 15v-2.75a.75.75 0 0 0-.75-.75 4.37 4.37 0 0 1-2.67-.97 5.64 5.64 0 0 1-.96-.95v-.01a.75.75 0 0 0-.62-.32Zm-.67 2.47c.26-.2.49-.4.67-.59a6.02 6.02 0 0 0 3.5 1.81V15c0 1.36-.35 2.3-.95 3.02A6.22 6.22 0 0 1 17 19.7a6.22 6.22 0 0 1-2.55-1.68A4.48 4.48 0 0 1 13.5 15v-2.05c1.2-.17 2.16-.71 2.83-1.23Zm.06-2.15Z\"]);\nexport const ShieldCheckmark16Filled = /*#__PURE__*/createFluentIcon('ShieldCheckmark16Filled', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v1.1a5.5 5.5 0 0 0-7.5 7.2C3.84 11.6 3 9.81 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM15 10.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-2.15-1.85c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 2.65-2.64c.2-.2.5-.2.7 0Z\"]);\nexport const ShieldCheckmark16Regular = /*#__PURE__*/createFluentIcon('ShieldCheckmark16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v1.1c-.32-.16-.65-.3-1-.4v-.22a6.64 6.64 0 0 1-4-1.8 6.65 6.65 0 0 1-4 1.8V7.5c0 1.43.36 2.56 1.02 3.44.05.66.22 1.29.48 1.86C3.84 11.6 3 9.81 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM15 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L9.5 11.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldCheckmark20Filled = /*#__PURE__*/createFluentIcon('ShieldCheckmark20Filled', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6a5.5 5.5 0 0 0-6.78 8.35l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-2.15-1.85c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1-1a.5.5 0 0 1 .7-.7l.65.64 2.65-2.64c.2-.2.5-.2.7 0Z\"]);\nexport const ShieldCheckmark20Regular = /*#__PURE__*/createFluentIcon('ShieldCheckmark20Regular', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.6c-.32-.16-.65-.3-1-.4V5.44a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.24 1.8 5.64 5.48 7.25.2.43.44.84.74 1.2l-.04.02a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldCheckmark24Filled = /*#__PURE__*/createFluentIcon('ShieldCheckmark24Filled', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.5 6.5 0 0 0-8.33 9.8l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-2.15-2.35c.2.2.2.5 0 .7l-4 4a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 .7-.7l1.65 1.64 3.65-3.64c.2-.2.5-.2.7 0Z\"]);\nexport const ShieldCheckmark24Regular = /*#__PURE__*/createFluentIcon('ShieldCheckmark24Regular', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 .34-.01.67-.04 1a6.47 6.47 0 0 0-1.46-.69V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8V11c0 4.15 2.33 7.22 7.13 9.28.26.56.6 1.07 1 1.52l-.36.15a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldCheckmark28Filled = /*#__PURE__*/createFluentIcon('ShieldCheckmark28Filled', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 .16 0 .33-.02.49a7.5 7.5 0 0 0-9.86 11.25c-.33.1-.67.18-1 .24L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.65-2.85a.5.5 0 0 0-.7 0L19 22.29l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l5-5a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldCheckmark28Regular = /*#__PURE__*/createFluentIcon('ShieldCheckmark28Regular', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 .16 0 .33-.02.49a7.5 7.5 0 0 0-1.48-.87V6.98a18.8 18.8 0 0 1-5.73-1.4A23.46 23.46 0 0 1 14 3.65c-.84.54-2.19 1.27-3.78 1.91-1.69.69-3.7 1.28-5.72 1.4V14c0 2.47 1.4 4.93 3.4 6.88 1.93 1.92 4.3 3.24 6.1 3.6l.12-.03c.3.46.63.9 1 1.28-.33.1-.67.19-1 .25L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.65-2.85a.5.5 0 0 0-.7 0L19 22.29l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l5-5a.5.5 0 0 0 0-.7Z\"]);\nexport const ShieldCheckmark48Filled = /*#__PURE__*/createFluentIcon('ShieldCheckmark48Filled', \"48\", [\"M24.86 4.35a1.25 1.25 0 0 0-1.73 0c-2.75 2.64-6.68 4.08-10.03 4.84a35.66 35.66 0 0 1-5.86.81h-.02c-.68.02-1.22.57-1.22 1.25v9.5c0 4.84 1.24 9.66 4.1 13.77 2.86 4.13 7.29 7.47 13.53 9.42.24.08.5.08.74 0l.92-.3a13 13 0 0 1 16.55-19.7c.1-.98.16-1.96.16-2.94v-9.75c0-.68-.54-1.23-1.22-1.25h-.02a9.38 9.38 0 0 1-.41-.02l-1.25-.1c-1.06-.11-2.54-.32-4.2-.7-3.35-.75-7.28-2.19-10.04-4.83ZM46 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-4.3-4.7a1 1 0 0 0-1.4 0L33 37.58l-3.3-3.3a1 1 0 0 0-1.4 1.42l4 4a1 1 0 0 0 1.4 0l8-8a1 1 0 0 0 0-1.42Z\"]);\nexport const ShieldCheckmark48Regular = /*#__PURE__*/createFluentIcon('ShieldCheckmark48Regular', \"48\", [\"M23.13 4.35a1.25 1.25 0 0 1 1.73 0c2.76 2.64 6.69 4.08 10.04 4.84a35.65 35.65 0 0 0 5.86.81h.02c.68.02 1.22.57 1.22 1.25V21c0 .98-.05 1.96-.16 2.94-.76-.47-1.56-.86-2.4-1.16.04-.6.06-1.19.06-1.78v-8.57l-.65-.07a38.15 38.15 0 0 1-4.5-.73c-3.22-.74-7.21-2.1-10.35-4.7-3.14 2.6-7.13 3.96-10.35 4.7a38.15 38.15 0 0 1-5.15.8v8.32c0 4.41 1.13 8.72 3.65 12.35 2.4 3.47 6.12 6.4 11.48 8.22.47.83 1.03 1.61 1.66 2.32l-.92.3c-.24.08-.5.08-.74 0-6.24-1.95-10.67-5.29-13.53-9.42A23.95 23.95 0 0 1 6 20.75v-9.5c0-.68.54-1.23 1.22-1.25h.02a9.4 9.4 0 0 0 .41-.02l1.25-.1c1.06-.11 2.54-.32 4.2-.7 3.35-.75 7.28-2.19 10.03-4.83ZM46 35a11 11 0 1 0-22 0 11 11 0 0 0 22 0Zm-4.3-4.7a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4l3.3 3.29 7.3-7.3a1 1 0 0 1 1.4 0Z\"]);\nexport const ShieldDismiss16Filled = /*#__PURE__*/createFluentIcon('ShieldDismiss16Filled', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v3c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.64 12.91 3 10.72 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM6.53 5.84a.5.5 0 0 0-.63.06l-.06.07a.5.5 0 0 0 .06.63L7.3 8 5.9 9.4l-.06.07a.5.5 0 0 0 .06.63l.07.06c.2.14.46.12.63-.06L8 8.7l1.4 1.4.07.06c.2.14.46.12.63-.06l.06-.07a.5.5 0 0 0-.06-.63L8.7 8l1.4-1.4.06-.07a.5.5 0 0 0-.06-.63l-.07-.06a.5.5 0 0 0-.63.06L8 7.3 6.6 5.9l-.07-.06Z\"]);\nexport const ShieldDismiss16Regular = /*#__PURE__*/createFluentIcon('ShieldDismiss16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4a.5.5 0 0 1 .5.41V7.5c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.74 12.94 3.1 10.85 3 7.8V4.5c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM8 3.19a6.7 6.7 0 0 1-3.71 1.76L4 4.98V7.5c0 2.64 1.22 4.4 3.74 5.37l.26.1.26-.1c2.43-.93 3.65-2.61 3.74-5.1V4.98a6.64 6.64 0 0 1-4-1.8ZM6.09 6.22l.06-.07a.5.5 0 0 1 .64-.06l.07.06L8 7.29l1.15-1.14a.5.5 0 0 1 .64-.06l.07.06c.17.17.19.44.05.63l-.06.07L8.71 8l1.14 1.15c.18.17.2.44.06.63l-.06.07a.5.5 0 0 1-.63.06l-.07-.06L8 8.71 6.85 9.85a.5.5 0 0 1-.63.06l-.07-.06a.5.5 0 0 1-.06-.63l.06-.07L7.29 8 6.15 6.85a.5.5 0 0 1-.06-.63l.06-.07-.06.07Z\"]);\nexport const ShieldDismiss20Filled = /*#__PURE__*/createFluentIcon('ShieldDismiss20Filled', \"20\", [\"M10.28 2.08c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42.5.5 0 0 1 .55 0ZM8.03 6.97a.75.75 0 0 0-1.06 1.06L8.94 10l-1.97 1.97a.75.75 0 1 0 1.06 1.06L10 11.06l1.97 1.97a.75.75 0 1 0 1.06-1.06L11.06 10l1.97-1.97a.75.75 0 0 0-1.06-1.06L10 8.94 8.03 6.97Z\"]);\nexport const ShieldDismiss20Regular = /*#__PURE__*/createFluentIcon('ShieldDismiss20Regular', \"20\", [\"M7.85 7.15a.5.5 0 1 0-.7.7L9.29 10l-2.14 2.15a.5.5 0 0 0 .7.7L10 10.71l2.15 2.14a.5.5 0 0 0 .7-.7L10.71 10l2.14-2.15a.5.5 0 0 0-.7-.7L10 9.29 7.85 7.15Zm2.43-5.07a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldDismiss24Filled = /*#__PURE__*/createFluentIcon('ShieldDismiss24Filled', \"24\", [\"M12.45 2.15C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0ZM9.28 8.22a.75.75 0 0 0-1.13.98l.07.08L10.94 12l-2.72 2.73a.75.75 0 1 0 1.06 1.06L12 13.06l2.73 2.73c.26.26.68.29.97.07l.09-.07a.75.75 0 0 0 .07-.98l-.07-.08L13.06 12l2.73-2.72a.75.75 0 1 0-1.06-1.06L12 10.94 9.28 8.22Z\"]);\nexport const ShieldDismiss24Regular = /*#__PURE__*/createFluentIcon('ShieldDismiss24Regular', \"24\", [\"M12.45 2.15C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0ZM12 3.68a14.36 14.36 0 0 1-7.5 2.8V11c0 4.26 2.45 7.38 7.5 9.44 5.05-2.06 7.5-5.18 7.5-9.44V6.48a14.36 14.36 0 0 1-7.5-2.8ZM9.28 8.22 12 10.94l2.73-2.72a.75.75 0 0 1 .97-.07l.09.07c.26.27.29.68.07.98l-.07.08L13.06 12l2.73 2.73a.75.75 0 1 1-1.06 1.06L12 13.06 9.28 15.8a.75.75 0 0 1-.97.07l-.09-.07a.75.75 0 0 1-.07-.98l.07-.08L10.94 12 8.22 9.28a.75.75 0 0 1 1.06-1.06Z\"]);\nexport const ShieldDismissShield20Filled = /*#__PURE__*/createFluentIcon('ShieldDismissShield20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0c.34-.14.68-.27 1-.42a5.82 5.82 0 0 1-.66-1.16 7.05 7.05 0 0 1-.52-2.5V11.05l-1.97 1.97a.75.75 0 0 1-1.06-1.06L8.94 10 6.97 8.03a.75.75 0 0 1 1.06-1.06L10 8.94l1.97-1.97a.75.75 0 1 1 1.06 1.06l-1.64 1.64h.01c.9 0 1.76-.37 2.6-1.24a1.39 1.39 0 0 1 2 0 5.06 5.06 0 0 0 1 .8V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM17 10.35a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 13 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0 2.56-.89 3.87-2.71 3.87-5.4V11a.4.4 0 0 0-.4-.33 4.24 4.24 0 0 1-1.6-.32Z\"]);\nexport const ShieldDismissShield20Regular = /*#__PURE__*/createFluentIcon('ShieldDismissShield20Regular', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0c.34-.14.68-.27 1-.42-.2-.27-.38-.56-.52-.86-.21.1-.43.18-.66.27-4.03-1.6-6-4.07-6-7.46V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43v3a5.06 5.06 0 0 0 1 .8V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm-.24 8.67c.11-.47.46-.87.94-1.02l1.87-1.88a.5.5 0 0 0-.7-.7L10 9.29 7.85 7.15a.5.5 0 1 0-.7.7L9.29 10l-2.14 2.15a.5.5 0 0 0 .7.7L10 10.71l.04.04Zm6.96-.4a4.63 4.63 0 0 1-1-.59c-.24-.18-.48-.4-.72-.64a.39.39 0 0 0-.56 0 4.5 4.5 0 0 1-3.32 1.55.4.4 0 0 0-.4.41v2.77c.03.8.18 1.51.44 2.15A4.81 4.81 0 0 0 13 18c.52.4 1.15.73 1.87.98.09.03.17.03.26 0 2.56-.89 3.87-2.71 3.87-5.4V11a.4.4 0 0 0-.4-.33 4.24 4.24 0 0 1-1.6-.32Z\"]);\nexport const ShieldError16Filled = /*#__PURE__*/createFluentIcon('ShieldError16Filled', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM8.5 5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 1 0Zm-.5 6A.75.75 0 1 1 8 10a.75.75 0 0 1 0 1.5Z\"]);\nexport const ShieldError16Regular = /*#__PURE__*/createFluentIcon('ShieldError16Regular', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM4 4.98a6.65 6.65 0 0 0 4-1.8 6.64 6.64 0 0 0 4 1.8V7.5c0 1.43-.36 2.57-1.02 3.45A6.13 6.13 0 0 1 8 12.97a6.13 6.13 0 0 1-2.98-2.02A5.57 5.57 0 0 1 4 7.5V4.98Zm4.5.52a.5.5 0 0 0-1 0v3a.5.5 0 0 0 1 0v-3Zm.25 5.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z\"]);\nexport const ShieldError20Filled = /*#__PURE__*/createFluentIcon('ShieldError20Filled', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM10 6a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5A.5.5 0 0 0 10 6Zm0 8.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z\"]);\nexport const ShieldError20Regular = /*#__PURE__*/createFluentIcon('ShieldError20Regular', \"20\", [\"M10 6c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5Zm0 8.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Z\"]);\nexport const ShieldError24Filled = /*#__PURE__*/createFluentIcon('ShieldError24Filled', \"24\", [\"M20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75Zm-9 2.63a.75.75 0 0 1 1.5 0V14.33a.75.75 0 0 1-1.5 0V7.63ZM12 18a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const ShieldError24Regular = /*#__PURE__*/createFluentIcon('ShieldError24Regular', \"24\", [\"M20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75ZM4.5 6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44V6.48Zm8.24 1.17a.75.75 0 0 0-1.49.1v6.6a.75.75 0 0 0 1.5-.1v-6.6ZM12 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const ShieldGlobe16Filled = /*#__PURE__*/createFluentIcon('ShieldGlobe16Filled', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM8 5.5c-.16 0-.3.36-.39.91-.05.31-.08.68-.1 1.09h.98c-.02-.4-.05-.78-.1-1.09-.1-.55-.23-.91-.39-.91Zm-1.33.54A9.5 9.5 0 0 0 6.5 7.5h-.96A2.5 2.5 0 0 1 6.7 5.86a5.2 5.2 0 0 0-.03.18Zm.03 4.1A2.5 2.5 0 0 1 5.55 8.5h.96a9.5 9.5 0 0 0 .2 1.64Zm1.69-.55c.05-.31.08-.68.1-1.09h-.98c.02.4.05.78.1 1.09.1.55.23.91.39.91s.3-.36.39-.91Zm.94.37c.09-.4.14-.91.16-1.46h.96a2.5 2.5 0 0 1-1.15 1.64l.03-.18Zm-.03-4.1a2.5 2.5 0 0 1 1.15 1.64h-.96a9.5 9.5 0 0 0-.2-1.64ZM8 11.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z\"]);\nexport const ShieldGlobe16Regular = /*#__PURE__*/createFluentIcon('ShieldGlobe16Regular', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM4 4.98a6.65 6.65 0 0 0 4-1.8 6.64 6.64 0 0 0 4 1.8V7.5c0 1.43-.36 2.57-1.02 3.45A6.13 6.13 0 0 1 8 12.97a6.13 6.13 0 0 1-2.98-2.02A5.57 5.57 0 0 1 4 7.5V4.98ZM9.94 8.5h-.45c-.02.34-.06.67-.12.96a2 2 0 0 0 .57-.96Zm0-1a2 2 0 0 0-.57-.96c.06.29.1.62.12.96h.45Zm-1.46 0a6.12 6.12 0 0 0-.06-.6C8.32 6.34 8.17 6 8 6c-.17 0-.33.35-.42.9-.03.18-.05.38-.06.6h.96Zm-.96 1c.01.22.03.42.06.6.1.55.25.9.42.9.17 0 .33-.35.42-.9.03-.18.05-.38.06-.6h-.96Zm-1 0h-.46c.1.37.3.7.57.96-.06-.29-.1-.62-.12-.96Zm0-1c.01-.34.05-.67.11-.96a2 2 0 0 0-.57.96h.45ZM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\"]);\nexport const ShieldGlobe20Filled = /*#__PURE__*/createFluentIcon('ShieldGlobe20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm2.68 8.42a3 3 0 0 1-1.43 2.08c.24-.57.4-1.3.45-2.08h.98Zm0-1a3 3 0 0 0-1.43-2.08c.24.57.4 1.3.45 2.08h.98Zm-1.98 0a5.13 5.13 0 0 0-.46-1.88 1.72 1.72 0 0 0-.39-.54.43.43 0 0 0-.12-.08.03.03 0 0 0-.02 0h-.01a.43.43 0 0 0-.11.08c-.11.09-.25.26-.39.54-.23.46-.4 1.11-.46 1.88h1.96Zm-1.96 1c.05.77.23 1.42.46 1.88.14.28.28.45.39.54a.42.42 0 0 0 .12.08.03.03 0 0 0 .02 0h.01c.02-.01.06-.03.11-.08.11-.09.25-.26.39-.54.23-.46.4-1.11.46-1.88H9.02Zm-1 0c.04.79.2 1.5.45 2.08a3 3 0 0 1-1.43-2.08h.98Zm0-1c.04-.79.2-1.5.45-2.08A3 3 0 0 0 7.04 9.5h.98ZM14 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const ShieldGlobe20Regular = /*#__PURE__*/createFluentIcon('ShieldGlobe20Regular', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Zm8.96 5.07h-.98c-.04.79-.2 1.5-.45 2.08a3 3 0 0 0 1.43-2.08Zm0-1a3 3 0 0 0-1.43-2.08c.24.57.4 1.3.45 2.08h.98Zm-1.98 0a5.13 5.13 0 0 0-.46-1.88 1.72 1.72 0 0 0-.39-.54.43.43 0 0 0-.12-.08.03.03 0 0 0-.02 0h-.01a.43.43 0 0 0-.11.08c-.11.09-.25.26-.39.54-.23.46-.4 1.11-.46 1.88h1.96Zm-1.96 1c.05.77.23 1.42.46 1.88.14.28.28.45.39.54a.42.42 0 0 0 .12.08.03.03 0 0 0 .02 0h.01c.02-.01.06-.03.11-.08.11-.09.25-.26.39-.54.23-.46.4-1.11.46-1.88H9.02Zm-1 0h-.98a3 3 0 0 0 1.43 2.08c-.24-.57-.4-1.3-.45-2.08Zm0-1c.04-.79.2-1.5.45-2.08A3 3 0 0 0 7.04 9.5h.98ZM14 10a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const ShieldGlobe24Filled = /*#__PURE__*/createFluentIcon('ShieldGlobe24Filled', \"24\", [\"M3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5Zm6.32 10.5a9.63 9.63 0 0 1-.55-2.75H8.07a4 4 0 0 0 2 2.76Zm1.53-.23a7.56 7.56 0 0 1-.57-2.52h1.94a7.56 7.56 0 0 1-.57 2.52c-.17.37-.3.56-.4.65-.1-.1-.23-.28-.4-.65Zm0-6.54c-.28.62-.5 1.49-.57 2.52h1.94a7.56 7.56 0 0 0-.57-2.52 2.34 2.34 0 0 0-.4-.65c-.1.1-.23.28-.4.65Zm2.33 6.78c.29-.77.48-1.72.55-2.76h1.45a4 4 0 0 1-2 2.76Zm.55-4.26h1.45a4 4 0 0 0-2-2.76c.29.77.48 1.72.55 2.76Zm-6.41 0h1.45c.07-1.04.26-1.99.55-2.76a4 4 0 0 0-2 2.76ZM12 6.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Z\"]);\nexport const ShieldGlobe24Regular = /*#__PURE__*/createFluentIcon('ShieldGlobe24Regular', \"24\", [\"M3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5Zm.75 6V6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44Zm5.57 4.5a9.63 9.63 0 0 1-.55-2.75H8.07a4 4 0 0 0 2 2.76Zm1.53-.23c.17.37.3.56.4.65.1-.1.23-.28.4-.65.28-.62.5-1.49.57-2.52h-1.94c.07 1.03.29 1.9.57 2.52Zm0-6.54c-.28.62-.5 1.49-.57 2.52h1.94a7.56 7.56 0 0 0-.57-2.52 2.34 2.34 0 0 0-.4-.65c-.1.1-.23.28-.4.65Zm2.33 6.78a4 4 0 0 0 2-2.76h-1.45a9.63 9.63 0 0 1-.55 2.76Zm.55-4.26h1.45a4 4 0 0 0-2-2.76c.29.77.48 1.72.55 2.76Zm-6.41 0h1.45c.07-1.04.26-1.99.55-2.76a4 4 0 0 0-2 2.76ZM12 6.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Z\"]);\nexport const ShieldKeyhole16Filled = /*#__PURE__*/createFluentIcon('ShieldKeyhole16Filled', \"16\", [\"M7.14 2.04c.18-.12.31-.22.4-.3l.1-.1a.5.5 0 0 1 .71 0l.11.1.4.3a8.7 8.7 0 0 0 3.78 1.4 7.89 7.89 0 0 0 .8.06h.05A.5.5 0 0 1 14 4v2.76a7.5 7.5 0 0 1-3.68 6.45l-2.06 1.22a.5.5 0 0 1-.51 0l-2.06-1.22A7.5 7.5 0 0 1 2 6.76V4a.5.5 0 0 1 .5-.5h.06a5.17 5.17 0 0 0 .8-.07 9.27 9.27 0 0 0 3.78-1.39Zm2.11 5.21A1.25 1.25 0 1 0 7.5 8.4v1.1a.5.5 0 1 0 1 0V8.4c.44-.2.75-.64.75-1.15Z\"]);\nexport const ShieldKeyhole16Regular = /*#__PURE__*/createFluentIcon('ShieldKeyhole16Regular', \"16\", [\"M9.25 7.25c0 .51-.3.95-.75 1.15v1.1a.5.5 0 1 1-1 0V8.4a1.25 1.25 0 1 1 1.75-1.15Zm-2.1-5.2A9.27 9.27 0 0 1 2.55 3.5l-.06-.01A.5.5 0 0 0 2 4v2.76a7.5 7.5 0 0 0 3.69 6.45l2.06 1.22c.15.1.35.1.5 0l2.07-1.22A7.5 7.5 0 0 0 14 6.76V4a.5.5 0 0 0-.5-.5h-.06a4.96 4.96 0 0 1-.8-.06 8.98 8.98 0 0 1-4.29-1.8.5.5 0 0 0-.7 0l-.11.1c-.09.08-.22.18-.4.3ZM3 6.74V4.49a9.6 9.6 0 0 0 2.78-.63A9.3 9.3 0 0 0 8 2.65l.3.22a9.69 9.69 0 0 0 4.7 1.6v2.29a6.5 6.5 0 0 1-3.2 5.6L8 13.41l-1.8-1.07A6.5 6.5 0 0 1 3 6.75Z\"]);\nexport const ShieldKeyhole20Filled = /*#__PURE__*/createFluentIcon('ShieldKeyhole20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM11.5 9c0 .65-.42 1.2-1 1.41v2.09a.5.5 0 0 1-1 0v-2.09a1.5 1.5 0 1 1 2-1.41Z\"]);\nexport const ShieldKeyhole20Regular = /*#__PURE__*/createFluentIcon('ShieldKeyhole20Regular', \"20\", [\"M11.5 9c0 .65-.42 1.2-1 1.41v2.09a.5.5 0 0 1-1 0v-2.09a1.5 1.5 0 1 1 2-1.41Zm-1.22-6.92a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldKeyhole24Filled = /*#__PURE__*/createFluentIcon('ShieldKeyhole24Filled', \"24\", [\"M3 5.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75ZM14 11a2 2 0 0 1-1.25 1.85v2.4a.75.75 0 0 1-1.5 0v-2.4A2 2 0 1 1 14 11Z\"]);\nexport const ShieldKeyhole24Regular = /*#__PURE__*/createFluentIcon('ShieldKeyhole24Regular', \"24\", [\"M14 11a2 2 0 0 1-1.25 1.85v2.4a.75.75 0 0 1-1.5 0v-2.4A2 2 0 1 1 14 11ZM3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5Zm.75 6V6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44Z\"]);\nexport const ShieldLock16Filled = /*#__PURE__*/createFluentIcon('ShieldLock16Filled', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 2.92 1.35 5 4 6.15V10a2 2 0 0 1 1.5-1.94V8A3 3 0 0 1 13 5.4v-.9a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM9.5 9V8a2 2 0 1 1 4 0v1h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h.5Zm1-1v1h2V8a1 1 0 1 0-2 0Zm1.75 4a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ShieldLock16Regular = /*#__PURE__*/createFluentIcon('ShieldLock16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v.9c-.3-.17-.64-.3-1-.36v-.06a6.64 6.64 0 0 1-4-1.8 6.65 6.65 0 0 1-4 1.8V7.5c0 1.43.36 2.57 1.02 3.45A5.54 5.54 0 0 0 7 12.55v1.1A6.24 6.24 0 0 1 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM9.5 8v1H9a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.5V8a2 2 0 1 0-4 0Zm1 1V8a1 1 0 1 1 2 0v1h-2Zm1 2.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z\"]);\nexport const ShieldLock20Filled = /*#__PURE__*/createFluentIcon('ShieldLock20Filled', \"20\", [\"M12.5 12v-1a2 2 0 1 1 4 0v1h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h.5Zm1-1v1h2v-1a1 1 0 1 0-2 0Zm1.75 4a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.34A3 3 0 0 0 11.5 11v.06A2 2 0 0 0 10 13v4a2 2 0 0 0 .24.94l-.06.03a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Z\"]);\nexport const ShieldLock20Regular = /*#__PURE__*/createFluentIcon('ShieldLock20Regular', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.34c-.26-.38-.6-.7-1-.94V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46V17a2 2 0 0 0 .24.94l-.06.03a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM12.5 12v-1a2 2 0 1 1 4 0v1h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h.5Zm1-1v1h2v-1a1 1 0 1 0-2 0Zm1.75 4a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ShieldLock24Filled = /*#__PURE__*/createFluentIcon('ShieldLock24Filled', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11l-.01.54A3.49 3.49 0 0 0 15 14v.05a2.5 2.5 0 0 0-2 2.45v5.15l-.73.3a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM16 15v-1a2.5 2.5 0 0 1 5 0v1h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5h.5Zm1.5-1v1h2v-1a1 1 0 1 0-2 0Zm2 5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const ShieldLock24Regular = /*#__PURE__*/createFluentIcon('ShieldLock24Regular', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11l-.01.54a3.5 3.5 0 0 0-1.49-.9V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8V11c0 4.26 2.45 7.38 7.5 9.44a21 21 0 0 0 1-.44v1.65l-.73.3a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM16 15v-1a2.5 2.5 0 0 1 5 0v1h.5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-6a1.5 1.5 0 0 1-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5h.5Zm1.5-1v1h2v-1a1 1 0 1 0-2 0Zm2 5a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const ShieldLock28Filled = /*#__PURE__*/createFluentIcon('ShieldLock28Filled', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 .32-.02.64-.06.96A4 4 0 0 0 17.5 17v.04A3 3 0 0 0 15 20v5c0 .26.03.5.1.74-.34.1-.66.18-.97.24L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04ZM18.5 18v-1a3 3 0 1 1 6 0v1h.5a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2v-5c0-1.1.9-2 2-2h.5Zm1.5-1v1h3v-1a1.5 1.5 0 0 0-3 0Zm3 5.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z\"]);\nexport const ShieldLock28Regular = /*#__PURE__*/createFluentIcon('ShieldLock28Regular', \"28\", [\"M13.56 2.14a.75.75 0 0 1 .88 0 20.3 20.3 0 0 0 3.9 2.04c1.8.73 3.92 1.32 5.9 1.32.42 0 .76.34.76.75V14c0 .32-.02.64-.06.96a4.02 4.02 0 0 0-1.44-1.43V6.98a18.8 18.8 0 0 1-5.73-1.4A23.46 23.46 0 0 1 14 3.65c-.84.54-2.19 1.27-3.78 1.91-1.69.69-3.7 1.28-5.72 1.4V14c0 2.47 1.4 4.93 3.4 6.88 1.93 1.92 4.3 3.24 6.1 3.6a7.5 7.5 0 0 0 1-.28v.8c0 .26.03.5.1.74-.34.1-.66.18-.97.24L14 26l-.13-.02c-2.2-.39-4.9-1.92-7.03-4.03C4.7 19.85 3 17.03 3 14V6.25c0-.41.34-.75.75-.75 2 0 4.1-.59 5.91-1.32a20.3 20.3 0 0 0 3.9-2.04ZM18.5 18v-1a3 3 0 1 1 6 0v1h.5a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2v-5c0-1.1.9-2 2-2h.5Zm1.5-1v1h3v-1a1.5 1.5 0 0 0-3 0Zm3 5.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z\"]);\nexport const ShieldLock48Filled = /*#__PURE__*/createFluentIcon('ShieldLock48Filled', \"48\", [\"M24.86 4.35a1.25 1.25 0 0 0-1.73 0c-2.75 2.64-6.68 4.08-10.03 4.84a35.66 35.66 0 0 1-5.86.81h-.02c-.68.02-1.22.57-1.22 1.25v9.5c0 4.84 1.24 9.66 4.1 13.77 2.86 4.13 7.29 7.47 13.53 9.42.24.08.5.08.74 0 .56-.17 1.11-.36 1.64-.56L26 43V33a5 5 0 0 1 4.06-4.91 7 7 0 0 1 11.78-4.15c.1-.98.16-1.96.16-2.94v-9.75c0-.68-.54-1.23-1.22-1.25h-.02a9.38 9.38 0 0 1-.41-.02l-1.25-.1c-1.06-.11-2.54-.32-4.2-.7-3.35-.75-7.28-2.19-10.04-4.83ZM32 30v-1a5 5 0 0 1 10 0v1h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H31a3 3 0 0 1-3-3V33a3 3 0 0 1 3-3h1Zm2.5-1v1h5v-1a2.5 2.5 0 0 0-5 0Zm5.5 9a3 3 0 1 0-6 0 3 3 0 0 0 6 0Z\"]);\nexport const ShieldLock48Regular = /*#__PURE__*/createFluentIcon('ShieldLock48Regular', \"48\", [\"M23.13 4.35a1.25 1.25 0 0 1 1.73 0c2.76 2.64 6.69 4.08 10.04 4.84a35.65 35.65 0 0 0 5.86.81h.02c.68.02 1.22.57 1.22 1.25V21c0 .98-.05 1.96-.16 2.94a7 7 0 0 0-2.38-1.5c.03-.48.04-.96.04-1.44v-8.57l-.65-.07a38.15 38.15 0 0 1-4.5-.73c-3.22-.74-7.21-2.1-10.35-4.7-3.14 2.6-7.13 3.96-10.35 4.7a38.15 38.15 0 0 1-5.15.8v8.32c0 4.41 1.13 8.72 3.65 12.35 2.46 3.55 6.29 6.52 11.85 8.34.7-.23 1.36-.47 2-.73V43l.01.38c-.53.2-1.08.39-1.64.56-.24.08-.5.08-.74 0-6.24-1.95-10.67-5.29-13.53-9.42A23.95 23.95 0 0 1 6 20.75v-9.5c0-.68.54-1.23 1.22-1.25h.02a9.4 9.4 0 0 0 .41-.02l1.25-.1c1.06-.11 2.54-.32 4.2-.7 3.35-.75 7.28-2.19 10.03-4.83ZM32 30v-1a5 5 0 0 1 10 0v1h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H31a3 3 0 0 1-3-3V33a3 3 0 0 1 3-3h1Zm2.5-1v1h5v-1a2.5 2.5 0 0 0-5 0Zm5.5 9a3 3 0 1 0-6 0 3 3 0 0 0 6 0Z\"]);\nexport const ShieldPerson20Filled = /*#__PURE__*/createFluentIcon('ShieldPerson20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM10 9.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0 5c-2.5 0-3.5-1.25-3.5-2.5 0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5 0 1.24-1 2.5-3.5 2.5Z\"]);\nexport const ShieldPerson20Regular = /*#__PURE__*/createFluentIcon('ShieldPerson20Regular', \"20\", [\"M10 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 5c2.5 0 3.5-1.26 3.5-2.5 0-.83-.67-1.5-1.5-1.5H8c-.83 0-1.5.67-1.5 1.5 0 1.25 1 2.5 3.5 2.5Zm.28-12.42a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldPersonAdd20Filled = /*#__PURE__*/createFluentIcon('ShieldPersonAdd20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.04-.02A5.48 5.48 0 0 1 9 14.42c-1.77-.29-2.5-1.35-2.5-2.42 0-.83.67-1.5 1.5-1.5h2.73A5.48 5.48 0 0 1 17 9.6V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM10 9.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm9 5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldPersonAdd20Regular = /*#__PURE__*/createFluentIcon('ShieldPersonAdd20Regular', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.04-.02a5.5 5.5 0 0 1-.74-1.2C5.8 15.15 4 12.75 4 9.5V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.2c.35.1.68.23 1 .39V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM9 14.42a5.48 5.48 0 0 1 1.73-3.92H8c-.83 0-1.5.67-1.5 1.5 0 1.07.73 2.13 2.5 2.42Zm3-6.92a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm7 7a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const ShieldProhibited20Filled = /*#__PURE__*/createFluentIcon('ShieldProhibited20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.07-.03A5.5 5.5 0 1 1 17 9.26V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm.42 13.52 4.9-4.9a3.5 3.5 0 0 0-4.9 4.9Zm.7.7a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Zm2.1 1.7a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Z\"]);\nexport const ShieldProhibited20Regular = /*#__PURE__*/createFluentIcon('ShieldProhibited20Regular', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0l.07-.03c-.55-.4-1.02-.9-1.38-1.48C5.6 14.86 4 12.56 4 9.5V5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V8.6c.36.18.7.4 1 .66V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm.42 13.52 4.9-4.9a3.5 3.5 0 0 0-4.9 4.9Zm.7.7a3.5 3.5 0 0 0 4.9-4.9l-4.9 4.9Zm2.1 1.7a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Z\"]);\nexport const ShieldProhibited24Filled = /*#__PURE__*/createFluentIcon('ShieldProhibited24Filled', \"24\", [\"M3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0l.43-.17a6.5 6.5 0 1 1 8.28-10L21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5ZM16.5 22a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm-3.3-3.25a4 4 0 0 1 5.56-5.56l-5.57 5.56Zm1.05 1.06 5.56-5.56a4 4 0 0 1-5.56 5.56Z\"]);\nexport const ShieldProhibited24Regular = /*#__PURE__*/createFluentIcon('ShieldProhibited24Regular', \"24\", [\"M3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0l.43-.17a6.54 6.54 0 0 1-1.67-1.76C6.64 17.96 4.5 14.97 4.5 11V6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8v4.25c.54.28 1.04.64 1.48 1.06L21 11V5.75a.75.75 0 0 0-.75-.75c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5ZM16.5 22a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm-3.3-3.25a4 4 0 0 1 5.56-5.56l-5.57 5.56Zm1.05 1.06 5.56-5.56a4 4 0 0 1-5.56 5.56Z\"]);\nexport const ShieldQuestion16Filled = /*#__PURE__*/createFluentIcon('ShieldQuestion16Filled', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v3c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.64 12.91 3 10.72 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85Zm1.1 8.6a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-1.5-4a.75.75 0 0 1 1.5 0c0 .26-.14.44-.48.77l-.03.03c-.3.3-.74.74-.74 1.45a.5.5 0 0 0 1 0c0-.27.15-.44.48-.77L9 8.2c.3-.3.74-.74.74-1.45a1.75 1.75 0 1 0-3.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldQuestion16Regular = /*#__PURE__*/createFluentIcon('ShieldQuestion16Regular', \"16\", [\"M7.65 2.15c.2-.2.5-.2.7 0A5.71 5.71 0 0 0 12.5 4c.28 0 .5.22.5.5v3c0 3.22-1.64 5.4-4.84 6.47a.5.5 0 0 1-.32 0C4.64 12.91 3 10.72 3 7.5v-3c0-.28.22-.5.5-.5 1.53 0 2.9-.61 4.15-1.85ZM8 3.19a6.65 6.65 0 0 1-4 1.8V7.5c0 1.43.36 2.57 1.02 3.45.64.85 1.61 1.54 2.98 2.02a6.13 6.13 0 0 0 2.98-2.02A5.57 5.57 0 0 0 12 7.5V4.98a6.64 6.64 0 0 1-4-1.8Zm.75 7.56a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-1.5-4a.75.75 0 0 1 1.5 0c0 .26-.14.44-.48.77l-.03.03c-.3.3-.74.74-.74 1.45a.5.5 0 0 0 1 0c0-.27.15-.44.48-.77L9 8.2c.3-.3.74-.74.74-1.45a1.75 1.75 0 1 0-3.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldQuestion20Filled = /*#__PURE__*/createFluentIcon('ShieldQuestion20Filled', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42Zm1.03 11.67a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm-2-5.5a1.25 1.25 0 1 1 2.5 0c0 .46-.27.76-.73 1.22l-.03.03c-.42.42-.99.99-.99 1.9v.1a.5.5 0 0 0 1 0v-.1c0-.47.27-.77.73-1.22l.03-.04c.42-.41.99-.98.99-1.89a2.25 2.25 0 0 0-4.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldQuestion20Regular = /*#__PURE__*/createFluentIcon('ShieldQuestion20Regular', \"20\", [\"M9.72 2.08a.5.5 0 0 1 .56 0c1.94 1.3 4.03 2.1 6.3 2.43A.5.5 0 0 1 17 5v4.5c0 3.9-2.3 6.73-6.82 8.47a.5.5 0 0 1-.36 0C5.31 16.23 3 13.39 3 9.5V5a.5.5 0 0 1 .43-.5 15.05 15.05 0 0 0 6.3-2.42ZM9.6 3.35A15.97 15.97 0 0 1 4 5.43V9.5c0 3.4 1.97 5.86 6 7.46 4.03-1.6 6-4.07 6-7.46V5.43a15.97 15.97 0 0 1-5.6-2.08L10 3.1l-.4.25Zm1.15 10.4a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-2-5.5a1.25 1.25 0 1 1 2.5 0c0 .46-.27.76-.73 1.22l-.03.03c-.42.42-.99.99-.99 1.9v.1a.5.5 0 0 0 1 0v-.1c0-.47.27-.77.73-1.22l.03-.04c.42-.41.99-.98.99-1.89a2.25 2.25 0 0 0-4.5 0 .5.5 0 0 0 1 0Z\"]);\nexport const ShieldQuestion24Filled = /*#__PURE__*/createFluentIcon('ShieldQuestion24Filled', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75ZM13 16a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm-2.25-6.25a1.25 1.25 0 1 1 2.5 0c0 .45-.25.74-.78 1.27l-.05.05c-.47.46-1.17 1.16-1.17 2.28a.75.75 0 0 0 1.5 0c0-.45.25-.74.78-1.27l.05-.05c.47-.47 1.17-1.16 1.17-2.28a2.75 2.75 0 1 0-5.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ShieldQuestion24Regular = /*#__PURE__*/createFluentIcon('ShieldQuestion24Regular', \"24\", [\"M3 5.75c0-.41.34-.75.75-.75 2.66 0 5.26-.94 7.8-2.85.27-.2.63-.2.9 0C14.99 4.05 17.59 5 20.25 5c.41 0 .75.34.75.75V11c0 5-2.96 8.68-8.73 10.95a.75.75 0 0 1-.54 0C5.96 19.68 3 16 3 11V5.75Zm1.5.73V11c0 4.26 2.45 7.38 7.5 9.44 5.05-2.06 7.5-5.18 7.5-9.44V6.48a14.36 14.36 0 0 1-7.5-2.8 14.36 14.36 0 0 1-7.5 2.8ZM13 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-2.25-6.25a1.25 1.25 0 1 1 2.5 0c0 .45-.25.74-.78 1.27l-.05.05c-.47.46-1.17 1.16-1.17 2.28a.75.75 0 0 0 1.5 0c0-.45.25-.74.78-1.27l.05-.05c.47-.47 1.17-1.16 1.17-2.28a2.75 2.75 0 1 0-5.5 0 .75.75 0 0 0 1.5 0Z\"]);\nexport const ShieldQuestion32Filled = /*#__PURE__*/createFluentIcon('ShieldQuestion32Filled', \"32\", [\"M15.45 2.17a1 1 0 0 1 1.1 0A25.23 25.23 0 0 0 28.1 6.5a1 1 0 0 1 .9 1V16c0 3.88-2.12 7.17-4.7 9.55-2.57 2.37-5.74 3.97-8.12 4.41L16 30l-.18-.04c-2.38-.44-5.55-2.04-8.12-4.41C5.12 23.17 3 19.88 3 16V7.5a1 1 0 0 1 .9-1c4.79-.47 8.63-2.39 11.55-4.33Zm1.8 20.08a1.25 1.25 0 1 0-2.5 0 1.25 1.25 0 0 0 2.5 0ZM14 13a2 2 0 1 1 4 0c0 .73-.42 1.2-1.21 2.01l-.05.05c-.72.73-1.74 1.77-1.74 3.44a1 1 0 1 0 2 0c0-.8.43-1.3 1.21-2.09l.09-.08C19 15.62 20 14.61 20 13a4 4 0 0 0-8 0 1 1 0 1 0 2 0Z\"]);\nexport const ShieldQuestion32Regular = /*#__PURE__*/createFluentIcon('ShieldQuestion32Regular', \"32\", [\"M17.25 22.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM14 13a2 2 0 1 1 4 0c0 .73-.42 1.2-1.21 2.01l-.05.05c-.72.73-1.74 1.77-1.74 3.44a1 1 0 1 0 2 0c0-.8.43-1.3 1.21-2.09l.09-.08C19 15.62 20 14.61 20 13a4 4 0 0 0-8 0 1 1 0 1 0 2 0Zm2.55-10.83a1 1 0 0 0-1.1 0A25.23 25.23 0 0 1 3.9 6.5a1 1 0 0 0-.9 1V16c0 3.88 2.12 7.17 4.7 9.55 2.57 2.37 5.74 3.97 8.12 4.41L16 30l.18-.04c2.38-.44 5.55-2.04 8.12-4.41C26.88 23.17 29 19.88 29 16V7.5a1 1 0 0 0-.9-1 25.23 25.23 0 0 1-11.55-4.33ZM5 16V8.39a27.2 27.2 0 0 0 11-4.2 27.2 27.2 0 0 0 11 4.2V16c0 3.12-1.71 5.92-4.06 8.08-2.27 2.1-5 3.47-6.94 3.88a16.25 16.25 0 0 1-6.94-3.88C6.7 21.92 5 19.12 5 16Z\"]);\nexport const ShieldTask16Filled = /*#__PURE__*/createFluentIcon('ShieldTask16Filled', \"16\", [\"M8.35 2.15a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85Zm2.5 4c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 0 1 .7-.7L7.5 8.79l2.65-2.64c.2-.2.5-.2.7 0Z\"]);\nexport const ShieldTask16Regular = /*#__PURE__*/createFluentIcon('ShieldTask16Regular', \"16\", [\"M10.85 6.85a.5.5 0 0 0-.7-.7L7.5 8.79 6.35 7.65a.5.5 0 1 0-.7.7l1.5 1.5c.2.2.5.2.7 0l3-3Zm-2.5-4.7a.5.5 0 0 0-.7 0A5.72 5.72 0 0 1 3.5 4a.5.5 0 0 0-.5.5v3c0 3.22 1.64 5.4 4.84 6.47.1.04.22.04.32 0C11.36 12.91 13 10.72 13 7.5v-3a.5.5 0 0 0-.5-.5c-1.53 0-2.9-.61-4.15-1.85ZM4 4.98a6.65 6.65 0 0 0 4-1.8 6.64 6.64 0 0 0 4 1.8V7.5c0 1.43-.36 2.57-1.02 3.45A6.13 6.13 0 0 1 8 12.97a6.13 6.13 0 0 1-2.98-2.02A5.57 5.57 0 0 1 4 7.5V4.98Z\"]);\nexport const ShieldTask20Filled = /*#__PURE__*/createFluentIcon('ShieldTask20Filled', \"20\", [\"M10.28 2.08a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42Zm3.57 5.77-4 4a.5.5 0 0 1-.7 0l-2-2a.5.5 0 1 1 .7-.7l1.65 1.64 3.65-3.64a.5.5 0 0 1 .7.7Z\"]);\nexport const ShieldTask20Regular = /*#__PURE__*/createFluentIcon('ShieldTask20Regular', \"20\", [\"M13.85 7.85a.5.5 0 0 0-.7-.7L9.5 10.79 7.85 9.15a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4Zm-3.57-5.77a.5.5 0 0 0-.56 0 15.05 15.05 0 0 1-6.3 2.43A.5.5 0 0 0 3 5v4.5c0 3.9 2.3 6.73 6.82 8.47a.5.5 0 0 0 .36 0C14.69 16.23 17 13.39 17 9.5V5a.5.5 0 0 0-.43-.5 15.05 15.05 0 0 1-6.3-2.42ZM4 5.43a15.97 15.97 0 0 0 5.6-2.08l.4-.25.4.25A15.97 15.97 0 0 0 16 5.43V9.5c0 3.4-1.97 5.86-6 7.46-4.03-1.6-6-4.07-6-7.46V5.43Z\"]);\nexport const ShieldTask24Filled = /*#__PURE__*/createFluentIcon('ShieldTask24Filled', \"24\", [\"M20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75Zm-3.5 4.3-6 5.5a.75.75 0 0 1-1.03-.02l-2.5-2.5a.75.75 0 1 1 1.06-1.06l2 2 5.46-5.02a.75.75 0 0 1 1.02 1.1Z\"]);\nexport const ShieldTask24Regular = /*#__PURE__*/createFluentIcon('ShieldTask24Regular', \"24\", [\"M16.76 9.3a.75.75 0 0 0-1.02-1.1l-5.47 5.01-1.99-1.99a.75.75 0 0 0-1.06 1.06l2.5 2.5c.28.28.74.3 1.04.02l6-5.5ZM20.25 5c-2.66 0-5.26-.94-7.8-2.85a.75.75 0 0 0-.9 0C9.01 4.05 6.41 5 3.75 5a.75.75 0 0 0-.75.75V11c0 5 2.96 8.68 8.73 10.95.17.07.37.07.54 0C18.04 19.68 21 16 21 11V5.75a.75.75 0 0 0-.75-.75ZM4.5 6.48a14.36 14.36 0 0 0 7.5-2.8 14.36 14.36 0 0 0 7.5 2.8V11c0 4.26-2.45 7.38-7.5 9.44-5.05-2.06-7.5-5.18-7.5-9.44V6.48Z\"]);\nexport const ShieldTask28Filled = /*#__PURE__*/createFluentIcon('ShieldTask28Filled', \"28\", [\"M14.44 2.14a.75.75 0 0 0-.88 0 20.3 20.3 0 0 1-3.9 2.04A16.4 16.4 0 0 1 3.75 5.5a.75.75 0 0 0-.75.75V14c0 3.03 1.7 5.84 3.84 7.95 2.13 2.1 4.82 3.64 7.03 4.03L14 26l.13-.02c2.2-.39 4.9-1.92 7.03-4.03C23.3 19.85 25 17.03 25 14V6.25a.75.75 0 0 0-.75-.75c-2 0-4.1-.59-5.91-1.32a20.3 20.3 0 0 1-3.9-2.04Zm5.33 8.15-7.75 7.5a.75.75 0 0 1-1.02.02l-2.75-2.5a.75.75 0 0 1 1-1.12l2.23 2.03 7.25-7a.75.75 0 0 1 1.04 1.07Z\"]);\nexport const ShieldTask28Regular = /*#__PURE__*/createFluentIcon('ShieldTask28Regular', \"28\", [\"M14.44 2.14a.75.75 0 0 0-.88 0 20.3 20.3 0 0 1-3.9 2.04A16.4 16.4 0 0 1 3.75 5.5a.75.75 0 0 0-.75.75V14c0 3.03 1.7 5.84 3.84 7.95 2.13 2.1 4.82 3.64 7.03 4.03L14 26l.13-.02c2.2-.39 4.9-1.92 7.03-4.03C23.3 19.85 25 17.03 25 14V6.25a.75.75 0 0 0-.75-.75c-2 0-4.1-.59-5.91-1.32a20.3 20.3 0 0 1-3.9-2.04ZM4.5 14V6.98c2.01-.13 4.03-.72 5.72-1.4A23.45 23.45 0 0 0 14 3.65c.84.54 2.19 1.27 3.77 1.91a18.8 18.8 0 0 0 5.73 1.4V14c0 2.47-1.41 4.93-3.4 6.88-1.93 1.92-4.3 3.24-6.1 3.6-1.8-.36-4.17-1.68-6.1-3.6-2-1.95-3.4-4.4-3.4-6.88Zm15.27-3.71a.75.75 0 0 0-1.04-1.08l-7.25 7.01-2.23-2.02a.75.75 0 0 0-1 1.1L11 17.8c.29.27.74.26 1.02-.01l7.75-7.5Z\"]);\nexport const ShieldTask48Filled = /*#__PURE__*/createFluentIcon('ShieldTask48Filled', \"48\", [\"M23.13 4.35a1.25 1.25 0 0 1 1.73 0c2.76 2.64 6.69 4.08 10.04 4.84a35.65 35.65 0 0 0 5.86.81h.02c.68.02 1.22.57 1.22 1.25V21c0 9.5-5.06 19.02-17.63 22.94-.24.08-.5.08-.74 0-6.24-1.95-10.67-5.29-13.53-9.42A23.95 23.95 0 0 1 6 20.75v-9.5c0-.68.54-1.23 1.22-1.25h.02a9.4 9.4 0 0 0 .41-.02l1.25-.1c1.06-.11 2.54-.32 4.2-.7 3.35-.75 7.28-2.19 10.03-4.83Zm9.48 14.8a1.25 1.25 0 1 0-1.72-1.8L20.77 27l-3.64-3.63a1.25 1.25 0 0 0-1.76 1.76l4.5 4.5c.48.48 1.25.5 1.74.02l11-10.5Z\"]);\nexport const ShieldTask48Regular = /*#__PURE__*/createFluentIcon('ShieldTask48Regular', \"48\", [\"M32.61 19.15a1.25 1.25 0 0 0-1.72-1.8L20.77 27l-3.64-3.63a1.25 1.25 0 0 0-1.76 1.76l4.5 4.5c.48.48 1.25.5 1.74.02l11-10.5Zm-7.75-14.8a1.25 1.25 0 0 0-1.73 0c-2.75 2.64-6.68 4.08-10.03 4.84a35.66 35.66 0 0 1-5.86.81h-.02c-.68.02-1.22.57-1.22 1.25v9.5c0 4.84 1.24 9.66 4.1 13.77 2.86 4.13 7.29 7.47 13.53 9.42.24.08.5.08.74 0C36.94 40.02 42 30.5 42 21v-9.75c0-.68-.54-1.23-1.22-1.25h-.02a9.38 9.38 0 0 1-.41-.02l-1.25-.1c-1.06-.11-2.54-.32-4.2-.7-3.35-.75-7.28-2.19-10.04-4.83ZM8.5 20.75v-8.32l.65-.07c1.14-.11 2.72-.33 4.5-.73 3.22-.74 7.21-2.1 10.35-4.7 3.14 2.6 7.13 3.96 10.35 4.7a38.15 38.15 0 0 0 5.15.8V21c0 8.41-4.34 16.8-15.5 20.44-5.56-1.82-9.39-4.8-11.85-8.34A21.46 21.46 0 0 1 8.5 20.75Z\"]);\nexport const Shifts16Filled = /*#__PURE__*/createFluentIcon('Shifts16Filled', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2h-7Zm3 2c.28 0 .5.22.5.5V8h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5Z\"]);\nexport const Shifts16Regular = /*#__PURE__*/createFluentIcon('Shifts16Regular', \"16\", [\"M7.5 4c.28 0 .5.22.5.5V8h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-4c0-.28.22-.5.5-.5Z\", \"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 11.5 2h-7ZM3 4.5C3 3.67 3.67 3 4.5 3h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7Z\"]);\nexport const Shifts20Filled = /*#__PURE__*/createFluentIcon('Shifts20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm7 .5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5Z\"]);\nexport const Shifts20Regular = /*#__PURE__*/createFluentIcon('Shifts20Regular', \"20\", [\"M10 6.5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5ZM6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM4 6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6Z\"]);\nexport const Shifts24Filled = /*#__PURE__*/createFluentIcon('Shifts24Filled', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm-6 3a.75.75 0 0 0-.75.75v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75a.75.75 0 0 0-.75-.75Z\"]);\nexport const Shifts24Regular = /*#__PURE__*/createFluentIcon('Shifts24Regular', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm0 1.5H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75Zm-6 1.5c.38 0 .7.28.74.65l.01.1V12h3.75a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.74-.65l-.01-.1v-6c0-.41.34-.75.75-.75Z\"]);\nexport const Shifts28Filled = /*#__PURE__*/createFluentIcon('Shifts28Filled', \"28\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h15.5C23.55 3 25 4.46 25 6.25v15.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 21.75V6.25Zm11.5 1.5a.75.75 0 0 0-1.5 0v7c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5H14.5V7.75Z\"]);\nexport const Shifts28Regular = /*#__PURE__*/createFluentIcon('Shifts28Regular', \"28\", [\"M14.5 7.75a.75.75 0 0 0-1.5 0v7c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5H14.5V7.75ZM6.25 3A3.25 3.25 0 0 0 3 6.25v15.5C3 23.55 4.46 25 6.25 25h15.5c1.8 0 3.25-1.46 3.25-3.25V6.25C25 4.45 23.54 3 21.75 3H6.25ZM4.5 6.25c0-.97.78-1.75 1.75-1.75h15.5c.97 0 1.75.78 1.75 1.75v15.5c0 .97-.78 1.75-1.75 1.75H6.25c-.97 0-1.75-.78-1.75-1.75V6.25Z\"]);\nexport const Shifts30Minutes20Filled = /*#__PURE__*/createFluentIcon('Shifts30Minutes20Filled', \"20\", [\"M10 7a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM8 8a2 2 0 0 0-2 2v.5c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5V10a2 2 0 0 0-2-2H8Zm-2.5 5.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75 3.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.05-3.58c-.18.3-.3.77-.3 1.33s.12 1.03.3 1.33c.17.28.4.42.7.42.3 0 .53-.14.7-.42.18-.3.3-.77.3-1.33a2.6 2.6 0 0 0-.3-1.33c-.17-.28-.4-.42-.7-.42-.3 0-.53.14-.7.42Zm-.85-.52c.33-.53.85-.9 1.55-.9.7 0 1.22.37 1.55.9.32.5.45 1.17.45 1.85 0 .68-.13 1.34-.45 1.85-.33.53-.85.9-1.55.9-.7 0-1.22-.37-1.55-.9a3.58 3.58 0 0 1-.45-1.85c0-.68.13-1.34.45-1.85Zm-4.14.5c.46-.36.83-.43 1.08-.4.25.05.44.2.54.37.1.17.09.35 0 .48-.08.14-.32.35-.9.4a.5.5 0 0 0 0 1c.6.05.82.25.9.37.09.13.1.31 0 .5-.1.18-.3.33-.55.37-.25.04-.61-.02-1.07-.38a.5.5 0 1 0-.62.78c.62.5 1.26.68 1.85.6.57-.1 1.02-.45 1.26-.9a1.47 1.47 0 0 0-.33-1.85 1.47 1.47 0 0 0 .33-1.86c-.24-.44-.7-.78-1.27-.86a2.4 2.4 0 0 0-1.84.6.5.5 0 0 0 .62.78Z\"]);\nexport const Shifts30Minutes20Regular = /*#__PURE__*/createFluentIcon('Shifts30Minutes20Regular', \"20\", [\"M8.5 4.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm-3 8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V10a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V10Zm-1.5 3.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm-.75 3.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.05-3.58c-.18.3-.3.77-.3 1.33s.12 1.03.3 1.33c.17.28.4.42.7.42.3 0 .53-.14.7-.42.18-.3.3-.77.3-1.33a2.6 2.6 0 0 0-.3-1.33c-.17-.28-.4-.42-.7-.42-.3 0-.53.14-.7.42Zm-.85-.52c.33-.53.85-.9 1.55-.9.7 0 1.22.37 1.55.9.32.5.45 1.17.45 1.85 0 .68-.13 1.34-.45 1.85-.33.53-.85.9-1.55.9-.7 0-1.22-.37-1.55-.9a3.58 3.58 0 0 1-.45-1.85c0-.68.13-1.34.45-1.85Zm-4.14.5c.46-.36.83-.43 1.08-.4.25.05.44.2.54.37.1.17.09.35 0 .48-.08.14-.32.35-.9.4a.5.5 0 0 0 0 1c.6.05.82.25.9.37.09.13.1.31 0 .5-.1.18-.3.33-.55.37-.25.04-.61-.02-1.07-.38a.5.5 0 1 0-.62.78c.62.5 1.26.68 1.85.6.57-.1 1.02-.45 1.26-.9a1.47 1.47 0 0 0-.33-1.85 1.47 1.47 0 0 0 .33-1.86c-.24-.44-.7-.78-1.27-.86a2.4 2.4 0 0 0-1.84.6.5.5 0 0 0 .62.78Z\"]);\nexport const Shifts30Minutes24Filled = /*#__PURE__*/createFluentIcon('Shifts30Minutes24Filled', \"24\", [\"M15.5 5.5a3.5 3.5 0 1 0-7 0 3.5 3.5 0 0 0 7 0ZM8.75 10c-1.24 0-2.25 1-2.25 2.25v.5c0 .41.34.75.75.75h9.5c.41 0 .75-.34.75-.75v-.5c0-1.24-1-2.25-2.25-2.25h-6.5ZM6.5 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 4.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4.61-4.97c-.27.06-.52.2-.67.33a.75.75 0 1 1-.92-1.19c.27-.2.71-.48 1.25-.6a2.33 2.33 0 0 1 1.88.32 2.27 2.27 0 0 1 .62 3.03 2.1 2.1 0 0 1-.08 2.86c-.6.6-1.4.77-2.08.73a3.12 3.12 0 0 1-1.85-.7.75.75 0 0 1 .99-1.12c.17.15.52.3.94.32.4.02.73-.09.94-.3a.6.6 0 0 0 .12-.62c-.07-.2-.23-.34-.5-.34h-.5a.75.75 0 1 1 0-1.5h.5c.12 0 .17-.04.21-.08.05-.04.1-.14.13-.28.05-.3-.07-.61-.28-.75a.83.83 0 0 0-.7-.11ZM16.5 15a2.2 2.2 0 0 0-1.99 1.08c-.38.65-.51 1.5-.51 2.42 0 .92.13 1.77.51 2.42A2.2 2.2 0 0 0 16.5 22a2.2 2.2 0 0 0 1.99-1.08c.38-.64.51-1.5.51-2.42 0-.93-.13-1.78-.51-2.42A2.2 2.2 0 0 0 16.5 15Zm-1 3.5c0-.83.12-1.35.3-1.64.13-.23.32-.36.7-.36.39 0 .57.13.7.35.18.3.3.81.3 1.65 0 .84-.12 1.36-.3 1.65-.13.22-.31.35-.7.35-.38 0-.57-.13-.7-.35-.18-.3-.3-.82-.3-1.65Z\"]);\nexport const Shifts30Minutes24Regular = /*#__PURE__*/createFluentIcon('Shifts30Minutes24Regular', \"24\", [\"M15.5 5.5a3.5 3.5 0 1 0-7 0 3.5 3.5 0 0 0 7 0Zm-5.5 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM8.75 10c-1.24 0-2.25 1-2.25 2.25v.5a.75.75 0 0 0 1.5 0v-.5c0-.41.34-.75.75-.75h6.5c.41 0 .75.34.75.75v.5a.75.75 0 0 0 1.5 0v-.5c0-1.24-1-2.25-2.25-2.25h-6.5ZM6.5 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 4.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4.61-4.97c-.27.06-.52.2-.67.33a.75.75 0 1 1-.92-1.19c.27-.2.71-.48 1.25-.6a2.33 2.33 0 0 1 1.88.32 2.27 2.27 0 0 1 .62 3.03 2.1 2.1 0 0 1-.08 2.86c-.6.6-1.4.77-2.08.73a3.12 3.12 0 0 1-1.85-.7.75.75 0 0 1 .99-1.12c.17.15.52.3.94.32.4.02.73-.09.94-.3a.6.6 0 0 0 .12-.62c-.07-.2-.23-.34-.5-.34h-.5a.75.75 0 1 1 0-1.5h.5c.12 0 .17-.04.21-.08.05-.04.1-.14.13-.28.05-.3-.07-.61-.28-.75a.83.83 0 0 0-.7-.11ZM16.5 15a2.2 2.2 0 0 0-1.99 1.08c-.38.65-.51 1.5-.51 2.42 0 .92.13 1.77.51 2.42A2.2 2.2 0 0 0 16.5 22a2.2 2.2 0 0 0 1.99-1.08c.38-.64.51-1.5.51-2.42 0-.93-.13-1.78-.51-2.42A2.2 2.2 0 0 0 16.5 15Zm-1 3.5c0-.83.12-1.35.3-1.64.13-.23.32-.36.7-.36.39 0 .57.13.7.35.18.3.3.81.3 1.65 0 .84-.12 1.36-.3 1.65-.13.22-.31.35-.7.35-.38 0-.57-.13-.7-.35-.18-.3-.3-.82-.3-1.65Z\"]);\nexport const Shifts32Filled = /*#__PURE__*/createFluentIcon('Shifts32Filled', \"32\", [\"M4 9a5 5 0 0 1 5-5h14a5 5 0 0 1 5 5v14a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V9Zm12 0a1 1 0 0 0-2 0v8a1 1 0 0 0 1 1h6a1 1 0 0 0 0-2h-5V9Z\"]);\nexport const Shifts32Regular = /*#__PURE__*/createFluentIcon('Shifts32Regular', \"32\", [\"M15 8a1 1 0 0 1 1 1v7h5a1 1 0 0 1 0 2h-6a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1ZM9 4a5 5 0 0 0-5 5v14a5 5 0 0 0 5 5h14a5 5 0 0 0 5-5V9a5 5 0 0 0-5-5H9ZM6 9a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9Z\"]);\nexport const ShiftsActivity16Filled = /*#__PURE__*/createFluentIcon('ShiftsActivity16Filled', \"16\", [\"M7.36 3.55a.75.75 0 0 0-.21-1.49 6 6 0 1 0 6.79 6.8.75.75 0 1 0-1.49-.21 4.5 4.5 0 1 1-5.1-5.1ZM10 2.35a.75.75 0 0 0-.5 1.4c.3.11.59.25.85.41a.75.75 0 1 0 .8-1.27c-.37-.22-.75-.4-1.15-.55Zm3.11 2.51a.75.75 0 1 0-1.27.79c.16.26.3.55.4.85a.75.75 0 0 0 1.42-.5c-.14-.4-.33-.78-.55-1.14ZM8 5.75a.75.75 0 0 0-1.5 0v3c0 .41.34.75.75.75h2a.75.75 0 1 0 0-1.5H8V5.75Z\"]);\nexport const ShiftsActivity16Regular = /*#__PURE__*/createFluentIcon('ShiftsActivity16Regular', \"16\", [\"M8 2.48a.5.5 0 0 1-.46.54 5 5 0 1 0 5.44 5.44.5.5 0 0 1 1 .08 6 6 0 1 1-6.52-6.52.5.5 0 0 1 .54.46ZM7.5 5c.28 0 .5.22.5.5V8h1.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5Zm2.14-2.77a.5.5 0 1 0-.28.96c.55.15 1.06.4 1.52.72a.5.5 0 0 0 .57-.82 5.98 5.98 0 0 0-1.81-.86Zm3.27 2.32a.5.5 0 1 0-.82.57c.32.46.57.97.72 1.52a.5.5 0 0 0 .96-.28 5.98 5.98 0 0 0-.86-1.81Z\"]);\nexport const ShiftsActivity20Filled = /*#__PURE__*/createFluentIcon('ShiftsActivity20Filled', \"20\", [\"M10 2.7a.75.75 0 0 1-.67.83 6.5 6.5 0 1 0 7.14 7.14.75.75 0 1 1 1.5.16 8 8 0 1 1-8.8-8.8c.42-.04.79.26.83.68Zm1.02-.06c.1-.4.5-.65.9-.55.38.09.75.2 1.1.35a.75.75 0 0 1-.55 1.39 6.55 6.55 0 0 0-.9-.29.75.75 0 0 1-.55-.9Zm6.54 4.33a.75.75 0 0 0-1.39.56c.12.29.21.59.28.9a.75.75 0 1 0 1.46-.35c-.09-.38-.2-.75-.35-1.1ZM14.3 3.93a.75.75 0 0 1 1.06-.08c.3.27.6.56.86.87a.75.75 0 0 1-1.15.97 6.65 6.65 0 0 0-.7-.7.75.75 0 0 1-.07-1.06ZM10 5.75a.75.75 0 0 0-1.5 0v5c0 .41.34.75.75.75h3a.75.75 0 1 0 0-1.5H10V5.75Z\"]);\nexport const ShiftsActivity20Regular = /*#__PURE__*/createFluentIcon('ShiftsActivity20Regular', \"20\", [\"M10 2.48a.5.5 0 0 1-.46.53 7 7 0 1 0 7.45 7.45.5.5 0 1 1 1 .07 8 8 0 1 1-8.52-8.51.5.5 0 0 1 .53.46Zm1 .07a.5.5 0 0 1 .6-.4c.56.12 1.1.3 1.6.52a.5.5 0 1 1-.4.91c-.44-.2-.91-.34-1.4-.44a.5.5 0 0 1-.4-.59Zm6.34 4.25a.5.5 0 1 0-.92.4c.2.45.34.91.44 1.4a.5.5 0 0 0 .98-.2 7.95 7.95 0 0 0-.5-1.6ZM14.4 3.92a.5.5 0 0 1 .7-.07c.4.33.75.69 1.08 1.08a.5.5 0 1 1-.78.63c-.28-.34-.6-.66-.93-.94a.5.5 0 0 1-.07-.7ZM10 5.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h3a.5.5 0 1 0 0-1H10V5.5Z\"]);\nexport const ShiftsActivity24Filled = /*#__PURE__*/createFluentIcon('ShiftsActivity24Filled', \"24\", [\"M11.1 4.05a1 1 0 1 0-.21-1.99 10 10 0 1 0 11.05 11.05 1 1 0 0 0-1.99-.22 8 8 0 1 1-8.84-8.84Zm3.67-1.66a1 1 0 0 0-.54 1.93c.28.08.57.17.84.29a1 1 0 0 0 .76-1.86c-.35-.14-.7-.26-1.06-.36Zm2.58 2.3a1 1 0 0 1 1.41-.06l.61.6A1 1 0 0 1 17.9 6.6a7.94 7.94 0 0 0-.49-.49 1 1 0 0 1-.06-1.4ZM11 6a1 1 0 0 1 1 1v5h3a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1Zm8.94 1.62a1 1 0 0 1 1.3.55 9.86 9.86 0 0 1 .37 1.06 1 1 0 1 1-1.93.54 7.9 7.9 0 0 0-.29-.84 1 1 0 0 1 .55-1.3Z\"]);\nexport const ShiftsActivity24Regular = /*#__PURE__*/createFluentIcon('ShiftsActivity24Regular', \"24\", [\"M11.31 3.53a.75.75 0 1 0-.12-1.5 10 10 0 1 0 10.78 10.78.75.75 0 1 0-1.5-.12 8.5 8.5 0 1 1-9.16-9.16Zm6.39 1.14a.75.75 0 0 1 1.06-.04c.21.2.42.4.61.61a.75.75 0 0 1-1.1 1.02 8.55 8.55 0 0 0-.53-.53.75.75 0 0 1-.04-1.06ZM11.25 6c.38 0 .7.28.74.65l.01.1V12h3.25a.75.75 0 0 1 .1 1.5h-4.1a.75.75 0 0 1-.74-.65l-.01-.1v-6c0-.41.34-.75.75-.75Zm2.53-3.11c.11-.4.53-.63.93-.52.36.1.72.23 1.07.37a.75.75 0 1 1-.57 1.39c-.3-.12-.6-.23-.9-.32a.75.75 0 0 1-.53-.92Zm7.48 5.33a.75.75 0 1 0-1.39.56 8.4 8.4 0 0 1 .31.92.75.75 0 1 0 1.45-.4 9.43 9.43 0 0 0-.37-1.08Z\"]);\nexport const ShiftsAdd20Filled = /*#__PURE__*/createFluentIcon('ShiftsAdd20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v3.6a5.5 5.5 0 0 1 7.4 7.4H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm4.5 3c.28 0 .5.22.5.5V9h1.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5Zm-.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H6v-1.5Z\"]);\nexport const ShiftsAdd20Regular = /*#__PURE__*/createFluentIcon('ShiftsAdd20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm-.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H6v1.5a.5.5 0 0 1-1 0V15H3.5a.5.5 0 0 1 0-1H5v-1.5c0-.28.22-.5.5-.5ZM11 6.5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Z\"]);\nexport const ShiftsAdd24Filled = /*#__PURE__*/createFluentIcon('ShiftsAdd24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v5.77a6.47 6.47 0 0 1 8 .8.8.8 0 0 1 0-.07v-6a.75.75 0 0 1 1.5 0V12h3.75a.75.75 0 0 1 0 1.5h-4.5l-.14-.01a6.47 6.47 0 0 1 .37 7.51h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM12 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 18v2.5a.5.5 0 1 1-1 0V18H3.5a.5.5 0 1 1 0-1H6v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H7Z\"]);\nexport const ShiftsAdd24Regular = /*#__PURE__*/createFluentIcon('ShiftsAdd24Regular', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75h-5.06a6.47 6.47 0 0 1-.71 1.5h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25A3.25 3.25 0 0 0 3 6.25v5.77c.46-.3.97-.53 1.5-.7V6.24Zm2 5.75a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm.5 8.5V18h2.5a.5.5 0 1 0 0-1H7v-2.5a.5.5 0 1 0-1 0V17H3.5a.5.5 0 0 0 0 1H6v2.5a.5.5 0 1 0 1 0Zm5.5-13.75a.75.75 0 0 0-1.5 0v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75Z\"]);\nexport const ShiftsAvailability20Filled = /*#__PURE__*/createFluentIcon('ShiftsAvailability20Filled', \"20\", [\"M6 12.92A7 7 0 0 1 12.92 6 6 6 0 1 0 6 12.92Zm3.35-8.27c.2.2.2.5 0 .7l-3 3a.5.5 0 0 1-.7 0l-1.5-1.5a.5.5 0 1 1 .7-.7L6 7.29l2.65-2.64c.2-.2.5-.2.7 0ZM13 19a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm-1.65-8.35L13 12.29l1.65-1.64a.5.5 0 0 1 .7.7L13.71 13l1.64 1.65a.5.5 0 0 1-.7.7L13 13.71l-1.65 1.64a.5.5 0 0 1-.7-.7L12.29 13l-1.64-1.65a.5.5 0 0 1 .7-.7Z\"]);\nexport const ShiftsAvailability20Regular = /*#__PURE__*/createFluentIcon('ShiftsAvailability20Regular', \"20\", [\"M11.92 6.08a5 5 0 1 0-5.84 5.84c-.05.32-.08.66-.08 1A6 6 0 1 1 12.92 6c-.34 0-.68.03-1 .08Zm-.57 4.57a.5.5 0 0 0-.7.7L12.29 13l-1.64 1.65a.5.5 0 0 0 .7.7L13 13.71l1.65 1.64a.5.5 0 0 0 .7-.7L13.71 13l1.64-1.65a.5.5 0 0 0-.7-.7L13 12.29l-1.65-1.64ZM13 19a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-1a5 5 0 1 1 0-10 5 5 0 0 1 0 10ZM9.35 5.35a.5.5 0 1 0-.7-.7L6 7.29 4.85 6.15a.5.5 0 1 0-.7.7l1.5 1.5c.2.2.5.2.7 0l3-3Z\"]);\nexport const ShiftsAvailability24Filled = /*#__PURE__*/createFluentIcon('ShiftsAvailability24Filled', \"24\", [\"M8.5 2a6.5 6.5 0 0 0-.48 12.98 7.5 7.5 0 0 1 6.96-6.96A6.5 6.5 0 0 0 8.5 2Zm2.78 5.78-3 3a.75.75 0 0 1-1.06 0l-1.5-1.5a.75.75 0 0 1 1.06-1.06l.97.97 2.47-2.47a.75.75 0 0 1 1.06 1.06ZM9 15.5a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Zm4.22-2.26c-.3.3-.3.77 0 1.06l1.22 1.2-1.22 1.22a.75.75 0 1 0 1.06 1.06l1.22-1.22 1.21 1.22a.75.75 0 0 0 1.07-1.06l-1.22-1.22 1.21-1.2a.75.75 0 0 0-1.05-1.07l-1.22 1.21-1.22-1.2a.75.75 0 0 0-1.06 0Z\"]);\nexport const ShiftsAvailability24Regular = /*#__PURE__*/createFluentIcon('ShiftsAvailability24Regular', \"24\", [\"M8.5 3.5a5 5 0 0 0-.23 10c-.13.47-.22.97-.25 1.48a6.5 6.5 0 1 1 6.96-6.96c-.5.03-1 .12-1.49.25A5 5 0 0 0 8.5 3.5Zm5.78 9.73a.75.75 0 1 0-1.06 1.07l1.22 1.2-1.22 1.22a.75.75 0 1 0 1.06 1.06l1.22-1.22 1.21 1.22a.75.75 0 0 0 1.07-1.06l-1.22-1.22 1.21-1.2a.75.75 0 0 0-1.05-1.07l-1.22 1.21-1.22-1.2ZM15.5 9a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Zm-5 6.5a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm.78-8.78c.3.3.3.77 0 1.06l-3 3a.75.75 0 0 1-1.06 0l-1.5-1.5a.75.75 0 0 1 1.06-1.06l.97.97 2.47-2.47c.3-.3.77-.3 1.06 0Z\"]);\nexport const ShiftsCheckmark20Filled = /*#__PURE__*/createFluentIcon('ShiftsCheckmark20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6a5.48 5.48 0 0 0-.66-6h2.76a.5.5 0 0 0 0-1H10V6.5a.5.5 0 0 0-1 0v3.76a5.48 5.48 0 0 0-6-.66V6Zm7 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsCheckmark20Regular = /*#__PURE__*/createFluentIcon('ShiftsCheckmark20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm3 7.26c.27.22.52.47.74.74h2.76a.5.5 0 0 0 0-1H10V6.5a.5.5 0 0 0-1 0v3.76Zm1 4.24a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L4.5 15.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsCheckmark24Filled = /*#__PURE__*/createFluentIcon('ShiftsCheckmark24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v5.77a6.47 6.47 0 0 1 8 .8.8.8 0 0 1 0-.07v-6a.75.75 0 0 1 1.5 0V12h3.75a.75.75 0 0 1 0 1.5h-4.5l-.14-.01a6.47 6.47 0 0 1 .37 7.51h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-3.15-1.85a.5.5 0 0 0-.7 0L5.5 18.29l-.9-.9a.5.5 0 0 0-.7.71l1.25 1.25c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsCheckmark24Regular = /*#__PURE__*/createFluentIcon('ShiftsCheckmark24Regular', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75h-5.06a6.47 6.47 0 0 1-.71 1.5h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25A3.25 3.25 0 0 0 3 6.25v5.77c.46-.3.97-.53 1.5-.7V6.24Zm8 .5a.75.75 0 0 0-1.5 0v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-3.15-1.85a.5.5 0 0 0-.7 0L5.5 18.29l-.9-.9a.5.5 0 0 0-.7.71l1.25 1.25c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const ShiftsDay20Filled = /*#__PURE__*/createFluentIcon('ShiftsDay20Filled', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9Zm3.4 2.04a1.82 1.82 0 0 0-.34.5l-.03.08a.5.5 0 0 0 .94.34l.02-.05.13-.17c.12-.11.3-.24.65-.24.4 0 .64.23.75.54.1.33.03.72-.24.96-.15.15-.34.28-.58.44l-.04.02c-.22.15-.47.31-.7.51A2.52 2.52 0 0 0 6 12.5a.5.5 0 0 0 .5.5H9a.5.5 0 0 0 0-1H7.07c.1-.32.29-.56.54-.77.18-.15.39-.3.62-.44l.02-.02c.23-.15.5-.33.72-.54.58-.54.71-1.34.5-2A1.74 1.74 0 0 0 7.77 7c-.64 0-1.09.26-1.36.54ZM11.5 7a.5.5 0 0 0-.5.5V10a.5.5 0 0 0 .5.5H13v2a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-1 0v2h-1v-2a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShiftsDay20Regular = /*#__PURE__*/createFluentIcon('ShiftsDay20Regular', \"20\", [\"M6.4 7.54c.28-.28.73-.54 1.37-.54.88 0 1.48.56 1.7 1.23.21.66.08 1.46-.5 2-.23.21-.49.39-.72.54l-.02.02c-.23.15-.44.29-.62.44a1.6 1.6 0 0 0-.54.77H9a.5.5 0 1 1 0 1H6.5a.5.5 0 0 1-.5-.5c0-.97.44-1.59.96-2.03.23-.2.48-.36.7-.5l.04-.03c.24-.16.43-.3.58-.44a.93.93 0 0 0 .24-.96.75.75 0 0 0-.75-.54.86.86 0 0 0-.65.24.82.82 0 0 0-.15.22.5.5 0 0 1-.94-.34l.03-.07.07-.14c.05-.1.15-.23.28-.37ZM11.5 7c.28 0 .5.22.5.5v2h1v-2a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-2h-1.5a.5.5 0 0 1-.5-.5V7.5c0-.28.22-.5.5-.5Zm-6-4A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h9a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-9ZM4 5.5C4 4.67 4.67 4 5.5 4h9c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 4 14.5v-9Z\"]);\nexport const ShiftsDay24Filled = /*#__PURE__*/createFluentIcon('ShiftsDay24Filled', \"24\", [\"M21 6.25C21 4.45 19.54 3 17.75 3H6.25A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h11.5c1.8 0 3.25-1.46 3.25-3.25V6.25ZM7.5 8.75A2.3 2.3 0 0 1 9.25 8c1.15 0 1.9.8 2.15 1.66.26.85.1 1.9-.62 2.62a8.1 8.1 0 0 1-.79.67l-.04.03c-.28.22-.53.41-.75.63a2.3 2.3 0 0 0-.58.89h2.13a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75c0-1.25.52-2.08 1.14-2.7.3-.3.62-.55.9-.76.28-.22.5-.4.68-.57.27-.27.37-.72.25-1.13-.12-.38-.37-.59-.72-.59s-.53.14-.64.25a.84.84 0 0 0-.15.23.75.75 0 0 1-1.43-.46l.04-.1.08-.17c.07-.14.18-.32.35-.5ZM13.25 8c.41 0 .75.34.75.75v2.75h1.5V8.75a.75.75 0 0 1 1.5 0v6.47a.75.75 0 0 1-1.5 0V13h-2.25a.75.75 0 0 1-.75-.75v-3.5c0-.41.34-.75.75-.75Z\"]);\nexport const ShiftsDay24Regular = /*#__PURE__*/createFluentIcon('ShiftsDay24Regular', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm0 1.5H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75ZM13.25 8c.41 0 .75.34.75.75v2.75h1.5V8.75a.75.75 0 0 1 1.5 0v6.47a.75.75 0 0 1-1.5 0V13h-2.25a.75.75 0 0 1-.75-.75v-3.5c0-.41.34-.75.75-.75Zm-5.75.74A2.3 2.3 0 0 1 9.25 8c1.15 0 1.9.8 2.15 1.66.26.85.1 1.9-.62 2.62-.24.25-.53.47-.79.67l-.04.03a7.8 7.8 0 0 0-.75.63 2.3 2.3 0 0 0-.58.89h2.13a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75c0-1.25.52-2.08 1.14-2.7.3-.3.62-.55.9-.76.28-.22.5-.4.68-.57.27-.27.37-.72.25-1.13-.12-.38-.37-.59-.72-.59s-.53.14-.64.25a.84.84 0 0 0-.15.23.75.75 0 0 1-1.43-.46l.04-.1.08-.17c.07-.14.18-.32.35-.5Z\"]);\nexport const ShiftsOpen20Filled = /*#__PURE__*/createFluentIcon('ShiftsOpen20Filled', \"20\", [\"M4.5 5.75c0-.69.56-1.25 1.25-1.25H7.5a.75.75 0 0 0 0-1.5H5.75A2.75 2.75 0 0 0 3 5.75v8.5A2.75 2.75 0 0 0 5.75 17H7.5a.75.75 0 0 0 0-1.5H5.75c-.69 0-1.25-.56-1.25-1.25v-8.5Zm8-2.75a.75.75 0 0 0 0 1.5h1.75c.69 0 1.25.56 1.25 1.25v8.5c0 .69-.56 1.25-1.25 1.25H12.5a.75.75 0 0 0 0 1.5h1.75A2.75 2.75 0 0 0 17 14.25v-8.5A2.75 2.75 0 0 0 14.25 3H12.5Zm-2 2.75a.75.75 0 0 0-1.5 0v4.5c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5H10.5V5.75Z\"]);\nexport const ShiftsOpen20Regular = /*#__PURE__*/createFluentIcon('ShiftsOpen20Regular', \"20\", [\"M4 5.5C4 4.67 4.67 4 5.5 4h2a.5.5 0 0 0 0-1h-2A2.5 2.5 0 0 0 3 5.5v9A2.5 2.5 0 0 0 5.5 17h2a.5.5 0 0 0 0-1h-2A1.5 1.5 0 0 1 4 14.5v-9ZM12.5 3a.5.5 0 0 0 0 1h2c.83 0 1.5.67 1.5 1.5v9c0 .83-.67 1.5-1.5 1.5h-2a.5.5 0 0 0 0 1h2a2.5 2.5 0 0 0 2.5-2.5v-9A2.5 2.5 0 0 0 14.5 3h-2ZM10 5.5a.5.5 0 0 0-1 0v5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1H10V5.5Z\"]);\nexport const ShiftsOpen24Filled = /*#__PURE__*/createFluentIcon('ShiftsOpen24Filled', \"24\", [\"M15 3a1 1 0 1 0 0 2h2.5c.83 0 1.5.67 1.5 1.5v11c0 .83-.67 1.5-1.5 1.5H15a1 1 0 0 0 0 2h2.5a3.5 3.5 0 0 0 3.5-3.5v-11A3.5 3.5 0 0 0 17.5 3H15ZM5 6.5C5 5.67 5.67 5 6.5 5H9a1 1 0 1 0 0-2H6.5A3.5 3.5 0 0 0 3 6.5v11A3.5 3.5 0 0 0 6.5 21H9a1 1 0 1 0 0-2H6.5A1.5 1.5 0 0 1 5 17.5v-11Zm7.5.5a1 1 0 1 0-2 0v6a1 1 0 0 0 1 1H16a1 1 0 0 0 0-2h-3.5V7Z\"]);\nexport const ShiftsOpen24Regular = /*#__PURE__*/createFluentIcon('ShiftsOpen24Regular', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h3a.75.75 0 0 0 0-1.5h-3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h3a.75.75 0 0 0 0-1.5h-3c-.97 0-1.75-.78-1.75-1.75V6.25ZM14.75 3a.75.75 0 0 0 0 1.5h3c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75h-3a.75.75 0 0 0 0 1.5h3c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3h-3ZM12.5 6.75a.75.75 0 0 0-1.5 0v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75Z\"]);\nexport const ShiftsProhibited20Filled = /*#__PURE__*/createFluentIcon('ShiftsProhibited20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6A5.5 5.5 0 0 0 3 9.6V6Zm8 .5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Zm-10 8a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM5.5 18c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 5.5 18Z\"]);\nexport const ShiftsProhibited20Regular = /*#__PURE__*/createFluentIcon('ShiftsProhibited20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.6c.16-.32.3-.65.4-1H14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3.2c-.35.1-.68.24-1 .4V6Zm7.5 0c.28 0 .5.22.5.5V9h1.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5ZM1 14.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1ZM5.5 18c-.79 0-1.51-.26-2.1-.7l4.9-4.9A3.5 3.5 0 0 1 5.5 18Z\"]);\nexport const ShiftsProhibited24Filled = /*#__PURE__*/createFluentIcon('ShiftsProhibited24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v5.77a6.47 6.47 0 0 1 8 .8.8.8 0 0 1 0-.07v-6a.75.75 0 0 1 1.5 0V12h3.75a.75.75 0 0 1 0 1.5h-4.5l-.14-.01a6.47 6.47 0 0 1 .37 7.51h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const ShiftsProhibited24Regular = /*#__PURE__*/createFluentIcon('ShiftsProhibited24Regular', \"24\", [\"M4.5 6.25c0-.97.78-1.75 1.75-1.75h11.5c.97 0 1.75.78 1.75 1.75v11.5c0 .97-.78 1.75-1.75 1.75h-5.06a6.47 6.47 0 0 1-.71 1.5h5.77c1.8 0 3.25-1.46 3.25-3.25V6.25C21 4.45 19.54 3 17.75 3H6.25A3.25 3.25 0 0 0 3 6.25v5.77c.46-.3.97-.53 1.5-.7V6.24Zm8 .5a.75.75 0 0 0-1.5 0v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.25 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.44 1.42.69 2.25.69Z\"]);\nexport const ShiftsQuestionMark20Filled = /*#__PURE__*/createFluentIcon('ShiftsQuestionMark20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v3.6a5.5 5.5 0 0 1 7.4 7.4H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm4.5 3c.28 0 .5.22.5.5V9h2a.5.5 0 0 1 0 1h-2.5a.5.5 0 0 1-.5-.5v-3c0-.28.22-.5.5-.5Zm-.5 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 1 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const ShiftsQuestionMark20Regular = /*#__PURE__*/createFluentIcon('ShiftsQuestionMark20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v3.6c.32-.16.65-.3 1-.4V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.2c-.1.35-.24.68-.4 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm5 3.5a.5.5 0 0 0-1 0v3c0 .28.22.5.5.5h2a.5.5 0 0 0 0-1H11V6.5Zm-1 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.5 1.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25Zm0-4.88c-1.05 0-1.86.82-1.85 1.96a.5.5 0 1 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .2-.07.32-.36.55l-.27.21c-.51.4-.72.72-.72 1.29a.5.5 0 0 0 1 .09v-.16c.02-.14.1-.25.35-.44l.28-.22c.5-.4.72-.73.72-1.32 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const ShiftsQuestionMark24Filled = /*#__PURE__*/createFluentIcon('ShiftsQuestionMark24Filled', \"24\", [\"M6.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 7.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25ZM17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25h-5.77a6.47 6.47 0 0 0-.37-7.51h.07l.07.01h4.6a.75.75 0 0 0 0-1.5H12.5V6.65a.75.75 0 0 0-1.5 0V12.8a6.48 6.48 0 0 0-8-.79V6.25C3 4.45 4.46 3 6.25 3h11.5ZM6.5 14c-1.05 0-1.86.82-1.85 1.96a.5.5 0 0 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .23-.07.4-.31.68l-.1.11-.27.3c-.48.53-.67.89-.67 1.46a.5.5 0 0 0 1 0c0-.23.08-.4.32-.7l.1-.1.27-.3c.48-.53.66-.88.66-1.45 0-1.1-.82-1.95-1.85-1.95Z\"]);\nexport const ShiftsQuestionMark24Regular = /*#__PURE__*/createFluentIcon('ShiftsQuestionMark24Regular', \"24\", [\"M6.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 7.88a.62.62 0 1 0 0 1.25.62.62 0 0 0 0-1.25ZM17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25h-5.77c.3-.46.53-.97.7-1.5h5.07c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v5.06c-.53.18-1.04.42-1.5.71V6.25C3 4.45 4.46 3 6.25 3h11.5ZM6.5 14c-1.05 0-1.86.82-1.85 1.96a.5.5 0 0 0 1-.01c0-.58.36-.95.85-.95.47 0 .85.4.85.95 0 .23-.07.4-.31.68l-.1.11-.27.3c-.48.53-.67.89-.67 1.46a.5.5 0 0 0 1 0c0-.23.08-.4.32-.7l.1-.1.27-.3c.48-.53.66-.88.66-1.45 0-1.1-.82-1.95-1.85-1.95Zm5.25-8c.38 0 .7.28.74.65l.01.1V12h3.75a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.74-.65l-.01-.1v-6c0-.41.34-.75.75-.75Z\"]);\nexport const ShiftsTeam20Filled = /*#__PURE__*/createFluentIcon('ShiftsTeam20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3h-3.02l.02-.38c0-.91-.59-1.75-1.45-2.02a2.25 2.25 0 0 0-3.31-3.01A2.75 2.75 0 0 0 3 10.1V6Zm7 .5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5Zm-6.25 8a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5ZM4 19c2.14 0 3-1.1 3-2.19a1.3 1.3 0 0 0-1.29-1.31H2.3A1.3 1.3 0 0 0 1 16.81c0 1.1.86 2.19 3 2.19Zm3.5-.5h-.02c.35-.51.52-1.1.52-1.69 0-.48-.15-.93-.4-1.31h1.33c.6 0 1.07.5 1.07 1.13 0 .93-.71 1.87-2.5 1.87Zm.25-4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const ShiftsTeam20Regular = /*#__PURE__*/createFluentIcon('ShiftsTeam20Regular', \"20\", [\"M10 6.5a.5.5 0 0 0-1 0v4c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1H10V6.5ZM6 3a3 3 0 0 0-3 3v4.1a2.75 2.75 0 0 1 1-.09V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.1a2.16 2.16 0 0 1 .08 1H14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6ZM3.75 14.5a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5ZM4 19c2.14 0 3-1.1 3-2.19a1.3 1.3 0 0 0-1.29-1.31H2.3A1.3 1.3 0 0 0 1 16.81c0 1.1.86 2.19 3 2.19Zm3.5-.5h-.02c.35-.51.52-1.1.52-1.69 0-.48-.15-.93-.4-1.31h1.33c.6 0 1.07.5 1.07 1.13 0 .93-.71 1.87-2.5 1.87Zm.25-4a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z\"]);\nexport const ShiftsTeam24Filled = /*#__PURE__*/createFluentIcon('ShiftsTeam24Filled', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25h-5c.18-.38.25-.79.25-1.19 0-.92-.53-1.73-1.32-2.1A2.74 2.74 0 0 0 9.75 13c-.74 0-1.4.3-1.9.76A3.25 3.25 0 0 0 3 12.01V6.25C3 4.45 4.46 3 6.25 3h11.5Zm-6 3a.75.75 0 0 0-.75.75v6c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5H12.5V6.75a.75.75 0 0 0-.75-.75Zm-7 11a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm0 6c2.68 0 3.75-1.57 3.75-3.13 0-1.03-.72-1.87-1.6-1.87H2.6c-.88 0-1.6.84-1.6 1.88C1 21.43 2.07 23 4.75 23Zm6.75-7.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM8.92 22c.4-.66.58-1.4.58-2.13 0-.47-.11-.95-.32-1.37h1.54c.7 0 1.28.59 1.28 1.31 0 1.1-.85 2.19-3 2.19h-.08Z\"]);\nexport const ShiftsTeam24Regular = /*#__PURE__*/createFluentIcon('ShiftsTeam24Regular', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25h-5a2.98 2.98 0 0 0 .23-1.5h4.77c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v5.26c-.55.04-1.06.22-1.5.5V6.25C3 4.45 4.46 3 6.25 3h11.5Zm-6 3c.38 0 .7.28.74.65l.01.1V12h3.75a.75.75 0 0 1 .1 1.5h-4.6a.75.75 0 0 1-.74-.65l-.01-.1v-6c0-.41.34-.75.75-.75Zm-7 11a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Zm0 6c2.68 0 3.75-1.57 3.75-3.13 0-1.03-.72-1.87-1.6-1.87H2.6c-.88 0-1.6.84-1.6 1.88C1 21.43 2.07 23 4.75 23Zm6.75-7.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM8.92 22c.4-.66.58-1.4.58-2.13 0-.47-.11-.95-.32-1.37h1.54c.7 0 1.28.59 1.28 1.31 0 1.1-.85 2.19-3 2.19h-.08Z\"]);\nexport const ShoppingBag16Filled = /*#__PURE__*/createFluentIcon('ShoppingBag16Filled', \"16\", [\"M5 5V3a2 2 0 0 1 3-1.73A2 2 0 0 1 11 3v2h.5c.83 0 1.5.67 1.5 1.5V13a2 2 0 0 1-1.73 1.98A1.5 1.5 0 0 1 10 13.5V3a1 1 0 0 0-1.25-.97A2 2 0 0 1 9 3v10.5c0 .56.19 1.08.5 1.5H5a2 2 0 0 1-2-2V6.5C3 5.67 3.67 5 4.5 5H5Zm1-2v2h2V3a1 1 0 0 0-2 0Z\"]);\nexport const ShoppingBag16Regular = /*#__PURE__*/createFluentIcon('ShoppingBag16Regular', \"16\", [\"M5 5V3a2 2 0 0 1 3-1.73A2 2 0 0 1 11 3v2h.5c.83 0 1.5.67 1.5 1.5V13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6.5C3 5.67 3.67 5 4.5 5H5Zm1-2v2h2V3a1 1 0 0 0-2 0Zm5 11a1 1 0 0 0 1-1V6.5a.5.5 0 0 0-.5-.5H10v7a1 1 0 0 0 1 1ZM9 6H4.5a.5.5 0 0 0-.5.5V13a1 1 0 0 0 1 1h4.27A2 2 0 0 1 9 13V6Zm0-3v2h1V3a1 1 0 0 0-1.25-.97A2 2 0 0 1 9 3Z\"]);\nexport const ShoppingBag20Filled = /*#__PURE__*/createFluentIcon('ShoppingBag20Filled', \"20\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v8a2.95 2.95 0 0 1-1.47 2.58l-.59-.26-.5-.22-.2-.11-.23-.17-.24-.21-.27-.29A2 2 0 0 1 12 15V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V15a2.95 2.95 0 0 0 .77 2l.3.33.31.27.31.23.31.17H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm1 0h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Z\"]);\nexport const ShoppingBag20Regular = /*#__PURE__*/createFluentIcon('ShoppingBag20Regular', \"20\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h6.5a2.5 2.5 0 0 0 2.5-2.5V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM7 17a2 2 0 0 1-2-2V7h6v8.5c0 .56.19 1.08.5 1.5H7Zm8-1.5a1.5 1.5 0 0 1-3 0V7h3v8.5Z\"]);\nexport const ShoppingBag24Filled = /*#__PURE__*/createFluentIcon('ShoppingBag24Filled', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5V18a4 4 0 0 1-1.82 3.36l-.55-.1a4.17 4.17 0 0 1-2.17-1.17c-.6-.61-.96-1.35-.96-2.09V7h1V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v13c0 1.23.58 2.33 1.39 3.14.32.33.68.62 1.08.86H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm1.5-2v2h3V5a1.5 1.5 0 0 0-3 0Z\"]);\nexport const ShoppingBag24Regular = /*#__PURE__*/createFluentIcon('ShoppingBag24Regular', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v10a3.5 3.5 0 0 1-3.5 3.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm6.63 13.5a3.48 3.48 0 0 1-.62-2v-10H5.5V18A2.5 2.5 0 0 0 8 20.5h5.63ZM11.5 7V5a1.5 1.5 0 0 0-3 0v2h3ZM13 7h2.5V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2Zm1.51 11.5a2 2 0 0 0 3.99 0v-10h-3.99v10Z\"]);\nexport const ShoppingBagArrowLeft20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeft20Filled', \"20\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-6.85-.35a.5.5 0 0 0-.15.35.5.5 0 0 0 .15.35l2 2a.5.5 0 0 0 .7-.7L13.71 15h2.79a.5.5 0 0 0 0-1h-2.8l1.15-1.15a.5.5 0 0 0-.7-.7l-2 2Z\"]);\nexport const ShoppingBagArrowLeft20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeft20Regular', \"20\", [\"M15 6a1 1 0 0 1 1 1v2.2c-.32-.08-.66-.15-1-.18V7h-3v2.6c-.36.18-.7.4-1 .66V7H5v8a1.98 1.98 0 0 0 1.23 1.84c.24.1.5.16.77.16h2.6c.18.36.4.7.66 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1Zm-2-1.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V6h2V4.5ZM7 6h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Zm7.5 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-2.36-4.85 2-2a.5.5 0 0 1 .71.7L13.71 14h2.79a.5.5 0 0 1 0 1h-2.8l1.15 1.15a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1-.15-.35.5.5 0 0 1 .14-.35Z\"]);\nexport const ShoppingBagArrowLeft24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeft24Filled', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3a6.48 6.48 0 0 0-5.5.23V7h1V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v7.81a6.48 6.48 0 0 0-.19 9.19H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm4.5-2a1.5 1.5 0 0 0-3 0v2h3V5Zm6 7a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-.78 2.59-.07.06-2.52 2.51-.04.05-.04.08-.02.06-.02.08v.11l.01.09.03.08.03.06.05.07 2.52 2.51a.5.5 0 0 0 .76-.63l-.05-.07L15.7 18h4.79a.5.5 0 0 0 .5-.41v-.09a.5.5 0 0 0-.41-.5h-4.88l1.65-1.65a.5.5 0 0 0 .05-.63l-.05-.07a.5.5 0 0 0-.64-.06Z\"]);\nexport const ShoppingBagArrowLeft24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagArrowLeft24Regular', \"24\", [\"M23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-6.35-2.85.07-.06a.5.5 0 0 1 .64.06l.05.07a.5.5 0 0 1-.05.63L15.7 17h4.88a.5.5 0 0 1 .41.5v.09a.5.5 0 0 1-.5.41h-4.79l1.65 1.65.05.07a.5.5 0 0 1-.76.63l-2.52-2.51-.05-.07-.03-.06-.03-.08-.01-.09v-.1l.02-.1.02-.05.04-.08.04-.05 2.52-2.51ZM7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3c-.47-.2-.98-.34-1.5-.42V8.5h-4v3.23c-.55.29-1.06.65-1.5 1.08V8.5H5.5V18A2.5 2.5 0 0 0 8 20.5h3.73c.29.55.65 1.06 1.08 1.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm3-3.5c-.83 0-1.5.67-1.5 1.5v2h3V5c0-.83-.67-1.5-1.5-1.5ZM15.5 7V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2h2.5Z\"]);\nexport const ShoppingBagDismiss20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagDismiss20Filled', \"20\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const ShoppingBagDismiss20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagDismiss20Regular', \"20\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h3.26a5.5 5.5 0 0 1-.66-1H7a2 2 0 0 1-2-2V7h6v3.26c.3-.26.64-.48 1-.66V7h3v2.02c.34.03.68.1 1 .19V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const ShoppingBagDismiss24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagDismiss24Filled', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3a6.48 6.48 0 0 0-5.5.23V7h1V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v7.81a6.48 6.48 0 0 0-.19 9.19H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm1.5-2v2h3V5a1.5 1.5 0 0 0-3 0ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const ShoppingBagDismiss24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagDismiss24Regular', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3c-.47-.2-.98-.34-1.5-.42V8.5h-3.99v3.23c-.55.28-1.06.65-1.5 1.07V8.5H5.5V18A2.5 2.5 0 0 0 8 20.5h3.73c.29.55.65 1.06 1.08 1.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm4.5 0V5a1.5 1.5 0 0 0-3 0v2h3ZM13 7h2.5V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2Zm10 10.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const ShoppingBagPause20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPause20Filled', \"20\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.2a5.5 5.5 0 0 0-4 .4V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v5.76a5.49 5.49 0 0 0-.74 7.74H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm9 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM13 12a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPause20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPause20Regular', \"20\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h3.26a5.5 5.5 0 0 1-.66-1H7a2 2 0 0 1-2-2V7h6v3.26c.3-.26.64-.48 1-.66V7h3v2.02c.34.03.68.1 1 .19V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM13 12a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPause24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPause24Filled', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3a6.48 6.48 0 0 0-5.5.23V7h1V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v7.81a6.48 6.48 0 0 0-.19 9.19H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm1.5-2v2h3V5a1.5 1.5 0 0 0-3 0ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.5-3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm4 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPause24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPause24Regular', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v3c-.47-.2-.98-.34-1.5-.42V8.5h-3.99v3.23c-.55.28-1.06.65-1.5 1.07V8.5H5.5V18A2.5 2.5 0 0 0 8 20.5h3.73c.29.55.65 1.06 1.08 1.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm4.5 0V5a1.5 1.5 0 0 0-3 0v2h3ZM13 7h2.5V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2Zm10 10.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.5-3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm4 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z\"]);\nexport const ShoppingBagPercent20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPercent20Filled', \"20\", [\"M6 4.5V6H5a1 1 0 0 0-1 1v8a2.93 2.93 0 0 0 .88 2.13A3 3 0 0 0 7 18h3.09a1.5 1.5 0 0 1 .35-1.56l.56-.56v-1.05a3 3 0 0 1 0-5.66V4.5a2.48 2.48 0 0 0-.33-1.24 1.48 1.48 0 0 1 2.21.66c.08.18.12.37.12.58V6h-1v3a3 3 0 0 1 3 2.88l1-1V7a1 1 0 0 0-1-1h-1V4.5a2.48 2.48 0 0 0-4-2A2.54 2.54 0 0 0 8.5 2a2.42 2.42 0 0 0-1.77.73A2.43 2.43 0 0 0 6 4.5Zm4 0V6H7V4.5a1.48 1.48 0 0 1 .91-1.38 1.48 1.48 0 0 1 1.97.8c.08.18.12.37.12.58Zm2 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.85-4.15a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 .7.7l6-6Z\"]);\nexport const ShoppingBagPercent20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPercent20Regular', \"20\", [\"M8.5 2c.56 0 1.08.19 1.5.5a2.5 2.5 0 0 1 4 2V6h1a1 1 0 0 1 1 1v3.88l-1 1V7h-3v2a3 3 0 0 0-1 .17V7H5v8c0 1.1.9 2 2 2h3.09a1.5 1.5 0 0 0 0 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5A2.5 2.5 0 0 1 8.5 2Zm0 1C7.67 3 7 3.67 7 4.5V6h3V4.5C10 3.67 9.33 3 8.5 3Zm3 0c-.3 0-.6.1-.83.25.2.37.33.8.33 1.25V6h2V4.5c0-.83-.67-1.5-1.5-1.5Zm.5 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm5 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm.85-4.15a.5.5 0 0 0-.7-.7l-6 6a.5.5 0 0 0 .7.7l6-6Z\"]);\nexport const ShoppingBagPercent24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPercent24Filled', \"24\", [\"M7 5v2H5.5C4.67 7 4 7.67 4 8.5V18a4 4 0 0 0 4 4h4.17c-.31-.65-.2-1.45.34-1.99l.71-.7A4 4 0 0 1 13 18v-.34a3.5 3.5 0 0 1 0-6.32V5a3 3 0 0 0-.16-.96A1.5 1.5 0 0 1 15.5 5v2h-1v4a3.5 3.5 0 0 1 3.5 3.5v.03l2-2V8.5c0-.83-.67-1.5-1.5-1.5H17V5a3 3 0 0 0-5-2.24A3 3 0 0 0 7 5Zm1.5 2V5a1.5 1.5 0 1 1 3 0v2h-3Zm6 10a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm6 9.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm1.28-5.22a.75.75 0 1 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5Z\"]);\nexport const ShoppingBagPercent24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPercent24Regular', \"24\", [\"M7 5v2H5.5C4.67 7 4 7.67 4 8.5V18a4 4 0 0 0 4 4h4.17a1.76 1.76 0 0 1 0-1.5H8A2.5 2.5 0 0 1 5.5 18V8.5h7.51v2.83c.45-.21.96-.33 1.49-.33h.01V8.5h3.99v5.53l1.5-1.5V8.5c0-.83-.67-1.5-1.5-1.5H17V5a3 3 0 0 0-5-2.24A3 3 0 0 0 7 5Zm4.5 0v2h-3V5a1.5 1.5 0 1 1 3 0Zm4 2H13V5a3 3 0 0 0-.16-.96A1.5 1.5 0 0 1 15.5 5v2Zm-1 10a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm6 9.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-3.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm1.28-5.22a.75.75 0 1 0-1.06-1.06l-7.5 7.5a.75.75 0 1 0 1.06 1.06l7.5-7.5Z\"]);\nexport const ShoppingBagPlay20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPlay20Filled', \"20\", [\"M6 4.5V6H5a1 1 0 0 0-1 1v8a2.93 2.93 0 0 0 .88 2.13A3 3 0 0 0 7 18h3.26a5.48 5.48 0 0 1 .74-7.74V4.5a2.48 2.48 0 0 0-.33-1.24 1.48 1.48 0 0 1 2.21.66c.08.18.12.37.12.58V6h-1v3.6a5.48 5.48 0 0 1 4-.4V7a1 1 0 0 0-1-1h-1V4.5a2.48 2.48 0 0 0-4-2A2.54 2.54 0 0 0 8.5 2a2.42 2.42 0 0 0-1.77.73A2.43 2.43 0 0 0 6 4.5ZM10 6H7V4.5a1.48 1.48 0 0 1 .91-1.38 1.48 1.48 0 0 1 1.97.8c.08.18.12.37.12.58V6Zm4.5 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.74-6.55c.1 0 .18.03.26.08l2.3 1.51c.07.05.12.1.16.18a.54.54 0 0 1-.03.54.46.46 0 0 1-.13.13l-2.3 1.57a.54.54 0 0 1-.12.06.45.45 0 0 1-.32-.02.57.57 0 0 1-.16-.1.5.5 0 0 1-.14-.36v-3.08a.51.51 0 0 1 .3-.46.44.44 0 0 1 .18-.05Z\"]);\nexport const ShoppingBagPlay20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPlay20Regular', \"20\", [\"M15 6a1 1 0 0 1 1 1v2.2c-.32-.08-.66-.15-1-.18V7h-3v2.6c-.36.18-.7.4-1 .66V7H5v8a1.98 1.98 0 0 0 1.23 1.84c.24.1.5.16.77.16h2.6c.18.36.4.7.66 1H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1Zm-2-1.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5V6h2V4.5ZM7 6h3V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6Zm12 8.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4.98-1.97a.45.45 0 0 0-.45-.03.5.5 0 0 0-.15.1.51.51 0 0 0-.14.36v3.08a.5.5 0 0 0 .14.35.45.45 0 0 0 .52.12.54.54 0 0 0 .09-.05l2.3-1.57a.46.46 0 0 0 .16-.18.54.54 0 0 0 0-.49.49.49 0 0 0-.17-.18l-2.3-1.5Z\"]);\nexport const ShoppingBagPlay24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagPlay24Filled', \"24\", [\"M7 5v2H5.5C4.67 7 4 7.67 4 8.5V18a4 4 0 0 0 4 4h4.81a6.48 6.48 0 0 1 .19-9.19V5a3 3 0 0 0-.16-.96A1.5 1.5 0 0 1 15.5 5v2h-1v4.73a6.47 6.47 0 0 1 5.5-.23v-3c0-.83-.67-1.5-1.5-1.5H17V5a3 3 0 0 0-5-2.24A3 3 0 0 0 7 5Zm3-1.5c.83 0 1.5.67 1.5 1.5v2h-3V5c0-.83.67-1.5 1.5-1.5Zm13 14a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.09-2.4a.55.55 0 0 0-.54-.05.6.6 0 0 0-.2.13.62.62 0 0 0-.18.44v3.76a.61.61 0 0 0 .19.44c.05.05.12.1.19.13a.55.55 0 0 0 .44 0 .66.66 0 0 0 .11-.05l2.8-1.92a.56.56 0 0 0 .2-.22.65.65 0 0 0 0-.6.6.6 0 0 0-.2-.22l-2.8-1.84Z\"]);\nexport const ShoppingBagPlay24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagPlay24Regular', \"24\", [\"M7 5v2H5.5C4.67 7 4 7.67 4 8.5V18a4 4 0 0 0 4 4h4.81a6.52 6.52 0 0 1-1.08-1.5H8A2.5 2.5 0 0 1 5.5 18V8.5H13v4.31c.44-.43.95-.8 1.5-1.08V8.5h4v2.58c.52.08 1.03.22 1.5.42v-3c0-.83-.67-1.5-1.5-1.5H17V5a3 3 0 0 0-5-2.24A3 3 0 0 0 7 5Zm3-1.5c.83 0 1.5.67 1.5 1.5v2h-3V5c0-.83.67-1.5 1.5-1.5ZM15.5 7H13V5a3 3 0 0 0-.16-.96A1.5 1.5 0 0 1 15.5 5v2ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.09-2.4a.55.55 0 0 0-.54-.05.6.6 0 0 0-.2.13.62.62 0 0 0-.18.44v3.76a.61.61 0 0 0 .19.44c.05.05.12.1.19.13a.55.55 0 0 0 .44 0 .66.66 0 0 0 .11-.05l2.8-1.92a.56.56 0 0 0 .2-.22.65.65 0 0 0 0-.6.6.6 0 0 0-.2-.22l-2.8-1.84Z\"]);\nexport const ShoppingBagTag20Filled = /*#__PURE__*/createFluentIcon('ShoppingBagTag20Filled', \"20\", [\"M6 6V4.5a2.42 2.42 0 0 1 .73-1.77A2.43 2.43 0 0 1 8.5 2a2.43 2.43 0 0 1 1.5.5 2.44 2.44 0 0 1 2.48-.3 2.53 2.53 0 0 1 1.32 1.33c.13.3.2.63.2.97V6h1a1 1 0 0 1 1 1v2.6a2.5 2.5 0 0 0-1.62-.6H12V6h1V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 11.5 3c-.3 0-.58.09-.83.26A2.5 2.5 0 0 1 11 4.5v4.55c-1.14.24-2 1.25-2 2.46v2.88c0 .66.26 1.29.72 1.76L11.53 18H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1h1Zm4 0V4.5a1.47 1.47 0 0 0-.44-1.06A1.48 1.48 0 0 0 8.5 3a1.47 1.47 0 0 0-1.06.44A1.48 1.48 0 0 0 7 4.5V6h3Zm.43 9.45a1.51 1.51 0 0 1-.43-1.06v-2.88c0-.83.68-1.51 1.51-1.51h2.87c.4 0 .8.16 1.07.45l3.11 3.14c.6.6.58 1.57-.02 2.15l-2.95 2.84a1.5 1.5 0 0 1-2.12-.03l-3.04-3.1Zm1.57-2.7a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z\"]);\nexport const ShoppingBagTag20Regular = /*#__PURE__*/createFluentIcon('ShoppingBagTag20Regular', \"20\", [\"M10 2.5a2.5 2.5 0 0 0-4 2V6H5a1 1 0 0 0-1 1v8a3 3 0 0 0 3 3h4.53l-.98-1H7a2 2 0 0 1-2-2V7h6v2.05c.16-.03.34-.05.51-.05H12V7h3v2.08c.37.09.7.27 1 .51V7a1 1 0 0 0-1-1h-1V4.5a2.5 2.5 0 0 0-4-2Zm-3 2a1.5 1.5 0 1 1 3 0V6H7V4.5Zm3.67-1.25A1.5 1.5 0 0 1 13 4.5V6h-2V4.5c0-.45-.12-.88-.33-1.25Zm-.24 12.2a1.51 1.51 0 0 1-.43-1.06v-2.88c0-.83.68-1.51 1.51-1.51h2.87c.4 0 .8.16 1.07.45l3.11 3.14c.6.6.58 1.57-.02 2.15l-2.95 2.84a1.5 1.5 0 0 1-2.12-.03l-3.04-3.1Zm1.57-2.7a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z\"]);\nexport const ShoppingBagTag24Filled = /*#__PURE__*/createFluentIcon('ShoppingBagTag24Filled', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v4.32l-.97-.96a3 3 0 0 0-2.11-.86H14.5V7h1V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v6.17A3 3 0 0 0 11 14v2.93a3 3 0 0 0 .86 2.1L14.77 22H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm1.5-2v2h3V5a1.5 1.5 0 0 0-3 0Zm4.07 13.33 4 4.07a2 2 0 0 0 2.86.02l2.99-3a2 2 0 0 0-.01-2.83l-4.08-4.01a2 2 0 0 0-1.41-.58H14a2 2 0 0 0-2 2v2.93a2 2 0 0 0 .57 1.4ZM16 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const ShoppingBagTag24Regular = /*#__PURE__*/createFluentIcon('ShoppingBagTag24Regular', \"24\", [\"M7 7V5a3 3 0 0 1 5-2.24A3 3 0 0 1 17 5v2h1.5c.83 0 1.5.67 1.5 1.5v4.32l-.97-.96a3 3 0 0 0-.53-.41V8.5h-3.99V11h-.5a3 3 0 0 0-1 .17V8.5H5.5V18A2.5 2.5 0 0 0 8 20.5h5.3l1.47 1.5H8a4 4 0 0 1-4-4V8.5C4 7.67 4.67 7 5.5 7H7Zm4.5 0V5a1.5 1.5 0 0 0-3 0v2h3ZM13 7h2.5V5a1.5 1.5 0 0 0-2.66-.96c.1.3.16.63.16.96v2Zm-.43 11.33 4 4.07a2 2 0 0 0 2.86.02l2.99-3a2 2 0 0 0-.01-2.83l-4.08-4.01a2 2 0 0 0-1.41-.58H14a2 2 0 0 0-2 2v2.93a2 2 0 0 0 .57 1.4ZM16 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const Shortpick20Filled = /*#__PURE__*/createFluentIcon('Shortpick20Filled', \"20\", [\"M7 2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h.5a.5.5 0 0 0 0-1H7V3h.5a.5.5 0 0 0 0-1H7Zm2.5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5v2h-.5a.5.5 0 0 0 0 1h.5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-.5Zm-3 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm-5 2c.28 0 .5.22.5.5v8c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-8a.5.5 0 0 1 1 0v8a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 4 15.5v-8c0-.28.22-.5.5-.5ZM7 12a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H7ZM6 8a1 1 0 0 1 1-1h.5a.5.5 0 0 1 0 1H7v2h.5a.5.5 0 0 1 0 1H7a1 1 0 0 1-1-1V8Zm3-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm3 0c0-.28.22-.5.5-.5h.5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.5a.5.5 0 0 1 0-1h.5V8h-.5a.5.5 0 0 1-.5-.5Zm-3 3c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const Shortpick20Regular = /*#__PURE__*/createFluentIcon('Shortpick20Regular', \"20\", [\"M7 2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h.5a.5.5 0 0 0 0-1H7V3h.5a.5.5 0 0 0 0-1H7Zm2.5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5v2h-.5a.5.5 0 0 0 0 1h.5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-.5Zm-3 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1ZM5 7.5a.5.5 0 0 0-1 0v8A2.5 2.5 0 0 0 6.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-8a.5.5 0 0 0-1 0v8c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 5 15.5v-8ZM7 12a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H7Zm0 1h6v2H7v-2ZM6 8a1 1 0 0 1 1-1h.5a.5.5 0 0 1 0 1H7v2h.5a.5.5 0 0 1 0 1H7a1 1 0 0 1-1-1V8Zm3-.5c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Zm3 0c0-.28.22-.5.5-.5h.5a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.5a.5.5 0 0 1 0-1h.5V8h-.5a.5.5 0 0 1-.5-.5Zm-3 3c0-.28.22-.5.5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5Z\"]);\nexport const Shortpick24Filled = /*#__PURE__*/createFluentIcon('Shortpick24Filled', \"24\", [\"M8.96 3.5H8.5v2h.46a.75.75 0 0 1 0 1.5h-.71C7.56 7 7 6.44 7 5.75v-2.5C7 2.56 7.56 2 8.25 2h.71a.75.75 0 0 1 0 1.5ZM11.5 2a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm3.54 0a.75.75 0 0 0 0 1.5h.46v2h-.46a.75.75 0 0 0 0 1.5h.71C16.44 7 17 6.44 17 5.75v-2.5C17 2.56 16.44 2 15.75 2h-.71ZM11.5 5.5a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1ZM4.75 8c.41 0 .75.34.75.75v10c0 .97.78 1.75 1.75 1.75h9.5c.97 0 1.75-.78 1.75-1.75v-10a.75.75 0 0 1 1.5 0v10c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75v-10c0-.41.34-.75.75-.75Zm3.5 6C7.56 14 7 14.56 7 15.25v2.5c0 .69.56 1.25 1.25 1.25h7.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-7.5Zm.25-4.5h.46a.75.75 0 0 0 0-1.5h-.71C7.56 8 7 8.56 7 9.25v2.5c0 .69.56 1.25 1.25 1.25h.71a.75.75 0 0 0 0-1.5H8.5v-2Zm2.25-.75c0-.41.34-.75.75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm3.54 0c0-.41.33-.75.75-.75h.71c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25h-.71a.75.75 0 0 1 0-1.5h.46v-2h-.46a.75.75 0 0 1-.75-.75Zm-3.54 3.5c0-.41.34-.75.75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z\"]);\nexport const Shortpick24Regular = /*#__PURE__*/createFluentIcon('Shortpick24Regular', \"24\", [\"M8.96 3.5H8.5v2h.46a.75.75 0 0 1 0 1.5h-.71C7.56 7 7 6.44 7 5.75v-2.5C7 2.56 7.56 2 8.25 2h.71a.75.75 0 0 1 0 1.5ZM11.5 2a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm3.54 0a.75.75 0 0 0 0 1.5h.46v2h-.46a.75.75 0 0 0 0 1.5h.71C16.44 7 17 6.44 17 5.75v-2.5C17 2.56 16.44 2 15.75 2h-.71ZM11.5 5.5a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm-6 3.25a.75.75 0 0 0-1.5 0v10C4 20.55 5.46 22 7.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25v-10a.75.75 0 0 0-1.5 0v10c0 .97-.78 1.75-1.75 1.75h-9.5c-.97 0-1.75-.78-1.75-1.75v-10ZM8.25 14C7.56 14 7 14.56 7 15.25v2.5c0 .69.56 1.25 1.25 1.25h7.5c.69 0 1.25-.56 1.25-1.25v-2.5c0-.69-.56-1.25-1.25-1.25h-7.5Zm.25 3.5v-2h7v2h-7Zm0-8h.46a.75.75 0 0 0 0-1.5h-.71C7.56 8 7 8.56 7 9.25v2.5c0 .69.56 1.25 1.25 1.25h.71a.75.75 0 0 0 0-1.5H8.5v-2Zm2.25-.75c0-.41.34-.75.75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm3.54 0c0-.41.33-.75.75-.75h.71c.69 0 1.25.56 1.25 1.25v2.5c0 .69-.56 1.25-1.25 1.25h-.71a.75.75 0 0 1 0-1.5h.46v-2h-.46a.75.75 0 0 1-.75-.75Zm-3.54 3.5c0-.41.34-.75.75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z\"]);\nexport const Showerhead20Filled = /*#__PURE__*/createFluentIcon('Showerhead20Filled', \"20\", [\"m15.48 2.42-1.7 1.7a7.03 7.03 0 0 1 2.06 2.02l1.68-1.68a1.44 1.44 0 1 0-2.04-2.04ZM4.85 11.85a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 .7.7l2-2Zm2 2a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 .7.7l2-2Zm2 1.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Zm4.86-.8a1.46 1.46 0 0 0-.18-.22L5.87 6.47a1.45 1.45 0 0 0-2.05 2.05l7.66 7.66a1.45 1.45 0 0 0 2.23-1.82ZM6.58 5.78a2.46 2.46 0 0 0-.45-.36 6 6 0 0 1 8.46 8.46c-.1-.16-.22-.3-.35-.44L6.58 5.77Z\"]);\nexport const Showerhead20Regular = /*#__PURE__*/createFluentIcon('Showerhead20Regular', \"20\", [\"M17.43 2.57a1.94 1.94 0 0 0-2.74 0L12.65 4.6v.01a6 6 0 0 0-6.76 1.02 1.91 1.91 0 0 0-1.74 3.22l7 7a1.91 1.91 0 0 0 3.23-1.74 6 6 0 0 0 1.01-6.76l2.04-2.03c.76-.76.76-2 0-2.75Zm-2.57 3.9a6.05 6.05 0 0 0-1.34-1.33l1.88-1.86a.94.94 0 1 1 1.33 1.33l-1.87 1.87Zm-8.02-.34a5 5 0 0 1 7.03 7.03l-.01-.01-7-7-.02-.02Zm-.72.7 7.05 7.05a.91.91 0 0 1-1.31 1.27l-7-7a.91.91 0 0 1 1.26-1.32Zm.73 6.32c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Zm-2-1.3a.5.5 0 1 0-.7-.7l-2 2a.5.5 0 1 0 .7.7l2-2Zm4 3.3c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7l2-2c.2-.2.5-.2.7 0Z\"]);\nexport const Showerhead24Filled = /*#__PURE__*/createFluentIcon('Showerhead24Filled', \"24\", [\"M21.49 4.98 19.48 7a9.05 9.05 0 0 0-2.47-2.47l2.01-2a1.75 1.75 0 1 1 2.47 2.46ZM5.28 13.72c.3.3.3.77 0 1.06l-2 2a.75.75 0 0 1-1.06-1.06l2-2c.3-.3.77-.3 1.06 0Zm2.5 3.56a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 1 0 1.06 1.06l2-2Zm2.5 2.5a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 1 0 1.06 1.06l2-2ZM3.74 7.26a1.75 1.75 0 0 1 2.47 0l10.56 10.56a1.75 1.75 0 1 1-2.47 2.48L3.74 9.74a1.75 1.75 0 0 1 0-2.48Zm3.18-.7a2.76 2.76 0 0 0-.43-.36A8 8 0 0 1 17.8 17.5c-.1-.13-.2-.26-.32-.39L6.92 6.56Z\"]);\nexport const Showerhead24Regular = /*#__PURE__*/createFluentIcon('Showerhead24Regular', \"24\", [\"m15.6 4.86 2.13-2.13a2.5 2.5 0 1 1 3.53 3.53l-2.12 2.12a8 8 0 0 1-1.2 8.98 2.5 2.5 0 0 1-4.18 2.4l-9.5-9.48a2.5 2.5 0 0 1 2.36-4.2 8 8 0 0 1 8.98-1.22Zm2.71 2.23L20.2 5.2a1 1 0 0 0-1.41-1.4L16.9 5.67a8.08 8.08 0 0 1 1.41 1.4ZM5.33 7.8a1 1 0 0 0 0 1.4l9.49 9.5a1 1 0 1 0 1.4-1.41L6.75 7.8a1 1 0 0 0-1.41 0Zm2.45 9.47a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 1 0 1.06 1.06l2-2Zm2.5 1.44c.3.3.3.77 0 1.06l-2 2a.75.75 0 0 1-1.06-1.06l2-2c.3-.3.77-.3 1.06 0Zm-5-3.94a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 1 0 1.06 1.06l2-2Zm11.82 1.26A6.5 6.5 0 0 0 7.96 6.9l9.14 9.14Z\"]);\nexport const Showerhead32Filled = /*#__PURE__*/createFluentIcon('Showerhead32Filled', \"32\", [\"m28.38 6.62-2.89 2.89a11.57 11.57 0 0 0-3-3l2.89-2.89a2.12 2.12 0 0 1 3 3ZM7.7 19.71a1 1 0 1 0-1.42-1.42l-3 3a1 1 0 1 0 1.42 1.42l3-3Zm3 1.58a1 1 0 0 1 0 1.42l-3 3a1 1 0 0 1-1.42-1.42l3-3a1 1 0 0 1 1.42 0Zm3 4.42a1 1 0 0 0-1.42-1.42l-3 3a1 1 0 1 0 1.42 1.42l3-3ZM8.24 9.62a2.13 2.13 0 0 0-2.98 3.05l14.1 14.1a2.13 2.13 0 0 0 3.02-3l-.01-.02-14.1-14.1-.03-.03Zm1.1-1.03-.03-.02a10 10 0 0 1 14.12 14.12L9.33 8.6Z\"]);\nexport const Showerhead32Regular = /*#__PURE__*/createFluentIcon('Showerhead32Regular', \"32\", [\"M20.5 7.07a10 10 0 0 0-10.95 1.3 3.12 3.12 0 0 0-3.6 5l12.7 12.7a3.12 3.12 0 0 0 5-3.62 10 10 0 0 0 1.28-10.97l3.15-3.15a3.12 3.12 0 1 0-4.42-4.42l-3.15 3.16Zm-9.4 2.6A8 8 0 0 1 22.32 20.9L11.1 9.68Zm-3.73.7c.42-.43 1.1-.44 1.54-.04L21.7 23.1a1.12 1.12 0 0 1-1.63 1.55l-12.7-12.7a1.12 1.12 0 0 1 0-1.6Zm14.86-2.2 2.85-2.84a1.12 1.12 0 1 1 1.58 1.59l-2.84 2.84a10.12 10.12 0 0 0-1.59-1.58ZM7.71 19.72a1 1 0 1 0-1.42-1.42l-3 3a1 1 0 1 0 1.42 1.42l3-3Zm3 1.58a1 1 0 0 1 0 1.42l-3 3a1 1 0 0 1-1.42-1.42l3-3a1 1 0 0 1 1.42 0Zm3 4.42a1 1 0 0 0-1.42-1.42l-3 3a1 1 0 1 0 1.42 1.42l3-3Z\"]);\nexport const SidebarSearchLtr20Filled = /*#__PURE__*/createFluentIcon('SidebarSearchLtr20Filled', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-2.59a1.5 1.5 0 0 0-.35-.56l-2-2A4.49 4.49 0 0 0 5.5 8c-.93 0-1.78.28-2.5.76V5.5Zm10 1v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-1 0Zm-4 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L7.6 15.3A3.5 3.5 0 1 1 9 12.5Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SidebarSearchLtr20Regular = /*#__PURE__*/createFluentIcon('SidebarSearchLtr20Regular', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-2.59a1.5 1.5 0 0 0-.35-.56l-.44-.44h3.38c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v2.76c-.36.12-.7.3-1 .5V5.5Zm5.3 9.1a3.5 3.5 0 1 0-.7.7l2.55 2.55a.5.5 0 0 0 .7-.7L8.3 14.6Zm-2.8.4a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm8-9a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-.5-.5Z\"]);\nexport const SidebarSearchRtl20Filled = /*#__PURE__*/createFluentIcon('SidebarSearchRtl20Filled', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v7a4.5 4.5 0 1 0-4.5 4.5h-7A2.5 2.5 0 0 1 3 14.5v-9Zm3 1v7a.5.5 0 0 0 1 0v-7a.5.5 0 0 0-1 0Zm10 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L14.6 15.3a3.5 3.5 0 1 1 1.4-2.8Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SidebarSearchRtl20Regular = /*#__PURE__*/createFluentIcon('SidebarSearchRtl20Regular', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v7c0-1.07-.37-2.06-1-2.83V5.5c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v9c0 .83.67 1.5 1.5 1.5h4.17c.77.63 1.76 1 2.83 1h-7A2.5 2.5 0 0 1 3 14.5v-9Zm3 1a.5.5 0 0 1 1 0v7a.5.5 0 0 1-1 0v-7Zm10 6c0 .79-.26 1.51-.7 2.1l2.55 2.55a.5.5 0 0 1-.7.7L14.6 15.3a3.5 3.5 0 1 1 1.4-2.8Zm-1 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SignOut20Filled = /*#__PURE__*/createFluentIcon('SignOut20Filled', \"20\", [\"M11 3.5a.5.5 0 0 0-.58-.5l-7 1.08a.5.5 0 0 0-.42.49v10.86c0 .25.18.46.42.5l7 1.07a.5.5 0 0 0 .58-.5V10h5.17l-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 1 0-.65.76l1 .87H11V3.5Zm-2.5 7.75a.75.75 0 1 1 0-1.5.75.75 0 0 1 0 1.5Zm4 4.75H12v-5h1v4.5a.5.5 0 0 1-.5.5ZM12 8V4h.5c.28 0 .5.22.5.5V8h-1Z\"]);\nexport const SignOut20Regular = /*#__PURE__*/createFluentIcon('SignOut20Regular', \"20\", [\"M8.5 11.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM11 3.5a.5.5 0 0 0-.58-.5l-7 1.08a.5.5 0 0 0-.42.49v10.86c0 .25.18.46.42.5l7 1.07a.5.5 0 0 0 .58-.5V10h5.17l-1 .87a.5.5 0 0 0 .66.76l2-1.75a.5.5 0 0 0 0-.76l-2-1.75a.5.5 0 1 0-.65.76l1 .87H11V3.5Zm-1 .58v11.84L4 15V5l6-.92ZM12.5 16H12v-5h1v4.5a.5.5 0 0 1-.5.5ZM12 8V4h.5c.28 0 .5.22.5.5V8h-1Z\"]);\nexport const SignOut24Filled = /*#__PURE__*/createFluentIcon('SignOut24Filled', \"24\", [\"M12 4.35V11h7.44l-1.72-1.72a.75.75 0 0 1-.07-.98l.07-.08a.75.75 0 0 1 .98-.07l.08.07 3 3c.26.26.29.68.07.97l-.07.09-3 3a.75.75 0 0 1-1.13-.97l.07-.09 1.71-1.72H12v6.75c0 .47-.42.82-.88.74l-8.5-1.5a.75.75 0 0 1-.62-.74v-12c0-.37.27-.68.63-.74l8.5-1.4c.46-.07.87.28.87.74ZM8.5 11.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4.5 7h.87a.75.75 0 0 0 .65-.75l-.01-4.25H13v5Zm0-8.5V5h.75c.37 0 .69.28.74.65v.1L14.5 10H13Z\"]);\nexport const SignOut24Regular = /*#__PURE__*/createFluentIcon('SignOut24Regular', \"24\", [\"M8.5 11.5a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM12 4.35V11h7.44l-1.72-1.72a.75.75 0 0 1-.07-.98l.07-.08a.75.75 0 0 1 .98-.07l.08.07 3 3c.26.26.29.68.07.97l-.07.09-3 3a.75.75 0 0 1-1.13-.97l.07-.09 1.71-1.72H12v6.75c0 .47-.42.82-.88.74l-8.5-1.5a.75.75 0 0 1-.62-.74v-12c0-.37.27-.68.63-.74l8.5-1.4c.46-.07.87.28.87.74Zm-1.5.89-7 1.15v10.73l7 1.24V5.24ZM13 18.5h.87a.75.75 0 0 0 .65-.75l-.01-4.25H13v5Zm0-8.5V5h.75c.37 0 .69.28.74.65v.1L14.5 10H13Z\"]);\nexport const Signature16Filled = /*#__PURE__*/createFluentIcon('Signature16Filled', \"16\", [\"M12.48 1.77a2.44 2.44 0 0 0-3.46 0L2.4 8.4a.5.5 0 0 0-.12.2l-1.25 3.74a.5.5 0 0 0 .6.65l4-1a.5.5 0 0 0 .22-.14l5.65-5.64.09.08a1 1 0 0 1 0 1.42l-1.44 1.44a.5.5 0 0 0 .7.7l1.44-1.44a2 2 0 0 0 0-2.82l-.08-.09.27-.27c.95-.96.95-2.5 0-3.46ZM4.97 15c-1.24 0-2.21-.57-2.86-1.1l1.29-.33c.44.25.97.43 1.57.43.4 0 .82-.16 1.27-.46.44-.29.87-.68 1.31-1.1l.11-.1c.39-.36.79-.74 1.17-1 .4-.27.95-.53 1.52-.3.37.14.62.4.79.73.16.3.27.69.38 1.1.05.2.13.38.23.5.04.06.08.1.11.12l.04.01c.12 0 .33-.08.63-.29.19-.12.34-.25.5-.37l.3-.24a4.76 4.76 0 0 1 .98-.56l.02-.01h.01l.16.47-.16-.47a.5.5 0 0 1 .32.94l-.03.02-.15.06c-.13.07-.32.18-.55.35l-.22.17c-.18.15-.4.33-.62.47-.3.21-.74.46-1.19.46a1.2 1.2 0 0 1-.95-.52c-.2-.25-.33-.57-.4-.85a4.4 4.4 0 0 0-.3-.9c-.09-.16-.17-.23-.26-.26-.08-.03-.25-.04-.6.2-.31.21-.65.53-1.06.91l-.1.1c-.43.4-.92.85-1.45 1.2-.52.35-1.14.62-1.81.62Z\"]);\nexport const Signature16Regular = /*#__PURE__*/createFluentIcon('Signature16Regular', \"16\", [\"M9.02 1.77a2.44 2.44 0 0 1 3.46 3.46l-.27.27.08.09a2 2 0 0 1 0 2.82l-1.44 1.44a.5.5 0 0 1-.7-.7l1.44-1.44a1 1 0 0 0 0-1.42l-.09-.08-5.65 5.64a.5.5 0 0 1-.23.14l-4 1a.5.5 0 0 1-.6-.65L2.29 8.6a.5.5 0 0 1 .12-.2l6.62-6.62Zm2.75.7a1.44 1.44 0 0 0-2.04 0L3.19 9.03l-.93 2.77 2.98-.74 6.53-6.53c.57-.56.57-1.48 0-2.04ZM4.97 15c-1.24 0-2.21-.57-2.86-1.1l1.29-.33c.44.25.97.43 1.57.43.4 0 .82-.16 1.27-.46.44-.29.87-.68 1.31-1.1l.11-.1c.39-.36.79-.74 1.17-1 .4-.27.95-.53 1.52-.3.37.14.62.4.79.73.16.3.27.69.38 1.1.05.2.13.38.23.5.04.06.08.1.11.12l.04.01c.12 0 .33-.08.63-.29.19-.12.34-.25.5-.37l.3-.24a4.76 4.76 0 0 1 .98-.56l.02-.01h.01l.16.47-.16-.47a.5.5 0 0 1 .32.94l-.03.02-.15.06c-.13.07-.32.18-.55.35l-.22.17c-.18.15-.4.33-.62.47-.3.21-.74.46-1.19.46a1.2 1.2 0 0 1-.95-.52c-.2-.25-.33-.57-.4-.85a4.4 4.4 0 0 0-.3-.9c-.09-.16-.17-.23-.26-.26-.08-.03-.25-.04-.6.2-.31.21-.65.53-1.06.91l-.1.1c-.43.4-.92.85-1.45 1.2-.52.35-1.14.62-1.81.62Z\"]);\nexport const Signature20Filled = /*#__PURE__*/createFluentIcon('Signature20Filled', \"20\", [\"M12.02 2.77a2.44 2.44 0 1 1 3.46 3.46L14.2 7.5l.08.09a2 2 0 0 1 0 2.82l-1.44 1.44a.5.5 0 0 1-.7-.7l1.44-1.44a1 1 0 0 0 0-1.42l-.09-.08-6.65 6.64a.5.5 0 0 1-.23.14l-4 1a.5.5 0 0 1-.6-.65l1.26-3.75a.5.5 0 0 1 .12-.2l8.62-8.62ZM3.27 16.9c-.02 0-.04-.02-.05-.03l1.35-.34c.53.27 1.18.47 1.93.47.5 0 1.01-.18 1.53-.47.53-.3 1.03-.7 1.53-1.1l.13-.11c.44-.36.9-.74 1.34-1 .47-.27 1.04-.49 1.63-.3.82.28 1.08 1.04 1.32 1.84.05.18.15.36.26.49.11.12.2.15.26.15.19 0 .46-.1.8-.3a9.43 9.43 0 0 0 .93-.62 5.6 5.6 0 0 1 1.1-.55h.03l.14.47-.14-.48a.5.5 0 0 1 .28.96 2.74 2.74 0 0 0-.21.08 4.6 4.6 0 0 0-.92.54l-.7.46a2.7 2.7 0 0 1-1.31.44c-.44 0-.78-.23-1-.49a2.33 2.33 0 0 1-.48-.87c-.26-.87-.41-1.08-.68-1.17-.16-.05-.4-.02-.8.22-.37.21-.77.54-1.23.92l-.12.1c-.5.4-1.06.84-1.66 1.19-.6.34-1.29.6-2.03.6a5.49 5.49 0 0 1-3.23-1.1Z\"]);\nexport const Signature20Regular = /*#__PURE__*/createFluentIcon('Signature20Regular', \"20\", [\"M12.02 2.77a2.44 2.44 0 1 1 3.46 3.46L14.2 7.5l.08.09a2 2 0 0 1 0 2.82l-1.44 1.44a.5.5 0 0 1-.7-.7l1.44-1.44a1 1 0 0 0 0-1.42l-.09-.08-6.65 6.64a.5.5 0 0 1-.23.14l-4 1a.5.5 0 0 1-.6-.65l1.26-3.75a.5.5 0 0 1 .12-.2l8.62-8.62Zm2.75.7a1.44 1.44 0 0 0-2.04 0l-8.54 8.55-.93 2.77 2.98-.74 8.53-8.53c.57-.56.57-1.48 0-2.04ZM3.22 16.88l.05.03C4 17.44 5.1 18 6.5 18c.74 0 1.42-.26 2.03-.6.6-.35 1.16-.8 1.66-1.2l.12-.1c.46-.37.86-.7 1.23-.91.4-.24.64-.27.8-.22.27.1.42.3.68 1.17.09.3.24.61.47.87.23.26.57.49 1.01.49.47 0 .94-.23 1.3-.44a12.61 12.61 0 0 0 .97-.64 4.6 4.6 0 0 1 .82-.42l.04-.02h.01a.5.5 0 0 0-.28-.96h-.01l-.02.01a2.35 2.35 0 0 0-.31.12c-.2.09-.47.22-.8.43l-.33.23c-.19.13-.38.26-.6.39-.33.2-.6.3-.79.3-.06 0-.15-.03-.26-.15-.11-.13-.2-.31-.26-.5-.24-.8-.5-1.55-1.32-1.82-.59-.2-1.16.02-1.63.3-.44.25-.9.63-1.34.99l-.13.1c-.5.41-1 .8-1.53 1.1-.52.3-1.02.48-1.53.48-.75 0-1.4-.2-1.93-.47l-1.35.34ZM17.5 15.5l-.14-.48.14.48Z\"]);\nexport const Signature24Filled = /*#__PURE__*/createFluentIcon('Signature24Filled', \"24\", [\"M14.75 16.5c1.3 0 1.82.58 2.2 1.87l.07.24c.19.66.3.86.52.95.26.1.43.09.7-.05l.15-.08.17-.11.67-.46c.61-.4 1.17-.67 1.84-.84a.75.75 0 1 1 .36 1.46c-.4.1-.76.25-1.14.49l-.3.19-.48.33c-.23.15-.4.26-.58.35a2.2 2.2 0 0 1-1.96.1c-.75-.3-1.05-.78-1.33-1.72l-.16-.54c-.18-.59-.3-.68-.73-.68-.3 0-.63.16-1.07.52l-.18.16-.92.88c-1.41 1.32-2.61 1.97-4.33 1.97-1.69 0-3.15-.26-4.37-.77l2.95-.8c.45.04.92.07 1.42.07 1.18 0 2.03-.42 3.09-1.37l.25-.24.54-.5a12 12 0 0 1 .59-.55c.68-.57 1.3-.87 2.03-.87Zm4.28-13.53a3.58 3.58 0 0 1 0 5.06l-.29.29c1.15 1.4 1.11 2.89.04 3.96l-2 2a.75.75 0 0 1-1.06-1.06l2-2c.48-.49.54-1.09-.04-1.84L9.06 18c-.27.28-.62.48-1 .58l-5.11 1.4a.75.75 0 0 1-.92-.93l1.4-5.11c.1-.38.3-.72.57-1l9.97-9.97a3.58 3.58 0 0 1 5.06 0Z\"]);\nexport const Signature24Regular = /*#__PURE__*/createFluentIcon('Signature24Regular', \"24\", [\"M14.75 16.5c1.3 0 1.82.58 2.2 1.87l.07.24c.19.66.3.86.52.95.26.1.43.09.7-.05l.15-.08.17-.11.67-.46c.61-.4 1.17-.67 1.84-.84a.75.75 0 1 1 .36 1.46c-.4.1-.76.25-1.14.49l-.3.19-.48.33c-.23.15-.4.26-.58.35a2.2 2.2 0 0 1-1.96.1c-.75-.3-1.05-.78-1.33-1.72l-.16-.54c-.18-.59-.3-.68-.73-.68-.3 0-.63.16-1.07.52l-.18.16-.92.88c-1.41 1.32-2.61 1.97-4.33 1.97-1.69 0-3.15-.26-4.37-.77l2.95-.8c.45.04.92.07 1.42.07 1.18 0 2.03-.42 3.09-1.37l.25-.24.54-.5a12 12 0 0 1 .59-.55c.68-.57 1.3-.87 2.03-.87Zm4.28-13.53a3.58 3.58 0 0 1 0 5.06l-.29.29c1.15 1.4 1.11 2.89.04 3.96l-2 2a.75.75 0 0 1-1.06-1.06l2-2c.48-.49.54-1.09-.04-1.84L9.06 18c-.27.28-.62.48-1 .58l-5.11 1.4a.75.75 0 0 1-.92-.93l1.4-5.11c.1-.38.3-.72.57-1l9.97-9.97a3.58 3.58 0 0 1 5.06 0Zm-4 1.06L5.06 14c-.09.1-.16.2-.19.33l-1.05 3.85 3.85-1.05c.13-.03.24-.1.33-.2l9.97-9.96a2.08 2.08 0 1 0-2.94-2.94Z\"]);\nexport const Signature28Filled = /*#__PURE__*/createFluentIcon('Signature28Filled', \"28\", [\"M16.48 21h.27c1.22 0 1.86.5 2.65 1.7l.4.61c.3.46.5.65.74.75.43.18.79.09 2.1-.55l.4-.2a9.8 9.8 0 0 1 2.03-.79.75.75 0 1 1 .36 1.46 7 7 0 0 0-1.27.47l-1.15.55c-1.57.74-2.1.83-3.05.44-.62-.25-.98-.63-1.5-1.42l-.2-.3c-.6-.95-.9-1.22-1.5-1.22h-.17c-.43.03-.71.23-2.58 1.61-1.74 1.3-3.07 1.92-4.76 1.92-2.06 0-4-.38-5.82-1.14l2.88-.67c.95.2 1.93.3 2.94.3 1.29 0 2.36-.5 3.87-1.61l1.16-.86c1.27-.92 1.55-1.03 2.2-1.05Zm6.3-17.78a4.29 4.29 0 0 1 0 6.06l-1.04 1.04c1.15 1.4 1.11 2.89.04 3.96l-3 3a.75.75 0 1 1-1.06-1.06l3-3c.48-.49.54-1.09-.04-1.84l-10.6 10.6c-.3.3-.67.5-1.08.6l-6.08 1.4a.75.75 0 0 1-.9-.9L3.42 17c.1-.41.3-.79.6-1.08l12.7-12.7a4.29 4.29 0 0 1 6.06 0Z\"]);\nexport const Signature28Regular = /*#__PURE__*/createFluentIcon('Signature28Regular', \"28\", [\"M16.48 21h.27c1.22 0 1.86.5 2.65 1.7l.4.61c.3.46.5.65.74.75.43.18.79.09 2.1-.55l.4-.2a9.8 9.8 0 0 1 2.03-.79.75.75 0 1 1 .36 1.46 7 7 0 0 0-1.27.47l-1.15.55c-1.57.74-2.1.83-3.05.44-.62-.25-.98-.63-1.5-1.42l-.2-.3c-.55-.9-.85-1.18-1.4-1.22h-.1c-.56 0-.67.07-2.75 1.61-1.74 1.3-3.07 1.92-4.76 1.92-2.06 0-4-.38-5.82-1.14l2.88-.67c.95.2 1.93.3 2.94.3 1.29 0 2.36-.5 3.87-1.61l1.16-.86c1.27-.92 1.55-1.03 2.2-1.05Zm6.3-17.78a4.29 4.29 0 0 1 0 6.06l-1.04 1.04c1.15 1.4 1.11 2.89.04 3.96l-3 3a.75.75 0 1 1-1.06-1.06l3-3c.48-.49.54-1.09-.04-1.84l-10.6 10.6c-.3.3-.67.5-1.08.6l-6.08 1.4a.75.75 0 0 1-.9-.9L3.42 17c.1-.41.3-.79.6-1.08l12.7-12.7a4.29 4.29 0 0 1 6.06 0Zm-5 1.06-12.7 12.7c-.1.1-.16.22-.2.36l-1.13 4.9 4.91-1.12c.14-.04.27-.1.36-.2l12.7-12.7a2.79 2.79 0 0 0-3.94-3.94Z\"]);\nexport const Signature32Filled = /*#__PURE__*/createFluentIcon('Signature32Filled', \"32\", [\"M24.54 3.46a5 5 0 0 0-7.07 0L4.39 16.54a3 3 0 0 0-.8 1.45l-1.56 6.79a1 1 0 0 0 1.2 1.2L10 24.41a3 3 0 0 0 1.45-.8l10.87-10.88.2.2a1.5 1.5 0 0 1 0 2.12l-3.24 3.23a1 1 0 0 0 1.42 1.42l3.23-3.23a3.5 3.5 0 0 0 0-4.95l-.2-.2.8-.8a5 5 0 0 0 0-7.07ZM8.56 29.9a8.76 8.76 0 0 1-4.71-2.53l2.42-.55c.7.5 1.61.93 2.62 1.1 1.54.27 3.43-.07 5.4-2.03a33.28 33.28 0 0 1 2.85-2.57c.78-.6 1.5-1.05 2.19-1.23.76-.2 1.5-.08 2.09.44.5.45.8 1.12 1.03 1.78l.03.1c.41 1.22.62 1.84.83 2.22.1.17.16.24.2.28.05.03.13.08.3.14 0 0 .12.04.45-.13.32-.17.7-.45 1.18-.83l.27-.22c.38-.3.8-.65 1.23-.94a5.65 5.65 0 0 1 1.82-.9 1 1 0 0 1 .48 1.94c-.32.08-.7.28-1.16.6-.36.25-.7.53-1.08.83l-.31.25c-.47.37-1 .78-1.52 1.05a2.55 2.55 0 0 1-2.92-.25c-.3-.24-.51-.53-.69-.85-.3-.55-.56-1.34-.92-2.38l-.09-.27c-.2-.59-.36-.83-.46-.92-.02-.02-.05-.06-.24 0-.3.07-.76.31-1.48.87-.7.55-1.58 1.34-2.67 2.41-2.42 2.4-4.94 2.96-7.14 2.59Z\"]);\nexport const Signature32Regular = /*#__PURE__*/createFluentIcon('Signature32Regular', \"32\", [\"M17.47 3.46a5 5 0 1 1 7.07 7.08l-.8.79.2.2a3.5 3.5 0 0 1 0 4.95L20.7 19.7a1 1 0 1 1-1.42-1.42l3.23-3.23a1.5 1.5 0 0 0 0-2.12l-.2-.2-10.86 10.88a3 3 0 0 1-1.45.8l-6.79 1.55a1 1 0 0 1-1.2-1.2L3.59 18a3 3 0 0 1 .8-1.45L17.48 3.46Zm5.65 1.42a3 3 0 0 0-4.24 0L5.8 17.96a1 1 0 0 0-.27.48l-1.2 5.23 5.23-1.2a1 1 0 0 0 .48-.27L23.12 9.12a3 3 0 0 0 0-4.24ZM8.56 29.9a8.76 8.76 0 0 1-4.71-2.53l2.42-.55c.7.5 1.61.93 2.62 1.1 1.54.27 3.43-.07 5.4-2.03a33.28 33.28 0 0 1 2.85-2.57c.78-.6 1.5-1.05 2.19-1.23.76-.2 1.5-.08 2.09.44.5.45.8 1.12 1.03 1.78l.03.1c.41 1.22.62 1.84.83 2.22.1.17.16.24.2.28.05.03.13.08.3.14 0 0 .12.04.45-.13.32-.17.7-.45 1.18-.83l.27-.22c.38-.3.8-.65 1.23-.94a5.65 5.65 0 0 1 1.82-.9 1 1 0 0 1 .48 1.94c-.32.08-.7.28-1.16.6-.36.25-.7.53-1.08.83l-.31.25c-.47.37-1 .78-1.52 1.05a2.55 2.55 0 0 1-2.92-.25c-.3-.24-.51-.53-.69-.85-.3-.55-.56-1.34-.92-2.38l-.09-.27c-.2-.59-.36-.83-.46-.92-.02-.02-.05-.06-.24 0-.3.07-.76.31-1.48.87-.7.55-1.58 1.34-2.67 2.41-2.42 2.4-4.94 2.96-7.14 2.59Z\"]);\nexport const Sim16Filled = /*#__PURE__*/createFluentIcon('Sim16Filled', \"16\", [\"M5.5 1A2.5 2.5 0 0 0 3 3.5v9A2.5 2.5 0 0 0 5.5 15h5a2.5 2.5 0 0 0 2.5-2.5V5.33c0-.66-.26-1.3-.73-1.77l-1.83-1.83A2.5 2.5 0 0 0 8.67 1H5.5Zm1 7H8v5H6.5A1.5 1.5 0 0 1 5 11.5v-2C5 8.67 5.67 8 6.5 8ZM9 8h.5c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5H9V8Z\"]);\nexport const Sim16Regular = /*#__PURE__*/createFluentIcon('Sim16Regular', \"16\", [\"M5 9.5C5 8.67 5.67 8 6.5 8h3c.83 0 1.5.67 1.5 1.5v2c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 5 11.5v-2ZM6.5 9a.5.5 0 0 0-.5.5v2c0 .28.22.5.5.5H8V9H6.5ZM9 9v3h.5a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5H9ZM3 3.5A2.5 2.5 0 0 1 5.5 1h3.17c.66 0 1.3.26 1.77.73l1.83 1.83c.47.47.73 1.1.73 1.77v7.17a2.5 2.5 0 0 1-2.5 2.5h-5A2.5 2.5 0 0 1 3 12.5v-9ZM5.5 2C4.67 2 4 2.67 4 3.5v9c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5V5.33c0-.4-.16-.78-.44-1.06L9.73 2.44A1.5 1.5 0 0 0 8.67 2H5.5Z\"]);\nexport const Sim20Filled = /*#__PURE__*/createFluentIcon('Sim20Filled', \"20\", [\"M4 5a3 3 0 0 1 3-3h3.46a3 3 0 0 1 2.13.88l2.53 2.53A3 3 0 0 1 16 7.54V15a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5Zm3 5.5v.5h3V9H8.5C7.67 9 7 9.67 7 10.5ZM7 12v1.5c0 .83.67 1.5 1.5 1.5H10v-3H7Zm4.5 3c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H11v6h.5Z\"]);\nexport const Sim20Regular = /*#__PURE__*/createFluentIcon('Sim20Regular', \"20\", [\"M8.5 9h3c.83 0 1.5.67 1.5 1.5v3c0 .83-.67 1.5-1.5 1.5h-3A1.5 1.5 0 0 1 7 13.5v-3C7 9.67 7.67 9 8.5 9ZM8 10.5v.5h2v-1H8.5a.5.5 0 0 0-.5.5ZM8 12v1.5c0 .28.22.5.5.5H10v-2H8Zm3.5 2a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5H11v4h.5ZM7 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3V7.54a3 3 0 0 0-.88-2.13L12.6 2.88A3 3 0 0 0 10.46 2H7ZM5 5c0-1.1.9-2 2-2h3.46a2 2 0 0 1 1.42.59l2.53 2.53A2 2 0 0 1 15 7.54V15a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5Z\"]);\nexport const Sim24Filled = /*#__PURE__*/createFluentIcon('Sim24Filled', \"24\", [\"M4 5.25C4 3.45 5.46 2 7.25 2h5.46c.87 0 1.7.34 2.3.95L19.05 7c.6.6.95 1.43.95 2.3v9.46c0 1.8-1.46 3.25-3.25 3.25h-9.5A3.25 3.25 0 0 1 4 18.75V5.25ZM7.75 14H12v-3.25H9.25c-.83 0-1.5.67-1.5 1.5V14Zm0 1.5v1.25c0 .83.67 1.5 1.5 1.5H12V15.5H7.75Zm5.75 2.75h1.25c.83 0 1.5-.67 1.5-1.5v-4.5c0-.83-.67-1.5-1.5-1.5H13.5v7.5Z\"]);\nexport const Sim24Regular = /*#__PURE__*/createFluentIcon('Sim24Regular', \"24\", [\"M9.75 10A2.75 2.75 0 0 0 7 12.75v3.5A2.75 2.75 0 0 0 9.75 19h4.5A2.75 2.75 0 0 0 17 16.25v-3.5A2.75 2.75 0 0 0 14.25 10h-4.5ZM8.5 12.75c0-.69.56-1.25 1.25-1.25H12V14H8.5v-1.25Zm0 2.75H12v2H9.75c-.69 0-1.25-.56-1.25-1.25v-.75Zm5 2v-6h.75c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25h-.75ZM7.25 2A3.25 3.25 0 0 0 4 5.25v13.5C4 20.55 5.46 22 7.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25V9.29c0-.87-.34-1.7-.95-2.3L15 2.95a3.25 3.25 0 0 0-2.3-.95H7.25ZM5.5 5.25c0-.97.78-1.75 1.75-1.75h5.46c.47 0 .91.18 1.24.51L18 8.05c.33.33.51.77.51 1.24v9.46c0 .97-.78 1.75-1.75 1.75h-9.5c-.97 0-1.75-.78-1.75-1.75V5.25Z\"]);\nexport const SkipBack1020Filled = /*#__PURE__*/createFluentIcon('SkipBack1020Filled', \"20\", [\"M4 5.63V3.75a.75.75 0 0 0-1.5 0v3.5c0 .41.34.75.75.75h4a.75.75 0 0 0 0-1.5H5.23A6.3 6.3 0 0 1 10 4.25c2.4 0 4.53 1.41 5.65 3.54.15.28.43.46.73.46.54 0 .91-.53.67-1.01A7.93 7.93 0 0 0 10 2.75a7.77 7.77 0 0 0-6 2.88Zm4.25 5.12a.75.75 0 0 0-1.24-.57l-1.75 1.5a.75.75 0 1 0 .98 1.14l.51-.44v3.87a.75.75 0 0 0 1.5 0v-5.5ZM15 13.5c0 1.93-.63 3.5-2.5 3.5-1.88 0-2.5-1.57-2.5-3.5s.63-3.5 2.5-3.5c1.88 0 2.5 1.57 2.5 3.5Zm-1.5 0c0-.85-.15-1.4-.32-1.69a.59.59 0 0 0-.22-.22.94.94 0 0 0-.46-.09.94.94 0 0 0-.46.09.59.59 0 0 0-.22.22c-.17.3-.32.84-.32 1.69s.15 1.4.32 1.69c.08.12.15.18.22.22.07.04.2.09.46.09s.39-.05.46-.09c.07-.04.14-.1.22-.22.17-.3.32-.84.32-1.69Z\"]);\nexport const SkipBack1020Regular = /*#__PURE__*/createFluentIcon('SkipBack1020Regular', \"20\", [\"M3 3.5a.5.5 0 1 1 1 0v2.2a8 8 0 0 1 13.16 1.75.5.5 0 1 1-.9.44 7 7 0 0 0-12-.89H7.5a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5v-4Zm5 7a.5.5 0 0 0-.78-.42l-1.5 1a.5.5 0 0 0 .56.84l.72-.49v5.07a.5.5 0 0 0 1 0v-6Zm4.5-.5c-.93 0-1.6.44-2 1.13-.37.65-.5 1.5-.5 2.37 0 .86.13 1.72.5 2.37.4.7 1.07 1.13 2 1.13.94 0 1.6-.44 2-1.13.38-.65.5-1.5.5-2.37 0-.86-.12-1.72-.5-2.37a2.18 2.18 0 0 0-2-1.13ZM11 13.5c0-.8.13-1.44.37-1.87.23-.4.57-.63 1.13-.63.57 0 .9.23 1.13.63.25.43.37 1.08.37 1.87 0 .8-.12 1.44-.37 1.87-.22.4-.56.63-1.13.63-.56 0-.9-.23-1.13-.63A3.87 3.87 0 0 1 11 13.5Z\"]);\nexport const SkipBack1024Filled = /*#__PURE__*/createFluentIcon('SkipBack1024Filled', \"24\", [\"M3 2.25a1 1 0 0 0-1 1V9a1 1 0 0 0 1 1h5.25a1 1 0 0 0 0-2H4.86a7.87 7.87 0 0 1 3.69-2.57 9.44 9.44 0 0 1 10.82 4.05 1 1 0 1 0 1.76-.96 11.44 11.44 0 0 0-13.17-5A9.52 9.52 0 0 0 4 5.98V3.25a1 1 0 0 0-1-1ZM9.75 12a1 1 0 0 0-1.76-.65l-.22.27a8.02 8.02 0 0 1-2.28 2.02 1 1 0 1 0 1.02 1.72c.49-.3.9-.58 1.24-.87V20a1 1 0 0 0 2 0v-8Zm6.5-1c-1.39 0-2.4.64-3 1.66A6.61 6.61 0 0 0 12.5 16c0 1.18.18 2.39.74 3.34A3.33 3.33 0 0 0 16.25 21c1.39 0 2.4-.64 3-1.66.57-.95.75-2.16.75-3.34 0-1.18-.18-2.39-.74-3.34A3.33 3.33 0 0 0 16.25 11Zm-1.75 5c0-1.03.17-1.82.46-2.32.25-.42.61-.68 1.29-.68s1.04.26 1.29.68c.3.5.46 1.29.46 2.32a4.7 4.7 0 0 1-.46 2.32c-.25.42-.61.68-1.29.68s-1.04-.26-1.29-.68A4.7 4.7 0 0 1 14.5 16Z\"]);\nexport const SkipBack1024Regular = /*#__PURE__*/createFluentIcon('SkipBack1024Regular', \"24\", [\"M2.75 2.5a.75.75 0 0 0-.75.75v5.5c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-3.9a8.33 8.33 0 0 1 4.12-3.06A9.68 9.68 0 0 1 19.6 9.1a.75.75 0 0 0 1.32-.72A11.19 11.19 0 0 0 8.03 3.51 9.61 9.61 0 0 0 3.5 6.65v-3.4a.75.75 0 0 0-.75-.75Zm6.2 8.53c.33.09.55.38.55.72v8.5a.75.75 0 0 1-1.5 0v-6.42c-.38.37-.84.75-1.36 1.06a.75.75 0 1 1-.78-1.28 6.88 6.88 0 0 0 2.24-2.24l.01-.01a.75.75 0 0 1 .84-.33Zm4.25 1.6c.55-1 1.48-1.63 2.8-1.63 1.32 0 2.25.64 2.8 1.63.53.93.7 2.15.7 3.37 0 1.22-.17 2.44-.7 3.37A3.05 3.05 0 0 1 16 21a3.05 3.05 0 0 1-2.8-1.63 7.03 7.03 0 0 1-.7-3.37c0-1.22.18-2.44.7-3.37Zm1.3.73A5.6 5.6 0 0 0 14 16c0 1.12.17 2.03.5 2.64.31.55.76.86 1.5.86s1.19-.31 1.5-.86c.33-.6.5-1.52.5-2.64a5.6 5.6 0 0 0-.5-2.64c-.31-.55-.76-.86-1.5-.86s-1.19.31-1.5.86Z\"]);\nexport const SkipBack1028Filled = /*#__PURE__*/createFluentIcon('SkipBack1028Filled', \"28\", [\"M3 3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 1 0 0-2H4.7c1.68-2.3 5.1-4 9.05-4 4.1 0 7.1 1.92 9.4 5.54a1 1 0 0 0 1.7-1.08C22.24 5.38 18.64 3 13.74 3 9.88 3 6.28 4.44 4 6.75V4a1 1 0 0 0-1-1Zm7.27 10.04A1 1 0 0 1 11 14v10a1 1 0 0 1-2 0v-7.27c-.43.4-.92.79-1.49 1.13a1 1 0 0 1-1.02-1.72 8.13 8.13 0 0 0 2.65-2.65 1 1 0 0 1 1.13-.45Zm4.38 1.9A3.97 3.97 0 0 1 18.24 13c1.66 0 2.86.74 3.59 1.95.68 1.13.9 2.6.9 4.05 0 1.46-.22 2.92-.9 4.05a3.97 3.97 0 0 1-3.6 1.95 3.97 3.97 0 0 1-3.58-1.95 7.92 7.92 0 0 1-.91-4.05c0-1.46.22-2.92.9-4.05Zm1.71 1.04a6 6 0 0 0-.62 3.02 6 6 0 0 0 .62 3.02c.36.6.91.98 1.88.98.96 0 1.51-.38 1.88-.98a6 6 0 0 0 .62-3.02 6 6 0 0 0-.62-3.02c-.37-.6-.92-.98-1.88-.98-.97 0-1.52.38-1.88.98Z\"]);\nexport const SkipBack1028Regular = /*#__PURE__*/createFluentIcon('SkipBack1028Regular', \"28\", [\"M2.75 2.5a.75.75 0 0 0-.75.75v6.5c0 .41.34.75.75.75h6.5a.75.75 0 0 0 0-1.5H4.59c1.68-2.53 5.07-4.5 9.16-4.5 4.22 0 7.54 2 9.87 5.65a.75.75 0 1 0 1.26-.8C22.31 5.3 18.53 3 13.75 3 9.32 3 5.52 5.07 3.5 7.94V3.25a.75.75 0 0 0-.75-.75Zm8.2 10.98a.75.75 0 0 0-1.07-.38.74.74 0 0 0-.25.23l-.07.1a8.62 8.62 0 0 1-2.7 2.68.75.75 0 0 0 .78 1.28A9.3 9.3 0 0 0 9.5 15.9v8.35a.75.75 0 0 0 1.5 0V13.77a.76.76 0 0 0-.05-.3Zm3.9 1.43A3.7 3.7 0 0 1 18.24 13c1.59 0 2.7.74 3.38 1.91.65 1.12.87 2.59.87 4.09s-.22 2.97-.87 4.09A3.7 3.7 0 0 1 18.24 25a3.7 3.7 0 0 1-3.39-1.91A8.32 8.32 0 0 1 14 19c0-1.5.22-2.97.86-4.09Zm1.3.75A6.89 6.89 0 0 0 15.5 19c0 1.4.21 2.55.66 3.34a2.2 2.2 0 0 0 2.09 1.16 2.2 2.2 0 0 0 2.08-1.16c.45-.79.67-1.94.67-3.34s-.22-2.55-.67-3.34a2.2 2.2 0 0 0-2.08-1.16 2.2 2.2 0 0 0-2.09 1.16Z\"]);\nexport const SkipBack1032Filled = /*#__PURE__*/createFluentIcon('SkipBack1032Filled', \"32\", [\"M4.5 4.25v3.42A15.32 15.32 0 0 1 16.02 3c5.94.09 10.7 3.27 13.78 8.08a1.25 1.25 0 1 1-2.1 1.35C24.99 8.2 20.95 5.58 15.98 5.5 11.97 5.44 8.21 7 5.78 10h3.97a1.25 1.25 0 1 1 0 2.5h-6.5c-.69 0-1.25-.56-1.25-1.25v-7a1.25 1.25 0 0 1 2.5 0Zm7.99 10.85c.46.2.76.65.76 1.15V27.5a1.25 1.25 0 0 1-2.5 0v-8.47c-.43.3-.94.65-1.6 1.04a1.25 1.25 0 0 1-1.3-2.14 15.37 15.37 0 0 0 2.06-1.41c.31-.26.53-.48.81-.76l.4-.4c.37-.36.9-.46 1.37-.26Zm4.46 2.2A4.58 4.58 0 0 1 21.1 15c1.92 0 3.31.88 4.15 2.3A9.35 9.35 0 0 1 26.3 22c0 1.68-.26 3.38-1.04 4.7A4.58 4.58 0 0 1 21.1 29a4.58 4.58 0 0 1-4.15-2.3A9.35 9.35 0 0 1 15.9 22c0-1.68.26-3.38 1.04-4.7Zm2.15 1.27a6.96 6.96 0 0 0-.69 3.43c0 1.5.24 2.67.7 3.43.38.66.96 1.07 1.99 1.07s1.6-.4 2-1.07c.45-.76.69-1.93.69-3.43 0-1.5-.24-2.67-.69-3.43-.4-.66-.97-1.07-2-1.07s-1.6.4-2 1.07Z\"]);\nexport const SkipBack1032Regular = /*#__PURE__*/createFluentIcon('SkipBack1032Regular', \"32\", [\"M4 4v3.8a16.63 16.63 0 0 1 12.01-4.9c5.86.08 10.79 3.43 13.83 8.18a1 1 0 0 1-1.68 1.08c-2.76-4.3-7.12-7.2-12.17-7.27C11.78 4.83 7.3 6.73 4.74 10H10a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1V4a1 1 0 1 1 2 0Zm8.33 11.05A1 1 0 0 1 13 16v12a1 1 0 1 1-2 0v-9.58c-.55.47-1.22.98-1.99 1.44A1 1 0 0 1 8 18.14a13.26 13.26 0 0 0 3.22-2.75 1 1 0 0 1 1.12-.34Zm4.83 2.21A4.3 4.3 0 0 1 21.1 15a4.3 4.3 0 0 1 3.95 2.26c.74 1.31.99 3.01.99 4.74 0 1.73-.25 3.43-1 4.74A4.3 4.3 0 0 1 21.1 29a4.3 4.3 0 0 1-3.94-2.26c-.74-1.31-1-3.01-1-4.74 0-1.73.26-3.43 1-4.74Zm1.74.99a7.86 7.86 0 0 0-.74 3.75c0 1.59.25 2.88.74 3.75.44.79 1.1 1.25 2.2 1.25s1.76-.46 2.2-1.25c.5-.87.74-2.16.74-3.75 0-1.59-.24-2.88-.73-3.75A2.31 2.31 0 0 0 21.1 17c-1.1 0-1.77.46-2.21 1.25Z\"]);\nexport const SkipBack1048Filled = /*#__PURE__*/createFluentIcon('SkipBack1048Filled', \"48\", [\"M4 5.5a1.5 1.5 0 1 1 3 0v7.03A21.57 21.57 0 0 1 24.02 5c8.4.13 16.27 4.41 20.07 12.08a1.5 1.5 0 0 1-2.68 1.34C38.17 11.88 31.4 8.12 23.98 8A18.55 18.55 0 0 0 8.1 16h8.4a1.5 1.5 0 1 1 0 3h-11A1.5 1.5 0 0 1 4 17.5v-12Zm15 18a1.5 1.5 0 0 0-2.8-.76v.02a7.67 7.67 0 0 1-.27.41c-.2.3-.5.7-.89 1.17-.78.94-1.9 2.05-3.26 2.87a1.5 1.5 0 1 0 1.54 2.58A15.04 15.04 0 0 0 16 27.7V40.5a1.5 1.5 0 0 0 3 0v-17ZM30.31 22a6.35 6.35 0 0 0-5.78 3.23c-1.1 1.88-1.47 4.32-1.47 6.77 0 2.45.37 4.9 1.47 6.77A6.35 6.35 0 0 0 30.3 42c2.7 0 4.63-1.24 5.8-3.23 1.09-1.88 1.45-4.32 1.45-6.77 0-2.45-.36-4.9-1.46-6.77A6.35 6.35 0 0 0 30.31 22Zm-4.25 10c0-2.24.36-4.05 1.06-5.25.63-1.1 1.58-1.75 3.2-1.75 1.6 0 2.56.66 3.2 1.75.7 1.2 1.04 3.01 1.04 5.25s-.35 4.05-1.05 5.25c-.63 1.1-1.58 1.75-3.2 1.75-1.6 0-2.56-.66-3.2-1.75-.7-1.2-1.05-3.01-1.05-5.25Z\"]);\nexport const SkipBack1048Regular = /*#__PURE__*/createFluentIcon('SkipBack1048Regular', \"48\", [\"M17.2 8.18a20.03 20.03 0 0 1 14.1.43 20.17 20.17 0 0 1 10.33 9.7 1.25 1.25 0 1 0 2.24-1.11A22.67 22.67 0 0 0 32.26 6.3 22.53 22.53 0 0 0 6.5 12.55V5.85a1.25 1.25 0 1 0-2.5 0V17.2c0 .7.56 1.25 1.25 1.25H16.6a1.25 1.25 0 0 0 0-2.5H7.06A20.03 20.03 0 0 1 17.2 8.18Zm.77 14.05a1.24 1.24 0 0 1 .53 1.05v17.47a1.25 1.25 0 1 1-2.5 0V26.92c-.76.77-1.75 1.59-3.1 2.4a1.25 1.25 0 1 1-1.3-2.14c2.5-1.5 3.45-2.9 4.27-4.12l.34-.5a1.25 1.25 0 0 1 1.74-.34l.02.01ZM30.3 22a6.07 6.07 0 0 0-5.58 3.2c-1.05 1.86-1.42 4.3-1.42 6.8s.37 4.95 1.42 6.8a6.07 6.07 0 0 0 5.58 3.2 6.07 6.07 0 0 0 5.58-3.2c1.06-1.85 1.42-4.3 1.42-6.8s-.36-4.94-1.42-6.8a6.07 6.07 0 0 0-5.58-3.2Zm-4.5 10c0-2.33.36-4.26 1.1-5.57a3.59 3.59 0 0 1 3.4-1.93c1.69 0 2.72.72 3.4 1.93.75 1.31 1.1 3.24 1.1 5.57s-.35 4.27-1.1 5.57a3.59 3.59 0 0 1-3.4 1.93 3.59 3.59 0 0 1-3.4-1.93c-.74-1.3-1.1-3.24-1.1-5.57Z\"]);\nexport const SkipForward1020Filled = /*#__PURE__*/createFluentIcon('SkipForward1020Filled', \"20\", [\"M15.73 5.63V3.75a.75.75 0 0 1 1.5 0v3.5c0 .41-.33.75-.75.75h-4a.75.75 0 0 1 0-1.5h2.03a6.3 6.3 0 0 0-4.78-2.25 6.45 6.45 0 0 0-5.65 3.54.83.83 0 0 1-.73.46c-.54 0-.91-.53-.67-1.01a7.93 7.93 0 0 1 7.05-4.49c2.4 0 4.54 1.12 6 2.88ZM12.5 17c1.88 0 2.5-1.57 2.5-3.5s-.62-3.5-2.5-3.5c-1.87 0-2.5 1.57-2.5 3.5s.63 3.5 2.5 3.5Zm.68-1.81a.59.59 0 0 1-.22.22.94.94 0 0 1-.46.09.94.94 0 0 1-.46-.09.59.59 0 0 1-.21-.22 3.38 3.38 0 0 1-.33-1.69c0-.85.15-1.4.32-1.69a.59.59 0 0 1 .22-.22c.07-.04.2-.09.46-.09s.4.05.46.09c.07.04.14.1.22.22.18.3.32.84.32 1.69s-.14 1.4-.32 1.69Zm-4.93-4.44a.75.75 0 0 0-1.24-.57l-1.75 1.5a.75.75 0 1 0 .98 1.14l.51-.44v3.87a.75.75 0 0 0 1.5 0v-5.5Z\"]);\nexport const SkipForward1020Regular = /*#__PURE__*/createFluentIcon('SkipForward1020Regular', \"20\", [\"M17 3.5a.5.5 0 1 0-1 0v2.2A8 8 0 0 0 2.84 7.45a.5.5 0 1 0 .9.44 7 7 0 0 1 12-.89H12.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 .5-.5v-4Zm-6.5 7.63c.4-.7 1.07-1.13 2-1.13.94 0 1.6.44 2 1.13.37.65.5 1.5.5 2.37 0 .86-.13 1.72-.5 2.37-.4.7-1.06 1.13-2 1.13-.93 0-1.6-.44-2-1.13-.37-.65-.5-1.5-.5-2.37 0-.86.13-1.72.5-2.37Zm.87.5A3.87 3.87 0 0 0 11 13.5c0 .8.12 1.44.37 1.87.23.4.57.63 1.13.63.57 0 .9-.23 1.13-.63.25-.43.37-1.08.37-1.87 0-.8-.12-1.44-.37-1.87-.23-.4-.56-.63-1.13-.63-.56 0-.9.23-1.13.63ZM8 10.5a.5.5 0 0 0-.78-.42l-1.5 1a.5.5 0 1 0 .56.84l.72-.49v5.07a.5.5 0 0 0 1 0v-6Z\"]);\nexport const SkipForward1024Filled = /*#__PURE__*/createFluentIcon('SkipForward1024Filled', \"24\", [\"M21 2.25a1 1 0 0 1 1 1V9a1 1 0 0 1-1 1h-5.25a1 1 0 0 1 0-2h3.39a7.87 7.87 0 0 0-3.69-2.57A9.44 9.44 0 0 0 4.63 9.48a1 1 0 0 1-1.76-.96 11.44 11.44 0 0 1 13.17-5A9.52 9.52 0 0 1 20 5.98V3.25a1 1 0 0 1 1-1ZM9.1 11.06a1 1 0 0 1 .65.94v8a1 1 0 0 1-2 0v-5.5c-.35.28-.75.57-1.24.86a1 1 0 1 1-1.02-1.72 8.02 8.02 0 0 0 2.28-2.02l.22-.27a1 1 0 0 1 1.1-.29Zm4.14 1.6A3.33 3.33 0 0 1 16.25 11c1.39 0 2.4.64 3 1.66.57.95.75 2.16.75 3.34 0 1.18-.18 2.39-.74 3.34A3.33 3.33 0 0 1 16.25 21c-1.39 0-2.4-.64-3-1.66A6.61 6.61 0 0 1 12.5 16c0-1.18.18-2.39.74-3.34Zm1.72 1.02A4.7 4.7 0 0 0 14.5 16c0 1.03.17 1.82.46 2.32.25.42.61.68 1.29.68s1.04-.26 1.29-.68c.3-.5.46-1.29.46-2.32a4.7 4.7 0 0 0-.46-2.32c-.25-.42-.61-.68-1.29-.68s-1.04.26-1.29.68Z\"]);\nexport const SkipForward1024Regular = /*#__PURE__*/createFluentIcon('SkipForward1024Regular', \"24\", [\"M21.25 2.5c.41 0 .75.34.75.75v5.5c0 .41-.34.75-.75.75h-5.5a.75.75 0 0 1 0-1.5h3.9a8.33 8.33 0 0 0-4.12-3.06A9.69 9.69 0 0 0 4.4 9.1a.75.75 0 1 1-1.32-.72 11.18 11.18 0 0 1 12.88-4.88 9.61 9.61 0 0 1 4.53 3.14v-3.4c0-.41.34-.75.75-.75ZM16 11c-1.32 0-2.25.64-2.8 1.63-.52.93-.7 2.15-.7 3.37 0 1.22.18 2.44.7 3.37.55 1 1.48 1.63 2.8 1.63 1.32 0 2.25-.64 2.8-1.63.53-.93.7-2.15.7-3.37 0-1.22-.17-2.44-.7-3.37A3.05 3.05 0 0 0 16 11Zm-2 5c0-1.12.17-2.03.5-2.64.31-.55.76-.86 1.5-.86s1.19.31 1.5.86c.33.6.5 1.52.5 2.64a5.6 5.6 0 0 1-.5 2.64c-.31.55-.76.86-1.5.86s-1.19-.31-1.5-.86A5.6 5.6 0 0 1 14 16Zm-4.5-4.25a.75.75 0 0 0-1.39-.4v.01a3.44 3.44 0 0 1-.15.22 6.88 6.88 0 0 1-2.1 2.03.75.75 0 1 0 .78 1.28c.52-.31.98-.69 1.36-1.06v6.42a.75.75 0 0 0 1.5 0v-8.5Z\"]);\nexport const SkipForward1028Filled = /*#__PURE__*/createFluentIcon('SkipForward1028Filled', \"28\", [\"M4.84 10.54C7.14 6.92 10.15 5 14.25 5c3.95 0 7.37 1.7 9.05 4H19a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0v2.75C21.72 4.45 18.12 3 14.25 3c-4.9 0-8.5 2.38-11.1 6.46a1 1 0 0 0 1.7 1.08ZM18.24 13c-1.66 0-2.86.74-3.6 1.95a7.92 7.92 0 0 0-.9 4.05c0 1.46.22 2.92.9 4.05a3.97 3.97 0 0 0 3.6 1.95c1.66 0 2.86-.74 3.59-1.95.68-1.13.9-2.6.9-4.05 0-1.46-.22-2.92-.9-4.05a3.97 3.97 0 0 0-3.6-1.95Zm-2.5 6a6 6 0 0 1 .62-3.02c.36-.6.91-.98 1.88-.98.96 0 1.51.38 1.88.98a6 6 0 0 1 .62 3.02 6 6 0 0 1-.62 3.02c-.37.6-.92.98-1.88.98-.97 0-1.52-.38-1.88-.98a6 6 0 0 1-.62-3.02ZM11 14a1 1 0 0 0-1.86-.52v.01a3.2 3.2 0 0 1-.17.25 8.13 8.13 0 0 1-2.49 2.4 1 1 0 0 0 1.03 1.72A9.18 9.18 0 0 0 9 16.73V24a1 1 0 0 0 2 0V14Z\"]);\nexport const SkipForward1028Regular = /*#__PURE__*/createFluentIcon('SkipForward1028Regular', \"28\", [\"M25.25 2.5c.41 0 .75.34.75.75v6.5c0 .41-.34.75-.75.75h-6.5a.75.75 0 0 1 0-1.5h4.66c-1.68-2.53-5.07-4.5-9.16-4.5-4.22 0-7.54 2-9.87 5.65a.75.75 0 1 1-1.26-.8C5.69 5.3 9.47 3 14.25 3c4.43 0 8.23 2.07 10.25 4.94V3.25c0-.41.34-.75.75-.75ZM18.24 13a3.7 3.7 0 0 0-3.39 1.91A8.32 8.32 0 0 0 14 19c0 1.5.22 2.97.86 4.09A3.7 3.7 0 0 0 18.24 25a3.7 3.7 0 0 0 3.38-1.91c.65-1.12.87-2.59.87-4.09s-.22-2.97-.87-4.09A3.7 3.7 0 0 0 18.24 13Zm-2.75 6c0-1.4.21-2.55.66-3.34a2.2 2.2 0 0 1 2.09-1.16 2.2 2.2 0 0 1 2.08 1.16c.45.79.67 1.94.67 3.34s-.22 2.55-.67 3.34a2.2 2.2 0 0 1-2.08 1.16 2.2 2.2 0 0 1-2.09-1.16A6.89 6.89 0 0 1 15.5 19Zm-4.8-5.86a.75.75 0 0 1 .31.63v10.48a.75.75 0 0 1-1.5 0V15.9a9.3 9.3 0 0 1-1.86 1.5.75.75 0 1 1-.78-1.3 8.62 8.62 0 0 0 2.84-2.86.75.75 0 0 1 .99-.1Z\"]);\nexport const SkipForward1032Filled = /*#__PURE__*/createFluentIcon('SkipForward1032Filled', \"32\", [\"M16.02 5.5c4.01-.06 7.77 1.5 10.2 4.5h-3.97a1.25 1.25 0 0 0 0 2.5h6.5c.69 0 1.25-.56 1.25-1.25v-7a1.25 1.25 0 0 0-2.5 0v3.42A15.32 15.32 0 0 0 15.98 3c-5.94.09-10.7 3.27-13.78 8.08a1.25 1.25 0 1 0 2.1 1.35C7.01 8.2 11.05 5.58 16.02 5.5ZM21.1 15c-1.92 0-3.31.88-4.15 2.3A9.35 9.35 0 0 0 15.9 22c0 1.68.26 3.38 1.04 4.7A4.58 4.58 0 0 0 21.1 29c1.92 0 3.31-.88 4.15-2.3A9.35 9.35 0 0 0 26.3 22c0-1.68-.26-3.38-1.04-4.7A4.58 4.58 0 0 0 21.1 15Zm-2.69 7c0-1.5.24-2.67.7-3.43.38-.66.96-1.07 1.99-1.07s1.6.4 2 1.07c.45.76.69 1.93.69 3.43 0 1.5-.24 2.67-.69 3.43-.4.66-.97 1.07-2 1.07s-1.6-.4-2-1.07a6.96 6.96 0 0 1-.69-3.43Zm-5.16-5.75a1.25 1.25 0 0 0-2.12-.9l-.4.4c-.29.29-.5.5-.82.77-.42.36-1 .78-2.05 1.4a1.25 1.25 0 1 0 1.28 2.15c.67-.4 1.18-.73 1.61-1.04v8.47a1.25 1.25 0 0 0 2.5 0V16.25Z\"]);\nexport const SkipForward1032Regular = /*#__PURE__*/createFluentIcon('SkipForward1032Regular', \"32\", [\"M16.02 4.9c4.2-.07 8.67 1.83 11.24 5.1H22a1 1 0 0 0 0 2h7a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0v3.8a16.63 16.63 0 0 0-12.01-4.9c-5.86.08-10.79 3.43-13.83 8.18a1 1 0 0 0 1.68 1.08c2.76-4.3 7.12-7.2 12.18-7.27ZM21.1 15a4.3 4.3 0 0 0-3.94 2.26c-.74 1.31-1 3.01-1 4.74 0 1.73.26 3.43 1 4.74A4.3 4.3 0 0 0 21.1 29a4.3 4.3 0 0 0 3.95-2.26c.74-1.31.99-3.01.99-4.74 0-1.73-.25-3.43-1-4.74A4.3 4.3 0 0 0 21.1 15Zm-2.94 7c0-1.59.25-2.88.74-3.75A2.31 2.31 0 0 1 21.1 17c1.1 0 1.76.46 2.2 1.25.5.87.74 2.16.74 3.75 0 1.59-.24 2.88-.73 3.75A2.31 2.31 0 0 1 21.1 27c-1.1 0-1.77-.46-2.21-1.25a7.86 7.86 0 0 1-.74-3.75ZM13 16a1 1 0 0 0-1.79-.62v.01a4.64 4.64 0 0 1-.2.23 13.26 13.26 0 0 1-3.02 2.52A1 1 0 1 0 9 19.86c.77-.46 1.44-.97 1.99-1.44V28a1 1 0 1 0 2 0V16Zm-1.79-.62Z\"]);\nexport const SkipForward1048Filled = /*#__PURE__*/createFluentIcon('SkipForward1048Filled', \"48\", [\"M42.5 4c.83 0 1.5.67 1.5 1.5v12c0 .83-.67 1.5-1.5 1.5h-11a1.5 1.5 0 1 1 0-3h8.4a18.55 18.55 0 0 0-15.88-8C16.6 8.11 9.83 11.88 6.6 18.42a1.5 1.5 0 0 1-2.68-1.34C7.7 9.41 15.58 5.13 23.98 5c6.73-.1 12.8 2.58 17.02 7.53V5.5c0-.83.67-1.5 1.5-1.5ZM30.31 22a6.35 6.35 0 0 0-5.78 3.23c-1.1 1.88-1.47 4.32-1.47 6.77 0 2.45.37 4.9 1.47 6.77A6.35 6.35 0 0 0 30.3 42c2.7 0 4.63-1.24 5.8-3.23 1.09-1.88 1.45-4.32 1.45-6.77 0-2.45-.36-4.9-1.46-6.77A6.35 6.35 0 0 0 30.31 22Zm-4.25 10c0-2.24.36-4.05 1.06-5.25.63-1.1 1.58-1.75 3.2-1.75 1.6 0 2.56.66 3.2 1.75.7 1.2 1.04 3.01 1.04 5.25s-.35 4.05-1.05 5.25c-.63 1.1-1.58 1.75-3.2 1.75-1.6 0-2.56-.66-3.2-1.75-.7-1.2-1.05-3.01-1.05-5.25ZM19 23.5a1.5 1.5 0 0 0-2.8-.76v.02a5.29 5.29 0 0 1-.27.41 13.31 13.31 0 0 1-4.15 4.04 1.5 1.5 0 0 0 1.54 2.58A15.04 15.04 0 0 0 16 27.7V40.5a1.5 1.5 0 1 0 3 0v-17Z\"]);\nexport const SkipForward1048Regular = /*#__PURE__*/createFluentIcon('SkipForward1048Regular', \"48\", [\"M16.7 8.6a20.03 20.03 0 0 1 24.24 7.35H31.4a1.25 1.25 0 0 0 0 2.5h11.35c.69 0 1.25-.56 1.25-1.25V5.85a1.25 1.25 0 1 0-2.5 0v6.7A22.53 22.53 0 0 0 15.74 6.3 22.67 22.67 0 0 0 4.13 17.2a1.25 1.25 0 0 0 2.24 1.12 20.17 20.17 0 0 1 10.32-9.7ZM30.3 22a6.07 6.07 0 0 0-5.57 3.2c-1.06 1.86-1.43 4.3-1.43 6.8s.37 4.95 1.43 6.8A6.07 6.07 0 0 0 30.3 42a6.07 6.07 0 0 0 5.58-3.2c1.06-1.85 1.42-4.3 1.42-6.8s-.36-4.94-1.42-6.8a6.07 6.07 0 0 0-5.58-3.2Zm-4.5 10c0-2.33.36-4.26 1.1-5.57a3.59 3.59 0 0 1 3.4-1.93c1.69 0 2.72.72 3.4 1.93.75 1.31 1.1 3.24 1.1 5.57s-.35 4.27-1.1 5.57a3.59 3.59 0 0 1-3.4 1.93 3.59 3.59 0 0 1-3.4-1.93c-.74-1.3-1.1-3.24-1.1-5.57Zm-7.84-9.77a1.24 1.24 0 0 1 .53 1.05v17.47a1.25 1.25 0 0 1-2.5 0V26.92c-.76.77-1.75 1.59-3.1 2.4a1.25 1.25 0 1 1-1.3-2.14c2.5-1.5 3.45-2.9 4.27-4.12l.34-.5a1.25 1.25 0 0 1 1.74-.34l.02.01Z\"]);\nexport const SkipForward3020Filled = /*#__PURE__*/createFluentIcon('SkipForward3020Filled', \"20\", [\"M15.73 5.63V3.75a.75.75 0 0 1 1.5 0v3.5c0 .41-.33.75-.75.75h-4a.75.75 0 0 1 0-1.5h2.03a6.3 6.3 0 0 0-4.78-2.25 6.45 6.45 0 0 0-5.65 3.54.83.83 0 0 1-.73.46c-.54 0-.91-.53-.67-1.01a7.93 7.93 0 0 1 7.05-4.49c2.4 0 4.54 1.12 6 2.88ZM4.97 10.72a.75.75 0 0 0 1.06 1.07v-.01l.07-.06a2.3 2.3 0 0 1 1.4-.47c.56 0 .88.15 1.04.3.16.13.22.29.22.43-.01.24-.26.77-1.26.77a.75.75 0 0 0 0 1.5c1 0 1.25.53 1.26.77 0 .14-.06.3-.22.44s-.48.29-1.04.29a2.3 2.3 0 0 1-1.46-.53h-.01a.75.75 0 0 0-1.06 1.06c-.28-.28 0 0 0 0h.01l.01.02a2.03 2.03 0 0 0 .19.16 3.8 3.8 0 0 0 2.33.8c.81-.01 1.5-.24 2-.66a2.05 2.05 0 0 0 .08-3.1 2.05 2.05 0 0 0-.07-3.1 3.05 3.05 0 0 0-2.02-.65 3.8 3.8 0 0 0-2.5.95l-.02.01ZM16 13.5c0 2.07-.62 3.75-2.5 3.75-1.87 0-2.5-1.68-2.5-3.75 0-2.07.63-3.75 2.5-3.75 1.88 0 2.5 1.68 2.5 3.75Zm-1.5 0c0-.93-.15-1.56-.35-1.9a.67.67 0 0 0-.23-.26.8.8 0 0 0-.42-.09.8.8 0 0 0-.42.09.67.67 0 0 0-.23.26c-.2.34-.35.97-.35 1.9 0 .93.15 1.56.35 1.9.09.16.17.23.23.26a.8.8 0 0 0 .42.09.8.8 0 0 0 .42-.09c.07-.03.15-.1.23-.26.2-.34.35-.97.35-1.9Z\"]);\nexport const SkipForward3020Regular = /*#__PURE__*/createFluentIcon('SkipForward3020Regular', \"20\", [\"M16.5 3c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 1 1 0-1h3.25a7 7 0 0 0-12.01.89.5.5 0 1 1-.9-.44A8 8 0 0 1 16 5.7V3.5c0-.28.22-.5.5-.5Zm-3 7c-.93 0-1.6.44-2 1.13-.37.65-.5 1.5-.5 2.37 0 .86.13 1.72.5 2.37.4.7 1.07 1.13 2 1.13.94 0 1.6-.44 2-1.13.37-.65.5-1.5.5-2.37 0-.86-.13-1.72-.5-2.37a2.18 2.18 0 0 0-2-1.13ZM12 13.5c0-.8.12-1.44.37-1.87.23-.4.57-.63 1.13-.63.57 0 .9.23 1.13.63.25.43.37 1.08.37 1.87 0 .8-.12 1.44-.37 1.87-.23.4-.56.63-1.13.63-.56 0-.9-.23-1.13-.63A3.87 3.87 0 0 1 12 13.5Zm-6.85-1.9c.19.2.5.2.7 0h.02l.07-.07A2.56 2.56 0 0 1 7.5 11c.6 0 .98.16 1.2.35.22.19.31.42.3.64 0 .4-.4 1.01-1.5 1.01a.5.5 0 0 0 0 1c1.1 0 1.5.6 1.5 1.01a.8.8 0 0 1-.3.64c-.22.19-.6.35-1.2.35a2.56 2.56 0 0 1-1.65-.6.5.5 0 0 0-.7 0c-.34.33 0 .7 0 .7a3.37 3.37 0 0 0 .18.16A3.56 3.56 0 0 0 7.5 17c.78 0 1.4-.21 1.85-.59.44-.37.67-.9.65-1.42a1.89 1.89 0 0 0-.8-1.49c.5-.37.79-.9.8-1.49a1.8 1.8 0 0 0-.65-1.42A2.8 2.8 0 0 0 7.5 10a3.56 3.56 0 0 0-2.34.88v.01h-.01a.5.5 0 0 0 0 .71Zm.7 3.8Z\"]);\nexport const SkipForward3024Filled = /*#__PURE__*/createFluentIcon('SkipForward3024Filled', \"24\", [\"M21 2.25a1 1 0 0 1 1 1V9a1 1 0 0 1-1 1h-5.25a1 1 0 1 1 0-2h3.39a7.87 7.87 0 0 0-3.69-2.57A9.44 9.44 0 0 0 4.63 9.48a1 1 0 1 1-1.76-.96 11.44 11.44 0 0 1 13.17-5A9.52 9.52 0 0 1 20 5.98V3.25a1 1 0 0 1 1-1ZM6.46 13.71a2 2 0 0 1 .57-.44A3.3 3.3 0 0 1 8.5 13c1.6 0 1.92.77 1.93 1.04.01.24-.21.96-1.68.96a1 1 0 0 0 0 2c1.47 0 1.7.72 1.68.96 0 .27-.32 1.04-1.93 1.04a3.3 3.3 0 0 1-1.47-.27 2 2 0 0 1-.57-.44 1 1 0 0 0-1.42 1.42h.01c.19.2.53.54 1.1.82.59.28 1.34.47 2.35.47 2.24 0 3.87-1.23 3.93-2.96.03-.8-.28-1.51-.84-2.04.56-.53.87-1.23.84-2.04C12.37 12.23 10.74 11 8.5 11c-1 0-1.76.2-2.34.47-.58.28-.92.63-1.1.81l-.02.01a1 1 0 0 0 1.42 1.42Zm7.78-1.05A3.33 3.33 0 0 1 17.25 11c1.39 0 2.4.64 3 1.66.57.95.75 2.16.75 3.34 0 1.18-.18 2.39-.74 3.34A3.33 3.33 0 0 1 17.25 21c-1.39 0-2.4-.64-3-1.66A6.61 6.61 0 0 1 13.5 16c0-1.18.18-2.39.74-3.34Zm1.72 1.02A4.7 4.7 0 0 0 15.5 16c0 1.03.17 1.82.46 2.32.25.42.61.68 1.29.68s1.04-.26 1.29-.68c.3-.5.46-1.29.46-2.32a4.7 4.7 0 0 0-.46-2.32c-.25-.42-.61-.68-1.29-.68s-1.04.26-1.29.68Z\"]);\nexport const SkipForward3024Regular = /*#__PURE__*/createFluentIcon('SkipForward3024Regular', \"24\", [\"M21.25 2.5c.41 0 .75.34.75.75v5.5c0 .41-.34.75-.75.75h-5.5a.75.75 0 0 1 0-1.5h3.9a8.33 8.33 0 0 0-4.12-3.06A9.69 9.69 0 0 0 4.4 9.1a.75.75 0 1 1-1.32-.72A11.19 11.19 0 0 1 15.97 3.5a9.61 9.61 0 0 1 4.53 3.14v-3.4c0-.41.34-.75.75-.75ZM8.75 15.25c.76 0 1.25-.22 1.54-.47.28-.26.4-.58.4-.88-.03-.55-.55-1.4-2.19-1.4a3.35 3.35 0 0 0-2.2.83.75.75 0 0 1-1.1-1.03l.01-.01.02-.02a2.35 2.35 0 0 1 .23-.2A4.85 4.85 0 0 1 8.5 11c2.2 0 3.63 1.27 3.68 2.85A2.61 2.61 0 0 1 11.16 16l.13.1c.6.55.92 1.3.9 2.05C12.12 19.73 10.7 21 8.5 21a4.85 4.85 0 0 1-3.27-1.27l-.02-.02s-.47-.6.03-1.07a.75.75 0 0 1 1.05.03l.02.02.1.08a3.35 3.35 0 0 0 2.09.73c1.64 0 2.16-.85 2.18-1.4.01-.3-.1-.62-.4-.88-.28-.25-.77-.47-1.53-.47a.75.75 0 1 1 0-1.5Zm5.45-2.62c.55-1 1.48-1.63 2.8-1.63 1.32 0 2.25.64 2.8 1.63.53.93.7 2.15.7 3.37 0 1.22-.17 2.44-.7 3.37A3.05 3.05 0 0 1 17 21a3.05 3.05 0 0 1-2.8-1.63 7.03 7.03 0 0 1-.7-3.37c0-1.22.18-2.44.7-3.37Zm1.3.73A5.6 5.6 0 0 0 15 16c0 1.12.17 2.03.5 2.64.31.55.76.86 1.5.86s1.19-.31 1.5-.86c.33-.6.5-1.52.5-2.64a5.6 5.6 0 0 0-.5-2.64c-.31-.55-.76-.86-1.5-.86s-1.19.31-1.5.86Z\"]);\nexport const SkipForward3028Filled = /*#__PURE__*/createFluentIcon('SkipForward3028Filled', \"28\", [\"M4.84 10.54C7.14 6.92 10.15 5 14.25 5c3.95 0 7.37 1.7 9.05 4H19a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0v2.75C21.72 4.45 18.12 3 14.25 3c-4.9 0-8.5 2.38-11.1 6.46a1 1 0 0 0 1.7 1.08ZM20.24 13c-1.66 0-2.86.74-3.6 1.95a7.92 7.92 0 0 0-.9 4.05c0 1.46.22 2.92.9 4.05a3.97 3.97 0 0 0 3.6 1.95c1.66 0 2.86-.74 3.59-1.95.68-1.13.9-2.6.9-4.05 0-1.46-.22-2.92-.9-4.05a3.97 3.97 0 0 0-3.6-1.95Zm-2.5 6a6 6 0 0 1 .62-3.02c.36-.6.91-.98 1.88-.98.96 0 1.51.38 1.88.98a6 6 0 0 1 .62 3.02 6 6 0 0 1-.62 3.02c-.37.6-.92.98-1.88.98-.97 0-1.52-.38-1.88-.98a6 6 0 0 1-.62-3.02ZM12 17.45c-.35.28-.98.55-2 .55a1 1 0 1 0 0 2c1.02 0 1.65.27 2 .55.34.28.45.6.44.9-.03.53-.63 1.55-2.69 1.55a3.84 3.84 0 0 1-2.5-.91 1 1 0 1 0-1.5 1.33h.01v.01l.03.02a2.62 2.62 0 0 0 .27.26A5.84 5.84 0 0 0 9.75 25c2.7-.01 4.59-1.49 4.69-3.46a3.07 3.07 0 0 0-1.17-2.54l-.01-.01a3.07 3.07 0 0 0 1.18-2.55c-.1-1.97-2-3.45-4.69-3.45a5.84 5.84 0 0 0-3.9 1.48l-.06.07-.02.02h-.01v.01a1 1 0 1 0 1.5 1.33l.1-.1c.1-.08.25-.2.46-.32.43-.24 1.07-.49 1.93-.49 2.06 0 2.66 1.02 2.69 1.55.01.3-.1.62-.44.9Z\"]);\nexport const SkipForward3028Regular = /*#__PURE__*/createFluentIcon('SkipForward3028Regular', \"28\", [\"M25.25 2.5c.41 0 .75.34.75.75v6.5c0 .41-.34.75-.75.75h-6.5a.75.75 0 0 1 0-1.5h4.66c-1.68-2.53-5.07-4.5-9.16-4.5-4.22 0-7.54 2-9.87 5.65a.75.75 0 1 1-1.26-.8C5.69 5.3 9.47 3 14.25 3c4.43 0 8.23 2.07 10.25 4.94V3.25c0-.41.34-.75.75-.75ZM9.75 18.25c2.1 0 2.81-1.1 2.81-1.88 0-.77-.71-1.87-2.81-1.87a3.91 3.91 0 0 0-2.68 1.05.75.75 0 0 1-1.14-.97l.03-.04a2.71 2.71 0 0 1 .25-.24A5.41 5.41 0 0 1 9.75 13c2.65 0 4.31 1.52 4.31 3.38 0 1.05-.54 2-1.5 2.62a3.1 3.1 0 0 1 1.5 2.63c0 1.85-1.66 3.37-4.31 3.37a5.41 5.41 0 0 1-3.8-1.54l-.01-.02v-.01h-.01c-.22-.26-.02-.03 0 0a.75.75 0 0 1 1.14-.98l.02.02.12.11a3.91 3.91 0 0 0 2.54.92c2.1 0 2.81-1.1 2.81-1.88 0-.77-.71-1.87-2.81-1.87a.75.75 0 0 1 0-1.5Zm7.1-3.34A3.7 3.7 0 0 1 20.24 13c1.59 0 2.7.74 3.38 1.91.65 1.12.87 2.59.87 4.09s-.22 2.97-.87 4.09A3.7 3.7 0 0 1 20.24 25a3.7 3.7 0 0 1-3.39-1.91A8.32 8.32 0 0 1 16 19c0-1.5.22-2.97.86-4.09Zm1.3.75A6.89 6.89 0 0 0 17.5 19c0 1.4.21 2.55.66 3.34a2.2 2.2 0 0 0 2.09 1.16 2.2 2.2 0 0 0 2.08-1.16c.45-.79.67-1.94.67-3.34s-.22-2.55-.67-3.34a2.2 2.2 0 0 0-2.08-1.16 2.2 2.2 0 0 0-2.09 1.16Z\"]);\nexport const SkipForward3032Filled = /*#__PURE__*/createFluentIcon('SkipForward3032Filled', \"32\", [\"M26.21 10c-2.42-3-6.18-4.56-10.2-4.5-4.96.08-9 2.7-11.7 6.93a1.25 1.25 0 0 1-2.11-1.35C5.28 6.27 10.04 3.09 15.98 3A15.32 15.32 0 0 1 27.5 7.67V4.25a1.25 1.25 0 0 1 2.5 0v7c0 .7-.56 1.25-1.25 1.25h-6.5a1.25 1.25 0 1 1 0-2.5h3.96Zm-19.7 8.7c.56.4 1.33.28 1.74-.26l.08-.09c.08-.08.22-.2.42-.32a3.67 3.67 0 0 1 2-.53c2.28 0 2.9 1.13 2.92 1.7.02.31-.1.66-.44.96-.35.3-.98.6-2.03.6a1.25 1.25 0 1 0 0 2.49c1.17 0 1.82.3 2.15.6.31.26.41.58.38.9-.07.61-.84 1.75-2.98 1.75-.97 0-1.62-.28-2-.52a2.46 2.46 0 0 1-.5-.41 1.25 1.25 0 0 0-2.01 1.48c-.4-.55 0 0 0 0l.01.02a2.13 2.13 0 0 0 .1.11c.05.07.13.15.22.24.2.2.47.43.84.67.75.47 1.85.91 3.34.91 3.02 0 5.22-1.74 5.46-4A3.5 3.5 0 0 0 15 21.97l-.01-.02a3.67 3.67 0 0 0 1.19-2.88c-.12-2.32-2.29-4.06-5.42-4.06-1.49 0-2.6.44-3.34.91a4.96 4.96 0 0 0-1.16 1.02v.02h-.01s-.41.57 0 0c-.4.57-.28 1.35.28 1.75ZM23.1 15c-1.92 0-3.31.88-4.15 2.3A9.35 9.35 0 0 0 17.9 22c0 1.68.26 3.38 1.04 4.7A4.58 4.58 0 0 0 23.1 29c1.92 0 3.31-.88 4.15-2.3A9.35 9.35 0 0 0 28.3 22c0-1.68-.26-3.38-1.04-4.7A4.58 4.58 0 0 0 23.1 15Zm-2.69 7c0-1.5.24-2.67.7-3.43.38-.66.96-1.07 1.99-1.07s1.6.4 2 1.07c.45.76.69 1.93.69 3.43 0 1.5-.24 2.67-.69 3.43-.4.66-.97 1.07-2 1.07s-1.6-.4-2-1.07a6.96 6.96 0 0 1-.69-3.43Z\"]);\nexport const SkipForward3032Regular = /*#__PURE__*/createFluentIcon('SkipForward3032Regular', \"32\", [\"M28 4v3.8a16.63 16.63 0 0 0-12.01-4.9c-5.86.08-10.79 3.43-13.83 8.18a1 1 0 0 0 1.68 1.08c2.76-4.3 7.12-7.2 12.18-7.27 4.2-.06 8.67 1.84 11.24 5.11H22a1 1 0 0 0 0 2h7a1 1 0 0 0 1-1V4a1 1 0 1 0-2 0ZM6.93 18.32a1 1 0 0 0 1.4-.25 2.74 2.74 0 0 1 .55-.48C9.3 17.3 9.98 17 11 17c2.33 0 3.15 1.23 3.2 2.06.02.45-.14.9-.54 1.26-.39.36-1.08.68-2.16.68a1 1 0 1 0 0 2c1.08 0 1.77.32 2.16.68.4.35.56.81.54 1.26-.05.83-.87 2.06-3.2 2.06-1.01 0-1.7-.3-2.12-.58a2.75 2.75 0 0 1-.57-.5 1 1 0 0 0-1.63 1.15l.01.02a2.04 2.04 0 0 0 .08.1l.21.24A5.76 5.76 0 0 0 11 29c3.08 0 5.07-1.77 5.2-3.94A3.57 3.57 0 0 0 14.77 22l.23-.2a3.57 3.57 0 0 0 1.18-2.86C16.07 16.77 14.1 15 11 15c-1.45 0-2.51.44-3.22.92a4.74 4.74 0 0 0-1.09 1h-.01v.01l-.05.07.05-.07a1 1 0 0 0 .25 1.4Zm12.23-1.06A4.3 4.3 0 0 1 23.1 15a4.3 4.3 0 0 1 3.95 2.26c.74 1.31.99 3.01.99 4.74 0 1.73-.25 3.43-1 4.74A4.3 4.3 0 0 1 23.1 29a4.3 4.3 0 0 1-3.94-2.26c-.74-1.31-1-3.01-1-4.74 0-1.73.26-3.43 1-4.74Zm1.74.99a7.86 7.86 0 0 0-.74 3.75c0 1.59.25 2.88.74 3.75.44.79 1.1 1.25 2.2 1.25s1.76-.46 2.2-1.25c.5-.87.74-2.16.74-3.75 0-1.59-.24-2.88-.73-3.75A2.31 2.31 0 0 0 23.1 17c-1.1 0-1.77.46-2.21 1.25Z\"]);\nexport const SkipForward3048Filled = /*#__PURE__*/createFluentIcon('SkipForward3048Filled', \"48\", [\"M44 5.5a1.5 1.5 0 0 0-3 0v7.03A21.57 21.57 0 0 0 23.98 5C15.58 5.13 7.7 9.41 3.9 17.08a1.5 1.5 0 0 0 2.68 1.34C9.83 11.88 16.6 8.12 24.02 8a18.55 18.55 0 0 1 15.88 8h-8.4a1.5 1.5 0 0 0 0 3h11c.83 0 1.5-.67 1.5-1.5v-12ZM10.5 26.73c.6.56 1.55.52 2.1-.08l.04-.04c.04-.03.1-.1.2-.17A6.68 6.68 0 0 1 17 25c1.68 0 2.74.46 3.35.97.6.51.85 1.14.83 1.74-.03 1.1-1.1 2.79-4.19 2.79a1.5 1.5 0 1 0 0 3c1.72 0 2.8.46 3.43.98.6.51.85 1.14.83 1.73C21.23 37.3 20.15 39 17 39a6.68 6.68 0 0 1-4.37-1.61 15.31 15.31 0 0 0-2.24 2h.01l.02.02a2.9 2.9 0 0 0 .13.14l.35.3A9.68 9.68 0 0 0 17 42c4.3.01 7.17-2.54 7.26-5.7a5.15 5.15 0 0 0-2.22-4.36 5.4 5.4 0 0 0 2.15-4.14 5.18 5.18 0 0 0-1.9-4.1C21.04 22.6 19.23 22 17 22a9.68 9.68 0 0 0-6.1 2.14 6.7 6.7 0 0 0-.45.41l-.02.02-.01.02-.02.01v.01a1.5 1.5 0 0 0 .09 2.12ZM34.3 22a6.35 6.35 0 0 0-5.78 3.23c-1.1 1.88-1.47 4.32-1.47 6.77 0 2.45.37 4.9 1.47 6.77A6.35 6.35 0 0 0 34.3 42c2.7 0 4.63-1.24 5.8-3.23 1.09-1.88 1.45-4.32 1.45-6.77 0-2.45-.36-4.9-1.46-6.77A6.35 6.35 0 0 0 34.31 22Zm-4.25 10c0-2.24.36-4.05 1.06-5.25.63-1.1 1.58-1.75 3.2-1.75 1.6 0 2.56.66 3.2 1.75.7 1.2 1.04 3.01 1.04 5.25s-.35 4.05-1.05 5.25c-.63 1.1-1.58 1.75-3.2 1.75-1.6 0-2.56-.66-3.2-1.75-.7-1.2-1.05-3.01-1.05-5.25Z\"]);\nexport const SkipForward3048Regular = /*#__PURE__*/createFluentIcon('SkipForward3048Regular', \"48\", [\"M44 5.85a1.25 1.25 0 1 0-2.5 0v7.38A21.87 21.87 0 0 0 24.51 5C15.97 4.93 7.96 9.47 4.13 17.2a1.25 1.25 0 0 0 2.24 1.1C9.74 11.5 16.84 7.45 24.49 7.5a19.4 19.4 0 0 1 15.93 8.45H31.4a1.25 1.25 0 0 0 0 2.5h11.35c.69 0 1.25-.56 1.25-1.25V5.85Zm-33.38 18.7c-.45.45 0 0 0 0l.02-.01a4.2 4.2 0 0 1 .49-.43A9.96 9.96 0 0 1 17.25 22c2.18 0 3.93.62 5.15 1.68a5.08 5.08 0 0 1 1.8 3.98 5.37 5.37 0 0 1-2.39 4.28 5.05 5.05 0 0 1 2.45 4.47c-.08 3.02-2.78 5.6-7.01 5.6a9.96 9.96 0 0 1-6.61-2.54l-.01-.01h-.01s-.4-.4 0 0a1.25 1.25 0 0 1 1.76-1.79v.01l.05.05.24.2c.22.16.55.4.98.63.86.48 2.09.94 3.6.94 3.2 0 4.47-1.8 4.51-3.16a2.55 2.55 0 0 0-.94-2.02c-.67-.58-1.82-1.07-3.57-1.07a1.25 1.25 0 0 1 0-2.5c3.16 0 4.4-1.79 4.44-3.15a2.58 2.58 0 0 0-.93-2.04c-.67-.58-1.79-1.06-3.51-1.06a7.47 7.47 0 0 0-4.87 1.83 1.25 1.25 0 0 1-1.76-1.78ZM34.32 22a6.07 6.07 0 0 0-5.59 3.2c-1.05 1.86-1.42 4.3-1.42 6.8s.37 4.95 1.43 6.8A6.07 6.07 0 0 0 34.3 42a6.07 6.07 0 0 0 5.58-3.2c1.06-1.85 1.42-4.3 1.42-6.8s-.36-4.94-1.42-6.8a6.07 6.07 0 0 0-5.58-3.2Zm-4.5 10c0-2.33.35-4.26 1.09-5.57a3.59 3.59 0 0 1 3.4-1.93c1.69 0 2.72.72 3.4 1.93.75 1.31 1.1 3.24 1.1 5.57s-.35 4.27-1.1 5.57a3.59 3.59 0 0 1-3.4 1.93 3.59 3.59 0 0 1-3.4-1.93c-.74-1.3-1.1-3.24-1.1-5.57Z\"]);\nexport const SkipForwardTab20Filled = /*#__PURE__*/createFluentIcon('SkipForwardTab20Filled', \"20\", [\"M3.09 7.97C4.2 6.57 6.07 4.89 8.35 4.4c1.9-.42 4.25-.04 6.86 2.35H12.5a.75.75 0 1 0 0 1.5H17c.41 0 .75-.34.75-.75v-4a.75.75 0 0 0-1.5 0v2.17c-2.92-2.68-5.75-3.28-8.22-2.74-2.76.6-4.9 2.58-6.12 4.1a.75.75 0 0 0 1.18.94Zm3.41 2.78c-.97 0-1.75.78-1.75 1.75v3c0 .97.78 1.75 1.75 1.75h7c.97 0 1.75-.78 1.75-1.75v-3c0-.97-.78-1.75-1.75-1.75h-7Zm-.25 1.75c0-.14.11-.25.25-.25h7c.14 0 .25.11.25.25v3c0 .14-.11.25-.25.25h-7a.25.25 0 0 1-.25-.25v-3Z\"]);\nexport const SkipForwardTab20Regular = /*#__PURE__*/createFluentIcon('SkipForwardTab20Regular', \"20\", [\"M2.9 7.81C4.01 6.4 5.92 4.66 8.3 4.15c2.1-.46 4.7.03 7.54 2.85H12.5a.5.5 0 0 0 0 1H17a.5.5 0 0 0 .5-.5v-4a.5.5 0 1 0-1 0v2.75c-3.03-2.97-5.92-3.62-8.42-3.08C5.4 3.76 3.31 5.7 2.11 7.2a.5.5 0 0 0 .78.62ZM6.5 11c-.83 0-1.5.67-1.5 1.5v3c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-7ZM6 12.5c0-.28.22-.5.5-.5h7c.28 0 .5.22.5.5v3a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-3Z\"]);\nexport const SkipForwardTab24Filled = /*#__PURE__*/createFluentIcon('SkipForwardTab24Filled', \"24\", [\"M22 3.25a1 1 0 1 0-2 0v2.73a9.52 9.52 0 0 0-3.95-2.46 11.44 11.44 0 0 0-13.18 5 1 1 0 0 0 1.76.96 9.44 9.44 0 0 1 10.83-4.05c1.47.46 2.7 1.4 3.68 2.57h-3.39a1 1 0 1 0 0 2H21a1 1 0 0 0 1-1V3.25ZM6 15c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-4Zm2 .5v3c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0-.5.5Z\"]);\nexport const SkipForwardTab24Regular = /*#__PURE__*/createFluentIcon('SkipForwardTab24Regular', \"24\", [\"M21.5 3.75a.75.75 0 0 0-1.5 0v3.4A9.61 9.61 0 0 0 15.47 4 11.18 11.18 0 0 0 2.6 8.89a.75.75 0 1 0 1.32.72 9.69 9.69 0 0 1 11.12-4.17 8.33 8.33 0 0 1 4.13 3.06h-3.91a.75.75 0 0 0 0 1.5h5.5c.41 0 .75-.34.75-.75v-5.5ZM8 14a.5.5 0 0 0-.5.5v4c0 .28.22.5.5.5h8a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5H8Zm-2 .5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-4Z\"]);\nexport const SlashForward12Filled = /*#__PURE__*/createFluentIcon('SlashForward12Filled', \"12\", [\"M7.46 1.03c.4.12.63.53.51.93l-2.5 8.5a.75.75 0 0 1-1.44-.42l2.5-8.5c.12-.4.54-.63.93-.5Z\"]);\nexport const SlashForward12Regular = /*#__PURE__*/createFluentIcon('SlashForward12Regular', \"12\", [\"M7.66 1.03c.26.08.4.37.31.63l-3 9a.5.5 0 1 1-.94-.32l3-9a.5.5 0 0 1 .63-.31Z\"]);\nexport const SlashForward16Filled = /*#__PURE__*/createFluentIcon('SlashForward16Filled', \"16\", [\"M10.27 2.05c.38.15.58.58.43.97l-4 10.5a.75.75 0 0 1-1.4-.54l4-10.5a.75.75 0 0 1 .97-.43Z\"]);\nexport const SlashForward16Regular = /*#__PURE__*/createFluentIcon('SlashForward16Regular', \"16\", [\"M10.44 2.04c.26.1.38.4.27.65l-4.5 11a.5.5 0 0 1-.92-.38l4.5-11a.5.5 0 0 1 .65-.27Z\"]);\nexport const SlashForward20Filled = /*#__PURE__*/createFluentIcon('SlashForward20Filled', \"20\", [\"M13.02 2.05c.38.15.58.58.43.97l-5.5 14.5a.75.75 0 1 1-1.4-.54l5.5-14.5a.75.75 0 0 1 .97-.43Z\"]);\nexport const SlashForward20Regular = /*#__PURE__*/createFluentIcon('SlashForward20Regular', \"20\", [\"M12.66 2.03c.26.08.4.37.31.63l-5 15a.5.5 0 1 1-.94-.32l5-15a.5.5 0 0 1 .63-.31Z\"]);\nexport const SlashForward24Filled = /*#__PURE__*/createFluentIcon('SlashForward24Filled', \"24\", [\"M15.32 2.05a1 1 0 0 1 .63 1.27l-6 18a1 1 0 1 1-1.9-.64l6-18a1 1 0 0 1 1.27-.63Z\"]);\nexport const SlashForward24Regular = /*#__PURE__*/createFluentIcon('SlashForward24Regular', \"24\", [\"M15.5 2.04c.39.14.6.57.46.96l-6.5 18.5a.75.75 0 0 1-1.42-.5l6.5-18.5c.14-.39.57-.6.96-.46Z\"]);\nexport const Sleep20Filled = /*#__PURE__*/createFluentIcon('Sleep20Filled', \"20\", [\"M11.16 2.74a.5.5 0 0 1 .43-.13c3.5.6 6.4 3.67 6.4 7.4a7.5 7.5 0 0 1-7.5 7.5 7.96 7.96 0 0 1-6.4-3.22.5.5 0 0 1 .37-.79 6.94 6.94 0 0 0 4.69-2.59c1.34-1.65 2.24-4.17 1.85-7.75a.5.5 0 0 1 .16-.42ZM3.5 10C4.33 10 5 9.33 5 8.5V4.9l3-.76V6.1A1.5 1.5 0 1 0 9 7.5v-4a.5.5 0 0 0-.62-.48l-4 1A.5.5 0 0 0 4 4.5v2.59A1.5 1.5 0 1 0 3.5 10Z\"]);\nexport const Sleep20Regular = /*#__PURE__*/createFluentIcon('Sleep20Regular', \"20\", [\"M11.59 2.61a.5.5 0 0 0-.59.55c.4 3.58-.5 6.1-1.85 7.75a6.94 6.94 0 0 1-4.69 2.6.5.5 0 0 0-.37.78 7.96 7.96 0 0 0 6.4 3.21A7.5 7.5 0 0 0 18 10c0-3.72-2.9-6.78-6.4-7.39Zm-1.66 8.93c1.43-1.77 2.36-4.34 2.13-7.8A6.65 6.65 0 0 1 17 10a6.5 6.5 0 0 1-6.5 6.5 7.1 7.1 0 0 1-5.06-2.14 8.1 8.1 0 0 0 4.49-2.82ZM3.5 10C4.33 10 5 9.33 5 8.5V4.89l3-.75v1.94A1.5 1.5 0 1 0 9 7.5v-4a.5.5 0 0 0-.62-.49l-4 1A.5.5 0 0 0 4 4.5v2.58A1.5 1.5 0 1 0 3.5 10Z\"]);\nexport const Sleep24Filled = /*#__PURE__*/createFluentIcon('Sleep24Filled', \"24\", [\"M13.38 3.03a9 9 0 1 1-7.9 14.1.68.68 0 0 1 .32-1.02c3.4-1.21 5.21-2.62 6.27-4.63 1.1-2.12 1.4-4.44.62-7.62a.68.68 0 0 1 .69-.83Zm-2.39.62.01.1V9a2 2 0 1 1-1.5-1.94v-2.3L6 5.83V10a2 2 0 1 1-1.5-1.94V5.27c0-.3.17-.55.43-.68l.1-.03 5-1.53c.45-.13.9.17.96.62Z\"]);\nexport const Sleep24Regular = /*#__PURE__*/createFluentIcon('Sleep24Regular', \"24\", [\"M13.38 3.03a9 9 0 1 1-7.9 14.1.68.68 0 0 1 .32-1.02c3.4-1.21 5.21-2.62 6.27-4.63 1.1-2.12 1.4-4.44.62-7.62a.68.68 0 0 1 .69-.83Zm1 1.63.07.4c.42 2.7.07 4.97-1.06 7.12-1.14 2.18-3 3.7-6.01 4.94a7.5 7.5 0 1 0 7.68-12.29l-.34-.09-.33-.08Zm-3.39-1 .01.1V9a2 2 0 1 1-1.5-1.94v-2.3L6 5.83V10a2 2 0 1 1-1.5-1.94V5.27c0-.3.17-.55.43-.68l.1-.03 5-1.53c.42-.12.84.13.95.53l.01.1Z\"]);\nexport const SlideAdd16Filled = /*#__PURE__*/createFluentIcon('SlideAdd16Filled', \"16\", [\"M1 4.5A2.5 2.5 0 0 1 3.5 2h9A2.5 2.5 0 0 1 15 4.5v2.76A5.5 5.5 0 0 0 6.02 12H3.5A2.5 2.5 0 0 1 1 9.5v-5Zm15 7a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const SlideAdd16Regular = /*#__PURE__*/createFluentIcon('SlideAdd16Regular', \"16\", [\"M1 4.5A2.5 2.5 0 0 1 3.5 2h9A2.5 2.5 0 0 1 15 4.5v2.76a5.5 5.5 0 0 0-1-.66V4.5c0-.83-.67-1.5-1.5-1.5h-9C2.67 3 2 3.67 2 4.5v5c0 .83.67 1.5 1.5 1.5h2.52a5.57 5.57 0 0 0 0 1H3.5A2.5 2.5 0 0 1 1 9.5v-5Zm15 7a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V11H9.5a.5.5 0 0 0 0 1H11v1.5a.5.5 0 0 0 1 0V12h1.5a.5.5 0 0 0 0-1H12V9.5Z\"]);\nexport const SlideAdd20Filled = /*#__PURE__*/createFluentIcon('SlideAdd20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5A5.5 5.5 0 0 0 9.2 16H4.76A2.75 2.75 0 0 1 2 13.26v-6.5Zm17 7.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const SlideAdd20Regular = /*#__PURE__*/createFluentIcon('SlideAdd20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5a5.5 5.5 0 0 0-1-.65V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h4.27c.03.34.1.68.19 1H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm17 7.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const SlideAdd24Filled = /*#__PURE__*/createFluentIcon('SlideAdd24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h6.75A6.5 6.5 0 0 1 22 12.81V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 1 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 1 1 0 1H18Z\"]);\nexport const SlideAdd24Regular = /*#__PURE__*/createFluentIcon('SlideAdd24Regular', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v6.06a6.52 6.52 0 0 0-1.5-1.08V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h6.33c.08.52.22 1.03.42 1.5H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 1 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 1 1 0 1H18Z\"]);\nexport const SlideAdd28Filled = /*#__PURE__*/createFluentIcon('SlideAdd28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h8.12A7.5 7.5 0 0 1 26 15.4V7.75A3.75 3.75 0 0 0 22.24 4H5.75ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H21v-3.5Z\"]);\nexport const SlideAdd28Regular = /*#__PURE__*/createFluentIcon('SlideAdd28Regular', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v7.65c-.44-.48-.95-.9-1.5-1.25v-6.4c0-1.24-1-2.25-2.25-2.25H5.75c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1.01 2.25 2.25 2.25h7.52c.14.53.35 1.03.6 1.5H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H21v-3.5Z\"]);\nexport const SlideAdd32Filled = /*#__PURE__*/createFluentIcon('SlideAdd32Filled', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v8.84A9 9 0 0 0 15.52 28H6.5A4.5 4.5 0 0 1 2 23.5v-15Zm21 22a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm1-12.25V22h3.75a.75.75 0 0 1 0 1.5H24v3.75a.75.75 0 0 1-1.5 0V23.5h-3.75a.75.75 0 0 1 0-1.5h3.75v-3.75a.75.75 0 0 1 1.5 0Z\"]);\nexport const SlideAdd32Regular = /*#__PURE__*/createFluentIcon('SlideAdd32Regular', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5v8.84a9.05 9.05 0 0 0-2-1.82V8.5A2.5 2.5 0 0 0 25.5 6h-19A2.5 2.5 0 0 0 4 8.5v15A2.5 2.5 0 0 0 6.5 26h8.01c.25.71.6 1.38 1 2H6.5A4.5 4.5 0 0 1 2 23.5v-15Zm21 22a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15Zm1-12.25V22h3.75a.75.75 0 0 1 0 1.5H24v3.75a.75.75 0 0 1-1.5 0V23.5h-3.75a.75.75 0 0 1 0-1.5h3.75v-3.75a.75.75 0 0 1 1.5 0Z\"]);\nexport const SlideAdd48Filled = /*#__PURE__*/createFluentIcon('SlideAdd48Filled', \"48\", [\"M10.25 8A6.25 6.25 0 0 0 4 14.25v19.5C4 37.2 6.8 40 10.25 40H23a13 13 0 0 1 21-14.38V14.25C44 10.8 41.2 8 37.75 8h-27.5ZM35 46a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm0-19a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2h-6v6a1 1 0 1 1-2 0v-6h-6a1 1 0 1 1 0-2h6v-6a1 1 0 0 1 1-1Z\"]);\nexport const SlideAdd48Regular = /*#__PURE__*/createFluentIcon('SlideAdd48Regular', \"48\", [\"M4 14.25C4 10.8 6.8 8 10.25 8h27.5C41.2 8 44 10.8 44 14.25v11.37c-.75-.72-1.6-1.36-2.5-1.88v-9.49a3.75 3.75 0 0 0-3.75-3.75h-27.5a3.75 3.75 0 0 0-3.75 3.75v19.5a3.75 3.75 0 0 0 3.75 3.75h11.99c.17.87.42 1.7.76 2.5H10.25A6.25 6.25 0 0 1 4 33.75v-19.5ZM46 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-10-7a1 1 0 1 0-2 0v6h-6a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6v-6Z\"]);\nexport const SlideArrowRight20Filled = /*#__PURE__*/createFluentIcon('SlideArrowRight20Filled', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v3.76a5.48 5.48 0 0 0-5.8-.76H5.5a.5.5 0 0 0 0 1h5.23c-.46.43-.84.94-1.13 1.5H5.5a.5.5 0 0 0 0 1h3.7a5.5 5.5 0 0 0 0 3H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideArrowRight20Regular = /*#__PURE__*/createFluentIcon('SlideArrowRight20Regular', \"20\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h5.23c.43-.4.93-.75 1.48-1H5.5Zm0 2.5h4.1c-.16.32-.3.65-.4 1H5.5a.5.5 0 0 1 0-1Zm-1 3h4.52c.03.34.1.68.19 1H4.5A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v3.76a5.5 5.5 0 0 0-1-.66V6.5c0-.83-.67-1.5-1.5-1.5h-11C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5Zm14.5-.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15.35a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideArrowRight24Filled = /*#__PURE__*/createFluentIcon('SlideArrowRight24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v6.06a6.48 6.48 0 0 0-6.21-1.58.75.75 0 0 0-.54-.23h-8.5a.75.75 0 0 0 0 1.5h6.6c-.52.43-.97.93-1.33 1.5H6.75a.75.75 0 0 0 0 1.5h4.56a6.5 6.5 0 0 0 .19 4.5H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SlideArrowRight24Regular = /*#__PURE__*/createFluentIcon('SlideArrowRight24Regular', \"24\", [\"M6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM6 11.75c0-.41.34-.75.75-.75h8.5c.21 0 .4.09.54.23-.91.25-1.74.68-2.44 1.27h-6.6a.75.75 0 0 1-.75-.75Zm14.5-5v4.98c.55.29 1.06.65 1.5 1.08V6.75A2.75 2.75 0 0 0 19.25 4H4.75A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h6.75c-.2-.47-.34-.98-.42-1.5H4.75c-.69 0-1.25-.56-1.25-1.25V6.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25Zm-9.19 8.75c.18-.53.42-1.04.71-1.5H6.75a.75.75 0 0 0 0 1.5h4.56Zm11.69 2a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SlideContent24Filled = /*#__PURE__*/createFluentIcon('SlideContent24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM6.25 8C5.56 8 5 8.56 5 9.25v5.5c0 .69.56 1.25 1.25 1.25h5.5c.69 0 1.25-.56 1.25-1.25v-5.5C13 8.56 12.44 8 11.75 8h-5.5Zm7.75.75c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5h-3.5a.75.75 0 0 0-.75.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM14 14.75c0 .41.34.75.75.75h3.5a.75.75 0 0 0 0-1.5h-3.5a.75.75 0 0 0-.75.75Z\"]);\nexport const SlideContent24Regular = /*#__PURE__*/createFluentIcon('SlideContent24Regular', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75ZM5 9.25C5 8.56 5.56 8 6.25 8h5.5c.69 0 1.25.56 1.25 1.25v5.5c0 .69-.56 1.25-1.25 1.25h-5.5C5.56 16 5 15.44 5 14.75v-5.5Zm9-.5c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM14 14.75c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const SlideEraser16Filled = /*#__PURE__*/createFluentIcon('SlideEraser16Filled', \"16\", [\"M1 3.75C1 2.78 1.78 2 2.75 2h10.5c.97 0 1.75.78 1.75 1.75v4.32l-1.4-1.41a2.25 2.25 0 0 0-3.2 0l-3.74 3.75A2.24 2.24 0 0 0 6 12H2.75C1.78 12 1 11.22 1 10.25v-6.5Zm10.12 3.62a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideEraser16Regular = /*#__PURE__*/createFluentIcon('SlideEraser16Regular', \"16\", [\"M1 3.75C1 2.78 1.78 2 2.75 2h10.5c.97 0 1.75.78 1.75 1.75V8h-.07L14 7.07V3.75a.75.75 0 0 0-.75-.75H2.75a.75.75 0 0 0-.75.75v6.5c0 .41.34.75.75.75h3.48c-.15.31-.23.66-.23 1H2.75C1.78 12 1 11.22 1 10.25v-6.5Zm10.12 3.62a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideEraser20Filled = /*#__PURE__*/createFluentIcon('SlideEraser20Filled', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v5.07l-.4-.41a2.25 2.25 0 0 0-3.2 0l-3.74 3.75A2.24 2.24 0 0 0 10 16H4a2 2 0 0 1-2-2V6Zm13.12 5.37a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideEraser20Regular = /*#__PURE__*/createFluentIcon('SlideEraser20Regular', \"20\", [\"M4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h6c0-.34.08-.69.23-1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v4.23c.21.11.41.25.6.43l.4.41V6a2 2 0 0 0-2-2H4Zm11.12 7.37a1.25 1.25 0 0 1 1.76 0l1.75 1.75c.5.48.5 1.28 0 1.76l-2.57 2.58-3.52-3.52 2.58-2.57Zm-3.18 3.17-.57.58a1.25 1.25 0 0 0 0 1.76l1.75 1.75c.48.5 1.28.5 1.76 0l.58-.57-3.52-3.52Z\"]);\nexport const SlideEraser24Filled = /*#__PURE__*/createFluentIcon('SlideEraser24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h7.83a2.5 2.5 0 0 1 .17-3.35l4.91-4.92a2.5 2.5 0 0 1 3.54 0l.8.8V6.76A2.75 2.75 0 0 0 19.25 4H4.75Z\", \"M20.5 12.44a1.5 1.5 0 0 0-2.13 0l-3.11 3.11 4.2 4.2 3.12-3.1a1.5 1.5 0 0 0 0-2.12l-2.09-2.09Z\", \"m13.45 17.36 1.1-1.1 4.21 4.2-1.1 1.1a1.5 1.5 0 0 1-2.12 0l-2.09-2.08a1.5 1.5 0 0 1 0-2.12Z\"]);\nexport const SlideEraser24Regular = /*#__PURE__*/createFluentIcon('SlideEraser24Regular', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v5.79l-.8-.8a2.5 2.5 0 0 0-.7-.5V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h7.26c.02.53.2 1.06.57 1.5H4.75A2.75 2.75 0 0 1 2 17.25V6.75Z\", \"M20.5 12.44a1.5 1.5 0 0 0-2.13 0l-3.11 3.11 4.2 4.2 3.12-3.1a1.5 1.5 0 0 0 0-2.12l-2.09-2.09Z\", \"m13.45 17.36 1.1-1.1 4.21 4.2-1.1 1.1a1.5 1.5 0 0 1-2.12 0l-2.09-2.08a1.5 1.5 0 0 1 0-2.12Z\"]);\nexport const SlideGrid20Filled = /*#__PURE__*/createFluentIcon('SlideGrid20Filled', \"20\", [\"M4 7a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7Zm1 3.5a1 1 0 0 0-1 1V13a1 1 0 0 0 1 1h3.5a1 1 0 0 0 1-1v-1.5a1 1 0 0 0-1-1H5ZM10.5 7a1 1 0 0 1 1-1H15a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1V7Zm1 3.5a1 1 0 0 0-1 1V13a1 1 0 0 0 1 1H15a1 1 0 0 0 1-1v-1.5a1 1 0 0 0-1-1h-3.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const SlideGrid20Regular = /*#__PURE__*/createFluentIcon('SlideGrid20Regular', \"20\", [\"M5 6a1 1 0 0 0-1 1v1.5a1 1 0 0 0 1 1h3.5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm3.5 1v1.5H5V7h3.5ZM4 11.5a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1V13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1.5Zm1 0V13h3.5v-1.5H5ZM11.5 6H15a1 1 0 0 1 1 1v1.5a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1ZM15 7h-3.5v1.5H15V7Zm-4.5 4.5a1 1 0 0 1 1-1H15a1 1 0 0 1 1 1V13a1 1 0 0 1-1 1h-3.5a1 1 0 0 1-1-1v-1.5Zm1 0V13H15v-1.5h-3.5ZM2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H4Z\"]);\nexport const SlideGrid24Filled = /*#__PURE__*/createFluentIcon('SlideGrid24Filled', \"24\", [\"M6.25 12.5c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-4Zm7.5 0c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-4ZM6.25 7C5.56 7 5 7.56 5 8.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-4Zm7.5 0c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2C19 7.56 18.44 7 17.75 7h-4ZM2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const SlideGrid24Regular = /*#__PURE__*/createFluentIcon('SlideGrid24Regular', \"24\", [\"M5 13.75c0-.69.56-1.25 1.25-1.25h4c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25h-4C5.56 17 5 16.44 5 15.75v-2Zm1.5.25v1.5H10V14H6.5Zm7.25-1.5c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2c0-.69-.56-1.25-1.25-1.25h-4Zm.25 3V14h3.5v1.5H14ZM5 8.25C5 7.56 5.56 7 6.25 7h4c.69 0 1.25.56 1.25 1.25v2c0 .69-.56 1.25-1.25 1.25h-4c-.69 0-1.25-.56-1.25-1.25v-2Zm1.5.25V10H10V8.5H6.5ZM13.75 7c-.69 0-1.25.56-1.25 1.25v2c0 .69.56 1.25 1.25 1.25h4c.69 0 1.25-.56 1.25-1.25v-2C19 7.56 18.44 7 17.75 7h-4Zm.25 3V8.5h3.5V10H14ZM2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const SlideHide20Filled = /*#__PURE__*/createFluentIcon('SlideHide20Filled', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm0 5a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H7a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V8Zm3.5-2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V8a2 2 0 0 0-2-2h-.5ZM6 10.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm12 0a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm-12 4a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H7a1 1 0 0 1-1-1v-.5Zm12 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM9.5 16a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const SlideHide20Regular = /*#__PURE__*/createFluentIcon('SlideHide20Regular', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm0 5a1 1 0 0 1 1-1h.5a.5.5 0 0 0 0-1H7a2 2 0 0 0-2 2v.5a.5.5 0 0 0 1 0V8Zm3.5-2a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h.5a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V8a2 2 0 0 0-2-2h-.5ZM6 10.5a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm12 0a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0v-2Zm-12 4a.5.5 0 0 0-1 0v.5c0 1.1.9 2 2 2h.5a.5.5 0 0 0 0-1H7a1 1 0 0 1-1-1v-.5Zm12 0a.5.5 0 0 0-1 0v.5a1 1 0 0 1-1 1h-.5a.5.5 0 0 0 0 1h.5a2 2 0 0 0 2-2v-.5ZM9.5 16a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Z\"]);\nexport const SlideHide24Filled = /*#__PURE__*/createFluentIcon('SlideHide24Filled', \"24\", [\"M6.75 3A4.75 4.75 0 0 0 2 7.75v7C2 15.99 3 17 4.25 17h.25V8.75c0-1.8 1.46-3.25 3.25-3.25H19v-.25C19 4.01 18 3 16.75 3h-10Zm12.5 3.5h.5c1.2 0 2.17.93 2.24 2.1l.01.15v1a.75.75 0 0 1-1.5.1v-1.1c0-.38-.28-.7-.65-.74l-.1-.01h-.5a.75.75 0 0 1-.1-1.5h.1Zm-13 5c.38 0 .7.28.74.65l.01.1v2.5a.75.75 0 0 1-1.5.1v-2.6c0-.41.34-.75.75-.75Zm.74 5.64a.75.75 0 0 0-1.49.1v1.16a2.25 2.25 0 0 0 2.25 2.1h.6a.75.75 0 0 0-.1-1.5h-.6a.75.75 0 0 1-.65-.75v-1.1Zm15.01.1a.75.75 0 1 0-1.5 0v1.01c0 .41-.34.75-.75.75h-1a.75.75 0 0 0 0 1.5h1c1.24 0 2.25-1 2.25-2.25v-1ZM14.75 19h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Zm-2.5 0h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0-.1-1.5Zm9.74-6.85a.75.75 0 0 0-1.49.1v2.6a.75.75 0 0 0 1.5-.1v-2.6ZM9.5 7.25a.75.75 0 0 0-.75-.75h-1c-1.24 0-2.25 1-2.25 2.25v1a.75.75 0 0 0 1.5 0v-1c0-.41.34-.75.75-.75h1c.42 0 .75-.34.75-.75Zm5.75-.75h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Zm-2.5 0h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0-.1-1.5Z\"]);\nexport const SlideHide24Regular = /*#__PURE__*/createFluentIcon('SlideHide24Regular', \"24\", [\"M6.75 3A4.75 4.75 0 0 0 2 7.75v7C2 15.99 3 17 4.25 17h.25v-1.5h-.25a.75.75 0 0 1-.75-.75v-7c0-1.8 1.46-3.25 3.25-3.25h10c.41 0 .75.34.75.75v.25H19v-.25C19 4.01 18 3 16.75 3h-10Zm12.5 3.5h.5c1.2 0 2.17.93 2.24 2.1l.01.15v1a.75.75 0 0 1-1.5.1v-1.1c0-.38-.28-.7-.65-.74l-.1-.01h-.5a.75.75 0 0 1-.1-1.5h.1Zm-13 5c.38 0 .7.28.74.65l.01.1v2.5a.75.75 0 0 1-1.5.1v-2.6c0-.41.34-.75.75-.75Zm.74 5.64a.75.75 0 0 0-1.49.1v1.16a2.25 2.25 0 0 0 2.25 2.1h.6a.75.75 0 0 0-.1-1.5h-.6a.75.75 0 0 1-.65-.75v-1.1Zm15.01.1a.75.75 0 1 0-1.5 0v1.01c0 .41-.34.75-.75.75h-1a.75.75 0 0 0 0 1.5h1c1.24 0 2.25-1 2.25-2.25v-1ZM14.75 19h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Zm-2.5 0h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0-.1-1.5Zm9.74-6.85a.75.75 0 0 0-1.49.1v2.6a.75.75 0 0 0 1.5-.1v-2.6ZM9.5 7.25a.75.75 0 0 0-.75-.75h-1c-1.24 0-2.25 1-2.25 2.25v1a.75.75 0 0 0 1.5 0v-1c0-.41.34-.75.75-.75h1c.42 0 .75-.34.75-.75Zm5.75-.75h1.5a.75.75 0 0 1 .1 1.5h-1.6a.75.75 0 0 1-.1-1.5h.1Zm-2.5 0h-1.6a.75.75 0 0 0 .1 1.5h1.6a.75.75 0 0 0-.1-1.5Z\"]);\nexport const SlideLayout20Filled = /*#__PURE__*/createFluentIcon('SlideLayout20Filled', \"20\", [\"M5.5 7h9c.28 0 .5.22.5.5V9H5V7.5c0-.28.22-.5.5-.5ZM7 10v3H5.5a.5.5 0 0 1-.5-.5V10h2Zm7.5 3H8v-3h7v2.5a.5.5 0 0 1-.5.5Zm-10-9A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11Zm10 10h-9A1.5 1.5 0 0 1 4 12.5v-5C4 6.67 4.67 6 5.5 6h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5Z\"]);\nexport const SlideLayout20Regular = /*#__PURE__*/createFluentIcon('SlideLayout20Regular', \"20\", [\"M5.5 14A1.5 1.5 0 0 1 4 12.5v-5C4 6.67 4.67 6 5.5 6h9c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-9Zm0-7a.5.5 0 0 0-.5.5V9h10V7.5a.5.5 0 0 0-.5-.5h-9ZM7 10H5v2.5c0 .28.22.5.5.5H7v-3Zm1 3h6.5a.5.5 0 0 0 .5-.5V10H8v3ZM2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7ZM4.5 5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const SlideLayout24Filled = /*#__PURE__*/createFluentIcon('SlideLayout24Filled', \"24\", [\"M6.5 8.75c0-.14.11-.25.25-.25h10.5c.14 0 .25.11.25.25v1.75h-11V8.75Zm0 3.25v3.25c0 .14.11.25.25.25H9V12H6.5Zm10.75 3.5H10.5V12h7v3.25c0 .14-.11.25-.25.25ZM2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM6.75 7C5.78 7 5 7.78 5 8.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C19 7.78 18.22 7 17.25 7H6.75Z\"]);\nexport const SlideLayout24Regular = /*#__PURE__*/createFluentIcon('SlideLayout24Regular', \"24\", [\"M6.75 7C5.78 7 5 7.78 5 8.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C19 7.78 18.22 7 17.25 7H6.75ZM6.5 8.75c0-.14.11-.25.25-.25h10.5c.14 0 .25.11.25.25v1.75h-11V8.75Zm4 3.25h7v3.25c0 .14-.11.25-.25.25H10.5V12ZM9 12v3.5H6.75a.25.25 0 0 1-.25-.25V12H9ZM4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM3.5 6.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25v10.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25V6.75Z\"]);\nexport const SlideLink20Filled = /*#__PURE__*/createFluentIcon('SlideLink20Filled', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v4.84a3.49 3.49 0 0 0-1.5-.34h-4A3.5 3.5 0 0 0 9.63 16H4a2 2 0 0 1-2-2V6Zm10.5 5.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16ZM12 14c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const SlideLink20Regular = /*#__PURE__*/createFluentIcon('SlideLink20Regular', \"20\", [\"M2 6c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2v4.84a3.47 3.47 0 0 0-1-.3V6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.14c.11.36.28.7.49 1H4a2 2 0 0 1-2-2V6Zm10.5 5.5a2.5 2.5 0 0 0 0 5h.5a.5.5 0 0 0 0-1h-.5a1.5 1.5 0 0 1 0-3h.5a.5.5 0 0 0 0-1h-.5Zm3.5 0a.5.5 0 0 0 0 1h.5a1.5 1.5 0 0 1 0 3H16a.5.5 0 0 0 0 1h.5a2.5 2.5 0 0 0 0-5H16ZM12 14c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const SlideLink24Filled = /*#__PURE__*/createFluentIcon('SlideLink24Filled', \"24\", [\"M2 6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v7.13a4.73 4.73 0 0 0-2.75-.88h-3.5a4.75 4.75 0 0 0-3.87 7.5H4.25C3.01 20 2 19 2 17.75V6.25Zm21 11a3.75 3.75 0 0 0-3.75-3.75h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5V21h.2A3.75 3.75 0 0 0 23 17.24Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const SlideLink24Regular = /*#__PURE__*/createFluentIcon('SlideLink24Regular', \"24\", [\"M2 6.25C2 5.01 3 4 4.25 4h15.5C20.99 4 22 5 22 6.25v7.13a4.73 4.73 0 0 0-1.5-.71V6.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75v11.5c0 .41.34.75.75.75h6.92c.14.55.39 1.05.7 1.5H4.26C3.01 20 2 19 2 17.75V6.25Zm21 11a3.75 3.75 0 0 0-3.75-3.75h-.1a.75.75 0 0 0 .1 1.5h.15a2.25 2.25 0 0 1-.15 4.5l-.1.01a.75.75 0 0 0 .1 1.5V21h.2A3.75 3.75 0 0 0 23 17.24Zm-6.5-3a.75.75 0 0 0-.75-.75h-.2a3.75 3.75 0 0 0 .2 7.5h.1a.75.75 0 0 0-.1-1.5h-.15a2.25 2.25 0 0 1 .15-4.5h.1a.75.75 0 0 0 .65-.75Zm3.5 3a.75.75 0 0 0-.75-.75h-3.6a.75.75 0 0 0 .1 1.5h3.6a.75.75 0 0 0 .65-.75Z\"]);\nexport const SlideMicrophone20Filled = /*#__PURE__*/createFluentIcon('SlideMicrophone20Filled', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v5.47a3 3 0 0 0-6 .03v1.07a1.5 1.5 0 0 0-1.95 1.64c.06.45.19.89.37 1.29H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5H11a.5.5 0 0 0 0-1H5.5a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm7.5 0a2 2 0 1 1 4 0v2a2 2 0 0 1-4 0v-2Zm-.97 2.43a.5.5 0 1 0-.99.14 4 4 0 0 0 3.46 3.4v.53a.5.5 0 1 0 1 0v-.53a4 4 0 0 0 3.46-3.4.5.5 0 1 0-1-.14 3 3 0 0 1-5.93 0Z\"]);\nexport const SlideMicrophone20Regular = /*#__PURE__*/createFluentIcon('SlideMicrophone20Regular', \"20\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm-.5 3c0-.28.22-.5.5-.5H10a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h5.92a4.97 4.97 0 0 1-.32-1H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v3.26a3 3 0 0 1 1 2.2V6.5A2.5 2.5 0 0 0 15.5 4h-11Zm8.5 8a2 2 0 1 1 4 0v2a2 2 0 0 1-4 0v-2Zm-.97 2.43a.5.5 0 1 0-.99.14 4 4 0 0 0 3.46 3.4v.53a.5.5 0 1 0 1 0v-.53a4 4 0 0 0 3.46-3.4.5.5 0 1 0-1-.14 3 3 0 0 1-5.93 0Z\"]);\nexport const SlideMicrophone24Filled = /*#__PURE__*/createFluentIcon('SlideMicrophone24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v7.75a3.5 3.5 0 0 0-7 0v1.59a1.5 1.5 0 0 0-2 1.41c0 .92.28 1.77.75 2.5h-9A2.75 2.75 0 0 1 2 17.25V6.75ZM6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm0 3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM6 14.75c0 .41.34.75.75.75h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0-.75.75Zm9 2.75c0 1.09.6 1.98 1.52 2.5a4 4 0 0 0 1.98.5c1.93 0 3.5-1.25 3.5-3a.5.5 0 0 1 1 0c0 2-1.75 3.72-4 3.97v1.03a.5.5 0 0 1-1 0v-1.03A4.77 4.77 0 0 1 15.02 20 3.7 3.7 0 0 1 14 17.5a.5.5 0 0 1 1 0Zm1-3a2.5 2.5 0 0 1 5 0V17a2.5 2.5 0 0 1-5 0v-2.5Z\"]);\nexport const SlideMicrophone24Regular = /*#__PURE__*/createFluentIcon('SlideMicrophone24Regular', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h9c-.3-.46-.51-.96-.64-1.5H4.75c-.69 0-1.25-.56-1.25-1.25V6.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25v4.87c.95.67 1.5 1.78 1.5 2.88V6.75A2.75 2.75 0 0 0 19.25 4H4.75Zm11.77 16a2.98 2.98 0 0 1-1.34-1.5c-.12-.3-.18-.64-.18-1a.5.5 0 0 0-1 0c0 .34.05.68.15 1 .17.55.47 1.06.87 1.5A4.77 4.77 0 0 0 18 21.47v1.03a.5.5 0 0 0 1 0v-1.03c2.25-.25 4-1.97 4-3.97a.5.5 0 0 0-1 0c0 1.75-1.57 3-3.5 3a4 4 0 0 1-1.98-.5Zm1.98-.5c-.86 0-1.56-.41-2-1-.32-.44-.5-.97-.5-1.5v-2.5a2.5 2.5 0 0 1 5 0V17c0 1.25-1 2.5-2.5 2.5ZM6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM6 11.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm0 3c0-.41.34-.75.75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const SlideMicrophone32Filled = /*#__PURE__*/createFluentIcon('SlideMicrophone32Filled', \"32\", [\"M6.5 4A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h12.25A8.01 8.01 0 0 1 17 23a2.75 2.75 0 0 1 3-2.74V19a5 5 0 0 1 10 0V8.5A4.5 4.5 0 0 0 25.5 4h-19ZM8 10a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 9h6a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2Zm-1-4a1 1 0 0 1 1-1h9a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm12.53 12A6.02 6.02 0 0 1 19 23a.75.75 0 0 1 1.5 0 4.48 4.48 0 0 0 4.1 4.48h.02a4.56 4.56 0 0 0 1.13-.04h.02A4.47 4.47 0 0 0 29.5 23a.75.75 0 1 1 1.5 0 5.97 5.97 0 0 1-5 5.92v1.33a.75.75 0 0 1-1.5 0v-1.27A5.97 5.97 0 0 1 20.53 27ZM22 19a3 3 0 1 1 6 0v4a3 3 0 1 1-6 0v-4Z\"]);\nexport const SlideMicrophone32Regular = /*#__PURE__*/createFluentIcon('SlideMicrophone32Regular', \"32\", [\"M6.5 4A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h12.25a8 8 0 0 1-1.17-2H6.5A2.5 2.5 0 0 1 4 23.5v-15A2.5 2.5 0 0 1 6.5 6h19A2.5 2.5 0 0 1 28 8.5V15a5 5 0 0 1 2 4V8.5A4.5 4.5 0 0 0 25.5 4h-19Zm13.3 22a6.02 6.02 0 0 0 4.7 2.98v1.27a.75.75 0 0 0 1.5 0v-1.33A5.97 5.97 0 0 0 31 23a.75.75 0 0 0-1.5 0 4.51 4.51 0 0 1-3.73 4.43h-.02a4.53 4.53 0 0 1-1.13.05h-.01A4.47 4.47 0 0 1 20.5 23a.75.75 0 0 0-1.5 0c0 1.1.3 2.12.8 3ZM25 16a3 3 0 0 0-3 3v4a3 3 0 1 0 6 0v-4a3 3 0 0 0-3-3ZM9 9a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H9ZM8 20a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1-6a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2H9Z\"]);\nexport const SlideMultiple20Filled = /*#__PURE__*/createFluentIcon('SlideMultiple20Filled', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h9a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H7Z\"]);\nexport const SlideMultiple20Regular = /*#__PURE__*/createFluentIcon('SlideMultiple20Regular', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h9a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H7ZM6 8a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V8Z\"]);\nexport const SlideMultiple24Filled = /*#__PURE__*/createFluentIcon('SlideMultiple24Filled', \"24\", [\"M2 7.75A4.75 4.75 0 0 1 6.75 3h10C17.99 3 19 4 19 5.25v.25H7.75A3.25 3.25 0 0 0 4.5 8.75V17h-.25C3.01 17 2 16 2 14.75v-7ZM7.75 6.5c-1.24 0-2.25 1-2.25 2.25v9.5c0 1.24 1 2.25 2.25 2.25h12c1.24 0 2.25-1 2.25-2.25v-9.5c0-1.24-1-2.25-2.25-2.25h-12Z\"]);\nexport const SlideMultiple24Regular = /*#__PURE__*/createFluentIcon('SlideMultiple24Regular', \"24\", [\"M6.75 3A4.75 4.75 0 0 0 2 7.75v7C2 15.99 3 17 4.25 17h.25v-1.5h-.25a.75.75 0 0 1-.75-.75v-7c0-1.8 1.46-3.25 3.25-3.25h10c.41 0 .75.34.75.75v.25H19v-.25C19 4.01 18 3 16.75 3h-10Zm1 3.5c-1.24 0-2.25 1-2.25 2.25v9.5c0 1.24 1 2.25 2.25 2.25h12c1.24 0 2.25-1 2.25-2.25v-9.5c0-1.24-1-2.25-2.25-2.25h-12ZM7 8.75c0-.41.34-.75.75-.75h12c.41 0 .75.34.75.75v9.5c0 .41-.34.75-.75.75h-12a.75.75 0 0 1-.75-.75v-9.5Z\"]);\nexport const SlideMultipleArrowRight20Filled = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRight20Filled', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h2.6a5.5 5.5 0 0 1 8.4-6.74V8a2 2 0 0 0-2-2H7Zm7.5 4a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideMultipleArrowRight20Regular = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRight20Regular', \"20\", [\"M6 3a4 4 0 0 0-4 4v5c0 1.1.9 2 2 2v-1a1 1 0 0 1-1-1V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm1 3a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h2.6c-.16-.32-.3-.65-.4-1H7a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v1.6c.36.18.7.4 1 .66V8a2 2 0 0 0-2-2H7Zm7.5 4a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85a.5.5 0 0 0 .15-.35.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L15.29 14H12.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const SlideMultipleArrowRight24Filled = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRight24Filled', \"24\", [\"M2 7.75A4.75 4.75 0 0 1 6.75 3h10C17.99 3 19 4 19 5.25v.25H7.75A3.25 3.25 0 0 0 4.5 8.75V17h-.25C3.01 17 2 16 2 14.75v-7ZM7.75 6.5c-1.24 0-2.25 1-2.25 2.25v9.5c0 1.24 1 2.25 2.25 2.25h3.98A6.5 6.5 0 0 1 22 12.81V8.75c0-1.24-1-2.25-2.25-2.25h-12ZM17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SlideMultipleArrowRight24Regular = /*#__PURE__*/createFluentIcon('SlideMultipleArrowRight24Regular', \"24\", [\"M6.75 3A4.75 4.75 0 0 0 2 7.75v7C2 15.99 3 17 4.25 17h.25v-1.5h-.25a.75.75 0 0 1-.75-.75v-7c0-1.8 1.46-3.25 3.25-3.25h10c.41 0 .75.34.75.75v.25H19v-.25C19 4.01 18 3 16.75 3h-10Zm1 3.5c-1.24 0-2.25 1-2.25 2.25v9.5c0 1.24 1 2.25 2.25 2.25h3.98a6.46 6.46 0 0 1-.56-1.5H7.75a.75.75 0 0 1-.75-.75v-9.5c0-.41.34-.75.75-.75h12c.41 0 .75.34.75.75v2.98c.55.29 1.06.65 1.5 1.08V8.75c0-1.24-1-2.25-2.25-2.25h-12ZM17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm-3 5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const SlideMultipleSearch20Filled = /*#__PURE__*/createFluentIcon('SlideMultipleSearch20Filled', \"20\", [\"M6 3a4 4 0 0 0-4 4v2.76c.58-.4 1.27-.65 2-.73V8a3 3 0 0 1 3-3h8a2 2 0 0 0-2-2H6Zm10 14h-5.88l-1.56-1.56A4.5 4.5 0 0 0 5 9.03V8c0-1.1.9-2 2-2h9a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2ZM4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideMultipleSearch20Regular = /*#__PURE__*/createFluentIcon('SlideMultipleSearch20Regular', \"20\", [\"M6 3a4 4 0 0 0-4 4v2.76c.3-.2.64-.38 1-.5V7a3 3 0 0 1 3-3h7a1 1 0 0 1 1 1h1a2 2 0 0 0-2-2H6Zm10 14h-5.88l-1-1H16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1.26a4.47 4.47 0 0 0-1-.23V8c0-1.1.9-2 2-2h9a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2ZM4.5 17c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 15.6A3.5 3.5 0 1 0 4.5 17Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideMultipleSearch24Filled = /*#__PURE__*/createFluentIcon('SlideMultipleSearch24Filled', \"24\", [\"M2 7.75A4.75 4.75 0 0 1 6.75 3h10C17.99 3 19 4 19 5.25v.25H7.75A3.25 3.25 0 0 0 4.5 8.75v2.34c-.94.17-1.8.58-2.5 1.17V7.75Zm8.43 11.2 1.54 1.55h7.78c1.24 0 2.25-1 2.25-2.25v-9.5c0-1.24-1-2.25-2.25-2.25h-12c-1.24 0-2.25 1-2.25 2.25V11a5.5 5.5 0 0 1 4.93 7.95ZM5.5 21c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const SlideMultipleSearch24Regular = /*#__PURE__*/createFluentIcon('SlideMultipleSearch24Regular', \"24\", [\"M6.75 3A4.75 4.75 0 0 0 2 7.75v4.5a5.5 5.5 0 0 1 1.5-.88V7.75c0-1.8 1.46-3.25 3.25-3.25h10c.41 0 .75.34.75.75v.25H19v-.25C19 4.01 18 3 16.75 3h-10Zm13 17.5h-7.78l-1.5-1.5h9.28c.41 0 .75-.34.75-.75v-9.5a.75.75 0 0 0-.75-.75h-12a.75.75 0 0 0-.75.75v2.46A5.5 5.5 0 0 0 5.5 11V8.75c0-1.24 1-2.25 2.25-2.25h12c1.24 0 2.25 1 2.25 2.25v9.5c0 1.24-1 2.25-2.25 2.25ZM5.5 21c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 21Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const SlideRecord16Filled = /*#__PURE__*/createFluentIcon('SlideRecord16Filled', \"16\", [\"M3 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2.6a5.48 5.48 0 0 1-.58-3H4.5a.5.5 0 0 1 0-1h.7c.1-.35.24-.68.4-1H4.5a.5.5 0 0 1 0-1h1.76c.31-.38.67-.72 1.08-1H4.5a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .49.6A5.48 5.48 0 0 1 15 7.35V5a2 2 0 0 0-2-2H3Zm7.5 11a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecord16Regular = /*#__PURE__*/createFluentIcon('SlideRecord16Regular', \"16\", [\"M4 5.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 .49.6 5.5 5.5 0 0 0-.65.4H4.5a.5.5 0 0 1-.5-.5ZM6.26 7H4.5a.5.5 0 0 0 0 1h1.1c.18-.36.4-.7.66-1ZM5.2 9H4.5a.5.5 0 0 0 0 1h.52c.03-.34.1-.68.19-1Zm0 3H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1.26c.38.31.72.67 1 1.08V5a2 2 0 0 0-2-2H3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h2.6c-.16-.32-.3-.65-.4-1Zm5.29 2a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideRecord20Filled = /*#__PURE__*/createFluentIcon('SlideRecord20Filled', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.7a5.5 5.5 0 0 1 0-3H5.5a.5.5 0 0 1 0-1h4.1c.29-.56.67-1.07 1.13-1.5H5.5a.5.5 0 0 1 0-1h6.7a5.48 5.48 0 0 1 5.8.76V6.5A2.5 2.5 0 0 0 15.5 4h-11ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM14.5 18a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecord20Regular = /*#__PURE__*/createFluentIcon('SlideRecord20Regular', \"20\", [\"M5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h6.7c-.54.25-1.04.6-1.47 1H5.5A.5.5 0 0 1 5 10Zm4.6 2H5.5a.5.5 0 0 0 0 1h3.7c.1-.35.24-.68.4-1Zm-.58 3H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v3.1c.36.18.7.4 1 .66V6.5A2.5 2.5 0 0 0 15.5 4h-11A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.7c-.08-.32-.15-.66-.18-1Zm5.48 3a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 1a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecord24Filled = /*#__PURE__*/createFluentIcon('SlideRecord24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h6.75a6.48 6.48 0 0 1-.19-4.5H6.75a.75.75 0 0 1 0-1.5h5.27c.36-.57.81-1.07 1.33-1.5h-6.6a.75.75 0 0 1 0-1.5h8.5c.21 0 .4.09.54.23A6.51 6.51 0 0 1 22 12.8V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75ZM17.5 21.5a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 1.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm0-3a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecord24Regular = /*#__PURE__*/createFluentIcon('SlideRecord24Regular', \"24\", [\"M6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75ZM6.75 11a.75.75 0 0 0 0 1.5h6.6a6.48 6.48 0 0 1 2.44-1.27.75.75 0 0 0-.54-.23h-8.5Zm13.75.73V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h6.33c.08.52.22 1.03.42 1.5H4.75A2.75 2.75 0 0 1 2 17.25V6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v6.06a6.52 6.52 0 0 0-1.5-1.08ZM12.02 14c-.3.46-.53.97-.7 1.5H6.74a.75.75 0 0 1 0-1.5h5.27Zm5.48 7.5a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 1.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm0-3a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z\"]);\nexport const SlideRecord28Filled = /*#__PURE__*/createFluentIcon('SlideRecord28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h8.12a7.47 7.47 0 0 1-.6-5.5H7.73a.73.73 0 0 1-.73-.73v-.04c0-.4.33-.73.73-.73h6.13A7.54 7.54 0 0 1 16 14.5H7.73a.73.73 0 0 1-.73-.73v-.04c0-.4.33-.73.73-.73h10.54c.2 0 .37.08.5.2A7.52 7.52 0 0 1 26 15.4V7.75A3.75 3.75 0 0 0 22.25 4H5.75ZM7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04ZM20.5 25.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0 1.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13Zm0-3a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z\"]);\nexport const SlideRecord28Regular = /*#__PURE__*/createFluentIcon('SlideRecord28Regular', \"28\", [\"M7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4c0-.4.33-.73.73-.73h10.54c.2 0 .37.08.5.2A7.47 7.47 0 0 0 16 14.5H7.73a.73.73 0 0 1-.73-.73v-.04ZM13.87 17H7.73c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h5.54c.14-.53.35-1.03.6-1.5Zm-.6 5.5H5.75c-1.24 0-2.25-1-2.25-2.25V7.75c0-1.24 1.01-2.25 2.25-2.25h16.5c1.24 0 2.25 1 2.25 2.25v6.4c.55.35 1.06.77 1.5 1.25V7.75A3.75 3.75 0 0 0 22.25 4H5.75A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h8.12a7.45 7.45 0 0 1-.6-1.5Zm7.23 3a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0 1.5a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13Zm0-3a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z\"]);\nexport const SlideRecord48Filled = /*#__PURE__*/createFluentIcon('SlideRecord48Filled', \"48\", [\"M8.75 8A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40H23a12.96 12.96 0 0 1-.52-8.5h-9.23a1.25 1.25 0 1 1 0-2.5h10.21c.8-1.54 1.9-2.9 3.23-4H13.25a1.25 1.25 0 1 1 0-2.5h17.5c.15 0 .29.03.42.07A13 13 0 0 1 44 25.62V12.75A4.75 4.75 0 0 0 39.25 8H8.75ZM12 17.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25ZM35 43.5a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17Zm0 2.5a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm0-5a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z\"]);\nexport const SlideRecord48Regular = /*#__PURE__*/createFluentIcon('SlideRecord48Regular', \"48\", [\"M12 17.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25Zm1.25 5.25a1.25 1.25 0 1 0 0 2.5h13.44a12.97 12.97 0 0 1 4.48-2.43 1.25 1.25 0 0 0-.42-.07h-17.5Zm0 6.5h10.21c-.4.79-.74 1.63-.98 2.5h-9.23a1.25 1.25 0 1 1 0-2.5Zm-4.5 8.5h13.49c.17.87.42 1.7.76 2.5H8.75A4.75 4.75 0 0 1 4 35.25v-22.5A4.75 4.75 0 0 1 8.75 8h30.5A4.75 4.75 0 0 1 44 12.75v12.87c-.75-.72-1.6-1.36-2.5-1.88V12.75c0-1.24-1-2.25-2.25-2.25H8.75c-1.24 0-2.25 1-2.25 2.25v22.5c0 1.24 1 2.25 2.25 2.25Zm26.25 6a8.5 8.5 0 1 1 0-17 8.5 8.5 0 0 1 0 17Zm0 2.5a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm6-11a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\"]);\nexport const SlideSearch20Filled = /*#__PURE__*/createFluentIcon('SlideSearch20Filled', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-5.38l-1.56-1.56c.21-.44.36-.93.41-1.44h3.53a.5.5 0 0 0 0-1H8.97a4.47 4.47 0 0 0-.44-1.5h5.97a.5.5 0 0 0 0-1H7.85A4.49 4.49 0 0 0 2 8.76V6.5Zm3.5.5a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm-1 9c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideSearch20Regular = /*#__PURE__*/createFluentIcon('SlideSearch20Regular', \"20\", [\"M5.5 7a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1h-6Zm3.03 3.5a4.5 4.5 0 0 0-.68-1h6.65a.5.5 0 0 1 0 1H8.53Zm.47 2c0 .17 0 .34-.03.5h3.53a.5.5 0 0 0 0-1H8.97c.02.16.03.33.03.5Zm-6-6v1.76c-.36.12-.7.3-1 .5V6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-5.38l-1-1h6.38c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-11C3.67 5 3 5.67 3 6.5ZM4.5 16c.79 0 1.51-.26 2.1-.7l2.55 2.55a.5.5 0 1 0 .7-.7L7.3 14.6A3.5 3.5 0 1 0 4.5 16Zm0-1a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z\"]);\nexport const SlideSearch24Filled = /*#__PURE__*/createFluentIcon('SlideSearch24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20h-6.78l-2.04-2.05c.36-.74.57-1.57.57-2.45h4.25a.75.75 0 0 0 0-1.5h-4.46a5.47 5.47 0 0 0-.68-1.5h7.14a.75.75 0 0 0 0-1.5H8.66a5.48 5.48 0 0 0-6.66.26V6.75ZM6.75 8a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM5.5 20c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 20Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const SlideSearch24Regular = /*#__PURE__*/createFluentIcon('SlideSearch24Regular', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v4.5a5.5 5.5 0 0 1 1.5-.88V6.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25v10.5c0 .69-.56 1.25-1.25 1.25h-8.28l1.5 1.5h6.78A2.75 2.75 0 0 0 22 17.25V6.75A2.75 2.75 0 0 0 19.25 4H4.75Zm3.91 7c.58.4 1.07.91 1.45 1.5h7.14a.75.75 0 0 0 0-1.5H8.66Zm6.59 4.5H11a5.5 5.5 0 0 0-.2-1.5h4.45a.75.75 0 0 1 0 1.5ZM6.75 8a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM5.5 20c.97 0 1.87-.3 2.6-.83l2.62 2.61a.75.75 0 1 0 1.06-1.06l-2.61-2.61A4.5 4.5 0 1 0 5.5 20Zm0-1.5a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z\"]);\nexport const SlideSearch28Filled = /*#__PURE__*/createFluentIcon('SlideSearch28Filled', \"28\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v6.56A6.48 6.48 0 0 1 9.97 13h10.28a.75.75 0 0 1 0 1.5h-8.63c.57.73.99 1.57 1.2 2.5h5.43a.75.75 0 0 1 0 1.5H13c0 1.16-.3 2.25-.84 3.19L14.47 24h8.28c1.8 0 3.25-1.45 3.25-3.25V7.25C26 5.45 24.55 4 22.75 4H5.25ZM7 9.75c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7 9.75Zm3.88 12.07a5.5 5.5 0 1 0-1.06 1.06l2.9 2.9a.75.75 0 1 0 1.06-1.06l-2.9-2.9Zm-.38-3.32a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const SlideSearch28Regular = /*#__PURE__*/createFluentIcon('SlideSearch28Regular', \"28\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h17.5C24.55 4 26 5.46 26 7.25v13.5c0 1.8-1.45 3.25-3.25 3.25h-8.28l-1.5-1.5h9.78c.97 0 1.75-.78 1.75-1.75V7.25c0-.97-.78-1.75-1.75-1.75H5.25c-.96 0-1.75.78-1.75 1.75v5.48c-.55.29-1.05.65-1.5 1.08V7.25Zm9.62 7.25A6.53 6.53 0 0 0 9.97 13h10.28a.75.75 0 0 1 0 1.5h-8.63Zm1.38 4h5.25a.75.75 0 0 0 0-1.5h-5.42c.11.48.17.98.17 1.5ZM7 9.75c0-.41.34-.75.75-.75h7.5a.75.75 0 0 1 0 1.5h-7.5A.75.75 0 0 1 7 9.75Zm3.88 12.07a5.5 5.5 0 1 0-1.06 1.06l2.9 2.9a.75.75 0 1 0 1.06-1.06l-2.9-2.9Zm-.38-3.32a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"]);\nexport const SlideSettings20Filled = /*#__PURE__*/createFluentIcon('SlideSettings20Filled', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h4.46A5.5 5.5 0 0 1 18 10.26V6.75A2.75 2.75 0 0 0 15.25 4H4.75Zm7.32 7.44a2 2 0 0 1-1.44 2.48l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SlideSettings20Regular = /*#__PURE__*/createFluentIcon('SlideSettings20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v3.5a5.5 5.5 0 0 0-1-.65V6.75C17 5.78 16.22 5 15.25 5H4.75C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h4.27c.03.34.1.68.19 1H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm10.07 4.7a2 2 0 0 1-1.44 2.47l-.46.12a4.73 4.73 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55Zm2.43 4.05a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SlideSettings24Filled = /*#__PURE__*/createFluentIcon('SlideSettings24Filled', \"24\", [\"M5.25 4A3.25 3.25 0 0 0 2 7.25v9.5C2 18.55 3.46 20 5.25 20h6.25A6.5 6.5 0 0 1 22 12.81V7.25C22 5.45 20.54 4 18.75 4H5.25Zm9.03 9.98a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.64c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.72 5.72 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const SlideSettings24Regular = /*#__PURE__*/createFluentIcon('SlideSettings24Regular', \"24\", [\"M2 7.25C2 5.45 3.46 4 5.25 4h13.5C20.55 4 22 5.46 22 7.25v5.56a6.52 6.52 0 0 0-1.5-1.08V7.25c0-.97-.78-1.75-1.75-1.75H5.25c-.97 0-1.75.78-1.75 1.75v9.5c0 .97.78 1.75 1.75 1.75h5.83c.08.52.22 1.03.42 1.5H5.25A3.25 3.25 0 0 1 2 16.75v-9.5Zm12.28 6.73a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.64c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.72 5.72 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const SlideSize20Filled = /*#__PURE__*/createFluentIcon('SlideSize20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5Zm9-.25c0 .28.22.5.5.5h.8l-1.65 1.65a.5.5 0 0 0 .7.7L13 7.71v.79a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5Zm-1.65 4.15a.5.5 0 0 0-.7 0L7 12.29v-.79a.5.5 0 0 0-1 0v2a.5.5 0 0 0 .5.5h2a.5.5 0 0 0 0-1h-.8l1.65-1.65a.5.5 0 0 0 0-.7Z\"]);\nexport const SlideSize20Regular = /*#__PURE__*/createFluentIcon('SlideSize20Regular', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM4.75 5C3.78 5 3 5.78 3 6.75v6.5c0 .97.78 1.75 1.75 1.75h10.5c.97 0 1.75-.78 1.75-1.75v-6.5C17 5.78 16.22 5 15.25 5H4.75ZM11 6.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-.8l-1.65 1.65a.5.5 0 0 1-.7-.7L12.29 7h-.79a.5.5 0 0 1-.5-.5Zm-2.35 4.15a.5.5 0 0 1 .7.7L7.71 13h.79a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 1 0v.8l1.65-1.65Z\"]);\nexport const SlideSize24Filled = /*#__PURE__*/createFluentIcon('SlideSize24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75Zm14.78.47a.75.75 0 0 0-.53-.22h-2.5a.75.75 0 0 0 0 1.5h.69l-1.72 1.72a.75.75 0 1 0 1.06 1.06l1.72-1.72v.69a.75.75 0 0 0 1.5 0v-2.5c0-.2-.08-.39-.22-.53ZM7.75 17h2.5a.75.75 0 0 0 0-1.5h-.69l1.72-1.72a.75.75 0 0 0-1.06-1.06L8.5 14.44v-.69a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 .75.75Z\"]);\nexport const SlideSize24Regular = /*#__PURE__*/createFluentIcon('SlideSize24Regular', \"24\", [\"M16.78 7.22c.14.14.22.33.22.53v2.5a.75.75 0 0 1-1.5 0v-.69l-1.72 1.72a.75.75 0 1 1-1.06-1.06l1.72-1.72h-.7a.75.75 0 0 1 0-1.5h2.51c.2 0 .39.08.53.22ZM7 16.25a.75.75 0 0 0 .75.75h2.5a.75.75 0 0 0 0-1.5h-.69l1.72-1.72a.75.75 0 0 0-1.06-1.06L8.5 14.44v-.69a.75.75 0 0 0-1.5 0v2.5Zm-5-9.5A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM4.75 5.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75Z\"]);\nexport const SlideText16Filled = /*#__PURE__*/createFluentIcon('SlideText16Filled', \"16\", [\"M1 5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5Zm3.5 0a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4 7.5c0 .28.22.5.5.5h6a.5.5 0 0 0 0-1h-6a.5.5 0 0 0-.5.5ZM4.5 9a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z\"], {\n flipInRtl: true\n});\nexport const SlideText16Regular = /*#__PURE__*/createFluentIcon('SlideText16Regular', \"16\", [\"M4.5 5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4 7.5c0-.28.22-.5.5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5ZM4.5 9a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM3 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H3ZM2 5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5Z\"], {\n flipInRtl: true\n});\nexport const SlideText20Filled = /*#__PURE__*/createFluentIcon('SlideText20Filled', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"], {\n flipInRtl: true\n});\nexport const SlideText20Regular = /*#__PURE__*/createFluentIcon('SlideText20Regular', \"20\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-.5 3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h11a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 4h-11ZM3 6.5C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 13.5v-7Z\"], {\n flipInRtl: true\n});\nexport const SlideText24Filled = /*#__PURE__*/createFluentIcon('SlideText24Filled', \"24\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v10.5A2.75 2.75 0 0 1 19.25 20H4.75A2.75 2.75 0 0 1 2 17.25V6.75ZM6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm0 3a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM6 14.75c0 .41.34.75.75.75h6.5a.75.75 0 0 0 0-1.5h-6.5a.75.75 0 0 0-.75.75Z\"], {\n flipInRtl: true\n});\nexport const SlideText24Regular = /*#__PURE__*/createFluentIcon('SlideText24Regular', \"24\", [\"M6.75 8a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM6 11.75c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75ZM6.75 14a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm-2-10A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM3.5 6.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25v10.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25V6.75Z\"], {\n flipInRtl: true\n});\nexport const SlideText28Filled = /*#__PURE__*/createFluentIcon('SlideText28Filled', \"28\", [\"M2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v12.5A3.75 3.75 0 0 1 22.25 24H5.75A3.75 3.75 0 0 1 2 20.25V7.75ZM7.73 9c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h5.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73ZM7 13.73v.04c0 .4.33.73.73.73h10.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73c-.4 0-.73.33-.73.73ZM7.73 17c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h7.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73Z\"], {\n flipInRtl: true\n});\nexport const SlideText28Regular = /*#__PURE__*/createFluentIcon('SlideText28Regular', \"28\", [\"M7.73 9c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h5.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73Zm0 4c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h10.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73ZM7 17.73c0-.4.33-.73.73-.73h7.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04ZM5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25V7.75A3.75 3.75 0 0 0 22.25 4H5.75ZM3.5 7.75c0-1.24 1.01-2.25 2.25-2.25h16.5c1.24 0 2.25 1 2.25 2.25v12.5c0 1.24-1 2.25-2.25 2.25H5.75c-1.24 0-2.25-1-2.25-2.25V7.75Z\"], {\n flipInRtl: true\n});\nexport const SlideText48Filled = /*#__PURE__*/createFluentIcon('SlideText48Filled', \"48\", [\"M4 12.75A4.75 4.75 0 0 1 8.75 8h30.5A4.75 4.75 0 0 1 44 12.75v22.5A4.75 4.75 0 0 1 39.25 40H8.75A4.75 4.75 0 0 1 4 35.25v-22.5Zm9.25 9.75a1.25 1.25 0 1 0 0 2.5h17.5a1.25 1.25 0 1 0 0-2.5h-17.5ZM12 30.25c0 .69.56 1.25 1.25 1.25h13.5a1.25 1.25 0 1 0 0-2.5h-13.5c-.69 0-1.25.56-1.25 1.25ZM13.25 16a1.25 1.25 0 1 0 0 2.5h9.5a1.25 1.25 0 1 0 0-2.5h-9.5Z\"], {\n flipInRtl: true\n});\nexport const SlideText48Regular = /*#__PURE__*/createFluentIcon('SlideText48Regular', \"48\", [\"M12 17.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25Zm1.25 5.25a1.25 1.25 0 1 0 0 2.5h17.5a1.25 1.25 0 1 0 0-2.5h-17.5Zm0 6.5a1.25 1.25 0 1 0 0 2.5h13.5a1.25 1.25 0 1 0 0-2.5h-13.5ZM8.75 8A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40h30.5A4.75 4.75 0 0 0 44 35.25v-22.5A4.75 4.75 0 0 0 39.25 8H8.75ZM6.5 12.75c0-1.24 1-2.25 2.25-2.25h30.5c1.24 0 2.25 1 2.25 2.25v22.5c0 1.24-1 2.25-2.25 2.25H8.75c-1.24 0-2.25-1-2.25-2.25v-22.5Z\"], {\n flipInRtl: true\n});\nexport const SlideTextEdit16Filled = /*#__PURE__*/createFluentIcon('SlideTextEdit16Filled', \"16\", [\"M3 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h3.22l.21-.84a3.2 3.2 0 0 1 .84-1.49l.67-.67H4.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 .32.12L9.94 8H4.5a.5.5 0 0 1 0-1h6a.5.5 0 0 1 .32.12l1.28-1.28a2.87 2.87 0 0 1 2.9-.7V5a2 2 0 0 0-2-2H3Zm1 2.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5Zm3.98 5.88 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextEdit16Regular = /*#__PURE__*/createFluentIcon('SlideTextEdit16Regular', \"16\", [\"M4 5.5c0-.28.22-.5.5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5ZM4.5 7a.5.5 0 0 0 0 1h5.44l.88-.88A.5.5 0 0 0 10.5 7h-6ZM14 5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h3.47l-.04.16-.21.84H3a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v.13c-.32-.1-.66-.14-1-.13ZM8.82 9.12l-.88.88H4.5a.5.5 0 0 1 0-1h4a.5.5 0 0 1 .32.12Zm-.84 2.26 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextEdit20Filled = /*#__PURE__*/createFluentIcon('SlideTextEdit20Filled', \"20\", [\"M2 6.5A2.5 2.5 0 0 1 4.5 4h11A2.5 2.5 0 0 1 18 6.5v2.63a2.87 2.87 0 0 0-2.9.71l-4.83 4.83a3.2 3.2 0 0 0-.8 1.33H4.5A2.5 2.5 0 0 1 2 13.5v-7Zm3.5.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 10c0 .28.22.5.5.5h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0-.5.5Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm5.48 3.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextEdit20Regular = /*#__PURE__*/createFluentIcon('SlideTextEdit20Regular', \"20\", [\"M5.5 7a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm0 2.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7Zm-.5 3c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h4.97c.11-.36.29-.7.52-1H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5V9c.34-.01.68.03 1 .13V6.5A2.5 2.5 0 0 0 15.5 4h-11Zm6.48 11.38 4.83-4.83a1.87 1.87 0 1 1 2.64 2.64l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.07l.37-1.5c.1-.39.3-.74.58-1.02Z\"]);\nexport const SlideTextEdit24Filled = /*#__PURE__*/createFluentIcon('SlideTextEdit24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h6.67l.1-.42c.16-.65.5-1.24.97-1.72l5.9-5.9a3.29 3.29 0 0 1 3.61-.7V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75Zm0 3c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm.75 3.75a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5h-6.5Zm12.35-2.83-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const SlideTextEdit24Regular = /*#__PURE__*/createFluentIcon('SlideTextEdit24Regular', \"24\", [\"M6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75ZM6.75 11a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM6 14.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm-4-8A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75v4.51c-.48-.2-1-.29-1.5-.25V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h7.23c-.2.33-.36.7-.46 1.08l-.1.42H4.75A2.75 2.75 0 0 1 2 17.25V6.75Zm17.1 5.92-5.9 5.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const SlideTextEdit28Filled = /*#__PURE__*/createFluentIcon('SlideTextEdit28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h7.67l.1-.42c.16-.65.5-1.24.97-1.72l7.9-7.9a3.29 3.29 0 0 1 3.61-.7V7.75A3.75 3.75 0 0 0 22.25 4H5.75ZM7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4.04v-.04c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73Zm0 3.96c0-.4.33-.73.73-.73h7.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04Zm16.1-3.06-7.9 7.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l7.9-7.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const SlideTextEdit28Regular = /*#__PURE__*/createFluentIcon('SlideTextEdit28Regular', \"28\", [\"M7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04ZM7.73 17c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h7.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73ZM2 7.75A3.75 3.75 0 0 1 5.75 4h16.5A3.75 3.75 0 0 1 26 7.75v5.51c-.48-.2-1-.29-1.5-.25V7.75c0-1.24-1-2.25-2.25-2.25H5.75c-1.24 0-2.25 1-2.25 2.25v12.5c0 1.24 1.01 2.25 2.25 2.25h8.23c-.2.33-.36.7-.46 1.08l-.1.42H5.75A3.75 3.75 0 0 1 2 20.25V7.75Zm21.1 6.92-7.9 7.9c-.35.35-.6.78-.7 1.25l-.47 1.83c-.2.8.53 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l7.9-7.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const SlideTextMultiple16Filled = /*#__PURE__*/createFluentIcon('SlideTextMultiple16Filled', \"16\", [\"M1.5 4.5A2.5 2.5 0 0 1 4 2h6.5A2.5 2.5 0 0 1 13 4.5v5a2.5 2.5 0 0 1-2.5 2.5H4a2.5 2.5 0 0 1-2.5-2.5v-5Zm3-.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM4 8.5c0 .28.22.5.5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5Zm6.5 4.5A3.5 3.5 0 0 0 14 9.5V3.67c.63.77 1 1.76 1 2.83v3a4.5 4.5 0 0 1-4.5 4.5h-4a4.48 4.48 0 0 1-2.83-1h6.83Z\"]);\nexport const SlideTextMultiple16Regular = /*#__PURE__*/createFluentIcon('SlideTextMultiple16Regular', \"16\", [\"M4.5 4a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4 6.5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM4.5 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm-3-3.5A2.5 2.5 0 0 1 4 2h6.5A2.5 2.5 0 0 1 13 4.5v5a2.5 2.5 0 0 1-2.5 2.5H4a2.5 2.5 0 0 1-2.5-2.5v-5ZM4 3c-.83 0-1.5.67-1.5 1.5v5c0 .83.67 1.5 1.5 1.5h6.5c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5H4Zm10 6.5a3.5 3.5 0 0 1-3.5 3.5H3.67c.77.63 1.76 1 2.83 1h4A4.5 4.5 0 0 0 15 9.5v-3c0-1.07-.37-2.06-1-2.83V9.5Z\"]);\nexport const SlideTextMultiple20Filled = /*#__PURE__*/createFluentIcon('SlideTextMultiple20Filled', \"20\", [\"M13.5 15a2.5 2.5 0 0 0 2.5-2.5v-7c0-.1 0-.19-.02-.28A2.5 2.5 0 0 0 13.5 3h-9A2.5 2.5 0 0 0 2 5.5v7A2.51 2.51 0 0 0 4.48 15h9.02Zm-8-9h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1Zm0 2.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1Zm-.5 3c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM6.5 17a2.5 2.5 0 0 1-2-1h9a3.5 3.5 0 0 0 3.5-3.5v-7c.6.46 1 1.18 1 2v5a4.5 4.5 0 0 1-4.5 4.5h-7Z\"]);\nexport const SlideTextMultiple20Regular = /*#__PURE__*/createFluentIcon('SlideTextMultiple20Regular', \"20\", [\"M5.5 6a.5.5 0 1 0 0 1h4a.5.5 0 0 0 0-1h-4ZM5 9c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 9Zm.5 2a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM16 5.5A2.5 2.5 0 0 0 13.5 3h-9A2.5 2.5 0 0 0 2 5.5v7A2.5 2.5 0 0 0 4.5 15h9a2.5 2.5 0 0 0 2.5-2.5v-7Zm-13 7v-7C3 4.67 3.67 4 4.5 4h9c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-9A1.5 1.5 0 0 1 3 12.5ZM6.5 17a2.5 2.5 0 0 1-2-1h9a3.5 3.5 0 0 0 3.5-3.5v-7c.6.46 1 1.18 1 2v5a4.5 4.5 0 0 1-4.5 4.5h-7Z\"]);\nexport const SlideTextMultiple24Filled = /*#__PURE__*/createFluentIcon('SlideTextMultiple24Filled', \"24\", [\"M17 4a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h12ZM6.75 7.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm0 3a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM6 14.25c0 .41.34.75.75.75h4.5a.75.75 0 0 0 0-1.5h-4.5a.75.75 0 0 0-.75.75Zm15-6.74c.9.58 1.5 1.59 1.5 2.74v6c0 2.9-2.35 5.25-5.25 5.25h-9c-1.15 0-2.16-.6-2.74-1.5h11.74A3.75 3.75 0 0 0 21 16.25V7.51Z\"]);\nexport const SlideTextMultiple24Regular = /*#__PURE__*/createFluentIcon('SlideTextMultiple24Regular', \"24\", [\"M6.75 7.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5ZM6 11.25c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM5.25 4h11.5a3.25 3.25 0 0 1 3.24 3.07l.01.18v8.5a3.25 3.25 0 0 1-3.07 3.24l-.18.01H5.25a3.25 3.25 0 0 1-3.24-3.07L2 15.75v-8.5a3.25 3.25 0 0 1 3.07-3.24L5.25 4ZM3.5 7.2v8.55c0 .92.7 1.67 1.6 1.74l.15.01h11.5c.92 0 1.67-.7 1.74-1.6l.01-.15V7.2c-.03-.94-.8-1.7-1.75-1.7H5.25c-.92 0-1.67.7-1.74 1.6v.1H3.5Zm17.5.31c.9.58 1.5 1.59 1.5 2.74v6c0 2.9-2.35 5.25-5.25 5.25h-9c-1.15 0-2.16-.6-2.74-1.5h11.74A3.75 3.75 0 0 0 21 16.25V7.51Z\"]);\nexport const SlideTextMultiple32Filled = /*#__PURE__*/createFluentIcon('SlideTextMultiple32Filled', \"32\", [\"M6.5 4A4.5 4.5 0 0 0 2 8.5v11A4.5 4.5 0 0 0 6.5 24h15a4.5 4.5 0 0 0 4.5-4.5v-11A4.5 4.5 0 0 0 21.5 4h-15ZM8 9h7a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2Zm0 4h12a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2Zm-1 5a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm21 3a5 5 0 0 1-5 5H7.1c1.26 1.24 3 2 4.9 2h11a7 7 0 0 0 7-7v-7c0-1.9-.76-3.64-2-4.9V21Z\"]);\nexport const SlideTextMultiple32Regular = /*#__PURE__*/createFluentIcon('SlideTextMultiple32Regular', \"32\", [\"M8 9a1 1 0 1 0 0 2h7a1 1 0 1 0 0-2H8Zm-1 5a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H8ZM2 8.5A4.5 4.5 0 0 1 6.5 4h15A4.5 4.5 0 0 1 26 8.5v11a4.5 4.5 0 0 1-4.5 4.5h-15A4.5 4.5 0 0 1 2 19.5v-11ZM6.5 6A2.5 2.5 0 0 0 4 8.5v11A2.5 2.5 0 0 0 6.5 22h15a2.5 2.5 0 0 0 2.5-2.5v-11A2.5 2.5 0 0 0 21.5 6h-15ZM28 21a5 5 0 0 1-5 5H7.1c1.26 1.24 3 2 4.9 2h11a7 7 0 0 0 7-7v-7c0-1.9-.76-3.64-2-4.9V21Z\"]);\nexport const SlideTextPerson16Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson16Filled', \"16\", [\"M3.5 3A2.5 2.5 0 0 0 1 5.5v5A2.5 2.5 0 0 0 3.5 13h4.54a2.5 2.5 0 0 1 2.23-2.99A2.99 2.99 0 0 1 9.5 8h-5a.5.5 0 0 1 0-1h5.17A3 3 0 0 1 15 6.34V5.5A2.5 2.5 0 0 0 12.5 3h-9Zm1 2h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1Zm0 4h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1 0-1Zm10-1a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S9 13.75 9 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextPerson16Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson16Regular', \"16\", [\"M1 5.5A2.5 2.5 0 0 1 3.5 3h9A2.5 2.5 0 0 1 15 5.5v.84c-.26-.39-.6-.7-1-.94A1.5 1.5 0 0 0 12.5 4h-9C2.67 4 2 4.67 2 5.5v5c0 .83.67 1.5 1.5 1.5h4.55a2.51 2.51 0 0 0-.01 1H3.5A2.5 2.5 0 0 1 1 10.5v-5ZM9.67 7a3 3 0 0 0-.17 1h-5a.5.5 0 0 1 0-1h5.17ZM4.5 5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 4a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Zm10-1a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S9 13.75 9 12.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextPerson20Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson20Filled', \"20\", [\"M4.5 4A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h6.54a2.5 2.5 0 0 1 2.23-2.99 2.99 2.99 0 0 1-.73-2.51H5.5a.5.5 0 0 1 0-1h7a.5.5 0 0 1 .33.13A3 3 0 0 1 18 9.34V6.5A2.5 2.5 0 0 0 15.5 4h-11ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Zm0 5c0-.28.22-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5ZM17.5 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 16.75 12 15.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextPerson20Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson20Regular', \"20\", [\"M5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 .33.13c-.14.27-.24.56-.29.87H5.5A.5.5 0 0 1 5 10Zm6.05 5H4.5A1.5 1.5 0 0 1 3 13.5v-7C3 5.67 3.67 5 4.5 5h11c.83 0 1.5.67 1.5 1.5v1.9c.4.23.74.56 1 .94V6.5A2.5 2.5 0 0 0 15.5 4h-11A2.5 2.5 0 0 0 2 6.5v7A2.5 2.5 0 0 0 4.5 16h6.54a3.3 3.3 0 0 1 .01-1ZM5.5 12a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm12-1a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm1.5 4.5c0 1.25-1 2.5-3.5 2.5S12 16.75 12 15.5c0-.83.67-1.5 1.5-1.5h4c.83 0 1.5.67 1.5 1.5Z\"]);\nexport const SlideTextPerson24Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20H13a4 4 0 0 1 0-.13v-.1A2.77 2.77 0 0 1 15.77 17h.28a3.49 3.49 0 0 1-.42-4.5H6.75a.75.75 0 0 1 0-1.5h9c.37 0 .69.27.74.63A3.5 3.5 0 0 1 21.96 14H22V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75Zm.75 6.75a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5h-6.5Zm14.25-1a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const SlideTextPerson24Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson24Regular', \"24\", [\"M6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75ZM6.75 11a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM6 14.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm-4-8A2.75 2.75 0 0 1 4.75 4h14.5A2.75 2.75 0 0 1 22 6.75V14h-.04a3.5 3.5 0 0 0-1.46-2.37V6.75c0-.69-.56-1.25-1.25-1.25H4.75c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h8.56c-.2.38-.31.81-.31 1.27v.1a4 4 0 0 0 0 .13H4.75A2.75 2.75 0 0 1 2 17.25V6.75Zm19 7.75a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2 5.38c0 1.55-1.29 3.12-4.5 3.12S14 21.44 14 19.87v-.1c0-.98.8-1.77 1.77-1.77h5.46c.98 0 1.77.8 1.77 1.77v.1Z\"]);\nexport const SlideTextPerson28Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson28Filled', \"28\", [\"M5.75 4A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h9.32c-.05-.25-.07-.5-.07-.75v-.2A3.04 3.04 0 0 1 18.05 20h.8a3.99 3.99 0 0 1-.47-5.5H7.73a.73.73 0 0 1-.73-.73v-.04c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.15A4 4 0 0 1 25.5 17h.5V7.75A3.75 3.75 0 0 0 22.25 4H5.75ZM7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 8c0-.4.33-.73.73-.73h7.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04ZM24.5 17a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const SlideTextPerson28Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson28Regular', \"28\", [\"M7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.15c-.23.18-.44.39-.62.61l-.1.01H7.72a.73.73 0 0 1-.73-.73v-.04Zm8.05 8.77h-9.3c-1.24 0-2.25-1-2.25-2.25V7.75c0-1.24 1.01-2.25 2.25-2.25h16.5c1.24 0 2.25 1 2.25 2.25v6.6c.62.71 1 1.64 1 2.65h.5V7.75A3.75 3.75 0 0 0 22.25 4H5.75A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h9.32c-.05-.25-.07-.5-.07-.75v-.2c0-.2.02-.37.05-.55ZM7.73 17c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h7.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73Zm16.77 0a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm2.5 6.25c0 1.87-1.57 3.75-5.5 3.75-3.93 0-5.5-1.88-5.5-3.75v-.2c0-1.13.92-2.05 2.05-2.05h6.9c1.13 0 2.05.92 2.05 2.04v.21Z\"]);\nexport const SlideTextPerson32Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson32Filled', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5V18h-.02a5 5 0 0 0-8.62-2.93A1 1 0 0 0 21 15H9a1 1 0 1 0 0 2h11.23a5 5 0 0 0 1.2 5h-.01a3.93 3.93 0 0 0-3.92 3.94c0 .7.15 1.4.45 2.06H6.5A4.5 4.5 0 0 1 2 23.5v-15ZM8 11a1 1 0 0 0 1 1h7a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1Zm0 10a1 1 0 0 0 1 1h9a1 1 0 1 0 0-2H9a1 1 0 0 0-1 1Zm20.5-2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm2.5 7.44c0 2.02-1.71 4.06-6 4.06s-6-2.03-6-4.06a2.43 2.43 0 0 1 2.42-2.44h7.16c1.34 0 2.42 1.1 2.42 2.44Z\"]);\nexport const SlideTextPerson32Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson32Regular', \"32\", [\"M2 8.5A4.5 4.5 0 0 1 6.5 4h19A4.5 4.5 0 0 1 30 8.5V18h-.02A5 5 0 0 0 28 14.5v-6A2.5 2.5 0 0 0 25.5 6h-19A2.5 2.5 0 0 0 4 8.5v15A2.5 2.5 0 0 0 6.5 26h11c0 .68.15 1.36.45 2H6.5A4.5 4.5 0 0 1 2 23.5v-15ZM21 15a1 1 0 0 1 .36.07A5 5 0 0 0 20.23 17H9a1 1 0 1 1 0-2h12ZM8 11a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 9a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2H9Zm19.5-1.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm2.5 7.44c0 2.02-1.71 4.06-6 4.06s-6-2.03-6-4.06a2.43 2.43 0 0 1 2.42-2.44h7.16c1.34 0 2.42 1.1 2.42 2.44Z\"]);\nexport const SlideTextPerson48Filled = /*#__PURE__*/createFluentIcon('SlideTextPerson48Filled', \"48\", [\"M8.75 8A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40h17.27a7.83 7.83 0 0 1-.02-.5V39a5 5 0 0 1 5-5h1.1a6.98 6.98 0 0 1-.73-9.17c-.18.1-.4.17-.62.17h-17.5a1.25 1.25 0 1 1 0-2.5h17.5a1.25 1.25 0 0 1 1.17 1.68A7 7 0 0 1 44 29V12.75A4.75 4.75 0 0 0 39.25 8H8.75Zm4.5 23.5a1.25 1.25 0 1 1 0-2.5h13.5a1.25 1.25 0 1 1 0 2.5h-13.5ZM12 17.25c0-.69.56-1.25 1.25-1.25h9.5a1.25 1.25 0 1 1 0 2.5h-9.5c-.69 0-1.25-.56-1.25-1.25ZM42 29a5 5 0 1 1-10 0 5 5 0 0 1 10 0Zm4 10.5c0 3.5-3.15 6.5-9 6.5s-9-3-9-6.5V39a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v.5Z\"]);\nexport const SlideTextPerson48Regular = /*#__PURE__*/createFluentIcon('SlideTextPerson48Regular', \"48\", [\"M13.25 16a1.25 1.25 0 1 0 0 2.5h9.5a1.25 1.25 0 1 0 0-2.5h-9.5ZM12 23.75c0-.69.56-1.25 1.25-1.25h17.5a1.25 1.25 0 0 1 1.17 1.68c-.2.2-.38.42-.55.65-.18.1-.4.17-.62.17h-17.5c-.69 0-1.25-.56-1.25-1.25ZM26.23 37.5H8.75c-1.24 0-2.25-1-2.25-2.25v-22.5c0-1.24 1-2.25 2.25-2.25h30.5c1.24 0 2.25 1 2.25 2.25v10.89A6.98 6.98 0 0 1 44 29V12.75A4.75 4.75 0 0 0 39.25 8H8.75A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40h17.27a7.83 7.83 0 0 1-.02-.5V39a5 5 0 0 1 .23-1.5ZM12 30.25c0-.69.56-1.25 1.25-1.25h13.5a1.25 1.25 0 1 1 0 2.5h-13.5c-.69 0-1.25-.56-1.25-1.25ZM42 29a5 5 0 1 1-10 0 5 5 0 0 1 10 0Zm4 10.5c0 3.5-3.15 6.5-9 6.5s-9-3-9-6.5V39a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v.5Z\"]);\nexport const SlideTextSparkle16Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle16Filled', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02Zm-3.02 3.56c.21.15.47.23.74.23s.53-.05.75-.21c.22-.16.38-.37.48-.65l.25-.76.02-.06V11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.09a1.42 1.42 0 0 0 .17 1.32c.17.24.41.43.71.53l.46.15H4.5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .34-.86l.2.06c.14.05.28.13.46.29.11.11.2.24.3.47L9.13 7H4.5a.5.5 0 0 0 0 1h5.6a1.31 1.31 0 0 0 .14 1.26c.16.22.38.38.65.48l.77.25c.08.03.16.08.22.14.07.06.1.14.14.22l.26.8c.1.25.26.46.48.62ZM4 9.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Z\"]);\nexport const SlideTextSparkle16Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle16Regular', \"16\", [\"m10.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.2 2.2 0 0 0-1.4-1.4L7.28 3.9a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02Zm-2.55 3.76.27.03c.27 0 .53-.05.75-.21.22-.16.38-.37.48-.65l.25-.76.02-.06V11a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.09a1.42 1.42 0 0 0 0 1H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h10a1 1 0 0 0 .23-.03ZM9.13 7l.02.05c.1.25.25.48.52.7.14.1.3.16.45.2L10.1 8H4.5a.5.5 0 0 1 0-1h4.64Zm-1.7-2 .41.14A.5.5 0 0 1 7.5 6h-3a.5.5 0 0 1 0-1h2.93ZM4 9.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5Z\"]);\nexport const SlideTextSparkle20Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle20Filled', \"20\", [\"m14.88 1.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02Zm-3.02 3.56c.21.15.47.23.74.23.17 0 .34-.02.5-.08v.58a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h5.59a1.42 1.42 0 0 0 .17 1.32c.17.24.41.43.71.53l1.06.35c.15.05.3.13.47.29.11.11.2.24.3.47l.35 1.1c.1.24.25.47.52.68.14.1.3.17.45.21a1.3 1.3 0 0 0 .77 1.79l.77.25c.08.03.16.08.22.14.07.06.1.14.14.22l.26.8c.1.25.26.46.48.62ZM5 7.5c0 .28.22.5.5.5h4a.5.5 0 0 0 0-1h-4a.5.5 0 0 0-.5.5Zm.5 3h7a.5.5 0 0 0 0-1h-7a.5.5 0 0 0 0 1Zm-.5 2c0 .28.22.5.5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5Z\"]);\nexport const SlideTextSparkle20Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle20Regular', \"20\", [\"m14.88 1.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM17 12.91c.16.06.33.09.5.09.17 0 .34-.02.5-.08v.58a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 13.5v-7A2.5 2.5 0 0 1 4.5 4h5.59a1.42 1.42 0 0 0 0 1H4.5C3.67 5 3 5.67 3 6.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-.6ZM5 7.5c0-.28.22-.5.5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5ZM5 10c0-.28.22-.5.5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 5 10Zm.5 2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const SlideTextSparkle24Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle24Filled', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM12.06 4H4.75A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25v-3.32a1.3 1.3 0 0 1-1.29-.12c-.23-.16-.4-.39-.49-.65l-.24-.76a.59.59 0 0 0-.14-.23.74.74 0 0 0-.22-.14l-.79-.25a1.3 1.3 0 0 1-.69-1.9c-.21.12-.44.17-.68.17-.32 0-.63-.1-.89-.28-.27-.2-.46-.46-.57-.77l-.41-1.45c-.07-.2-.16-.38-.29-.55l-.18-.1c-.2-.2-.45-.35-.72-.44L13 6c-.3-.13-.55-.36-.72-.64a1.57 1.57 0 0 1-.2-1.36ZM6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75Zm0 3c0-.41.34-.75.75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Zm.75 3.75a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5h-6.5Z\"]);\nexport const SlideTextSparkle24Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle24Regular', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM12.06 4H4.75A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25v-3.32a1.3 1.3 0 0 1-1.5-.3v3.62c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25V6.75c0-.69.56-1.25 1.25-1.25h7.62l-.09-.14a1.57 1.57 0 0 1-.2-1.36ZM6 8.75c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 6 8.75ZM6.75 11a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5ZM6 14.75c0-.41.34-.75.75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Z\"]);\nexport const SlideTextSparkle28Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle28Filled', \"28\", [\"M18.17 6.83a3.16 3.16 0 0 1 .76 1.24l.5 1.53a.6.6 0 0 0 1.14 0l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.96 1.96l-1.53.5a.6.6 0 0 0 0 1.14l1.53.5c.47.15.9.41 1.24.76Zm8.65 3.53.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM14.37 4H5.75A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25v-5.69a1.37 1.37 0 0 1-1.8.18c-.23-.16-.4-.4-.5-.67l-.3-.92a.87.87 0 0 0-.21-.35.85.85 0 0 0-.34-.21l-.94-.31a1.3 1.3 0 0 1-.66-.49 1.34 1.34 0 0 1-.19-1.17l-.13.1a1.64 1.64 0 0 1-1.86 0 1.7 1.7 0 0 1-.6-.79l-.5-1.53a2 2 0 0 0-.51-.85 2.25 2.25 0 0 0-.83-.52l-1.56-.5c-.31-.11-.58-.32-.77-.6a1.58 1.58 0 0 1 .07-1.93ZM7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4.04v-.04c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73Zm0 3.96c0-.4.33-.73.73-.73h7.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04Z\"]);\nexport const SlideTextSparkle28Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle28Regular', \"28\", [\"M18.17 6.83a3.16 3.16 0 0 1 .76 1.24l.5 1.53a.6.6 0 0 0 1.14 0l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.96 1.96l-1.53.5a.6.6 0 0 0 0 1.14l1.53.5c.47.15.9.41 1.24.76Zm8.65 3.53.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM14.37 4H5.75A3.75 3.75 0 0 0 2 7.75v12.5A3.75 3.75 0 0 0 5.75 24h16.5A3.75 3.75 0 0 0 26 20.25v-5.69a1.37 1.37 0 0 1-1.5.34v5.35c0 1.24-1 2.25-2.25 2.25H5.75c-1.24 0-2.25-1-2.25-2.25V7.75c0-1.24 1.01-2.25 2.25-2.25h8.33a1.58 1.58 0 0 1 .29-1.5ZM7 9.73c0-.4.33-.73.73-.73h5.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73A.73.73 0 0 1 7 9.77v-.04Zm0 4c0-.4.33-.73.73-.73h10.54c.4 0 .73.33.73.73v.04c0 .4-.33.73-.73.73H7.73a.73.73 0 0 1-.73-.73v-.04ZM7.73 17c-.4 0-.73.33-.73.73v.04c0 .4.33.73.73.73h7.54c.4 0 .73-.33.73-.73v-.04c0-.4-.33-.73-.73-.73H7.73Z\"]);\nexport const SlideTextSparkle32Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle32Filled', \"32\", [\"M21.49 7.51a3.49 3.49 0 0 1 .84 1.36l.54 1.69a.66.66 0 0 0 1.26 0l.54-1.69a3.47 3.47 0 0 1 2.2-2.2l1.69-.54a.67.67 0 0 0 0-1.25l-.04-.01-1.68-.55a3.47 3.47 0 0 1-2.2-2.2L24.1.45a.66.66 0 0 0-1.25 0l-.55 1.69-.01.04a3.47 3.47 0 0 1-2.15 2.15l-1.69.55a.67.67 0 0 0 0 1.25l1.69.55c.51.17.98.46 1.36.84Zm9.33 4.85.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM17.1 4H6.5A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h19a4.5 4.5 0 0 0 4.5-4.5v-6.26a1.89 1.89 0 0 1-2.04-.08 2 2 0 0 1-.69-.94l-.3-.91a.29.29 0 0 0-.09-.15.41.41 0 0 0-.14-.1l-1-.31A1.85 1.85 0 0 1 24.5 13c0-.33.1-.64.25-.91a2.16 2.16 0 0 1-3.3-1.08l-.55-1.7a1.8 1.8 0 0 0-.39-.67c-.04-.04-.08-.07-.08-.1a1.93 1.93 0 0 0-.77-.48l-1.71-.56a2.17 2.17 0 0 1-1.45-2 2.18 2.18 0 0 1 .6-1.5ZM8 10a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 9h8a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2Zm-1-4a1 1 0 0 1 1-1h13a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Z\"]);\nexport const SlideTextSparkle32Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle32Regular', \"32\", [\"M21.49 7.51a3.49 3.49 0 0 1 .84 1.36l.54 1.69a.66.66 0 0 0 1.26 0l.54-1.69a3.47 3.47 0 0 1 2.2-2.2l1.69-.54a.67.67 0 0 0 0-1.25l-.04-.01-1.68-.55a3.47 3.47 0 0 1-2.2-2.2L24.1.45a.66.66 0 0 0-1.25 0l-.55 1.69-.01.04a3.47 3.47 0 0 1-2.15 2.15l-1.69.55a.67.67 0 0 0 0 1.25l1.69.55c.51.17.98.46 1.36.84Zm9.33 4.85.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM17.1 4H6.5A4.5 4.5 0 0 0 2 8.5v15A4.5 4.5 0 0 0 6.5 28h19a4.5 4.5 0 0 0 4.5-4.5v-6.26a1.89 1.89 0 0 1-2-.05v6.31a2.5 2.5 0 0 1-2.5 2.5h-19A2.5 2.5 0 0 1 4 23.5v-15A2.5 2.5 0 0 1 6.5 6h10.07a2.18 2.18 0 0 1-.07-.5 2.18 2.18 0 0 1 .6-1.5ZM9 9a1 1 0 0 0 0 2h6a1 1 0 1 0 0-2H9ZM8 20a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1-6a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H9Z\"]);\nexport const SlideTextSparkle48Filled = /*#__PURE__*/createFluentIcon('SlideTextSparkle48Filled', \"48\", [\"M32.83 13.11a5.36 5.36 0 0 0-2.54-1.8l-2.6-.85a1.03 1.03 0 0 1 0-1.94l2.6-.84a5.36 5.36 0 0 0 3.32-3.33l.02-.06.85-2.6a1.03 1.03 0 0 1 1.94 0l.84 2.6a5.36 5.36 0 0 0 3.4 3.39l2.6.84.05.02a1.03 1.03 0 0 1 0 1.94l-2.6.84a5.36 5.36 0 0 0-3.4 3.4l-.84 2.6-.03.06a1.03 1.03 0 0 1-1.9-.07l-.86-2.6a5.35 5.35 0 0 0-.85-1.6Zm14.78 6.87-1.38-.44a2.84 2.84 0 0 1-1.8-1.8L44 16.36a.54.54 0 0 0-1.03 0l-.45 1.38a2.84 2.84 0 0 1-1.77 1.8l-1.38.44a.54.54 0 0 0 0 1.03l1.38.45c.15.05.3.11.44.18v.02a2.84 2.84 0 0 1 1.36 1.61l.45 1.38a.54.54 0 0 0 1 .04v-.01a.5.5 0 0 0 .02-.04l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03ZM25.4 8A3 3 0 0 0 27 12.35l2.65.86a3.28 3.28 0 0 1 2.17 2.11l.84 2.59a3 3 0 0 0 4.59 1.51c-.14.31-.22.66-.22 1a2.55 2.55 0 0 0 1.7 2.4l1.42.46.12.06a.86.86 0 0 1 .4.48l.44 1.37c.14.54.45 1 .89 1.35a2.55 2.55 0 0 0 2 .41v8.3A4.75 4.75 0 0 1 39.25 40H8.75A4.75 4.75 0 0 1 4 35.25v-22.5A4.75 4.75 0 0 1 8.75 8h16.66ZM12 23.75c0 .69.56 1.25 1.25 1.25h17.5a1.25 1.25 0 1 0 0-2.5h-17.5c-.69 0-1.25.56-1.25 1.25Zm1.25 7.75h13.5a1.25 1.25 0 1 0 0-2.5h-13.5a1.25 1.25 0 1 0 0 2.5ZM12 17.25c0 .69.56 1.25 1.25 1.25h9.5a1.25 1.25 0 1 0 0-2.5h-9.5c-.69 0-1.25.56-1.25 1.25Z\"]);\nexport const SlideTextSparkle48Regular = /*#__PURE__*/createFluentIcon('SlideTextSparkle48Regular', \"48\", [\"M32.83 13.11a5.36 5.36 0 0 0-2.54-1.8l-2.6-.85a1.03 1.03 0 0 1 0-1.94l2.6-.84a5.36 5.36 0 0 0 3.32-3.33l.02-.06.85-2.6a1.03 1.03 0 0 1 1.94 0l.84 2.6a5.36 5.36 0 0 0 3.4 3.39l2.6.84.05.02a1.03 1.03 0 0 1 0 1.94l-2.6.84a5.36 5.36 0 0 0-3.4 3.4l-.84 2.6-.03.06a1.03 1.03 0 0 1-1.9-.07l-.86-2.6a5.35 5.35 0 0 0-.85-1.6Zm14.78 6.87-1.38-.44a2.84 2.84 0 0 1-1.8-1.8L44 16.36a.54.54 0 0 0-1.03 0l-.45 1.38a2.84 2.84 0 0 1-1.77 1.8l-1.38.44a.54.54 0 0 0 0 1.03l1.38.45c.15.05.3.11.44.18v.02a2.84 2.84 0 0 1 1.36 1.61l.45 1.38a.54.54 0 0 0 1 .04v-.01a.5.5 0 0 0 .02-.04l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03ZM25.4 8H8.75A4.75 4.75 0 0 0 4 12.75v22.5A4.75 4.75 0 0 0 8.75 40h30.5A4.75 4.75 0 0 0 44 35.25v-8.3a2.55 2.55 0 0 1-2-.4c-.2-.16-.36-.34-.5-.53v9.23c0 1.24-1 2.25-2.25 2.25H8.75c-1.24 0-2.25-1-2.25-2.25v-22.5c0-1.24 1-2.25 2.25-2.25h16.41a3.07 3.07 0 0 1-.13-1.45A3 3 0 0 1 25.41 8Zm-12.16 8a1.25 1.25 0 1 0 0 2.5h9.5a1.25 1.25 0 1 0 0-2.5h-9.5ZM12 23.75c0-.69.56-1.25 1.25-1.25h17.5a1.25 1.25 0 1 1 0 2.5h-17.5c-.69 0-1.25-.56-1.25-1.25Zm0 6.5c0-.69.56-1.25 1.25-1.25h13.5a1.25 1.25 0 1 1 0 2.5h-13.5c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const SlideTransition20Filled = /*#__PURE__*/createFluentIcon('SlideTransition20Filled', \"20\", [\"M2 6.75A2.75 2.75 0 0 1 4.75 4h10.5A2.75 2.75 0 0 1 18 6.75v6.5A2.75 2.75 0 0 1 15.25 16H4.75A2.75 2.75 0 0 1 2 13.25v-6.5ZM6 5H5v10h1V5Zm3 0H8v10h1V5Zm3 0v10h1V5h-1Z\"]);\nexport const SlideTransition20Regular = /*#__PURE__*/createFluentIcon('SlideTransition20Regular', \"20\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v6.5A2.75 2.75 0 0 0 4.75 16h10.5A2.75 2.75 0 0 0 18 13.25v-6.5A2.75 2.75 0 0 0 15.25 4H4.75ZM12 5v10H9V5h3Zm1 10V5h2.25c.97 0 1.75.78 1.75 1.75v6.5c0 .97-.78 1.75-1.75 1.75H13Zm-5 0H6V5h2v10ZM5 5v10h-.25C3.78 15 3 14.22 3 13.25v-6.5C3 5.78 3.78 5 4.75 5H5Z\"]);\nexport const SlideTransition24Filled = /*#__PURE__*/createFluentIcon('SlideTransition24Filled', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM6.5 5.5v13H5v-13h1.5Zm4 13H9v-13h1.5v13Zm5 0H14v-13h1.5v13Z\"]);\nexport const SlideTransition24Regular = /*#__PURE__*/createFluentIcon('SlideTransition24Regular', \"24\", [\"M4.75 4A2.75 2.75 0 0 0 2 6.75v10.5A2.75 2.75 0 0 0 4.75 20h14.5A2.75 2.75 0 0 0 22 17.25V6.75A2.75 2.75 0 0 0 19.25 4H4.75ZM3.5 6.75c0-.69.56-1.25 1.25-1.25H5v13h-.25c-.69 0-1.25-.56-1.25-1.25V6.75Zm3 11.75v-13H9v13H6.5Zm7.5 0h-3.5v-13H14v13Zm1.5 0v-13h3.75c.69 0 1.25.56 1.25 1.25v10.5c0 .69-.56 1.25-1.25 1.25H15.5Z\"]);\nexport const Smartwatch20Filled = /*#__PURE__*/createFluentIcon('Smartwatch20Filled', \"20\", [\"M8 2a2 2 0 0 0-2 2v.17A3 3 0 0 1 7 4h6a3 3 0 0 1 1 .17V4a2 2 0 0 0-2-2H8ZM7 5a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1V7a2 2 0 0 0-2-2H7Zm0 11a3 3 0 0 1-1-.17V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-.17a3 3 0 0 1-1 .17H7Z\"]);\nexport const Smartwatch20Regular = /*#__PURE__*/createFluentIcon('Smartwatch20Regular', \"20\", [\"M6 5.27V4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v1.27c.6.34 1 .99 1 1.73v1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v2a2 2 0 0 1-1 1.73V16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.27A2 2 0 0 1 5 13V7a2 2 0 0 1 1-1.73ZM8 3a1 1 0 0 0-1 1v1h6V4a1 1 0 0 0-1-1H8Zm6 10V7a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1Zm-7 3a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1H7v1Z\"]);\nexport const Smartwatch24Filled = /*#__PURE__*/createFluentIcon('Smartwatch24Filled', \"24\", [\"M9.5 2a2 2 0 0 0-2 2v1.3c.46-.2.97-.3 1.5-.3h6c.53 0 1.04.1 1.5.3V4a2 2 0 0 0-2-2h-5ZM9 6a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-2a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1V9a3 3 0 0 0-3-3H9Zm0 13c-.53 0-1.04-.1-1.5-.3V20c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2v-1.3c-.46.2-.97.3-1.5.3H9Z\"]);\nexport const Smartwatch24Regular = /*#__PURE__*/createFluentIcon('Smartwatch24Regular', \"24\", [\"M7.5 6.4V4c0-1.1.9-2 2-2h5a2 2 0 0 1 2 2v2.4A3 3 0 0 1 18 9v1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v2a3 3 0 0 1-1.5 2.6V20a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2.4A3 3 0 0 1 6 15V9a3 3 0 0 1 1.5-2.6Zm2-2.9A.5.5 0 0 0 9 4v2h6V4a.5.5 0 0 0-.5-.5h-5Zm7 11.5V9c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5ZM9 20c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-2H9v2Z\"]);\nexport const SmartwatchDot20Filled = /*#__PURE__*/createFluentIcon('SmartwatchDot20Filled', \"20\", [\"M13.5 2.68A2 2 0 0 0 12 2H8a2 2 0 0 0-2 2v.17A3 3 0 0 1 7 4h6.04c.06-.48.23-.92.47-1.32ZM13.05 5H7a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.34A3.5 3.5 0 0 1 13.04 5ZM7 16a3 3 0 0 1-1-.17V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-.17a3 3 0 0 1-1 .17H7ZM19 4.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SmartwatchDot20Regular = /*#__PURE__*/createFluentIcon('SmartwatchDot20Regular', \"20\", [\"M16.5 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm-3 .68A2 2 0 0 0 12 2H8a2 2 0 0 0-2 2v1.27A2 2 0 0 0 5 7v6a2 2 0 0 0 1 1.73V16c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2v-1.27A2 2 0 0 0 15 13v-2a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1v-.34a3.5 3.5 0 0 1-1-.71A1 1 0 0 1 14 7v6a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6a1 1 0 0 1 .37.07 3.49 3.49 0 0 1 .14-3.39ZM13 4.5V5H7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v.5ZM7 15h6v1a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-1Z\"]);\nexport const SmartwatchDot24Filled = /*#__PURE__*/createFluentIcon('SmartwatchDot24Filled', \"24\", [\"M14.5 2a2 2 0 0 1 1.79 1.1 3.49 3.49 0 0 0-.23 2.04A4 4 0 0 0 15 5H9c-.53 0-1.04.1-1.5.3V4c0-1.1.9-2 2-2h5Zm.5 4c.59 0 1.14.17 1.6.46.25.37.57.69.94.94.29.46.46 1.01.46 1.6v1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v2a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h6ZM9 19c-.53 0-1.04-.1-1.5-.3V20c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2v-1.3c-.46.2-.97.3-1.5.3H9ZM22 4.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const SmartwatchDot24Regular = /*#__PURE__*/createFluentIcon('SmartwatchDot24Regular', \"24\", [\"M14.5 2a2 2 0 0 1 1.79 1.1 3.49 3.49 0 0 0 .21 3.2v.1l.1.06c.25.37.57.69.94.94.29.46.46 1.01.46 1.6v1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v2a3 3 0 0 1-1.5 2.6V20a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2.4A3 3 0 0 1 6 15V9a3 3 0 0 1 1.5-2.6V4c0-1.1.9-2 2-2h5Zm-5 1.5A.5.5 0 0 0 9 4v2h6V4a.5.5 0 0 0-.5-.5h-5Zm7 11.5V9c0-.83-.67-1.5-1.5-1.5H9c-.83 0-1.5.67-1.5 1.5v6c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5ZM9 20c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-2H9v2ZM22 4.5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z\"]);\nexport const Snooze16Filled = /*#__PURE__*/createFluentIcon('Snooze16Filled', \"16\", [\"M4 7.5h2.5c.57 0 .92.61.66 1.1l-.05.09L5.46 11H6.5a.75.75 0 0 1 .1 1.5H4a.75.75 0 0 1-.67-1.1l.06-.09L5.04 9H4a.75.75 0 0 1-.1-1.5h2.6H4Zm5-5h3.5c.56 0 .9.58.68 1.06l-.05.1L10.37 8h2.13a.75.75 0 0 1 .1 1.5H9a.75.75 0 0 1-.68-1.06l.05-.1L11.13 4H9a.75.75 0 0 1-.1-1.5h3.6H9Z\"]);\nexport const Snooze16Regular = /*#__PURE__*/createFluentIcon('Snooze16Regular', \"16\", [\"M4 8h2.5c.4 0 .62.43.43.75l-.04.07L5.07 11H6.5a.5.5 0 0 1 .1 1H4a.5.5 0 0 1-.43-.75l.05-.07L5.43 9H4a.5.5 0 0 1-.09-1h2.6H4Zm5-5h3.5c.38 0 .6.4.45.71l-.04.08L9.96 8h2.54a.5.5 0 0 1 .1 1H9a.5.5 0 0 1-.45-.71l.04-.08L11.54 4H9a.5.5 0 0 1-.09-1h3.6H9Z\"]);\nexport const Snooze20Filled = /*#__PURE__*/createFluentIcon('Snooze20Filled', \"20\", [\"M10.75 4a.75.75 0 0 0 0 1.5h3.88l-4.45 5.27a.75.75 0 0 0 .57 1.23h5.5a.75.75 0 0 0 0-1.5h-3.88l4.45-5.27A.75.75 0 0 0 16.25 4h-5.5Zm-7 6a.75.75 0 0 0 0 1.5h1.97l-2.56 3.29A.75.75 0 0 0 3.75 16h3.5a.75.75 0 0 0 0-1.5H5.28l2.56-3.29A.75.75 0 0 0 7.25 10h-3.5Z\"]);\nexport const Snooze20Regular = /*#__PURE__*/createFluentIcon('Snooze20Regular', \"20\", [\"M10.5 4a.5.5 0 0 0 0 1h4.03l-4.44 6.2a.5.5 0 0 0 .41.8h5a.5.5 0 0 0 0-1h-4.03l4.44-6.2a.5.5 0 0 0-.41-.8h-5Zm-6 6a.5.5 0 0 0 0 1h2.96l-3.35 4.19a.5.5 0 0 0 .39.81h4a.5.5 0 0 0 0-1H5.54l3.35-4.19A.5.5 0 0 0 8.5 10h-4Z\"]);\nexport const Snooze24Filled = /*#__PURE__*/createFluentIcon('Snooze24Filled', \"24\", [\"M9 12.5a1 1 0 0 1 .85 1.54l-.07.09L5.08 20H9a1 1 0 0 1 1 .88V21a1 1 0 0 1-.88 1H3a1 1 0 0 1-.85-1.53l.07-.1 4.7-5.87H3a1 1 0 0 1-1-.88v-.12a1 1 0 0 1 .88-.99H9ZM21 2a1 1 0 0 1 .84 1.54l-.07.1L14.11 13H21a1 1 0 0 1 1 .88V14a1 1 0 0 1-.88 1H12a1 1 0 0 1-.84-1.54l.07-.1L18.89 4H12a1 1 0 0 1-1-.88V3a1 1 0 0 1 .88-1H21Z\"]);\nexport const Snooze24Regular = /*#__PURE__*/createFluentIcon('Snooze24Regular', \"24\", [\"M8.24 13c.58 0 .93.62.67 1.1l-.06.1-4.62 6.3h4.01c.38 0 .7.28.75.65v.1c0 .38-.28.7-.64.74l-.1.01h-5.5a.75.75 0 0 1-.66-1.1l.05-.1 4.62-6.3H2.75a.75.75 0 0 1-.74-.64l-.01-.1c0-.39.28-.7.65-.75h5.6ZM21.25 2c.6 0 .94.66.64 1.15l-.06.08-8.5 10.27h7.92c.38 0 .7.28.74.65l.01.1c0 .38-.28.7-.65.74h-9.6a.75.75 0 0 1-.64-1.14l.06-.08L19.66 3.5h-7.91a.75.75 0 0 1-.75-.65v-.1c0-.38.28-.7.65-.74h9.6Z\"]);\nexport const SoundSource20Filled = /*#__PURE__*/createFluentIcon('SoundSource20Filled', \"20\", [\"M3 10a7 7 0 1 1 12.14 4.75l.65.77a8 8 0 1 0-11.58 0l.65-.77A6.97 6.97 0 0 1 3 10Zm11.16 3.6a5.5 5.5 0 1 0-8.32 0l.65-.78a4.5 4.5 0 1 1 7.01 0l.66.78Zm-1.65-1.96a3 3 0 1 0-5.02 0l.69-.81a2 2 0 1 1 3.64 0l.69.81Zm-2.13-.96a.5.5 0 0 0-.76 0l-5.5 6.5a.5.5 0 0 0 .38.82h11a.5.5 0 0 0 .38-.82l-5.5-6.5Z\"]);\nexport const SoundSource20Regular = /*#__PURE__*/createFluentIcon('SoundSource20Regular', \"20\", [\"M3 10a7 7 0 1 1 12.14 4.75l.65.77a8 8 0 1 0-11.58 0l.65-.77A6.97 6.97 0 0 1 3 10Zm11.16 3.6a5.5 5.5 0 1 0-8.32 0l.65-.78a4.5 4.5 0 1 1 7.01 0l.66.78Zm-1.65-1.96a3 3 0 1 0-5.02 0l.69-.81a2 2 0 1 1 3.64 0l.69.81Zm-2.13-.96a.5.5 0 0 0-.76 0l-5.5 6.5a.5.5 0 0 0 .38.82h11a.5.5 0 0 0 .38-.82l-5.5-6.5ZM14.42 17H5.58L10 11.77 14.42 17Z\"]);\nexport const SoundSource24Filled = /*#__PURE__*/createFluentIcon('SoundSource24Filled', \"24\", [\"M3.5 12a8.5 8.5 0 1 1 14.76 5.75l1 1.13a10 10 0 1 0-14.5 0l.98-1.13A8.47 8.47 0 0 1 3.5 12Zm15.75.13a7.1 7.1 0 0 1-1.78 4.71l-1-1.14a5.63 5.63 0 1 0-8.8-.15L6.65 16.7a7.12 7.12 0 1 1 12.6-4.57Zm-3-.13c0 .94-.3 1.8-.82 2.51l-1.03-1.17a2.75 2.75 0 1 0-4.8 0L8.57 14.5A4.25 4.25 0 1 1 16.25 12Zm-4.25.5c.22 0 .42.1.56.26l7 8A.75.75 0 0 1 19 22H5a.75.75 0 0 1-.56-1.24l7-8a.75.75 0 0 1 .56-.26Z\"]);\nexport const SoundSource24Regular = /*#__PURE__*/createFluentIcon('SoundSource24Regular', \"24\", [\"M3.5 12a8.5 8.5 0 1 1 14.76 5.75l1 1.13a10 10 0 1 0-14.5 0l.98-1.13A8.47 8.47 0 0 1 3.5 12Zm15.75.13a7.1 7.1 0 0 1-1.78 4.71l-1-1.14a5.63 5.63 0 1 0-8.8-.15L6.65 16.7a7.12 7.12 0 1 1 12.6-4.57Zm-3-.13c0 .94-.3 1.8-.82 2.51l-1.03-1.17a2.75 2.75 0 1 0-4.8 0L8.57 14.5A4.25 4.25 0 1 1 16.25 12Zm-3.69.76a.75.75 0 0 0-1.12 0l-7 8A.75.75 0 0 0 5 22h14a.75.75 0 0 0 .56-1.24l-7-8Zm4.79 7.74H6.65L12 14.39l5.35 6.11Z\"]);\nexport const SoundSource28Filled = /*#__PURE__*/createFluentIcon('SoundSource28Filled', \"28\", [\"M13.33 15.75a1 1 0 0 1 1.32-.02l.09.08 7.74 8.52a1 1 0 0 1-.62 1.66l-.12.01H6.26a1 1 0 0 1-.82-1.57l.08-.1 7.74-8.52a1 1 0 0 1 .07-.06ZM14 2a13 13 0 0 1 9.78 21.56l-.09-.12-.1-.12-.81-.9a11.5 11.5 0 1 0-17.56 0l-.8.9c-.08.07-.14.16-.2.25A13 13 0 0 1 14 2Zm0 4a9 9 0 0 1 7.08 14.56l-1.03-1.13a7.5 7.5 0 1 0-12.1 0l-1.03 1.13A9 9 0 0 1 14 6Zm0 4a5 5 0 0 1 4.32 7.52l-1.08-1.19A3.5 3.5 0 0 0 14 11.5a3.5 3.5 0 0 0-3.24 4.83l-1.08 1.2A5 5 0 0 1 14 10Z\"]);\nexport const SoundSource28Regular = /*#__PURE__*/createFluentIcon('SoundSource28Regular', \"28\", [\"m14.65 15.73.09.08 7.74 8.52a1 1 0 0 1-.62 1.66l-.12.01H6.26a1 1 0 0 1-.82-1.57l.08-.1 7.74-8.52a1 1 0 0 1 1.39-.09Zm-.65 1.5L7.4 24.5h13.2L14 17.23ZM14 2a13 13 0 0 1 9.78 21.56l-.09-.12-.1-.12-.81-.9a11.5 11.5 0 1 0-17.56 0l-.8.9c-.08.07-.14.16-.2.25A13 13 0 0 1 14 2Zm0 4a9 9 0 0 1 7.08 14.56l-1.03-1.13a7.5 7.5 0 1 0-12.1 0l-1.03 1.13A9 9 0 0 1 14 6Zm0 4a5 5 0 0 1 4.32 7.52l-1.08-1.19A3.5 3.5 0 0 0 14 11.5a3.5 3.5 0 0 0-3.24 4.83l-1.08 1.2A5 5 0 0 1 14 10Z\"]);\nexport const SoundWaveCircle20Filled = /*#__PURE__*/createFluentIcon('SoundWaveCircle20Filled', \"20\", [\"M2 10a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm7-2.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM6 8a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2A.5.5 0 0 0 6 8Zm5 0a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2A.5.5 0 0 0 11 8Zm2.5-1a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z\"]);\nexport const SoundWaveCircle20Regular = /*#__PURE__*/createFluentIcon('SoundWaveCircle20Regular', \"20\", [\"M9 7.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0v-5ZM6 8c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5Zm5 0c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0v-2c0-.28.22-.5.5-.5Zm2.5-1c.28 0 .5.22.5.5v5a.5.5 0 0 1-1 0v-5c0-.28.22-.5.5-.5ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0Z\"]);\nexport const SoundWaveCircle24Filled = /*#__PURE__*/createFluentIcon('SoundWaveCircle24Filled', \"24\", [\"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1 6.75v6.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 1.5 0Zm6 0v6.5a.75.75 0 0 1-1.5 0v-6.5a.75.75 0 0 1 1.5 0Zm-3 1.5v3.5a.75.75 0 0 1-1.5 0v-3.5a.75.75 0 0 1 1.5 0Zm-6 .5v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0Z\"]);\nexport const SoundWaveCircle24Regular = /*#__PURE__*/createFluentIcon('SoundWaveCircle24Regular', \"24\", [\"M11 8.75a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Zm6 0a.75.75 0 0 0-1.5 0v6.5a.75.75 0 0 0 1.5 0v-6.5Zm-3 1.5a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0v-3.5Zm-6 .5a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5ZM12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM3.5 12a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0Z\"]);\nexport const Space3D16Filled = /*#__PURE__*/createFluentIcon('Space3D16Filled', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5V10h-.73l-1.34-2H13V4.5c0-.83-.67-1.5-1.5-1.5h-7C3.67 3 3 3.67 3 4.5V8h1.07l-1.34 2H2V4.5Zm0 7V11h3.3l-1 3A2.5 2.5 0 0 1 2 11.5Zm4.36-.5h3.28l1 3H5.36l1-3Zm.33-1h2.62l-.67-2H7.36l-.67 2Zm4 1H14v.5a2.5 2.5 0 0 1-2.3 2.5l-1-3Zm-.33-1h1.7l-1.33-2H9.7l.67 2Zm-6.43 0h1.71l.67-2H5.27l-1.34 2Z\"]);\nexport const Space3D16Regular = /*#__PURE__*/createFluentIcon('Space3D16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7ZM3 11v.5c0 .83.67 1.5 1.5 1.5h.14l.67-2H3Zm2.64-1 .67-2H5.27l-1.34 2h1.71Zm.72 1-.67 2h4.62l-.67-2H6.36Zm2.95-1-.67-2H7.36l-.67 2h2.62Zm1.38 1 .67 2h.14c.83 0 1.5-.67 1.5-1.5V11h-2.3Zm1.38-1-1.34-2H9.7l.67 2h1.7ZM13 4.5c0-.83-.67-1.5-1.5-1.5h-7C3.67 3 3 3.67 3 4.5V7h10V4.5ZM3 9.6 4.07 8H3v1.6Zm10 0V8h-1.07L13 9.6Z\"]);\nexport const Space3D20Filled = /*#__PURE__*/createFluentIcon('Space3D20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v6.5h-.71L14.86 10H16V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4h1.14L3.7 12.5H3V6Zm0 8v-.5h4.34l-.82 2.86-.2.64H6a3 3 0 0 1-3-3Zm4.48 2.64.9-3.14h3.24l.9 3.13.1.37H7.37l.1-.36h.01Zm1.18-4.14h2.68l-.72-2.5H9.38l-.72 2.5Zm4.82 3.86-.82-2.86H17v.5a3 3 0 0 1-3 3h-.35l-.17-.63Zm-1.1-3.86h2.76L13.7 10h-2.05l.72 2.5Zm-7.52 0h2.76l.72-2.5H6.29l-1.43 2.5Z\"]);\nexport const Space3D20Regular = /*#__PURE__*/createFluentIcon('Space3D20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm13 0a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3h12V6ZM4 12l1.14-2H4v2Zm.86.5h2.76l.72-2.5H6.29l-1.43 2.5Zm-.86 1v.5c0 1.1.9 2 2 2h.62l.72-2.5H4Zm4.38 0L7.66 16h4.68l-.72-2.5H8.38Zm4.28 0 .72 2.5H14a2 2 0 0 0 2-2v-.5h-3.34Zm2.48-1L13.7 10h-2.05l.72 2.5h2.76Zm-3.8 0-.72-2.5H9.38l-.72 2.5h2.68ZM16 12v-2h-1.14L16 12Z\"]);\nexport const Space3D24Filled = /*#__PURE__*/createFluentIcon('Space3D24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25V15h-.81l-2.25-3h1.56V6.25c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75V12h1.56l-2.25 3H3V6.25ZM15.7 16.5H21v1.25c0 1.8-1.46 3.25-3.25 3.25h-.67l-.36-1.22-1.03-3.28ZM18.3 15h-3.09l-.93-3h1.77l2.25 3Zm-7.79 0h3.13l-.94-3h-1.44l-.75 3Zm3.6 1.5h-3.97L9.02 21h6.5l-.24-.78-1.16-3.72ZM9.72 12l-.74 3h-3.3l2.26-3h1.79ZM8.6 16.5H3v1.25C3 19.55 4.46 21 6.25 21h1.23l1.12-4.5Z\"]);\nexport const Space3D24Regular = /*#__PURE__*/createFluentIcon('Space3D24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM6.25 4.5c-.97 0-1.75.78-1.75 1.75V11h15V6.25c0-.97-.78-1.75-1.75-1.75H6.25ZM4.5 14.08l1.19-1.58H4.5v1.58Zm1.19.92h3.29l.62-2.5H7.56L5.7 15ZM4.5 16.5v1.25c0 .97.78 1.75 1.75 1.75h1.6l.75-3H4.5Zm5.65 0-.75 3h5.66l-.94-3h-3.97Zm5.54 0 .94 3h1.12c.97 0 1.75-.78 1.75-1.75V16.5h-3.8Zm2.62-1.5-1.87-2.5h-2l.78 2.5h3.1Zm-4.66 0-.78-2.5h-1.72l-.63 2.5h3.13Zm5.85-.92V12.5h-1.19l1.19 1.58Z\"]);\nexport const Space3D28Filled = /*#__PURE__*/createFluentIcon('Space3D28Filled', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75V18h-.84l-3.2-4h2.54V6.75c0-1.24-1-2.25-2.25-2.25H6.75c-1.24 0-2.25 1-2.25 2.25V14h2.54l-3.2 4H3V6.75ZM18.68 19.5H25v1.75A3.75 3.75 0 0 1 21.25 25h-.87l-.29-.97-1.41-4.53Zm3.56-1.5H18.2l-1.26-4h2.09l3.2 4Zm-10.37 0h4.76l-1.25-4h-2.26l-1.25 4Zm5.23 1.5h-5.7l-1.56 4.97-.16.53h9.13l-.15-.53-1.56-4.97ZM11.55 14l-1.26 4H5.76l3.2-4h2.59Zm-1.72 5.5H3v1.75A3.75 3.75 0 0 0 6.75 25H8.1l.31-.98 1.42-4.52Z\"]);\nexport const Space3D28Regular = /*#__PURE__*/createFluentIcon('Space3D28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v14.5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM6.75 4.5c-1.24 0-2.25 1-2.25 2.25V13h19V6.75c0-1.24-1-2.25-2.25-2.25H6.75ZM4.5 17.17l2.14-2.67H4.5v2.67Zm1.26.83h4.53l1.1-3.5H8.56L5.76 18ZM4.5 19.5v1.75c0 1.24 1 2.25 2.25 2.25h1.82l1.26-4H4.5Zm6.9 0-1.25 4h8.2l-1.25-4h-5.7Zm7.28 0 1.25 4h1.32c1.24 0 2.25-1 2.25-2.25V19.5h-4.82Zm3.56-1.5-2.8-3.5H17.1l1.1 3.5h4.03Zm-5.6 0-1.1-3.5h-2.58l-1.1 3.5h4.77Zm6.86-.83V14.5h-2.14l2.14 2.67Z\"]);\nexport const Space3D32Filled = /*#__PURE__*/createFluentIcon('Space3D32Filled', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5V21h-.99l-4.39-5H27V7.5A2.5 2.5 0 0 0 24.5 5h-17A2.5 2.5 0 0 0 5 7.5V16h3.38l-4.4 5H3V7.5ZM21.48 23H29v1.5a4.5 4.5 0 0 1-4.5 4.5h-1.15l-.4-1.3-1.47-4.7Zm3.87-2h-4.5l-1.56-5h1.67l4.4 5Zm-12.11 0h5.52l-1.56-5h-2.4l-1.56 5Zm6.15 2H12.6l-1.87 6h10.52l-.21-.7-1.66-5.3Zm-6.68-7-1.57 5h-4.5l4.4-5h1.67ZM3 24.5V23h7.52l-1.88 6H7.5A4.5 4.5 0 0 1 3 24.5Z\"]);\nexport const Space3D32Regular = /*#__PURE__*/createFluentIcon('Space3D32Regular', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5v17a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5v-17ZM7.5 5A2.5 2.5 0 0 0 5 7.5V15h22V7.5A2.5 2.5 0 0 0 24.5 5h-17ZM5 19.85 7.5 17H5v2.85ZM6.65 21h4.5l1.24-4h-2.23l-3.51 4ZM5 23v1.5A2.5 2.5 0 0 0 7.5 27h1.77l1.25-4H5Zm7.61 0-1.25 4h9.28l-1.25-4H12.6Zm8.87 0 1.25 4h1.77a2.5 2.5 0 0 0 2.5-2.5V23h-5.52Zm3.87-2-3.51-4H19.6l1.25 4h4.5Zm-6.59 0-1.25-4H14.5l-1.25 4h5.52ZM27 19.85V17h-2.5l2.5 2.85Z\"]);\nexport const Space3D48Filled = /*#__PURE__*/createFluentIcon('Space3D48Filled', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25V31h-1.77l-4.88-7h4.15V12.25a3.75 3.75 0 0 0-3.75-3.75h-23.5a3.75 3.75 0 0 0-3.75 3.75V24h4.15l-4.88 7H6V12.25ZM37.19 31h-6.5l-2.2-7h3.82l4.88 7Zm-9.13 0h-8.12l2.19-7h3.74l2.2 7Zm.78 2.5h-9.68l-2.47 7.87v.01l-.2.62h15l-.18-.63-2.47-7.87ZM19.51 24l-2.2 7h-6.5l4.88-7h3.82Zm-2.97 9.5H6v2.25C6 39.2 8.8 42 12.25 42h1.62l.44-1.37v-.01l2.23-7.12Zm25.46 0H31.46l2.23 7.13.42 1.37h1.64C39.2 42 42 39.2 42 35.75V33.5Z\"]);\nexport const Space3D48Regular = /*#__PURE__*/createFluentIcon('Space3D48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25v23.5C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-23.5Zm6.25-3.75a3.75 3.75 0 0 0-3.75 3.75V23h31V12.25a3.75 3.75 0 0 0-3.75-3.75h-23.5ZM8.5 29.95l3.1-4.45H8.5v4.45ZM10.81 31h6.5l1.73-5.5h-4.4L10.82 31ZM8.5 33.5v2.25a3.75 3.75 0 0 0 3.75 3.75h2.4l1.89-6H8.5Zm10.66 0-1.88 6h13.44l-1.88-6h-9.68Zm12.3 0 1.88 6h2.41a3.75 3.75 0 0 0 3.75-3.75V33.5h-8.04ZM37.2 31l-3.84-5.5h-4.39l1.72 5.5h6.5Zm-9.13 0-1.72-5.5h-4.68L19.94 31h8.12Zm11.44-1.05V25.5h-3.1l3.1 4.45Z\"]);\nexport const Spacebar20Filled = /*#__PURE__*/createFluentIcon('Spacebar20Filled', \"20\", [\"M2.75 7.75c.41 0 .75.34.75.75v2h13v-2a.75.75 0 0 1 1.5 0v2c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 10.5v-2c0-.41.34-.75.75-.75Z\"]);\nexport const Spacebar20Regular = /*#__PURE__*/createFluentIcon('Spacebar20Regular', \"20\", [\"M2.5 8c.28 0 .5.22.5.5v2c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 1 1 0v2c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 2 10.5v-2c0-.28.22-.5.5-.5Z\"]);\nexport const Spacebar24Filled = /*#__PURE__*/createFluentIcon('Spacebar24Filled', \"24\", [\"M20 11v2H4v-2a1 1 0 1 0-2 0v2c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2v-2a1 1 0 1 0-2 0Z\"]);\nexport const Spacebar24Regular = /*#__PURE__*/createFluentIcon('Spacebar24Regular', \"24\", [\"M20.5 11v2c0 .14-.11.25-.25.25H3.75A.25.25 0 0 1 3.5 13v-2A.75.75 0 0 0 2 11v2c0 .97.78 1.75 1.75 1.75h16.5c.97 0 1.75-.78 1.75-1.75v-2a.75.75 0 0 0-1.5 0Z\"]);\nexport const Sparkle16Filled = /*#__PURE__*/createFluentIcon('Sparkle16Filled', \"16\", [\"M5.47 9.83a.92.92 0 0 0 1.4-.46l.35-1.07A1.72 1.72 0 0 1 8.3 7.22l1.09-.35a.92.92 0 0 0-.04-1.75l-1.07-.35A1.7 1.7 0 0 1 7.2 3.7L6.85 2.6a.92.92 0 0 0-.87-.6c-.2 0-.38.05-.53.16a.92.92 0 0 0-.35.46l-.35 1.09A1.71 1.71 0 0 1 3.7 4.77l-1.08.36a.92.92 0 0 0 0 1.74l1.08.35A1.71 1.71 0 0 1 4.78 8.3l.35 1.08c.06.18.18.34.34.45Zm5.06 4.02a.8.8 0 0 0 .92 0c.15-.1.25-.24.3-.4l.26-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.53l-.77-.25a1.08 1.08 0 0 1-.68-.67l-.25-.78A.8.8 0 0 0 11.1 8a.8.8 0 0 0-.88.54l-.25.77a1.1 1.1 0 0 1-.66.67l-.78.26a.8.8 0 0 0-.38 1.22c.1.14.23.24.4.3l.76.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Z\"]);\nexport const Sparkle16Regular = /*#__PURE__*/createFluentIcon('Sparkle16Regular', \"16\", [\"M5.47 9.83a.92.92 0 0 0 1.4-.46l.35-1.07A1.72 1.72 0 0 1 8.3 7.22l1.09-.35a.92.92 0 0 0-.04-1.75l-1.07-.35A1.7 1.7 0 0 1 7.2 3.7L6.85 2.6a.92.92 0 0 0-.87-.6c-.2 0-.38.05-.53.16a.92.92 0 0 0-.35.46l-.35 1.09A1.71 1.71 0 0 1 3.7 4.77l-1.08.36a.92.92 0 0 0 0 1.74l1.08.35A1.71 1.71 0 0 1 4.78 8.3l.35 1.08c.06.18.18.34.34.45ZM4 6.26 3.15 6l.87-.28A2.72 2.72 0 0 0 5.7 4l.26-.86.28.87a2.7 2.7 0 0 0 1.72 1.71l.88.27-.86.28a2.7 2.7 0 0 0-1.72 1.72l-.26.85-.28-.86A2.7 2.7 0 0 0 4 6.26Zm6.52 7.6c.14.09.3.14.47.14a.81.81 0 0 0 .76-.55l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.53l-.77-.25a1.08 1.08 0 0 1-.68-.67l-.25-.78A.8.8 0 0 0 11.1 8a.8.8 0 0 0-.88.54l-.25.77a1.1 1.1 0 0 1-.66.67l-.78.26a.8.8 0 0 0-.38 1.22c.1.14.23.24.4.3l.76.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Zm-.91-2.8L9.44 11l.19-.06a2.09 2.09 0 0 0 1.3-1.32l.05-.18.06.18a2.08 2.08 0 0 0 1.32 1.32l.2.06-.18.06a2.08 2.08 0 0 0-1.32 1.32l-.06.18-.06-.18a2.07 2.07 0 0 0-1.32-1.32Z\"]);\nexport const Sparkle20Filled = /*#__PURE__*/createFluentIcon('Sparkle20Filled', \"20\", [\"M7.4 12.8a1.04 1.04 0 0 0 1.59-.51l.45-1.37a2.34 2.34 0 0 1 1.47-1.48l1.4-.45A1.04 1.04 0 0 0 12.25 7l-1.37-.45A2.34 2.34 0 0 1 9.4 5.08L8.95 3.7a1.03 1.03 0 0 0-.82-.68 1.04 1.04 0 0 0-1.15.7l-.46 1.4a2.34 2.34 0 0 1-1.44 1.45L3.7 7a1.04 1.04 0 0 0 .02 1.97l1.37.45a2.33 2.33 0 0 1 1.48 1.48l.46 1.4c.07.2.2.37.38.5Zm6.14 4.05a.8.8 0 0 0 1.22-.4l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.52l-.77-.25a1.08 1.08 0 0 1-.68-.68l-.25-.77a.8.8 0 0 0-1.52.01l-.24.76a1.1 1.1 0 0 1-.67.68l-.77.25a.8.8 0 0 0 0 1.52l.77.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Z\"]);\nexport const Sparkle20Regular = /*#__PURE__*/createFluentIcon('Sparkle20Regular', \"20\", [\"M7.4 12.8a1.04 1.04 0 0 0 1.59-.51l.45-1.37a2.34 2.34 0 0 1 1.47-1.48l1.4-.45A1.04 1.04 0 0 0 12.25 7l-1.37-.45A2.34 2.34 0 0 1 9.4 5.08L8.95 3.7a1.03 1.03 0 0 0-.82-.68 1.04 1.04 0 0 0-1.15.7l-.46 1.4a2.34 2.34 0 0 1-1.44 1.45L3.7 7a1.04 1.04 0 0 0 .02 1.97l1.37.45a2.33 2.33 0 0 1 1.48 1.48l.46 1.4c.07.2.2.37.38.5Zm.08-7.4.53-1.38.44 1.37a3.33 3.33 0 0 0 2.12 2.12l1.4.53-1.38.45a3.34 3.34 0 0 0-2.11 2.11l-.53 1.38-.45-1.38a3.34 3.34 0 0 0-2.1-2.12L4 7.96 5.4 7.5a3.36 3.36 0 0 0 2.08-2.12Zm6.06 11.45a.8.8 0 0 0 1.22-.4l.25-.76a1.09 1.09 0 0 1 .68-.68l.77-.25a.8.8 0 0 0-.02-1.52l-.77-.25a1.08 1.08 0 0 1-.68-.68l-.25-.77a.8.8 0 0 0-1.52.01l-.24.76a1.1 1.1 0 0 1-.67.68l-.77.25a.8.8 0 0 0 0 1.52l.77.25a1.09 1.09 0 0 1 .68.68l.25.77c.06.16.16.3.3.4Zm-.92-2.8-.18-.05.19-.06a2.09 2.09 0 0 0 1.3-1.32l.06-.18.05.18a2.08 2.08 0 0 0 1.32 1.32l.2.06-.18.06a2.08 2.08 0 0 0-1.32 1.32l-.06.18-.06-.18a2.07 2.07 0 0 0-1.32-1.32Z\"]);\nexport const Sparkle24Filled = /*#__PURE__*/createFluentIcon('Sparkle24Filled', \"24\", [\"M8.67 15.73a1.44 1.44 0 0 0 2.16-.61l.61-1.86a2.87 2.87 0 0 1 1.82-1.81l1.78-.58a1.44 1.44 0 0 0-.06-2.74l-1.75-.57a2.88 2.88 0 0 1-1.82-1.82l-.58-1.78a1.45 1.45 0 0 0-2.73.02l-.59 1.8a2.88 2.88 0 0 1-1.77 1.78l-1.77.57a1.44 1.44 0 0 0 .01 2.73l1.76.57a2.89 2.89 0 0 1 1.82 1.83l.58 1.77c.1.29.28.53.53.7Zm7.66 5.05c-.19-.13-.33-.33-.4-.55l-.34-1a1.31 1.31 0 0 0-.82-.83l-.99-.32A1.15 1.15 0 0 1 13 17a1.14 1.14 0 0 1 .77-1.08l1-.33a1.3 1.3 0 0 0 .8-.82l.33-.99a1.14 1.14 0 0 1 2.16-.02l.33 1.01a1.3 1.3 0 0 0 .82.82l.99.32a1.14 1.14 0 0 1 .04 2.17l-1.01.33a1.32 1.32 0 0 0-.82.82l-.32.99a1.14 1.14 0 0 1-1.76.56Z\"]);\nexport const Sparkle24Regular = /*#__PURE__*/createFluentIcon('Sparkle24Regular', \"24\", [\"M8.67 15.73a1.44 1.44 0 0 0 2.16-.61l.61-1.86a2.87 2.87 0 0 1 1.82-1.81l1.78-.58a1.44 1.44 0 0 0-.06-2.74l-1.75-.57a2.88 2.88 0 0 1-1.82-1.82l-.58-1.78a1.45 1.45 0 0 0-2.73.02l-.59 1.8a2.88 2.88 0 0 1-1.77 1.78l-1.77.57a1.44 1.44 0 0 0 .01 2.73l1.76.57a2.89 2.89 0 0 1 1.82 1.83l.58 1.77c.1.29.28.53.53.7Zm-.38-4.25A4.4 4.4 0 0 0 6.21 10l-1.6-.5 1.61-.52A4.4 4.4 0 0 0 8.95 6.2l.52-1.58.51 1.59a4.37 4.37 0 0 0 2.79 2.77l1.61.52-1.58.52a4.38 4.38 0 0 0-2.78 2.77l-.51 1.59-.52-1.59c-.16-.47-.4-.91-.7-1.3Zm8.04 9.3c-.19-.13-.33-.33-.4-.55l-.34-1a1.31 1.31 0 0 0-.82-.83l-.99-.32A1.15 1.15 0 0 1 13 17a1.14 1.14 0 0 1 .77-1.08l1-.33a1.3 1.3 0 0 0 .8-.82l.33-.99a1.14 1.14 0 0 1 2.16-.02l.33 1.01a1.3 1.3 0 0 0 .82.82l.99.32a1.14 1.14 0 0 1 .04 2.17l-1.01.33a1.32 1.32 0 0 0-.82.82l-.32.99a1.14 1.14 0 0 1-1.76.56ZM15.3 17a2.8 2.8 0 0 1 1.7 1.7 2.8 2.8 0 0 1 1.7-1.7 2.81 2.81 0 0 1-1.72-1.7A2.8 2.8 0 0 1 15.3 17Z\"]);\nexport const Sparkle28Filled = /*#__PURE__*/createFluentIcon('Sparkle28Filled', \"28\", [\"M10.06 18.7a1.63 1.63 0 0 0 2.43-.67l.77-2.34a3.82 3.82 0 0 1 2.42-2.42l2.23-.73a1.61 1.61 0 0 0 1.07-1.3 1.62 1.62 0 0 0-1.13-1.78l-2.21-.72a3.82 3.82 0 0 1-2.42-2.42l-.73-2.23a1.62 1.62 0 0 0-3.07.01l-.74 2.27a3.82 3.82 0 0 1-2.36 2.36l-2.24.73a1.63 1.63 0 0 0 .02 3.07l2.22.72a3.86 3.86 0 0 1 2.42 2.43l.73 2.23c.1.32.32.6.6.8Zm9.74 6.08a1.2 1.2 0 0 0 1.84-.6l.37-1.14a1.6 1.6 0 0 1 1.02-1.02l1.16-.38a1.21 1.21 0 0 0 .59-1.83 1.23 1.23 0 0 0-.62-.45L23 18.99A1.6 1.6 0 0 1 22 17.97l-.38-1.16a1.2 1.2 0 0 0-2.27.01l-.38 1.15a1.6 1.6 0 0 1-.99 1.02l-1.17.38a1.21 1.21 0 0 0-.58 1.83c.15.2.36.36.6.44l1.14.37A1.6 1.6 0 0 1 19 23.04l.37 1.16c.09.24.24.44.44.58Z\"]);\nexport const Sparkle28Regular = /*#__PURE__*/createFluentIcon('Sparkle28Regular', \"28\", [\"M10.06 18.7a1.63 1.63 0 0 0 2.43-.67l.77-2.34a3.82 3.82 0 0 1 2.42-2.42l2.23-.73a1.61 1.61 0 0 0 1.07-1.3 1.62 1.62 0 0 0-1.13-1.78l-2.21-.72a3.82 3.82 0 0 1-2.42-2.42l-.73-2.23a1.62 1.62 0 0 0-3.07.01l-.74 2.27a3.82 3.82 0 0 1-2.36 2.36l-2.24.73a1.63 1.63 0 0 0 .02 3.07l2.22.72a3.86 3.86 0 0 1 2.42 2.43l.73 2.23c.1.32.32.6.6.8ZM6.8 11.83l-2.22-.72s-.09-.04-.09-.11a.14.14 0 0 1 .09-.11l2.23-.73a5.34 5.34 0 0 0 3.32-3.37l.72-2.22s.04-.09.12-.09c.07 0 .1.09.1.09l.73 2.22a5.32 5.32 0 0 0 3.38 3.37l2.27.74a.13.13 0 0 1 .08.1.15.15 0 0 1-.09.12l-2.22.72a5.32 5.32 0 0 0-3.38 3.38l-.71 2.2a.11.11 0 0 1-.12.09c-.1 0-.11-.08-.11-.08l-.73-2.22a5.32 5.32 0 0 0-3.37-3.38ZM19.8 24.78a1.2 1.2 0 0 0 1.84-.6l.37-1.14a1.6 1.6 0 0 1 1.02-1.02l1.16-.38a1.21 1.21 0 0 0 .59-1.83 1.23 1.23 0 0 0-.62-.45L23 18.99A1.6 1.6 0 0 1 22 17.97l-.38-1.16a1.2 1.2 0 0 0-2.27.01l-.38 1.15a1.6 1.6 0 0 1-.99 1.02l-1.17.38a1.21 1.21 0 0 0-.58 1.83c.15.2.36.36.6.44l1.14.37A1.6 1.6 0 0 1 19 23.04l.37 1.16c.09.24.24.44.44.58Zm-1.37-4.2-.27-.08.29-.1a3.12 3.12 0 0 0 1.94-1.97l.09-.27.09.27a3.11 3.11 0 0 0 1.97 1.98l.3.1-.28.08a3.12 3.12 0 0 0-1.97 1.98l-.09.27-.09-.27a3.12 3.12 0 0 0-1.98-1.98Z\"]);\nexport const Sparkle32Filled = /*#__PURE__*/createFluentIcon('Sparkle32Filled', \"32\", [\"M12 21a2.07 2.07 0 0 1-1.96-1.4l-.8-2.42a3.8 3.8 0 0 0-2.43-2.44l-2.4-.78a2.08 2.08 0 0 1-.03-3.93l2.44-.79a3.85 3.85 0 0 0 2.36-2.38l.8-2.46a2.07 2.07 0 0 1 3.17-1.03c.35.25.62.6.76 1l.8 2.44a3.83 3.83 0 0 0 2.42 2.43l2.4.78a2.07 2.07 0 0 1 .08 3.94l-2.43.8a3.81 3.81 0 0 0-2.43 2.42l-.78 2.4A2.06 2.06 0 0 1 12 21Zm11.5 9a1.75 1.75 0 0 1-1.64-1.16l-.54-1.68a2.28 2.28 0 0 0-1.48-1.48l-1.65-.53a1.75 1.75 0 0 1-.03-3.3l1.69-.54a2.32 2.32 0 0 0 1.43-1.47l.54-1.65a1.73 1.73 0 0 1 3.29-.02l.54 1.67a2.33 2.33 0 0 0 1.48 1.47l1.65.54a1.73 1.73 0 0 1 .05 3.3l-1.67.54a2.27 2.27 0 0 0-1.47 1.47l-.54 1.65A1.76 1.76 0 0 1 23.5 30Z\"]);\nexport const Sparkle32Regular = /*#__PURE__*/createFluentIcon('Sparkle32Regular', \"32\", [\"M3.4 13.2c.25.36.6.62 1.01.76l2.4.78a3.85 3.85 0 0 1 2.44 2.44l.79 2.43a2.07 2.07 0 0 0 3.93-.03l.78-2.4a3.87 3.87 0 0 1 2.43-2.43l2.44-.8a2.08 2.08 0 0 0-.08-3.93l-2.4-.78a3.82 3.82 0 0 1-2.44-2.43l-.8-2.44A2.06 2.06 0 0 0 11.96 3a2.07 2.07 0 0 0-1.97 1.4l-.8 2.46a3.85 3.85 0 0 1-2.36 2.38l-2.44.79a2.08 2.08 0 0 0-.99 3.18ZM12 19a.07.07 0 0 1-.07-.04l-.78-2.4a5.75 5.75 0 0 0-3.7-3.71v-.01l-2.4-.78A.08.08 0 0 1 5 12a.08.08 0 0 1 .04-.07l2.42-.79h.03a5.85 5.85 0 0 0 3.59-3.62v-.02l.8-2.45s0-.02.02-.03a.11.11 0 0 1 .1 0l.02.02.78 2.4v.01a5.83 5.83 0 0 0 3.7 3.7l2.42.78.07.05a.07.07 0 0 1 0 .07l-.03.03-2.4.78h-.01a5.81 5.81 0 0 0-3.7 3.7l-.77 2.37a.2.2 0 0 1-.05.07l-.02.01Zm13.65.84a2.33 2.33 0 0 0 1.48 1.47l1.65.54a1.73 1.73 0 0 1 .05 3.3l-1.67.54a2.27 2.27 0 0 0-1.47 1.47l-.54 1.65A1.76 1.76 0 0 1 23.5 30a1.75 1.75 0 0 1-1.64-1.16l-.54-1.68a2.28 2.28 0 0 0-1.48-1.48l-1.65-.53a1.75 1.75 0 0 1-.03-3.3l1.69-.54a2.32 2.32 0 0 0 1.43-1.47l.54-1.65a1.73 1.73 0 0 1 3.29-.02l.54 1.67Zm.85 3.37a4.33 4.33 0 0 1-2.74-2.73v-.01l-.3-.88-.28.88a4.33 4.33 0 0 1-2.67 2.73h-.02l-.9.3.88.29h.01a4.28 4.28 0 0 1 2.74 2.76l.28.86.29-.88a4.36 4.36 0 0 1 2.75-2.74l.86-.29-.9-.3Z\"]);\nexport const Sparkle48Filled = /*#__PURE__*/createFluentIcon('Sparkle48Filled', \"48\", [\"M17.46 31.51a2.67 2.67 0 0 0 4-1.13l1.23-3.77a6.16 6.16 0 0 1 3.9-3.9l3.63-1.18a2.67 2.67 0 0 0 0-5.04l-3.7-1.2a6.2 6.2 0 0 1-3.9-3.88l-1.17-3.63a2.66 2.66 0 0 0-4.06-1.29c-.46.33-.8.79-1 1.32l-1.18 3.67a6.19 6.19 0 0 1-3.8 3.81l-3.63 1.18a2.67 2.67 0 0 0 .03 5.05l3.59 1.16a6.19 6.19 0 0 1 3.9 3.91l1.18 3.63c.18.52.53.97.98 1.29Zm15.41 9.13a1.95 1.95 0 0 0 2.97-.97l.58-1.74a2.41 2.41 0 0 1 1.5-1.5l1.79-.59a1.95 1.95 0 0 0-.07-3.69l-1.76-.56a2.38 2.38 0 0 1-1.5-1.5l-.58-1.8a1.93 1.93 0 0 0-1.54-1.27 1.95 1.95 0 0 0-2.14 1.3l-.57 1.76a2.38 2.38 0 0 1-1.46 1.5l-1.79.58a1.94 1.94 0 0 0 .03 3.68l1.75.57a2.37 2.37 0 0 1 1.5 1.5l.58 1.8c.14.37.39.7.71.93Z\"]);\nexport const Sparkle48Regular = /*#__PURE__*/createFluentIcon('Sparkle48Regular', \"48\", [\"M17.46 31.51a2.67 2.67 0 0 0 4-1.13l1.23-3.77a6.16 6.16 0 0 1 3.9-3.9l3.63-1.18a2.67 2.67 0 0 0 0-5.04l-3.7-1.2a6.2 6.2 0 0 1-3.9-3.88l-1.17-3.63a2.66 2.66 0 0 0-4.06-1.29c-.46.33-.8.79-1 1.32l-1.18 3.67a6.19 6.19 0 0 1-3.8 3.81l-3.63 1.18a2.67 2.67 0 0 0 .03 5.05l3.59 1.16a6.19 6.19 0 0 1 3.9 3.91l1.18 3.63c.18.52.53.97.98 1.29Zm1.7-2.12-.06.08a.18.18 0 0 1-.2 0 .2.2 0 0 1-.05-.06l-1.17-3.6a8.6 8.6 0 0 0-5.5-5.5l-3.57-1.15a.18.18 0 0 1-.08-.07.16.16 0 0 1-.03-.1c0-.03.01-.07.03-.1a.22.22 0 0 1 .05-.05l3.62-1.17a8.7 8.7 0 0 0 5.37-5.4l1.2-3.65a.17.17 0 0 1 .16-.12.18.18 0 0 1 .15.09l1.17 3.6a8.7 8.7 0 0 0 5.5 5.48l3.6 1.17.06.02a.17.17 0 0 1 .09.15c0 .04-.01.07-.03.1a.29.29 0 0 1-.05.05l-3.61 1.17a8.65 8.65 0 0 0-5.49 5.5l-1.16 3.56Zm13.71 11.25a1.95 1.95 0 0 0 2.97-.97l.58-1.74a2.41 2.41 0 0 1 1.5-1.5l1.79-.59a1.95 1.95 0 0 0-.07-3.69l-1.76-.56a2.38 2.38 0 0 1-1.5-1.5l-.58-1.8a1.93 1.93 0 0 0-1.54-1.27 1.95 1.95 0 0 0-2.14 1.3l-.57 1.76a2.38 2.38 0 0 1-1.46 1.5l-1.79.58a1.94 1.94 0 0 0 .03 3.68l1.75.57a2.37 2.37 0 0 1 1.5 1.5l.58 1.8c.14.37.39.7.71.93Zm-2.01-6.6-.12-.04.14-.05a4.88 4.88 0 0 0 3.04-3.09l.04-.12.05.13a4.87 4.87 0 0 0 3.09 3.09l.15.05-.12.04a4.87 4.87 0 0 0-3.1 3.1l-.03.11-.04-.12a4.87 4.87 0 0 0-3.1-3.1Z\"]);\nexport const SparkleCircle16Filled = /*#__PURE__*/createFluentIcon('SparkleCircle16Filled', \"16\", [\"M8 2a6 6 0 1 1 0 12A6 6 0 0 1 8 2Zm1.9 6.3a.42.42 0 0 0-.8 0l-.11.36a.5.5 0 0 1-.33.33l-.36.1c-.4.13-.4.7 0 .81l.35.1a.5.5 0 0 1 .34.34l.1.36c.13.4.7.4.81 0l.1-.36a.5.5 0 0 1 .34-.33l.36-.1c.4-.13.4-.7 0-.81l-.36-.1a.5.5 0 0 1-.33-.34l-.1-.36ZM7.55 5.39a.58.58 0 0 0-1.1 0l-.17.48a.67.67 0 0 1-.4.4l-.5.18a.58.58 0 0 0 0 1.1l.5.17c.18.07.33.22.4.4l.17.5c.18.5.92.51 1.1 0l.17-.5a.67.67 0 0 1 .4-.4l.5-.17a.58.58 0 0 0 0-1.1l-.5-.17a.67.67 0 0 1-.4-.4l-.17-.5Z\"]);\nexport const SparkleCircle16Regular = /*#__PURE__*/createFluentIcon('SparkleCircle16Regular', \"16\", [\"M9.9 8.3a.42.42 0 0 0-.8 0l-.11.36a.5.5 0 0 1-.33.33l-.36.1c-.4.13-.4.7 0 .81l.35.1a.5.5 0 0 1 .34.34l.1.36c.13.4.7.4.81 0l.1-.36a.5.5 0 0 1 .34-.33l.36-.1c.4-.13.4-.7 0-.81l-.36-.1a.5.5 0 0 1-.33-.34l-.1-.36ZM7.55 5.39a.58.58 0 0 0-1.1 0l-.17.48a.67.67 0 0 1-.4.4l-.5.18a.58.58 0 0 0 0 1.1l.5.17c.18.07.33.22.4.4l.17.5c.18.5.92.51 1.1 0l.17-.5a.67.67 0 0 1 .4-.4l.5-.17a.58.58 0 0 0 0-1.1l-.5-.17a.67.67 0 0 1-.4-.4l-.17-.5ZM2 8a6 6 0 1 1 12 0A6 6 0 0 1 2 8Zm6-5a5 5 0 1 0 0 10A5 5 0 0 0 8 3Z\"]);\nexport const SparkleCircle20Filled = /*#__PURE__*/createFluentIcon('SparkleCircle20Filled', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.82 5.58l.26.73c.1.28.33.5.61.6l.73.26a.87.87 0 0 1 0 1.65l-.73.26a1 1 0 0 0-.6.61l-.27.73a.87.87 0 0 1-1.65 0l-.25-.73a1 1 0 0 0-.61-.6l-.73-.27a.88.88 0 0 1 0-1.65l.73-.25a1 1 0 0 0 .6-.61l.26-.73a.87.87 0 0 1 1.65 0ZM11.33 10a.7.7 0 0 1 1.34 0l.18.6c.08.26.29.47.56.55l.6.18a.7.7 0 0 1 0 1.34l-.6.18a.83.83 0 0 0-.56.56l-.18.6a.7.7 0 0 1-1.34 0l-.18-.6a.83.83 0 0 0-.56-.56l-.59-.18a.7.7 0 0 1 0-1.34l.6-.18a.83.83 0 0 0 .55-.56l.18-.6Z\"]);\nexport const SparkleCircle20Regular = /*#__PURE__*/createFluentIcon('SparkleCircle20Regular', \"20\", [\"M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14Zm-8 7a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm5.17-4.42a.87.87 0 0 1 1.65 0l.26.73c.1.28.33.5.61.6l.73.26a.87.87 0 0 1 0 1.65l-.73.26a1 1 0 0 0-.6.61l-.27.73a.87.87 0 0 1-1.65 0l-.25-.73a1 1 0 0 0-.61-.6l-.73-.27a.88.88 0 0 1 0-1.65l.73-.25a1 1 0 0 0 .6-.61l.26-.73Zm5.5 4.42a.7.7 0 0 0-1.34 0l-.18.6a.83.83 0 0 1-.56.55l-.59.18a.7.7 0 0 0 0 1.34l.6.18c.26.08.47.29.55.56l.18.6a.7.7 0 0 0 1.34 0l.18-.6a.83.83 0 0 1 .56-.56l.6-.18a.7.7 0 0 0 0-1.34l-.6-.18a.83.83 0 0 1-.56-.56l-.18-.59Z\"]);\nexport const SparkleCircle24Filled = /*#__PURE__*/createFluentIcon('SparkleCircle24Filled', \"24\", [\"M12 22a10 10 0 1 0 0-20 10 10 0 0 0 0 20ZM8.56 6.17a1 1 0 0 1 1.88 0l.46 1.3c.1.29.34.52.64.63l1.3.46a1 1 0 0 1 0 1.88l-1.3.46c-.3.1-.53.34-.64.64l-.46 1.3a1 1 0 0 1-1.88 0l-.46-1.3c-.1-.3-.34-.53-.64-.64l-1.3-.46a1 1 0 0 1 0-1.88l1.3-.46c.3-.1.54-.34.64-.64l.46-1.3Zm7.39 6.54.18.6c.08.27.3.48.57.56l.6.18a.99.99 0 0 1 0 1.9l-.6.18a.85.85 0 0 0-.57.57l-.18.6a.99.99 0 0 1-1.9 0l-.18-.6a.85.85 0 0 0-.57-.57l-.6-.18a.99.99 0 0 1 0-1.9l.6-.18c.28-.08.49-.3.57-.57l.18-.6a.99.99 0 0 1 1.9 0Z\"]);\nexport const SparkleCircle24Regular = /*#__PURE__*/createFluentIcon('SparkleCircle24Regular', \"24\", [\"M12 3.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17ZM2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0Zm6.56-5.83a1 1 0 0 1 1.88 0l.46 1.3c.1.29.34.52.64.63l1.3.46a1 1 0 0 1 0 1.88l-1.3.46c-.3.1-.53.34-.64.64l-.46 1.3a1 1 0 0 1-1.88 0l-.46-1.3c-.1-.3-.34-.53-.64-.64l-1.3-.46a1 1 0 0 1 0-1.88l1.3-.46c.3-.1.54-.34.64-.64l.46-1.3Zm7.39 6.54a.99.99 0 0 0-1.9 0l-.18.6a.85.85 0 0 1-.57.56l-.6.18a.99.99 0 0 0 0 1.9l.6.18c.28.08.49.3.57.57l.18.6a.99.99 0 0 0 1.9 0l.18-.6c.08-.27.3-.49.57-.57l.6-.18a.99.99 0 0 0 0-1.9l-.6-.18a.85.85 0 0 1-.57-.57l-.18-.6Z\"]);\nexport const SparkleCircle28Filled = /*#__PURE__*/createFluentIcon('SparkleCircle28Filled', \"28\", [\"M14 2a12 12 0 1 0 0 24 12 12 0 0 0 0-24Zm-3.56 5.75c.35-1 1.77-1 2.12 0l.52 1.46c.12.33.38.6.72.71l1.45.52c1 .35 1 1.77 0 2.12l-1.45.51c-.34.12-.6.39-.72.72l-.52 1.46c-.35 1-1.77 1-2.12 0l-.51-1.45c-.12-.34-.39-.6-.72-.73l-1.46-.51c-1-.35-1-1.77 0-2.12l1.46-.52c.33-.11.6-.38.72-.72l.51-1.45Zm7.88 6.83.4 1.14c.1.26.3.46.57.55l1.13.4a.87.87 0 0 1 0 1.65l-1.13.4c-.27.1-.47.3-.56.56l-.4 1.14a.87.87 0 0 1-1.65 0l-.4-1.13a.92.92 0 0 0-.56-.56l-1.14-.4a.87.87 0 0 1 0-1.65l1.14-.4c.26-.1.46-.3.56-.57l.4-1.13a.87.87 0 0 1 1.64 0Z\"]);\nexport const SparkleCircle28Regular = /*#__PURE__*/createFluentIcon('SparkleCircle28Regular', \"28\", [\"M10.44 7.75c.35-1 1.77-1 2.12 0l.52 1.46c.12.33.38.6.72.71l1.45.52c1 .35 1 1.77 0 2.12l-1.45.51c-.34.12-.6.39-.72.72l-.52 1.46c-.35 1-1.77 1-2.12 0l-.51-1.45c-.12-.34-.39-.6-.72-.73l-1.46-.51c-1-.35-1-1.77 0-2.12l1.46-.52c.33-.11.6-.38.72-.72l.51-1.45Zm7.88 6.83a.87.87 0 0 0-1.64 0l-.4 1.13c-.1.27-.3.47-.56.56l-1.14.4a.87.87 0 0 0 0 1.65l1.14.4c.26.1.46.3.56.57l.4 1.13a.87.87 0 0 0 1.64 0l.4-1.14c.1-.26.3-.46.57-.55l1.13-.4a.87.87 0 0 0 0-1.65l-1.13-.4a.92.92 0 0 1-.56-.56l-.4-1.14ZM2 14a12 12 0 1 1 24 0 12 12 0 0 1-24 0ZM14 3.5a10.5 10.5 0 1 0 0 21 10.5 10.5 0 0 0 0-21Z\"]);\nexport const SparkleCircle32Filled = /*#__PURE__*/createFluentIcon('SparkleCircle32Filled', \"32\", [\"M16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm-3.8 6.92a1.37 1.37 0 0 1 2.6 0l.63 1.78c.14.4.47.73.88.87l1.77.63a1.37 1.37 0 0 1 0 2.6l-1.77.63c-.41.14-.74.46-.88.87l-.63 1.78a1.37 1.37 0 0 1-2.6 0l-.62-1.77a1.44 1.44 0 0 0-.88-.88l-1.78-.63a1.37 1.37 0 0 1 0-2.6l1.78-.63c.4-.14.73-.46.88-.88l.62-1.77Zm9.13 8.66.4 1.14c.09.26.3.46.56.55l1.13.4a.87.87 0 0 1 0 1.65l-1.13.4c-.27.1-.47.3-.56.56l-.4 1.14a.87.87 0 0 1-1.65 0l-.4-1.13a.92.92 0 0 0-.56-.56l-1.14-.4a.87.87 0 0 1 0-1.65l1.14-.4c.26-.1.46-.3.56-.57l.4-1.13a.87.87 0 0 1 1.64 0Z\"]);\nexport const SparkleCircle32Regular = /*#__PURE__*/createFluentIcon('SparkleCircle32Regular', \"32\", [\"M12.2 8.92a1.37 1.37 0 0 1 2.6 0l.63 1.78c.14.4.47.73.88.87l1.77.63a1.37 1.37 0 0 1 0 2.6l-1.77.63c-.41.14-.74.46-.88.87l-.63 1.78a1.37 1.37 0 0 1-2.6 0l-.62-1.77a1.44 1.44 0 0 0-.88-.88l-1.78-.63a1.37 1.37 0 0 1 0-2.6l1.78-.63c.4-.14.73-.46.88-.88l.62-1.77Zm9.13 8.66a.87.87 0 0 0-1.65 0l-.4 1.13c-.1.27-.3.47-.56.56l-1.14.4a.87.87 0 0 0 0 1.65l1.14.4c.26.1.46.3.56.57l.4 1.13a.87.87 0 0 0 1.64 0l.4-1.14c.1-.26.3-.46.57-.55l1.13-.4a.87.87 0 0 0 0-1.65l-1.13-.4a.92.92 0 0 1-.56-.56l-.4-1.14ZM2 16a14 14 0 1 1 28 0 14 14 0 0 1-28 0ZM16 4a12 12 0 1 0 0 24 12 12 0 0 0 0-24Z\"]);\nexport const SparkleCircle48Filled = /*#__PURE__*/createFluentIcon('SparkleCircle48Filled', \"48\", [\"M44 24a20 20 0 1 1-40 0 20 20 0 0 1 40 0ZM17.12 12.33l-.92 2.59a2.1 2.1 0 0 1-1.28 1.28l-2.59.92a2 2 0 0 0 0 3.77l2.6.91c.59.21 1.06.68 1.27 1.28l.92 2.59a2 2 0 0 0 3.77 0l.91-2.59a2.1 2.1 0 0 1 1.28-1.28l2.59-.91a2 2 0 0 0 0-3.77l-2.59-.92a2.1 2.1 0 0 1-1.28-1.28l-.91-2.59a2 2 0 0 0-3.77 0ZM31.42 25a1.5 1.5 0 0 0-2.83 0l-.69 1.94c-.16.45-.51.8-.96.96l-1.94.69a1.5 1.5 0 0 0 0 2.82l1.94.69c.45.16.8.51.96.96L28.6 35a1.5 1.5 0 0 0 2.82 0l.7-1.94c.15-.45.5-.8.95-.96l1.94-.69a1.5 1.5 0 0 0 0-2.82l-1.94-.7c-.45-.15-.8-.5-.96-.95L31.41 25Z\"]);\nexport const SparkleCircle48Regular = /*#__PURE__*/createFluentIcon('SparkleCircle48Regular', \"48\", [\"M17.12 12.33a2 2 0 0 1 3.77 0l.91 2.6c.22.59.69 1.06 1.28 1.27l2.59.92a2 2 0 0 1 0 3.77l-2.59.91a2.1 2.1 0 0 0-1.28 1.28l-.91 2.59a2 2 0 0 1-3.77 0l-.92-2.59a2.1 2.1 0 0 0-1.28-1.28l-2.59-.91a2 2 0 0 1 0-3.77l2.6-.92a2.1 2.1 0 0 0 1.27-1.28l.92-2.59ZM31.42 25a1.5 1.5 0 0 0-2.83 0l-.69 1.94c-.16.45-.51.8-.96.96l-1.94.69a1.5 1.5 0 0 0 0 2.82l1.94.69c.45.16.8.51.96.96L28.6 35a1.5 1.5 0 0 0 2.82 0l.7-1.94c.15-.45.5-.8.95-.96l1.94-.69a1.5 1.5 0 0 0 0-2.82l-1.94-.7c-.45-.15-.8-.5-.96-.95L31.41 25ZM4 24a20 20 0 1 1 40 0 20 20 0 0 1-40 0ZM24 6.5a17.5 17.5 0 1 0 0 35 17.5 17.5 0 0 0 0-35Z\"]);\nexport const Speaker016Filled = /*#__PURE__*/createFluentIcon('Speaker016Filled', \"16\", [\"M9 2.5a.5.5 0 0 0-.85-.36L5.22 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5v-11Z\"]);\nexport const Speaker016Regular = /*#__PURE__*/createFluentIcon('Speaker016Regular', \"16\", [\"M8.7 2.04c.18.08.3.26.3.46v11a.5.5 0 0 1-.85.36l-2.93-2.88H3.5A1.5 1.5 0 0 1 2 9.48V6.5C2 5.66 2.67 5 3.5 5h1.72l2.93-2.85a.5.5 0 0 1 .54-.1ZM8 3.69 5.78 5.85a.5.5 0 0 1-.35.14H3.5a.5.5 0 0 0-.5.5v3c0 .27.22.5.5.5h1.93a.5.5 0 0 1 .35.13L8 12.31V3.69Z\"]);\nexport const Speaker020Filled = /*#__PURE__*/createFluentIcon('Speaker020Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Z\"]);\nexport const Speaker020Regular = /*#__PURE__*/createFluentIcon('Speaker020Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Z\"]);\nexport const Speaker024Filled = /*#__PURE__*/createFluentIcon('Speaker024Filled', \"24\", [\"M14.7 3.44c.2.23.3.51.3.8v15.51a1.25 1.25 0 0 1-2.06.95l-4.96-4.2H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.5 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14Z\"]);\nexport const Speaker024Regular = /*#__PURE__*/createFluentIcon('Speaker024Regular', \"24\", [\"M14.7 3.44c.2.23.3.51.3.8v15.51a1.25 1.25 0 0 1-2.06.95l-4.96-4.2H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.5 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14ZM13.5 4.8l-4.98 4.2H4.25a.75.75 0 0 0-.75.76v4.5c0 .41.34.75.75.75h4.27l4.98 4.21V4.79Z\"]);\nexport const Speaker028Filled = /*#__PURE__*/createFluentIcon('Speaker028Filled', \"28\", [\"M14.4 3.9c.8-.75 2.1-.18 2.1.91v18.37c0 1.1-1.3 1.66-2.1.92l-4.94-4.63c-.33-.3-.75-.47-1.2-.47H5.25A3.25 3.25 0 0 1 2 15.75v-3.5c0-1.79 1.46-3.24 3.25-3.24h3.01c.45 0 .87-.17 1.2-.48l4.93-4.63Z\"]);\nexport const Speaker028Regular = /*#__PURE__*/createFluentIcon('Speaker028Regular', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm-6.02 4.82L15 5.39v17.22l-4.52-4.23c-.6-.57-1.4-.88-2.22-.88H5.25c-.97 0-1.75-.79-1.75-1.75v-3.5c0-.96.78-1.74 1.75-1.74h3.01c.83 0 1.62-.32 2.22-.88Z\"]);\nexport const Speaker032Filled = /*#__PURE__*/createFluentIcon('Speaker032Filled', \"32\", [\"M18 5.43a1.5 1.5 0 0 0-2.65-.97L11.27 9.3a2 2 0 0 1-1.53.71H6a4 4 0 0 0-4 4v4a4 4 0 0 0 4 4h3.74a2 2 0 0 1 1.53.7l4.08 4.84a1.5 1.5 0 0 0 2.65-.97V5.43Z\"]);\nexport const Speaker032Regular = /*#__PURE__*/createFluentIcon('Speaker032Regular', \"32\", [\"M15.87 4.72A1.25 1.25 0 0 1 18 5.6v20.8a1.25 1.25 0 0 1-2.13.88l-4.7-4.7A2 2 0 0 0 9.76 22H6a4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4h3.76a2 2 0 0 0 1.41-.59l4.7-4.7Zm.13 2.7-3.41 3.4A4 4 0 0 1 9.76 12H6a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h3.76a4 4 0 0 1 2.83 1.17L16 24.6V7.4Z\"]);\nexport const Speaker048Filled = /*#__PURE__*/createFluentIcon('Speaker048Filled', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Z\"]);\nexport const Speaker048Regular = /*#__PURE__*/createFluentIcon('Speaker048Regular', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm.42 2.98-6.95 6.25a7.25 7.25 0 0 1-4.85 1.85H9a2.75 2.75 0 0 0-2.75 2.75v7.5A2.75 2.75 0 0 0 9 30.5h4.7c1.79 0 3.51.66 4.85 1.86l6.95 6.24V9.4Z\"]);\nexport const Speaker116Filled = /*#__PURE__*/createFluentIcon('Speaker116Filled', \"16\", [\"M9 2.5a.5.5 0 0 0-.85-.36L5.22 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5v-11Zm1.11 2.69a.5.5 0 0 1 .7-.08h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15a4.1 4.1 0 0 1-.97 2.69 2.5 2.5 0 0 1-.2.2h-.01s-.45.24-.7-.08a.5.5 0 0 1 .07-.7l.02-.01.08-.09c.08-.08.18-.2.29-.38.2-.35.42-.88.42-1.63a3.09 3.09 0 0 0-.7-2 1.52 1.52 0 0 0-.11-.11.5.5 0 0 1-.08-.7Zm.08.7Z\"]);\nexport const Speaker116Regular = /*#__PURE__*/createFluentIcon('Speaker116Regular', \"16\", [\"M8.7 2.04c.18.08.3.26.3.46v11a.5.5 0 0 1-.85.36l-2.93-2.88H3.5A1.5 1.5 0 0 1 2 9.48V6.5C2 5.66 2.67 5 3.5 5h1.72l2.93-2.85a.5.5 0 0 1 .54-.1ZM8 3.69 5.78 5.85a.5.5 0 0 1-.35.14H3.5a.5.5 0 0 0-.5.5v3c0 .27.22.5.5.5h1.93a.5.5 0 0 1 .35.13L8 12.31V3.69Zm2.11 1.5a.5.5 0 0 1 .7-.08h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15a4.1 4.1 0 0 1-.97 2.69 2.5 2.5 0 0 1-.2.2h-.01s-.45.24-.7-.08a.5.5 0 0 1 .07-.7l.02-.01.08-.09c.08-.08.18-.2.29-.38.2-.35.42-.88.42-1.63a3.09 3.09 0 0 0-.7-2 1.52 1.52 0 0 0-.11-.11.5.5 0 0 1-.08-.7Zm.08.7Z\"]);\nexport const Speaker120Filled = /*#__PURE__*/createFluentIcon('Speaker120Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Zm2.08 9.93a.5.5 0 0 1-.19-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .87-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker120Regular = /*#__PURE__*/createFluentIcon('Speaker120Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm6.96 6.33a.5.5 0 0 1-.18-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .86-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker124Filled = /*#__PURE__*/createFluentIcon('Speaker124Filled', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v15.5a1.25 1.25 0 0 1-2.06.96L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14Zm2.4 5.2a.75.75 0 0 1 1.03.25c.58.94.87 2 .87 3.14 0 1.15-.3 2.2-.87 3.14a.75.75 0 1 1-1.28-.78c.43-.7.65-1.48.65-2.36 0-.88-.22-1.66-.65-2.36a.75.75 0 0 1 .25-1.03Z\"]);\nexport const Speaker124Regular = /*#__PURE__*/createFluentIcon('Speaker124Regular', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v15.5a1.25 1.25 0 0 1-2.06.96L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14ZM13.5 4.8 8.52 9H4.25a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h4.27l4.98 4.21V4.8Zm3.6 3.85a.75.75 0 0 1 1.03.25c.58.94.87 2 .87 3.14 0 1.15-.3 2.2-.87 3.14a.75.75 0 1 1-1.28-.78c.43-.7.65-1.48.65-2.36 0-.88-.22-1.66-.65-2.36a.75.75 0 0 1 .25-1.03Z\"]);\nexport const Speaker128Filled = /*#__PURE__*/createFluentIcon('Speaker128Filled', \"28\", [\"M14.4 3.9c.8-.75 2.1-.18 2.1.91v18.37c0 1.1-1.3 1.66-2.1.92l-4.94-4.63c-.33-.3-.75-.47-1.2-.47H5.25A3.25 3.25 0 0 1 2 15.75v-3.5c0-1.79 1.46-3.24 3.25-3.24h3.01c.45 0 .87-.17 1.2-.48l4.93-4.63Zm5.95 4.4a.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 0 9.6.75.75 0 1 0 1.2.9 9.46 9.46 0 0 0 0-11.4Z\"]);\nexport const Speaker128Regular = /*#__PURE__*/createFluentIcon('Speaker128Regular', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm-6.02 4.82L15 5.39v17.22l-4.52-4.23c-.6-.57-1.4-.88-2.22-.88H5.25c-.97 0-1.75-.79-1.75-1.75v-3.5c0-.96.78-1.74 1.75-1.74h3.01c.83 0 1.62-.32 2.22-.88Zm9.87-1.33a.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 0 9.6.75.75 0 0 0 1.2.9 9.46 9.46 0 0 0 0-11.4Z\"]);\nexport const Speaker132Filled = /*#__PURE__*/createFluentIcon('Speaker132Filled', \"32\", [\"M15.35 4.46a1.5 1.5 0 0 1 2.65.97v21.14a1.5 1.5 0 0 1-2.65.97l-4.08-4.83A2 2 0 0 0 9.74 22H6a4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4h3.74a2 2 0 0 0 1.53-.7l4.08-4.84Zm7.47 4.97a1 1 0 1 0-1.64 1.14A9.54 9.54 0 0 1 23.06 16c0 1.76-.6 3.56-1.88 5.43a1 1 0 0 0 1.64 1.14A11.53 11.53 0 0 0 25.06 16c0-2.24-.77-4.44-2.24-6.57Z\"]);\nexport const Speaker132Regular = /*#__PURE__*/createFluentIcon('Speaker132Regular', \"32\", [\"M15.87 4.72A1.25 1.25 0 0 1 18 5.6v20.8a1.25 1.25 0 0 1-2.13.88l-4.7-4.7A2 2 0 0 0 9.76 22H6a4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4h3.76a2 2 0 0 0 1.41-.59l4.7-4.7Zm.13 2.7-3.41 3.4A4 4 0 0 1 9.76 12H6a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h3.76a4 4 0 0 1 2.83 1.17L16 24.6V7.4Zm5.43 1.76a1 1 0 0 1 1.4.25A11.53 11.53 0 0 1 25.05 16c0 2.24-.77 4.44-2.24 6.57a1 1 0 1 1-1.64-1.14A9.54 9.54 0 0 0 23.06 16c0-1.76-.6-3.56-1.88-5.43a1 1 0 0 1 .25-1.4Z\"]);\nexport const Speaker148Filled = /*#__PURE__*/createFluentIcon('Speaker148Filled', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm7.25 7.98c.47-.5 1.26-.54 1.77-.07l.06.07-.06-.06.02.02a2.62 2.62 0 0 1 .18.17c.12.12.27.3.45.51a13.98 13.98 0 0 1-.59 18.56l-.01.02-.03.03h-.01v.01s.39-.4 0 0a1.25 1.25 0 0 1-1.71-1.82l.01-.02a4.57 4.57 0 0 0 .43-.47 11.48 11.48 0 0 0-.43-15.17l-.01-.02a1.25 1.25 0 0 1-.07-1.76Z\"]);\nexport const Speaker148Regular = /*#__PURE__*/createFluentIcon('Speaker148Regular', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm.42 2.98-6.95 6.25a7.25 7.25 0 0 1-4.85 1.85H9a2.75 2.75 0 0 0-2.75 2.75v7.5A2.75 2.75 0 0 0 9 30.5h4.7c1.79 0 3.51.66 4.85 1.86l6.95 6.24V9.4Zm6.83 5c.47-.5 1.26-.54 1.77-.07v.01l.02.02a3.13 3.13 0 0 1 .18.17c.12.12.27.3.45.51a13.98 13.98 0 0 1-.59 18.56l-.01.02-.03.03h-.01v.01a1.25 1.25 0 0 1-1.71-1.82l.01-.02a4.2 4.2 0 0 0 .43-.47 11.48 11.48 0 0 0-.43-15.17l-.01-.02a1.25 1.25 0 0 1-.07-1.76Zm1.77-.07.06.07a.45.45 0 0 1-.06-.07Z\"]);\nexport const Speaker216Filled = /*#__PURE__*/createFluentIcon('Speaker216Filled', \"16\", [\"M9 2.5a.5.5 0 0 0-.85-.36L5.22 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5v-11Zm1.11 2.69a.5.5 0 0 1 .7-.08h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15a4.1 4.1 0 0 1-.97 2.69 2.5 2.5 0 0 1-.2.2h-.01s-.45.24-.7-.08a.5.5 0 0 1 .07-.7l.02-.01.08-.09c.08-.08.18-.2.29-.38.2-.35.42-.88.42-1.63a3.09 3.09 0 0 0-.7-2 1.52 1.52 0 0 0-.11-.11.5.5 0 0 1-.08-.7Zm1.7-2.08a.5.5 0 1 0-.62.78l.01.01a2.05 2.05 0 0 1 .25.24A5.52 5.52 0 0 1 13 8a5.52 5.52 0 0 1-1.8 4.1h-.01a.5.5 0 0 0 .62.8l.04-.04a3.09 3.09 0 0 0 .32-.3A6.48 6.48 0 0 0 14 8a6.54 6.54 0 0 0-2.15-4.86l-.03-.02V3.1ZM10.2 5.89Z\"]);\nexport const Speaker216Regular = /*#__PURE__*/createFluentIcon('Speaker216Regular', \"16\", [\"M8.7 2.04c.18.08.3.26.3.46v11a.5.5 0 0 1-.85.36l-2.93-2.88H3.5A1.5 1.5 0 0 1 2 9.48V6.5C2 5.66 2.67 5 3.5 5h1.72l2.93-2.85a.5.5 0 0 1 .54-.1ZM8 3.69 5.78 5.85a.5.5 0 0 1-.35.14H3.5a.5.5 0 0 0-.5.5v3c0 .27.22.5.5.5h1.93a.5.5 0 0 1 .35.13L8 12.31V3.69Zm2.11 1.5a.5.5 0 0 1 .7-.08h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15a4.1 4.1 0 0 1-.97 2.69 2.5 2.5 0 0 1-.2.2h-.01s-.45.24-.7-.08a.5.5 0 0 1 .07-.7l.02-.01.08-.09c.08-.08.18-.2.29-.38.2-.35.42-.88.42-1.63a3.09 3.09 0 0 0-.7-2 1.52 1.52 0 0 0-.11-.11.5.5 0 0 1-.08-.7Zm1.7-2.08a.5.5 0 1 0-.62.78l.01.01a2.05 2.05 0 0 1 .25.24A5.52 5.52 0 0 1 13 8a5.52 5.52 0 0 1-1.8 4.1h-.01a.5.5 0 0 0 .62.8l.04-.04a3.09 3.09 0 0 0 .32-.3A6.48 6.48 0 0 0 14 8a6.54 6.54 0 0 0-2.15-4.86l-.03-.02V3.1ZM10.2 5.89Z\"]);\nexport const Speaker220Filled = /*#__PURE__*/createFluentIcon('Speaker220Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74V3.01Zm3.25 1.63a.5.5 0 0 1 .71.04 8 8 0 0 1 0 10.66.5.5 0 1 1-.75-.66 7 7 0 0 0 0-9.34.5.5 0 0 1 .04-.7Zm-1.17 8.3a.5.5 0 0 1-.19-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .87-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker220Regular = /*#__PURE__*/createFluentIcon('Speaker220Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm8.14-1.97a.5.5 0 0 1 .7.04 8 8 0 0 1 0 10.66.5.5 0 0 1-.74-.66 7 7 0 0 0 0-9.34.5.5 0 0 1 .04-.7Zm-1.18 8.3a.5.5 0 0 1-.18-.68 4.5 4.5 0 0 0 0-4.5.5.5 0 1 1 .86-.5 5.5 5.5 0 0 1 0 5.5.5.5 0 0 1-.68.18Z\"]);\nexport const Speaker224Filled = /*#__PURE__*/createFluentIcon('Speaker224Filled', \"24\", [\"M15 4.25v15.5a1.25 1.25 0 0 1-2.08.93l-4.5-4a.75.75 0 0 0-.49-.18H4.25C3.01 16.5 2 15.49 2 14.25v-4.5C2 8.5 3 7.5 4.25 7.5h3.68c.18 0 .36-.07.5-.19l4.49-4c.8-.71 2.08-.14 2.08.94Zm4 1.65a.75.75 0 0 1 1.04.15 9.96 9.96 0 0 1 0 11.9.75.75 0 0 1-1.2-.9 8.46 8.46 0 0 0 0-10.1.75.75 0 0 1 .15-1.05Zm-1.86 2.47a.75.75 0 0 1 1.02.3 6.97 6.97 0 0 1 0 6.66.75.75 0 0 1-1.32-.72 5.47 5.47 0 0 0 0-5.22.75.75 0 0 1 .3-1.02Z\"]);\nexport const Speaker224Regular = /*#__PURE__*/createFluentIcon('Speaker224Regular', \"24\", [\"M15 4.25a1.25 1.25 0 0 0-2.08-.93L8.42 7.3a.75.75 0 0 1-.49.19H4.25C3.01 7.5 2 8.5 2 9.75v4.5c0 1.24 1 2.25 2.25 2.25h3.68c.18 0 .36.06.5.19l4.49 3.99c.8.72 2.08.14 2.08-.93V4.25ZM9.42 8.43l4.08-3.62v14.38l-4.08-3.63A2.25 2.25 0 0 0 7.93 15H4.25a.75.75 0 0 1-.75-.75v-4.5c0-.42.34-.75.75-.75h3.68c.55 0 1.08-.2 1.5-.57ZM19 5.9a.75.75 0 0 1 1.05.15 9.96 9.96 0 0 1 0 11.9.75.75 0 1 1-1.2-.9 8.46 8.46 0 0 0 0-10.1.75.75 0 0 1 .15-1.05Zm-1.85 2.47a.75.75 0 0 1 1.02.3 6.97 6.97 0 0 1 0 6.66.75.75 0 0 1-1.32-.72 5.47 5.47 0 0 0 0-5.22.75.75 0 0 1 .3-1.02Z\"]);\nexport const Speaker228Filled = /*#__PURE__*/createFluentIcon('Speaker228Filled', \"28\", [\"M14.4 3.9c.8-.75 2.1-.18 2.1.91v18.37c0 1.1-1.3 1.66-2.1.92l-4.94-4.63c-.33-.3-.75-.47-1.2-.47H5.25A3.25 3.25 0 0 1 2 15.75v-3.5c0-1.79 1.46-3.24 3.25-3.24h3.01c.45 0 .87-.17 1.2-.48l4.93-4.63Zm7.24 1.28a.75.75 0 0 1 1.06.07 13.2 13.2 0 0 1 0 17.5.75.75 0 1 1-1.12-1 11.7 11.7 0 0 0 0-15.5.75.75 0 0 1 .06-1.07ZM20.35 8.3a.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 0 9.6.75.75 0 1 0 1.2.9 9.46 9.46 0 0 0 0-11.4Z\"]);\nexport const Speaker228Regular = /*#__PURE__*/createFluentIcon('Speaker228Regular', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm-6.02 4.82L15 5.39v17.22l-4.52-4.23c-.6-.57-1.4-.88-2.22-.88H5.25c-.97 0-1.75-.79-1.75-1.75v-3.5c0-.96.78-1.74 1.75-1.74h3.01c.83 0 1.62-.32 2.22-.88ZM22.7 5.25a.75.75 0 0 0-1.12 1 11.7 11.7 0 0 1 0 15.5.75.75 0 1 0 1.12 1 13.2 13.2 0 0 0 0-17.5ZM20.35 8.3a.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 0 9.6.75.75 0 0 0 1.2.9 9.46 9.46 0 0 0 0-11.4Z\"]);\nexport const Speaker232Filled = /*#__PURE__*/createFluentIcon('Speaker232Filled', \"32\", [\"M18 5.43a1.5 1.5 0 0 0-2.65-.97L11.27 9.3a2 2 0 0 1-1.53.71H6a4 4 0 0 0-4 4v4a4 4 0 0 0 4 4h3.74a2 2 0 0 1 1.53.7l4.08 4.84a1.5 1.5 0 0 0 2.65-.97V5.43Zm3.43 3.75a1 1 0 0 1 1.4.25A11.53 11.53 0 0 1 25.05 16c0 2.24-.77 4.44-2.24 6.57a1 1 0 1 1-1.64-1.14A9.54 9.54 0 0 0 23.06 16c0-1.76-.6-3.56-1.88-5.43a1 1 0 0 1 .25-1.4Zm4.26-3.9a1 1 0 0 0-1.38 1.44C26.7 9 27.94 12.46 27.94 16c0 3.54-1.24 7-3.63 9.28a1 1 0 0 0 1.38 1.44C28.55 24 29.94 19.96 29.94 16c0-3.96-1.39-8-4.25-10.72Z\"]);\nexport const Speaker232Regular = /*#__PURE__*/createFluentIcon('Speaker232Regular', \"32\", [\"M18 5.6a1.25 1.25 0 0 0-2.13-.88l-4.7 4.7a2 2 0 0 1-1.41.58H6a4 4 0 0 0-4 4v4a4 4 0 0 0 4 4h3.76a2 2 0 0 1 1.41.59l4.7 4.7c.78.78 2.13.22 2.13-.9V5.6Zm-5.41 5.23L16 7.4V24.6l-3.41-3.42A4 4 0 0 0 9.76 20H6a2 2 0 0 1-2-2v-4c0-1.1.9-2 2-2h3.76a4 4 0 0 0 2.83-1.17Zm10.23-1.4a1 1 0 1 0-1.64 1.14A9.54 9.54 0 0 1 23.06 16c0 1.76-.6 3.56-1.88 5.43a1 1 0 1 0 1.64 1.14A11.53 11.53 0 0 0 25.06 16c0-2.24-.77-4.44-2.24-6.57Zm2.87-4.15a1 1 0 0 0-1.38 1.44C26.7 9 27.94 12.46 27.94 16c0 3.54-1.24 7-3.63 9.28a1 1 0 1 0 1.38 1.44C28.55 24 29.94 19.96 29.94 16c0-3.96-1.39-8-4.25-10.72Z\"]);\nexport const Speaker248Filled = /*#__PURE__*/createFluentIcon('Speaker248Filled', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37ZM36.34 8.4c.47-.5 1.26-.53 1.76-.06h.02c-.35-.34-.01 0-.01 0l.02.03a5.37 5.37 0 0 1 .27.26 20.4 20.4 0 0 1 2.7 3.79A23.76 23.76 0 0 1 44 24c0 5.05-1.45 8.94-2.9 11.58a20.41 20.41 0 0 1-2.9 4l-.07.06-.02.01v.01s.66-.66 0 0a1.25 1.25 0 0 1-1.72-1.82 3.26 3.26 0 0 0 .19-.19 17.9 17.9 0 0 0 2.33-3.28C40.2 32.03 41.5 28.55 41.5 24c0-4.55-1.3-8.03-2.6-10.37a17.9 17.9 0 0 0-2.5-3.46 1.25 1.25 0 0 1-.06-1.77Zm-4 6c.46-.5 1.25-.54 1.76-.07l.06.07-.06-.06.02.02a2.62 2.62 0 0 1 .18.17c.12.12.27.3.45.51a13.98 13.98 0 0 1-.59 18.56l-.01.02-.03.03h-.01v.01s.39-.4 0 0a1.25 1.25 0 0 1-1.71-1.82l.01-.02a4.57 4.57 0 0 0 .43-.47 11.48 11.48 0 0 0-.43-15.17l-.01-.02a1.25 1.25 0 0 1-.07-1.76Z\"]);\nexport const Speaker248Regular = /*#__PURE__*/createFluentIcon('Speaker248Regular', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm.42 2.98-6.95 6.25a7.25 7.25 0 0 1-4.85 1.85H9a2.75 2.75 0 0 0-2.75 2.75v7.5A2.75 2.75 0 0 0 9 30.5h4.7c1.79 0 3.51.66 4.85 1.86l6.95 6.24V9.4Zm10.84-1c.47-.5 1.26-.53 1.76-.06 0 0-.33-.34.02 0l.01.03a6.1 6.1 0 0 1 .27.26 20.4 20.4 0 0 1 2.7 3.79A23.76 23.76 0 0 1 44 24c0 5.05-1.45 8.94-2.9 11.58a20.41 20.41 0 0 1-2.9 4l-.07.06-.01.01h-.01v.01l.22-.22-.23.22a1.25 1.25 0 0 1-1.7-1.82 5.03 5.03 0 0 0 .18-.19 17.91 17.91 0 0 0 2.33-3.28C40.2 32.03 41.5 28.55 41.5 24c0-4.55-1.3-8.03-2.6-10.37a17.91 17.91 0 0 0-2.5-3.46 1.25 1.25 0 0 1-.06-1.77Zm-4 6a1.25 1.25 0 0 1 1.76-.06l.02.02a3.13 3.13 0 0 1 .18.17c.12.12.27.3.45.51a13.98 13.98 0 0 1-.59 18.56l-.01.02-.03.03h-.01v.01a1.25 1.25 0 0 1-1.71-1.82l.01-.02a4.2 4.2 0 0 0 .43-.47 11.48 11.48 0 0 0-.43-15.17l-.01-.02a1.25 1.25 0 0 1-.07-1.76Zm5.78-6.05-.01-.01Zm-4.02 5.98.06.07a.45.45 0 0 1-.06-.07Z\"]);\nexport const SpeakerBluetooth20Filled = /*#__PURE__*/createFluentIcon('SpeakerBluetooth20Filled', \"20\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.87-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .35-.13l3.87-3.6Zm5.53 2.88a.5.5 0 0 0-.85.35v3.46l-1.19-.95a.5.5 0 1 0-.62.78L14.7 10l-1.51 1.21a.5.5 0 1 0 .62.78l1.19-.95v3.46a.5.5 0 0 0 .85.35l2.5-2.5a.5.5 0 0 0-.04-.74L16.3 10l2.01-1.61a.5.5 0 0 0 .04-.74l-2.5-2.5Zm1.4 6.9L16 13.28v-2.25l1.25 1ZM16 6.7l1.25 1.25-1.25 1V6.71Z\"]);\nexport const SpeakerBluetooth20Regular = /*#__PURE__*/createFluentIcon('SpeakerBluetooth20Regular', \"20\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.88-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .34-.13l3.88-3.6Zm.68.74L7.12 6.6c-.27.26-.64.4-1.02.4H3.5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h2.6c.38 0 .75.14 1.02.4L11 17V3Zm4.85 2.14a.5.5 0 0 0-.85.35v3.46l-1.19-.95a.5.5 0 1 0-.62.78L14.7 10l-1.51 1.21a.5.5 0 1 0 .62.78l1.19-.95v3.46a.5.5 0 0 0 .85.35l2.5-2.5a.5.5 0 0 0-.04-.74L16.3 10l2.01-1.61a.5.5 0 0 0 .04-.74l-2.5-2.5Zm1.4 6.9L16 13.28v-2.25l1.25 1ZM16 6.7l1.25 1.25-1.25 1V6.71Z\"]);\nexport const SpeakerBluetooth24Filled = /*#__PURE__*/createFluentIcon('SpeakerBluetooth24Filled', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v15.5a1.25 1.25 0 0 1-2.06.96L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14Zm2.8 6.46V6.75c0-.65.75-.98 1.23-.58l.07.07 3 3.25c.27.29.26.73 0 1.01l-.07.08-1.7 1.42 1.7 1.42c.3.26.35.7.14 1l-.07.09-3 3.25a.75.75 0 0 1-1.3-.4V14.1l-.27.22a.75.75 0 0 1-1.04-1.07l.08-.08 1.23-1.02v-.3l-1.23-1.02a.75.75 0 0 1 .87-1.22l.1.06.26.23V6.75 9.9Zm1.5 3.2v2.23l1.16-1.26L19 13.1Zm0-4.43v2.23l1.16-.97L19 8.67Z\"]);\nexport const SpeakerBluetooth24Regular = /*#__PURE__*/createFluentIcon('SpeakerBluetooth24Regular', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v15.5a1.25 1.25 0 0 1-2.06.96L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14ZM13.5 4.8 8.52 9H4.25a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h4.27l4.98 4.21V4.8Zm4 5.1V6.76c0-.65.75-.98 1.23-.58l.07.07 3 3.25c.27.29.26.73 0 1.01l-.07.08-1.7 1.42 1.7 1.42c.3.26.35.7.14 1l-.07.09-3 3.25a.75.75 0 0 1-1.3-.4V14.1l-.27.22a.75.75 0 0 1-1.04-1.07l.08-.08 1.23-1.02v-.3l-1.23-1.02a.75.75 0 0 1 .87-1.22l.1.06.26.23V6.75 9.9ZM19 13.1v2.23l1.16-1.26L19 13.1Zm0-4.43v2.23l1.16-.97L19 8.67Z\"]);\nexport const SpeakerBluetooth28Filled = /*#__PURE__*/createFluentIcon('SpeakerBluetooth28Filled', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm5.16 1.43A1 1 0 0 0 20 7v5.03l-.36-.3a1 1 0 1 0-1.28 1.54l.88.73-.88.73a1 1 0 0 0 1.28 1.54l.36-.3V21a1 1 0 0 0 1.66.75l4-3.5a1 1 0 0 0-.02-1.52L22.36 14l3.28-2.73a1 1 0 0 0 .02-1.52l-4-3.5Zm1.8 11.28L22 18.8v-2.5l1.46 1.22ZM22 9.2l1.46 1.28L22 11.7V9.2Z\"]);\nexport const SpeakerBluetooth28Regular = /*#__PURE__*/createFluentIcon('SpeakerBluetooth28Regular', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm-6.02 4.82L15 5.39v17.22l-4.52-4.23c-.6-.57-1.4-.88-2.22-.88H5.25c-.97 0-1.75-.79-1.75-1.75v-3.5c0-.96.78-1.74 1.75-1.74h3.01c.83 0 1.62-.32 2.22-.88Zm10.8-3.41a.75.75 0 0 0-1.28.53v5.57l-.77-.65a.75.75 0 1 0-.96 1.16l1.4 1.17-1.4 1.18a.75.75 0 1 0 .96 1.15l.77-.64v5.56a.75.75 0 0 0 1.28.53l4-4a.75.75 0 0 0-.05-1.1L22.03 14l3.2-2.67a.75.75 0 0 0 .05-1.11l-4-4Zm2.36 11.08-2.14 2.14v-3.92l2.14 1.78ZM21.5 8.56l2.14 2.14-2.14 1.78V8.56Z\"]);\nexport const SpeakerEdit16Filled = /*#__PURE__*/createFluentIcon('SpeakerEdit16Filled', \"16\", [\"M8.7 2.04c.18.08.3.26.3.46v6.88l-1.66 1.65c-.35.36-.63.77-.82 1.23l-1.3-1.28H3.5A1.5 1.5 0 0 1 2 9.48V6.49C2 5.66 2.67 5 3.5 5h1.72l2.93-2.85a.5.5 0 0 1 .54-.1Zm-.65 9.7c-.36.36-.61.8-.73 1.3l-.3 1.2a.6.6 0 0 0 .73.74l1.22-.3c.48-.12.93-.38 1.29-.73l4.28-4.29a1.56 1.56 0 0 0-1.61-2.58c-.22.08-.42.2-.6.37L12 7.8l-1.12 1.12-2.83 2.83Zm5.64-5.73a6.63 6.63 0 0 0-1.85-2.87l-.02-.02V3.1a.5.5 0 1 0-.63.78l.01.01a2.3 2.3 0 0 1 .25.24 5.52 5.52 0 0 1 1.22 1.97c.33-.1.68-.13 1.02-.1Zm-1.9.6a3.82 3.82 0 0 0-.95-1.48l-.02-.01V5.1a.5.5 0 0 0-.63.78l.02.02.08.08a2.93 2.93 0 0 1 .67 1.43l.67-.67.15-.14Z\"]);\nexport const SpeakerEdit16Regular = /*#__PURE__*/createFluentIcon('SpeakerEdit16Regular', \"16\", [\"M9 2.5a.5.5 0 0 0-.85-.36L5.22 5H3.5C2.67 5 2 5.66 2 6.5v2.99c0 .83.67 1.5 1.5 1.5h1.72l1.3 1.28c.14-.32.31-.62.52-.9l-1.26-1.24a.5.5 0 0 0-.35-.14H3.5a.5.5 0 0 1-.5-.5V6.49c0-.27.22-.5.5-.5h1.93a.5.5 0 0 0 .35-.14L8 3.68v6.7l1-1V2.5Zm-.95 9.24a2.78 2.78 0 0 0-.73 1.3l-.3 1.2a.6.6 0 0 0 .73.74l1.22-.3c.48-.12.93-.38 1.29-.73l4.28-4.29a1.56 1.56 0 0 0-1.61-2.58c-.22.08-.42.2-.6.37L12 7.8l-1.12 1.12-2.83 2.83Zm5.64-5.73a6.63 6.63 0 0 0-1.85-2.87l-.02-.02V3.1a.5.5 0 1 0-.63.78l.01.01a2.3 2.3 0 0 1 .25.24 5.52 5.52 0 0 1 1.22 1.97c.33-.1.68-.13 1.02-.1Zm-1.9.6a3.82 3.82 0 0 0-.95-1.48l-.02-.01V5.1a.5.5 0 0 0-.63.78l.02.02.08.08a2.93 2.93 0 0 1 .67 1.43l.67-.67.15-.14Z\"]);\nexport const SpeakerEdit20Filled = /*#__PURE__*/createFluentIcon('SpeakerEdit20Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l2.83 2.63.15-.6a3.2 3.2 0 0 1 .84-1.5L12 12.95V3Zm3.96 1.66a7.97 7.97 0 0 1 1.99 4.46c-.34-.1-.68-.14-1.02-.12a6.97 6.97 0 0 0-1.72-3.67.5.5 0 0 1 .75-.67Zm-1.2 2.59c.41.72.65 1.5.72 2.27-.14.1-.26.2-.38.32l-.63.63c.1-.92-.08-1.87-.58-2.72a.5.5 0 0 1 .87-.5Zm-3.78 8.12 4.83-4.83a1.87 1.87 0 1 1 2.64 2.65l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.02Z\"]);\nexport const SpeakerEdit20Regular = /*#__PURE__*/createFluentIcon('SpeakerEdit20Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l2.83 2.63.15-.6c.04-.17.1-.32.16-.48L7.13 13.4A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.15 1.03-.4L11 3v10.94l1-1V3Zm3.96 1.66a7.97 7.97 0 0 1 1.99 4.46c-.33-.1-.68-.14-1.02-.12a6.97 6.97 0 0 0-1.71-3.67.5.5 0 0 1 .74-.67Zm-1.2 2.59c.42.72.65 1.5.72 2.27-.13.1-.26.2-.38.32l-.62.62c.1-.9-.09-1.86-.58-2.71a.5.5 0 0 1 .86-.5Zm-3.78 8.12 4.83-4.83a1.87 1.87 0 1 1 2.64 2.65l-4.83 4.83a2.2 2.2 0 0 1-1.02.58l-1.5.37a.89.89 0 0 1-1.07-1.08l.37-1.5c.1-.38.3-.73.58-1.02Z\"]);\nexport const SpeakerEdit24Filled = /*#__PURE__*/createFluentIcon('SpeakerEdit24Filled', \"24\", [\"M15 4.25v11.1l-2.51 2.51c-.45.45-.77 1-.94 1.6L8.43 16.7a.75.75 0 0 0-.5-.2H4.25c-1.24 0-2.25-1-2.25-2.24v-4.5C2 8.51 3 7.5 4.25 7.5h3.68c.18 0 .36-.07.5-.19l4.49-4c.8-.7 2.08-.14 2.08.94Zm3.4 7.71c.17-.18.37-.34.58-.47a6.96 6.96 0 0 0-.82-2.82.75.75 0 0 0-1.32.72 5.47 5.47 0 0 1 .58 3.54l.97-.97Zm2.04-.95a3.3 3.3 0 0 1 1.53.24 9.95 9.95 0 0 0-1.93-5.2.75.75 0 0 0-1.2.9 8.45 8.45 0 0 1 1.6 4.06Zm-1.34 1.66-5.9 5.9c-.35.35-.6.78-.71 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.28 2.28 0 1 0-3.23-3.24Z\"]);\nexport const SpeakerEdit24Regular = /*#__PURE__*/createFluentIcon('SpeakerEdit24Regular', \"24\", [\"M15 4.25a1.25 1.25 0 0 0-2.08-.93l-4.5 4a.75.75 0 0 1-.5.18H4.26C3.01 7.5 2 8.5 2 9.75v4.5c0 1.24 1 2.25 2.25 2.25h3.68c.18 0 .36.06.5.19l3.12 2.77c.14-.5.39-.96.72-1.36l-2.85-2.54a2.25 2.25 0 0 0-1.5-.56H4.26a.75.75 0 0 1-.75-.75v-4.5c0-.41.34-.75.75-.75h3.68c.55 0 1.08-.2 1.5-.57l4.07-3.62v12.04l1.5-1.5V4.25Zm5.04 1.8a9.95 9.95 0 0 1 1.93 5.2 3.3 3.3 0 0 0-1.53-.24 8.45 8.45 0 0 0-1.6-4.06.75.75 0 1 1 1.2-.9Zm-1.88 2.62c.46.85.75 1.81.82 2.82-.2.13-.4.3-.59.47l-.97.97a5.54 5.54 0 0 0-.58-3.54.75.75 0 1 1 1.32-.72Zm.94 4-5.9 5.9c-.35.35-.6.78-.71 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.25-.7l5.9-5.9a2.28 2.28 0 1 0-3.23-3.24Z\"]);\nexport const SpeakerMute16Filled = /*#__PURE__*/createFluentIcon('SpeakerMute16Filled', \"16\", [\"M9 2.5a.5.5 0 0 0-.85-.36L5.22 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5v-11Zm1.15 3.65c.2-.2.5-.2.7 0L12 7.29l1.15-1.14a.5.5 0 1 1 .7.7L12.71 8l1.14 1.15a.5.5 0 1 1-.7.7L12 8.71l-1.15 1.14a.5.5 0 0 1-.7-.7L11.29 8l-1.14-1.15a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerMute16Regular = /*#__PURE__*/createFluentIcon('SpeakerMute16Regular', \"16\", [\"M8.7 2.04c.18.08.3.26.3.46v11a.5.5 0 0 1-.85.36l-2.93-2.88H3.5A1.5 1.5 0 0 1 2 9.48V6.5C2 5.66 2.67 5 3.5 5h1.72l2.93-2.85a.5.5 0 0 1 .54-.1ZM8 3.69 5.78 5.85a.5.5 0 0 1-.35.14H3.5a.5.5 0 0 0-.5.5v3c0 .27.22.5.5.5h1.93a.5.5 0 0 1 .35.13L8 12.31V3.69Zm2.15 2.46c.2-.2.5-.2.7 0L12 7.29l1.15-1.14a.5.5 0 1 1 .7.7L12.71 8l1.14 1.15a.5.5 0 1 1-.7.7L12 8.71l-1.15 1.14a.5.5 0 0 1-.7-.7L11.29 8l-1.14-1.15a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerMute20Filled = /*#__PURE__*/createFluentIcon('SpeakerMute20Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01Zm1.14 4.65c.2-.2.51-.2.71 0l1.65 1.64 1.64-1.64a.5.5 0 1 1 .71.7L16.2 10l1.65 1.65a.5.5 0 1 1-.7.7l-1.65-1.64-1.65 1.64a.5.5 0 1 1-.7-.7L14.78 10l-1.65-1.65a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerMute20Regular = /*#__PURE__*/createFluentIcon('SpeakerMute20Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V3.01ZM7.12 6.6 11 3v14l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4Zm6.02 1.05c.2-.2.51-.2.71 0l1.65 1.64 1.64-1.64a.5.5 0 1 1 .71.7L16.2 10l1.65 1.65a.5.5 0 1 1-.7.7l-1.65-1.64-1.65 1.64a.5.5 0 1 1-.7-.7L14.78 10l-1.65-1.65a.5.5 0 0 1 0-.7Z\"]);\nexport const SpeakerMute24Filled = /*#__PURE__*/createFluentIcon('SpeakerMute24Filled', \"24\", [\"M15 4.25a1.25 1.25 0 0 0-2.08-.93L8.42 7.3a.75.75 0 0 1-.49.19H4.25C3.01 7.5 2 8.5 2 9.75v4.5c0 1.24 1 2.25 2.25 2.25h3.68c.18 0 .36.06.5.19l4.49 3.99c.8.72 2.08.14 2.08-.93V4.25Zm1.22 4.97c.3-.3.77-.3 1.06 0L19 10.94l1.72-1.72a.75.75 0 1 1 1.06 1.06L20.06 12l1.72 1.72a.75.75 0 1 1-1.06 1.06L19 13.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L17.94 12l-1.72-1.72a.75.75 0 0 1 0-1.06Z\"]);\nexport const SpeakerMute24Regular = /*#__PURE__*/createFluentIcon('SpeakerMute24Regular', \"24\", [\"M12.92 3.32c.8-.72 2.08-.15 2.08.93v15.5a1.25 1.25 0 0 1-2.08.93l-4.5-4a.75.75 0 0 0-.49-.18H4.25C3.01 16.5 2 15.49 2 14.25v-4.5C2 8.5 3 7.5 4.25 7.5h3.68c.18 0 .36-.07.5-.2l4.49-3.98Zm.58 1.49L9.42 8.43c-.4.37-.94.57-1.49.57H4.25a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h3.68c.55 0 1.08.2 1.5.56l4.07 3.63V4.8Zm2.72 4.4c.3-.28.77-.28 1.06 0L19 10.95l1.72-1.72a.75.75 0 1 1 1.06 1.06L20.06 12l1.72 1.72a.75.75 0 0 1-1.06 1.06L19 13.06l-1.72 1.72a.75.75 0 1 1-1.06-1.06L17.94 12l-1.72-1.72a.75.75 0 0 1 0-1.06Z\"]);\nexport const SpeakerMute28Filled = /*#__PURE__*/createFluentIcon('SpeakerMute28Filled', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm3.28 5.91a.75.75 0 0 0-1.06 1.06L20.94 14l-2.22 2.2a.75.75 0 0 0 1.06 1.07l2.22-2.2 2.22 2.2a.75.75 0 1 0 1.06-1.06l-2.22-2.2 2.22-2.24a.75.75 0 0 0-1.06-1.06L22 12.95l-2.22-2.23Z\"]);\nexport const SpeakerMute28Regular = /*#__PURE__*/createFluentIcon('SpeakerMute28Regular', \"28\", [\"M14.4 3.9c.8-.75 2.1-.18 2.1.91v18.37c0 1.1-1.3 1.66-2.1.92l-4.94-4.63c-.33-.3-.75-.47-1.2-.47H5.25A3.25 3.25 0 0 1 2 15.75v-3.5c0-1.79 1.46-3.24 3.25-3.24h3.01c.45 0 .87-.17 1.2-.48l4.93-4.63Zm.6 1.5-4.52 4.23c-.6.56-1.4.88-2.22.88H5.25c-.97 0-1.75.78-1.75 1.75v3.49c0 .96.78 1.75 1.75 1.75h3.01c.83 0 1.62.31 2.22.88L15 22.6V5.39Zm4.78 5.32a.75.75 0 0 0-1.06 1.06L20.94 14l-2.22 2.2a.75.75 0 0 0 1.06 1.07l2.22-2.2 2.22 2.2a.75.75 0 1 0 1.06-1.06l-2.22-2.2 2.22-2.24a.75.75 0 0 0-1.06-1.06L22 12.95l-2.22-2.23Z\"]);\nexport const SpeakerMute32Filled = /*#__PURE__*/createFluentIcon('SpeakerMute32Filled', \"32\", [\"M18 5.6a1.25 1.25 0 0 0-2.13-.88l-4.7 4.7a2 2 0 0 1-1.41.58H6a4 4 0 0 0-4 4v4a4 4 0 0 0 4 4h3.76a2 2 0 0 1 1.41.59l4.7 4.69c.78.79 2.13.23 2.13-.88V5.6Zm3.3 6.7a1 1 0 0 1 1.4 0l2.3 2.29 2.3-2.3a1 1 0 0 1 1.4 1.42L26.42 16l2.3 2.3a1 1 0 0 1-1.42 1.4L25 17.42l-2.3 2.3a1 1 0 0 1-1.4-1.42L23.58 16l-2.3-2.3a1 1 0 0 1 0-1.4Z\"]);\nexport const SpeakerMute32Regular = /*#__PURE__*/createFluentIcon('SpeakerMute32Regular', \"32\", [\"M18 5.6a1.25 1.25 0 0 0-2.13-.88l-4.7 4.7a2 2 0 0 1-1.41.58H6a4 4 0 0 0-4 4v4a4 4 0 0 0 4 4h3.76a2 2 0 0 1 1.41.59l4.7 4.69c.78.79 2.13.23 2.13-.88V5.6Zm-5.41 5.23L16 7.4V24.6l-3.41-3.42A4 4 0 0 0 9.76 20H6a2 2 0 0 1-2-2v-4c0-1.1.9-2 2-2h3.76a4 4 0 0 0 2.83-1.17Zm10.12 1.46a1 1 0 0 0-1.42 1.42L23.6 16l-2.3 2.3a1 1 0 0 0 1.42 1.4L25 17.42l2.3 2.3a1 1 0 0 0 1.4-1.42L26.42 16l2.3-2.3a1 1 0 0 0-1.42-1.4L25 14.58l-2.3-2.3Z\"]);\nexport const SpeakerMute48Filled = /*#__PURE__*/createFluentIcon('SpeakerMute48Filled', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm7.29 11.95a1.25 1.25 0 0 1 1.76 0L38 22.23l3.87-3.86a1.25 1.25 0 1 1 1.76 1.76L39.77 24l3.86 3.87a1.25 1.25 0 0 1-1.76 1.76L38 25.77l-3.87 3.86a1.25 1.25 0 0 1-1.76-1.76L36.23 24l-3.86-3.87a1.25 1.25 0 0 1 0-1.76Z\"]);\nexport const SpeakerMute48Regular = /*#__PURE__*/createFluentIcon('SpeakerMute48Regular', \"48\", [\"M25.08 6.42A1.75 1.75 0 0 1 28 7.72v32.56c0 1.51-1.8 2.31-2.92 1.3l-8.2-7.36c-.88-.79-2-1.22-3.18-1.22H9a5.25 5.25 0 0 1-5.25-5.25v-7.5C3.75 17.35 6.1 15 9 15h4.7c1.17 0 2.3-.43 3.18-1.21l8.2-7.37Zm.42 2.98-6.95 6.25a7.25 7.25 0 0 1-4.85 1.85H9a2.75 2.75 0 0 0-2.75 2.75v7.5A2.75 2.75 0 0 0 9 30.5h4.7c1.79 0 3.51.66 4.85 1.86l6.95 6.24V9.4Zm6.87 8.97a1.25 1.25 0 0 1 1.76 0L38 22.23l3.87-3.86a1.25 1.25 0 1 1 1.76 1.76L39.77 24l3.86 3.87a1.25 1.25 0 0 1-1.76 1.76L38 25.77l-3.87 3.86a1.25 1.25 0 0 1-1.76-1.76L36.23 24l-3.86-3.87a1.25 1.25 0 0 1 0-1.76Z\"]);\nexport const SpeakerOff16Filled = /*#__PURE__*/createFluentIcon('SpeakerOff16Filled', \"16\", [\"m9 9.7 5.15 5.15a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L4.29 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5V9.7Zm2.7-.11-.79-.8a3.43 3.43 0 0 0-.33-2.42 2.38 2.38 0 0 0-.4-.48h.01a.5.5 0 0 1 .62-.78h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15 0 .63-.12 1.16-.3 1.59Zm1.53 1.51-.75-.74a5.5 5.5 0 0 0-.4-5.42 5.51 5.51 0 0 0-.88-1.04h-.01a.5.5 0 0 1 .62-.8v.01h.01l.03.03a3.14 3.14 0 0 1 .32.3A6.52 6.52 0 0 1 14 8a6.5 6.5 0 0 1-.77 3.1ZM9 6.88 6.18 4.06l1.97-1.92A.5.5 0 0 1 9 2.5v4.38Z\"]);\nexport const SpeakerOff16Regular = /*#__PURE__*/createFluentIcon('SpeakerOff16Regular', \"16\", [\"m9 9.7 5.15 5.15a.5.5 0 0 0 .7-.7l-13-13a.5.5 0 1 0-.7.7L4.29 5H3.5C2.67 5 2 5.66 2 6.5v3c0 .82.67 1.5 1.5 1.5h1.72l2.93 2.87A.5.5 0 0 0 9 13.5V9.7Zm-1-1v3.6l-2.22-2.18a.5.5 0 0 0-.35-.14H3.5a.5.5 0 0 1-.5-.5V6.5c0-.27.22-.5.5-.5h1.79l2.7 2.72Zm0-2.82v-2.2L6.89 4.78l-.7-.71 1.96-1.92A.5.5 0 0 1 9 2.5v4.38l-1-1Zm3.7 3.7-.79-.79a3.43 3.43 0 0 0-.33-2.42 2.38 2.38 0 0 0-.4-.48h.01a.5.5 0 0 1 .62-.78h.01l.02.02a1.6 1.6 0 0 1 .19.18c.1.12.26.3.4.54.3.48.57 1.2.57 2.15 0 .63-.12 1.16-.3 1.59Zm1.53 1.52-.75-.74a5.5 5.5 0 0 0-.4-5.42 5.51 5.51 0 0 0-.88-1.04h-.01a.5.5 0 0 1 .62-.8v.01h.01l.03.03a3.14 3.14 0 0 1 .32.3A6.52 6.52 0 0 1 14 8a6.5 6.5 0 0 1-.77 3.1Z\"]);\nexport const SpeakerOff20Filled = /*#__PURE__*/createFluentIcon('SpeakerOff20Filled', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.29 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.87 3.6a1 1 0 0 0 1.68-.74v-4.28l5.15 5.14a.5.5 0 0 0 .7-.7l-2.56-2.57L2.85 2.15Zm13.11 2.52a8 8 0 0 1 .66 9.83l-.73-.73a7 7 0 0 0-.68-8.44.5.5 0 1 1 .75-.66Zm-1.2 2.58c1 1.74.95 3.8.04 5.43l-.74-.74a4.5 4.5 0 0 0-.17-4.19.5.5 0 1 1 .87-.5ZM12 3.01v6.87L7.25 5.13l3.07-2.86a1 1 0 0 1 1.68.74Z\"]);\nexport const SpeakerOff20Regular = /*#__PURE__*/createFluentIcon('SpeakerOff20Regular', \"20\", [\"M2.85 2.15a.5.5 0 1 0-.7.7L5.29 6H3.5C2.68 6 2 6.67 2 7.5v5c0 .83.68 1.5 1.5 1.5H6.1a.5.5 0 0 1 .34.13l3.88 3.6a1 1 0 0 0 1.68-.74V12.7l5.15 5.15a.5.5 0 0 0 .7-.7l-2.56-2.57L2.85 2.15ZM11 11.7V17l-3.88-3.6A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6l.18-.01L11 11.7ZM11 3v5.88l1 1V3a1 1 0 0 0-1.68-.74L7.24 5.12l.71.71L11 3.01Zm3.06 8.94.74.74a5.5 5.5 0 0 0-.04-5.43.5.5 0 1 0-.86.5 4.5 4.5 0 0 1 .16 4.19Zm1.84 1.84.72.72a8 8 0 0 0-.66-9.83.5.5 0 1 0-.74.66 7 7 0 0 1 .68 8.45Z\"]);\nexport const SpeakerOff24Filled = /*#__PURE__*/createFluentIcon('SpeakerOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06L6.44 7.5H4.25C3.01 7.5 2 8.5 2 9.75v4.5c0 1.24 1 2.25 2.25 2.25h3.68c.18 0 .36.06.5.19l4.49 3.99c.8.72 2.08.14 2.08-.93v-3.69l5.72 5.72a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm13.86 11.74 1.14 1.14a6.97 6.97 0 0 0-.12-6.43.75.75 0 0 0-1.32.72 5.47 5.47 0 0 1 .3 4.57Zm2.25 2.25 1.1 1.09a9.96 9.96 0 0 0-.45-11.25.75.75 0 0 0-1.2.9 8.46 8.46 0 0 1 .55 9.26ZM9.52 6.34 15 11.82V4.25a1.25 1.25 0 0 0-2.08-.93l-3.4 3.02Z\"]);\nexport const SpeakerOff24Regular = /*#__PURE__*/createFluentIcon('SpeakerOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06L6.44 7.5H4.25C3.01 7.5 2 8.5 2 9.75v4.5c0 1.24 1 2.25 2.25 2.25h3.68c.18 0 .36.06.5.19l4.49 3.99c.8.72 2.08.14 2.08-.93v-3.69l5.72 5.72a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM13.5 14.56v4.63l-4.08-3.63A2.25 2.25 0 0 0 7.93 15H4.25a.75.75 0 0 1-.75-.75v-4.5c0-.42.34-.75.75-.75h3.68l5.57 5.56Zm0-9.75v5.5l1.5 1.5V4.26a1.25 1.25 0 0 0-2.08-.93l-3.4 3.02 1.06 1.06 2.92-2.6Zm3.64 9.15 1.14 1.14a6.97 6.97 0 0 0-.12-6.43.75.75 0 0 0-1.32.72 5.47 5.47 0 0 1 .3 4.57Zm2.25 2.25 1.1 1.09a9.96 9.96 0 0 0-.45-11.25.75.75 0 0 0-1.2.9 8.46 8.46 0 0 1 .55 9.26Z\"]);\nexport const SpeakerOff28Filled = /*#__PURE__*/createFluentIcon('SpeakerOff28Filled', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l5.72 5.73H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92v-5.62l8.22 8.22a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm7.34 5.22 5.88 5.88v-8.5c0-1.1-1.3-1.67-2.1-.92l-3.78 3.54Zm9.55 9.55 1.14 1.14a9.46 9.46 0 0 0-.96-9.83.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 1.02 7.8Zm2.8 2.8 1.1 1.1A13.2 13.2 0 0 0 22.7 5.25a.75.75 0 1 0-1.12 1 11.7 11.7 0 0 1 1.4 13.54Z\"]);\nexport const SpeakerOff28Regular = /*#__PURE__*/createFluentIcon('SpeakerOff28Regular', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l5.72 5.73H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92v-5.62l8.22 8.22a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM15 16.06v6.55l-4.52-4.23c-.6-.57-1.4-.88-2.22-.88H5.25c-.97 0-1.75-.79-1.75-1.75v-3.5c0-.96.78-1.74 1.75-1.74h3.01c.35 0 .7-.06 1.02-.17L15 16.06Zm-4.38-8.62 1.06 1.06L15 5.4v6.42l1.5 1.5v-8.5c0-1.1-1.3-1.67-2.1-.92l-3.78 3.54Zm9.55 9.55 1.14 1.14a9.46 9.46 0 0 0-.96-9.83.75.75 0 1 0-1.2.9 7.96 7.96 0 0 1 1.02 7.8Zm2.8 2.8 1.1 1.1A13.2 13.2 0 0 0 22.7 5.25a.75.75 0 0 0-1.12 1 11.7 11.7 0 0 1 1.4 13.54Z\"]);\nexport const SpeakerOff48Filled = /*#__PURE__*/createFluentIcon('SpeakerOff48Filled', \"48\", [\"m28 29.77 13.87 13.86a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L13.23 15H9a5.25 5.25 0 0 0-5.25 5.25v7.5C3.75 30.65 6.1 33 9 33h4.7c1.17 0 2.3.43 3.18 1.22l8.2 7.36a1.75 1.75 0 0 0 2.92-1.3V29.77Zm0-7.07-9.96-9.96 7.04-6.32A1.75 1.75 0 0 1 28 7.72V22.7Zm8.19 8.18-1.85-1.85a11.42 11.42 0 0 0-1.93-12.85l-.01-.02a1.25 1.25 0 0 1 1.7-1.83c.17.17 0 0 0 0v.01l.02.02.04.04a6.34 6.34 0 0 1 .6.64 13.98 13.98 0 0 1 1.43 15.84ZM41 35.7l-1.85-1.84A21.33 21.33 0 0 0 41.51 24c0-4.5-1.3-7.98-2.6-10.33a18.45 18.45 0 0 0-2.49-3.48l-.03-.03a1.25 1.25 0 0 1 1.72-1.81c.45.46 0 0 0 0h.01l.02.02a5.23 5.23 0 0 1 .26.27 20.94 20.94 0 0 1 2.7 3.82A23.77 23.77 0 0 1 44.01 24a23.77 23.77 0 0 1-3 11.7Z\"]);\nexport const SpeakerOff48Regular = /*#__PURE__*/createFluentIcon('SpeakerOff48Regular', \"48\", [\"m28 29.77 13.87 13.86a1.25 1.25 0 0 0 1.76-1.76L6.13 4.37a1.25 1.25 0 1 0-1.76 1.76L13.23 15H9a5.25 5.25 0 0 0-5.25 5.25v7.5C3.75 30.65 6.1 33 9 33h4.7c1.17 0 2.3.43 3.18 1.22l8.2 7.36a1.75 1.75 0 0 0 2.92-1.3V29.77Zm-2.5-2.5V38.6l-6.95-6.25a7.25 7.25 0 0 0-4.85-1.85H9a2.75 2.75 0 0 1-2.75-2.75v-7.5A2.75 2.75 0 0 1 9 17.5h4.7c.61 0 1.22-.08 1.8-.23l10 10ZM19.81 14.5l-1.77-1.77 7.04-6.32A1.75 1.75 0 0 1 28 7.72V22.7l-2.5-2.5V9.4l-5.69 5.1ZM36.2 30.88l-1.85-1.85a11.42 11.42 0 0 0-1.93-12.85l-.01-.02a1.25 1.25 0 0 1 1.7-1.83l-.85.92.85-.92v.01l.02.02a3.95 3.95 0 0 1 .18.17c.12.12.27.3.45.51a13.98 13.98 0 0 1 1.43 15.84Zm4.83 4.84-1.85-1.85A21.36 21.36 0 0 0 41.5 24c0-4.55-1.3-8.03-2.6-10.37a17.9 17.9 0 0 0-2.5-3.47 1.25 1.25 0 0 1 1.7-1.82l-.85.91.86-.91.02.03a5.28 5.28 0 0 1 .27.26 20.4 20.4 0 0 1 2.7 3.79A23.76 23.76 0 0 1 44 24c0 5.05-1.45 8.94-2.9 11.58l-.03.04-.05.1Z\"]);\nexport const SpeakerSettings20Filled = /*#__PURE__*/createFluentIcon('SpeakerSettings20Filled', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.87 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .35.13l3.21 2.98A5.48 5.48 0 0 1 12 9.6V3Zm.07 8.44-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.45-.12a2 2 0 0 0 1.44-2.48Zm2.43 4.06a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"]);\nexport const SpeakerSettings20Regular = /*#__PURE__*/createFluentIcon('SpeakerSettings20Regular', \"20\", [\"M12 3a1 1 0 0 0-1.68-.73l-3.88 3.6A.5.5 0 0 1 6.1 6H3.5C2.67 6 2 6.67 2 7.5v5c0 .83.67 1.5 1.5 1.5h2.6a.5.5 0 0 1 .34.13l3.22 2.99a5.46 5.46 0 0 1-.62-1.94L7.12 13.4A1.5 1.5 0 0 0 6.1 13H3.5a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h2.6c.38 0 .75-.14 1.02-.4L11 3v7.26c.3-.25.64-.48 1-.66V3Zm.06 8.44a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.16-.55a2 2 0 0 1 1.43-2.48l.47-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.15.55Zm2.44 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z\"]);\nexport const SpeakerSettings24Filled = /*#__PURE__*/createFluentIcon('SpeakerSettings24Filled', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v7.25a6.5 6.5 0 0 0-3.76 7.77L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14Zm-.42 10.54a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.52l-.19.63c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.9l-.2-.7a2 2 0 0 1 1.44-2.5l.59-.13a5.72 5.72 0 0 0 0-1.81l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.91l.2.69ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const SpeakerSettings24Regular = /*#__PURE__*/createFluentIcon('SpeakerSettings24Regular', \"24\", [\"M14.7 3.44c.2.23.3.51.3.81v7.25a6.5 6.5 0 0 0-1.5.88v-7.6L8.52 9H4.25a.75.75 0 0 0-.75.75v4.5c0 .41.34.75.75.75h4.27l2.5 2.1a6.58 6.58 0 0 0 .22 2.17L7.98 16.5H4.25c-1.24 0-2.25-1-2.25-2.25v-4.5C2 8.51 3 7.5 4.25 7.5h3.73l4.96-4.2a1.25 1.25 0 0 1 1.76.14Zm-.42 10.54a2 2 0 0 1-1.44 2.5l-.59.14a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.52l-.19.63c.44.38.94.7 1.49.92l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.9l-.2-.7a2 2 0 0 1 1.44-2.5l.59-.13a5.72 5.72 0 0 0 0-1.81l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.63c-.44-.39-.94-.7-1.49-.93l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.91l.2.69ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const SpeakerSettings28Filled = /*#__PURE__*/createFluentIcon('SpeakerSettings28Filled', \"28\", [\"M14.4 3.84c.8-.75 2.1-.18 2.1.9v9.4A7.49 7.49 0 0 0 13.43 23l-3.97-3.7c-.33-.3-.75-.47-1.2-.47H5.25A3.24 3.24 0 0 1 2 15.6v-3.46A3.24 3.24 0 0 1 5.25 8.9h3.01c.45 0 .87-.17 1.2-.47l4.93-4.6Zm2.4 12.86a2 2 0 0 1-1.45 2.5l-1.02.25a6.8 6.8 0 0 0 0 2.15l.98.23a2 2 0 0 1 1.45 2.52l-.32 1.1c.52.45 1.11.83 1.75 1.1l.85-.9a2 2 0 0 1 2.9 0l.85.9a6.2 6.2 0 0 0 1.75-1.09l-.34-1.16a2 2 0 0 1 1.44-2.5l1.03-.25a6.8 6.8 0 0 0 0-2.15l-.99-.23a2 2 0 0 1-1.45-2.51l.33-1.1a6.2 6.2 0 0 0-1.75-1.1l-.85.88a2 2 0 0 1-2.9 0l-.85-.9a6.2 6.2 0 0 0-1.75 1.1l.34 1.16Zm3.7 5.3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z\"]);\nexport const SpeakerSettings28Regular = /*#__PURE__*/createFluentIcon('SpeakerSettings28Regular', \"28\", [\"M16.5 4.74c0-1.08-1.3-1.65-2.1-.9l-4.94 4.6c-.33.3-.75.47-1.2.47H5.25A3.24 3.24 0 0 0 2 12.14v3.46a3.24 3.24 0 0 0 3.25 3.23h3.01c.45 0 .87.17 1.2.47l3.97 3.7a7.47 7.47 0 0 1-.43-2.44l-2.52-2.35c-.6-.56-1.4-.87-2.22-.87H5.25c-.97 0-1.75-.78-1.75-1.74v-3.46c0-.96.78-1.74 1.75-1.74h3.01c.83 0 1.62-.32 2.22-.88L15 5.32v10.07c.44-.47.95-.9 1.5-1.24v-9.4Zm.3 11.96a2 2 0 0 1-1.45 2.5l-1.02.25a6.8 6.8 0 0 0 0 2.15l.98.23a2 2 0 0 1 1.45 2.52l-.32 1.1c.52.45 1.11.83 1.75 1.1l.85-.9a2 2 0 0 1 2.9 0l.85.9a6.2 6.2 0 0 0 1.75-1.09l-.34-1.16a2 2 0 0 1 1.44-2.5l1.03-.25a6.8 6.8 0 0 0 0-2.15l-.99-.23a2 2 0 0 1-1.45-2.51l.33-1.1a6.2 6.2 0 0 0-1.75-1.1l-.85.88a2 2 0 0 1-2.9 0l-.85-.9a6.2 6.2 0 0 0-1.75 1.1l.34 1.16Zm3.7 5.3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z\"]);\nexport const SpeakerUsb20Filled = /*#__PURE__*/createFluentIcon('SpeakerUsb20Filled', \"20\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.87-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .35-.13l3.87-3.6ZM14 8V6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 1 1v2.2a1 1 0 0 1-.2.6l-1.3 1.8V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1.4l-1.31-1.84a1 1 0 0 1-.19-.58V9a1 1 0 0 1 1-1Zm1 0h2V6h-2v2Z\"]);\nexport const SpeakerUsb20Regular = /*#__PURE__*/createFluentIcon('SpeakerUsb20Regular', \"20\", [\"M10.32 2.27a1 1 0 0 1 1.68.74v13.98a1 1 0 0 1-1.68.74l-3.88-3.6A.5.5 0 0 0 6.1 14H3.5A1.5 1.5 0 0 1 2 12.5v-5C2 6.67 2.67 6 3.5 6h2.6a.5.5 0 0 0 .34-.13l3.88-3.6Zm.68.74L7.12 6.6c-.27.26-.64.4-1.02.4H3.5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h2.6c.38 0 .75.14 1.02.4L11 17V3ZM14 8V6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 1 1v2.2a1 1 0 0 1-.2.6l-1.3 1.8V15a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1.4l-1.31-1.84a1 1 0 0 1-.19-.58V9a1 1 0 0 1 1-1Zm1 0h2V6h-2v2Z\"]);\nexport const SpeakerUsb24Filled = /*#__PURE__*/createFluentIcon('SpeakerUsb24Filled', \"24\", [\"M15 4.25a1.25 1.25 0 0 0-2.06-.96L7.98 7.5H4.25C3.01 7.5 2 8.52 2 9.76v4.5c0 1.24 1 2.25 2.25 2.25h3.73l4.96 4.2a1.25 1.25 0 0 0 2.06-.95V4.25Zm1.16 9.7L17.5 16v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2l1.33-2a1 1 0 0 0 .17-.56V10a1 1 0 0 0-1-1V7a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v2a1 1 0 0 0-1 1v3.4c0 .2.06.4.16.55ZM18.5 7.5h2V9h-2V7.5Z\"]);\nexport const SpeakerUsb24Regular = /*#__PURE__*/createFluentIcon('SpeakerUsb24Regular', \"24\", [\"M15 4.25a1.25 1.25 0 0 0-2.06-.96L7.98 7.5H4.25C3.01 7.5 2 8.52 2 9.76v4.5c0 1.24 1 2.25 2.25 2.25h3.73l4.96 4.2a1.25 1.25 0 0 0 2.06-.95V4.25ZM8.52 9l4.98-4.21V19.2L8.52 15H4.25a.75.75 0 0 1-.75-.75v-4.5c0-.42.34-.75.75-.75h4.27Zm7.64 4.95L17.5 16v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2l1.33-2a1 1 0 0 0 .17-.56V10a1 1 0 0 0-1-1V7a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v2a1 1 0 0 0-1 1v3.4c0 .2.06.4.16.55ZM18.5 7.5h2V9h-2V7.5Z\"]);\nexport const SpeakerUsb28Filled = /*#__PURE__*/createFluentIcon('SpeakerUsb28Filled', \"28\", [\"M16.5 4.81c0-1.09-1.3-1.66-2.1-.9L9.45 8.52c-.33.3-.75.48-1.2.48H5.25A3.25 3.25 0 0 0 2 12.26v3.49C2 17.55 3.46 19 5.25 19h3.01c.45 0 .87.17 1.2.47l4.94 4.63c.8.74 2.1.18 2.1-.92V4.81Zm3 16.19v-2.33l-1.37-2.44a1 1 0 0 1-.13-.5v-4.16a1 1 0 0 1 1-1V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.57a1 1 0 0 1 1 1v4.17a1 1 0 0 1-.13.49l-1.37 2.44V21a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1Zm4-12.5h-3v2.07h3V8.5Z\"]);\nexport const SpeakerUsb28Regular = /*#__PURE__*/createFluentIcon('SpeakerUsb28Regular', \"28\", [\"M14.4 3.9c.8-.75 2.1-.18 2.1.91v18.37c0 1.1-1.3 1.66-2.1.92l-4.94-4.63c-.33-.3-.75-.47-1.2-.47H5.25A3.25 3.25 0 0 1 2 15.75v-3.5c0-1.79 1.46-3.24 3.25-3.24h3.01c.45 0 .87-.17 1.2-.48l4.93-4.63Zm.6 1.5-4.52 4.23c-.6.56-1.4.88-2.22.88H5.25c-.97 0-1.75.78-1.75 1.75v3.49c0 .96.78 1.75 1.75 1.75h3.01c.83 0 1.62.31 2.22.88L15 22.6V5.39ZM19.5 21v-2.33l-1.37-2.44a1 1 0 0 1-.13-.5v-4.16a1 1 0 0 1 1-1V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.57a1 1 0 0 1 1 1v4.17a1 1 0 0 1-.13.49l-1.37 2.44V21a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1Zm4-12.5h-3v2.07h3V8.5Z\"]);\nexport const SpinnerIos16Filled = /*#__PURE__*/createFluentIcon('SpinnerIos16Filled', \"16\", [\"M2.5 8A5.5 5.5 0 1 1 8 13.5.75.75 0 0 0 8 15a7 7 0 1 0-7-7 .75.75 0 0 0 1.5 0Z\"]);\nexport const SpinnerIos16Regular = /*#__PURE__*/createFluentIcon('SpinnerIos16Regular', \"16\", [\"M2 8a6 6 0 1 1 6 6 .5.5 0 0 0 0 1 7 7 0 1 0-7-7 .5.5 0 0 0 1 0Z\"]);\nexport const SpinnerIos20Filled = /*#__PURE__*/createFluentIcon('SpinnerIos20Filled', \"20\", [\"M10 3.5A6.5 6.5 0 0 0 3.5 10 .75.75 0 0 1 2 10a8 8 0 1 1 8 8 .75.75 0 0 1 0-1.5 6.5 6.5 0 1 0 0-13Z\"]);\nexport const SpinnerIos20Regular = /*#__PURE__*/createFluentIcon('SpinnerIos20Regular', \"20\", [\"M10 3a7 7 0 0 0-7 7 .5.5 0 0 1-1 0 8 8 0 1 1 8 8 .5.5 0 0 1 0-1 7 7 0 1 0 0-14Z\"]);\nexport const SplitHint20Filled = /*#__PURE__*/createFluentIcon('SplitHint20Filled', \"20\", [\"M9.5 2c.28 0 .5.22.5.5v15a.5.5 0 0 1-1 0v-15c0-.28.22-.5.5-.5ZM4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h4V4H4Zm11 1a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-4-4a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1h1Zm.5 11.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Z\"]);\nexport const SplitHint20Regular = /*#__PURE__*/createFluentIcon('SplitHint20Regular', \"20\", [\"M9.5 2c.28 0 .5.22.5.5v15a.5.5 0 0 1-1 0v-15c0-.28.22-.5.5-.5ZM2 6c0-1.1.9-2 2-2h4v1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4v1H4a2 2 0 0 1-2-2V6Zm13-1a1 1 0 0 1 1 1v.5a.5.5 0 0 0 1 0V6a2 2 0 0 0-2-2h-.5a.5.5 0 0 0 0 1h.5Zm0 10a1 1 0 0 0 1-1v-.5a.5.5 0 0 1 1 0v.5a2 2 0 0 1-2 2h-.5a.5.5 0 0 1 0-1h.5Zm1.5-7a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-.5-.5Zm-4-4a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1h1Zm.5 11.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0 0 1h1a.5.5 0 0 0 .5-.5Z\"]);\nexport const SplitHorizontal12Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal12Filled', \"12\", [\"M8.5 1c.83 0 1.5.67 1.5 1.5V4H2V2.5C2 1.67 2.67 1 3.5 1h5Zm2 4a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1h9ZM2 7v1.5c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5V7H2Z\"]);\nexport const SplitHorizontal12Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal12Regular', \"12\", [\"M11 5.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0 0 1h9a.5.5 0 0 0 .5-.5Zm-1-3V4H9V2.5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0-.5.5V4H2V2.5C2 1.67 2.67 1 3.5 1h5c.83 0 1.5.67 1.5 1.5Zm-7 6V7H2v1.5c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5V7H9v1.5a.5.5 0 0 1-.5.5h-5a.5.5 0 0 1-.5-.5Z\"]);\nexport const SplitHorizontal16Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal16Filled', \"16\", [\"M14.5 8a.5.5 0 0 0 0-1h-13a.5.5 0 0 0 0 1h13ZM11 1a2 2 0 0 1 2 2v3H3V3c0-1.1.9-2 2-2h6ZM3 9v3c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V9H3Z\"]);\nexport const SplitHorizontal16Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal16Regular', \"16\", [\"M14.5 8a.5.5 0 0 0 0-1h-13a.5.5 0 0 0 0 1h13ZM3 6h1V3a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v3h1V3a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3Zm0 6V9h1v3a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V9h1v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z\"]);\nexport const SplitHorizontal20Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal20Filled', \"20\", [\"M17.5 10a.5.5 0 0 0 0-1h-15a.5.5 0 0 0 0 1h15ZM14 2a2 2 0 0 1 2 2v4H4V4c0-1.1.9-2 2-2h8ZM4 11v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-4H4Z\"]);\nexport const SplitHorizontal20Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal20Regular', \"20\", [\"M17.5 10a.5.5 0 0 0 0-1h-15a.5.5 0 0 0 0 1h15ZM16 4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4h1V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v4h1V4Zm0 7h-1v4a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-4H4v4c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2v-4Z\"]);\nexport const SplitHorizontal24Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal24Filled', \"24\", [\"M21.25 12.5a.75.75 0 0 0 0-1.5H2.75a.75.75 0 0 0 0 1.5h18.5ZM17.75 2C18.99 2 20 3 20 4.25V10H4V4.25C4 3.01 5 2 6.25 2h11.5ZM4 19.25V13.5h16v5.75c0 1.24-1 2.25-2.25 2.25H6.25c-1.24 0-2.25-1-2.25-2.25Z\"]);\nexport const SplitHorizontal24Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal24Regular', \"24\", [\"M21.25 12.5a.75.75 0 0 0 0-1.5H2.75a.75.75 0 0 0 0 1.5h18.5ZM20 4.25C20 3.01 19 2 17.75 2H6.25C5.01 2 4 3 4 4.25V10h1.5V4.25c0-.41.34-.75.75-.75h11.5c.41 0 .75.34.75.75V10H20V4.25Zm-14.5 15V13.5H4v5.75c0 1.24 1 2.25 2.25 2.25h11.5c1.24 0 2.25-1 2.25-2.25V13.5h-1.5v5.75c0 .41-.34.75-.75.75H6.25a.75.75 0 0 1-.75-.75Z\"]);\nexport const SplitHorizontal28Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal28Filled', \"28\", [\"M2.75 13a.75.75 0 0 0 0 1.5h22.5a.75.75 0 0 0 0-1.5H2.75Zm18.5-11A2.75 2.75 0 0 1 24 4.75V12H4V4.75A2.75 2.75 0 0 1 6.75 2h14.5ZM4 22.75V15.5h20v7.25a2.75 2.75 0 0 1-2.75 2.75H6.75A2.75 2.75 0 0 1 4 22.75Z\"]);\nexport const SplitHorizontal28Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal28Regular', \"28\", [\"M2.75 13a.75.75 0 0 0 0 1.5h22.5a.75.75 0 0 0 0-1.5H2.75ZM24 4.75A2.75 2.75 0 0 0 21.25 2H6.75A2.75 2.75 0 0 0 4 4.75V12h1.5V4.75c0-.69.56-1.25 1.25-1.25h14.5c.69 0 1.25.56 1.25 1.25V12H24V4.75Zm-18.5 18V15.5H4v7.25a2.75 2.75 0 0 0 2.75 2.75h14.5A2.75 2.75 0 0 0 24 22.75V15.5h-1.5v7.25c0 .69-.56 1.25-1.25 1.25H6.75c-.69 0-1.25-.56-1.25-1.25Z\"]);\nexport const SplitHorizontal32Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal32Filled', \"32\", [\"M3 15a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2H3Zm3 11.5v-8h20v8a3.5 3.5 0 0 1-3.5 3.5h-13A3.5 3.5 0 0 1 6 26.5Zm20-13v-8A3.5 3.5 0 0 0 22.5 2h-13A3.5 3.5 0 0 0 6 5.5v8h20Z\"]);\nexport const SplitHorizontal32Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal32Regular', \"32\", [\"M3 15a1 1 0 1 0 0 2h26a1 1 0 1 0 0-2H3Zm5 11.5v-8H6v8A3.5 3.5 0 0 0 9.5 30h13a3.5 3.5 0 0 0 3.5-3.5v-8h-2v8c0 .83-.67 1.5-1.5 1.5h-13A1.5 1.5 0 0 1 8 26.5Zm18-13v-8A3.5 3.5 0 0 0 22.5 2h-13A3.5 3.5 0 0 0 6 5.5v8h2v-8C8 4.67 8.67 4 9.5 4h13c.83 0 1.5.67 1.5 1.5v8h2Z\"]);\nexport const SplitHorizontal48Filled = /*#__PURE__*/createFluentIcon('SplitHorizontal48Filled', \"48\", [\"M42.75 25.5a1.25 1.25 0 1 0 0-2.5H5.25a1.25 1.25 0 1 0 0 2.5h37.5ZM8 39.75V27.5h32v12.25C40 42.1 38.1 44 35.75 44h-23.5A4.25 4.25 0 0 1 8 39.75ZM40 21V8.25C40 5.9 38.1 4 35.75 4h-23.5A4.25 4.25 0 0 0 8 8.25V21h32Z\"]);\nexport const SplitHorizontal48Regular = /*#__PURE__*/createFluentIcon('SplitHorizontal48Regular', \"48\", [\"M42.75 25.5a1.25 1.25 0 1 0 0-2.5H5.25a1.25 1.25 0 1 0 0 2.5h37.5ZM10.5 39.75V27.5H8v12.25C8 42.1 9.9 44 12.25 44h23.5C38.1 44 40 42.1 40 39.75V27.5h-2.5v12.25c0 .97-.78 1.75-1.75 1.75h-23.5c-.97 0-1.75-.78-1.75-1.75ZM40 21V8.25C40 5.9 38.1 4 35.75 4h-23.5A4.25 4.25 0 0 0 8 8.25V21h2.5V8.25c0-.97.78-1.75 1.75-1.75h23.5c.97 0 1.75.78 1.75 1.75V21H40Z\"]);\nexport const SplitVertical12Filled = /*#__PURE__*/createFluentIcon('SplitVertical12Filled', \"12\", [\"M6 1.5a.5.5 0 0 0-1 0v9a.5.5 0 0 0 1 0v-9Zm-5 2C1 2.67 1.67 2 2.5 2H4v8H2.5A1.5 1.5 0 0 1 1 8.5v-5ZM7 10h1.5c.83 0 1.5-.67 1.5-1.5v-5C10 2.67 9.33 2 8.5 2H7v8Z\"]);\nexport const SplitVertical12Regular = /*#__PURE__*/createFluentIcon('SplitVertical12Regular', \"12\", [\"M5.5 1a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 1 0v-9a.5.5 0 0 0-.5-.5Zm-3 1H4v1H2.5a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5H4v1H2.5A1.5 1.5 0 0 1 1 8.5v-5C1 2.67 1.67 2 2.5 2Zm6 7H7v1h1.5c.83 0 1.5-.67 1.5-1.5v-5C10 2.67 9.33 2 8.5 2H7v1h1.5c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5Z\"]);\nexport const SplitVertical16Filled = /*#__PURE__*/createFluentIcon('SplitVertical16Filled', \"16\", [\"M8 1.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM1 5c0-1.1.9-2 2-2h3v10H3a2 2 0 0 1-2-2V5Zm8 8h3a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H9v10Z\"]);\nexport const SplitVertical16Regular = /*#__PURE__*/createFluentIcon('SplitVertical16Regular', \"16\", [\"M8 1.5a.5.5 0 0 0-1 0v13a.5.5 0 0 0 1 0v-13ZM6 13v-1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h3V3H3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h3Zm6 0H9v-1h3a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H9V3h3a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2Z\"]);\nexport const SplitVertical20Filled = /*#__PURE__*/createFluentIcon('SplitVertical20Filled', \"20\", [\"M10 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM2 6c0-1.1.9-2 2-2h4v12H4a2 2 0 0 1-2-2V6Zm9 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4v12Z\"]);\nexport const SplitVertical20Regular = /*#__PURE__*/createFluentIcon('SplitVertical20Regular', \"20\", [\"M10 2.5a.5.5 0 0 0-1 0v15a.5.5 0 0 0 1 0v-15ZM4 4a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h4v-1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4V4H4Zm7 0v1h4a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-4v1h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4Z\"]);\nexport const SplitVertical24Filled = /*#__PURE__*/createFluentIcon('SplitVertical24Filled', \"24\", [\"M12.5 2.75a.75.75 0 0 0-1.5 0v18.5a.75.75 0 0 0 1.5 0V2.75ZM2 6.25C2 5.01 3 4 4.25 4H10v16H4.25C3.01 20 2 19 2 17.75V6.25ZM19.25 20H13.5V4h5.75c1.24 0 2.25 1 2.25 2.25v11.5c0 1.24-1 2.25-2.25 2.25Z\"]);\nexport const SplitVertical24Regular = /*#__PURE__*/createFluentIcon('SplitVertical24Regular', \"24\", [\"M12.5 2.75a.75.75 0 0 0-1.5 0v18.5a.75.75 0 0 0 1.5 0V2.75ZM4.25 4C3.01 4 2 5 2 6.25v11.5C2 18.99 3 20 4.25 20H10v-1.5H4.25a.75.75 0 0 1-.75-.75V6.25c0-.41.34-.75.75-.75H10V4H4.25Zm15 14.5H13.5V20h5.75c1.24 0 2.25-1 2.25-2.25V6.25c0-1.24-1-2.25-2.25-2.25H13.5v1.5h5.75c.41 0 .75.34.75.75v11.5c0 .41-.34.75-.75.75Z\"]);\nexport const SplitVertical28Filled = /*#__PURE__*/createFluentIcon('SplitVertical28Filled', \"28\", [\"M13 25.25a.75.75 0 0 0 1.5 0V2.75a.75.75 0 0 0-1.5 0v22.5ZM2 6.75A2.75 2.75 0 0 1 4.75 4H12v20H4.75A2.75 2.75 0 0 1 2 21.25V6.75ZM22.75 24H15.5V4h7.25a2.75 2.75 0 0 1 2.75 2.75v14.5A2.75 2.75 0 0 1 22.75 24Z\"]);\nexport const SplitVertical28Regular = /*#__PURE__*/createFluentIcon('SplitVertical28Regular', \"28\", [\"M13 25.25a.75.75 0 0 0 1.5 0V2.75a.75.75 0 0 0-1.5 0v22.5ZM4.75 4A2.75 2.75 0 0 0 2 6.75v14.5A2.75 2.75 0 0 0 4.75 24H12v-1.5H4.75c-.69 0-1.25-.56-1.25-1.25V6.75c0-.69.56-1.25 1.25-1.25H12V4H4.75Zm18 18.5H15.5V24h7.25a2.75 2.75 0 0 0 2.75-2.75V6.75A2.75 2.75 0 0 0 22.75 4H15.5v1.5h7.25c.69 0 1.25.56 1.25 1.25v14.5c0 .69-.56 1.25-1.25 1.25Z\"]);\nexport const SplitVertical32Filled = /*#__PURE__*/createFluentIcon('SplitVertical32Filled', \"32\", [\"M15 29a1 1 0 1 0 2 0V3a1 1 0 1 0-2 0v26Zm11.5-3h-8V6h8A3.5 3.5 0 0 1 30 9.5v13a3.5 3.5 0 0 1-3.5 3.5Zm-13-20h-8A3.5 3.5 0 0 0 2 9.5v13A3.5 3.5 0 0 0 5.5 26h8V6Z\"]);\nexport const SplitVertical32Regular = /*#__PURE__*/createFluentIcon('SplitVertical32Regular', \"32\", [\"M15 29a1 1 0 1 0 2 0V3a1 1 0 1 0-2 0v26Zm11.5-5h-8v2h8a3.5 3.5 0 0 0 3.5-3.5v-13A3.5 3.5 0 0 0 26.5 6h-8v2h8c.83 0 1.5.67 1.5 1.5v13c0 .83-.67 1.5-1.5 1.5Zm-13-18h-8A3.5 3.5 0 0 0 2 9.5v13A3.5 3.5 0 0 0 5.5 26h8v-2h-8A1.5 1.5 0 0 1 4 22.5v-13C4 8.67 4.67 8 5.5 8h8V6Z\"]);\nexport const SplitVertical48Filled = /*#__PURE__*/createFluentIcon('SplitVertical48Filled', \"48\", [\"M25.5 5.25a1.25 1.25 0 1 0-2.5 0v37.5a1.25 1.25 0 1 0 2.5 0V5.25ZM39.75 40H27.5V8h12.25C42.1 8 44 9.9 44 12.25v23.5C44 38.1 42.1 40 39.75 40ZM21 8H8.25A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40H21V8Z\"]);\nexport const SplitVertical48Regular = /*#__PURE__*/createFluentIcon('SplitVertical48Regular', \"48\", [\"M25.5 5.25a1.25 1.25 0 1 0-2.5 0v37.5a1.25 1.25 0 1 0 2.5 0V5.25ZM39.75 37.5H27.5V40h12.25C42.1 40 44 38.1 44 35.75v-23.5C44 9.9 42.1 8 39.75 8H27.5v2.5h12.25c.97 0 1.75.78 1.75 1.75v23.5c0 .97-.78 1.75-1.75 1.75ZM21 8H8.25A4.25 4.25 0 0 0 4 12.25v23.5C4 38.1 5.9 40 8.25 40H21v-2.5H8.25c-.97 0-1.75-.78-1.75-1.75v-23.5c0-.97.78-1.75 1.75-1.75H21V8Z\"]);\nexport const Sport16Filled = /*#__PURE__*/createFluentIcon('Sport16Filled', \"16\", [\"M14.53 4.28a5.5 5.5 0 0 0-.8-1.3l-1.75 1.74a2 2 0 0 0 2.55-.44Zm-3.25-.26 1.74-1.75a5.5 5.5 0 0 0-1.3-.8 2 2 0 0 0-.44 2.55ZM10 3c0 .65.2 1.25.55 1.74l-.8.8-3.49-3.49a5.48 5.48 0 0 1 4.4-.93A2.99 2.99 0 0 0 10 3Zm.46 3.25.8-.8a2.99 2.99 0 0 0 3.62-.11 5.53 5.53 0 0 1-.94 4.4l-3.48-3.49Zm2.82 4.24L9.75 6.96l-.6.6a7.47 7.47 0 0 1 1.82 4.24 5.5 5.5 0 0 0 2.31-1.3ZM4.2 5.03a5.5 5.5 0 0 1 1.3-2.31l3.54 3.53-.6.6A7.47 7.47 0 0 0 4.2 5.03ZM2.5 6C1.67 6 1 6.67 1 7.5v1A6.5 6.5 0 0 0 7.5 15h1c.83 0 1.5-.67 1.5-1.5v-1A6.5 6.5 0 0 0 3.5 6h-1Zm1.9 3.4c.2-.2.5-.2.7 0l1.5 1.5a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7Z\"]);\nexport const Sport16Regular = /*#__PURE__*/createFluentIcon('Sport16Regular', \"16\", [\"M13.02 9.3a4.48 4.48 0 0 0 .95-3.3 2.99 2.99 0 0 1-2.96-.3l-.8.8L13 9.3Zm-.71.72L9.16 6.87a.52.52 0 0 1-.03-.03L5.98 3.69c-.35.44-.62.95-.79 1.5a7.48 7.48 0 0 0-1-.16 5.5 5.5 0 0 1 6.45-3.91 5.52 5.52 0 0 1 3.86 3.1 5.52 5.52 0 0 1-3.54 7.59 7.47 7.47 0 0 0-.15-1 4.49 4.49 0 0 0 1.5-.8Zm1.43-5.03a4.5 4.5 0 0 0-.72-1.3l-1.29 1.28a2 2 0 0 0 2 .02Zm-2.71-.72 1.28-1.29a4.5 4.5 0 0 0-1.3-.72 2 2 0 0 0 .02 2ZM10 2.03a4.55 4.55 0 0 0-3.32.95L9.5 5.8l.8-.8a2.99 2.99 0 0 1-.3-2.96ZM2.5 7a.5.5 0 0 0-.5.5v1A5.5 5.5 0 0 0 7.5 14h1a.5.5 0 0 0 .5-.5v-1A5.5 5.5 0 0 0 3.5 7h-1ZM1 7.5C1 6.67 1.67 6 2.5 6h1a6.5 6.5 0 0 1 6.5 6.5v1c0 .83-.67 1.5-1.5 1.5h-1A6.5 6.5 0 0 1 1 8.5v-1Zm3.4 1.9c.2-.2.5-.2.7 0l1.5 1.5a.5.5 0 0 1-.7.7l-1.5-1.5a.5.5 0 0 1 0-.7Z\"]);\nexport const Sport20Filled = /*#__PURE__*/createFluentIcon('Sport20Filled', \"20\", [\"M16.58 4.13a6 6 0 0 1 .83 1.28 2 2 0 0 1-2.43.31l1.6-1.6Zm-.7-.71-1.6 1.6a2 2 0 0 1 .3-2.44 6 6 0 0 1 1.3.84ZM18 8a6 6 0 0 0-.21-1.59 2.99 2.99 0 0 1-3.53.04L13.21 7.5l3.8 3.8c.63-.94.99-2.08.99-3.3Zm-5-4c0-.67.22-1.29.59-1.79a6 6 0 0 0-4.9.78l3.81 3.8 1.05-1.05A2.99 2.99 0 0 1 13 4Zm-1.3 5a8.97 8.97 0 0 1 2.2 4.7 6 6 0 0 0 2.49-1.6L12.5 8.2l-.8.8Zm.1-1.5-.8.8a8.97 8.97 0 0 0-4.7-2.2A6 6 0 0 1 7.9 3.6l3.9 3.89ZM3.5 7C2.67 7 2 7.67 2 8.5V10a8 8 0 0 0 8 8h1.5c.83 0 1.5-.67 1.5-1.5V15a8 8 0 0 0-8-8H3.5Zm2.65 4.15c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7Z\"]);\nexport const Sport20Regular = /*#__PURE__*/createFluentIcon('Sport20Regular', \"20\", [\"M13.7 12.7a5 5 0 0 0 1.46-.83L8.13 4.84A5 5 0 0 0 7.3 6.3a8.95 8.95 0 0 0-1-.2 6 6 0 1 1 7.6 7.6 8.97 8.97 0 0 0-.2-1Zm-1-4.7 3.17 3.16a4.98 4.98 0 0 0 1.06-4.02 2.99 2.99 0 0 1-3.17-.2L12.71 8Zm3.17-3.16-1.39 1.38a2 2 0 0 0 2.16-.08 5 5 0 0 0-.77-1.3ZM12.5 4.5c0-.52.13-1 .36-1.43a5.03 5.03 0 0 0-4.02 1.06L12 7.29l1.05-1.05a2.99 2.99 0 0 1-.55-1.74Zm1 0c0 .37.1.72.28 1.02l1.38-1.4a5 5 0 0 0-1.3-.76 2 2 0 0 0-.36 1.14ZM3.5 8a.5.5 0 0 0-.5.5V10a7 7 0 0 0 7 7h1.5a.5.5 0 0 0 .5-.5V15a7 7 0 0 0-7-7H3.5ZM2 8.5C2 7.67 2.67 7 3.5 7H5a8 8 0 0 1 8 8v1.5c0 .83-.67 1.5-1.5 1.5H10a8 8 0 0 1-8-8V8.5Zm4.15 2.65c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1-.7.7l-2-2a.5.5 0 0 1 0-.7Z\"]);\nexport const Sport24Filled = /*#__PURE__*/createFluentIcon('Sport24Filled', \"24\", [\"M20.16 4.9a8 8 0 0 1 1.04 1.6 2.75 2.75 0 0 1-3.8 1.15l2.76-2.75ZM19.1 3.84l-2.75 2.75A2.74 2.74 0 0 1 17.5 2.8c.57.28 1.11.63 1.6 1.04ZM22 10c0-.62-.07-1.21-.2-1.79a4.24 4.24 0 0 1-5.48.53l-.76.76 5.03 5.03A7.96 7.96 0 0 0 22 10Zm-7.5-4.75c0-1.2.5-2.28 1.29-3.05a8.03 8.03 0 0 0-6.32 1.2l5.03 5.04.76-.76a4.23 4.23 0 0 1-.76-2.43Zm0 5.31 5.13 5.13A7.99 7.99 0 0 1 16 17.75c0-2.42-.88-4.64-2.35-6.34l.85-.85Zm-1.9-.21A9.71 9.71 0 0 0 6.24 8a7.99 7.99 0 0 1 2.06-3.63l5.13 5.13-.85.85ZM4.24 9C3.01 9 2 10 2 11.25v2A8.75 8.75 0 0 0 10.75 22h2c1.24 0 2.25-1 2.25-2.25v-2A8.75 8.75 0 0 0 6.25 9h-2Zm2.47 4.72c.3-.3.77-.3 1.06 0l2.5 2.5a.75.75 0 1 1-1.06 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06Z\"]);\nexport const Sport24Regular = /*#__PURE__*/createFluentIcon('Sport24Regular', \"24\", [\"M18.04 15.1c-.64.5-1.37.88-2.16 1.12.08.5.12 1 .12 1.53A8 8 0 1 0 6.25 8c.52 0 1.03.04 1.53.12.24-.8.62-1.52 1.12-2.16l9.14 9.14Zm1.06-1.06L15.06 10l.76-.76a4.23 4.23 0 0 0 4.65.13 6.56 6.56 0 0 1-1.37 4.67ZM16.22 3.89c.66.24 1.27.59 1.82 1.01l-2.2 2.2a2.74 2.74 0 0 1 .38-3.21Zm-1.46 4.29-.76.76L9.96 4.9a6.47 6.47 0 0 1 4.67-1.37 4.23 4.23 0 0 0 .13 4.65Zm5.35-.4a2.74 2.74 0 0 1-3.2.37l2.19-2.19c.42.55.77 1.16 1 1.82ZM4.25 10.5a.75.75 0 0 0-.75.75v2c0 4 3.25 7.25 7.25 7.25h2c.41 0 .75-.34.75-.75v-2c0-4-3.25-7.25-7.25-7.25h-2ZM2 11.25C2 10.01 3 9 4.25 9h2A8.75 8.75 0 0 1 15 17.75v2c0 1.24-1 2.25-2.25 2.25h-2A8.75 8.75 0 0 1 2 13.25v-2Zm5.78 2.47a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 1 0 1.06-1.06l-2.5-2.5Z\"]);\nexport const SportAmericanFootball20Filled = /*#__PURE__*/createFluentIcon('SportAmericanFootball20Filled', \"20\", [\"M10.94 2.64A11.63 11.63 0 0 0 2.6 10.9l6.6 6.6a10.9 10.9 0 0 0 6.08-4.08 13.32 13.32 0 0 0 2.07-4.35l-6.42-6.43Zm.91 5.5c.2.2.2.52 0 .71l-3 3a.5.5 0 0 1-.7-.7l3-3c.2-.2.5-.2.7 0Zm5.8-.2c.26-1.3.36-2.56.35-3.71A2.25 2.25 0 0 0 15.7 2c-1.32.02-2.53.15-3.62.37l5.56 5.56Zm-9.6 9.81-5.72-5.72A16.1 16.1 0 0 0 2 15.84c.04 1.18 1 2.09 2.15 2.14 1.43.07 2.72-.02 3.89-.23Z\"]);\nexport const SportAmericanFootball20Regular = /*#__PURE__*/createFluentIcon('SportAmericanFootball20Regular', \"20\", [\"M11.85 8.85a.5.5 0 1 0-.7-.7l-3 3a.5.5 0 1 0 .7.7l3-3ZM18 4.23A2.25 2.25 0 0 0 15.7 2c-5.62.07-9.12 2.15-11.18 4.96-2.04 2.78-2.6 6.2-2.51 8.88.04 1.18 1 2.09 2.15 2.14 5.53.26 9.03-1.73 11.13-4.56 2.07-2.8 2.73-6.36 2.71-9.2ZM15.71 3c.72 0 1.29.54 1.3 1.23 0 .9-.07 1.86-.23 2.84l-3.84-3.84C13.79 3.09 14.7 3 15.7 3Zm-3.95.46 4.79 4.8c-.39 1.6-1.04 3.19-2.07 4.56a10.01 10.01 0 0 1-6.1 3.85.5.5 0 0 0-.03-.02l-4.93-4.93a11.8 11.8 0 0 1 1.9-4.17 10.8 10.8 0 0 1 6.44-4.09ZM3.19 12.9l3.98 3.99c-.9.11-1.89.15-2.96.1A1.24 1.24 0 0 1 3 15.81c-.03-.91.02-1.9.18-2.92Z\"]);\nexport const SportAmericanFootball24Filled = /*#__PURE__*/createFluentIcon('SportAmericanFootball24Filled', \"24\", [\"M21.38 11.5a14.78 14.78 0 0 1-9.97 9.9l-8.82-8.8a14.78 14.78 0 0 1 9.91-9.98l8.88 8.88Zm-7.66-2.28-4.5 4.5a.75.75 0 1 0 1.06 1.06l4.5-4.5a.75.75 0 1 0-1.06-1.06ZM2.2 14.32l7.48 7.48c-.8.13-1.6.2-2.43.2h-1A4.25 4.25 0 0 1 2 17.75v-1c0-.83.07-1.64.2-2.43Zm12.02-12.1 7.56 7.56c.15-.82.22-1.67.22-2.53v-1C22 3.9 20.1 2 17.75 2h-1c-.86 0-1.71.07-2.53.22Z\"]);\nexport const SportAmericanFootball24Regular = /*#__PURE__*/createFluentIcon('SportAmericanFootball24Regular', \"24\", [\"M13.72 9.22a.75.75 0 1 1 1.06 1.06l-4.5 4.5a.75.75 0 1 1-1.06-1.06l4.5-4.5ZM17.75 2C20.1 2 22 3.9 22 6.25v1C22 15.4 15.4 22 7.25 22h-1A4.25 4.25 0 0 1 2 17.75v-1C2 8.6 8.6 2 16.75 2h1Zm2.75 4.25a2.75 2.75 0 0 0-2.75-2.75h-1c-.4 0-.8.02-1.2.05l4.9 4.9c.03-.4.05-.8.05-1.2v-1Zm-.35 4.02-6.42-6.42a13.27 13.27 0 0 0-9.9 9.97l6.35 6.36a13.27 13.27 0 0 0 9.97-9.9Zm-16.6 5.4c-.04.35-.05.71-.05 1.08v1a2.75 2.75 0 0 0 2.75 2.75h1c.37 0 .73-.01 1.09-.04l-4.8-4.8Z\"]);\nexport const SportBaseball20Filled = /*#__PURE__*/createFluentIcon('SportBaseball20Filled', \"20\", [\"M18 10c0 1.55-.44 3-1.2 4.22-.95-.7-2-1.24-3.14-1.63a.5.5 0 1 0-.32.95c1.04.35 2 .86 2.88 1.5a7.98 7.98 0 0 1-12.44 0c.87-.64 1.84-1.15 2.88-1.5a.5.5 0 0 0-.32-.95c-1.13.39-2.2.94-3.14 1.63a7.96 7.96 0 0 1 0-8.43c.94.7 2 1.25 3.14 1.63a.5.5 0 1 0 .32-.95 10.47 10.47 0 0 1-2.88-1.5 7.98 7.98 0 0 1 12.44 0c-.87.64-1.84 1.15-2.88 1.5a.5.5 0 1 0 .32.95c1.14-.38 2.2-.94 3.14-1.63A7.96 7.96 0 0 1 18 10Zm-8 3c.49 0 .96.03 1.43.1a.5.5 0 1 0 .14-1 11.6 11.6 0 0 0-3.14 0 .5.5 0 0 0 .14 1c.47-.07.94-.1 1.43-.1ZM8.57 6.92a.5.5 0 0 0-.14.99 11.6 11.6 0 0 0 3.14 0 .5.5 0 1 0-.14-1 10.6 10.6 0 0 1-2.86 0Z\"]);\nexport const SportBaseball20Regular = /*#__PURE__*/createFluentIcon('SportBaseball20Regular', \"20\", [\"M4.61 5.53a6.99 6.99 0 0 1 10.78 0c-.64.38-1.33.7-2.05.94a.5.5 0 0 0 .32.95c.81-.27 1.59-.64 2.31-1.08a6.97 6.97 0 0 1 0 7.33c-.73-.44-1.5-.8-2.31-1.08a.5.5 0 0 0-.32.95c.72.24 1.4.56 2.04.94a6.99 6.99 0 0 1-10.76 0c.64-.38 1.32-.7 2.04-.94a.5.5 0 1 0-.32-.95c-.81.28-1.58.64-2.3 1.08a6.97 6.97 0 0 1-.01-7.33c.72.44 1.5.8 2.31 1.08a.5.5 0 0 0 .32-.95c-.72-.24-1.4-.56-2.05-.94ZM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.57 6.92a10.6 10.6 0 0 0 2.86 0 .5.5 0 0 1 .14.99 11.6 11.6 0 0 1-3.14 0 .5.5 0 0 1 .14-1Zm0 6.18a10.6 10.6 0 0 1 2.86 0 .5.5 0 0 0 .14-1 11.6 11.6 0 0 0-3.14 0 .5.5 0 1 0 .14 1Z\"]);\nexport const SportBaseball24Filled = /*#__PURE__*/createFluentIcon('SportBaseball24Filled', \"24\", [\"M3.94 6.08a9.96 9.96 0 0 0-.01 11.83l.23-.22A8.23 8.23 0 0 1 7 16.01a.75.75 0 1 1 .48 1.42 6.73 6.73 0 0 0-2.58 1.62 9.97 9.97 0 0 0 14.18 0 7.23 7.23 0 0 0-2.58-1.62.75.75 0 1 1 .48-1.42 8.23 8.23 0 0 1 3.08 1.9 9.96 9.96 0 0 0-.01-11.83l-.22.2A8.23 8.23 0 0 1 17 7.96a.75.75 0 0 1-.48-1.42 6.74 6.74 0 0 0 2.57-1.6 9.97 9.97 0 0 0-14.16 0 7.28 7.28 0 0 0 2.57 1.6A.75.75 0 1 1 7 7.96a8.23 8.23 0 0 1-3.07-1.88Zm5.08 10.07c-.1-.4.15-.8.55-.9h.01l.02-.01a3.89 3.89 0 0 1 .37-.08 12.54 12.54 0 0 1 4.42.07.75.75 0 0 1-.29 1.48 11.04 11.04 0 0 0-4.17-.01s-.75.1-.9-.55Zm.91-8.88.07.02a6.08 6.08 0 0 0 1.12.15c.76.06 1.82.06 2.98-.18a.75.75 0 0 1 .3 1.48 12.54 12.54 0 0 1-4.8 0h-.02v-.01h-.01a.76.76 0 0 1-.55-.91c.16-.65.91-.55.91-.55Z\"]);\nexport const SportBaseball24Regular = /*#__PURE__*/createFluentIcon('SportBaseball24Regular', \"24\", [\"M9.93 16.7s-.75.1-.9-.55c-.1-.4.14-.8.54-.9h.01l.02-.01a3.92 3.92 0 0 1 .37-.08 12.54 12.54 0 0 1 4.42.07.75.75 0 0 1-.29 1.48 11.04 11.04 0 0 0-4.17-.01Zm-.9-8.8c.15-.65.9-.55.9-.55a6.35 6.35 0 0 0 1.19.17c.76.05 1.82.05 2.98-.18a.75.75 0 0 1 .3 1.47 12.54 12.54 0 0 1-4.8 0h-.03a.76.76 0 0 1-.55-.92ZM12 22a9.97 9.97 0 0 0 10-10 10 10 0 1 0-10 10ZM5.07 7.07c.54.37 1.19.72 1.94.97A.75.75 0 1 0 7.5 6.6a6.36 6.36 0 0 1-1.43-.69 8.47 8.47 0 0 1 11.88 0c-.4.27-.89.51-1.43.7A.75.75 0 1 0 17 8.03c.75-.25 1.4-.6 1.94-.97a8.46 8.46 0 0 1-.03 9.9A7.9 7.9 0 0 0 17 16a.75.75 0 1 0-.48 1.42c.53.18 1 .42 1.4.68a8.47 8.47 0 0 1-11.82 0c.4-.26.87-.5 1.4-.68A.75.75 0 1 0 7 16.01c-.74.25-1.38.6-1.91.95a8.46 8.46 0 0 1-.03-9.89Z\"]);\nexport const SportBasketball20Filled = /*#__PURE__*/createFluentIcon('SportBasketball20Filled', \"20\", [\"M4.7 4A7.97 7.97 0 0 1 9 2.06c.07.43.14.91.24 1.4.18.9.43 1.89.78 2.79.28.71.62 1.4 1.06 1.96L10 9.3 4.7 4Zm-.7.7A7.97 7.97 0 0 0 2.06 9c.43.07.9.14 1.4.24.9.18 1.89.43 2.79.78.71.28 1.4.62 1.96 1.06L9.29 10 4 4.7Zm3.5 7.1c-.43-.32-.99-.6-1.61-.85-.83-.31-1.75-.55-2.62-.72-.45-.1-.88-.17-1.27-.22 0 2.02.76 3.87 2 5.28l3.5-3.5ZM4.7 16l3.5-3.5c.32.43.6.98.85 1.61.31.83.55 1.75.72 2.62.1.45.17.88.22 1.27a7.97 7.97 0 0 1-5.28-2Zm4.22-4.21L10 10.71 15.3 16a7.97 7.97 0 0 1-4.3 1.94c-.07-.43-.15-.91-.25-1.4-.18-.9-.43-1.89-.77-2.79a7.57 7.57 0 0 0-1.06-1.96Zm7.08 3.5a7.97 7.97 0 0 0 1.94-4.3 17.37 17.37 0 0 1-4.18-1.02 7.57 7.57 0 0 1-1.97-1.05L10.7 10 16 15.3ZM12.5 8.2c.43.33.98.6 1.61.85.83.32 1.75.55 2.62.72.45.1.88.17 1.27.22 0-2.02-.76-3.87-2-5.28l-3.5 3.5ZM15.3 4A7.97 7.97 0 0 0 10 2c.06.4.14.82.23 1.27.17.87.4 1.8.72 2.62.24.63.53 1.18.85 1.6L15.3 4Z\"]);\nexport const SportBasketball20Regular = /*#__PURE__*/createFluentIcon('SportBasketball20Regular', \"20\", [\"m10 9.3 1.08-1.09a7.57 7.57 0 0 1-1.06-1.96 17.37 17.37 0 0 1-.85-3.2 6.97 6.97 0 0 0-3.75 1.66L10 9.29Zm1.79-.38L10.71 10l4.58 4.58a6.97 6.97 0 0 0 1.66-3.75l-.42-.07c-.9-.18-1.88-.43-2.77-.78a7.57 7.57 0 0 1-1.97-1.06Zm5.2.9a6.97 6.97 0 0 0-1.7-4.4L12.5 8.2c.43.32.99.6 1.61.85a16.39 16.39 0 0 0 2.89.78ZM11.8 7.5l2.8-2.8A6.98 6.98 0 0 0 10.16 3l.06.27c.17.87.4 1.8.72 2.62.25.62.53 1.18.85 1.6ZM10 10.7 8.92 11.8c.44.55.79 1.25 1.06 1.96a17.37 17.37 0 0 1 .86 3.2 6.97 6.97 0 0 0 3.74-1.66L10 10.71Zm-1.8 1.8-2.78 2.8a6.97 6.97 0 0 0 4.4 1.7c0-.1-.03-.18-.04-.27-.18-.87-.41-1.8-.73-2.62a6.83 6.83 0 0 0-.84-1.6Zm-.7-.7c-.43-.33-.98-.6-1.61-.85A16.38 16.38 0 0 0 3 10.17c.04 1.58.61 3.15 1.7 4.41l2.8-2.79Zm.71-.72L9.3 10 4.71 5.42a6.97 6.97 0 0 0-1.66 3.74l.42.08c.9.18 1.88.43 2.78.78.72.28 1.4.62 1.96 1.06Zm7.45 4.58A8 8 0 1 1 4.34 4.34a8 8 0 0 1 11.32 11.32Z\"]);\nexport const SportBasketball24Filled = /*#__PURE__*/createFluentIcon('SportBasketball24Filled', \"24\", [\"M18.43 12.87c-1.28-.39-2.76-.9-4.16-2.08L13.07 12l6.51 6.52a9.94 9.94 0 0 0 2.16-4.22l-.01-.01v-.01a3.74 3.74 0 0 0-1.35-.8c-.43-.17-.9-.3-1.42-.46l-.53-.15Zm.1-8.45-4.25 4.24a9.6 9.6 0 0 1-1.7-3.52l-.15-.47c-.15-.54-.31-1.1-.5-1.6-.15-.36-.31-.71-.52-1.05a9.98 9.98 0 0 1 7.11 2.4Zm1.05 1.06-4.24 4.24a9.6 9.6 0 0 0 3.52 1.7l.47.15c.54.15 1.1.31 1.6.5.36.15.71.31 1.05.52a9.98 9.98 0 0 0-2.4-7.11Zm-9.86-3.2-.01-.01a9.94 9.94 0 0 0-4.23 2.15L12 10.94l1.21-1.21a10.93 10.93 0 0 1-2.08-4.16l-.15-.52c-.15-.53-.29-1-.46-1.43-.21-.56-.46-1-.8-1.34Zm-7.59 8.1a9.95 9.95 0 0 1 2.29-4.9L10.94 12l-1.09 1.09a10.34 10.34 0 0 0-4.66-1.91l-.6-.12c-.6-.12-1.15-.22-1.64-.37-.32-.09-.59-.19-.82-.3ZM2 11.97c0 2.34.8 4.68 2.42 6.56l4.36-4.36a9.13 9.13 0 0 0-3.89-1.51l-.54-.1A21.14 21.14 0 0 1 2 11.95Zm7.85 3.25-4.37 4.37A9.97 9.97 0 0 0 12.24 22c-.15-.3-.27-.62-.37-.93-.17-.54-.29-1.13-.4-1.7l-.11-.5a8.6 8.6 0 0 0-1.51-3.66Zm4.05 6.61a9.94 9.94 0 0 0 4.62-2.24L12 13.06l-1.08 1.09a9.88 9.88 0 0 1 1.9 4.4l.12.56c.12.56.22 1.05.36 1.51.16.5.35.9.6 1.2Z\"]);\nexport const SportBasketball24Regular = /*#__PURE__*/createFluentIcon('SportBasketball24Regular', \"24\", [\"M12.94 21.96a10 10 0 1 0-1.88-19.91 10 10 0 0 0 1.88 19.9Zm-9.36-11.1c.2-1.55.84-3.05 1.9-4.32L10.94 12l-1.09 1.09a8.81 8.81 0 0 0-3.34-1.61c-.65-.17-1.3-.3-1.89-.41h-.01c-.37-.08-.71-.14-1.03-.22Zm-.07 1.51.8.16h.01c.6.12 1.2.24 1.8.4.95.26 1.86.61 2.66 1.23l-3.3 3.3a8.47 8.47 0 0 1-1.97-5.09Zm6.34 2.84c.67.87 1.04 1.81 1.3 2.78a26.2 26.2 0 0 1 .4 1.78l.16.73a8.47 8.47 0 0 1-5.17-1.98l3.3-3.3Zm3.39 5.2-.23-.95-.07-.37c-.1-.47-.21-.98-.35-1.49a8.86 8.86 0 0 0-1.68-3.45L12 13.06l5.46 5.46a8.46 8.46 0 0 1-4.22 1.89ZM13.06 12l1.21-1.21a10 10 0 0 0 3.37 1.83c.44.15.9.28 1.3.4l.47.13c.35.1.67.21.96.32a8.45 8.45 0 0 1-1.85 3.99L13.06 12Zm6.78-.28-.5-.15-1.22-.38a8.6 8.6 0 0 1-2.78-1.47l3.18-3.18a8.47 8.47 0 0 1 1.98 5.38l-.66-.2Zm-2.38-6.24-3.18 3.18a8.6 8.6 0 0 1-1.47-2.78c-.15-.41-.26-.81-.38-1.22l-.15-.5-.2-.66c1.91.02 3.82.68 5.38 1.98Zm-6.08.88a10 10 0 0 0 1.83 3.37L12 10.93 6.54 5.49a8.45 8.45 0 0 1 3.99-1.85 13.21 13.21 0 0 1 .45 1.42c.12.42.25.86.4 1.31Z\"]);\nexport const SportHockey20Filled = /*#__PURE__*/createFluentIcon('SportHockey20Filled', \"20\", [\"M11.97 2.06a3.7 3.7 0 0 1 3.45 1.3l1.71 1.93c.75.84 1.08 2.02.73 3.13-2.1 6.7-7.03 9.08-10.19 9.55-.9.14-1.76-.22-2.39-.78l-1.8-1.6A4.07 4.07 0 0 1 2.2 11.2c2.12-5.99 6.46-8.47 9.76-9.15Zm2.52 3.52a.5.5 0 1 0-.98-.16 10.9 10.9 0 0 1-3.05 5.9 10.32 10.32 0 0 1-4.1 2.7.5.5 0 1 0 .28.96c1.25-.36 3-1.38 4.53-2.96a11.89 11.89 0 0 0 3.32-6.44Z\"]);\nexport const SportHockey20Regular = /*#__PURE__*/createFluentIcon('SportHockey20Regular', \"20\", [\"M11.97 2.06a3.7 3.7 0 0 1 3.45 1.3l1.71 1.93c.75.84 1.08 2.02.73 3.13-2.1 6.7-7.03 9.08-10.19 9.55-.9.14-1.76-.22-2.39-.78l-1.8-1.6A4.07 4.07 0 0 1 2.2 11.2c2.12-5.99 6.46-8.47 9.76-9.15Zm2.7 1.97c-.68-.76-1.6-1.17-2.5-.99-3 .61-7.03 2.89-9.02 8.5-.4 1.15.02 2.44.98 3.3l1.82 1.6c.46.41 1.03.63 1.57.54 2.85-.42 7.41-2.57 9.39-8.86.23-.73.02-1.55-.53-2.16l-1.71-1.93Zm-.6.98c.28.04.47.3.42.57a11.89 11.89 0 0 1-3.32 6.44 11.28 11.28 0 0 1-4.53 2.96.5.5 0 0 1-.28-.96c1.05-.3 2.66-1.22 4.1-2.7a10.9 10.9 0 0 0 3.05-5.9.5.5 0 0 1 .57-.41Z\"]);\nexport const SportHockey24Filled = /*#__PURE__*/createFluentIcon('SportHockey24Filled', \"24\", [\"M2.35 12.57c-.68 1.9-.77 3.88.44 5.1l.24.24a629.85 629.85 0 0 0 3.02 3.04c1.28 1.28 3.3 1.3 5.29.66a16.3 16.3 0 0 0 6.22-4.04 16.3 16.3 0 0 0 4.04-6.22c.64-1.99.62-4.01-.66-5.3a756.94 756.94 0 0 1-2.89-2.9l-.36-.37c-1.23-1.21-3.2-1.12-5.1-.44-1.97.71-4.15 2.14-6.12 4.11a17.45 17.45 0 0 0-4.12 6.12Zm15.14-5.7v.06a5.12 5.12 0 0 1-.15.57 14.34 14.34 0 0 1-3.6 6.03 15.61 15.61 0 0 1-6.78 3.94l-.03.01H6.9s-.75.09-.9-.57c-.08-.4.18-.8.58-.9h.03a4.38 4.38 0 0 0 .5-.14 14.1 14.1 0 0 0 5.57-3.4 12.84 12.84 0 0 0 3.2-5.36 6.85 6.85 0 0 0 .12-.46c.07-.4.44-.7.86-.64.41.07.69.45.62.86Z\"]);\nexport const SportHockey24Regular = /*#__PURE__*/createFluentIcon('SportHockey24Regular', \"24\", [\"M17.49 6.87a.75.75 0 0 0-.62-.86.77.77 0 0 0-.86.64 3.77 3.77 0 0 1-.11.46c-.1.32-.24.79-.48 1.35a12.84 12.84 0 0 1-2.73 4.01 14.11 14.11 0 0 1-6.08 3.54H6.6a.75.75 0 0 0-.57.9c.14.66.89.57.89.57h.05a5.95 5.95 0 0 0 .6-.18 15.61 15.61 0 0 0 6.18-3.77 14.34 14.34 0 0 0 3.6-6.03 8.33 8.33 0 0 0 .14-.57v-.05Zm-15.14 5.7c-.68 1.9-.77 3.88.44 5.1l.23.24a627.9 627.9 0 0 0 3.03 3.04c1.28 1.28 3.3 1.3 5.29.66a16.3 16.3 0 0 0 6.22-4.04 16.3 16.3 0 0 0 4.04-6.22c.64-1.99.62-4.01-.66-5.3a756.94 756.94 0 0 1-2.9-2.9l-.36-.37c-1.22-1.21-3.2-1.12-5.1-.44-1.96.71-4.15 2.14-6.12 4.11a17.45 17.45 0 0 0-4.1 6.12Zm1.41.51a15.98 15.98 0 0 1 3.77-5.56 15.98 15.98 0 0 1 5.56-3.77c1.78-.64 2.97-.47 3.54.1l.35.35.88.89 2.02 2.03c.67.67.87 1.97.3 3.77a14.81 14.81 0 0 1-3.68 5.62 14.81 14.81 0 0 1-5.63 3.67c-1.8.58-3.09.38-3.76-.3a835.56 835.56 0 0 1-3.02-3.02l-.23-.24c-.57-.57-.74-1.76-.1-3.54Z\"]);\nexport const SportSoccer16Filled = /*#__PURE__*/createFluentIcon('SportSoccer16Filled', \"16\", [\"M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0Zm4.14-4.97c-.73.35-1.37.85-1.89 1.47l.65 2.1 1 .34 2.1-1.59V4.27L5.64 3.03Zm-3.1 5.6c.1.87.4 1.67.85 2.37h1.9l.64-.63L5.1 7.9l-1.02-.35-1.54 1.08Zm4.35 4.76a5.53 5.53 0 0 0 2.22 0l.8-1.78-.62-.61H6.71l-.61.61.79 1.78ZM12.6 11c.44-.67.74-1.45.84-2.28l-1.54-1.16-1.01.34-.83 2.46.64.64h1.9Zm-.38-6.51a5.52 5.52 0 0 0-1.87-1.46L8.5 4.27v1.08l2.1 1.6 1-.34.63-2.12Z\"]);\nexport const SportSoccer16Regular = /*#__PURE__*/createFluentIcon('SportSoccer16Regular', \"16\", [\"M8 1.5a6.5 6.5 0 1 1 0 13 6.5 6.5 0 0 1 0-13ZM6.84 2.62 8 3.4l1.16-.78a5.52 5.52 0 0 0-2.32 0Zm-1.2.4c-.73.36-1.37.86-1.89 1.48l.65 2.1 1 .34 2.1-1.59V4.27L5.64 3.03ZM3.04 5.6a5.46 5.46 0 0 0-.51 1.82l.89-.62-.37-1.2Zm-.5 3.03c.1.87.4 1.67.85 2.37h1.9l.64-.63L5.1 7.9l-1.02-.35-1.54 1.08ZM4.23 12c.4.38.86.7 1.37.95L5.18 12h-.95Zm2.66 1.39a5.53 5.53 0 0 0 2.22 0l.8-1.78-.62-.61H6.71l-.61.61.79 1.78Zm3.51-.44c.5-.25.97-.57 1.37-.95h-.95l-.42.95ZM12.61 11c.44-.67.74-1.45.84-2.28l-1.54-1.16-1.01.34-.83 2.46.64.64h1.9Zm.87-3.52a5.46 5.46 0 0 0-.53-1.89l-.37 1.22.9.67Zm-1.25-3a5.52 5.52 0 0 0-1.87-1.45L8.5 4.27v1.08l2.1 1.6 1-.34.63-2.12ZM6.1 7.69 6.86 10h2.28l.77-2.32L8 6.23 6.09 7.68Z\"]);\nexport const SportSoccer20Filled = /*#__PURE__*/createFluentIcon('SportSoccer20Filled', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM7.1 3.63l2.4 1.4v1.7L6.73 8.7l-1.56-.57-.62-2.51a7.02 7.02 0 0 1 2.54-1.98ZM3.02 10.7l1.83-1.62 1.55.56 1.04 3.3L6.73 14H4.25a6.96 6.96 0 0 1-1.22-3.3Zm5.34 6.12-.81-2.25.7-1.06h3.47l.72 1.06-.82 2.25a7.02 7.02 0 0 1-3.26 0ZM15.75 14h-2.48l-.72-1.08 1.02-3.29 1.57-.56 1.83 1.62a6.96 6.96 0 0 1-1.22 3.3Zm-.3-8.38-.62 2.5-1.58.57-2.75-1.95v-1.7l2.4-1.4c1 .45 1.88 1.13 2.56 1.98Z\"]);\nexport const SportSoccer20Regular = /*#__PURE__*/createFluentIcon('SportSoccer20Regular', \"20\", [\"M10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM8.34 3.2a7.02 7.02 0 0 1 3.33 0L10 4.17 8.34 3.2Zm-1.25.43 2.41 1.4v1.7L6.73 8.7l-1.56-.57-.62-2.51a7.02 7.02 0 0 1 2.54-1.98ZM3.8 6.75l.4 1.58-1.17 1.03c.08-.94.35-1.82.77-2.61Zm-.77 3.94 1.83-1.62 1.55.56 1.04 3.3L6.73 14H4.25a6.96 6.96 0 0 1-1.22-3.3ZM5.1 15h1.55l.51 1.41A7.01 7.01 0 0 1 5.1 15Zm3.27 1.82-.81-2.25.7-1.06h3.47l.72 1.06-.82 2.25a7.02 7.02 0 0 1-3.26 0Zm4.47-.41.51-1.4h1.55a7.02 7.02 0 0 1-2.06 1.4Zm2.9-2.4h-2.47l-.72-1.08 1.02-3.29 1.57-.56 1.83 1.62a6.96 6.96 0 0 1-1.22 3.3Zm1.23-4.64-1.16-1.03.4-1.58c.4.8.68 1.68.76 2.6Zm-1.51-3.74-.63 2.5-1.58.57-2.75-1.95v-1.7l2.4-1.4c1 .45 1.88 1.13 2.56 1.98ZM7.4 9.45 10 7.6l2.59 1.84-.96 3.05H8.37L7.4 9.45Z\"]);\nexport const SportSoccer24Filled = /*#__PURE__*/createFluentIcon('SportSoccer24Filled', \"24\", [\"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM8.24 4.37l3.01 1.8v2.2l-2.79 2.02-2.04-.7-.59-3.54a8.53 8.53 0 0 1 2.41-1.78Zm-4.62 9.07 2.33-2.33 2.04.7 1.08 3.34-.97 1.58-3.3-.2c-.58-.92-.99-1.97-1.18-3.1Zm6.91 6.93-1.18-2.8.96-1.57h3.37l.91 1.58-1.04 2.78a8.55 8.55 0 0 1-3.02.01Zm8.36-3.4-3.02-.18-.94-1.63 1.09-3.34 2.01-.7 2.31 2.52a8.46 8.46 0 0 1-1.45 3.34Zm-.72-10.81-.59 3.53-2.04.7-2.79-2.02v-2.2l3-1.8a8.53 8.53 0 0 1 2.42 1.79Z\"]);\nexport const SportSoccer24Regular = /*#__PURE__*/createFluentIcon('SportSoccer24Regular', \"24\", [\"M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.93 1.72a8.53 8.53 0 0 1 3.86 0L12 4.87l-1.93-1.15Zm-1.83.65 3.01 1.8v2.2l-2.79 2.02-2.04-.7-.59-3.54a8.53 8.53 0 0 1 2.41-1.78ZM4.6 7.83 4.95 10l-1.43 1.43c.09-1.3.46-2.51 1.07-3.59Zm-.97 5.6 2.33-2.32 2.04.7 1.08 3.34-.97 1.58-3.3-.2c-.58-.92-.99-1.97-1.18-3.1Zm2.47 4.68 1.9.11.68 1.6c-.96-.4-1.84-1-2.58-1.71Zm4.44 2.26-1.18-2.8.96-1.57h3.37l.91 1.58-1.04 2.78a8.55 8.55 0 0 1-3.02.01Zm4.83-.56.57-1.52 1.67.1a8.5 8.5 0 0 1-2.24 1.42Zm3.53-2.83-3.02-.2-.94-1.62 1.09-3.34 2.01-.7 2.31 2.52a8.46 8.46 0 0 1-1.45 3.34Zm1.6-5.4-1.44-1.57.36-2.17a8.45 8.45 0 0 1 1.08 3.74Zm-2.32-5.42-.59 3.53-2.04.7-2.79-2.02v-2.2l3-1.8a8.53 8.53 0 0 1 2.42 1.79Zm-8.7 5.36L12 9.68l2.54 1.84-.97 2.98h-3.13l-.97-2.98Z\"]);\nexport const SprayCan16Filled = /*#__PURE__*/createFluentIcon('SprayCan16Filled', \"16\", [\"M14 1.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm-2 1a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0ZM10.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm2 0a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Zm2-1a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM14 5.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm-3.01.94c0-.03 0-.05-.02-.07a.5.5 0 0 0-.12-.22L9 4.29V2.5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5v1.8L4.15 6.14a.5.5 0 0 0-.14.29v.02L4 6.5v6.75c0 .97.78 1.75 1.75 1.75h3.5c.97 0 1.75-.78 1.75-1.75V6.47l-.01-.03ZM7 3h1v1H7V3Zm-.3 2h1.6l1 1H5.7l1-1Z\"]);\nexport const SprayCan16Regular = /*#__PURE__*/createFluentIcon('SprayCan16Regular', \"16\", [\"M9.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM11 2.5a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm2-3a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm0 2a.5.5 0 1 1 1 0 .5.5 0 0 1-1 0Zm-3.03.87.02.07v.02l.01.04v6.75c0 .97-.78 1.75-1.75 1.75h-3.5C3.78 15 3 14.22 3 13.25V6.46l.01-.02.02-.07a.5.5 0 0 1 .12-.22L5 4.29V2.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v1.8l1.85 1.85c.06.06.1.14.13.22ZM7 3H6v1h1V3Zm.3 2H5.7l-1 1h3.6l-1-1Zm.95 9c.41 0 .75-.34.75-.75V7H4v6.25c0 .41.34.75.75.75h3.5Z\"]);\nexport const Square12Filled = /*#__PURE__*/createFluentIcon('Square12Filled', \"12\", [\"M2 4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Z\"]);\nexport const Square12Regular = /*#__PURE__*/createFluentIcon('Square12Regular', \"12\", [\"M2 4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4Z\"]);\nexport const Square16Filled = /*#__PURE__*/createFluentIcon('Square16Filled', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7Z\"]);\nexport const Square16Regular = /*#__PURE__*/createFluentIcon('Square16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v7a2.5 2.5 0 0 1-2.5 2.5h-7A2.5 2.5 0 0 1 2 11.5v-7ZM4.5 3C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5h-7Z\"]);\nexport const Square20Filled = /*#__PURE__*/createFluentIcon('Square20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Z\"]);\nexport const Square20Regular = /*#__PURE__*/createFluentIcon('Square20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6Zm3-2a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H6Z\"]);\nexport const Square24Filled = /*#__PURE__*/createFluentIcon('Square24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25Z\"]);\nexport const Square24Regular = /*#__PURE__*/createFluentIcon('Square24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v11.5c0 1.8-1.46 3.25-3.25 3.25H6.25A3.25 3.25 0 0 1 3 17.75V6.25ZM6.25 4.5c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h11.5c.97 0 1.75-.78 1.75-1.75V6.25c0-.97-.78-1.75-1.75-1.75H6.25Z\"]);\nexport const Square28Filled = /*#__PURE__*/createFluentIcon('Square28Filled', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v14.5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75Z\"]);\nexport const Square28Regular = /*#__PURE__*/createFluentIcon('Square28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v14.5A3.75 3.75 0 0 1 21.25 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM6.75 4.5c-1.24 0-2.25 1-2.25 2.25v14.5c0 1.24 1 2.25 2.25 2.25h14.5c1.24 0 2.25-1 2.25-2.25V6.75c0-1.24-1-2.25-2.25-2.25H6.75Z\"]);\nexport const Square32Filled = /*#__PURE__*/createFluentIcon('Square32Filled', \"32\", [\"M7.5 3A4.5 4.5 0 0 0 3 7.5v17A4.5 4.5 0 0 0 7.5 29h17a4.5 4.5 0 0 0 4.5-4.5v-17A4.5 4.5 0 0 0 24.5 3h-17Z\"]);\nexport const Square32Regular = /*#__PURE__*/createFluentIcon('Square32Regular', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5v17a4.5 4.5 0 0 1-4.5 4.5h-17A4.5 4.5 0 0 1 3 24.5v-17ZM7.5 5A2.5 2.5 0 0 0 5 7.5v17A2.5 2.5 0 0 0 7.5 27h17a2.5 2.5 0 0 0 2.5-2.5v-17A2.5 2.5 0 0 0 24.5 5h-17Z\"]);\nexport const Square48Filled = /*#__PURE__*/createFluentIcon('Square48Filled', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25v23.5C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-23.5Z\"]);\nexport const Square48Regular = /*#__PURE__*/createFluentIcon('Square48Regular', \"48\", [\"M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25v23.5C42 39.2 39.2 42 35.75 42h-23.5A6.25 6.25 0 0 1 6 35.75v-23.5Zm6.25-3.75a3.75 3.75 0 0 0-3.75 3.75v23.5a3.75 3.75 0 0 0 3.75 3.75h23.5a3.75 3.75 0 0 0 3.75-3.75v-23.5a3.75 3.75 0 0 0-3.75-3.75h-23.5Z\"]);\nexport const SquareAdd16Filled = /*#__PURE__*/createFluentIcon('SquareAdd16Filled', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h1.76A5.5 5.5 0 0 1 14 6.26V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm6 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V10h1.5a.5.5 0 0 1 0 1H11v1.5a.5.5 0 0 1-1 0V11H8.5a.5.5 0 0 1 0-1H10V8.5c0-.28.22-.5.5-.5Z\"]);\nexport const SquareAdd16Regular = /*#__PURE__*/createFluentIcon('SquareAdd16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v1.76a5.5 5.5 0 0 0-1-.66V4.5c0-.83-.67-1.5-1.5-1.5h-7C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5h1.1c.18.36.4.7.66 1H4.5A2.5 2.5 0 0 1 2 11.5v-7Zm13 6a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 0 0 1 0V11h1.5a.5.5 0 0 0 0-1H11V8.5Z\"]);\nexport const SquareAdd20Filled = /*#__PURE__*/createFluentIcon('SquareAdd20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const SquareAdd20Regular = /*#__PURE__*/createFluentIcon('SquareAdd20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6c-.16-.32-.3-.65-.4-1H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.2c.35.1.68.24 1 .4V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-7c.28 0 .5.22.5.5V14h1.5a.5.5 0 0 1 0 1H15v1.5a.5.5 0 0 1-1 0V15h-1.5a.5.5 0 0 1 0-1H14v-1.5c0-.28.22-.5.5-.5Z\"]);\nexport const SquareArrowForward16Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward16Filled', \"16\", [\"M2.5 4.5c0-1.1.9-2 2-2h7a2 2 0 0 1 2 2v1.39a5.5 5.5 0 0 0-7.61 7.61H4.5a2 2 0 0 1-2-2v-7Zm8 10.5a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 8 12.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L12.1 7.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareArrowForward16Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward16Regular', \"16\", [\"M2 4.5A2.5 2.5 0 0 1 4.5 2h7A2.5 2.5 0 0 1 14 4.5v1.76a5.5 5.5 0 0 0-1-.66V4.5c0-.83-.67-1.5-1.5-1.5h-7C3.67 3 3 3.67 3 4.5v7c0 .83.67 1.5 1.5 1.5h1.1c.18.36.4.7.66 1H4.5A2.5 2.5 0 0 1 2 11.5v-7ZM10.5 15a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 8 12.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L12.1 7.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareArrowForward20Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 12 16.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 11.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareArrowForward20Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6c-.32-.16-.65-.3-1-.4V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h3.2c.1.35.24.68.4 1H6a3 3 0 0 1-3-3V6Zm11.5 13a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm.9-6.4.9.9h-1.55A2.75 2.75 0 0 0 12 16.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 11.9a.5.5 0 0 0-.7.7Z\"]);\nexport const SquareArrowForward24Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward24Filled', \"24\", [\"M6.25 3A3.25 3.25 0 0 0 3 6.25v11.5C3 19.55 4.46 21 6.25 21h5.77A6.5 6.5 0 0 1 21 12.02V6.25C21 4.45 19.54 3 17.75 3H6.25ZM12 17.5a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm6.65-2.15a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65h-2.04C16.01 17 15 18 15 19.25v.25a.5.5 0 0 1-1 0v-.25c0-1.8 1.46-3.25 3.25-3.25h2.04l-.64-.65Z\"]);\nexport const SquareArrowForward24Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v5.77c-.46-.3-.97-.53-1.5-.7V6.24c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h5.06c.18.53.42 1.04.71 1.5H6.25A3.25 3.25 0 0 1 3 17.75V6.25Zm9 11.25a5.5 5.5 0 1 0 11 0 5.5 5.5 0 0 0-11 0Zm6.65-2.15a.5.5 0 0 1 .7-.7l1.5 1.5c.2.2.2.5 0 .7l-1.5 1.5a.5.5 0 0 1-.7-.7l.64-.65h-2.04C16.01 17 15 18 15 19.25v.25a.5.5 0 0 1-1 0v-.25c0-1.8 1.46-3.25 3.25-3.25h2.04l-.64-.65Z\"]);\nexport const SquareArrowForward28Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward28Filled', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v7.75A7.5 7.5 0 0 0 14.5 25H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM20.5 27a6.5 6.5 0 1 1 0-13 6.5 6.5 0 0 1 0 13Zm1.65-9.85a.5.5 0 0 0 0 .7L23.29 19h-2.54A3.75 3.75 0 0 0 17 22.75V23a.5.5 0 0 0 1 0v-.25A2.75 2.75 0 0 1 20.75 20h2.54l-1.14 1.15a.5.5 0 0 0 .7.7l2-2a.5.5 0 0 0 0-.7l-2-2a.5.5 0 0 0-.7 0Z\"]);\nexport const SquareArrowForward28Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward28Regular', \"28\", [\"M3 6.75A3.75 3.75 0 0 1 6.75 3h14.5A3.75 3.75 0 0 1 25 6.75v7.75a7.49 7.49 0 0 0-1.5-.88V6.75c0-1.24-1-2.25-2.25-2.25H6.75c-1.24 0-2.25 1-2.25 2.25v14.5c0 1.24 1 2.25 2.25 2.25h6.87c.24.54.53 1.04.88 1.5H6.75A3.75 3.75 0 0 1 3 21.25V6.75ZM14 20.5a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm8.15-2.65a.5.5 0 0 1 .7-.7l2 2c.2.2.2.5 0 .7l-2 2a.5.5 0 0 1-.7-.7L23.29 20h-2.54A2.75 2.75 0 0 0 18 22.75V23a.5.5 0 0 1-1 0v-.25A3.75 3.75 0 0 1 20.75 19h2.54l-1.14-1.15Z\"]);\nexport const SquareArrowForward32Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward32Filled', \"32\", [\"M7.5 3A4.5 4.5 0 0 0 3 7.5v17A4.5 4.5 0 0 0 7.5 29h8.77A9 9 0 1 1 29 16.27V7.5A4.5 4.5 0 0 0 24.5 3h-17ZM30 22.5a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Zm-4.72-3.78a.75.75 0 1 0-1.06 1.06L25.44 21H22.5a4.25 4.25 0 0 0-4.25 4.25v.5a.75.75 0 0 0 1.5 0v-.5a2.75 2.75 0 0 1 2.75-2.75h2.94l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5c.3-.3.3-.77 0-1.06l-2.5-2.5Z\"]);\nexport const SquareArrowForward32Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward32Regular', \"32\", [\"M3 7.5A4.5 4.5 0 0 1 7.5 3h17A4.5 4.5 0 0 1 29 7.5v8.77a9.04 9.04 0 0 0-2-1.57V7.5A2.5 2.5 0 0 0 24.5 5h-17A2.5 2.5 0 0 0 5 7.5v17A2.5 2.5 0 0 0 7.5 27h7.2c.43.74.96 1.41 1.57 2H7.5A4.5 4.5 0 0 1 3 24.5v-17Zm27 15a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0Zm-4.72-3.78a.75.75 0 1 0-1.06 1.06L25.44 21H22.5a4.25 4.25 0 0 0-4.25 4.25v.5a.75.75 0 0 0 1.5 0v-.5a2.75 2.75 0 0 1 2.75-2.75h2.94l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5c.3-.3.3-.77 0-1.06l-2.5-2.5Z\"]);\nexport const SquareArrowForward48Filled = /*#__PURE__*/createFluentIcon('SquareArrowForward48Filled', \"48\", [\"M11.25 6A5.25 5.25 0 0 0 6 11.25v25.5C6 39.65 8.35 42 11.25 42h12.8A13 13 0 0 1 42 24.04V11.25C41.99 8.35 39.64 6 36.74 6h-25.5ZM24 35a11 11 0 1 0 22 0 11 11 0 0 0-22 0Zm14.3-3.3a1 1 0 0 1 1.4-1.4l3 3a1 1 0 0 1 0 1.4l-3 3a1 1 0 0 1-1.4-1.4l1.29-1.3H34a4 4 0 0 0-4 4 1 1 0 1 1-2 0 6 6 0 0 1 6-6h5.59l-1.3-1.3Z\"]);\nexport const SquareArrowForward48Regular = /*#__PURE__*/createFluentIcon('SquareArrowForward48Regular', \"48\", [\"M6 11.25C6 8.35 8.35 6 11.25 6h25.5C39.65 6 42 8.35 42 11.25v12.8c-.78-.5-1.62-.92-2.5-1.25V11.25a2.75 2.75 0 0 0-2.75-2.75h-25.5a2.75 2.75 0 0 0-2.75 2.75v25.5a2.75 2.75 0 0 0 2.75 2.75H22.8c.33.88.74 1.72 1.24 2.5H11.25A5.25 5.25 0 0 1 6 36.75v-25.5ZM24 35a11 11 0 1 0 22 0 11 11 0 0 0-22 0Zm14.3-3.3a1 1 0 0 1 1.4-1.4l3 3a1 1 0 0 1 0 1.4l-3 3a1 1 0 0 1-1.4-1.4l1.29-1.3H34a4 4 0 0 0-4 4 1 1 0 1 1-2 0 6 6 0 0 1 6-6h5.59l-1.3-1.3Z\"]);\nexport const SquareDismiss16Filled = /*#__PURE__*/createFluentIcon('SquareDismiss16Filled', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h1.76A5.5 5.5 0 0 1 14 6.26V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm6 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 1 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareDismiss16Regular = /*#__PURE__*/createFluentIcon('SquareDismiss16Regular', \"16\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14h1.76a5.5 5.5 0 0 1-.66-1H4.5A1.5 1.5 0 0 1 3 11.5v-7C3 3.67 3.67 3 4.5 3h7c.83 0 1.5.67 1.5 1.5v1.1c.36.18.7.4 1 .66V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm6 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 1 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareDismiss20Filled = /*#__PURE__*/createFluentIcon('SquareDismiss20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6A5.5 5.5 0 0 1 17 9.6V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareDismiss20Regular = /*#__PURE__*/createFluentIcon('SquareDismiss20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h3.6c-.16-.32-.3-.65-.4-1H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v3.2c.35.1.68.24 1 .4V6a3 3 0 0 0-3-3H6Zm8.5 16a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm1.85-6.35c.2.2.2.5 0 .7l-1.14 1.15 1.14 1.15a.5.5 0 0 1-.7.7l-1.15-1.14-1.15 1.14a.5.5 0 0 1-.7-.7l1.14-1.15-1.14-1.15a.5.5 0 0 1 .7-.7l1.15 1.14 1.15-1.14c.2-.2.5-.2.7 0Z\"]);\nexport const SquareEraser20Filled = /*#__PURE__*/createFluentIcon('SquareEraser20Filled', \"20\", [\"m8.73 13.64 4.9-4.9A2.48 2.48 0 0 1 17 8.59V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h2.6a2.5 2.5 0 0 1 .13-3.36Zm7.74-4.2 2.1 2.1a1.5 1.5 0 0 1 0 2.12l-3.6 3.6-4.22-4.22 3.6-3.6a1.5 1.5 0 0 1 2.12 0Zm-2.21 8.52-4.22-4.22-.6.6a1.5 1.5 0 0 0 0 2.13l2.1 2.1a1.5 1.5 0 0 0 1.12.43h4.09a.5.5 0 0 0 0-1h-2.53l.04-.04Z\"]);\nexport const SquareEraser20Regular = /*#__PURE__*/createFluentIcon('SquareEraser20Regular', \"20\", [\"M8.08 16H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2.08c.37.09.71.26 1 .5V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h2.6a2.47 2.47 0 0 1-.52-1Zm1.36.47a1.5 1.5 0 0 1 0-2.13l4.9-4.9a1.5 1.5 0 0 1 2.12 0l2.1 2.1a1.5 1.5 0 0 1 0 2.13L14.22 18h2.53a.5.5 0 0 1 0 1h-4.1a1.5 1.5 0 0 1-1.12-.44l-2.1-2.1Zm5.61-6.32-3.6 3.6 2.8 2.8 3.6-3.6a.5.5 0 0 0 0-.71l-2.1-2.1a.5.5 0 0 0-.7 0Zm-1.5 7.1-2.8-2.8-.6.6a.5.5 0 0 0 0 .71l2.1 2.1a.5.5 0 0 0 .7 0l.6-.6Z\"]);\nexport const SquareHint16Filled = /*#__PURE__*/createFluentIcon('SquareHint16Filled', \"16\", [\"M7.25 2a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3.5 7.25a.75.75 0 0 0-1.5 0v1.5a.75.75 0 1 0 1.5 0v-1.5Zm9.75-.75c.41 0 .75.34.75.75v1.5a.75.75 0 0 1-1.5 0v-1.5c0-.41.34-.75.75-.75Zm-6 7.5a.75.75 0 0 1 0-1.5h1.5a.75.75 0 0 1 0 1.5h-1.5ZM11 2.75c0-.41.34-.75.75-.75C12.99 2 14 3 14 4.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM11.75 14a.75.75 0 0 1 0-1.5c.41 0 .75-.34.75-.75a.75.75 0 0 1 1.5 0c0 1.24-1 2.25-2.25 2.25ZM5 2.75A.75.75 0 0 0 4.25 2C3.01 2 2 3 2 4.25a.75.75 0 0 0 1.5 0c0-.41.34-.75.75-.75S5 3.16 5 2.75ZM4.25 14a.75.75 0 0 0 0-1.5.75.75 0 0 1-.75-.75.75.75 0 0 0-1.5 0C2 12.99 3 14 4.25 14Z\"]);\nexport const SquareHint16Regular = /*#__PURE__*/createFluentIcon('SquareHint16Regular', \"16\", [\"M9.5 2.5A.5.5 0 0 0 9 2H7a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .5-.5Zm1.5 0c0 .28.22.5.5.5.83 0 1.5.67 1.5 1.5a.5.5 0 0 0 1 0A2.5 2.5 0 0 0 11.5 2a.5.5 0 0 0-.5.5ZM14 7a.5.5 0 0 0-1 0v2a.5.5 0 0 0 1 0V7Zm0 4.5a.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0 0 1 2.5 2.5 0 0 0 2.5-2.5Zm-7.5 2c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H7a.5.5 0 0 1-.5-.5ZM5 2.5a.5.5 0 0 0-.5-.5A2.5 2.5 0 0 0 2 4.5a.5.5 0 0 0 1 0C3 3.67 3.67 3 4.5 3a.5.5 0 0 0 .5-.5ZM4.5 13a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 2 11.5a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5ZM3 9a.5.5 0 0 1-1 0V7a.5.5 0 0 1 1 0v2Z\"]);\nexport const SquareHint20Filled = /*#__PURE__*/createFluentIcon('SquareHint20Filled', \"20\", [\"M9.25 3a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3 10.75a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm5.5 5.5c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm7-5.5a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm-9.5-7A.75.75 0 0 0 5.25 3C4.01 3 3 4 3 5.25a.75.75 0 0 0 1.5 0c0-.41.34-.75.75-.75S6 4.16 6 3.75ZM5.25 17a.75.75 0 0 0 0-1.5.75.75 0 0 1-.75-.75.75.75 0 0 0-1.5 0C3 15.99 4 17 5.25 17ZM14 3.75c0-.41.34-.75.75-.75C15.99 3 17 4 17 5.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM14.75 17a.75.75 0 0 1 0-1.5c.41 0 .75-.34.75-.75a.75.75 0 0 1 1.5 0c0 1.24-1 2.25-2.25 2.25Z\"]);\nexport const SquareHint20Regular = /*#__PURE__*/createFluentIcon('SquareHint20Regular', \"20\", [\"M6 3.5a.5.5 0 0 0-.5-.5A2.5 2.5 0 0 0 3 5.5a.5.5 0 0 0 1 0C4 4.67 4.67 4 5.5 4a.5.5 0 0 0 .5-.5ZM16.5 6a.5.5 0 0 0 .5-.5A2.5 2.5 0 0 0 14.5 3a.5.5 0 0 0 0 1c.83 0 1.5.67 1.5 1.5 0 .28.22.5.5.5Zm-2 11a.5.5 0 0 1 0-1c.83 0 1.5-.67 1.5-1.5a.5.5 0 0 1 1 0 2.5 2.5 0 0 1-2.5 2.5Zm-11-3a.5.5 0 0 0-.5.5A2.5 2.5 0 0 0 5.5 17a.5.5 0 0 0 0-1A1.5 1.5 0 0 1 4 14.5a.5.5 0 0 0-.5-.5ZM3 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9Zm13.5-.5a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5Zm-8-5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5ZM9 16a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Z\"]);\nexport const SquareHint24Filled = /*#__PURE__*/createFluentIcon('SquareHint24Filled', \"24\", [\"M10 4a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Zm7.5 1a1 1 0 1 1 0-2A3.5 3.5 0 0 1 21 6.5a1 1 0 1 1-2 0c0-.83-.67-1.5-1.5-1.5Zm-11-2a1 1 0 0 1 0 2C5.67 5 5 5.67 5 6.5a1 1 0 0 1-2 0A3.5 3.5 0 0 1 6.5 3ZM4 16.5a1 1 0 0 0-1 1A3.5 3.5 0 0 0 6.5 21a1 1 0 1 0 0-2A1.5 1.5 0 0 1 5 17.5a1 1 0 0 0-1-1Zm7 2.5a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Zm6.5 0a1 1 0 1 0 0 2 3.5 3.5 0 0 0 3.5-3.5 1 1 0 1 0-2 0c0 .83-.67 1.5-1.5 1.5Zm2.5-9a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1ZM3 13a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0v2Z\"]);\nexport const SquareHint24Regular = /*#__PURE__*/createFluentIcon('SquareHint24Regular', \"24\", [\"M10 3.75c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm7.75.75a.75.75 0 0 1 0-1.5C19.55 3 21 4.46 21 6.25a.75.75 0 0 1-1.5 0c0-.97-.78-1.75-1.75-1.75ZM6.25 3a.75.75 0 0 1 0 1.5c-.97 0-1.75.78-1.75 1.75a.75.75 0 0 1-1.5 0C3 4.45 4.46 3 6.25 3Zm-2.5 14a.75.75 0 0 0-.75.75C3 19.55 4.46 21 6.25 21a.75.75 0 0 0 0-1.5c-.97 0-1.75-.78-1.75-1.75a.75.75 0 0 0-.75-.75Zm7 2.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm7 0a.75.75 0 0 0 0 1.5c1.8 0 3.25-1.46 3.25-3.25a.75.75 0 0 0-1.5 0c0 .97-.78 1.75-1.75 1.75Zm2.5-9.5c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM3 13.25a.75.75 0 0 0 1.5 0v-2.5a.75.75 0 0 0-1.5 0v2.5Z\"]);\nexport const SquareHint28Filled = /*#__PURE__*/createFluentIcon('SquareHint28Filled', \"28\", [\"M12.5 3a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3Zm0 20a1 1 0 1 0 0 2h3a1 1 0 1 0 0-2h-3ZM4 16.5a1 1 0 0 1-1-1v-3a1 1 0 1 1 2 0v3a1 1 0 0 1-1 1Zm19-1a1 1 0 1 0 2 0v-3a1 1 0 1 0-2 0v3ZM8 4a1 1 0 0 0-1-1h-.25A3.75 3.75 0 0 0 3 6.75V7a1 1 0 0 0 2 0v-.25C5 5.78 5.78 5 6.75 5H7a1 1 0 0 0 1-1ZM7 25a1 1 0 1 0 0-2h-.25C5.78 23 5 22.22 5 21.25V21a1 1 0 1 0-2 0v.25A3.75 3.75 0 0 0 6.75 25H7ZM20 4a1 1 0 0 1 1-1h.25A3.75 3.75 0 0 1 25 6.75V7a1 1 0 1 1-2 0v-.25C23 5.78 22.22 5 21.25 5H21a1 1 0 0 1-1-1Zm1 21a1 1 0 1 1 0-2h.25c.97 0 1.75-.78 1.75-1.75V21a1 1 0 1 1 2 0v.25A3.75 3.75 0 0 1 21.25 25H21Z\"]);\nexport const SquareHint28Regular = /*#__PURE__*/createFluentIcon('SquareHint28Regular', \"28\", [\"M12.25 3a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm0 20.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Zm-8.5-7a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 1.5 0v3.5c0 .41-.34.75-.75.75Zm19.75-.75a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm-3.5-12c0-.41.34-.75.75-.75h.5A3.75 3.75 0 0 1 25 6.75v.5a.75.75 0 0 1-1.5 0v-.5c0-1.24-1-2.25-2.25-2.25h-.5a.75.75 0 0 1-.75-.75ZM20.75 25a.75.75 0 0 1 0-1.5h.5c1.24 0 2.25-1 2.25-2.25v-.5a.75.75 0 0 1 1.5 0v.5A3.75 3.75 0 0 1 21.25 25h-.5ZM8 3.75A.75.75 0 0 0 7.25 3h-.5A3.75 3.75 0 0 0 3 6.75v.5a.75.75 0 0 0 1.5 0v-.5c0-1.24 1-2.25 2.25-2.25h.5c.41 0 .75-.34.75-.75ZM7.25 25a.75.75 0 0 0 0-1.5h-.5c-1.24 0-2.25-1-2.25-2.25v-.5a.75.75 0 0 0-1.5 0v.5A3.75 3.75 0 0 0 6.75 25h.5Z\"]);\nexport const SquareHint32Filled = /*#__PURE__*/createFluentIcon('SquareHint32Filled', \"32\", [\"M14.25 3a1.25 1.25 0 1 0 0 2.5h3.5a1.25 1.25 0 1 0 0-2.5h-3.5Zm0 23.5a1.25 1.25 0 1 0 0 2.5h3.5a1.25 1.25 0 1 0 0-2.5h-3.5Zm13.5-7.5c-.69 0-1.25-.56-1.25-1.25v-3.5a1.25 1.25 0 1 1 2.5 0v3.5c0 .69-.56 1.25-1.25 1.25ZM3 17.75a1.25 1.25 0 1 0 2.5 0v-3.5a1.25 1.25 0 1 0-2.5 0v3.5Zm6-13.5C9 3.56 8.44 3 7.75 3A4.75 4.75 0 0 0 3 7.75a1.25 1.25 0 1 0 2.5 0c0-1.24 1-2.25 2.25-2.25C8.44 5.5 9 4.94 9 4.25ZM7.75 29a1.25 1.25 0 1 0 0-2.5c-1.24 0-2.25-1-2.25-2.25a1.25 1.25 0 1 0-2.5 0A4.75 4.75 0 0 0 7.75 29ZM23 4.25c0-.69.56-1.25 1.25-1.25A4.75 4.75 0 0 1 29 7.75a1.25 1.25 0 1 1-2.5 0c0-1.24-1-2.25-2.25-2.25-.69 0-1.25-.56-1.25-1.25ZM24.25 29a1.25 1.25 0 1 1 0-2.5c1.24 0 2.25-1 2.25-2.25a1.25 1.25 0 1 1 2.5 0A4.75 4.75 0 0 1 24.25 29Z\"]);\nexport const SquareHint32Regular = /*#__PURE__*/createFluentIcon('SquareHint32Regular', \"32\", [\"M14 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Zm0 24a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4ZM4 19a1 1 0 0 1-1-1v-4a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1Zm23-1a1 1 0 1 0 2 0v-4a1 1 0 1 0-2 0v4ZM9 4a1 1 0 0 0-1-1h-.25A4.75 4.75 0 0 0 3 7.75V8a1 1 0 0 0 2 0v-.25A2.75 2.75 0 0 1 7.75 5H8a1 1 0 0 0 1-1ZM8 29a1 1 0 1 0 0-2h-.25A2.75 2.75 0 0 1 5 24.25V24a1 1 0 1 0-2 0v.25A4.75 4.75 0 0 0 7.75 29H8ZM23 4a1 1 0 0 1 1-1h.25A4.75 4.75 0 0 1 29 7.75V8a1 1 0 1 1-2 0v-.25A2.75 2.75 0 0 0 24.25 5H24a1 1 0 0 1-1-1Zm1 25a1 1 0 1 1 0-2h.25A2.75 2.75 0 0 0 27 24.25V24a1 1 0 1 1 2 0v.25A4.75 4.75 0 0 1 24.25 29H24Z\"]);\nexport const SquareHint48Filled = /*#__PURE__*/createFluentIcon('SquareHint48Filled', \"48\", [\"M21.5 6a1.5 1.5 0 0 0 0 3h5a1.5 1.5 0 0 0 0-3h-5ZM42 21.5a1.5 1.5 0 0 0-3 0v5a1.5 1.5 0 0 0 3 0v-5Zm-22 19c0-.83.67-1.5 1.5-1.5h5a1.5 1.5 0 0 1 0 3h-5a1.5 1.5 0 0 1-1.5-1.5Zm-11-19a1.5 1.5 0 0 0-3 0v5a1.5 1.5 0 0 0 3 0v-5Zm5-14c0-.83-.67-1.5-1.5-1.5A6.5 6.5 0 0 0 6 12.5a1.5 1.5 0 0 0 3 0A3.5 3.5 0 0 1 12.5 9c.83 0 1.5-.67 1.5-1.5ZM12.5 42a1.5 1.5 0 0 0 0-3A3.5 3.5 0 0 1 9 35.5a1.5 1.5 0 0 0-3 0 6.5 6.5 0 0 0 6.5 6.5ZM34 7.5c0-.83.67-1.5 1.5-1.5a6.5 6.5 0 0 1 6.5 6.5 1.5 1.5 0 0 1-3 0A3.5 3.5 0 0 0 35.5 9 1.5 1.5 0 0 1 34 7.5ZM35.5 42a1.5 1.5 0 0 1 0-3 3.5 3.5 0 0 0 3.5-3.5 1.5 1.5 0 0 1 3 0 6.5 6.5 0 0 1-6.5 6.5Z\"]);\nexport const SquareHint48Regular = /*#__PURE__*/createFluentIcon('SquareHint48Regular', \"48\", [\"M21.25 6a1.25 1.25 0 1 0 0 2.5h5.5a1.25 1.25 0 1 0 0-2.5h-5.5Zm0 36a1.25 1.25 0 1 1 0-2.5h5.5a1.25 1.25 0 1 1 0 2.5h-5.5Zm-14-14C6.56 28 6 27.44 6 26.75v-5.5a1.25 1.25 0 1 1 2.5 0v5.5c0 .69-.56 1.25-1.25 1.25Zm32.25-1.25a1.25 1.25 0 1 0 2.5 0v-5.5a1.25 1.25 0 1 0-2.5 0v5.5ZM14 7.25C14 6.56 13.44 6 12.75 6h-.5A6.25 6.25 0 0 0 6 12.25v.5a1.25 1.25 0 1 0 2.5 0v-.5a3.75 3.75 0 0 1 3.75-3.75h.5c.69 0 1.25-.56 1.25-1.25ZM12.75 42a1.25 1.25 0 1 0 0-2.5h-.5a3.75 3.75 0 0 1-3.75-3.75v-.5a1.25 1.25 0 1 0-2.5 0v.5C6 39.2 8.8 42 12.25 42h.5ZM34 7.25c0-.69.56-1.25 1.25-1.25h.5C39.2 6 42 8.8 42 12.25v.5a1.25 1.25 0 1 1-2.5 0v-.5a3.75 3.75 0 0 0-3.75-3.75h-.5c-.69 0-1.25-.56-1.25-1.25ZM35.25 42a1.25 1.25 0 1 1 0-2.5h.5a3.75 3.75 0 0 0 3.75-3.75v-.5a1.25 1.25 0 1 1 2.5 0v.5C42 39.2 39.2 42 35.75 42h-.5Z\"]);\nexport const SquareHintApps20Filled = /*#__PURE__*/createFluentIcon('SquareHintApps20Filled', \"20\", [\"M8.5 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4.05 5.54a2 2 0 0 1 1.55-1.5.5.5 0 0 0 .4-.59.5.5 0 0 0-.66-.38 3 3 0 0 0-2.29 2.34.5.5 0 0 0 .4.6.5.5 0 0 0 .6-.47Zm0 8.92a2 2 0 0 0 1.55 1.5.5.5 0 0 1 .4.59.5.5 0 0 1-.66.38 3 3 0 0 1-2.29-2.34.5.5 0 0 1 .4-.6.5.5 0 0 1 .6.47ZM14.66 3.07a.5.5 0 0 0-.66.38.5.5 0 0 0 .46.6 2 2 0 0 1 1.5 1.55.5.5 0 0 0 .59.4.5.5 0 0 0 .38-.66 3 3 0 0 0-2.27-2.27ZM3 11.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-1 0v3ZM6.5 5C5.67 5 5 5.67 5 6.5v7c0 .83.67 1.5 1.5 1.5H7v-.25A2.75 2.75 0 0 1 9.75 12H12V9.75A2.75 2.75 0 0 1 14.75 7H15v-.5c0-.83-.67-1.5-1.5-1.5h-7ZM19 9.75C19 8.78 18.22 8 17.25 8h-2.5C13.78 8 13 8.78 13 9.75V13H9.75C8.78 13 8 13.78 8 14.75v2.5c0 .97.78 1.75 1.75 1.75h6.75a2.5 2.5 0 0 0 2.5-2.5V9.75ZM14 13V9.75c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V13h-4Zm2.5 5H14v-4h4v2.5c0 .83-.67 1.5-1.5 1.5Zm-6.75-4H13v4H9.75a.75.75 0 0 1-.75-.75v-2.5c0-.41.34-.75.75-.75Z\"]);\nexport const SquareHintApps20Regular = /*#__PURE__*/createFluentIcon('SquareHintApps20Regular', \"20\", [\"M8.5 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3ZM4.05 5.54a2 2 0 0 1 1.55-1.5.5.5 0 0 0 .4-.59.5.5 0 0 0-.66-.38 3 3 0 0 0-2.29 2.34.5.5 0 0 0 .4.6.5.5 0 0 0 .6-.47Zm0 8.92a2 2 0 0 0 1.55 1.5.5.5 0 0 1 .4.59.5.5 0 0 1-.66.38 3 3 0 0 1-2.29-2.34.5.5 0 0 1 .4-.6.5.5 0 0 1 .6.47ZM14.66 3.07a.5.5 0 0 0-.66.38.5.5 0 0 0 .46.6 2 2 0 0 1 1.5 1.55.5.5 0 0 0 .59.4.5.5 0 0 0 .38-.66 3 3 0 0 0-2.27-2.27ZM3 11.5a.5.5 0 0 0 1 0v-3a.5.5 0 0 0-1 0v3Zm16-1.75C19 8.78 18.22 8 17.25 8h-2.5C13.78 8 13 8.78 13 9.75V13H9.75C8.78 13 8 13.78 8 14.75v2.5c0 .97.78 1.75 1.75 1.75h6.75a2.5 2.5 0 0 0 2.5-2.5V9.75ZM14 13V9.75c0-.41.34-.75.75-.75h2.5c.41 0 .75.34.75.75V13h-4Zm2.5 5H14v-4h4v2.5c0 .83-.67 1.5-1.5 1.5Zm-6.75-4H13v4H9.75a.75.75 0 0 1-.75-.75v-2.5c0-.41.34-.75.75-.75Z\"]);\nexport const SquareHintApps24Filled = /*#__PURE__*/createFluentIcon('SquareHintApps24Filled', \"24\", [\"M6.25 3a.75.75 0 0 1 0 1.5c-.97 0-1.75.78-1.75 1.75a.75.75 0 0 1-1.5 0C3 4.45 4.46 3 6.25 3Zm3.5 0a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm7.25.75c0 .41.34.75.75.75.97 0 1.75.78 1.75 1.75v1a.75.75 0 0 0 1.5 0v-1C21 4.45 19.54 3 17.75 3a.75.75 0 0 0-.75.75Zm-14 14a.75.75 0 0 1 1.5 0c0 .97.78 1.75 1.75 1.75h1a.75.75 0 0 1 0 1.5h-1A3.25 3.25 0 0 1 3 17.75Zm0-3.5a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-1.5 0v4.5ZM7 5.5c-.83 0-1.5.67-1.5 1.5v10c0 .83.67 1.5 1.5 1.5h2v-.75c0-1.8 1.46-3.25 3.25-3.25h2.25v-2.25c0-1.8 1.46-3.25 3.25-3.25h.75V7c0-.83-.67-1.5-1.5-1.5H7Zm5.25 10h3.25v-3.25c0-1.24 1-2.25 2.25-2.25h3c1.24 0 2.25 1 2.25 2.25v7.5c0 1.8-1.46 3.25-3.25 3.25h-7.5C11.01 23 10 22 10 20.75v-3c0-1.24 1-2.25 2.25-2.25ZM17 12.25v3.25h4.5v-3.25a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75Zm-1.5 9.25V17h-3.25a.75.75 0 0 0-.75.75v3c0 .41.34.75.75.75h3.25ZM17 17v4.5h2.75c.97 0 1.75-.78 1.75-1.75V17H17Z\"]);\nexport const SquareHintApps24Regular = /*#__PURE__*/createFluentIcon('SquareHintApps24Regular', \"24\", [\"M7 3.75A.75.75 0 0 0 6.25 3 3.25 3.25 0 0 0 3 6.25a.75.75 0 0 0 1.5 0c0-.97.78-1.75 1.75-1.75.41 0 .75-.34.75-.75Zm2 0c0-.41.34-.75.75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 9 3.75Zm8.75.75a.75.75 0 0 1 0-1.5C19.55 3 21 4.46 21 6.25v1a.75.75 0 0 1-1.5 0v-1c0-.97-.78-1.75-1.75-1.75ZM3.75 17a.75.75 0 0 0-.75.75C3 19.55 4.46 21 6.25 21h1a.75.75 0 0 0 0-1.5h-1c-.97 0-1.75-.78-1.75-1.75a.75.75 0 0 0-.75-.75Zm0-2a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 1 1.5 0v4.5c0 .41-.34.75-.75.75Zm8.5.5h3.25v-3.25c0-1.24 1-2.25 2.25-2.25h3c1.24 0 2.25 1 2.25 2.25v7.5c0 1.8-1.46 3.25-3.25 3.25h-7.5C11.01 23 10 22 10 20.75v-3c0-1.24 1-2.25 2.25-2.25ZM17 12.25v3.25h4.5v-3.25a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75Zm-1.5 9.25V17h-3.25a.75.75 0 0 0-.75.75v3c0 .41.34.75.75.75h3.25ZM17 17v4.5h2.75c.97 0 1.75-.78 1.75-1.75V17H17Z\"]);\nexport const SquareHintArrowBack16Filled = /*#__PURE__*/createFluentIcon('SquareHintArrowBack16Filled', \"16\", [\"M7.25 2a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3.5 7.25a.75.75 0 0 0-1.5 0v1.5a.75.75 0 1 0 1.5 0v-1.5Zm7.5-4.5c0-.41.34-.75.75-.75C12.99 2 14 3 14 4.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM4.25 2a.75.75 0 0 1 0 1.5.75.75 0 0 0-.75.75.75.75 0 0 1-1.5 0C2 3.01 3 2 4.25 2ZM5 13.25c0 .41-.34.75-.75.75C3.01 14 2 13 2 11.75a.75.75 0 0 1 1.5 0c0 .41.34.75.75.75s.75.34.75.75Zm10-2.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM9.6 7.9a.5.5 0 0 0-.7 0L7.15 9.65a.5.5 0 0 0 0 .7L8.9 12.1a.5.5 0 0 0 .7-.7l-.9-.9h1.55c.97 0 1.75.78 1.75 1.75v.25a.5.5 0 0 0 1 0v-.25a2.75 2.75 0 0 0-2.75-2.75H8.71l.9-.9a.5.5 0 0 0 0-.7Z\"]);\nexport const SquareHintArrowBack16Regular = /*#__PURE__*/createFluentIcon('SquareHintArrowBack16Regular', \"16\", [\"M4.5 2a.5.5 0 0 1 0 1C3.67 3 3 3.67 3 4.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 4.5 2Zm5 .5A.5.5 0 0 0 9 2H7a.5.5 0 0 0 0 1h2a.5.5 0 0 0 .5-.5Zm1.5 0c0 .28.22.5.5.5.83 0 1.5.67 1.5 1.5a.5.5 0 0 0 1 0A2.5 2.5 0 0 0 11.5 2a.5.5 0 0 0-.5.5ZM4.5 13a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 2 11.5a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5Zm-2-3.5A.5.5 0 0 0 3 9V7a.5.5 0 0 0-1 0v2c0 .28.22.5.5.5Zm8 5.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM8.9 7.9a.5.5 0 1 1 .7.7l-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9Z\"]);\nexport const SquareHintArrowBack20Filled = /*#__PURE__*/createFluentIcon('SquareHintArrowBack20Filled', \"20\", [\"M9.25 3a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM3 10.75a.75.75 0 0 0 1.5 0v-1.5a.75.75 0 0 0-1.5 0v1.5Zm4.5 5.5c0-.41.34-.75.75-.75h.84c.1.53.27 1.03.51 1.5H8.25a.75.75 0 0 1-.75-.75Zm8-7.16c.53.1 1.03.27 1.5.51V8.25a.75.75 0 0 0-1.5 0v.84ZM6 3.75A.75.75 0 0 0 5.25 3C4.01 3 3 4 3 5.25a.75.75 0 0 0 1.5 0c0-.41.34-.75.75-.75S6 4.16 6 3.75ZM5.25 17a.75.75 0 0 0 0-1.5.75.75 0 0 1-.75-.75.75.75 0 0 0-1.5 0C3 15.99 4 17 5.25 17ZM14 3.75c0-.41.34-.75.75-.75C15.99 3 17 4 17 5.25a.75.75 0 0 1-1.5 0 .75.75 0 0 0-.75-.75.75.75 0 0 1-.75-.75ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const SquareHintArrowBack20Regular = /*#__PURE__*/createFluentIcon('SquareHintArrowBack20Regular', \"20\", [\"M6 3.5a.5.5 0 0 0-.5-.5A2.5 2.5 0 0 0 3 5.5a.5.5 0 0 0 1 0C4 4.67 4.67 4 5.5 4a.5.5 0 0 0 .5-.5ZM16.5 6a.5.5 0 0 0 .5-.5A2.5 2.5 0 0 0 14.5 3a.5.5 0 0 0 0 1c.83 0 1.5.67 1.5 1.5 0 .28.22.5.5.5Zm-13 8a.5.5 0 0 0-.5.5A2.5 2.5 0 0 0 5.5 17a.5.5 0 0 0 0-1A1.5 1.5 0 0 1 4 14.5a.5.5 0 0 0-.5-.5ZM3 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9Zm13.5-1.5a.5.5 0 0 0-.5.5v1.2c.35.1.68.24 1 .4V8a.5.5 0 0 0-.5-.5ZM9.6 17c-.16-.32-.3-.65-.4-1H8a.5.5 0 0 0 0 1h1.6ZM8.5 3.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Zm6 15.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const SquareHintHexagon12Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon12Filled', \"12\", [\"M3.5 2C2.67 2 2 2.67 2 3.5a.5.5 0 0 0 1 0c0-.28.22-.5.5-.5a.5.5 0 0 0 0-1Zm2 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1c.28 0 .5.22.5.5a.5.5 0 0 0 1 0C10 2.67 9.33 2 8.5 2ZM3 5.5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm7 0a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm-7 3a.5.5 0 0 0-1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 0 0-1 .5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 0-1 0 .5.5 0 0 1-.5.5.5.5 0 0 0 0 1c.83 0 1.5-.67 1.5-1.5ZM5.5 9a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm-.87-4.63A.75.75 0 0 1 5.28 4h1.45c.26 0 .51.14.64.37l.73 1.25c.13.24.13.52 0 .76l-.73 1.24a.75.75 0 0 1-.64.38H5.28a.75.75 0 0 1-.65-.38L3.9 6.38a.75.75 0 0 1 0-.76l.73-1.25Z\"]);\nexport const SquareHintHexagon12Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon12Regular', \"12\", [\"M3.5 2C2.67 2 2 2.67 2 3.5a.5.5 0 0 0 1 0c0-.28.22-.5.5-.5a.5.5 0 0 0 0-1Zm2 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm3 0a.5.5 0 0 0 0 1c.28 0 .5.22.5.5a.5.5 0 0 0 1 0C10 2.67 9.33 2 8.5 2ZM3 5.5a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm7 0a.5.5 0 0 0-1 0v1a.5.5 0 0 0 1 0v-1Zm-7 3a.5.5 0 0 0-1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 0 0-1 .5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 0-1 0 .5.5 0 0 1-.5.5.5.5 0 0 0 0 1c.83 0 1.5-.67 1.5-1.5ZM5.5 9a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1Zm-.66-3 .58-1h1.16l.58 1-.58 1H5.42l-.58-1Zm.44-2a.75.75 0 0 0-.65.37L3.9 5.62a.75.75 0 0 0 0 .76l.73 1.24c.13.24.38.38.65.38h1.45c.26 0 .51-.14.64-.38l.73-1.24a.75.75 0 0 0 0-.76l-.73-1.25A.75.75 0 0 0 6.73 4H5.28Z\"]);\nexport const SquareHintHexagon16Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon16Filled', \"16\", [\"M9 2a.5.5 0 0 1 0 1H7a.5.5 0 0 1 0-1h2Zm2.5 1a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 14 4.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5Zm2 3.5c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0V7c0-.28.22-.5.5-.5Zm0 4.5c.28 0 .5.22.5.5a2.5 2.5 0 0 1-2.5 2.5.5.5 0 0 1 0-1c.83 0 1.5-.67 1.5-1.5 0-.28.22-.5.5-.5ZM7 13a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H7ZM4.5 2a.5.5 0 0 1 0 1C3.67 3 3 3.67 3 4.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 4.5 2ZM5 13.5a.5.5 0 0 0-.5-.5A1.5 1.5 0 0 1 3 11.5a.5.5 0 0 0-1 0A2.5 2.5 0 0 0 4.5 14a.5.5 0 0 0 .5-.5Zm-2.5-4A.5.5 0 0 0 3 9V7a.5.5 0 0 0-1 0v2c0 .28.22.5.5.5Zm3.47-4a1 1 0 0 1 .87-.5h2.32a1 1 0 0 1 .87.5l1.16 2a1 1 0 0 1 0 1l-1.16 2a1 1 0 0 1-.87.5H6.84a1 1 0 0 1-.87-.5l-1.16-2a1 1 0 0 1 0-1l1.16-2Z\"]);\nexport const SquareHintHexagon16Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon16Regular', \"16\", [\"M9 2a.5.5 0 0 1 0 1H7a.5.5 0 0 1 0-1h2Zm2.5 1a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 14 4.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5Zm2 3.5c.28 0 .5.22.5.5v2a.5.5 0 0 1-1 0V7c0-.28.22-.5.5-.5Zm0 4.5c.28 0 .5.22.5.5a2.5 2.5 0 0 1-2.5 2.5.5.5 0 0 1 0-1c.83 0 1.5-.67 1.5-1.5 0-.28.22-.5.5-.5ZM7 13a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H7ZM4.5 2a.5.5 0 0 1 0 1C3.67 3 3 3.67 3 4.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 4.5 2ZM5 13.5a.5.5 0 0 0-.5-.5A1.5 1.5 0 0 1 3 11.5a.5.5 0 0 0-1 0A2.5 2.5 0 0 0 4.5 14a.5.5 0 0 0 .5-.5Zm-2.5-4A.5.5 0 0 0 3 9V7a.5.5 0 0 0-1 0v2c0 .28.22.5.5.5ZM6.84 5a1 1 0 0 0-.87.5l-1.16 2a1 1 0 0 0 0 1l1.16 2c.18.31.51.5.87.5h2.32a1 1 0 0 0 .87-.5l1.16-2a1 1 0 0 0 0-1l-1.16-2a1 1 0 0 0-.87-.5H6.84Zm0 1h2.32l1.16 2-1.16 2H6.84L5.68 8l1.16-2Z\"]);\nexport const SquareHintHexagon20Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon20Filled', \"20\", [\"M5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM17 5.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 17 5.5Zm-3 11c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5ZM16 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9ZM9 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Zm-.5 13.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5ZM7.33 6.63c.23-.4.64-.63 1.09-.63h3.17c.44 0 .86.24 1.08.63l1.58 2.75c.23.38.23.86 0 1.24l-1.58 2.75c-.22.4-.64.63-1.08.63H8.42c-.45 0-.86-.24-1.09-.63l-1.58-2.75a1.25 1.25 0 0 1 0-1.24l1.58-2.75Z\"]);\nexport const SquareHintHexagon20Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon20Regular', \"20\", [\"M5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM17 5.5a.5.5 0 0 1-1 0c0-.83-.67-1.5-1.5-1.5a.5.5 0 0 1 0-1A2.5 2.5 0 0 1 17 5.5Zm-3 11c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5ZM16 9a.5.5 0 0 1 1 0v2a.5.5 0 0 1-1 0V9ZM9 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9Zm-.5 13.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Zm-.3-9.37A.25.25 0 0 1 8.42 7h3.17c.09 0 .17.05.21.13l1.59 2.75c.04.07.04.17 0 .24l-1.59 2.75a.25.25 0 0 1-.21.13H8.42a.25.25 0 0 1-.22-.13l-1.59-2.75a.25.25 0 0 1 0-.24L8.2 7.13ZM8.42 6c-.45 0-.86.24-1.09.63L5.75 9.38c-.23.38-.23.86 0 1.24l1.58 2.75c.23.4.64.63 1.09.63h3.17c.44 0 .86-.24 1.08-.63l1.58-2.75c.23-.38.23-.86 0-1.24l-1.58-2.75A1.25 1.25 0 0 0 11.59 6H8.42Z\"]);\nexport const SquareHintHexagon24Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon24Filled', \"24\", [\"M10.75 3a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm6.25.75c0 .41.34.75.75.75.97 0 1.75.78 1.75 1.75a.75.75 0 0 0 1.5 0C21 4.45 19.54 3 17.75 3a.75.75 0 0 0-.75.75Zm-10 0A.75.75 0 0 0 6.25 3 3.25 3.25 0 0 0 3 6.25a.75.75 0 0 0 1.5 0c0-.97.78-1.75 1.75-1.75.41 0 .75-.34.75-.75Zm-4 14a.75.75 0 0 1 1.5 0c0 .97.78 1.75 1.75 1.75a.75.75 0 0 1 0 1.5A3.25 3.25 0 0 1 3 17.75Zm7 2.5c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm7 0c0-.41.34-.75.75-.75.97 0 1.75-.78 1.75-1.75a.75.75 0 0 1 1.5 0c0 1.8-1.46 3.25-3.25 3.25a.75.75 0 0 1-.75-.75Zm4-9.5a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5ZM3.75 14a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75Zm4.93-6.25A1.5 1.5 0 0 1 9.98 7h4.04c.54 0 1.03.29 1.3.75l2.02 3.5a1.5 1.5 0 0 1 0 1.5l-2.02 3.5a1.5 1.5 0 0 1-1.3.75H9.98a1.5 1.5 0 0 1-1.3-.75l-2.02-3.5a1.5 1.5 0 0 1 0-1.5l2.02-3.5Z\"]);\nexport const SquareHintHexagon24Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon24Regular', \"24\", [\"M10.75 3a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Zm6.25.75c0 .41.34.75.75.75.97 0 1.75.78 1.75 1.75a.75.75 0 0 0 1.5 0C21 4.45 19.54 3 17.75 3a.75.75 0 0 0-.75.75Zm-10 0A.75.75 0 0 0 6.25 3 3.25 3.25 0 0 0 3 6.25a.75.75 0 0 0 1.5 0c0-.97.78-1.75 1.75-1.75.41 0 .75-.34.75-.75Zm-4 14a.75.75 0 0 1 1.5 0c0 .97.78 1.75 1.75 1.75a.75.75 0 0 1 0 1.5A3.25 3.25 0 0 1 3 17.75Zm7 2.5c0-.41.34-.75.75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Zm7 0c0-.41.34-.75.75-.75.97 0 1.75-.78 1.75-1.75a.75.75 0 0 1 1.5 0c0 1.8-1.46 3.25-3.25 3.25a.75.75 0 0 1-.75-.75Zm4-9.5a.75.75 0 0 0-1.5 0v2.5a.75.75 0 0 0 1.5 0v-2.5ZM3.75 14a.75.75 0 0 1-.75-.75v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .41-.34.75-.75.75Zm6.23-7a1.5 1.5 0 0 0-1.3.75l-2.02 3.5a1.5 1.5 0 0 0 0 1.5l2.02 3.5c.27.46.77.75 1.3.75h4.04a1.5 1.5 0 0 0 1.3-.75l2.02-3.5a1.5 1.5 0 0 0 0-1.5l-2.02-3.5a1.5 1.5 0 0 0-1.3-.75H9.98Zm0 1.5h4.04l2.02 3.5-2.02 3.5H9.98L7.96 12l2.02-3.5Z\"]);\nexport const SquareHintHexagon28Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon28Filled', \"28\", [\"M11.5 3.75c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm0 20.5c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75ZM3 15.75a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm21.25.75a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 1.5 0v3.5c0 .41-.34.75-.75.75ZM20.75 3a.75.75 0 0 0 0 1.5h.5c1.24 0 2.25 1 2.25 2.25v.5a.75.75 0 0 0 1.5 0v-.5A3.75 3.75 0 0 0 21.25 3h-.5ZM20 24.25c0 .41.34.75.75.75h.5A3.75 3.75 0 0 0 25 21.25v-.5a.75.75 0 0 0-1.5 0v.5c0 1.24-1 2.25-2.25 2.25h-.5a.75.75 0 0 0-.75.75ZM7.25 3a.75.75 0 0 1 0 1.5h-.5c-1.24 0-2.25 1-2.25 2.25v.5a.75.75 0 0 1-1.5 0v-.5A3.75 3.75 0 0 1 6.75 3h.5ZM8 24.25c0 .41-.34.75-.75.75h-.5A3.75 3.75 0 0 1 3 21.25v-.5a.75.75 0 0 1 1.5 0v.5c0 1.24 1 2.25 2.25 2.25h.5c.41 0 .75.34.75.75Zm2.03-15.37c.31-.55.9-.88 1.52-.88h4.9c.63 0 1.2.33 1.52.88l2.45 4.25c.32.54.32 1.2 0 1.75l-2.45 4.25c-.31.54-.9.87-1.52.87h-4.9c-.63 0-1.2-.33-1.52-.87l-2.45-4.25a1.75 1.75 0 0 1 0-1.75l2.45-4.25Z\"]);\nexport const SquareHintHexagon28Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon28Regular', \"28\", [\"M11.5 3.75c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Zm0 20.5c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75ZM3 15.75a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm21.25.75a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 1.5 0v3.5c0 .41-.34.75-.75.75ZM20.75 3a.75.75 0 0 0 0 1.5h.5c1.24 0 2.25 1 2.25 2.25v.5a.75.75 0 0 0 1.5 0v-.5A3.75 3.75 0 0 0 21.25 3h-.5ZM20 24.25c0 .41.34.75.75.75h.5A3.75 3.75 0 0 0 25 21.25v-.5a.75.75 0 0 0-1.5 0v.5c0 1.24-1 2.25-2.25 2.25h-.5a.75.75 0 0 0-.75.75ZM7.25 3a.75.75 0 0 1 0 1.5h-.5c-1.24 0-2.25 1-2.25 2.25v.5a.75.75 0 0 1-1.5 0v-.5A3.75 3.75 0 0 1 6.75 3h.5ZM8 24.25c0 .41-.34.75-.75.75h-.5A3.75 3.75 0 0 1 3 21.25v-.5a.75.75 0 0 1 1.5 0v.5c0 1.24 1 2.25 2.25 2.25h.5c.41 0 .75.34.75.75ZM11.55 8c-.63 0-1.2.33-1.52.88l-2.45 4.25c-.31.54-.31 1.2 0 1.75l2.45 4.25c.31.54.9.87 1.52.87h4.9c.63 0 1.2-.33 1.52-.87l2.45-4.25c.32-.54.32-1.21 0-1.75l-2.45-4.25A1.75 1.75 0 0 0 16.45 8h-4.9Zm-.22 1.63a.25.25 0 0 1 .22-.13h4.9c.1 0 .18.05.22.13l2.45 4.25c.05.07.05.17 0 .25l-2.45 4.25a.25.25 0 0 1-.22.12h-4.9a.25.25 0 0 1-.22-.12l-2.45-4.25a.25.25 0 0 1 0-.25l2.45-4.25Z\"]);\nexport const SquareHintHexagon32Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon32Filled', \"32\", [\"M13 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 24a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1ZM3 18a1 1 0 1 0 2 0v-4a1 1 0 1 0-2 0v4Zm25 1a1 1 0 0 1-1-1v-4a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1ZM8 3a1 1 0 0 1 0 2h-.25A2.75 2.75 0 0 0 5 7.75V8a1 1 0 0 1-2 0v-.25A4.75 4.75 0 0 1 7.75 3H8Zm1 25a1 1 0 0 1-1 1h-.25A4.75 4.75 0 0 1 3 24.25V24a1 1 0 1 1 2 0v.25A2.75 2.75 0 0 0 7.75 27H8a1 1 0 0 1 1 1ZM24 3a1 1 0 1 0 0 2h.25A2.75 2.75 0 0 1 27 7.75V8a1 1 0 1 0 2 0v-.25A4.75 4.75 0 0 0 24.25 3H24Zm-1 25a1 1 0 0 0 1 1h.25A4.75 4.75 0 0 0 29 24.25V24a1 1 0 1 0-2 0v.25A2.75 2.75 0 0 1 24.25 27H24a1 1 0 0 0-1 1ZM13.11 9a2 2 0 0 0-1.73 1l-2.89 5a2 2 0 0 0 0 2l2.89 5a2 2 0 0 0 1.73 1h5.77a2 2 0 0 0 1.74-1l2.88-5a2 2 0 0 0 0-2l-2.88-5a2 2 0 0 0-1.74-1h-5.77Z\"]);\nexport const SquareHintHexagon32Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon32Regular', \"32\", [\"M13 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 24a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1ZM3 18a1 1 0 1 0 2 0v-4a1 1 0 1 0-2 0v4Zm25 1a1 1 0 0 1-1-1v-4a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1ZM8 3a1 1 0 0 1 0 2h-.25A2.75 2.75 0 0 0 5 7.75V8a1 1 0 0 1-2 0v-.25A4.75 4.75 0 0 1 7.75 3H8Zm1 25a1 1 0 0 1-1 1h-.25A4.75 4.75 0 0 1 3 24.25V24a1 1 0 1 1 2 0v.25A2.75 2.75 0 0 0 7.75 27H8a1 1 0 0 1 1 1ZM24 3a1 1 0 1 0 0 2h.25A2.75 2.75 0 0 1 27 7.75V8a1 1 0 1 0 2 0v-.25A4.75 4.75 0 0 0 24.25 3H24Zm-1 25a1 1 0 0 0 1 1h.25A4.75 4.75 0 0 0 29 24.25V24a1 1 0 1 0-2 0v.25A2.75 2.75 0 0 1 24.25 27H24a1 1 0 0 0-1 1ZM11.38 10a2 2 0 0 1 1.73-1h5.77a2 2 0 0 1 1.74 1l2.88 5a2 2 0 0 1 0 2l-2.88 5a2 2 0 0 1-1.74 1h-5.77a2 2 0 0 1-1.73-1l-2.89-5a2 2 0 0 1 0-2l2.89-5Zm7.5 1h-5.77l-2.88 5 2.88 5h5.77l2.89-5-2.89-5Z\"]);\nexport const SquareHintHexagon48Filled = /*#__PURE__*/createFluentIcon('SquareHintHexagon48Filled', \"48\", [\"M20 7.25c0-.69.56-1.25 1.25-1.25h5.5a1.25 1.25 0 1 1 0 2.5h-5.5c-.69 0-1.25-.56-1.25-1.25Zm0 33.5c0 .69.56 1.25 1.25 1.25h5.5a1.25 1.25 0 1 0 0-2.5h-5.5c-.69 0-1.25.56-1.25 1.25Zm-14-14a1.25 1.25 0 1 0 2.5 0v-5.5a1.25 1.25 0 1 0-2.5 0v5.5ZM40.75 28c-.69 0-1.25-.56-1.25-1.25v-5.5a1.25 1.25 0 1 1 2.5 0v5.5c0 .69-.56 1.25-1.25 1.25Zm-28-22a1.25 1.25 0 1 1 0 2.5h-.5a3.75 3.75 0 0 0-3.75 3.75v.5a1.25 1.25 0 1 1-2.5 0v-.5C6 8.8 8.8 6 12.25 6h.5ZM14 40.75c0 .69-.56 1.25-1.25 1.25h-.5A6.25 6.25 0 0 1 6 35.75v-.5a1.25 1.25 0 1 1 2.5 0v.5a3.75 3.75 0 0 0 3.75 3.75h.5c.69 0 1.25.56 1.25 1.25ZM35.25 6a1.25 1.25 0 1 0 0 2.5h.5a3.75 3.75 0 0 1 3.75 3.75v.5a1.25 1.25 0 1 0 2.5 0v-.5C42 8.8 39.2 6 35.75 6h-.5ZM34 40.75c0 .69.56 1.25 1.25 1.25h.5C39.2 42 42 39.2 42 35.75v-.5a1.25 1.25 0 1 0-2.5 0v.5a3.75 3.75 0 0 1-3.75 3.75h-.5c-.69 0-1.25.56-1.25 1.25ZM16.86 14.39c.49-.86 1.4-1.38 2.38-1.38h9.52c.98 0 1.9.52 2.38 1.38l4.76 8.24c.5.85.5 1.9 0 2.75l-4.76 8.25c-.49.85-1.4 1.38-2.38 1.38h-9.52c-.98 0-1.89-.53-2.38-1.38l-4.76-8.25c-.5-.85-.5-1.9 0-2.75l4.76-8.24Z\"]);\nexport const SquareHintHexagon48Regular = /*#__PURE__*/createFluentIcon('SquareHintHexagon48Regular', \"48\", [\"M20 7.25c0-.69.56-1.25 1.25-1.25h5.5a1.25 1.25 0 1 1 0 2.5h-5.5c-.69 0-1.25-.56-1.25-1.25Zm0 33.5c0 .69.56 1.25 1.25 1.25h5.5a1.25 1.25 0 1 0 0-2.5h-5.5c-.69 0-1.25.56-1.25 1.25Zm-14-14a1.25 1.25 0 1 0 2.5 0v-5.5a1.25 1.25 0 1 0-2.5 0v5.5ZM40.75 28c-.69 0-1.25-.56-1.25-1.25v-5.5a1.25 1.25 0 1 1 2.5 0v5.5c0 .69-.56 1.25-1.25 1.25Zm-28-22a1.25 1.25 0 1 1 0 2.5h-.5a3.75 3.75 0 0 0-3.75 3.75v.5a1.25 1.25 0 1 1-2.5 0v-.5C6 8.8 8.8 6 12.25 6h.5ZM14 40.75c0 .69-.56 1.25-1.25 1.25h-.5A6.25 6.25 0 0 1 6 35.75v-.5a1.25 1.25 0 1 1 2.5 0v.5a3.75 3.75 0 0 0 3.75 3.75h.5c.69 0 1.25.56 1.25 1.25ZM35.25 6a1.25 1.25 0 1 0 0 2.5h.5a3.75 3.75 0 0 1 3.75 3.75v.5a1.25 1.25 0 1 0 2.5 0v-.5C42 8.8 39.2 6 35.75 6h-.5ZM34 40.75c0 .69.56 1.25 1.25 1.25h.5C39.2 42 42 39.2 42 35.75v-.5a1.25 1.25 0 1 0-2.5 0v.5a3.75 3.75 0 0 1-3.75 3.75h-.5c-.69 0-1.25.56-1.25 1.25ZM19.24 13.01c-.98 0-1.89.52-2.38 1.38l-4.76 8.24c-.5.85-.5 1.9 0 2.75l4.76 8.25c.49.85 1.4 1.38 2.38 1.38h9.52c.98 0 1.9-.53 2.38-1.38l4.76-8.25c.5-.85.5-1.9 0-2.75l-4.76-8.24A2.75 2.75 0 0 0 28.76 13h-9.52Zm-.22 2.62a.25.25 0 0 1 .22-.12h9.52c.09 0 .17.05.22.12l4.76 8.25c.04.08.04.18 0 .25l-4.76 8.25a.25.25 0 0 1-.22.13h-9.52a.25.25 0 0 1-.22-.13l-4.76-8.25a.25.25 0 0 1 0-.25l4.76-8.25Z\"]);\nexport const SquareHintSparkles16Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles16Filled', \"16\", [\"M13.8 2.22h-.02l-.76-.26a1.58 1.58 0 0 1-1-1L11.77.2a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .29.2.3.3 0 0 0 .29-.2l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57Zm1.41 3.35.62.2a.24.24 0 0 1 0 .46l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.46 0l-.2-.6a1.26 1.26 0 0 0-.8-.8l-.6-.2a.24.24 0 0 1 0-.46l.6-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8ZM8 2.5c0-.17.03-.34.1-.5h-.85a.75.75 0 0 0 0 1.5h1.22a1.31 1.31 0 0 1-.47-1ZM4.75 2a.75.75 0 0 1 0 1.5c-.69 0-1.25.56-1.25 1.25a.75.75 0 0 1-1.5 0A2.75 2.75 0 0 1 4.75 2Zm8.5 8.5c.41 0 .75.34.75.75A2.75 2.75 0 0 1 11.25 14a.75.75 0 0 1 0-1.5c.69 0 1.25-.56 1.25-1.25 0-.41.34-.75.75-.75ZM6.5 13.25c0-.41.34-.75.75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm-1.75-.75a.75.75 0 0 1 0 1.5A2.75 2.75 0 0 1 2 11.25a.75.75 0 0 1 1.5 0c0 .69.56 1.25 1.25 1.25Zm-2-3c.41 0 .75-.34.75-.75v-1.5a.75.75 0 0 0-1.5 0v1.5c0 .41.34.75.75.75Z\"]);\nexport const SquareHintSparkles16Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles16Regular', \"16\", [\"M13.8 2.22h-.02l-.76-.26a1.58 1.58 0 0 1-1-1L11.77.2a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .29.2.3.3 0 0 0 .29-.2l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57Zm1.41 3.35.62.2a.24.24 0 0 1 0 .46l-.6.2a1.26 1.26 0 0 0-.8.8l-.2.6a.24.24 0 0 1-.46 0l-.2-.6a1.26 1.26 0 0 0-.8-.8l-.6-.2a.24.24 0 0 1 0-.46l.6-.2a1.26 1.26 0 0 0 .8-.8l.19-.6a.24.24 0 0 1 .46 0l.2.6a1.26 1.26 0 0 0 .8.8ZM8 2.5c0-.17.03-.34.1-.5H7a.5.5 0 0 0 0 1h1.1c-.07-.16-.1-.33-.1-.5ZM4.5 2a.5.5 0 0 1 0 1C3.67 3 3 3.67 3 4.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 4.5 2Zm9 9c.28 0 .5.22.5.5a2.5 2.5 0 0 1-2.5 2.5.5.5 0 0 1 0-1c.83 0 1.5-.67 1.5-1.5 0-.28.22-.5.5-.5Zm-7 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H7a.5.5 0 0 1-.5-.5Zm-2-.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 2 11.5a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5Zm-2-3.5A.5.5 0 0 0 3 9V7a.5.5 0 0 0-1 0v2c0 .28.22.5.5.5Z\"]);\nexport const SquareHintSparkles20Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles20Filled', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM10 3.5c0-.17.04-.34.1-.5h-.85a.75.75 0 0 0 0 1.5h1.18a1.43 1.43 0 0 1-.43-1Zm-6.25 8a.75.75 0 0 1-.75-.75v-1.5a.75.75 0 0 1 1.5 0v1.5c0 .41-.34.75-.75.75Zm5.5 4a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5ZM5.25 3a.75.75 0 0 1 0 1.5.75.75 0 0 0-.75.75.75.75 0 0 1-1.5 0C3 4.01 4 3 5.25 3ZM6 16.25c0 .41-.34.75-.75.75C4.01 17 3 16 3 14.75a.75.75 0 0 1 1.5 0c0 .41.34.75.75.75s.75.34.75.75Zm8 0c0 .41.34.75.75.75 1.24 0 2.25-1 2.25-2.25a.75.75 0 0 0-1.5 0c0 .41-.34.75-.75.75a.75.75 0 0 0-.75.75Z\"]);\nexport const SquareHintSparkles20Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles20Regular', \"20\", [\"m14.88.28.35 1.07a2.2 2.2 0 0 0 1.4 1.4l1.07.35h.02a.42.42 0 0 1 0 .8l-1.07.35a2.2 2.2 0 0 0-1.4 1.4l-.35 1.07a.42.42 0 0 1-.8 0l-.35-1.07a2.23 2.23 0 0 0-1.4-1.4l-1.07-.35a.42.42 0 0 1 0-.8l1.07-.35a2.2 2.2 0 0 0 1.38-1.4l.35-1.07a.42.42 0 0 1 .8 0Zm4.9 7.93-.76-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM10 3.5c0-.17.04-.34.1-.5H9a.5.5 0 0 0 0 1h1.1c-.06-.16-.1-.33-.1-.5ZM5.5 3a.5.5 0 0 1 0 1C4.67 4 4 4.67 4 5.5a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 5.5 3ZM14 16.5c0 .28.22.5.5.5a2.5 2.5 0 0 0 2.5-2.5.5.5 0 0 0-1 0c0 .83-.67 1.5-1.5 1.5a.5.5 0 0 0-.5.5Zm-11-2a.5.5 0 0 1 1 0c0 .83.67 1.5 1.5 1.5a.5.5 0 0 1 0 1A2.5 2.5 0 0 1 3 14.5Zm.5-6A.5.5 0 0 0 3 9v2a.5.5 0 0 0 1 0V9a.5.5 0 0 0-.5-.5Zm5 8c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5Z\"]);\nexport const SquareHintSparkles24Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles24Filled', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM12.27 3.57c.2-.26.46-.46.76-.57H11a1 1 0 1 0 0 2h1.1a1.57 1.57 0 0 1 .18-1.43ZM4 10a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Zm10 10a1 1 0 0 1-1 1h-2a1 1 0 1 1 0-2h2a1 1 0 0 1 1 1ZM6 3a1 1 0 0 1 0 2 1 1 0 0 0-1 1 1 1 0 0 1-2 0 3 3 0 0 1 3-3Zm0 18a1 1 0 1 0 0-2 1 1 0 0 1-1-1 1 1 0 1 0-2 0 3 3 0 0 0 3 3Zm11-1a1 1 0 0 0 1 1 3 3 0 0 0 3-3 1 1 0 1 0-2 0 1 1 0 0 1-1 1 1 1 0 0 0-1 1Z\"]);\nexport const SquareHintSparkles24Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles24Regular', \"24\", [\"M16.09 6.41a2.84 2.84 0 0 0-1.35-.95L13.36 5a.54.54 0 0 1 0-1.03l1.38-.44a2.84 2.84 0 0 0 1.76-1.77l.01-.03.45-1.38a.54.54 0 0 1 1.03 0l.44 1.38a2.84 2.84 0 0 0 1.8 1.8l1.38.44.03.01a.54.54 0 0 1 0 1.03l-1.38.44a2.84 2.84 0 0 0-1.8 1.8l-.45 1.38a.54.54 0 0 1-1.03 0l-.44-1.38c-.1-.3-.25-.6-.45-.85Zm7.7 3.8-.77-.25a1.58 1.58 0 0 1-1-1l-.25-.76a.3.3 0 0 0-.57 0l-.25.77a1.58 1.58 0 0 1-.98 1l-.77.24a.3.3 0 0 0 0 .57l.77.25a1.58 1.58 0 0 1 1 1l.24.77a.3.3 0 0 0 .58 0l.24-.77a1.58 1.58 0 0 1 1-1l.77-.24a.3.3 0 0 0 0-.57h-.02ZM12.27 3.57c.2-.26.46-.46.77-.57h-2.3a.75.75 0 0 0 0 1.5H12a1.6 1.6 0 0 1 .28-.93ZM3.75 10c.41 0 .75.34.75.75v2.5a.75.75 0 0 1-1.5 0v-2.5c0-.41.34-.75.75-.75ZM14 20.25c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 1 0-1.5h2.5c.41 0 .75.34.75.75ZM6.25 3a.75.75 0 0 1 0 1.5h-.5c-.69 0-1.25.56-1.25 1.25v.5a.75.75 0 0 1-1.5 0v-.5A2.75 2.75 0 0 1 5.75 3h.5Zm0 18a.75.75 0 0 0 0-1.5h-.5c-.69 0-1.25-.56-1.25-1.25v-.5a.75.75 0 0 0-1.5 0v.5A2.75 2.75 0 0 0 5.75 21h.5ZM17 20.25c0 .41.34.75.75.75h.5A2.75 2.75 0 0 0 21 18.25v-.5a.75.75 0 0 0-1.5 0v.5c0 .69-.56 1.25-1.25 1.25h-.5a.75.75 0 0 0-.75.75Z\"]);\nexport const SquareHintSparkles28Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles28Filled', \"28\", [\"M18.17 6.83a3.16 3.16 0 0 1 .76 1.24l.5 1.53a.6.6 0 0 0 1.14 0l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.96 1.96l-1.53.5a.6.6 0 0 0 0 1.14l1.53.5c.47.15.9.41 1.24.76Zm8.65 3.53.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM15.1 3.5l.98-.32A1 1 0 0 0 15.5 3h-3a1 1 0 1 0 0 2H14c0-.33.1-.65.3-.91.2-.28.47-.48.79-.6ZM11.5 24a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2h-3a1 1 0 0 1-1-1ZM3 15.5a1 1 0 1 0 2 0v-3a1 1 0 1 0-2 0v3ZM7 3a1 1 0 0 1 0 2h-.25C5.78 5 5 5.78 5 6.75V7a1 1 0 0 1-2 0v-.25A3.75 3.75 0 0 1 6.75 3H7Zm1 21a1 1 0 0 1-1 1h-.25A3.75 3.75 0 0 1 3 21.25V21a1 1 0 1 1 2 0v.25c0 .97.78 1.75 1.75 1.75H7a1 1 0 0 1 1 1Zm12 0a1 1 0 0 0 1 1h.25A3.75 3.75 0 0 0 25 21.25V21a1 1 0 1 0-2 0v.25c0 .97-.78 1.75-1.75 1.75H21a1 1 0 0 0-1 1Z\"]);\nexport const SquareHintSparkles28Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles28Regular', \"28\", [\"M18.17 6.83a3.16 3.16 0 0 1 .76 1.24l.5 1.53a.6.6 0 0 0 1.14 0l.5-1.53a3.15 3.15 0 0 1 2-2l1.53-.5a.6.6 0 0 0 0-1.14h-.03l-1.54-.5a3.15 3.15 0 0 1-2-2L20.55.4a.6.6 0 0 0-1.14 0l-.5 1.53-.01.04a3.15 3.15 0 0 1-1.96 1.96l-1.53.5a.6.6 0 0 0 0 1.14l1.53.5c.47.15.9.41 1.24.76Zm8.65 3.53.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2ZM15.1 3.5l1.1-.36a.75.75 0 0 0-.44-.14h-3.5a.75.75 0 0 0 0 1.5h1.84a1.57 1.57 0 0 1 1-1ZM11.5 24.25c0-.41.34-.75.75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75ZM3 15.75a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-1.5 0v3.5Zm17 8.5c0 .41.34.75.75.75h.5A3.75 3.75 0 0 0 25 21.25v-.5a.75.75 0 0 0-1.5 0v.5c0 1.24-1 2.25-2.25 2.25h-.5a.75.75 0 0 0-.75.75ZM7.25 3a.75.75 0 0 1 0 1.5h-.5c-1.24 0-2.25 1-2.25 2.25v.5a.75.75 0 0 1-1.5 0v-.5A3.75 3.75 0 0 1 6.75 3h.5ZM8 24.25c0 .41-.34.75-.75.75h-.5A3.75 3.75 0 0 1 3 21.25v-.5a.75.75 0 0 1 1.5 0v.5c0 1.24 1 2.25 2.25 2.25h.5c.41 0 .75.34.75.75Z\"]);\nexport const SquareHintSparkles32Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles32Filled', \"32\", [\"M21.77 7.84a3.49 3.49 0 0 0-1.64-1.17l-1.69-.55a.67.67 0 0 1 0-1.25l1.69-.55a3.47 3.47 0 0 0 2.15-2.15l.01-.04.55-1.69a.66.66 0 0 1 1.25 0l.55 1.69a3.47 3.47 0 0 0 2.2 2.2l1.68.54h.04a.67.67 0 0 1 0 1.26l-1.69.55a3.47 3.47 0 0 0-2.2 2.2l-.54 1.68-.02.04a.66.66 0 0 1-1.24-.04l-.54-1.69a3.46 3.46 0 0 0-.56-1.03Zm-3.25-4.58-.52.18a2.17 2.17 0 0 0-1.5 2.06h-2.25a1.25 1.25 0 1 1 0-2.5h3.5c.29 0 .56.1.77.26ZM14.25 26.5a1.25 1.25 0 1 0 0 2.5h3.5a1.25 1.25 0 1 0 0-2.5h-3.5ZM3 17.75a1.25 1.25 0 1 0 2.5 0v-3.5a1.25 1.25 0 1 0-2.5 0v3.5Zm6-13.5C9 3.56 8.44 3 7.75 3A4.75 4.75 0 0 0 3 7.75a1.25 1.25 0 1 0 2.5 0c0-1.24 1-2.25 2.25-2.25C8.44 5.5 9 4.94 9 4.25ZM7.75 29a1.25 1.25 0 1 0 0-2.5c-1.24 0-2.25-1-2.25-2.25a1.25 1.25 0 1 0-2.5 0A4.75 4.75 0 0 0 7.75 29Zm16.5 0a1.25 1.25 0 1 1 0-2.5c1.24 0 2.25-1 2.25-2.25a1.25 1.25 0 1 1 2.5 0A4.75 4.75 0 0 1 24.25 29Zm6.57-16.64.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2Z\"]);\nexport const SquareHintSparkles32Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles32Regular', \"32\", [\"M21.77 7.84a3.49 3.49 0 0 0-1.64-1.17l-1.69-.55a.67.67 0 0 1 0-1.25l1.69-.55a3.47 3.47 0 0 0 2.15-2.15l.01-.04.55-1.69a.66.66 0 0 1 1.25 0l.55 1.69a3.47 3.47 0 0 0 2.2 2.2l1.68.54h.04a.67.67 0 0 1 0 1.26l-1.69.55a3.47 3.47 0 0 0-2.2 2.2l-.54 1.68-.02.04a.66.66 0 0 1-1.24-.04l-.54-1.69a3.46 3.46 0 0 0-.56-1.03Zm-3.14-4.62-.63.22A2.17 2.17 0 0 0 16.56 5H14a1 1 0 1 1 0-2h4a1 1 0 0 1 .63.22ZM14 27a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4ZM4 19a1 1 0 0 1-1-1v-4a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1ZM9 4a1 1 0 0 0-1-1h-.25A4.75 4.75 0 0 0 3 7.75V8a1 1 0 0 0 2 0v-.25A2.75 2.75 0 0 1 7.75 5H8a1 1 0 0 0 1-1ZM8 29a1 1 0 1 0 0-2h-.25A2.75 2.75 0 0 1 5 24.25V24a1 1 0 1 0-2 0v.25A4.75 4.75 0 0 0 7.75 29H8Zm16 0a1 1 0 1 1 0-2h.25A2.75 2.75 0 0 0 27 24.25V24a1 1 0 1 1 2 0v.25A4.75 4.75 0 0 1 24.25 29H24Zm6.82-16.64.92.3h.02a.36.36 0 0 1 0 .68l-.92.3a1.9 1.9 0 0 0-1.2 1.2l-.3.92a.36.36 0 0 1-.68 0l-.3-.92a1.9 1.9 0 0 0-1.2-1.2l-.92-.3a.36.36 0 0 1 0-.68l.92-.3a1.9 1.9 0 0 0 1.18-1.2l.3-.92a.36.36 0 0 1 .68 0l.3.92a1.89 1.89 0 0 0 1.2 1.2Z\"]);\nexport const SquareHintSparkles48Filled = /*#__PURE__*/createFluentIcon('SquareHintSparkles48Filled', \"48\", [\"M32.83 12.11a5.36 5.36 0 0 0-2.54-1.8l-2.6-.85a1.03 1.03 0 0 1 0-1.94l2.6-.84a5.36 5.36 0 0 0 3.32-3.33l.02-.06.85-2.6a1.03 1.03 0 0 1 1.94 0l.84 2.6a5.36 5.36 0 0 0 3.4 3.39l2.6.84.05.02a1.03 1.03 0 0 1 0 1.94l-2.6.84a5.36 5.36 0 0 0-3.4 3.4l-.84 2.6-.03.06a1.03 1.03 0 0 1-1.9-.07l-.86-2.6a5.35 5.35 0 0 0-.85-1.6Zm14.78 6.87-1.38-.44a2.84 2.84 0 0 1-1.8-1.8L44 15.36a.54.54 0 0 0-1.03 0l-.45 1.38a2.84 2.84 0 0 1-1.77 1.8l-1.38.44a.54.54 0 0 0 0 1.03l1.38.45c.15.05.3.11.44.18v.02a2.84 2.84 0 0 1 1.36 1.61l.45 1.38a.54.54 0 0 0 1 .04v-.01a.5.5 0 0 0 .02-.04l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03ZM25.56 6.77c.22-.3.49-.56.8-.77H21.5a1.5 1.5 0 0 0 0 3h3.53a3 3 0 0 1 .53-2.23ZM21.5 39a1.5 1.5 0 0 0 0 3h5a1.5 1.5 0 0 0 0-3h-5Zm-14-19c.83 0 1.5.67 1.5 1.5v5a1.5 1.5 0 0 1-3 0v-5c0-.83.67-1.5 1.5-1.5Zm5-14a1.5 1.5 0 0 1 0 3A3.5 3.5 0 0 0 9 12.5a1.5 1.5 0 0 1-3 0A6.5 6.5 0 0 1 12.5 6ZM14 40.5c0 .83-.67 1.5-1.5 1.5A6.5 6.5 0 0 1 6 35.5a1.5 1.5 0 0 1 3 0 3.5 3.5 0 0 0 3.5 3.5c.83 0 1.5.67 1.5 1.5Zm20 0c0 .83.67 1.5 1.5 1.5a6.5 6.5 0 0 0 6.5-6.5 1.5 1.5 0 0 0-3 0 3.5 3.5 0 0 1-3.5 3.5c-.83 0-1.5.67-1.5 1.5Z\"]);\nexport const SquareHintSparkles48Regular = /*#__PURE__*/createFluentIcon('SquareHintSparkles48Regular', \"48\", [\"M32.83 12.11a5.36 5.36 0 0 0-2.54-1.8l-2.6-.85a1.03 1.03 0 0 1 0-1.94l2.6-.84a5.36 5.36 0 0 0 3.32-3.33l.02-.06.85-2.6a1.03 1.03 0 0 1 1.94 0l.84 2.6a5.36 5.36 0 0 0 3.4 3.39l2.6.84.05.02a1.03 1.03 0 0 1 0 1.94l-2.6.84a5.36 5.36 0 0 0-3.4 3.4l-.84 2.6-.03.06a1.03 1.03 0 0 1-1.9-.07l-.86-2.6a5.35 5.35 0 0 0-.85-1.6Zm14.78 6.87-1.38-.44a2.84 2.84 0 0 1-1.8-1.8L44 15.36a.54.54 0 0 0-1.03 0l-.45 1.38a2.84 2.84 0 0 1-1.77 1.8l-1.38.44a.54.54 0 0 0 0 1.03l1.38.45c.15.05.3.11.44.18v.02a2.84 2.84 0 0 1 1.36 1.61l.45 1.38a.54.54 0 0 0 1 .04v-.01a.5.5 0 0 0 .02-.04l.45-1.38a2.84 2.84 0 0 1 1.8-1.8l1.38-.44a.54.54 0 0 0 0-1.03h-.03ZM25.56 6.77c.22-.3.49-.56.8-.77h-5.11a1.25 1.25 0 1 0 0 2.5H25a3 3 0 0 1 .56-1.73ZM20 40.75c0 .69.56 1.25 1.25 1.25h5.5a1.25 1.25 0 1 0 0-2.5h-5.5c-.69 0-1.25.56-1.25 1.25Zm-14-14a1.25 1.25 0 1 0 2.5 0v-5.5a1.25 1.25 0 1 0-2.5 0v5.5ZM12.75 6a1.25 1.25 0 1 1 0 2.5h-.5a3.75 3.75 0 0 0-3.75 3.75v.5a1.25 1.25 0 1 1-2.5 0v-.5C6 8.8 8.8 6 12.25 6h.5ZM14 40.75c0 .69-.56 1.25-1.25 1.25h-.5A6.25 6.25 0 0 1 6 35.75v-.5a1.25 1.25 0 1 1 2.5 0v.5a3.75 3.75 0 0 0 3.75 3.75h.5c.69 0 1.25.56 1.25 1.25Zm20 0c0 .69.56 1.25 1.25 1.25h.5C39.2 42 42 39.2 42 35.75v-.5a1.25 1.25 0 1 0-2.5 0v.5a3.75 3.75 0 0 1-3.75 3.75h-.5c-.69 0-1.25.56-1.25 1.25Z\"]);\nexport const SquareMultiple16Filled = /*#__PURE__*/createFluentIcon('SquareMultiple16Filled', \"16\", [\"M5.08 4H10a2 2 0 0 1 2 2v4.91c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H6.5c-.65 0-1.2.42-1.42 1ZM4.5 5C3.67 5 3 5.67 3 6.5v5c0 .83.67 1.5 1.5 1.5h5c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-5Z\"]);\nexport const SquareMultiple16Regular = /*#__PURE__*/createFluentIcon('SquareMultiple16Regular', \"16\", [\"M5.08 4c.21-.58.77-1 1.42-1H10a3 3 0 0 1 3 3v3.5c0 .65-.42 1.2-1 1.41V6a2 2 0 0 0-2-2H5.08ZM4.5 5h5c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-5A1.5 1.5 0 0 1 3 11.5v-5C3 5.67 3.67 5 4.5 5Zm0 1a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-5Z\"]);\nexport const SquareMultiple20Filled = /*#__PURE__*/createFluentIcon('SquareMultiple20Filled', \"20\", [\"M6.09 4H5.05A2.5 2.5 0 0 1 7.5 2H14a4 4 0 0 1 4 4v6.5a2.5 2.5 0 0 1-2 2.45v-1.04c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H7.5c-.65 0-1.2.42-1.41 1ZM2 7.5A2.5 2.5 0 0 1 4.5 5h8A2.5 2.5 0 0 1 15 7.5v8a2.5 2.5 0 0 1-2.5 2.5h-8A2.5 2.5 0 0 1 2 15.5v-8Z\"]);\nexport const SquareMultiple20Regular = /*#__PURE__*/createFluentIcon('SquareMultiple20Regular', \"20\", [\"M6.09 4H5.05A2.5 2.5 0 0 1 7.5 2H14a4 4 0 0 1 4 4v6.5a2.5 2.5 0 0 1-2 2.45v-1.04c.58-.2 1-.76 1-1.41V6a3 3 0 0 0-3-3H7.5c-.65 0-1.2.42-1.41 1ZM4.5 5A2.5 2.5 0 0 0 2 7.5v8A2.5 2.5 0 0 0 4.5 18h8a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 12.5 5h-8ZM3 7.5C3 6.67 3.67 6 4.5 6h8c.83 0 1.5.67 1.5 1.5v8c0 .83-.67 1.5-1.5 1.5h-8A1.5 1.5 0 0 1 3 15.5v-8Z\"]);\nexport const SquareMultiple24Filled = /*#__PURE__*/createFluentIcon('SquareMultiple24Filled', \"24\", [\"M7.52 5H6c.13-1.68 1.53-3 3.24-3h8A4.75 4.75 0 0 1 22 6.75v8a3.25 3.25 0 0 1-3 3.24v-1.5c.85-.13 1.5-.86 1.5-1.74v-8c0-1.8-1.46-3.25-3.25-3.25h-8c-.88 0-1.61.65-1.73 1.5ZM5.25 6A3.25 3.25 0 0 0 2 9.25v9.5C2 20.55 3.46 22 5.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C18 7.45 16.55 6 14.75 6h-9.5Z\"]);\nexport const SquareMultiple24Regular = /*#__PURE__*/createFluentIcon('SquareMultiple24Regular', \"24\", [\"M7.52 5H6c.13-1.68 1.53-3 3.24-3h8A4.75 4.75 0 0 1 22 6.75v8a3.25 3.25 0 0 1-3 3.24v-1.5c.85-.13 1.5-.86 1.5-1.74v-8c0-1.8-1.46-3.25-3.25-3.25h-8c-.88 0-1.61.65-1.73 1.5ZM5.25 6A3.25 3.25 0 0 0 2 9.25v9.5C2 20.55 3.46 22 5.25 22h9.5c1.8 0 3.25-1.46 3.25-3.25v-9.5C18 7.45 16.55 6 14.75 6h-9.5ZM3.5 9.25c0-.97.78-1.75 1.75-1.75h9.5c.97 0 1.75.78 1.75 1.75v9.5c0 .97-.78 1.75-1.75 1.75h-9.5c-.97 0-1.75-.78-1.75-1.75v-9.5Z\"]);\nexport const SquareMultiple28Filled = /*#__PURE__*/createFluentIcon('SquareMultiple28Filled', \"28\", [\"M7.07 5h1.55c.3-.87 1.14-1.5 2.12-1.5h9.5c2.35 0 4.25 1.9 4.25 4.25v9.5c0 .98-.62 1.8-1.49 2.12v1.55a3.75 3.75 0 0 0 3-3.67v-9.5A5.75 5.75 0 0 0 20.23 2h-9.5a3.75 3.75 0 0 0-3.67 3ZM5.75 6A3.75 3.75 0 0 0 2 9.75v12.5A3.75 3.75 0 0 0 5.75 26h12.5A3.75 3.75 0 0 0 22 22.25V9.75A3.75 3.75 0 0 0 18.25 6H5.75Z\"]);\nexport const SquareMultiple28Regular = /*#__PURE__*/createFluentIcon('SquareMultiple28Regular', \"28\", [\"M8.62 5H7.07c.35-1.71 1.86-3 3.67-3h9.5A5.75 5.75 0 0 1 26 7.75v9.5A3.75 3.75 0 0 1 23 20.92v-1.55a2.25 2.25 0 0 0 1.5-2.12v-9.5c0-2.35-1.9-4.25-4.26-4.25h-9.5c-.98 0-1.81.63-2.12 1.5ZM5.75 6A3.75 3.75 0 0 0 2 9.75v12.5A3.75 3.75 0 0 0 5.75 26h12.5A3.75 3.75 0 0 0 22 22.25V9.75A3.75 3.75 0 0 0 18.25 6H5.75ZM3.5 9.75c0-1.24 1-2.25 2.25-2.25h12.5c1.24 0 2.25 1 2.25 2.25v12.5c0 1.24-1 2.25-2.25 2.25H5.75c-1.24 0-2.25-1-2.25-2.25V9.75Z\"]);\nexport const SquareMultiple32Filled = /*#__PURE__*/createFluentIcon('SquareMultiple32Filled', \"32\", [\"M8.11 5.5h2.1a2.5 2.5 0 0 1 2.3-1.5h11A4.5 4.5 0 0 1 28 8.5v11a2.5 2.5 0 0 1-1.51 2.3v2.09A4.5 4.5 0 0 0 30 19.5v-11A6.5 6.5 0 0 0 23.5 2h-11a4.5 4.5 0 0 0-4.39 3.5ZM6.5 7A4.5 4.5 0 0 0 2 11.5v14A4.5 4.5 0 0 0 6.5 30h14a4.5 4.5 0 0 0 4.5-4.5v-14A4.5 4.5 0 0 0 20.5 7h-14Z\"]);\nexport const SquareMultiple32Regular = /*#__PURE__*/createFluentIcon('SquareMultiple32Regular', \"32\", [\"M10.2 5.5H8.12A4.5 4.5 0 0 1 12.5 2h11A6.5 6.5 0 0 1 30 8.5v11a4.5 4.5 0 0 1-3.5 4.39v-2.1A2.5 2.5 0 0 0 28 19.5v-11A4.5 4.5 0 0 0 23.5 4h-11a2.5 2.5 0 0 0-2.3 1.5ZM6.5 7A4.5 4.5 0 0 0 2 11.5v14A4.5 4.5 0 0 0 6.5 30h14a4.5 4.5 0 0 0 4.5-4.5v-14A4.5 4.5 0 0 0 20.5 7h-14ZM4 11.5A2.5 2.5 0 0 1 6.5 9h14a2.5 2.5 0 0 1 2.5 2.5v14a2.5 2.5 0 0 1-2.5 2.5h-14A2.5 2.5 0 0 1 4 25.5v-14Z\"]);\nexport const SquareMultiple48Filled = /*#__PURE__*/createFluentIcon('SquareMultiple48Filled', \"48\", [\"M16.5 10H14c.12-3.34 2.87-6 6.24-6h14.5c5.1 0 9.25 4.14 9.25 9.25v14.5c0 3.36-2.66 6.1-6 6.24v-2.5a3.75 3.75 0 0 0 3.5-3.74v-14.5a6.75 6.75 0 0 0-6.75-6.75h-14.5A3.75 3.75 0 0 0 16.5 10ZM4 18.25C4 14.8 6.8 12 10.25 12h19.5C33.2 12 36 14.8 36 18.25v19.5C36 41.2 33.2 44 29.75 44h-19.5A6.25 6.25 0 0 1 4 37.75v-19.5Z\"]);\nexport const SquareMultiple48Regular = /*#__PURE__*/createFluentIcon('SquareMultiple48Regular', \"48\", [\"M16.5 10H14c.13-3.34 2.87-6 6.24-6h14.5c5.1 0 9.25 4.14 9.25 9.25v14.5c0 3.36-2.66 6.1-5.99 6.24v-2.5a3.75 3.75 0 0 0 3.49-3.74v-14.5a6.75 6.75 0 0 0-6.75-6.75h-14.5A3.75 3.75 0 0 0 16.5 10Zm-6.25 2A6.25 6.25 0 0 0 4 18.25v19.5C4 41.2 6.8 44 10.25 44h19.5C33.2 44 36 41.2 36 37.75v-19.5C36 14.8 33.2 12 29.75 12h-19.5ZM6.5 18.25a3.75 3.75 0 0 1 3.75-3.75h19.5a3.75 3.75 0 0 1 3.75 3.75v19.5a3.75 3.75 0 0 1-3.75 3.75h-19.5a3.75 3.75 0 0 1-3.75-3.75v-19.5Z\"]);\nexport const SquareShadow12Filled = /*#__PURE__*/createFluentIcon('SquareShadow12Filled', \"12\", [\"M3 1a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2 0 1.1.9 2 2 2h3.5A2.5 2.5 0 0 0 11 8.5V5a2 2 0 0 0-2-2 2 2 0 0 0-2-2H3Zm-.5 2c0-.28.22-.5.5-.5h4c.28 0 .5.22.5.5v4a.5.5 0 0 1-.5.5H3a.5.5 0 0 1-.5-.5V3Z\"]);\nexport const SquareShadow12Regular = /*#__PURE__*/createFluentIcon('SquareShadow12Regular', \"12\", [\"M3 1a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2 0 1.1.9 2 2 2h3.5A2.5 2.5 0 0 0 11 8.5V5a2 2 0 0 0-2-2 2 2 0 0 0-2-2H3Zm5 2v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1Z\"]);\nexport const SquareShadow20Filled = /*#__PURE__*/createFluentIcon('SquareShadow20Filled', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14H6v1.5A2.5 2.5 0 0 0 8.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 6H14V4.5A2.5 2.5 0 0 0 11.5 2h-7Zm-1 2.5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-7Z\"]);\nexport const SquareShadow20Regular = /*#__PURE__*/createFluentIcon('SquareShadow20Regular', \"20\", [\"M4.5 2A2.5 2.5 0 0 0 2 4.5v7A2.5 2.5 0 0 0 4.5 14H6v1.5A2.5 2.5 0 0 0 8.5 18h7a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 15.5 6H14V4.5A2.5 2.5 0 0 0 11.5 2h-7ZM3 4.5C3 3.67 3.67 3 4.5 3h7c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 3 11.5v-7Z\"]);\nexport const SquaresNested20Filled = /*#__PURE__*/createFluentIcon('SquaresNested20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v1.76A2.99 2.99 0 0 0 15 7h-5a3 3 0 0 0-3 3v5c0 .77.29 1.47.76 2H6a3 3 0 0 1-3-3V6Zm7 11h4a3 3 0 0 0 3-3v-4a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v5c0 1.1.9 2 2 2Z\"]);\nexport const SquaresNested20Regular = /*#__PURE__*/createFluentIcon('SquaresNested20Regular', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm10 4.76A2.99 2.99 0 0 0 14 7h-4a3 3 0 0 0-3 3v4c0 .77.29 1.47.76 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v1.76ZM10 16a2 2 0 0 1-2-2v-4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4Z\"]);\nexport const Stack16Filled = /*#__PURE__*/createFluentIcon('Stack16Filled', \"16\", [\"M2.5 2C1.67 2 1 2.67 1 3.5v5c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-7Zm2.58 11c.21.58.77 1 1.42 1h3A5.5 5.5 0 0 0 15 8.5v-1c0-.65-.42-1.2-1-1.41V8.5A4.5 4.5 0 0 1 9.5 13H5.08Zm-.58-1a1.5 1.5 0 0 1-1.42-1H9.5A2.5 2.5 0 0 0 12 8.5V4.09c.58.2 1 .76 1 1.41v3A3.5 3.5 0 0 1 9.5 12h-5Z\"]);\nexport const Stack16Regular = /*#__PURE__*/createFluentIcon('Stack16Regular', \"16\", [\"M1 3.5C1 2.67 1.67 2 2.5 2h7c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5h-7A1.5 1.5 0 0 1 1 8.5v-5ZM2.5 3a.5.5 0 0 0-.5.5v5c0 .28.22.5.5.5h7a.5.5 0 0 0 .5-.5v-5a.5.5 0 0 0-.5-.5h-7Zm2.58 10c.21.58.77 1 1.42 1h3A5.5 5.5 0 0 0 15 8.5v-1c0-.65-.42-1.2-1-1.41V8.5A4.5 4.5 0 0 1 9.5 13H5.08Zm-.58-1a1.5 1.5 0 0 1-1.42-1H9.5A2.5 2.5 0 0 0 12 8.5V4.09c.58.2 1 .76 1 1.41v3A3.5 3.5 0 0 1 9.5 12h-5Z\"]);\nexport const Stack20Filled = /*#__PURE__*/createFluentIcon('Stack20Filled', \"20\", [\"M4 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Zm.27 11c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V7a2 2 0 0 0-1-1.73V11a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9a2 2 0 0 0-1-1.73V11a5 5 0 0 1-5 5H6.27Z\"]);\nexport const Stack20Regular = /*#__PURE__*/createFluentIcon('Stack20Regular', \"20\", [\"M2 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Zm2 11a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V5.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V7.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const Stack24Filled = /*#__PURE__*/createFluentIcon('Stack24Filled', \"24\", [\"M4 4a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h11a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm2.5 13.5A2 2 0 0 1 4.56 16H15.5a2.5 2.5 0 0 0 2.5-2.5V6.56a2 2 0 0 1 1.5 1.94v5a4 4 0 0 1-4 4h-9ZM9 20a2 2 0 0 1-1.94-1.5h9.19c2.35 0 4.25-1.9 4.25-4.25V9.06A2 2 0 0 1 22 11v3.25A5.75 5.75 0 0 1 16.25 20H9Z\"]);\nexport const Stack24Regular = /*#__PURE__*/createFluentIcon('Stack24Regular', \"24\", [\"M4 4h11a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm11 1.5H4a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM4.56 16a2 2 0 0 0 1.94 1.5h9a4 4 0 0 0 4-4v-5A2 2 0 0 0 18 6.56v6.94a2.5 2.5 0 0 1-2.5 2.5H4.56Zm2.5 2.5A2 2 0 0 0 9 20h7.25A5.75 5.75 0 0 0 22 14.25V11a2 2 0 0 0-1.5-1.94v5.19c0 2.35-1.9 4.25-4.25 4.25H7.06Z\"]);\nexport const Stack32Filled = /*#__PURE__*/createFluentIcon('Stack32Filled', \"32\", [\"M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm8.17 19A3 3 0 0 0 13 28h6a11 11 0 0 0 11-11v-2a3 3 0 0 0-2-2.83V17a9 9 0 0 1-9 9h-8.83ZM9 24a3 3 0 0 1-2.83-2H19a5 5 0 0 0 5-5V8.17A3 3 0 0 1 26 11v6a7 7 0 0 1-7 7H9Z\"]);\nexport const Stack32Regular = /*#__PURE__*/createFluentIcon('Stack32Regular', \"32\", [\"M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm3-1a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H5Zm5.17 20A3 3 0 0 0 13 28h6a11 11 0 0 0 11-11v-2a3 3 0 0 0-2-2.83V17a9 9 0 0 1-9 9h-8.83ZM9 24a3 3 0 0 1-2.83-2H19a5 5 0 0 0 5-5V8.17A3 3 0 0 1 26 11v6a7 7 0 0 1-7 7H9Z\"]);\nexport const StackAdd20Filled = /*#__PURE__*/createFluentIcon('StackAdd20Filled', \"20\", [\"M10 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V6H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V7h1.5a.5.5 0 0 0 0-1H6V4.5ZM5.5 12a5.5 5.5 0 0 0 4.9-8H12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.26A5.48 5.48 0 0 0 5.5 12Zm-1.23 3c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V8a2 2 0 0 0-1-1.73V12a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6v-2a2 2 0 0 0-1-1.73V12a5 5 0 0 1-5 5H6.27Z\"]);\nexport const StackAdd20Regular = /*#__PURE__*/createFluentIcon('StackAdd20Regular', \"20\", [\"M10 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V6H3.5a.5.5 0 0 0 0 1H5v1.5a.5.5 0 0 0 1 0V7h1.5a.5.5 0 0 0 0-1H6V4.5Zm6 .5h-1.2c-.1-.35-.24-.68-.4-1H12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.26c.3.26.64.48 1 .66v.6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1ZM6 16a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V6.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V8.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const StackAdd24Filled = /*#__PURE__*/createFluentIcon('StackAdd24Filled', \"24\", [\"M12 7.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 8v2.5a.5.5 0 1 1-1 0V8H3.5a.5.5 0 0 1 0-1H6V4.5a.5.5 0 0 1 1 0V7h2.5a.5.5 0 0 1 0 1H7Zm-.5 6a6.5 6.5 0 0 0 6-9H15a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.81A6.48 6.48 0 0 0 6.5 14Zm0 4.5A2 2 0 0 1 4.56 17H15.5a2.5 2.5 0 0 0 2.5-2.5V7.56a2 2 0 0 1 1.5 1.94v5a4 4 0 0 1-4 4h-9ZM9 21a2 2 0 0 1-1.94-1.5h9.19c2.35 0 4.25-1.9 4.25-4.25v-5.19A2 2 0 0 1 22 12v3.25A5.75 5.75 0 0 1 16.25 21H9Z\"]);\nexport const StackAdd24Regular = /*#__PURE__*/createFluentIcon('StackAdd24Regular', \"24\", [\"M12 7.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0ZM7 8v2.5a.5.5 0 1 1-1 0V8H3.5a.5.5 0 0 1 0-1H6V4.5a.5.5 0 0 1 1 0V7h2.5a.5.5 0 0 1 0 1H7Zm8-1.5h-2.08A6.45 6.45 0 0 0 12.5 5H15a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1.81c.44.43.95.8 1.5 1.08V14c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5V7a.5.5 0 0 0-.5-.5ZM4.56 17a2 2 0 0 0 1.94 1.5h9a4 4 0 0 0 4-4v-5A2 2 0 0 0 18 7.56v6.94a2.5 2.5 0 0 1-2.5 2.5H4.56Zm2.5 2.5A2 2 0 0 0 9 21h7.25A5.75 5.75 0 0 0 22 15.25V12a2 2 0 0 0-1.5-1.94v5.19c0 2.35-1.9 4.25-4.25 4.25H7.06Z\"]);\nexport const StackArrowForward20Filled = /*#__PURE__*/createFluentIcon('StackArrowForward20Filled', \"20\", [\"M14.5 10a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm1.6-7.1a.5.5 0 0 0-.7.7l.9.9h-1.55A2.75 2.75 0 0 0 12 7.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 2.9ZM4 3h5.6a5.5 5.5 0 0 0 4.4 7.98V11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2Zm11 7.98c.34-.03.68-.1 1-.19V11a4 4 0 0 1-4 4H6a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3v-.02Zm3-1.24c-.3.26-.64.48-1 .66v.6a5 5 0 0 1-5 5H6.27c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9.74Z\"]);\nexport const StackArrowForward20Regular = /*#__PURE__*/createFluentIcon('StackArrowForward20Regular', \"20\", [\"M14.5 10a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9Zm1.6-7.1a.5.5 0 0 0-.7.7l.9.9h-1.55A2.75 2.75 0 0 0 12 7.25v.25a.5.5 0 0 0 1 0v-.25c0-.97.78-1.75 1.75-1.75h1.54l-.9.9a.5.5 0 0 0 .71.7l1.76-1.75a.5.5 0 0 0 0-.7L16.1 2.9ZM14 11v-.02c-.34-.03-.68-.1-1-.19V11a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5.2c.1-.35.24-.68.4-1H4a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2Zm1-.02c.34-.03.68-.1 1-.19V11a4 4 0 0 1-4 4H6a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3v-.02Zm3-1.24c-.3.26-.64.48-1 .66v.6a5 5 0 0 1-5 5H6.27c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9.74Z\"]);\nexport const StackArrowForward24Filled = /*#__PURE__*/createFluentIcon('StackArrowForward24Filled', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm1.85-8.35a.5.5 0 0 0-.7.7l.64.65h-2.04A3.25 3.25 0 0 0 14 8.25v.25a.5.5 0 0 0 1 0v-.25C15 7.01 16 6 17.25 6h2.04l-.64.65a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5ZM4 4h7.5a6.5 6.5 0 0 0 5.5 8.98V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm14 8.98a6.47 6.47 0 0 0 1.5-.3v.82a4 4 0 0 1-4 4h-9A2 2 0 0 1 4.56 16H15.5a2.5 2.5 0 0 0 2.5-2.5v-.52Zm4-1.79c-.44.43-.95.8-1.5 1.08v1.98c0 2.35-1.9 4.25-4.25 4.25H7.06A2 2 0 0 0 9 20h7.25A5.75 5.75 0 0 0 22 14.25v-3.06Z\"]);\nexport const StackArrowForward24Regular = /*#__PURE__*/createFluentIcon('StackArrowForward24Regular', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11Zm1.85-8.35a.5.5 0 0 0-.7.7l.64.65h-2.04A3.25 3.25 0 0 0 14 8.25v.25a.5.5 0 0 0 1 0v-.25C15 7.01 16 6 17.25 6h2.04l-.64.65a.5.5 0 0 0 .7.7l1.5-1.5a.5.5 0 0 0 0-.7l-1.5-1.5ZM17 13v-.02a6.48 6.48 0 0 1-1.5-.3V13a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5V6c0-.28.22-.5.5-.5h7.08c.08-.52.22-1.03.42-1.5H4a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h11a2 2 0 0 0 2-2Zm1-.02a6.47 6.47 0 0 0 1.5-.3v.82a4 4 0 0 1-4 4h-9A2 2 0 0 1 4.56 16H15.5a2.5 2.5 0 0 0 2.5-2.5v-.52Zm4-1.79c-.44.43-.95.8-1.5 1.08v1.98c0 2.35-1.9 4.25-4.25 4.25H7.06A2 2 0 0 0 9 20h7.25A5.75 5.75 0 0 0 22 14.25v-3.06Z\"]);\nexport const StackStar16Filled = /*#__PURE__*/createFluentIcon('StackStar16Filled', \"16\", [\"M2.5 2C1.67 2 1 2.67 1 3.5v5c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-7Zm3.92 1.73.63.98 1.04.2a.5.5 0 0 1 .25.86l-.77.73.4 1.36a.5.5 0 0 1-.74.56L6 7.65l-1.23.77a.5.5 0 0 1-.75-.56l.41-1.36-.77-.73a.5.5 0 0 1 .25-.86l1.04-.2.63-.98a.5.5 0 0 1 .84 0ZM3.09 11c.2.58.76 1 1.41 1H10a3 3 0 0 0 3-3V5.5c0-.65-.42-1.2-1-1.41V9a2 2 0 0 1-2 2H3.09Zm2 2c.2.58.76 1 1.41 1h4A4.5 4.5 0 0 0 15 9.5v-2c0-.65-.42-1.2-1-1.41V9.5a3.5 3.5 0 0 1-3.5 3.5H5.09Z\"]);\nexport const StackStar16Regular = /*#__PURE__*/createFluentIcon('StackStar16Regular', \"16\", [\"M6.42 3.73a.5.5 0 0 0-.84 0l-.63.98-1.04.2a.5.5 0 0 0-.25.86l.77.73-.4 1.36a.5.5 0 0 0 .74.56L6 7.65l1.23.77a.5.5 0 0 0 .75-.56L7.57 6.5l.77-.73a.5.5 0 0 0-.25-.86l-1.04-.2-.63-.98ZM2.5 2C1.67 2 1 2.67 1 3.5v5c0 .83.67 1.5 1.5 1.5h7c.83 0 1.5-.67 1.5-1.5v-5c0-.83-.67-1.5-1.5-1.5h-7Zm7 1c.28 0 .5.22.5.5v5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-5c0-.28.22-.5.5-.5h7Zm-5 9a1.5 1.5 0 0 1-1.41-1H10a2 2 0 0 0 2-2V4.09c.58.2 1 .76 1 1.41V9a3 3 0 0 1-3 3H4.5Zm2 2a1.5 1.5 0 0 1-1.41-1h5.41A3.5 3.5 0 0 0 14 9.5V6.09c.58.2 1 .76 1 1.41v2a4.5 4.5 0 0 1-4.5 4.5h-4Z\"]);\nexport const StackStar20Filled = /*#__PURE__*/createFluentIcon('StackStar20Filled', \"20\", [\"M4 3a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4Zm4.33 2.08.91 1.73 1.8.22a.38.38 0 0 1 .2.67L9.91 8.74l.45 1.93a.38.38 0 0 1-.56.4L8 10l-1.8 1.08a.38.38 0 0 1-.57-.4l.45-1.93L4.77 7.7a.38.38 0 0 1 .19-.67l1.8-.22.9-1.73a.38.38 0 0 1 .67 0ZM4.27 14c.34.6.99 1 1.73 1h6a4 4 0 0 0 4-4V7a2 2 0 0 0-1-1.73V11a3 3 0 0 1-3 3H4.27Zm2 2c.34.6.99 1 1.73 1h4a6 6 0 0 0 6-6V9a2 2 0 0 0-1-1.73V11a5 5 0 0 1-5 5H6.27Z\"]);\nexport const StackStar20Regular = /*#__PURE__*/createFluentIcon('StackStar20Regular', \"20\", [\"M8 4.75c.19 0 .36.1.44.27l.88 1.68 1.74.2a.5.5 0 0 1 .25.9l-1.25 1 .43 1.84a.5.5 0 0 1-.75.54L8 10.14l-1.74 1.04a.5.5 0 0 1-.75-.54l.43-1.85-1.25-1a.5.5 0 0 1 .25-.88l1.74-.21.88-1.68A.5.5 0 0 1 8 4.75ZM2 5c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H4Zm2 11a2 2 0 0 1-1.73-1H12a3 3 0 0 0 3-3V5.27c.6.34 1 .99 1 1.73v4a4 4 0 0 1-4 4H6Zm2 2a2 2 0 0 1-1.73-1H12a5 5 0 0 0 5-5V7.27c.6.34 1 .99 1 1.73v2a6 6 0 0 1-6 6H8Z\"]);\nexport const StackStar24Filled = /*#__PURE__*/createFluentIcon('StackStar24Filled', \"24\", [\"M4 4a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h11a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Zm5.5 2.1c.19 0 .36.1.45.28l.88 1.76 1.73.21a.5.5 0 0 1 .26.88l-1.27 1.06.44 1.95a.5.5 0 0 1-.76.53L9.5 11.7l-1.74 1.08a.5.5 0 0 1-.75-.53l.44-1.95-1.27-1.06a.5.5 0 0 1 .26-.88l1.73-.21.88-1.76a.5.5 0 0 1 .45-.28Zm-3 11.4A2 2 0 0 1 4.56 16H15.5a2.5 2.5 0 0 0 2.5-2.5V6.56a2 2 0 0 1 1.5 1.94v5a4 4 0 0 1-4 4h-9ZM9 20a2 2 0 0 1-1.94-1.5h9.19c2.35 0 4.25-1.9 4.25-4.25V9.06A2 2 0 0 1 22 11v3.25A5.75 5.75 0 0 1 16.25 20H9Z\"]);\nexport const StackStar24Regular = /*#__PURE__*/createFluentIcon('StackStar24Regular', \"24\", [\"M9.5 5.85c.28 0 .54.16.67.41L11 7.91l1.6.2a.75.75 0 0 1 .39 1.32l-1.15.95.4 1.8a.75.75 0 0 1-1.13.8l-1.6-1-1.6 1a.75.75 0 0 1-1.13-.8l.4-1.8-1.15-.95a.75.75 0 0 1 .39-1.32L8 7.9l.82-1.65a.75.75 0 0 1 .67-.41ZM4 4h11a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2Zm11 1.5H4a.5.5 0 0 0-.5.5v7c0 .28.22.5.5.5h11a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM4.56 16a2 2 0 0 0 1.94 1.5h9a4 4 0 0 0 4-4v-5A2 2 0 0 0 18 6.56v6.94a2.5 2.5 0 0 1-2.5 2.5H4.56Zm2.5 2.5A2 2 0 0 0 9 20h7.25A5.75 5.75 0 0 0 22 14.25V11a2 2 0 0 0-1.5-1.94v5.19c0 2.35-1.9 4.25-4.25 4.25H7.06Z\"]);\nexport const StackVertical20Filled = /*#__PURE__*/createFluentIcon('StackVertical20Filled', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v10.75a.75.75 0 0 1-1.5 0V13.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v2.75a.75.75 0 0 1-1.5 0V5.5Zm1.5 5.7c.3-.13.64-.2 1-.2h9c.36 0 .7.07 1 .2V9.5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v1.7Zm11-5.7a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v1.7c.3-.13.64-.2 1-.2h9c.36 0 .7.07 1 .2V5.5Z\"]);\nexport const StackVertical20Regular = /*#__PURE__*/createFluentIcon('StackVertical20Regular', \"20\", [\"M3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v11a.5.5 0 0 1-1 0v-3c0-.83-.67-1.5-1.5-1.5h-9c-.83 0-1.5.67-1.5 1.5v3a.5.5 0 0 1-1 0v-11Zm1 6c.42-.31.94-.5 1.5-.5h9c.56 0 1.08.19 1.5.5v-2c0-.83-.67-1.5-1.5-1.5h-9C4.67 8 4 8.67 4 9.5v2Zm12-6c0-.83-.67-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5v2c.42-.31.94-.5 1.5-.5h9c.56 0 1.08.19 1.5.5v-2Z\"]);\nexport const StackVertical24Filled = /*#__PURE__*/createFluentIcon('StackVertical24Filled', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25V20a1 1 0 1 1-2 0v-3.75c0-.69-.56-1.25-1.25-1.25H6.25C5.56 15 5 15.56 5 16.25V20a1 1 0 1 1-2 0V6.25Zm2 7c.38-.16.8-.25 1.25-.25h11.5c.44 0 .87.09 1.25.25v-2c0-.69-.56-1.25-1.25-1.25H6.25C5.56 10 5 10.56 5 11.25v2Zm14-7C19 5.56 18.44 5 17.75 5H6.25C5.56 5 5 5.56 5 6.25v2c.38-.16.8-.25 1.25-.25h11.5c.44 0 .87.09 1.25.25v-2Z\"]);\nexport const StackVertical24Regular = /*#__PURE__*/createFluentIcon('StackVertical24Regular', \"24\", [\"M3 6.25C3 4.45 4.46 3 6.25 3h11.5C19.55 3 21 4.46 21 6.25v14a.75.75 0 0 1-1.5 0v-4c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v4a.75.75 0 0 1-1.5 0v-14Zm1.5 7.26C5 13.2 5.6 13 6.25 13h11.5c.64 0 1.24.19 1.75.51v-2.26c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v2.26Zm15-7.26c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v2.26C5 8.2 5.6 8 6.25 8h11.5c.64 0 1.24.19 1.75.51V6.25Z\"]);\nexport const Star12Filled = /*#__PURE__*/createFluentIcon('Star12Filled', \"12\", [\"M5.28 1.55a.8.8 0 0 1 1.44 0L7.83 3.8l2.49.36c.65.1.91.9.44 1.36l-1.8 1.76.43 2.47a.8.8 0 0 1-1.17.85L6 9.43 3.78 10.6a.8.8 0 0 1-1.16-.85l.42-2.47-1.8-1.76a.8.8 0 0 1 .45-1.36l2.48-.36 1.11-2.25Z\"]);\nexport const Star12Regular = /*#__PURE__*/createFluentIcon('Star12Regular', \"12\", [\"M5.28 1.55a.8.8 0 0 1 1.44 0L7.83 3.8l2.49.36c.65.1.91.9.44 1.36l-1.8 1.76.43 2.47a.8.8 0 0 1-1.17.85L6 9.43 3.78 10.6a.8.8 0 0 1-1.16-.85l.42-2.47-1.8-1.76a.8.8 0 0 1 .45-1.36l2.48-.36 1.11-2.25Zm.72.8-.98 1.99a.8.8 0 0 1-.6.43l-2.19.32 1.58 1.54a.8.8 0 0 1 .23.71l-.37 2.18L5.63 8.5a.8.8 0 0 1 .74 0l1.96 1.03-.37-2.18a.8.8 0 0 1 .23-.7l1.58-1.55-2.19-.32a.8.8 0 0 1-.6-.43L6 2.35Z\"]);\nexport const Star16Filled = /*#__PURE__*/createFluentIcon('Star16Filled', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0l1.53 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4.58 3.39a.9.9 0 0 1-1.3.95L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Z\"]);\nexport const Star16Regular = /*#__PURE__*/createFluentIcon('Star16Regular', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0l1.53 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4.58 3.39a.9.9 0 0 1-1.3.95L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Zm.8.63L6.55 5.67a.9.9 0 0 1-.68.5l-3.25.47 2.35 2.3c.21.2.3.5.26.79l-.56 3.24 2.91-1.53a.9.9 0 0 1 .84 0l2.9 1.53-.55-3.24a.9.9 0 0 1 .26-.8l2.36-2.3-3.26-.46a.9.9 0 0 1-.67-.5L8 2.73Z\"]);\nexport const Star20Filled = /*#__PURE__*/createFluentIcon('Star20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Z\"]);\nexport const Star20Regular = /*#__PURE__*/createFluentIcon('Star20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9.44L8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.87-2.03a1 1 0 0 1 .93 0l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35Z\"]);\nexport const Star24Filled = /*#__PURE__*/createFluentIcon('Star24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-3.82 3.72.9 5.25a1.35 1.35 0 0 1-1.96 1.42L12 18.86l-4.72 2.48a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Z\"]);\nexport const Star24Regular = /*#__PURE__*/createFluentIcon('Star24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-3.82 3.72.9 5.25a1.35 1.35 0 0 1-1.96 1.42L12 18.86l-4.72 2.48a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm1.2.94L9.75 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02 4.52-2.37c.4-.2.86-.2 1.26 0l4.51 2.37-.86-5.03c-.07-.43.07-.88.39-1.2l3.65-3.55-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04Z\"]);\nexport const Star28Filled = /*#__PURE__*/createFluentIcon('Star28Filled', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-4.35 4.24 1.03 6a1.45 1.45 0 0 1-2.1 1.52L14 21.64l-5.38 2.83a1.45 1.45 0 0 1-2.1-1.52l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45Z\"]);\nexport const Star28Regular = /*#__PURE__*/createFluentIcon('Star28Regular', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-4.35 4.24 1.03 6a1.45 1.45 0 0 1-2.1 1.52L14 21.64l-5.38 2.83a1.45 1.45 0 0 1-2.1-1.52l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45Zm1.3.76-2.66 5.39c-.2.43-.62.72-1.09.8l-5.94.85 4.3 4.2c.34.33.5.8.42 1.28L8 23.1l5.32-2.8c.42-.22.92-.22 1.35 0l5.31 2.8-1.01-5.92c-.08-.47.07-.95.41-1.28l4.3-4.2-5.94-.86a1.45 1.45 0 0 1-1.1-.8L14 4.67Z\"]);\nexport const Star48Filled = /*#__PURE__*/createFluentIcon('Star48Filled', \"48\", [\"M21.8 6.09a2.45 2.45 0 0 1 4.4 0l4.85 9.83 10.85 1.57a2.45 2.45 0 0 1 1.36 4.18l-7.85 7.66 1.85 10.8c.34 2-1.76 3.53-3.56 2.59l-9.7-5.1-9.7 5.1c-1.8.94-3.9-.59-3.56-2.59l1.85-10.8-7.85-7.66A2.45 2.45 0 0 1 6.1 17.5l10.85-1.57 4.85-9.83Z\"]);\nexport const Star48Regular = /*#__PURE__*/createFluentIcon('Star48Regular', \"48\", [\"M21.8 6.09a2.45 2.45 0 0 1 4.4 0l4.85 9.83 10.85 1.57a2.45 2.45 0 0 1 1.36 4.18l-7.85 7.66 1.85 10.8c.34 2-1.76 3.53-3.56 2.59l-9.7-5.1-9.7 5.1c-1.8.94-3.9-.59-3.56-2.59l1.85-10.8-7.85-7.66A2.45 2.45 0 0 1 6.1 17.5l10.85-1.57 4.85-9.83Zm2.2 1.2-4.82 9.76a2.45 2.45 0 0 1-1.84 1.34L6.56 19.95l7.8 7.6c.58.57.84 1.38.7 2.17l-1.84 10.74 9.64-5.07a2.45 2.45 0 0 1 2.28 0l9.64 5.07-1.84-10.74c-.14-.8.12-1.6.7-2.17l7.8-7.6-10.78-1.56a2.45 2.45 0 0 1-1.84-1.34L24 7.28Z\"]);\nexport const StarAdd16Filled = /*#__PURE__*/createFluentIcon('StarAdd16Filled', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48A5.5 5.5 0 0 1 10.24 5L8.81 2.1Zm6.2 8.4a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 1 0 1 0V11h1.5a.5.5 0 1 0 0-1H11V8.5Z\"]);\nexport const StarAdd16Regular = /*#__PURE__*/createFluentIcon('StarAdd16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.48 5.48 0 0 1-.46-.89l-.74.39.56-3.24a.9.9 0 0 0-.26-.8l-2.35-2.3 3.25-.46a.9.9 0 0 0 .68-.5L8 2.73l1.2 2.42a5.5 5.5 0 0 1 1.04-.14L8.81 2.1ZM5 10.5v-.1.2-.1Zm10 0a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V10H8.5a.5.5 0 0 0 0 1H10v1.5a.5.5 0 1 0 1 0V11h1.5a.5.5 0 1 0 0-1H11V8.5Z\"]);\nexport const StarAdd20Filled = /*#__PURE__*/createFluentIcon('StarAdd20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 1 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const StarAdd20Regular = /*#__PURE__*/createFluentIcon('StarAdd20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.46 5.46 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.35-1.76c.02.36.08.7.17 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 1 0 0 1H14v1.5a.5.5 0 1 0 1 0V15h1.5a.5.5 0 1 0 0-1H15v-1.5Z\"]);\nexport const StarAdd24Filled = /*#__PURE__*/createFluentIcon('StarAdd24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm12.2 14.4a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 1 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const StarAdd24Regular = /*#__PURE__*/createFluentIcon('StarAdd24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.62l1.15-1.12-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Zm-5 .5v2.5a.5.5 0 1 1-1 0V18h-2.5a.5.5 0 0 1 0-1H17v-2.5a.5.5 0 0 1 1 0V17h2.5a.5.5 0 0 1 0 1H18Z\"]);\nexport const StarAdd28Filled = /*#__PURE__*/createFluentIcon('StarAdd28Filled', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-1.06 1.03a7.5 7.5 0 0 0-10.59 8.34l-4.54 2.4a1.45 1.45 0 0 1-2.1-1.53l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 1 0 1 0V21h3.5a.5.5 0 1 0 0-1H21v-3.5Z\"]);\nexport const StarAdd28Regular = /*#__PURE__*/createFluentIcon('StarAdd28Regular', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-1.06 1.03a7.44 7.44 0 0 0-1.58-.55l1.52-1.49-5.94-.86a1.45 1.45 0 0 1-1.1-.8L14 4.67l-2.66 5.39c-.2.43-.62.72-1.09.8l-5.94.85 4.3 4.2c.34.33.5.8.42 1.28L8 23.1 13 20.48v.02c0 .54.06 1.07.17 1.58l-4.55 2.4a1.45 1.45 0 0 1-2.1-1.53l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-6-4a.5.5 0 0 0-1 0V20h-3.5a.5.5 0 0 0 0 1H20v3.5a.5.5 0 0 0 1 0V21h3.5a.5.5 0 0 0 0-1H21v-3.5Z\"]);\nexport const StarArrowBack16Filled = /*#__PURE__*/createFluentIcon('StarArrowBack16Filled', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.5 5.5 0 0 1 4.37-8.46L8.81 2.1ZM10.5 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const StarArrowBack16Regular = /*#__PURE__*/createFluentIcon('StarArrowBack16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.49 5.49 0 0 1-.46-.89l-.74.39.35-2.02a5.58 5.58 0 0 1 .14-1.76.9.9 0 0 0-.19-.26l-2.35-2.3 3.25-.46a.9.9 0 0 0 .68-.5L8 2.73l1.2 2.42a5.5 5.5 0 0 1 1.04-.14L8.81 2.1ZM10.5 15a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 13 12.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75H8.71l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7L8.9 7.9a.5.5 0 1 1 .7.7Z\"]);\nexport const StarArrowBack20Filled = /*#__PURE__*/createFluentIcon('StarArrowBack20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const StarArrowBack20Regular = /*#__PURE__*/createFluentIcon('StarArrowBack20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.47 5.47 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.34-1.76c.03.36.09.7.18 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM14.5 19a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm-.9-6.4-.9.9h1.55A2.75 2.75 0 0 1 17 16.25v.25a.5.5 0 0 1-1 0v-.25c0-.97-.78-1.75-1.75-1.75h-1.54l.9.9a.5.5 0 0 1-.71.7l-1.76-1.75a.5.5 0 0 1 0-.7l1.76-1.75a.5.5 0 0 1 .7.7Z\"]);\nexport const StarArrowBack24Filled = /*#__PURE__*/createFluentIcon('StarArrowBack24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.65-2.15a.5.5 0 0 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65h2.04c1.24 0 2.25 1 2.25 2.25v.25a.5.5 0 0 0 1 0v-.25c0-1.8-1.46-3.25-3.25-3.25h-2.04l.64-.65Z\"]);\nexport const StarArrowBack24Regular = /*#__PURE__*/createFluentIcon('StarArrowBack24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.61l1.15-1.13-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-6.65-2.15a.5.5 0 0 0-.7-.7l-1.5 1.5a.5.5 0 0 0 0 .7l1.5 1.5a.5.5 0 0 0 .7-.7l-.64-.65h2.04c1.24 0 2.25 1 2.25 2.25v.25a.5.5 0 0 0 1 0v-.25c0-1.8-1.46-3.25-3.25-3.25h-2.04l.64-.65Z\"]);\nexport const StarArrowRightEnd20Filled = /*#__PURE__*/createFluentIcon('StarArrowRightEnd20Filled', \"20\", [\"M10.9 2.56a1 1 0 0 0-1.8 0L7.17 6.45l-4.31.62a1 1 0 0 0-.56 1.7l3.13 3.03-.74 4.28a1 1 0 0 0 1.45 1.05l3.05-1.6a5.46 5.46 0 0 1 5.31-6.9c.96 0 1.86.24 2.65.67l.55-.53a1 1 0 0 0-.56-1.7l-4.31-.62-1.93-3.9ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.15 2.35a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const StarArrowRightEnd20Regular = /*#__PURE__*/createFluentIcon('StarArrowRightEnd20Regular', \"20\", [\"M10.9 2.56a1 1 0 0 0-1.8 0L7.17 6.45l-4.31.62a1 1 0 0 0-.56 1.7l3.13 3.03-.74 4.28a1 1 0 0 0 1.45 1.05l3.05-1.6a5.44 5.44 0 0 1-.17-1.03l-3.35 1.75.74-4.28a1 1 0 0 0-.29-.88L3 8.06l4.32-.63a1 1 0 0 0 .75-.54L10 2.99l1.93 3.9c.15.3.43.5.75.54l4.32.63-.85.82c.35.11.69.25 1 .42l.55-.53a1 1 0 0 0-.56-1.7l-4.31-.62-1.93-3.9ZM19 14.5a4.5 4.5 0 1 0-9 0 4.5 4.5 0 0 0 9 0Zm-4.15 2.35a.5.5 0 0 1-.7-.7L15.29 15H12.5a.5.5 0 0 1 0-1h2.8l-1.15-1.15a.5.5 0 0 1 .7-.7l2 2a.5.5 0 0 1 .15.35.5.5 0 0 1-.14.35l-2 2Z\"]);\nexport const StarArrowRightEnd24Filled = /*#__PURE__*/createFluentIcon('StarArrowRightEnd24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm12.2 14.4a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 1 0 .71.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 1 0-.7.7L19.28 17h-4.8Z\"]);\nexport const StarArrowRightEnd24Regular = /*#__PURE__*/createFluentIcon('StarArrowRightEnd24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.62l1.15-1.12-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5Z\"]);\nexport const StarArrowRightStart20Filled = /*#__PURE__*/createFluentIcon('StarArrowRightStart20Filled', \"20\", [\"M9.1 2.56a1 1 0 0 1 1.8 0l1.93 3.9 4.31.64a1 1 0 0 1 .56 1.7l-3.13 3.05.74 4.3a1 1 0 0 1-1.45 1.05l-2.98-1.57a5.52 5.52 0 0 0-7.8-6.07L2.3 8.8a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.56ZM5.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const StarArrowRightStart20Regular = /*#__PURE__*/createFluentIcon('StarArrowRightStart20Regular', \"20\", [\"M9.1 2.56a1 1 0 0 1 1.8 0l1.93 3.89 4.31.62a1 1 0 0 1 .56 1.7l-3.13 3.03.74 4.28a1 1 0 0 1-1.45 1.05l-2.97-1.55c.07-.35.1-.7.11-1.07l3.33 1.74-.74-4.28a1 1 0 0 1 .29-.88L17 8.06l-4.32-.63a1 1 0 0 1-.75-.54L10 2.99 8.07 6.9a1 1 0 0 1-.75.54L3 8.06l1.14 1.1c-.36.1-.7.23-1.04.39l-.8-.78a1 1 0 0 1 .56-1.7l4.31-.62 1.93-3.9ZM5.5 10a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9Zm2.35 4.85A.5.5 0 0 0 8 14.5a.5.5 0 0 0-.15-.35l-2-2a.5.5 0 0 0-.7.7L6.29 14H3.5a.5.5 0 0 0 0 1h2.8l-1.15 1.15a.5.5 0 0 0 .7.7l2-2Z\"]);\nexport const StarArrowRightStart24Filled = /*#__PURE__*/createFluentIcon('StarArrowRightStart24Filled', \"24\", [\"M10.79 3.1c.5-1 1.93-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-3.82 3.72.9 5.25a1.35 1.35 0 0 1-1.95 1.42l-3.96-2.08a6.5 6.5 0 0 0-9.44-7.43l-.9-.88c-.81-.78-.37-2.14.74-2.3l5.27-.77L10.8 3.1ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 1 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 1 0-.7.7L8.29 17H3.5Z\"]);\nexport const StarArrowRightStart24Regular = /*#__PURE__*/createFluentIcon('StarArrowRightStart24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-3.82 3.72.9 5.25a1.35 1.35 0 0 1-1.96 1.42l-3.95-2.08c.14-.5.22-1.02.24-1.57l4.14 2.18-.86-5.03c-.07-.43.07-.88.39-1.2l3.65-3.55-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 1.16 1.13c-.53.14-1.04.35-1.51.61l-.91-.88c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM12 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM3.5 17a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 1 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 1 0-.7.7L8.29 17H3.5Z\"]);\nexport const StarCheckmark16Filled = /*#__PURE__*/createFluentIcon('StarCheckmark16Filled', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.5 5.5 0 0 1 4.37-8.46L8.81 2.1Zm6.2 8.4a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L9.5 11.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark16Regular = /*#__PURE__*/createFluentIcon('StarCheckmark16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.49 5.49 0 0 1-.46-.89l-.74.39.35-2.02a5.58 5.58 0 0 1 .14-1.76.9.9 0 0 0-.19-.26l-2.35-2.3 3.25-.46a.9.9 0 0 0 .68-.5L8 2.73l1.2 2.43A5.5 5.5 0 0 1 10.24 5L8.81 2.1Zm6.2 8.4a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0L9.5 11.29l-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark20Filled = /*#__PURE__*/createFluentIcon('StarCheckmark20Filled', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.5 5.5 0 0 1 7.96-6.26l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark20Regular = /*#__PURE__*/createFluentIcon('StarCheckmark20Regular', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.49 5.49 0 0 1-.18-1.04l-3.34 1.76.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.85.82c.35.11.69.26 1 .43l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.15-1.85a.5.5 0 0 0-.7 0l-2.65 2.64-.65-.64a.5.5 0 0 0-.7.7l1 1c.2.2.5.2.7 0l3-3a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark24Filled = /*#__PURE__*/createFluentIcon('StarCheckmark24Filled', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l3.96-2.08a6.5 6.5 0 0 1 9.44-7.43l.9-.88c.8-.78.37-2.14-.74-2.3l-5.27-.77L13.2 3.1ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark24Regular = /*#__PURE__*/createFluentIcon('StarCheckmark24Regular', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l3.96-2.08A6.5 6.5 0 0 1 11 17.7l-4.15 2.18.87-5.03c.07-.43-.07-.88-.4-1.2L3.68 10.1l5.05-.74c.44-.06.82-.34 1.02-.73L12 4.04l2.26 4.58c.2.4.57.67 1.01.73l5.05.74-1.15 1.13c.53.14 1.04.35 1.51.61l.9-.88c.8-.78.37-2.14-.74-2.3l-5.27-.77L13.2 3.1ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-2.15-2.35a.5.5 0 0 0-.7 0l-3.65 3.64-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l4-4a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark28Filled = /*#__PURE__*/createFluentIcon('StarCheckmark28Filled', \"28\", [\"M15.3 3.9a1.45 1.45 0 0 0-2.6 0l-2.69 5.46-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6a1.45 1.45 0 0 0 2.1 1.52l4.55-2.39A7.53 7.53 0 0 1 20.5 13c1.17 0 2.27.27 3.25.74l1.06-1.03c.86-.84.39-2.3-.8-2.48l-6.02-.87-2.69-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.65-2.85a.5.5 0 0 0-.7 0L19 22.29l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l5-5a.5.5 0 0 0 0-.7Z\"]);\nexport const StarCheckmark28Regular = /*#__PURE__*/createFluentIcon('StarCheckmark28Regular', \"28\", [\"M15.3 3.9a1.45 1.45 0 0 0-2.6 0l-2.69 5.46-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6a1.45 1.45 0 0 0 2.1 1.52l4.55-2.39A7.53 7.53 0 0 1 13 20.5v-.02L8.01 23.1l1.02-5.92c.08-.47-.08-.95-.42-1.28l-4.3-4.2 5.94-.86c.47-.07.88-.36 1.1-.8L14 4.67l2.66 5.39c.21.43.62.72 1.1.8l5.93.85-1.52 1.49c.56.12 1.09.31 1.58.55l1.06-1.03c.86-.84.39-2.3-.8-2.48l-6.02-.87-2.69-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-2.65-2.85a.5.5 0 0 0-.7 0L19 22.29l-1.65-1.64a.5.5 0 0 0-.7.7l2 2c.2.2.5.2.7 0l5-5a.5.5 0 0 0 0-.7Z\"]);\nexport const StarDismiss16Filled = /*#__PURE__*/createFluentIcon('StarDismiss16Filled', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0L10.25 5a5.5 5.5 0 0 0-4.37 8.47l-.91.48a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Zm7.8 8.4a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L10.5 9.79 9.35 8.65a.5.5 0 1 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarDismiss16Regular = /*#__PURE__*/createFluentIcon('StarDismiss16Regular', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0L10.25 5c-.36.02-.7.07-1.04.16L8 2.73 6.55 5.67a.9.9 0 0 1-.68.5l-3.25.47 2.35 2.3a.9.9 0 0 1 .19.25 5.51 5.51 0 0 0-.14 1.76l-.35 2.02.74-.39c.13.31.28.61.46.89l-.91.48a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Zm7.8 8.4a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7L10.5 9.79 9.35 8.65a.5.5 0 1 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarDismiss20Filled = /*#__PURE__*/createFluentIcon('StarDismiss20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarDismiss20Regular = /*#__PURE__*/createFluentIcon('StarDismiss20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.47 5.47 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.34-1.76c.03.36.09.7.18 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM19 14.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-2.65-1.15a.5.5 0 0 0-.7-.7l-1.15 1.14-1.15-1.14a.5.5 0 0 0-.7.7l1.14 1.15-1.14 1.15a.5.5 0 0 0 .7.7l1.15-1.14 1.15 1.14a.5.5 0 0 0 .7-.7l-1.14-1.15 1.14-1.15Z\"]);\nexport const StarDismiss24Filled = /*#__PURE__*/createFluentIcon('StarDismiss24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const StarDismiss24Regular = /*#__PURE__*/createFluentIcon('StarDismiss24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.61l1.15-1.13-5.05-.74a1.35 1.35 0 0 1-1.01-.73L12 4.04 9.74 8.62c-.2.4-.58.67-1.02.73l-5.05.74 3.66 3.56c.32.31.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-7.15-2.35a.5.5 0 0 0-.7.7l1.64 1.65-1.64 1.65a.5.5 0 0 0 .7.7l1.65-1.64 1.65 1.64a.5.5 0 0 0 .7-.7l-1.64-1.65 1.64-1.65a.5.5 0 0 0-.7-.7l-1.65 1.64-1.65-1.64Z\"]);\nexport const StarDismiss28Filled = /*#__PURE__*/createFluentIcon('StarDismiss28Filled', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-1.06 1.03a7.5 7.5 0 0 0-10.59 8.34l-4.54 2.4a1.45 1.45 0 0 1-2.1-1.53l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-9.15-3.35a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7l-2.64-2.65 2.64-2.65a.5.5 0 0 0-.7-.7l-2.65 2.64-2.65-2.64Z\"]);\nexport const StarDismiss28Regular = /*#__PURE__*/createFluentIcon('StarDismiss28Regular', \"28\", [\"M12.7 3.9a1.45 1.45 0 0 1 2.6 0L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-1.06 1.03a7.44 7.44 0 0 0-1.58-.55l1.52-1.49-5.94-.86a1.45 1.45 0 0 1-1.1-.8L14 4.67l-2.66 5.39c-.2.43-.62.72-1.09.8l-5.94.85 4.3 4.2c.34.33.5.8.42 1.28L8 23.1 13 20.48v.02c0 .54.06 1.07.17 1.58l-4.55 2.4a1.45 1.45 0 0 1-2.1-1.53l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45ZM27 20.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0Zm-9.15-3.35a.5.5 0 0 0-.7.7l2.64 2.65-2.64 2.65a.5.5 0 0 0 .7.7l2.65-2.64 2.65 2.64a.5.5 0 0 0 .7-.7l-2.64-2.65 2.64-2.65a.5.5 0 0 0-.7-.7l-2.65 2.64-2.65-2.64Z\"]);\nexport const StarEdit20Filled = /*#__PURE__*/createFluentIcon('StarEdit20Filled', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.43-1.8c.16-.4.4-.76.7-1.07l4.83-4.83a2.87 2.87 0 0 1 2.67-.77 1 1 0 0 0-.63-1.63l-4.31-.63L10.9 2.9Zm4.9 7.65-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const StarEdit20Regular = /*#__PURE__*/createFluentIcon('StarEdit20Regular', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.43-1.8c.16-.4.4-.76.7-1.07l.1-.09a1 1 0 0 0-.83.05l-3.87 2.03.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.72.7c.48-.15 1-.17 1.49-.06a1 1 0 0 0-.63-1.63l-4.31-.63L10.9 2.9Zm4.9 7.65-4.82 4.83a2.2 2.2 0 0 0-.58 1.02l-.37 1.5a.89.89 0 0 0 1.08 1.07l1.5-.37c.38-.1.73-.3 1.01-.58l4.83-4.83a1.87 1.87 0 0 0-2.64-2.64Z\"]);\nexport const StarEdit24Filled = /*#__PURE__*/createFluentIcon('StarEdit24Filled', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l2.94-1.54.3-1.22c.17-.65.5-1.24.98-1.72l5.9-5.9a3.28 3.28 0 0 1 4.37-.23c.53-.8.08-1.94-.93-2.08l-5.27-.77L13.2 3.1Zm4.9 8.57-5.9 5.9c-.34.35-.58.78-.7 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.24-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const StarEdit24Regular = /*#__PURE__*/createFluentIcon('StarEdit24Regular', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l2.95-1.55.3-1.21c.07-.28.17-.55.3-.8l-3.98 2.1.87-5.04c.07-.43-.07-.88-.4-1.2L3.68 10.1l5.05-.74c.44-.06.82-.34 1.02-.74L12 4.04l2.26 4.57c.2.4.57.68 1.01.74l4.45.65c.73 0 1.46.24 2.05.72.53-.79.08-1.93-.93-2.07l-5.27-.77L13.2 3.1Zm4.9 8.57-5.9 5.9c-.34.35-.58.78-.7 1.25l-.46 1.83c-.2.8.52 1.52 1.32 1.32l1.83-.46c.47-.12.9-.36 1.24-.7l5.9-5.9a2.29 2.29 0 0 0-3.23-3.24Z\"]);\nexport const StarEmphasis16Filled = /*#__PURE__*/createFluentIcon('StarEmphasis16Filled', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0l1.53 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4.58 3.39a.9.9 0 0 1-1.3.95L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Zm-7.1.1a.5.5 0 0 1 .7-.1l2 1.5a.5.5 0 0 1-.6.8l-2-1.5a.5.5 0 0 1-.1-.7Zm15.1-.1a.5.5 0 0 1 .6.8l-2 1.5a.5.5 0 0 1-.6-.8l2-1.5ZM.1 12.3a.5.5 0 0 0 .7.1l2-1.5a.5.5 0 0 0-.6-.8l-2 1.5a.5.5 0 0 0-.1.7Zm15.1.1a.5.5 0 0 0 .6-.8l-2-1.5a.5.5 0 0 0-.6.8l2 1.5Z\"]);\nexport const StarEmphasis16Regular = /*#__PURE__*/createFluentIcon('StarEmphasis16Regular', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0l1.53 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4.58 3.39a.9.9 0 0 1-1.3.95L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Zm.8.63L6.55 5.67a.9.9 0 0 1-.68.5l-3.25.47 2.35 2.3c.21.2.3.5.26.79l-.56 3.24 2.91-1.53a.9.9 0 0 1 .84 0l2.9 1.53-.55-3.24a.9.9 0 0 1 .26-.8l2.36-2.3-3.26-.46a.9.9 0 0 1-.67-.5L8 2.73ZM.1 2.2a.5.5 0 0 1 .7-.1l2 1.5a.5.5 0 0 1-.6.8l-2-1.5a.5.5 0 0 1-.1-.7Zm15.1-.1a.5.5 0 0 1 .6.8l-2 1.5a.5.5 0 0 1-.6-.8l2-1.5ZM.1 12.3a.5.5 0 0 0 .7.1l2-1.5a.5.5 0 0 0-.6-.8l-2 1.5a.5.5 0 0 0-.1.7Zm15.1.1a.5.5 0 0 0 .6-.8l-2-1.5a.5.5 0 0 0-.6.8l2 1.5Z\"]);\nexport const StarEmphasis20Filled = /*#__PURE__*/createFluentIcon('StarEmphasis20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM4.4 12.69a.5.5 0 0 1-.08.7l-2.5 2a.5.5 0 1 1-.62-.78l2.5-2a.5.5 0 0 1 .7.08ZM4.31 5.1a.5.5 0 1 1-.62.78l-2.5-2a.5.5 0 1 1 .62-.78l2.5 2Zm11.3 7.58a.5.5 0 0 0 .08.7l2.5 2a.5.5 0 1 0 .62-.78l-2.5-2a.5.5 0 0 0-.7.08Zm.08-7.58a.5.5 0 0 0 .62.78l2.5-2a.5.5 0 1 0-.62-.78l-2.5 2Z\"]);\nexport const StarEmphasis20Regular = /*#__PURE__*/createFluentIcon('StarEmphasis20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9.44L8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.87-2.03a1 1 0 0 1 .93 0l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35ZM4.4 12.7a.5.5 0 0 1-.08.7l-2.5 2a.5.5 0 1 1-.62-.78l2.5-2a.5.5 0 0 1 .7.08ZM4.31 5.1a.5.5 0 1 1-.62.78l-2.5-2a.5.5 0 1 1 .62-.78l2.5 2Zm11.3 7.58a.5.5 0 0 0 .08.7l2.5 2a.5.5 0 1 0 .62-.78l-2.5-2a.5.5 0 0 0-.7.08Zm.08-7.58a.5.5 0 0 0 .62.78l2.5-2a.5.5 0 1 0-.62-.78l-2.5 2Z\"]);\nexport const StarEmphasis24Filled = /*#__PURE__*/createFluentIcon('StarEmphasis24Filled', \"24\", [\"M13.21 3.1c-.5-1-1.93-1-2.42 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.82 3.72-.9 5.25a1.35 1.35 0 0 0 1.95 1.42L12 18.86l4.72 2.48c.99.52 2.14-.32 1.96-1.42l-.9-5.25 3.81-3.72c.8-.78.36-2.14-.75-2.3l-5.27-.77L13.2 3.1Zm-12.05.68c-.25.32-.2.8.12 1.06l2.5 2a.75.75 0 1 0 .94-1.18l-2.5-2a.75.75 0 0 0-1.06.12Zm21.68 14.44c.25-.33.2-.8-.12-1.06l-2.5-2a.75.75 0 0 0-.94 1.18l2.5 2c.32.25.8.2 1.06-.12ZM1.28 17.16a.75.75 0 1 0 .94 1.18l2.5-2a.75.75 0 0 0-.94-1.18l-2.5 2ZM22.84 3.78c.25.32.2.8-.12 1.06l-2.5 2a.75.75 0 0 1-.94-1.18l2.5-2c.32-.25.8-.2 1.06.12Z\"]);\nexport const StarEmphasis24Regular = /*#__PURE__*/createFluentIcon('StarEmphasis24Regular', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42L12 18.86l4.71 2.48c1 .52 2.15-.32 1.96-1.42l-.9-5.25 3.82-3.72c.8-.78.36-2.14-.75-2.3l-5.27-.77L13.2 3.1ZM9.75 8.61 12 4.04l2.26 4.57c.2.4.57.68 1.01.74l5.05.74-3.65 3.56c-.32.3-.46.76-.39 1.2l.86 5.02-4.51-2.37c-.4-.2-.87-.2-1.26 0l-4.52 2.37.87-5.03c.07-.43-.07-.88-.4-1.2L3.68 10.1l5.05-.74c.44-.06.82-.34 1.02-.74ZM1.16 3.78c-.25.32-.2.8.12 1.06l2.5 2a.75.75 0 1 0 .94-1.18l-2.5-2a.75.75 0 0 0-1.06.12Zm21.68 14.44c.25-.33.2-.8-.12-1.06l-2.5-2a.75.75 0 0 0-.94 1.18l2.5 2c.32.25.8.2 1.06-.12ZM1.28 17.16a.75.75 0 1 0 .94 1.18l2.5-2a.75.75 0 0 0-.94-1.18l-2.5 2ZM22.84 3.78c.25.32.2.8-.12 1.06l-2.5 2a.75.75 0 0 1-.94-1.18l2.5-2c.32-.25.8-.2 1.06.12Z\"]);\nexport const StarEmphasis32Filled = /*#__PURE__*/createFluentIcon('StarEmphasis32Filled', \"32\", [\"M14.39 4.2a1.8 1.8 0 0 1 3.23 0l3.04 6.17 6.8.99a1.8 1.8 0 0 1 1 3.07l-4.92 4.8L24.7 26a1.8 1.8 0 0 1-2.61 1.9L16 24.7l-6.08 3.2A1.8 1.8 0 0 1 7.3 26l1.16-6.78-4.92-4.8a1.8 1.8 0 0 1 1-3.06l6.8-1 3.04-6.16Z\", \"M25.3 9.58a1 1 0 0 1 0-1.42l3-3a1 1 0 1 1 1.4 1.42l-3 3a1 1 0 0 1-1.4 0Z\", \"M2.3 23.16a1 1 0 1 0 1.4 1.42l3-3a1 1 0 1 0-1.4-1.42l-3 3Z\", \"M2.3 5.16a1 1 0 0 1 1.4 0l3 3a1 1 0 0 1-1.4 1.42l-3-3a1 1 0 0 1 0-1.42Z\", \"M26.7 20.16a1 1 0 0 0-1.4 1.42l3 3a1 1 0 1 0 1.4-1.42l-3-3Z\"]);\nexport const StarEmphasis32Regular = /*#__PURE__*/createFluentIcon('StarEmphasis32Regular', \"32\", [\"M14.39 4.07a1.8 1.8 0 0 1 3.23 0l3.04 6.17 6.8.99a1.8 1.8 0 0 1 1 3.07l-4.92 4.8 1.16 6.77a1.8 1.8 0 0 1-2.61 1.9L16 24.57l-6.08 3.2a1.8 1.8 0 0 1-2.61-1.9l1.16-6.78-4.92-4.8a1.8 1.8 0 0 1 1-3.06l6.8-1 3.04-6.16ZM16 5.32l-2.9 5.9c-.27.53-.78.9-1.36.98l-6.5.95 4.7 4.59c.42.4.62 1 .52 1.59L9.35 25.8l5.81-3.06a1.8 1.8 0 0 1 1.68 0l5.82 3.06-1.11-6.48c-.1-.58.09-1.18.51-1.6l4.71-4.58-6.5-.95a1.8 1.8 0 0 1-1.36-.98l-2.9-5.9Z\", \"M25.3 9.58a1 1 0 0 1 0-1.42l3-3a1 1 0 1 1 1.4 1.42l-3 3a1 1 0 0 1-1.4 0Z\", \"M2.3 23.16a1 1 0 1 0 1.4 1.42l3-3a1 1 0 1 0-1.4-1.42l-3 3Z\", \"M2.3 5.16a1 1 0 0 1 1.4 0l3 3a1 1 0 0 1-1.4 1.42l-3-3a1 1 0 0 1 0-1.42Z\", \"M26.7 20.16a1 1 0 1 0-1.4 1.42l3 3a1 1 0 0 0 1.4-1.42l-3-3Z\"]);\nexport const StarHalf12Filled = /*#__PURE__*/createFluentIcon('StarHalf12Filled', \"12\", [\"M6 1.1a.8.8 0 0 0-.72.45L4.18 3.8l-2.5.36a.8.8 0 0 0-.44 1.36l1.8 1.76-.42 2.47a.8.8 0 0 0 1.16.85L6 9.43V1.1Z\"]);\nexport const StarHalf12Regular = /*#__PURE__*/createFluentIcon('StarHalf12Regular', \"12\", [\"M6 9.43 3.78 10.6a.8.8 0 0 1-1.16-.85l.42-2.47-1.8-1.76a.8.8 0 0 1 .45-1.36l2.48-.36 1.11-2.25A.8.8 0 0 1 6 1.1a.8.8 0 0 1 .72.45L7.83 3.8l2.49.36c.65.1.91.9.44 1.36l-1.8 1.76.43 2.47a.8.8 0 0 1-1.17.85L6 9.43Zm0-7.08V8.4a.8.8 0 0 1 .37.1l1.96 1.02-.37-2.18a.8.8 0 0 1 .23-.7l1.58-1.55-2.19-.32a.8.8 0 0 1-.6-.43L6 2.35Z\"]);\nexport const StarHalf16Filled = /*#__PURE__*/createFluentIcon('StarHalf16Filled', \"16\", [\"M8 1.6a.89.89 0 0 0-.8.5L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35V1.6Z\"]);\nexport const StarHalf16Regular = /*#__PURE__*/createFluentIcon('StarHalf16Regular', \"16\", [\"M5.67 5.18 7.2 2.1c.17-.33.49-.5.81-.5.32 0 .64.17.8.5l1.53 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4.58 3.39a.9.9 0 0 1-1.3.95L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5ZM8 11.34a.9.9 0 0 1 .42.1l2.9 1.53-.55-3.24a.9.9 0 0 1 .26-.8l2.36-2.3-3.26-.46a.9.9 0 0 1-.67-.5L8 2.73v8.6Z\"]);\nexport const StarHalf20Filled = /*#__PURE__*/createFluentIcon('StarHalf20Filled', \"20\", [\"M10 2.34a.99.99 0 0 0-.9.56L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51V2.34Z\"]);\nexport const StarHalf20Regular = /*#__PURE__*/createFluentIcon('StarHalf20Regular', \"20\", [\"M9.1 2.9a.99.99 0 0 1 .9-.56c.36 0 .71.19.9.56l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9ZM10 14.5a1 1 0 0 1 .47.12l3.86 2.03-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.75-.55L10 3.35V14.5Z\"]);\nexport const StarHalf24Filled = /*#__PURE__*/createFluentIcon('StarHalf24Filled', \"24\", [\"M12 2.35c-.48 0-.96.25-1.21.75L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42L12 18.86V2.35Z\"]);\nexport const StarHalf24Regular = /*#__PURE__*/createFluentIcon('StarHalf24Regular', \"24\", [\"M12 2.35c-.48 0-.96.25-1.21.75L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42L12 18.86l4.71 2.48c1 .52 2.15-.32 1.96-1.42l-.9-5.25 3.82-3.72c.8-.78.36-2.14-.75-2.3l-5.27-.77L13.2 3.1c-.25-.5-.73-.75-1.21-.75Zm0 15V4.04l2.26 4.56c.2.4.57.68 1.01.74l5.05.74-3.65 3.56c-.32.3-.46.76-.39 1.2l.86 5.02-4.51-2.37c-.2-.1-.41-.16-.63-.16Z\"]);\nexport const StarHalf28Filled = /*#__PURE__*/createFluentIcon('StarHalf28Filled', \"28\", [\"M14 3.1c-.52 0-1.03.27-1.3.8l-2.69 5.46-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6a1.45 1.45 0 0 0 2.1 1.52L14 21.65V3.1Z\"]);\nexport const StarHalf28Regular = /*#__PURE__*/createFluentIcon('StarHalf28Regular', \"28\", [\"M12.7 3.9c.27-.53.78-.8 1.3-.8s1.04.27 1.3.8L18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-4.35 4.24 1.03 6a1.45 1.45 0 0 1-2.1 1.52L14 21.64l-5.38 2.83a1.45 1.45 0 0 1-2.1-1.52l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45ZM14 20.15c.23 0 .47.05.68.16l5.31 2.8-1.01-5.92c-.08-.47.07-.95.41-1.28l4.3-4.2-5.94-.86a1.45 1.45 0 0 1-1.1-.8L14 4.67v15.48Z\"]);\nexport const StarLineHorizontal316Filled = /*#__PURE__*/createFluentIcon('StarLineHorizontal316Filled', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35l.48.25A1.5 1.5 0 0 1 9.5 10a1.5 1.5 0 1 1 0-3 1.5 1.5 0 1 1 0-3h.24l-.93-1.9ZM9.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-5Z\"]);\nexport const StarLineHorizontal316Regular = /*#__PURE__*/createFluentIcon('StarLineHorizontal316Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35l.48.25a1.5 1.5 0 0 1-.47-1.26.9.9 0 0 0-.43.1l-2.9 1.53.55-3.24a.9.9 0 0 0-.26-.8l-2.35-2.3 3.25-.46a.9.9 0 0 0 .68-.5L8 2.73l.73 1.48c.23-.13.49-.21.77-.21h.24l-.93-1.9ZM9.5 5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Zm0 3a.5.5 0 0 0 0 1h5a.5.5 0 1 0 0-1h-5Z\"]);\nexport const StarLineHorizontal320Filled = /*#__PURE__*/createFluentIcon('StarLineHorizontal320Filled', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L11 14.98V13.5c0-.83.67-1.5 1.5-1.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1-.07-3L10.9 2.9Zm1.6 7.1a.5.5 0 1 0 0 1h5a.5.5 0 1 0 0-1h-5ZM12 7.5c0-.28.23-.5.5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 5.5a.5.5 0 1 0 0 1h5a.5.5 0 1 0 0-1h-5Z\"]);\nexport const StarLineHorizontal320Regular = /*#__PURE__*/createFluentIcon('StarLineHorizontal320Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0L12.92 7h4.58a.5.5 0 1 1 0 1h-4.58a1 1 0 0 1-.9-.56L10 3.34 8.07 7.25a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 4.1-2.16a.5.5 0 0 1 .46.89l-4.09 2.15a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm2.9 7.6c0-.28.22-.5.5-.5h5a.5.5 0 1 1 0 1h-5a.5.5 0 0 1-.5-.5Zm.5 2.5a.5.5 0 1 0 0 1h5a.5.5 0 0 0 0-1h-5Z\"]);\nexport const StarLineHorizontal324Filled = /*#__PURE__*/createFluentIcon('StarLineHorizontal324Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l1.69 3.43a2.25 2.25 0 0 0-.68 4.22 2.25 2.25 0 0 0 0 4 2.25 2.25 0 0 0-.77 3.35l-6.17 3.24a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm3.71 13.65c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm0-4c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm0-4c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z\"]);\nexport const StarLineHorizontal324Regular = /*#__PURE__*/createFluentIcon('StarLineHorizontal324Regular', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l5.07-2.66a.75.75 0 1 0-.7-1.33l-4.8 2.52.87-5.03c.07-.43-.07-.88-.4-1.2L3.68 10.1l5.05-.74c.44-.06.82-.34 1.02-.74L12 4.04l2.49 5.04c.12.26.38.42.67.42h6.09a.75.75 0 0 0 0-1.5h-5.62L13.2 3.1Zm1.3 9.65c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm0 4c0-.41.34-.75.75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z\"]);\nexport const StarOff12Filled = /*#__PURE__*/createFluentIcon('StarOff12Filled', \"12\", [\"M1.85 1.15a.5.5 0 1 0-.7.7l2.08 2.09-1.54.22a.8.8 0 0 0-.45 1.36l1.8 1.76-.42 2.47a.8.8 0 0 0 1.16.85L6 9.43l2.22 1.17a.8.8 0 0 0 1.15-.52l.78.77a.5.5 0 0 0 .7-.7l-9-9Zm8.9 4.37L9.19 7.06 4.75 2.63l.53-1.08a.8.8 0 0 1 1.44 0L7.83 3.8l2.49.36c.65.1.91.9.44 1.36Z\"]);\nexport const StarOff12Regular = /*#__PURE__*/createFluentIcon('StarOff12Regular', \"12\", [\"m1.85 1.15 9 9a.5.5 0 0 1-.7.7l-.78-.77a.8.8 0 0 1-1.15.52L6 9.43 3.78 10.6a.8.8 0 0 1-1.16-.85l.42-2.47-1.8-1.76a.8.8 0 0 1 .45-1.36l1.54-.22-2.08-2.09a.5.5 0 1 1 .7-.7Zm6.38 7.79L4.11 4.82l-1.88.27 1.58 1.54a.8.8 0 0 1 .23.71l-.37 2.18L5.63 8.5a.8.8 0 0 1 .74 0l1.96 1.03-.1-.58Zm1.54-3.85-1.3 1.26.71.71 1.58-1.54a.8.8 0 0 0-.44-1.36L7.83 3.8 6.72 1.55a.8.8 0 0 0-1.44 0l-.53 1.08.75.74.5-1.02.98 1.99c.12.23.34.4.6.43l2.2.32Z\"]);\nexport const StarOff16Filled = /*#__PURE__*/createFluentIcon('StarOff16Filled', \"16\", [\"m12.36 13.06 1.79 1.8a.5.5 0 0 0 .7-.71l-13-13a.5.5 0 1 0-.7.7l3.48 3.49-2.36.34a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35l3.04 1.6a.9.9 0 0 0 1.32-.88Zm-.6-3.45.02.04L6.2 4.1 7.2 2.1a.9.9 0 0 1 1.62 0l1.52 3.08 3.4.5a.9.9 0 0 1 .5 1.53l-2.46 2.4Z\"]);\nexport const StarOff16Regular = /*#__PURE__*/createFluentIcon('StarOff16Regular', \"16\", [\"M12.36 13.06a.9.9 0 0 1-1.32.89L8 12.35l-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l2.36-.34-3.48-3.49a.5.5 0 1 1 .7-.7l13 13a.5.5 0 0 1-.7.7l-1.8-1.79Zm-1.22-1.22L5.5 6.22l-2.9.42 2.36 2.3c.21.2.3.5.26.79l-.56 3.24 2.91-1.53a.9.9 0 0 1 .84 0l2.9 1.53-.18-1.13Zm2.25-5.2-2.35 2.28.74.73-.01-.04 2.46-2.4a.9.9 0 0 0-.5-1.53l-3.4-.5L8.8 2.1a.9.9 0 0 0-1.62 0l-.98 2 .75.74L8 2.73l1.46 2.94a.9.9 0 0 0 .67.5l3.26.47Z\"]);\nexport const StarOff20Filled = /*#__PURE__*/createFluentIcon('StarOff20Filled', \"20\", [\"M2.86 2.15a.5.5 0 1 0-.71.7l4.1 4.1-3.4.49a1 1 0 0 0-.55 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.1-.57 1.94 1.93a.5.5 0 0 0 .7-.7l-15-15Zm11.72 10.04.05.32-6.87-6.88L9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05Z\"]);\nexport const StarOff20Regular = /*#__PURE__*/createFluentIcon('StarOff20Regular', \"20\", [\"M2.86 2.15a.5.5 0 1 0-.71.7l4.1 4.1-3.4.49a1 1 0 0 0-.55 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.1-.57 1.94 1.93a.5.5 0 0 0 .7-.7l-15-15ZM13.99 14.7l.34 1.96-3.86-2.03a1 1 0 0 0-.93 0l-3.87 2.03.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.12-.6L14 14.7Zm-.11-3.23a1 1 0 0 0-.13.16l.88.88-.05-.32 3.12-3.05a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9a1 1 0 0 0-1.8 0L7.76 5.63l.74.75L10 3.34l1.93 3.91c.15.3.43.5.75.55l4.32.63-3.12 3.04Z\"]);\nexport const StarOff24Filled = /*#__PURE__*/createFluentIcon('StarOff24Filled', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l4.8 4.8-3.86.57a1.35 1.35 0 0 0-.75 2.3l3.82 3.72-.9 5.25a1.35 1.35 0 0 0 1.95 1.42L12 18.86l4.72 2.48c.99.52 2.14-.32 1.96-1.42l-.04-.22 2.08 2.08a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm18.31 8.73-3.78 3.68-8.5-8.51 1.48-3.02c.5-1 1.93-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3Z\"]);\nexport const StarOff24Regular = /*#__PURE__*/createFluentIcon('StarOff24Regular', \"24\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l4.8 4.8-3.86.57a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42L12 18.86l4.71 2.48c1 .52 2.15-.32 1.96-1.42l-.04-.22 2.09 2.08a.75.75 0 0 0 1.06-1.06L3.28 2.22ZM16.8 17.86l.34 2.01-4.51-2.37c-.4-.2-.87-.2-1.26 0l-4.52 2.37.87-5.03c.07-.43-.07-.88-.4-1.2L3.68 10.1l4.68-.68 8.45 8.45Zm3.52-7.77-3.57 3.48 1.06 1.06 3.78-3.68c.8-.78.36-2.14-.75-2.3l-5.27-.77L13.2 3.1c-.5-1-1.93-1-2.42 0L9.3 6.12l1.12 1.12L12 4.04l2.26 4.57c.2.4.57.68 1.01.74l5.05.74Z\"]);\nexport const StarOff28Filled = /*#__PURE__*/createFluentIcon('StarOff28Filled', \"28\", [\"M3.28 2.22a.75.75 0 1 0-1.06 1.06l6.3 6.3-4.53.66a1.45 1.45 0 0 0-.8 2.47l4.35 4.24-1.03 6a1.45 1.45 0 0 0 2.1 1.52L14 21.64l5.38 2.83c1.07.56 2.3-.34 2.1-1.52l-.08-.49 3.32 3.32a.75.75 0 0 0 1.06-1.06L3.28 2.22Zm7.57 5.44 9.67 9.68-.06-.39 4.35-4.24c.86-.84.39-2.3-.8-2.47l-6.02-.88-2.69-5.45a1.45 1.45 0 0 0-2.6 0l-1.85 3.75Z\"]);\nexport const StarOff28Regular = /*#__PURE__*/createFluentIcon('StarOff28Regular', \"28\", [\"m3.28 2.22 22.5 22.5a.75.75 0 0 1-1.06 1.06l-3.32-3.32.09.49a1.45 1.45 0 0 1-2.1 1.52L14 21.64l-5.38 2.83a1.45 1.45 0 0 1-2.1-1.52l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.47l4.53-.66-6.3-6.3a.75.75 0 1 1 1.06-1.06Zm16.29 18.4L9.84 10.9l-5.53.8 4.3 4.2c.34.33.5.81.41 1.28L8.01 23.1l5.31-2.8c.43-.22.93-.22 1.35 0L20 23.1l-.42-2.47ZM10.85 7.67l1.12 1.12L14 4.66l2.66 5.39c.2.43.62.72 1.09.8l5.94.86-4.3 4.19-.15.16 1.28 1.28-.06-.39 4.35-4.24c.86-.84.39-2.3-.8-2.47l-6.02-.88-2.69-5.45a1.45 1.45 0 0 0-2.6 0l-1.85 3.75Z\"]);\nexport const StarOneQuarter12Filled = /*#__PURE__*/createFluentIcon('StarOneQuarter12Filled', \"12\", [\"M5 2.12 4.17 3.8l-2.48.36a.8.8 0 0 0-.45 1.36l1.8 1.76-.42 2.47a.84.84 0 0 0 0 .26.8.8 0 0 0 1.16.59L5 9.95V2.12Z\"]);\nexport const StarOneQuarter12Regular = /*#__PURE__*/createFluentIcon('StarOneQuarter12Regular', \"12\", [\"M6.72 1.55a.8.8 0 0 0-1.44 0L4.18 3.8l-2.5.36a.8.8 0 0 0-.44 1.36l1.8 1.76-.42 2.47a.84.84 0 0 0 0 .26.8.8 0 0 0 1.16.59L6 9.43l2.22 1.17a.8.8 0 0 0 1.17-.85l-.43-2.47 1.8-1.76a.8.8 0 0 0-.44-1.36L7.83 3.8 6.72 1.55ZM5 8.82V4.38a.8.8 0 0 0 .02-.04L6 2.35l.98 1.99c.12.23.34.4.6.43l2.2.32-1.6 1.54a.8.8 0 0 0-.22.71l.37 2.18L6.37 8.5a.8.8 0 0 0-.74 0L5 8.82Z\"]);\nexport const StarOneQuarter16Filled = /*#__PURE__*/createFluentIcon('StarOneQuarter16Filled', \"16\", [\"m6 4.52-.33.66-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L6 13.4V4.52Z\"]);\nexport const StarOneQuarter16Regular = /*#__PURE__*/createFluentIcon('StarOneQuarter16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35l3.04 1.6a.9.9 0 0 0 1.3-.95l-.57-3.39 2.46-2.4a.9.9 0 0 0-.5-1.53l-3.4-.5L8.8 2.1ZM6 12.27V6.14a.9.9 0 0 0 .55-.47L8 2.73l1.46 2.94a.9.9 0 0 0 .67.5l3.26.47-2.36 2.3a.9.9 0 0 0-.26.79l.56 3.24-2.91-1.53a.9.9 0 0 0-.84 0L6 12.27Z\"]);\nexport const StarOneQuarter20Filled = /*#__PURE__*/createFluentIcon('StarOneQuarter20Filled', \"20\", [\"M8 5.14 7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L8 16.56V5.14Z\"]);\nexport const StarOneQuarter20Regular = /*#__PURE__*/createFluentIcon('StarOneQuarter20Regular', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L8 5.13l-.83 1.68-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l3.86 2.03a1 1 0 0 0 1.45-1.05l-.73-4.3 3.12-3.05a1 1 0 0 0-.55-1.7l-4.32-.63L10.9 2.9ZM8 15.43V7.37a1 1 0 0 0 .07-.12L10 3.35l1.93 3.9c.15.3.43.5.76.55l4.31.63-3.12 3.04a1 1 0 0 0-.29.89l.74 4.3-3.86-2.03a1 1 0 0 0-.93 0l-1.54.8Z\"]);\nexport const StarOneQuarter24Filled = /*#__PURE__*/createFluentIcon('StarOneQuarter24Filled', \"24\", [\"m9 6.72-.57 1.16-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l1.72-.9V6.72Z\"]);\nexport const StarOneQuarter24Regular = /*#__PURE__*/createFluentIcon('StarOneQuarter24Regular', \"24\", [\"M13.2 3.1c-.49-1-1.92-1-2.41 0L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42l1.72-.9 3-1.58 4.71 2.48c1 .52 2.15-.32 1.96-1.42l-.9-5.25 3.82-3.72c.8-.78.36-2.14-.75-2.3l-5.27-.77L13.2 3.1ZM9 18.74V9.28c.32-.12.59-.35.74-.67L12 4.04l2.26 4.57c.2.4.57.68 1.01.74l5.05.74-3.65 3.56c-.32.3-.46.76-.39 1.2l.86 5.02-4.51-2.37c-.4-.2-.87-.2-1.26 0L9 18.74Z\"]);\nexport const StarOneQuarter28Filled = /*#__PURE__*/createFluentIcon('StarOneQuarter28Filled', \"28\", [\"m11 7.36-.99 2-6.02.88a1.45 1.45 0 0 0-.8 2.47l4.35 4.24-1.02 6c-.11.63.19 1.18.66 1.47.4.26.94.32 1.44.05L11 23.22V7.36Z\"]);\nexport const StarOneQuarter28Regular = /*#__PURE__*/createFluentIcon('StarOneQuarter28Regular', \"28\", [\"M15.3 3.9a1.45 1.45 0 0 0-2.6 0l-2.69 5.46-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6c-.11.63.19 1.18.66 1.47.4.26.94.32 1.44.05L14 21.64l5.38 2.83c1.07.56 2.31-.34 2.1-1.52l-1.02-6 4.35-4.24c.86-.84.39-2.3-.8-2.48l-6.02-.87-2.69-5.45ZM11 21.54V10.49c.14-.12.26-.27.34-.44L14 4.66l2.66 5.39c.21.43.62.72 1.1.8l5.93.85-4.3 4.2c-.34.33-.5.8-.41 1.28l1.01 5.92-5.31-2.8a1.45 1.45 0 0 0-1.35 0L11 21.53Z\"]);\nexport const StarProhibited16Filled = /*#__PURE__*/createFluentIcon('StarProhibited16Filled', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48A5.5 5.5 0 0 1 10.24 5L8.81 2.1ZM6 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarProhibited16Regular = /*#__PURE__*/createFluentIcon('StarProhibited16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95l.92-.48a5.49 5.49 0 0 1-.46-.89l-.74.39.35-2.02a5.58 5.58 0 0 1 .14-1.76.9.9 0 0 0-.19-.26l-2.35-2.3 3.25-.46a.9.9 0 0 0 .68-.5L8 2.73l1.2 2.42a5.5 5.5 0 0 1 1.04-.14L8.81 2.1ZM6 10.5a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.79 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarProhibited20Filled = /*#__PURE__*/createFluentIcon('StarProhibited20Filled', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.5 5.5 0 0 0-7.96 6.26l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9 11.6a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.78 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarProhibited20Regular = /*#__PURE__*/createFluentIcon('StarProhibited20Regular', \"20\", [\"M9.1 2.9a1 1 0 0 1 1.8 0l1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-.55.54a5.46 5.46 0 0 0-1-.43l.85-.82-4.32-.63a1 1 0 0 1-.75-.55L10 3.35l-1.93 3.9a1 1 0 0 1-.75.55L3 8.43l3.12 3.04a1 1 0 0 1 .3.89l-.75 4.3 3.35-1.76c.02.36.08.7.17 1.04l-3.05 1.6a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9Zm.9 11.6a4.5 4.5 0 1 0 9 0 4.5 4.5 0 0 0-9 0Zm1 0a3.5 3.5 0 0 1 5.6-2.8l-4.9 4.9a3.48 3.48 0 0 1-.7-2.1Zm3.5 3.5c-.78 0-1.51-.26-2.1-.7l4.9-4.9a3.5 3.5 0 0 1-2.8 5.6Z\"]);\nexport const StarProhibited24Filled = /*#__PURE__*/createFluentIcon('StarProhibited24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm12.2 14.4a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.26 1.6.7 2.25l5.56-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.32-6.25l-5.56 5.56c.64.43 1.41.69 2.25.69Z\"]);\nexport const StarProhibited24Regular = /*#__PURE__*/createFluentIcon('StarProhibited24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.62l1.15-1.12-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78ZM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Zm-9.5 0c0 .83.26 1.6.7 2.25l5.55-5.56a4 4 0 0 0-6.25 3.3Zm4 4a4 4 0 0 0 3.3-6.25l-5.55 5.56c.64.43 1.42.69 2.25.69Z\"]);\nexport const StarSettings20Filled = /*#__PURE__*/createFluentIcon('StarSettings20Filled', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.5 5.5 0 0 1 7.96-6.26l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9Zm-.27 11.02-.46.12a4.74 4.74 0 0 0 .01 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.73 4.73 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.3.13-.57.3-.82.5l.16.55a2 2 0 0 1-1.44 2.48Zm4.87.58a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"]);\nexport const StarSettings20Regular = /*#__PURE__*/createFluentIcon('StarSettings20Regular', \"20\", [\"M10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05l3.05-1.6a5.49 5.49 0 0 1-.18-1.04l-3.34 1.76.74-4.3a1 1 0 0 0-.29-.89L3 8.43l4.32-.63a1 1 0 0 0 .75-.55L10 3.35l1.93 3.9c.15.3.43.5.75.55l4.32.63-.85.82c.35.11.69.26 1 .43l.55-.54a1 1 0 0 0-.56-1.7l-4.31-.63L10.9 2.9Zm-.27 11.02a2 2 0 0 0 1.44-2.48l-.16-.55c.25-.2.53-.37.82-.5l.34.36a2 2 0 0 0 2.9 0l.33-.35c.3.14.58.32.84.52l-.13.42a2 2 0 0 0 1.46 2.52l.35.09a4.7 4.7 0 0 1 0 1.01l-.45.12a2 2 0 0 0-1.43 2.48l.15.55c-.25.2-.53.37-.82.5l-.34-.36a2 2 0 0 0-2.9 0l-.33.35c-.3-.14-.58-.32-.84-.52l.13-.42a2 2 0 0 0-1.46-2.52l-.35-.09a4.71 4.71 0 0 1 0-1.01l.45-.12Zm4.87.58a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const StarSettings24Filled = /*#__PURE__*/createFluentIcon('StarSettings24Filled', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.5 6.5 0 0 0-9.44 7.43l-3.97 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm3.49 10.87a2 2 0 0 1-1.44 2.5l-.59.15a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.63c.44.39.94.7 1.49.93l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.72 5.72 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.64c-.44-.38-.94-.7-1.49-.92l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const StarSettings24Regular = /*#__PURE__*/createFluentIcon('StarSettings24Regular', \"24\", [\"M10.79 3.1c.5-1 1.92-1 2.42 0l2.36 4.78 5.27.77c1.1.16 1.55 1.52.75 2.3l-.9.88a6.46 6.46 0 0 0-1.52-.62l1.15-1.12-5.05-.74a1.35 1.35 0 0 1-1.01-.74L12 4.04 9.74 8.6c-.2.4-.58.68-1.02.74l-5.05.74 3.66 3.56c.32.3.46.76.39 1.2l-.87 5.02L11 17.7c.02.54.1 1.07.24 1.57l-3.96 2.08a1.35 1.35 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78Zm3.49 10.87a2 2 0 0 1-1.44 2.5l-.59.15a5.73 5.73 0 0 0 0 1.8l.55.13a2 2 0 0 1 1.45 2.51l-.19.63c.44.39.94.7 1.49.93l.49-.52a2 2 0 0 1 2.9 0l.5.52a5.28 5.28 0 0 0 1.48-.91l-.2-.69a2 2 0 0 1 1.44-2.5l.59-.14a5.72 5.72 0 0 0 0-1.8l-.55-.13a2 2 0 0 1-1.45-2.51l.19-.64c-.44-.38-.94-.7-1.49-.92l-.49.52a2 2 0 0 1-2.9 0l-.5-.52c-.54.22-1.04.53-1.48.9l.2.7ZM17.5 19c-.8 0-1.45-.67-1.45-1.5S16.7 16 17.5 16c.8 0 1.45.67 1.45 1.5S18.3 19 17.5 19Z\"]);\nexport const StarThreeQuarter12Filled = /*#__PURE__*/createFluentIcon('StarThreeQuarter12Filled', \"12\", [\"m7 2.12-.28-.57a.8.8 0 0 0-1.44 0L4.18 3.8l-2.5.36a.8.8 0 0 0-.44 1.36l1.8 1.76-.42 2.47a.8.8 0 0 0 1.16.85L6 9.43l1 .52V2.12Z\"]);\nexport const StarThreeQuarter12Regular = /*#__PURE__*/createFluentIcon('StarThreeQuarter12Regular', \"12\", [\"M6.72 1.55 7.83 3.8l2.49.36c.65.1.91.9.44 1.36l-1.8 1.76.43 2.47a.8.8 0 0 1-1.17.85L6 9.43 3.78 10.6a.8.8 0 0 1-1.16-.85l.42-2.47-1.8-1.76a.8.8 0 0 1 .45-1.36l2.48-.36 1.11-2.25a.8.8 0 0 1 1.44 0ZM7 8.82l1.33.7-.37-2.18a.8.8 0 0 1 .23-.7l1.58-1.55-2.19-.32a.8.8 0 0 1-.58-.4v4.45Z\"]);\nexport const StarThreeQuarter16Filled = /*#__PURE__*/createFluentIcon('StarThreeQuarter16Filled', \"16\", [\"M7.2 2.1a.9.9 0 0 1 1.6 0L10 4.52v8.88l-2-1.05-3.04 1.6a.9.9 0 0 1-1.3-.95l.57-3.39-2.46-2.4a.9.9 0 0 1 .5-1.53l3.4-.5L7.2 2.1Z\"]);\nexport const StarThreeQuarter16Regular = /*#__PURE__*/createFluentIcon('StarThreeQuarter16Regular', \"16\", [\"M8.8 2.1a.9.9 0 0 0-1.6 0L5.66 5.18l-3.4.5a.9.9 0 0 0-.5 1.53l2.46 2.4L3.65 13a.9.9 0 0 0 1.3.95L8 12.35l3.04 1.6a.9.9 0 0 0 1.3-.95l-.57-3.39 2.46-2.4a.9.9 0 0 0-.5-1.53l-3.4-.5L8.8 2.1ZM10 12.27V6.14a.9.9 0 0 0 .13.03l3.26.47-2.36 2.3a.9.9 0 0 0-.26.79l.56 3.24-1.33-.7Z\"]);\nexport const StarThreeQuarter20Filled = /*#__PURE__*/createFluentIcon('StarThreeQuarter20Filled', \"20\", [\"M12 5.13 10.9 2.9a1 1 0 0 0-1.8 0L7.17 6.8l-4.31.63a1 1 0 0 0-.56 1.7l3.13 3.05-.74 4.3a1 1 0 0 0 1.45 1.05L10 15.51l2 1.05V5.13Z\"]);\nexport const StarThreeQuarter20Regular = /*#__PURE__*/createFluentIcon('StarThreeQuarter20Regular', \"20\", [\"m10.9 2.9 1.93 3.91 4.31.63a1 1 0 0 1 .56 1.7l-3.12 3.05.73 4.3a1 1 0 0 1-1.45 1.05L10 15.51l-3.86 2.03a1 1 0 0 1-1.45-1.05l.74-4.3L2.3 9.14a1 1 0 0 1 .56-1.7l4.31-.63L9.1 2.9a1 1 0 0 1 1.8 0ZM12 7.37v8.06l2.33 1.23-.74-4.3a1 1 0 0 1 .29-.89L17 8.43l-4.32-.63a1 1 0 0 1-.68-.43Z\"]);\nexport const StarThreeQuarter24Filled = /*#__PURE__*/createFluentIcon('StarThreeQuarter24Filled', \"24\", [\"M15 6.73 13.21 3.1c-.25-.5-.73-.75-1.21-.75s-.96.25-1.21.75L8.43 7.88l-5.27.77a1.35 1.35 0 0 0-.75 2.3l3.81 3.72-.9 5.25a1.35 1.35 0 0 0 1.96 1.42L12 18.86l3 1.58V6.73Z\"]);\nexport const StarThreeQuarter24Regular = /*#__PURE__*/createFluentIcon('StarThreeQuarter24Regular', \"24\", [\"M13.21 3.1 15 6.73l.57 1.15 5.27.77c1.1.16 1.55 1.52.75 2.3l-3.82 3.72.9 5.25a1.35 1.35 0 0 1-1.96 1.42L12 18.86l-4.72 2.48a1.34 1.34 0 0 1-1.96-1.42l.9-5.25-3.81-3.72c-.8-.78-.36-2.14.75-2.3l5.27-.77 2.36-4.78c.25-.5.73-.75 1.2-.75.5 0 .97.25 1.22.75ZM15 9.28v9.47l2.14 1.12-.86-5.03c-.07-.43.07-.88.39-1.2l3.65-3.55-5.05-.74c-.1-.01-.18-.03-.27-.07Z\"]);\nexport const StarThreeQuarter28Filled = /*#__PURE__*/createFluentIcon('StarThreeQuarter28Filled', \"28\", [\"M17 7.35 15.3 3.9a1.45 1.45 0 0 0-2.6 0l-2.69 5.45-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6a1.45 1.45 0 0 0 2.1 1.52L14 21.64l3 1.58V7.35Z\"]);\nexport const StarThreeQuarter28Regular = /*#__PURE__*/createFluentIcon('StarThreeQuarter28Regular', \"28\", [\"M15.3 3.9 18 9.37l6.01.87a1.45 1.45 0 0 1 .8 2.48l-4.35 4.24 1.03 6a1.45 1.45 0 0 1-2.1 1.52L14 21.64l-5.38 2.83a1.45 1.45 0 0 1-2.1-1.52l1.02-6-4.35-4.24c-.86-.84-.39-2.3.8-2.48l6.02-.87 2.7-5.45a1.45 1.45 0 0 1 2.6 0Zm1.7 6.6v11.03l3 1.57-1.02-5.92c-.08-.47.07-.95.41-1.28l4.3-4.2-5.94-.86a1.45 1.45 0 0 1-.75-.35Z\"]);\nexport const Status12Filled = /*#__PURE__*/createFluentIcon('Status12Filled', \"12\", [\"M6 1c.28 0 .55.02.82.07L5.88 2A4 4 0 1 0 10 6.13l.93-.94A5 5 0 1 1 6 1Zm4.44.56a1.91 1.91 0 0 0-2.7 0l-2.6 2.59a.5.5 0 0 0-.11.19l-.98 2.92c-.15.43.26.84.7.7l2.91-.99a.5.5 0 0 0 .2-.12l2.58-2.58c.75-.75.75-1.96 0-2.7Z\"]);\nexport const Status12Regular = /*#__PURE__*/createFluentIcon('Status12Regular', \"12\", [\"M6 1c.28 0 .55.02.82.07L5.88 2A4 4 0 1 0 10 6.13l.93-.94A5 5 0 1 1 6 1Zm4.44.56a1.91 1.91 0 0 0-2.7 0l-2.6 2.59a.5.5 0 0 0-.11.19l-.98 2.92c-.15.43.26.84.7.7l2.91-.99a.5.5 0 0 0 .2-.12l2.58-2.58c.75-.75.75-1.96 0-2.7Zm-2 .7a.91.91 0 0 1 1.3 1.3l-2.5 2.5-1.96.66.66-1.95 2.5-2.5Z\"]);\nexport const Status16Filled = /*#__PURE__*/createFluentIcon('Status16Filled', \"16\", [\"M14.35 1.65a2.27 2.27 0 0 0-3.2 0L6.9 5.9a.5.5 0 0 0-.12.2L5.53 9.83a.5.5 0 0 0 .63.63L9.9 9.22a.5.5 0 0 0 .2-.12l4.24-4.25c.89-.88.89-2.32 0-3.2ZM13 7.63 13 8a5 5 0 1 1-4.63-4.99l.88-.88A6.02 6.02 0 0 0 2 8a6 6 0 1 0 11.87-1.25l-.88.88Z\"]);\nexport const Status16Regular = /*#__PURE__*/createFluentIcon('Status16Regular', \"16\", [\"M14.35 1.65a2.27 2.27 0 0 0-3.2 0L6.9 5.9a.5.5 0 0 0-.12.2L5.53 9.83a.5.5 0 0 0 .63.63L9.9 9.22a.5.5 0 0 0 .2-.12l4.24-4.25c.89-.88.89-2.32 0-3.2Zm-2.5.7a1.27 1.27 0 0 1 1.8 1.8L9.48 8.3l-2.69.9.9-2.69 4.16-4.17ZM8 3l.37.01.88-.88A6.02 6.02 0 0 0 2 8a6 6 0 1 0 11.87-1.25l-.88.88L13 8a5 5 0 1 1-5-5Z\"]);\nexport const Status20Filled = /*#__PURE__*/createFluentIcon('Status20Filled', \"20\", [\"M17.35 2.65a2.62 2.62 0 0 0-3.7 0l-5.5 5.5a.5.5 0 0 0-.14.23l-1 4a.5.5 0 0 0 .61.6l4-1a.5.5 0 0 0 .23-.13l5.5-5.5a2.62 2.62 0 0 0 0-3.7Zm-1.4 6.53a6 6 0 1 1-5.12-5.12l.85-.86A7.02 7.02 0 0 0 3 10a7 7 0 1 0 13.8-1.68l-.86.86Z\"]);\nexport const Status20Regular = /*#__PURE__*/createFluentIcon('Status20Regular', \"20\", [\"M17.35 2.65a2.62 2.62 0 0 0-3.7 0l-5.5 5.5a.5.5 0 0 0-.14.23l-1 4a.5.5 0 0 0 .61.6l4-1a.5.5 0 0 0 .23-.13l5.5-5.5a2.62 2.62 0 0 0 0-3.7Zm-3 .7a1.62 1.62 0 0 1 2.3 2.3l-5.4 5.4-3.06.76.76-3.05 5.4-5.4ZM10 4c.28 0 .55.02.82.06l.86-.86A7.02 7.02 0 0 0 3 10a7 7 0 1 0 13.8-1.68l-.86.86A6 6 0 1 1 10 4Z\"]);\nexport const Status24Filled = /*#__PURE__*/createFluentIcon('Status24Filled', \"24\", [\"M12 3c1.25 0 2.44.25 3.52.71l-1.16 1.17a7.5 7.5 0 1 0 4.78 4.82l1.17-1.17A9 9 0 1 1 12 3Zm9.16-.43.14.13a2.4 2.4 0 0 1 0 3.4l-6.75 6.81a1 1 0 0 1-.4.25L9.8 14.53a.2.2 0 0 1-.25-.25l1.37-4.35a1 1 0 0 1 .24-.4l6.76-6.82c.88-.9 2.3-.94 3.24-.14Z\"]);\nexport const Status24Regular = /*#__PURE__*/createFluentIcon('Status24Regular', \"24\", [\"M12 3c1.11 0 2.18.2 3.16.57l-1.18 1.2a7.5 7.5 0 1 0 5.28 5.33l1.2-1.2A9 9 0 1 1 12 3Zm9.06-.33.15.14a2.76 2.76 0 0 1 0 3.9l-6.3 6.35c-.18.18-.4.32-.65.39l-4.21 1.2a.5.5 0 0 1-.62-.61l1.2-4.22c.08-.24.2-.47.38-.65l6.31-6.35a2.74 2.74 0 0 1 3.74-.15Zm-2.67 1.2-6.31 6.36-.71 2.49 2.47-.71 6.3-6.36c.47-.46.5-1.18.1-1.68l-.1-.1a1.24 1.24 0 0 0-1.75 0Z\"]);\nexport const Step16Filled = /*#__PURE__*/createFluentIcon('Step16Filled', \"16\", [\"M9 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8.5a2.5 2.5 0 0 1-2.5 2.5H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Z\"]);\nexport const Step16Regular = /*#__PURE__*/createFluentIcon('Step16Regular', \"16\", [\"M9 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8.5a2.5 2.5 0 0 1-2.5 2.5H2a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Zm4 0h-3v3a1 1 0 0 1-1 1H6v2a1 1 0 0 1-1 1H2v3h9.5c.83 0 1.5-.67 1.5-1.5V3Z\"]);\nexport const Step20Filled = /*#__PURE__*/createFluentIcon('Step20Filled', \"20\", [\"M13 2a1 1 0 0 0-1 1v4H8a1 1 0 0 0-1 1v4H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h12a3 3 0 0 0 3-3V3a1 1 0 0 0-1-1h-4Z\"]);\nexport const Step20Regular = /*#__PURE__*/createFluentIcon('Step20Regular', \"20\", [\"M12 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a3 3 0 0 1-3 3H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h4V8a1 1 0 0 1 1-1h4V3Zm5 0h-4v4a1 1 0 0 1-1 1H8v4a1 1 0 0 1-1 1H3v4h12a2 2 0 0 0 2-2V3Z\"]);\nexport const Step24Filled = /*#__PURE__*/createFluentIcon('Step24Filled', \"24\", [\"M15.75 2c-.69 0-1.25.56-1.25 1.25V8H9.25C8.56 8 8 8.56 8 9.25v5.25H3.25c-.69 0-1.25.56-1.25 1.25v5c0 .69.56 1.25 1.25 1.25h15.5c1.8 0 3.25-1.46 3.25-3.25V3.25C22 2.56 21.44 2 20.75 2h-5Z\"]);\nexport const Step24Regular = /*#__PURE__*/createFluentIcon('Step24Regular', \"24\", [\"M14.5 3.25c0-.69.56-1.25 1.25-1.25h5c.69 0 1.25.56 1.25 1.25v15.5c0 1.8-1.46 3.25-3.25 3.25H3.25C2.56 22 2 21.44 2 20.75v-5c0-.69.56-1.25 1.25-1.25H8V9.25C8 8.56 8.56 8 9.25 8h5.25V3.25Zm1.5.25v4.75c0 .69-.56 1.25-1.25 1.25H9.5v5.25c0 .69-.56 1.25-1.25 1.25H3.5v4.5h15.25c.97 0 1.75-.78 1.75-1.75V3.5H16Z\"]);\nexport const Steps16Filled = /*#__PURE__*/createFluentIcon('Steps16Filled', \"16\", [\"M5 13H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3V6a1 1 0 0 1 1-1h3V2a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V2h-3v3a1 1 0 0 1-1 1H6v2a1 1 0 0 1-1 1H2v3h3v1Zm10-.5V8a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v2H7a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5.5a2.5 2.5 0 0 0 2.5-2.5Z\"]);\nexport const Steps16Regular = /*#__PURE__*/createFluentIcon('Steps16Regular', \"16\", [\"M5 13H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3V6a1 1 0 0 1 1-1h3V2a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V2h-3v3a1 1 0 0 1-1 1H6v2a1 1 0 0 1-1 1H2v3h3v1Zm10-.5V8a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v2H7a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5.5a2.5 2.5 0 0 0 2.5-2.5ZM10 11a1 1 0 0 0 1-1V8h3v4.5c0 .83-.67 1.5-1.5 1.5H7v-3h3Z\"]);\nexport const Steps20Filled = /*#__PURE__*/createFluentIcon('Steps20Filled', \"20\", [\"M11 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V3h-3v3a1 1 0 0 1-1 1H8v3a1 1 0 0 1-1 1H4v3h4v1H4a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Zm2 6a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v5.5a2.5 2.5 0 0 1-2.5 2.5H10a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V9Z\"]);\nexport const Steps20Regular = /*#__PURE__*/createFluentIcon('Steps20Regular', \"20\", [\"M11 3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4h-1V3h-3v3a1 1 0 0 1-1 1H8v3a1 1 0 0 1-1 1H4v3h4v1H4a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h3V7a1 1 0 0 1 1-1h3V3Zm3 5a1 1 0 0 0-1 1v3h-3a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h5.5a2.5 2.5 0 0 0 2.5-2.5V9a1 1 0 0 0-1-1h-3Zm0 1h3v5.5c0 .83-.67 1.5-1.5 1.5H10v-3h3a1 1 0 0 0 1-1V9Z\"]);\nexport const Steps24Filled = /*#__PURE__*/createFluentIcon('Steps24Filled', \"24\", [\"M12 3.38c0-.76.62-1.38 1.38-1.38h3.74c.76 0 1.38.62 1.38 1.38V9H17V3.5h-3.5v3.63c0 .75-.62 1.37-1.38 1.37H8.5v3.63c0 .75-.62 1.37-1.38 1.37H3.5V17H9v1.5H3.37c-.75 0-1.37-.62-1.37-1.38v-3.75c0-.75.62-1.37 1.38-1.37H7V8.37C7 7.63 7.62 7 8.38 7H12V3.37Zm3 8c0-.76.62-1.38 1.38-1.38h3.75c.75 0 1.37.62 1.37 1.38v6.87c0 1.8-1.46 3.25-3.25 3.25h-6.88c-.75 0-1.37-.62-1.37-1.38v-3.75c0-.75.62-1.37 1.38-1.37H15v-3.63Z\"]);\nexport const Steps24Regular = /*#__PURE__*/createFluentIcon('Steps24Regular', \"24\", [\"M12 3.38c0-.76.62-1.38 1.38-1.38h3.74c.76 0 1.38.62 1.38 1.38V9H17V3.5h-3.5v3.63c0 .75-.62 1.37-1.38 1.37H8.5v3.63c0 .75-.62 1.37-1.38 1.37H3.5V17H9v1.5H3.37c-.75 0-1.37-.62-1.37-1.38v-3.75c0-.75.62-1.37 1.38-1.37H7V8.37C7 7.63 7.62 7 8.38 7H12V3.37ZM16.38 10c-.76 0-1.38.62-1.38 1.38V15h-3.63c-.75 0-1.37.62-1.37 1.38v3.75c0 .75.62 1.37 1.38 1.37h6.87c1.8 0 3.25-1.46 3.25-3.25v-6.88c0-.75-.62-1.37-1.38-1.37h-3.75Zm.12 5.13V11.5H20v6.75c0 .97-.78 1.75-1.75 1.75H11.5v-3.5h3.63c.75 0 1.37-.62 1.37-1.38Z\"]);\nexport const Stethoscope20Filled = /*#__PURE__*/createFluentIcon('Stethoscope20Filled', \"20\", [\"M2.75 2a.75.75 0 0 0-.75.75v5a4.5 4.5 0 0 0 3.75 4.44v1.06a5.25 5.25 0 1 0 10.5 0v-1.1a2.75 2.75 0 1 0-1.5 0v1.1a3.75 3.75 0 1 1-7.5 0v-1.06A4.5 4.5 0 0 0 11 7.75v-5a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0 0 1.5h.75v4.25a3 3 0 1 1-6 0V3.5h.75a.75.75 0 0 0 0-1.5h-1.5ZM15.5 8.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Stethoscope20Regular = /*#__PURE__*/createFluentIcon('Stethoscope20Regular', \"20\", [\"M2.5 2a.5.5 0 0 0-.5.5v5a4.5 4.5 0 0 0 4 4.47V13a5 5 0 0 0 10 0v-1.05a2.5 2.5 0 1 0-1 0V13a4 4 0 1 1-8 0v-1.03a4.5 4.5 0 0 0 4-4.47v-5a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0 0 1H10v4.5a3.5 3.5 0 0 1-7 0V3h1.5a.5.5 0 0 0 0-1h-2Zm13 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const Stethoscope24Filled = /*#__PURE__*/createFluentIcon('Stethoscope24Filled', \"24\", [\"M3 2.5a1 1 0 0 0-1 1V9c0 1.74.61 3.26 1.71 4.34.87.86 2.01 1.4 3.29 1.59v.82a6.25 6.25 0 1 0 12.5 0v-.66a3.25 3.25 0 1 0-2 0v.66a4.25 4.25 0 1 1-8.5 0v-.82a5.82 5.82 0 0 0 3.29-1.6A5.97 5.97 0 0 0 14 9V3.5a1 1 0 0 0-1-1h-2a1 1 0 1 0 0 2h1V9c0 1.26-.44 2.24-1.11 2.91A4.02 4.02 0 0 1 8 13c-1.22 0-2.2-.42-2.89-1.09A3.98 3.98 0 0 1 4 9V4.5h1a1 1 0 0 0 0-2H3Zm15.5 8.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Stethoscope24Regular = /*#__PURE__*/createFluentIcon('Stethoscope24Regular', \"24\", [\"M2.75 2.5a.75.75 0 0 0-.75.75V9a6 6 0 0 0 5.25 5.95v.8a6 6 0 0 0 12 0v-.84a3 3 0 1 0-1.5 0v.84a4.5 4.5 0 0 1-9 0v-.8A6 6 0 0 0 14 9V3.25a.75.75 0 0 0-.75-.75h-2.5a.75.75 0 0 0 0 1.5h1.75v5a4.5 4.5 0 1 1-9 0V4h1.75a.75.75 0 0 0 0-1.5h-2.5Zm15.75 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"]);\nexport const Sticker12Filled = /*#__PURE__*/createFluentIcon('Sticker12Filled', \"12\", [\"M3 1h6a2 2 0 0 1 2 2v3H8a2 2 0 0 0-1.71.96.92.92 0 0 1-.3.05c-.31 0-.57-.16-.76-.35a1.79 1.79 0 0 1-.28-.37.5.5 0 0 0-.9.44v.01l.01.02a1.78 1.78 0 0 0 .12.18c.07.12.19.27.34.42.3.3.8.65 1.48.65V11H3a2 2 0 0 1-2-2V3c0-1.1.9-2 2-2Zm1.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Zm3 0a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM11 7H8a1 1 0 0 0-1 1v3h.5a.5.5 0 0 0 .35-.15l3-3A.5.5 0 0 0 11 7.5V7Z\"]);\nexport const Sticker12Regular = /*#__PURE__*/createFluentIcon('Sticker12Regular', \"12\", [\"M5 4.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm2.5.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM1 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2v4.5a.5.5 0 0 1-.15.35l-3 3a.5.5 0 0 1-.35.15H3a2 2 0 0 1-2-2V3Zm2-1a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h3V8.01c-.68 0-1.18-.34-1.48-.65a2.78 2.78 0 0 1-.46-.6v-.02a.5.5 0 1 1 .9-.43l.05.08c.05.07.12.17.22.27.2.2.45.35.77.35.1 0 .2-.02.29-.05A2 2 0 0 1 8 6h2V3a1 1 0 0 0-1-1H3Zm7 5H8a1 1 0 0 0-1 1v2h.3L10 7.3V7Z\"]);\nexport const Sticker20Filled = /*#__PURE__*/createFluentIcon('Sticker20Filled', \"20\", [\"M6 3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h5v-3.08a5.87 5.87 0 0 1-3.47-.47 4.2 4.2 0 0 1-.86-.57l-.01-.02h-.01a.5.5 0 0 1 .7-.72 1 1 0 0 0 .14.12c.1.07.26.18.48.3A4.5 4.5 0 0 0 10 13c.43 0 .81-.05 1.15-.14a2.75 2.75 0 0 1 2.6-1.86H17V6a3 3 0 0 0-3-3H6Zm1.5 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-.7 8.41a2 2 0 0 1-.8.5v-3.16c0-.97.78-1.75 1.75-1.75h3.15a2 2 0 0 1-.49.8L12.8 16.4Z\"]);\nexport const Sticker20Regular = /*#__PURE__*/createFluentIcon('Sticker20Regular', \"20\", [\"M7.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3 6v8a3 3 0 0 0 3 3h5.38a1.97 1.97 0 0 0 1.41-.59l3.62-3.62a2 2 0 0 0 .59-1.41V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3Zm13 0v5h-2.25c-1.2 0-2.24.78-2.6 1.86-.34.09-.72.14-1.15.14a4.5 4.5 0 0 1-2.51-.74 1.97 1.97 0 0 1-.14-.11.5.5 0 0 0-.7.7v.01l.02.02a2 2 0 0 0 .22.18 5.5 5.5 0 0 0 4.11.86V16H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h8a2 2 0 0 1 2 2Zm-3.91 9.7a1 1 0 0 1-.09.08v-2.03c0-.97.78-1.75 1.75-1.75h2.03l-.07.09-3.62 3.62Z\"]);\nexport const Sticker24Filled = /*#__PURE__*/createFluentIcon('Sticker24Filled', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25V13h-4.96c-1.2.08-2.22.81-2.72 1.84a5.05 5.05 0 0 1-4.14-.7.75.75 0 1 0-.86 1.23 6.33 6.33 0 0 0 4.35 1.1l.33-.03V21H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm2.6 11.72-5.63 5.62-.22.2V16.1c.08-.85.75-1.53 1.6-1.6l.15-.01h4.28l-.19.22ZM9 7.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const Sticker24Regular = /*#__PURE__*/createFluentIcon('Sticker24Regular', \"24\", [\"M17.75 3C19.55 3 21 4.46 21 6.25v6.88c0 .6-.24 1.17-.66 1.59l-5.62 5.62c-.42.42-1 .66-1.6.66H6.26A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5Zm0 1.5H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75H13v-3.06c-.22.03-.45.05-.67.06l-.33.01a6.33 6.33 0 0 1-3.68-1.14.75.75 0 1 1 .86-1.23 5.05 5.05 0 0 0 4.15.7 3.25 3.25 0 0 1 2.7-1.83l.22-.01h3.25V6.25c0-.97-.78-1.75-1.75-1.75Zm.69 10h-2.19c-.92 0-1.67.7-1.74 1.6v.15l-.01 2.19 3.94-3.94ZM9 7.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const StickerAdd20Filled = /*#__PURE__*/createFluentIcon('StickerAdd20Filled', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6a5.5 5.5 0 0 0-7.78 3.34 4.23 4.23 0 0 1-1.73-.68 1.97 1.97 0 0 1-.14-.11.5.5 0 0 0-.7.7v.01l.02.02a2 2 0 0 0 .22.18 5.22 5.22 0 0 0 2.14.87A5.56 5.56 0 0 0 9.6 17H6a3 3 0 0 1-3-3V6Zm4.5 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm5.5 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const StickerAdd20Regular = /*#__PURE__*/createFluentIcon('StickerAdd20Regular', \"20\", [\"M3 6a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3.6c-.32-.16-.65-.3-1-.4V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8c0 1.1.9 2 2 2h3.2c.1.35.24.68.4 1H6a3 3 0 0 1-3-3V6Zm4.97 6.55c.3.15.72.31 1.25.4-.09.3-.16.64-.19.97a5.22 5.22 0 0 1-2.14-.86 2.93 2.93 0 0 1-.22-.18l-.01-.02h-.01a.5.5 0 0 1 .7-.72 1 1 0 0 0 .14.12c.1.07.26.18.48.3ZM7.5 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5.5 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Zm-4-2a.5.5 0 0 0-1 0V14h-1.5a.5.5 0 0 0 0 1H14v1.5a.5.5 0 0 0 1 0V15h1.5a.5.5 0 0 0 0-1H15v-1.5Z\"]);\nexport const StickerAdd24Filled = /*#__PURE__*/createFluentIcon('StickerAdd24Filled', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H17v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09Zm.25-11C19.55 3 21 4.46 21 6.25v5.77a6.5 6.5 0 0 0-9.5 2.96 4.78 4.78 0 0 1-2.32-.84.75.75 0 1 0-.86 1.23 6.3 6.3 0 0 0 2.77 1.08 6.5 6.5 0 0 0 .93 4.55H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5ZM9 7.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\"]);\nexport const StickerAdd24Regular = /*#__PURE__*/createFluentIcon('StickerAdd24Regular', \"24\", [\"M17.5 12a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 2h-.09a.5.5 0 0 0-.4.4l-.01.1V17h-2.6a.5.5 0 0 0-.4.41v.18c.04.2.2.36.4.4l.1.01H17v2.6c.05.2.2.36.41.4h.18a.5.5 0 0 0 .4-.4l.01-.1V18h2.6a.5.5 0 0 0 .4-.41v-.18a.5.5 0 0 0-.4-.4l-.1-.01H18v-2.6a.5.5 0 0 0-.41-.4h-.09Zm.25-11C19.55 3 21 4.46 21 6.25v5.77c-.46-.3-.97-.53-1.5-.7V6.24c0-.97-.78-1.75-1.75-1.75H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75h5.06c.18.53.42 1.04.71 1.5H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h11.5ZM9.18 14.14c.7.49 1.48.77 2.32.85-.19.46-.33.95-.42 1.46-.99-.14-1.91-.5-2.76-1.08a.75.75 0 1 1 .86-1.23ZM9 7.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Zm6 0a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5Z\"]);\nexport const Stop16Filled = /*#__PURE__*/createFluentIcon('Stop16Filled', \"16\", [\"M3.5 2C2.67 2 2 2.67 2 3.5v9c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const Stop16Regular = /*#__PURE__*/createFluentIcon('Stop16Regular', \"16\", [\"M12.5 3c.28 0 .5.22.5.5v9a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-9c0-.28.22-.5.5-.5h9Zm-9-1C2.67 2 2 2.67 2 3.5v9c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-9c0-.83-.67-1.5-1.5-1.5h-9Z\"]);\nexport const Stop20Filled = /*#__PURE__*/createFluentIcon('Stop20Filled', \"20\", [\"M4.5 3C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const Stop20Regular = /*#__PURE__*/createFluentIcon('Stop20Regular', \"20\", [\"M15.5 4c.28 0 .5.22.5.5v11a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11c0-.28.22-.5.5-.5h11Zm-11-1C3.67 3 3 3.67 3 4.5v11c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-11c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const Stop24Filled = /*#__PURE__*/createFluentIcon('Stop24Filled', \"24\", [\"M4.75 3C3.78 3 3 3.78 3 4.75v14.5c0 .97.78 1.75 1.75 1.75h14.5c.97 0 1.75-.78 1.75-1.75V4.75C21 3.78 20.22 3 19.25 3H4.75Z\"]);\nexport const Stop24Regular = /*#__PURE__*/createFluentIcon('Stop24Regular', \"24\", [\"M19.25 4.5c.14 0 .25.11.25.25v14.5c0 .14-.11.25-.25.25H4.75a.25.25 0 0 1-.25-.25V4.75c0-.14.11-.25.25-.25h14.5ZM4.75 3C3.78 3 3 3.78 3 4.75v14.5c0 .97.78 1.75 1.75 1.75h14.5c.97 0 1.75-.78 1.75-1.75V4.75C21 3.78 20.22 3 19.25 3H4.75Z\"]);\nexport const Storage20Filled = /*#__PURE__*/createFluentIcon('Storage20Filled', \"20\", [\"M2 8.5A2.5 2.5 0 0 1 4.5 6h11A2.5 2.5 0 0 1 18 8.5v3a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 11.5v-3ZM13 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm3 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z\"]);\nexport const Storage20Regular = /*#__PURE__*/createFluentIcon('Storage20Regular', \"20\", [\"M13 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM2 8.5A2.5 2.5 0 0 1 4.5 6h11A2.5 2.5 0 0 1 18 8.5v3a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 11.5v-3ZM4.5 7C3.67 7 3 7.67 3 8.5v3c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5h-11Z\"]);\nexport const Storage24Filled = /*#__PURE__*/createFluentIcon('Storage24Filled', \"24\", [\"M5 7h14a3 3 0 0 1 3 2.82V14a3 3 0 0 1-2.82 3H5a3 3 0 0 1-3-2.82V10a3 3 0 0 1 2.82-3H19 5Zm13 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-4 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z\"]);\nexport const Storage24Regular = /*#__PURE__*/createFluentIcon('Storage24Regular', \"24\", [\"M5 7h14a3 3 0 0 1 3 2.82V14a3 3 0 0 1-2.82 3H5a3 3 0 0 1-3-2.82V10a3 3 0 0 1 2.82-3H19 5Zm14 1.5H5c-.83 0-1.5.67-1.5 1.5v4c0 .83.67 1.5 1.5 1.5h14c.83 0 1.5-.67 1.5-1.5v-4c0-.83-.67-1.5-1.5-1.5ZM18 10a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm-4 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z\"]);\nexport const StoreMicrosoft16Filled = /*#__PURE__*/createFluentIcon('StoreMicrosoft16Filled', \"16\", [\"M5 3.5V5H2.5a.5.5 0 0 0-.5.5V12c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V5.5a.5.5 0 0 0-.5-.5H11V3.5c0-.83-.67-1.5-1.5-1.5h-3C5.67 2 5 2.67 5 3.5ZM6.5 3h3c.28 0 .5.22.5.5V5H6V3.5c0-.28.22-.5.5-.5Zm-1 6V7h2v2h-2Zm0 3v-2h2v2h-2Zm5-3h-2V7h2v2Zm-2 3v-2h2v2h-2Z\"]);\nexport const StoreMicrosoft16Regular = /*#__PURE__*/createFluentIcon('StoreMicrosoft16Regular', \"16\", [\"M7.5 7v2h-2V7h2Zm0 5v-2h-2v2h2Zm3-5v2h-2V7h2Zm0 5v-2h-2v2h2ZM5 5V3.5C5 2.67 5.67 2 6.5 2h3c.83 0 1.5.67 1.5 1.5V5h2.5c.28 0 .5.22.5.5V12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5.5a.5.5 0 0 1 .5-.5H5Zm1-1.5V5h4V3.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5ZM3 12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V6H3v6Z\"]);\nexport const StoreMicrosoft20Filled = /*#__PURE__*/createFluentIcon('StoreMicrosoft20Filled', \"20\", [\"M7 2.5V4H2.5a.5.5 0 0 0-.5.5v10A2.5 2.5 0 0 0 4.5 17h11a2.5 2.5 0 0 0 2.5-2.5v-10a.5.5 0 0 0-.5-.5H13V2.5c0-.83-.67-1.5-1.5-1.5h-3C7.67 1 7 1.67 7 2.5ZM8.5 2h3c.28 0 .5.22.5.5V4H8V2.5c0-.28.22-.5.5-.5Zm-2 8V7h3v3h-3Zm0 4v-3h3v3h-3Zm7-4h-3V7h3v3Zm-3 4v-3h3v3h-3Z\"]);\nexport const StoreMicrosoft20Regular = /*#__PURE__*/createFluentIcon('StoreMicrosoft20Regular', \"20\", [\"M9.5 7v3h-3V7h3Zm0 7v-3h-3v3h3Zm4-7v3h-3V7h3Zm0 7v-3h-3v3h3ZM7 4V2.5C7 1.67 7.67 1 8.5 1h3c.83 0 1.5.67 1.5 1.5V4h4.5c.28 0 .5.22.5.5v10a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5v-10c0-.28.22-.5.5-.5H7Zm1-1.5V4h4V2.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Zm-5 12c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5V5H3v9.5Z\"]);\nexport const StoreMicrosoft24Filled = /*#__PURE__*/createFluentIcon('StoreMicrosoft24Filled', \"24\", [\"M8 3.75V6H2.75a.75.75 0 0 0-.75.75v11.5A2.75 2.75 0 0 0 4.75 21h14.5A2.75 2.75 0 0 0 22 18.25V6.75a.75.75 0 0 0-.75-.75H16V3.75C16 2.78 15.22 2 14.25 2h-4.5C8.78 2 8 2.78 8 3.75Zm1.75-.25h4.5c.14 0 .25.11.25.25V6h-5V3.75c0-.14.11-.25.25-.25ZM8 13V9.5h3.5V13H8Zm0 4.5V14h3.5v3.5H8Zm8-4.5h-3.5V9.5H16V13Zm-3.5 4.5V14H16v3.5h-3.5Z\"]);\nexport const StoreMicrosoft24Regular = /*#__PURE__*/createFluentIcon('StoreMicrosoft24Regular', \"24\", [\"M11.5 9.5V13H8V9.5h3.5Zm0 8V14H8v3.5h3.5Zm4.5-8V13h-3.5V9.5H16Zm0 8V14h-3.5v3.5H16ZM8 6V3.75C8 2.78 8.78 2 9.75 2h4.5c.97 0 1.75.78 1.75 1.75V6h5.25c.41 0 .75.34.75.75v11.5A2.75 2.75 0 0 1 19.25 21H4.75A2.75 2.75 0 0 1 2 18.25V6.75c0-.41.34-.75.75-.75H8Zm1.5-2.25V6h5V3.75a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25Zm-6 14.5c0 .69.56 1.25 1.25 1.25h14.5c.69 0 1.25-.56 1.25-1.25V7.5h-17v10.75Z\"]);\nexport const Stream20Filled = /*#__PURE__*/createFluentIcon('Stream20Filled', \"20\", [\"M7.5 9.25a5.75 5.75 0 0 1 5.75-5.75h.5a.75.75 0 0 0 0-1.5h-.5C9.25 2 6 5.25 6 9.25v1c0 .41-.34.75-.75.75h-2.5a.75.75 0 0 0 0 1.5h2.5c1.24 0 2.25-1 2.25-2.25v-1Zm6.25-3A3.25 3.25 0 0 0 10.5 9.5v1a4.75 4.75 0 0 1-4.75 4.75h-3a.75.75 0 0 1 0-1.5h3c1.8 0 3.25-1.46 3.25-3.25v-1a4.75 4.75 0 0 1 4.75-4.75h3.5a.75.75 0 0 1 0 1.5h-3.5Zm.5 2.75a.75.75 0 0 0-.75.75v1c0 4-3.25 7.25-7.25 7.25h-.5a.75.75 0 0 1 0-1.5h.5A5.75 5.75 0 0 0 12 10.75v-1c0-1.24 1-2.25 2.25-2.25h3a.75.75 0 0 1 0 1.5h-3Z\"]);\nexport const Stream20Regular = /*#__PURE__*/createFluentIcon('Stream20Regular', \"20\", [\"M7 9a6 6 0 0 1 6-6h.5a.5.5 0 0 0 0-1H13a7 7 0 0 0-7 7v1a1 1 0 0 1-1 1H2.5a.5.5 0 0 0 0 1H5a2 2 0 0 0 2-2V9Zm6.5-3A3.5 3.5 0 0 0 10 9.5v1A4.5 4.5 0 0 1 5.5 15h-3a.5.5 0 0 1 0-1h3A3.5 3.5 0 0 0 9 10.5v-1A4.5 4.5 0 0 1 13.5 5h4a.5.5 0 0 1 0 1h-4Zm.5 3a1 1 0 0 0-1 1v1a7 7 0 0 1-7 7h-.5a.5.5 0 0 1 0-1H6a6 6 0 0 0 6-6v-1c0-1.1.9-2 2-2h3.5a.5.5 0 0 1 0 1H14Z\"]);\nexport const Stream24Filled = /*#__PURE__*/createFluentIcon('Stream24Filled', \"24\", [\"M9 11a7 7 0 0 1 7-7h1.5a1 1 0 1 0 0-2H16a9 9 0 0 0-9 9 1 1 0 0 1-1 1H3a1 1 0 1 0 0 2h3a3 3 0 0 0 3-3Zm8-3a4 4 0 0 0-4 4 6 6 0 0 1-6 6H3a1 1 0 1 1 0-2h4a4 4 0 0 0 4-4 6 6 0 0 1 6-6h4a1 1 0 1 1 0 2h-4Zm1 4a1 1 0 0 0-1 1 9 9 0 0 1-9 9H6a1 1 0 1 1 0-2h2a7 7 0 0 0 7-7 3 3 0 0 1 3-3h3a1 1 0 1 1 0 2h-3Z\"]);\nexport const Stream24Regular = /*#__PURE__*/createFluentIcon('Stream24Regular', \"24\", [\"M9 11a7.5 7.5 0 0 1 7.5-7.5h.1a.75.75 0 0 0 0-1.5h-.1a9 9 0 0 0-9 9v1.25c0 .69-.56 1.25-1.25 1.25h-3.5a.75.75 0 0 0 0 1.5h3.5A2.75 2.75 0 0 0 9 12.25V11Zm7.75-4a4.25 4.25 0 0 0-4.25 4.25v1.5a5.75 5.75 0 0 1-5.75 5.75h-4a.75.75 0 0 1 0-1.5h4C9.1 17 11 15.1 11 12.75v-1.5a5.75 5.75 0 0 1 5.75-5.75h4.5a.75.75 0 0 1 0 1.5h-4.5Zm.5 3.5c-.69 0-1.25.56-1.25 1.25V13a9 9 0 0 1-9 9h-.25a.75.75 0 0 1 0-1.5H7a7.5 7.5 0 0 0 7.5-7.5v-1.25A2.75 2.75 0 0 1 17.25 9h4a.75.75 0 0 1 0 1.5h-4Z\"]);\nexport const Stream32Filled = /*#__PURE__*/createFluentIcon('Stream32Filled', \"32\", [\"M20.75 3A10.75 10.75 0 0 0 10 13.75v1C10 15.99 9 17 7.75 17h-3.5a1.25 1.25 0 1 0 0 2.5h3.5a4.75 4.75 0 0 0 4.75-4.75v-1c0-4.56 3.7-8.25 8.25-8.25h2a1.25 1.25 0 1 0 0-2.5h-2Zm-6.5 11.75A6.75 6.75 0 0 1 21 8h6.75a1.25 1.25 0 1 1 0 2.5H21a4.25 4.25 0 0 0-4.25 4.25v2A7.75 7.75 0 0 1 9 24.5H4.25a1.25 1.25 0 1 1 0-2.5H9c2.9 0 5.25-2.35 5.25-5.25v-2Zm7 3.89A11.09 11.09 0 0 1 10.16 29.5h-.91a1.25 1.25 0 0 1 0-2.5h.91a8.59 8.59 0 0 0 8.59-8.59v-2.16c0-1.8 1.46-3.25 3.25-3.25h5.75a1.25 1.25 0 1 1 0 2.5H22a.75.75 0 0 0-.75.75v2.39Z\"]);\nexport const Stream32Regular = /*#__PURE__*/createFluentIcon('Stream32Regular', \"32\", [\"M20.5 3C14.7 3 10 7.7 10 13.5v1A2.5 2.5 0 0 1 7.5 17H4a1 1 0 1 0 0 2h3.5a4.5 4.5 0 0 0 4.5-4.5v-1C12 8.8 15.8 5 20.5 5H23a1 1 0 1 0 0-2h-2.5Zm-6 11.5A6.5 6.5 0 0 1 21 8h7a1 1 0 1 1 0 2h-7a4.5 4.5 0 0 0-4.5 4.5v2A7.5 7.5 0 0 1 9 24H4a1 1 0 1 1 0-2h5a5.5 5.5 0 0 0 5.5-5.5v-2ZM9 27h1.16A8.84 8.84 0 0 0 19 18.16V16a3 3 0 0 1 3-3h6a1 1 0 1 1 0 2h-6a1 1 0 0 0-1 1v2.31A10.84 10.84 0 0 1 10.16 29H9a1 1 0 1 1 0-2Z\"]);"],"names":["IconDirectionContext","React.createContext","IconDirectionContextDefaultValue","useIconContext","React.useContext","useRootStyles","__styles","useIconState","props","options","title","primaryFill","rest","state","styles","iconContext","mergeClasses","createFluentIcon","displayName","width","paths","viewBoxWidth","Icon","React.forwardRef","ref","React.createElement","d","SparkleFilled","Delete24Regular","ErrorCircle24Regular","Send28Filled","Settings24Regular","Sparkle28Filled"],"mappings":"uDACA,MAAMA,EAAuBC,EAAAA,cAAoB,MAAS,EACpDC,EAAmC,CAAA,EACGF,EAAqB,SAC1D,MAAMG,EAAiB,IAAMC,EAAAA,WAAiBJ,CAAoB,EAAII,EAAgB,WAACJ,CAAoB,EAAIE,ECFhHG,EAAgBC,EAAS,CAC7B,KAAQ,CACN,OAAU,WACV,QAAW,UACX,OAAU,SACX,EACD,IAAO,CACL,QAAW,UACZ,CACH,EAAG,CACD,EAAK,CAAC,6BAA8B,2BAA4B,kHAAkH,EAClL,EAAK,CAAC,qEAAqE,CAC7E,CAAC,EACYC,EAAe,CAACC,EAAOC,IAAY,CAC9C,KAAM,CACJ,MAAAC,EACA,YAAAC,EAAc,eACd,GAAGC,CACJ,EAAGJ,EACEK,EAAQ,CACZ,GAAGD,EACH,MAAO,OACP,KAAMD,CACV,EACQG,EAAST,IACTU,EAAcZ,IACpB,OAAAU,EAAM,UAAYG,EAAaF,EAAO,KAAyDL,GAAQ,WAAyEM,GAAY,gBAAmB,OAASD,EAAO,IAAKD,EAAM,SAAS,EAC/OH,IACFG,EAAM,YAAY,EAAIH,GAEpB,CAACG,EAAM,YAAY,GAAK,CAACA,EAAM,iBAAiB,EAClDA,EAAM,aAAa,EAAI,GAEvBA,EAAM,KAAU,MAEXA,CACT,ECpCaI,EAAmB,CAACC,EAAaC,EAAOC,EAAOX,IAAY,CACtE,MAAMY,EAAeF,IAAU,MAAQ,KAAOA,EACxCG,EAAOC,EAAAA,WAAiB,CAACf,EAAOgB,IAAQ,CAC5C,MAAMX,EAAQ,CACZ,GAAGN,EAAaC,EAAO,CACrB,UAA6DC,GAAQ,SAC7E,CAAO,EACD,IAAAe,EACA,MAAAL,EACA,OAAQA,EACR,QAAS,OAAOE,CAAY,IAAIA,CAAY,GAC5C,MAAO,4BACb,EACI,OAAOI,EAAmB,cAAC,MAAOZ,EAAO,GAAGO,EAAM,IAAIM,GAAKD,EAAmB,cAAC,OAAQ,CACrF,EAAAC,EACA,KAAMb,EAAM,IACb,CAAA,CAAC,CAAC,CACP,CAAG,EACD,OAAAS,EAAK,YAAcJ,EACZI,CACT,EC2mBaK,EAA6BV,EAAiB,gBAAiB,MAAO,CAAC,kkBAAkkB,CAAC,ECzJ1oBW,EAA+BX,EAAiB,kBAAmB,KAAM,CAAC,0ZAA0Z,CAAC,ECkVreY,EAAoCZ,EAAiB,uBAAwB,KAAM,CAAC,yNAAyN,CAAC,EC+E9Sa,EAA4Bb,EAAiB,eAAgB,KAAM,CAAC,yMAAyM,EAAG,CAC3R,UAAW,EACb,CAAC,EA2GYc,EAAiCd,EAAiB,oBAAqB,KAAM,CAAC,+pCAA+pC,CAAC,ECzc9uCe,EAA+Bf,EAAiB,kBAAmB,KAAM,CAAC,upBAAupB,CAAC","x_google_ignoreList":[0,1,2,3,4,5,6,7]} \ No newline at end of file diff --git a/src/static/assets/fluentui-react-ad752538.js b/src/static/assets/fluentui-react-ad752538.js new file mode 100644 index 00000000..e07bc5df --- /dev/null +++ b/src/static/assets/fluentui-react-ad752538.js @@ -0,0 +1,6 @@ +import{R as pt,g as ps,a as p,b as Be,r as l,A as $r,u as nr,c as De,d as re,o as tt,e as Bt,f as Ir,K as z,h as oe,i as Ve,j as hs,k as Da,l as Er,n as Qe,p as xe,q as he,s as Sn,t as gs,v as Ye,w as Ie,Z as Ra,H as T,x as bs,y as Ce,z as ge,B as ys,F as Fa,C as _s,D as La,I as ye,E as Aa,G as xs,J as Cs,L as qt,M as ks,N as xt,O as ws,P as Ss,Q as Bs,S as Zr,T as Is,U as ir,V as Ee,W as Oa,X as vr,Y as Xt,$ as Jt,a0 as Es,a1 as er,a2 as Tt,a3 as Ts,a4 as Ns,a5 as Ps,a6 as Ms,a7 as Ds,a8 as Ha,a9 as za,aa as gr,ab as ja,ac as ht,ad as fe,ae as Ze,af as Tr,ag as wo,ah as Wa,ai as Bn,aj as Ct,ak as Rs,al as Nr,am as rt,an as qa,ao as po,ap as Fs,aq as In,ar as br,as as vn,at as pn,au as Ka,av as Va,aw as Wt,ax as Ls,ay as Ho,az as As,aA as xr,aB as So,aC as Bo,aD as En,aE as Os,aF as Ua,aG as Hs,aH as zs,aI as js,aJ as Ws,aK as yr,aL as hn,aM as Vn,aN as qs,aO as Ks,aP as Vs,aQ as Us,aR as Gs,aS as Or,aT as $s,aU as Zs,aV as Ys,aW as Tn,aX as et,aY as Xs,aZ as Js,a_ as Ga,a$ as Qs,b0 as Un,b1 as el,b2 as Gn,b3 as $a,b4 as Za,b5 as vo,b6 as Ya,b7 as tl,b8 as rl,b9 as ho,ba as ol,bb as zo,bc as ro,bd as nl,be as al,bf as il,bg as sl,bh as ll,bi as ul,bj as cl,bk as dl,bl as $n,_ as sr,m as go,bm as fl,bn as ml,bo as Xa}from"./vendor-9c5496e3.js";var pe={topLeftEdge:0,topCenter:1,topRightEdge:2,topAutoEdge:3,bottomLeftEdge:4,bottomCenter:5,bottomRightEdge:6,bottomAutoEdge:7,leftTopEdge:8,leftCenter:9,leftBottomEdge:10,rightTopEdge:11,rightCenter:12,rightBottomEdge:13},q;(function(t){t[t.top=1]="top",t[t.bottom=-1]="bottom",t[t.left=2]="left",t[t.right=-2]="right"})(q||(q={}));var mt;(function(t){t[t.top=0]="top",t[t.bottom=1]="bottom",t[t.start=2]="start",t[t.end=3]="end"})(mt||(mt={}));var Re;function qe(t,o,r){return{targetEdge:t,alignmentEdge:o,isAuto:r}}var Zn=(Re={},Re[pe.topLeftEdge]=qe(q.top,q.left),Re[pe.topCenter]=qe(q.top),Re[pe.topRightEdge]=qe(q.top,q.right),Re[pe.topAutoEdge]=qe(q.top,void 0,!0),Re[pe.bottomLeftEdge]=qe(q.bottom,q.left),Re[pe.bottomCenter]=qe(q.bottom),Re[pe.bottomRightEdge]=qe(q.bottom,q.right),Re[pe.bottomAutoEdge]=qe(q.bottom,void 0,!0),Re[pe.leftTopEdge]=qe(q.left,q.top),Re[pe.leftCenter]=qe(q.left),Re[pe.leftBottomEdge]=qe(q.left,q.bottom),Re[pe.rightTopEdge]=qe(q.right,q.top),Re[pe.rightCenter]=qe(q.right),Re[pe.rightBottomEdge]=qe(q.right,q.bottom),Re);function Nn(t,o){return!(t.topo.bottom||t.lefto.right)}function bo(t,o){var r=[];return t.topo.bottom&&r.push(q.bottom),t.lefto.right&&r.push(q.right),r}function Le(t,o){return t[q[o]]}function Yn(t,o,r){return t[q[o]]=r,t}function zr(t,o){var r=Pr(o);return(Le(t,r.positiveEdge)+Le(t,r.negativeEdge))/2}function Io(t,o){return t>0?o:o*-1}function gn(t,o){return Io(t,Le(o,t))}function wt(t,o,r){var e=Le(t,r)-Le(o,r);return Io(r,e)}function Cr(t,o,r,e){e===void 0&&(e=!0);var n=Le(t,o)-r,a=Yn(t,o,r);return e&&(a=Yn(t,o*-1,Le(t,o*-1)-n)),a}function jr(t,o,r,e){return e===void 0&&(e=0),Cr(t,r,Le(o,r)+Io(r,e))}function vl(t,o,r,e){e===void 0&&(e=0);var n=r*-1,a=Io(n,e);return Cr(t,r*-1,Le(o,r)+a)}function yo(t,o,r){var e=gn(r,t);return e>gn(r,o)}function pl(t,o){for(var r=bo(t,o),e=0,n=0,a=r;n0&&(a.indexOf(s*-1)>-1?s=s*-1:(u=s,s=a.slice(-1)[0]),i=_o(t,o,{targetEdge:s,alignmentEdge:u},n))}return i=_o(t,o,{targetEdge:f,alignmentEdge:d},n),{elementRectangle:i,targetEdge:f,alignmentEdge:d}}function gl(t,o,r,e){var n=t.alignmentEdge,a=t.targetEdge,i=t.elementRectangle,s=n*-1,u=_o(i,o,{targetEdge:a,alignmentEdge:s},r,e);return{elementRectangle:u,targetEdge:a,alignmentEdge:s}}function bl(t,o,r,e,n,a,i){n===void 0&&(n=0);var s=e.alignmentEdge,u=e.alignTargetEdge,c={elementRectangle:t,targetEdge:e.targetEdge,alignmentEdge:s};!a&&!i&&(c=hl(t,o,r,e,n));var f=bo(c.elementRectangle,r),d=a?-c.targetEdge:void 0;if(f.length>0)if(u)if(c.alignmentEdge&&f.indexOf(c.alignmentEdge*-1)>-1){var v=gl(c,o,n,i);if(Nn(v.elementRectangle,r))return v;c=jo(bo(v.elementRectangle,r),c,r,d)}else c=jo(f,c,r,d);else c=jo(f,c,r,d);return c}function jo(t,o,r,e){for(var n=0,a=t;nMath.abs(wt(t,r,o*-1))?o*-1:o}function yl(t,o,r){return r!==void 0&&Le(t,o)===Le(r,o)}function _l(t,o,r,e,n,a,i,s){var u={},c=Pn(o),f=a?r:r*-1,d=n||Pr(r).positiveEdge;return(!i||yl(t,Rl(d),e))&&(d=Qa(t,d,e)),u[q[f]]=wt(t,c,f),u[q[d]]=wt(t,c,d),s&&(u[q[f*-1]]=wt(t,c,f*-1),u[q[d*-1]]=wt(t,c,d*-1)),u}function xl(t){return Math.sqrt(t*t*2)}function Cl(t,o,r){if(t===void 0&&(t=pe.bottomAutoEdge),r)return{alignmentEdge:r.alignmentEdge,isAuto:r.isAuto,targetEdge:r.targetEdge};var e=p({},Zn[t]);return Be()?(e.alignmentEdge&&e.alignmentEdge%2===0&&(e.alignmentEdge=e.alignmentEdge*-1),o!==void 0?Zn[o]:e):e}function kl(t,o,r,e,n){return t.isAuto&&(t.alignmentEdge=ei(t.targetEdge,o,r)),t.alignTargetEdge=n,t}function ei(t,o,r){var e=zr(o,t),n=zr(r,t),a=Pr(t),i=a.positiveEdge,s=a.negativeEdge;return e<=n?i:s}function wl(t,o,r,e,n,a,i){var s=_o(t,o,e,n,i);return Nn(s,r)?{elementRectangle:s,targetEdge:e.targetEdge,alignmentEdge:e.alignmentEdge}:bl(s,o,r,e,n,a,i)}function Sl(t,o,r){var e=t.targetEdge*-1,n=new pt(0,t.elementRectangle.width,0,t.elementRectangle.height),a={},i=Qa(t.elementRectangle,t.alignmentEdge?t.alignmentEdge:Pr(e).positiveEdge,r),s=wt(t.elementRectangle,t.targetRectangle,e),u=s>Math.abs(Le(o,e));return a[q[e]]=Le(o,e),a[q[i]]=wt(o,n,i),{elementPosition:p({},a),closestEdge:ei(t.targetEdge,o,n),targetEdge:e,hideBeak:!u}}function Bl(t,o){var r=o.targetRectangle,e=Pr(o.targetEdge),n=e.positiveEdge,a=e.negativeEdge,i=zr(r,o.targetEdge),s=new pt(t/2,o.elementRectangle.width-t/2,t/2,o.elementRectangle.height-t/2),u=new pt(0,t,0,t);return u=Cr(u,o.targetEdge*-1,-t/2),u=Ja(u,o.targetEdge*-1,i-gn(n,o.elementRectangle)),yo(u,s,n)?yo(u,s,a)||(u=jr(u,s,a)):u=jr(u,s,n),u}function Pn(t){var o=t.getBoundingClientRect();return new pt(o.left,o.right,o.top,o.bottom)}function Il(t){return new pt(t.left,t.right,t.top,t.bottom)}function El(t,o){var r;if(o){if(o.preventDefault){var e=o;r=new pt(e.clientX,e.clientX,e.clientY,e.clientY)}else if(o.getBoundingClientRect)r=Pn(o);else{var n=o,a=n.left||n.x,i=n.top||n.y,s=n.right||a,u=n.bottom||i;r=new pt(a,s,i,u)}if(!Nn(r,t))for(var c=bo(r,t),f=0,d=c;f=e&&n&&c.top<=n&&c.bottom>=n&&(i={top:c.top,left:c.left,right:c.right,bottom:c.bottom,width:c.width,height:c.height})}return i}function Ll(t,o){return Fl(t,o)}function lr(){var t=l.useRef();return t.current||(t.current=new $r),l.useEffect(function(){return function(){var o;(o=t.current)===null||o===void 0||o.dispose(),t.current=void 0}},[]),t.current}function ot(t){var o=l.useRef();return o.current===void 0&&(o.current={value:typeof t=="function"?t():t}),o.current.value}function Al(t){var o=l.useState(t),r=o[0],e=o[1],n=ot(function(){return function(){e(!0)}}),a=ot(function(){return function(){e(!1)}}),i=ot(function(){return function(){e(function(s){return!s})}});return[r,{setTrue:n,setFalse:a,toggle:i}]}function kr(t,o,r){var e=l.useState(o),n=e[0],a=e[1],i=ot(t!==void 0),s=i?t:n,u=l.useRef(s),c=l.useRef(r);l.useEffect(function(){u.current=s,c.current=r});var f=ot(function(){return function(d,v){var m=typeof d=="function"?d(u.current):d;c.current&&c.current(v,m),i||a(m)}});return[s,f]}function Wo(t){var o=l.useRef(function(){throw new Error("Cannot call an event handler while rendering")});return nr(function(){o.current=t},[t]),ot(function(){return function(){for(var r=[],e=0;e0&&c>u&&(s=c-u>1)}n!==s&&a(s)}}),function(){return r.dispose()}}),n}function Wl(t){var o=t.originalElement,r=t.containsFocus;o&&r&&o!==Er()&&setTimeout(function(){var e;(e=o.focus)===null||e===void 0||e.call(o)},0)}function ql(t,o){var r=t.onRestoreFocus,e=r===void 0?Wl:r,n=l.useRef(),a=l.useRef(!1);l.useEffect(function(){return n.current=Bt().activeElement,hs(o.current)&&(a.current=!0),function(){var i;e?.({originalElement:n.current,containsFocus:a.current,documentContainsFocus:((i=Bt())===null||i===void 0?void 0:i.hasFocus())||!1}),n.current=void 0}},[]),Wr(o,"focus",l.useCallback(function(){a.current=!0},[]),!0),Wr(o,"blur",l.useCallback(function(i){o.current&&i.relatedTarget&&!o.current.contains(i.relatedTarget)&&(a.current=!1)},[]),!0)}function Kl(t,o){var r=String(t["aria-modal"]).toLowerCase()==="true"&&t.enableAriaHiddenSiblings;l.useEffect(function(){if(r&&o.current){var e=Da(o.current);return e}},[o,r])}var Dn=l.forwardRef(function(t,o){var r=Ir({shouldRestoreFocus:!0,enableAriaHiddenSiblings:!0},t),e=l.useRef(),n=gt(e,o);Kl(r,e),ql(r,e);var a=r.role,i=r.className,s=r.ariaLabel,u=r.ariaLabelledBy,c=r.ariaDescribedBy,f=r.style,d=r.children,v=r.onDismiss,m=jl(r,e),y=l.useCallback(function(h){switch(h.which){case z.escape:v&&(v(h),h.preventDefault(),h.stopPropagation());break}},[v]),g=Mn();return Wr(g,"keydown",y),l.createElement("div",p({ref:n},oe(r,Ve),{className:i,role:a,"aria-label":s,"aria-labelledby":u,"aria-describedby":c,onKeyDown:y,style:p({overflowY:m?"scroll":void 0,outline:"none"},f)}),d)});Dn.displayName="Popup";var pr,Vl="CalloutContentBase",Ul=(pr={},pr[q.top]=Qe.slideUpIn10,pr[q.bottom]=Qe.slideDownIn10,pr[q.left]=Qe.slideLeftIn10,pr[q.right]=Qe.slideRightIn10,pr),Jn={top:0,left:0},Gl={opacity:0,filter:"opacity(0)",pointerEvents:"none"},$l=["role","aria-roledescription"],ni={preventDismissOnLostFocus:!1,preventDismissOnScroll:!1,preventDismissOnResize:!1,isBeakVisible:!0,beakWidth:16,gapSpace:0,minPagePadding:8,directionalHint:pe.bottomAutoEdge},Zl=xe({disableCaching:!0});function Yl(t,o,r){var e=t.bounds,n=t.minPagePadding,a=n===void 0?ni.minPagePadding:n,i=t.target,s=l.useState(!1),u=s[0],c=s[1],f=l.useRef(),d=l.useCallback(function(){if(!f.current||u){var m=typeof e=="function"?r?e(i,r):void 0:e;!m&&r&&(m=Ll(o.current,r),m={top:m.top+a,left:m.left+a,right:m.right-a,bottom:m.bottom-a,width:m.width-a*2,height:m.height-a*2}),f.current=m,u&&c(!1)}return f.current},[e,a,i,o,r,u]),v=lr();return Wr(r,"resize",v.debounce(function(){c(!0)},500,{leading:!0})),d}function Xl(t,o,r){var e,n=t.calloutMaxHeight,a=t.finalHeight,i=t.directionalHint,s=t.directionalHintFixed,u=t.hidden,c=l.useState(),f=c[0],d=c[1],v=(e=r?.elementPosition)!==null&&e!==void 0?e:{},m=v.top,y=v.bottom;return l.useEffect(function(){var g,h=(g=o())!==null&&g!==void 0?g:{},x=h.top,_=h.bottom,B;typeof m=="number"&&_?B=_-m:typeof y=="number"&&typeof x=="number"&&_&&(B=_-x-y),!n&&!u||n&&B&&n>B?d(B):d(n||void 0)},[y,n,a,i,s,o,u,r,m]),f}function Jl(t,o,r,e,n){var a=l.useState(),i=a[0],s=a[1],u=l.useRef(0),c=l.useRef(),f=lr(),d=t.hidden,v=t.target,m=t.finalHeight,y=t.calloutMaxHeight,g=t.onPositioned,h=t.directionalHint;return l.useEffect(function(){if(d)s(void 0),u.current=0;else{var x=f.requestAnimationFrame(function(){var _,B;if(o.current&&r){var C=p(p({},t),{target:e.current,bounds:n()}),k=r.cloneNode(!0);k.style.maxHeight=y?"".concat(y):"",k.style.visibility="hidden",(_=r.parentElement)===null||_===void 0||_.appendChild(k);var w=c.current===v?i:void 0,b=m?Dl(C,o.current,k,w):Ml(C,o.current,k,w);(B=r.parentElement)===null||B===void 0||B.removeChild(k),!i&&b||i&&b&&!ru(i,b)&&u.current<5?(u.current++,s(b)):u.current>0&&(u.current=0,g?.(i))}},r);return c.current=v,function(){f.cancelAnimationFrame(x),c.current=void 0}}},[d,h,f,r,y,o,e,m,n,g,i,t,v]),i}function Ql(t,o,r){var e=t.hidden,n=t.setInitialFocus,a=lr(),i=!!o;l.useEffect(function(){if(!e&&n&&i&&r){var s=a.requestAnimationFrame(function(){return gs(r)},r);return function(){return a.cancelAnimationFrame(s)}}},[e,i,a,r,n])}function eu(t,o,r,e,n){var a=t.hidden,i=t.onDismiss,s=t.preventDismissOnScroll,u=t.preventDismissOnResize,c=t.preventDismissOnLostFocus,f=t.dismissOnTargetClick,d=t.shouldDismissOnWindowFocus,v=t.preventDismissOnEvent,m=l.useRef(!1),y=lr(),g=ot([function(){m.current=!0},function(){m.current=!1}]),h=!!o;return l.useEffect(function(){var x=function(b){h&&!s&&C(b)},_=function(b){!u&&!(v&&v(b))&&i?.(b)},B=function(b){c||C(b)},C=function(b){var S=b.composedPath?b.composedPath():[],P=S.length>0?S[0]:b.target,I=r.current&&!Ye(r.current,P);if(I&&m.current){m.current=!1;return}if(!e.current&&I||b.target!==n&&I&&(!e.current||"stopPropagation"in e.current||f||P!==e.current&&!Ye(e.current,P))){if(v&&v(b))return;i?.(b)}},k=function(b){d&&(v&&!v(b)||!v&&!c)&&!n?.document.hasFocus()&&b.relatedTarget===null&&i?.(b)},w=new Promise(function(b){y.setTimeout(function(){if(!a&&n){var S=[tt(n,"scroll",x,!0),tt(n,"resize",_,!0),tt(n.document.documentElement,"focus",B,!0),tt(n.document.documentElement,"click",B,!0),tt(n,"blur",k,!0)];b(function(){S.forEach(function(P){return P()})})}},0)});return function(){w.then(function(b){return b()})}},[a,y,r,e,n,i,d,f,c,u,s,h,v]),g}var ai=l.memo(l.forwardRef(function(t,o){var r=Ir(ni,t),e=r.styles,n=r.style,a=r.ariaLabel,i=r.ariaDescribedBy,s=r.ariaLabelledBy,u=r.className,c=r.isBeakVisible,f=r.children,d=r.beakWidth,v=r.calloutWidth,m=r.calloutMaxWidth,y=r.calloutMinWidth,g=r.doNotLayer,h=r.finalHeight,x=r.hideOverflow,_=x===void 0?!!h:x,B=r.backgroundColor,C=r.calloutMaxHeight,k=r.onScroll,w=r.shouldRestoreFocus,b=w===void 0?!0:w,S=r.target,P=r.hidden,I=r.onLayerMounted,A=r.popupProps,D=l.useRef(null),W=l.useState(null),M=W[0],E=W[1],N=l.useCallback(function(st){E(st)},[]),H=gt(D,o),R=oi(r.target,{current:M}),F=R[0],O=R[1],j=Yl(r,F,O),K=Jl(r,D,M,F,j),le=Xl(r,j,K),J=eu(r,K,D,F,O),Q=J[0],V=J[1],me=K?.elementPosition.top&&K?.elementPosition.bottom,Y=p(p({},K?.elementPosition),{maxHeight:le});if(me&&(Y.bottom=void 0),Ql(r,K,M),l.useEffect(function(){P||I?.()},[P]),!O)return null;var we=_,ie=c&&!!S,ce=Zl(e,{theme:r.theme,className:u,overflowYHidden:we,calloutWidth:v,positions:K,beakWidth:d,backgroundColor:B,calloutMaxWidth:m,calloutMinWidth:y,doNotLayer:g}),ze=p(p({maxHeight:C||"100%"},n),we&&{overflowY:"hidden"}),Se=r.hidden?{visibility:"hidden"}:void 0;return l.createElement("div",{ref:H,className:ce.container,style:Se},l.createElement("div",p({},oe(r,Ve,$l),{className:he(ce.root,K&&K.targetEdge&&Ul[K.targetEdge]),style:K?p({},Y):Gl,tabIndex:-1,ref:N}),ie&&l.createElement("div",{className:ce.beak,style:tu(K)}),ie&&l.createElement("div",{className:ce.beakCurtain}),l.createElement(Dn,p({role:r.role,"aria-roledescription":r["aria-roledescription"],ariaDescribedBy:i,ariaLabel:a,ariaLabelledBy:s,className:ce.calloutMain,onDismiss:r.onDismiss,onMouseDown:Q,onMouseUp:V,onRestoreFocus:r.onRestoreFocus,onScroll:k,shouldRestoreFocus:b,style:ze},A),f)))}),function(t,o){return!o.shouldUpdateWhenHidden&&t.hidden&&o.hidden?!0:Sn(t,o)});function tu(t){var o,r,e=p(p({},(o=t?.beakPosition)===null||o===void 0?void 0:o.elementPosition),{display:!((r=t?.beakPosition)===null||r===void 0)&&r.hideBeak?"none":void 0});return!e.top&&!e.bottom&&!e.left&&!e.right&&(e.left=Jn.left,e.top=Jn.top),e}function ru(t,o){return Qn(t.elementPosition,o.elementPosition)&&Qn(t.beakPosition.elementPosition,o.beakPosition.elementPosition)}function Qn(t,o){for(var r in o)if(o.hasOwnProperty(r)){var e=t[r],n=o[r];if(e!==void 0&&n!==void 0){if(e.toFixed(2)!==n.toFixed(2))return!1}else return!1}return!0}ai.displayName=Vl;function ou(t){return{height:t,width:t}}var nu={container:"ms-Callout-container",root:"ms-Callout",beak:"ms-Callout-beak",beakCurtain:"ms-Callout-beakCurtain",calloutMain:"ms-Callout-main"},au=function(t){var o,r=t.theme,e=t.className,n=t.overflowYHidden,a=t.calloutWidth,i=t.beakWidth,s=t.backgroundColor,u=t.calloutMaxWidth,c=t.calloutMinWidth,f=t.doNotLayer,d=Ie(nu,r),v=r.semanticColors,m=r.effects;return{container:[d.container,{position:"relative"}],root:[d.root,r.fonts.medium,{position:"absolute",display:"flex",zIndex:f?Ra.Layer:void 0,boxSizing:"border-box",borderRadius:m.roundedCorner2,boxShadow:m.elevation16,selectors:(o={},o[T]={borderWidth:1,borderStyle:"solid",borderColor:"WindowText"},o)},bs(),e,!!a&&{width:a},!!u&&{maxWidth:u},!!c&&{minWidth:c}],beak:[d.beak,{position:"absolute",backgroundColor:v.menuBackground,boxShadow:"inherit",border:"inherit",boxSizing:"border-box",transform:"rotate(45deg)"},ou(i),s&&{backgroundColor:s}],beakCurtain:[d.beakCurtain,{position:"absolute",top:0,right:0,bottom:0,left:0,backgroundColor:v.menuBackground,borderRadius:m.roundedCorner2}],calloutMain:[d.calloutMain,{backgroundColor:v.menuBackground,overflowX:"hidden",overflowY:"auto",position:"relative",width:"100%",borderRadius:m.roundedCorner2},n&&{overflowY:"hidden"},s&&{backgroundColor:s}]}},iu=Ce(ai,au,void 0,{scope:"CalloutContent"});const ii=l.createContext(void 0),su=()=>()=>{};ii.Provider;function lu(){var t;return(t=l.useContext(ii))!==null&&t!==void 0?t:su}var uu=xe(),cu=ge(function(t,o){return ys(p(p({},t),{rtl:o}))}),du=function(t){var o=t.theme,r=t.dir,e=Be(o)?"rtl":"ltr",n=Be()?"rtl":"ltr",a=r||e;return{rootDir:a!==e||a!==n?a:r,needsTheme:a!==e}},si=l.forwardRef(function(t,o){var r=t.className,e=t.theme,n=t.applyTheme,a=t.applyThemeToBody,i=t.styles,s=uu(i,{theme:e,applyTheme:n,className:r}),u=l.useRef(null);return mu(a,s,u),l.createElement(l.Fragment,null,fu(t,s,u,o))});si.displayName="FabricBase";function fu(t,o,r,e){var n=o.root,a=t.as,i=a===void 0?"div":a,s=t.dir,u=t.theme,c=oe(t,Ve,["dir"]),f=du(t),d=f.rootDir,v=f.needsTheme,m=l.createElement(Fa,{providerRef:r},l.createElement(i,p({dir:d},c,{className:n,ref:gt(r,e)})));return v&&(m=l.createElement(_s,{settings:{theme:cu(u,s==="rtl")}},m)),m}function mu(t,o,r){var e=o.bodyThemed;return l.useEffect(function(){if(t){var n=Bt(r.current);if(n)return n.body.classList.add(e),function(){n.body.classList.remove(e)}}},[e,t,r]),r}var qo={fontFamily:"inherit"},vu={root:"ms-Fabric",bodyThemed:"ms-Fabric-bodyThemed"},pu=function(t){var o=t.applyTheme,r=t.className,e=t.preventBlanketFontInheritance,n=t.theme,a=Ie(vu,n);return{root:[a.root,n.fonts.medium,{color:n.palette.neutralPrimary},!e&&{"& button":qo,"& input":qo,"& textarea":qo},o&&{color:n.semanticColors.bodyText,backgroundColor:n.semanticColors.bodyBackground},r],bodyThemed:[{backgroundColor:n.semanticColors.bodyBackground}]}},hu=Ce(si,pu,void 0,{scope:"Fabric"}),Hr={},Rn={},li="fluent-default-layer-host",gu="#".concat(li);function bu(t,o){Hr[t]||(Hr[t]=[]),Hr[t].push(o);var r=Rn[t];if(r)for(var e=0,n=r;e=0&&(r.splice(e,1),r.length===0&&delete Hr[t])}var n=Rn[t];if(n)for(var a=0,i=n;a0&&o.current.naturalHeight>0||o.current.complete&&Du.test(a):!1;d&&u(He.loaded)}}),l.useEffect(function(){r?.(s)},[s]);var c=l.useCallback(function(d){e?.(d),a&&u(He.loaded)},[a,e]),f=l.useCallback(function(d){n?.(d),u(He.error)},[n]);return[s,c,f]}var di=l.forwardRef(function(t,o){var r=l.useRef(),e=l.useRef(),n=Fu(t,e),a=n[0],i=n[1],s=n[2],u=oe(t,Bs,["width","height"]),c=t.src,f=t.alt,d=t.width,v=t.height,m=t.shouldFadeIn,y=m===void 0?!0:m,g=t.shouldStartVisible,h=t.className,x=t.imageFit,_=t.role,B=t.maximizeFrame,C=t.styles,k=t.theme,w=t.loading,b=Lu(t,a,e,r),S=Mu(C,{theme:k,className:h,width:d,height:v,maximizeFrame:B,shouldFadeIn:y,shouldStartVisible:g,isLoaded:a===He.loaded||a===He.notLoaded&&t.shouldStartVisible,isLandscape:b===qr.landscape,isCenter:x===Ke.center,isCenterContain:x===Ke.centerContain,isCenterCover:x===Ke.centerCover,isContain:x===Ke.contain,isCover:x===Ke.cover,isNone:x===Ke.none,isError:a===He.error,isNotImageFit:x===void 0});return l.createElement("div",{className:S.root,style:{width:d,height:v},ref:r},l.createElement("img",p({},u,{onLoad:i,onError:s,key:Ru+t.src||"",className:S.image,ref:gt(e,o),src:c,alt:f,role:_,loading:w})))});di.displayName="ImageBase";function Lu(t,o,r,e){var n=l.useRef(o),a=l.useRef();return(a===void 0||n.current===He.notLoaded&&o===He.loaded)&&(a.current=Au(t,o,r,e)),n.current=o,a.current}function Au(t,o,r,e){var n=t.imageFit,a=t.width,i=t.height;if(t.coverStyle!==void 0)return t.coverStyle;if(o===He.loaded&&(n===Ke.cover||n===Ke.contain||n===Ke.centerContain||n===Ke.centerCover)&&r.current&&e.current){var s=void 0;typeof a=="number"&&typeof i=="number"&&n!==Ke.centerContain&&n!==Ke.centerCover?s=a/i:s=e.current.clientWidth/e.current.clientHeight;var u=r.current.naturalWidth/r.current.naturalHeight;if(u>s)return qr.landscape}return qr.portrait}var Ou={root:"ms-Image",rootMaximizeFrame:"ms-Image--maximizeFrame",image:"ms-Image-image",imageCenter:"ms-Image-image--center",imageContain:"ms-Image-image--contain",imageCover:"ms-Image-image--cover",imageCenterContain:"ms-Image-image--centerContain",imageCenterCover:"ms-Image-image--centerCover",imageNone:"ms-Image-image--none",imageLandscape:"ms-Image-image--landscape",imagePortrait:"ms-Image-image--portrait"},Hu=function(t){var o=t.className,r=t.width,e=t.height,n=t.maximizeFrame,a=t.isLoaded,i=t.shouldFadeIn,s=t.shouldStartVisible,u=t.isLandscape,c=t.isCenter,f=t.isContain,d=t.isCover,v=t.isCenterContain,m=t.isCenterCover,y=t.isNone,g=t.isError,h=t.isNotImageFit,x=t.theme,_=Ie(Ou,x),B={position:"absolute",left:"50% /* @noflip */",top:"50%",transform:"translate(-50%,-50%)"},C=Er(),k=C!==void 0&&C.navigator.msMaxTouchPoints===void 0,w=f&&u||d&&!u?{width:"100%",height:"auto"}:{width:"auto",height:"100%"};return{root:[_.root,x.fonts.medium,{overflow:"hidden"},n&&[_.rootMaximizeFrame,{height:"100%",width:"100%"}],a&&i&&!s&&Qe.fadeIn400,(c||f||d||v||m)&&{position:"relative"},o],image:[_.image,{display:"block",opacity:0},a&&["is-loaded",{opacity:1}],c&&[_.imageCenter,B],f&&[_.imageContain,k&&{width:"100%",height:"100%",objectFit:"contain"},!k&&w,!k&&B],d&&[_.imageCover,k&&{width:"100%",height:"100%",objectFit:"cover"},!k&&w,!k&&B],v&&[_.imageCenterContain,u&&{maxWidth:"100%"},!u&&{maxHeight:"100%"},B],m&&[_.imageCenterCover,u&&{maxHeight:"100%"},!u&&{maxWidth:"100%"},B],y&&[_.imageNone,{width:"auto",height:"auto"}],h&&[!!r&&!e&&{height:"auto",width:"100%"},!r&&!!e&&{height:"100%",width:"auto"},!!r&&!!e&&{height:"100%",width:"100%"}],u&&_.imageLandscape,!u&&_.imagePortrait,!a&&"is-notLoaded",i&&"is-fadeIn",g&&"is-error"]}},Ln=Ce(di,Hu,void 0,{scope:"Image"},!0);Ln.displayName="Image";var rr=Zr({root:{display:"inline-block"},placeholder:["ms-Icon-placeHolder",{width:"1em"}],image:["ms-Icon-imageContainer",{overflow:"hidden"}]}),fi="ms-Icon",zu=function(t){var o=t.className,r=t.iconClassName,e=t.isPlaceholder,n=t.isImage,a=t.styles;return{root:[e&&rr.placeholder,rr.root,n&&rr.image,r,o,a&&a.root,a&&a.imageContainer]}},mi=ge(function(t){var o=Is(t)||{subset:{},code:void 0},r=o.code,e=o.subset;return r?{children:r,iconClassName:e.className,fontFamily:e.fontFace&&e.fontFace.fontFamily,mergeImageProps:e.mergeImageProps}:null},void 0,!0),bn=function(t){var o=t.iconName,r=t.className,e=t.style,n=e===void 0?{}:e,a=mi(o)||{},i=a.iconClassName,s=a.children,u=a.fontFamily,c=a.mergeImageProps,f=oe(t,ir),d=t["aria-label"]||t.title,v=t["aria-label"]||t["aria-labelledby"]||t.title?{role:c?void 0:"img"}:{"aria-hidden":!0},m=s;return c&&typeof s=="object"&&typeof s.props=="object"&&d&&(m=l.cloneElement(s,{alt:d})),l.createElement("i",p({"data-icon-name":o},v,f,c?{title:void 0,"aria-label":void 0}:{},{className:he(fi,rr.root,i,!o&&rr.placeholder,r),style:p({fontFamily:u},n)}),m)};ge(function(t,o,r){return bn({iconName:t,className:o,"aria-label":r})});var ju=xe({cacheSize:100}),Wu=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;return e._onImageLoadingStateChange=function(n){e.props.imageProps&&e.props.imageProps.onLoadingStateChange&&e.props.imageProps.onLoadingStateChange(n),n===He.error&&e.setState({imageLoadError:!0})},e.state={imageLoadError:!1},e}return o.prototype.render=function(){var r=this.props,e=r.children,n=r.className,a=r.styles,i=r.iconName,s=r.imageErrorAs,u=r.theme,c=typeof i=="string"&&i.length===0,f=!!this.props.imageProps||this.props.iconType===xo.image||this.props.iconType===xo.Image,d=mi(i)||{},v=d.iconClassName,m=d.children,y=d.mergeImageProps,g=ju(a,{theme:u,className:n,iconClassName:v,isImage:f,isPlaceholder:c}),h=f?"span":"i",x=oe(this.props,ir,["aria-label"]),_=this.state.imageLoadError,B=p(p({},this.props.imageProps),{onLoadingStateChange:this._onImageLoadingStateChange}),C=_&&s||Ln,k=this.props["aria-label"]||this.props.ariaLabel,w=B.alt||k||this.props.title,b=!!(w||this.props["aria-labelledby"]||B["aria-label"]||B["aria-labelledby"]),S=b?{role:f||y?void 0:"img","aria-label":f||y?void 0:w}:{"aria-hidden":!0},P=m;return y&&m&&typeof m=="object"&&w&&(P=l.cloneElement(m,{alt:w})),l.createElement(h,p({"data-icon-name":i},S,x,y?{title:void 0,"aria-label":void 0}:{},{className:g.root}),f?l.createElement(C,p({},B)):e||P)},o}(l.Component),Xe=Ce(Wu,zu,void 0,{scope:"Icon"},!0);Xe.displayName="Icon";var qu=function(t){var o=t.className,r=t.imageProps,e=oe(t,ir,["aria-label","aria-labelledby","title","aria-describedby"]),n=r.alt||t["aria-label"],a=n||t["aria-labelledby"]||t.title||r["aria-label"]||r["aria-labelledby"]||r.title,i={"aria-labelledby":t["aria-labelledby"],"aria-describedby":t["aria-describedby"],title:t.title},s=a?{}:{"aria-hidden":!0};return l.createElement("div",p({},s,e,{className:he(fi,rr.root,rr.image,o)}),l.createElement(Ln,p({},i,r,{alt:a?n:""})))},yn={none:0,all:1,inputOnly:2},Me;(function(t){t[t.vertical=0]="vertical",t[t.horizontal=1]="horizontal",t[t.bidirectional=2]="bidirectional",t[t.domOrder=3]="domOrder"})(Me||(Me={}));var no="data-is-focusable",Ku="data-disable-click-on-enter",Ko="data-focuszone-id",ct="tabindex",Vo="data-no-vertical-wrap",Uo="data-no-horizontal-wrap",Go=999999999,Fr=-999999999,$o,Vu="ms-FocusZone";function Uu(t,o){var r;typeof MouseEvent=="function"?r=new MouseEvent("click",{ctrlKey:o?.ctrlKey,metaKey:o?.metaKey,shiftKey:o?.shiftKey,altKey:o?.altKey,bubbles:o?.bubbles,cancelable:o?.cancelable}):(r=document.createEvent("MouseEvents"),r.initMouseEvent("click",o?o.bubbles:!1,o?o.cancelable:!1,window,0,0,0,0,0,o?o.ctrlKey:!1,o?o.altKey:!1,o?o.shiftKey:!1,o?o.metaKey:!1,0,null)),t.dispatchEvent(r)}function Gu(){return $o||($o=gr({selectors:{":focus":{outline:"none"}}},Vu)),$o}var Lr={},ao=new Set,$u=["text","number","password","email","tel","url","search","textarea"],_t=!1,An=function(t){Ee(o,t);function o(r){var e=this,n,a,i,s;e=t.call(this,r)||this,e._root=l.createRef(),e._mergedRef=Oa(),e._onFocus=function(c){if(!e._portalContainsElement(c.target)){var f=e.props,d=f.onActiveElementChanged,v=f.doNotAllowFocusEventToPropagate,m=f.stopFocusPropagation,y=f.onFocusNotification,g=f.onFocus,h=f.shouldFocusInnerElementWhenReceivedFocus,x=f.defaultTabbableElement,_=e._isImmediateDescendantOfZone(c.target),B;if(_)B=c.target;else for(var C=c.target;C&&C!==e._root.current;){if(vr(C)&&e._isImmediateDescendantOfZone(C)){B=C;break}C=Xt(C,_t)}if(h&&c.target===e._root.current){var k=x&&typeof x=="function"&&e._root.current&&x(e._root.current);k&&vr(k)?(B=k,k.focus()):(e.focus(!0),e._activeElement&&(B=null))}var w=!e._activeElement;B&&B!==e._activeElement&&((_||w)&&e._setFocusAlignment(B,!0,!0),e._activeElement=B,w&&e._updateTabIndexes()),d&&d(e._activeElement,c),(m||v)&&c.stopPropagation(),g?g(c):y&&y()}},e._onBlur=function(){e._setParkedFocus(!1)},e._onMouseDown=function(c){if(!e._portalContainsElement(c.target)){var f=e.props.disabled;if(!f){for(var d=c.target,v=[];d&&d!==e._root.current;)v.push(d),d=Xt(d,_t);for(;v.length&&(d=v.pop(),d&&vr(d)&&e._setActiveElement(d,!0),!Jt(d)););}}},e._onKeyDown=function(c,f){if(!e._portalContainsElement(c.target)){var d=e.props,v=d.direction,m=d.disabled,y=d.isInnerZoneKeystroke,g=d.pagingSupportDisabled,h=d.shouldEnterInnerZone;if(!m&&(e.props.onKeyDown&&e.props.onKeyDown(c),!c.isDefaultPrevented()&&!(e._getDocument().activeElement===e._root.current&&e._isInnerZone))){if((h&&h(c)||y&&y(c))&&e._isImmediateDescendantOfZone(c.target)){var x=e._getFirstInnerZone();if(x){if(!x.focus(!0))return}else if(Es(c.target)){if(!e.focusElement(xt(c.target,c.target.firstChild,!0)))return}else return}else{if(c.altKey)return;switch(c.which){case z.space:if(e._shouldRaiseClicksOnSpace&&e._tryInvokeClickForFocusable(c.target,c))break;return;case z.left:if(v!==Me.vertical&&(e._preventDefaultWhenHandled(c),e._moveFocusLeft(f)))break;return;case z.right:if(v!==Me.vertical&&(e._preventDefaultWhenHandled(c),e._moveFocusRight(f)))break;return;case z.up:if(v!==Me.horizontal&&(e._preventDefaultWhenHandled(c),e._moveFocusUp()))break;return;case z.down:if(v!==Me.horizontal&&(e._preventDefaultWhenHandled(c),e._moveFocusDown()))break;return;case z.pageDown:if(!g&&e._moveFocusPaging(!0))break;return;case z.pageUp:if(!g&&e._moveFocusPaging(!1))break;return;case z.tab:if(e.props.allowTabKey||e.props.handleTabKey===yn.all||e.props.handleTabKey===yn.inputOnly&&e._isElementInput(c.target)){var _=!1;if(e._processingTabKey=!0,v===Me.vertical||!e._shouldWrapFocus(e._activeElement,Uo))_=c.shiftKey?e._moveFocusUp():e._moveFocusDown();else{var B=Be(f)?!c.shiftKey:c.shiftKey;_=B?e._moveFocusLeft(f):e._moveFocusRight(f)}if(e._processingTabKey=!1,_)break;e.props.shouldResetActiveElementWhenTabFromZone&&(e._activeElement=null)}return;case z.home:if(e._isContentEditableElement(c.target)||e._isElementInput(c.target)&&!e._shouldInputLoseFocus(c.target,!1))return!1;var C=e._root.current&&e._root.current.firstChild;if(e._root.current&&C&&e.focusElement(xt(e._root.current,C,!0)))break;return;case z.end:if(e._isContentEditableElement(c.target)||e._isElementInput(c.target)&&!e._shouldInputLoseFocus(c.target,!0))return!1;var k=e._root.current&&e._root.current.lastChild;if(e._root.current&&e.focusElement(er(e._root.current,k,!0,!0,!0)))break;return;case z.enter:if(e._shouldRaiseClicksOnEnter&&e._tryInvokeClickForFocusable(c.target,c))break;return;default:return}}c.preventDefault(),c.stopPropagation()}}},e._getHorizontalDistanceFromCenter=function(c,f,d){var v=e._focusAlignment.left||e._focusAlignment.x||0,m=Math.floor(d.top),y=Math.floor(f.bottom),g=Math.floor(d.bottom),h=Math.floor(f.top),x=c&&m>y,_=!c&&g=d.left&&v<=d.left+d.width?0:Math.abs(d.left+d.width/2-v):e._shouldWrapFocus(e._activeElement,Vo)?Go:Fr},Tt(e),e._id=De("FocusZone"),e._focusAlignment={left:0,top:0},e._processingTabKey=!1;var u=(a=(n=r.shouldRaiseClicks)!==null&&n!==void 0?n:o.defaultProps.shouldRaiseClicks)!==null&&a!==void 0?a:!0;return e._shouldRaiseClicksOnEnter=(i=r.shouldRaiseClicksOnEnter)!==null&&i!==void 0?i:u,e._shouldRaiseClicksOnSpace=(s=r.shouldRaiseClicksOnSpace)!==null&&s!==void 0?s:u,e}return o.getOuterZones=function(){return ao.size},o._onKeyDownCapture=function(r){r.which===z.tab&&ao.forEach(function(e){return e._updateTabIndexes()})},o.prototype.componentDidMount=function(){var r=this._root.current;if(Lr[this._id]=this,r){for(var e=Xt(r,_t);e&&e!==this._getDocument().body&&e.nodeType===1;){if(Jt(e)){this._isInnerZone=!0;break}e=Xt(e,_t)}this._isInnerZone||(ao.add(this),this._root.current&&this._root.current.addEventListener("keydown",o._onKeyDownCapture,!0)),this._root.current&&this._root.current.addEventListener("blur",this._onBlur,!0),this._updateTabIndexes(),this.props.defaultTabbableElement&&typeof this.props.defaultTabbableElement=="string"?this._activeElement=this._getDocument().querySelector(this.props.defaultTabbableElement):this.props.defaultActiveElement&&(this._activeElement=this._getDocument().querySelector(this.props.defaultActiveElement)),this.props.shouldFocusOnMount&&this.focus()}},o.prototype.componentDidUpdate=function(){var r=this._root.current,e=this._getDocument();if((this._activeElement&&!Ye(this._root.current,this._activeElement,_t)||this._defaultFocusElement&&!Ye(this._root.current,this._defaultFocusElement,_t))&&(this._activeElement=null,this._defaultFocusElement=null,this._updateTabIndexes()),!this.props.preventFocusRestoration&&e&&this._lastIndexPath&&(e.activeElement===e.body||e.activeElement===null||e.activeElement===r)){var n=Ts(r,this._lastIndexPath);n?(this._setActiveElement(n,!0),n.focus(),this._setParkedFocus(!1)):this._setParkedFocus(!0)}},o.prototype.componentWillUnmount=function(){delete Lr[this._id],this._isInnerZone||(ao.delete(this),this._root.current&&this._root.current.removeEventListener("keydown",o._onKeyDownCapture,!0)),this._root.current&&this._root.current.removeEventListener("blur",this._onBlur,!0),this._activeElement=null,this._defaultFocusElement=null},o.prototype.render=function(){var r=this,e=this.props,n=e.as,a=e.elementType,i=e.rootProps,s=e.ariaDescribedBy,u=e.ariaLabelledBy,c=e.className,f=oe(this.props,ir),d=n||a||"div";this._evaluateFocusBeforeRender();var v=Ns();return l.createElement(d,p({"aria-labelledby":u,"aria-describedby":s},f,i,{className:he(Gu(),c),ref:this._mergedRef(this.props.elementRef,this._root),"data-focuszone-id":this._id,onKeyDown:function(m){return r._onKeyDown(m,v)},onFocus:this._onFocus,onMouseDownCapture:this._onMouseDown}),this.props.children)},o.prototype.focus=function(r,e){if(r===void 0&&(r=!1),e===void 0&&(e=!1),this._root.current)if(!r&&this._root.current.getAttribute(no)==="true"&&this._isInnerZone){var n=this._getOwnerZone(this._root.current);if(n!==this._root.current){var a=Lr[n.getAttribute(Ko)];return!!a&&a.focusElement(this._root.current)}return!1}else{if(!r&&this._activeElement&&Ye(this._root.current,this._activeElement)&&vr(this._activeElement)&&(!e||Ps(this._activeElement)))return this._activeElement.focus(),!0;var i=this._root.current.firstChild;return this.focusElement(xt(this._root.current,i,!0,void 0,void 0,void 0,void 0,void 0,e))}return!1},o.prototype.focusLast=function(){if(this._root.current){var r=this._root.current&&this._root.current.lastChild;return this.focusElement(er(this._root.current,r,!0,!0,!0))}return!1},o.prototype.focusElement=function(r,e){var n=this.props,a=n.onBeforeFocus,i=n.shouldReceiveFocus;return i&&!i(r)||a&&!a(r)?!1:r?(this._setActiveElement(r,e),this._activeElement&&this._activeElement.focus(),!0):!1},o.prototype.setFocusAlignment=function(r){this._focusAlignment=r},Object.defineProperty(o.prototype,"defaultFocusElement",{get:function(){return this._defaultFocusElement},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"activeElement",{get:function(){return this._activeElement},enumerable:!1,configurable:!0}),o.prototype._evaluateFocusBeforeRender=function(){var r=this._root.current,e=this._getDocument();if(e){var n=e.activeElement;if(n!==r){var a=Ye(r,n,!1);this._lastIndexPath=a?Ms(r,n):void 0}}},o.prototype._setParkedFocus=function(r){var e=this._root.current;e&&this._isParked!==r&&(this._isParked=r,r?(this.props.allowFocusRoot||(this._parkedTabIndex=e.getAttribute("tabindex"),e.setAttribute("tabindex","-1")),e.focus()):this.props.allowFocusRoot||(this._parkedTabIndex?(e.setAttribute("tabindex",this._parkedTabIndex),this._parkedTabIndex=void 0):e.removeAttribute("tabindex")))},o.prototype._setActiveElement=function(r,e){var n=this._activeElement;this._activeElement=r,n&&(Jt(n)&&this._updateTabIndexes(n),n.tabIndex=-1),this._activeElement&&((!this._focusAlignment||e)&&this._setFocusAlignment(r,!0,!0),this._activeElement.tabIndex=0)},o.prototype._preventDefaultWhenHandled=function(r){this.props.preventDefaultWhenHandled&&r.preventDefault()},o.prototype._tryInvokeClickForFocusable=function(r,e){var n=r;if(n===this._root.current)return!1;do{if(n.tagName==="BUTTON"||n.tagName==="A"||n.tagName==="INPUT"||n.tagName==="TEXTAREA"||n.tagName==="SUMMARY")return!1;if(this._isImmediateDescendantOfZone(n)&&n.getAttribute(no)==="true"&&n.getAttribute(Ku)!=="true")return Uu(n,e),!0;n=Xt(n,_t)}while(n!==this._root.current);return!1},o.prototype._getFirstInnerZone=function(r){if(r=r||this._activeElement||this._root.current,!r)return null;if(Jt(r))return Lr[r.getAttribute(Ko)];for(var e=r.firstElementChild;e;){if(Jt(e))return Lr[e.getAttribute(Ko)];var n=this._getFirstInnerZone(e);if(n)return n;e=e.nextElementSibling}return null},o.prototype._moveFocus=function(r,e,n,a){a===void 0&&(a=!0);var i=this._activeElement,s=-1,u=void 0,c=!1,f=this.props.direction===Me.bidirectional;if(!i||!this._root.current||this._isElementInput(i)&&!this._shouldInputLoseFocus(i,r))return!1;var d=f?i.getBoundingClientRect():null;do if(i=r?xt(this._root.current,i):er(this._root.current,i),f){if(i){var v=i.getBoundingClientRect(),m=e(d,v);if(m===-1&&s===-1){u=i;break}if(m>-1&&(s===-1||m=0&&m<0)break}}else{u=i;break}while(i);if(u&&u!==this._activeElement)c=!0,this.focusElement(u);else if(this.props.isCircularNavigation&&a)return r?this.focusElement(xt(this._root.current,this._root.current.firstElementChild,!0)):this.focusElement(er(this._root.current,this._root.current.lastElementChild,!0,!0,!0));return c},o.prototype._moveFocusDown=function(){var r=this,e=-1,n=this._focusAlignment.left||this._focusAlignment.x||0;return this._moveFocus(!0,function(a,i){var s=-1,u=Math.floor(i.top),c=Math.floor(a.bottom);return u=c||u===e)&&(e=u,n>=i.left&&n<=i.left+i.width?s=0:s=Math.abs(i.left+i.width/2-n)),s)})?(this._setFocusAlignment(this._activeElement,!1,!0),!0):!1},o.prototype._moveFocusUp=function(){var r=this,e=-1,n=this._focusAlignment.left||this._focusAlignment.x||0;return this._moveFocus(!1,function(a,i){var s=-1,u=Math.floor(i.bottom),c=Math.floor(i.top),f=Math.floor(a.top);return u>f?r._shouldWrapFocus(r._activeElement,Vo)?Go:Fr:((e===-1&&u<=f||c===e)&&(e=c,n>=i.left&&n<=i.left+i.width?s=0:s=Math.abs(i.left+i.width/2-n)),s)})?(this._setFocusAlignment(this._activeElement,!1,!0),!0):!1},o.prototype._moveFocusLeft=function(r){var e=this,n=this._shouldWrapFocus(this._activeElement,Uo);return this._moveFocus(Be(r),function(a,i){var s=-1,u;return Be(r)?u=parseFloat(i.top.toFixed(3))parseFloat(a.top.toFixed(3)),u&&i.right<=a.right&&e.props.direction!==Me.vertical?s=a.right-i.right:n||(s=Fr),s},void 0,n)?(this._setFocusAlignment(this._activeElement,!0,!1),!0):!1},o.prototype._moveFocusRight=function(r){var e=this,n=this._shouldWrapFocus(this._activeElement,Uo);return this._moveFocus(!Be(r),function(a,i){var s=-1,u;return Be(r)?u=parseFloat(i.bottom.toFixed(3))>parseFloat(a.top.toFixed(3)):u=parseFloat(i.top.toFixed(3))=a.left&&e.props.direction!==Me.vertical?s=i.left-a.left:n||(s=Fr),s},void 0,n)?(this._setFocusAlignment(this._activeElement,!0,!1),!0):!1},o.prototype._moveFocusPaging=function(r,e){e===void 0&&(e=!0);var n=this._activeElement;if(!n||!this._root.current||this._isElementInput(n)&&!this._shouldInputLoseFocus(n,r))return!1;var a=Ds(n);if(!a)return!1;var i=-1,s=void 0,u=-1,c=-1,f=a.clientHeight,d=n.getBoundingClientRect();do if(n=r?xt(this._root.current,n):er(this._root.current,n),n){var v=n.getBoundingClientRect(),m=Math.floor(v.top),y=Math.floor(d.bottom),g=Math.floor(v.bottom),h=Math.floor(d.top),x=this._getHorizontalDistanceFromCenter(r,d,v),_=r&&m>y+f,B=!r&&g-1&&(r&&m>u?(u=m,i=x,s=n):!r&&g-1){var n=r.selectionStart,a=r.selectionEnd,i=n!==a,s=r.value,u=r.readOnly;if(i||n>0&&!e&&!u||n!==s.length&&e&&!u||this.props.handleTabKey&&!(this.props.shouldInputLoseFocusOnArrowKey&&this.props.shouldInputLoseFocusOnArrowKey(r)))return!1}return!0},o.prototype._shouldWrapFocus=function(r,e){return this.props.checkForNoWrap?Ha(r,e):!0},o.prototype._portalContainsElement=function(r){return r&&!!this._root.current&&za(r,this._root.current)},o.prototype._getDocument=function(){return Bt(this._root.current)},o.defaultProps={isCircularNavigation:!1,direction:Me.bidirectional,shouldRaiseClicks:!0},o}(l.Component),Zu=xe(),Yu=function(t,o){var r=t.as,e=t.className,n=t.disabled,a=t.href,i=t.onClick,s=t.styles,u=t.theme,c=t.underline,f=l.useRef(null),d=gt(f,o);Xu(t,f),ja(f);var v=Zu(s,{className:e,isButton:!a,isDisabled:n,isUnderlined:c,theme:u}),m=function(_){n?_.preventDefault():i&&i(_)},y=r||(a?"a":"button"),g={},h={root:y},x={root:p(p({},Ju(y,t)),{"aria-disabled":n,className:v.root,onClick:m,ref:d})};return{state:g,slots:h,slotProps:x}},Xu=function(t,o){l.useImperativeHandle(t.componentRef,function(){return{focus:function(){o.current&&o.current.focus()}}},[o])},Ju=function(t,o){o.as;var r=o.disabled,e=o.target,n=o.href;o.theme,o.getStyles,o.styles,o.componentRef,o.underline;var a=qt(o,["as","disabled","target","href","theme","getStyles","styles","componentRef","underline"]);return typeof t=="string"?t==="a"?p({target:e,href:r?void 0:n},a):t==="button"?p({type:"button",disabled:r},a):p(p({},a),{disabled:r}):p({target:e,href:n,disabled:r},a)},vi=l.forwardRef(function(t,o){var r=Yu(t,o),e=r.slots,n=r.slotProps;return l.createElement(e.root,p({},n.root))});vi.displayName="LinkBase";var Qu={root:"ms-Link"},ec=function(t){var o,r,e,n,a,i,s,u=t.className,c=t.isButton,f=t.isDisabled,d=t.isUnderlined,v=t.theme,m=v.semanticColors,y=m.link,g=m.linkHovered,h=m.disabledText,x=m.focusBorder,_=Ie(Qu,v);return{root:[_.root,v.fonts.medium,{color:y,outline:"none",fontSize:"inherit",fontWeight:"inherit",textDecoration:d?"underline":"none",selectors:(o={".ms-Fabric--isFocusVisible &:focus":{boxShadow:"0 0 0 1px ".concat(x," inset"),outline:"1px auto ".concat(x),selectors:(r={},r[T]={outline:"1px solid WindowText"},r)}},o[T]={borderBottom:"none"},o)},c&&{background:"none",backgroundColor:"transparent",border:"none",cursor:"pointer",display:"inline",margin:0,overflow:"inherit",padding:0,textAlign:"left",textOverflow:"inherit",userSelect:"text",borderBottom:"1px solid transparent",selectors:(e={},e[T]={color:"LinkText",forcedColorAdjust:"none"},e)},!c&&{selectors:(n={},n[T]={MsHighContrastAdjust:"auto",forcedColorAdjust:"auto"},n)},f&&["is-disabled",{color:h,cursor:"default"},{selectors:(a={"&:link, &:visited":{pointerEvents:"none"}},a[T]={color:"GrayText"},a)}],!f&&{selectors:{"&:active, &:hover, &:active:hover":{color:g,textDecoration:"underline",selectors:(i={},i[T]={color:"LinkText"},i)},"&:focus":{color:y,selectors:(s={},s[T]={color:"LinkText"},s)}}},_.root,u]}},Yv=Ce(vi,ec,void 0,{scope:"Link"}),Fe;(function(t){t[t.Normal=0]="Normal",t[t.Divider=1]="Divider",t[t.Header=2]="Header",t[t.Section=3]="Section"})(Fe||(Fe={}));function Sr(t){return t.canCheck?!!(t.isChecked||t.checked):typeof t.isChecked=="boolean"?t.isChecked:typeof t.checked=="boolean"?t.checked:null}function Et(t){return!!(t.subMenuProps||t.items)}function vt(t){return!!(t.isDisabled||t.disabled)}function pi(t){var o=Sr(t),r=o!==null;return r?"menuitemcheckbox":"menuitem"}var ea=function(t){var o=t.item,r=t.classNames,e=o.iconProps;return l.createElement(Xe,p({},e,{className:r.icon}))},tc=function(t){var o=t.item,r=t.hasIcons;return r?o.onRenderIcon?o.onRenderIcon(t,ea):ea(t):null},rc=function(t){var o=t.onCheckmarkClick,r=t.item,e=t.classNames,n=Sr(r);if(o){var a=function(i){return o(r,i)};return l.createElement(Xe,{iconName:r.canCheck!==!1&&n?"CheckMark":"",className:e.checkmarkIcon,onClick:a})}return null},oc=function(t){var o=t.item,r=t.classNames;return o.text||o.name?l.createElement("span",{className:r.label},o.text||o.name):null},nc=function(t){var o=t.item,r=t.classNames;return o.secondaryText?l.createElement("span",{className:r.secondaryText},o.secondaryText):null},ac=function(t){var o=t.item,r=t.classNames,e=t.theme;return Et(o)?l.createElement(Xe,p({iconName:Be(e)?"ChevronLeft":"ChevronRight"},o.submenuIconProps,{className:r.subMenuIcon})):null},ic=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;return e.openSubMenu=function(){var n=e.props,a=n.item,i=n.openSubMenu,s=n.getSubmenuTarget;if(s){var u=s();Et(a)&&i&&u&&i(a,u)}},e.dismissSubMenu=function(){var n=e.props,a=n.item,i=n.dismissSubMenu;Et(a)&&i&&i()},e.dismissMenu=function(n){var a=e.props.dismissMenu;a&&a(void 0,n)},Tt(e),e}return o.prototype.render=function(){var r=this.props,e=r.item,n=r.classNames,a=e.onRenderContent||this._renderLayout;return l.createElement("div",{className:e.split?n.linkContentMenu:n.linkContent},a(this.props,{renderCheckMarkIcon:rc,renderItemIcon:tc,renderItemName:oc,renderSecondaryText:nc,renderSubMenuIcon:ac}))},o.prototype._renderLayout=function(r,e){return l.createElement(l.Fragment,null,e.renderCheckMarkIcon(r),e.renderItemIcon(r),e.renderItemName(r),e.renderSecondaryText(r),e.renderSubMenuIcon(r))},o}(l.Component),sc=ge(function(t){return Zr({wrapper:{display:"inline-flex",height:"100%",alignItems:"center"},divider:{width:1,height:"100%",backgroundColor:t.palette.neutralTertiaryAlt}})}),Ht=36,ta=wo(0,Wa),lc=ge(function(t){var o,r,e,n,a,i=t.semanticColors,s=t.fonts,u=t.palette,c=i.menuItemBackgroundHovered,f=i.menuItemTextHovered,d=i.menuItemBackgroundPressed,v=i.bodyDivider,m={item:[s.medium,{color:i.bodyText,position:"relative",boxSizing:"border-box"}],divider:{display:"block",height:"1px",backgroundColor:v,position:"relative"},root:[ht(t),s.medium,{color:i.bodyText,backgroundColor:"transparent",border:"none",width:"100%",height:Ht,lineHeight:Ht,display:"block",cursor:"pointer",padding:"0px 8px 0 4px",textAlign:"left"}],rootDisabled:{color:i.disabledBodyText,cursor:"default",pointerEvents:"none",selectors:(o={},o[T]={color:"GrayText",opacity:1},o)},rootHovered:{backgroundColor:c,color:f,selectors:{".ms-ContextualMenu-icon":{color:u.themeDarkAlt},".ms-ContextualMenu-submenuIcon":{color:u.neutralPrimary}}},rootFocused:{backgroundColor:u.white},rootChecked:{selectors:{".ms-ContextualMenu-checkmarkIcon":{color:u.neutralPrimary}}},rootPressed:{backgroundColor:d,selectors:{".ms-ContextualMenu-icon":{color:u.themeDark},".ms-ContextualMenu-submenuIcon":{color:u.neutralPrimary}}},rootExpanded:{backgroundColor:d,color:i.bodyTextChecked,selectors:(r={".ms-ContextualMenu-submenuIcon":(e={},e[T]={color:"inherit"},e)},r[T]=p({},fe()),r)},linkContent:{whiteSpace:"nowrap",height:"inherit",display:"flex",alignItems:"center",maxWidth:"100%"},anchorLink:{padding:"0px 8px 0 4px",textRendering:"auto",color:"inherit",letterSpacing:"normal",wordSpacing:"normal",textTransform:"none",textIndent:"0px",textShadow:"none",textDecoration:"none",boxSizing:"border-box"},label:{margin:"0 4px",verticalAlign:"middle",display:"inline-block",flexGrow:"1",textOverflow:"ellipsis",whiteSpace:"nowrap",overflow:"hidden"},secondaryText:{color:t.palette.neutralSecondary,paddingLeft:"20px",textAlign:"right"},icon:{display:"inline-block",minHeight:"1px",maxHeight:Ht,fontSize:Ze.medium,width:Ze.medium,margin:"0 4px",verticalAlign:"middle",flexShrink:"0",selectors:(n={},n[ta]={fontSize:Ze.large,width:Ze.large},n)},iconColor:{color:i.menuIcon},iconDisabled:{color:i.disabledBodyText},checkmarkIcon:{color:i.bodySubtext},subMenuIcon:{height:Ht,lineHeight:Ht,color:u.neutralSecondary,textAlign:"center",display:"inline-block",verticalAlign:"middle",flexShrink:"0",fontSize:Ze.small,selectors:(a={":hover":{color:u.neutralPrimary},":active":{color:u.neutralPrimary}},a[ta]={fontSize:Ze.medium},a)},splitButtonFlexContainer:[ht(t),{display:"flex",height:Ht,flexWrap:"nowrap",justifyContent:"center",alignItems:"flex-start"}]};return Tr(m)}),ra="28px",uc=wo(0,Wa),cc=ge(function(t){var o;return Zr(sc(t),{wrapper:{position:"absolute",right:28,selectors:(o={},o[uc]={right:32},o)},divider:{height:16,width:1}})}),dc={item:"ms-ContextualMenu-item",divider:"ms-ContextualMenu-divider",root:"ms-ContextualMenu-link",isChecked:"is-checked",isExpanded:"is-expanded",isDisabled:"is-disabled",linkContent:"ms-ContextualMenu-linkContent",linkContentMenu:"ms-ContextualMenu-linkContent",icon:"ms-ContextualMenu-icon",iconColor:"ms-ContextualMenu-iconColor",checkmarkIcon:"ms-ContextualMenu-checkmarkIcon",subMenuIcon:"ms-ContextualMenu-submenuIcon",label:"ms-ContextualMenu-itemText",secondaryText:"ms-ContextualMenu-secondaryText",splitMenu:"ms-ContextualMenu-splitMenu",screenReaderText:"ms-ContextualMenu-screenReaderText"},fc=ge(function(t,o,r,e,n,a,i,s,u,c,f,d){var v,m,y,g,h=lc(t),x=Ie(dc,t);return Zr({item:[x.item,h.item,i],divider:[x.divider,h.divider,s],root:[x.root,h.root,e&&[x.isChecked,h.rootChecked],n&&h.anchorLink,r&&[x.isExpanded,h.rootExpanded],o&&[x.isDisabled,h.rootDisabled],!o&&!r&&[{selectors:(v={":hover":h.rootHovered,":active":h.rootPressed},v[".".concat(ye," &:focus, .").concat(ye," &:focus:hover")]=h.rootFocused,v[".".concat(ye," &:hover")]={background:"inherit;"},v)}],d],splitPrimary:[h.root,{width:"calc(100% - ".concat(ra,")")},e&&["is-checked",h.rootChecked],(o||f)&&["is-disabled",h.rootDisabled],!(o||f)&&!e&&[{selectors:(m={":hover":h.rootHovered},m[":hover ~ .".concat(x.splitMenu)]=h.rootHovered,m[":active"]=h.rootPressed,m[".".concat(ye," &:focus, .").concat(ye," &:focus:hover")]=h.rootFocused,m[".".concat(ye," &:hover")]={background:"inherit;"},m)}]],splitMenu:[x.splitMenu,h.root,{flexBasis:"0",padding:"0 8px",minWidth:ra},r&&["is-expanded",h.rootExpanded],o&&["is-disabled",h.rootDisabled],!o&&!r&&[{selectors:(y={":hover":h.rootHovered,":active":h.rootPressed},y[".".concat(ye," &:focus, .").concat(ye," &:focus:hover")]=h.rootFocused,y[".".concat(ye," &:hover")]={background:"inherit;"},y)}]],anchorLink:h.anchorLink,linkContent:[x.linkContent,h.linkContent],linkContentMenu:[x.linkContentMenu,h.linkContent,{justifyContent:"center"}],icon:[x.icon,a&&h.iconColor,h.icon,u,o&&[x.isDisabled,h.iconDisabled]],iconColor:h.iconColor,checkmarkIcon:[x.checkmarkIcon,a&&h.checkmarkIcon,h.icon,u],subMenuIcon:[x.subMenuIcon,h.subMenuIcon,c,r&&{color:t.palette.neutralPrimary},o&&[h.iconDisabled]],label:[x.label,h.label],secondaryText:[x.secondaryText,h.secondaryText],splitContainer:[h.splitButtonFlexContainer,!o&&!e&&[{selectors:(g={},g[".".concat(ye," &:focus, .").concat(ye," &:focus:hover")]=h.rootFocused,g)}]],screenReaderText:[x.screenReaderText,h.screenReaderText,Bn,{visibility:"hidden"}]})}),hi=function(t){var o=t.theme,r=t.disabled,e=t.expanded,n=t.checked,a=t.isAnchorLink,i=t.knownIcon,s=t.itemClassName,u=t.dividerClassName,c=t.iconClassName,f=t.subMenuClassName,d=t.primaryDisabled,v=t.className;return fc(o,r,e,n,a,i,s,u,c,f,d,v)},Kr=Ce(ic,hi,void 0,{scope:"ContextualMenuItem"}),On=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;return e._onItemMouseEnter=function(n){var a=e.props,i=a.item,s=a.onItemMouseEnter;s&&s(i,n,n.currentTarget)},e._onItemClick=function(n){var a=e.props,i=a.item,s=a.onItemClickBase;s&&s(i,n,n.currentTarget)},e._onItemMouseLeave=function(n){var a=e.props,i=a.item,s=a.onItemMouseLeave;s&&s(i,n)},e._onItemKeyDown=function(n){var a=e.props,i=a.item,s=a.onItemKeyDown;s&&s(i,n)},e._onItemMouseMove=function(n){var a=e.props,i=a.item,s=a.onItemMouseMove;s&&s(i,n,n.currentTarget)},e._getSubmenuTarget=function(){},Tt(e),e}return o.prototype.shouldComponentUpdate=function(r){return!Sn(r,this.props)},o}(l.Component),mc="ktp",oa="-",vc="data-ktp-target",pc="data-ktp-execute-target",hc="ktp-layer-id",dt;(function(t){t.KEYTIP_ADDED="keytipAdded",t.KEYTIP_REMOVED="keytipRemoved",t.KEYTIP_UPDATED="keytipUpdated",t.PERSISTED_KEYTIP_ADDED="persistedKeytipAdded",t.PERSISTED_KEYTIP_REMOVED="persistedKeytipRemoved",t.PERSISTED_KEYTIP_EXECUTE="persistedKeytipExecute",t.ENTER_KEYTIP_MODE="enterKeytipMode",t.EXIT_KEYTIP_MODE="exitKeytipMode"})(dt||(dt={}));var gc=function(){function t(){this.keytips={},this.persistedKeytips={},this.sequenceMapping={},this.inKeytipMode=!1,this.shouldEnterKeytipMode=!0,this.delayUpdatingKeytipChange=!1}return t.getInstance=function(){return this._instance},t.prototype.init=function(o){this.delayUpdatingKeytipChange=o},t.prototype.register=function(o,r){r===void 0&&(r=!1);var e=o;r||(e=this.addParentOverflow(o),this.sequenceMapping[e.keySequences.toString()]=e);var n=this._getUniqueKtp(e);if(r?this.persistedKeytips[n.uniqueID]=n:this.keytips[n.uniqueID]=n,this.inKeytipMode||!this.delayUpdatingKeytipChange){var a=r?dt.PERSISTED_KEYTIP_ADDED:dt.KEYTIP_ADDED;Ct.raise(this,a,{keytip:e,uniqueID:n.uniqueID})}return n.uniqueID},t.prototype.update=function(o,r){var e=this.addParentOverflow(o),n=this._getUniqueKtp(e,r),a=this.keytips[r];a&&(n.keytip.visible=a.keytip.visible,this.keytips[r]=n,delete this.sequenceMapping[a.keytip.keySequences.toString()],this.sequenceMapping[n.keytip.keySequences.toString()]=n.keytip,(this.inKeytipMode||!this.delayUpdatingKeytipChange)&&Ct.raise(this,dt.KEYTIP_UPDATED,{keytip:n.keytip,uniqueID:n.uniqueID}))},t.prototype.unregister=function(o,r,e){e===void 0&&(e=!1),e?delete this.persistedKeytips[r]:delete this.keytips[r],!e&&delete this.sequenceMapping[o.keySequences.toString()];var n=e?dt.PERSISTED_KEYTIP_REMOVED:dt.KEYTIP_REMOVED;(this.inKeytipMode||!this.delayUpdatingKeytipChange)&&Ct.raise(this,n,{keytip:o,uniqueID:r})},t.prototype.enterKeytipMode=function(){Ct.raise(this,dt.ENTER_KEYTIP_MODE)},t.prototype.exitKeytipMode=function(){Ct.raise(this,dt.EXIT_KEYTIP_MODE)},t.prototype.getKeytips=function(){var o=this;return Object.keys(this.keytips).map(function(r){return o.keytips[r].keytip})},t.prototype.addParentOverflow=function(o){var r=re([],o.keySequences,!0);if(r.pop(),r.length!==0){var e=this.sequenceMapping[r.toString()];if(e&&e.overflowSetSequence)return p(p({},o),{overflowSetSequence:e.overflowSetSequence})}return o},t.prototype.menuExecute=function(o,r){Ct.raise(this,dt.PERSISTED_KEYTIP_EXECUTE,{overflowButtonSequences:o,keytipSequences:r})},t.prototype._getUniqueKtp=function(o,r){return r===void 0&&(r=De()),{keytip:p({},o),uniqueID:r}},t._instance=new t,t}();function gi(t){return t.reduce(function(o,r){return o+oa+r.split("").join(oa)},mc)}function bc(t,o){var r=o.length,e=re([],o,!0).pop(),n=re([],t,!0);return Rs(n,r-1,e)}function yc(t){var o=" "+hc;return t.length?o+" "+gi(t):o}function _c(t){var o=l.useRef(),r=t.keytipProps?p({disabled:t.disabled},t.keytipProps):void 0,e=ot(gc.getInstance()),n=wr(t);nr(function(){o.current&&r&&(n?.keytipProps!==t.keytipProps||n?.disabled!==t.disabled)&&e.update(r,o.current)}),nr(function(){return r&&(o.current=e.register(r)),function(){r&&e.unregister(r,o.current)}},[]);var a={ariaDescribedBy:void 0,keytipId:void 0};return r&&(a=xc(e,r,t.ariaDescribedBy)),a}function xc(t,o,r){var e=t.addParentOverflow(o),n=Nr(r,yc(e.keySequences)),a=re([],e.keySequences,!0);e.overflowSetSequence&&(a=bc(a,e.overflowSetSequence));var i=gi(a);return{ariaDescribedBy:n,keytipId:i}}var Vr=function(t){var o,r=t.children,e=qt(t,["children"]),n=_c(e),a=n.keytipId,i=n.ariaDescribedBy;return r((o={},o[vc]=a,o[pc]=a,o["aria-describedby"]=i,o))},Cc=function(t){Ee(o,t);function o(){var r=t!==null&&t.apply(this,arguments)||this;return r._anchor=l.createRef(),r._getMemoizedMenuButtonKeytipProps=ge(function(e){return p(p({},e),{hasMenu:!0})}),r._getSubmenuTarget=function(){return r._anchor.current?r._anchor.current:void 0},r._onItemClick=function(e){var n=r.props,a=n.item,i=n.onItemClick;i&&i(a,e)},r._renderAriaDescription=function(e,n){return e?l.createElement("span",{id:r._ariaDescriptionId,className:n},e):null},r}return o.prototype.render=function(){var r=this,e=this.props,n=e.item,a=e.classNames,i=e.index,s=e.focusableElementIndex,u=e.totalItemCount,c=e.hasCheckmarks,f=e.hasIcons,d=e.expandedMenuItemKey,v=e.onItemClick,m=e.openSubMenu,y=e.dismissSubMenu,g=e.dismissMenu,h=Kr;this.props.item.contextualMenuItemAs&&(h=rt(this.props.item.contextualMenuItemAs,h)),this.props.contextualMenuItemAs&&(h=rt(this.props.contextualMenuItemAs,h));var x=n.rel;n.target&&n.target.toLowerCase()==="_blank"&&(x=x||"nofollow noopener noreferrer");var _=Et(n),B=oe(n,qa),C=vt(n),k=n.itemProps,w=n.ariaDescription,b=n.keytipProps;b&&_&&(b=this._getMemoizedMenuButtonKeytipProps(b)),w&&(this._ariaDescriptionId=De());var S=Nr(n.ariaDescribedBy,w?this._ariaDescriptionId:void 0,B["aria-describedby"]),P={"aria-describedby":S};return l.createElement("div",null,l.createElement(Vr,{keytipProps:n.keytipProps,ariaDescribedBy:S,disabled:C},function(I){return l.createElement("a",p({},P,B,I,{ref:r._anchor,href:n.href,target:n.target,rel:x,className:a.root,role:"menuitem","aria-haspopup":_||void 0,"aria-expanded":_?n.key===d:void 0,"aria-posinset":s+1,"aria-setsize":u,"aria-disabled":vt(n),style:n.style,onClick:r._onItemClick,onMouseEnter:r._onItemMouseEnter,onMouseLeave:r._onItemMouseLeave,onMouseMove:r._onItemMouseMove,onKeyDown:_?r._onItemKeyDown:void 0}),l.createElement(h,p({componentRef:n.componentRef,item:n,classNames:a,index:i,onCheckmarkClick:c&&v?v:void 0,hasIcons:f,openSubMenu:m,dismissSubMenu:y,dismissMenu:g,getSubmenuTarget:r._getSubmenuTarget},k)),r._renderAriaDescription(w,a.screenReaderText))}))},o}(On),kc=function(t){Ee(o,t);function o(){var r=t!==null&&t.apply(this,arguments)||this;return r._btn=l.createRef(),r._getMemoizedMenuButtonKeytipProps=ge(function(e){return p(p({},e),{hasMenu:!0})}),r._renderAriaDescription=function(e,n){return e?l.createElement("span",{id:r._ariaDescriptionId,className:n},e):null},r._getSubmenuTarget=function(){return r._btn.current?r._btn.current:void 0},r}return o.prototype.render=function(){var r=this,e=this.props,n=e.item,a=e.classNames,i=e.index,s=e.focusableElementIndex,u=e.totalItemCount,c=e.hasCheckmarks,f=e.hasIcons,d=e.contextualMenuItemAs,v=e.expandedMenuItemKey,m=e.onItemMouseDown,y=e.onItemClick,g=e.openSubMenu,h=e.dismissSubMenu,x=e.dismissMenu,_=Kr;n.contextualMenuItemAs&&(_=rt(n.contextualMenuItemAs,_)),d&&(_=rt(d,_));var B=Sr(n),C=B!==null,k=pi(n),w=Et(n),b=n.itemProps,S=n.ariaLabel,P=n.ariaDescription,I=oe(n,po);delete I.disabled;var A=n.role||k;P&&(this._ariaDescriptionId=De());var D=Nr(n.ariaDescribedBy,P?this._ariaDescriptionId:void 0,I["aria-describedby"]),W={className:a.root,onClick:this._onItemClick,onKeyDown:w?this._onItemKeyDown:void 0,onMouseEnter:this._onItemMouseEnter,onMouseLeave:this._onItemMouseLeave,onMouseDown:function(E){return m?m(n,E):void 0},onMouseMove:this._onItemMouseMove,href:n.href,title:n.title,"aria-label":S,"aria-describedby":D,"aria-haspopup":w||void 0,"aria-expanded":w?n.key===v:void 0,"aria-posinset":s+1,"aria-setsize":u,"aria-disabled":vt(n),"aria-checked":(A==="menuitemcheckbox"||A==="menuitemradio")&&C?!!B:void 0,"aria-selected":A==="menuitem"&&C?!!B:void 0,role:A,style:n.style},M=n.keytipProps;return M&&w&&(M=this._getMemoizedMenuButtonKeytipProps(M)),l.createElement(Vr,{keytipProps:M,ariaDescribedBy:D,disabled:vt(n)},function(E){return l.createElement("button",p({ref:r._btn},I,W,E),l.createElement(_,p({componentRef:n.componentRef,item:n,classNames:a,index:i,onCheckmarkClick:c&&y?y:void 0,hasIcons:f,openSubMenu:g,dismissSubMenu:h,dismissMenu:x,getSubmenuTarget:r._getSubmenuTarget},b)),r._renderAriaDescription(P,a.screenReaderText))})},o}(On),wc=function(t){var o=t.theme,r=t.getClassNames,e=t.className;if(!o)throw new Error("Theme is undefined or null.");if(r){var n=r(o);return{wrapper:[n.wrapper],divider:[n.divider]}}return{wrapper:[{display:"inline-flex",height:"100%",alignItems:"center"},e],divider:[{width:1,height:"100%",backgroundColor:o.palette.neutralTertiaryAlt}]}},Sc=xe(),bi=l.forwardRef(function(t,o){var r=t.styles,e=t.theme,n=t.getClassNames,a=t.className,i=Sc(r,{theme:e,getClassNames:n,className:a});return l.createElement("span",{className:i.wrapper,ref:o},l.createElement("span",{className:i.divider}))});bi.displayName="VerticalDividerBase";var Bc=Ce(bi,wc,void 0,{scope:"VerticalDivider"}),Ic=500,Ec=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;return e._getMemoizedMenuButtonKeytipProps=ge(function(n){return p(p({},n),{hasMenu:!0})}),e._onItemKeyDown=function(n){var a=e.props,i=a.item,s=a.onItemKeyDown;n.which===z.enter?(e._executeItemClick(n),n.preventDefault(),n.stopPropagation()):s&&s(i,n)},e._getSubmenuTarget=function(){return e._splitButton},e._renderAriaDescription=function(n,a){return n?l.createElement("span",{id:e._ariaDescriptionId,className:a},n):null},e._onItemMouseEnterPrimary=function(n){var a=e.props,i=a.item,s=a.onItemMouseEnter;s&&s(p(p({},i),{subMenuProps:void 0,items:void 0}),n,e._splitButton)},e._onItemMouseEnterIcon=function(n){var a=e.props,i=a.item,s=a.onItemMouseEnter;s&&s(i,n,e._splitButton)},e._onItemMouseMovePrimary=function(n){var a=e.props,i=a.item,s=a.onItemMouseMove;s&&s(p(p({},i),{subMenuProps:void 0,items:void 0}),n,e._splitButton)},e._onItemMouseMoveIcon=function(n){var a=e.props,i=a.item,s=a.onItemMouseMove;s&&s(i,n,e._splitButton)},e._onIconItemClick=function(n){var a=e.props,i=a.item,s=a.onItemClickBase;s&&s(i,n,e._splitButton?e._splitButton:n.currentTarget)},e._executeItemClick=function(n){var a=e.props,i=a.item,s=a.executeItemClick,u=a.onItemClick;if(!(i.disabled||i.isDisabled)){if(e._processingTouch&&!i.canCheck&&u)return u(i,n);s&&s(i,n)}},e._onTouchStart=function(n){e._splitButton&&!("onpointerdown"in e._splitButton)&&e._handleTouchAndPointerEvent(n)},e._onPointerDown=function(n){n.pointerType==="touch"&&(e._handleTouchAndPointerEvent(n),n.preventDefault(),n.stopImmediatePropagation())},e._async=new $r(e),e._events=new Ct(e),e._dismissLabelId=De(),e}return o.prototype.componentDidMount=function(){this._splitButton&&"onpointerdown"in this._splitButton&&this._events.on(this._splitButton,"pointerdown",this._onPointerDown,!0)},o.prototype.componentWillUnmount=function(){this._async.dispose(),this._events.dispose()},o.prototype.render=function(){var r=this,e,n=this.props,a=n.item,i=n.classNames,s=n.index,u=n.focusableElementIndex,c=n.totalItemCount,f=n.hasCheckmarks,d=n.hasIcons,v=n.onItemMouseLeave,m=n.expandedMenuItemKey,y=Et(a),g=a.keytipProps;g&&(g=this._getMemoizedMenuButtonKeytipProps(g));var h=a.ariaDescription;h&&(this._ariaDescriptionId=De());var x=(e=Sr(a))!==null&&e!==void 0?e:void 0;return l.createElement(Vr,{keytipProps:g,disabled:vt(a)},function(_){return l.createElement("div",{"data-ktp-target":_["data-ktp-target"],ref:function(B){return r._splitButton=B},role:pi(a),"aria-label":a.ariaLabel,className:i.splitContainer,"aria-disabled":vt(a),"aria-expanded":y?a.key===m:void 0,"aria-haspopup":!0,"aria-describedby":Nr(a.ariaDescribedBy,h?r._ariaDescriptionId:void 0,_["aria-describedby"]),"aria-checked":x,"aria-posinset":u+1,"aria-setsize":c,onMouseEnter:r._onItemMouseEnterPrimary,onMouseLeave:v?v.bind(r,p(p({},a),{subMenuProps:null,items:null})):void 0,onMouseMove:r._onItemMouseMovePrimary,onKeyDown:r._onItemKeyDown,onClick:r._executeItemClick,onTouchStart:r._onTouchStart,tabIndex:0,"data-is-focusable":!0,"aria-roledescription":a["aria-roledescription"]},r._renderSplitPrimaryButton(a,i,s,f,d),r._renderSplitDivider(a),r._renderSplitIconButton(a,i,s,_),r._renderAriaDescription(h,i.screenReaderText))})},o.prototype._renderSplitPrimaryButton=function(r,e,n,a,i){var s=this.props,u=s.contextualMenuItemAs,c=u===void 0?Kr:u,f=s.onItemClick,d={key:r.key,disabled:vt(r)||r.primaryDisabled,name:r.name,text:r.text||r.name,secondaryText:r.secondaryText,className:e.splitPrimary,canCheck:r.canCheck,isChecked:r.isChecked,checked:r.checked,iconProps:r.iconProps,id:this._dismissLabelId,onRenderIcon:r.onRenderIcon,data:r.data,"data-is-focusable":!1},v=r.itemProps;return l.createElement("button",p({},oe(d,po)),l.createElement(c,p({"data-is-focusable":!1,item:d,classNames:e,index:n,onCheckmarkClick:a&&f?f:void 0,hasIcons:i},v)))},o.prototype._renderSplitDivider=function(r){var e=r.getSplitButtonVerticalDividerClassNames||cc;return l.createElement(Bc,{getClassNames:e})},o.prototype._renderSplitIconButton=function(r,e,n,a){var i=this.props,s=i.onItemMouseLeave,u=i.onItemMouseDown,c=i.openSubMenu,f=i.dismissSubMenu,d=i.dismissMenu,v=Kr;this.props.item.contextualMenuItemAs&&(v=rt(this.props.item.contextualMenuItemAs,v)),this.props.contextualMenuItemAs&&(v=rt(this.props.contextualMenuItemAs,v));var m={onClick:this._onIconItemClick,disabled:vt(r),className:e.splitMenu,subMenuProps:r.subMenuProps,submenuIconProps:r.submenuIconProps,split:!0,key:r.key,"aria-labelledby":this._dismissLabelId},y=p(p({},oe(m,po)),{onMouseEnter:this._onItemMouseEnterIcon,onMouseLeave:s?s.bind(this,r):void 0,onMouseDown:function(h){return u?u(r,h):void 0},onMouseMove:this._onItemMouseMoveIcon,"data-is-focusable":!1,"data-ktp-execute-target":a["data-ktp-execute-target"],"aria-haspopup":!0}),g=r.itemProps;return l.createElement("button",p({},y),l.createElement(v,p({componentRef:r.componentRef,item:m,classNames:e,index:n,hasIcons:!1,openSubMenu:c,dismissSubMenu:f,dismissMenu:d,getSubmenuTarget:this._getSubmenuTarget},g)))},o.prototype._handleTouchAndPointerEvent=function(r){var e=this,n=this.props.onTap;n&&n(r),this._lastTouchTimeoutId&&(this._async.clearTimeout(this._lastTouchTimeoutId),this._lastTouchTimeoutId=void 0),this._processingTouch=!0,this._lastTouchTimeoutId=this._async.setTimeout(function(){e._processingTouch=!1,e._lastTouchTimeoutId=void 0},Ic)},o}(On),Br;(function(t){t[t.small=0]="small",t[t.medium=1]="medium",t[t.large=2]="large",t[t.xLarge=3]="xLarge",t[t.xxLarge=4]="xxLarge",t[t.xxxLarge=5]="xxxLarge",t[t.unknown=999]="unknown"})(Br||(Br={}));var Tc=[479,639,1023,1365,1919,99999999],yi;function _i(){var t;return(t=yi)!==null&&t!==void 0?t:Br.large}function Nc(t){try{return t.document.documentElement.clientWidth}catch{return t.innerWidth}}function Pc(t){var o=Br.small;if(t){try{for(;Nc(t)>Tc[o];)o++}catch{o=_i()}yi=o}else throw new Error("Content was rendered in a server environment without providing a default responsive mode. Call setResponsiveMode to define what the responsive mode is.");return o}var xi=function(t,o){var r=l.useState(_i()),e=r[0],n=r[1],a=l.useCallback(function(){var s=Pc(Er(t.current));e!==s&&n(s)},[t,e]),i=Mn();return Wr(i,"resize",a),l.useEffect(function(){o===void 0&&a()},[o]),o??e},Mc=l.createContext({}),Dc=xe(),Rc=xe(),Fc={items:[],shouldFocusOnMount:!0,gapSpace:0,directionalHint:pe.bottomAutoEdge,beakWidth:16};function na(t){for(var o=0,r=0,e=t;r0){var Rr=0;return l.createElement("li",{role:"presentation",key:ee.key||L.key||"section-".concat(ae)},l.createElement("div",p({},be),l.createElement("ul",{className:ne.list,role:"presentation"},ee.topDivider&&Se(ae,X,!0,!0),Oe&&ze(Oe,L.key||ae,X,L.title),ee.items.map(function(Mt,at){var Ao=we(Mt,at,Rr,na(ee.items),Ae,We,ne);if(Mt.itemType!==Fe.Divider&&Mt.itemType!==Fe.Header){var Oo=Mt.customOnRenderListLength?Mt.customOnRenderListLength:1;Rr+=Oo}return Ao}),ee.bottomDivider&&Se(ae,X,!1,!0))))}}},ze=function(L,X,ne,ae){return l.createElement("li",{role:"presentation",title:ae,key:X,className:ne.item},L)},Se=function(L,X,ne,ae){return ae||L>0?l.createElement("li",{role:"separator",key:"separator-"+L+(ne===void 0?"":ne?"-top":"-bottom"),className:X.divider,"aria-hidden":"true"}):null},st=function(L,X,ne,ae,Ae,We,ee){if(L.onRender)return L.onRender(p({"aria-posinset":ae+1,"aria-setsize":Ae},L),u);var Oe=n.contextualMenuItemAs,be={item:L,classNames:X,index:ne,focusableElementIndex:ae,totalItemCount:Ae,hasCheckmarks:We,hasIcons:ee,contextualMenuItemAs:Oe,onItemMouseEnter:O,onItemMouseLeave:K,onItemMouseMove:j,onItemMouseDown:Gc,executeItemClick:Q,onItemKeyDown:R,expandedMenuItemKey:y,openSubMenu:g,dismissSubMenu:x,dismissMenu:u};if(L.href){var Pe=Cc;return L.contextualMenuItemWrapperAs&&(Pe=rt(L.contextualMenuItemWrapperAs,Pe)),l.createElement(Pe,p({},be,{onItemClick:J}))}if(L.split&&Et(L)){var Je=Ec;return L.contextualMenuItemWrapperAs&&(Je=rt(L.contextualMenuItemWrapperAs,Je)),l.createElement(Je,p({},be,{onItemClick:le,onItemClickBase:V,onTap:I}))}var nt=kc;return L.contextualMenuItemWrapperAs&&(nt=rt(L.contextualMenuItemWrapperAs,nt)),l.createElement(nt,p({},be,{onItemClick:le,onItemClickBase:V}))},se=function(L,X,ne,ae,Ae,We){var ee=Kr;L.contextualMenuItemAs&&(ee=rt(L.contextualMenuItemAs,ee)),n.contextualMenuItemAs&&(ee=rt(n.contextualMenuItemAs,ee));var Oe=L.itemProps,be=L.id,Pe=Oe&&oe(Oe,Ve);return l.createElement("div",p({id:be,className:ne.header},Pe,{style:L.style}),l.createElement(ee,p({item:L,classNames:X,index:ae,onCheckmarkClick:Ae?le:void 0,hasIcons:We},Oe)))},lt=n.isBeakVisible,_e=n.items,Kt=n.labelElementId,bt=n.id,Ue=n.className,je=n.beakWidth,Nt=n.directionalHint,Vt=n.directionalHintForRTL,ur=n.alignTargetEdge,Ut=n.gapSpace,Gt=n.coverTarget,cr=n.ariaLabel,yt=n.doNotLayer,$t=n.target,Pt=n.bounds,Zt=n.useTargetWidth,Yt=n.useTargetAsMinWidth,Z=n.directionalHintFixed,$=n.shouldFocusOnMount,Ge=n.shouldFocusOnContainer,dr=n.title,Mo=n.styles,Yr=n.theme,Mr=n.calloutProps,Xr=n.onRenderSubMenu,Do=Xr===void 0?ia:Xr,fr=n.onRenderMenuList,Ro=fr===void 0?function(L,X){return me(L,ut)}:fr,Jr=n.focusZoneProps,Qr=n.getMenuClassNames,ut=Qr?Qr(Yr,Ue):Dc(Mo,{theme:Yr,className:Ue}),Fo=eo(_e);function eo(L){for(var X=0,ne=L;X0){var Lo=na(_e),ms=ut.subComponentStyles?ut.subComponentStyles.callout:void 0;return l.createElement(Mc.Consumer,null,function(L){return l.createElement(Fn,p({styles:ms,onRestoreFocus:v},Mr,{target:$t||L.target,isBeakVisible:lt,beakWidth:je,directionalHint:Nt,directionalHintForRTL:Vt,gapSpace:Ut,coverTarget:Gt,doNotLayer:yt,className:he("ms-ContextualMenu-Callout",Mr&&Mr.className),setInitialFocus:$,onDismiss:n.onDismiss||L.onDismiss,onScroll:b,bounds:Pt,directionalHintFixed:Z,alignTargetEdge:ur,hidden:n.hidden||L.hidden,ref:o}),l.createElement("div",{style:$e,ref:a,id:bt,className:ut.container,tabIndex:Ge?0:-1,onKeyDown:H,onKeyUp:N,onFocusCapture:k,"aria-label":cr,"aria-labelledby":Kt,role:"menu"},dr&&l.createElement("div",{className:ut.title}," ",dr," "),_e&&_e.length?Y(Ro({ariaLabel:cr,items:_e,totalItemCount:Lo,hasCheckmarks:te,hasIcons:Fo,defaultMenuItemRenderer:function(X){return ie(X,ut)},labelElementId:Kt},function(X,ne){return me(X,ut)}),U):null,de&&Do(de,ia)),l.createElement(In,null))})}else return null}),function(t,o){return!o.shouldUpdateWhenHidden&&t.hidden&&o.hidden?!0:Sn(t,o)});Si.displayName="ContextualMenuBase";function aa(t){return t.which===z.alt||t.key==="Meta"}function Gc(t,o){var r;(r=t.onMouseDown)===null||r===void 0||r.call(t,t,o)}function ia(t,o){throw Error("ContextualMenuBase: onRenderSubMenu callback is null or undefined. Please ensure to set `onRenderSubMenu` property either manually or with `styled` helper.")}function Bi(t,o){for(var r=0,e=o;r span":{position:"relative",left:0,top:0}}}],rootDisabled:[ht(t,{inset:1,highContrastStyle:c,borderColor:"transparent"}),{backgroundColor:s,borderColor:s,color:u,cursor:"default",selectors:{":hover":ua,":focus":ua}}],iconDisabled:{color:u,selectors:(o={},o[T]={color:"GrayText"},o)},menuIconDisabled:{color:u,selectors:(r={},r[T]={color:"GrayText"},r)},flexContainer:{display:"flex",height:"100%",flexWrap:"nowrap",justifyContent:"center",alignItems:"center"},description:{display:"block"},textContainer:{flexGrow:1,display:"block"},icon:ca(a.mediumPlus.fontSize),menuIcon:ca(a.small.fontSize),label:{margin:"0 4px",lineHeight:"100%",display:"block"},screenReaderText:Bn}}),Ni=ge(function(t,o){var r,e,n,a,i,s,u,c,f,d,v,m,y,g=t.effects,h=t.palette,x=t.semanticColors,_={left:-2,top:-2,bottom:-2,right:-2,border:"none"},B={position:"absolute",width:1,right:31,top:8,bottom:8},C={splitButtonContainer:[ht(t,{highContrastStyle:_,inset:2,pointerEvents:"none"}),{display:"inline-flex",selectors:{".ms-Button--default":{borderTopRightRadius:"0",borderBottomRightRadius:"0",borderRight:"none",flexGrow:"1"},".ms-Button--primary":{borderTopRightRadius:"0",borderBottomRightRadius:"0",border:"none",flexGrow:"1",selectors:(r={},r[T]=p({color:"WindowText",backgroundColor:"Window",border:"1px solid WindowText",borderRightWidth:"0"},fe()),r[":hover"]={border:"none"},r[":active"]={border:"none"},r)},".ms-Button--primary + .ms-Button":{border:"none",selectors:(e={},e[T]={border:"1px solid WindowText",borderLeftWidth:"0"},e)}}}],splitButtonContainerHovered:{selectors:{".ms-Button--primary":{selectors:(n={},n[T]={color:"Window",backgroundColor:"Highlight"},n)},".ms-Button.is-disabled":{color:x.buttonTextDisabled,selectors:(a={},a[T]={color:"GrayText",borderColor:"GrayText",backgroundColor:"Window"},a)}}},splitButtonContainerChecked:{selectors:{".ms-Button--primary":{selectors:(i={},i[T]=p({color:"Window",backgroundColor:"WindowText"},fe()),i)}}},splitButtonContainerCheckedHovered:{selectors:{".ms-Button--primary":{selectors:(s={},s[T]=p({color:"Window",backgroundColor:"WindowText"},fe()),s)}}},splitButtonContainerFocused:{outline:"none!important"},splitButtonMenuButton:(u={padding:6,height:"auto",boxSizing:"border-box",borderRadius:0,borderTopRightRadius:g.roundedCorner2,borderBottomRightRadius:g.roundedCorner2,border:"1px solid ".concat(h.neutralSecondaryAlt),borderLeft:"none",outline:"transparent",userSelect:"none",display:"inline-block",textDecoration:"none",textAlign:"center",cursor:"pointer",verticalAlign:"top",width:32,marginLeft:-1,marginTop:0,marginRight:0,marginBottom:0},u[T]={".ms-Button-menuIcon":{color:"WindowText"}},u),splitButtonDivider:p(p({},B),{selectors:(c={},c[T]={backgroundColor:"WindowText"},c)}),splitButtonDividerDisabled:p(p({},B),{selectors:(f={},f[T]={backgroundColor:"GrayText"},f)}),splitButtonMenuButtonDisabled:{pointerEvents:"none",border:"none",selectors:(d={":hover":{cursor:"default"},".ms-Button--primary":{selectors:(v={},v[T]={color:"GrayText",borderColor:"GrayText",backgroundColor:"Window"},v)},".ms-Button-menuIcon":{selectors:(m={},m[T]={color:"GrayText"},m)}},d[T]={color:"GrayText",border:"1px solid GrayText",backgroundColor:"Window"},d)},splitButtonFlexContainer:{display:"flex",height:"100%",flexWrap:"nowrap",justifyContent:"center",alignItems:"center"},splitButtonContainerDisabled:{outline:"none",border:"none",selectors:(y={},y[T]=p({color:"GrayText",borderColor:"GrayText",backgroundColor:"Window"},fe()),y)},splitButtonMenuFocused:p({},ht(t,{highContrastStyle:_,inset:2}))};return Tr(C,o)}),Pi=function(){return{position:"absolute",width:1,right:31,top:8,bottom:8}};function ed(t){var o,r,e,n,a,i=t.semanticColors,s=t.palette,u=i.buttonBackground,c=i.buttonBackgroundPressed,f=i.buttonBackgroundHovered,d=i.buttonBackgroundDisabled,v=i.buttonText,m=i.buttonTextHovered,y=i.buttonTextDisabled,g=i.buttonTextChecked,h=i.buttonTextCheckedHovered;return{root:{backgroundColor:u,color:v},rootHovered:{backgroundColor:f,color:m,selectors:(o={},o[T]={borderColor:"Highlight",color:"Highlight"},o)},rootPressed:{backgroundColor:c,color:g},rootExpanded:{backgroundColor:c,color:g},rootChecked:{backgroundColor:c,color:g},rootCheckedHovered:{backgroundColor:c,color:h},rootDisabled:{color:y,backgroundColor:d,selectors:(r={},r[T]={color:"GrayText",borderColor:"GrayText",backgroundColor:"Window"},r)},splitButtonContainer:{selectors:(e={},e[T]={border:"none"},e)},splitButtonMenuButton:{color:s.white,backgroundColor:"transparent",selectors:{":hover":{backgroundColor:s.neutralLight,selectors:(n={},n[T]={color:"Highlight"},n)}}},splitButtonMenuButtonDisabled:{backgroundColor:i.buttonBackgroundDisabled,selectors:{":hover":{backgroundColor:i.buttonBackgroundDisabled}}},splitButtonDivider:p(p({},Pi()),{backgroundColor:s.neutralTertiaryAlt,selectors:(a={},a[T]={backgroundColor:"WindowText"},a)}),splitButtonDividerDisabled:{backgroundColor:t.palette.neutralTertiaryAlt},splitButtonMenuButtonChecked:{backgroundColor:s.neutralQuaternaryAlt,selectors:{":hover":{backgroundColor:s.neutralQuaternaryAlt}}},splitButtonMenuButtonExpanded:{backgroundColor:s.neutralQuaternaryAlt,selectors:{":hover":{backgroundColor:s.neutralQuaternaryAlt}}},splitButtonMenuIcon:{color:i.buttonText},splitButtonMenuIconDisabled:{color:i.buttonTextDisabled}}}function td(t){var o,r,e,n,a,i,s,u,c,f=t.palette,d=t.semanticColors;return{root:{backgroundColor:d.primaryButtonBackground,border:"1px solid ".concat(d.primaryButtonBackground),color:d.primaryButtonText,selectors:(o={},o[T]=p({color:"Window",backgroundColor:"WindowText",borderColor:"WindowText"},fe()),o[".".concat(ye," &:focus")]={selectors:{":after":{border:"none",outlineColor:f.white}}},o)},rootHovered:{backgroundColor:d.primaryButtonBackgroundHovered,border:"1px solid ".concat(d.primaryButtonBackgroundHovered),color:d.primaryButtonTextHovered,selectors:(r={},r[T]={color:"Window",backgroundColor:"Highlight",borderColor:"Highlight"},r)},rootPressed:{backgroundColor:d.primaryButtonBackgroundPressed,border:"1px solid ".concat(d.primaryButtonBackgroundPressed),color:d.primaryButtonTextPressed,selectors:(e={},e[T]=p({color:"Window",backgroundColor:"WindowText",borderColor:"WindowText"},fe()),e)},rootExpanded:{backgroundColor:d.primaryButtonBackgroundPressed,color:d.primaryButtonTextPressed},rootChecked:{backgroundColor:d.primaryButtonBackgroundPressed,color:d.primaryButtonTextPressed},rootCheckedHovered:{backgroundColor:d.primaryButtonBackgroundPressed,color:d.primaryButtonTextPressed},rootDisabled:{color:d.primaryButtonTextDisabled,backgroundColor:d.primaryButtonBackgroundDisabled,selectors:(n={},n[T]={color:"GrayText",borderColor:"GrayText",backgroundColor:"Window"},n)},splitButtonContainer:{selectors:(a={},a[T]={border:"none"},a)},splitButtonDivider:p(p({},Pi()),{backgroundColor:f.white,selectors:(i={},i[T]={backgroundColor:"Window"},i)}),splitButtonMenuButton:{backgroundColor:d.primaryButtonBackground,color:d.primaryButtonText,selectors:(s={},s[T]={backgroundColor:"Canvas"},s[":hover"]={backgroundColor:d.primaryButtonBackgroundHovered,selectors:(u={},u[T]={color:"Highlight"},u)},s)},splitButtonMenuButtonDisabled:{backgroundColor:d.primaryButtonBackgroundDisabled,selectors:{":hover":{backgroundColor:d.primaryButtonBackgroundDisabled}}},splitButtonMenuButtonChecked:{backgroundColor:d.primaryButtonBackgroundPressed,selectors:{":hover":{backgroundColor:d.primaryButtonBackgroundPressed}}},splitButtonMenuButtonExpanded:{backgroundColor:d.primaryButtonBackgroundPressed,selectors:{":hover":{backgroundColor:d.primaryButtonBackgroundPressed}}},splitButtonMenuIcon:{color:d.primaryButtonText},splitButtonMenuIconDisabled:{color:f.neutralTertiary,selectors:(c={},c[T]={color:"GrayText"},c)}}}var rd="32px",od="80px",nd=ge(function(t,o,r){var e=zn(t),n=Ni(t),a={root:{minWidth:od,height:rd},label:{fontWeight:Wt.semibold}};return Tr(e,a,r?td(t):ed(t),n,o)}),ad=function(t){Ee(o,t);function o(){return t!==null&&t.apply(this,arguments)||this}return o.prototype.render=function(){var r=this.props,e=r.primary,n=e===void 0?!1:e,a=r.styles,i=r.theme;return l.createElement(Hn,p({},this.props,{variantClassName:n?"ms-Button--primary":"ms-Button--default",styles:nd(i,a,n),onRenderDescription:xr}))},o=So([Bo("DefaultButton",["theme","styles"],!0)],o),o}(l.Component),id="40px",sd="0 4px",ld=ge(function(t,o){var r,e,n,a=zn(t),i={root:{padding:sd,height:id,color:t.palette.neutralPrimary,backgroundColor:"transparent",border:"1px solid transparent",selectors:(r={},r[T]={borderColor:"Window"},r)},rootHovered:{color:t.palette.themePrimary,selectors:(e={},e[T]={color:"Highlight"},e)},iconHovered:{color:t.palette.themePrimary},rootPressed:{color:t.palette.black},rootExpanded:{color:t.palette.themePrimary},iconPressed:{color:t.palette.themeDarker},rootDisabled:{color:t.palette.neutralTertiary,backgroundColor:"transparent",borderColor:"transparent",selectors:(n={},n[T]={color:"GrayText"},n)},rootChecked:{color:t.palette.black},iconChecked:{color:t.palette.themeDarker},flexContainer:{justifyContent:"flex-start"},icon:{color:t.palette.themeDarkAlt},iconDisabled:{color:"inherit"},menuIcon:{color:t.palette.neutralSecondary},textContainer:{flexGrow:0}};return Tr(a,i,o)}),ud=function(t){Ee(o,t);function o(){return t!==null&&t.apply(this,arguments)||this}return o.prototype.render=function(){var r=this.props,e=r.styles,n=r.theme;return l.createElement(Hn,p({},this.props,{variantClassName:"ms-Button--action ms-Button--command",styles:ld(n,e),onRenderDescription:xr}))},o=So([Bo("ActionButton",["theme","styles"],!0)],o),o}(l.Component),cd=ge(function(t,o){var r,e=zn(t),n=Ni(t),a=t.palette,i=t.semanticColors,s={root:{padding:"0 4px",width:"32px",height:"32px",backgroundColor:"transparent",border:"none",color:i.link},rootHovered:{color:a.themeDarkAlt,backgroundColor:a.neutralLighter,selectors:(r={},r[T]={borderColor:"Highlight",color:"Highlight"},r)},rootHasMenu:{width:"auto"},rootPressed:{color:a.themeDark,backgroundColor:a.neutralLight},rootExpanded:{color:a.themeDark,backgroundColor:a.neutralLight},rootChecked:{color:a.themeDark,backgroundColor:a.neutralLight},rootCheckedHovered:{color:a.themeDark,backgroundColor:a.neutralQuaternaryAlt},rootDisabled:{color:a.neutralTertiaryAlt}};return Tr(e,s,n,o)}),Ur=function(t){Ee(o,t);function o(){return t!==null&&t.apply(this,arguments)||this}return o.prototype.render=function(){var r=this.props,e=r.styles,n=r.theme;return l.createElement(Hn,p({},this.props,{variantClassName:"ms-Button--icon",styles:cd(n,e),onRenderText:xr,onRenderDescription:xr}))},o=So([Bo("IconButton",["theme","styles"],!0)],o),o}(l.Component),Xv=function(t){Ee(o,t);function o(){return t!==null&&t.apply(this,arguments)||this}return o.prototype.render=function(){return l.createElement(ad,p({},this.props,{primary:!0,onRenderDescription:xr}))},o=So([Bo("PrimaryButton",["theme","styles"],!0)],o),o}(l.Component),xn=ud,dd=xe(),Mi=l.forwardRef(function(t,o){var r=t.disabled,e=t.required,n=t.inputProps,a=t.name,i=t.ariaLabel,s=t.ariaLabelledBy,u=t.ariaDescribedBy,c=t.ariaPositionInSet,f=t.ariaSetSize,d=t.title,v=t.checkmarkIconProps,m=t.styles,y=t.theme,g=t.className,h=t.boxSide,x=h===void 0?"start":h,_=It("checkbox-",t.id),B=l.useRef(null),C=gt(B,o),k=l.useRef(null),w=kr(t.checked,t.defaultChecked,t.onChange),b=w[0],S=w[1],P=kr(t.indeterminate,t.defaultIndeterminate),I=P[0],A=P[1];ja(B);var D=dd(m,{theme:y,className:g,disabled:r,indeterminate:I,checked:b,reversed:x!=="start",isUsingCustomLabelRender:!!t.onRenderLabel}),W=l.useCallback(function(F){I?(S(!!b,F),A(!1)):S(!b,F)},[S,A,I,b]),M=l.useCallback(function(F){return F&&F.label?l.createElement("span",{className:D.text,title:F.title},F.label):null},[D.text]),E=l.useCallback(function(F){if(k.current){var O=!!F;k.current.indeterminate=O,A(O)}},[A]);fd(t,b,I,E,k),l.useEffect(function(){return E(I)},[E,I]);var N=t.onRenderLabel||M,H=I?"mixed":void 0,R=p(p({className:D.input,type:"checkbox"},n),{checked:!!b,disabled:r,required:e,name:a,id:_,title:d,onChange:W,"aria-disabled":r,"aria-label":i,"aria-labelledby":s,"aria-describedby":u,"aria-posinset":c,"aria-setsize":f,"aria-checked":H});return l.createElement("div",{className:D.root,title:d,ref:C},l.createElement("input",p({},R,{ref:k,title:d,"data-ktp-execute-target":!0})),l.createElement("label",{className:D.label,htmlFor:_},l.createElement("div",{className:D.checkbox,"data-ktp-target":!0},l.createElement(Xe,p({iconName:"CheckMark"},v,{className:D.checkmark}))),N(t,M)))});Mi.displayName="CheckboxBase";function fd(t,o,r,e,n){l.useImperativeHandle(t.componentRef,function(){return{get checked(){return!!o},get indeterminate(){return!!r},set indeterminate(a){e(a)},focus:function(){n.current&&n.current.focus()}}},[n,o,r,e])}var md={root:"ms-Checkbox",label:"ms-Checkbox-label",checkbox:"ms-Checkbox-checkbox",checkmark:"ms-Checkbox-checkmark",text:"ms-Checkbox-text"},da="20px",fa="200ms",ma="cubic-bezier(.4, 0, .23, 1)",vd=function(t){var o,r,e,n,a,i,s,u,c,f,d,v,m,y,g,h,x,_,B=t.className,C=t.theme,k=t.reversed,w=t.checked,b=t.disabled,S=t.isUsingCustomLabelRender,P=t.indeterminate,I=C.semanticColors,A=C.effects,D=C.palette,W=C.fonts,M=Ie(md,C),E=I.inputForegroundChecked,N=D.neutralSecondary,H=D.neutralPrimary,R=I.inputBackgroundChecked,F=I.inputBackgroundChecked,O=I.disabledBodySubtext,j=I.inputBorderHovered,K=I.inputBackgroundCheckedHovered,le=I.inputBackgroundChecked,J=I.inputBackgroundCheckedHovered,Q=I.inputBackgroundCheckedHovered,V=I.inputTextHovered,me=I.disabledBodySubtext,Y=I.bodyText,we=I.disabledText,ie=[(o={content:'""',borderRadius:A.roundedCorner2,position:"absolute",width:10,height:10,top:4,left:4,boxSizing:"border-box",borderWidth:5,borderStyle:"solid",borderColor:b?O:R,transitionProperty:"border-width, border, border-color",transitionDuration:fa,transitionTimingFunction:ma},o[T]={borderColor:"WindowText"},o)];return{root:[M.root,{position:"relative",display:"flex"},k&&"reversed",w&&"is-checked",!b&&"is-enabled",b&&"is-disabled",!b&&[!w&&(r={},r[":hover .".concat(M.checkbox)]=(e={borderColor:j},e[T]={borderColor:"Highlight"},e),r[":focus .".concat(M.checkbox)]={borderColor:j},r[":hover .".concat(M.checkmark)]=(n={color:N,opacity:"1"},n[T]={color:"Highlight"},n),r),w&&!P&&(a={},a[":hover .".concat(M.checkbox)]={background:J,borderColor:Q},a[":focus .".concat(M.checkbox)]={background:J,borderColor:Q},a[T]=(i={},i[":hover .".concat(M.checkbox)]={background:"Highlight",borderColor:"Highlight"},i[":focus .".concat(M.checkbox)]={background:"Highlight"},i[":focus:hover .".concat(M.checkbox)]={background:"Highlight"},i[":focus:hover .".concat(M.checkmark)]={color:"Window"},i[":hover .".concat(M.checkmark)]={color:"Window"},i),a),P&&(s={},s[":hover .".concat(M.checkbox,", :hover .").concat(M.checkbox,":after")]=(u={borderColor:K},u[T]={borderColor:"WindowText"},u),s[":focus .".concat(M.checkbox)]={borderColor:K},s[":hover .".concat(M.checkmark)]={opacity:"0"},s),(c={},c[":hover .".concat(M.text,", :focus .").concat(M.text)]=(f={color:V},f[T]={color:b?"GrayText":"WindowText"},f),c)],B],input:(d={position:"absolute",background:"none",opacity:0},d[".".concat(ye," &:focus + label::before")]=(v={outline:"1px solid "+C.palette.neutralSecondary,outlineOffset:"2px"},v[T]={outline:"1px solid WindowText"},v),d),label:[M.label,C.fonts.medium,{display:"flex",alignItems:S?"center":"flex-start",cursor:b?"default":"pointer",position:"relative",userSelect:"none"},k&&{flexDirection:"row-reverse",justifyContent:"flex-end"},{"&::before":{position:"absolute",left:0,right:0,top:0,bottom:0,content:'""',pointerEvents:"none"}}],checkbox:[M.checkbox,(m={position:"relative",display:"flex",flexShrink:0,alignItems:"center",justifyContent:"center",height:da,width:da,border:"1px solid ".concat(H),borderRadius:A.roundedCorner2,boxSizing:"border-box",transitionProperty:"background, border, border-color",transitionDuration:fa,transitionTimingFunction:ma,overflow:"hidden",":after":P?ie:null},m[T]=p({borderColor:"WindowText"},fe()),m),P&&{borderColor:R},k?{marginLeft:4}:{marginRight:4},!b&&!P&&w&&(y={background:le,borderColor:F},y[T]={background:"Highlight",borderColor:"Highlight"},y),b&&(g={borderColor:O},g[T]={borderColor:"GrayText"},g),w&&b&&(h={background:me,borderColor:O},h[T]={background:"Window"},h)],checkmark:[M.checkmark,(x={opacity:w&&!P?"1":"0",color:E},x[T]=p({color:b?"GrayText":"Window"},fe()),x)],text:[M.text,(_={color:b?we:Y,fontSize:W.medium.fontSize,lineHeight:"20px"},_[T]=p({color:b?"GrayText":"WindowText"},fe()),_),k?{marginRight:4}:{marginLeft:4}]}},pd=Ce(Mi,vd,void 0,{scope:"Checkbox"}),hd=xe({cacheSize:100}),gd=function(t){Ee(o,t);function o(){return t!==null&&t.apply(this,arguments)||this}return o.prototype.render=function(){var r=this.props,e=r.as,n=e===void 0?"label":e,a=r.children,i=r.className,s=r.disabled,u=r.styles,c=r.required,f=r.theme,d=hd(u,{className:i,disabled:s,required:c,theme:f});return l.createElement(n,p({},oe(this.props,Ve),{className:d.root}),a)},o}(l.Component),bd=function(t){var o,r=t.theme,e=t.className,n=t.disabled,a=t.required,i=r.semanticColors,s=Wt.semibold,u=i.bodyText,c=i.disabledBodyText,f=i.errorText;return{root:["ms-Label",r.fonts.medium,{fontWeight:s,color:u,boxSizing:"border-box",boxShadow:"none",margin:0,display:"block",padding:"5px 0",wordWrap:"break-word",overflowWrap:"break-word"},n&&{color:c,selectors:(o={},o[T]=p({color:"GrayText"},fe()),o)},a&&{selectors:{"::after":{content:"' *'",color:f,paddingRight:12}}},e]}},zt=Ce(gd,bd,void 0,{scope:"Label"}),yd=xe(),_d="",Qt="TextField",xd="RedEye",Cd="Hide",kd=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;e._textElement=l.createRef(),e._onFocus=function(i){e.props.onFocus&&e.props.onFocus(i),e.setState({isFocused:!0},function(){e.props.validateOnFocusIn&&e._validate(e.value)})},e._onBlur=function(i){e.props.onBlur&&e.props.onBlur(i),e.setState({isFocused:!1},function(){e.props.validateOnFocusOut&&e._validate(e.value)})},e._onRenderLabel=function(i){var s=i.label,u=i.required,c=e._classNames.subComponentStyles?e._classNames.subComponentStyles.label:void 0;return s?l.createElement(zt,{required:u,htmlFor:e._id,styles:c,disabled:i.disabled,id:e._labelId},i.label):null},e._onRenderDescription=function(i){return i.description?l.createElement("span",{className:e._classNames.description},i.description):null},e._onRevealButtonClick=function(i){e.setState(function(s){return{isRevealingPassword:!s.isRevealingPassword}})},e._onInputChange=function(i){var s,u,c=i.target,f=c.value,d=Zo(e.props,e.state)||"";if(f===void 0||f===e._lastChangeValue||f===d){e._lastChangeValue=void 0;return}e._lastChangeValue=f,(u=(s=e.props).onChange)===null||u===void 0||u.call(s,i,f),e._isControlled||e.setState({uncontrolledValue:f})},Tt(e),e._async=new $r(e),e._fallbackId=De(Qt),e._descriptionId=De(Qt+"Description"),e._labelId=De(Qt+"Label"),e._prefixId=De(Qt+"Prefix"),e._suffixId=De(Qt+"Suffix"),e._warnControlledUsage();var n=r.defaultValue,a=n===void 0?_d:n;return typeof a=="number"&&(a=String(a)),e.state={uncontrolledValue:e._isControlled?void 0:a,isFocused:!1,errorMessage:""},e._delayedValidate=e._async.debounce(e._validate,e.props.deferredValidationTime),e._lastValidation=0,e}return Object.defineProperty(o.prototype,"value",{get:function(){return Zo(this.props,this.state)},enumerable:!1,configurable:!0}),o.prototype.componentDidMount=function(){this._adjustInputHeight(),this.props.validateOnLoad&&this._validate(this.value)},o.prototype.componentWillUnmount=function(){this._async.dispose()},o.prototype.getSnapshotBeforeUpdate=function(r,e){return{selection:[this.selectionStart,this.selectionEnd]}},o.prototype.componentDidUpdate=function(r,e,n){var a=this.props,i=(n||{}).selection,s=i===void 0?[null,null]:i,u=s[0],c=s[1];!!r.multiline!=!!a.multiline&&e.isFocused&&(this.focus(),u!==null&&c!==null&&u>=0&&c>=0&&this.setSelectionRange(u,c)),r.value!==a.value&&(this._lastChangeValue=void 0);var f=Zo(r,e),d=this.value;f!==d&&(this._warnControlledUsage(r),this.state.errorMessage&&!a.errorMessage&&this.setState({errorMessage:""}),this._adjustInputHeight(),va(a)&&this._delayedValidate(d))},o.prototype.render=function(){var r=this.props,e=r.borderless,n=r.className,a=r.disabled,i=r.invalid,s=r.iconProps,u=r.inputClassName,c=r.label,f=r.multiline,d=r.required,v=r.underlined,m=r.prefix,y=r.resizable,g=r.suffix,h=r.theme,x=r.styles,_=r.autoAdjustHeight,B=r.canRevealPassword,C=r.revealPasswordAriaLabel,k=r.type,w=r.onRenderPrefix,b=w===void 0?this._onRenderPrefix:w,S=r.onRenderSuffix,P=S===void 0?this._onRenderSuffix:S,I=r.onRenderLabel,A=I===void 0?this._onRenderLabel:I,D=r.onRenderDescription,W=D===void 0?this._onRenderDescription:D,M=this.state,E=M.isFocused,N=M.isRevealingPassword,H=this._errorMessage,R=typeof i=="boolean"?i:!!H,F=!!B&&k==="password"&&wd(),O=this._classNames=yd(x,{theme:h,className:n,disabled:a,focused:E,required:d,multiline:f,hasLabel:!!c,hasErrorMessage:R,borderless:e,resizable:y,hasIcon:!!s,underlined:v,inputClassName:u,autoAdjustHeight:_,hasRevealButton:F});return l.createElement("div",{ref:this.props.elementRef,className:O.root},l.createElement("div",{className:O.wrapper},A(this.props,this._onRenderLabel),l.createElement("div",{className:O.fieldGroup},(m!==void 0||this.props.onRenderPrefix)&&l.createElement("div",{className:O.prefix,id:this._prefixId},b(this.props,this._onRenderPrefix)),f?this._renderTextArea():this._renderInput(),s&&l.createElement(Xe,p({className:O.icon},s)),F&&l.createElement("button",{"aria-label":C,className:O.revealButton,onClick:this._onRevealButtonClick,"aria-pressed":!!N,type:"button"},l.createElement("span",{className:O.revealSpan},l.createElement(Xe,{className:O.revealIcon,iconName:N?Cd:xd}))),(g!==void 0||this.props.onRenderSuffix)&&l.createElement("div",{className:O.suffix,id:this._suffixId},P(this.props,this._onRenderSuffix)))),this._isDescriptionAvailable&&l.createElement("span",{id:this._descriptionId},W(this.props,this._onRenderDescription),H&&l.createElement("div",{role:"alert"},l.createElement(En,null,this._renderErrorMessage()))))},o.prototype.focus=function(){this._textElement.current&&this._textElement.current.focus()},o.prototype.blur=function(){this._textElement.current&&this._textElement.current.blur()},o.prototype.select=function(){this._textElement.current&&this._textElement.current.select()},o.prototype.setSelectionStart=function(r){this._textElement.current&&(this._textElement.current.selectionStart=r)},o.prototype.setSelectionEnd=function(r){this._textElement.current&&(this._textElement.current.selectionEnd=r)},Object.defineProperty(o.prototype,"selectionStart",{get:function(){return this._textElement.current?this._textElement.current.selectionStart:-1},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"selectionEnd",{get:function(){return this._textElement.current?this._textElement.current.selectionEnd:-1},enumerable:!1,configurable:!0}),o.prototype.setSelectionRange=function(r,e){this._textElement.current&&this._textElement.current.setSelectionRange(r,e)},o.prototype._warnControlledUsage=function(r){Os({componentId:this._id,componentName:Qt,props:this.props,oldProps:r,valueProp:"value",defaultValueProp:"defaultValue",onChangeProp:"onChange",readOnlyProp:"readOnly"}),this.props.value===null&&!this._hasWarnedNullValue&&(this._hasWarnedNullValue=!0,Ua("Warning: 'value' prop on '".concat(Qt,"' should not be null. Consider using an ")+"empty string to clear the component or undefined to indicate an uncontrolled component."))},Object.defineProperty(o.prototype,"_id",{get:function(){return this.props.id||this._fallbackId},enumerable:!1,configurable:!0}),Object.defineProperty(o.prototype,"_isControlled",{get:function(){return Hs(this.props,"value")},enumerable:!1,configurable:!0}),o.prototype._onRenderPrefix=function(r){var e=r.prefix;return l.createElement("span",{style:{paddingBottom:"1px"}},e)},o.prototype._onRenderSuffix=function(r){var e=r.suffix;return l.createElement("span",{style:{paddingBottom:"1px"}},e)},Object.defineProperty(o.prototype,"_errorMessage",{get:function(){var r=this.props.errorMessage,e=r===void 0?this.state.errorMessage:r;return e||""},enumerable:!1,configurable:!0}),o.prototype._renderErrorMessage=function(){var r=this._errorMessage;return r?typeof r=="string"?l.createElement("p",{className:this._classNames.errorMessage},l.createElement("span",{"data-automation-id":"error-message"},r)):l.createElement("div",{className:this._classNames.errorMessage,"data-automation-id":"error-message"},r):null},Object.defineProperty(o.prototype,"_isDescriptionAvailable",{get:function(){var r=this.props;return!!(r.onRenderDescription||r.description||this._errorMessage)},enumerable:!1,configurable:!0}),o.prototype._renderTextArea=function(){var r=this.props.invalid,e=r===void 0?!!this._errorMessage:r,n=oe(this.props,zs,["defaultValue"]),a=this.props["aria-labelledby"]||(this.props.label?this._labelId:void 0);return l.createElement("textarea",p({id:this._id},n,{ref:this._textElement,value:this.value||"",onInput:this._onInputChange,onChange:this._onInputChange,className:this._classNames.field,"aria-labelledby":a,"aria-describedby":this._isDescriptionAvailable?this._descriptionId:this.props["aria-describedby"],"aria-invalid":e,"aria-label":this.props.ariaLabel,readOnly:this.props.readOnly,onFocus:this._onFocus,onBlur:this._onBlur}))},o.prototype._renderInput=function(){var r=this.props,e=r.ariaLabel,n=r.invalid,a=n===void 0?!!this._errorMessage:n,i=r.onRenderPrefix,s=r.onRenderSuffix,u=r.prefix,c=r.suffix,f=r.type,d=f===void 0?"text":f,v=r.label,m=[];v&&m.push(this._labelId),(u!==void 0||i)&&m.push(this._prefixId),(c!==void 0||s)&&m.push(this._suffixId);var y=p(p({type:this.state.isRevealingPassword?"text":d,id:this._id},oe(this.props,js,["defaultValue","type"])),{"aria-labelledby":this.props["aria-labelledby"]||(m.length>0?m.join(" "):void 0),ref:this._textElement,value:this.value||"",onInput:this._onInputChange,onChange:this._onInputChange,className:this._classNames.field,"aria-label":e,"aria-describedby":this._isDescriptionAvailable?this._descriptionId:this.props["aria-describedby"],"aria-invalid":a,onFocus:this._onFocus,onBlur:this._onBlur}),g=function(x){return l.createElement("input",p({},x))},h=this.props.onRenderInput||g;return h(y,g)},o.prototype._validate=function(r){var e=this;if(!(this._latestValidateValue===r&&va(this.props))){this._latestValidateValue=r;var n=this.props.onGetErrorMessage,a=n&&n(r||"");if(a!==void 0)if(typeof a=="string"||!("then"in a))this.setState({errorMessage:a}),this._notifyAfterValidate(r,a);else{var i=++this._lastValidation;a.then(function(s){i===e._lastValidation&&e.setState({errorMessage:s}),e._notifyAfterValidate(r,s)})}else this._notifyAfterValidate(r,"")}},o.prototype._notifyAfterValidate=function(r,e){r===this.value&&this.props.onNotifyValidationResult&&this.props.onNotifyValidationResult(e,r)},o.prototype._adjustInputHeight=function(){if(this._textElement.current&&this.props.autoAdjustHeight&&this.props.multiline){var r=this._textElement.current;r.style.height="",r.style.height=r.scrollHeight+"px"}},o.defaultProps={resizable:!0,deferredValidationTime:200,validateOnLoad:!0},o}(l.Component);function Zo(t,o){var r=t.value,e=r===void 0?o.uncontrolledValue:r;return typeof e=="number"?String(e):e}function va(t){return!(t.validateOnFocusIn||t.validateOnFocusOut)}var io;function wd(){if(typeof io!="boolean"){var t=Er();if(t?.navigator){var o=/Edg/.test(t.navigator.userAgent||"");io=!(Ws()||o)}else io=!0}return io}var Sd={root:"ms-TextField",description:"ms-TextField-description",errorMessage:"ms-TextField-errorMessage",field:"ms-TextField-field",fieldGroup:"ms-TextField-fieldGroup",prefix:"ms-TextField-prefix",suffix:"ms-TextField-suffix",wrapper:"ms-TextField-wrapper",revealButton:"ms-TextField-reveal",multiline:"ms-TextField--multiline",borderless:"ms-TextField--borderless",underlined:"ms-TextField--underlined",unresizable:"ms-TextField--unresizable",required:"is-required",disabled:"is-disabled",active:"is-active"};function Bd(t){var o=t.underlined,r=t.disabled,e=t.focused,n=t.theme,a=n.palette,i=n.fonts;return function(){var s;return{root:[o&&r&&{color:a.neutralTertiary},o&&{fontSize:i.medium.fontSize,marginRight:8,paddingLeft:12,paddingRight:0,lineHeight:"22px",height:32},o&&e&&{selectors:(s={},s[T]={height:31},s)}]}}}function Id(t){var o,r,e,n,a,i,s,u,c,f,d,v,m=t.theme,y=t.className,g=t.disabled,h=t.focused,x=t.required,_=t.multiline,B=t.hasLabel,C=t.borderless,k=t.underlined,w=t.hasIcon,b=t.resizable,S=t.hasErrorMessage,P=t.inputClassName,I=t.autoAdjustHeight,A=t.hasRevealButton,D=m.semanticColors,W=m.effects,M=m.fonts,E=Ie(Sd,m),N={background:D.disabledBackground,color:g?D.disabledText:D.inputPlaceholderText,display:"flex",alignItems:"center",padding:"0 10px",lineHeight:1,whiteSpace:"nowrap",flexShrink:0,selectors:(o={},o[T]={background:"Window",color:g?"GrayText":"WindowText"},o)},H=[{color:D.inputPlaceholderText,opacity:1,selectors:(r={},r[T]={color:"GrayText"},r)}],R={color:D.disabledText,selectors:(e={},e[T]={color:"GrayText"},e)};return{root:[E.root,M.medium,x&&E.required,g&&E.disabled,h&&E.active,_&&E.multiline,C&&E.borderless,k&&E.underlined,yr,{position:"relative"},y],wrapper:[E.wrapper,k&&[{display:"flex",borderBottom:"1px solid ".concat(S?D.errorText:D.inputBorder),width:"100%"},g&&{borderBottomColor:D.disabledBackground,selectors:(n={},n[T]=p({borderColor:"GrayText"},fe()),n)},!g&&{selectors:{":hover":{borderBottomColor:S?D.errorText:D.inputBorderHovered,selectors:(a={},a[T]=p({borderBottomColor:"Highlight"},fe()),a)}}},h&&[{position:"relative"},hn(S?D.errorText:D.inputFocusBorderAlt,0,"borderBottom")]]],fieldGroup:[E.fieldGroup,yr,{border:"1px solid ".concat(D.inputBorder),borderRadius:W.roundedCorner2,background:D.inputBackground,cursor:"text",height:32,display:"flex",flexDirection:"row",alignItems:"stretch",position:"relative"},_&&{minHeight:"60px",height:"auto",display:"flex"},!h&&!g&&{selectors:{":hover":{borderColor:D.inputBorderHovered,selectors:(i={},i[T]=p({borderColor:"Highlight"},fe()),i)}}},h&&!k&&hn(S?D.errorText:D.inputFocusBorderAlt,W.roundedCorner2),g&&{borderColor:D.disabledBackground,selectors:(s={},s[T]=p({borderColor:"GrayText"},fe()),s),cursor:"default"},C&&{border:"none"},C&&h&&{border:"none",selectors:{":after":{border:"none"}}},k&&{flex:"1 1 0px",border:"none",textAlign:"left"},k&&g&&{backgroundColor:"transparent"},S&&!k&&{borderColor:D.errorText,selectors:{"&:hover":{borderColor:D.errorText}}},!B&&x&&{selectors:(u={":before":{content:"'*'",color:D.errorText,position:"absolute",top:-5,right:-10}},u[T]={selectors:{":before":{color:"WindowText",right:-14}}},u)}],field:[M.medium,E.field,yr,{borderRadius:0,border:"none",background:"none",backgroundColor:"transparent",color:D.inputText,padding:"0 8px",width:"100%",minWidth:0,textOverflow:"ellipsis",outline:0,selectors:(c={"&:active, &:focus, &:hover":{outline:0},"::-ms-clear":{display:"none"}},c[T]={background:"Window",color:g?"GrayText":"WindowText"},c)},Vn(H),_&&!b&&[E.unresizable,{resize:"none"}],_&&{minHeight:"inherit",lineHeight:17,flexGrow:1,paddingTop:6,paddingBottom:6,overflow:"auto",width:"100%"},_&&I&&{overflow:"hidden"},w&&!A&&{paddingRight:24},_&&w&&{paddingRight:40},g&&[{backgroundColor:D.disabledBackground,color:D.disabledText,borderColor:D.disabledBackground},Vn(R)],k&&{textAlign:"left"},h&&!C&&{selectors:(f={},f[T]={paddingLeft:11,paddingRight:11},f)},h&&_&&!C&&{selectors:(d={},d[T]={paddingTop:4},d)},P],icon:[_&&{paddingRight:24,alignItems:"flex-end"},{pointerEvents:"none",position:"absolute",bottom:6,right:8,top:"auto",fontSize:Ze.medium,lineHeight:18},g&&{color:D.disabledText}],description:[E.description,{color:D.bodySubtext,fontSize:M.xSmall.fontSize}],errorMessage:[E.errorMessage,Qe.slideDownIn20,M.small,{color:D.errorText,margin:0,paddingTop:5,display:"flex",alignItems:"center"}],prefix:[E.prefix,N],suffix:[E.suffix,N],revealButton:[E.revealButton,"ms-Button","ms-Button--icon",ht(m,{inset:1}),{height:30,width:32,border:"none",padding:"0px 4px",backgroundColor:"transparent",color:D.link,selectors:{":hover":{outline:0,color:D.primaryButtonBackgroundHovered,backgroundColor:D.buttonBackgroundHovered,selectors:(v={},v[T]={borderColor:"Highlight",color:"Highlight"},v)},":focus":{outline:0}}},w&&{marginRight:28}],revealSpan:{display:"flex",height:"100%",alignItems:"center"},revealIcon:{margin:"0px 4px",pointerEvents:"none",bottom:6,right:8,top:"auto",fontSize:Ze.medium,lineHeight:18},subComponentStyles:{label:Bd(t)}}}var Jv=Ce(kd,Id,void 0,{scope:"TextField"});function pa(t,o){for(var r=[],e=0,n=o;ethis._notSelectableOptionsCache[r];)r++;if(this._displayOnlyOptionsCache[r]===o)throw new Error("Unexpected: Option at index ".concat(o," is not a selectable element."));if(this._notSelectableOptionsCache[r]!==o)return o-r+1}},t}(),Ne;(function(t){t[t.smallFluid=0]="smallFluid",t[t.smallFixedFar=1]="smallFixedFar",t[t.smallFixedNear=2]="smallFixedNear",t[t.medium=3]="medium",t[t.large=4]="large",t[t.largeFixed=5]="largeFixed",t[t.extraLarge=6]="extraLarge",t[t.custom=7]="custom",t[t.customNear=8]="customNear"})(Ne||(Ne={}));var Hd=xe(),ve;(function(t){t[t.closed=0]="closed",t[t.animatingOpen=1]="animatingOpen",t[t.open=2]="open",t[t.animatingClosed=3]="animatingClosed"})(ve||(ve={}));var zd=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;e._panel=l.createRef(),e._animationCallback=null,e._hasCustomNavigation=!!(e.props.onRenderNavigation||e.props.onRenderNavigationContent),e.dismiss=function(i){e.props.onDismiss&&e.isActive&&e.props.onDismiss(i),(!i||i&&!i.defaultPrevented)&&e.close()},e._allowScrollOnPanel=function(i){i?e._allowTouchBodyScroll?Us(i,e._events):Gs(i,e._events):e._events.off(e._scrollableContent),e._scrollableContent=i},e._onRenderNavigation=function(i){if(!e.props.onRenderNavigationContent&&!e.props.onRenderNavigation&&!e.props.hasCloseButton)return null;var s=e.props.onRenderNavigationContent,u=s===void 0?e._onRenderNavigationContent:s;return l.createElement("div",{className:e._classNames.navigation},u(i,e._onRenderNavigationContent))},e._onRenderNavigationContent=function(i){var s,u=i.closeButtonAriaLabel,c=i.hasCloseButton,f=i.onRenderHeader,d=f===void 0?e._onRenderHeader:f;if(c){var v=(s=e._classNames.subComponentStyles)===null||s===void 0?void 0:s.closeButton();return l.createElement(l.Fragment,null,!e._hasCustomNavigation&&d(e.props,e._onRenderHeader,e._headerTextId),l.createElement(Ur,{styles:v,className:e._classNames.closeButton,onClick:e._onPanelClick,ariaLabel:u,title:u,"data-is-visible":!0,iconProps:{iconName:"Cancel"}}))}return null},e._onRenderHeader=function(i,s,u){var c=i.headerText,f=i.headerTextProps,d=f===void 0?{}:f;return c?l.createElement("div",{className:e._classNames.header},l.createElement("div",p({id:u,role:"heading","aria-level":1},d,{className:he(e._classNames.headerText,d.className)}),c)):null},e._onRenderBody=function(i){return l.createElement("div",{className:e._classNames.content},i.children)},e._onRenderFooter=function(i){var s=e.props.onRenderFooterContent,u=s===void 0?null:s;return u?l.createElement("div",{className:e._classNames.footer},l.createElement("div",{className:e._classNames.footerInner},u())):null},e._animateTo=function(i){i===ve.open&&e.props.onOpen&&e.props.onOpen(),e._animationCallback=e._async.setTimeout(function(){e.setState({visibility:i}),e._onTransitionComplete(i)},200)},e._clearExistingAnimationTimer=function(){e._animationCallback!==null&&e._async.clearTimeout(e._animationCallback)},e._onPanelClick=function(i){e.dismiss(i)},e._onTransitionComplete=function(i){e._updateFooterPosition(),i===ve.open&&e.props.onOpened&&e.props.onOpened(),i===ve.closed&&e.props.onDismissed&&e.props.onDismissed()};var n=e.props.allowTouchBodyScroll,a=n===void 0?!1:n;return e._allowTouchBodyScroll=a,Tt(e),e.state={isFooterSticky:!1,visibility:ve.closed,id:De("Panel")},e}return o.getDerivedStateFromProps=function(r,e){return r.isOpen===void 0?null:r.isOpen&&(e.visibility===ve.closed||e.visibility===ve.animatingClosed)?{visibility:ve.animatingOpen}:!r.isOpen&&(e.visibility===ve.open||e.visibility===ve.animatingOpen)?{visibility:ve.animatingClosed}:null},o.prototype.componentDidMount=function(){this._async=new $r(this),this._events=new Ct(this),this._events.on(window,"resize",this._updateFooterPosition),this._shouldListenForOuterClick(this.props)&&this._events.on(document.body,"mousedown",this._dismissOnOuterClick,!0),this.props.isOpen&&this.setState({visibility:ve.animatingOpen})},o.prototype.componentDidUpdate=function(r,e){var n=this._shouldListenForOuterClick(this.props),a=this._shouldListenForOuterClick(r);this.state.visibility!==e.visibility&&(this._clearExistingAnimationTimer(),this.state.visibility===ve.animatingOpen?this._animateTo(ve.open):this.state.visibility===ve.animatingClosed&&this._animateTo(ve.closed)),n&&!a?this._events.on(document.body,"mousedown",this._dismissOnOuterClick,!0):!n&&a&&this._events.off(document.body,"mousedown",this._dismissOnOuterClick,!0)},o.prototype.componentWillUnmount=function(){this._async.dispose(),this._events.dispose()},o.prototype.render=function(){var r=this.props,e=r.className,n=e===void 0?"":e,a=r.elementToFocusOnDismiss,i=r.firstFocusableSelector,s=r.focusTrapZoneProps,u=r.forceFocusInsideTrap,c=r.hasCloseButton,f=r.headerText,d=r.headerClassName,v=d===void 0?"":d,m=r.ignoreExternalFocusing,y=r.isBlocking,g=r.isFooterAtBottom,h=r.isLightDismiss,x=r.isHiddenOnDismiss,_=r.layerProps,B=r.overlayProps,C=r.popupProps,k=r.type,w=r.styles,b=r.theme,S=r.customWidth,P=r.onLightDismissClick,I=P===void 0?this._onPanelClick:P,A=r.onRenderNavigation,D=A===void 0?this._onRenderNavigation:A,W=r.onRenderHeader,M=W===void 0?this._onRenderHeader:W,E=r.onRenderBody,N=E===void 0?this._onRenderBody:E,H=r.onRenderFooter,R=H===void 0?this._onRenderFooter:H,F=this.state,O=F.isFooterSticky,j=F.visibility,K=F.id,le=k===Ne.smallFixedNear||k===Ne.customNear,J=Be(b),Q=J?le:!le,V=k===Ne.custom||k===Ne.customNear?{width:S}:{},me=oe(this.props,Ve),Y=this.isActive,we=j===ve.animatingClosed||j===ve.animatingOpen;if(this._headerTextId=f&&K+"-headerText",!Y&&!we&&!x)return null;this._classNames=Hd(w,{theme:b,className:n,focusTrapZoneClassName:s?s.className:void 0,hasCloseButton:c,headerClassName:v,isAnimating:we,isFooterSticky:O,isFooterAtBottom:g,isOnRightSide:Q,isOpen:Y,isHiddenOnDismiss:x,type:k,hasCustomNavigation:this._hasCustomNavigation});var ie=this,ce=ie._classNames,ze=ie._allowTouchBodyScroll,Se;return y&&Y&&(Se=l.createElement(Ad,p({className:ce.overlay,isDarkThemed:!1,onClick:h?I:void 0,allowTouchBodyScroll:ze},B))),l.createElement(ci,p({},_),l.createElement(Dn,p({role:"dialog","aria-modal":y?"true":void 0,ariaLabelledBy:this._headerTextId?this._headerTextId:void 0,onDismiss:this.dismiss,className:ce.hiddenPanel,enableAriaHiddenSiblings:!!Y},C),l.createElement("div",p({"aria-hidden":!Y&&we},me,{ref:this._panel,className:ce.root}),Se,l.createElement(tr,p({ignoreExternalFocusing:m,forceFocusInsideTrap:!y||x&&!Y?!1:u,firstFocusableSelector:i,isClickableOutsideFocusTrap:!0},s,{className:ce.main,style:V,elementToFocusOnDismiss:a}),l.createElement("div",{className:ce.contentInner},l.createElement("div",{ref:this._allowScrollOnPanel,className:ce.scrollableContent,"data-is-scrollable":!0},l.createElement("div",{className:ce.commands,"data-is-visible":!0},D(this.props,this._onRenderNavigation)),(this._hasCustomNavigation||!c)&&M(this.props,this._onRenderHeader,this._headerTextId),N(this.props,this._onRenderBody),R(this.props,this._onRenderFooter)))))))},o.prototype.open=function(){this.props.isOpen===void 0&&(this.isActive||this.setState({visibility:ve.animatingOpen}))},o.prototype.close=function(){this.props.isOpen===void 0&&this.isActive&&this.setState({visibility:ve.animatingClosed})},Object.defineProperty(o.prototype,"isActive",{get:function(){return this.state.visibility===ve.open||this.state.visibility===ve.animatingOpen},enumerable:!1,configurable:!0}),o.prototype._shouldListenForOuterClick=function(r){return!!r.isBlocking&&!!r.isOpen},o.prototype._updateFooterPosition=function(){var r=this._scrollableContent;if(r){var e=r.clientHeight,n=r.scrollHeight;this.setState({isFooterSticky:e0&&f();var y=e._id+v.key;u.items.push(s(p(p({id:y},v),{index:m}),e._onRenderItem)),u.id=y;break;case ft.Divider:m>0&&u.items.push(s(p(p({},v),{index:m}),e._onRenderItem)),u.items.length>0&&f();break;default:u.items.push(s(p(p({},v),{index:m}),e._onRenderItem))}};return a.options.forEach(function(v,m){d(v,m)}),u.items.length>0&&f(),l.createElement(l.Fragment,null,c)},e._onRenderItem=function(a){switch(a.itemType){case ft.Divider:return e._renderSeparator(a);case ft.Header:return e._renderHeader(a);default:return e._renderOption(a)}},e._renderOption=function(a){var i,s=e.props,u=s.onRenderOption,c=u===void 0?e._onRenderOption:u,f=s.hoisted.selectedIndices,d=f===void 0?[]:f,v=a.index!==void 0&&d?d.indexOf(a.index)>-1:!1,m=a.hidden?e._classNames.dropdownItemHidden:v&&a.disabled===!0?e._classNames.dropdownItemSelectedAndDisabled:v?e._classNames.dropdownItemSelected:a.disabled===!0?e._classNames.dropdownItemDisabled:e._classNames.dropdownItem,y=a.title,g=e._listId+a.index,h=(i=a.id)!==null&&i!==void 0?i:g+"-label",x=e._classNames.subComponentStyles?e._classNames.subComponentStyles.multiSelectItem:void 0;return e.props.multiSelect?l.createElement(pd,{id:g,key:a.key,disabled:a.disabled,onChange:e._onItemClick(a),inputProps:p({"aria-selected":v,onMouseEnter:e._onItemMouseEnter.bind(e,a),onMouseLeave:e._onMouseItemLeave.bind(e,a),onMouseMove:e._onItemMouseMove.bind(e,a),role:"option"},{"data-index":a.index,"data-is-focusable":!(a.disabled||a.hidden)}),label:a.text,title:y,onRenderLabel:e._onRenderItemLabel.bind(e,p(p({},a),{id:h})),className:he(m,"is-multi-select"),checked:v,styles:x,ariaPositionInSet:a.hidden?void 0:e._sizePosCache.positionInSet(a.index),ariaSetSize:a.hidden?void 0:e._sizePosCache.optionSetSize,ariaLabel:a.ariaLabel,ariaLabelledBy:a.ariaLabel?void 0:h}):l.createElement(xn,{id:g,key:a.key,"data-index":a.index,"data-is-focusable":!a.disabled,disabled:a.disabled,className:m,onClick:e._onItemClick(a),onMouseEnter:e._onItemMouseEnter.bind(e,a),onMouseLeave:e._onMouseItemLeave.bind(e,a),onMouseMove:e._onItemMouseMove.bind(e,a),role:"option","aria-selected":v?"true":"false",ariaLabel:a.ariaLabel,title:y,"aria-posinset":e._sizePosCache.positionInSet(a.index),"aria-setsize":e._sizePosCache.optionSetSize},c(a,e._onRenderOption))},e._onRenderOption=function(a){return l.createElement("span",{className:e._classNames.dropdownOptionText},a.text)},e._onRenderMultiselectOption=function(a){return l.createElement("span",{id:a.id,"aria-hidden":"true",className:e._classNames.dropdownOptionText},a.text)},e._onRenderItemLabel=function(a){var i=e.props.onRenderOption,s=i===void 0?e._onRenderMultiselectOption:i;return s(a,e._onRenderMultiselectOption)},e._onPositioned=function(a){e._focusZone.current&&e._requestAnimationFrame(function(){var i=e.props.hoisted.selectedIndices;if(e._focusZone.current)if(!e._hasBeenPositioned&&i&&i[0]&&!e.props.options[i[0]].disabled){var s=Bt().getElementById("".concat(e._id,"-list").concat(i[0]));s&&e._focusZone.current.focusElement(s),e._hasBeenPositioned=!0}else e._focusZone.current.focus()}),(!e.state.calloutRenderEdge||e.state.calloutRenderEdge!==a.targetEdge)&&e.setState({calloutRenderEdge:a.targetEdge})},e._onItemClick=function(a){return function(i){a.disabled||(e.setSelectedIndex(i,a.index),e.props.multiSelect||e.setState({isOpen:!1}))}},e._onScroll=function(){!e._isScrollIdle&&e._scrollIdleTimeoutId!==void 0?(clearTimeout(e._scrollIdleTimeoutId),e._scrollIdleTimeoutId=void 0):e._isScrollIdle=!1,e._scrollIdleTimeoutId=window.setTimeout(function(){e._isScrollIdle=!0},e._scrollIdleDelay)},e._onMouseItemLeave=function(a,i){if(!e._shouldIgnoreMouseEvent()&&e._host.current)if(e._host.current.setActive)try{e._host.current.setActive()}catch{}else e._host.current.focus()},e._onDismiss=function(){e.setState({isOpen:!1})},e._onDropdownBlur=function(a){var i=e._isDisabled();i||e.state.isOpen||(e.setState({hasFocus:!1}),e.props.onBlur&&e.props.onBlur(a))},e._onDropdownKeyDown=function(a){var i=e._isDisabled();if(!i&&(e._lastKeyDownWasAltOrMeta=e._isAltOrMeta(a),!(e.props.onKeyDown&&(e.props.onKeyDown(a),a.defaultPrevented)))){var s,u=e.props.hoisted.selectedIndices.length?e.props.hoisted.selectedIndices[0]:-1,c=a.altKey||a.metaKey,f=e.state.isOpen;switch(a.which){case z.enter:e.setState({isOpen:!f});break;case z.escape:if(!f)return;e.setState({isOpen:!1});break;case z.up:if(c){if(f){e.setState({isOpen:!1});break}return}e.props.multiSelect?e.setState({isOpen:!0}):e._isDisabled()||(s=e._moveIndex(a,-1,u-1,u));break;case z.down:c&&(a.stopPropagation(),a.preventDefault()),c&&!f||e.props.multiSelect?e.setState({isOpen:!0}):e._isDisabled()||(s=e._moveIndex(a,1,u+1,u));break;case z.home:e.props.multiSelect||(s=e._moveIndex(a,1,0,u));break;case z.end:e.props.multiSelect||(s=e._moveIndex(a,-1,e.props.options.length-1,u));break;case z.space:break;default:return}s!==u&&(a.stopPropagation(),a.preventDefault())}},e._onDropdownKeyUp=function(a){var i=e._isDisabled();if(!i){var s=e._shouldHandleKeyUp(a),u=e.state.isOpen;if(!(e.props.onKeyUp&&(e.props.onKeyUp(a),a.defaultPrevented))){switch(a.which){case z.space:e.setState({isOpen:!u});break;default:s&&u&&e.setState({isOpen:!1});return}a.stopPropagation(),a.preventDefault()}}},e._onZoneKeyDown=function(a){var i,s,u;e._lastKeyDownWasAltOrMeta=e._isAltOrMeta(a);var c=a.altKey||a.metaKey;switch(a.which){case z.up:c?e.setState({isOpen:!1}):e._host.current&&(u=Ka(e._host.current,e._host.current.lastChild,!0));break;case z.home:case z.end:case z.pageUp:case z.pageDown:break;case z.down:!c&&e._host.current&&(u=Va(e._host.current,e._host.current.firstChild,!0));break;case z.escape:e.setState({isOpen:!1});break;case z.tab:e.setState({isOpen:!1});var f=Bt();f&&(a.shiftKey?(i=er(f.body,e._dropDown.current,!1,!1,!0,!0))===null||i===void 0||i.focus():(s=xt(f.body,e._dropDown.current,!1,!1,!0,!0))===null||s===void 0||s.focus());break;default:return}u&&u.focus(),a.stopPropagation(),a.preventDefault()},e._onZoneKeyUp=function(a){var i=e._shouldHandleKeyUp(a);i&&e.state.isOpen&&(e.setState({isOpen:!1}),a.preventDefault())},e._onDropdownClick=function(a){if(!(e.props.onClick&&(e.props.onClick(a),a.defaultPrevented))){var i=e.state.isOpen,s=e._isDisabled();!s&&!e._shouldOpenOnFocus()&&e.setState({isOpen:!i}),e._isFocusedByClick=!1}},e._onDropdownMouseDown=function(){e._isFocusedByClick=!0},e._onFocus=function(a){var i=e._isDisabled();if(!i){e.props.onFocus&&e.props.onFocus(a);var s={hasFocus:!0};e._shouldOpenOnFocus()&&(s.isOpen=!0),e.setState(s)}},e._isDisabled=function(){var a=e.props.disabled,i=e.props.isDisabled;return a===void 0&&(a=i),a},e._onRenderLabel=function(a){var i=a.label,s=a.required,u=a.disabled,c=e._classNames.subComponentStyles?e._classNames.subComponentStyles.label:void 0;return i?l.createElement(zt,{className:e._classNames.label,id:e._labelId,required:s,styles:c,disabled:u},i):null},Tt(e),r.multiSelect,r.selectedKey,r.selectedKeys,r.defaultSelectedKey,r.defaultSelectedKeys;var n=r.options;return e._id=r.id||De("Dropdown"),e._labelId=e._id+"-label",e._listId=e._id+"-list",e._optionId=e._id+"-option",e._isScrollIdle=!0,e._hasBeenPositioned=!1,e._sizePosCache.updateOptions(n),e.state={isOpen:!1,hasFocus:!1,calloutRenderEdge:void 0},e}return Object.defineProperty(o.prototype,"selectedOptions",{get:function(){var r=this.props,e=r.options,n=r.hoisted.selectedIndices;return pa(e,n)},enumerable:!1,configurable:!0}),o.prototype.componentWillUnmount=function(){clearTimeout(this._scrollIdleTimeoutId)},o.prototype.componentDidUpdate=function(r,e){e.isOpen===!0&&this.state.isOpen===!1&&(this._gotMouseMove=!1,this._hasBeenPositioned=!1,this.props.onDismiss&&this.props.onDismiss())},o.prototype.render=function(){var r=this._id,e=this.props,n=e.className,a=e.label,i=e.options,s=e.ariaLabel,u=e.required,c=e.errorMessage,f=e.styles,d=e.theme,v=e.panelProps,m=e.calloutProps,y=e.onRenderTitle,g=y===void 0?this._getTitle:y,h=e.onRenderContainer,x=h===void 0?this._onRenderContainer:h,_=e.onRenderCaretDown,B=_===void 0?this._onRenderCaretDown:_,C=e.onRenderLabel,k=C===void 0?this._onRenderLabel:C,w=e.onRenderItem,b=w===void 0?this._onRenderItem:w,S=e.hoisted.selectedIndices,P=this.state,I=P.isOpen,A=P.calloutRenderEdge,D=P.hasFocus,W=e.onRenderPlaceholder||e.onRenderPlaceHolder||this._getPlaceholder;i!==this._sizePosCache.cachedOptions&&this._sizePosCache.updateOptions(i);var M=pa(i,S),E=oe(e,Ve),N=this._isDisabled(),H=r+"-errorMessage";this._classNames=$d(f,{theme:d,className:n,hasError:!!(c&&c.length>0),hasLabel:!!a,isOpen:I,required:u,disabled:N,isRenderingPlaceholder:!M.length,panelClassName:v?v.className:void 0,calloutClassName:m?m.className:void 0,calloutRenderEdge:A});var R=!!c&&c.length>0;return l.createElement("div",{className:this._classNames.root,ref:this.props.hoisted.rootRef,"aria-owns":I?this._listId:void 0},k(this.props,this._onRenderLabel),l.createElement("div",p({"data-is-focusable":!N,"data-ktp-target":!0,ref:this._dropDown,id:r,tabIndex:N?-1:0,role:"combobox","aria-haspopup":"listbox","aria-expanded":I?"true":"false","aria-label":s,"aria-labelledby":a&&!s?Nr(this._labelId,this._optionId):void 0,"aria-describedby":R?this._id+"-errorMessage":void 0,"aria-required":u,"aria-disabled":N,"aria-controls":I?this._listId:void 0},E,{className:this._classNames.dropdown,onBlur:this._onDropdownBlur,onKeyDown:this._onDropdownKeyDown,onKeyUp:this._onDropdownKeyUp,onClick:this._onDropdownClick,onMouseDown:this._onDropdownMouseDown,onFocus:this._onFocus}),l.createElement("span",{id:this._optionId,className:this._classNames.title,"aria-live":D?"polite":void 0,"aria-atomic":D?!0:void 0,"aria-invalid":R},M.length?g(M,this._onRenderTitle):W(e,this._onRenderPlaceholder)),l.createElement("span",{className:this._classNames.caretDownWrapper},B(e,this._onRenderCaretDown))),I&&x(p(p({},e),{onDismiss:this._onDismiss,onRenderItem:b}),this._onRenderContainer),R&&l.createElement("div",{role:"alert",id:H,className:this._classNames.errorMessage},c))},o.prototype.focus=function(r){this._dropDown.current&&(this._dropDown.current.focus(),r&&this.setState({isOpen:!0}))},o.prototype.setSelectedIndex=function(r,e){var n=this.props,a=n.options,i=n.selectedKey,s=n.selectedKeys,u=n.multiSelect,c=n.notifyOnReselect,f=n.hoisted.selectedIndices,d=f===void 0?[]:f,v=d?d.indexOf(e)>-1:!1,m=[];if(e=Math.max(0,Math.min(a.length-1,e)),i!==void 0||s!==void 0){this._onChange(r,a,e,v,u);return}if(!(!u&&!c&&e===d[0])){if(u)if(m=d?this._copyArray(d):[],v){var y=m.indexOf(e);y>-1&&m.splice(y,1)}else m.push(e);else m=[e];r.persist(),this.props.hoisted.setSelectedIndices(m),this._onChange(r,a,e,v,u)}},o.prototype._copyArray=function(r){for(var e=[],n=0,a=r;n=i.length?n=0:n<0&&(n=i.length-1);for(var s=0;i[n].itemType===ft.Header||i[n].itemType===ft.Divider||i[n].disabled;){if(s>=i.length)return a;n+e<0?n=i.length:n+e>=i.length&&(n=-1),n=n+e,s++}return this.setSelectedIndex(r,n),n},o.prototype._renderFocusableList=function(r){var e=r.onRenderList,n=e===void 0?this._onRenderList:e,a=r.label,i=r.ariaLabel,s=r.multiSelect;return l.createElement("div",{className:this._classNames.dropdownItemsWrapper,onKeyDown:this._onZoneKeyDown,onKeyUp:this._onZoneKeyUp,ref:this._host,tabIndex:0},l.createElement(An,{ref:this._focusZone,direction:Me.vertical,id:this._listId,className:this._classNames.dropdownItems,role:"listbox","aria-label":i,"aria-labelledby":a&&!i?this._labelId:void 0,"aria-multiselectable":s},n(r,this._onRenderList)))},o.prototype._renderSeparator=function(r){var e=r.index,n=r.key,a=r.hidden?this._classNames.dropdownDividerHidden:this._classNames.dropdownDivider;return e>0?l.createElement("div",{role:"presentation",key:n,className:a}):null},o.prototype._renderHeader=function(r){var e=this.props.onRenderOption,n=e===void 0?this._onRenderOption:e,a=r.key,i=r.id,s=r.hidden?this._classNames.dropdownItemHeaderHidden:this._classNames.dropdownItemHeader;return l.createElement("div",{id:i,key:a,className:s},n(r,this._onRenderOption))},o.prototype._onItemMouseEnter=function(r,e){if(!this._shouldIgnoreMouseEvent()){var n=e.currentTarget;n.focus()}},o.prototype._onItemMouseMove=function(r,e){var n=e.currentTarget;this._gotMouseMove=!0,!(!this._isScrollIdle||document.activeElement===n)&&n.focus()},o.prototype._shouldIgnoreMouseEvent=function(){return!this._isScrollIdle||!this._gotMouseMove},o.prototype._isAltOrMeta=function(r){return r.which===z.alt||r.key==="Meta"},o.prototype._shouldHandleKeyUp=function(r){var e=this._lastKeyDownWasAltOrMeta&&this._isAltOrMeta(r);return this._lastKeyDownWasAltOrMeta=!1,!!e&&!(vn()||pn())},o.prototype._shouldOpenOnFocus=function(){var r=this.state.hasFocus,e=this.props.openOnKeyboardFocus;return!this._isFocusedByClick&&e===!0&&!r},o.defaultProps={options:[]},o}(l.Component),tn,co,rn,on,Jd={root:"ms-Dropdown-container",label:"ms-Dropdown-label",dropdown:"ms-Dropdown",title:"ms-Dropdown-title",caretDownWrapper:"ms-Dropdown-caretDownWrapper",caretDown:"ms-Dropdown-caretDown",callout:"ms-Dropdown-callout",panel:"ms-Dropdown-panel",dropdownItems:"ms-Dropdown-items",dropdownItem:"ms-Dropdown-item",dropdownDivider:"ms-Dropdown-divider",dropdownOptionText:"ms-Dropdown-optionText",dropdownItemHeader:"ms-Dropdown-header",titleIsPlaceHolder:"ms-Dropdown-titleIsPlaceHolder",titleHasError:"ms-Dropdown-title--hasError"},fo=32,nn=36,Qd=(tn={},tn["".concat(T,", ").concat(Ga.replace("@media ",""))]=p({},fe()),tn),mo={selectors:p((co={},co[T]={backgroundColor:"Highlight",borderColor:"Highlight",color:"HighlightText"},co[".ms-Checkbox-checkbox"]=(rn={},rn[T]={borderColor:"HighlightText"},rn),co),Qd)},ha={selectors:(on={},on[T]={borderColor:"Highlight"},on)},ef=wo(0,Or),tf=function(t){var o,r,e,n,a,i,s,u,c,f,d,v,m=t.theme,y=t.hasError,g=t.hasLabel,h=t.className,x=t.isOpen,_=t.disabled,B=t.required,C=t.isRenderingPlaceholder,k=t.panelClassName,w=t.calloutClassName,b=t.calloutRenderEdge;if(!m)throw new Error("theme is undefined or null in base Dropdown getStyles function.");var S=Ie(Jd,m),P=m.palette,I=m.semanticColors,A=m.effects,D=m.fonts,W={color:I.menuItemTextHovered},M={color:I.menuItemText},E={borderColor:I.errorText},N=[S.dropdownItem,{backgroundColor:"transparent",boxSizing:"border-box",cursor:"pointer",display:"flex",alignItems:"center",padding:"0 8px",width:"100%",minHeight:nn,lineHeight:20,height:0,position:"relative",border:"1px solid transparent",borderRadius:0,wordWrap:"break-word",overflowWrap:"break-word",textAlign:"left",".ms-Button-flexContainer":{width:"100%"}}],H=[S.dropdownItemHeader,p(p({},D.medium),{fontWeight:Wt.semibold,color:I.menuHeader,background:"none",backgroundColor:"transparent",border:"none",height:nn,lineHeight:nn,cursor:"default",padding:"0 8px",userSelect:"none",textAlign:"left",selectors:(o={},o[T]=p({color:"GrayText"},fe()),o)})],R=I.menuItemBackgroundPressed,F=function(J){var Q,V;return J===void 0&&(J=!1),{selectors:(Q={"&:hover":[{color:I.menuItemTextHovered,backgroundColor:J?R:I.menuItemBackgroundHovered},mo],"&.is-multi-select:hover":[{backgroundColor:J?R:"transparent"},mo],"&:active:hover":[{color:I.menuItemTextHovered,backgroundColor:J?I.menuItemBackgroundHovered:I.menuItemBackgroundPressed},mo]},Q[".".concat(ye," &:focus:after")]=(V={left:0,top:0,bottom:0,right:0},V[T]={inset:"2px"},V),Q[T]={border:"none"},Q)}},O=re(re([],N,!0),[{backgroundColor:R,color:I.menuItemTextHovered},F(!0),mo],!1),j=re(re([],N,!0),[{color:I.disabledText,cursor:"default",selectors:(r={},r[T]={color:"GrayText",border:"none"},r)}],!1),K=b===q.bottom?"".concat(A.roundedCorner2," ").concat(A.roundedCorner2," 0 0"):"0 0 ".concat(A.roundedCorner2," ").concat(A.roundedCorner2),le=b===q.bottom?"0 0 ".concat(A.roundedCorner2," ").concat(A.roundedCorner2):"".concat(A.roundedCorner2," ").concat(A.roundedCorner2," 0 0");return{root:[S.root,h],label:S.label,dropdown:[S.dropdown,yr,D.medium,{color:I.menuItemText,borderColor:I.focusBorder,position:"relative",outline:0,userSelect:"none",selectors:(e={},e["&:hover ."+S.title]=[!_&&W,{borderColor:x?P.neutralSecondary:P.neutralPrimary},ha],e["&:focus ."+S.title]=[!_&&W,{selectors:(n={},n[T]={color:"Highlight"},n)}],e["&:focus:after"]=[{pointerEvents:"none",content:"''",position:"absolute",boxSizing:"border-box",top:"0px",left:"0px",width:"100%",height:"100%",border:_?"none":"2px solid ".concat(P.themePrimary),borderRadius:"2px",selectors:(a={},a[T]={color:"Highlight"},a)}],e["&:active ."+S.title]=[!_&&W,{borderColor:P.themePrimary},ha],e["&:hover ."+S.caretDown]=!_&&M,e["&:focus ."+S.caretDown]=[!_&&M,{selectors:(i={},i[T]={color:"Highlight"},i)}],e["&:active ."+S.caretDown]=!_&&M,e["&:hover ."+S.titleIsPlaceHolder]=!_&&M,e["&:focus ."+S.titleIsPlaceHolder]=!_&&M,e["&:active ."+S.titleIsPlaceHolder]=!_&&M,e["&:hover ."+S.titleHasError]=E,e["&:active ."+S.titleHasError]=E,e)},x&&"is-open",_&&"is-disabled",B&&"is-required",B&&!g&&{selectors:(s={":before":{content:"'*'",color:I.errorText,position:"absolute",top:-5,right:-10}},s[T]={selectors:{":after":{right:-14}}},s)}],title:[S.title,yr,{backgroundColor:I.inputBackground,borderWidth:1,borderStyle:"solid",borderColor:I.inputBorder,borderRadius:x?K:A.roundedCorner2,cursor:"pointer",display:"block",height:fo,lineHeight:fo-2,padding:"0 28px 0 8px",position:"relative",overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},C&&[S.titleIsPlaceHolder,{color:I.inputPlaceholderText}],y&&[S.titleHasError,E],_&&{backgroundColor:I.disabledBackground,border:"none",color:I.disabledText,cursor:"default",selectors:(u={},u[T]=p({border:"1px solid GrayText",color:"GrayText",backgroundColor:"Window"},fe()),u)}],caretDownWrapper:[S.caretDownWrapper,{height:fo,lineHeight:fo-2,paddingTop:1,position:"absolute",right:8,top:0},!_&&{cursor:"pointer"}],caretDown:[S.caretDown,{color:P.neutralSecondary,fontSize:D.small.fontSize,pointerEvents:"none"},_&&{color:I.disabledText,selectors:(c={},c[T]=p({color:"GrayText"},fe()),c)}],errorMessage:p(p({color:I.errorText},m.fonts.small),{paddingTop:5}),callout:[S.callout,{boxShadow:A.elevation8,borderRadius:le,selectors:(f={},f[".ms-Callout-main"]={borderRadius:le},f)},w],dropdownItemsWrapper:{selectors:{"&:focus":{outline:0}}},dropdownItems:[S.dropdownItems,{display:"block"}],dropdownItem:re(re([],N,!0),[F()],!1),dropdownItemSelected:O,dropdownItemDisabled:j,dropdownItemSelectedAndDisabled:[O,j,{backgroundColor:"transparent"}],dropdownItemHidden:re(re([],N,!0),[{display:"none"}],!1),dropdownDivider:[S.dropdownDivider,{height:1,backgroundColor:I.bodyDivider}],dropdownDividerHidden:[S.dropdownDivider,{display:"none"}],dropdownOptionText:[S.dropdownOptionText,{overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",minWidth:0,maxWidth:"100%",wordWrap:"break-word",overflowWrap:"break-word",margin:"1px"}],dropdownItemHeader:H,dropdownItemHeaderHidden:re(re([],H,!0),[{display:"none"}],!1),subComponentStyles:{label:{root:{display:"inline-block"}},multiSelectItem:{root:{padding:0},label:{alignSelf:"stretch",padding:"0 8px",width:"100%"},input:{selectors:(d={},d[".".concat(ye," &:focus + label::before")]={outlineOffset:"0px"},d)}},panel:{root:[k],main:{selectors:(v={},v[ef]={width:272},v)},contentInner:{padding:"0 0 20px"}}}}},rf=Ce(Di,tf,void 0,{scope:"Dropdown"});rf.displayName="Dropdown";var G;(function(t){t[t.info=0]="info",t[t.error=1]="error",t[t.blocked=2]="blocked",t[t.severeWarning=3]="severeWarning",t[t.success=4]="success",t[t.warning=5]="warning"})(G||(G={}));var Dt,of=(Dt={},Dt[G.info]="Info",Dt[G.warning]="Info",Dt[G.error]="ErrorBadge",Dt[G.blocked]="Blocked2",Dt[G.severeWarning]="Warning",Dt[G.success]="Completed",Dt),nf="MessageBar",af=xe(),sf=function(t){switch(t){case G.blocked:case G.error:case G.severeWarning:return"assertive"}return"polite"},lf=function(t){switch(t){case G.blocked:case G.error:case G.severeWarning:return"alert"}return"status"},Ri=l.forwardRef(function(t,o){var r=Al(!1),e=r[0],n=r[1].toggle,a=It("MessageBar"),i=t.actions,s=t.className,u=t.children,c=t.overflowButtonAriaLabel,f=t.dismissIconProps,d=t.styles,v=t.theme,m=t.messageBarType,y=m===void 0?G.info:m,g=t.onDismiss,h=g===void 0?void 0:g,x=t.isMultiline,_=x===void 0?!0:x,B=t.truncated,C=t.dismissButtonAriaLabel,k=t.messageBarIconProps,w=t.role,b=t.delayedRender,S=b===void 0?!0:b,P=t.expandButtonProps,I=oe(t,ir,["className","role"]),A=af(d,{theme:v,messageBarType:y||G.info,onDismiss:h!==void 0,actions:i!==void 0,truncated:B,isMultiline:_,expandSingleLine:e,className:s}),D={iconName:e?"DoubleChevronUp":"DoubleChevronDown"},W=i||h?{"aria-describedby":a,role:"region"}:{},M=i?l.createElement("div",{className:A.actions},i):null,E=h?l.createElement(Ur,{disabled:!1,className:A.dismissal,onClick:h,iconProps:f||{iconName:"Clear"},title:C,ariaLabel:C}):null;return l.createElement("div",p({ref:o,className:A.root},W),l.createElement("div",{className:A.content},l.createElement("div",{className:A.iconContainer,"aria-hidden":!0},k?l.createElement(Xe,p({},k,{className:he(A.icon,k.className)})):l.createElement(Xe,{iconName:of[y],className:A.icon})),l.createElement("div",{className:A.text,id:a,role:w||lf(y),"aria-live":sf(y)},l.createElement("span",p({className:A.innerText},I),S?l.createElement(En,null,l.createElement("span",null,u)):l.createElement("span",null,u))),!_&&!M&&B&&l.createElement("div",{className:A.expandSingleLine},l.createElement(Ur,p({disabled:!1,className:A.expand,onClick:n,iconProps:D,ariaLabel:c,"aria-expanded":e},P))),!_&&M,!_&&E&&l.createElement("div",{className:A.dismissSingleLine},E),_&&E),_&&M)});Ri.displayName=nf;var Rt,Ft,Lt,At,uf={root:"ms-MessageBar",error:"ms-MessageBar--error",blocked:"ms-MessageBar--blocked",severeWarning:"ms-MessageBar--severeWarning",success:"ms-MessageBar--success",warning:"ms-MessageBar--warning",multiline:"ms-MessageBar-multiline",singleline:"ms-MessageBar-singleline",dismissalSingleLine:"ms-MessageBar-dismissalSingleLine",expandingSingleLine:"ms-MessageBar-expandingSingleLine",content:"ms-MessageBar-content",iconContainer:"ms-MessageBar-icon",text:"ms-MessageBar-text",innerText:"ms-MessageBar-innerText",dismissSingleLine:"ms-MessageBar-dismissSingleLine",expandSingleLine:"ms-MessageBar-expandSingleLine",dismissal:"ms-MessageBar-dismissal",expand:"ms-MessageBar-expand",actions:"ms-MessageBar-actions",actionsSingleline:"ms-MessageBar-actionsSingleLine"},cf=(Rt={},Rt[G.error]="errorBackground",Rt[G.blocked]="errorBackground",Rt[G.success]="successBackground",Rt[G.warning]="warningBackground",Rt[G.severeWarning]="severeWarningBackground",Rt[G.info]="infoBackground",Rt),df=(Ft={},Ft[G.error]="errorIcon",Ft[G.blocked]="errorIcon",Ft[G.success]="successIcon",Ft[G.warning]="warningIcon",Ft[G.severeWarning]="severeWarningIcon",Ft[G.info]="infoIcon",Ft),ff=(Lt={},Lt[G.error]="#ff0000",Lt[G.blocked]="#ff0000",Lt[G.success]="#bad80a",Lt[G.warning]="#fff100",Lt[G.severeWarning]="#ff0000",Lt[G.info]="WindowText",Lt),mf=(At={},At[G.error]="#e81123",At[G.blocked]="#e81123",At[G.success]="#107c10",At[G.warning]="#966400",At[G.severeWarning]="#d83b01",At[G.info]="WindowText",At),vf=function(t){var o,r,e,n,a,i,s,u,c,f,d,v=t.theme,m=t.className,y=t.onDismiss,g=t.truncated,h=t.isMultiline,x=t.expandSingleLine,_=t.messageBarType,B=_===void 0?G.info:_,C=v.semanticColors,k=v.fonts,w=wo(0,Qs),b=Ie(uf,v),S={fontSize:Ze.xSmall,height:10,lineHeight:"10px",color:C.messageText,selectors:(o={},o[T]=p(p({},fe()),{color:"WindowText"}),o)},P=[ht(v,{inset:1,highContrastStyle:{outlineOffset:"-6px",outline:"1px solid Highlight"},borderColor:"transparent"}),{flexShrink:0,width:32,height:32,padding:"8px 12px",selectors:{"& .ms-Button-icon":S,":hover":{backgroundColor:"transparent"},":active":{backgroundColor:"transparent"}}}];return{root:[b.root,k.medium,B===G.error&&b.error,B===G.blocked&&b.blocked,B===G.severeWarning&&b.severeWarning,B===G.success&&b.success,B===G.warning&&b.warning,h?b.multiline:b.singleline,!h&&y&&b.dismissalSingleLine,!h&&g&&b.expandingSingleLine,{background:C[cf[B]],boxSizing:"border-box",color:C.messageText,minHeight:32,width:"100%",display:"flex",wordBreak:"break-word",selectors:(r={".ms-Link":{color:C.messageLink,selectors:{":hover":{color:C.messageLinkHovered}}}},r[T]=p(p({},fe()),{background:"transparent",border:"1px solid ".concat(ff[B]),color:"WindowText"}),r[Ga]={border:"1px solid ".concat(mf[B])},r)},h&&{flexDirection:"column"},m],content:[b.content,(e={display:"flex",width:"100%",lineHeight:"normal"},e[w]={display:"grid",gridTemplateColumns:"auto 1fr auto",gridTemplateRows:"1fr auto",gridTemplateAreas:` + "icon text close" + "action action action" + `},e)],iconContainer:[b.iconContainer,(n={fontSize:Ze.medium,minWidth:16,minHeight:16,display:"flex",flexShrink:0,margin:"8px 0 8px 12px"},n[w]={gridArea:"icon"},n)],icon:{color:C[df[B]],selectors:(a={},a[T]=p(p({},fe()),{color:"WindowText"}),a)},text:[b.text,p(p({minWidth:0,display:"flex",flexGrow:1,margin:8},k.small),(i={},i[w]={gridArea:"text"},i.selectors=(s={},s[T]=p({},fe()),s),i)),!y&&{marginRight:12}],innerText:[b.innerText,{lineHeight:16,selectors:{"& span a:last-child":{paddingLeft:4}}},g&&{overflow:"visible",whiteSpace:"pre-wrap"},!h&&{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},!h&&!g&&{selectors:(u={},u[w]={overflow:"visible",whiteSpace:"pre-wrap"},u)},x&&{overflow:"visible",whiteSpace:"pre-wrap"}],dismissSingleLine:[b.dismissSingleLine,(c={},c[w]={gridArea:"close"},c)],expandSingleLine:b.expandSingleLine,dismissal:[b.dismissal,P],expand:[b.expand,P],actions:[h?b.actions:b.actionsSingleline,(f={display:"flex",flexGrow:0,flexShrink:0,flexBasis:"auto",flexDirection:"row-reverse",alignItems:"center",margin:"0 12px 0 8px",forcedColorAdjust:"auto",MsHighContrastAdjust:"auto"},f[w]={gridArea:"action",marginRight:8,marginBottom:8},f.selectors={"& button:nth-child(n+2)":(d={marginLeft:8},d[w]={marginBottom:0},d)},f),h&&{marginBottom:8},y&&!h&&{marginRight:0}]}},ep=Ce(Ri,vf,void 0,{scope:"MessageBar"}),pf=function(t,o){if(typeof ResizeObserver<"u"){var r=new ResizeObserver(o);return Array.isArray(t)?t.forEach(function(i){return r.observe(i)}):r.observe(t),function(){return r.disconnect()}}else{var e=function(){return o(void 0)},n=Er(Array.isArray(t)?t[0]:t);if(!n)return function(){};var a=n.requestAnimationFrame(e);return n.addEventListener("resize",e,!1),function(){n.cancelAnimationFrame(a),n.removeEventListener("resize",e,!1)}}},hf=function(t){var o=t.onOverflowItemsChanged,r=t.rtl,e=t.pinnedIndex,n=l.useRef(),a=l.useRef(),i=Xn(function(u){var c=pf(u,function(f){a.current=f?f[0].contentRect.width:u.clientWidth,n.current&&n.current()});return function(){c(),a.current=void 0}}),s=Xn(function(u){return i(u.parentElement),function(){return i(null)}});return nr(function(){var u=i.current,c=s.current;if(!(!u||!c)){for(var f=[],d=0;d=0;k--){if(m[k]===void 0){var w=r?C-f[k].offsetLeft:f[k].offsetLeft+f[k].offsetWidth;k+1m[k]){h(k+1);return}}h(0)}};var g=f.length,h=function(C){g!==C&&(g=C,o(C,f.map(function(k,w){return{ele:k,isOverflowing:w>=C&&w!==e}})))},x=void 0;if(a.current!==void 0){var _=Er(u);if(_){var B=_.requestAnimationFrame(n.current);x=function(){return _.cancelAnimationFrame(B)}}}return function(){x&&x(),h(f.length),n.current=void 0}}}),{menuButtonRef:s}},gf=function(t){Ee(o,t);function o(r){var e=t.call(this,r)||this;return Tt(e),e}return o.prototype.render=function(){return l.createElement("div",p({},oe(this.props,Ve)),this.props.children)},o}(l.Component),bf=xe(),yf="Pivot",_f=function(t,o,r,e){return t.getTabId?t.getTabId(r,e):o+"-Tab".concat(e)},ga=function(t,o){var r={links:[],keyToIndexMapping:{},keyToTabIdMapping:{}};return l.Children.forEach(l.Children.toArray(t.children),function(e,n){if(Fi(e)){var a=e.props,i=a.linkText,s=qt(a,["linkText"]),u=e.props.itemKey||n.toString();r.links.push(p(p({headerText:i},s),{itemKey:u})),r.keyToIndexMapping[u]=n,r.keyToTabIdMapping[u]=_f(t,o,u,n)}else e&&Ua("The children of a Pivot component must be of type PivotItem to be rendered.")}),r},Fi=function(t){var o;return l.isValidElement(t)&&((o=t.type)===null||o===void 0?void 0:o.name)===gf.name},Li=l.forwardRef(function(t,o){var r=l.useRef(null),e=l.useRef(null),n=It("Pivot"),a=kr(t.selectedKey,t.defaultSelectedKey),i=a[0],s=a[1],u=t.componentRef,c=t.theme,f=t.linkSize,d=t.linkFormat,v=t.overflowBehavior,m=t.overflowAriaLabel,y=t.focusZoneProps,g=t.overflowButtonAs,h,x={"aria-label":t["aria-label"],"aria-labelledby":t["aria-labelledby"]},_=oe(t,Ve,["aria-label","aria-labelledby"]),B=ga(t,n);l.useImperativeHandle(u,function(){return{focus:function(){var R;(R=r.current)===null||R===void 0||R.focus()}}});var C=function(R){if(!R)return null;var F=R.itemCount,O=R.itemIcon,j=R.headerText;return l.createElement("span",{className:h.linkContent},O!==void 0&&l.createElement("span",{className:h.icon},l.createElement(Xe,{iconName:O})),j!==void 0&&l.createElement("span",{className:h.text}," ",R.headerText),F!==void 0&&l.createElement("span",{className:h.count}," (",F,")"))},k=function(R,F,O,j){var K=F.itemKey,le=F.headerButtonProps,J=F.onRenderItemLink,Q=R.keyToTabIdMapping[K],V,me=O===K;J?V=J(F,C):V=C(F);var Y=F.headerText||"";Y+=F.itemCount?" ("+F.itemCount+")":"",Y+=F.itemIcon?" xx":"";var we=F.role&&F.role!=="tab"?{role:F.role}:{role:"tab","aria-selected":me};return l.createElement(xn,p({},le,we,{id:Q,key:K,className:he(j,me&&h.linkIsSelected),onClick:function(ie){return w(K,ie)},onKeyDown:function(ie){return b(K,ie)},"aria-label":F.ariaLabel,name:F.headerText,keytipProps:F.keytipProps,"data-content":Y}),V)},w=function(R,F){F.preventDefault(),S(R,F)},b=function(R,F){F.which===z.enter&&(F.preventDefault(),S(R))},S=function(R,F){var O;if(s(R),B=ga(t,n),t.onLinkClick&&B.keyToIndexMapping[R]>=0){var j=B.keyToIndexMapping[R],K=l.Children.toArray(t.children)[j];Fi(K)&&t.onLinkClick(K,F)}(O=e.current)===null||O===void 0||O.dismissMenu()},P=function(R,F){if(t.headersOnly||!R)return null;var O=B.keyToIndexMapping[R],j=B.keyToTabIdMapping[R];return l.createElement("div",{role:"tabpanel",hidden:!F,key:R,"aria-hidden":!F,"aria-labelledby":j,className:h.itemContainer},l.Children.toArray(t.children)[O])},I=function(R){return R===null||R!==void 0&&B.keyToIndexMapping[R]!==void 0},A=function(){if(I(i))return i;if(B.links.length)return B.links[0].itemKey};h=bf(t.styles,{theme:c,linkSize:f,linkFormat:d});var D=A(),W=D?B.keyToIndexMapping[D]:0,M=B.links.map(function(R){return k(B,R,D,h.link)}),E=l.useMemo(function(){return{items:[],alignTargetEdge:!0,directionalHint:pe.bottomRightEdge}},[]),N=hf({onOverflowItemsChanged:function(R,F){F.forEach(function(O){var j=O.ele,K=O.isOverflowing;return j.dataset.isOverflowing="".concat(K)}),E.items=B.links.slice(R).filter(function(O){return O.itemKey!==D}).map(function(O,j){return O.role="menuitem",{key:O.itemKey||"".concat(R+j),onRender:function(){return k(B,O,D,h.linkInMenu)}}})},rtl:Be(c),pinnedIndex:W}).menuButtonRef,H=g||xn;return l.createElement("div",p({ref:o},_),l.createElement(An,p({componentRef:r,role:"tablist"},x,{direction:Me.horizontal},y,{className:he(h.root,y?.className)}),M,v==="menu"&&l.createElement(H,{className:he(h.link,h.overflowMenuButton),elementRef:N,componentRef:e,menuProps:E,menuIconProps:{iconName:"More",style:{color:"inherit"}},ariaLabel:m,role:"tab"})),D&&B.links.map(function(R){return(R.alwaysRender===!0||D===R.itemKey)&&P(R.itemKey,D===R.itemKey)}))});Li.displayName=yf;var xf={count:"ms-Pivot-count",icon:"ms-Pivot-icon",linkIsSelected:"is-selected",link:"ms-Pivot-link",linkContent:"ms-Pivot-linkContent",root:"ms-Pivot",rootIsLarge:"ms-Pivot--large",rootIsTabs:"ms-Pivot--tabs",text:"ms-Pivot-text",linkInMenu:"ms-Pivot-linkInMenu",overflowMenuButton:"ms-Pivot-overflowMenuButton"},ba=function(t,o,r){var e,n,a;r===void 0&&(r=!1);var i=t.linkSize,s=t.linkFormat,u=t.theme,c=u.semanticColors,f=u.fonts,d=i==="large",v=s==="tabs";return[f.medium,{color:c.actionLink,padding:"0 8px",position:"relative",backgroundColor:"transparent",border:0,borderRadius:0,selectors:{":hover":{backgroundColor:c.buttonBackgroundHovered,color:c.buttonTextHovered,cursor:"pointer"},":active":{backgroundColor:c.buttonBackgroundPressed,color:c.buttonTextHovered},":focus":{outline:"none"}}},!r&&[{display:"inline-block",lineHeight:44,height:44,marginRight:8,textAlign:"center",selectors:(e={},e[".".concat(ye," &:focus")]={outline:"1px solid ".concat(c.focusBorder)},e[".".concat(ye," &:focus:after")]={content:"attr(data-content)",position:"relative",border:0},e[":before"]={backgroundColor:"transparent",bottom:0,content:'""',height:2,left:8,position:"absolute",right:8,transition:"left ".concat(et.durationValue2," ").concat(et.easeFunction2,`, + right `).concat(et.durationValue2," ").concat(et.easeFunction2)},e[":after"]={color:"transparent",content:"attr(data-content)",display:"block",fontWeight:Wt.bold,height:1,overflow:"hidden",visibility:"hidden"},e)},d&&{fontSize:f.large.fontSize},v&&[{marginRight:0,height:44,lineHeight:44,backgroundColor:c.buttonBackground,padding:"0 10px",verticalAlign:"top",selectors:(n={":focus":{outlineOffset:"-2px"}},n[".".concat(ye," &:focus::before")]={height:"auto",background:"transparent",transition:"none"},n["&:hover, &:focus"]={color:c.buttonTextCheckedHovered},n["&:active, &:hover"]={color:c.primaryButtonText,backgroundColor:c.primaryButtonBackground},n["&.".concat(o.linkIsSelected)]={backgroundColor:c.primaryButtonBackground,color:c.primaryButtonText,fontWeight:Wt.regular,selectors:(a={":before":{backgroundColor:"transparent",transition:"none",position:"absolute",top:0,left:0,right:0,bottom:0,content:'""',height:0},":hover":{backgroundColor:c.primaryButtonBackgroundHovered,color:c.primaryButtonText},":active":{backgroundColor:c.primaryButtonBackgroundPressed,color:c.primaryButtonText}},a[T]=p({fontWeight:Wt.semibold,color:"HighlightText",background:"Highlight"},fe()),a)},n[".".concat(ye," &.").concat(o.linkIsSelected,":focus")]={outlineColor:c.primaryButtonText},n)}]]]},Cf=function(t){var o,r,e,n,a=t.className,i=t.linkSize,s=t.linkFormat,u=t.theme,c=u.semanticColors,f=u.fonts,d=Ie(xf,u),v=i==="large",m=s==="tabs";return{root:[d.root,f.medium,yr,{position:"relative",color:c.link,whiteSpace:"nowrap"},v&&d.rootIsLarge,m&&d.rootIsTabs,a],itemContainer:{selectors:{"&[hidden]":{display:"none"}}},link:re(re([d.link],ba(t,d),!0),[(o={},o["&[data-is-overflowing='true']"]={display:"none"},o)],!1),overflowMenuButton:[d.overflowMenuButton,(r={visibility:"hidden",position:"absolute",right:0},r[".".concat(d.link,"[data-is-overflowing='true'] ~ &")]={visibility:"visible",position:"relative"},r)],linkInMenu:re(re([d.linkInMenu],ba(t,d,!0),!0),[{textAlign:"left",width:"100%",height:36,lineHeight:36}],!1),linkIsSelected:[d.link,d.linkIsSelected,{fontWeight:Wt.semibold,selectors:(e={":before":{backgroundColor:c.inputBackgroundChecked,selectors:(n={},n[T]={backgroundColor:"Highlight"},n)},":hover::before":{left:0,right:0}},e[T]={color:"Highlight"},e)}],linkContent:[d.linkContent,{flex:"0 1 100%",selectors:{"& > * ":{marginLeft:4},"& > *:first-child":{marginLeft:0}}}],text:[d.text,{display:"inline-block",verticalAlign:"top"}],count:[d.count,{display:"inline-block",verticalAlign:"top"}],icon:d.icon}},tp=Ce(Li,Cf,void 0,{scope:"Pivot"}),kf=1e3,wf=xe(),ya=function(t){return function(o){var r;return r={},r[t]="".concat(o,"%"),r}},an=function(t,o,r){return r===o?0:(t-o)/(r-o)*100},Sf=function(t,o,r,e){l.useImperativeHandle(t.componentRef,function(){return{get value(){return r},get range(){return e},focus:function(){var n;(n=o.current)===null||n===void 0||n.focus()}}},[e,o,r])},Bf=function(t,o){var r=t.step,e=r===void 0?1:r,n=t.className,a=t.disabled,i=a===void 0?!1:a,s=t.label,u=t.max,c=u===void 0?10:u,f=t.min,d=f===void 0?0:f,v=t.showValue,m=v===void 0?!0:v,y=t.buttonProps,g=y===void 0?{}:y,h=t.vertical,x=h===void 0?!1:h,_=t.snapToStep,B=t.valueFormat,C=t.styles,k=t.theme,w=t.originFromZero,b=t["aria-labelledby"],S=t.ariaLabel,P=S===void 0?t["aria-label"]:S,I=t.ranged,A=t.onChange,D=t.onChanged,W=l.useRef([]),M=Ol(),E=M.setTimeout,N=M.clearTimeout,H=l.useRef(null),R=kr(t.value,t.defaultValue,function(U,te){return A?.(te,I?[V.latestLowerValue,te]:void 0,U)}),F=R[0],O=R[1],j=kr(t.lowerValue,t.defaultLowerValue,function(U,te){return A?.(V.latestValue,[te,V.latestValue],U)}),K=j[0],le=j[1],J=Math.max(d,Math.min(c,F||0)),Q=Math.max(d,Math.min(J,K||0)),V=ot({onKeyDownTimer:-1,isAdjustingLowerValue:!1,latestValue:J,latestLowerValue:Q});V.latestValue=J,V.latestLowerValue=Q;var me=It("Slider",t.id||g?.id),Y=wf(C,{className:n,disabled:i,vertical:x,showTransitions:!_&&!V.isBetweenSteps,showValue:m,ranged:I,theme:k}),we=(c-d)/e,ie=function(){N(V.onKeyDownTimer),V.onKeyDownTimer=-1},ce=function(U){ie(),D&&(V.onKeyDownTimer=E(function(){D(U,V.latestValue,I?[V.latestLowerValue,V.latestValue]:void 0)},kf))},ze=function(U){var te=t.ariaValueText;if(U!==void 0)return te?te(U):U.toString()},Se=function(U,te,de){te=Math.min(c,Math.max(d,te)),de=de!==void 0?Math.min(c,Math.max(d,de)):void 0;var $e=0;if(isFinite(e))for(;Math.round(e*Math.pow(10,$e))/Math.pow(10,$e)!==e;)$e++;var Te=parseFloat(te.toFixed($e));V.isBetweenSteps=de!==void 0&&de!==Te,I?V.isAdjustingLowerValue&&(w?Te<=0:Te<=V.latestValue)?le(Te,U):!V.isAdjustingLowerValue&&(w?Te>=0:Te>=V.latestLowerValue)&&O(Te,U):O(Te,U)},st=function(U){var te=V.isAdjustingLowerValue?V.latestLowerValue:V.latestValue,de=0;switch(U.which){case Un(z.left,t.theme):case z.down:de=-e,ie(),ce(U);break;case Un(z.right,t.theme):case z.up:de=e,ie(),ce(U);break;case z.home:te=d,ie(),ce(U);break;case z.end:te=c,ie(),ce(U);break;default:return}Se(U,te+de),U.preventDefault(),U.stopPropagation()},se=function(U,te){var de=0;switch(U.type){case"mousedown":case"mousemove":de=te?U.clientY:U.clientX;break;case"touchstart":case"touchmove":de=te?U.touches[0].clientY:U.touches[0].clientX;break}return de},lt=function(U){var te=H.current.getBoundingClientRect(),de=t.vertical?te.height:te.width,$e=de/we,Te,mr;if(t.vertical){var Lo=se(U,t.vertical);mr=te.bottom-Lo,Te=mr/$e}else{var Dr=se(U,t.vertical);mr=Be(t.theme)?te.right-Dr:Dr-te.left,Te=mr/$e}return Te},_e=function(U,te){var de=lt(U),$e=d+e*de,Te=d+e*Math.round(de);Se(U,Te,$e),te||(U.preventDefault(),U.stopPropagation())},Kt=function(U){if(I){var te=lt(U),de=d+e*te;V.isAdjustingLowerValue=de<=V.latestLowerValue||de-V.latestLowerValue<=V.latestValue-de}U.type==="mousedown"?W.current.push(tt(window,"mousemove",_e,!0),tt(window,"mouseup",bt,!0)):U.type==="touchstart"&&W.current.push(tt(window,"touchmove",_e,!0),tt(window,"touchend",bt,!0)),_e(U,!0)},bt=function(U){V.isBetweenSteps=void 0,D?.(U,V.latestValue,I?[V.latestLowerValue,V.latestValue]:void 0),je()},Ue=function(U){V.isAdjustingLowerValue=U.target===Nt.current},je=l.useCallback(function(){W.current.forEach(function(U){return U()}),W.current=[]},[]);l.useEffect(function(){return je},[je]);var Nt=l.useRef(null),Vt=l.useRef(null),ur=l.useRef(null);Sf(t,ur,J,I?[Q,J]:void 0);var Ut=ya(x?"bottom":Be(t.theme)?"right":"left"),Gt=ya(x?"height":"width"),cr=w?0:d,yt=an(J,d,c),$t=an(Q,d,c),Pt=an(cr,d,c),Zt=I?yt-$t:Math.abs(Pt-yt),Yt=Math.min(100-yt,100-Pt),Z=I?$t:Math.min(yt,Pt),$={className:Y.root,ref:o},Ge={className:Y.titleLabel,children:s,disabled:i,htmlFor:P?void 0:me},dr=m?{className:Y.valueLabel,children:B?B(J):J,disabled:i,htmlFor:i?me:void 0}:void 0,Mo=I&&m?{className:Y.valueLabel,children:B?B(Q):Q,disabled:i}:void 0,Yr=w?{className:Y.zeroTick,style:Ut(Pt)}:void 0,Mr={className:he(Y.lineContainer,Y.activeSection),style:Gt(Zt)},Xr={className:he(Y.lineContainer,Y.inactiveSection),style:Gt(Yt)},Do={className:he(Y.lineContainer,Y.inactiveSection),style:Gt(Z)},fr=p({"aria-disabled":i,role:"slider",tabIndex:i?void 0:0},{"data-is-focusable":!i}),Ro=p(p(p({id:me,className:he(Y.slideBox,g.className),ref:ur},!i&&{onMouseDown:Kt,onTouchStart:Kt,onKeyDown:st}),g&&oe(g,Ve,["id","className"])),!I&&p(p({},fr),{"aria-valuemin":d,"aria-valuemax":c,"aria-valuenow":J,"aria-valuetext":ze(J),"aria-label":P||s,"aria-labelledby":b})),Jr=i?{}:{onFocus:Ue},Qr=p({ref:Vt,className:Y.thumb,style:Ut(yt)},I&&p(p(p({},fr),Jr),{id:"max-".concat(me),"aria-valuemin":Q,"aria-valuemax":c,"aria-valuenow":J,"aria-valuetext":ze(J),"aria-label":"max ".concat(P||s)})),ut=I?p(p(p({ref:Nt,className:Y.thumb,style:Ut($t)},fr),Jr),{id:"min-".concat(me),"aria-valuemin":d,"aria-valuemax":J,"aria-valuenow":Q,"aria-valuetext":ze(Q),"aria-label":"min ".concat(P||s)}):void 0,Fo={className:Y.container},eo={ref:H,className:Y.line};return{root:$,label:Ge,sliderBox:Ro,container:Fo,valueLabel:dr,lowerValueLabel:Mo,thumb:Qr,lowerValueThumb:ut,zeroTick:Yr,activeTrack:Mr,topInactiveTrack:Xr,bottomInactiveTrack:Do,sliderLine:eo}},If="SliderBase",Ai=l.forwardRef(function(t,o){var r=Bf(t,o);return l.createElement("div",p({},r.root),r&&l.createElement(zt,p({},r.label)),l.createElement("div",p({},r.container),t.ranged&&(t.vertical?r.valueLabel&&l.createElement(zt,p({},r.valueLabel)):r.lowerValueLabel&&l.createElement(zt,p({},r.lowerValueLabel))),l.createElement("div",p({},r.sliderBox),l.createElement("div",p({},r.sliderLine),t.ranged&&l.createElement("span",p({},r.lowerValueThumb)),l.createElement("span",p({},r.thumb)),r.zeroTick&&l.createElement("span",p({},r.zeroTick)),l.createElement("span",p({},r.bottomInactiveTrack)),l.createElement("span",p({},r.activeTrack)),l.createElement("span",p({},r.topInactiveTrack)))),t.ranged&&t.vertical?r.lowerValueLabel&&l.createElement(zt,p({},r.lowerValueLabel)):r.valueLabel&&l.createElement(zt,p({},r.valueLabel))),l.createElement(In,null))});Ai.displayName=If;var Ef={root:"ms-Slider",enabled:"ms-Slider-enabled",disabled:"ms-Slider-disabled",row:"ms-Slider-row",column:"ms-Slider-column",container:"ms-Slider-container",slideBox:"ms-Slider-slideBox",line:"ms-Slider-line",thumb:"ms-Slider-thumb",activeSection:"ms-Slider-active",inactiveSection:"ms-Slider-inactive",valueLabel:"ms-Slider-value",showValue:"ms-Slider-showValue",showTransitions:"ms-Slider-showTransitions",zeroTick:"ms-Slider-zeroTick"},Tf=function(t){var o,r,e,n,a,i,s,u,c,f,d,v,m,y=t.className,g=t.titleLabelClassName,h=t.theme,x=t.vertical,_=t.disabled,B=t.showTransitions,C=t.showValue,k=t.ranged,w=h.semanticColors,b=h.palette,S=Ie(Ef,h),P=w.inputBackgroundCheckedHovered,I=w.inputBackgroundChecked,A=b.neutralSecondaryAlt,D=b.neutralPrimary,W=b.neutralSecondaryAlt,M=w.disabledText,E=w.disabledBackground,N=w.inputBackground,H=w.smallInputBorder,R=w.disabledBorder,F=!_&&{backgroundColor:P,selectors:(o={},o[T]={backgroundColor:"Highlight"},o)},O=!_&&{backgroundColor:A,selectors:(r={},r[T]={borderColor:"Highlight"},r)},j=!_&&{backgroundColor:I,selectors:(e={},e[T]={backgroundColor:"Highlight"},e)},K=!_&&{border:"2px solid ".concat(P),selectors:(n={},n[T]={borderColor:"Highlight"},n)},le=!t.disabled&&{backgroundColor:w.inputPlaceholderBackgroundChecked,selectors:(a={},a[T]={backgroundColor:"Highlight"},a)};return{root:re(re(re(re(re([S.root,h.fonts.medium,{userSelect:"none"},x&&{marginRight:8}],[_?void 0:S.enabled],!1),[_?S.disabled:void 0],!1),[x?void 0:S.row],!1),[x?S.column:void 0],!1),[y],!1),titleLabel:[{padding:0},g],container:[S.container,{display:"flex",flexWrap:"nowrap",alignItems:"center"},x&&{flexDirection:"column",height:"100%",textAlign:"center",margin:"8px 0"}],slideBox:re(re([S.slideBox,!k&&ht(h),{background:"transparent",border:"none",flexGrow:1,lineHeight:28,display:"flex",alignItems:"center",selectors:(i={},i[":active .".concat(S.activeSection)]=F,i[":hover .".concat(S.activeSection)]=j,i[":active .".concat(S.inactiveSection)]=O,i[":hover .".concat(S.inactiveSection)]=O,i[":active .".concat(S.thumb)]=K,i[":hover .".concat(S.thumb)]=K,i[":active .".concat(S.zeroTick)]=le,i[":hover .".concat(S.zeroTick)]=le,i[T]={forcedColorAdjust:"none"},i)},x?{height:"100%",width:28,padding:"8px 0"}:{height:28,width:"auto",padding:"0 8px"}],[C?S.showValue:void 0],!1),[B?S.showTransitions:void 0],!1),thumb:[S.thumb,k&&ht(h,{inset:-4}),{borderWidth:2,borderStyle:"solid",borderColor:H,borderRadius:10,boxSizing:"border-box",background:N,display:"block",width:16,height:16,position:"absolute"},x?{left:-6,margin:"0 auto",transform:"translateY(8px)"}:{top:-6,transform:Be(h)?"translateX(50%)":"translateX(-50%)"},B&&{transition:"left ".concat(et.durationValue3," ").concat(et.easeFunction1)},_&&{borderColor:R,selectors:(s={},s[T]={borderColor:"GrayText"},s)}],line:[S.line,{display:"flex",position:"relative"},x?{height:"100%",width:4,margin:"0 auto",flexDirection:"column-reverse"}:{width:"100%"}],lineContainer:[{borderRadius:4,boxSizing:"border-box"},x?{width:4,height:"100%"}:{height:4,width:"100%"}],activeSection:[S.activeSection,{background:D,selectors:(u={},u[T]={backgroundColor:"WindowText"},u)},B&&{transition:"width ".concat(et.durationValue3," ").concat(et.easeFunction1)},_&&{background:M,selectors:(c={},c[T]={backgroundColor:"GrayText",borderColor:"GrayText"},c)}],inactiveSection:[S.inactiveSection,{background:W,selectors:(f={},f[T]={border:"1px solid WindowText"},f)},B&&{transition:"width ".concat(et.durationValue3," ").concat(et.easeFunction1)},_&&{background:E,selectors:(d={},d[T]={borderColor:"GrayText"},d)}],zeroTick:[S.zeroTick,{position:"absolute",background:w.disabledBorder,selectors:(v={},v[T]={backgroundColor:"WindowText"},v)},t.disabled&&{background:w.disabledBackground,selectors:(m={},m[T]={backgroundColor:"GrayText"},m)},t.vertical?{width:"16px",height:"1px",transform:Be(h)?"translateX(6px)":"translateX(-6px)"}:{width:"1px",height:"16px",transform:"translateY(-6px)"}],valueLabel:[S.valueLabel,{flexShrink:1,width:30,lineHeight:"1"},x?{margin:"0 auto",whiteSpace:"nowrap",width:40}:{margin:"0 8px",whiteSpace:"nowrap",width:40}]}},rp=Ce(Ai,Tf,void 0,{scope:"Slider"}),Oi=23,Nf=8,sn=32,ln=86,_a=10,un=ge(function(t){var o,r=t.semanticColors,e=r.disabledText,n=r.disabledBackground;return{backgroundColor:n,pointerEvents:"none",cursor:"default",color:e,selectors:(o={":after":{borderColor:n}},o[T]={color:"GrayText"},o)}}),xa=ge(function(t,o,r){var e,n,a,i=t.palette,s=t.semanticColors,u=t.effects,c=i.neutralSecondary,f=s.buttonText,d=s.buttonText,v=s.buttonBackgroundHovered,m=s.buttonBackgroundPressed,y={root:{outline:"none",display:"block",height:"50%",width:Oi,padding:0,backgroundColor:"transparent",textAlign:"center",cursor:"default",color:c,selectors:{"&.ms-DownButton":{borderRadius:"0 0 ".concat(u.roundedCorner2," 0")},"&.ms-UpButton":{borderRadius:"0 ".concat(u.roundedCorner2," 0 0")}}},rootHovered:{backgroundColor:v,color:f},rootChecked:{backgroundColor:m,color:d,selectors:(e={},e[T]={backgroundColor:"Highlight",color:"HighlightText"},e)},rootPressed:{backgroundColor:m,color:d,selectors:(n={},n[T]={backgroundColor:"Highlight",color:"HighlightText"},n)},rootDisabled:{opacity:.5,selectors:(a={},a[T]={color:"GrayText",opacity:1},a)},icon:{fontSize:Nf,marginTop:0,marginRight:0,marginBottom:0,marginLeft:0}},g={},h={};return Tr(y,o?g:h,r)}),Pf=function(t){var o,r,e,n,a=t.theme,i=t.className,s=t.labelPosition,u=t.disabled,c=t.isFocused,f=a.palette,d=a.semanticColors,v=a.effects,m=a.fonts,y=d.inputBorder,g=d.inputBackground,h=d.inputBorderHovered,x=d.inputFocusBorderAlt,_=d.inputText,B=f.white,C=d.inputBackgroundChecked,k=d.disabledText;return{root:[m.medium,{outline:"none",width:"100%",minWidth:ln},i],labelWrapper:[{display:"inline-flex",alignItems:"center"},s===mt.start&&{height:sn,float:"left",marginRight:_a},s===mt.end&&{height:sn,float:"right",marginLeft:_a},s===mt.top&&{marginBottom:-1}],icon:[{padding:"0 5px",fontSize:Ze.large},u&&{color:k}],label:{pointerEvents:"none",lineHeight:Ze.large},spinButtonWrapper:[p(p({display:"flex",position:"relative",boxSizing:"border-box",height:sn,minWidth:ln},hn(y,v.roundedCorner2,"border",0)),{":after":(o={borderWidth:"1px"},o[T]={borderColor:"GrayText"},o)}),(s===mt.top||s===mt.bottom)&&{width:"100%"},!u&&[{":hover:after":(r={borderColor:h},r[T]={borderColor:"Highlight"},r)},c&&{":hover:after, :after":(e={borderColor:x,borderWidth:"2px"},e[T]={borderColor:"Highlight"},e)}],u&&un(a)],input:["ms-spinButton-input",{boxSizing:"border-box",boxShadow:"none",borderStyle:"none",flex:1,margin:0,fontSize:m.medium.fontSize,fontFamily:"inherit",color:_,backgroundColor:g,height:"100%",padding:"0 8px 0 9px",outline:0,display:"block",minWidth:ln-Oi-2,whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",cursor:"text",userSelect:"text",borderRadius:"".concat(v.roundedCorner2," 0 0 ").concat(v.roundedCorner2)},!u&&{selectors:{"::selection":{backgroundColor:C,color:B,selectors:(n={},n[T]={backgroundColor:"Highlight",borderColor:"Highlight",color:"HighlightText"},n)}}},u&&un(a)],arrowButtonsContainer:[{display:"block",height:"100%",cursor:"default"},u&&un(a)]}},it;(function(t){t[t.down=-1]="down",t[t.notSpinning=0]="notSpinning",t[t.up=1]="up"})(it||(it={}));var Mf=xe(),Df="SpinButton",Rf={disabled:!1,label:"",step:1,labelPosition:mt.start,incrementButtonIcon:{iconName:"ChevronUpSmall"},decrementButtonIcon:{iconName:"ChevronDownSmall"}},Ff=400,Lf=75,Af=function(t,o,r){l.useImperativeHandle(t.componentRef,function(){return{get value(){return r},focus:function(){o.current&&o.current.focus()}}},[o,r])},Of=function(){},cn=function(t,o){var r=o.min,e=o.max;return typeof e=="number"&&(t=Math.min(t,e)),typeof r=="number"&&(t=Math.max(t,r)),t},Hi=l.forwardRef(function(t,o){var r=Ir(Rf,t),e=r.disabled,n=r.label,a=r.min,i=r.max,s=r.step,u=r.defaultValue,c=r.value,f=r.precision,d=r.labelPosition,v=r.iconProps,m=r.incrementButtonIcon,y=r.incrementButtonAriaLabel,g=r.decrementButtonIcon,h=r.decrementButtonAriaLabel,x=r.ariaLabel,_=r.ariaDescribedBy,B=r.upArrowButtonStyles,C=r.downArrowButtonStyles,k=r.theme,w=r.ariaPositionInSet,b=r.ariaSetSize,S=r.ariaValueNow,P=r.ariaValueText,I=r.className,A=r.inputProps,D=r.onDecrement,W=r.onIncrement,M=r.iconButtonProps,E=r.onValidate,N=r.onChange,H=r.styles,R=l.useRef(null),F=It("input"),O=It("Label"),j=l.useState(!1),K=j[0],le=j[1],J=l.useState(it.notSpinning),Q=J[0],V=J[1],me=lr(),Y=l.useMemo(function(){return f??Math.max(el(s),0)},[f,s]),we=kr(c,u??String(a||0),N),ie=we[0],ce=we[1],ze=l.useState(),Se=ze[0],st=ze[1],se=l.useRef({stepTimeoutHandle:-1,latestValue:void 0,latestIntermediateValue:void 0}).current;se.latestValue=ie,se.latestIntermediateValue=Se;var lt=wr(c);l.useEffect(function(){c!==lt&&Se!==void 0&&st(void 0)},[c,lt,Se]);var _e=Mf(H,{theme:k,disabled:e,isFocused:K,keyboardSpinDirection:Q,labelPosition:d,className:I}),Kt=oe(r,Ve,["onBlur","onFocus","className","onChange"]),bt=l.useCallback(function(Z){var $=se.latestIntermediateValue;if($!==void 0&&$!==se.latestValue){var Ge=void 0;E?Ge=E($,Z):$&&$.trim().length&&!isNaN(Number($))&&(Ge=String(cn(Number($),{min:a,max:i}))),Ge!==void 0&&Ge!==se.latestValue&&ce(Ge,Z)}st(void 0)},[se,i,a,E,ce]),Ue=l.useCallback(function(){se.stepTimeoutHandle>=0&&(me.clearTimeout(se.stepTimeoutHandle),se.stepTimeoutHandle=-1),(se.spinningByMouse||Q!==it.notSpinning)&&(se.spinningByMouse=!1,V(it.notSpinning))},[se,Q,me]),je=l.useCallback(function(Z,$){if($.persist(),se.latestIntermediateValue!==void 0){($.type==="keydown"||$.type==="mousedown")&&bt($),me.requestAnimationFrame(function(){je(Z,$)});return}var Ge=Z(se.latestValue||"",$);Ge!==void 0&&Ge!==se.latestValue&&ce(Ge,$);var dr=se.spinningByMouse;se.spinningByMouse=$.type==="mousedown",se.spinningByMouse&&(se.stepTimeoutHandle=me.setTimeout(function(){je(Z,$)},dr?Lf:Ff))},[se,me,bt,ce]),Nt=l.useCallback(function(Z){if(W)return W(Z);var $=cn(Number(Z)+Number(s),{max:i});return $=Gn($,Y),String($)},[Y,i,W,s]),Vt=l.useCallback(function(Z){if(D)return D(Z);var $=cn(Number(Z)-Number(s),{min:a});return $=Gn($,Y),String($)},[Y,a,D,s]),ur=function(Z){st(Z.target.value)},Ut=function(Z){var $;R.current&&((se.spinningByMouse||Q!==it.notSpinning)&&Ue(),R.current.select(),le(!0),($=r.onFocus)===null||$===void 0||$.call(r,Z))},Gt=function(Z){var $;bt(Z),le(!1),($=r.onBlur)===null||$===void 0||$.call(r,Z)},cr=function(Z){if((Z.which===z.up||Z.which===z.down||Z.which===z.enter)&&(Z.preventDefault(),Z.stopPropagation()),e){Ue();return}var $=it.notSpinning;switch(Z.which){case z.up:$=it.up,je(Nt,Z);break;case z.down:$=it.down,je(Vt,Z);break;case z.enter:bt(Z);break;case z.escape:st(void 0);break}Q!==$&&V($)},yt=l.useCallback(function(Z){if(e||Z.which===z.up||Z.which===z.down){Ue();return}},[e,Ue]),$t=l.useCallback(function(Z){je(Nt,Z)},[Nt,je]),Pt=l.useCallback(function(Z){je(Vt,Z)},[Vt,je]);Af(r,R,ie),Hf();var Zt=!!ie&&!isNaN(Number(ie)),Yt=(v||n)&&l.createElement("div",{className:_e.labelWrapper},v&&l.createElement(Xe,p({},v,{className:_e.icon,"aria-hidden":"true"})),n&&l.createElement(zt,{id:O,htmlFor:F,className:_e.label,disabled:e},n));return l.createElement("div",{className:_e.root,ref:o},d!==mt.bottom&&Yt,l.createElement("div",p({},Kt,{className:_e.spinButtonWrapper,"aria-label":x&&x,"aria-posinset":w,"aria-setsize":b,"data-ktp-target":!0}),l.createElement("input",p({value:Se??ie,id:F,onChange:Of,onInput:ur,className:_e.input,type:"text",autoComplete:"off",role:"spinbutton","aria-labelledby":n&&O,"aria-valuenow":S??(Zt?Number(ie):void 0),"aria-valuetext":P??(Zt?void 0:ie),"aria-valuemin":a,"aria-valuemax":i,"aria-describedby":_,onBlur:Gt,ref:R,onFocus:Ut,onKeyDown:cr,onKeyUp:yt,disabled:e,"aria-disabled":e,"data-lpignore":!0,"data-ktp-execute-target":!0},A)),l.createElement("span",{className:_e.arrowButtonsContainer},l.createElement(Ur,p({styles:xa(k,!0,B),className:"ms-UpButton",checked:Q===it.up,disabled:e,iconProps:m,onMouseDown:$t,onMouseLeave:Ue,onMouseUp:Ue,tabIndex:-1,ariaLabel:y,"data-is-focusable":!1},M)),l.createElement(Ur,p({styles:xa(k,!1,C),className:"ms-DownButton",checked:Q===it.down,disabled:e,iconProps:g,onMouseDown:Pt,onMouseLeave:Ue,onMouseUp:Ue,tabIndex:-1,ariaLabel:h,"data-is-focusable":!1},M)))),d===mt.bottom&&Yt)});Hi.displayName=Df;var Hf=function(t){},op=Ce(Hi,Pf,void 0,{scope:"SpinButton"}),zi={root:"ms-StackItem"},zf={start:"flex-start",end:"flex-end"},jf=function(t,o,r){var e=t.grow,n=t.shrink,a=t.disableShrink,i=t.align,s=t.verticalFill,u=t.order,c=t.className,f=t.basis,d=f===void 0?"auto":f,v=Ie(zi,o);return{root:[o.fonts.medium,v.root,{flexBasis:d,margin:r.margin,padding:r.padding,height:s?"100%":"auto",width:"auto"},e&&{flexGrow:e===!0?1:e},(a||!e&&!n)&&{flexShrink:0},n&&!a&&{flexShrink:1},i&&{alignSelf:zf[i]||i},u&&{order:u},c]}},Wf=function(t){var o=t.children,r=oe(t,ir);if(o==null)return null;var e=Za(t,{root:"div"});return vo(e.root,p({},r),o)},ji=$a(Wf,{displayName:"StackItem",styles:jf}),_r=function(t,o){return o.spacing.hasOwnProperty(t)?o.spacing[t]:t},dn=function(t){var o=parseFloat(t),r=isNaN(o)?0:o,e=isNaN(o)?"":o.toString(),n=t.substring(e.toString().length);return{value:r,unit:n||"px"}},qf=function(t,o){if(t===void 0||t==="")return{rowGap:{value:0,unit:"px"},columnGap:{value:0,unit:"px"}};if(typeof t=="number")return{rowGap:{value:t,unit:"px"},columnGap:{value:t,unit:"px"}};var r=t.split(" ");if(r.length>2)return{rowGap:{value:0,unit:"px"},columnGap:{value:0,unit:"px"}};if(r.length===2)return{rowGap:dn(_r(r[0],o)),columnGap:dn(_r(r[1],o))};var e=dn(_r(t,o));return{rowGap:e,columnGap:e}},Ca=function(t,o){if(t===void 0||typeof t=="number"||t==="")return t;var r=t.split(" ");return r.length<2?_r(t,o):r.reduce(function(e,n){return _r(e,o)+" "+_r(n,o)})},hr={start:"flex-start",end:"flex-end"},kn={root:"ms-Stack",inner:"ms-Stack-inner",child:"ms-Stack-child"},Kf=function(t,o,r){var e,n,a,i,s,u,c,f,d,v,m,y,g,h=t.className,x=t.disableShrink,_=t.enableScopedSelectors,B=t.grow,C=t.horizontal,k=t.horizontalAlign,w=t.reversed,b=t.verticalAlign,S=t.verticalFill,P=t.wrap,I=Ie(kn,o),A=r&&r.childrenGap?r.childrenGap:t.gap,D=r&&r.maxHeight?r.maxHeight:t.maxHeight,W=r&&r.maxWidth?r.maxWidth:t.maxWidth,M=r&&r.padding?r.padding:t.padding,E=qf(A,o),N=E.rowGap,H=E.columnGap,R="".concat(-.5*H.value).concat(H.unit),F="".concat(-.5*N.value).concat(N.unit),O={textOverflow:"ellipsis"},j="> "+(_?"."+kn.child:"*"),K=(e={},e["".concat(j,":not(.").concat(zi.root,")")]={flexShrink:0},e);return P?{root:[I.root,{flexWrap:"wrap",maxWidth:W,maxHeight:D,width:"auto",overflow:"visible",height:"100%"},k&&(n={},n[C?"justifyContent":"alignItems"]=hr[k]||k,n),b&&(a={},a[C?"alignItems":"justifyContent"]=hr[b]||b,a),h,{display:"flex"},C&&{height:S?"100%":"auto"}],inner:[I.inner,(i={display:"flex",flexWrap:"wrap",marginLeft:R,marginRight:R,marginTop:F,marginBottom:F,overflow:"visible",boxSizing:"border-box",padding:Ca(M,o),width:H.value===0?"100%":"calc(100% + ".concat(H.value).concat(H.unit,")"),maxWidth:"100vw"},i[j]=p({margin:"".concat(.5*N.value).concat(N.unit," ").concat(.5*H.value).concat(H.unit)},O),i),x&&K,k&&(s={},s[C?"justifyContent":"alignItems"]=hr[k]||k,s),b&&(u={},u[C?"alignItems":"justifyContent"]=hr[b]||b,u),C&&(c={flexDirection:w?"row-reverse":"row",height:N.value===0?"100%":"calc(100% + ".concat(N.value).concat(N.unit,")")},c[j]={maxWidth:H.value===0?"100%":"calc(100% - ".concat(H.value).concat(H.unit,")")},c),!C&&(f={flexDirection:w?"column-reverse":"column",height:"calc(100% + ".concat(N.value).concat(N.unit,")")},f[j]={maxHeight:N.value===0?"100%":"calc(100% - ".concat(N.value).concat(N.unit,")")},f)]}:{root:[I.root,(d={display:"flex",flexDirection:C?w?"row-reverse":"row":w?"column-reverse":"column",flexWrap:"nowrap",width:"auto",height:S?"100%":"auto",maxWidth:W,maxHeight:D,padding:Ca(M,o),boxSizing:"border-box"},d[j]=O,d),x&&K,B&&{flexGrow:B===!0?1:B},k&&(v={},v[C?"justifyContent":"alignItems"]=hr[k]||k,v),b&&(m={},m[C?"alignItems":"justifyContent"]=hr[b]||b,m),C&&H.value>0&&(y={},y[w?"".concat(j,":not(:last-child)"):"".concat(j,":not(:first-child)")]={marginLeft:"".concat(H.value).concat(H.unit)},y),!C&&N.value>0&&(g={},g[w?"".concat(j,":not(:last-child)"):"".concat(j,":not(:first-child)")]={marginTop:"".concat(N.value).concat(N.unit)},g),h]}},Vf=function(t){var o=t.as,r=o===void 0?"div":o,e=t.disableShrink,n=e===void 0?!1:e,a=t.doNotRenderFalsyValues,i=a===void 0?!1:a,s=t.enableScopedSelectors,u=s===void 0?!1:s,c=t.wrap,f=qt(t,["as","disableShrink","doNotRenderFalsyValues","enableScopedSelectors","wrap"]),d=Wi(t.children,{disableShrink:n,enableScopedSelectors:u,doNotRenderFalsyValues:i}),v=oe(f,ir),m=Za(t,{root:r,inner:"div"});return c?vo(m.root,p({},v),vo(m.inner,null,d)):vo(m.root,p({},v),d)};function Wi(t,o){var r=o.disableShrink,e=o.enableScopedSelectors,n=o.doNotRenderFalsyValues,a=l.Children.toArray(t);return a=l.Children.map(a,function(i){if(!i)return n?null:i;if(!l.isValidElement(i))return i;if(i.type===l.Fragment)return i.props.children?Wi(i.props.children,{disableShrink:r,enableScopedSelectors:e,doNotRenderFalsyValues:n}):null;var s=i,u={};Uf(i)&&(u={shrink:!r});var c=s.props.className;return l.cloneElement(s,p(p(p(p({},u),s.props),c&&{className:c}),e&&{className:he(kn.child,c)}))}),a}function Uf(t){return!!t&&typeof t=="object"&&!!t.type&&t.type.displayName===ji.displayName}var Gf={Item:ji},np=$a(Vf,{displayName:"Stack",styles:Kf,statics:Gf});const qi=Symbol("fui.slotRenderFunction"),Eo=Symbol("fui.slotElementType");function jn(t,o){const{defaultProps:r,elementType:e}=o,n=$f(t),a={...r,...n,[Eo]:e};return n&&typeof n.children=="function"&&(a[qi]=n.children,a.children=r?.children),a}function Ki(t,o){if(!(t===null||t===void 0&&!o.renderByDefault))return jn(t,o)}function $f(t){return typeof t=="string"||typeof t=="number"||Array.isArray(t)||l.isValidElement(t)?{children:t}:t}function ka(t){return!!t?.hasOwnProperty(Eo)}const Zf=(t,o)=>Ki(t,{...o,renderByDefault:o?.required,elementType:void 0}),ue=(...t)=>{const o={};for(const r of t){const e=Array.isArray(r)?r:Object.keys(r);for(const n of e)o[n]=1}return o},Yf=ue(["onAuxClick","onAnimationEnd","onAnimationStart","onCopy","onCut","onPaste","onCompositionEnd","onCompositionStart","onCompositionUpdate","onFocus","onFocusCapture","onBlur","onBlurCapture","onChange","onInput","onSubmit","onLoad","onError","onKeyDown","onKeyDownCapture","onKeyPress","onKeyUp","onAbort","onCanPlay","onCanPlayThrough","onDurationChange","onEmptied","onEncrypted","onEnded","onLoadedData","onLoadedMetadata","onLoadStart","onPause","onPlay","onPlaying","onProgress","onRateChange","onSeeked","onSeeking","onStalled","onSuspend","onTimeUpdate","onVolumeChange","onWaiting","onClick","onClickCapture","onContextMenu","onDoubleClick","onDrag","onDragEnd","onDragEnter","onDragExit","onDragLeave","onDragOver","onDragStart","onDrop","onMouseDown","onMouseDownCapture","onMouseEnter","onMouseLeave","onMouseMove","onMouseOut","onMouseOver","onMouseUp","onMouseUpCapture","onSelect","onTouchCancel","onTouchEnd","onTouchMove","onTouchStart","onScroll","onWheel","onPointerCancel","onPointerDown","onPointerEnter","onPointerLeave","onPointerMove","onPointerOut","onPointerOver","onPointerUp","onGotPointerCapture","onLostPointerCapture"]),Xf=ue(["accessKey","children","className","contentEditable","dir","draggable","hidden","htmlFor","id","lang","ref","role","style","tabIndex","title","translate","spellCheck","name"]),Jf=ue(["itemID","itemProp","itemRef","itemScope","itemType"]),ke=ue(Xf,Yf,Jf),Qf=ue(ke,["form"]),Vi=ue(ke,["height","loop","muted","preload","src","width"]),em=ue(Vi,["poster"]),tm=ue(ke,["start"]),rm=ue(ke,["value"]),om=ue(ke,["download","href","hrefLang","media","rel","target","type"]),nm=ue(ke,["dateTime"]),To=ue(ke,["autoFocus","disabled","form","formAction","formEncType","formMethod","formNoValidate","formTarget","type","value"]),am=ue(To,["accept","alt","autoCapitalize","autoComplete","checked","dirname","form","height","inputMode","list","max","maxLength","min","multiple","pattern","placeholder","readOnly","required","src","step","size","type","value","width"]),im=ue(To,["autoCapitalize","cols","dirname","form","maxLength","placeholder","readOnly","required","rows","wrap"]),sm=ue(To,["form","multiple","required"]),lm=ue(ke,["selected","value"]),um=ue(ke,["cellPadding","cellSpacing"]),cm=ke,dm=ue(ke,["colSpan","rowSpan","scope"]),fm=ue(ke,["colSpan","headers","rowSpan","scope"]),mm=ue(ke,["span"]),vm=ue(ke,["span"]),pm=ue(ke,["disabled","form"]),hm=ue(ke,["acceptCharset","action","encType","encType","method","noValidate","target"]),gm=ue(ke,["allow","allowFullScreen","allowPaymentRequest","allowTransparency","csp","height","importance","referrerPolicy","sandbox","src","srcDoc","width"]),bm=ue(ke,["alt","crossOrigin","height","src","srcSet","useMap","width"]),ym=ue(ke,["open","onCancel","onClose"]);function _m(t,o,r){const e=Array.isArray(o),n={},a=Object.keys(t);for(const i of a)(!e&&o[i]||e&&o.indexOf(i)>=0||i.indexOf("data-")===0||i.indexOf("aria-")===0)&&(!r||r?.indexOf(i)===-1)&&(n[i]=t[i]);return n}const xm={label:Qf,audio:Vi,video:em,ol:tm,li:rm,a:om,button:To,input:am,textarea:im,select:sm,option:lm,table:um,tr:cm,th:dm,td:fm,colGroup:mm,col:vm,fieldset:pm,form:hm,iframe:gm,img:bm,time:nm,dialog:ym};function Cm(t,o,r){const e=t&&xm[t]||ke;return e.as=1,_m(o,e,r)}const km=(t,o,r)=>{var e;return Cm((e=o.as)!==null&&e!==void 0?e:t,o,r)};function Wn(){return typeof window<"u"&&!!(window.document&&window.document.createElement)}function wm(t,o){const r=l.useRef(void 0),e=l.useCallback((a,i)=>(r.current!==void 0&&o(r.current),r.current=t(a,i),r.current),[o,t]),n=l.useCallback(()=>{r.current!==void 0&&(o(r.current),r.current=void 0)},[o]);return l.useEffect(()=>n,[n]),[e,n]}function Sm(t){return typeof t=="function"}const Bm=t=>{const[o,r]=l.useState(()=>t.defaultState===void 0?t.initialState:Im(t.defaultState)?t.defaultState():t.defaultState),e=l.useRef(t.state);l.useEffect(()=>{e.current=t.state},[t.state]);const n=l.useCallback(a=>{Sm(a)&&a(e.current)},[]);return Em(t.state)?[t.state,n]:[o,r]};function Im(t){return typeof t=="function"}const Em=t=>{const[o]=l.useState(()=>t!==void 0);return o},Ui={current:0},Tm=l.createContext(void 0);function Gi(){var t;return(t=l.useContext(Tm))!==null&&t!==void 0?t:Ui}function Nm(){const t=Gi()!==Ui,[o,r]=l.useState(t);return Wn()&&t&&l.useLayoutEffect(()=>{r(!1)},[]),o}const Gr=Wn()?l.useLayoutEffect:l.useEffect,jt=t=>{const o=l.useRef(()=>{throw new Error("Cannot call an event handler while rendering")});return Gr(()=>{o.current=t},[t]),l.useCallback((...r)=>{const e=o.current;return e(...r)},[o])},$i=l.createContext(void 0);$i.Provider;function Pm(){return l.useContext($i)||""}function Mm(t="fui-",o){const r=Gi(),e=Pm(),n=Ya["useId"];if(n){const a=n(),i=l.useMemo(()=>a.replace(/:/g,""),[a]);return o||`${e}${t}${i}`}return l.useMemo(()=>o||`${e}${t}${++r.current}`,[e,t,o,r])}function wa(...t){const o=l.useCallback(r=>{o.current=r;for(const e of t)typeof e=="function"?e(r):e&&(e.current=r)},[...t]);return o}function Dm(){return wm(setTimeout,clearTimeout)}function Ot(t,o){return(...r)=>{t?.(...r),o?.(...r)}}function Co(t,o){var r;const e=t;var n;return!!(!(e==null||(r=e.ownerDocument)===null||r===void 0)&&r.defaultView&&e instanceof e.ownerDocument.defaultView[(n=o?.constructorName)!==null&&n!==void 0?n:"HTMLElement"])}function Zi(t){return!!t.type.isFluentTriggerComponent}function Rm(t,o){return typeof t=="function"?t(o):t?Yi(t,o):t||null}function Yi(t,o){if(!l.isValidElement(t)||t.type===l.Fragment)throw new Error("A trigger element must be a single element for this component. Please ensure that you're not using React Fragments.");if(Zi(t)){const r=Yi(t.props.children,o);return l.cloneElement(t,void 0,r)}else return l.cloneElement(t,o)}function Xi(t){return l.isValidElement(t)?Zi(t)?Xi(t.props.children):t:null}function Sa(t,o){if(!t)return;const r=t;r._virtual||(r._virtual={}),r._virtual.parent=o}function Fm(t,o){return{...o,[Eo]:t}}function Ji(t,o){return function(e,n,a,i,s){return ka(n)?o(Fm(e,n),null,a,i,s):ka(e)?o(e,n,a,i,s):t(e,n,a,i,s)}}function Qi(t){const{as:o,[Eo]:r,[qi]:e,...n}=t,a=n,i=typeof r=="string"?o??r:r;return typeof i!="string"&&o&&(a.as=o),{elementType:i,props:a,renderFunction:e}}const or=tl,Lm=(t,o,r)=>{const{elementType:e,renderFunction:n,props:a}=Qi(t),i={...a,...o};return n?or.jsx(l.Fragment,{children:n(e,i)},r):or.jsx(e,i,r)},Am=(t,o,r)=>{const{elementType:e,renderFunction:n,props:a}=Qi(t),i={...a,...o};return n?or.jsx(l.Fragment,{children:n(e,{...i,children:or.jsxs(l.Fragment,{children:i.children},void 0)})},r):or.jsxs(e,i,r)},ko=Ji(or.jsx,Lm),wn=Ji(or.jsxs,Am),es=l.createContext(void 0),Om="";es.Provider;function Hm(){var t;return(t=l.useContext(es))!==null&&t!==void 0?t:Om}const ts=l.createContext(void 0),zm={};ts.Provider;function jm(){var t;return(t=l.useContext(ts))!==null&&t!==void 0?t:zm}const rs=l.createContext(void 0),Wm={targetDocument:typeof document=="object"?document:void 0,dir:"ltr"};rs.Provider;function No(){var t;return(t=l.useContext(rs))!==null&&t!==void 0?t:Wm}const os=l.createContext(void 0),qm=()=>{};os.Provider;const ns=t=>{var o,r;return(r=(o=l.useContext(os))===null||o===void 0?void 0:o[t])!==null&&r!==void 0?r:qm},as=l.createContext(void 0);as.Provider;function Km(){return l.useContext(as)}const Ba="data-fui-focus-visible";function Vm(t,o){if(is(t))return()=>{};const r={current:void 0},e=rl(o);function n(u){e.isNavigatingWithKeyboard()&&Co(u)&&(r.current=u,u.setAttribute(Ba,""))}function a(){r.current&&(r.current.removeAttribute(Ba),r.current=void 0)}e.subscribe(u=>{u||a()});const i=u=>{a(),n(u.target)},s=u=>{(!u.relatedTarget||Co(u.relatedTarget)&&!t.contains(u.relatedTarget))&&a()};return t.addEventListener(ho,i),t.addEventListener("focusout",s),t.focusVisible=!0,n(o.document.activeElement),()=>{a(),t.removeEventListener(ho,i),t.removeEventListener("focusout",s),delete t.focusVisible,ol(e)}}function is(t){return t?t.focusVisible?!0:is(t?.parentElement):!1}function Um(t={}){const o=No(),r=l.useRef(null);var e;const n=(e=t.targetDocument)!==null&&e!==void 0?e:o.targetDocument;return l.useEffect(()=>{if(n?.defaultView&&r.current)return Vm(r.current,n.defaultView)},[r,n]),r}function Gm(t,o){const{disabled:r,disabledFocusable:e=!1,["aria-disabled"]:n,onClick:a,onKeyDown:i,onKeyUp:s,...u}=o??{},c=typeof n=="string"?n==="true":n,f=r||e||c,d=jt(y=>{f?(y.preventDefault(),y.stopPropagation()):a?.(y)}),v=jt(y=>{if(i?.(y),y.isDefaultPrevented())return;const g=y.key;if(f&&(g===zo||g===ro)){y.preventDefault(),y.stopPropagation();return}if(g===ro){y.preventDefault();return}else g===zo&&(y.preventDefault(),y.currentTarget.click())}),m=jt(y=>{if(s?.(y),y.isDefaultPrevented())return;const g=y.key;if(f&&(g===zo||g===ro)){y.preventDefault(),y.stopPropagation();return}g===ro&&(y.preventDefault(),y.currentTarget.click())});if(t==="button"||t===void 0)return{...u,disabled:r&&!e,"aria-disabled":e?!0:c,onClick:e?void 0:d,onKeyUp:e?void 0:s,onKeyDown:e?void 0:i};{const y={role:"button",tabIndex:r&&!e?void 0:0,...u,onClick:d,onKeyUp:m,onKeyDown:v,"aria-disabled":r||e||c};return t==="a"&&f&&(y.href=void 0),y}}const $m=(t,o)=>{const r=Zf(t,o);var e;const n=Gm((e=r?.as)!==null&&e!==void 0?e:"button",r);return r&&n},Ia="data-popper-is-intersecting",Ea="data-popper-escaped",Ta="data-popper-reference-hidden",Zm="data-popper-placement";function ss(t){const o=t.split("-");return{side:o[0],alignment:o[1]}}const Ym=t=>t.nodeName==="HTML"?t:t.parentNode||t.host,Xm=t=>{var o;return t.nodeType!==1?{}:((o=t.ownerDocument)===null||o===void 0?void 0:o.defaultView).getComputedStyle(t,null)},Po=t=>{const o=t&&Ym(t);if(!o)return document.body;switch(o.nodeName){case"HTML":case"BODY":return o.ownerDocument.body;case"#document":return o.body}const{overflow:r,overflowX:e,overflowY:n}=Xm(o);return/(auto|scroll|overlay)/.test(r+n+e)?o:Po(o)},Jm=t=>{var o;const r=Po(t);return r?r!==((o=r.ownerDocument)===null||o===void 0?void 0:o.body):!1};function qn(t,o){if(o==="window")return t?.ownerDocument.documentElement;if(o==="clippingParents")return"clippingAncestors";if(o==="scrollParent"){let r=Po(t);return r.nodeName==="BODY"&&(r=t?.ownerDocument.documentElement),r}return o}function Qm(t,o){return typeof t=="number"||typeof t=="object"&&t!==null?fn(t,o):typeof t=="function"?r=>{const e=t(r);return fn(e,o)}:{mainAxis:o}}const fn=(t,o)=>{if(typeof t=="number")return{mainAxis:t+o};var r;return{...t,mainAxis:((r=t.mainAxis)!==null&&r!==void 0?r:0)+o}};function ev(t,o){if(typeof t=="number")return t;const{start:r,end:e,...n}=t,a=n,i=o?"end":"start",s=o?"start":"end";return t[i]&&(a.left=t[i]),t[s]&&(a.right=t[s]),a}const tv=t=>({above:"top",below:"bottom",before:t?"right":"left",after:t?"left":"right"}),rv=()=>({start:"start",end:"end",top:"start",bottom:"end",center:void 0}),ov=(t,o)=>{const r=t==="above"||t==="below",e=o==="top"||o==="bottom";return r&&e||!r&&!e},ls=(t,o,r)=>{const e=ov(o,t)?"center":t,n=o&&tv(r)[o],a=e&&rv()[e];return n&&a?`${n}-${a}`:n},nv=()=>({top:"above",bottom:"below",right:"after",left:"before"}),av=t=>t==="above"||t==="below"?{start:"start",end:"end"}:{start:"top",end:"bottom"},iv=t=>{const{side:o,alignment:r}=ss(t),e=nv()[o],n=r&&av(e)[r];return{position:e,alignment:n}},sv={above:{position:"above",align:"center"},"above-start":{position:"above",align:"start"},"above-end":{position:"above",align:"end"},below:{position:"below",align:"center"},"below-start":{position:"below",align:"start"},"below-end":{position:"below",align:"end"},before:{position:"before",align:"center"},"before-top":{position:"before",align:"top"},"before-bottom":{position:"before",align:"bottom"},after:{position:"after",align:"center"},"after-top":{position:"after",align:"top"},"after-bottom":{position:"after",align:"bottom"}};function us(t){return t==null?{}:typeof t=="string"?sv[t]:t}function mn(t,o,r){const e=l.useRef(!0),[n]=l.useState(()=>({value:t,callback:o,facade:{get current(){return n.value},set current(a){const i=n.value;if(i!==a){if(n.value=a,r&&e.current)return;n.callback(a,i)}}}}));return Gr(()=>{e.current=!1},[]),n.callback=o,n.facade}function lv(t){let o;return()=>(o||(o=new Promise(r=>{Promise.resolve().then(()=>{o=void 0,r(t())})})),o)}function uv(t){const{arrow:o,middlewareData:r}=t;if(!r.arrow||!o)return;const{x:e,y:n}=r.arrow;Object.assign(o.style,{left:`${e}px`,top:`${n}px`})}function cv(t){var o,r,e;const{container:n,placement:a,middlewareData:i,strategy:s,lowPPI:u,coordinates:c,useTransform:f=!0}=t;if(!n)return;n.setAttribute(Zm,a),n.removeAttribute(Ia),i.intersectionObserver.intersecting&&n.setAttribute(Ia,""),n.removeAttribute(Ea),!((o=i.hide)===null||o===void 0)&&o.escaped&&n.setAttribute(Ea,""),n.removeAttribute(Ta),!((r=i.hide)===null||r===void 0)&&r.referenceHidden&&n.setAttribute(Ta,"");const d=((e=n.ownerDocument.defaultView)===null||e===void 0?void 0:e.devicePixelRatio)||1,v=Math.round(c.x*d)/d,m=Math.round(c.y*d)/d;if(Object.assign(n.style,{position:s}),f){Object.assign(n.style,{transform:u?`translate(${v}px, ${m}px)`:`translate3d(${v}px, ${m}px, 0)`});return}Object.assign(n.style,{left:`${v}px`,top:`${m}px`})}const dv=t=>{switch(t){case"always":case!0:return{applyMaxWidth:!0,applyMaxHeight:!0};case"width-always":case"width":return{applyMaxWidth:!0,applyMaxHeight:!1};case"height-always":case"height":return{applyMaxWidth:!1,applyMaxHeight:!0};default:return!1}};function fv(){return{name:"coverTarget",fn:t=>{const{placement:o,rects:r,x:e,y:n}=t,a=ss(o).side,i={x:e,y:n};switch(a){case"bottom":i.y-=r.reference.height;break;case"top":i.y+=r.reference.height;break;case"left":i.x+=r.reference.width;break;case"right":i.x-=r.reference.width;break}return i}}}function mv(t){const{hasScrollableElement:o,flipBoundary:r,container:e,fallbackPositions:n=[],isRtl:a}=t,i=n.reduce((s,u)=>{const{position:c,align:f}=us(u),d=ls(f,c,a);return d&&s.push(d),s},[]);return nl({...o&&{boundary:"clippingAncestors"},...r&&{altBoundary:!0,boundary:qn(e,r)},fallbackStrategy:"bestFit",...i.length&&{fallbackPlacements:i}})}function vv(){return{name:"intersectionObserver",fn:async t=>{const o=t.rects.floating,r=await al(t,{altBoundary:!0}),e=r.top0,n=r.bottom0;return{data:{intersecting:e||n}}}}}const pv=t=>({name:"resetMaxSize",fn({middlewareData:o,elements:r}){var e;if(!((e=o.resetMaxSize)===null||e===void 0)&&e.maxSizeAlreadyReset)return{};const{applyMaxWidth:n,applyMaxHeight:a}=t;return n&&(r.floating.style.removeProperty("box-sizing"),r.floating.style.removeProperty("max-width"),r.floating.style.removeProperty("width")),a&&(r.floating.style.removeProperty("box-sizing"),r.floating.style.removeProperty("max-height"),r.floating.style.removeProperty("height")),{data:{maxSizeAlreadyReset:!0},reset:{rects:!0}}}});function hv(t,o){const{container:r,overflowBoundary:e}=o;return il({...e&&{altBoundary:!0,boundary:qn(r,e)},apply({availableHeight:n,availableWidth:a,elements:i,rects:s}){const u=(d,v,m)=>{if(d&&(i.floating.style.setProperty("box-sizing","border-box"),i.floating.style.setProperty(`max-${v}`,`${m}px`),s.floating[v]>m)){i.floating.style.setProperty(v,`${m}px`);const y=v==="width"?"x":"y";i.floating.style.getPropertyValue(`overflow-${y}`)||i.floating.style.setProperty(`overflow-${y}`,"auto")}},{applyMaxWidth:c,applyMaxHeight:f}=t;u(c,"width",a),u(f,"height",n)}})}function gv(t){return!t||typeof t=="number"||typeof t=="object"?t:({rects:{floating:o,reference:r},placement:e})=>{const{position:n,alignment:a}=iv(e);return t({positionedRect:o,targetRect:r,position:n,alignment:a})}}function bv(t){const o=gv(t);return sl(o)}function yv(t){const{hasScrollableElement:o,disableTether:r,overflowBoundary:e,container:n,overflowBoundaryPadding:a,isRtl:i}=t;return ll({...o&&{boundary:"clippingAncestors"},...r&&{crossAxis:r==="all",limiter:ul({crossAxis:r!=="all",mainAxis:!1})},...a&&{padding:ev(a,i)},...e&&{altBoundary:!0,boundary:qn(n,e)}})}function _v(){return{name:"matchTargetSize",fn:async t=>{const{rects:{reference:o,floating:r},elements:{floating:e},middlewareData:{matchTargetSize:{matchTargetSizeAttempt:n=!1}={}}}=t;if(o.width===r.width||n)return{};const{width:a}=o;return e.style.width=`${a}px`,e.style.boxSizing="border-box",{data:{matchTargetSizeAttempt:!0},reset:{rects:!0}}}}}function Na(t){const o=[];let r=t;for(;r;){const e=Po(r);if(t.ownerDocument.body===e){o.push(e);break}o.push(e),r=e}return o}function xv(t){const{container:o,target:r,arrow:e,strategy:n,middleware:a,placement:i,useTransform:s=!0}=t;let u=!1;if(!r||!o)return{updatePosition:()=>{},dispose:()=>{}};let c=!0;const f=new Set,d=o.ownerDocument.defaultView;Object.assign(o.style,{position:"fixed",left:0,top:0,margin:0});const v=()=>{u||(c&&(Na(o).forEach(g=>f.add(g)),Co(r)&&Na(r).forEach(g=>f.add(g)),f.forEach(g=>{g.addEventListener("scroll",m,{passive:!0})}),c=!1),Object.assign(o.style,{position:n}),cl(r,o,{placement:i,middleware:a,strategy:n}).then(({x:g,y:h,middlewareData:x,placement:_})=>{u||(uv({arrow:e,middlewareData:x}),cv({container:o,middlewareData:x,placement:_,coordinates:{x:g,y:h},lowPPI:(d?.devicePixelRatio||1)<=1,strategy:n,useTransform:s}))}).catch(g=>{}))},m=lv(()=>v()),y=()=>{u=!0,d&&(d.removeEventListener("scroll",m),d.removeEventListener("resize",m)),f.forEach(g=>{g.removeEventListener("scroll",m)}),f.clear()};return d&&(d.addEventListener("scroll",m,{passive:!0}),d.addEventListener("resize",m)),m(),{updatePosition:m,dispose:y}}function Cv(t){const o=l.useRef(null),r=l.useRef(null),e=l.useRef(null),n=l.useRef(null),a=l.useRef(null),{enabled:i=!0}=t,s=kv(t),u=l.useCallback(()=>{o.current&&o.current.dispose(),o.current=null;var m;const y=(m=e.current)!==null&&m!==void 0?m:r.current;i&&Wn()&&y&&n.current&&(o.current=xv({container:n.current,target:y,arrow:a.current,...s(n.current,a.current)}))},[i,s]),c=jt(m=>{e.current=m,u()});l.useImperativeHandle(t.positioningRef,()=>({updatePosition:()=>{var m;return(m=o.current)===null||m===void 0?void 0:m.updatePosition()},setTarget:m=>{t.target,c(m)}}),[t.target,c]),Gr(()=>{var m;c((m=t.target)!==null&&m!==void 0?m:null)},[t.target,c]),Gr(()=>{u()},[u]);const f=mn(null,m=>{r.current!==m&&(r.current=m,u())}),d=mn(null,m=>{n.current!==m&&(n.current=m,u())}),v=mn(null,m=>{a.current!==m&&(a.current=m,u())});return{targetRef:f,containerRef:d,arrowRef:v}}function kv(t){const{align:o,arrowPadding:r,autoSize:e,coverTarget:n,flipBoundary:a,offset:i,overflowBoundary:s,pinned:u,position:c,unstable_disableTether:f,positionFixed:d,strategy:v,overflowBoundaryPadding:m,fallbackPositions:y,useTransform:g,matchTargetSize:h}=t,{dir:x,targetDocument:_}=No(),B=x==="rtl",C=v??d?"fixed":"absolute",k=dv(e);return l.useCallback((w,b)=>{const S=Jm(w),P=[k&&pv(k),h&&_v(),i&&bv(i),n&&fv(),!u&&mv({container:w,flipBoundary:a,hasScrollableElement:S,isRtl:B,fallbackPositions:y}),yv({container:w,hasScrollableElement:S,overflowBoundary:s,disableTether:f,overflowBoundaryPadding:m,isRtl:B}),k&&hv(k,{container:w,overflowBoundary:s}),vv(),b&&dl({element:b,padding:r}),$n({strategy:"referenceHidden"}),$n({strategy:"escaped"}),!1].filter(Boolean);return{placement:ls(o,c,B),middleware:P,strategy:C,useTransform:g}},[o,r,k,n,f,a,B,i,s,u,c,C,m,y,g,h,_])}function wv(t){return Co(t)?{element:t}:typeof t=="object"?t===null?{element:null}:t:{}}const Sv=sr({root:{qhf8xq:"f1euv43f",Bhzewxz:"f15twtuk",oyh7mz:["f1vgc2s3","f1e31b4d"],j35jbq:["f1e31b4d","f1vgc2s3"],Bj3rh1h:"f494woh"}},{d:[".f1euv43f{position:absolute;}",".f15twtuk{top:0;}",".f1vgc2s3{left:0;}",".f1e31b4d{right:0;}",".f494woh{z-index:1000000;}"]}),Pa=Ya["useInsertionEffect"],Bv=t=>{const{targetDocument:o,dir:r}=No(),e=Km(),n=Um(),a=Sv(),i=Hm(),s=go(i,a.root,t.className),u=e??o?.body,c=fl(()=>{if(u===void 0||t.disabled)return[null,()=>null];const f=u.ownerDocument.createElement("div");return u.appendChild(f),[f,()=>f.remove()]},[u]);return Pa?Pa(()=>{if(!c)return;const f=s.split(" ").filter(Boolean);return c.classList.add(...f),c.setAttribute("dir",r),n.current=c,()=>{c.classList.remove(...f),c.removeAttribute("dir")}},[s,r,c,n]):l.useMemo(()=>{c&&(c.className=s,c.setAttribute("dir",r),n.current=c)},[s,r,c,n]),c},Iv=t=>{const{element:o,className:r}=wv(t.mountNode),e=l.useRef(null),n=Bv({disabled:!!o,className:r}),a={children:t.children,mountNode:o??n,virtualParentRootRef:e};return l.useEffect(()=>(a.virtualParentRootRef.current&&a.mountNode&&Sa(a.mountNode,a.virtualParentRootRef.current),()=>{a.mountNode&&Sa(a.mountNode,void 0)}),[a.virtualParentRootRef,a.mountNode]),a},Ev=t=>l.createElement("span",{hidden:!0,ref:t.virtualParentRootRef},t.mountNode&&Aa.createPortal(t.children,t.mountNode)),cs=t=>{const o=Iv(t);return Ev(o)};cs.displayName="Portal";const Tv=6,Nv=4,Pv=t=>{var o,r,e,n;const a=jm(),i=Nm(),{targetDocument:s}=No(),[u,c]=Dm(),{appearance:f="normal",children:d,content:v,withArrow:m=!1,positioning:y="above",onVisibleChange:g,relationship:h,showDelay:x=250,hideDelay:_=250,mountNode:B}=t,[C,k]=Bm({state:t.visible,initialState:!1}),w=l.useCallback((R,F)=>{c(),k(O=>(F.visible!==O&&g?.(R,F),F.visible))},[c,k,g]),b={withArrow:m,positioning:y,showDelay:x,hideDelay:_,relationship:h,visible:C,shouldRenderTooltip:C,appearance:f,mountNode:B,components:{content:"div"},content:jn(v,{defaultProps:{role:"tooltip"},elementType:"div"})};b.content.id=Mm("tooltip-",b.content.id);const S={enabled:b.visible,arrowPadding:2*Nv,position:"above",align:"center",offset:4,...us(b.positioning)};b.withArrow&&(S.offset=Qm(S.offset,Tv));const{targetRef:P,containerRef:I,arrowRef:A}=Cv(S);b.content.ref=wa(b.content.ref,I),b.arrowRef=A,Gr(()=>{if(C){var R;const F={hide:j=>w(void 0,{visible:!1,documentKeyboardEvent:j})};(R=a.visibleTooltip)===null||R===void 0||R.hide(),a.visibleTooltip=F;const O=j=>{j.key===ml&&!j.defaultPrevented&&(F.hide(j),j.preventDefault())};return s?.addEventListener("keydown",O,{capture:!0}),()=>{a.visibleTooltip===F&&(a.visibleTooltip=void 0),s?.removeEventListener("keydown",O,{capture:!0})}}},[a,s,C,w]);const D=l.useRef(!1),W=l.useCallback(R=>{if(R.type==="focus"&&D.current){D.current=!1;return}const F=a.visibleTooltip?0:b.showDelay;u(()=>{w(R,{visible:!0})},F),R.persist()},[u,w,b.showDelay,a]),[M]=l.useState(()=>{const R=O=>{var j;!((j=O.details)===null||j===void 0)&&j.isFocusedProgrammatically&&(D.current=!0)};let F=null;return O=>{F?.removeEventListener(ho,R),O?.addEventListener(ho,R),F=O}}),E=l.useCallback(R=>{let F=b.hideDelay;R.type==="blur"&&(F=0,D.current=s?.activeElement===R.target),u(()=>{w(R,{visible:!1})},F),R.persist()},[u,w,b.hideDelay,s]);b.content.onPointerEnter=Ot(b.content.onPointerEnter,c),b.content.onPointerLeave=Ot(b.content.onPointerLeave,E),b.content.onFocus=Ot(b.content.onFocus,c),b.content.onBlur=Ot(b.content.onBlur,E);const N=Xi(d),H={};return h==="label"?typeof b.content.children=="string"?H["aria-label"]=b.content.children:(H["aria-labelledby"]=b.content.id,b.shouldRenderTooltip=!0):h==="description"&&(H["aria-describedby"]=b.content.id,b.shouldRenderTooltip=!0),i&&(b.shouldRenderTooltip=!1),b.children=Rm(d,{...H,...N?.props,ref:wa(N?.ref,M,S.target===void 0?P:void 0),onPointerEnter:jt(Ot(N==null||(o=N.props)===null||o===void 0?void 0:o.onPointerEnter,W)),onPointerLeave:jt(Ot(N==null||(r=N.props)===null||r===void 0?void 0:r.onPointerLeave,E)),onFocus:jt(Ot(N==null||(e=N.props)===null||e===void 0?void 0:e.onFocus,W)),onBlur:jt(Ot(N==null||(n=N.props)===null||n===void 0?void 0:n.onBlur,E))}),b},Mv=t=>wn(l.Fragment,{children:[t.children,t.shouldRenderTooltip&&ko(cs,{mountNode:t.mountNode,children:wn(t.content,{children:[t.withArrow&&ko("div",{ref:t.arrowRef,className:t.arrowClassName}),t.content.children]})})]}),Dv={content:"fui-Tooltip__content"},Rv=sr({root:{mc9l5x:"fjseox",B7ck84d:"f1ewtqcl",B2u0y6b:"f132xexn",Bceei9c:"f158kwzp",Bahqtrf:"fk6fouc",Be2twd7:"fy9rknc",Bg96gwp:"fwrc4pm",Btd35i7:"fokg9q4",Bbmb7ep:["f1aa9q02","f16jpd5f"],Beyfa6y:["f16jpd5f","f1aa9q02"],B7oj6ja:["f1jar5jt","fyu767a"],Btl43ni:["fyu767a","f1jar5jt"],B4j52fo:"f5ogflp",Bekrc4i:["f1hqa2wf","finvdd3"],Bn0qgzm:"f1f09k3d",ibv6hh:["finvdd3","f1hqa2wf"],icvyot:"fzkkow9",vrafjx:["fcdblym","fjik90z"],oivjwe:"fg706s2",wvpqe5:["fjik90z","fcdblym"],g2u3we:"fghlq4f",h3c5rm:["f1gn591s","fjscplz"],B9xav0g:"fb073pr",zhjwy3:["fjscplz","f1gn591s"],z8tnut:"f10ra9hq",z189sj:["fd9xhir","f1jlaasf"],Byoj8tv:"f1d7kygh",uwmqm3:["f1jlaasf","fd9xhir"],De3pzq:"fxugw4r",sj55zd:"f19n0e5",Bhu2qc9:"fxeb0a7"},visible:{mc9l5x:"ftgm304"},inverted:{De3pzq:"fg3r6xk",sj55zd:"fonrgv7"},arrow:{qhf8xq:"f1euv43f",De3pzq:"f1u2r49w",Bcdw1i0:"fd7fpy0",Bj3rh1h:"f1bsuimh",a9b677:"f1ekdpwm",Bqenvij:"f83vc9z",Ftih45:"f1wl9k8s",B1puzpu:"f1wkw4r9",Brfgrao:"f1j7ml58",Bcvre1j:"fyl8oag",Ccq8qp:"frdoeuz",Baz25je:"fb81m9q",cmx5o7:"f1ljr5q2",B4f6apu:"fyfemzf",m598lv:"focyt6c",Bk5zm6e:"fnhxbxj",y0oebl:"fdw6hkg",qa3bma:"f11yjt3y",Bqjgrrk:"f1172wan",Budzafs:["f9e5op9","f112wvtl"],Hv9wc6:["ftj5xct","fyavhwi"],hl6cv3:"f1773hnp",Bh2vraf:"f1n8855c",yayu3t:"f1v7783n",wedwtw:"fsw6im5",rhl9o9:"fh2hsk5",Bu8t5uz:"f159pzir",B6q6orb:"f11yvu4",Bwwlvwl:"fm1ycve"}},{d:[".fjseox{display:none;}",".f1ewtqcl{box-sizing:border-box;}",".f132xexn{max-width:240px;}",".f158kwzp{cursor:default;}",".fk6fouc{font-family:var(--fontFamilyBase);}",".fy9rknc{font-size:var(--fontSizeBase200);}",".fwrc4pm{line-height:var(--lineHeightBase200);}",".fokg9q4{overflow-wrap:break-word;}",".f1aa9q02{border-bottom-right-radius:var(--borderRadiusMedium);}",".f16jpd5f{border-bottom-left-radius:var(--borderRadiusMedium);}",".f1jar5jt{border-top-right-radius:var(--borderRadiusMedium);}",".fyu767a{border-top-left-radius:var(--borderRadiusMedium);}",".f5ogflp{border-top-width:1px;}",".f1hqa2wf{border-right-width:1px;}",".finvdd3{border-left-width:1px;}",".f1f09k3d{border-bottom-width:1px;}",".fzkkow9{border-top-style:solid;}",".fcdblym{border-right-style:solid;}",".fjik90z{border-left-style:solid;}",".fg706s2{border-bottom-style:solid;}",".fghlq4f{border-top-color:var(--colorTransparentStroke);}",".f1gn591s{border-right-color:var(--colorTransparentStroke);}",".fjscplz{border-left-color:var(--colorTransparentStroke);}",".fb073pr{border-bottom-color:var(--colorTransparentStroke);}",".f10ra9hq{padding-top:4px;}",".fd9xhir{padding-right:11px;}",".f1jlaasf{padding-left:11px;}",".f1d7kygh{padding-bottom:6px;}",".fxugw4r{background-color:var(--colorNeutralBackground1);}",".f19n0e5{color:var(--colorNeutralForeground1);}",".fxeb0a7{filter:drop-shadow(0 0 2px var(--colorNeutralShadowAmbient)) drop-shadow(0 4px 8px var(--colorNeutralShadowKey));}",".ftgm304{display:block;}",".fg3r6xk{background-color:var(--colorNeutralBackgroundStatic);}",".fonrgv7{color:var(--colorNeutralForegroundStaticInverted);}",".f1euv43f{position:absolute;}",".f1u2r49w{background-color:inherit;}",".fd7fpy0{visibility:hidden;}",".f1bsuimh{z-index:-1;}",".f1ekdpwm{width:8.484px;}",".f83vc9z{height:8.484px;}",'.f1wl9k8s::before{content:"";}',".f1wkw4r9::before{visibility:visible;}",".f1j7ml58::before{position:absolute;}",".fyl8oag::before{box-sizing:border-box;}",".frdoeuz::before{width:inherit;}",".fb81m9q::before{height:inherit;}",".f1ljr5q2::before{background-color:inherit;}",".fyfemzf::before{border-right-width:1px;}",".focyt6c::before{border-right-style:solid;}",".fnhxbxj::before{border-right-color:var(--colorTransparentStroke);}",".fdw6hkg::before{border-bottom-width:1px;}",".f11yjt3y::before{border-bottom-style:solid;}",".f1172wan::before{border-bottom-color:var(--colorTransparentStroke);}",".f9e5op9::before{border-bottom-right-radius:var(--borderRadiusSmall);}",".f112wvtl::before{border-bottom-left-radius:var(--borderRadiusSmall);}",".ftj5xct::before{transform:rotate(var(--angle)) translate(0, 50%) rotate(45deg);}",".fyavhwi::before{transform:rotate(var(--angle)) translate(0, 50%) rotate(-45deg);}",'[data-popper-placement^="top"] .f1773hnp{bottom:-1px;}','[data-popper-placement^="top"] .f1n8855c{--angle:0;}','[data-popper-placement^="right"] .f1v7783n{left:-1px;}','[data-popper-placement^="right"] .fsw6im5{--angle:90deg;}','[data-popper-placement^="bottom"] .fh2hsk5{top:-1px;}','[data-popper-placement^="bottom"] .f159pzir{--angle:180deg;}','[data-popper-placement^="left"] .f11yvu4{right:-1px;}','[data-popper-placement^="left"] .fm1ycve{--angle:270deg;}']}),Fv=t=>{const o=Rv();return t.content.className=go(Dv.content,o.root,t.appearance==="inverted"&&o.inverted,t.visible&&o.visible,t.content.className),t.arrowClassName=o.arrow,t},ds=t=>{const o=Pv(t);return Fv(o),ns("useTooltipStyles_unstable")(o),Mv(o)};ds.displayName="Tooltip";ds.isFluentTriggerComponent=!0;const Lv=t=>{const{iconOnly:o,iconPosition:r}=t;return wn(t.root,{children:[r!=="after"&&t.icon&&ko(t.icon,{}),!o&&t.root.children,r==="after"&&t.icon&&ko(t.icon,{})]})},fs=l.createContext(void 0),Av={};fs.Provider;const Ov=()=>{var t;return(t=l.useContext(fs))!==null&&t!==void 0?t:Av},Hv=(t,o)=>{const{size:r}=Ov(),{appearance:e="secondary",as:n="button",disabled:a=!1,disabledFocusable:i=!1,icon:s,iconPosition:u="before",shape:c="rounded",size:f=r??"medium"}=t,d=Ki(s,{elementType:"span"});return{appearance:e,disabled:a,disabledFocusable:i,iconPosition:u,shape:c,size:f,iconOnly:!!(d?.children&&!t.children),components:{root:"button",icon:"span"},root:jn(km(n,$m(t,{required:!0,defaultProps:{ref:o,type:"button"}})),{elementType:"button"}),icon:d}},Ma={root:"fui-Button",icon:"fui-Button__icon"},zv=Xa("r1alrhcs",null,{r:[".r1alrhcs{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;text-decoration-line:none;vertical-align:middle;margin:0;overflow:hidden;background-color:var(--colorNeutralBackground1);color:var(--colorNeutralForeground1);border:var(--strokeWidthThin) solid var(--colorNeutralStroke1);font-family:var(--fontFamilyBase);outline-style:none;padding:5px var(--spacingHorizontalM);min-width:96px;border-radius:var(--borderRadiusMedium);font-size:var(--fontSizeBase300);font-weight:var(--fontWeightSemibold);line-height:var(--lineHeightBase300);transition-duration:var(--durationFaster);transition-property:background,border,color;transition-timing-function:var(--curveEasyEase);}",".r1alrhcs:hover{background-color:var(--colorNeutralBackground1Hover);border-color:var(--colorNeutralStroke1Hover);color:var(--colorNeutralForeground1Hover);cursor:pointer;}",".r1alrhcs:hover:active{background-color:var(--colorNeutralBackground1Pressed);border-color:var(--colorNeutralStroke1Pressed);color:var(--colorNeutralForeground1Pressed);outline-style:none;}",".r1alrhcs[data-fui-focus-visible]{border-color:var(--colorStrokeFocus2);border-radius:var(--borderRadiusMedium);border-width:1px;outline:var(--strokeWidthThick) solid var(--colorTransparentStroke);box-shadow:0 0 0 var(--strokeWidthThin) var(--colorStrokeFocus2) inset;z-index:1;}"],s:["@media screen and (prefers-reduced-motion: reduce){.r1alrhcs{transition-duration:0.01ms;}}","@media (forced-colors: active){.r1alrhcs:focus{border-color:ButtonText;}.r1alrhcs:hover{background-color:HighlightText;border-color:Highlight;color:Highlight;forced-color-adjust:none;}.r1alrhcs:hover:active{background-color:HighlightText;border-color:Highlight;color:Highlight;forced-color-adjust:none;}}","@supports (-moz-appearance:button){.r1alrhcs[data-fui-focus-visible]{box-shadow:0 0 0 calc(var(--strokeWidthThin) + 0.25px) var(--colorStrokeFocus2) inset;}}"]}),jv=Xa("rywnvv2",null,[".rywnvv2{align-items:center;display:inline-flex;justify-content:center;font-size:20px;height:20px;width:20px;--fui-Button__icon--spacing:var(--spacingHorizontalSNudge);}"]),Wv=sr({outline:{De3pzq:"f1c21dwh",Jwef8y:"fjxutwb",iro3zm:"fwiml72"},primary:{De3pzq:"ffp7eso",g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],sj55zd:"f1phragk",Jwef8y:"f15wkkf3",Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],Bi91k9c:"f1rq72xc",iro3zm:"fnp9lpt",b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"],B2d53fq:"f1d6v5y2",Bsw6fvg:"f1rirnrt",Bjwas2f:"f1uu00uk",Bn1d65q:["fkvaka8","f9a0qzu"],Bxeuatn:"f1ux7til",n51gp8:["f9a0qzu","fkvaka8"],Bbusuzp:"f1lkg8j3",ycbfsm:"fkc42ay",Bqrx1nm:"fq7113v",pgvf35:"ff1wgvm",Bh7lczh:["fiob0tu","f1x4h75k"],dpv3f4:"f1j6scgf",Bpnjhaq:["f1x4h75k","fiob0tu"],ze5xyy:"f4xjyn1",g2kj27:"fbgcvur",Bf756sw:"f1ks1yx8",Bow2dr7:["f1o6qegi","fmxjhhp"],Bvhedfk:"fcnxywj",Gye4lf:["fmxjhhp","f1o6qegi"],pc6evw:"f9ddjv3"},secondary:{},subtle:{De3pzq:"fhovq9v",g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],sj55zd:"fkfq4zb",Jwef8y:"f1t94bn6",Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],Bi91k9c:"fnwyq0v",Bk3fhr4:"ft1hn21",Bmfj8id:"fuxngvv",Bbdnnc7:"fy5bs14",iro3zm:"fsv2rcd",b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"],B2d53fq:"f1omzyqd",em6i61:"f1dfjoow",vm6p8p:"f1j98vj9",x3br3k:"fj8yq94",ze5xyy:"f4xjyn1",Bx3q9su:"f1et0tmh",pc6evw:"f9ddjv3",xd2cci:"f1wi8ngl"},transparent:{De3pzq:"f1c21dwh",g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],sj55zd:"fkfq4zb",Jwef8y:"fjxutwb",Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],Bi91k9c:"f139oj5f",Bk3fhr4:"ft1hn21",Bmfj8id:"fuxngvv",iro3zm:"fwiml72",b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"],B2d53fq:"f1fg1p5m",em6i61:"f1dfjoow",vm6p8p:"f1j98vj9",Bqrx1nm:"f1tme0vf",ze5xyy:"f4xjyn1",g2kj27:"f18onu3q",pc6evw:"f9ddjv3"},circular:{Bbmb7ep:["f8fbkgy","f1nfllo7"],Beyfa6y:["f1nfllo7","f8fbkgy"],B7oj6ja:["f1djnp8u","f1s8kh49"],Btl43ni:["f1s8kh49","f1djnp8u"]},rounded:{},square:{Bbmb7ep:["fzi6hpg","fyowgf4"],Beyfa6y:["fyowgf4","fzi6hpg"],B7oj6ja:["f3fg2lr","f13av6d4"],Btl43ni:["f13av6d4","f3fg2lr"]},small:{Bf4jedk:"fh7ncta",z8tnut:"f1khb0e9",z189sj:["f1vdfbxk","f1f5gg8d"],Byoj8tv:"f1jnq6q7",uwmqm3:["f1f5gg8d","f1vdfbxk"],Bbmb7ep:["f1aa9q02","f16jpd5f"],Beyfa6y:["f16jpd5f","f1aa9q02"],B7oj6ja:["f1jar5jt","fyu767a"],Btl43ni:["fyu767a","f1jar5jt"],Be2twd7:"fy9rknc",Bhrd7zp:"figsok6",Bg96gwp:"fwrc4pm"},smallWithIcon:{Byoj8tv:"f1brlhvm",z8tnut:"f1sl3k7w"},medium:{},large:{Bf4jedk:"f14es27b",z8tnut:"fp9bwmr",z189sj:["fjodcmx","fhx4nu"],Byoj8tv:"f150uoa4",uwmqm3:["fhx4nu","fjodcmx"],Bbmb7ep:["f1aa9q02","f16jpd5f"],Beyfa6y:["f16jpd5f","f1aa9q02"],B7oj6ja:["f1jar5jt","fyu767a"],Btl43ni:["fyu767a","f1jar5jt"],Be2twd7:"fod5ikn",Bhrd7zp:"fl43uef",Bg96gwp:"faaz57k"},largeWithIcon:{Byoj8tv:"fy7v416",z8tnut:"f1a1bwwz"}},{d:[".f1c21dwh{background-color:var(--colorTransparentBackground);}",".ffp7eso{background-color:var(--colorBrandBackground);}",".f1p3nwhy{border-top-color:transparent;}",".f11589ue{border-right-color:transparent;}",".f1pdflbu{border-left-color:transparent;}",".f1q5o8ev{border-bottom-color:transparent;}",".f1phragk{color:var(--colorNeutralForegroundOnBrand);}",".fhovq9v{background-color:var(--colorSubtleBackground);}",".fkfq4zb{color:var(--colorNeutralForeground2);}",".f8fbkgy{border-bottom-right-radius:var(--borderRadiusCircular);}",".f1nfllo7{border-bottom-left-radius:var(--borderRadiusCircular);}",".f1djnp8u{border-top-right-radius:var(--borderRadiusCircular);}",".f1s8kh49{border-top-left-radius:var(--borderRadiusCircular);}",".fzi6hpg{border-bottom-right-radius:var(--borderRadiusNone);}",".fyowgf4{border-bottom-left-radius:var(--borderRadiusNone);}",".f3fg2lr{border-top-right-radius:var(--borderRadiusNone);}",".f13av6d4{border-top-left-radius:var(--borderRadiusNone);}",".fh7ncta{min-width:64px;}",".f1khb0e9{padding-top:3px;}",".f1vdfbxk{padding-right:var(--spacingHorizontalS);}",".f1f5gg8d{padding-left:var(--spacingHorizontalS);}",".f1jnq6q7{padding-bottom:3px;}",".f1aa9q02{border-bottom-right-radius:var(--borderRadiusMedium);}",".f16jpd5f{border-bottom-left-radius:var(--borderRadiusMedium);}",".f1jar5jt{border-top-right-radius:var(--borderRadiusMedium);}",".fyu767a{border-top-left-radius:var(--borderRadiusMedium);}",".fy9rknc{font-size:var(--fontSizeBase200);}",".figsok6{font-weight:var(--fontWeightRegular);}",".fwrc4pm{line-height:var(--lineHeightBase200);}",".f1brlhvm{padding-bottom:1px;}",".f1sl3k7w{padding-top:1px;}",".f14es27b{min-width:96px;}",".fp9bwmr{padding-top:8px;}",".fjodcmx{padding-right:var(--spacingHorizontalL);}",".fhx4nu{padding-left:var(--spacingHorizontalL);}",".f150uoa4{padding-bottom:8px;}",".fod5ikn{font-size:var(--fontSizeBase400);}",".fl43uef{font-weight:var(--fontWeightSemibold);}",".faaz57k{line-height:var(--lineHeightBase400);}",".fy7v416{padding-bottom:7px;}",".f1a1bwwz{padding-top:7px;}"],h:[".fjxutwb:hover{background-color:var(--colorTransparentBackgroundHover);}",".fwiml72:hover:active{background-color:var(--colorTransparentBackgroundPressed);}",".f15wkkf3:hover{background-color:var(--colorBrandBackgroundHover);}",".f1s2uweq:hover{border-top-color:transparent;}",".fr80ssc:hover{border-right-color:transparent;}",".fecsdlb:hover{border-left-color:transparent;}",".f1ukrpxl:hover{border-bottom-color:transparent;}",".f1rq72xc:hover{color:var(--colorNeutralForegroundOnBrand);}",".fnp9lpt:hover:active{background-color:var(--colorBrandBackgroundPressed);}",".f1h0usnq:hover:active{border-top-color:transparent;}",".fs4ktlq:hover:active{border-right-color:transparent;}",".fx2bmrt:hover:active{border-left-color:transparent;}",".f16h9ulv:hover:active{border-bottom-color:transparent;}",".f1d6v5y2:hover:active{color:var(--colorNeutralForegroundOnBrand);}",".f1t94bn6:hover{background-color:var(--colorSubtleBackgroundHover);}",".fnwyq0v:hover{color:var(--colorNeutralForeground2Hover);}",".ft1hn21:hover .fui-Icon-filled{display:inline;}",".fuxngvv:hover .fui-Icon-regular{display:none;}",".fy5bs14:hover .fui-Button__icon{color:var(--colorNeutralForeground2BrandHover);}",".fsv2rcd:hover:active{background-color:var(--colorSubtleBackgroundPressed);}",".f1omzyqd:hover:active{color:var(--colorNeutralForeground2Pressed);}",".f1dfjoow:hover:active .fui-Icon-filled{display:inline;}",".f1j98vj9:hover:active .fui-Icon-regular{display:none;}",".fj8yq94:hover:active .fui-Button__icon{color:var(--colorNeutralForeground2BrandPressed);}",".f139oj5f:hover{color:var(--colorNeutralForeground2BrandHover);}",".f1fg1p5m:hover:active{color:var(--colorNeutralForeground2BrandPressed);}"],m:[["@media (forced-colors: active){.f1rirnrt{background-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1uu00uk{border-top-color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f9a0qzu{border-left-color:HighlightText;}.fkvaka8{border-right-color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1ux7til{border-bottom-color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1lkg8j3{color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fkc42ay{forced-color-adjust:none;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fq7113v:hover{background-color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.ff1wgvm:hover{border-top-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1x4h75k:hover{border-left-color:Highlight;}.fiob0tu:hover{border-right-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1j6scgf:hover{border-bottom-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f4xjyn1:hover{color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fbgcvur:hover:active{background-color:HighlightText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1ks1yx8:hover:active{border-top-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1o6qegi:hover:active{border-right-color:Highlight;}.fmxjhhp:hover:active{border-left-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fcnxywj:hover:active{border-bottom-color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f9ddjv3:hover:active{color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1et0tmh:hover .fui-Button__icon{color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1wi8ngl:hover:active .fui-Button__icon{color:Highlight;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1tme0vf:hover{background-color:var(--colorTransparentBackground);}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f18onu3q:hover:active{background-color:var(--colorTransparentBackground);}}",{m:"(forced-colors: active)"}]]}),qv=sr({base:{De3pzq:"f1bg9a2p",g2u3we:"f1jj8ep1",h3c5rm:["f15xbau","fy0fskl"],B9xav0g:"f4ikngz",zhjwy3:["fy0fskl","f15xbau"],sj55zd:"f1s2aq7o",Bceei9c:"fdrzuqr",Bfinmwp:"f15x8b5r",Jwef8y:"f1falr9n",Bgoe8wy:"f12mpcsy",Bwzppfd:["f1gwvigk","f18rmfxp"],oetu4i:"f1jnshp0",gg5e9n:["f18rmfxp","f1gwvigk"],Bi91k9c:"fvgxktp",eoavqd:"fphbwmw",Bk3fhr4:"f19vpps7",Bmfj8id:"fv5swzo",Bbdnnc7:"f1al02dq",iro3zm:"f1t6o4dc",b661bw:"f10ztigi",Bk6r4ia:["f1ft5sdu","f1gzf82w"],B9zn80p:"f12zbtn2",Bpld233:["f1gzf82w","f1ft5sdu"],B2d53fq:"fcvwxyo",c3iz72:"f8w4c43",em6i61:"f1ol4fw6",vm6p8p:"f1q1lw4e",x3br3k:"f1dwjv2g"},highContrast:{Bsw6fvg:"f4lkoma",Bjwas2f:"fg455y9",Bn1d65q:["f1rvyvqg","f14g86mu"],Bxeuatn:"f1cwzwz",n51gp8:["f14g86mu","f1rvyvqg"],Bbusuzp:"f1dcs8yz",G867l3:"fjwq6ea",gdbnj:["f1lr3nhc","f1mbxvi6"],mxns5l:"fn5gmvv",o3nasb:["f1mbxvi6","f1lr3nhc"],Bqrx1nm:"f1vmkb5g",pgvf35:"f53ppgq",Bh7lczh:["f1663y11","f80fkiy"],dpv3f4:"f18v5270",Bpnjhaq:["f80fkiy","f1663y11"],ze5xyy:"f1kc2mi9",g2kj27:"f1y0svfh",Bf756sw:"fihuait",Bow2dr7:["fnxhupq","fyd6l6x"],Bvhedfk:"fx507ft",Gye4lf:["fyd6l6x","fnxhupq"],pc6evw:"fb3rf2x"},outline:{De3pzq:"f1c21dwh",Jwef8y:"f9ql6rf",iro3zm:"f3h1zc4"},primary:{g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"]},secondary:{},subtle:{De3pzq:"f1c21dwh",g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],Jwef8y:"f9ql6rf",Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],iro3zm:"f3h1zc4",b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"]},transparent:{De3pzq:"f1c21dwh",g2u3we:"f1p3nwhy",h3c5rm:["f11589ue","f1pdflbu"],B9xav0g:"f1q5o8ev",zhjwy3:["f1pdflbu","f11589ue"],Jwef8y:"f9ql6rf",Bgoe8wy:"f1s2uweq",Bwzppfd:["fr80ssc","fecsdlb"],oetu4i:"f1ukrpxl",gg5e9n:["fecsdlb","fr80ssc"],iro3zm:"f3h1zc4",b661bw:"f1h0usnq",Bk6r4ia:["fs4ktlq","fx2bmrt"],B9zn80p:"f16h9ulv",Bpld233:["fx2bmrt","fs4ktlq"]}},{d:[".f1bg9a2p{background-color:var(--colorNeutralBackgroundDisabled);}",".f1jj8ep1{border-top-color:var(--colorNeutralStrokeDisabled);}",".f15xbau{border-right-color:var(--colorNeutralStrokeDisabled);}",".fy0fskl{border-left-color:var(--colorNeutralStrokeDisabled);}",".f4ikngz{border-bottom-color:var(--colorNeutralStrokeDisabled);}",".f1s2aq7o{color:var(--colorNeutralForegroundDisabled);}",".fdrzuqr{cursor:not-allowed;}",".f15x8b5r .fui-Button__icon{color:var(--colorNeutralForegroundDisabled);}",".f1c21dwh{background-color:var(--colorTransparentBackground);}",".f1p3nwhy{border-top-color:transparent;}",".f11589ue{border-right-color:transparent;}",".f1pdflbu{border-left-color:transparent;}",".f1q5o8ev{border-bottom-color:transparent;}"],h:[".f1falr9n:hover{background-color:var(--colorNeutralBackgroundDisabled);}",".f12mpcsy:hover{border-top-color:var(--colorNeutralStrokeDisabled);}",".f1gwvigk:hover{border-right-color:var(--colorNeutralStrokeDisabled);}",".f18rmfxp:hover{border-left-color:var(--colorNeutralStrokeDisabled);}",".f1jnshp0:hover{border-bottom-color:var(--colorNeutralStrokeDisabled);}",".fvgxktp:hover{color:var(--colorNeutralForegroundDisabled);}",".fphbwmw:hover{cursor:not-allowed;}",".f19vpps7:hover .fui-Icon-filled{display:none;}",".fv5swzo:hover .fui-Icon-regular{display:inline;}",".f1al02dq:hover .fui-Button__icon{color:var(--colorNeutralForegroundDisabled);}",".f1t6o4dc:hover:active{background-color:var(--colorNeutralBackgroundDisabled);}",".f10ztigi:hover:active{border-top-color:var(--colorNeutralStrokeDisabled);}",".f1ft5sdu:hover:active{border-right-color:var(--colorNeutralStrokeDisabled);}",".f1gzf82w:hover:active{border-left-color:var(--colorNeutralStrokeDisabled);}",".f12zbtn2:hover:active{border-bottom-color:var(--colorNeutralStrokeDisabled);}",".fcvwxyo:hover:active{color:var(--colorNeutralForegroundDisabled);}",".f8w4c43:hover:active{cursor:not-allowed;}",".f1ol4fw6:hover:active .fui-Icon-filled{display:none;}",".f1q1lw4e:hover:active .fui-Icon-regular{display:inline;}",".f1dwjv2g:hover:active .fui-Button__icon{color:var(--colorNeutralForegroundDisabled);}",".f9ql6rf:hover{background-color:var(--colorTransparentBackground);}",".f3h1zc4:hover:active{background-color:var(--colorTransparentBackground);}",".f1s2uweq:hover{border-top-color:transparent;}",".fr80ssc:hover{border-right-color:transparent;}",".fecsdlb:hover{border-left-color:transparent;}",".f1ukrpxl:hover{border-bottom-color:transparent;}",".f1h0usnq:hover:active{border-top-color:transparent;}",".fs4ktlq:hover:active{border-right-color:transparent;}",".fx2bmrt:hover:active{border-left-color:transparent;}",".f16h9ulv:hover:active{border-bottom-color:transparent;}"],m:[["@media (forced-colors: active){.f4lkoma{background-color:ButtonFace;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fg455y9{border-top-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f14g86mu{border-left-color:GrayText;}.f1rvyvqg{border-right-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1cwzwz{border-bottom-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1dcs8yz{color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fjwq6ea:focus{border-top-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1lr3nhc:focus{border-right-color:GrayText;}.f1mbxvi6:focus{border-left-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fn5gmvv:focus{border-bottom-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1vmkb5g:hover{background-color:ButtonFace;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f53ppgq:hover{border-top-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1663y11:hover{border-right-color:GrayText;}.f80fkiy:hover{border-left-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f18v5270:hover{border-bottom-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1kc2mi9:hover{color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.f1y0svfh:hover:active{background-color:ButtonFace;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fihuait:hover:active{border-top-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fnxhupq:hover:active{border-right-color:GrayText;}.fyd6l6x:hover:active{border-left-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fx507ft:hover:active{border-bottom-color:GrayText;}}",{m:"(forced-colors: active)"}],["@media (forced-colors: active){.fb3rf2x:hover:active{color:GrayText;}}",{m:"(forced-colors: active)"}]]}),Kv=sr({circular:{kdpuga:["fanj13w","f1gou5sz"],Bw81rd7:["f1gou5sz","fanj13w"],B6xbmo0:["fulf6x3","foeb2x"],dm238s:["foeb2x","fulf6x3"]},rounded:{},square:{kdpuga:["f1ndz5i7","f1co4qro"],Bw81rd7:["f1co4qro","f1ndz5i7"],B6xbmo0:["f146y5a9","f1k2ftg"],dm238s:["f1k2ftg","f146y5a9"]},primary:{B8q5s1w:"f17t0x8g",Bci5o5g:["f194v5ow","fk7jm04"],n8qw10:"f1qgg65p",Bdrgwmp:["fk7jm04","f194v5ow"],j6ew2k:["fhgccpy","fjo7pq6"],he4mth:"f32wu9k",Byr4aka:"fu5nqqq",lks7q5:["f13prjl2","f1nl83rv"],Bnan3qt:"f1czftr5",k1dn9:["f1nl83rv","f13prjl2"],Boium3a:["f12k37oa","fdnykm2"],tm8e47:"fr96u23"},small:{kdpuga:["fg3gtdo","fwii5mg"],Bw81rd7:["fwii5mg","fg3gtdo"],B6xbmo0:["f1palphq","f12nxie7"],dm238s:["f12nxie7","f1palphq"]},medium:{},large:{kdpuga:["ft3lys4","f1la4x2g"],Bw81rd7:["f1la4x2g","ft3lys4"],B6xbmo0:["f156y0zm","fakimq4"],dm238s:["fakimq4","f156y0zm"]}},{d:[".fanj13w[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusCircular);}",".f1gou5sz[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusCircular);}",".fulf6x3[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusCircular);}",".foeb2x[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusCircular);}",".f1ndz5i7[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusNone);}",".f1co4qro[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusNone);}",".f146y5a9[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusNone);}",".f1k2ftg[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusNone);}",".f17t0x8g[data-fui-focus-visible]{border-top-color:var(--colorStrokeFocus2);}",".f194v5ow[data-fui-focus-visible]{border-right-color:var(--colorStrokeFocus2);}",".fk7jm04[data-fui-focus-visible]{border-left-color:var(--colorStrokeFocus2);}",".f1qgg65p[data-fui-focus-visible]{border-bottom-color:var(--colorStrokeFocus2);}",".fhgccpy[data-fui-focus-visible]{box-shadow:var(--shadow2),0 0 0 var(--strokeWidthThin) var(--colorStrokeFocus2) inset,0 0 0 var(--strokeWidthThick) var(--colorNeutralForegroundOnBrand) inset;}",".fjo7pq6[data-fui-focus-visible]{box-shadow:var(--shadow2),0 0 0 var(--strokeWidthThin) var(--colorStrokeFocus2) inset,0 0 0 var(--strokeWidthThick) var(--colorNeutralForegroundOnBrand) inset;}",".f32wu9k[data-fui-focus-visible]:hover{box-shadow:var(--shadow2),0 0 0 var(--strokeWidthThin) var(--colorStrokeFocus2) inset;}",".fu5nqqq[data-fui-focus-visible]:hover{border-top-color:var(--colorStrokeFocus2);}",".f13prjl2[data-fui-focus-visible]:hover{border-right-color:var(--colorStrokeFocus2);}",".f1nl83rv[data-fui-focus-visible]:hover{border-left-color:var(--colorStrokeFocus2);}",".f1czftr5[data-fui-focus-visible]:hover{border-bottom-color:var(--colorStrokeFocus2);}",".fg3gtdo[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusSmall);}",".fwii5mg[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusSmall);}",".f1palphq[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusSmall);}",".f12nxie7[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusSmall);}",".ft3lys4[data-fui-focus-visible]{border-bottom-right-radius:var(--borderRadiusLarge);}",".f1la4x2g[data-fui-focus-visible]{border-bottom-left-radius:var(--borderRadiusLarge);}",".f156y0zm[data-fui-focus-visible]{border-top-right-radius:var(--borderRadiusLarge);}",".fakimq4[data-fui-focus-visible]{border-top-left-radius:var(--borderRadiusLarge);}"],t:["@supports (-moz-appearance:button){.f12k37oa[data-fui-focus-visible]{box-shadow:var(--shadow2),0 0 0 calc(var(--strokeWidthThin) + 0.25px) var(--colorStrokeFocus2) inset,0 0 0 var(--strokeWidthThick) var(--colorNeutralForegroundOnBrand) inset;}.fdnykm2[data-fui-focus-visible]{box-shadow:var(--shadow2),0 0 0 calc(var(--strokeWidthThin) + 0.25px) var(--colorStrokeFocus2) inset,0 0 0 var(--strokeWidthThick) var(--colorNeutralForegroundOnBrand) inset;}}","@supports (-moz-appearance:button){.fr96u23[data-fui-focus-visible]:hover{box-shadow:var(--shadow2),0 0 0 calc(var(--strokeWidthThin) + 0.25px) var(--colorStrokeFocus2) inset;}}"]}),Vv=sr({small:{z8tnut:"f1sl3k7w",z189sj:["f136y8j8","f10xn8zz"],Byoj8tv:"f1brlhvm",uwmqm3:["f10xn8zz","f136y8j8"],Bf4jedk:"f17fgpbq",B2u0y6b:"f1jt17bm"},medium:{z8tnut:"f1sbtcvk",z189sj:["fwiuce9","f15vdbe4"],Byoj8tv:"fdghr9",uwmqm3:["f15vdbe4","fwiuce9"],Bf4jedk:"fwbmr0d",B2u0y6b:"f44c6la"},large:{z8tnut:"f1a1bwwz",z189sj:["f18k1jr3","f1rtp3s9"],Byoj8tv:"fy7v416",uwmqm3:["f1rtp3s9","f18k1jr3"],Bf4jedk:"f12clzc2",B2u0y6b:"fjy1crr"}},{d:[".f1sl3k7w{padding-top:1px;}",".f136y8j8{padding-right:1px;}",".f10xn8zz{padding-left:1px;}",".f1brlhvm{padding-bottom:1px;}",".f17fgpbq{min-width:24px;}",".f1jt17bm{max-width:24px;}",".f1sbtcvk{padding-top:5px;}",".fwiuce9{padding-right:5px;}",".f15vdbe4{padding-left:5px;}",".fdghr9{padding-bottom:5px;}",".fwbmr0d{min-width:32px;}",".f44c6la{max-width:32px;}",".f1a1bwwz{padding-top:7px;}",".f18k1jr3{padding-right:7px;}",".f1rtp3s9{padding-left:7px;}",".fy7v416{padding-bottom:7px;}",".f12clzc2{min-width:40px;}",".fjy1crr{max-width:40px;}"]}),Uv=sr({small:{Be2twd7:"fe5j1ua",Bqenvij:"fjamq6b",a9b677:"f64fuq3",Bqrlyyl:"fbaiahx"},medium:{},large:{Be2twd7:"f1rt2boy",Bqenvij:"frvgh55",a9b677:"fq4mcun",Bqrlyyl:"f1exjqw5"},before:{t21cq0:["f1nizpg2","f1a695kz"]},after:{Frg6f3:["f1a695kz","f1nizpg2"]}},{d:[".fe5j1ua{font-size:20px;}",".fjamq6b{height:20px;}",".f64fuq3{width:20px;}",".fbaiahx{--fui-Button__icon--spacing:var(--spacingHorizontalXS);}",".f1rt2boy{font-size:24px;}",".frvgh55{height:24px;}",".fq4mcun{width:24px;}",".f1exjqw5{--fui-Button__icon--spacing:var(--spacingHorizontalSNudge);}",".f1nizpg2{margin-right:var(--fui-Button__icon--spacing);}",".f1a695kz{margin-left:var(--fui-Button__icon--spacing);}"]}),Gv=t=>{const o=zv(),r=jv(),e=Wv(),n=qv(),a=Kv(),i=Vv(),s=Uv(),{appearance:u,disabled:c,disabledFocusable:f,icon:d,iconOnly:v,iconPosition:m,shape:y,size:g}=t;return t.root.className=go(Ma.root,o,u&&e[u],e[g],d&&g==="small"&&e.smallWithIcon,d&&g==="large"&&e.largeWithIcon,e[y],(c||f)&&n.base,(c||f)&&n.highContrast,u&&(c||f)&&n[u],u==="primary"&&a.primary,a[g],a[y],v&&i[g],t.root.className),t.icon&&(t.icon.className=go(Ma.icon,r,!!t.root.children&&s[m],s[g],t.icon.className)),t},$v=l.forwardRef((t,o)=>{const r=Hv(t,o);return Gv(r),ns("useButtonStyles_unstable")(r),Lv(r)});$v.displayName="Button";export{$v as B,pd as C,rf as D,Ur as I,Yv as L,ep as M,Xv as P,np as S,Jv as T,ds as a,Qv as b,St as c,G as d,tp as e,gf as f,Gd as g,ad as h,op as i,rp as j}; +//# sourceMappingURL=fluentui-react-ad752538.js.map diff --git a/src/static/assets/fluentui-react-ad752538.js.map b/src/static/assets/fluentui-react-ad752538.js.map new file mode 100644 index 00000000..4ce4ab85 --- /dev/null +++ b/src/static/assets/fluentui-react-ad752538.js.map @@ -0,0 +1 @@ +{"version":3,"file":"fluentui-react-ad752538.js","sources":["../../frontend/node_modules/@fluentui/react/lib/common/DirectionalHint.js","../../frontend/node_modules/@fluentui/react/lib/utilities/positioning/positioning.types.js","../../frontend/node_modules/@fluentui/react/lib/utilities/positioning/positioning.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useAsync.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useConst.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useBoolean.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useControllableValue.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useEventCallback.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useId.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useMergedRefs.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useOnEvent.js","../../frontend/node_modules/@fluentui/react-hooks/lib/usePrevious.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useRefEffect.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useSetTimeout.js","../../frontend/node_modules/@fluentui/react-window-provider/lib/WindowProvider.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useTarget.js","../../frontend/node_modules/@fluentui/react-hooks/lib/useUnmount.js","../../frontend/node_modules/@fluentui/react/lib/components/Popup/Popup.js","../../frontend/node_modules/@fluentui/react/lib/components/Callout/CalloutContent.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Callout/CalloutContent.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Callout/CalloutContent.js","../../frontend/node_modules/@fluentui/react-portal-compat-context/lib/PortalCompatContext.js","../../frontend/node_modules/@fluentui/react/lib/components/Fabric/Fabric.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Fabric/Fabric.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Fabric/Fabric.js","../../frontend/node_modules/@fluentui/react/lib/components/Layer/Layer.notification.js","../../frontend/node_modules/@fluentui/react/lib/components/Layer/Layer.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Layer/Layer.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Layer/Layer.js","../../frontend/node_modules/@fluentui/react/lib/components/Callout/Callout.js","../../frontend/node_modules/@fluentui/react/lib/components/FocusTrapZone/FocusTrapZone.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/Icon.types.js","../../frontend/node_modules/@fluentui/react/lib/components/Image/Image.types.js","../../frontend/node_modules/@fluentui/react/lib/components/Image/Image.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Image/Image.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Image/Image.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/Icon.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/FontIcon.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/Icon.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/Icon.js","../../frontend/node_modules/@fluentui/react/lib/components/Icon/ImageIcon.js","../../frontend/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.types.js","../../frontend/node_modules/@fluentui/react-focus/lib/components/FocusZone/FocusZone.js","../../frontend/node_modules/@fluentui/react/lib/components/Link/useLink.js","../../frontend/node_modules/@fluentui/react/lib/components/Link/Link.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Link/Link.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Link/Link.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.types.js","../../frontend/node_modules/@fluentui/react/lib/utilities/contextualMenu/contextualMenuUtility.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItem.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Divider/VerticalDivider.classNames.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.cnstyles.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.classNames.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItem.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.js","../../frontend/node_modules/@fluentui/react/lib/utilities/keytips/KeytipConstants.js","../../frontend/node_modules/@fluentui/react/lib/utilities/keytips/KeytipManager.js","../../frontend/node_modules/@fluentui/react/lib/utilities/keytips/KeytipUtils.js","../../frontend/node_modules/@fluentui/react/lib/components/KeytipData/useKeytipData.js","../../frontend/node_modules/@fluentui/react/lib/components/KeytipData/KeytipData.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Divider/VerticalDivider.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Divider/VerticalDivider.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Divider/VerticalDivider.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.js","../../frontend/node_modules/@fluentui/react/lib/utilities/decorators/withResponsiveMode.js","../../frontend/node_modules/@fluentui/react/lib/utilities/hooks/useResponsiveMode.js","../../frontend/node_modules/@fluentui/react/lib/utilities/MenuContext/MenuContext.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.base.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/ContextualMenu/ContextualMenu.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/BaseButton.classNames.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/SplitButton/SplitButton.classNames.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/BaseButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/BaseButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/SplitButton/SplitButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/ButtonThemes.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/DefaultButton/DefaultButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/DefaultButton/DefaultButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/ActionButton/ActionButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/ActionButton/ActionButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/IconButton/IconButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/IconButton/IconButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/PrimaryButton/PrimaryButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Button/CommandButton/CommandButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Checkbox/Checkbox.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Checkbox/Checkbox.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Checkbox/Checkbox.js","../../frontend/node_modules/@fluentui/react/lib/components/Label/Label.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Label/Label.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Label/Label.js","../../frontend/node_modules/@fluentui/react/lib/components/TextField/TextField.base.js","../../frontend/node_modules/@fluentui/react/lib/components/TextField/TextField.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/TextField/TextField.js","../../frontend/node_modules/@fluentui/react/lib/utilities/selectableOption/SelectableOption.js","../../frontend/node_modules/@fluentui/react/lib/utilities/selectableOption/SelectableOption.types.js","../../frontend/node_modules/@fluentui/react/lib/components/Spinner/Spinner.types.js","../../frontend/node_modules/@fluentui/react/lib/components/Spinner/Spinner.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Spinner/Spinner.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Spinner/Spinner.js","../../frontend/node_modules/@fluentui/react/lib/components/Overlay/Overlay.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Overlay/Overlay.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Overlay/Overlay.js","../../frontend/node_modules/@fluentui/react/lib/components/Dropdown/utilities/DropdownSizePosCache.js","../../frontend/node_modules/@fluentui/react/lib/components/Panel/Panel.types.js","../../frontend/node_modules/@fluentui/react/lib/components/Panel/Panel.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Panel/Panel.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Panel/Panel.js","../../frontend/node_modules/@fluentui/react/lib/components/Dropdown/Dropdown.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Dropdown/Dropdown.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Dropdown/Dropdown.js","../../frontend/node_modules/@fluentui/react/lib/components/MessageBar/MessageBar.types.js","../../frontend/node_modules/@fluentui/react/lib/components/MessageBar/MessageBar.base.js","../../frontend/node_modules/@fluentui/react/lib/components/MessageBar/MessageBar.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/MessageBar/MessageBar.js","../../frontend/node_modules/@fluentui/react/lib/utilities/observeResize.js","../../frontend/node_modules/@fluentui/react/lib/utilities/useOverflow.js","../../frontend/node_modules/@fluentui/react/lib/components/Pivot/PivotItem.js","../../frontend/node_modules/@fluentui/react/lib/components/Pivot/Pivot.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Pivot/Pivot.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Pivot/Pivot.js","../../frontend/node_modules/@fluentui/react/lib/components/Slider/useSlider.js","../../frontend/node_modules/@fluentui/react/lib/components/Slider/Slider.base.js","../../frontend/node_modules/@fluentui/react/lib/components/Slider/Slider.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Slider/Slider.js","../../frontend/node_modules/@fluentui/react/lib/components/SpinButton/SpinButton.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/SpinButton/SpinButton.types.js","../../frontend/node_modules/@fluentui/react/lib/components/SpinButton/SpinButton.base.js","../../frontend/node_modules/@fluentui/react/lib/components/SpinButton/SpinButton.js","../../frontend/node_modules/@fluentui/react/lib/components/Stack/StackItem/StackItem.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Stack/StackItem/StackItem.js","../../frontend/node_modules/@fluentui/react/lib/components/Stack/StackUtils.js","../../frontend/node_modules/@fluentui/react/lib/components/Stack/Stack.styles.js","../../frontend/node_modules/@fluentui/react/lib/components/Stack/Stack.js","../../frontend/node_modules/@fluentui/react-utilities/lib/compose/constants.js","../../frontend/node_modules/@fluentui/react-utilities/lib/compose/slot.js","../../frontend/node_modules/@fluentui/react-utilities/lib/compose/isSlot.js","../../frontend/node_modules/@fluentui/react-utilities/lib/compose/resolveShorthand.js","../../frontend/node_modules/@fluentui/react-utilities/lib/utils/properties.js","../../frontend/node_modules/@fluentui/react-utilities/lib/utils/getNativeElementProps.js","../../frontend/node_modules/@fluentui/react-utilities/lib/compose/getIntrinsicElementProps.js","../../frontend/node_modules/@fluentui/react-utilities/lib/ssr/canUseDOM.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useBrowserTimer.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useControllableState.js","../../frontend/node_modules/@fluentui/react-utilities/lib/ssr/SSRContext.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useIsomorphicLayoutEffect.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useEventCallback.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useId.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useMergedRefs.js","../../frontend/node_modules/@fluentui/react-utilities/lib/hooks/useTimeout.js","../../frontend/node_modules/@fluentui/react-utilities/lib/utils/mergeCallbacks.js","../../frontend/node_modules/@fluentui/react-utilities/lib/utils/isHTMLElement.js","../../frontend/node_modules/@fluentui/react-utilities/lib/trigger/isFluentTrigger.js","../../frontend/node_modules/@fluentui/react-utilities/lib/trigger/applyTriggerPropsToChildren.js","../../frontend/node_modules/@fluentui/react-utilities/lib/trigger/getTriggerChild.js","../../frontend/node_modules/@fluentui/react-utilities/lib/virtualParent/setVirtualParent.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/utils/createCompatSlotComponent.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/jsx/createJSX.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/utils/getMetadataFromSlotComponent.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/utils/Runtime.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/jsx/jsxSlot.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/jsx/jsxsSlot.js","../../frontend/node_modules/@fluentui/react-jsx-runtime/lib/jsx-runtime.js","../../frontend/node_modules/@fluentui/react-shared-contexts/lib/ThemeClassNameContext/ThemeClassNameContext.js","../../frontend/node_modules/@fluentui/react-shared-contexts/lib/TooltipVisibilityContext/TooltipContext.js","../../frontend/node_modules/@fluentui/react-shared-contexts/lib/ProviderContext/ProviderContext.js","../../frontend/node_modules/@fluentui/react-shared-contexts/lib/CustomStyleHooksContext/CustomStyleHooksContext.js","../../frontend/node_modules/@fluentui/react-shared-contexts/lib/PortalMountNodeContext.js","../../frontend/node_modules/@fluentui/react-tabster/lib/focus/constants.js","../../frontend/node_modules/@fluentui/react-tabster/lib/focus/focusVisiblePolyfill.js","../../frontend/node_modules/@fluentui/react-tabster/lib/hooks/useFocusVisible.js","../../frontend/node_modules/@fluentui/react-aria/lib/button/useARIAButtonProps.js","../../frontend/node_modules/@fluentui/react-aria/lib/button/useARIAButtonShorthand.js","../../frontend/node_modules/@fluentui/react-positioning/lib/constants.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/parseFloatingUIPlacement.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/getScrollParent.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/getBoundary.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/mergeArrowOffset.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/toFloatingUIPadding.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/toFloatingUIPlacement.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/fromFloatingUIPlacement.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/resolvePositioningShorthand.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/useCallbackRef.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/debounce.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/writeArrowUpdates.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/writeContainerupdates.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/normalizeAutoSize.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/coverTarget.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/flip.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/intersecting.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/maxSize.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/getFloatingUIOffset.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/offset.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/shift.js","../../frontend/node_modules/@fluentui/react-positioning/lib/middleware/matchTargetSize.js","../../frontend/node_modules/@fluentui/react-positioning/lib/utils/listScrollParents.js","../../frontend/node_modules/@fluentui/react-positioning/lib/createPositionManager.js","../../frontend/node_modules/@fluentui/react-positioning/lib/usePositioning.js","../../frontend/node_modules/@fluentui/react-portal/lib/utils/toMountNodeProps.js","../../frontend/node_modules/@fluentui/react-portal/lib/components/Portal/usePortalMountNodeStyles.styles.js","../../frontend/node_modules/@fluentui/react-portal/lib/components/Portal/usePortalMountNode.js","../../frontend/node_modules/@fluentui/react-portal/lib/components/Portal/usePortal.js","../../frontend/node_modules/@fluentui/react-portal/lib/components/Portal/renderPortal.js","../../frontend/node_modules/@fluentui/react-portal/lib/components/Portal/Portal.js","../../frontend/node_modules/@fluentui/react-tooltip/lib/components/Tooltip/private/constants.js","../../frontend/node_modules/@fluentui/react-tooltip/lib/components/Tooltip/useTooltip.js","../../frontend/node_modules/@fluentui/react-tooltip/lib/components/Tooltip/renderTooltip.js","../../frontend/node_modules/@fluentui/react-tooltip/lib/components/Tooltip/useTooltipStyles.styles.js","../../frontend/node_modules/@fluentui/react-tooltip/lib/components/Tooltip/Tooltip.js","../../frontend/node_modules/@fluentui/react-button/lib/components/Button/renderButton.js","../../frontend/node_modules/@fluentui/react-button/lib/contexts/ButtonContext.js","../../frontend/node_modules/@fluentui/react-button/lib/components/Button/useButton.js","../../frontend/node_modules/@fluentui/react-button/lib/components/Button/useButtonStyles.styles.js","../../frontend/node_modules/@fluentui/react-button/lib/components/Button/Button.js"],"sourcesContent":["export var DirectionalHint = {\n /**\n * Appear above the target element, with the left edges of the callout and target aligning.\n */\n topLeftEdge: 0,\n /**\n * Appear above the target element, with the centers of the callout and target aligning.\n */\n topCenter: 1,\n /**\n * Appear above the target element, with the right edges of the callout and target aligning.\n */\n topRightEdge: 2,\n /**\n * Appear above the target element, aligning with the target element such that the callout tends toward\n * the center of the screen.\n */\n topAutoEdge: 3,\n /**\n * Appear below the target element, with the left edges of the callout and target aligning.\n */\n bottomLeftEdge: 4,\n /**\n * Appear below the target element, with the centers of the callout and target aligning.\n */\n bottomCenter: 5,\n /**\n * Appear below the target element, with the right edges of the callout and target aligning.\n */\n bottomRightEdge: 6,\n /**\n * Appear below the target element, aligning with the target element such that the callout tends toward\n * the center of the screen.\n */\n bottomAutoEdge: 7,\n /**\n * Appear to the left of the target element, with the top edges of the callout and target aligning.\n */\n leftTopEdge: 8,\n /**\n * Appear to the left of the target element, with the centers of the callout and target aligning.\n */\n leftCenter: 9,\n /**\n * Appear to the left of the target element, with the bottom edges of the callout and target aligning.\n */\n leftBottomEdge: 10,\n /**\n * Appear to the right of the target element, with the top edges of the callout and target aligning.\n */\n rightTopEdge: 11,\n /**\n * Appear to the right of the target element, with the centers of the callout and target aligning.\n */\n rightCenter: 12,\n /**\n * Appear to the right of the target element, with the bottom edges of the callout and target aligning.\n */\n rightBottomEdge: 13,\n};\n//# sourceMappingURL=DirectionalHint.js.map","export var RectangleEdge;\n(function (RectangleEdge) {\n RectangleEdge[RectangleEdge[\"top\"] = 1] = \"top\";\n RectangleEdge[RectangleEdge[\"bottom\"] = -1] = \"bottom\";\n RectangleEdge[RectangleEdge[\"left\"] = 2] = \"left\";\n RectangleEdge[RectangleEdge[\"right\"] = -2] = \"right\";\n})(RectangleEdge || (RectangleEdge = {}));\nexport var Position;\n(function (Position) {\n Position[Position[\"top\"] = 0] = \"top\";\n Position[Position[\"bottom\"] = 1] = \"bottom\";\n Position[Position[\"start\"] = 2] = \"start\";\n Position[Position[\"end\"] = 3] = \"end\";\n})(Position || (Position = {}));\n//# sourceMappingURL=positioning.types.js.map","var _a;\nimport { __assign } from \"tslib\";\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { getScrollbarWidth, getRTL } from '../../Utilities';\nimport { RectangleEdge } from './positioning.types';\nimport { Rectangle } from '../../Utilities';\nfunction _createPositionData(targetEdge, alignmentEdge, isAuto) {\n return {\n targetEdge: targetEdge,\n alignmentEdge: alignmentEdge,\n isAuto: isAuto,\n };\n}\n// Currently the beakPercent is set to 50 for all positions meaning that it should tend to the center of the target\nvar DirectionalDictionary = (_a = {},\n _a[DirectionalHint.topLeftEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.left),\n _a[DirectionalHint.topCenter] = _createPositionData(RectangleEdge.top),\n _a[DirectionalHint.topRightEdge] = _createPositionData(RectangleEdge.top, RectangleEdge.right),\n _a[DirectionalHint.topAutoEdge] = _createPositionData(RectangleEdge.top, undefined, true),\n _a[DirectionalHint.bottomLeftEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.left),\n _a[DirectionalHint.bottomCenter] = _createPositionData(RectangleEdge.bottom),\n _a[DirectionalHint.bottomRightEdge] = _createPositionData(RectangleEdge.bottom, RectangleEdge.right),\n _a[DirectionalHint.bottomAutoEdge] = _createPositionData(RectangleEdge.bottom, undefined, true),\n _a[DirectionalHint.leftTopEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.top),\n _a[DirectionalHint.leftCenter] = _createPositionData(RectangleEdge.left),\n _a[DirectionalHint.leftBottomEdge] = _createPositionData(RectangleEdge.left, RectangleEdge.bottom),\n _a[DirectionalHint.rightTopEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.top),\n _a[DirectionalHint.rightCenter] = _createPositionData(RectangleEdge.right),\n _a[DirectionalHint.rightBottomEdge] = _createPositionData(RectangleEdge.right, RectangleEdge.bottom),\n _a);\nfunction _isRectangleWithinBounds(rect, boundingRect) {\n if (rect.top < boundingRect.top) {\n return false;\n }\n if (rect.bottom > boundingRect.bottom) {\n return false;\n }\n if (rect.left < boundingRect.left) {\n return false;\n }\n if (rect.right > boundingRect.right) {\n return false;\n }\n return true;\n}\n/**\n * Gets all of the edges of a rectangle that are outside of the given bounds.\n * If there are no out of bounds edges it returns an empty array.\n */\nfunction _getOutOfBoundsEdges(rect, boundingRect) {\n var outOfBounds = [];\n if (rect.top < boundingRect.top) {\n outOfBounds.push(RectangleEdge.top);\n }\n if (rect.bottom > boundingRect.bottom) {\n outOfBounds.push(RectangleEdge.bottom);\n }\n if (rect.left < boundingRect.left) {\n outOfBounds.push(RectangleEdge.left);\n }\n if (rect.right > boundingRect.right) {\n outOfBounds.push(RectangleEdge.right);\n }\n return outOfBounds;\n}\nfunction _getEdgeValue(rect, edge) {\n return rect[RectangleEdge[edge]];\n}\nfunction _setEdgeValue(rect, edge, value) {\n rect[RectangleEdge[edge]] = value;\n return rect;\n}\n/**\n * Returns the middle value of an edge. Only returns 1 value rather than xy coordinates as\n * the itself already contains the other coordinate.\n * For instance, a bottom edge's current value is it's y coordinate, so the number returned is the x.\n */\nfunction _getCenterValue(rect, edge) {\n var edges = _getFlankingEdges(edge);\n return (_getEdgeValue(rect, edges.positiveEdge) + _getEdgeValue(rect, edges.negativeEdge)) / 2;\n}\n/**\n * Flips the value depending on the edge.\n * If the edge is a \"positive\" edge, Top or Left, then the value should stay as it is.\n * If the edge is a \"negative\" edge, Bottom or Right, then the value should be flipped.\n * This is to account for the fact that the coordinates are effectively reserved in certain cases for the\n * \"negative\" edges.\n *\n * For example, when testing to see if a bottom edge 1 is within the bounds of another bottom edge 2:\n * If edge 1 is greater than edge 2 then it is out of bounds. This is reversed for top edge 1 and top edge 2.\n * If top edge 1 is less than edge 2 then it is out of bounds.\n */\nfunction _getRelativeEdgeValue(edge, value) {\n if (edge > 0) {\n return value;\n }\n else {\n return value * -1;\n }\n}\nfunction _getRelativeRectEdgeValue(edge, rect) {\n return _getRelativeEdgeValue(edge, _getEdgeValue(rect, edge));\n}\nfunction _getRelativeEdgeDifference(rect, hostRect, edge) {\n var edgeDifference = _getEdgeValue(rect, edge) - _getEdgeValue(hostRect, edge);\n return _getRelativeEdgeValue(edge, edgeDifference);\n}\n/**\n * Moves the edge of a rectangle to the value given. It only moves the edge in a linear direction based on that edge.\n * For example, if it's a bottom edge it will only change y coordinates.\n * if maintainSize is set to false, it will only adjust the specified edge value\n */\nfunction _moveEdge(rect, edge, newValue, maintainSize) {\n if (maintainSize === void 0) { maintainSize = true; }\n var difference = _getEdgeValue(rect, edge) - newValue;\n var returnRect = _setEdgeValue(rect, edge, newValue);\n if (maintainSize) {\n returnRect = _setEdgeValue(rect, edge * -1, _getEdgeValue(rect, edge * -1) - difference);\n }\n return returnRect;\n}\n/**\n * Aligns the edge on the passed in rect to the target. If there is a gap then it will have that space between the two.\n */\nfunction _alignEdges(rect, target, edge, gap) {\n if (gap === void 0) { gap = 0; }\n return _moveEdge(rect, edge, _getEdgeValue(target, edge) + _getRelativeEdgeValue(edge, gap));\n}\n/**\n * Aligns the targetEdge on the passed in target to the rects corresponding opposite edge.\n * For instance if targetEdge is bottom, then the rects top will be moved to match it.\n */\nfunction _alignOppositeEdges(rect, target, targetEdge, gap) {\n if (gap === void 0) { gap = 0; }\n var oppositeEdge = targetEdge * -1;\n var adjustedGap = _getRelativeEdgeValue(oppositeEdge, gap);\n return _moveEdge(rect, targetEdge * -1, _getEdgeValue(target, targetEdge) + adjustedGap);\n}\n/**\n * Tests to see if the given edge is within the bounds of the given rectangle.\n */\nfunction _isEdgeInBounds(rect, bounds, edge) {\n var adjustedRectValue = _getRelativeRectEdgeValue(edge, rect);\n return adjustedRectValue > _getRelativeRectEdgeValue(edge, bounds);\n}\n/**\n * Returns a measure of how much a rectangle is out of bounds for a given alignment;\n * this can be used to compare which rectangle is more or less out of bounds.\n * A value of 0 means the rectangle is entirely in bounds\n */\nfunction _getOutOfBoundsDegree(rect, bounds) {\n var breakingEdges = _getOutOfBoundsEdges(rect, bounds);\n var total = 0;\n for (var _i = 0, breakingEdges_1 = breakingEdges; _i < breakingEdges_1.length; _i++) {\n var edge = breakingEdges_1[_i];\n total += Math.pow(_getRelativeEdgeDifference(rect, bounds, edge), 2);\n }\n return total;\n}\n/**\n * Attempts to move the rectangle through various sides of the target to find a place to fit.\n * If no fit is found, the least bad option should be returned.\n */\nfunction _flipToFit(rect, target, bounding, positionData, gap) {\n if (gap === void 0) { gap = 0; }\n var directions = [\n RectangleEdge.left,\n RectangleEdge.right,\n RectangleEdge.bottom,\n RectangleEdge.top,\n ];\n // In RTL page, RectangleEdge.right has a higher priority than RectangleEdge.left, so the order should be updated.\n if (getRTL()) {\n directions[0] *= -1;\n directions[1] *= -1;\n }\n var currentEstimate = rect;\n var currentEdge = positionData.targetEdge;\n var currentAlignment = positionData.alignmentEdge;\n // keep track of least bad option, in case no sides fit\n var oobDegree;\n var bestEdge = currentEdge;\n var bestAlignment = currentAlignment;\n // Keep switching sides until one is found with enough space.\n // If all sides don't fit then return the unmodified element.\n for (var i = 0; i < 4; i++) {\n if (!_isEdgeInBounds(currentEstimate, bounding, currentEdge)) {\n // update least-bad edges\n var currentOOBDegree = _getOutOfBoundsDegree(currentEstimate, bounding);\n if (!oobDegree || currentOOBDegree < oobDegree) {\n oobDegree = currentOOBDegree;\n bestEdge = currentEdge;\n bestAlignment = currentAlignment;\n }\n directions.splice(directions.indexOf(currentEdge), 1);\n if (directions.length > 0) {\n if (directions.indexOf(currentEdge * -1) > -1) {\n currentEdge = currentEdge * -1;\n }\n else {\n currentAlignment = currentEdge;\n currentEdge = directions.slice(-1)[0];\n }\n currentEstimate = _estimatePosition(rect, target, { targetEdge: currentEdge, alignmentEdge: currentAlignment }, gap);\n }\n }\n else {\n return {\n elementRectangle: currentEstimate,\n targetEdge: currentEdge,\n alignmentEdge: currentAlignment,\n };\n }\n }\n // nothing fits, use least-bad option\n currentEstimate = _estimatePosition(rect, target, { targetEdge: bestEdge, alignmentEdge: bestAlignment }, gap);\n return {\n elementRectangle: currentEstimate,\n targetEdge: bestEdge,\n alignmentEdge: bestAlignment,\n };\n}\n/**\n * Flips only the alignment edge of an element rectangle. This is used instead of nudging the alignment edges\n * into position, when `alignTargetEdge` is specified.\n */\nfunction _flipAlignmentEdge(elementEstimate, target, gap, coverTarget) {\n var alignmentEdge = elementEstimate.alignmentEdge, targetEdge = elementEstimate.targetEdge, elementRectangle = elementEstimate.elementRectangle;\n var oppositeEdge = alignmentEdge * -1;\n var newEstimate = _estimatePosition(elementRectangle, target, { targetEdge: targetEdge, alignmentEdge: oppositeEdge }, gap, coverTarget);\n return {\n elementRectangle: newEstimate,\n targetEdge: targetEdge,\n alignmentEdge: oppositeEdge,\n };\n}\n/**\n * Adjusts a element rectangle to fit within the bounds given. If directionalHintFixed or covertarget is passed in\n * then the element will not flip sides on the target. They will, however, be nudged to fit within the bounds given.\n */\nfunction _adjustFitWithinBounds(element, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var alignmentEdge = positionData.alignmentEdge, alignTargetEdge = positionData.alignTargetEdge;\n var elementEstimate = {\n elementRectangle: element,\n targetEdge: positionData.targetEdge,\n alignmentEdge: alignmentEdge,\n };\n if (!directionalHintFixed && !coverTarget) {\n elementEstimate = _flipToFit(element, target, bounding, positionData, gap);\n }\n var outOfBounds = _getOutOfBoundsEdges(elementEstimate.elementRectangle, bounding);\n // if directionalHintFixed is specified, we need to force the target edge to not change\n // we need *-1 because targetEdge refers to the target's edge; the callout edge is the opposite\n var fixedEdge = directionalHintFixed ? -elementEstimate.targetEdge : undefined;\n if (outOfBounds.length > 0) {\n if (alignTargetEdge) {\n // The edge opposite to the alignment edge might be out of bounds.\n // Flip alignment to see if we can get it within bounds.\n if (elementEstimate.alignmentEdge && outOfBounds.indexOf(elementEstimate.alignmentEdge * -1) > -1) {\n var flippedElementEstimate = _flipAlignmentEdge(elementEstimate, target, gap, coverTarget);\n if (_isRectangleWithinBounds(flippedElementEstimate.elementRectangle, bounding)) {\n return flippedElementEstimate;\n }\n else {\n // If the flipped elements edges are still out of bounds, try nudging it.\n elementEstimate = _alignOutOfBoundsEdges(_getOutOfBoundsEdges(flippedElementEstimate.elementRectangle, bounding), elementEstimate, bounding, fixedEdge);\n }\n }\n else {\n elementEstimate = _alignOutOfBoundsEdges(outOfBounds, elementEstimate, bounding, fixedEdge);\n }\n }\n else {\n elementEstimate = _alignOutOfBoundsEdges(outOfBounds, elementEstimate, bounding, fixedEdge);\n }\n }\n return elementEstimate;\n}\n/**\n * Iterates through a list of out of bounds edges and tries to nudge and align them.\n * @param outOfBoundsEdges - Array of edges that are out of bounds\n * @param elementEstimate - The current element positioning estimate\n * @param bounding - The current bounds\n * @param preserveEdge - Specify an edge that should not be modified\n */\nfunction _alignOutOfBoundsEdges(outOfBoundsEdges, elementEstimate, bounding, preserveEdge) {\n for (var _i = 0, outOfBoundsEdges_1 = outOfBoundsEdges; _i < outOfBoundsEdges_1.length; _i++) {\n var direction = outOfBoundsEdges_1[_i];\n var edgeAttempt = void 0;\n // if preserveEdge is specified, do not call _alignEdges, skip directly to _moveEdge\n // this is because _alignEdges will move the opposite edge\n if (preserveEdge && preserveEdge === direction * -1) {\n edgeAttempt = _moveEdge(elementEstimate.elementRectangle, direction, _getEdgeValue(bounding, direction), false);\n elementEstimate.forcedInBounds = true;\n }\n else {\n edgeAttempt = _alignEdges(elementEstimate.elementRectangle, bounding, direction);\n var inBounds = _isEdgeInBounds(edgeAttempt, bounding, direction * -1);\n // only update estimate if the attempt didn't break out of the opposite bounding edge\n if (!inBounds) {\n edgeAttempt = _moveEdge(edgeAttempt, direction * -1, _getEdgeValue(bounding, direction * -1), false);\n elementEstimate.forcedInBounds = true;\n }\n }\n elementEstimate.elementRectangle = edgeAttempt;\n }\n return elementEstimate;\n}\n/**\n * Moves the middle point on an edge to the point given.\n * Only moves in one direction. For instance if a bottom edge is passed in, then\n * the bottom edge will be moved in the x axis to match the point.\n */\nfunction _centerEdgeToPoint(rect, edge, point) {\n var positiveEdge = _getFlankingEdges(edge).positiveEdge;\n var elementMiddle = _getCenterValue(rect, edge);\n var distanceToMiddle = elementMiddle - _getEdgeValue(rect, positiveEdge);\n return _moveEdge(rect, positiveEdge, point - distanceToMiddle);\n}\n/**\n * Moves the element rectangle to be appropriately positioned relative to a given target.\n * Does not flip or adjust the element.\n */\nfunction _estimatePosition(elementToPosition, target, positionData, gap, coverTarget) {\n if (gap === void 0) { gap = 0; }\n var estimatedElementPosition = new Rectangle(elementToPosition.left, elementToPosition.right, elementToPosition.top, elementToPosition.bottom);\n var alignmentEdge = positionData.alignmentEdge, targetEdge = positionData.targetEdge;\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n estimatedElementPosition = coverTarget\n ? _alignEdges(estimatedElementPosition, target, targetEdge, gap)\n : _alignOppositeEdges(estimatedElementPosition, target, targetEdge, gap);\n // if no alignment edge is provided it's supposed to be centered.\n if (!alignmentEdge) {\n var targetMiddlePoint = _getCenterValue(target, targetEdge);\n estimatedElementPosition = _centerEdgeToPoint(estimatedElementPosition, elementEdge, targetMiddlePoint);\n }\n else {\n estimatedElementPosition = _alignEdges(estimatedElementPosition, target, alignmentEdge);\n }\n return estimatedElementPosition;\n}\n/**\n * Returns the non-opposite edges of the target edge.\n * For instance if bottom is passed in then left and right will be returned.\n */\nfunction _getFlankingEdges(edge) {\n if (edge === RectangleEdge.top || edge === RectangleEdge.bottom) {\n return {\n positiveEdge: RectangleEdge.left,\n negativeEdge: RectangleEdge.right,\n };\n }\n else {\n return {\n positiveEdge: RectangleEdge.top,\n negativeEdge: RectangleEdge.bottom,\n };\n }\n}\n/**\n * Retrieve the final value for the return edge of `elementRectangle`. If the `elementRectangle` is closer to one side\n * of the bounds versus the other, the return edge is flipped to grow inward.\n */\nfunction _finalizeReturnEdge(elementRectangle, returnEdge, bounds) {\n if (bounds &&\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge)) >\n Math.abs(_getRelativeEdgeDifference(elementRectangle, bounds, returnEdge * -1))) {\n return returnEdge * -1;\n }\n return returnEdge;\n}\n/**\n * Whether or not the considered edge of the elementRectangle is lying on the edge of the bounds\n * @param elementRectangle The rectangle whose edge we are considering\n * @param bounds The rectangle marking the bounds\n * @param edge The target edge we're considering\n * @returns If the target edge of the elementRectangle is in the same location as that edge of the bounds\n */\nfunction _isEdgeOnBounds(elementRectangle, edge, bounds) {\n return bounds !== undefined && _getEdgeValue(elementRectangle, edge) === _getEdgeValue(bounds, edge);\n}\n/**\n * Finalizes the element position based on the hostElement. Only returns the\n * rectangle values to position such that they are anchored to the target.\n * This helps prevent resizing from looking very strange.\n * For instance, if the target edge is top and aligned with the left side then\n * the bottom and left values are returned so as the Callout shrinks it shrinks towards that corner.\n */\nfunction _finalizeElementPosition(elementRectangle, hostElement, targetEdge, bounds, alignmentEdge, coverTarget, doNotFinalizeReturnEdge, forceWithinBounds) {\n var returnValue = {};\n var hostRect = _getRectangleFromElement(hostElement);\n var elementEdge = coverTarget ? targetEdge : targetEdge * -1;\n var returnEdge = alignmentEdge ? alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge;\n // If we are finalizing the return edge, choose the edge such that we grow away from the bounds\n // If we are not finalizing the return edge but the opposite edge is flush against the bounds,\n // choose that as the anchor edge so the element rect can grow away from the bounds' edge\n // In this case there will not be a visual difference because there is no more room for the elementRectangle to grow\n // in the usual direction\n if (!doNotFinalizeReturnEdge || _isEdgeOnBounds(elementRectangle, getOppositeEdge(returnEdge), bounds)) {\n returnEdge = _finalizeReturnEdge(elementRectangle, returnEdge, bounds);\n }\n returnValue[RectangleEdge[elementEdge]] = _getRelativeEdgeDifference(elementRectangle, hostRect, elementEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(elementRectangle, hostRect, returnEdge);\n // if the positioned element will still overflow, return all four edges with in-bounds values\n if (forceWithinBounds) {\n returnValue[RectangleEdge[elementEdge * -1]] = _getRelativeEdgeDifference(elementRectangle, hostRect, elementEdge * -1);\n returnValue[RectangleEdge[returnEdge * -1]] = _getRelativeEdgeDifference(elementRectangle, hostRect, returnEdge * -1);\n }\n return returnValue;\n}\n// Since the beak is rotated 45 degrees the actual height/width is the length of the diagonal.\n// We still want to position the beak based on it's midpoint which does not change. It will\n// be at (beakwidth / 2, beakwidth / 2)\nfunction _calculateActualBeakWidthInPixels(beakWidth) {\n return Math.sqrt(beakWidth * beakWidth * 2);\n}\n/**\n * Returns the appropriate IPositionData based on the props altered for RTL.\n * If directionalHintForRTL is passed in that is used if the page is RTL.\n * If directionalHint is specified, no directionalHintForRTL is available, and the page is RTL, the hint will be\n * flipped (e.g. bottomLeftEdge would become bottomRightEdge).\n *\n * If there is no directionalHint passed in, bottomAutoEdge is chosen automatically.\n */\nfunction _getPositionData(directionalHint, directionalHintForRTL, previousPositions) {\n if (directionalHint === void 0) { directionalHint = DirectionalHint.bottomAutoEdge; }\n if (previousPositions) {\n return {\n alignmentEdge: previousPositions.alignmentEdge,\n isAuto: previousPositions.isAuto,\n targetEdge: previousPositions.targetEdge,\n };\n }\n var positionInformation = __assign({}, DirectionalDictionary[directionalHint]);\n if (getRTL()) {\n // If alignment edge exists and that alignment edge is -2 or 2, right or left, then flip it.\n if (positionInformation.alignmentEdge && positionInformation.alignmentEdge % 2 === 0) {\n positionInformation.alignmentEdge = positionInformation.alignmentEdge * -1;\n }\n return directionalHintForRTL !== undefined ? DirectionalDictionary[directionalHintForRTL] : positionInformation;\n }\n return positionInformation;\n}\n/**\n * Gets the alignment data for the given information. This only really matters if the positioning is Auto.\n * If it is auto then the alignmentEdge should be chosen based on the target edge's position relative to\n * the center of the page.\n */\nfunction _getAlignmentData(positionData, target, boundingRect, coverTarget, alignTargetEdge) {\n if (positionData.isAuto) {\n positionData.alignmentEdge = getClosestEdge(positionData.targetEdge, target, boundingRect);\n }\n positionData.alignTargetEdge = alignTargetEdge;\n return positionData;\n}\nfunction getClosestEdge(targetEdge, target, boundingRect) {\n var targetCenter = _getCenterValue(target, targetEdge);\n var boundingCenter = _getCenterValue(boundingRect, targetEdge);\n var _a = _getFlankingEdges(targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n if (targetCenter <= boundingCenter) {\n return positiveEdge;\n }\n else {\n return negativeEdge;\n }\n}\nfunction _positionElementWithinBounds(elementToPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget) {\n var estimatedElementPosition = _estimatePosition(elementToPosition, target, positionData, gap, coverTarget);\n if (_isRectangleWithinBounds(estimatedElementPosition, bounding)) {\n return {\n elementRectangle: estimatedElementPosition,\n targetEdge: positionData.targetEdge,\n alignmentEdge: positionData.alignmentEdge,\n };\n }\n else {\n return _adjustFitWithinBounds(estimatedElementPosition, target, bounding, positionData, gap, directionalHintFixed, coverTarget);\n }\n}\nfunction _finalizeBeakPosition(elementPosition, positionedBeak, bounds) {\n var targetEdge = elementPosition.targetEdge * -1;\n // The \"host\" element that we will use to help position the beak.\n var actualElement = new Rectangle(0, elementPosition.elementRectangle.width, 0, elementPosition.elementRectangle.height);\n var returnValue = {};\n var returnEdge = _finalizeReturnEdge(elementPosition.elementRectangle, elementPosition.alignmentEdge ? elementPosition.alignmentEdge : _getFlankingEdges(targetEdge).positiveEdge, bounds);\n // only show the beak if the callout is not fully covering the target\n var beakEdgeDifference = _getRelativeEdgeDifference(elementPosition.elementRectangle, elementPosition.targetRectangle, targetEdge);\n var showBeak = beakEdgeDifference > Math.abs(_getEdgeValue(positionedBeak, targetEdge));\n returnValue[RectangleEdge[targetEdge]] = _getEdgeValue(positionedBeak, targetEdge);\n returnValue[RectangleEdge[returnEdge]] = _getRelativeEdgeDifference(positionedBeak, actualElement, returnEdge);\n return {\n elementPosition: __assign({}, returnValue),\n closestEdge: getClosestEdge(elementPosition.targetEdge, positionedBeak, actualElement),\n targetEdge: targetEdge,\n hideBeak: !showBeak,\n };\n}\nfunction _positionBeak(beakWidth, elementPosition) {\n var target = elementPosition.targetRectangle;\n /**\n * Note about beak positioning: The actual beak width only matters for getting the gap between the callout and\n * target, it does not impact the beak placement within the callout. For example example, if the beakWidth is 8,\n * then the actual beakWidth is sqrroot(8^2 + 8^2) = 11.31x11.31. So the callout will need to be an extra 3 pixels\n * away from its target. While the beak is being positioned in the callout it still acts as though it were 8x8.\n */\n var _a = _getFlankingEdges(elementPosition.targetEdge), positiveEdge = _a.positiveEdge, negativeEdge = _a.negativeEdge;\n var beakTargetPoint = _getCenterValue(target, elementPosition.targetEdge);\n var elementBounds = new Rectangle(beakWidth / 2, elementPosition.elementRectangle.width - beakWidth / 2, beakWidth / 2, elementPosition.elementRectangle.height - beakWidth / 2);\n var beakPosition = new Rectangle(0, beakWidth, 0, beakWidth);\n beakPosition = _moveEdge(beakPosition, elementPosition.targetEdge * -1, -beakWidth / 2);\n beakPosition = _centerEdgeToPoint(beakPosition, elementPosition.targetEdge * -1, beakTargetPoint - _getRelativeRectEdgeValue(positiveEdge, elementPosition.elementRectangle));\n if (!_isEdgeInBounds(beakPosition, elementBounds, positiveEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, positiveEdge);\n }\n else if (!_isEdgeInBounds(beakPosition, elementBounds, negativeEdge)) {\n beakPosition = _alignEdges(beakPosition, elementBounds, negativeEdge);\n }\n return beakPosition;\n}\nfunction _getRectangleFromElement(element) {\n // eslint-disable-next-line deprecation/deprecation\n var clientRect = element.getBoundingClientRect();\n return new Rectangle(clientRect.left, clientRect.right, clientRect.top, clientRect.bottom);\n}\nfunction _getRectangleFromIRect(rect) {\n return new Rectangle(rect.left, rect.right, rect.top, rect.bottom);\n}\nfunction _getTargetRect(bounds, target) {\n var targetRectangle;\n if (target) {\n // eslint-disable-next-line no-extra-boolean-cast\n if (!!target.preventDefault) {\n var ev = target;\n targetRectangle = new Rectangle(ev.clientX, ev.clientX, ev.clientY, ev.clientY);\n // eslint-disable-next-line no-extra-boolean-cast\n }\n else if (!!target.getBoundingClientRect) {\n targetRectangle = _getRectangleFromElement(target);\n // HTMLImgElements can have x and y values. The check for it being a point must go last.\n }\n else {\n var rectOrPoint = target;\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPoint.left || rectOrPoint.x;\n // eslint-disable-next-line deprecation/deprecation\n var top_1 = rectOrPoint.top || rectOrPoint.y;\n var right = rectOrPoint.right || left;\n var bottom = rectOrPoint.bottom || top_1;\n targetRectangle = new Rectangle(left, right, top_1, bottom);\n }\n if (!_isRectangleWithinBounds(targetRectangle, bounds)) {\n var outOfBounds = _getOutOfBoundsEdges(targetRectangle, bounds);\n for (var _i = 0, outOfBounds_1 = outOfBounds; _i < outOfBounds_1.length; _i++) {\n var direction = outOfBounds_1[_i];\n targetRectangle[RectangleEdge[direction]] = bounds[RectangleEdge[direction]];\n }\n }\n }\n else {\n targetRectangle = new Rectangle(0, 0, 0, 0);\n }\n return targetRectangle;\n}\n/**\n * If max height is less than zero it returns the bounds height instead.\n */\nfunction _getMaxHeightFromTargetRectangle(targetRectangle, targetEdge, gapSpace, bounds, coverTarget) {\n var maxHeight = 0;\n var directionalHint = DirectionalDictionary[targetEdge];\n // If cover target is set, then the max height should be calculated using the opposite of the target edge since\n // that's the direction that the callout will expand in.\n // For instance, if the directionalhint is bottomLeftEdge then the callout will position so it's bottom edge\n // is aligned with the bottom of the target and expand up towards the top of the screen and the calculated max height\n // is (bottom of target) - (top of screen) - gapSpace.\n var target = coverTarget ? directionalHint.targetEdge * -1 : directionalHint.targetEdge;\n if (target === RectangleEdge.top) {\n maxHeight = _getEdgeValue(targetRectangle, directionalHint.targetEdge) - bounds.top - gapSpace;\n }\n else if (target === RectangleEdge.bottom) {\n maxHeight = bounds.bottom - _getEdgeValue(targetRectangle, directionalHint.targetEdge) - gapSpace;\n }\n else {\n maxHeight = bounds.bottom - targetRectangle.top - gapSpace;\n }\n return maxHeight > 0 ? maxHeight : bounds.height;\n}\nfunction _positionElementRelative(props, elementToPosition, boundingRect, previousPositions) {\n var gap = props.gapSpace ? props.gapSpace : 0;\n var targetRect = _getTargetRect(boundingRect, props.target);\n var positionData = _getAlignmentData(_getPositionData(props.directionalHint, props.directionalHintForRTL, previousPositions), targetRect, boundingRect, props.coverTarget, props.alignTargetEdge);\n var positionedElement = _positionElementWithinBounds(_getRectangleFromElement(elementToPosition), targetRect, boundingRect, positionData, gap, props.directionalHintFixed, props.coverTarget);\n return __assign(__assign({}, positionedElement), { targetRectangle: targetRect });\n}\nfunction _finalizePositionData(positionedElement, hostElement, bounds, coverTarget, doNotFinalizeReturnEdge) {\n var finalizedElement = _finalizeElementPosition(positionedElement.elementRectangle, hostElement, positionedElement.targetEdge, bounds, positionedElement.alignmentEdge, coverTarget, doNotFinalizeReturnEdge, positionedElement.forcedInBounds);\n return {\n elementPosition: finalizedElement,\n targetEdge: positionedElement.targetEdge,\n alignmentEdge: positionedElement.alignmentEdge,\n };\n}\nfunction _positionElement(props, hostElement, elementToPosition, previousPositions) {\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(props, elementToPosition, boundingRect, previousPositions);\n return _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget);\n}\nfunction _positionCallout(props, hostElement, callout, previousPositions, doNotFinalizeReturnEdge) {\n var beakWidth = props.isBeakVisible ? props.beakWidth || 0 : 0;\n var gap = _calculateActualBeakWidthInPixels(beakWidth) / 2 + (props.gapSpace ? props.gapSpace : 0);\n var positionProps = props;\n positionProps.gapSpace = gap;\n var boundingRect = props.bounds\n ? _getRectangleFromIRect(props.bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n var positionedElement = _positionElementRelative(positionProps, callout, boundingRect, previousPositions);\n var beakPositioned = _positionBeak(beakWidth, positionedElement);\n var finalizedBeakPosition = _finalizeBeakPosition(positionedElement, beakPositioned, boundingRect);\n return __assign(__assign({}, _finalizePositionData(positionedElement, hostElement, boundingRect, props.coverTarget, doNotFinalizeReturnEdge)), { beakPosition: finalizedBeakPosition });\n}\nfunction _positionCard(props, hostElement, callout, previousPositions) {\n return _positionCallout(props, hostElement, callout, previousPositions, true);\n}\n// END PRIVATE FUNCTIONS\nexport var __positioningTestPackage = {\n _finalizePositionData: _finalizePositionData,\n _finalizeBeakPosition: _finalizeBeakPosition,\n _calculateActualBeakWidthInPixels: _calculateActualBeakWidthInPixels,\n _positionElementWithinBounds: _positionElementWithinBounds,\n _positionBeak: _positionBeak,\n _getPositionData: _getPositionData,\n _getMaxHeightFromTargetRectangle: _getMaxHeightFromTargetRectangle,\n};\n/**\n * Used to position an element relative to the given positioning props.\n * If positioning has been completed before, previousPositions can be passed to ensure that the positioning element\n * repositions based on its previous targets rather than starting with directionalhint.\n */\nexport function positionElement(props, hostElement, elementToPosition, previousPositions) {\n return _positionElement(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCallout(props, hostElement, elementToPosition, previousPositions) {\n return _positionCallout(props, hostElement, elementToPosition, previousPositions);\n}\nexport function positionCard(props, hostElement, elementToPosition, previousPositions) {\n return _positionCard(props, hostElement, elementToPosition, previousPositions);\n}\n/**\n * Gets the maximum height that a rectangle can have in order to fit below or above a target.\n * If the directional hint specifies a left or right edge (i.e. leftCenter) it will limit the height to the topBorder\n * of the target given.\n * If no bounds are provided then the window is treated as the bounds.\n */\nexport function getMaxHeight(target, targetEdge, gapSpace, bounds, coverTarget) {\n if (gapSpace === void 0) { gapSpace = 0; }\n var mouseTarget = target;\n var elementTarget = target;\n var rectOrPointTarget = target;\n var targetRect;\n var boundingRectangle = bounds\n ? _getRectangleFromIRect(bounds)\n : new Rectangle(0, window.innerWidth - getScrollbarWidth(), 0, window.innerHeight);\n // eslint-disable-next-line deprecation/deprecation\n var left = rectOrPointTarget.left || rectOrPointTarget.x;\n // eslint-disable-next-line deprecation/deprecation\n var top = rectOrPointTarget.top || rectOrPointTarget.y;\n var right = rectOrPointTarget.right || left;\n var bottom = rectOrPointTarget.bottom || top;\n // eslint-disable-next-line no-extra-boolean-cast -- may not actually be a MouseEvent\n if (!!mouseTarget.stopPropagation) {\n targetRect = new Rectangle(mouseTarget.clientX, mouseTarget.clientX, mouseTarget.clientY, mouseTarget.clientY);\n }\n else if (left !== undefined && top !== undefined) {\n targetRect = new Rectangle(left, right, top, bottom);\n }\n else {\n targetRect = _getRectangleFromElement(elementTarget);\n }\n return _getMaxHeightFromTargetRectangle(targetRect, targetEdge, gapSpace, boundingRectangle, coverTarget);\n}\n/**\n * Returns the opposite edge of the given RectangleEdge.\n */\nexport function getOppositeEdge(edge) {\n return edge * -1;\n}\nfunction _getBoundsFromTargetWindow(target, targetWindow) {\n var segments = undefined;\n if (targetWindow.getWindowSegments) {\n segments = targetWindow.getWindowSegments();\n }\n // Identify if we're dealing with single screen scenarios.\n if (segments === undefined || segments.length <= 1) {\n return {\n top: 0,\n left: 0,\n right: targetWindow.innerWidth,\n bottom: targetWindow.innerHeight,\n width: targetWindow.innerWidth,\n height: targetWindow.innerHeight,\n };\n }\n // Logic for determining dual screen scenarios.\n var x = 0;\n var y = 0;\n // If the target is an Element get coordinates for its center.\n if (target !== null && !!target.getBoundingClientRect) {\n var clientRect = target.getBoundingClientRect();\n x = (clientRect.left + clientRect.right) / 2;\n y = (clientRect.top + clientRect.bottom) / 2;\n }\n // If the target is not null get x-axis and y-axis coordinates directly.\n else if (target !== null) {\n // eslint-disable-next-line deprecation/deprecation\n x = target.left || target.x;\n // eslint-disable-next-line deprecation/deprecation\n y = target.top || target.y;\n }\n var bounds = { top: 0, left: 0, right: 0, bottom: 0, width: 0, height: 0 };\n // Define which window segment are the coordinates in and calculate bounds based on that.\n for (var _i = 0, segments_1 = segments; _i < segments_1.length; _i++) {\n var segment = segments_1[_i];\n if (x && segment.left <= x && segment.right >= x && y && segment.top <= y && segment.bottom >= y) {\n bounds = {\n top: segment.top,\n left: segment.left,\n right: segment.right,\n bottom: segment.bottom,\n width: segment.width,\n height: segment.height,\n };\n }\n }\n return bounds;\n}\nexport function getBoundsFromTargetWindow(target, targetWindow) {\n return _getBoundsFromTargetWindow(target, targetWindow);\n}\n//# sourceMappingURL=positioning.js.map","import { Async } from '@fluentui/utilities';\nimport * as React from 'react';\n/**\n * Hook to provide an Async instance that is automatically cleaned up on dismount.\n */\nexport function useAsync() {\n var asyncRef = React.useRef();\n if (!asyncRef.current) {\n asyncRef.current = new Async();\n }\n React.useEffect(function () {\n return function () {\n var _a;\n (_a = asyncRef.current) === null || _a === void 0 ? void 0 : _a.dispose();\n asyncRef.current = undefined;\n };\n }, []);\n return asyncRef.current;\n}\n//# sourceMappingURL=useAsync.js.map","import * as React from 'react';\n/**\n * Hook to initialize and return a constant value. Unlike `React.useMemo`, this is guaranteed to\n * always return the same value (and if the initializer is a function, only call it once).\n * This is similar to setting a private member in a class constructor.\n *\n * If the value should ever change based on dependencies, use `React.useMemo` instead.\n *\n * @param initialValue - Initial value, or function to get the initial value. Similar to `useState`,\n * only the value/function passed in the first time this is called is respected.\n * @returns The value. The identity of this value will always be the same.\n */\nexport function useConst(initialValue) {\n // Use useRef to store the value because it's the least expensive built-in hook that works here\n // (we could also use `const [value] = React.useState(initialValue)` but that's more expensive\n // internally due to reducer handling which we don't need)\n var ref = React.useRef();\n if (ref.current === undefined) {\n // Box the value in an object so we can tell if it's initialized even if the initializer\n // returns/is undefined\n ref.current = {\n value: typeof initialValue === 'function' ? initialValue() : initialValue,\n };\n }\n return ref.current.value;\n}\n//# sourceMappingURL=useConst.js.map","import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Hook to store a value and generate callbacks for setting the value to true or false.\n * The identity of the callbacks will always stay the same.\n *\n * @param initialState - Initial value\n * @returns Array with the current value and an object containing the updater callbacks.\n */\nexport function useBoolean(initialState) {\n var _a = React.useState(initialState), value = _a[0], setValue = _a[1];\n var setTrue = useConst(function () { return function () {\n setValue(true);\n }; });\n var setFalse = useConst(function () { return function () {\n setValue(false);\n }; });\n var toggle = useConst(function () { return function () {\n setValue(function (currentValue) { return !currentValue; });\n }; });\n return [value, { setTrue: setTrue, setFalse: setFalse, toggle: toggle }];\n}\n//# sourceMappingURL=useBoolean.js.map","import * as React from 'react';\nimport { useConst } from './useConst';\nexport function useControllableValue(controlledValue, defaultUncontrolledValue, onChange) {\n var _a = React.useState(defaultUncontrolledValue), value = _a[0], setValue = _a[1];\n var isControlled = useConst(controlledValue !== undefined);\n var currentValue = isControlled ? controlledValue : value;\n // Duplicate the current value and onChange in refs so they're accessible from\n // setValueOrCallOnChange without creating a new callback every time\n var valueRef = React.useRef(currentValue);\n var onChangeRef = React.useRef(onChange);\n React.useEffect(function () {\n valueRef.current = currentValue;\n onChangeRef.current = onChange;\n });\n // To match the behavior of the setter returned by React.useState, this callback's identity\n // should never change. This means it MUST NOT directly reference variables that can change.\n var setValueOrCallOnChange = useConst(function () { return function (update, ev) {\n // Assuming here that TValue is not a function, because a controllable value will typically\n // be something a user can enter as input\n var newValue = typeof update === 'function' ? update(valueRef.current) : update;\n if (onChangeRef.current) {\n onChangeRef.current(ev, newValue);\n }\n if (!isControlled) {\n setValue(newValue);\n }\n }; });\n return [currentValue, setValueOrCallOnChange];\n}\n//# sourceMappingURL=useControllableValue.js.map","import * as React from 'react';\nimport { useConst } from './useConst';\nimport { useIsomorphicLayoutEffect } from '@fluentui/utilities';\n/**\n * Modified `useCallback` that returns the same function reference every time, but internally calls\n * the most-recently passed callback implementation. Can be useful in situations such as:\n * - Event handler dependencies change too frequently, such as user props which might change on\n * every render, or volatile values such as useState/useDispatch\n * - Callback must be referenced in a captured context (such as a window event handler or unmount\n * handler that's registered once) but needs access to the latest props\n *\n * In general, prefer `useCallback` unless you've encountered one of the problems above.\n *\n * https://reactjs.org/docs/hooks-faq.html#how-to-read-an-often-changing-value-from-usecallback\n *\n * @param fn - The callback function that will be used\n * @returns A function which is referentially stable but internally calls the most recently passed callback\n */\nexport function useEventCallback(fn) {\n var callbackRef = React.useRef(function () {\n throw new Error('Cannot call an event handler while rendering');\n });\n useIsomorphicLayoutEffect(function () {\n callbackRef.current = fn;\n }, [fn]);\n // useConst rather than useCallback to ensure the reference is always stable\n // (useCallback's deps list is an optimization, not a guarantee)\n return useConst(function () { return function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n var callback = callbackRef.current;\n return callback.apply(void 0, args);\n }; });\n}\n//# sourceMappingURL=useEventCallback.js.map","import * as React from 'react';\nimport { getId } from '@fluentui/utilities';\n/**\n * Hook to generate a unique ID in the global scope (spanning across duplicate copies of the same library).\n *\n * @param prefix - Optional prefix for the ID\n * @param providedId - Optional id provided by a parent component. Defaults to the provided value if present,\n * without conditioning the hook call\n * @returns The ID\n */\nexport function useId(prefix, providedId) {\n // getId should only be called once since it updates the global constant for the next ID value.\n // (While an extra update isn't likely to cause problems in practice, it's better to avoid it.)\n var ref = React.useRef(providedId);\n if (!ref.current) {\n ref.current = getId(prefix);\n }\n return ref.current;\n}\n//# sourceMappingURL=useId.js.map","import { __spreadArray } from \"tslib\";\nimport * as React from 'react';\n/**\n * React hook to merge multiple React refs (either MutableRefObjects or ref callbacks) into a single ref callback that\n * updates all provided refs\n * @param refs - Refs to collectively update with one ref value.\n * @returns A function with an attached \"current\" prop, so that it can be treated like a RefObject.\n */\nexport function useMergedRefs() {\n var refs = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n refs[_i] = arguments[_i];\n }\n var mergedCallback = React.useCallback(function (value) {\n // Update the \"current\" prop hanging on the function.\n mergedCallback.current = value;\n for (var _i = 0, refs_1 = refs; _i < refs_1.length; _i++) {\n var ref = refs_1[_i];\n if (typeof ref === 'function') {\n ref(value);\n }\n else if (ref) {\n // work around the immutability of the React.Ref type\n ref.current = value;\n }\n }\n }, __spreadArray([], refs, true));\n return mergedCallback;\n}\n//# sourceMappingURL=useMergedRefs.js.map","import { on } from '@fluentui/utilities';\nimport * as React from 'react';\n/**\n * Hook to attach an event handler on mount and handle cleanup.\n * @param element - Element (or ref to an element) to attach the event handler to\n * @param eventName - The event to attach a handler for\n * @param callback - The handler for the event\n * @param useCapture - Whether or not to attach the handler for the capture phase\n */\nexport function useOnEvent(element, eventName, callback, useCapture) {\n // Use a ref for the callback to prevent repeatedly attaching/unattaching callbacks that are unstable across renders\n var callbackRef = React.useRef(callback);\n callbackRef.current = callback;\n React.useEffect(function () {\n var actualElement = element && 'current' in element ? element.current : element;\n if (!actualElement || !actualElement.addEventListener) {\n return;\n }\n var dispose = on(actualElement, eventName, function (ev) { return callbackRef.current(ev); }, useCapture);\n return dispose;\n }, [element, eventName, useCapture]);\n}\n//# sourceMappingURL=useOnEvent.js.map","import { useRef, useEffect } from 'react';\n/**\n * Hook keeping track of a given value from a previous execution of the component the Hook is used in.\n *\n * See [React Hooks FAQ](https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state)\n */\nexport function usePrevious(value) {\n var ref = useRef();\n useEffect(function () {\n ref.current = value;\n });\n return ref.current;\n}\n//# sourceMappingURL=usePrevious.js.map","import * as React from 'react';\n/**\n * Creates a ref, and calls a callback whenever the ref changes to a non-null value. The callback can optionally return\n * a cleanup function that'll be called before the value changes, and when the ref is unmounted.\n *\n * This can be used to work around a limitation that useEffect cannot depend on `ref.current` (see\n * https://github.com/facebook/react/issues/14387#issuecomment-503616820).\n *\n * Usage example:\n * ```ts\n * const myRef = useRefEffect(element => {\n * ...\n * return () => { ... cleanup ... };\n * });\n * ```\n * ```jsx\n *
\n * ```\n *\n * @param callback - Called whenever the ref's value changes to non-null. Can optionally return a cleanup function.\n * @param initial - (Optional) The initial value for the ref.\n *\n * @returns A function that should be called to set the ref's value. The object also has a `.current` member that can be\n * used to access the ref's value (like a normal RefObject). It can be hooked up to an element's `ref` property.\n */\nexport function useRefEffect(callback, initial) {\n if (initial === void 0) { initial = null; }\n var createRefCallback = function () {\n var refCallback = function (value) {\n if (data.ref.current !== value) {\n if (data.cleanup) {\n data.cleanup();\n data.cleanup = undefined;\n }\n data.ref.current = value;\n if (value !== null) {\n data.cleanup = data.callback(value);\n }\n }\n };\n refCallback.current = initial;\n return refCallback;\n };\n var data = React.useRef({\n ref: createRefCallback(),\n callback: callback,\n }).current;\n data.callback = callback;\n return data.ref;\n}\n//# sourceMappingURL=useRefEffect.js.map","import * as React from 'react';\nimport { useConst } from './useConst';\n/**\n * Returns a wrapper function for `setTimeout` which automatically handles disposal.\n */\nexport var useSetTimeout = function () {\n var timeoutIds = useConst({});\n // Cleanup function.\n React.useEffect(function () { return function () {\n for (var _i = 0, _a = Object.keys(timeoutIds); _i < _a.length; _i++) {\n var id = _a[_i];\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n clearTimeout(id);\n }\n }; }, \n // useConst ensures this will never change, but react-hooks/exhaustive-deps doesn't know that\n [timeoutIds]);\n // Return wrapper which will auto cleanup.\n return useConst({\n setTimeout: function (func, duration) {\n var id = setTimeout(func, duration);\n timeoutIds[id] = 1;\n return id;\n },\n clearTimeout: function (id) {\n delete timeoutIds[id];\n clearTimeout(id);\n },\n });\n};\n//# sourceMappingURL=useSetTimeout.js.map","import * as React from 'react';\n/**\n * Context for providing the window.\n */\n// eslint-disable-next-line @fluentui/no-context-default-value\nexport var WindowContext = React.createContext({\n window: typeof window === 'object' ? window : undefined,\n});\n/**\n * Hook to access the window object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useWindow = function () { return React.useContext(WindowContext).window; };\n/**\n * Hook to access the document object. This can be overridden contextually using the `WindowProvider`.\n */\nexport var useDocument = function () { var _a; return (_a = React.useContext(WindowContext).window) === null || _a === void 0 ? void 0 : _a.document; };\n/**\n * Component to provide the window object contextually. This is useful when rendering content to an element\n * contained within a child window or iframe element, where event handlers and styling must be projected\n * to an alternative window or document.\n */\nexport var WindowProvider = function (props) {\n return React.createElement(WindowContext.Provider, { value: props }, props.children);\n};\n//# sourceMappingURL=WindowProvider.js.map","import { getDocument } from '@fluentui/utilities';\nimport * as React from 'react';\nimport { useWindow } from '@fluentui/react-window-provider';\n/**\n * Hook to calculate and cache the target element specified by the given target attribute,\n * as well as the target element's (or host element's) parent window\n * @param target- Target selector passed to the component as a property, describing the element that\n * the callout should target\n * @param hostElement- The callout's host element, used for determining the parent window.\n */\nexport function useTarget(target, hostElement) {\n var previousTargetProp = React.useRef();\n var targetRef = React.useRef(null);\n /**\n * Stores an instance of Window, used to check\n * for server side rendering and if focus was lost.\n */\n var targetWindow = useWindow();\n // If the target element changed, find the new one. If we are tracking\n // target with class name, always find element because we do not know if\n // fabric has rendered a new element and disposed the old element.\n if (!target || target !== previousTargetProp.current || typeof target === 'string') {\n var currentElement = hostElement === null || hostElement === void 0 ? void 0 : hostElement.current;\n if (target) {\n if (typeof target === 'string') {\n var currentDoc = getDocument(currentElement);\n targetRef.current = currentDoc ? currentDoc.querySelector(target) : null;\n }\n else if ('stopPropagation' in target) {\n targetRef.current = target;\n }\n else if ('getBoundingClientRect' in target) {\n targetRef.current = target;\n }\n else if ('current' in target) {\n targetRef.current = target.current;\n }\n else {\n targetRef.current = target;\n }\n }\n previousTargetProp.current = target;\n }\n return [targetRef, targetWindow];\n}\n//# sourceMappingURL=useTarget.js.map","import * as React from 'react';\n/**\n * Hook which synchronously executes a callback when the component is about to unmount.\n *\n * @param callback - Function to call during unmount.\n */\nexport var useUnmount = function (callback) {\n var unmountRef = React.useRef(callback);\n unmountRef.current = callback;\n React.useEffect(function () { return function () {\n var _a;\n (_a = unmountRef.current) === null || _a === void 0 ? void 0 : _a.call(unmountRef);\n }; }, []);\n};\n//# sourceMappingURL=useUnmount.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { KeyCodes, divProperties, doesElementContainFocus, getDocument, getNativeProps, getPropsWithDefaults, getWindow, modalize, } from '../../Utilities';\nimport { useMergedRefs, useAsync, useOnEvent } from '@fluentui/react-hooks';\nimport { useWindow } from '@fluentui/react-window-provider';\nfunction useScrollbarAsync(props, root) {\n var async = useAsync();\n var _a = React.useState(false), needsVerticalScrollBarState = _a[0], setNeedsVerticalScrollBar = _a[1];\n React.useEffect(function () {\n async.requestAnimationFrame(function () {\n var _a;\n // If overflowY is overridden, don't waste time calculating whether the scrollbar is necessary.\n if (props.style && props.style.overflowY) {\n return;\n }\n var needsVerticalScrollBar = false;\n if (root && root.current && ((_a = root.current) === null || _a === void 0 ? void 0 : _a.firstElementChild)) {\n // ClientHeight returns the client height of an element rounded to an\n // integer. On some browsers at different zoom levels this rounding\n // can generate different results for the root container and child even\n // though they are the same height. This causes us to show a scroll bar\n // when not needed. Ideally we would use BoundingClientRect().height\n // instead however seems that the API is 90% slower than using ClientHeight.\n // Therefore instead we will calculate the difference between heights and\n // allow for a 1px difference to still be considered ok and not show the\n // scroll bar.\n var rootHeight = root.current.clientHeight;\n var firstChildHeight = root.current.firstElementChild.clientHeight;\n if (rootHeight > 0 && firstChildHeight > rootHeight) {\n needsVerticalScrollBar = firstChildHeight - rootHeight > 1;\n }\n }\n if (needsVerticalScrollBarState !== needsVerticalScrollBar) {\n setNeedsVerticalScrollBar(needsVerticalScrollBar);\n }\n });\n return function () { return async.dispose(); };\n });\n return needsVerticalScrollBarState;\n}\nfunction defaultFocusRestorer(options) {\n var originalElement = options.originalElement, containsFocus = options.containsFocus;\n if (originalElement && containsFocus && originalElement !== getWindow()) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n // This is wrapped in a setTimeout because of a React 16 bug that is resolved in 17.\n // Once we move to 17, the setTimeout should be removed (ref: https://github.com/facebook/react/issues/17894#issuecomment-656094405)\n setTimeout(function () {\n var _a;\n (_a = originalElement.focus) === null || _a === void 0 ? void 0 : _a.call(originalElement);\n }, 0);\n }\n}\nfunction useRestoreFocus(props, root) {\n var _a = props.onRestoreFocus, onRestoreFocus = _a === void 0 ? defaultFocusRestorer : _a;\n var originalFocusedElement = React.useRef();\n var containsFocus = React.useRef(false);\n React.useEffect(function () {\n originalFocusedElement.current = getDocument().activeElement;\n if (doesElementContainFocus(root.current)) {\n containsFocus.current = true;\n }\n return function () {\n var _a;\n onRestoreFocus === null || onRestoreFocus === void 0 ? void 0 : onRestoreFocus({\n originalElement: originalFocusedElement.current,\n containsFocus: containsFocus.current,\n documentContainsFocus: ((_a = getDocument()) === null || _a === void 0 ? void 0 : _a.hasFocus()) || false,\n });\n // De-reference DOM Node to avoid retainment via transpiled closure of _onKeyDown\n originalFocusedElement.current = undefined;\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run on first render\n }, []);\n useOnEvent(root, 'focus', React.useCallback(function () {\n containsFocus.current = true;\n }, []), true);\n useOnEvent(root, 'blur', React.useCallback(function (ev) {\n /** The popup should update this._containsFocus when:\n * relatedTarget exists AND\n * the relatedTarget is not contained within the popup.\n * If the relatedTarget is within the popup, that means the popup still has focus\n * and focused moved from one element to another within the popup.\n * If relatedTarget is undefined or null that usually means that a\n * keyboard event occurred and focus didn't change\n */\n if (root.current && ev.relatedTarget && !root.current.contains(ev.relatedTarget)) {\n containsFocus.current = false;\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run on first render\n }, []), true);\n}\nfunction useHideSiblingNodes(props, root) {\n // eslint-disable-next-line deprecation/deprecation\n var shouldHideSiblings = String(props['aria-modal']).toLowerCase() === 'true' && props.enableAriaHiddenSiblings;\n React.useEffect(function () {\n if (!(shouldHideSiblings && root.current)) {\n return;\n }\n var unmodalize = modalize(root.current);\n return unmodalize;\n }, [root, shouldHideSiblings]);\n}\n/**\n * This adds accessibility to Dialog and Panel controls\n */\nexport var Popup = React.forwardRef(function (propsWithoutDefaults, forwardedRef) {\n var props = getPropsWithDefaults({ shouldRestoreFocus: true, enableAriaHiddenSiblings: true }, propsWithoutDefaults);\n var root = React.useRef();\n var mergedRootRef = useMergedRefs(root, forwardedRef);\n useHideSiblingNodes(props, root);\n useRestoreFocus(props, root);\n var role = props.role, className = props.className, ariaLabel = props.ariaLabel, ariaLabelledBy = props.ariaLabelledBy, ariaDescribedBy = props.ariaDescribedBy, style = props.style, children = props.children, onDismiss = props.onDismiss;\n var needsVerticalScrollBar = useScrollbarAsync(props, root);\n var onKeyDown = React.useCallback(function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n switch (ev.which) {\n case KeyCodes.escape:\n if (onDismiss) {\n onDismiss(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n break;\n }\n }, [onDismiss]);\n var win = useWindow();\n useOnEvent(win, 'keydown', onKeyDown);\n return (React.createElement(\"div\", __assign({ ref: mergedRootRef }, getNativeProps(props, divProperties), { className: className, role: role, \"aria-label\": ariaLabel, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy, onKeyDown: onKeyDown, style: __assign({ overflowY: needsVerticalScrollBar ? 'scroll' : undefined, outline: 'none' }, style) }), children));\n});\nPopup.displayName = 'Popup';\n//# sourceMappingURL=Popup.js.map","var _a;\nimport { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { css, divProperties, elementContains, focusFirstChild, getNativeProps, on, shallowCompare, getPropsWithDefaults, } from '../../Utilities';\nimport { positionCallout, RectangleEdge, positionCard, getBoundsFromTargetWindow } from '../../Positioning';\nimport { Popup } from '../../Popup';\nimport { classNamesFunction } from '../../Utilities';\nimport { AnimationClassNames } from '../../Styling';\nimport { useMergedRefs, useAsync, useConst, useTarget, useOnEvent } from '@fluentui/react-hooks';\nvar COMPONENT_NAME = 'CalloutContentBase';\nvar ANIMATIONS = (_a = {},\n _a[RectangleEdge.top] = AnimationClassNames.slideUpIn10,\n _a[RectangleEdge.bottom] = AnimationClassNames.slideDownIn10,\n _a[RectangleEdge.left] = AnimationClassNames.slideLeftIn10,\n _a[RectangleEdge.right] = AnimationClassNames.slideRightIn10,\n _a);\nvar BEAK_ORIGIN_POSITION = { top: 0, left: 0 };\n// Microsoft Edge will overwrite inline styles if there is an animation pertaining to that style.\n// To help ensure that edge will respect the offscreen style opacity\n// filter needs to be added as an additional way to set opacity.\n// Also set pointer-events: none so that the callout will not occlude the element it is\n// going to be positioned against\nvar OFF_SCREEN_STYLE = {\n opacity: 0,\n filter: 'opacity(0)',\n pointerEvents: 'none',\n};\n// role and role description go hand-in-hand. Both would be included by spreading getNativeProps for a basic element\n// This constant array can be used to filter these out of native props spread on callout root and apply them together on\n// calloutMain (the Popup component within the callout)\nvar ARIA_ROLE_ATTRIBUTES = ['role', 'aria-roledescription'];\nvar DEFAULT_PROPS = {\n preventDismissOnLostFocus: false,\n preventDismissOnScroll: false,\n preventDismissOnResize: false,\n isBeakVisible: true,\n beakWidth: 16,\n gapSpace: 0,\n minPagePadding: 8,\n directionalHint: DirectionalHint.bottomAutoEdge,\n};\nvar getClassNames = classNamesFunction({\n disableCaching: true, // disabling caching because stylesProp.position mutates often\n});\n/**\n * (Hook) to return a function to lazily fetch the bounds of the target element for the callout.\n */\nfunction useBounds(_a, targetRef, targetWindow) {\n var bounds = _a.bounds, _b = _a.minPagePadding, minPagePadding = _b === void 0 ? DEFAULT_PROPS.minPagePadding : _b, target = _a.target;\n var _c = React.useState(false), targetWindowResized = _c[0], setTargetWindowResized = _c[1];\n var cachedBounds = React.useRef();\n var getBounds = React.useCallback(function () {\n if (!cachedBounds.current || targetWindowResized) {\n var currentBounds = typeof bounds === 'function' ? (targetWindow ? bounds(target, targetWindow) : undefined) : bounds;\n if (!currentBounds && targetWindow) {\n currentBounds = getBoundsFromTargetWindow(targetRef.current, targetWindow);\n currentBounds = {\n top: currentBounds.top + minPagePadding,\n left: currentBounds.left + minPagePadding,\n right: currentBounds.right - minPagePadding,\n bottom: currentBounds.bottom - minPagePadding,\n width: currentBounds.width - minPagePadding * 2,\n height: currentBounds.height - minPagePadding * 2,\n };\n }\n cachedBounds.current = currentBounds;\n targetWindowResized && setTargetWindowResized(false);\n }\n return cachedBounds.current;\n }, [bounds, minPagePadding, target, targetRef, targetWindow, targetWindowResized]);\n var async = useAsync();\n useOnEvent(targetWindow, 'resize', async.debounce(function () {\n setTargetWindowResized(true);\n }, 500, { leading: true }));\n return getBounds;\n}\n/**\n * (Hook) to return the maximum available height for the Callout to render into.\n */\nfunction useMaxHeight(_a, getBounds, positions) {\n var _b;\n var calloutMaxHeight = _a.calloutMaxHeight, finalHeight = _a.finalHeight, directionalHint = _a.directionalHint, directionalHintFixed = _a.directionalHintFixed, hidden = _a.hidden;\n var _c = React.useState(), maxHeight = _c[0], setMaxHeight = _c[1];\n var _d = (_b = positions === null || positions === void 0 ? void 0 : positions.elementPosition) !== null && _b !== void 0 ? _b : {}, top = _d.top, bottom = _d.bottom;\n React.useEffect(function () {\n var _a;\n var _b = (_a = getBounds()) !== null && _a !== void 0 ? _a : {}, topBounds = _b.top, bottomBounds = _b.bottom;\n var calculatedHeight;\n if (typeof top === 'number' && bottomBounds) {\n calculatedHeight = bottomBounds - top;\n }\n else if (typeof bottom === 'number' && typeof topBounds === 'number' && bottomBounds) {\n calculatedHeight = bottomBounds - topBounds - bottom;\n }\n if ((!calloutMaxHeight && !hidden) ||\n (calloutMaxHeight && calculatedHeight && calloutMaxHeight > calculatedHeight)) {\n setMaxHeight(calculatedHeight);\n }\n else if (calloutMaxHeight) {\n setMaxHeight(calloutMaxHeight);\n }\n else {\n setMaxHeight(undefined);\n }\n }, [bottom, calloutMaxHeight, finalHeight, directionalHint, directionalHintFixed, getBounds, hidden, positions, top]);\n return maxHeight;\n}\n/**\n * (Hook) to find the current position of Callout. If Callout is resized then a new position is calculated.\n */\nfunction usePositions(props, hostElement, calloutElement, targetRef, getBounds) {\n var _a = React.useState(), positions = _a[0], setPositions = _a[1];\n var positionAttempts = React.useRef(0);\n var previousTarget = React.useRef();\n var async = useAsync();\n var hidden = props.hidden, target = props.target, finalHeight = props.finalHeight, calloutMaxHeight = props.calloutMaxHeight, onPositioned = props.onPositioned, directionalHint = props.directionalHint;\n React.useEffect(function () {\n if (!hidden) {\n var timerId_1 = async.requestAnimationFrame(function () {\n var _a, _b;\n if (hostElement.current && calloutElement) {\n var currentProps = __assign(__assign({}, props), { target: targetRef.current, bounds: getBounds() });\n // duplicate calloutElement & remove useMaxHeight's maxHeight for position calc\n var dupeCalloutElement = calloutElement.cloneNode(true);\n dupeCalloutElement.style.maxHeight = calloutMaxHeight ? \"\".concat(calloutMaxHeight) : '';\n dupeCalloutElement.style.visibility = 'hidden';\n (_a = calloutElement.parentElement) === null || _a === void 0 ? void 0 : _a.appendChild(dupeCalloutElement);\n var previousPositions = previousTarget.current === target ? positions : undefined;\n // If there is a finalHeight given then we assume that the user knows and will handle\n // additional positioning adjustments so we should call positionCard\n var newPositions = finalHeight\n ? positionCard(currentProps, hostElement.current, dupeCalloutElement, previousPositions)\n : positionCallout(currentProps, hostElement.current, dupeCalloutElement, previousPositions);\n // clean up duplicate calloutElement\n (_b = calloutElement.parentElement) === null || _b === void 0 ? void 0 : _b.removeChild(dupeCalloutElement);\n // Set the new position only when the positions do not exist or one of the new callout positions\n // is different. The position should not change if the position is within 2 decimal places.\n if ((!positions && newPositions) ||\n (positions && newPositions && !arePositionsEqual(positions, newPositions) && positionAttempts.current < 5)) {\n // We should not reposition the callout more than a few times, if it is then the content is likely resizing\n // and we should stop trying to reposition to prevent a stack overflow.\n positionAttempts.current++;\n setPositions(newPositions);\n }\n else if (positionAttempts.current > 0) {\n // Only call the onPositioned callback if the callout has been re-positioned at least once.\n positionAttempts.current = 0;\n onPositioned === null || onPositioned === void 0 ? void 0 : onPositioned(positions);\n }\n }\n }, calloutElement);\n previousTarget.current = target;\n return function () {\n async.cancelAnimationFrame(timerId_1);\n previousTarget.current = undefined;\n };\n }\n else {\n // When the callout is hidden, clear position state so that it is not accidentally used next render.\n setPositions(undefined);\n positionAttempts.current = 0;\n }\n }, [\n hidden,\n directionalHint,\n async,\n calloutElement,\n calloutMaxHeight,\n hostElement,\n targetRef,\n finalHeight,\n getBounds,\n onPositioned,\n positions,\n props,\n target,\n ]);\n return positions;\n}\n/**\n * (Hook) to set up behavior to automatically focus the callout when it appears, if indicated by props.\n */\nfunction useAutoFocus(_a, positions, calloutElement) {\n var hidden = _a.hidden, setInitialFocus = _a.setInitialFocus;\n var async = useAsync();\n var hasPositions = !!positions;\n React.useEffect(function () {\n if (!hidden && setInitialFocus && hasPositions && calloutElement) {\n var timerId_2 = async.requestAnimationFrame(function () { return focusFirstChild(calloutElement); }, calloutElement);\n return function () { return async.cancelAnimationFrame(timerId_2); };\n }\n }, [hidden, hasPositions, async, calloutElement, setInitialFocus]);\n}\n/**\n * (Hook) to set up various handlers to dismiss the popup when it loses focus or the window scrolls or similar cases.\n */\nfunction useDismissHandlers(_a, positions, hostElement, targetRef, targetWindow) {\n var hidden = _a.hidden, onDismiss = _a.onDismiss, \n // eslint-disable-next-line deprecation/deprecation\n preventDismissOnScroll = _a.preventDismissOnScroll, \n // eslint-disable-next-line deprecation/deprecation\n preventDismissOnResize = _a.preventDismissOnResize, \n // eslint-disable-next-line deprecation/deprecation\n preventDismissOnLostFocus = _a.preventDismissOnLostFocus, dismissOnTargetClick = _a.dismissOnTargetClick, shouldDismissOnWindowFocus = _a.shouldDismissOnWindowFocus, preventDismissOnEvent = _a.preventDismissOnEvent;\n var isMouseDownOnPopup = React.useRef(false);\n var async = useAsync();\n var mouseDownHandlers = useConst([\n function () {\n isMouseDownOnPopup.current = true;\n },\n function () {\n isMouseDownOnPopup.current = false;\n },\n ]);\n var positionsExists = !!positions;\n React.useEffect(function () {\n var dismissOnScroll = function (ev) {\n if (positionsExists && !preventDismissOnScroll) {\n dismissOnClickOrScroll(ev);\n }\n };\n var dismissOnResize = function (ev) {\n if (!preventDismissOnResize && !(preventDismissOnEvent && preventDismissOnEvent(ev))) {\n onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss(ev);\n }\n };\n var dismissOnLostFocus = function (ev) {\n if (!preventDismissOnLostFocus) {\n dismissOnClickOrScroll(ev);\n }\n };\n var dismissOnClickOrScroll = function (ev) {\n var eventPaths = ev.composedPath ? ev.composedPath() : [];\n var target = eventPaths.length > 0 ? eventPaths[0] : ev.target;\n var isEventTargetOutsideCallout = hostElement.current && !elementContains(hostElement.current, target);\n // If mouse is pressed down on callout but moved outside then released, don't dismiss the callout.\n if (isEventTargetOutsideCallout && isMouseDownOnPopup.current) {\n isMouseDownOnPopup.current = false;\n return;\n }\n if ((!targetRef.current && isEventTargetOutsideCallout) ||\n (ev.target !== targetWindow &&\n isEventTargetOutsideCallout &&\n (!targetRef.current ||\n 'stopPropagation' in targetRef.current ||\n dismissOnTargetClick ||\n (target !== targetRef.current && !elementContains(targetRef.current, target))))) {\n if (preventDismissOnEvent && preventDismissOnEvent(ev)) {\n return;\n }\n onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss(ev);\n }\n };\n var dismissOnTargetWindowBlur = function (ev) {\n // Do nothing\n if (!shouldDismissOnWindowFocus) {\n return;\n }\n if (((preventDismissOnEvent && !preventDismissOnEvent(ev)) ||\n (!preventDismissOnEvent && !preventDismissOnLostFocus)) &&\n !(targetWindow === null || targetWindow === void 0 ? void 0 : targetWindow.document.hasFocus()) &&\n ev.relatedTarget === null) {\n onDismiss === null || onDismiss === void 0 ? void 0 : onDismiss(ev);\n }\n };\n // This is added so the callout will dismiss when the window is scrolled\n // but not when something inside the callout is scrolled. The delay seems\n // to be required to avoid React firing an async focus event in IE from\n // the target changing focus quickly prior to rendering the callout.\n var disposablesPromise = new Promise(function (resolve) {\n async.setTimeout(function () {\n if (!hidden && targetWindow) {\n var disposables_1 = [\n on(targetWindow, 'scroll', dismissOnScroll, true),\n on(targetWindow, 'resize', dismissOnResize, true),\n on(targetWindow.document.documentElement, 'focus', dismissOnLostFocus, true),\n on(targetWindow.document.documentElement, 'click', dismissOnLostFocus, true),\n on(targetWindow, 'blur', dismissOnTargetWindowBlur, true),\n ];\n resolve(function () {\n disposables_1.forEach(function (dispose) { return dispose(); });\n });\n }\n }, 0);\n });\n return function () {\n disposablesPromise.then(function (dispose) { return dispose(); });\n };\n }, [\n hidden,\n async,\n hostElement,\n targetRef,\n targetWindow,\n onDismiss,\n shouldDismissOnWindowFocus,\n dismissOnTargetClick,\n preventDismissOnLostFocus,\n preventDismissOnResize,\n preventDismissOnScroll,\n positionsExists,\n preventDismissOnEvent,\n ]);\n return mouseDownHandlers;\n}\nexport var CalloutContentBase = React.memo(React.forwardRef(function (propsWithoutDefaults, forwardedRef) {\n var props = getPropsWithDefaults(DEFAULT_PROPS, propsWithoutDefaults);\n var styles = props.styles, style = props.style, ariaLabel = props.ariaLabel, ariaDescribedBy = props.ariaDescribedBy, ariaLabelledBy = props.ariaLabelledBy, className = props.className, isBeakVisible = props.isBeakVisible, children = props.children, beakWidth = props.beakWidth, calloutWidth = props.calloutWidth, calloutMaxWidth = props.calloutMaxWidth, calloutMinWidth = props.calloutMinWidth, doNotLayer = props.doNotLayer, finalHeight = props.finalHeight, _a = props.hideOverflow, hideOverflow = _a === void 0 ? !!finalHeight : _a, backgroundColor = props.backgroundColor, calloutMaxHeight = props.calloutMaxHeight, onScroll = props.onScroll, \n // eslint-disable-next-line deprecation/deprecation\n _b = props.shouldRestoreFocus, \n // eslint-disable-next-line deprecation/deprecation\n shouldRestoreFocus = _b === void 0 ? true : _b, target = props.target, hidden = props.hidden, onLayerMounted = props.onLayerMounted, popupProps = props.popupProps;\n var hostElement = React.useRef(null);\n var _c = React.useState(null), calloutElement = _c[0], setCalloutElement = _c[1];\n var calloutCallback = React.useCallback(function (calloutEl) {\n setCalloutElement(calloutEl);\n }, []);\n var rootRef = useMergedRefs(hostElement, forwardedRef);\n var _d = useTarget(props.target, {\n current: calloutElement,\n }), targetRef = _d[0], targetWindow = _d[1];\n var getBounds = useBounds(props, targetRef, targetWindow);\n var positions = usePositions(props, hostElement, calloutElement, targetRef, getBounds);\n var maxHeight = useMaxHeight(props, getBounds, positions);\n var _e = useDismissHandlers(props, positions, hostElement, targetRef, targetWindow), mouseDownOnPopup = _e[0], mouseUpOnPopup = _e[1];\n // do not set both top and bottom css props from positions\n // instead, use maxHeight\n var isForcedInBounds = (positions === null || positions === void 0 ? void 0 : positions.elementPosition.top) && (positions === null || positions === void 0 ? void 0 : positions.elementPosition.bottom);\n var cssPositions = __assign(__assign({}, positions === null || positions === void 0 ? void 0 : positions.elementPosition), { maxHeight: maxHeight });\n if (isForcedInBounds) {\n cssPositions.bottom = undefined;\n }\n useAutoFocus(props, positions, calloutElement);\n React.useEffect(function () {\n if (!hidden) {\n onLayerMounted === null || onLayerMounted === void 0 ? void 0 : onLayerMounted();\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run if hidden changes\n }, [hidden]);\n // If there is no target window then we are likely in server side rendering and we should not render anything.\n if (!targetWindow) {\n return null;\n }\n var overflowYHidden = hideOverflow;\n var beakVisible = isBeakVisible && !!target;\n var classNames = getClassNames(styles, {\n theme: props.theme,\n className: className,\n overflowYHidden: overflowYHidden,\n calloutWidth: calloutWidth,\n positions: positions,\n beakWidth: beakWidth,\n backgroundColor: backgroundColor,\n calloutMaxWidth: calloutMaxWidth,\n calloutMinWidth: calloutMinWidth,\n doNotLayer: doNotLayer,\n });\n var overflowStyle = __assign(__assign({ maxHeight: calloutMaxHeight ? calloutMaxHeight : '100%' }, style), (overflowYHidden && { overflowY: 'hidden' }));\n var visibilityStyle = props.hidden ? { visibility: 'hidden' } : undefined;\n // React.CSSProperties does not understand IRawStyle, so the inline animations will need to be cast as any for now.\n return (React.createElement(\"div\", { ref: rootRef, className: classNames.container, style: visibilityStyle },\n React.createElement(\"div\", __assign({}, getNativeProps(props, divProperties, ARIA_ROLE_ATTRIBUTES), { className: css(classNames.root, positions && positions.targetEdge && ANIMATIONS[positions.targetEdge]), style: positions ? __assign({}, cssPositions) : OFF_SCREEN_STYLE, \n // Safari and Firefox on Mac OS requires this to back-stop click events so focus remains in the Callout.\n // See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#Clicking_and_focus\n tabIndex: -1, ref: calloutCallback }),\n beakVisible && React.createElement(\"div\", { className: classNames.beak, style: getBeakPosition(positions) }),\n beakVisible && React.createElement(\"div\", { className: classNames.beakCurtain }),\n React.createElement(Popup\n // don't use getNativeElementProps for role and roledescription because it will also\n // pass through data-* props (resulting in them being used in two places)\n , __assign({ \n // don't use getNativeElementProps for role and roledescription because it will also\n // pass through data-* props (resulting in them being used in two places)\n role: props.role, \"aria-roledescription\": props['aria-roledescription'], ariaDescribedBy: ariaDescribedBy, ariaLabel: ariaLabel, ariaLabelledBy: ariaLabelledBy, className: classNames.calloutMain, onDismiss: props.onDismiss, onMouseDown: mouseDownOnPopup, onMouseUp: mouseUpOnPopup, onRestoreFocus: props.onRestoreFocus, onScroll: onScroll, shouldRestoreFocus: shouldRestoreFocus, style: overflowStyle }, popupProps), children))));\n}), function (previousProps, nextProps) {\n if (!nextProps.shouldUpdateWhenHidden && previousProps.hidden && nextProps.hidden) {\n // Do not update when hidden.\n return true;\n }\n return shallowCompare(previousProps, nextProps);\n});\n/**\n * (Utility) to find and return the current `Callout` Beak position.\n *\n * @param positions\n */\nfunction getBeakPosition(positions) {\n var _a, _b;\n var beakPositionStyle = __assign(__assign({}, (_a = positions === null || positions === void 0 ? void 0 : positions.beakPosition) === null || _a === void 0 ? void 0 : _a.elementPosition), { display: ((_b = positions === null || positions === void 0 ? void 0 : positions.beakPosition) === null || _b === void 0 ? void 0 : _b.hideBeak) ? 'none' : undefined });\n if (!beakPositionStyle.top && !beakPositionStyle.bottom && !beakPositionStyle.left && !beakPositionStyle.right) {\n beakPositionStyle.left = BEAK_ORIGIN_POSITION.left;\n beakPositionStyle.top = BEAK_ORIGIN_POSITION.top;\n }\n return beakPositionStyle;\n}\n/**\n * (Utility) used to compare two different elementPositions to determine whether they are equal.\n *\n * @param prevElementPositions\n * @param newElementPosition\n */\nfunction arePositionsEqual(prevElementPositions, newElementPosition) {\n return (comparePositions(prevElementPositions.elementPosition, newElementPosition.elementPosition) &&\n comparePositions(prevElementPositions.beakPosition.elementPosition, newElementPosition.beakPosition.elementPosition));\n}\n/**\n * (Utility) used in **arePositionsEqual** to compare two different elementPositions.\n *\n * @param prevElementPositions\n * @param newElementPositions\n */\nfunction comparePositions(prevElementPositions, newElementPositions) {\n for (var key in newElementPositions) {\n if (newElementPositions.hasOwnProperty(key)) {\n var oldPositionEdge = prevElementPositions[key];\n var newPositionEdge = newElementPositions[key];\n if (oldPositionEdge !== undefined && newPositionEdge !== undefined) {\n if (oldPositionEdge.toFixed(2) !== newPositionEdge.toFixed(2)) {\n return false;\n }\n }\n else {\n return false;\n }\n }\n }\n return true;\n}\nCalloutContentBase.displayName = COMPONENT_NAME;\n//# sourceMappingURL=CalloutContent.base.js.map","import { HighContrastSelector, focusClear, getGlobalClassNames, ZIndexes } from '../../Styling';\nfunction getBeakStyle(beakWidth) {\n return {\n height: beakWidth,\n width: beakWidth,\n };\n}\nvar GlobalClassNames = {\n container: 'ms-Callout-container',\n root: 'ms-Callout',\n beak: 'ms-Callout-beak',\n beakCurtain: 'ms-Callout-beakCurtain',\n calloutMain: 'ms-Callout-main',\n};\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, overflowYHidden = props.overflowYHidden, calloutWidth = props.calloutWidth, beakWidth = props.beakWidth, backgroundColor = props.backgroundColor, calloutMaxWidth = props.calloutMaxWidth, calloutMinWidth = props.calloutMinWidth, doNotLayer = props.doNotLayer;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var semanticColors = theme.semanticColors, effects = theme.effects;\n return {\n container: [\n classNames.container,\n {\n position: 'relative',\n },\n ],\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n position: 'absolute',\n display: 'flex',\n zIndex: doNotLayer ? ZIndexes.Layer : undefined,\n boxSizing: 'border-box',\n borderRadius: effects.roundedCorner2,\n boxShadow: effects.elevation16,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: 'WindowText',\n },\n _a),\n },\n focusClear(),\n className,\n !!calloutWidth && { width: calloutWidth },\n !!calloutMaxWidth && { maxWidth: calloutMaxWidth },\n !!calloutMinWidth && { minWidth: calloutMinWidth },\n ],\n beak: [\n classNames.beak,\n {\n position: 'absolute',\n backgroundColor: semanticColors.menuBackground,\n boxShadow: 'inherit',\n border: 'inherit',\n boxSizing: 'border-box',\n transform: 'rotate(45deg)',\n },\n getBeakStyle(beakWidth),\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n beakCurtain: [\n classNames.beakCurtain,\n {\n position: 'absolute',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n backgroundColor: semanticColors.menuBackground,\n borderRadius: effects.roundedCorner2,\n },\n ],\n calloutMain: [\n classNames.calloutMain,\n {\n backgroundColor: semanticColors.menuBackground,\n overflowX: 'hidden',\n overflowY: 'auto',\n position: 'relative',\n width: '100%',\n borderRadius: effects.roundedCorner2,\n },\n overflowYHidden && {\n overflowY: 'hidden',\n },\n backgroundColor && {\n backgroundColor: backgroundColor,\n },\n ],\n };\n};\n//# sourceMappingURL=CalloutContent.styles.js.map","import { styled } from '../../Utilities';\nimport { CalloutContentBase } from './CalloutContent.base';\nimport { getStyles } from './CalloutContent.styles';\nexport var CalloutContent = styled(CalloutContentBase, getStyles, undefined, {\n scope: 'CalloutContent',\n});\n//# sourceMappingURL=CalloutContent.js.map","import * as React from 'react';\nconst PortalCompatContext = React.createContext(undefined);\nconst portalCompatContextDefaultValue = ()=>()=>undefined;\nexport const PortalCompatContextProvider = PortalCompatContext.Provider;\nexport function usePortalCompat() {\n var _React_useContext;\n return (_React_useContext = React.useContext(PortalCompatContext)) !== null && _React_useContext !== void 0 ? _React_useContext : portalCompatContextDefaultValue;\n}\n","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, divProperties, getDocument, getNativeProps, getRTL, memoizeFunction, Customizer, FocusRectsProvider, } from '../../Utilities';\nimport { createTheme } from '../../Styling';\nimport { useMergedRefs } from '@fluentui/react-hooks';\nvar getClassNames = classNamesFunction();\nvar getFabricTheme = memoizeFunction(function (theme, isRTL) { return createTheme(__assign(__assign({}, theme), { rtl: isRTL })); });\nvar getDir = function (_a) {\n var theme = _a.theme, dir = _a.dir;\n var contextDir = getRTL(theme) ? 'rtl' : 'ltr';\n var pageDir = getRTL() ? 'rtl' : 'ltr';\n var componentDir = dir ? dir : contextDir;\n return {\n // If Fabric dir !== contextDir\n // Or If contextDir !== pageDir\n // Then we need to set dir of the Fabric root\n rootDir: componentDir !== contextDir || componentDir !== pageDir ? componentDir : dir,\n // If dir !== contextDir || pageDir\n // then set contextual theme around content\n needsTheme: componentDir !== contextDir,\n };\n};\nexport var FabricBase = React.forwardRef(function (props, ref) {\n var className = props.className, theme = props.theme, applyTheme = props.applyTheme, applyThemeToBody = props.applyThemeToBody, styles = props.styles;\n var classNames = getClassNames(styles, {\n theme: theme,\n applyTheme: applyTheme,\n className: className,\n });\n var rootElement = React.useRef(null);\n useApplyThemeToBody(applyThemeToBody, classNames, rootElement);\n return React.createElement(React.Fragment, null, useRenderedContent(props, classNames, rootElement, ref));\n});\nFabricBase.displayName = 'FabricBase';\nfunction useRenderedContent(props, _a, rootElement, ref) {\n var root = _a.root;\n var _b = props.as, Root = _b === void 0 ? 'div' : _b, dir = props.dir, theme = props.theme;\n var divProps = getNativeProps(props, divProperties, ['dir']);\n var _c = getDir(props), rootDir = _c.rootDir, needsTheme = _c.needsTheme;\n var renderedContent = (React.createElement(FocusRectsProvider, { providerRef: rootElement },\n React.createElement(Root, __assign({ dir: rootDir }, divProps, { className: root, ref: useMergedRefs(rootElement, ref) }))));\n // Create the contextual theme if component direction does not match parent direction.\n if (needsTheme) {\n // Disabling ThemeProvider here because theme doesn't need to be re-provided by ThemeProvider if dir has changed.\n renderedContent = (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(Customizer, { settings: { theme: getFabricTheme(theme, dir === 'rtl') } }, renderedContent));\n }\n return renderedContent;\n}\nfunction useApplyThemeToBody(applyThemeToBody, _a, rootElement) {\n var bodyThemed = _a.bodyThemed;\n React.useEffect(function () {\n if (applyThemeToBody) {\n var currentDoc_1 = getDocument(rootElement.current);\n if (currentDoc_1) {\n currentDoc_1.body.classList.add(bodyThemed);\n return function () {\n currentDoc_1.body.classList.remove(bodyThemed);\n };\n }\n }\n }, [bodyThemed, applyThemeToBody, rootElement]);\n return rootElement;\n}\n//# sourceMappingURL=Fabric.base.js.map","import { getGlobalClassNames } from '../../Styling';\nvar inheritFont = { fontFamily: 'inherit' };\nvar GlobalClassNames = {\n root: 'ms-Fabric',\n bodyThemed: 'ms-Fabric-bodyThemed',\n};\nexport var getStyles = function (props) {\n var applyTheme = props.applyTheme, className = props.className, preventBlanketFontInheritance = props.preventBlanketFontInheritance, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n color: theme.palette.neutralPrimary,\n },\n !preventBlanketFontInheritance && {\n '& button': inheritFont,\n '& input': inheritFont,\n '& textarea': inheritFont,\n },\n // apply theme to only if applyTheme is true\n applyTheme && {\n color: theme.semanticColors.bodyText,\n backgroundColor: theme.semanticColors.bodyBackground,\n },\n className,\n ],\n bodyThemed: [\n {\n backgroundColor: theme.semanticColors.bodyBackground,\n },\n ],\n };\n};\n//# sourceMappingURL=Fabric.styles.js.map","import { styled } from '../../Utilities';\nimport { FabricBase } from './Fabric.base';\nimport { getStyles } from './Fabric.styles';\n/**\n * @deprecated This component is deprecated as of `@fluentui/react` version 8. Use `ThemeProvider` instead.\n */\nexport var Fabric = styled(FabricBase, getStyles, undefined, {\n scope: 'Fabric',\n});\n//# sourceMappingURL=Fabric.js.map","var _layersByHostId = {};\nvar _layerHostsById = {};\nvar defaultHostId = 'fluent-default-layer-host';\nvar _defaultHostSelector = \"#\".concat(defaultHostId);\n/**\n * Register a layer for a given host id\n * @param hostId - Id of the layer host\n * @param layer - Layer instance\n */\nexport function registerLayer(hostId, callback) {\n if (!_layersByHostId[hostId]) {\n _layersByHostId[hostId] = [];\n }\n _layersByHostId[hostId].push(callback);\n var layerHosts = _layerHostsById[hostId];\n if (layerHosts) {\n for (var _i = 0, layerHosts_1 = layerHosts; _i < layerHosts_1.length; _i++) {\n var layerHost = layerHosts_1[_i];\n layerHost.notifyLayersChanged();\n }\n }\n}\n/**\n * Unregister a layer for a given host id\n * @param hostId - Id of the layer host\n * @param layer - Layer instance\n */\nexport function unregisterLayer(hostId, callback) {\n var layers = _layersByHostId[hostId];\n if (layers) {\n var idx = layers.indexOf(callback);\n if (idx >= 0) {\n layers.splice(idx, 1);\n if (layers.length === 0) {\n delete _layersByHostId[hostId];\n }\n }\n }\n var layerHosts = _layerHostsById[hostId];\n if (layerHosts) {\n for (var _i = 0, layerHosts_2 = layerHosts; _i < layerHosts_2.length; _i++) {\n var layerHost = layerHosts_2[_i];\n layerHost.notifyLayersChanged();\n }\n }\n}\n/**\n * Gets the number of layers currently registered with a host id.\n * @param hostId - Id of the layer host.\n * @returns The number of layers currently registered with the host.\n */\nexport function getLayerCount(hostId) {\n var layers = _layerHostsById[hostId];\n return layers ? layers.length : 0;\n}\n/**\n * Gets the Layer Host instance associated with a hostId, if applicable.\n * @param hostId - Id of the layer host\n * @returns A component ref for the associated layer host.\n */\nexport function getLayerHost(hostId) {\n var layerHosts = _layerHostsById[hostId];\n return (layerHosts && layerHosts[0]) || undefined;\n}\n/**\n * Registers a Layer Host with an associated hostId.\n * @param hostId - Id of the layer host\n * @param layerHost - layer host instance\n */\nexport function registerLayerHost(hostId, layerHost) {\n var layerHosts = _layerHostsById[hostId] || (_layerHostsById[hostId] = []);\n // Insert this at the start of an array to avoid race conditions between mount and unmount.\n // If a LayerHost is re-mounted, and mount of the new instance may occur before the unmount of the old one.\n // Putting the new instance at the start of this array ensures that calls to `getLayerHost` will immediately\n // get the new one even if the old one is around briefly.\n layerHosts.unshift(layerHost);\n}\n/**\n * Unregisters a Layer Host from the associated hostId.\n * @param hostId - Id of the layer host\n * @param layerHost - layer host instance\n */\nexport function unregisterLayerHost(hostId, layerHost) {\n var layerHosts = _layerHostsById[hostId];\n if (layerHosts) {\n var idx = layerHosts.indexOf(layerHost);\n if (idx >= 0) {\n layerHosts.splice(idx, 1);\n }\n if (layerHosts.length === 0) {\n delete _layerHostsById[hostId];\n }\n }\n}\n/**\n * When no default layer host is provided, this function is executed to create the default host.\n */\nexport function createDefaultLayerHost(doc) {\n var host = doc.createElement('div');\n host.setAttribute('id', defaultHostId);\n host.style.cssText = 'position:fixed;z-index:1000000';\n doc === null || doc === void 0 ? void 0 : doc.body.appendChild(host);\n return host;\n}\n/**\n * This function can be optionally called to clean up the default layer host as needed.\n */\nexport function cleanupDefaultLayerHost(doc) {\n var host = doc.querySelector(\"#\".concat(defaultHostId));\n if (host) {\n doc.removeChild(host);\n }\n}\n/**\n * Used for notifying applicable Layers that a host is available/unavailable and to re-evaluate Layers that\n * care about the specific host.\n */\nexport function notifyHostChanged(id) {\n if (_layersByHostId[id]) {\n _layersByHostId[id].forEach(function (callback) { return callback(); });\n }\n}\n/**\n * Sets the default target selector to use when determining the host in which\n * Layered content will be injected into. If not provided, an element will be\n * created at the end of the document body.\n *\n * Passing in a falsy value will clear the default target and reset back to\n * using a created element at the end of document body.\n */\nexport function setDefaultTarget(selector) {\n _defaultHostSelector = selector;\n}\n/**\n * Get the default target selector when determining a host\n */\nexport function getDefaultTarget() {\n return _defaultHostSelector;\n}\n//# sourceMappingURL=Layer.notification.js.map","import { __assign } from \"tslib\";\n// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-ignore \"react-portal-compat-context\" uses v9 configs via path aliases\nimport { usePortalCompat } from '@fluentui/react-portal-compat-context';\nimport * as React from 'react';\nimport * as ReactDOM from 'react-dom';\nimport { Fabric } from '../../Fabric';\nimport { classNamesFunction, css, getDocument, setPortalAttribute, setVirtualParent, FocusRectsProvider, FocusRectsContext, IsFocusVisibleClassName, } from '../../Utilities';\nimport { registerLayer, getDefaultTarget, unregisterLayer, getLayerHost, createDefaultLayerHost, } from './Layer.notification';\nimport { useIsomorphicLayoutEffect, useMergedRefs, useWarnings } from '@fluentui/react-hooks';\nvar getClassNames = classNamesFunction();\nvar getFocusVisibility = function (providerRef) {\n if (providerRef === null || providerRef === void 0 ? void 0 : providerRef.current) {\n return providerRef.current.classList.contains(IsFocusVisibleClassName);\n }\n return false;\n};\nexport var LayerBase = React.forwardRef(function (props, ref) {\n var registerPortalEl = usePortalCompat();\n var rootRef = React.useRef(null);\n var mergedRef = useMergedRefs(rootRef, ref);\n var layerRef = React.useRef();\n var fabricElementRef = React.useRef(null);\n var focusContext = React.useContext(FocusRectsContext);\n // Tracks if the layer mount events need to be raised.\n // Required to allow the DOM to render after the layer element is added.\n var _a = React.useState(false), needRaiseLayerMount = _a[0], setNeedRaiseLayerMount = _a[1];\n // Sets the focus visible className when the FocusRectsProvider for the layer is rendered\n // This allows the current focus visibility style to be carried over to the layer content\n var focusRectsRef = React.useCallback(function (el) {\n var isFocusVisible = getFocusVisibility(focusContext === null || focusContext === void 0 ? void 0 : focusContext.providerRef);\n if (el && isFocusVisible) {\n el.classList.add(IsFocusVisibleClassName);\n }\n }, [focusContext]);\n var children = props.children, className = props.className, eventBubblingEnabled = props.eventBubblingEnabled, fabricProps = props.fabricProps, hostId = props.hostId, insertFirst = props.insertFirst, _b = props.onLayerDidMount, onLayerDidMount = _b === void 0 ? function () { return undefined; } : _b, \n // eslint-disable-next-line deprecation/deprecation\n _c = props.onLayerMounted, \n // eslint-disable-next-line deprecation/deprecation\n onLayerMounted = _c === void 0 ? function () { return undefined; } : _c, onLayerWillUnmount = props.onLayerWillUnmount, styles = props.styles, theme = props.theme;\n var fabricRef = useMergedRefs(fabricElementRef, fabricProps === null || fabricProps === void 0 ? void 0 : fabricProps.ref, focusRectsRef);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isNotHost: !hostId,\n });\n // Returns the user provided hostId props element, the default target selector,\n // or undefined if document doesn't exist.\n var getHost = function (doc) {\n var _a, _b;\n if (hostId) {\n var layerHost = getLayerHost(hostId);\n if (layerHost) {\n return (_a = layerHost.rootRef.current) !== null && _a !== void 0 ? _a : null;\n }\n return (_b = doc.getElementById(hostId)) !== null && _b !== void 0 ? _b : null;\n }\n else {\n var defaultHostSelector = getDefaultTarget();\n // Find the host.\n var host = defaultHostSelector ? doc.querySelector(defaultHostSelector) : null;\n // If no host is available, create a container for injecting layers in.\n // Having a container scopes layout computation.\n if (!host) {\n host = createDefaultLayerHost(doc);\n }\n return host;\n }\n };\n // Removes the current layer element's parentNode and runs onLayerWillUnmount prop if provided.\n var removeLayerElement = function () {\n onLayerWillUnmount === null || onLayerWillUnmount === void 0 ? void 0 : onLayerWillUnmount();\n var elem = layerRef.current;\n // Clear ref before removing from the DOM\n layerRef.current = undefined;\n if (elem && elem.parentNode) {\n elem.parentNode.removeChild(elem);\n }\n };\n // If a doc or host exists, it will remove and update layer parentNodes.\n var createLayerElement = function () {\n var _a;\n var doc = getDocument(rootRef.current);\n if (!doc) {\n return;\n }\n var host = getHost(doc);\n if (!host) {\n return;\n }\n // Remove and re-create any previous existing layer elements.\n removeLayerElement();\n var el = ((_a = host.ownerDocument) !== null && _a !== void 0 ? _a : doc).createElement('div');\n el.className = classNames.root;\n setPortalAttribute(el);\n setVirtualParent(el, rootRef.current);\n insertFirst ? host.insertBefore(el, host.firstChild) : host.appendChild(el);\n layerRef.current = el;\n setNeedRaiseLayerMount(true);\n };\n useIsomorphicLayoutEffect(function () {\n createLayerElement();\n // Check if the user provided a hostId prop and register the layer with the ID.\n if (hostId) {\n registerLayer(hostId, createLayerElement);\n }\n var unregisterPortalEl = layerRef.current ? registerPortalEl(layerRef.current) : undefined;\n return function () {\n if (unregisterPortalEl) {\n unregisterPortalEl();\n }\n removeLayerElement();\n if (hostId) {\n unregisterLayer(hostId, createLayerElement);\n }\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should run if the hostId updates.\n }, [hostId]);\n React.useEffect(function () {\n if (layerRef.current && needRaiseLayerMount) {\n onLayerMounted === null || onLayerMounted === void 0 ? void 0 : onLayerMounted();\n onLayerDidMount === null || onLayerDidMount === void 0 ? void 0 : onLayerDidMount();\n setNeedRaiseLayerMount(false);\n }\n }, [needRaiseLayerMount, onLayerMounted, onLayerDidMount]);\n useDebugWarnings(props);\n return (React.createElement(\"span\", { className: \"ms-layer\", ref: mergedRef }, layerRef.current &&\n ReactDOM.createPortal(React.createElement(FocusRectsProvider, { layerRoot: true, providerRef: fabricRef },\n React.createElement(Fabric, __assign({}, (!eventBubblingEnabled && getFilteredEvents()), fabricProps, { className: css(classNames.content, fabricProps === null || fabricProps === void 0 ? void 0 : fabricProps.className), ref: fabricRef }), children)), layerRef.current)));\n});\nLayerBase.displayName = 'LayerBase';\nvar filteredEventProps;\nvar onFilterEvent = function (ev) {\n // We should just be able to check ev.bubble here and only stop events that are bubbling up. However, even though\n // mouseenter and mouseleave do NOT bubble up, they are showing up as bubbling. Therefore we stop events based on\n // event name rather than ev.bubble.\n if (ev.eventPhase === Event.BUBBLING_PHASE &&\n ev.type !== 'mouseenter' &&\n ev.type !== 'mouseleave' &&\n ev.type !== 'touchstart' &&\n ev.type !== 'touchend') {\n ev.stopPropagation();\n }\n};\nfunction getFilteredEvents() {\n if (!filteredEventProps) {\n filteredEventProps = {};\n [\n 'onClick',\n 'onContextMenu',\n 'onDoubleClick',\n 'onDrag',\n 'onDragEnd',\n 'onDragEnter',\n 'onDragExit',\n 'onDragLeave',\n 'onDragOver',\n 'onDragStart',\n 'onDrop',\n 'onMouseDown',\n 'onMouseEnter',\n 'onMouseLeave',\n 'onMouseMove',\n 'onMouseOver',\n 'onMouseOut',\n 'onMouseUp',\n 'onTouchMove',\n 'onTouchStart',\n 'onTouchCancel',\n 'onTouchEnd',\n 'onKeyDown',\n 'onKeyPress',\n 'onKeyUp',\n 'onFocus',\n 'onBlur',\n 'onChange',\n 'onInput',\n 'onInvalid',\n 'onSubmit',\n ].forEach(function (name) { return (filteredEventProps[name] = onFilterEvent); });\n }\n return filteredEventProps;\n}\nfunction useDebugWarnings(props) {\n if (process.env.NODE_ENV !== 'production') {\n // eslint-disable-next-line react-hooks/rules-of-hooks -- build-time conditional\n useWarnings({\n name: 'Layer',\n props: props,\n deprecations: { onLayerMounted: 'onLayerDidMount' },\n });\n }\n}\n//# sourceMappingURL=Layer.base.js.map","import { ZIndexes, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Layer',\n rootNoHost: 'ms-Layer--fixed',\n content: 'ms-Layer-content',\n};\nexport var getStyles = function (props) {\n var className = props.className, isNotHost = props.isNotHost, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isNotHost && [\n classNames.rootNoHost,\n {\n position: 'fixed',\n zIndex: ZIndexes.Layer,\n top: 0,\n left: 0,\n bottom: 0,\n right: 0,\n visibility: 'hidden',\n },\n ],\n className,\n ],\n content: [\n classNames.content,\n {\n visibility: 'visible',\n },\n ],\n };\n};\n//# sourceMappingURL=Layer.styles.js.map","import { styled } from '../../Utilities';\nimport { LayerBase } from './Layer.base';\nimport { getStyles } from './Layer.styles';\nexport var Layer = styled(LayerBase, getStyles, undefined, {\n scope: 'Layer',\n fields: ['hostId', 'theme', 'styles'],\n});\n//# sourceMappingURL=Layer.js.map","import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { CalloutContent } from './CalloutContent';\nimport { Layer } from '../../Layer';\nexport var Callout = React.forwardRef(function (_a, forwardedRef) {\n var layerProps = _a.layerProps, doNotLayer = _a.doNotLayer, rest = __rest(_a, [\"layerProps\", \"doNotLayer\"]);\n var content = React.createElement(CalloutContent, __assign({}, rest, { doNotLayer: doNotLayer, ref: forwardedRef }));\n return doNotLayer ? content : React.createElement(Layer, __assign({}, layerProps), content);\n});\nCallout.displayName = 'Callout';\n//# sourceMappingURL=Callout.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { elementContains, getNativeProps, divProperties, getFirstTabbable, getLastTabbable, getNextElement, focusAsync, getPropsWithDefaults, modalize, on, } from '../../Utilities';\nimport { useId, useConst, useMergedRefs, useEventCallback, usePrevious, useUnmount } from '@fluentui/react-hooks';\nimport { useDocument } from '../../WindowProvider';\nvar COMPONENT_NAME = 'FocusTrapZone';\nvar DEFAULT_PROPS = {\n disabled: false,\n disableFirstFocus: false,\n forceFocusInsideTrap: true,\n isClickableOutsideFocusTrap: false,\n};\nvar useComponentRef = function (componentRef, previouslyFocusedElement, focusFTZ) {\n React.useImperativeHandle(componentRef, function () { return ({\n get previouslyFocusedElement() {\n return previouslyFocusedElement;\n },\n focus: focusFTZ,\n }); }, [focusFTZ, previouslyFocusedElement]);\n};\nexport var FocusTrapZone = React.forwardRef(function (propsWithoutDefaults, ref) {\n var _a;\n var root = React.useRef(null);\n var firstBumper = React.useRef(null);\n var lastBumper = React.useRef(null);\n var mergedRootRef = useMergedRefs(root, ref);\n var doc = useDocument();\n var isFirstRender = (_a = usePrevious(false)) !== null && _a !== void 0 ? _a : true;\n var props = getPropsWithDefaults(DEFAULT_PROPS, propsWithoutDefaults);\n var internalState = useConst({\n hasFocus: false,\n focusStackId: useId('ftz-', props.id),\n });\n var children = props.children, componentRef = props.componentRef, disabled = props.disabled, disableFirstFocus = props.disableFirstFocus, forceFocusInsideTrap = props.forceFocusInsideTrap, focusPreviouslyFocusedInnerElement = props.focusPreviouslyFocusedInnerElement, \n // eslint-disable-next-line deprecation/deprecation\n firstFocusableSelector = props.firstFocusableSelector, firstFocusableTarget = props.firstFocusableTarget, \n // eslint-disable-next-line deprecation/deprecation\n _b = props.disableRestoreFocus, \n // eslint-disable-next-line deprecation/deprecation\n disableRestoreFocus = _b === void 0 ? props.ignoreExternalFocusing : _b, isClickableOutsideFocusTrap = props.isClickableOutsideFocusTrap, enableAriaHiddenSiblings = props.enableAriaHiddenSiblings;\n var bumperProps = {\n 'aria-hidden': true,\n style: {\n pointerEvents: 'none',\n position: 'fixed', // 'fixed' prevents browsers from scrolling to bumpers when viewport does not contain them\n },\n tabIndex: disabled ? -1 : 0,\n 'data-is-visible': true,\n 'data-is-focus-trap-zone-bumper': true,\n };\n var focusElementAsync = React.useCallback(function (element) {\n if (element !== firstBumper.current && element !== lastBumper.current) {\n focusAsync(element);\n }\n }, []);\n /**\n * Callback to force focus into FTZ (named to avoid overlap with global focus() callback).\n * useEventCallback always returns the same callback reference but updates the implementation\n * every render to avoid stale captured values.\n */\n var focusFTZ = useEventCallback(function () {\n if (!root.current) {\n return; // not done mounting\n }\n var previouslyFocusedElementInTrapZone = internalState.previouslyFocusedElementInTrapZone;\n if (focusPreviouslyFocusedInnerElement &&\n previouslyFocusedElementInTrapZone &&\n elementContains(root.current, previouslyFocusedElementInTrapZone)) {\n // focus on the last item that had focus in the zone before we left the zone\n focusElementAsync(previouslyFocusedElementInTrapZone);\n return;\n }\n var firstFocusableChild = null;\n if (typeof firstFocusableTarget === 'string') {\n firstFocusableChild = root.current.querySelector(firstFocusableTarget);\n }\n else if (firstFocusableTarget) {\n firstFocusableChild = firstFocusableTarget(root.current);\n }\n else if (firstFocusableSelector) {\n var focusSelector = typeof firstFocusableSelector === 'string' ? firstFocusableSelector : firstFocusableSelector();\n firstFocusableChild = root.current.querySelector('.' + focusSelector);\n }\n // Fall back to first element if query selector did not match any elements.\n if (!firstFocusableChild) {\n firstFocusableChild = getNextElement(root.current, root.current.firstChild, false, false, false, true);\n }\n if (firstFocusableChild) {\n focusElementAsync(firstFocusableChild);\n }\n });\n /** Used in root div focus/blur handlers */\n var focusBumper = function (isFirstBumper) {\n if (disabled || !root.current) {\n return;\n }\n var nextFocusable = isFirstBumper === internalState.hasFocus\n ? getLastTabbable(root.current, lastBumper.current, true, false)\n : getFirstTabbable(root.current, firstBumper.current, true, false);\n if (nextFocusable) {\n if (nextFocusable === firstBumper.current || nextFocusable === lastBumper.current) {\n // This can happen when FTZ contains no tabbable elements.\n // focusFTZ() will take care of finding a focusable element in FTZ.\n focusFTZ();\n }\n else {\n nextFocusable.focus();\n }\n }\n };\n /** Root div blur handler (doesn't need useCallback since it's for a native element) */\n var onRootBlurCapture = function (ev) {\n var _a;\n (_a = props.onBlurCapture) === null || _a === void 0 ? void 0 : _a.call(props, ev);\n var relatedTarget = ev.relatedTarget;\n if (ev.relatedTarget === null) {\n // In IE11, due to lack of support, event.relatedTarget is always\n // null making every onBlur call to be \"outside\" of the root\n // even when it's not. Using document.activeElement is another way\n // for us to be able to get what the relatedTarget without relying\n // on the event\n relatedTarget = doc.activeElement;\n }\n if (!elementContains(root.current, relatedTarget)) {\n internalState.hasFocus = false;\n }\n };\n /** Root div focus handler (doesn't need useCallback since it's for a native element) */\n var onRootFocusCapture = function (ev) {\n var _a;\n (_a = props.onFocusCapture) === null || _a === void 0 ? void 0 : _a.call(props, ev);\n if (ev.target === firstBumper.current) {\n focusBumper(true);\n }\n else if (ev.target === lastBumper.current) {\n focusBumper(false);\n }\n internalState.hasFocus = true;\n if (ev.target !== ev.currentTarget && !(ev.target === firstBumper.current || ev.target === lastBumper.current)) {\n // every time focus changes within the trap zone, remember the focused element so that\n // it can be restored if focus leaves the pane and returns via keystroke (i.e. via a call to this.focus(true))\n internalState.previouslyFocusedElementInTrapZone = ev.target;\n }\n };\n /** Called to restore focus on unmount or props change. (useEventCallback ensures latest prop values are used.) */\n var returnFocusToInitiator = useEventCallback(function (elementToFocusOnDismiss) {\n FocusTrapZone.focusStack = FocusTrapZone.focusStack.filter(function (value) { return internalState.focusStackId !== value; });\n if (!doc) {\n return;\n }\n var activeElement = doc.activeElement;\n if (!disableRestoreFocus &&\n typeof (elementToFocusOnDismiss === null || elementToFocusOnDismiss === void 0 ? void 0 : elementToFocusOnDismiss.focus) === 'function' &&\n // only restore focus if the current focused element is within the FTZ, or if nothing is focused\n (elementContains(root.current, activeElement) || activeElement === doc.body)) {\n focusElementAsync(elementToFocusOnDismiss);\n }\n });\n /** Called in window event handlers. (useEventCallback ensures latest prop values are used.) */\n var forceFocusOrClickInTrap = useEventCallback(function (ev) {\n // be sure to use the latest values here\n if (disabled) {\n return;\n }\n if (internalState.focusStackId === FocusTrapZone.focusStack.slice(-1)[0]) {\n var targetElement = ev.target;\n if (targetElement && !elementContains(root.current, targetElement)) {\n if (doc && doc.activeElement === doc.body) {\n setTimeout(function () {\n if (doc && doc.activeElement === doc.body) {\n focusFTZ();\n internalState.hasFocus = true; // set focus here since we stop event propagation\n }\n }, 0);\n }\n else {\n focusFTZ();\n internalState.hasFocus = true; // set focus here since we stop event propagation\n }\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n });\n // Update window event handlers when relevant props change\n React.useEffect(function () {\n var disposables = [];\n if (forceFocusInsideTrap) {\n disposables.push(on(window, 'focus', forceFocusOrClickInTrap, true));\n }\n if (!isClickableOutsideFocusTrap) {\n disposables.push(on(window, 'click', forceFocusOrClickInTrap, true));\n }\n return function () {\n disposables.forEach(function (dispose) { return dispose(); });\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run when these two props change\n }, [forceFocusInsideTrap, isClickableOutsideFocusTrap]);\n // On prop change or first render, focus the FTZ and update focusStack if appropriate\n React.useEffect(function () {\n // Do nothing if disabled, or if it's a re-render and forceFocusInsideTrap is false\n // (to match existing behavior, the FTZ handles first focus even if forceFocusInsideTrap\n // is false, though it's debatable whether it should do this)\n if (disabled || (!isFirstRender && !forceFocusInsideTrap) || !root.current) {\n return;\n }\n // Transition from forceFocusInsideTrap / FTZ disabled to enabled (or initial mount)\n FocusTrapZone.focusStack.push(internalState.focusStackId);\n var elementToFocusOnDismiss = props.elementToFocusOnDismiss || doc.activeElement;\n if (!disableFirstFocus && !elementContains(root.current, elementToFocusOnDismiss)) {\n focusFTZ();\n }\n // To match existing behavior, always return focus on cleanup (even if we didn't handle\n // initial focus), but it's debatable whether that's correct\n return function () { return returnFocusToInitiator(elementToFocusOnDismiss); };\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run when these two props change\n }, [forceFocusInsideTrap, disabled]);\n // Handle modalization separately from first focus\n React.useEffect(function () {\n if (!disabled && enableAriaHiddenSiblings) {\n var unmodalize = modalize(root.current);\n return unmodalize;\n }\n }, [disabled, enableAriaHiddenSiblings, root]);\n // Cleanup lifecyle method for internalState.\n useUnmount(function () {\n // Dispose of element references so the DOM Nodes can be garbage-collected\n delete internalState.previouslyFocusedElementInTrapZone;\n });\n useComponentRef(componentRef, internalState.previouslyFocusedElementInTrapZone, focusFTZ);\n return (React.createElement(\"div\", __assign({ \"aria-labelledby\": props.ariaLabelledBy }, getNativeProps(props, divProperties), { ref: mergedRootRef, onFocusCapture: onRootFocusCapture, onBlurCapture: onRootBlurCapture }),\n React.createElement(\"div\", __assign({}, bumperProps, { ref: firstBumper })),\n children,\n React.createElement(\"div\", __assign({}, bumperProps, { ref: lastBumper }))));\n});\nFocusTrapZone.displayName = COMPONENT_NAME;\nFocusTrapZone.focusStack = [];\n//# sourceMappingURL=FocusTrapZone.js.map","/**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n * {@docCategory Icon}\n */\nexport var IconType;\n(function (IconType) {\n /**\n * Render using the fabric icon font.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"default\"] = 0] = \"default\";\n /**\n * Render using an image, where imageProps would be used.\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"image\"] = 1] = \"image\";\n /**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"Default\"] = 100000] = \"Default\";\n /**\n * @deprecated Icon type is inferred based on presence of `IIconProps.imageProps`\n */\n IconType[IconType[\"Image\"] = 100001] = \"Image\";\n})(IconType || (IconType = {}));\n//# sourceMappingURL=Icon.types.js.map","/**\n * The possible methods that can be used to fit the image.\n * {@docCategory Image}\n */\nexport var ImageFit;\n(function (ImageFit) {\n /**\n * The image is not scaled. The image is centered and cropped within the content box.\n */\n ImageFit[ImageFit[\"center\"] = 0] = \"center\";\n /**\n * The image is scaled to maintain its aspect ratio while being fully contained within the frame. The image will\n * be centered horizontally and vertically within the frame. The space in the top and bottom or in the sides of\n * the frame will be empty depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"contain\"] = 1] = \"contain\";\n /**\n * The image is scaled to maintain its aspect ratio while filling the frame. Portions of the image will be cropped\n * from the top and bottom, or the sides, depending on the difference in aspect ratio between the image and the frame.\n */\n ImageFit[ImageFit[\"cover\"] = 2] = \"cover\";\n /**\n * Neither the image nor the frame are scaled. If their sizes do not match, the image will either be cropped or the\n * frame will have empty space.\n */\n ImageFit[ImageFit[\"none\"] = 3] = \"none\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height or width is less than the Image frame's height or width,\n * but if both natural height and width are larger than the frame it will behave as ImageFit.cover.\n */\n ImageFit[ImageFit[\"centerCover\"] = 4] = \"centerCover\";\n /**\n * The image will be centered horizontally and vertically within the frame and maintains its aspect ratio. It will\n * behave as ImageFit.center if the image's natural height and width is less than the Image frame's height and width,\n * but if either natural height or width are larger than the frame it will behave as ImageFit.contain.\n */\n ImageFit[ImageFit[\"centerContain\"] = 5] = \"centerContain\";\n})(ImageFit || (ImageFit = {}));\n/**\n * The cover style to be used on the image\n * {@docCategory Image}\n */\nexport var ImageCoverStyle;\n(function (ImageCoverStyle) {\n /**\n * The image will be shown at 100% height of container and the width will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"landscape\"] = 0] = \"landscape\";\n /**\n * The image will be shown at 100% width of container and the height will be scaled accordingly\n */\n ImageCoverStyle[ImageCoverStyle[\"portrait\"] = 1] = \"portrait\";\n})(ImageCoverStyle || (ImageCoverStyle = {}));\n/**\n * {@docCategory Image}\n */\nexport var ImageLoadState;\n(function (ImageLoadState) {\n /**\n * The image has not yet been loaded, and there is no error yet.\n */\n ImageLoadState[ImageLoadState[\"notLoaded\"] = 0] = \"notLoaded\";\n /**\n * The image has been loaded successfully.\n */\n ImageLoadState[ImageLoadState[\"loaded\"] = 1] = \"loaded\";\n /**\n * An error has been encountered while loading the image.\n */\n ImageLoadState[ImageLoadState[\"error\"] = 2] = \"error\";\n /**\n * @deprecated Not used. Use `onLoadingStateChange` and re-render the Image with a different src.\n */\n ImageLoadState[ImageLoadState[\"errorLoaded\"] = 3] = \"errorLoaded\";\n})(ImageLoadState || (ImageLoadState = {}));\n//# sourceMappingURL=Image.types.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, imgProperties } from '../../Utilities';\nimport { ImageCoverStyle, ImageFit, ImageLoadState } from './Image.types';\nimport { useIsomorphicLayoutEffect, useMergedRefs } from '@fluentui/react-hooks';\nvar getClassNames = classNamesFunction();\nvar SVG_REGEX = /\\.svg$/i;\nvar KEY_PREFIX = 'fabricImage';\nfunction useLoadState(props, imageElement) {\n var onLoadingStateChange = props.onLoadingStateChange, onLoad = props.onLoad, onError = props.onError, src = props.src;\n var _a = React.useState(ImageLoadState.notLoaded), loadState = _a[0], setLoadState = _a[1];\n useIsomorphicLayoutEffect(function () {\n // If the src property changes, reset the load state\n // (does nothing if the load state is already notLoaded)\n setLoadState(ImageLoadState.notLoaded);\n }, [src]);\n // eslint-disable-next-line react-hooks/exhaustive-deps -- intended to run every render\n React.useEffect(function () {\n if (loadState === ImageLoadState.notLoaded) {\n // testing if naturalWidth and naturalHeight are greater than zero is better than checking\n // .complete, because .complete will also be set to true if the image breaks. However,\n // for some browsers, SVG images do not have a naturalWidth or naturalHeight, so fall back\n // to checking .complete for these images.\n var isLoaded = imageElement.current\n ? (src && imageElement.current.naturalWidth > 0 && imageElement.current.naturalHeight > 0) ||\n (imageElement.current.complete && SVG_REGEX.test(src))\n : false;\n if (isLoaded) {\n setLoadState(ImageLoadState.loaded);\n }\n }\n });\n React.useEffect(function () {\n onLoadingStateChange === null || onLoadingStateChange === void 0 ? void 0 : onLoadingStateChange(loadState);\n // eslint-disable-next-line react-hooks/exhaustive-deps -- should only run when loadState changes\n }, [loadState]);\n var onImageLoaded = React.useCallback(function (ev) {\n onLoad === null || onLoad === void 0 ? void 0 : onLoad(ev);\n if (src) {\n setLoadState(ImageLoadState.loaded);\n }\n }, [src, onLoad]);\n var onImageError = React.useCallback(function (ev) {\n onError === null || onError === void 0 ? void 0 : onError(ev);\n setLoadState(ImageLoadState.error);\n }, [onError]);\n return [loadState, onImageLoaded, onImageError];\n}\nexport var ImageBase = React.forwardRef(function (props, forwardedRef) {\n var frameElement = React.useRef();\n var imageElement = React.useRef();\n var _a = useLoadState(props, imageElement), loadState = _a[0], onImageLoaded = _a[1], onImageError = _a[2];\n var imageProps = getNativeProps(props, imgProperties, [\n 'width',\n 'height',\n ]);\n var src = props.src, alt = props.alt, width = props.width, height = props.height, _b = props.shouldFadeIn, shouldFadeIn = _b === void 0 ? true : _b, shouldStartVisible = props.shouldStartVisible, className = props.className, imageFit = props.imageFit, role = props.role, maximizeFrame = props.maximizeFrame, styles = props.styles, theme = props.theme, loading = props.loading;\n var coverStyle = useCoverStyle(props, loadState, imageElement, frameElement);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n width: width,\n height: height,\n maximizeFrame: maximizeFrame,\n shouldFadeIn: shouldFadeIn,\n shouldStartVisible: shouldStartVisible,\n isLoaded: loadState === ImageLoadState.loaded || (loadState === ImageLoadState.notLoaded && props.shouldStartVisible),\n isLandscape: coverStyle === ImageCoverStyle.landscape,\n isCenter: imageFit === ImageFit.center,\n isCenterContain: imageFit === ImageFit.centerContain,\n isCenterCover: imageFit === ImageFit.centerCover,\n isContain: imageFit === ImageFit.contain,\n isCover: imageFit === ImageFit.cover,\n isNone: imageFit === ImageFit.none,\n isError: loadState === ImageLoadState.error,\n isNotImageFit: imageFit === undefined,\n });\n // If image dimensions aren't specified, the natural size of the image is used.\n return (React.createElement(\"div\", { className: classNames.root, style: { width: width, height: height }, ref: frameElement },\n React.createElement(\"img\", __assign({}, imageProps, { onLoad: onImageLoaded, onError: onImageError, key: KEY_PREFIX + props.src || '', className: classNames.image, ref: useMergedRefs(imageElement, forwardedRef), src: src, alt: alt, role: role, loading: loading }))));\n});\nImageBase.displayName = 'ImageBase';\nfunction useCoverStyle(props, loadState, imageElement, frameElement) {\n var previousLoadState = React.useRef(loadState);\n var coverStyle = React.useRef();\n if (coverStyle === undefined ||\n (previousLoadState.current === ImageLoadState.notLoaded && loadState === ImageLoadState.loaded)) {\n coverStyle.current = computeCoverStyle(props, loadState, imageElement, frameElement);\n }\n previousLoadState.current = loadState;\n return coverStyle.current;\n}\nfunction computeCoverStyle(props, loadState, imageElement, frameElement) {\n var imageFit = props.imageFit, width = props.width, height = props.height;\n // Do not compute cover style if it was already specified in props\n if (props.coverStyle !== undefined) {\n return props.coverStyle;\n }\n else if (loadState === ImageLoadState.loaded &&\n (imageFit === ImageFit.cover ||\n imageFit === ImageFit.contain ||\n imageFit === ImageFit.centerContain ||\n imageFit === ImageFit.centerCover) &&\n imageElement.current &&\n frameElement.current) {\n // Determine the desired ratio using the width and height props.\n // If those props aren't available, measure measure the frame.\n var desiredRatio = void 0;\n if (typeof width === 'number' &&\n typeof height === 'number' &&\n imageFit !== ImageFit.centerContain &&\n imageFit !== ImageFit.centerCover) {\n desiredRatio = width / height;\n }\n else {\n desiredRatio = frameElement.current.clientWidth / frameElement.current.clientHeight;\n }\n // Examine the source image to determine its original ratio.\n var naturalRatio = imageElement.current.naturalWidth / imageElement.current.naturalHeight;\n // Should we crop from the top or the sides?\n if (naturalRatio > desiredRatio) {\n return ImageCoverStyle.landscape;\n }\n }\n return ImageCoverStyle.portrait;\n}\n//# sourceMappingURL=Image.base.js.map","import { AnimationClassNames, getGlobalClassNames } from '../../Styling';\nimport { getWindow } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Image',\n rootMaximizeFrame: 'ms-Image--maximizeFrame',\n image: 'ms-Image-image',\n imageCenter: 'ms-Image-image--center',\n imageContain: 'ms-Image-image--contain',\n imageCover: 'ms-Image-image--cover',\n imageCenterContain: 'ms-Image-image--centerContain',\n imageCenterCover: 'ms-Image-image--centerCover',\n imageNone: 'ms-Image-image--none',\n imageLandscape: 'ms-Image-image--landscape',\n imagePortrait: 'ms-Image-image--portrait',\n};\nexport var getStyles = function (props) {\n var className = props.className, width = props.width, height = props.height, maximizeFrame = props.maximizeFrame, isLoaded = props.isLoaded, shouldFadeIn = props.shouldFadeIn, shouldStartVisible = props.shouldStartVisible, isLandscape = props.isLandscape, isCenter = props.isCenter, isContain = props.isContain, isCover = props.isCover, isCenterContain = props.isCenterContain, isCenterCover = props.isCenterCover, isNone = props.isNone, isError = props.isError, isNotImageFit = props.isNotImageFit, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var ImageFitStyles = {\n position: 'absolute',\n left: '50% /* @noflip */',\n top: '50%',\n transform: 'translate(-50%,-50%)', // @todo test RTL renders transform: translate(50%,-50%);\n };\n // Cut the mustard using msMaxTouchPoints to detect IE11 which does not support CSS object-fit\n var window = getWindow();\n var supportsObjectFit = window !== undefined &&\n // eslint-disable-next-line @fluentui/max-len\n // cast needed as vendor prefixed `msMaxTouchPoints` api is no longer part of TS lib declaration - introduced with TS 4.4\n window.navigator.msMaxTouchPoints === undefined;\n var fallbackObjectFitStyles = (isContain && isLandscape) || (isCover && !isLandscape)\n ? { width: '100%', height: 'auto' }\n : { width: 'auto', height: '100%' };\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n overflow: 'hidden',\n },\n maximizeFrame && [\n classNames.rootMaximizeFrame,\n {\n height: '100%',\n width: '100%',\n },\n ],\n isLoaded && shouldFadeIn && !shouldStartVisible && AnimationClassNames.fadeIn400,\n (isCenter || isContain || isCover || isCenterContain || isCenterCover) && {\n position: 'relative',\n },\n className,\n ],\n image: [\n classNames.image,\n {\n display: 'block',\n opacity: 0,\n },\n isLoaded && [\n 'is-loaded',\n {\n opacity: 1,\n },\n ],\n isCenter && [classNames.imageCenter, ImageFitStyles],\n isContain && [\n classNames.imageContain,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'contain',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n !supportsObjectFit && ImageFitStyles,\n ],\n isCover && [\n classNames.imageCover,\n supportsObjectFit && {\n width: '100%',\n height: '100%',\n objectFit: 'cover',\n },\n !supportsObjectFit && fallbackObjectFitStyles,\n !supportsObjectFit && ImageFitStyles,\n ],\n isCenterContain && [\n classNames.imageCenterContain,\n isLandscape && {\n maxWidth: '100%',\n },\n !isLandscape && {\n maxHeight: '100%',\n },\n ImageFitStyles,\n ],\n isCenterCover && [\n classNames.imageCenterCover,\n isLandscape && {\n maxHeight: '100%',\n },\n !isLandscape && {\n maxWidth: '100%',\n },\n ImageFitStyles,\n ],\n isNone && [\n classNames.imageNone,\n {\n width: 'auto',\n height: 'auto',\n },\n ],\n isNotImageFit && [\n !!width &&\n !height && {\n height: 'auto',\n width: '100%',\n },\n !width &&\n !!height && {\n height: '100%',\n width: 'auto',\n },\n !!width &&\n !!height && {\n height: '100%',\n width: '100%',\n },\n ],\n isLandscape && classNames.imageLandscape,\n !isLandscape && classNames.imagePortrait,\n !isLoaded && 'is-notLoaded',\n shouldFadeIn && 'is-fadeIn',\n isError && 'is-error',\n ],\n };\n};\n//# sourceMappingURL=Image.styles.js.map","import { styled } from '../../Utilities';\nimport { ImageBase } from './Image.base';\nimport { getStyles } from './Image.styles';\nexport var Image = styled(ImageBase, getStyles, undefined, {\n scope: 'Image',\n}, true);\nImage.displayName = 'Image';\n//# sourceMappingURL=Image.js.map","import { mergeStyleSets } from '../../Styling';\n/** Class names used in themeable and non-themeable Icon components */\nexport var classNames = mergeStyleSets({\n root: {\n display: 'inline-block',\n },\n placeholder: [\n 'ms-Icon-placeHolder',\n {\n width: '1em',\n },\n ],\n image: [\n 'ms-Icon-imageContainer',\n {\n overflow: 'hidden',\n },\n ],\n});\n/** Class name used only in non-themeable Icon components */\nexport var MS_ICON = 'ms-Icon';\nexport var getStyles = function (props) {\n var className = props.className, iconClassName = props.iconClassName, isPlaceholder = props.isPlaceholder, isImage = props.isImage, styles = props.styles;\n return {\n root: [\n isPlaceholder && classNames.placeholder,\n classNames.root,\n isImage && classNames.image,\n iconClassName,\n className,\n styles && styles.root,\n // eslint-disable-next-line deprecation/deprecation\n styles && styles.imageContainer,\n ],\n };\n};\n//# sourceMappingURL=Icon.styles.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { classNames, MS_ICON } from './Icon.styles';\nimport { css, getNativeProps, htmlElementProperties, memoizeFunction } from '../../Utilities';\nimport { getIcon } from '../../Styling';\nexport var getIconContent = memoizeFunction(function (iconName) {\n var _a = getIcon(iconName) || {\n subset: {},\n code: undefined,\n }, code = _a.code, subset = _a.subset;\n if (!code) {\n return null;\n }\n return {\n children: code,\n iconClassName: subset.className,\n fontFamily: subset.fontFace && subset.fontFace.fontFamily,\n mergeImageProps: subset.mergeImageProps,\n };\n}, undefined, true /*ignoreNullOrUndefinedResult */);\n/**\n * Fast icon component which only supports font glyphs (not images) and can't be targeted by customizations.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n * {@docCategory Icon}\n */\nexport var FontIcon = function (props) {\n var iconName = props.iconName, className = props.className, _a = props.style, style = _a === void 0 ? {} : _a;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, children = iconContent.children, fontFamily = iconContent.fontFamily, mergeImageProps = iconContent.mergeImageProps;\n var nativeProps = getNativeProps(props, htmlElementProperties);\n var accessibleName = props['aria-label'] || props.title;\n var containerProps = props['aria-label'] || props['aria-labelledby'] || props.title\n ? {\n role: mergeImageProps ? undefined : 'img',\n }\n : {\n 'aria-hidden': true,\n };\n var finalChildren = children;\n if (mergeImageProps) {\n if (typeof children === 'object' && typeof children.props === 'object' && accessibleName) {\n finalChildren = React.cloneElement(children, { alt: accessibleName });\n }\n }\n return (React.createElement(\"i\", __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, (mergeImageProps\n ? {\n title: undefined,\n 'aria-label': undefined,\n }\n : {}), { className: css(MS_ICON, classNames.root, iconClassName, !iconName && classNames.placeholder, className), \n // Apply the font family this way to ensure it doesn't get overridden by Fabric Core ms-Icon styles\n // https://github.com/microsoft/fluentui/issues/10449\n style: __assign({ fontFamily: fontFamily }, style) }), finalChildren));\n};\n/**\n * Memoized helper for rendering a FontIcon.\n * @param iconName - The name of the icon to use from the icon font.\n * @param className - Class name for styling the icon.\n * @param ariaLabel - Label for the icon for the benefit of screen readers.\n * {@docCategory Icon}\n */\nexport var getFontIcon = memoizeFunction(function (iconName, className, ariaLabel) {\n return FontIcon({ iconName: iconName, className: className, 'aria-label': ariaLabel });\n});\n//# sourceMappingURL=FontIcon.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconType } from './Icon.types';\nimport { Image } from '../Image/Image';\nimport { ImageLoadState } from '../Image/Image.types';\nimport { getNativeProps, htmlElementProperties, classNamesFunction } from '../../Utilities';\nimport { getIconContent } from './FontIcon';\nvar getClassNames = classNamesFunction({\n // Icon is used a lot by other components.\n // It's likely to see expected cases which pass different className to the Icon.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar IconBase = /** @class */ (function (_super) {\n __extends(IconBase, _super);\n function IconBase(props) {\n var _this = _super.call(this, props) || this;\n _this._onImageLoadingStateChange = function (state) {\n if (_this.props.imageProps && _this.props.imageProps.onLoadingStateChange) {\n _this.props.imageProps.onLoadingStateChange(state);\n }\n if (state === ImageLoadState.error) {\n _this.setState({ imageLoadError: true });\n }\n };\n _this.state = {\n imageLoadError: false,\n };\n return _this;\n }\n IconBase.prototype.render = function () {\n var _a = this.props, children = _a.children, className = _a.className, styles = _a.styles, iconName = _a.iconName, imageErrorAs = _a.imageErrorAs, theme = _a.theme;\n var isPlaceholder = typeof iconName === 'string' && iconName.length === 0;\n var isImage = \n // eslint-disable-next-line deprecation/deprecation\n !!this.props.imageProps || this.props.iconType === IconType.image || this.props.iconType === IconType.Image;\n var iconContent = getIconContent(iconName) || {};\n var iconClassName = iconContent.iconClassName, iconContentChildren = iconContent.children, mergeImageProps = iconContent.mergeImageProps;\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n iconClassName: iconClassName,\n isImage: isImage,\n isPlaceholder: isPlaceholder,\n });\n var RootType = isImage ? 'span' : 'i';\n var nativeProps = getNativeProps(this.props, htmlElementProperties, [\n 'aria-label',\n ]);\n var imageLoadError = this.state.imageLoadError;\n var imageProps = __assign(__assign({}, this.props.imageProps), { onLoadingStateChange: this._onImageLoadingStateChange });\n var ImageType = (imageLoadError && imageErrorAs) || Image;\n // eslint-disable-next-line deprecation/deprecation\n var ariaLabel = this.props['aria-label'] || this.props.ariaLabel;\n var accessibleName = imageProps.alt || ariaLabel || this.props.title;\n var hasName = !!(accessibleName ||\n this.props['aria-labelledby'] ||\n imageProps['aria-label'] ||\n imageProps['aria-labelledby']);\n var containerProps = hasName\n ? {\n role: isImage || mergeImageProps ? undefined : 'img',\n 'aria-label': isImage || mergeImageProps ? undefined : accessibleName,\n }\n : {\n 'aria-hidden': true,\n };\n var finalIconContentChildren = iconContentChildren;\n if (mergeImageProps && iconContentChildren && typeof iconContentChildren === 'object' && accessibleName) {\n finalIconContentChildren = React.cloneElement(iconContentChildren, {\n alt: accessibleName,\n });\n }\n return (React.createElement(RootType, __assign({ \"data-icon-name\": iconName }, containerProps, nativeProps, (mergeImageProps\n ? {\n title: undefined,\n 'aria-label': undefined,\n }\n : {}), { className: classNames.root }), isImage ? React.createElement(ImageType, __assign({}, imageProps)) : children || finalIconContentChildren));\n };\n return IconBase;\n}(React.Component));\nexport { IconBase };\n//# sourceMappingURL=Icon.base.js.map","import { styled } from '../../Utilities';\nimport { IconBase } from './Icon.base';\nimport { getStyles } from './Icon.styles';\n/**\n * Legacy Icon component which can be targeted by customization. It's recommended to use `FontIcon`\n * or `ImageIcon` instead, especially in scenarios where rendering performance is important.\n * {@docCategory Icon}\n */\nexport var Icon = styled(IconBase, getStyles, undefined, {\n scope: 'Icon',\n}, true);\nIcon.displayName = 'Icon';\n//# sourceMappingURL=Icon.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { Image } from '../Image/Image';\nimport { css, getNativeProps, htmlElementProperties } from '../../Utilities';\nimport { classNames, MS_ICON } from './Icon.styles';\n/**\n * Fast icon component which only supports images (not font glyphs) and can't be targeted by customizations.\n * To style the icon, use `className` or reference `ms-Icon` in CSS.\n * {@docCategory Icon}\n */\nexport var ImageIcon = function (props) {\n var className = props.className, imageProps = props.imageProps;\n var nativeProps = getNativeProps(props, htmlElementProperties, [\n 'aria-label',\n 'aria-labelledby',\n 'title',\n 'aria-describedby',\n ]);\n var altText = imageProps.alt || props['aria-label'];\n var hasName = altText ||\n props['aria-labelledby'] ||\n props.title ||\n imageProps['aria-label'] ||\n imageProps['aria-labelledby'] ||\n imageProps.title;\n // move naming or describing attributes from the container (where they are invalid) to the image\n var imageNameProps = {\n 'aria-labelledby': props['aria-labelledby'],\n 'aria-describedby': props['aria-describedby'],\n title: props.title,\n };\n var containerProps = hasName\n ? {}\n : {\n 'aria-hidden': true,\n };\n return (React.createElement(\"div\", __assign({}, containerProps, nativeProps, { className: css(MS_ICON, classNames.root, classNames.image, className) }),\n React.createElement(Image, __assign({}, imageNameProps, imageProps, { alt: hasName ? altText : '' }))));\n};\n//# sourceMappingURL=ImageIcon.js.map","/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneTabbableElements = {\n /** Tabbing is not allowed */\n none: 0,\n /** All tabbing action is allowed */\n all: 1,\n /** Tabbing is allowed only on input elements */\n inputOnly: 2,\n};\n/**\n * {@docCategory FocusZone}\n */\nexport var FocusZoneDirection;\n(function (FocusZoneDirection) {\n /** Only react to up/down arrows. */\n FocusZoneDirection[FocusZoneDirection[\"vertical\"] = 0] = \"vertical\";\n /** Only react to left/right arrows. */\n FocusZoneDirection[FocusZoneDirection[\"horizontal\"] = 1] = \"horizontal\";\n /** React to all arrows. */\n FocusZoneDirection[FocusZoneDirection[\"bidirectional\"] = 2] = \"bidirectional\";\n /**\n * React to all arrows. Navigate next item in DOM on right/down arrow keys and previous - left/up arrow keys.\n * Right and Left arrow keys are swapped in RTL mode.\n */\n FocusZoneDirection[FocusZoneDirection[\"domOrder\"] = 3] = \"domOrder\";\n})(FocusZoneDirection || (FocusZoneDirection = {}));\n//# sourceMappingURL=FocusZone.types.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { FocusZoneDirection, FocusZoneTabbableElements } from './FocusZone.types';\nimport { KeyCodes, css, elementContains, getDocument, getElementIndexPath, getFocusableByIndexPath, getId, getNativeProps, getNextElement, getParent, getPreviousElement, getRTL, htmlElementProperties, initializeComponentRef, isElementFocusSubZone, isElementFocusZone, isElementTabbable, shouldWrapFocus, warnDeprecations, portalContainsElement, findScrollableParent, createMergedRef, isElementVisibleAndNotHidden, } from '@fluentui/utilities';\nimport { mergeStyles } from '@fluentui/merge-styles';\nimport { getTheme } from '@fluentui/style-utilities';\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\nvar IS_ENTER_DISABLED_ATTRIBUTE = 'data-disable-click-on-enter';\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\nvar TABINDEX = 'tabindex';\nvar NO_VERTICAL_WRAP = 'data-no-vertical-wrap';\nvar NO_HORIZONTAL_WRAP = 'data-no-horizontal-wrap';\nvar LARGE_DISTANCE_FROM_CENTER = 999999999;\nvar LARGE_NEGATIVE_DISTANCE_FROM_CENTER = -999999999;\nvar focusZoneStyles;\nvar focusZoneClass = 'ms-FocusZone';\n/**\n * Raises a click on a target element based on a keyboard event.\n */\nfunction raiseClickFromKeyboardEvent(target, ev) {\n var event;\n if (typeof MouseEvent === 'function') {\n event = new MouseEvent('click', {\n ctrlKey: ev === null || ev === void 0 ? void 0 : ev.ctrlKey,\n metaKey: ev === null || ev === void 0 ? void 0 : ev.metaKey,\n shiftKey: ev === null || ev === void 0 ? void 0 : ev.shiftKey,\n altKey: ev === null || ev === void 0 ? void 0 : ev.altKey,\n bubbles: ev === null || ev === void 0 ? void 0 : ev.bubbles,\n cancelable: ev === null || ev === void 0 ? void 0 : ev.cancelable,\n });\n }\n else {\n event = document.createEvent('MouseEvents');\n // eslint-disable-next-line deprecation/deprecation\n event.initMouseEvent('click', ev ? ev.bubbles : false, ev ? ev.cancelable : false, window, // not using getWindow() since this can only be run client side\n 0, // detail\n 0, // screen x\n 0, // screen y\n 0, // client x\n 0, // client y\n ev ? ev.ctrlKey : false, ev ? ev.altKey : false, ev ? ev.shiftKey : false, ev ? ev.metaKey : false, 0, // button\n null);\n }\n target.dispatchEvent(event);\n}\n// Helper function that will return a class for when the root is focused\nfunction getRootClass() {\n if (!focusZoneStyles) {\n focusZoneStyles = mergeStyles({\n selectors: {\n ':focus': {\n outline: 'none',\n },\n },\n }, focusZoneClass);\n }\n return focusZoneStyles;\n}\nvar _allInstances = {};\nvar _outerZones = new Set();\nvar ALLOWED_INPUT_TYPES = ['text', 'number', 'password', 'email', 'tel', 'url', 'search', 'textarea'];\nvar ALLOW_VIRTUAL_ELEMENTS = false;\nvar FocusZone = /** @class */ (function (_super) {\n __extends(FocusZone, _super);\n function FocusZone(props) {\n var _this = this;\n var _a, _b, _c, _d;\n _this = _super.call(this, props) || this;\n _this._root = React.createRef();\n _this._mergedRef = createMergedRef();\n _this._onFocus = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var _a = _this.props, onActiveElementChanged = _a.onActiveElementChanged, \n // eslint-disable-next-line deprecation/deprecation\n doNotAllowFocusEventToPropagate = _a.doNotAllowFocusEventToPropagate, stopFocusPropagation = _a.stopFocusPropagation, \n // eslint-disable-next-line deprecation/deprecation\n onFocusNotification = _a.onFocusNotification, onFocus = _a.onFocus, shouldFocusInnerElementWhenReceivedFocus = _a.shouldFocusInnerElementWhenReceivedFocus, defaultTabbableElement = _a.defaultTabbableElement;\n var isImmediateDescendant = _this._isImmediateDescendantOfZone(ev.target);\n var newActiveElement;\n if (isImmediateDescendant) {\n newActiveElement = ev.target;\n }\n else {\n var parentElement = ev.target;\n while (parentElement && parentElement !== _this._root.current) {\n if (isElementTabbable(parentElement) && _this._isImmediateDescendantOfZone(parentElement)) {\n newActiveElement = parentElement;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n }\n // If an inner focusable element should be focused when FocusZone container receives focus\n if (shouldFocusInnerElementWhenReceivedFocus && ev.target === _this._root.current) {\n var maybeElementToFocus = defaultTabbableElement &&\n typeof defaultTabbableElement === 'function' &&\n _this._root.current &&\n defaultTabbableElement(_this._root.current);\n // try to focus defaultTabbable element\n if (maybeElementToFocus && isElementTabbable(maybeElementToFocus)) {\n newActiveElement = maybeElementToFocus;\n maybeElementToFocus.focus();\n }\n else {\n // force focus on first focusable element\n _this.focus(true);\n if (_this._activeElement) {\n // set to null as new active element was handled in method above\n newActiveElement = null;\n }\n }\n }\n var initialElementFocused = !_this._activeElement;\n // If the new active element is a child of this zone and received focus,\n // update alignment an immediate descendant\n if (newActiveElement && newActiveElement !== _this._activeElement) {\n if (isImmediateDescendant || initialElementFocused) {\n _this._setFocusAlignment(newActiveElement, true, true);\n }\n _this._activeElement = newActiveElement;\n if (initialElementFocused) {\n _this._updateTabIndexes();\n }\n }\n if (onActiveElementChanged) {\n onActiveElementChanged(_this._activeElement, ev);\n }\n if (stopFocusPropagation || doNotAllowFocusEventToPropagate) {\n ev.stopPropagation();\n }\n if (onFocus) {\n onFocus(ev);\n }\n else if (onFocusNotification) {\n onFocusNotification();\n }\n };\n _this._onBlur = function () {\n _this._setParkedFocus(false);\n };\n _this._onMouseDown = function (ev) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n var disabled = _this.props.disabled;\n if (disabled) {\n return;\n }\n var target = ev.target;\n var path = [];\n while (target && target !== _this._root.current) {\n path.push(target);\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n }\n while (path.length) {\n target = path.pop();\n if (target && isElementTabbable(target)) {\n _this._setActiveElement(target, true);\n }\n if (isElementFocusZone(target)) {\n // Stop here since the focus zone will take care of its own children.\n break;\n }\n }\n };\n /**\n * Handle the keystrokes.\n */\n _this._onKeyDown = function (ev, theme) {\n if (_this._portalContainsElement(ev.target)) {\n // If the event target is inside a portal do not process the event.\n return;\n }\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, direction = _a.direction, disabled = _a.disabled, isInnerZoneKeystroke = _a.isInnerZoneKeystroke, pagingSupportDisabled = _a.pagingSupportDisabled, shouldEnterInnerZone = _a.shouldEnterInnerZone;\n if (disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // If the default has been prevented, do not process keyboard events.\n if (ev.isDefaultPrevented()) {\n return;\n }\n if (_this._getDocument().activeElement === _this._root.current && _this._isInnerZone) {\n // If this element has focus, it is being controlled by a parent.\n // Ignore the keystroke.\n return;\n }\n if (((shouldEnterInnerZone && shouldEnterInnerZone(ev)) || (isInnerZoneKeystroke && isInnerZoneKeystroke(ev))) &&\n _this._isImmediateDescendantOfZone(ev.target)) {\n // Try to focus\n var innerZone = _this._getFirstInnerZone();\n if (innerZone) {\n if (!innerZone.focus(true)) {\n return;\n }\n }\n else if (isElementFocusSubZone(ev.target)) {\n if (!_this.focusElement(getNextElement(ev.target, ev.target.firstChild, true))) {\n return;\n }\n }\n else {\n return;\n }\n }\n else if (ev.altKey) {\n return;\n }\n else {\n // eslint-disable-next-line @fluentui/deprecated-keyboard-event-props, deprecation/deprecation\n switch (ev.which) {\n case KeyCodes.space:\n if (_this._shouldRaiseClicksOnSpace && _this._tryInvokeClickForFocusable(ev.target, ev)) {\n break;\n }\n return;\n case KeyCodes.left:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusLeft(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.right:\n if (direction !== FocusZoneDirection.vertical) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusRight(theme)) {\n break;\n }\n }\n return;\n case KeyCodes.up:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusUp()) {\n break;\n }\n }\n return;\n case KeyCodes.down:\n if (direction !== FocusZoneDirection.horizontal) {\n _this._preventDefaultWhenHandled(ev);\n if (_this._moveFocusDown()) {\n break;\n }\n }\n return;\n case KeyCodes.pageDown:\n if (!pagingSupportDisabled && _this._moveFocusPaging(true)) {\n break;\n }\n return;\n case KeyCodes.pageUp:\n if (!pagingSupportDisabled && _this._moveFocusPaging(false)) {\n break;\n }\n return;\n case KeyCodes.tab:\n if (\n // eslint-disable-next-line deprecation/deprecation\n _this.props.allowTabKey ||\n _this.props.handleTabKey === FocusZoneTabbableElements.all ||\n (_this.props.handleTabKey === FocusZoneTabbableElements.inputOnly &&\n _this._isElementInput(ev.target))) {\n var focusChanged = false;\n _this._processingTabKey = true;\n if (direction === FocusZoneDirection.vertical ||\n !_this._shouldWrapFocus(_this._activeElement, NO_HORIZONTAL_WRAP)) {\n focusChanged = ev.shiftKey ? _this._moveFocusUp() : _this._moveFocusDown();\n }\n else {\n var tabWithDirection = getRTL(theme) ? !ev.shiftKey : ev.shiftKey;\n focusChanged = tabWithDirection ? _this._moveFocusLeft(theme) : _this._moveFocusRight(theme);\n }\n _this._processingTabKey = false;\n if (focusChanged) {\n break;\n }\n else if (_this.props.shouldResetActiveElementWhenTabFromZone) {\n _this._activeElement = null;\n }\n }\n return;\n case KeyCodes.home:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, false))) {\n return false;\n }\n var firstChild = _this._root.current && _this._root.current.firstChild;\n if (_this._root.current &&\n firstChild &&\n _this.focusElement(getNextElement(_this._root.current, firstChild, true))) {\n break;\n }\n return;\n case KeyCodes.end:\n if (_this._isContentEditableElement(ev.target) ||\n (_this._isElementInput(ev.target) &&\n !_this._shouldInputLoseFocus(ev.target, true))) {\n return false;\n }\n var lastChild = _this._root.current && _this._root.current.lastChild;\n if (_this._root.current &&\n _this.focusElement(getPreviousElement(_this._root.current, lastChild, true, true, true))) {\n break;\n }\n return;\n case KeyCodes.enter:\n if (_this._shouldRaiseClicksOnEnter && _this._tryInvokeClickForFocusable(ev.target, ev)) {\n break;\n }\n return;\n default:\n return;\n }\n }\n ev.preventDefault();\n ev.stopPropagation();\n };\n _this._getHorizontalDistanceFromCenter = function (isForward, \n // eslint-disable-next-line deprecation/deprecation\n activeRect, \n // eslint-disable-next-line deprecation/deprecation\n targetRect) {\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = _this._focusAlignment.left || _this._focusAlignment.x || 0;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var isValidCandidateOnpagingDown = isForward && targetRectTop > activeRectBottom;\n var isValidCandidateOnpagingUp = !isForward && targetRectBottom < activeRectTop;\n if (isValidCandidateOnpagingDown || isValidCandidateOnpagingUp) {\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n return 0;\n }\n return Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n };\n // Manage componentRef resolution.\n initializeComponentRef(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations('FocusZone', props, {\n rootProps: undefined,\n allowTabKey: 'handleTabKey',\n elementType: 'as',\n ariaDescribedBy: 'aria-describedby',\n ariaLabelledBy: 'aria-labelledby',\n });\n }\n _this._id = getId('FocusZone');\n _this._focusAlignment = {\n left: 0,\n top: 0,\n };\n _this._processingTabKey = false;\n var shouldRaiseClicksFallback = (_b = (_a = props.shouldRaiseClicks) !== null && _a !== void 0 ? _a : FocusZone.defaultProps.shouldRaiseClicks) !== null && _b !== void 0 ? _b : true;\n _this._shouldRaiseClicksOnEnter = (_c = props.shouldRaiseClicksOnEnter) !== null && _c !== void 0 ? _c : shouldRaiseClicksFallback;\n _this._shouldRaiseClicksOnSpace = (_d = props.shouldRaiseClicksOnSpace) !== null && _d !== void 0 ? _d : shouldRaiseClicksFallback;\n return _this;\n }\n /** Used for testing purposes only. */\n FocusZone.getOuterZones = function () {\n return _outerZones.size;\n };\n /**\n * Handle global tab presses so that we can patch tabindexes on the fly.\n * HEADS UP: This must not be an arrow function in order to be referentially equal among instances\n * for ref counting to work correctly!\n */\n FocusZone._onKeyDownCapture = function (ev) {\n // eslint-disable-next-line deprecation/deprecation, @fluentui/deprecated-keyboard-event-props\n if (ev.which === KeyCodes.tab) {\n _outerZones.forEach(function (zone) { return zone._updateTabIndexes(); });\n }\n };\n FocusZone.prototype.componentDidMount = function () {\n var root = this._root.current;\n _allInstances[this._id] = this;\n if (root) {\n var parentElement = getParent(root, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._getDocument().body && parentElement.nodeType === 1) {\n if (isElementFocusZone(parentElement)) {\n this._isInnerZone = true;\n break;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n if (!this._isInnerZone) {\n _outerZones.add(this);\n this._root.current && this._root.current.addEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n this._root.current && this._root.current.addEventListener('blur', this._onBlur, true);\n // Assign initial tab indexes so that we can set initial focus as appropriate.\n this._updateTabIndexes();\n if (this.props.defaultTabbableElement && typeof this.props.defaultTabbableElement === 'string') {\n this._activeElement = this._getDocument().querySelector(this.props.defaultTabbableElement);\n // eslint-disable-next-line deprecation/deprecation\n }\n else if (this.props.defaultActiveElement) {\n // eslint-disable-next-line deprecation/deprecation\n this._activeElement = this._getDocument().querySelector(this.props.defaultActiveElement);\n }\n if (this.props.shouldFocusOnMount) {\n this.focus();\n }\n }\n };\n FocusZone.prototype.componentDidUpdate = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n // If either _activeElement or _defaultFocusElement are no longer contained by _root,\n // reset those variables (and update tab indexes) to avoid memory leaks\n if ((this._activeElement && !elementContains(this._root.current, this._activeElement, ALLOW_VIRTUAL_ELEMENTS)) ||\n (this._defaultFocusElement &&\n !elementContains(this._root.current, this._defaultFocusElement, ALLOW_VIRTUAL_ELEMENTS))) {\n this._activeElement = null;\n this._defaultFocusElement = null;\n this._updateTabIndexes();\n }\n if (!this.props.preventFocusRestoration &&\n doc &&\n this._lastIndexPath &&\n (doc.activeElement === doc.body || doc.activeElement === null || doc.activeElement === root)) {\n // The element has been removed after the render, attempt to restore focus.\n var elementToFocus = getFocusableByIndexPath(root, this._lastIndexPath);\n if (elementToFocus) {\n this._setActiveElement(elementToFocus, true);\n elementToFocus.focus();\n this._setParkedFocus(false);\n }\n else {\n // We had a focus path to restore, but now that path is unresolvable. Park focus\n // on the container until we can try again.\n this._setParkedFocus(true);\n }\n }\n };\n FocusZone.prototype.componentWillUnmount = function () {\n delete _allInstances[this._id];\n if (!this._isInnerZone) {\n _outerZones.delete(this);\n this._root.current && this._root.current.removeEventListener('keydown', FocusZone._onKeyDownCapture, true);\n }\n if (this._root.current) {\n this._root.current.removeEventListener('blur', this._onBlur, true);\n }\n this._activeElement = null;\n this._defaultFocusElement = null;\n };\n FocusZone.prototype.render = function () {\n var _this = this;\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, tag = _a.as, elementType = _a.elementType, rootProps = _a.rootProps, ariaDescribedBy = _a.ariaDescribedBy, ariaLabelledBy = _a.ariaLabelledBy, className = _a.className;\n var divProps = getNativeProps(this.props, htmlElementProperties);\n var Tag = tag || elementType || 'div';\n // Note, right before rendering/reconciling proceeds, we need to record if focus\n // was in the zone before the update. This helper will track this and, if focus\n // was actually in the zone, what the index path to the element is at this time.\n // Then, later in componentDidUpdate, we can evaluate if we need to restore it in\n // the case the element was removed.\n this._evaluateFocusBeforeRender();\n // Only support RTL defined in global theme, not contextual theme/RTL.\n var theme = getTheme();\n return (React.createElement(Tag, __assign({ \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": ariaDescribedBy }, divProps, rootProps, { \n // Once the getClassName correctly memoizes inputs this should\n // be replaced so that className is passed to getRootClass and is included there so\n // the class names will always be in the same order.\n className: css(getRootClass(), className), \n // eslint-disable-next-line deprecation/deprecation\n ref: this._mergedRef(this.props.elementRef, this._root), \"data-focuszone-id\": this._id, \n // eslint-disable-next-line react/jsx-no-bind\n onKeyDown: function (ev) { return _this._onKeyDown(ev, theme); }, onFocus: this._onFocus, onMouseDownCapture: this._onMouseDown }), this.props.children));\n };\n /**\n * Sets focus to the first tabbable item in the zone.\n * @param forceIntoFirstElement - If true, focus will be forced into the first element, even\n * if focus is already in the focus zone.\n * @param bypassHiddenElements - If true, focus will be not be set on hidden elements.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focus = function (forceIntoFirstElement, bypassHiddenElements) {\n if (forceIntoFirstElement === void 0) { forceIntoFirstElement = false; }\n if (bypassHiddenElements === void 0) { bypassHiddenElements = false; }\n if (this._root.current) {\n if (!forceIntoFirstElement &&\n this._root.current.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n this._isInnerZone) {\n var ownerZoneElement = this._getOwnerZone(this._root.current);\n if (ownerZoneElement !== this._root.current) {\n var ownerZone = _allInstances[ownerZoneElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n return !!ownerZone && ownerZone.focusElement(this._root.current);\n }\n return false;\n }\n else if (!forceIntoFirstElement &&\n this._activeElement &&\n elementContains(this._root.current, this._activeElement) &&\n isElementTabbable(this._activeElement) &&\n (!bypassHiddenElements || isElementVisibleAndNotHidden(this._activeElement))) {\n this._activeElement.focus();\n return true;\n }\n else {\n var firstChild = this._root.current.firstChild;\n return this.focusElement(getNextElement(this._root.current, firstChild, true, undefined, undefined, undefined, undefined, undefined, bypassHiddenElements));\n }\n }\n return false;\n };\n /**\n * Sets focus to the last tabbable item in the zone.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusLast = function () {\n if (this._root.current) {\n var lastChild = this._root.current && this._root.current.lastChild;\n return this.focusElement(getPreviousElement(this._root.current, lastChild, true, true, true));\n }\n return false;\n };\n /**\n * Sets focus to a specific child element within the zone. This can be used in conjunction with\n * shouldReceiveFocus to create delayed focus scenarios (like animate the scroll position to the correct\n * location and then focus.)\n * @param element - The child element within the zone to focus.\n * @param forceAlignment - If true, focus alignment will be set according to the element provided.\n * @returns True if focus could be set to an active element, false if no operation was taken.\n */\n FocusZone.prototype.focusElement = function (element, forceAlignment) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, onBeforeFocus = _a.onBeforeFocus, shouldReceiveFocus = _a.shouldReceiveFocus;\n if ((shouldReceiveFocus && !shouldReceiveFocus(element)) || (onBeforeFocus && !onBeforeFocus(element))) {\n return false;\n }\n if (element) {\n // when we set focus to a specific child, we should recalculate the alignment depending on its position.\n this._setActiveElement(element, forceAlignment);\n if (this._activeElement) {\n this._activeElement.focus();\n }\n return true;\n }\n return false;\n };\n /**\n * Forces horizontal alignment in the context of vertical arrowing to use specific point as the reference,\n * rather than a center based on the last horizontal motion.\n * @param point - the new reference point.\n */\n FocusZone.prototype.setFocusAlignment = function (point) {\n this._focusAlignment = point;\n };\n Object.defineProperty(FocusZone.prototype, \"defaultFocusElement\", {\n get: function () {\n return this._defaultFocusElement;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(FocusZone.prototype, \"activeElement\", {\n get: function () {\n return this._activeElement;\n },\n enumerable: false,\n configurable: true\n });\n FocusZone.prototype._evaluateFocusBeforeRender = function () {\n var root = this._root.current;\n var doc = this._getDocument();\n if (doc) {\n var focusedElement = doc.activeElement;\n // Only update the index path if we are not parked on the root.\n if (focusedElement !== root) {\n var shouldRestoreFocus = elementContains(root, focusedElement, false);\n this._lastIndexPath = shouldRestoreFocus ? getElementIndexPath(root, focusedElement) : undefined;\n }\n }\n };\n /**\n * When focus is in the zone at render time but then all focusable elements are removed,\n * we \"park\" focus temporarily on the root. Once we update with focusable children, we restore\n * focus to the closest path from previous. If the user tabs away from the parked container,\n * we restore focusability to the pre-parked state.\n */\n FocusZone.prototype._setParkedFocus = function (isParked) {\n var root = this._root.current;\n if (root && this._isParked !== isParked) {\n this._isParked = isParked;\n if (isParked) {\n if (!this.props.allowFocusRoot) {\n this._parkedTabIndex = root.getAttribute('tabindex');\n root.setAttribute('tabindex', '-1');\n }\n root.focus();\n }\n else if (!this.props.allowFocusRoot) {\n if (this._parkedTabIndex) {\n root.setAttribute('tabindex', this._parkedTabIndex);\n this._parkedTabIndex = undefined;\n }\n else {\n root.removeAttribute('tabindex');\n }\n }\n }\n };\n FocusZone.prototype._setActiveElement = function (element, forceAlignment) {\n var previousActiveElement = this._activeElement;\n this._activeElement = element;\n if (previousActiveElement) {\n if (isElementFocusZone(previousActiveElement)) {\n this._updateTabIndexes(previousActiveElement);\n }\n previousActiveElement.tabIndex = -1;\n }\n if (this._activeElement) {\n if (!this._focusAlignment || forceAlignment) {\n this._setFocusAlignment(element, true, true);\n }\n this._activeElement.tabIndex = 0;\n }\n };\n FocusZone.prototype._preventDefaultWhenHandled = function (ev) {\n this.props.preventDefaultWhenHandled && ev.preventDefault();\n };\n /**\n * Walk up the dom try to find a focusable element.\n */\n FocusZone.prototype._tryInvokeClickForFocusable = function (targetElement, ev) {\n var target = targetElement;\n if (target === this._root.current) {\n return false;\n }\n do {\n if (target.tagName === 'BUTTON' ||\n target.tagName === 'A' ||\n target.tagName === 'INPUT' ||\n target.tagName === 'TEXTAREA' ||\n target.tagName === 'SUMMARY') {\n return false;\n }\n if (this._isImmediateDescendantOfZone(target) &&\n target.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true' &&\n target.getAttribute(IS_ENTER_DISABLED_ATTRIBUTE) !== 'true') {\n raiseClickFromKeyboardEvent(target, ev);\n return true;\n }\n target = getParent(target, ALLOW_VIRTUAL_ELEMENTS);\n } while (target !== this._root.current);\n return false;\n };\n /**\n * Traverse to find first child zone.\n */\n FocusZone.prototype._getFirstInnerZone = function (rootElement) {\n rootElement = rootElement || this._activeElement || this._root.current;\n if (!rootElement) {\n return null;\n }\n if (isElementFocusZone(rootElement)) {\n return _allInstances[rootElement.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var child = rootElement.firstElementChild;\n while (child) {\n if (isElementFocusZone(child)) {\n return _allInstances[child.getAttribute(FOCUSZONE_ID_ATTRIBUTE)];\n }\n var match = this._getFirstInnerZone(child);\n if (match) {\n return match;\n }\n child = child.nextElementSibling;\n }\n return null;\n };\n FocusZone.prototype._moveFocus = function (isForward, \n // eslint-disable-next-line deprecation/deprecation\n getDistanceFromCenter, ev, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n var candidateDistance = -1;\n var candidateElement = undefined;\n var changedFocus = false;\n var isBidirectional = this.props.direction === FocusZoneDirection.bidirectional;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var activeRect = isBidirectional ? element.getBoundingClientRect() : null;\n do {\n element = (isForward ? getNextElement(this._root.current, element) : getPreviousElement(this._root.current, element));\n if (isBidirectional) {\n if (element) {\n var targetRect = element.getBoundingClientRect();\n // eslint-disable-next-line deprecation/deprecation\n var elementDistance = getDistanceFromCenter(activeRect, targetRect);\n if (elementDistance === -1 && candidateDistance === -1) {\n candidateElement = element;\n break;\n }\n if (elementDistance > -1 && (candidateDistance === -1 || elementDistance < candidateDistance)) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n if (candidateDistance >= 0 && elementDistance < 0) {\n break;\n }\n }\n }\n else {\n candidateElement = element;\n break;\n }\n } while (element);\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n else {\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n }\n return changedFocus;\n };\n FocusZone.prototype._moveFocusDown = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (\n // eslint-disable-next-line deprecation/deprecation\n this._moveFocus(true, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n if (targetRectTop < activeRectBottom) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectTop >= activeRectBottom) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusUp = function () {\n var _this = this;\n var targetTop = -1;\n // eslint-disable-next-line deprecation/deprecation\n var leftAlignment = this._focusAlignment.left || this._focusAlignment.x || 0;\n if (\n // eslint-disable-next-line deprecation/deprecation\n this._moveFocus(false, function (activeRect, targetRect) {\n var distance = -1;\n // ClientRect values can be floats that differ by very small fractions of a decimal.\n // If the difference between top and bottom are within a pixel then we should treat\n // them as equivalent by using Math.floor. For instance 5.2222 and 5.222221 should be equivalent,\n // but without Math.Floor they will be handled incorrectly.\n var targetRectBottom = Math.floor(targetRect.bottom);\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectTop = Math.floor(activeRect.top);\n if (targetRectBottom > activeRectTop) {\n if (!_this._shouldWrapFocus(_this._activeElement, NO_VERTICAL_WRAP)) {\n return LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return LARGE_DISTANCE_FROM_CENTER;\n }\n if ((targetTop === -1 && targetRectBottom <= activeRectTop) || targetRectTop === targetTop) {\n targetTop = targetRectTop;\n if (leftAlignment >= targetRect.left && leftAlignment <= targetRect.left + targetRect.width) {\n distance = 0;\n }\n else {\n distance = Math.abs(targetRect.left + targetRect.width / 2 - leftAlignment);\n }\n }\n return distance;\n })) {\n this._setFocusAlignment(this._activeElement, false, true);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusLeft = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(getRTL(theme), \n // eslint-disable-next-line deprecation/deprecation\n function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusRight for LTR.\n // Going left at a leftmost rectangle will go down a line instead of up a line like in LTR.\n // This is important, because we want to be comparing the top of the target rect\n // with the bottom of the active rect.\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.right <= activeRect.right &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = activeRect.right - targetRect.right;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusRight = function (theme) {\n var _this = this;\n var shouldWrap = this._shouldWrapFocus(this._activeElement, NO_HORIZONTAL_WRAP);\n if (this._moveFocus(!getRTL(theme), \n // eslint-disable-next-line deprecation/deprecation\n function (activeRect, targetRect) {\n var distance = -1;\n var topBottomComparison;\n if (getRTL(theme)) {\n // When in RTL, this comparison should be the same as the one in _moveFocusLeft for LTR.\n // Going right at a rightmost rectangle will go up a line instead of down a line like in LTR.\n // This is important, because we want to be comparing the bottom of the target rect\n // with the top of the active rect.\n topBottomComparison = parseFloat(targetRect.bottom.toFixed(3)) > parseFloat(activeRect.top.toFixed(3));\n }\n else {\n topBottomComparison = parseFloat(targetRect.top.toFixed(3)) < parseFloat(activeRect.bottom.toFixed(3));\n }\n if (topBottomComparison &&\n targetRect.left >= activeRect.left &&\n _this.props.direction !== FocusZoneDirection.vertical) {\n distance = targetRect.left - activeRect.left;\n }\n else if (!shouldWrap) {\n distance = LARGE_NEGATIVE_DISTANCE_FROM_CENTER;\n }\n return distance;\n }, undefined /*ev*/, shouldWrap)) {\n this._setFocusAlignment(this._activeElement, true, false);\n return true;\n }\n return false;\n };\n FocusZone.prototype._moveFocusPaging = function (isForward, useDefaultWrap) {\n if (useDefaultWrap === void 0) { useDefaultWrap = true; }\n var element = this._activeElement;\n if (!element || !this._root.current) {\n return false;\n }\n if (this._isElementInput(element)) {\n if (!this._shouldInputLoseFocus(element, isForward)) {\n return false;\n }\n }\n var scrollableParent = findScrollableParent(element);\n if (!scrollableParent) {\n return false;\n }\n var candidateDistance = -1;\n var candidateElement = undefined;\n var targetTop = -1;\n var targetBottom = -1;\n var pagesize = scrollableParent.clientHeight;\n var activeRect = element.getBoundingClientRect();\n do {\n element = isForward\n ? getNextElement(this._root.current, element)\n : getPreviousElement(this._root.current, element);\n if (element) {\n var targetRect = element.getBoundingClientRect();\n var targetRectTop = Math.floor(targetRect.top);\n var activeRectBottom = Math.floor(activeRect.bottom);\n var targetRectBottom = Math.floor(targetRect.bottom);\n var activeRectTop = Math.floor(activeRect.top);\n var elementDistance = this._getHorizontalDistanceFromCenter(isForward, activeRect, targetRect);\n var isElementPassedPageSizeOnPagingDown = isForward && targetRectTop > activeRectBottom + pagesize;\n var isElementPassedPageSizeOnPagingUp = !isForward && targetRectBottom < activeRectTop - pagesize;\n if (isElementPassedPageSizeOnPagingDown || isElementPassedPageSizeOnPagingUp) {\n break;\n }\n if (elementDistance > -1) {\n // for paging down\n if (isForward && targetRectTop > targetTop) {\n targetTop = targetRectTop;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (!isForward && targetRectBottom < targetBottom) {\n // for paging up\n targetBottom = targetRectBottom;\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n else if (candidateDistance === -1 || elementDistance <= candidateDistance) {\n candidateDistance = elementDistance;\n candidateElement = element;\n }\n }\n }\n } while (element);\n var changedFocus = false;\n // Focus the closest candidate\n if (candidateElement && candidateElement !== this._activeElement) {\n changedFocus = true;\n this.focusElement(candidateElement);\n this._setFocusAlignment(candidateElement, false, true);\n }\n else if (this.props.isCircularNavigation && useDefaultWrap) {\n if (isForward) {\n return this.focusElement(getNextElement(this._root.current, this._root.current.firstElementChild, true));\n }\n return this.focusElement(getPreviousElement(this._root.current, this._root.current.lastElementChild, true, true, true));\n }\n return changedFocus;\n };\n FocusZone.prototype._setFocusAlignment = function (element, isHorizontal, isVertical) {\n if (this.props.direction === FocusZoneDirection.bidirectional &&\n (!this._focusAlignment || isHorizontal || isVertical)) {\n var rect = element.getBoundingClientRect();\n var left = rect.left + rect.width / 2;\n var top_1 = rect.top + rect.height / 2;\n if (!this._focusAlignment) {\n this._focusAlignment = { left: left, top: top_1 };\n }\n if (isHorizontal) {\n this._focusAlignment.left = left;\n }\n if (isVertical) {\n this._focusAlignment.top = top_1;\n }\n }\n };\n FocusZone.prototype._isImmediateDescendantOfZone = function (element) {\n return this._getOwnerZone(element) === this._root.current;\n };\n FocusZone.prototype._getOwnerZone = function (element) {\n var parentElement = getParent(element, ALLOW_VIRTUAL_ELEMENTS);\n while (parentElement && parentElement !== this._root.current && parentElement !== this._getDocument().body) {\n if (isElementFocusZone(parentElement)) {\n return parentElement;\n }\n parentElement = getParent(parentElement, ALLOW_VIRTUAL_ELEMENTS);\n }\n return parentElement;\n };\n FocusZone.prototype._updateTabIndexes = function (element) {\n if (!this._activeElement &&\n this.props.defaultTabbableElement &&\n typeof this.props.defaultTabbableElement === 'function') {\n this._activeElement = this.props.defaultTabbableElement(this._root.current);\n }\n if (!element && this._root.current) {\n this._defaultFocusElement = null;\n element = this._root.current;\n if (this._activeElement && !elementContains(element, this._activeElement)) {\n this._activeElement = null;\n }\n }\n // If active element changes state to disabled, set it to null.\n // Otherwise, we lose keyboard accessibility to other elements in focus zone.\n if (this._activeElement && !isElementTabbable(this._activeElement)) {\n this._activeElement = null;\n }\n var childNodes = element && element.children;\n for (var childIndex = 0; childNodes && childIndex < childNodes.length; childIndex++) {\n var child = childNodes[childIndex];\n if (!isElementFocusZone(child)) {\n // If the item is explicitly set to not be focusable then TABINDEX needs to be set to -1.\n if (child.getAttribute && child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'false') {\n child.setAttribute(TABINDEX, '-1');\n }\n if (isElementTabbable(child)) {\n if (this.props.disabled) {\n child.setAttribute(TABINDEX, '-1');\n }\n else if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n else if (child.tagName === 'svg' && child.getAttribute('focusable') !== 'false') {\n // Disgusting IE hack. Sad face.\n child.setAttribute('focusable', 'false');\n }\n }\n else if (child.getAttribute(IS_FOCUSABLE_ATTRIBUTE) === 'true') {\n if (!this._isInnerZone &&\n ((!this._activeElement && !this._defaultFocusElement) || this._activeElement === child)) {\n this._defaultFocusElement = child;\n if (child.getAttribute(TABINDEX) !== '0') {\n child.setAttribute(TABINDEX, '0');\n }\n }\n else if (child.getAttribute(TABINDEX) !== '-1') {\n child.setAttribute(TABINDEX, '-1');\n }\n }\n this._updateTabIndexes(child);\n }\n };\n FocusZone.prototype._isContentEditableElement = function (element) {\n return element && element.getAttribute('contenteditable') === 'true';\n };\n FocusZone.prototype._isElementInput = function (element) {\n if (element &&\n element.tagName &&\n (element.tagName.toLowerCase() === 'input' || element.tagName.toLowerCase() === 'textarea')) {\n return true;\n }\n return false;\n };\n FocusZone.prototype._shouldInputLoseFocus = function (element, isForward) {\n // If a tab was used, we want to focus on the next element.\n if (!this._processingTabKey &&\n element &&\n element.type &&\n ALLOWED_INPUT_TYPES.indexOf(element.type.toLowerCase()) > -1) {\n var selectionStart = element.selectionStart;\n var selectionEnd = element.selectionEnd;\n var isRangeSelected = selectionStart !== selectionEnd;\n var inputValue = element.value;\n var isReadonly = element.readOnly;\n // We shouldn't lose focus in the following cases:\n // 1. There is range selected.\n // 2. When selection start is larger than 0 and it is backward and not readOnly.\n // 3. when selection start is not the end of length, it is forward and not readOnly.\n // 4. We press any of the arrow keys when our handleTabKey isn't none or undefined (only losing focus if we hit\n // tab) and if shouldInputLoseFocusOnArrowKey is defined, if scenario prefers to not loose the focus which is\n // determined by calling the callback shouldInputLoseFocusOnArrowKey\n if (isRangeSelected ||\n (selectionStart > 0 && !isForward && !isReadonly) ||\n (selectionStart !== inputValue.length && isForward && !isReadonly) ||\n (!!this.props.handleTabKey &&\n !(this.props.shouldInputLoseFocusOnArrowKey && this.props.shouldInputLoseFocusOnArrowKey(element)))) {\n return false;\n }\n }\n return true;\n };\n FocusZone.prototype._shouldWrapFocus = function (element, noWrapDataAttribute) {\n return this.props.checkForNoWrap ? shouldWrapFocus(element, noWrapDataAttribute) : true;\n };\n /**\n * Returns true if the element is a descendant of the FocusZone through a React portal.\n */\n FocusZone.prototype._portalContainsElement = function (element) {\n return element && !!this._root.current && portalContainsElement(element, this._root.current);\n };\n FocusZone.prototype._getDocument = function () {\n return getDocument(this._root.current);\n };\n FocusZone.defaultProps = {\n isCircularNavigation: false,\n direction: FocusZoneDirection.bidirectional,\n shouldRaiseClicks: true,\n };\n return FocusZone;\n}(React.Component));\nexport { FocusZone };\n//# sourceMappingURL=FocusZone.js.map","import { __assign, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { useMergedRefs } from '@fluentui/react-hooks';\nimport { classNamesFunction, useFocusRects } from '@fluentui/utilities';\nvar getClassNames = classNamesFunction();\n/**\n * The useLink hook processes the Link component props and returns\n * state, slots and slotProps for consumption by the component.\n */\nexport var useLink = function (props, forwardedRef) {\n var as = props.as, className = props.className, disabled = props.disabled, href = props.href, onClick = props.onClick, styles = props.styles, theme = props.theme, underline = props.underline;\n var rootRef = React.useRef(null);\n var mergedRootRefs = useMergedRefs(rootRef, forwardedRef);\n useComponentRef(props, rootRef);\n useFocusRects(rootRef);\n var classNames = getClassNames(styles, {\n className: className,\n isButton: !href,\n isDisabled: disabled,\n isUnderlined: underline,\n theme: theme,\n });\n var _onClick = function (ev) {\n if (disabled) {\n ev.preventDefault();\n }\n else if (onClick) {\n onClick(ev);\n }\n };\n var rootType = as ? as : href ? 'a' : 'button';\n var state = {};\n var slots = { root: rootType };\n var slotProps = {\n root: __assign(__assign({}, adjustPropsForRootType(rootType, props)), { 'aria-disabled': disabled, className: classNames.root, onClick: _onClick, ref: mergedRootRefs }),\n };\n return { state: state, slots: slots, slotProps: slotProps };\n};\nvar useComponentRef = function (props, link) {\n React.useImperativeHandle(props.componentRef, function () { return ({\n focus: function () {\n if (link.current) {\n link.current.focus();\n }\n },\n }); }, [link]);\n};\nvar adjustPropsForRootType = function (RootType, props) {\n // Deconstruct the props so we remove props like `as`, `theme` and `styles`\n // as those will always be removed. We also take some props that are optional\n // based on the RootType.\n var as = props.as, disabled = props.disabled, target = props.target, href = props.href, theme = props.theme, getStyles = props.getStyles, styles = props.styles, componentRef = props.componentRef, underline = props.underline, restProps = __rest(props, [\"as\", \"disabled\", \"target\", \"href\", \"theme\", \"getStyles\", \"styles\", \"componentRef\", \"underline\"]);\n // RootType will be a string if we're dealing with an html component\n if (typeof RootType === 'string') {\n // Remove the disabled prop for anchor elements\n if (RootType === 'a') {\n return __assign({ target: target, href: disabled ? undefined : href }, restProps);\n }\n // Add the type='button' prop for button elements\n if (RootType === 'button') {\n return __assign({ type: 'button', disabled: disabled }, restProps);\n }\n // Remove the target and href props for all other non anchor elements\n return __assign(__assign({}, restProps), { disabled: disabled });\n }\n // Retain all props except 'as' for ReactComponents\n return __assign({ target: target, href: href, disabled: disabled }, restProps);\n};\n//# sourceMappingURL=useLink.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { useLink } from './useLink';\nexport var LinkBase = React.forwardRef(function (props, ref) {\n var _a = useLink(props, ref), slots = _a.slots, slotProps = _a.slotProps;\n return React.createElement(slots.root, __assign({}, slotProps.root));\n});\nLinkBase.displayName = 'LinkBase';\n//# sourceMappingURL=Link.base.js.map","import { getGlobalClassNames, HighContrastSelector } from '@fluentui/style-utilities';\nexport var GlobalClassNames = {\n root: 'ms-Link',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g;\n var className = props.className, isButton = props.isButton, isDisabled = props.isDisabled, isUnderlined = props.isUnderlined, theme = props.theme;\n var semanticColors = theme.semanticColors;\n // Tokens\n var linkColor = semanticColors.link;\n var linkInteractedColor = semanticColors.linkHovered;\n var linkDisabledColor = semanticColors.disabledText;\n var focusBorderColor = semanticColors.focusBorder;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n color: linkColor,\n outline: 'none',\n fontSize: 'inherit',\n fontWeight: 'inherit',\n textDecoration: isUnderlined ? 'underline' : 'none',\n selectors: (_a = {\n '.ms-Fabric--isFocusVisible &:focus': {\n // Can't use getFocusStyle because it doesn't support wrapping links\n // https://github.com/microsoft/fluentui/issues/4883#issuecomment-406743543\n // Using box-shadow and outline allows the focus rect to wrap links that span multiple lines\n // and helps the focus rect avoid getting clipped.\n boxShadow: \"0 0 0 1px \".concat(focusBorderColor, \" inset\"),\n outline: \"1px auto \".concat(focusBorderColor),\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n outline: '1px solid WindowText',\n },\n _b),\n }\n },\n _a[HighContrastSelector] = {\n // For IE high contrast mode\n borderBottom: 'none',\n },\n _a),\n },\n isButton && {\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n cursor: 'pointer',\n display: 'inline',\n margin: 0,\n overflow: 'inherit',\n padding: 0,\n textAlign: 'left',\n textOverflow: 'inherit',\n userSelect: 'text',\n borderBottom: '1px solid transparent',\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'LinkText',\n forcedColorAdjust: 'none',\n },\n _c),\n },\n !isButton && {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n // This is mainly for MessageBar, which sets MsHighContrastAdjust: none by default\n MsHighContrastAdjust: 'auto',\n forcedColorAdjust: 'auto',\n },\n _d),\n },\n isDisabled && [\n 'is-disabled',\n {\n color: linkDisabledColor,\n cursor: 'default',\n },\n {\n selectors: (_e = {\n '&:link, &:visited': {\n pointerEvents: 'none',\n }\n },\n _e[HighContrastSelector] = {\n // We need to specify the color in High Contrast because of the case of Links rendering as buttons.\n color: 'GrayText',\n },\n _e),\n },\n ],\n !isDisabled && {\n selectors: {\n '&:active, &:hover, &:active:hover': {\n color: linkInteractedColor,\n textDecoration: 'underline',\n selectors: (_f = {},\n _f[HighContrastSelector] = {\n color: 'LinkText',\n },\n _f),\n },\n '&:focus': {\n color: linkColor,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n color: 'LinkText',\n },\n _g),\n },\n },\n },\n classNames.root,\n className,\n ],\n };\n};\n//# sourceMappingURL=Link.styles.js.map","import { styled } from '@fluentui/utilities';\nimport { LinkBase } from './Link.base';\nimport { getStyles } from './Link.styles';\nexport var Link = styled(LinkBase, getStyles, undefined, {\n scope: 'Link',\n});\n//# sourceMappingURL=Link.js.map","export { DirectionalHint } from '../../common/DirectionalHint';\n/**\n * {@docCategory ContextualMenu}\n */\nexport var ContextualMenuItemType;\n(function (ContextualMenuItemType) {\n ContextualMenuItemType[ContextualMenuItemType[\"Normal\"] = 0] = \"Normal\";\n ContextualMenuItemType[ContextualMenuItemType[\"Divider\"] = 1] = \"Divider\";\n ContextualMenuItemType[ContextualMenuItemType[\"Header\"] = 2] = \"Header\";\n ContextualMenuItemType[ContextualMenuItemType[\"Section\"] = 3] = \"Section\";\n})(ContextualMenuItemType || (ContextualMenuItemType = {}));\n//# sourceMappingURL=ContextualMenu.types.js.map","/**\n * Determines the effective checked state of a menu item.\n *\n * @param item {IContextualMenuItem} to get the check state of.\n * @returns {true} if the item is checked.\n * @returns {false} if the item is unchecked.\n * @returns {null} if the item is not checkable.\n */\nexport function getIsChecked(item) {\n if (item.canCheck) {\n return !!(item.isChecked || item.checked);\n }\n if (typeof item.isChecked === 'boolean') {\n return item.isChecked;\n }\n if (typeof item.checked === 'boolean') {\n return item.checked;\n }\n // Item is not checkable.\n return null;\n}\nexport function hasSubmenu(item) {\n // eslint-disable-next-line deprecation/deprecation\n return !!(item.subMenuProps || item.items);\n}\nexport function isItemDisabled(item) {\n return !!(item.isDisabled || item.disabled);\n}\nexport function getMenuItemAriaRole(item) {\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n return canCheck ? 'menuitemcheckbox' : 'menuitem';\n}\n//# sourceMappingURL=contextualMenuUtility.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { hasSubmenu, getIsChecked } from '../../utilities/contextualMenu/index';\nimport { getRTL, initializeComponentRef } from '../../Utilities';\nimport { Icon } from '../../Icon';\nvar defaultIconRenderer = function (props) {\n var item = props.item, classNames = props.classNames;\n var iconProps = item.iconProps;\n return React.createElement(Icon, __assign({}, iconProps, { className: classNames.icon }));\n};\nvar renderItemIcon = function (props) {\n var item = props.item, hasIcons = props.hasIcons;\n if (!hasIcons) {\n return null;\n }\n if (item.onRenderIcon) {\n return item.onRenderIcon(props, defaultIconRenderer);\n }\n return defaultIconRenderer(props);\n};\nvar renderCheckMarkIcon = function (_a) {\n var onCheckmarkClick = _a.onCheckmarkClick, item = _a.item, classNames = _a.classNames;\n var isItemChecked = getIsChecked(item);\n if (onCheckmarkClick) {\n // Ensures that the item is passed as the first argument to the checkmark click callback.\n var onClick = function (e) { return onCheckmarkClick(item, e); };\n return (React.createElement(Icon, { iconName: item.canCheck !== false && isItemChecked ? 'CheckMark' : '', className: classNames.checkmarkIcon, \n // eslint-disable-next-line react/jsx-no-bind\n onClick: onClick }));\n }\n return null;\n};\nvar renderItemName = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n /* eslint-disable deprecation/deprecation */\n if (item.text || item.name) {\n return React.createElement(\"span\", { className: classNames.label }, item.text || item.name);\n }\n /* eslint-enable deprecation/deprecation */\n return null;\n};\nvar renderSecondaryText = function (_a) {\n var item = _a.item, classNames = _a.classNames;\n if (item.secondaryText) {\n return React.createElement(\"span\", { className: classNames.secondaryText }, item.secondaryText);\n }\n return null;\n};\nvar renderSubMenuIcon = function (_a) {\n var item = _a.item, classNames = _a.classNames, theme = _a.theme;\n if (hasSubmenu(item)) {\n return (React.createElement(Icon, __assign({ iconName: getRTL(theme) ? 'ChevronLeft' : 'ChevronRight' }, item.submenuIconProps, { className: classNames.subMenuIcon })));\n }\n return null;\n};\nvar ContextualMenuItemBase = /** @class */ (function (_super) {\n __extends(ContextualMenuItemBase, _super);\n function ContextualMenuItemBase(props) {\n var _this = _super.call(this, props) || this;\n _this.openSubMenu = function () {\n var _a = _this.props, item = _a.item, openSubMenu = _a.openSubMenu, getSubmenuTarget = _a.getSubmenuTarget;\n if (getSubmenuTarget) {\n var submenuTarget = getSubmenuTarget();\n if (hasSubmenu(item) && openSubMenu && submenuTarget) {\n openSubMenu(item, submenuTarget);\n }\n }\n };\n _this.dismissSubMenu = function () {\n var _a = _this.props, item = _a.item, dismissSubMenu = _a.dismissSubMenu;\n if (hasSubmenu(item) && dismissSubMenu) {\n dismissSubMenu();\n }\n };\n _this.dismissMenu = function (dismissAll) {\n var dismissMenu = _this.props.dismissMenu;\n if (dismissMenu) {\n dismissMenu(undefined /* ev */, dismissAll);\n }\n };\n initializeComponentRef(_this);\n return _this;\n }\n ContextualMenuItemBase.prototype.render = function () {\n var _a = this.props, item = _a.item, classNames = _a.classNames;\n var renderContent = item.onRenderContent || this._renderLayout;\n return (React.createElement(\"div\", { className: item.split ? classNames.linkContentMenu : classNames.linkContent }, renderContent(this.props, {\n renderCheckMarkIcon: renderCheckMarkIcon,\n renderItemIcon: renderItemIcon,\n renderItemName: renderItemName,\n renderSecondaryText: renderSecondaryText,\n renderSubMenuIcon: renderSubMenuIcon,\n })));\n };\n ContextualMenuItemBase.prototype._renderLayout = function (props, defaultRenders) {\n return (React.createElement(React.Fragment, null,\n defaultRenders.renderCheckMarkIcon(props),\n defaultRenders.renderItemIcon(props),\n defaultRenders.renderItemName(props),\n defaultRenders.renderSecondaryText(props),\n defaultRenders.renderSubMenuIcon(props)));\n };\n return ContextualMenuItemBase;\n}(React.Component));\nexport { ContextualMenuItemBase };\n//# sourceMappingURL=ContextualMenuItem.base.js.map","import { memoizeFunction } from '../../Utilities';\nimport { mergeStyleSets } from '../../Styling';\n/**\n * @deprecated use getStyles exported from VerticalDivider.styles.ts\n */\nexport var getDividerClassNames = memoizeFunction(\n// eslint-disable-next-line deprecation/deprecation\nfunction (theme) {\n return mergeStyleSets({\n wrapper: {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center',\n },\n divider: {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n });\n});\n//# sourceMappingURL=VerticalDivider.classNames.js.map","import { __assign } from \"tslib\";\nimport { concatStyleSets, getFocusStyle, HighContrastSelector, getScreenSelector, ScreenWidthMaxMedium, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nexport var CONTEXTUAL_MENU_ITEM_HEIGHT = 36;\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nexport var getMenuItemStyles = memoizeFunction(function (theme) {\n var _a, _b, _c, _d, _e;\n var semanticColors = theme.semanticColors, fonts = theme.fonts, palette = theme.palette;\n var ContextualMenuItemBackgroundHoverColor = semanticColors.menuItemBackgroundHovered;\n var ContextualMenuItemTextHoverColor = semanticColors.menuItemTextHovered;\n var ContextualMenuItemBackgroundSelectedColor = semanticColors.menuItemBackgroundPressed;\n var ContextualMenuItemDividerColor = semanticColors.bodyDivider;\n var menuItemStyles = {\n item: [\n fonts.medium,\n {\n color: semanticColors.bodyText,\n position: 'relative',\n boxSizing: 'border-box',\n },\n ],\n divider: {\n display: 'block',\n height: '1px',\n backgroundColor: ContextualMenuItemDividerColor,\n position: 'relative',\n },\n root: [\n getFocusStyle(theme),\n fonts.medium,\n {\n color: semanticColors.bodyText,\n backgroundColor: 'transparent',\n border: 'none',\n width: '100%',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n display: 'block',\n cursor: 'pointer',\n padding: '0px 8px 0 4px',\n textAlign: 'left',\n },\n ],\n rootDisabled: {\n color: semanticColors.disabledBodyText,\n cursor: 'default',\n pointerEvents: 'none',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n // ensure disabled text looks different than enabled\n color: 'GrayText',\n opacity: 1,\n },\n _a),\n },\n rootHovered: {\n backgroundColor: ContextualMenuItemBackgroundHoverColor,\n color: ContextualMenuItemTextHoverColor,\n selectors: {\n '.ms-ContextualMenu-icon': {\n color: palette.themeDarkAlt,\n },\n '.ms-ContextualMenu-submenuIcon': {\n color: palette.neutralPrimary,\n },\n },\n },\n rootFocused: {\n backgroundColor: palette.white,\n },\n rootChecked: {\n selectors: {\n '.ms-ContextualMenu-checkmarkIcon': {\n color: palette.neutralPrimary,\n },\n },\n },\n rootPressed: {\n backgroundColor: ContextualMenuItemBackgroundSelectedColor,\n selectors: {\n '.ms-ContextualMenu-icon': {\n color: palette.themeDark,\n },\n '.ms-ContextualMenu-submenuIcon': {\n color: palette.neutralPrimary,\n },\n },\n },\n rootExpanded: {\n backgroundColor: ContextualMenuItemBackgroundSelectedColor,\n color: semanticColors.bodyTextChecked,\n selectors: (_b = {\n '.ms-ContextualMenu-submenuIcon': (_c = {},\n _c[HighContrastSelector] = {\n // icons inside of anchor tags are not properly inheriting color in high contrast\n color: 'inherit',\n },\n _c)\n },\n _b[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _b),\n },\n linkContent: {\n whiteSpace: 'nowrap',\n height: 'inherit',\n display: 'flex',\n alignItems: 'center',\n maxWidth: '100%',\n },\n anchorLink: {\n padding: '0px 8px 0 4px',\n textRendering: 'auto',\n color: 'inherit',\n letterSpacing: 'normal',\n wordSpacing: 'normal',\n textTransform: 'none',\n textIndent: '0px',\n textShadow: 'none',\n textDecoration: 'none',\n boxSizing: 'border-box',\n },\n label: {\n margin: '0 4px',\n verticalAlign: 'middle',\n display: 'inline-block',\n flexGrow: '1',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n },\n secondaryText: {\n color: theme.palette.neutralSecondary,\n paddingLeft: '20px',\n textAlign: 'right',\n },\n icon: {\n display: 'inline-block',\n minHeight: '1px',\n maxHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n fontSize: IconFontSizes.medium,\n width: IconFontSizes.medium,\n margin: '0 4px',\n verticalAlign: 'middle',\n flexShrink: '0',\n selectors: (_d = {},\n _d[MediumScreenSelector] = {\n fontSize: IconFontSizes.large,\n width: IconFontSizes.large,\n },\n _d),\n },\n iconColor: {\n color: semanticColors.menuIcon,\n },\n iconDisabled: {\n color: semanticColors.disabledBodyText,\n },\n checkmarkIcon: {\n color: semanticColors.bodySubtext,\n },\n subMenuIcon: {\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n color: palette.neutralSecondary,\n textAlign: 'center',\n display: 'inline-block',\n verticalAlign: 'middle',\n flexShrink: '0',\n fontSize: IconFontSizes.small,\n selectors: (_e = {\n ':hover': {\n color: palette.neutralPrimary,\n },\n ':active': {\n color: palette.neutralPrimary,\n }\n },\n _e[MediumScreenSelector] = {\n fontSize: IconFontSizes.medium, // 16px\n },\n _e),\n },\n splitButtonFlexContainer: [\n getFocusStyle(theme),\n {\n display: 'flex',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'flex-start',\n },\n ],\n };\n return concatStyleSets(menuItemStyles);\n});\n//# sourceMappingURL=ContextualMenu.cnstyles.js.map","import { getDividerClassNames } from '../Divider/VerticalDivider.classNames';\nimport { getMenuItemStyles } from './ContextualMenu.cnstyles';\nimport { mergeStyleSets, getGlobalClassNames, getScreenSelector, ScreenWidthMaxMedium, hiddenContentStyle, } from '../../Styling';\nimport { memoizeFunction, IsFocusVisibleClassName } from '../../Utilities';\nvar CONTEXTUAL_SPLIT_MENU_MINWIDTH = '28px';\nvar MediumScreenSelector = getScreenSelector(0, ScreenWidthMaxMedium);\nexport var getSplitButtonVerticalDividerClassNames = memoizeFunction(\n/* eslint-disable deprecation/deprecation */\nfunction (theme) {\n var _a;\n return mergeStyleSets(getDividerClassNames(theme), {\n /* eslint-enable deprecation/deprecation */\n wrapper: {\n position: 'absolute',\n right: 28,\n selectors: (_a = {},\n _a[MediumScreenSelector] = {\n right: 32, // fontSize of the icon increased from 12px to 16px\n },\n _a),\n },\n divider: {\n height: 16,\n width: 1,\n },\n });\n});\nvar GlobalClassNames = {\n item: 'ms-ContextualMenu-item',\n divider: 'ms-ContextualMenu-divider',\n root: 'ms-ContextualMenu-link',\n isChecked: 'is-checked',\n isExpanded: 'is-expanded',\n isDisabled: 'is-disabled',\n linkContent: 'ms-ContextualMenu-linkContent',\n linkContentMenu: 'ms-ContextualMenu-linkContent',\n icon: 'ms-ContextualMenu-icon',\n iconColor: 'ms-ContextualMenu-iconColor',\n checkmarkIcon: 'ms-ContextualMenu-checkmarkIcon',\n subMenuIcon: 'ms-ContextualMenu-submenuIcon',\n label: 'ms-ContextualMenu-itemText',\n secondaryText: 'ms-ContextualMenu-secondaryText',\n splitMenu: 'ms-ContextualMenu-splitMenu',\n screenReaderText: 'ms-ContextualMenu-screenReaderText',\n};\n/**\n * @deprecated Will be removed in \\>= 7.0.\n * This is a package-internal method that has been depended on.\n * It is being kept in this form for backwards compatibility.\n * @internal\n */\n// TODO: Audit perf. impact of and potentially remove memoizeFunction.\n// https://github.com/microsoft/fluentui/issues/5534\nexport var getItemClassNames = memoizeFunction(function (theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className) {\n var _a, _b, _c, _d;\n var styles = getMenuItemStyles(theme);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return mergeStyleSets({\n item: [classNames.item, styles.item, itemClassName],\n divider: [classNames.divider, styles.divider, dividerClassName],\n root: [\n classNames.root,\n styles.root,\n checked && [classNames.isChecked, styles.rootChecked],\n isAnchorLink && styles.anchorLink,\n expanded && [classNames.isExpanded, styles.rootExpanded],\n disabled && [classNames.isDisabled, styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_a = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _a[\".\".concat(IsFocusVisibleClassName, \" &:focus, .\").concat(IsFocusVisibleClassName, \" &:focus:hover\")] = styles.rootFocused,\n _a[\".\".concat(IsFocusVisibleClassName, \" &:hover\")] = { background: 'inherit;' },\n _a),\n },\n ],\n className,\n ],\n splitPrimary: [\n styles.root,\n {\n width: \"calc(100% - \".concat(CONTEXTUAL_SPLIT_MENU_MINWIDTH, \")\"),\n },\n checked && ['is-checked', styles.rootChecked],\n (disabled || primaryDisabled) && ['is-disabled', styles.rootDisabled],\n !(disabled || primaryDisabled) &&\n !checked && [\n {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n // when hovering over the splitPrimary also affect the splitMenu\n _b[\":hover ~ .\".concat(classNames.splitMenu)] = styles.rootHovered,\n _b[':active'] = styles.rootPressed,\n _b[\".\".concat(IsFocusVisibleClassName, \" &:focus, .\").concat(IsFocusVisibleClassName, \" &:focus:hover\")] = styles.rootFocused,\n _b[\".\".concat(IsFocusVisibleClassName, \" &:hover\")] = { background: 'inherit;' },\n _b),\n },\n ],\n ],\n splitMenu: [\n classNames.splitMenu,\n styles.root,\n {\n flexBasis: '0',\n padding: '0 8px',\n minWidth: CONTEXTUAL_SPLIT_MENU_MINWIDTH,\n },\n expanded && ['is-expanded', styles.rootExpanded],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !expanded && [\n {\n selectors: (_c = {\n ':hover': styles.rootHovered,\n ':active': styles.rootPressed\n },\n _c[\".\".concat(IsFocusVisibleClassName, \" &:focus, .\").concat(IsFocusVisibleClassName, \" &:focus:hover\")] = styles.rootFocused,\n _c[\".\".concat(IsFocusVisibleClassName, \" &:hover\")] = { background: 'inherit;' },\n _c),\n },\n ],\n ],\n anchorLink: styles.anchorLink,\n linkContent: [classNames.linkContent, styles.linkContent],\n linkContentMenu: [\n classNames.linkContentMenu,\n styles.linkContent,\n {\n justifyContent: 'center',\n },\n ],\n icon: [\n classNames.icon,\n knownIcon && styles.iconColor,\n styles.icon,\n iconClassName,\n disabled && [classNames.isDisabled, styles.iconDisabled],\n ],\n iconColor: styles.iconColor,\n checkmarkIcon: [classNames.checkmarkIcon, knownIcon && styles.checkmarkIcon, styles.icon, iconClassName],\n subMenuIcon: [\n classNames.subMenuIcon,\n styles.subMenuIcon,\n subMenuClassName,\n expanded && { color: theme.palette.neutralPrimary },\n disabled && [styles.iconDisabled],\n ],\n label: [classNames.label, styles.label],\n secondaryText: [classNames.secondaryText, styles.secondaryText],\n splitContainer: [\n styles.splitButtonFlexContainer,\n !disabled &&\n !checked && [\n {\n selectors: (_d = {},\n _d[\".\".concat(IsFocusVisibleClassName, \" &:focus, .\").concat(IsFocusVisibleClassName, \" &:focus:hover\")] = styles.rootFocused,\n _d),\n },\n ],\n ],\n screenReaderText: [\n classNames.screenReaderText,\n styles.screenReaderText,\n hiddenContentStyle,\n { visibility: 'hidden' },\n ],\n });\n});\n/**\n * Wrapper function for generating ContextualMenuItem classNames which adheres to\n * the getStyles API, but invokes memoized className generator function with\n * primitive values.\n *\n * @param props - the ContextualMenuItem style props used to generate its styles.\n */\nexport var getItemStyles = function (props) {\n var theme = props.theme, disabled = props.disabled, expanded = props.expanded, checked = props.checked, isAnchorLink = props.isAnchorLink, knownIcon = props.knownIcon, itemClassName = props.itemClassName, dividerClassName = props.dividerClassName, iconClassName = props.iconClassName, subMenuClassName = props.subMenuClassName, primaryDisabled = props.primaryDisabled, className = props.className;\n // eslint-disable-next-line deprecation/deprecation\n return getItemClassNames(theme, disabled, expanded, checked, isAnchorLink, knownIcon, itemClassName, dividerClassName, iconClassName, subMenuClassName, primaryDisabled, className);\n};\n//# sourceMappingURL=ContextualMenu.classNames.js.map","import { styled } from '../../Utilities';\nimport { ContextualMenuItemBase } from './ContextualMenuItem.base';\nimport { getItemStyles } from './ContextualMenu.classNames';\n/**\n * ContextualMenuItem description\n */\nexport var ContextualMenuItem = styled(ContextualMenuItemBase, getItemStyles, undefined, { scope: 'ContextualMenuItem' });\n//# sourceMappingURL=ContextualMenuItem.js.map","import { __extends } from \"tslib\";\nimport * as React from 'react';\nimport { initializeComponentRef, shallowCompare } from '../../../Utilities';\nvar ContextualMenuItemWrapper = /** @class */ (function (_super) {\n __extends(ContextualMenuItemWrapper, _super);\n function ContextualMenuItemWrapper(props) {\n var _this = _super.call(this, props) || this;\n _this._onItemMouseEnter = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, ev.currentTarget);\n }\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, ev.currentTarget);\n }\n };\n _this._onItemMouseLeave = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseLeave = _a.onItemMouseLeave;\n if (onItemMouseLeave) {\n onItemMouseLeave(item, ev);\n }\n };\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._onItemMouseMove = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, ev.currentTarget);\n }\n };\n _this._getSubmenuTarget = function () {\n return undefined;\n };\n initializeComponentRef(_this);\n return _this;\n }\n ContextualMenuItemWrapper.prototype.shouldComponentUpdate = function (newProps) {\n return !shallowCompare(newProps, this.props);\n };\n return ContextualMenuItemWrapper;\n}(React.Component));\nexport { ContextualMenuItemWrapper };\n//# sourceMappingURL=ContextualMenuItemWrapper.js.map","export var KTP_PREFIX = 'ktp';\nexport var KTP_SEPARATOR = '-';\nexport var KTP_FULL_PREFIX = KTP_PREFIX + KTP_SEPARATOR;\nexport var DATAKTP_TARGET = 'data-ktp-target';\nexport var DATAKTP_EXECUTE_TARGET = 'data-ktp-execute-target';\nexport var DATAKTP_ARIA_TARGET = 'data-ktp-aria-target';\nexport var KTP_LAYER_ID = 'ktp-layer-id';\nexport var KTP_ARIA_SEPARATOR = ', ';\n// Events\nexport var KeytipEvents;\n(function (KeytipEvents) {\n KeytipEvents.KEYTIP_ADDED = 'keytipAdded';\n KeytipEvents.KEYTIP_REMOVED = 'keytipRemoved';\n KeytipEvents.KEYTIP_UPDATED = 'keytipUpdated';\n KeytipEvents.PERSISTED_KEYTIP_ADDED = 'persistedKeytipAdded';\n KeytipEvents.PERSISTED_KEYTIP_REMOVED = 'persistedKeytipRemoved';\n KeytipEvents.PERSISTED_KEYTIP_EXECUTE = 'persistedKeytipExecute';\n KeytipEvents.ENTER_KEYTIP_MODE = 'enterKeytipMode';\n KeytipEvents.EXIT_KEYTIP_MODE = 'exitKeytipMode';\n})(KeytipEvents || (KeytipEvents = {}));\n//# sourceMappingURL=KeytipConstants.js.map","import { __assign, __spreadArray } from \"tslib\";\nimport { EventGroup, getId } from '../../Utilities';\nimport { KeytipEvents } from '../../utilities/keytips/KeytipConstants';\n/**\n * This class is responsible for handling registering, updating, and unregistering of keytips\n */\nvar KeytipManager = /** @class */ (function () {\n function KeytipManager() {\n this.keytips = {};\n this.persistedKeytips = {};\n this.sequenceMapping = {};\n // This is (and should be) updated and kept in sync\n // with the inKeytipMode in KeytipLayer.\n this.inKeytipMode = false;\n // Boolean that gets checked before entering keytip mode by the KeytipLayer\n // Used for an override in special cases (e.g. Disable entering keytip mode when a modal is shown)\n this.shouldEnterKeytipMode = true;\n // Boolean to indicate whether to delay firing an event to update subscribers of\n // keytip data changed.\n this.delayUpdatingKeytipChange = false;\n }\n /**\n * Static function to get singleton KeytipManager instance\n *\n * @returns Singleton KeytipManager instance\n */\n KeytipManager.getInstance = function () {\n return this._instance;\n };\n /**\n * Initialization code to set set parameters to define\n * how the KeytipManager handles keytip data.\n *\n * @param delayUpdatingKeytipChange - T/F if we should delay notifiying keytip subscribers\n * of keytip changes\n */\n KeytipManager.prototype.init = function (delayUpdatingKeytipChange) {\n this.delayUpdatingKeytipChange = delayUpdatingKeytipChange;\n };\n /**\n * Registers a keytip\n *\n * @param keytipProps - Keytip to register\n * @param persisted - T/F if this keytip should be persisted, default is false\n * @returns Unique ID for this keytip\n */\n KeytipManager.prototype.register = function (keytipProps, persisted) {\n if (persisted === void 0) { persisted = false; }\n var props = keytipProps;\n if (!persisted) {\n // Add the overflowSetSequence if necessary\n props = this.addParentOverflow(keytipProps);\n this.sequenceMapping[props.keySequences.toString()] = props;\n }\n // Create a unique keytip\n var uniqueKeytip = this._getUniqueKtp(props);\n // Add to dictionary\n persisted\n ? (this.persistedKeytips[uniqueKeytip.uniqueID] = uniqueKeytip)\n : (this.keytips[uniqueKeytip.uniqueID] = uniqueKeytip);\n // We only want to add something new if we are currently showing keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n var event_1 = persisted ? KeytipEvents.PERSISTED_KEYTIP_ADDED : KeytipEvents.KEYTIP_ADDED;\n EventGroup.raise(this, event_1, {\n keytip: props,\n uniqueID: uniqueKeytip.uniqueID,\n });\n }\n return uniqueKeytip.uniqueID;\n };\n /**\n * Update a keytip\n *\n * @param keytipProps - Keytip to update\n * @param uniqueID - Unique ID of this keytip\n */\n KeytipManager.prototype.update = function (keytipProps, uniqueID) {\n var newKeytipProps = this.addParentOverflow(keytipProps);\n var uniqueKeytip = this._getUniqueKtp(newKeytipProps, uniqueID);\n var oldKeyTip = this.keytips[uniqueID];\n if (oldKeyTip) {\n // Update everything except 'visible'\n uniqueKeytip.keytip.visible = oldKeyTip.keytip.visible;\n // Update keytip in this.keytips\n this.keytips[uniqueID] = uniqueKeytip;\n // Update the sequence to be up to date\n delete this.sequenceMapping[oldKeyTip.keytip.keySequences.toString()];\n this.sequenceMapping[uniqueKeytip.keytip.keySequences.toString()] = uniqueKeytip.keytip;\n // Raise event only if we are currently in keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n EventGroup.raise(this, KeytipEvents.KEYTIP_UPDATED, {\n keytip: uniqueKeytip.keytip,\n uniqueID: uniqueKeytip.uniqueID,\n });\n }\n }\n };\n /**\n * Unregisters a keytip\n *\n * @param keytipToRemove - IKeytipProps of the keytip to remove\n * @param uniqueID - Unique ID of this keytip\n * @param persisted - T/F if this keytip should be persisted, default is false\n */\n KeytipManager.prototype.unregister = function (keytipToRemove, uniqueID, persisted) {\n if (persisted === void 0) { persisted = false; }\n persisted ? delete this.persistedKeytips[uniqueID] : delete this.keytips[uniqueID];\n !persisted && delete this.sequenceMapping[keytipToRemove.keySequences.toString()];\n var event = persisted ? KeytipEvents.PERSISTED_KEYTIP_REMOVED : KeytipEvents.KEYTIP_REMOVED;\n // Update keytips only if we're in keytip mode\n if (this.inKeytipMode || !this.delayUpdatingKeytipChange) {\n EventGroup.raise(this, event, {\n keytip: keytipToRemove,\n uniqueID: uniqueID,\n });\n }\n };\n /**\n * Manual call to enter keytip mode\n */\n KeytipManager.prototype.enterKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.ENTER_KEYTIP_MODE);\n };\n /**\n * Manual call to exit keytip mode\n */\n KeytipManager.prototype.exitKeytipMode = function () {\n EventGroup.raise(this, KeytipEvents.EXIT_KEYTIP_MODE);\n };\n /**\n * Gets all IKeytipProps from this.keytips\n *\n * @returns All keytips stored in the manager\n */\n KeytipManager.prototype.getKeytips = function () {\n var _this = this;\n return Object.keys(this.keytips).map(function (key) { return _this.keytips[key].keytip; });\n };\n /**\n * Adds the overflowSetSequence to the keytipProps if its parent keytip also has it\n *\n * @param keytipProps - Keytip props to add overflowSetSequence to if necessary\n * @returns - Modified keytip props, if needed to be modified\n */\n KeytipManager.prototype.addParentOverflow = function (keytipProps) {\n var fullSequence = __spreadArray([], keytipProps.keySequences, true);\n fullSequence.pop();\n if (fullSequence.length !== 0) {\n var parentKeytip = this.sequenceMapping[fullSequence.toString()];\n if (parentKeytip && parentKeytip.overflowSetSequence) {\n return __assign(__assign({}, keytipProps), { overflowSetSequence: parentKeytip.overflowSetSequence });\n }\n }\n return keytipProps;\n };\n /**\n * Public function to bind for overflow items that have a submenu\n */\n KeytipManager.prototype.menuExecute = function (overflowButtonSequences, keytipSequences) {\n EventGroup.raise(this, KeytipEvents.PERSISTED_KEYTIP_EXECUTE, {\n overflowButtonSequences: overflowButtonSequences,\n keytipSequences: keytipSequences,\n });\n };\n /**\n * Creates an IUniqueKeytip object\n *\n * @param keytipProps - IKeytipProps\n * @param uniqueID - Unique ID, will default to the next unique ID if not passed\n * @returns IUniqueKeytip object\n */\n KeytipManager.prototype._getUniqueKtp = function (keytipProps, uniqueID) {\n if (uniqueID === void 0) { uniqueID = getId(); }\n return { keytip: __assign({}, keytipProps), uniqueID: uniqueID };\n };\n KeytipManager._instance = new KeytipManager();\n return KeytipManager;\n}());\nexport { KeytipManager };\n//# sourceMappingURL=KeytipManager.js.map","import { __spreadArray } from \"tslib\";\nimport { KTP_SEPARATOR, KTP_PREFIX, DATAKTP_TARGET, DATAKTP_EXECUTE_TARGET, KTP_LAYER_ID } from './KeytipConstants';\nimport { addElementAtIndex } from '../../Utilities';\n/**\n * Converts a whole set of KeySequences into one keytip ID, which will be the ID for the last keytip sequence specified\n * keySequences should not include the initial keytip 'start' sequence.\n *\n * @param keySequences - Full path of IKeySequences for one keytip.\n * @returns String to use for the keytip ID.\n */\nexport function sequencesToID(keySequences) {\n return keySequences.reduce(function (prevValue, keySequence) {\n return prevValue + KTP_SEPARATOR + keySequence.split('').join(KTP_SEPARATOR);\n }, KTP_PREFIX);\n}\n/**\n * Merges an overflow sequence with a key sequence.\n *\n * @param keySequences - Full sequence for one keytip.\n * @param overflowKeySequences - Full overflow keytip sequence.\n * @returns Sequence that will be used by the keytip when in the overflow.\n */\nexport function mergeOverflows(keySequences, overflowKeySequences) {\n var overflowSequenceLen = overflowKeySequences.length;\n var overflowSequence = __spreadArray([], overflowKeySequences, true).pop();\n var newKeySequences = __spreadArray([], keySequences, true);\n return addElementAtIndex(newKeySequences, overflowSequenceLen - 1, overflowSequence);\n}\n/**\n * Constructs the data-ktp-target attribute selector from a full key sequence.\n *\n * @param keySequences - Full string[] for a Keytip.\n * @returns String selector to use to query for the keytip target.\n */\nexport function ktpTargetFromSequences(keySequences) {\n return '[' + DATAKTP_TARGET + '=\"' + sequencesToID(keySequences) + '\"]';\n}\n/**\n * Constructs the data-ktp-execute-target attribute selector from a keytip ID.\n *\n * @param keytipId - ID of the Keytip.\n * @returns String selector to use to query for the keytip execute target.\n */\nexport function ktpTargetFromId(keytipId) {\n return '[' + DATAKTP_EXECUTE_TARGET + '=\"' + keytipId + '\"]';\n}\n/**\n * Gets the aria-describedby value to put on the component with this keytip.\n *\n * @param keySequences - KeySequences of the keytip.\n * @returns The aria-describedby value to set on the component with this keytip.\n */\nexport function getAriaDescribedBy(keySequences) {\n var describedby = ' ' + KTP_LAYER_ID;\n if (!keySequences.length) {\n // Return just the layer ID\n return describedby;\n }\n return describedby + ' ' + sequencesToID(keySequences);\n}\n//# sourceMappingURL=KeytipUtils.js.map","import { __assign, __spreadArray } from \"tslib\";\nimport * as React from 'react';\nimport { useConst, useIsomorphicLayoutEffect, usePrevious } from '@fluentui/react-hooks';\nimport { mergeAriaAttributeValues } from '../../Utilities';\nimport { KeytipManager, mergeOverflows, sequencesToID, getAriaDescribedBy } from '../../utilities/keytips/index';\n/**\n * Hook that creates attributes for components which are enabled with Keytip.\n */\nexport function useKeytipData(options) {\n var uniqueId = React.useRef();\n var keytipProps = options.keytipProps\n ? __assign({ disabled: options.disabled }, options.keytipProps) : undefined;\n var keytipManager = useConst(KeytipManager.getInstance());\n var prevOptions = usePrevious(options);\n // useLayoutEffect used to strictly emulate didUpdate/didMount behavior\n useIsomorphicLayoutEffect(function () {\n if (uniqueId.current &&\n keytipProps &&\n ((prevOptions === null || prevOptions === void 0 ? void 0 : prevOptions.keytipProps) !== options.keytipProps || (prevOptions === null || prevOptions === void 0 ? void 0 : prevOptions.disabled) !== options.disabled)) {\n keytipManager.update(keytipProps, uniqueId.current);\n }\n });\n useIsomorphicLayoutEffect(function () {\n // Register Keytip in KeytipManager\n if (keytipProps) {\n uniqueId.current = keytipManager.register(keytipProps);\n }\n return function () {\n // Unregister Keytip in KeytipManager\n keytipProps && keytipManager.unregister(keytipProps, uniqueId.current);\n };\n // this is meant to run only at mount, and updates are handled separately\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n var nativeKeytipProps = {\n ariaDescribedBy: undefined,\n keytipId: undefined,\n };\n if (keytipProps) {\n nativeKeytipProps = getKeytipData(keytipManager, keytipProps, options.ariaDescribedBy);\n }\n return nativeKeytipProps;\n}\n/**\n * Gets the aria- and data- attributes to attach to the component\n * @param keytipProps - options for Keytip\n * @param describedByPrepend - ariaDescribedBy value to prepend\n */\nfunction getKeytipData(keytipManager, keytipProps, describedByPrepend) {\n // Add the parent overflow sequence if necessary\n var newKeytipProps = keytipManager.addParentOverflow(keytipProps);\n // Construct aria-describedby and data-ktp-id attributes\n var ariaDescribedBy = mergeAriaAttributeValues(describedByPrepend, getAriaDescribedBy(newKeytipProps.keySequences));\n var keySequences = __spreadArray([], newKeytipProps.keySequences, true);\n if (newKeytipProps.overflowSetSequence) {\n keySequences = mergeOverflows(keySequences, newKeytipProps.overflowSetSequence);\n }\n var keytipId = sequencesToID(keySequences);\n return {\n ariaDescribedBy: ariaDescribedBy,\n keytipId: keytipId,\n };\n}\n//# sourceMappingURL=useKeytipData.js.map","import { __rest } from \"tslib\";\nimport { DATAKTP_TARGET, DATAKTP_EXECUTE_TARGET } from '../../utilities/keytips/index';\nimport { useKeytipData } from './useKeytipData';\n/**\n * A small element to help the target component correctly read out its aria-describedby for its Keytip\n * {@docCategory Keytips}\n */\nexport var KeytipData = function (props) {\n var _a;\n var children = props.children, keytipDataProps = __rest(props, [\"children\"]);\n var _b = useKeytipData(keytipDataProps), keytipId = _b.keytipId, ariaDescribedBy = _b.ariaDescribedBy;\n return children((_a = {},\n _a[DATAKTP_TARGET] = keytipId,\n _a[DATAKTP_EXECUTE_TARGET] = keytipId,\n _a['aria-describedby'] = ariaDescribedBy,\n _a));\n};\n//# sourceMappingURL=KeytipData.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { anchorProperties, getNativeProps, memoizeFunction, getId, mergeAriaAttributeValues, composeComponentAs, } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { isItemDisabled, hasSubmenu } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuAnchor = /** @class */ (function (_super) {\n __extends(ContextualMenuAnchor, _super);\n function ContextualMenuAnchor() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._anchor = React.createRef();\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._getSubmenuTarget = function () {\n return _this._anchor.current ? _this._anchor.current : undefined;\n };\n _this._onItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClick = _a.onItemClick;\n if (onItemClick) {\n onItemClick(item, ev);\n }\n };\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n return _this;\n }\n ContextualMenuAnchor.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, expandedMenuItemKey = _a.expandedMenuItemKey, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var ChildrenRenderer = ContextualMenuItem;\n if (this.props.item.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(this.props.item.contextualMenuItemAs, ChildrenRenderer);\n }\n if (this.props.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(this.props.contextualMenuItemAs, ChildrenRenderer);\n }\n var anchorRel = item.rel;\n if (item.target && item.target.toLowerCase() === '_blank') {\n anchorRel = anchorRel ? anchorRel : 'nofollow noopener noreferrer'; // Safe default to prevent tabjacking\n }\n var itemHasSubmenu = hasSubmenu(item);\n var nativeProps = getNativeProps(item, anchorProperties);\n var disabled = isItemDisabled(item);\n var itemProps = item.itemProps, ariaDescription = item.ariaDescription;\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n var ariaDescribedByIds = mergeAriaAttributeValues(item.ariaDescribedBy, ariaDescription ? this._ariaDescriptionId : undefined, nativeProps['aria-describedby']);\n var additionalItemProperties = {\n 'aria-describedby': ariaDescribedByIds,\n };\n return (React.createElement(\"div\", null,\n React.createElement(KeytipData, { keytipProps: item.keytipProps, ariaDescribedBy: ariaDescribedByIds, disabled: disabled }, function (keytipAttributes) { return (React.createElement(\"a\", __assign({}, additionalItemProperties, nativeProps, keytipAttributes, { ref: _this._anchor, href: item.href, target: item.target, rel: anchorRel, className: classNames.root, role: \"menuitem\", \"aria-haspopup\": itemHasSubmenu || undefined, \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, \"aria-disabled\": isItemDisabled(item), \n // eslint-disable-next-line deprecation/deprecation\n style: item.style, onClick: _this._onItemClick, onMouseEnter: _this._onItemMouseEnter, onMouseLeave: _this._onItemMouseLeave, onMouseMove: _this._onItemMouseMove, onKeyDown: itemHasSubmenu ? _this._onItemKeyDown : undefined }),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); })));\n };\n return ContextualMenuAnchor;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuAnchor };\n//# sourceMappingURL=ContextualMenuAnchor.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps, memoizeFunction, getId, mergeAriaAttributeValues, composeComponentAs, } from '../../../Utilities';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nimport { KeytipData } from '../../../KeytipData';\nimport { getIsChecked, isItemDisabled, hasSubmenu, getMenuItemAriaRole } from '../../../utilities/contextualMenu/index';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nvar ContextualMenuButton = /** @class */ (function (_super) {\n __extends(ContextualMenuButton, _super);\n function ContextualMenuButton() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this._btn = React.createRef();\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n _this._getSubmenuTarget = function () {\n return _this._btn.current ? _this._btn.current : undefined;\n };\n return _this;\n }\n ContextualMenuButton.prototype.render = function () {\n var _this = this;\n var _a = this.props, item = _a.item, classNames = _a.classNames, index = _a.index, focusableElementIndex = _a.focusableElementIndex, totalItemCount = _a.totalItemCount, hasCheckmarks = _a.hasCheckmarks, hasIcons = _a.hasIcons, contextualMenuItemAs = _a.contextualMenuItemAs, expandedMenuItemKey = _a.expandedMenuItemKey, onItemMouseDown = _a.onItemMouseDown, onItemClick = _a.onItemClick, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var ChildrenRenderer = ContextualMenuItem;\n if (item.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(item.contextualMenuItemAs, ChildrenRenderer);\n }\n if (contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(contextualMenuItemAs, ChildrenRenderer);\n }\n var isChecked = getIsChecked(item);\n var canCheck = isChecked !== null;\n var defaultRole = getMenuItemAriaRole(item);\n var itemHasSubmenu = hasSubmenu(item);\n var itemProps = item.itemProps, ariaLabel = item.ariaLabel, ariaDescription = item.ariaDescription;\n var buttonNativeProperties = getNativeProps(item, buttonProperties);\n // Do not add the disabled attribute to the button so that it is focusable\n delete buttonNativeProperties.disabled;\n var itemRole = item.role || defaultRole;\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n var ariaDescribedByIds = mergeAriaAttributeValues(item.ariaDescribedBy, ariaDescription ? this._ariaDescriptionId : undefined, buttonNativeProperties['aria-describedby']);\n var itemButtonProperties = {\n className: classNames.root,\n onClick: this._onItemClick,\n onKeyDown: itemHasSubmenu ? this._onItemKeyDown : undefined,\n onMouseEnter: this._onItemMouseEnter,\n onMouseLeave: this._onItemMouseLeave,\n onMouseDown: function (ev) {\n return onItemMouseDown ? onItemMouseDown(item, ev) : undefined;\n },\n onMouseMove: this._onItemMouseMove,\n href: item.href,\n title: item.title,\n 'aria-label': ariaLabel,\n 'aria-describedby': ariaDescribedByIds,\n 'aria-haspopup': itemHasSubmenu || undefined,\n 'aria-expanded': itemHasSubmenu ? item.key === expandedMenuItemKey : undefined,\n 'aria-posinset': focusableElementIndex + 1,\n 'aria-setsize': totalItemCount,\n 'aria-disabled': isItemDisabled(item),\n 'aria-checked': (itemRole === 'menuitemcheckbox' || itemRole === 'menuitemradio') && canCheck ? !!isChecked : undefined,\n 'aria-selected': itemRole === 'menuitem' && canCheck ? !!isChecked : undefined,\n role: itemRole,\n // eslint-disable-next-line deprecation/deprecation\n style: item.style,\n };\n var keytipProps = item.keytipProps;\n if (keytipProps && itemHasSubmenu) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: ariaDescribedByIds, disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"button\", __assign({ ref: _this._btn }, buttonNativeProperties, itemButtonProperties, keytipAttributes),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: item, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: _this._getSubmenuTarget }, itemProps)),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); }));\n };\n return ContextualMenuButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuButton };\n//# sourceMappingURL=ContextualMenuButton.js.map","export var getStyles = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var theme = props.theme, getClassNames = props.getClassNames, className = props.className;\n if (!theme) {\n throw new Error('Theme is undefined or null.');\n }\n if (getClassNames) {\n var names = getClassNames(theme);\n return {\n wrapper: [names.wrapper],\n divider: [names.divider],\n };\n }\n return {\n wrapper: [\n {\n display: 'inline-flex',\n height: '100%',\n alignItems: 'center',\n },\n className,\n ],\n divider: [\n {\n width: 1,\n height: '100%',\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n ],\n };\n};\n//# sourceMappingURL=VerticalDivider.styles.js.map","import * as React from 'react';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nexport var VerticalDividerBase = React.forwardRef(function (props, ref) {\n // eslint-disable-next-line deprecation/deprecation\n var styles = props.styles, theme = props.theme, deprecatedGetClassNames = props.getClassNames, className = props.className;\n var classNames = getClassNames(styles, { theme: theme, getClassNames: deprecatedGetClassNames, className: className });\n return (React.createElement(\"span\", { className: classNames.wrapper, ref: ref },\n React.createElement(\"span\", { className: classNames.divider })));\n});\nVerticalDividerBase.displayName = 'VerticalDividerBase';\n//# sourceMappingURL=VerticalDivider.base.js.map","import { getStyles } from './VerticalDivider.styles';\nimport { VerticalDividerBase } from './VerticalDivider.base';\nimport { styled } from '../../Utilities';\nexport var VerticalDivider = styled(VerticalDividerBase, getStyles, undefined, {\n scope: 'VerticalDivider',\n});\n//# sourceMappingURL=VerticalDivider.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { buttonProperties, getNativeProps, KeyCodes, mergeAriaAttributeValues, memoizeFunction, Async, EventGroup, getId, composeComponentAs, } from '../../../Utilities';\nimport { ContextualMenuItem } from '../ContextualMenuItem';\nimport { getSplitButtonVerticalDividerClassNames } from '../ContextualMenu.classNames';\nimport { KeytipData } from '../../../KeytipData';\nimport { getIsChecked, getMenuItemAriaRole, hasSubmenu, isItemDisabled } from '../../../utilities/contextualMenu/index';\nimport { VerticalDivider } from '../../../Divider';\nimport { ContextualMenuItemWrapper } from './ContextualMenuItemWrapper';\nvar TouchIdleDelay = 500; /* ms */\nvar ContextualMenuSplitButton = /** @class */ (function (_super) {\n __extends(ContextualMenuSplitButton, _super);\n function ContextualMenuSplitButton(props) {\n var _this = _super.call(this, props) || this;\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._onItemKeyDown = function (ev) {\n var _a = _this.props, item = _a.item, onItemKeyDown = _a.onItemKeyDown;\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which === KeyCodes.enter) {\n _this._executeItemClick(ev);\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (onItemKeyDown) {\n onItemKeyDown(item, ev);\n }\n };\n _this._getSubmenuTarget = function () {\n return _this._splitButton;\n };\n _this._renderAriaDescription = function (ariaDescription, className) {\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan\n return ariaDescription ? (React.createElement(\"span\", { id: _this._ariaDescriptionId, className: className }, ariaDescription)) : null;\n };\n _this._onItemMouseEnterPrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(__assign(__assign({}, item), { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseEnterIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseEnter = _a.onItemMouseEnter;\n if (onItemMouseEnter) {\n onItemMouseEnter(item, ev, _this._splitButton);\n }\n };\n _this._onItemMouseMovePrimary = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(__assign(__assign({}, item), { subMenuProps: undefined, items: undefined }), ev, _this._splitButton);\n }\n };\n _this._onItemMouseMoveIcon = function (ev) {\n var _a = _this.props, item = _a.item, onItemMouseMove = _a.onItemMouseMove;\n if (onItemMouseMove) {\n onItemMouseMove(item, ev, _this._splitButton);\n }\n };\n _this._onIconItemClick = function (ev) {\n var _a = _this.props, item = _a.item, onItemClickBase = _a.onItemClickBase;\n if (onItemClickBase) {\n onItemClickBase(item, ev, (_this._splitButton ? _this._splitButton : ev.currentTarget));\n }\n };\n _this._executeItemClick = function (ev) {\n var _a = _this.props, item = _a.item, executeItemClick = _a.executeItemClick, onItemClick = _a.onItemClick;\n if (item.disabled || item.isDisabled) {\n return;\n }\n if (_this._processingTouch && !item.canCheck && onItemClick) {\n return onItemClick(item, ev);\n }\n if (executeItemClick) {\n executeItemClick(item, ev);\n }\n };\n _this._onTouchStart = function (ev) {\n if (_this._splitButton && !('onpointerdown' in _this._splitButton)) {\n _this._handleTouchAndPointerEvent(ev);\n }\n };\n _this._onPointerDown = function (ev) {\n if (ev.pointerType === 'touch') {\n _this._handleTouchAndPointerEvent(ev);\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n _this._dismissLabelId = getId();\n return _this;\n }\n ContextualMenuSplitButton.prototype.componentDidMount = function () {\n if (this._splitButton && 'onpointerdown' in this._splitButton) {\n this._events.on(this._splitButton, 'pointerdown', this._onPointerDown, true);\n }\n };\n ContextualMenuSplitButton.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n ContextualMenuSplitButton.prototype.render = function () {\n var _this = this;\n var _a;\n var _b = this.props, item = _b.item, classNames = _b.classNames, index = _b.index, focusableElementIndex = _b.focusableElementIndex, totalItemCount = _b.totalItemCount, hasCheckmarks = _b.hasCheckmarks, hasIcons = _b.hasIcons, onItemMouseLeave = _b.onItemMouseLeave, expandedMenuItemKey = _b.expandedMenuItemKey;\n var itemHasSubmenu = hasSubmenu(item);\n var keytipProps = item.keytipProps;\n if (keytipProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n // Check for ariaDescription to set the _ariaDescriptionId and render a hidden span with\n // the description in it to be added to ariaDescribedBy\n var ariaDescription = item.ariaDescription;\n if (ariaDescription) {\n this._ariaDescriptionId = getId();\n }\n var ariaChecked = (_a = getIsChecked(item)) !== null && _a !== void 0 ? _a : undefined;\n return (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: isItemDisabled(item) }, function (keytipAttributes) { return (React.createElement(\"div\", { \"data-ktp-target\": keytipAttributes['data-ktp-target'], ref: function (splitButton) { return (_this._splitButton = splitButton); }, role: getMenuItemAriaRole(item), \"aria-label\": item.ariaLabel, className: classNames.splitContainer, \"aria-disabled\": isItemDisabled(item), \"aria-expanded\": itemHasSubmenu ? item.key === expandedMenuItemKey : undefined, \"aria-haspopup\": true, \"aria-describedby\": mergeAriaAttributeValues(item.ariaDescribedBy, ariaDescription ? _this._ariaDescriptionId : undefined, keytipAttributes['aria-describedby']), \"aria-checked\": ariaChecked, \"aria-posinset\": focusableElementIndex + 1, \"aria-setsize\": totalItemCount, onMouseEnter: _this._onItemMouseEnterPrimary, onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(_this, __assign(__assign({}, item), { subMenuProps: null, items: null })) : undefined, onMouseMove: _this._onItemMouseMovePrimary, onKeyDown: _this._onItemKeyDown, onClick: _this._executeItemClick, onTouchStart: _this._onTouchStart, tabIndex: 0, \"data-is-focusable\": true, \"aria-roledescription\": item['aria-roledescription'] },\n _this._renderSplitPrimaryButton(item, classNames, index, hasCheckmarks, hasIcons),\n _this._renderSplitDivider(item),\n _this._renderSplitIconButton(item, classNames, index, keytipAttributes),\n _this._renderAriaDescription(ariaDescription, classNames.screenReaderText))); }));\n };\n ContextualMenuSplitButton.prototype._renderSplitPrimaryButton = function (item, \n // eslint-disable-next-line deprecation/deprecation\n classNames, index, hasCheckmarks, hasIcons) {\n var _a = this.props, _b = _a.contextualMenuItemAs, ChildrenRenderer = _b === void 0 ? ContextualMenuItem : _b, onItemClick = _a.onItemClick;\n var itemProps = {\n key: item.key,\n disabled: isItemDisabled(item) || item.primaryDisabled,\n /* eslint-disable deprecation/deprecation */\n name: item.name,\n text: item.text || item.name,\n secondaryText: item.secondaryText,\n /* eslint-enable deprecation/deprecation */\n className: classNames.splitPrimary,\n canCheck: item.canCheck,\n isChecked: item.isChecked,\n checked: item.checked,\n iconProps: item.iconProps,\n id: this._dismissLabelId,\n onRenderIcon: item.onRenderIcon,\n data: item.data,\n 'data-is-focusable': false,\n };\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", __assign({}, getNativeProps(itemProps, buttonProperties)),\n React.createElement(ChildrenRenderer, __assign({ \"data-is-focusable\": false, item: itemProps, classNames: classNames, index: index, onCheckmarkClick: hasCheckmarks && onItemClick ? onItemClick : undefined, hasIcons: hasIcons }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._renderSplitDivider = function (item) {\n var getDividerClassNames = item.getSplitButtonVerticalDividerClassNames || getSplitButtonVerticalDividerClassNames;\n return React.createElement(VerticalDivider, { getClassNames: getDividerClassNames });\n };\n ContextualMenuSplitButton.prototype._renderSplitIconButton = function (item, classNames, // eslint-disable-line deprecation/deprecation\n index, keytipAttributes) {\n var _a = this.props, onItemMouseLeave = _a.onItemMouseLeave, onItemMouseDown = _a.onItemMouseDown, openSubMenu = _a.openSubMenu, dismissSubMenu = _a.dismissSubMenu, dismissMenu = _a.dismissMenu;\n var ChildrenRenderer = ContextualMenuItem;\n if (this.props.item.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(this.props.item.contextualMenuItemAs, ChildrenRenderer);\n }\n if (this.props.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(this.props.contextualMenuItemAs, ChildrenRenderer);\n }\n var itemProps = {\n onClick: this._onIconItemClick,\n disabled: isItemDisabled(item),\n className: classNames.splitMenu,\n subMenuProps: item.subMenuProps,\n submenuIconProps: item.submenuIconProps,\n split: true,\n key: item.key,\n 'aria-labelledby': this._dismissLabelId,\n };\n var buttonProps = __assign(__assign({}, getNativeProps(itemProps, buttonProperties)), {\n onMouseEnter: this._onItemMouseEnterIcon,\n onMouseLeave: onItemMouseLeave ? onItemMouseLeave.bind(this, item) : undefined,\n onMouseDown: function (ev) {\n return onItemMouseDown ? onItemMouseDown(item, ev) : undefined;\n },\n onMouseMove: this._onItemMouseMoveIcon,\n 'data-is-focusable': false,\n 'data-ktp-execute-target': keytipAttributes['data-ktp-execute-target'],\n 'aria-haspopup': true,\n });\n var itemComponentProps = item.itemProps;\n return (React.createElement(\"button\", __assign({}, buttonProps),\n React.createElement(ChildrenRenderer, __assign({ componentRef: item.componentRef, item: itemProps, classNames: classNames, index: index, hasIcons: false, openSubMenu: openSubMenu, dismissSubMenu: dismissSubMenu, dismissMenu: dismissMenu, getSubmenuTarget: this._getSubmenuTarget }, itemComponentProps))));\n };\n ContextualMenuSplitButton.prototype._handleTouchAndPointerEvent = function (ev) {\n var _this = this;\n var onTap = this.props.onTap;\n if (onTap) {\n onTap(ev);\n }\n // If we already have an existing timeout from a previous touch/pointer event\n // cancel that timeout so we can set a new one.\n if (this._lastTouchTimeoutId) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n }, TouchIdleDelay);\n };\n return ContextualMenuSplitButton;\n}(ContextualMenuItemWrapper));\nexport { ContextualMenuSplitButton };\n//# sourceMappingURL=ContextualMenuSplitButton.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseDecorator } from './BaseDecorator';\nimport { getWindow, hoistStatics, EventGroup } from '../../Utilities';\nimport { WindowContext } from '../../WindowProvider';\nexport var ResponsiveMode;\n(function (ResponsiveMode) {\n /** Width \\<= 479px */\n ResponsiveMode[ResponsiveMode[\"small\"] = 0] = \"small\";\n /** Width \\> 479px and \\<= 639px */\n ResponsiveMode[ResponsiveMode[\"medium\"] = 1] = \"medium\";\n /** Width \\> 639px and \\<= 1023px */\n ResponsiveMode[ResponsiveMode[\"large\"] = 2] = \"large\";\n /** Width \\> 1023px and \\<= 1365px */\n ResponsiveMode[ResponsiveMode[\"xLarge\"] = 3] = \"xLarge\";\n /** Width \\> 1365px and \\<= 1919px */\n ResponsiveMode[ResponsiveMode[\"xxLarge\"] = 4] = \"xxLarge\";\n /** Width \\> 1919px */\n ResponsiveMode[ResponsiveMode[\"xxxLarge\"] = 5] = \"xxxLarge\";\n ResponsiveMode[ResponsiveMode[\"unknown\"] = 999] = \"unknown\";\n})(ResponsiveMode || (ResponsiveMode = {}));\nvar RESPONSIVE_MAX_CONSTRAINT = [479, 639, 1023, 1365, 1919, 99999999];\n/**\n * User specified mode to default to, useful for server side rendering scenarios.\n */\nvar _defaultMode;\n/**\n * Tracking the last mode we successfully rendered, which allows us to\n * paint initial renders with the correct size.\n */\nvar _lastMode;\n/**\n * Allows a server rendered scenario to provide a **default** responsive mode.\n * This WILL NOT trigger any updates to components that have already consumed the responsive mode!\n */\nexport function setResponsiveMode(responsiveMode) {\n _defaultMode = responsiveMode;\n}\n/**\n * Initializes the responsive mode to the current window size. This can be used to avoid\n * a re-render during first component mount since the window would otherwise not be measured\n * until after mounting.\n *\n * This WILL NOT trigger any updates to components that have already consumed the responsive mode!\n */\nexport function initializeResponsiveMode(element) {\n var currentWindow = getWindow(element);\n if (currentWindow) {\n getResponsiveMode(currentWindow);\n }\n}\nexport function getInitialResponsiveMode() {\n var _a;\n return (_a = _defaultMode !== null && _defaultMode !== void 0 ? _defaultMode : _lastMode) !== null && _a !== void 0 ? _a : ResponsiveMode.large;\n}\n/**\n * @deprecated Decorator usage is deprecated. Either call `getResponsiveMode` manually, or\n * use the `useResponsiveMode` hook within a function component.\n */\nexport function withResponsiveMode(ComposedComponent) {\n var _a;\n // eslint-disable-next-line deprecation/deprecation\n var resultClass = (_a = /** @class */ (function (_super) {\n __extends(WithResponsiveMode, _super);\n function WithResponsiveMode(props) {\n var _this = _super.call(this, props) || this;\n _this._onResize = function () {\n var responsiveMode = getResponsiveMode(_this.context.window);\n if (responsiveMode !== _this.state.responsiveMode) {\n _this.setState({\n responsiveMode: responsiveMode,\n });\n }\n };\n _this._events = new EventGroup(_this);\n _this._updateComposedComponentRef = _this._updateComposedComponentRef.bind(_this);\n _this.state = {\n responsiveMode: getInitialResponsiveMode(),\n };\n return _this;\n }\n WithResponsiveMode.prototype.componentDidMount = function () {\n this._events.on(this.context.window, 'resize', this._onResize);\n this._onResize();\n };\n WithResponsiveMode.prototype.componentWillUnmount = function () {\n this._events.dispose();\n };\n WithResponsiveMode.prototype.render = function () {\n var responsiveMode = this.state.responsiveMode;\n return responsiveMode === ResponsiveMode.unknown ? null : (React.createElement(ComposedComponent, __assign({ ref: this._updateComposedComponentRef, responsiveMode: responsiveMode }, this.props)));\n };\n return WithResponsiveMode;\n }(BaseDecorator)),\n _a.contextType = WindowContext,\n _a);\n return hoistStatics(ComposedComponent, resultClass);\n}\nfunction getWidthOfCurrentWindow(currentWindow) {\n try {\n return currentWindow.document.documentElement.clientWidth;\n }\n catch (e) {\n return currentWindow.innerWidth;\n }\n}\n/**\n * Hook to get the current responsive mode (window size category).\n * @param currentWindow - Use this window when determining the responsive mode.\n */\nexport function getResponsiveMode(currentWindow) {\n var responsiveMode = ResponsiveMode.small;\n if (currentWindow) {\n try {\n while (getWidthOfCurrentWindow(currentWindow) > RESPONSIVE_MAX_CONSTRAINT[responsiveMode]) {\n responsiveMode++;\n }\n }\n catch (e) {\n // Return a best effort result in cases where we're in the browser but it throws on getting innerWidth.\n responsiveMode = getInitialResponsiveMode();\n }\n // Tracking last mode just gives us a better default in future renders,\n // which avoids starting with the wrong value if we've measured once.\n _lastMode = responsiveMode;\n }\n else {\n if (_defaultMode !== undefined) {\n responsiveMode = _defaultMode;\n }\n else {\n throw new Error('Content was rendered in a server environment without providing a default responsive mode. ' +\n 'Call setResponsiveMode to define what the responsive mode is.');\n }\n }\n return responsiveMode;\n}\n//# sourceMappingURL=withResponsiveMode.js.map","import * as React from 'react';\nimport { getWindow } from '@fluentui/utilities';\nimport { useOnEvent } from '@fluentui/react-hooks';\nimport { getResponsiveMode, getInitialResponsiveMode } from '../decorators/withResponsiveMode';\nimport { useWindow } from '../../WindowProvider';\n/**\n * Hook to get the current responsive mode (window size category).\n * @param elementRef - Use this element's parent window when determining the responsive mode.\n * @param overrideResponsiveMode - Override the responsive mode. If this param is present, it's always returned.\n */\nexport var useResponsiveMode = function (elementRef, overrideResponsiveMode) {\n var _a = React.useState(getInitialResponsiveMode()), lastResponsiveMode = _a[0], setLastResponsiveMode = _a[1];\n var onResize = React.useCallback(function () {\n var newResponsiveMode = getResponsiveMode(getWindow(elementRef.current));\n // Setting the same value should not cause a re-render.\n if (lastResponsiveMode !== newResponsiveMode) {\n setLastResponsiveMode(newResponsiveMode);\n }\n }, [elementRef, lastResponsiveMode]);\n var win = useWindow();\n useOnEvent(win, 'resize', onResize);\n // Call resize function initially on mount, or if the override changes from defined to undefined\n // (the effect will run on all override changes, but onResize will only be called if it changed to undefined)\n React.useEffect(function () {\n if (overrideResponsiveMode === undefined) {\n onResize();\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps -- only meant to run on mount or when override changes\n }, [overrideResponsiveMode]);\n return overrideResponsiveMode !== null && overrideResponsiveMode !== void 0 ? overrideResponsiveMode : lastResponsiveMode;\n};\n//# sourceMappingURL=useResponsiveMode.js.map","import * as React from 'react';\nexport var MenuContext = React.createContext({});\nexport var useMenuContext = function () {\n return React.useContext(MenuContext);\n};\n//# sourceMappingURL=MenuContext.js.map","import { __assign, __rest, __spreadArray } from \"tslib\";\nimport * as React from 'react';\nimport { ContextualMenuItemType } from './ContextualMenu.types';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { FocusZone, FocusZoneDirection, FocusZoneTabbableElements } from '../../FocusZone';\nimport { divProperties, getNativeProps, shallowCompare, assign, classNamesFunction, css, getFirstFocusable, getLastFocusable, getRTL, KeyCodes, shouldWrapFocus, isIOS, isMac, memoizeFunction, getPropsWithDefaults, getDocument, FocusRects, composeComponentAs, } from '../../Utilities';\nimport { hasSubmenu, getIsChecked, isItemDisabled } from '../../utilities/contextualMenu/index';\nimport { Callout } from '../../Callout';\nimport { ContextualMenuItem } from './ContextualMenuItem';\nimport { ContextualMenuSplitButton, ContextualMenuButton, ContextualMenuAnchor, } from './ContextualMenuItemWrapper/index';\nimport { concatStyleSetsWithProps } from '../../Styling';\nimport { getItemStyles } from './ContextualMenu.classNames';\nimport { useTarget, usePrevious, useAsync, useWarnings, useId, useIsomorphicLayoutEffect, } from '@fluentui/react-hooks';\nimport { useResponsiveMode, ResponsiveMode } from '../../ResponsiveMode';\nimport { MenuContext } from '../../utilities/MenuContext/index';\nvar getClassNames = classNamesFunction();\nvar getContextualMenuItemClassNames = classNamesFunction();\n// The default ContextualMenu properties have no items and beak, the default submenu direction is right and top.\nvar DEFAULT_PROPS = {\n items: [],\n shouldFocusOnMount: true,\n gapSpace: 0,\n directionalHint: DirectionalHint.bottomAutoEdge,\n beakWidth: 16,\n};\n/* return number of menu items, excluding headers and dividers */\nfunction getItemCount(items) {\n var totalItemCount = 0;\n for (var _i = 0, items_1 = items; _i < items_1.length; _i++) {\n var item = items_1[_i];\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var itemCount = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n totalItemCount += itemCount;\n }\n }\n return totalItemCount;\n}\nexport function getSubmenuItems(item, options) {\n var target = options === null || options === void 0 ? void 0 : options.target;\n // eslint-disable-next-line deprecation/deprecation\n var items = item.subMenuProps ? item.subMenuProps.items : item.items;\n if (items) {\n var overrideItems = [];\n for (var _i = 0, items_2 = items; _i < items_2.length; _i++) {\n var subItem = items_2[_i];\n if (subItem.preferMenuTargetAsEventTarget) {\n // For sub-items which need an overridden target, intercept `onClick`\n var onClick = subItem.onClick, contextItem = __rest(subItem, [\"onClick\"]);\n overrideItems.push(__assign(__assign({}, contextItem), { onClick: getOnClickWithOverrideTarget(onClick, target) }));\n }\n else {\n overrideItems.push(subItem);\n }\n }\n return overrideItems;\n }\n}\n/**\n * Returns true if a list of menu items can contain a checkbox\n */\nexport function canAnyMenuItemsCheck(items) {\n return items.some(function (item) {\n if (item.canCheck) {\n return true;\n }\n // If the item is a section, check if any of the items in the section can check.\n if (item.sectionProps && item.sectionProps.items.some(function (submenuItem) { return submenuItem.canCheck === true; })) {\n return true;\n }\n return false;\n });\n}\nvar NavigationIdleDelay = 250; /* ms */\nvar COMPONENT_NAME = 'ContextualMenu';\nvar _getMenuItemStylesFunction = memoizeFunction(function () {\n var styles = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n styles[_i] = arguments[_i];\n }\n return function (styleProps) {\n return concatStyleSetsWithProps.apply(void 0, __spreadArray([styleProps, getItemStyles], styles, false));\n };\n});\n//#region Custom hooks\nfunction useVisibility(props, targetWindow) {\n var _a = props.hidden, hidden = _a === void 0 ? false : _a, onMenuDismissed = props.onMenuDismissed, onMenuOpened = props.onMenuOpened;\n var previousHidden = usePrevious(hidden);\n var onMenuOpenedRef = React.useRef(onMenuOpened);\n var onMenuClosedRef = React.useRef(onMenuDismissed);\n var propsRef = React.useRef(props);\n onMenuOpenedRef.current = onMenuOpened;\n onMenuClosedRef.current = onMenuDismissed;\n propsRef.current = props;\n React.useEffect(function () {\n var _a, _b;\n // Don't issue dismissed callbacks on initial mount\n if (hidden && previousHidden === false) {\n (_a = onMenuClosedRef.current) === null || _a === void 0 ? void 0 : _a.call(onMenuClosedRef, propsRef.current);\n }\n else if (!hidden && previousHidden !== false) {\n (_b = onMenuOpenedRef.current) === null || _b === void 0 ? void 0 : _b.call(onMenuOpenedRef, propsRef.current);\n }\n }, [hidden, previousHidden]);\n // Issue onDismissedCallback on unmount\n React.useEffect(function () { return function () { var _a; return (_a = onMenuClosedRef.current) === null || _a === void 0 ? void 0 : _a.call(onMenuClosedRef, propsRef.current); }; }, []);\n}\nfunction useSubMenuState(_a, dismiss) {\n var hidden = _a.hidden, items = _a.items, theme = _a.theme, className = _a.className, id = _a.id, menuTarget = _a.target;\n var _b = React.useState(), expandedMenuItemKey = _b[0], setExpandedMenuItemKey = _b[1];\n var _c = React.useState(), submenuTarget = _c[0], setSubmenuTarget = _c[1];\n /** True if the menu was expanded by mouse click OR hover (as opposed to by keyboard) */\n var _d = React.useState(), shouldFocusOnContainer = _d[0], setShouldFocusOnContainer = _d[1];\n var subMenuId = useId(COMPONENT_NAME, id);\n var closeSubMenu = React.useCallback(function () {\n setShouldFocusOnContainer(undefined);\n setExpandedMenuItemKey(undefined);\n setSubmenuTarget(undefined);\n }, []);\n var openSubMenu = React.useCallback(function (_a, target, focusContainer) {\n var submenuItemKey = _a.key;\n if (expandedMenuItemKey === submenuItemKey) {\n return;\n }\n target.focus();\n setShouldFocusOnContainer(focusContainer);\n setExpandedMenuItemKey(submenuItemKey);\n setSubmenuTarget(target);\n }, [expandedMenuItemKey]);\n React.useEffect(function () {\n if (hidden) {\n closeSubMenu();\n }\n }, [hidden, closeSubMenu]);\n var onSubMenuDismiss = useOnSubmenuDismiss(dismiss, closeSubMenu);\n var getSubmenuProps = function () {\n var item = findItemByKeyFromItems(expandedMenuItemKey, items);\n var submenuProps = null;\n if (item) {\n submenuProps = {\n items: getSubmenuItems(item, { target: menuTarget }),\n target: submenuTarget,\n onDismiss: onSubMenuDismiss,\n isSubMenu: true,\n id: subMenuId,\n shouldFocusOnMount: true,\n shouldFocusOnContainer: shouldFocusOnContainer,\n directionalHint: getRTL(theme) ? DirectionalHint.leftTopEdge : DirectionalHint.rightTopEdge,\n className: className,\n gapSpace: 0,\n isBeakVisible: false,\n };\n if (item.subMenuProps) {\n assign(submenuProps, item.subMenuProps);\n }\n if (item.preferMenuTargetAsEventTarget) {\n var onItemClick = item.onItemClick;\n submenuProps.onItemClick = getOnClickWithOverrideTarget(onItemClick, menuTarget);\n }\n }\n return submenuProps;\n };\n return [expandedMenuItemKey, openSubMenu, getSubmenuProps, onSubMenuDismiss];\n}\nfunction useShouldUpdateFocusOnMouseMove(_a) {\n var delayUpdateFocusOnHover = _a.delayUpdateFocusOnHover, hidden = _a.hidden;\n var shouldUpdateFocusOnMouseEvent = React.useRef(!delayUpdateFocusOnHover);\n var gotMouseMove = React.useRef(false);\n React.useEffect(function () {\n shouldUpdateFocusOnMouseEvent.current = !delayUpdateFocusOnHover;\n gotMouseMove.current = hidden ? false : !delayUpdateFocusOnHover && gotMouseMove.current;\n }, [delayUpdateFocusOnHover, hidden]);\n var onMenuFocusCapture = React.useCallback(function () {\n if (delayUpdateFocusOnHover) {\n shouldUpdateFocusOnMouseEvent.current = false;\n }\n }, [delayUpdateFocusOnHover]);\n return [shouldUpdateFocusOnMouseEvent, gotMouseMove, onMenuFocusCapture];\n}\nfunction usePreviousActiveElement(_a, targetWindow, hostElement) {\n var hidden = _a.hidden, onRestoreFocus = _a.onRestoreFocus;\n var previousActiveElement = React.useRef();\n var tryFocusPreviousActiveElement = React.useCallback(function (options) {\n var _a, _b;\n if (onRestoreFocus) {\n onRestoreFocus(options);\n }\n else if (options === null || options === void 0 ? void 0 : options.documentContainsFocus) {\n // Make sure that the focus method actually exists\n // In some cases the object might exist but not be a real element.\n // This is primarily for IE 11 and should be removed once IE 11 is no longer in use.\n (_b = (_a = previousActiveElement.current) === null || _a === void 0 ? void 0 : _a.focus) === null || _b === void 0 ? void 0 : _b.call(_a);\n }\n }, [onRestoreFocus]);\n useIsomorphicLayoutEffect(function () {\n var _a, _b;\n if (!hidden) {\n var newElement = targetWindow === null || targetWindow === void 0 ? void 0 : targetWindow.document.activeElement;\n if (!((_a = hostElement.current) === null || _a === void 0 ? void 0 : _a.contains(newElement)) && newElement.tagName !== 'BODY') {\n previousActiveElement.current = newElement;\n }\n }\n else if (previousActiveElement.current) {\n tryFocusPreviousActiveElement({\n originalElement: previousActiveElement.current,\n containsFocus: true,\n documentContainsFocus: ((_b = getDocument()) === null || _b === void 0 ? void 0 : _b.hasFocus()) || false,\n });\n previousActiveElement.current = undefined;\n }\n }, [hidden, targetWindow === null || targetWindow === void 0 ? void 0 : targetWindow.document.activeElement, tryFocusPreviousActiveElement, hostElement]);\n return [tryFocusPreviousActiveElement];\n}\nfunction useKeyHandlers(_a, dismiss, hostElement, openSubMenu) {\n var theme = _a.theme, isSubMenu = _a.isSubMenu, _b = _a.focusZoneProps, _c = _b === void 0 ? {} : _b, checkForNoWrap = _c.checkForNoWrap, _d = _c.direction, focusZoneDirection = _d === void 0 ? FocusZoneDirection.vertical : _d;\n /** True if the most recent keydown event was for alt (option) or meta (command). */\n var lastKeyDownWasAltOrMeta = React.useRef();\n /**\n * Calls `shouldHandleKey` to determine whether the keyboard event should be handled;\n * if so, stops event propagation and dismisses menu(s).\n * @param ev - The keyboard event.\n * @param shouldHandleKey - Returns whether we should handle this keyboard event.\n * @param dismissAllMenus - If true, dismiss all menus. Otherwise, dismiss only the current menu.\n * Only does anything if `shouldHandleKey` returns true.\n * @returns Whether the event was handled.\n */\n var keyHandler = function (ev, shouldHandleKey, dismissAllMenus) {\n var handled = false;\n if (shouldHandleKey(ev)) {\n dismiss(ev, dismissAllMenus);\n ev.preventDefault();\n ev.stopPropagation();\n handled = true;\n }\n return handled;\n };\n /**\n * Checks if the submenu should be closed\n */\n var shouldCloseSubMenu = function (ev) {\n var submenuCloseKey = getRTL(theme) ? KeyCodes.right : KeyCodes.left;\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which !== submenuCloseKey || !isSubMenu) {\n return false;\n }\n return !!(focusZoneDirection === FocusZoneDirection.vertical ||\n (checkForNoWrap && !shouldWrapFocus(ev.target, 'data-no-horizontal-wrap')));\n };\n var shouldHandleKeyDown = function (ev) {\n return (\n // eslint-disable-next-line deprecation/deprecation\n ev.which === KeyCodes.escape ||\n shouldCloseSubMenu(ev) ||\n // eslint-disable-next-line deprecation/deprecation\n (ev.which === KeyCodes.up && (ev.altKey || ev.metaKey)));\n };\n var onKeyDown = function (ev) {\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in shouldHandleKeyUp for reasoning.\n lastKeyDownWasAltOrMeta.current = isAltOrMeta(ev);\n // On Mac, pressing escape dismisses all levels of native context menus\n // eslint-disable-next-line deprecation/deprecation\n var dismissAllMenus = ev.which === KeyCodes.escape && (isMac() || isIOS());\n return keyHandler(ev, shouldHandleKeyDown, dismissAllMenus);\n };\n /**\n * We close the menu on key up only if ALL of the following are true:\n * - Most recent key down was alt or meta (command)\n * - The alt/meta key down was NOT followed by some other key (such as down/up arrow to\n * expand/collapse the menu)\n * - We're not on a Mac (or iOS)\n *\n * This is because on Windows, pressing alt moves focus to the application menu bar or similar,\n * closing any open context menus. There is not a similar behavior on Macs.\n */\n var shouldHandleKeyUp = function (ev) {\n var keyPressIsAltOrMetaAlone = lastKeyDownWasAltOrMeta.current && isAltOrMeta(ev);\n lastKeyDownWasAltOrMeta.current = false;\n return !!keyPressIsAltOrMetaAlone && !(isIOS() || isMac());\n };\n var onKeyUp = function (ev) {\n return keyHandler(ev, shouldHandleKeyUp, true /* dismissAllMenus */);\n };\n var onMenuKeyDown = function (ev) {\n // Mark as handled if onKeyDown returns true (for handling collapse cases)\n // or if we are attempting to expand a submenu\n var handled = onKeyDown(ev);\n if (handled || !hostElement.current) {\n return;\n }\n // If we have a modifier key being pressed, we do not want to move focus.\n // Otherwise, handle up and down keys.\n var hasModifier = !!(ev.altKey || ev.metaKey);\n // eslint-disable-next-line deprecation/deprecation\n var isUp = ev.which === KeyCodes.up;\n // eslint-disable-next-line deprecation/deprecation\n var isDown = ev.which === KeyCodes.down;\n if (!hasModifier && (isUp || isDown)) {\n var elementToFocus = isUp\n ? getLastFocusable(hostElement.current, hostElement.current.lastChild, true)\n : getFirstFocusable(hostElement.current, hostElement.current.firstChild, true);\n if (elementToFocus) {\n elementToFocus.focus();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n };\n var onItemKeyDown = function (item, ev) {\n var openKey = getRTL(theme) ? KeyCodes.left : KeyCodes.right;\n if (!item.disabled &&\n // eslint-disable-next-line deprecation/deprecation\n (ev.which === openKey || ev.which === KeyCodes.enter || (ev.which === KeyCodes.down && (ev.altKey || ev.metaKey)))) {\n openSubMenu(item, ev.currentTarget);\n ev.preventDefault();\n }\n };\n return [onKeyDown, onKeyUp, onMenuKeyDown, onItemKeyDown];\n}\nfunction useScrollHandler(asyncTracker) {\n var isScrollIdle = React.useRef(true);\n var scrollIdleTimeoutId = React.useRef();\n /**\n * Scroll handler for the callout to make sure the mouse events\n * for updating focus are not interacting during scroll\n */\n var onScroll = function () {\n if (!isScrollIdle.current && scrollIdleTimeoutId.current !== undefined) {\n asyncTracker.clearTimeout(scrollIdleTimeoutId.current);\n scrollIdleTimeoutId.current = undefined;\n }\n else {\n isScrollIdle.current = false;\n }\n scrollIdleTimeoutId.current = asyncTracker.setTimeout(function () {\n isScrollIdle.current = true;\n }, NavigationIdleDelay);\n };\n return [onScroll, isScrollIdle];\n}\nfunction useOnSubmenuDismiss(dismiss, closeSubMenu) {\n var isMountedRef = React.useRef(false);\n React.useEffect(function () {\n isMountedRef.current = true;\n return function () {\n isMountedRef.current = false;\n };\n }, []);\n /**\n * This function is called ASYNCHRONOUSLY, and so there is a chance it is called\n * after the component is unmounted. The isMountedRef is added to prevent\n * from calling setState() after unmount. Do NOT copy this pattern in synchronous\n * code.\n */\n var onSubMenuDismiss = function (ev, dismissAll) {\n if (dismissAll) {\n dismiss(ev, dismissAll);\n }\n else if (isMountedRef.current) {\n closeSubMenu();\n }\n };\n return onSubMenuDismiss;\n}\nfunction useSubmenuEnterTimer(_a, asyncTracker) {\n var _b = _a.subMenuHoverDelay, subMenuHoverDelay = _b === void 0 ? NavigationIdleDelay : _b;\n var enterTimerRef = React.useRef(undefined);\n var cancelSubMenuTimer = function () {\n if (enterTimerRef.current !== undefined) {\n asyncTracker.clearTimeout(enterTimerRef.current);\n enterTimerRef.current = undefined;\n }\n };\n var startSubmenuTimer = function (onTimerExpired) {\n enterTimerRef.current = asyncTracker.setTimeout(function () {\n onTimerExpired();\n cancelSubMenuTimer();\n }, subMenuHoverDelay);\n };\n return [cancelSubMenuTimer, startSubmenuTimer, enterTimerRef];\n}\nfunction useMouseHandlers(props, isScrollIdle, subMenuEntryTimer, targetWindow, shouldUpdateFocusOnMouseEvent, gotMouseMove, expandedMenuItemKey, hostElement, startSubmenuTimer, cancelSubMenuTimer, openSubMenu, onSubMenuDismiss, dismiss) {\n var menuTarget = props.target;\n var onItemMouseEnterBase = function (item, ev, target) {\n if (shouldUpdateFocusOnMouseEvent.current) {\n gotMouseMove.current = true;\n }\n if (shouldIgnoreMouseEvent()) {\n return;\n }\n updateFocusOnMouseEvent(item, ev, target);\n };\n var onItemMouseMoveBase = function (item, ev, target) {\n var targetElement = ev.currentTarget;\n // Always do this check to make sure we record a mouseMove if needed (even if we are timed out)\n if (shouldUpdateFocusOnMouseEvent.current) {\n gotMouseMove.current = true;\n }\n else {\n return;\n }\n if (!isScrollIdle.current ||\n subMenuEntryTimer.current !== undefined ||\n targetElement === (targetWindow === null || targetWindow === void 0 ? void 0 : targetWindow.document.activeElement)) {\n return;\n }\n updateFocusOnMouseEvent(item, ev, target);\n };\n var shouldIgnoreMouseEvent = function () {\n return !isScrollIdle.current || !gotMouseMove.current;\n };\n var onMouseItemLeave = function (item, ev) {\n var _a;\n if (shouldIgnoreMouseEvent()) {\n return;\n }\n cancelSubMenuTimer();\n if (expandedMenuItemKey !== undefined) {\n return;\n }\n /**\n * IE11 focus() method forces parents to scroll to top of element.\n * Edge and IE expose a setActive() function for focusable divs that\n * sets the page focus but does not scroll the parent element.\n */\n if (hostElement.current.setActive) {\n try {\n hostElement.current.setActive();\n }\n catch (e) {\n /* no-op */\n }\n }\n else {\n (_a = hostElement.current) === null || _a === void 0 ? void 0 : _a.focus();\n }\n };\n /**\n * Handles updating focus when mouseEnter or mouseMove fire.\n * As part of updating focus, This function will also update\n * the expand/collapse state accordingly.\n */\n var updateFocusOnMouseEvent = function (item, ev, target) {\n var targetElement = target ? target : ev.currentTarget;\n if (item.key === expandedMenuItemKey) {\n return;\n }\n cancelSubMenuTimer();\n // If the menu is not expanded we can update focus without any delay\n if (expandedMenuItemKey === undefined) {\n targetElement.focus();\n }\n // Delay updating expanding/dismissing the submenu\n // and only set focus if we have not already done so\n if (hasSubmenu(item)) {\n ev.stopPropagation();\n startSubmenuTimer(function () {\n targetElement.focus();\n openSubMenu(item, targetElement, true);\n });\n }\n else {\n startSubmenuTimer(function () {\n onSubMenuDismiss(ev);\n targetElement.focus();\n });\n }\n };\n var onItemClick = function (item, ev) {\n onItemClickBase(item, ev, ev.currentTarget);\n };\n var onItemClickBase = function (item, ev, target) {\n var items = getSubmenuItems(item, { target: menuTarget });\n // Cancel an async menu item hover timeout action from being taken and instead\n // just trigger the click event instead.\n cancelSubMenuTimer();\n if (!hasSubmenu(item) && (!items || !items.length)) {\n // This is an item without a menu. Click it.\n executeItemClick(item, ev);\n }\n else {\n if (item.key !== expandedMenuItemKey) {\n // This has a collapsed sub menu. Expand it.\n // focus on the container by default when the menu is opened with a click event\n // this differentiates from a keyboard interaction triggering the click event\n var shouldFocusOnContainer = typeof props.shouldFocusOnContainer === 'boolean'\n ? props.shouldFocusOnContainer\n : ev.nativeEvent.pointerType === 'mouse';\n openSubMenu(item, target, shouldFocusOnContainer);\n }\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n var onAnchorClick = function (item, ev) {\n executeItemClick(item, ev);\n ev.stopPropagation();\n };\n var executeItemClick = function (item, ev) {\n if (item.disabled || item.isDisabled) {\n return;\n }\n if (item.preferMenuTargetAsEventTarget) {\n overrideTarget(ev, menuTarget);\n }\n var shouldDismiss = false;\n if (item.onClick) {\n shouldDismiss = !!item.onClick(ev, item);\n }\n else if (props.onItemClick) {\n shouldDismiss = !!props.onItemClick(ev, item);\n }\n if (shouldDismiss || !ev.defaultPrevented) {\n dismiss(ev, true);\n }\n };\n return [\n onItemMouseEnterBase,\n onItemMouseMoveBase,\n onMouseItemLeave,\n onItemClick,\n onAnchorClick,\n executeItemClick,\n onItemClickBase,\n ];\n}\n//#endregion\nexport var ContextualMenuBase = React.memo(React.forwardRef(function (propsWithoutDefaults, forwardedRef) {\n var _a;\n var _b = getPropsWithDefaults(DEFAULT_PROPS, propsWithoutDefaults), ref = _b.ref, props = __rest(_b, [\"ref\"]);\n var hostElement = React.useRef(null);\n var asyncTracker = useAsync();\n var menuId = useId(COMPONENT_NAME, props.id);\n useWarnings({\n name: COMPONENT_NAME,\n props: props,\n deprecations: {\n getMenuClassNames: 'styles',\n },\n });\n var dismiss = function (ev, dismissAll) { var _a; return (_a = props.onDismiss) === null || _a === void 0 ? void 0 : _a.call(props, ev, dismissAll); };\n var _c = useTarget(props.target, hostElement), targetRef = _c[0], targetWindow = _c[1];\n var tryFocusPreviousActiveElement = usePreviousActiveElement(props, targetWindow, hostElement)[0];\n var _d = useSubMenuState(props, dismiss), expandedMenuItemKey = _d[0], openSubMenu = _d[1], getSubmenuProps = _d[2], onSubMenuDismiss = _d[3];\n var _e = useShouldUpdateFocusOnMouseMove(props), shouldUpdateFocusOnMouseEvent = _e[0], gotMouseMove = _e[1], onMenuFocusCapture = _e[2];\n var _f = useScrollHandler(asyncTracker), onScroll = _f[0], isScrollIdle = _f[1];\n var _g = useSubmenuEnterTimer(props, asyncTracker), cancelSubMenuTimer = _g[0], startSubmenuTimer = _g[1], subMenuEntryTimer = _g[2];\n var responsiveMode = useResponsiveMode(hostElement, props.responsiveMode);\n useVisibility(props, targetWindow);\n var _h = useKeyHandlers(props, dismiss, hostElement, openSubMenu), onKeyDown = _h[0], onKeyUp = _h[1], onMenuKeyDown = _h[2], onItemKeyDown = _h[3];\n var _j = useMouseHandlers(props, isScrollIdle, subMenuEntryTimer, targetWindow, shouldUpdateFocusOnMouseEvent, gotMouseMove, expandedMenuItemKey, hostElement, startSubmenuTimer, cancelSubMenuTimer, openSubMenu, onSubMenuDismiss, dismiss), onItemMouseEnterBase = _j[0], onItemMouseMoveBase = _j[1], onMouseItemLeave = _j[2], onItemClick = _j[3], onAnchorClick = _j[4], executeItemClick = _j[5], onItemClickBase = _j[6];\n //#region Render helpers\n var onDefaultRenderMenuList = function (menuListProps, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames, defaultRender) {\n var indexCorrection = 0;\n var items = menuListProps.items, totalItemCount = menuListProps.totalItemCount, hasCheckmarks = menuListProps.hasCheckmarks, hasIcons = menuListProps.hasIcons;\n return (React.createElement(\"ul\", { className: menuClassNames.list, onKeyDown: onKeyDown, onKeyUp: onKeyUp, role: 'presentation' }, items.map(function (item, index) {\n var menuItem = renderMenuItem(item, index, indexCorrection, totalItemCount, hasCheckmarks, hasIcons, menuClassNames);\n if (item.itemType !== ContextualMenuItemType.Divider && item.itemType !== ContextualMenuItemType.Header) {\n var indexIncrease = item.customOnRenderListLength ? item.customOnRenderListLength : 1;\n indexCorrection += indexIncrease;\n }\n return menuItem;\n })));\n };\n var renderFocusZone = function (children, adjustedFocusZoneProps) {\n var _a = props.focusZoneAs, ChildrenRenderer = _a === void 0 ? FocusZone : _a;\n return React.createElement(ChildrenRenderer, __assign({}, adjustedFocusZoneProps), children);\n };\n /**\n * !!!IMPORTANT!!! Avoid mutating `item: IContextualMenuItem` argument. It will\n * cause the menu items to always re-render because the component update is based on shallow comparison.\n */\n var renderMenuItem = function (item, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames) {\n var _a;\n var renderedItems = [];\n var iconProps = item.iconProps || { iconName: 'None' };\n var getItemClassNames = item.getItemClassNames, // eslint-disable-line deprecation/deprecation\n itemProps = item.itemProps;\n var styles = itemProps ? itemProps.styles : undefined;\n // We only send a dividerClassName when the item to be rendered is a divider.\n // For all other cases, the default divider style is used.\n var dividerClassName = item.itemType === ContextualMenuItemType.Divider ? item.className : undefined;\n var subMenuIconClassName = item.submenuIconProps ? item.submenuIconProps.className : '';\n // eslint-disable-next-line deprecation/deprecation\n var itemClassNames;\n // IContextualMenuItem#getItemClassNames for backwards compatibility\n // otherwise uses mergeStyles for class names.\n if (getItemClassNames) {\n itemClassNames = getItemClassNames(props.theme, isItemDisabled(item), expandedMenuItemKey === item.key, !!getIsChecked(item), !!item.href, iconProps.iconName !== 'None', item.className, dividerClassName, iconProps.className, subMenuIconClassName, item.primaryDisabled);\n }\n else {\n var itemStyleProps = {\n theme: props.theme,\n disabled: isItemDisabled(item),\n expanded: expandedMenuItemKey === item.key,\n checked: !!getIsChecked(item),\n isAnchorLink: !!item.href,\n knownIcon: iconProps.iconName !== 'None',\n itemClassName: item.className,\n dividerClassName: dividerClassName,\n iconClassName: iconProps.className,\n subMenuClassName: subMenuIconClassName,\n primaryDisabled: item.primaryDisabled,\n };\n // We need to generate default styles then override if styles are provided\n // since the ContextualMenu currently handles item classNames.\n itemClassNames = getContextualMenuItemClassNames(_getMenuItemStylesFunction((_a = menuClassNames.subComponentStyles) === null || _a === void 0 ? void 0 : _a.menuItem, styles), itemStyleProps);\n }\n // eslint-disable-next-line deprecation/deprecation\n if (item.text === '-' || item.name === '-') {\n item.itemType = ContextualMenuItemType.Divider;\n }\n switch (item.itemType) {\n case ContextualMenuItemType.Divider:\n renderedItems.push(renderSeparator(index, itemClassNames));\n break;\n case ContextualMenuItemType.Header:\n renderedItems.push(renderSeparator(index, itemClassNames));\n var headerItem = renderHeaderMenuItem(item, itemClassNames, menuClassNames, index, hasCheckmarks, hasIcons);\n renderedItems.push(renderListItem(headerItem, item.key || index, itemClassNames, item.title));\n break;\n case ContextualMenuItemType.Section:\n renderedItems.push(renderSectionItem(item, itemClassNames, menuClassNames, index, hasCheckmarks, hasIcons));\n break;\n default:\n var defaultRenderNormalItem = function () {\n return renderNormalItem(item, itemClassNames, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons);\n };\n var menuItem = props.onRenderContextualMenuItem\n ? props.onRenderContextualMenuItem(item, defaultRenderNormalItem)\n : defaultRenderNormalItem();\n renderedItems.push(renderListItem(menuItem, item.key || index, itemClassNames, item.title));\n break;\n }\n // Since multiple nodes *could* be rendered, wrap them all in a fragment with this item's key.\n // This ensures the reconciler handles multi-item output per-node correctly and does not re-mount content.\n return React.createElement(React.Fragment, { key: item.key }, renderedItems);\n };\n var defaultMenuItemRenderer = function (item, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames) {\n var index = item.index, focusableElementIndex = item.focusableElementIndex, totalItemCount = item.totalItemCount, hasCheckmarks = item.hasCheckmarks, hasIcons = item.hasIcons;\n return renderMenuItem(item, index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons, menuClassNames);\n };\n var renderSectionItem = function (sectionItem, \n // eslint-disable-next-line deprecation/deprecation\n itemClassNames, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames, index, hasCheckmarks, hasIcons) {\n var sectionProps = sectionItem.sectionProps;\n if (!sectionProps) {\n return;\n }\n var headerItem;\n var groupProps;\n if (sectionProps.title) {\n var headerContextualMenuItem = undefined;\n var ariaLabelledby = '';\n if (typeof sectionProps.title === 'string') {\n // Since title is a user-facing string, it needs to be stripped\n // of whitespace in order to build a valid element ID\n var id_1 = menuId + sectionProps.title.replace(/\\s/g, '');\n headerContextualMenuItem = {\n key: \"section-\".concat(sectionProps.title, \"-title\"),\n itemType: ContextualMenuItemType.Header,\n text: sectionProps.title,\n id: id_1,\n };\n ariaLabelledby = id_1;\n }\n else {\n var id_2 = sectionProps.title.id || menuId + sectionProps.title.key.replace(/\\s/g, '');\n headerContextualMenuItem = __assign(__assign({}, sectionProps.title), { id: id_2 });\n ariaLabelledby = id_2;\n }\n if (headerContextualMenuItem) {\n groupProps = {\n role: 'group',\n 'aria-labelledby': ariaLabelledby,\n };\n headerItem = renderHeaderMenuItem(headerContextualMenuItem, itemClassNames, menuClassNames, index, hasCheckmarks, hasIcons);\n }\n }\n if (sectionProps.items && sectionProps.items.length > 0) {\n var correctedIndex_1 = 0;\n return (React.createElement(\"li\", { role: \"presentation\", key: sectionProps.key || sectionItem.key || \"section-\".concat(index) },\n React.createElement(\"div\", __assign({}, groupProps),\n React.createElement(\"ul\", { className: menuClassNames.list, role: \"presentation\" },\n sectionProps.topDivider && renderSeparator(index, itemClassNames, true, true),\n headerItem && renderListItem(headerItem, sectionItem.key || index, itemClassNames, sectionItem.title),\n sectionProps.items.map(function (contextualMenuItem, itemsIndex) {\n var menuItem = renderMenuItem(contextualMenuItem, itemsIndex, correctedIndex_1, getItemCount(sectionProps.items), hasCheckmarks, hasIcons, menuClassNames);\n if (contextualMenuItem.itemType !== ContextualMenuItemType.Divider &&\n contextualMenuItem.itemType !== ContextualMenuItemType.Header) {\n var indexIncrease = contextualMenuItem.customOnRenderListLength\n ? contextualMenuItem.customOnRenderListLength\n : 1;\n correctedIndex_1 += indexIncrease;\n }\n return menuItem;\n }),\n sectionProps.bottomDivider && renderSeparator(index, itemClassNames, false, true)))));\n }\n };\n var renderListItem = function (content, key, classNames, // eslint-disable-line deprecation/deprecation\n title) {\n return (React.createElement(\"li\", { role: \"presentation\", title: title, key: key, className: classNames.item }, content));\n };\n var renderSeparator = function (index, classNames, // eslint-disable-line deprecation/deprecation\n top, fromSection) {\n if (fromSection || index > 0) {\n return (React.createElement(\"li\", { role: \"separator\", key: 'separator-' + index + (top === undefined ? '' : top ? '-top' : '-bottom'), className: classNames.divider, \"aria-hidden\": \"true\" }));\n }\n return null;\n };\n var renderNormalItem = function (item, classNames, // eslint-disable-line deprecation/deprecation\n index, focusableElementIndex, totalItemCount, hasCheckmarks, hasIcons) {\n if (item.onRender) {\n return item.onRender(__assign({ 'aria-posinset': focusableElementIndex + 1, 'aria-setsize': totalItemCount }, item), dismiss);\n }\n var contextualMenuItemAs = props.contextualMenuItemAs;\n var commonProps = {\n item: item,\n classNames: classNames,\n index: index,\n focusableElementIndex: focusableElementIndex,\n totalItemCount: totalItemCount,\n hasCheckmarks: hasCheckmarks,\n hasIcons: hasIcons,\n contextualMenuItemAs: contextualMenuItemAs,\n onItemMouseEnter: onItemMouseEnterBase,\n onItemMouseLeave: onMouseItemLeave,\n onItemMouseMove: onItemMouseMoveBase,\n onItemMouseDown: onItemMouseDown,\n executeItemClick: executeItemClick,\n onItemKeyDown: onItemKeyDown,\n expandedMenuItemKey: expandedMenuItemKey,\n openSubMenu: openSubMenu,\n dismissSubMenu: onSubMenuDismiss,\n dismissMenu: dismiss,\n };\n if (item.href) {\n var ContextualMenuAnchorAs = ContextualMenuAnchor;\n if (item.contextualMenuItemWrapperAs) {\n ContextualMenuAnchorAs = composeComponentAs(item.contextualMenuItemWrapperAs, ContextualMenuAnchorAs);\n }\n return React.createElement(ContextualMenuAnchorAs, __assign({}, commonProps, { onItemClick: onAnchorClick }));\n }\n if (item.split && hasSubmenu(item)) {\n var ContextualMenuSplitButtonAs = ContextualMenuSplitButton;\n if (item.contextualMenuItemWrapperAs) {\n ContextualMenuSplitButtonAs = composeComponentAs(item.contextualMenuItemWrapperAs, ContextualMenuSplitButtonAs);\n }\n return (React.createElement(ContextualMenuSplitButtonAs, __assign({}, commonProps, { onItemClick: onItemClick, onItemClickBase: onItemClickBase, onTap: cancelSubMenuTimer })));\n }\n var ContextualMenuButtonAs = ContextualMenuButton;\n if (item.contextualMenuItemWrapperAs) {\n ContextualMenuButtonAs = composeComponentAs(item.contextualMenuItemWrapperAs, ContextualMenuButtonAs);\n }\n return React.createElement(ContextualMenuButtonAs, __assign({}, commonProps, { onItemClick: onItemClick, onItemClickBase: onItemClickBase }));\n };\n var renderHeaderMenuItem = function (item, \n // eslint-disable-next-line deprecation/deprecation\n itemClassNames, \n // eslint-disable-next-line deprecation/deprecation\n menuClassNames, index, hasCheckmarks, hasIcons) {\n var ChildrenRenderer = ContextualMenuItem;\n if (item.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(item.contextualMenuItemAs, ChildrenRenderer);\n }\n if (props.contextualMenuItemAs) {\n ChildrenRenderer = composeComponentAs(props.contextualMenuItemAs, ChildrenRenderer);\n }\n var itemProps = item.itemProps, id = item.id;\n var divHtmlProperties = itemProps && getNativeProps(itemProps, divProperties);\n return (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(\"div\", __assign({ id: id, className: menuClassNames.header }, divHtmlProperties, { style: item.style }),\n React.createElement(ChildrenRenderer, __assign({ item: item, classNames: itemClassNames, index: index, onCheckmarkClick: hasCheckmarks ? onItemClick : undefined, hasIcons: hasIcons }, itemProps))));\n };\n //#endregion\n //#region Main render\n var isBeakVisible = props.isBeakVisible;\n var items = props.items, labelElementId = props.labelElementId, id = props.id, className = props.className, beakWidth = props.beakWidth, directionalHint = props.directionalHint, directionalHintForRTL = props.directionalHintForRTL, alignTargetEdge = props.alignTargetEdge, gapSpace = props.gapSpace, coverTarget = props.coverTarget, ariaLabel = props.ariaLabel, doNotLayer = props.doNotLayer, target = props.target, bounds = props.bounds, useTargetWidth = props.useTargetWidth, useTargetAsMinWidth = props.useTargetAsMinWidth, directionalHintFixed = props.directionalHintFixed, shouldFocusOnMount = props.shouldFocusOnMount, shouldFocusOnContainer = props.shouldFocusOnContainer, title = props.title, styles = props.styles, theme = props.theme, calloutProps = props.calloutProps, _k = props.onRenderSubMenu, onRenderSubMenu = _k === void 0 ? onDefaultRenderSubMenu : _k, _l = props.onRenderMenuList, onRenderMenuList = _l === void 0 ? function (menuListProps, defaultRender) { return onDefaultRenderMenuList(menuListProps, classNames, defaultRender); } : _l, focusZoneProps = props.focusZoneProps, \n // eslint-disable-next-line deprecation/deprecation\n getMenuClassNames = props.getMenuClassNames;\n var classNames = getMenuClassNames\n ? getMenuClassNames(theme, className)\n : getClassNames(styles, {\n theme: theme,\n className: className,\n });\n var hasIcons = itemsHaveIcons(items);\n function itemsHaveIcons(contextualMenuItems) {\n for (var _i = 0, contextualMenuItems_1 = contextualMenuItems; _i < contextualMenuItems_1.length; _i++) {\n var item = contextualMenuItems_1[_i];\n if (item.iconProps) {\n return true;\n }\n if (item.itemType === ContextualMenuItemType.Section &&\n item.sectionProps &&\n itemsHaveIcons(item.sectionProps.items)) {\n return true;\n }\n }\n return false;\n }\n var adjustedFocusZoneProps = __assign(__assign({ direction: FocusZoneDirection.vertical, handleTabKey: FocusZoneTabbableElements.all, isCircularNavigation: true }, focusZoneProps), { className: css(classNames.root, (_a = props.focusZoneProps) === null || _a === void 0 ? void 0 : _a.className) });\n var hasCheckmarks = canAnyMenuItemsCheck(items);\n var submenuProps = expandedMenuItemKey && props.hidden !== true ? getSubmenuProps() : null;\n isBeakVisible = isBeakVisible === undefined ? responsiveMode <= ResponsiveMode.medium : isBeakVisible;\n /**\n * When useTargetWidth is true, get the width of the target element and apply it for the context menu container\n */\n var contextMenuStyle;\n var targetAsHtmlElement = targetRef.current;\n if ((useTargetWidth || useTargetAsMinWidth) && targetAsHtmlElement && targetAsHtmlElement.offsetWidth) {\n var targetBoundingRect = targetAsHtmlElement.getBoundingClientRect();\n var targetWidth = targetBoundingRect.width - 2; /* Accounts for 1px border */\n if (useTargetWidth) {\n contextMenuStyle = {\n width: targetWidth,\n };\n }\n else if (useTargetAsMinWidth) {\n contextMenuStyle = {\n minWidth: targetWidth,\n };\n }\n }\n // The menu should only return if items were provided, if no items were provided then it should not appear.\n if (items && items.length > 0) {\n var totalItemCount_1 = getItemCount(items);\n var calloutStyles_1 = classNames.subComponentStyles\n ? classNames.subComponentStyles.callout\n : undefined;\n return (React.createElement(MenuContext.Consumer, null, function (menuContext) { return (React.createElement(Callout, __assign({ styles: calloutStyles_1, onRestoreFocus: tryFocusPreviousActiveElement }, calloutProps, { target: target || menuContext.target, isBeakVisible: isBeakVisible, beakWidth: beakWidth, directionalHint: directionalHint, directionalHintForRTL: directionalHintForRTL, gapSpace: gapSpace, coverTarget: coverTarget, doNotLayer: doNotLayer, className: css('ms-ContextualMenu-Callout', calloutProps && calloutProps.className), setInitialFocus: shouldFocusOnMount, onDismiss: props.onDismiss || menuContext.onDismiss, onScroll: onScroll, bounds: bounds, directionalHintFixed: directionalHintFixed, alignTargetEdge: alignTargetEdge, hidden: props.hidden || menuContext.hidden, ref: forwardedRef }),\n React.createElement(\"div\", { style: contextMenuStyle, ref: hostElement, id: id, className: classNames.container, tabIndex: shouldFocusOnContainer ? 0 : -1, onKeyDown: onMenuKeyDown, onKeyUp: onKeyUp, onFocusCapture: onMenuFocusCapture, \"aria-label\": ariaLabel, \"aria-labelledby\": labelElementId, role: 'menu' },\n title && React.createElement(\"div\", { className: classNames.title },\n \" \",\n title,\n \" \"),\n items && items.length\n ? renderFocusZone(onRenderMenuList({\n ariaLabel: ariaLabel,\n items: items,\n totalItemCount: totalItemCount_1,\n hasCheckmarks: hasCheckmarks,\n hasIcons: hasIcons,\n defaultMenuItemRenderer: function (item) {\n return defaultMenuItemRenderer(item, classNames);\n },\n labelElementId: labelElementId,\n }, function (menuListProps, defaultRender) { return onDefaultRenderMenuList(menuListProps, classNames, defaultRender); }), adjustedFocusZoneProps)\n : null,\n submenuProps && onRenderSubMenu(submenuProps, onDefaultRenderSubMenu)),\n React.createElement(FocusRects, null))); }));\n }\n else {\n return null;\n }\n //#endregion\n}), function (prevProps, newProps) {\n if (!newProps.shouldUpdateWhenHidden && prevProps.hidden && newProps.hidden) {\n // Do not update when hidden.\n return true;\n }\n return shallowCompare(prevProps, newProps);\n});\nContextualMenuBase.displayName = 'ContextualMenuBase';\n/**\n * Returns true if the key for the event is alt (Mac option) or meta (Mac command).\n */\nfunction isAltOrMeta(ev) {\n // eslint-disable-next-line deprecation/deprecation\n return ev.which === KeyCodes.alt || ev.key === 'Meta';\n}\nfunction onItemMouseDown(item, ev) {\n var _a;\n (_a = item.onMouseDown) === null || _a === void 0 ? void 0 : _a.call(item, item, ev);\n}\nfunction onDefaultRenderSubMenu(subMenuProps, defaultRender) {\n throw Error('ContextualMenuBase: onRenderSubMenu callback is null or undefined. ' +\n 'Please ensure to set `onRenderSubMenu` property either manually or with `styled` helper.');\n}\n/**\n * Returns the item that matches a given key if any.\n * @param key - The key of the item to match\n * @param items - The items to look for the key\n */\nfunction findItemByKeyFromItems(key, items) {\n for (var _i = 0, items_3 = items; _i < items_3.length; _i++) {\n var item = items_3[_i];\n if (item.itemType === ContextualMenuItemType.Section && item.sectionProps) {\n var match = findItemByKeyFromItems(key, item.sectionProps.items);\n if (match) {\n return match;\n }\n }\n else if (item.key && item.key === key) {\n return item;\n }\n }\n}\nfunction getOnClickWithOverrideTarget(onClick, target) {\n return onClick\n ? function (ev, item) {\n overrideTarget(ev, target);\n return onClick(ev, item);\n }\n : onClick;\n}\nfunction overrideTarget(ev, target) {\n if (ev && target) {\n ev.persist();\n if (target instanceof Event) {\n ev.target = target.target;\n }\n else if (target instanceof Element) {\n ev.target = target;\n }\n }\n}\n//# sourceMappingURL=ContextualMenu.base.js.map","import { getGlobalClassNames, FontWeights } from '../../Styling';\nimport { CONTEXTUAL_MENU_ITEM_HEIGHT } from './ContextualMenu.cnstyles';\nvar GlobalClassNames = {\n root: 'ms-ContextualMenu',\n container: 'ms-ContextualMenu-container',\n list: 'ms-ContextualMenu-list',\n header: 'ms-ContextualMenu-header',\n title: 'ms-ContextualMenu-title',\n isopen: 'is-open',\n};\nexport var getStyles = function (props) {\n var className = props.className, theme = props.theme;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var fonts = theme.fonts, semanticColors = theme.semanticColors, effects = theme.effects;\n return {\n root: [\n theme.fonts.medium,\n classNames.root,\n classNames.isopen,\n {\n backgroundColor: semanticColors.menuBackground,\n minWidth: '180px',\n },\n className,\n ],\n container: [\n classNames.container,\n {\n selectors: {\n ':focus': { outline: 0 },\n },\n },\n ],\n list: [\n classNames.list,\n classNames.isopen,\n {\n listStyleType: 'none',\n margin: '0',\n padding: '0',\n },\n ],\n header: [\n classNames.header,\n fonts.small,\n {\n fontWeight: FontWeights.semibold,\n color: semanticColors.menuHeader,\n background: 'none',\n backgroundColor: 'transparent',\n border: 'none',\n height: CONTEXTUAL_MENU_ITEM_HEIGHT,\n lineHeight: CONTEXTUAL_MENU_ITEM_HEIGHT,\n cursor: 'default',\n padding: '0px 6px',\n userSelect: 'none',\n textAlign: 'left',\n },\n ],\n title: [\n classNames.title,\n {\n fontSize: fonts.mediumPlus.fontSize,\n paddingRight: '14px',\n paddingLeft: '14px',\n paddingBottom: '5px',\n paddingTop: '5px',\n backgroundColor: semanticColors.menuItemBackgroundPressed,\n },\n ],\n subComponentStyles: {\n callout: {\n root: {\n boxShadow: effects.elevation8,\n },\n },\n menuItem: {},\n },\n };\n};\n//# sourceMappingURL=ContextualMenu.styles.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { styled, composeRenderFunction } from '../../Utilities';\nimport { ContextualMenuBase } from './ContextualMenu.base';\nimport { getStyles } from './ContextualMenu.styles';\nfunction onRenderSubMenu(subMenuProps) {\n return React.createElement(LocalContextualMenu, __assign({}, subMenuProps));\n}\n// This is to prevent cyclic import with ContextualMenu.base.tsx.\nvar LocalContextualMenu = styled(ContextualMenuBase, getStyles, function (props) { return ({\n onRenderSubMenu: props.onRenderSubMenu\n ? composeRenderFunction(props.onRenderSubMenu, onRenderSubMenu)\n : onRenderSubMenu,\n}); }, { scope: 'ContextualMenu' });\n/**\n * ContextualMenu description\n */\nexport var ContextualMenu = LocalContextualMenu;\nContextualMenu.displayName = 'ContextualMenu';\n//# sourceMappingURL=ContextualMenu.js.map","import { memoizeFunction } from '../../Utilities';\nimport { getGlobalClassNames, mergeStyleSets } from '../../Styling';\nexport var ButtonGlobalClassNames = {\n msButton: 'ms-Button',\n msButtonHasMenu: 'ms-Button--hasMenu',\n msButtonIcon: 'ms-Button-icon',\n msButtonMenuIcon: 'ms-Button-menuIcon',\n msButtonLabel: 'ms-Button-label',\n msButtonDescription: 'ms-Button-description',\n msButtonScreenReaderText: 'ms-Button-screenReaderText',\n msButtonFlexContainer: 'ms-Button-flexContainer',\n msButtonTextContainer: 'ms-Button-textContainer',\n};\nexport var getBaseButtonClassNames = memoizeFunction(function (theme, styles, className, variantClassName, iconClassName, menuIconClassName, disabled, hasMenu, checked, expanded, isSplit) {\n var _a, _b;\n var classNames = getGlobalClassNames(ButtonGlobalClassNames, theme || {});\n var isExpanded = expanded && !isSplit;\n return mergeStyleSets({\n root: [\n classNames.msButton,\n styles.root,\n variantClassName,\n checked && ['is-checked', styles.rootChecked],\n isExpanded && [\n 'is-expanded',\n styles.rootExpanded,\n {\n selectors: (_a = {},\n _a[\":hover .\".concat(classNames.msButtonIcon)] = styles.iconExpandedHovered,\n // menuIcon falls back to rootExpandedHovered to support original behavior\n _a[\":hover .\".concat(classNames.msButtonMenuIcon)] = styles.menuIconExpandedHovered || styles.rootExpandedHovered,\n _a[':hover'] = styles.rootExpandedHovered,\n _a),\n },\n ],\n hasMenu && [ButtonGlobalClassNames.msButtonHasMenu, styles.rootHasMenu],\n disabled && ['is-disabled', styles.rootDisabled],\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: (_b = {\n ':hover': styles.rootHovered\n },\n _b[\":hover .\".concat(classNames.msButtonLabel)] = styles.labelHovered,\n _b[\":hover .\".concat(classNames.msButtonIcon)] = styles.iconHovered,\n _b[\":hover .\".concat(classNames.msButtonDescription)] = styles.descriptionHovered,\n _b[\":hover .\".concat(classNames.msButtonMenuIcon)] = styles.menuIconHovered,\n _b[':focus'] = styles.rootFocused,\n _b[':active'] = styles.rootPressed,\n _b[\":active .\".concat(classNames.msButtonIcon)] = styles.iconPressed,\n _b[\":active .\".concat(classNames.msButtonDescription)] = styles.descriptionPressed,\n _b[\":active .\".concat(classNames.msButtonMenuIcon)] = styles.menuIconPressed,\n _b),\n },\n disabled && checked && [styles.rootCheckedDisabled],\n !disabled &&\n checked && {\n selectors: {\n ':hover': styles.rootCheckedHovered,\n ':active': styles.rootCheckedPressed,\n },\n },\n className,\n ],\n flexContainer: [classNames.msButtonFlexContainer, styles.flexContainer],\n textContainer: [classNames.msButtonTextContainer, styles.textContainer],\n icon: [\n classNames.msButtonIcon,\n iconClassName,\n styles.icon,\n isExpanded && styles.iconExpanded,\n checked && styles.iconChecked,\n disabled && styles.iconDisabled,\n ],\n label: [classNames.msButtonLabel, styles.label, checked && styles.labelChecked, disabled && styles.labelDisabled],\n menuIcon: [\n classNames.msButtonMenuIcon,\n menuIconClassName,\n styles.menuIcon,\n checked && styles.menuIconChecked,\n disabled && !isSplit && styles.menuIconDisabled,\n !disabled &&\n !isExpanded &&\n !checked && {\n selectors: {\n ':hover': styles.menuIconHovered,\n ':active': styles.menuIconPressed,\n },\n },\n isExpanded && ['is-expanded', styles.menuIconExpanded],\n ],\n description: [\n classNames.msButtonDescription,\n styles.description,\n checked && styles.descriptionChecked,\n disabled && styles.descriptionDisabled,\n ],\n screenReaderText: [classNames.msButtonScreenReaderText, styles.screenReaderText],\n });\n});\n//# sourceMappingURL=BaseButton.classNames.js.map","import { memoizeFunction } from '../../../Utilities';\nimport { mergeStyles } from '../../../Styling';\nexport var getSplitButtonClassNames = memoizeFunction(function (styles, disabled, expanded, checked, primaryDisabled) {\n return {\n root: mergeStyles(styles.splitButtonMenuButton, expanded && [styles.splitButtonMenuButtonExpanded], disabled && [styles.splitButtonMenuButtonDisabled], checked && !disabled && [styles.splitButtonMenuButtonChecked], primaryDisabled &&\n !disabled && [\n {\n selectors: {\n ':focus': styles.splitButtonMenuFocused,\n },\n },\n ]),\n splitButtonContainer: mergeStyles(styles.splitButtonContainer, !disabled &&\n checked && [\n styles.splitButtonContainerChecked,\n {\n selectors: {\n ':hover': styles.splitButtonContainerCheckedHovered,\n },\n },\n ], !disabled &&\n !checked && [\n {\n selectors: {\n ':hover': styles.splitButtonContainerHovered,\n ':focus': styles.splitButtonContainerFocused,\n },\n },\n ], disabled && styles.splitButtonContainerDisabled),\n icon: mergeStyles(styles.splitButtonMenuIcon, disabled && styles.splitButtonMenuIconDisabled, !disabled && primaryDisabled && styles.splitButtonMenuIcon),\n flexContainer: mergeStyles(styles.splitButtonFlexContainer),\n divider: mergeStyles(styles.splitButtonDivider, (primaryDisabled || disabled) && styles.splitButtonDividerDisabled),\n };\n});\n//# sourceMappingURL=SplitButton.classNames.js.map","import { __assign, __extends, __rest } from \"tslib\";\nimport * as React from 'react';\nimport { anchorProperties, assign, buttonProperties, createMergedRef, css, getId, getNativeProps, initializeComponentRef, memoizeFunction, mergeAriaAttributeValues, nullRender, portalContainsElement, setFocusVisibility, warnConditionallyRequiredProps, warnDeprecations, Async, EventGroup, FocusRects, FocusRectsContext, KeyCodes, } from '../../Utilities';\nimport { Icon, FontIcon, ImageIcon } from '../../Icon';\nimport { DirectionalHint } from '../../common/DirectionalHint';\nimport { ContextualMenu } from '../../ContextualMenu';\nimport { getBaseButtonClassNames } from './BaseButton.classNames';\nimport { getSplitButtonClassNames as getBaseSplitButtonClassNames } from './SplitButton/SplitButton.classNames';\nimport { KeytipData } from '../../KeytipData';\nimport { composeComponentAs } from '../../Utilities';\nvar TouchIdleDelay = 500; /* ms */\nvar COMPONENT_NAME = 'BaseButton';\n/**\n * {@docCategory Button}\n */\nvar BaseButton = /** @class */ (function (_super) {\n __extends(BaseButton, _super);\n function BaseButton(props) {\n var _this = _super.call(this, props) || this;\n _this._buttonElement = React.createRef();\n _this._splitButtonContainer = React.createRef();\n _this._mergedRef = createMergedRef();\n _this._renderedVisibleMenu = false;\n _this._getMemoizedMenuButtonKeytipProps = memoizeFunction(function (keytipProps) {\n return __assign(__assign({}, keytipProps), { hasMenu: true });\n });\n _this._onRenderIcon = function (buttonProps, defaultRender) {\n var iconProps = _this.props.iconProps;\n if (iconProps && (iconProps.iconName !== undefined || iconProps.imageProps)) {\n var className = iconProps.className, imageProps = iconProps.imageProps, rest = __rest(iconProps, [\"className\", \"imageProps\"]);\n // If the styles prop is specified as part of iconProps, fall back to regular Icon as FontIcon and ImageIcon\n // do not have this prop.\n if (iconProps.styles) {\n return React.createElement(Icon, __assign({ className: css(_this._classNames.icon, className), imageProps: imageProps }, rest));\n }\n if (iconProps.iconName) {\n return React.createElement(FontIcon, __assign({ className: css(_this._classNames.icon, className) }, rest));\n }\n if (imageProps) {\n return React.createElement(ImageIcon, __assign({ className: css(_this._classNames.icon, className), imageProps: imageProps }, rest));\n }\n }\n return null;\n };\n _this._onRenderTextContents = function () {\n var _a = _this.props, text = _a.text, children = _a.children, \n // eslint-disable-next-line deprecation/deprecation\n _b = _a.secondaryText, \n // eslint-disable-next-line deprecation/deprecation\n secondaryText = _b === void 0 ? _this.props.description : _b, _c = _a.onRenderText, onRenderText = _c === void 0 ? _this._onRenderText : _c, _d = _a.onRenderDescription, onRenderDescription = _d === void 0 ? _this._onRenderDescription : _d;\n if (text || typeof children === 'string' || secondaryText) {\n return (React.createElement(\"span\", { className: _this._classNames.textContainer },\n onRenderText(_this.props, _this._onRenderText),\n onRenderDescription(_this.props, _this._onRenderDescription)));\n }\n return [onRenderText(_this.props, _this._onRenderText), onRenderDescription(_this.props, _this._onRenderDescription)];\n };\n _this._onRenderText = function () {\n var text = _this.props.text;\n var children = _this.props.children;\n // For backwards compat, we should continue to take in the text content from children.\n if (text === undefined && typeof children === 'string') {\n text = children;\n }\n if (_this._hasText()) {\n return (React.createElement(\"span\", { key: _this._labelId, className: _this._classNames.label, id: _this._labelId }, text));\n }\n return null;\n };\n _this._onRenderChildren = function () {\n var children = _this.props.children;\n // If children is just a string, either it or the text will be rendered via onRenderLabel\n // If children is another component, it will be rendered after text\n if (typeof children === 'string') {\n return null;\n }\n return children;\n };\n _this._onRenderDescription = function (props) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = props.secondaryText, secondaryText = _a === void 0 ? _this.props.description : _a;\n // ms-Button-description is only shown when the button type is compound.\n // In other cases it will not be displayed.\n return secondaryText ? (React.createElement(\"span\", { key: _this._descriptionId, className: _this._classNames.description, id: _this._descriptionId }, secondaryText)) : null;\n };\n _this._onRenderAriaDescription = function () {\n var ariaDescription = _this.props.ariaDescription;\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan,\n // otherwise it will be assigned to descriptionSpan.\n return ariaDescription ? (React.createElement(\"span\", { className: _this._classNames.screenReaderText, id: _this._ariaDescriptionId }, ariaDescription)) : null;\n };\n _this._onRenderMenuIcon = function (props) {\n var menuIconProps = _this.props.menuIconProps;\n return React.createElement(FontIcon, __assign({ iconName: \"ChevronDown\" }, menuIconProps, { className: _this._classNames.menuIcon }));\n };\n _this._onRenderMenu = function (menuProps) {\n var MenuType = _this.props.menuAs ? composeComponentAs(_this.props.menuAs, ContextualMenu) : ContextualMenu;\n return React.createElement(MenuType, __assign({}, menuProps));\n };\n _this._onDismissMenu = function (ev) {\n var menuProps = _this.props.menuProps;\n if (menuProps && menuProps.onDismiss) {\n menuProps.onDismiss(ev);\n }\n if (!ev || !ev.defaultPrevented) {\n _this._dismissMenu();\n }\n };\n _this._dismissMenu = function () {\n _this._menuShouldFocusOnMount = undefined;\n _this._menuShouldFocusOnContainer = undefined;\n _this.setState({ menuHidden: true });\n };\n _this._openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n if (shouldFocusOnMount === void 0) { shouldFocusOnMount = true; }\n if (_this.props.menuProps) {\n _this._menuShouldFocusOnContainer = shouldFocusOnContainer;\n _this._menuShouldFocusOnMount = shouldFocusOnMount;\n _this._renderedVisibleMenu = true;\n _this.setState({ menuHidden: false });\n }\n };\n _this._onToggleMenu = function (shouldFocusOnContainer) {\n var shouldFocusOnMount = true;\n if (_this.props.menuProps && _this.props.menuProps.shouldFocusOnMount === false) {\n shouldFocusOnMount = false;\n }\n _this.state.menuHidden ? _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount) : _this._dismissMenu();\n };\n _this._onSplitContainerFocusCapture = function (ev) {\n var container = _this._splitButtonContainer.current;\n // If the target is coming from the portal we do not need to set focus on the container.\n if (!container || (ev.target && portalContainsElement(ev.target, container))) {\n return;\n }\n // We should never be able to focus the individual buttons in a split button. Focus\n // should always remain on the container.\n container.focus();\n };\n _this._onSplitButtonPrimaryClick = function (ev) {\n if (!_this.state.menuHidden) {\n _this._dismissMenu();\n }\n // toggle split buttons need two separate targets, even for touch\n var singleTouchTarget = _this._processingTouch && !_this.props.toggle;\n if (!singleTouchTarget && _this.props.onClick) {\n _this.props.onClick(ev);\n }\n else if (singleTouchTarget) {\n _this._onMenuClick(ev);\n }\n };\n _this._onKeyDown = function (ev) {\n // explicity cancelling event so click won't fire after this\n // eslint-disable-next-line deprecation/deprecation\n if (_this.props.disabled && (ev.which === KeyCodes.enter || ev.which === KeyCodes.space)) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n else if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuKeyDown(ev);\n }\n else if (_this.props.onKeyDown !== undefined) {\n _this.props.onKeyDown(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onKeyUp = function (ev) {\n if (!_this.props.disabled && _this.props.onKeyUp !== undefined) {\n _this.props.onKeyUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onKeyPress = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n if (!_this.props.disabled && _this.props.onKeyPress !== undefined) {\n // eslint-disable-next-line deprecation/deprecation\n _this.props.onKeyPress(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseUp = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseUp !== undefined) {\n _this.props.onMouseUp(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onMouseDown = function (ev) {\n if (!_this.props.disabled && _this.props.onMouseDown !== undefined) {\n _this.props.onMouseDown(ev); // not cancelling event because it's not disabled\n }\n };\n _this._onClick = function (ev) {\n if (!_this.props.disabled) {\n if (_this.props.menuProps) {\n _this._onMenuClick(ev);\n }\n else if (_this.props.onClick !== undefined) {\n _this.props.onClick(ev); // not cancelling event because it's not disabled\n }\n }\n };\n _this._onSplitButtonContainerKeyDown = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n if (_this._buttonElement.current) {\n _this._buttonElement.current.click();\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n else {\n _this._onMenuKeyDown(ev);\n }\n };\n _this._onMenuKeyDown = function (ev) {\n var _a;\n if (_this.props.disabled) {\n return;\n }\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n }\n // eslint-disable-next-line deprecation/deprecation\n var isUp = ev.which === KeyCodes.up;\n // eslint-disable-next-line deprecation/deprecation\n var isDown = ev.which === KeyCodes.down;\n if (!ev.defaultPrevented && _this._isValidMenuOpenKey(ev)) {\n var onMenuClick = _this.props.onMenuClick;\n if (onMenuClick) {\n onMenuClick(ev, _this.props);\n }\n _this._onToggleMenu(false);\n ev.preventDefault();\n ev.stopPropagation();\n }\n // eslint-disable-next-line deprecation/deprecation\n if (ev.which === KeyCodes.enter || ev.which === KeyCodes.space) {\n // We manually set the focus visibility to true if opening via Enter or Space to account for the scenario where\n // a user clicks on the button, closes the menu and then opens it via keyboard. In this scenario our default logic\n // for setting focus visibility is not triggered since there is no keyboard navigation present beforehand.\n setFocusVisibility(true, ev.target, (_a = _this.context) === null || _a === void 0 ? void 0 : _a.registeredProviders);\n }\n if (!(ev.altKey || ev.metaKey) && (isUp || isDown)) {\n // Suppose a menu, with shouldFocusOnMount: false, is open, and user wants to keyboard to the menu items\n // We need to re-render the menu with shouldFocusOnMount as true.\n if (!_this.state.menuHidden && _this.props.menuProps) {\n var currentShouldFocusOnMount = _this._menuShouldFocusOnMount !== undefined\n ? _this._menuShouldFocusOnMount\n : _this.props.menuProps.shouldFocusOnMount;\n if (!currentShouldFocusOnMount) {\n ev.preventDefault();\n ev.stopPropagation();\n _this._menuShouldFocusOnMount = true;\n _this.forceUpdate();\n }\n }\n }\n };\n _this._onTouchStart = function () {\n if (_this._isSplitButton &&\n _this._splitButtonContainer.current &&\n !('onpointerdown' in _this._splitButtonContainer.current)) {\n _this._handleTouchAndPointerEvent();\n }\n };\n _this._onMenuClick = function (ev) {\n var _a = _this.props, onMenuClick = _a.onMenuClick, menuProps = _a.menuProps;\n if (onMenuClick) {\n onMenuClick(ev, _this.props);\n }\n // focus on the container by default when the menu is opened with a click event\n // this differentiates from a keyboard interaction triggering the click event\n var shouldFocusOnContainer = typeof (menuProps === null || menuProps === void 0 ? void 0 : menuProps.shouldFocusOnContainer) === 'boolean'\n ? menuProps.shouldFocusOnContainer\n : ev.nativeEvent.pointerType === 'mouse';\n if (!ev.defaultPrevented) {\n _this._onToggleMenu(shouldFocusOnContainer);\n ev.preventDefault();\n ev.stopPropagation();\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n _this._events = new EventGroup(_this);\n warnConditionallyRequiredProps(COMPONENT_NAME, props, ['menuProps', 'onClick'], 'split', _this.props.split);\n warnDeprecations(COMPONENT_NAME, props, {\n rootProps: undefined,\n description: 'secondaryText',\n toggled: 'checked',\n });\n _this._labelId = getId();\n _this._descriptionId = getId();\n _this._ariaDescriptionId = getId();\n _this.state = {\n menuHidden: true,\n };\n return _this;\n }\n Object.defineProperty(BaseButton.prototype, \"_isSplitButton\", {\n get: function () {\n return !!this.props.menuProps && !!this.props.onClick && this.props.split === true;\n },\n enumerable: false,\n configurable: true\n });\n BaseButton.prototype.render = function () {\n var _a;\n var _b = this.props, ariaDescription = _b.ariaDescription, ariaLabel = _b.ariaLabel, ariaHidden = _b.ariaHidden, className = _b.className, disabled = _b.disabled, allowDisabledFocus = _b.allowDisabledFocus, primaryDisabled = _b.primaryDisabled, \n // eslint-disable-next-line deprecation/deprecation\n _c = _b.secondaryText, \n // eslint-disable-next-line deprecation/deprecation\n secondaryText = _c === void 0 ? this.props.description : _c, href = _b.href, iconProps = _b.iconProps, menuIconProps = _b.menuIconProps, styles = _b.styles, checked = _b.checked, variantClassName = _b.variantClassName, theme = _b.theme, toggle = _b.toggle, getClassNames = _b.getClassNames, role = _b.role;\n var menuHidden = this.state.menuHidden;\n // Button is disabled if the whole button (in case of splitButton is disabled) or if the primary action is disabled\n var isPrimaryButtonDisabled = disabled || primaryDisabled;\n this._classNames = getClassNames\n ? getClassNames(theme, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, !menuHidden, !!this.props.menuProps, this.props.split, !!allowDisabledFocus)\n : getBaseButtonClassNames(theme, styles, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, !!this.props.menuProps, checked, !menuHidden, this.props.split);\n var _d = this, _ariaDescriptionId = _d._ariaDescriptionId, _labelId = _d._labelId, _descriptionId = _d._descriptionId;\n // Anchor tag cannot be disabled hence in disabled state rendering\n // anchor button as normal button\n var renderAsAnchor = !isPrimaryButtonDisabled && !!href;\n var tag = renderAsAnchor ? 'a' : 'button';\n var nativeProps = getNativeProps(\n // eslint-disable-next-line deprecation/deprecation\n assign(renderAsAnchor ? {} : { type: 'button' }, this.props.rootProps, this.props), renderAsAnchor ? anchorProperties : buttonProperties, [\n 'disabled', // let disabled buttons be focused and styled as disabled.\n ]);\n // Check for ariaLabel passed in via Button props, and fall back to aria-label passed in via native props\n var resolvedAriaLabel = ariaLabel || nativeProps['aria-label'];\n // Check for ariaDescription, secondaryText or aria-describedby in the native props to determine source of\n // aria-describedby. Otherwise default to undefined so property does not appear in output.\n var ariaDescribedBy = undefined;\n if (ariaDescription) {\n ariaDescribedBy = _ariaDescriptionId;\n }\n else if (secondaryText && this.props.onRenderDescription !== nullRender) {\n // for buttons like CompoundButton with a valid onRenderDescription, we need to set an ariaDescribedBy\n // for buttons that do not render anything (via nullRender), we should not set an ariaDescribedBy\n ariaDescribedBy = _descriptionId;\n }\n else if (nativeProps['aria-describedby']) {\n ariaDescribedBy = nativeProps['aria-describedby'];\n }\n // If an explicit aria-labelledby is given, use that and we're done.\n // If any kind of description is given (which will end up as an aria-describedby attribute)\n // and no ariaLabel is specified, set the labelledby element.\n // Otherwise, the button is labeled implicitly by the descendent text on the button (if it exists).\n var ariaLabelledBy = undefined;\n if (nativeProps['aria-labelledby']) {\n ariaLabelledBy = nativeProps['aria-labelledby'];\n }\n else if (ariaDescribedBy && !resolvedAriaLabel) {\n ariaLabelledBy = this._hasText() ? _labelId : undefined;\n }\n var dataIsFocusable = this.props['data-is-focusable'] === false || (disabled && !allowDisabledFocus) || this._isSplitButton\n ? false\n : true;\n var isCheckboxTypeRole = role === 'menuitemcheckbox' || role === 'checkbox';\n // if isCheckboxTypeRole, always return a checked value.\n // Otherwise only return checked value if toggle is set to true.\n // This is because role=\"checkbox\" always needs to have an aria-checked value\n // but our checked prop only sets aria-pressed if we mark the button as a toggle=\"true\"\n var checkedOrPressedValue = isCheckboxTypeRole ? !!checked : toggle === true ? !!checked : undefined;\n var buttonProps = assign(nativeProps, (_a = {\n className: this._classNames.root,\n // eslint-disable-next-line deprecation/deprecation\n ref: this._mergedRef(this.props.elementRef, this._buttonElement),\n disabled: isPrimaryButtonDisabled && !allowDisabledFocus,\n onKeyDown: this._onKeyDown,\n onKeyPress: this._onKeyPress,\n onKeyUp: this._onKeyUp,\n onMouseDown: this._onMouseDown,\n onMouseUp: this._onMouseUp,\n onClick: this._onClick,\n 'aria-label': resolvedAriaLabel,\n 'aria-labelledby': ariaLabelledBy,\n 'aria-describedby': ariaDescribedBy,\n 'aria-disabled': isPrimaryButtonDisabled,\n 'data-is-focusable': dataIsFocusable\n },\n // aria-pressed attribute should only be present for toggle buttons\n // aria-checked attribute should only be present for toggle buttons with checkbox type role\n _a[isCheckboxTypeRole ? 'aria-checked' : 'aria-pressed'] = checkedOrPressedValue,\n _a));\n if (ariaHidden) {\n buttonProps['aria-hidden'] = true;\n }\n if (this._isSplitButton) {\n return this._onRenderSplitButtonContent(tag, buttonProps);\n }\n else if (this.props.menuProps) {\n var _e = this.props.menuProps.id, id = _e === void 0 ? \"\".concat(this._labelId, \"-menu\") : _e;\n assign(buttonProps, {\n 'aria-expanded': !menuHidden,\n 'aria-controls': !menuHidden ? id : null,\n 'aria-haspopup': true,\n });\n }\n return this._onRenderContent(tag, buttonProps);\n };\n BaseButton.prototype.componentDidMount = function () {\n // For split buttons, touching anywhere in the button should drop the dropdown, which should contain the\n // primary action. This gives more hit target space for touch environments. We're setting the onpointerdown here,\n // because React does not support Pointer events yet.\n if (this._isSplitButton && this._splitButtonContainer.current) {\n if ('onpointerdown' in this._splitButtonContainer.current) {\n this._events.on(this._splitButtonContainer.current, 'pointerdown', this._onPointerDown, true);\n }\n if ('onpointerup' in this._splitButtonContainer.current && this.props.onPointerUp) {\n this._events.on(this._splitButtonContainer.current, 'pointerup', this.props.onPointerUp, true);\n }\n }\n };\n BaseButton.prototype.componentDidUpdate = function (prevProps, prevState) {\n // If Button's menu was closed, run onAfterMenuDismiss.\n if (this.props.onAfterMenuDismiss && !prevState.menuHidden && this.state.menuHidden) {\n this.props.onAfterMenuDismiss();\n }\n };\n BaseButton.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n BaseButton.prototype.focus = function () {\n var _a, _b;\n if (this._isSplitButton && this._splitButtonContainer.current) {\n setFocusVisibility(true, undefined, (_a = this.context) === null || _a === void 0 ? void 0 : _a.registeredProviders);\n this._splitButtonContainer.current.focus();\n }\n else if (this._buttonElement.current) {\n setFocusVisibility(true, undefined, (_b = this.context) === null || _b === void 0 ? void 0 : _b.registeredProviders);\n this._buttonElement.current.focus();\n }\n };\n BaseButton.prototype.dismissMenu = function () {\n this._dismissMenu();\n };\n BaseButton.prototype.openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\n this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\n };\n BaseButton.prototype._onRenderContent = function (tag, buttonProps) {\n var _this = this;\n var props = this.props;\n var Tag = tag;\n var menuIconProps = props.menuIconProps, menuProps = props.menuProps, _a = props.onRenderIcon, onRenderIcon = _a === void 0 ? this._onRenderIcon : _a, _b = props.onRenderAriaDescription, onRenderAriaDescription = _b === void 0 ? this._onRenderAriaDescription : _b, _c = props.onRenderChildren, onRenderChildren = _c === void 0 ? this._onRenderChildren : _c, \n // eslint-disable-next-line deprecation/deprecation\n _d = props.onRenderMenu, \n // eslint-disable-next-line deprecation/deprecation\n onRenderMenu = _d === void 0 ? this._onRenderMenu : _d, _e = props.onRenderMenuIcon, onRenderMenuIcon = _e === void 0 ? this._onRenderMenuIcon : _e, disabled = props.disabled;\n var keytipProps = props.keytipProps;\n if (keytipProps && menuProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n var Button = function (keytipAttributes) { return (React.createElement(Tag, __assign({}, buttonProps, keytipAttributes),\n React.createElement(\"span\", { className: _this._classNames.flexContainer, \"data-automationid\": \"splitbuttonprimary\" },\n onRenderIcon(props, _this._onRenderIcon),\n _this._onRenderTextContents(),\n onRenderAriaDescription(props, _this._onRenderAriaDescription),\n onRenderChildren(props, _this._onRenderChildren),\n !_this._isSplitButton &&\n (menuProps || menuIconProps || _this.props.onRenderMenuIcon) &&\n onRenderMenuIcon(_this.props, _this._onRenderMenuIcon),\n menuProps &&\n !menuProps.doNotLayer &&\n _this._shouldRenderMenu() &&\n onRenderMenu(_this._getMenuProps(menuProps), _this._onRenderMenu)))); };\n var Content = keytipProps ? (\n // If we're making a split button, we won't put the keytip here\n React.createElement(KeytipData, { keytipProps: !this._isSplitButton ? keytipProps : undefined, ariaDescribedBy: buttonProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return Button(keytipAttributes); })) : (Button());\n if (menuProps && menuProps.doNotLayer) {\n return (React.createElement(React.Fragment, null,\n Content,\n this._shouldRenderMenu() && onRenderMenu(this._getMenuProps(menuProps), this._onRenderMenu)));\n }\n return (React.createElement(React.Fragment, null,\n Content,\n React.createElement(FocusRects, null)));\n };\n /**\n * Method to help determine if the menu's component tree should\n * be rendered. It takes into account whether the menu is expanded,\n * whether it is a persisted menu and whether it has been shown to the user.\n */\n BaseButton.prototype._shouldRenderMenu = function () {\n var menuHidden = this.state.menuHidden;\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, persistMenu = _a.persistMenu, renderPersistedMenuHiddenOnMount = _a.renderPersistedMenuHiddenOnMount;\n if (!menuHidden) {\n // Always should render a menu when it is expanded\n return true;\n }\n else if (persistMenu && (this._renderedVisibleMenu || renderPersistedMenuHiddenOnMount)) {\n // _renderedVisibleMenu ensures that the first rendering of\n // the menu happens on-screen, as edge's scrollbar calculations are off if done while hidden.\n return true;\n }\n return false;\n };\n BaseButton.prototype._hasText = function () {\n // _onRenderTextContents and _onRenderText do not perform the same checks. Below is parity with what _onRenderText\n // used to have before the refactor that introduced this function. _onRenderTextContents does not require props.\n // text to be undefined in order for props.children to be used as a fallback.\n // Purely a code maintainability/reuse issue, but logged as Issue #4979.\n return this.props.text !== null && (this.props.text !== undefined || typeof this.props.children === 'string');\n };\n BaseButton.prototype._getMenuProps = function (menuProps) {\n var persistMenu = this.props.persistMenu;\n var menuHidden = this.state.menuHidden;\n // the accessible menu label (accessible name) has a relationship to the button.\n // If the menu props do not specify an explicit value for aria-label or aria-labelledBy,\n // AND the button has text, we'll set the menu aria-labelledBy to the text element id.\n if (!menuProps.ariaLabel && !menuProps.labelElementId && this._hasText()) {\n menuProps = __assign(__assign({}, menuProps), { labelElementId: this._labelId });\n }\n return __assign(__assign({ id: this._labelId + '-menu', directionalHint: DirectionalHint.bottomLeftEdge }, menuProps), { shouldFocusOnContainer: this._menuShouldFocusOnContainer, shouldFocusOnMount: this._menuShouldFocusOnMount, hidden: persistMenu ? menuHidden : undefined, className: css('ms-BaseButton-menuhost', menuProps.className), target: this._isSplitButton ? this._splitButtonContainer.current : this._buttonElement.current, onDismiss: this._onDismissMenu });\n };\n BaseButton.prototype._onRenderSplitButtonContent = function (tag, buttonProps) {\n var _this = this;\n var _a = this.props, _b = _a.styles, styles = _b === void 0 ? {} : _b, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, getSplitButtonClassNames = _a.getSplitButtonClassNames, primaryDisabled = _a.primaryDisabled, menuProps = _a.menuProps, toggle = _a.toggle, role = _a.role, primaryActionButtonProps = _a.primaryActionButtonProps;\n var keytipProps = this.props.keytipProps;\n var menuHidden = this.state.menuHidden;\n var classNames = getSplitButtonClassNames\n ? getSplitButtonClassNames(!!disabled, !menuHidden, !!checked, !!allowDisabledFocus)\n : styles && getBaseSplitButtonClassNames(styles, !!disabled, !menuHidden, !!checked, !!primaryDisabled);\n assign(buttonProps, {\n onClick: undefined,\n onPointerDown: undefined,\n onPointerUp: undefined,\n tabIndex: -1,\n 'data-is-focusable': false,\n });\n if (keytipProps && menuProps) {\n keytipProps = this._getMemoizedMenuButtonKeytipProps(keytipProps);\n }\n var containerProps = getNativeProps(buttonProps, [], ['disabled']);\n // Add additional props to apply on primary action button\n if (primaryActionButtonProps) {\n assign(buttonProps, primaryActionButtonProps);\n }\n var SplitButton = function (keytipAttributes) { return (React.createElement(\"div\", __assign({}, containerProps, { \"data-ktp-target\": keytipAttributes ? keytipAttributes['data-ktp-target'] : undefined, role: role ? role : 'button', \"aria-disabled\": disabled, \"aria-haspopup\": true, \"aria-expanded\": !menuHidden, \"aria-pressed\": toggle ? !!checked : undefined, \"aria-describedby\": mergeAriaAttributeValues(buttonProps['aria-describedby'], keytipAttributes ? keytipAttributes['aria-describedby'] : undefined), className: classNames && classNames.splitButtonContainer, onKeyDown: _this._onSplitButtonContainerKeyDown, onTouchStart: _this._onTouchStart, ref: _this._splitButtonContainer, \"data-is-focusable\": true, onClick: !disabled && !primaryDisabled ? _this._onSplitButtonPrimaryClick : undefined, tabIndex: (!disabled && !primaryDisabled) || allowDisabledFocus ? 0 : undefined, \"aria-roledescription\": buttonProps['aria-roledescription'], onFocusCapture: _this._onSplitContainerFocusCapture }),\n React.createElement(\"span\", { style: { display: 'flex', width: '100%' } },\n _this._onRenderContent(tag, buttonProps),\n _this._onRenderSplitButtonMenuButton(classNames, keytipAttributes),\n _this._onRenderSplitButtonDivider(classNames)))); };\n return keytipProps ? (React.createElement(KeytipData, { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return SplitButton(keytipAttributes); })) : (SplitButton());\n };\n BaseButton.prototype._onRenderSplitButtonDivider = function (classNames) {\n if (classNames && classNames.divider) {\n var onClick = function (ev) {\n ev.stopPropagation();\n };\n return React.createElement(\"span\", { className: classNames.divider, \"aria-hidden\": true, onClick: onClick });\n }\n return null;\n };\n BaseButton.prototype._onRenderSplitButtonMenuButton = function (classNames, keytipAttributes) {\n var _a = this.props, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, disabled = _a.disabled, splitButtonMenuProps = _a.splitButtonMenuProps, splitButtonAriaLabel = _a.splitButtonAriaLabel, primaryDisabled = _a.primaryDisabled;\n var menuHidden = this.state.menuHidden;\n var menuIconProps = this.props.menuIconProps;\n if (menuIconProps === undefined) {\n menuIconProps = {\n iconName: 'ChevronDown',\n };\n }\n var splitButtonProps = __assign(__assign({}, splitButtonMenuProps), { styles: classNames, checked: checked, disabled: disabled, allowDisabledFocus: allowDisabledFocus, onClick: this._onMenuClick, menuProps: undefined, iconProps: __assign(__assign({}, menuIconProps), { className: this._classNames.menuIcon }), ariaLabel: splitButtonAriaLabel, 'aria-haspopup': true, 'aria-expanded': !menuHidden, 'data-is-focusable': false });\n // Add data-ktp-execute-target to the split button if the keytip is defined\n return (React.createElement(BaseButton, __assign({}, splitButtonProps, { \"data-ktp-execute-target\": keytipAttributes ? keytipAttributes['data-ktp-execute-target'] : keytipAttributes, onMouseDown: this._onMouseDown, tabIndex: primaryDisabled && !allowDisabledFocus ? 0 : -1 })));\n };\n BaseButton.prototype._onPointerDown = function (ev) {\n var onPointerDown = this.props.onPointerDown;\n if (onPointerDown) {\n onPointerDown(ev);\n }\n if (ev.pointerType === 'touch') {\n this._handleTouchAndPointerEvent();\n ev.preventDefault();\n ev.stopImmediatePropagation();\n }\n };\n BaseButton.prototype._handleTouchAndPointerEvent = function () {\n var _this = this;\n // If we already have an existing timeout from a previous touch and pointer event\n // cancel that timeout so we can set a new one.\n if (this._lastTouchTimeoutId !== undefined) {\n this._async.clearTimeout(this._lastTouchTimeoutId);\n this._lastTouchTimeoutId = undefined;\n }\n this._processingTouch = true;\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\n _this._processingTouch = false;\n _this._lastTouchTimeoutId = undefined;\n // Touch and pointer events don't focus the button naturally,\n // so adding an imperative focus call to guarantee this behavior.\n // Only focus the button if a splitbutton menu is not open\n if (_this.state.menuHidden) {\n _this.focus();\n }\n }, TouchIdleDelay);\n };\n /**\n * Returns if the user hits a valid keyboard key to open the menu\n * @param ev - the keyboard event\n * @returns True if user clicks on custom trigger key if enabled or alt + down arrow if not. False otherwise.\n */\n BaseButton.prototype._isValidMenuOpenKey = function (ev) {\n if (this.props.menuTriggerKeyCode) {\n // eslint-disable-next-line deprecation/deprecation\n return ev.which === this.props.menuTriggerKeyCode;\n }\n else if (this.props.menuProps) {\n // eslint-disable-next-line deprecation/deprecation\n return ev.which === KeyCodes.down && (ev.altKey || ev.metaKey);\n }\n // Note: When enter is pressed, we will let the event continue to propagate\n // to trigger the onClick event on the button\n return false;\n };\n BaseButton.defaultProps = {\n baseClassName: 'ms-Button',\n styles: {},\n split: false,\n };\n // needed to access registeredProviders when manually setting focus visibility\n BaseButton.contextType = FocusRectsContext;\n return BaseButton;\n}(React.Component));\nexport { BaseButton };\n//# sourceMappingURL=BaseButton.js.map","import { memoizeFunction } from '../../Utilities';\nimport { HighContrastSelector, getFocusStyle, hiddenContentStyle } from '../../Styling';\nvar noOutline = {\n outline: 0,\n};\nvar iconStyle = function (fontSize) {\n return {\n fontSize: fontSize,\n margin: '0 4px',\n height: '16px',\n lineHeight: '16px',\n textAlign: 'center',\n flexShrink: 0,\n };\n};\n/**\n * Gets the base button styles. Note: because it is a base class to be used with the `mergeRules`\n * helper, it should have values for all class names in the interface. This let `mergeRules` optimize\n * mixing class names together.\n */\nexport var getStyles = memoizeFunction(function (theme) {\n var _a, _b;\n var semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var border = semanticColors.buttonBorder;\n var disabledBackground = semanticColors.disabledBackground;\n var disabledText = semanticColors.disabledText;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n outlineColor: 'ButtonText',\n };\n return {\n root: [\n getFocusStyle(theme, { inset: 1, highContrastStyle: buttonHighContrastFocus, borderColor: 'transparent' }),\n theme.fonts.medium,\n {\n border: '1px solid ' + border,\n borderRadius: effects.roundedCorner2,\n boxSizing: 'border-box',\n cursor: 'pointer',\n display: 'inline-block',\n padding: '0 16px',\n textDecoration: 'none',\n textAlign: 'center',\n userSelect: 'none',\n selectors: {\n // IE11 workaround for preventing shift of child elements of a button when active.\n ':active > span': {\n position: 'relative',\n left: 0,\n top: 0,\n },\n },\n },\n ],\n rootDisabled: [\n getFocusStyle(theme, { inset: 1, highContrastStyle: buttonHighContrastFocus, borderColor: 'transparent' }),\n {\n backgroundColor: disabledBackground,\n borderColor: disabledBackground,\n color: disabledText,\n cursor: 'default',\n selectors: {\n ':hover': noOutline,\n ':focus': noOutline,\n },\n },\n ],\n iconDisabled: {\n color: disabledText,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n color: 'GrayText',\n },\n _a),\n },\n menuIconDisabled: {\n color: disabledText,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n },\n _b),\n },\n flexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center',\n },\n description: {\n display: 'block',\n },\n textContainer: {\n flexGrow: 1,\n display: 'block',\n },\n icon: iconStyle(fonts.mediumPlus.fontSize),\n menuIcon: iconStyle(fonts.small.fontSize),\n label: {\n margin: '0 4px',\n lineHeight: '100%',\n display: 'block',\n },\n screenReaderText: hiddenContentStyle,\n };\n});\n//# sourceMappingURL=BaseButton.styles.js.map","import { __assign } from \"tslib\";\nimport { HighContrastSelector, concatStyleSets, getFocusStyle, getHighContrastNoAdjustStyle } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;\n var effects = theme.effects, palette = theme.palette, semanticColors = theme.semanticColors;\n var buttonHighContrastFocus = {\n left: -2,\n top: -2,\n bottom: -2,\n right: -2,\n border: 'none',\n };\n var splitButtonDividerBaseStyles = {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n };\n var splitButtonStyles = {\n splitButtonContainer: [\n getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2, pointerEvents: 'none' }),\n {\n display: 'inline-flex',\n selectors: {\n '.ms-Button--default': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n borderRight: 'none',\n flexGrow: '1',\n },\n '.ms-Button--primary': {\n borderTopRightRadius: '0',\n borderBottomRightRadius: '0',\n border: 'none',\n flexGrow: '1',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'WindowText', backgroundColor: 'Window', border: '1px solid WindowText', borderRightWidth: '0' }, getHighContrastNoAdjustStyle()),\n _a[':hover'] = {\n border: 'none',\n },\n _a[':active'] = {\n border: 'none',\n },\n _a),\n },\n '.ms-Button--primary + .ms-Button': {\n border: 'none',\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n border: '1px solid WindowText',\n borderLeftWidth: '0',\n },\n _b),\n },\n },\n },\n ],\n splitButtonContainerHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n },\n _c),\n },\n '.ms-Button.is-disabled': {\n color: semanticColors.buttonTextDisabled,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _d),\n },\n },\n },\n splitButtonContainerChecked: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n splitButtonContainerCheckedHovered: {\n selectors: {\n '.ms-Button--primary': {\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n splitButtonContainerFocused: {\n outline: 'none!important',\n },\n splitButtonMenuButton: (_g = {\n padding: 6,\n height: 'auto',\n boxSizing: 'border-box',\n borderRadius: 0,\n borderTopRightRadius: effects.roundedCorner2,\n borderBottomRightRadius: effects.roundedCorner2,\n border: \"1px solid \".concat(palette.neutralSecondaryAlt),\n borderLeft: 'none',\n outline: 'transparent',\n userSelect: 'none',\n display: 'inline-block',\n textDecoration: 'none',\n textAlign: 'center',\n cursor: 'pointer',\n verticalAlign: 'top',\n width: 32,\n marginLeft: -1,\n marginTop: 0,\n marginRight: 0,\n marginBottom: 0\n },\n _g[HighContrastSelector] = {\n '.ms-Button-menuIcon': {\n color: 'WindowText',\n },\n },\n _g),\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_h = {},\n _h[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _h) }),\n splitButtonDividerDisabled: __assign(__assign({}, splitButtonDividerBaseStyles), { selectors: (_j = {},\n _j[HighContrastSelector] = {\n backgroundColor: 'GrayText',\n },\n _j) }),\n splitButtonMenuButtonDisabled: {\n pointerEvents: 'none',\n border: 'none',\n selectors: (_k = {\n ':hover': {\n cursor: 'default',\n },\n '.ms-Button--primary': {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _l),\n },\n '.ms-Button-menuIcon': {\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n color: 'GrayText',\n },\n _m),\n }\n },\n _k[HighContrastSelector] = {\n color: 'GrayText',\n border: '1px solid GrayText',\n backgroundColor: 'Window',\n },\n _k),\n },\n splitButtonFlexContainer: {\n display: 'flex',\n height: '100%',\n flexWrap: 'nowrap',\n justifyContent: 'center',\n alignItems: 'center',\n },\n splitButtonContainerDisabled: {\n outline: 'none',\n border: 'none',\n selectors: (_o = {},\n _o[HighContrastSelector] = __assign({ color: 'GrayText', borderColor: 'GrayText', backgroundColor: 'Window' }, getHighContrastNoAdjustStyle()),\n _o),\n },\n splitButtonMenuFocused: __assign({}, getFocusStyle(theme, { highContrastStyle: buttonHighContrastFocus, inset: 2 })),\n };\n return concatStyleSets(splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=SplitButton.styles.js.map","import { __assign } from \"tslib\";\nimport { HighContrastSelector, getHighContrastNoAdjustStyle } from '../../Styling';\nimport { IsFocusVisibleClassName } from '../../Utilities';\nvar splitButtonDividerBaseStyles = function () {\n return {\n position: 'absolute',\n width: 1,\n right: 31,\n top: 8,\n bottom: 8,\n };\n};\nexport function standardStyles(theme) {\n var _a, _b, _c, _d, _e;\n var s = theme.semanticColors, p = theme.palette;\n var buttonBackground = s.buttonBackground;\n var buttonBackgroundPressed = s.buttonBackgroundPressed;\n var buttonBackgroundHovered = s.buttonBackgroundHovered;\n var buttonBackgroundDisabled = s.buttonBackgroundDisabled;\n var buttonText = s.buttonText;\n var buttonTextHovered = s.buttonTextHovered;\n var buttonTextDisabled = s.buttonTextDisabled;\n var buttonTextChecked = s.buttonTextChecked;\n var buttonTextCheckedHovered = s.buttonTextCheckedHovered;\n return {\n root: {\n backgroundColor: buttonBackground,\n color: buttonText,\n },\n rootHovered: {\n backgroundColor: buttonBackgroundHovered,\n color: buttonTextHovered,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n rootPressed: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootExpanded: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootChecked: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextChecked,\n },\n rootCheckedHovered: {\n backgroundColor: buttonBackgroundPressed,\n color: buttonTextCheckedHovered,\n },\n rootDisabled: {\n color: buttonTextDisabled,\n backgroundColor: buttonBackgroundDisabled,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _b),\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n border: 'none',\n },\n _c),\n },\n splitButtonMenuButton: {\n color: p.white,\n backgroundColor: 'transparent',\n selectors: {\n ':hover': {\n backgroundColor: p.neutralLight,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'Highlight',\n },\n _d),\n },\n },\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: s.buttonBackgroundDisabled,\n selectors: {\n ':hover': {\n backgroundColor: s.buttonBackgroundDisabled,\n },\n },\n },\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles()), { backgroundColor: p.neutralTertiaryAlt, selectors: (_e = {},\n _e[HighContrastSelector] = {\n backgroundColor: 'WindowText',\n },\n _e) }),\n splitButtonDividerDisabled: {\n backgroundColor: theme.palette.neutralTertiaryAlt,\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: p.neutralQuaternaryAlt,\n selectors: {\n ':hover': {\n backgroundColor: p.neutralQuaternaryAlt,\n },\n },\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: p.neutralQuaternaryAlt,\n selectors: {\n ':hover': {\n backgroundColor: p.neutralQuaternaryAlt,\n },\n },\n },\n splitButtonMenuIcon: {\n color: s.buttonText,\n },\n splitButtonMenuIconDisabled: {\n color: s.buttonTextDisabled,\n },\n };\n}\nexport function primaryStyles(theme) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j;\n var p = theme.palette, s = theme.semanticColors;\n return {\n root: {\n backgroundColor: s.primaryButtonBackground,\n border: \"1px solid \".concat(s.primaryButtonBackground),\n color: s.primaryButtonText,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText', borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _a[\".\".concat(IsFocusVisibleClassName, \" &:focus\")] = {\n selectors: {\n ':after': {\n border: \"none\",\n outlineColor: p.white,\n },\n },\n },\n _a),\n },\n rootHovered: {\n backgroundColor: s.primaryButtonBackgroundHovered,\n border: \"1px solid \".concat(s.primaryButtonBackgroundHovered),\n color: s.primaryButtonTextHovered,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'Window',\n backgroundColor: 'Highlight',\n borderColor: 'Highlight',\n },\n _b),\n },\n rootPressed: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n border: \"1px solid \".concat(s.primaryButtonBackgroundPressed),\n color: s.primaryButtonTextPressed,\n selectors: (_c = {},\n _c[HighContrastSelector] = __assign({ color: 'Window', backgroundColor: 'WindowText', borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _c),\n },\n rootExpanded: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootChecked: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootCheckedHovered: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n color: s.primaryButtonTextPressed,\n },\n rootDisabled: {\n color: s.primaryButtonTextDisabled,\n backgroundColor: s.primaryButtonBackgroundDisabled,\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n color: 'GrayText',\n borderColor: 'GrayText',\n backgroundColor: 'Window',\n },\n _d),\n },\n // Split button styles\n splitButtonContainer: {\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n border: 'none',\n },\n _e),\n },\n splitButtonDivider: __assign(__assign({}, splitButtonDividerBaseStyles()), { backgroundColor: p.white, selectors: (_f = {},\n _f[HighContrastSelector] = {\n backgroundColor: 'Window',\n },\n _f) }),\n splitButtonMenuButton: {\n backgroundColor: s.primaryButtonBackground,\n color: s.primaryButtonText,\n selectors: (_g = {},\n _g[HighContrastSelector] = {\n backgroundColor: 'Canvas',\n },\n _g[':hover'] = {\n backgroundColor: s.primaryButtonBackgroundHovered,\n selectors: (_h = {},\n _h[HighContrastSelector] = {\n color: 'Highlight',\n },\n _h),\n },\n _g),\n },\n splitButtonMenuButtonDisabled: {\n backgroundColor: s.primaryButtonBackgroundDisabled,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundDisabled,\n },\n },\n },\n splitButtonMenuButtonChecked: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundPressed,\n },\n },\n },\n splitButtonMenuButtonExpanded: {\n backgroundColor: s.primaryButtonBackgroundPressed,\n selectors: {\n ':hover': {\n backgroundColor: s.primaryButtonBackgroundPressed,\n },\n },\n },\n splitButtonMenuIcon: {\n color: s.primaryButtonText,\n },\n splitButtonMenuIconDisabled: {\n color: p.neutralTertiary,\n selectors: (_j = {},\n _j[HighContrastSelector] = {\n color: 'GrayText',\n },\n _j),\n },\n };\n}\n//# sourceMappingURL=ButtonThemes.js.map","import { concatStyleSets, FontWeights } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nimport { primaryStyles, standardStyles } from '../ButtonThemes';\nvar DEFAULT_BUTTON_HEIGHT = '32px';\nvar DEFAULT_BUTTON_MIN_WIDTH = '80px';\nexport var getStyles = memoizeFunction(function (theme, customStyles, primary) {\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var defaultButtonStyles = {\n root: {\n minWidth: DEFAULT_BUTTON_MIN_WIDTH,\n height: DEFAULT_BUTTON_HEIGHT,\n },\n label: {\n fontWeight: FontWeights.semibold,\n },\n };\n return concatStyleSets(baseButtonStyles, defaultButtonStyles, primary ? primaryStyles(theme) : standardStyles(theme), splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=DefaultButton.styles.js.map","import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './DefaultButton.styles';\n/**\n * {@docCategory Button}\n */\nvar DefaultButton = /** @class */ (function (_super) {\n __extends(DefaultButton, _super);\n function DefaultButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n DefaultButton.prototype.render = function () {\n var _a = this.props, _b = _a.primary, primary = _b === void 0 ? false : _b, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: primary ? 'ms-Button--primary' : 'ms-Button--default', styles: getStyles(theme, styles, primary), onRenderDescription: nullRender })));\n };\n DefaultButton = __decorate([\n customizable('DefaultButton', ['theme', 'styles'], true)\n ], DefaultButton);\n return DefaultButton;\n}(React.Component));\nexport { DefaultButton };\n//# sourceMappingURL=DefaultButton.js.map","import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nvar DEFAULT_BUTTON_HEIGHT = '40px';\nvar DEFAULT_PADDING = '0 4px';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a, _b, _c;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var actionButtonStyles = {\n root: {\n padding: DEFAULT_PADDING,\n height: DEFAULT_BUTTON_HEIGHT,\n color: theme.palette.neutralPrimary,\n backgroundColor: 'transparent',\n border: '1px solid transparent',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Window',\n },\n _a),\n },\n rootHovered: {\n color: theme.palette.themePrimary,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'Highlight',\n },\n _b),\n },\n iconHovered: {\n color: theme.palette.themePrimary,\n },\n rootPressed: {\n color: theme.palette.black,\n },\n rootExpanded: {\n color: theme.palette.themePrimary,\n },\n iconPressed: {\n color: theme.palette.themeDarker,\n },\n rootDisabled: {\n color: theme.palette.neutralTertiary,\n backgroundColor: 'transparent',\n borderColor: 'transparent',\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'GrayText',\n },\n _c),\n },\n rootChecked: {\n color: theme.palette.black,\n },\n iconChecked: {\n color: theme.palette.themeDarker,\n },\n flexContainer: {\n justifyContent: 'flex-start',\n },\n icon: {\n color: theme.palette.themeDarkAlt,\n },\n iconDisabled: {\n color: 'inherit',\n },\n menuIcon: {\n color: theme.palette.neutralSecondary,\n },\n textContainer: {\n flexGrow: 0,\n },\n };\n return concatStyleSets(baseButtonStyles, actionButtonStyles, customStyles);\n});\n//# sourceMappingURL=ActionButton.styles.js.map","import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './ActionButton.styles';\n/**\n * {@docCategory Button}\n */\nvar ActionButton = /** @class */ (function (_super) {\n __extends(ActionButton, _super);\n function ActionButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n ActionButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--action ms-Button--command\", styles: getStyles(theme, styles), onRenderDescription: nullRender })));\n };\n ActionButton = __decorate([\n customizable('ActionButton', ['theme', 'styles'], true)\n ], ActionButton);\n return ActionButton;\n}(React.Component));\nexport { ActionButton };\n//# sourceMappingURL=ActionButton.js.map","import { concatStyleSets, HighContrastSelector } from '../../../Styling';\nimport { memoizeFunction } from '../../../Utilities';\nimport { getStyles as getBaseButtonStyles } from '../BaseButton.styles';\nimport { getStyles as getSplitButtonStyles } from '../SplitButton/SplitButton.styles';\nexport var getStyles = memoizeFunction(function (theme, customStyles) {\n var _a;\n var baseButtonStyles = getBaseButtonStyles(theme);\n var splitButtonStyles = getSplitButtonStyles(theme);\n var palette = theme.palette, semanticColors = theme.semanticColors;\n var iconButtonStyles = {\n root: {\n padding: '0 4px',\n width: '32px',\n height: '32px',\n backgroundColor: 'transparent',\n border: 'none',\n color: semanticColors.link,\n },\n rootHovered: {\n color: palette.themeDarkAlt,\n backgroundColor: palette.neutralLighter,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _a),\n },\n rootHasMenu: {\n width: 'auto',\n },\n rootPressed: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootExpanded: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootChecked: {\n color: palette.themeDark,\n backgroundColor: palette.neutralLight,\n },\n rootCheckedHovered: {\n color: palette.themeDark,\n backgroundColor: palette.neutralQuaternaryAlt,\n },\n rootDisabled: {\n color: palette.neutralTertiaryAlt,\n },\n };\n return concatStyleSets(baseButtonStyles, iconButtonStyles, splitButtonStyles, customStyles);\n});\n//# sourceMappingURL=IconButton.styles.js.map","import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { BaseButton } from '../BaseButton';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { getStyles } from './IconButton.styles';\n/**\n * {@docCategory Button}\n */\nvar IconButton = /** @class */ (function (_super) {\n __extends(IconButton, _super);\n function IconButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n IconButton.prototype.render = function () {\n var _a = this.props, styles = _a.styles, theme = _a.theme;\n return (React.createElement(BaseButton, __assign({}, this.props, { variantClassName: \"ms-Button--icon\", styles: getStyles(theme, styles), onRenderText: nullRender, onRenderDescription: nullRender })));\n };\n IconButton = __decorate([\n customizable('IconButton', ['theme', 'styles'], true)\n ], IconButton);\n return IconButton;\n}(React.Component));\nexport { IconButton };\n//# sourceMappingURL=IconButton.js.map","import { __assign, __decorate, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { customizable, nullRender } from '../../../Utilities';\nimport { DefaultButton } from '../DefaultButton/DefaultButton';\n/**\n * {@docCategory Button}\n */\nvar PrimaryButton = /** @class */ (function (_super) {\n __extends(PrimaryButton, _super);\n function PrimaryButton() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n PrimaryButton.prototype.render = function () {\n return React.createElement(DefaultButton, __assign({}, this.props, { primary: true, onRenderDescription: nullRender }));\n };\n PrimaryButton = __decorate([\n customizable('PrimaryButton', ['theme', 'styles'], true)\n ], PrimaryButton);\n return PrimaryButton;\n}(React.Component));\nexport { PrimaryButton };\n//# sourceMappingURL=PrimaryButton.js.map","import { ActionButton } from '../ActionButton/ActionButton';\n/**\n * {@docCategory Button}\n */\nexport var CommandButton = ActionButton;\n//# sourceMappingURL=CommandButton.js.map","import { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { useControllableValue, useId, useMergedRefs, useWarnings } from '@fluentui/react-hooks';\nimport { useFocusRects, classNamesFunction } from '@fluentui/utilities';\nimport { Icon } from '../Icon/Icon';\nvar getClassNames = classNamesFunction();\nexport var CheckboxBase = React.forwardRef(function (props, forwardedRef) {\n var disabled = props.disabled, required = props.required, inputProps = props.inputProps, name = props.name, ariaLabel = props.ariaLabel, ariaLabelledBy = props.ariaLabelledBy, ariaDescribedBy = props.ariaDescribedBy, ariaPositionInSet = props.ariaPositionInSet, ariaSetSize = props.ariaSetSize, title = props.title, checkmarkIconProps = props.checkmarkIconProps, styles = props.styles, theme = props.theme, className = props.className, _a = props.boxSide, boxSide = _a === void 0 ? 'start' : _a;\n var id = useId('checkbox-', props.id);\n var rootRef = React.useRef(null);\n var mergedRootRefs = useMergedRefs(rootRef, forwardedRef);\n var inputRef = React.useRef(null);\n var _b = useControllableValue(props.checked, props.defaultChecked, props.onChange), isChecked = _b[0], setIsChecked = _b[1];\n var _c = useControllableValue(props.indeterminate, props.defaultIndeterminate), isIndeterminate = _c[0], setIsIndeterminate = _c[1];\n useFocusRects(rootRef);\n useDebugWarning(props);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n indeterminate: isIndeterminate,\n checked: isChecked,\n reversed: boxSide !== 'start',\n isUsingCustomLabelRender: !!props.onRenderLabel,\n });\n var onChange = React.useCallback(function (event) {\n if (isIndeterminate) {\n // If indeterminate, clicking the checkbox *only* removes the indeterminate state (or if\n // controlled, lets the consumer know to change it by calling onChange). It doesn't\n // change the checked state.\n setIsChecked(!!isChecked, event);\n setIsIndeterminate(false);\n }\n else {\n setIsChecked(!isChecked, event);\n }\n }, [setIsChecked, setIsIndeterminate, isIndeterminate, isChecked]);\n var defaultLabelRenderer = React.useCallback(function (checkboxProps) {\n if (!checkboxProps) {\n return null;\n }\n return checkboxProps.label ? (React.createElement(\"span\", { className: classNames.text, title: checkboxProps.title }, checkboxProps.label)) : null;\n }, [classNames.text]);\n var setNativeIndeterminate = React.useCallback(function (indeterminate) {\n if (!inputRef.current) {\n return;\n }\n var value = !!indeterminate;\n inputRef.current.indeterminate = value;\n setIsIndeterminate(value);\n }, [setIsIndeterminate]);\n useComponentRef(props, isChecked, isIndeterminate, setNativeIndeterminate, inputRef);\n React.useEffect(function () { return setNativeIndeterminate(isIndeterminate); }, [setNativeIndeterminate, isIndeterminate]);\n var onRenderLabel = props.onRenderLabel || defaultLabelRenderer;\n var ariaChecked = isIndeterminate\n ? 'mixed'\n : undefined;\n var mergedInputProps = __assign(__assign({ className: classNames.input, type: 'checkbox' }, inputProps), { checked: !!isChecked, disabled: disabled, required: required, name: name, id: id, title: title, onChange: onChange, 'aria-disabled': disabled, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy, 'aria-describedby': ariaDescribedBy, 'aria-posinset': ariaPositionInSet, 'aria-setsize': ariaSetSize, 'aria-checked': ariaChecked });\n return (React.createElement(\"div\", { className: classNames.root, title: title, ref: mergedRootRefs },\n React.createElement(\"input\", __assign({}, mergedInputProps, { ref: inputRef, title: title, \"data-ktp-execute-target\": true })),\n React.createElement(\"label\", { className: classNames.label, htmlFor: id },\n React.createElement(\"div\", { className: classNames.checkbox, \"data-ktp-target\": true },\n React.createElement(Icon, __assign({ iconName: \"CheckMark\" }, checkmarkIconProps, { className: classNames.checkmark }))),\n onRenderLabel(props, defaultLabelRenderer))));\n});\nCheckboxBase.displayName = 'CheckboxBase';\nfunction useDebugWarning(props) {\n if (process.env.NODE_ENV !== 'production') {\n // eslint-disable-next-line react-hooks/rules-of-hooks -- build-time conditional\n useWarnings({\n name: 'Checkbox',\n props: props,\n mutuallyExclusive: {\n checked: 'defaultChecked',\n indeterminate: 'defaultIndeterminate',\n },\n });\n }\n}\nfunction useComponentRef(props, isChecked, isIndeterminate, setIndeterminate, checkBoxRef) {\n React.useImperativeHandle(props.componentRef, function () { return ({\n get checked() {\n return !!isChecked;\n },\n get indeterminate() {\n return !!isIndeterminate;\n },\n set indeterminate(indeterminate) {\n setIndeterminate(indeterminate);\n },\n focus: function () {\n if (checkBoxRef.current) {\n checkBoxRef.current.focus();\n }\n },\n }); }, [checkBoxRef, isChecked, isIndeterminate, setIndeterminate]);\n}\n//# sourceMappingURL=Checkbox.base.js.map","import { __assign } from \"tslib\";\nimport { HighContrastSelector, getGlobalClassNames, getHighContrastNoAdjustStyle } from '@fluentui/style-utilities';\nimport { IsFocusVisibleClassName } from '@fluentui/utilities';\nvar GlobalClassNames = {\n root: 'ms-Checkbox',\n label: 'ms-Checkbox-label',\n checkbox: 'ms-Checkbox-checkbox',\n checkmark: 'ms-Checkbox-checkmark',\n text: 'ms-Checkbox-text',\n};\nvar MS_CHECKBOX_LABEL_SIZE = '20px';\nvar MS_CHECKBOX_TRANSITION_DURATION = '200ms';\nvar MS_CHECKBOX_TRANSITION_TIMING = 'cubic-bezier(.4, 0, .23, 1)';\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;\n var className = props.className, theme = props.theme, reversed = props.reversed, checked = props.checked, disabled = props.disabled, isUsingCustomLabelRender = props.isUsingCustomLabelRender, indeterminate = props.indeterminate;\n var semanticColors = theme.semanticColors, effects = theme.effects, palette = theme.palette, fonts = theme.fonts;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var checkmarkFontColor = semanticColors.inputForegroundChecked;\n // TODO: after updating the semanticColors slots mapping this needs to be semanticColors.inputBorder\n var checkmarkFontColorHovered = palette.neutralSecondary;\n // TODO: after updating the semanticColors slots mapping this needs to be semanticColors.smallInputBorder\n var checkboxBorderColor = palette.neutralPrimary;\n var checkboxBorderIndeterminateColor = semanticColors.inputBackgroundChecked;\n var checkboxBorderColorChecked = semanticColors.inputBackgroundChecked;\n var checkboxBorderColorDisabled = semanticColors.disabledBodySubtext;\n var checkboxBorderHoveredColor = semanticColors.inputBorderHovered;\n var checkboxBorderIndeterminateHoveredColor = semanticColors.inputBackgroundCheckedHovered;\n var checkboxBackgroundChecked = semanticColors.inputBackgroundChecked;\n // TODO: after updating the semanticColors slots mapping the following 2 tokens need to be\n // semanticColors.inputBackgroundCheckedHovered\n var checkboxBackgroundCheckedHovered = semanticColors.inputBackgroundCheckedHovered;\n var checkboxBorderColorCheckedHovered = semanticColors.inputBackgroundCheckedHovered;\n var checkboxHoveredTextColor = semanticColors.inputTextHovered;\n var checkboxBackgroundDisabledChecked = semanticColors.disabledBodySubtext;\n var checkboxTextColor = semanticColors.bodyText;\n var checkboxTextColorDisabled = semanticColors.disabledText;\n var indeterminateDotStyles = [\n (_a = {\n content: '\"\"',\n borderRadius: effects.roundedCorner2,\n position: 'absolute',\n width: 10,\n height: 10,\n top: 4,\n left: 4,\n boxSizing: 'border-box',\n borderWidth: 5,\n borderStyle: 'solid',\n borderColor: disabled ? checkboxBorderColorDisabled : checkboxBorderIndeterminateColor,\n transitionProperty: 'border-width, border, border-color',\n transitionDuration: MS_CHECKBOX_TRANSITION_DURATION,\n transitionTimingFunction: MS_CHECKBOX_TRANSITION_TIMING\n },\n _a[HighContrastSelector] = {\n borderColor: 'WindowText',\n },\n _a),\n ];\n return {\n root: [\n classNames.root,\n {\n position: 'relative',\n display: 'flex',\n },\n reversed && 'reversed',\n checked && 'is-checked',\n !disabled && 'is-enabled',\n disabled && 'is-disabled',\n !disabled && [\n !checked && (_b = {},\n _b[\":hover .\".concat(classNames.checkbox)] = (_c = {\n borderColor: checkboxBorderHoveredColor\n },\n _c[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _c),\n _b[\":focus .\".concat(classNames.checkbox)] = { borderColor: checkboxBorderHoveredColor },\n _b[\":hover .\".concat(classNames.checkmark)] = (_d = {\n color: checkmarkFontColorHovered,\n opacity: '1'\n },\n _d[HighContrastSelector] = {\n color: 'Highlight',\n },\n _d),\n _b),\n checked &&\n !indeterminate && (_e = {},\n _e[\":hover .\".concat(classNames.checkbox)] = {\n background: checkboxBackgroundCheckedHovered,\n borderColor: checkboxBorderColorCheckedHovered,\n },\n _e[\":focus .\".concat(classNames.checkbox)] = {\n background: checkboxBackgroundCheckedHovered,\n borderColor: checkboxBorderColorCheckedHovered,\n },\n _e[HighContrastSelector] = (_f = {},\n _f[\":hover .\".concat(classNames.checkbox)] = {\n background: 'Highlight',\n borderColor: 'Highlight',\n },\n _f[\":focus .\".concat(classNames.checkbox)] = {\n background: 'Highlight',\n },\n _f[\":focus:hover .\".concat(classNames.checkbox)] = {\n background: 'Highlight',\n },\n _f[\":focus:hover .\".concat(classNames.checkmark)] = {\n color: 'Window',\n },\n _f[\":hover .\".concat(classNames.checkmark)] = {\n color: 'Window',\n },\n _f),\n _e),\n indeterminate && (_g = {},\n _g[\":hover .\".concat(classNames.checkbox, \", :hover .\").concat(classNames.checkbox, \":after\")] = (_h = {\n borderColor: checkboxBorderIndeterminateHoveredColor\n },\n _h[HighContrastSelector] = {\n borderColor: 'WindowText',\n },\n _h),\n _g[\":focus .\".concat(classNames.checkbox)] = {\n borderColor: checkboxBorderIndeterminateHoveredColor,\n },\n _g[\":hover .\".concat(classNames.checkmark)] = {\n opacity: '0',\n },\n _g),\n (_j = {},\n _j[\":hover .\".concat(classNames.text, \", :focus .\").concat(classNames.text)] = (_k = {\n color: checkboxHoveredTextColor\n },\n _k[HighContrastSelector] = {\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _k),\n _j),\n ],\n className,\n ],\n input: (_l = {\n position: 'absolute',\n background: 'none',\n opacity: 0\n },\n _l[\".\".concat(IsFocusVisibleClassName, \" &:focus + label::before\")] = (_m = {\n outline: '1px solid ' + theme.palette.neutralSecondary,\n outlineOffset: '2px'\n },\n _m[HighContrastSelector] = {\n outline: '1px solid WindowText',\n },\n _m),\n _l),\n label: [\n classNames.label,\n theme.fonts.medium,\n {\n display: 'flex',\n alignItems: isUsingCustomLabelRender ? 'center' : 'flex-start',\n cursor: disabled ? 'default' : 'pointer',\n position: 'relative',\n userSelect: 'none',\n },\n reversed && {\n flexDirection: 'row-reverse',\n justifyContent: 'flex-end',\n },\n {\n '&::before': {\n position: 'absolute',\n left: 0,\n right: 0,\n top: 0,\n bottom: 0,\n content: '\"\"',\n pointerEvents: 'none',\n },\n },\n ],\n checkbox: [\n classNames.checkbox,\n (_o = {\n position: 'relative',\n display: 'flex',\n flexShrink: 0,\n alignItems: 'center',\n justifyContent: 'center',\n height: MS_CHECKBOX_LABEL_SIZE,\n width: MS_CHECKBOX_LABEL_SIZE,\n border: \"1px solid \".concat(checkboxBorderColor),\n borderRadius: effects.roundedCorner2,\n boxSizing: 'border-box',\n transitionProperty: 'background, border, border-color',\n transitionDuration: MS_CHECKBOX_TRANSITION_DURATION,\n transitionTimingFunction: MS_CHECKBOX_TRANSITION_TIMING,\n /* in case the icon is bigger than the box */\n overflow: 'hidden',\n ':after': indeterminate ? indeterminateDotStyles : null\n },\n _o[HighContrastSelector] = __assign({ borderColor: 'WindowText' }, getHighContrastNoAdjustStyle()),\n _o),\n indeterminate && {\n borderColor: checkboxBorderIndeterminateColor,\n },\n !reversed\n ? // This margin on the checkbox is for backwards compat. Notably it has the effect where a customRender\n // is used, there will be only a 4px margin from checkbox to label. The label by default would have\n // another 4px margin for a total of 8px margin between checkbox and label. We don't combine the two\n // (and move it into the text) to not incur a breaking change for everyone using custom render atm.\n {\n marginRight: 4,\n }\n : {\n marginLeft: 4,\n },\n !disabled &&\n !indeterminate &&\n checked && (_p = {\n background: checkboxBackgroundChecked,\n borderColor: checkboxBorderColorChecked\n },\n _p[HighContrastSelector] = {\n background: 'Highlight',\n borderColor: 'Highlight',\n },\n _p),\n disabled && (_q = {\n borderColor: checkboxBorderColorDisabled\n },\n _q[HighContrastSelector] = {\n borderColor: 'GrayText',\n },\n _q),\n checked &&\n disabled && (_r = {\n background: checkboxBackgroundDisabledChecked,\n borderColor: checkboxBorderColorDisabled\n },\n _r[HighContrastSelector] = {\n background: 'Window',\n },\n _r),\n ],\n checkmark: [\n classNames.checkmark,\n (_s = {\n opacity: checked && !indeterminate ? '1' : '0',\n color: checkmarkFontColor\n },\n _s[HighContrastSelector] = __assign({ color: disabled ? 'GrayText' : 'Window' }, getHighContrastNoAdjustStyle()),\n _s),\n ],\n text: [\n classNames.text,\n (_t = {\n color: disabled ? checkboxTextColorDisabled : checkboxTextColor,\n fontSize: fonts.medium.fontSize,\n lineHeight: '20px'\n },\n _t[HighContrastSelector] = __assign({ color: disabled ? 'GrayText' : 'WindowText' }, getHighContrastNoAdjustStyle()),\n _t),\n !reversed\n ? {\n marginLeft: 4,\n }\n : {\n marginRight: 4,\n },\n ],\n };\n};\n//# sourceMappingURL=Checkbox.styles.js.map","import { styled } from '@fluentui/utilities';\nimport { CheckboxBase } from './Checkbox.base';\nimport { getStyles } from './Checkbox.styles';\nexport var Checkbox = styled(CheckboxBase, getStyles, undefined, { scope: 'Checkbox' });\n//# sourceMappingURL=Checkbox.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { divProperties, getNativeProps } from '../../Utilities';\nimport { classNamesFunction } from '../../Utilities';\nvar getClassNames = classNamesFunction({\n // Label is used a lot by other components.\n // It's likely to see expected cases which pass different className to the Label.\n // Therefore setting a larger cache size.\n cacheSize: 100,\n});\nvar LabelBase = /** @class */ (function (_super) {\n __extends(LabelBase, _super);\n function LabelBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n LabelBase.prototype.render = function () {\n var _a = this.props, _b = _a.as, RootType = _b === void 0 ? 'label' : _b, children = _a.children, className = _a.className, disabled = _a.disabled, styles = _a.styles, required = _a.required, theme = _a.theme;\n var classNames = getClassNames(styles, {\n className: className,\n disabled: disabled,\n required: required,\n theme: theme,\n });\n return (React.createElement(RootType, __assign({}, getNativeProps(this.props, divProperties), { className: classNames.root }), children));\n };\n return LabelBase;\n}(React.Component));\nexport { LabelBase };\n//# sourceMappingURL=Label.base.js.map","import { __assign } from \"tslib\";\nimport { HighContrastSelector, FontWeights, getHighContrastNoAdjustStyle } from '../../Styling';\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, className = props.className, disabled = props.disabled, required = props.required;\n var semanticColors = theme.semanticColors;\n // Tokens\n var labelFontWeight = FontWeights.semibold;\n var labelColor = semanticColors.bodyText;\n var labelDisabledColor = semanticColors.disabledBodyText;\n var labelRequiredStarColor = semanticColors.errorText;\n return {\n root: [\n 'ms-Label',\n theme.fonts.medium,\n {\n fontWeight: labelFontWeight,\n color: labelColor,\n boxSizing: 'border-box',\n boxShadow: 'none',\n margin: 0,\n display: 'block',\n padding: '5px 0',\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n },\n disabled && {\n color: labelDisabledColor,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n required && {\n selectors: {\n '::after': {\n content: \"' *'\",\n color: labelRequiredStarColor,\n paddingRight: 12,\n },\n },\n },\n className,\n ],\n };\n};\n//# sourceMappingURL=Label.styles.js.map","import { styled } from '../../Utilities';\nimport { LabelBase } from './Label.base';\nimport { getStyles } from './Label.styles';\nexport var Label = styled(LabelBase, getStyles, undefined, {\n scope: 'Label',\n});\n//# sourceMappingURL=Label.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { Label } from '../../Label';\nimport { Icon } from '../../Icon';\nimport { Async, classNamesFunction, DelayedRender, getId, getNativeProps, getWindow, initializeComponentRef, inputProperties, isControlled, isIE11, textAreaProperties, warn, warnControlledUsage, warnMutuallyExclusive, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_STATE_VALUE = '';\nvar COMPONENT_NAME = 'TextField';\nvar REVEAL_ICON_NAME = 'RedEye';\nvar HIDE_ICON_NAME = 'Hide';\nvar TextFieldBase = /** @class */ (function (_super) {\n __extends(TextFieldBase, _super);\n function TextFieldBase(props) {\n var _this = _super.call(this, props) || this;\n _this._textElement = React.createRef();\n _this._onFocus = function (ev) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n _this.setState({ isFocused: true }, function () {\n if (_this.props.validateOnFocusIn) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onBlur = function (ev) {\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n _this.setState({ isFocused: false }, function () {\n if (_this.props.validateOnFocusOut) {\n _this._validate(_this.value);\n }\n });\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, required = props.required;\n // IProcessedStyleSet definition requires casting for what Label expects as its styles prop\n var labelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.label\n : undefined;\n if (label) {\n return (React.createElement(Label, { required: required, htmlFor: _this._id, styles: labelStyles, disabled: props.disabled, id: _this._labelId }, props.label));\n }\n return null;\n };\n _this._onRenderDescription = function (props) {\n if (props.description) {\n return React.createElement(\"span\", { className: _this._classNames.description }, props.description);\n }\n return null;\n };\n _this._onRevealButtonClick = function (event) {\n _this.setState(function (prevState) { return ({ isRevealingPassword: !prevState.isRevealingPassword }); });\n };\n _this._onInputChange = function (event) {\n // Previously, we needed to call both onInput and onChange due to some weird IE/React issues,\n // which have *probably* been fixed now:\n // - https://github.com/microsoft/fluentui/issues/744 (likely fixed)\n // - https://github.com/microsoft/fluentui/issues/824 (confirmed fixed)\n var _a, _b;\n // TODO (Fabric 8?) - Switch to calling only onChange. This switch is pretty disruptive for\n // tests (ours and maybe consumers' too), so it seemed best to do the switch in a major bump.\n var element = event.target;\n var value = element.value;\n // Ignore this event if any of the following are true:\n // - the value is undefined (in case one of the IE bugs comes back)\n // - it's a duplicate event (important since onInputChange is called twice per actual user event)\n // - it's the same as the previous value\n var previousValue = _getValue(_this.props, _this.state) || '';\n if (value === undefined || value === _this._lastChangeValue || value === previousValue) {\n _this._lastChangeValue = undefined;\n return;\n }\n _this._lastChangeValue = value;\n (_b = (_a = _this.props).onChange) === null || _b === void 0 ? void 0 : _b.call(_a, event, value);\n if (!_this._isControlled) {\n // ONLY if this is an uncontrolled component, update the displayed value.\n // (Controlled components must update the `value` prop from `onChange`.)\n _this.setState({ uncontrolledValue: value });\n }\n };\n initializeComponentRef(_this);\n _this._async = new Async(_this);\n if (process.env.NODE_ENV !== 'production') {\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n errorMessage: 'onGetErrorMessage',\n });\n }\n _this._fallbackId = getId(COMPONENT_NAME);\n _this._descriptionId = getId(COMPONENT_NAME + 'Description');\n _this._labelId = getId(COMPONENT_NAME + 'Label');\n _this._prefixId = getId(COMPONENT_NAME + 'Prefix');\n _this._suffixId = getId(COMPONENT_NAME + 'Suffix');\n _this._warnControlledUsage();\n var _a = props.defaultValue, defaultValue = _a === void 0 ? DEFAULT_STATE_VALUE : _a;\n if (typeof defaultValue === 'number') {\n // This isn't allowed per the props, but happens anyway.\n defaultValue = String(defaultValue);\n }\n _this.state = {\n uncontrolledValue: _this._isControlled ? undefined : defaultValue,\n isFocused: false,\n errorMessage: '',\n };\n _this._delayedValidate = _this._async.debounce(_this._validate, _this.props.deferredValidationTime);\n _this._lastValidation = 0;\n return _this;\n }\n Object.defineProperty(TextFieldBase.prototype, \"value\", {\n /**\n * Gets the current value of the text field.\n */\n get: function () {\n return _getValue(this.props, this.state);\n },\n enumerable: false,\n configurable: true\n });\n TextFieldBase.prototype.componentDidMount = function () {\n this._adjustInputHeight();\n if (this.props.validateOnLoad) {\n this._validate(this.value);\n }\n };\n TextFieldBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n };\n TextFieldBase.prototype.getSnapshotBeforeUpdate = function (prevProps, prevState) {\n return {\n selection: [this.selectionStart, this.selectionEnd],\n };\n };\n TextFieldBase.prototype.componentDidUpdate = function (prevProps, prevState, snapshot) {\n var props = this.props;\n var _a = (snapshot || {}).selection, selection = _a === void 0 ? [null, null] : _a;\n var start = selection[0], end = selection[1];\n if (!!prevProps.multiline !== !!props.multiline && prevState.isFocused) {\n // The text field has just changed between single- and multi-line, so we need to reset focus\n // and selection/cursor.\n this.focus();\n if (start !== null && end !== null && start >= 0 && end >= 0) {\n this.setSelectionRange(start, end);\n }\n }\n if (prevProps.value !== props.value) {\n // Only if the value in props changed, reset the record of the last value seen by a\n // change/input event (don't do this if the value in state changed, since at least in tests\n // the state update may happen before the second event in a series)\n this._lastChangeValue = undefined;\n }\n var prevValue = _getValue(prevProps, prevState);\n var value = this.value;\n if (prevValue !== value) {\n // Handle controlled/uncontrolled warnings and status\n this._warnControlledUsage(prevProps);\n // Clear error message if needed\n // TODO: is there any way to do this without an extra render?\n if (this.state.errorMessage && !props.errorMessage) {\n this.setState({ errorMessage: '' });\n }\n // Adjust height if needed based on new value\n this._adjustInputHeight();\n // TODO: #5875 added logic to trigger validation in componentWillReceiveProps and other places.\n // This seems a bit odd and hard to integrate with the new approach.\n // (Starting to think we should just put the validation logic in a separate wrapper component...?)\n if (_shouldValidateAllChanges(props)) {\n this._delayedValidate(value);\n }\n }\n };\n TextFieldBase.prototype.render = function () {\n var _a = this.props, borderless = _a.borderless, className = _a.className, disabled = _a.disabled, invalid = _a.invalid, iconProps = _a.iconProps, inputClassName = _a.inputClassName, label = _a.label, multiline = _a.multiline, required = _a.required, underlined = _a.underlined, prefix = _a.prefix, resizable = _a.resizable, suffix = _a.suffix, theme = _a.theme, styles = _a.styles, autoAdjustHeight = _a.autoAdjustHeight, canRevealPassword = _a.canRevealPassword, revealPasswordAriaLabel = _a.revealPasswordAriaLabel, type = _a.type, _b = _a.onRenderPrefix, onRenderPrefix = _b === void 0 ? this._onRenderPrefix : _b, _c = _a.onRenderSuffix, onRenderSuffix = _c === void 0 ? this._onRenderSuffix : _c, _d = _a.onRenderLabel, onRenderLabel = _d === void 0 ? this._onRenderLabel : _d, _e = _a.onRenderDescription, onRenderDescription = _e === void 0 ? this._onRenderDescription : _e;\n var _f = this.state, isFocused = _f.isFocused, isRevealingPassword = _f.isRevealingPassword;\n var errorMessage = this._errorMessage;\n var isInvalid = typeof invalid === 'boolean' ? invalid : !!errorMessage;\n var hasRevealButton = !!canRevealPassword && type === 'password' && _browserNeedsRevealButton();\n var classNames = (this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n disabled: disabled,\n focused: isFocused,\n required: required,\n multiline: multiline,\n hasLabel: !!label,\n hasErrorMessage: isInvalid,\n borderless: borderless,\n resizable: resizable,\n hasIcon: !!iconProps,\n underlined: underlined,\n inputClassName: inputClassName,\n autoAdjustHeight: autoAdjustHeight,\n hasRevealButton: hasRevealButton,\n }));\n return (\n // eslint-disable-next-line deprecation/deprecation\n React.createElement(\"div\", { ref: this.props.elementRef, className: classNames.root },\n React.createElement(\"div\", { className: classNames.wrapper },\n onRenderLabel(this.props, this._onRenderLabel),\n React.createElement(\"div\", { className: classNames.fieldGroup },\n (prefix !== undefined || this.props.onRenderPrefix) && (React.createElement(\"div\", { className: classNames.prefix, id: this._prefixId }, onRenderPrefix(this.props, this._onRenderPrefix))),\n multiline ? this._renderTextArea() : this._renderInput(),\n iconProps && React.createElement(Icon, __assign({ className: classNames.icon }, iconProps)),\n hasRevealButton && (\n // Explicitly set type=\"button\" since the default button type within a form is \"submit\"\n React.createElement(\"button\", { \"aria-label\": revealPasswordAriaLabel, className: classNames.revealButton, onClick: this._onRevealButtonClick, \"aria-pressed\": !!isRevealingPassword, type: \"button\" },\n React.createElement(\"span\", { className: classNames.revealSpan },\n React.createElement(Icon, { className: classNames.revealIcon, iconName: isRevealingPassword ? HIDE_ICON_NAME : REVEAL_ICON_NAME })))),\n (suffix !== undefined || this.props.onRenderSuffix) && (React.createElement(\"div\", { className: classNames.suffix, id: this._suffixId }, onRenderSuffix(this.props, this._onRenderSuffix))))),\n this._isDescriptionAvailable && (React.createElement(\"span\", { id: this._descriptionId },\n onRenderDescription(this.props, this._onRenderDescription),\n errorMessage && (React.createElement(\"div\", { role: \"alert\" },\n React.createElement(DelayedRender, null, this._renderErrorMessage())))))));\n };\n /**\n * Sets focus on the text field\n */\n TextFieldBase.prototype.focus = function () {\n if (this._textElement.current) {\n this._textElement.current.focus();\n }\n };\n /**\n * Blurs the text field.\n */\n TextFieldBase.prototype.blur = function () {\n if (this._textElement.current) {\n this._textElement.current.blur();\n }\n };\n /**\n * Selects the text field\n */\n TextFieldBase.prototype.select = function () {\n if (this._textElement.current) {\n this._textElement.current.select();\n }\n };\n /**\n * Sets the selection start of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionStart = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionStart = value;\n }\n };\n /**\n * Sets the selection end of the text field to a specified value\n */\n TextFieldBase.prototype.setSelectionEnd = function (value) {\n if (this._textElement.current) {\n this._textElement.current.selectionEnd = value;\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"selectionStart\", {\n /**\n * Gets the selection start of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionStart : -1;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"selectionEnd\", {\n /**\n * Gets the selection end of the text field\n */\n get: function () {\n return this._textElement.current ? this._textElement.current.selectionEnd : -1;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Sets the start and end positions of a selection in a text field.\n * @param start - Index of the start of the selection.\n * @param end - Index of the end of the selection.\n */\n TextFieldBase.prototype.setSelectionRange = function (start, end) {\n if (this._textElement.current) {\n this._textElement.current.setSelectionRange(start, end);\n }\n };\n TextFieldBase.prototype._warnControlledUsage = function (prevProps) {\n // Show warnings if props are being used in an invalid way\n warnControlledUsage({\n componentId: this._id,\n componentName: COMPONENT_NAME,\n props: this.props,\n oldProps: prevProps,\n valueProp: 'value',\n defaultValueProp: 'defaultValue',\n onChangeProp: 'onChange',\n readOnlyProp: 'readOnly',\n });\n if (this.props.value === null && !this._hasWarnedNullValue) {\n this._hasWarnedNullValue = true;\n warn(\"Warning: 'value' prop on '\".concat(COMPONENT_NAME, \"' should not be null. Consider using an \") +\n 'empty string to clear the component or undefined to indicate an uncontrolled component.');\n }\n };\n Object.defineProperty(TextFieldBase.prototype, \"_id\", {\n /** Returns `props.id` if available, or a fallback if not. */\n get: function () {\n return this.props.id || this._fallbackId;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(TextFieldBase.prototype, \"_isControlled\", {\n get: function () {\n return isControlled(this.props, 'value');\n },\n enumerable: false,\n configurable: true\n });\n TextFieldBase.prototype._onRenderPrefix = function (props) {\n var prefix = props.prefix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, prefix);\n };\n TextFieldBase.prototype._onRenderSuffix = function (props) {\n var suffix = props.suffix;\n return React.createElement(\"span\", { style: { paddingBottom: '1px' } }, suffix);\n };\n Object.defineProperty(TextFieldBase.prototype, \"_errorMessage\", {\n /**\n * Current error message from either `props.errorMessage` or the result of `props.onGetErrorMessage`.\n *\n * - If there is no validation error or we have not validated the input value, errorMessage is an empty string.\n * - If we have done the validation and there is validation error, errorMessage is the validation error message.\n */\n get: function () {\n var _a = this.props.errorMessage, errorMessage = _a === void 0 ? this.state.errorMessage : _a;\n return errorMessage || '';\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Renders error message based on the type of the message.\n *\n * - If error message is string, it will render using the built in styles.\n * - If error message is an element, user has full control over how it's rendered.\n */\n TextFieldBase.prototype._renderErrorMessage = function () {\n var errorMessage = this._errorMessage;\n return errorMessage ? (typeof errorMessage === 'string' ? (React.createElement(\"p\", { className: this._classNames.errorMessage },\n React.createElement(\"span\", { \"data-automation-id\": \"error-message\" }, errorMessage))) : (React.createElement(\"div\", { className: this._classNames.errorMessage, \"data-automation-id\": \"error-message\" }, errorMessage))) : null;\n };\n Object.defineProperty(TextFieldBase.prototype, \"_isDescriptionAvailable\", {\n /**\n * If a custom description render function is supplied then treat description as always available.\n * Otherwise defer to the presence of description or error message text.\n */\n get: function () {\n var props = this.props;\n return !!(props.onRenderDescription || props.description || this._errorMessage);\n },\n enumerable: false,\n configurable: true\n });\n TextFieldBase.prototype._renderTextArea = function () {\n var _a = this.props.invalid, invalid = _a === void 0 ? !!this._errorMessage : _a;\n var textAreaProps = getNativeProps(this.props, textAreaProperties, ['defaultValue']);\n var ariaLabelledBy = this.props['aria-labelledby'] || (this.props.label ? this._labelId : undefined);\n return (React.createElement(\"textarea\", __assign({ id: this._id }, textAreaProps, { ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, \"aria-labelledby\": ariaLabelledBy, \"aria-describedby\": this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], \"aria-invalid\": invalid, \"aria-label\": this.props.ariaLabel, readOnly: this.props.readOnly, onFocus: this._onFocus, onBlur: this._onBlur })));\n };\n TextFieldBase.prototype._renderInput = function () {\n var _a = this.props, ariaLabel = _a.ariaLabel, _b = _a.invalid, invalid = _b === void 0 ? !!this._errorMessage : _b, onRenderPrefix = _a.onRenderPrefix, onRenderSuffix = _a.onRenderSuffix, prefix = _a.prefix, suffix = _a.suffix, _c = _a.type, type = _c === void 0 ? 'text' : _c, label = _a.label;\n // build aria-labelledby list from label, prefix, and suffix\n var labelIds = [];\n label && labelIds.push(this._labelId);\n (prefix !== undefined || onRenderPrefix) && labelIds.push(this._prefixId);\n (suffix !== undefined || onRenderSuffix) && labelIds.push(this._suffixId);\n var inputProps = __assign(__assign({ type: this.state.isRevealingPassword ? 'text' : type, id: this._id }, getNativeProps(this.props, inputProperties, ['defaultValue', 'type'])), { 'aria-labelledby': this.props['aria-labelledby'] || (labelIds.length > 0 ? labelIds.join(' ') : undefined), ref: this._textElement, value: this.value || '', onInput: this._onInputChange, onChange: this._onInputChange, className: this._classNames.field, 'aria-label': ariaLabel, 'aria-describedby': this._isDescriptionAvailable ? this._descriptionId : this.props['aria-describedby'], 'aria-invalid': invalid, onFocus: this._onFocus, onBlur: this._onBlur });\n var defaultRender = function (updatedInputProps) {\n return React.createElement(\"input\", __assign({}, updatedInputProps));\n };\n var onRenderInput = this.props.onRenderInput || defaultRender;\n return onRenderInput(inputProps, defaultRender);\n };\n TextFieldBase.prototype._validate = function (value) {\n var _this = this;\n // In case _validate is called again while validation promise is executing\n if (this._latestValidateValue === value && _shouldValidateAllChanges(this.props)) {\n return;\n }\n this._latestValidateValue = value;\n var onGetErrorMessage = this.props.onGetErrorMessage;\n var result = onGetErrorMessage && onGetErrorMessage(value || '');\n if (result !== undefined) {\n if (typeof result === 'string' || !('then' in result)) {\n this.setState({ errorMessage: result });\n this._notifyAfterValidate(value, result);\n }\n else {\n var currentValidation_1 = ++this._lastValidation;\n result.then(function (errorMessage) {\n if (currentValidation_1 === _this._lastValidation) {\n _this.setState({ errorMessage: errorMessage });\n }\n _this._notifyAfterValidate(value, errorMessage);\n });\n }\n }\n else {\n this._notifyAfterValidate(value, '');\n }\n };\n TextFieldBase.prototype._notifyAfterValidate = function (value, errorMessage) {\n if (value === this.value && this.props.onNotifyValidationResult) {\n this.props.onNotifyValidationResult(errorMessage, value);\n }\n };\n TextFieldBase.prototype._adjustInputHeight = function () {\n if (this._textElement.current && this.props.autoAdjustHeight && this.props.multiline) {\n var textField = this._textElement.current;\n textField.style.height = '';\n textField.style.height = textField.scrollHeight + 'px';\n }\n };\n TextFieldBase.defaultProps = {\n resizable: true,\n deferredValidationTime: 200,\n validateOnLoad: true,\n };\n return TextFieldBase;\n}(React.Component));\nexport { TextFieldBase };\n/** Get the value from the given state and props (converting from number to string if needed) */\nfunction _getValue(props, state) {\n var _a = props.value, value = _a === void 0 ? state.uncontrolledValue : _a;\n if (typeof value === 'number') {\n // not allowed per typings, but happens anyway\n return String(value);\n }\n return value;\n}\n/**\n * If `validateOnFocusIn` or `validateOnFocusOut` is true, validation should run **only** on that event.\n * Otherwise, validation should run on every change.\n */\nfunction _shouldValidateAllChanges(props) {\n return !(props.validateOnFocusIn || props.validateOnFocusOut);\n}\n// Only calculate this once across all TextFields, since will stay the same\nvar __browserNeedsRevealButton;\nfunction _browserNeedsRevealButton() {\n if (typeof __browserNeedsRevealButton !== 'boolean') {\n var win = getWindow();\n if (win === null || win === void 0 ? void 0 : win.navigator) {\n // Edge, Chromium Edge\n var isEdge = /Edg/.test(win.navigator.userAgent || '');\n __browserNeedsRevealButton = !(isIE11() || isEdge);\n }\n else {\n __browserNeedsRevealButton = true;\n }\n }\n return __browserNeedsRevealButton;\n}\n//# sourceMappingURL=TextField.base.js.map","import { __assign } from \"tslib\";\nimport { AnimationClassNames, getFocusStyle, getGlobalClassNames, getInputFocusStyle, HighContrastSelector, normalize, getPlaceholderStyles, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nvar globalClassNames = {\n root: 'ms-TextField',\n description: 'ms-TextField-description',\n errorMessage: 'ms-TextField-errorMessage',\n field: 'ms-TextField-field',\n fieldGroup: 'ms-TextField-fieldGroup',\n prefix: 'ms-TextField-prefix',\n suffix: 'ms-TextField-suffix',\n wrapper: 'ms-TextField-wrapper',\n revealButton: 'ms-TextField-reveal',\n multiline: 'ms-TextField--multiline',\n borderless: 'ms-TextField--borderless',\n underlined: 'ms-TextField--underlined',\n unresizable: 'ms-TextField--unresizable',\n required: 'is-required',\n disabled: 'is-disabled',\n active: 'is-active',\n};\nfunction getLabelStyles(props) {\n var underlined = props.underlined, disabled = props.disabled, focused = props.focused, theme = props.theme;\n var palette = theme.palette, fonts = theme.fonts;\n return function () {\n var _a;\n return ({\n root: [\n underlined &&\n disabled && {\n color: palette.neutralTertiary,\n },\n underlined && {\n fontSize: fonts.medium.fontSize,\n marginRight: 8,\n paddingLeft: 12,\n paddingRight: 0,\n lineHeight: '22px',\n height: 32,\n },\n underlined &&\n focused && {\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n height: 31, // -1px to prevent jumpiness in HC with the increased border-width to 2px\n },\n _a),\n },\n ],\n });\n };\n}\nexport function getStyles(props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n var theme = props.theme, className = props.className, disabled = props.disabled, focused = props.focused, required = props.required, multiline = props.multiline, hasLabel = props.hasLabel, borderless = props.borderless, underlined = props.underlined, hasIcon = props.hasIcon, resizable = props.resizable, hasErrorMessage = props.hasErrorMessage, inputClassName = props.inputClassName, autoAdjustHeight = props.autoAdjustHeight, hasRevealButton = props.hasRevealButton;\n var semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var classNames = getGlobalClassNames(globalClassNames, theme);\n var fieldPrefixSuffix = {\n // Suffix/Prefix are not editable so the disabled slot perfectly fits.\n background: semanticColors.disabledBackground,\n color: !disabled ? semanticColors.inputPlaceholderText : semanticColors.disabledText,\n display: 'flex',\n alignItems: 'center',\n padding: '0 10px',\n lineHeight: 1,\n whiteSpace: 'nowrap',\n flexShrink: 0,\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _a),\n };\n // placeholder style constants\n var placeholderStyles = [\n {\n color: semanticColors.inputPlaceholderText,\n opacity: 1,\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n },\n _b),\n },\n ];\n var disabledPlaceholderStyles = {\n color: semanticColors.disabledText,\n selectors: (_c = {},\n _c[HighContrastSelector] = {\n color: 'GrayText',\n },\n _c),\n };\n return {\n root: [\n classNames.root,\n fonts.medium,\n required && classNames.required,\n disabled && classNames.disabled,\n focused && classNames.active,\n multiline && classNames.multiline,\n borderless && classNames.borderless,\n underlined && classNames.underlined,\n normalize,\n {\n position: 'relative',\n },\n className,\n ],\n wrapper: [\n classNames.wrapper,\n underlined && [\n {\n display: 'flex',\n borderBottom: \"1px solid \".concat(!hasErrorMessage ? semanticColors.inputBorder : semanticColors.errorText),\n width: '100%',\n },\n disabled && {\n borderBottomColor: semanticColors.disabledBackground,\n selectors: (_d = {},\n _d[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _d),\n },\n !disabled && {\n selectors: {\n ':hover': {\n borderBottomColor: !hasErrorMessage ? semanticColors.inputBorderHovered : semanticColors.errorText,\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign({ borderBottomColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _e),\n },\n },\n },\n focused && [\n {\n position: 'relative',\n },\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, 0, 'borderBottom'),\n ],\n ],\n ],\n fieldGroup: [\n classNames.fieldGroup,\n normalize,\n {\n border: \"1px solid \".concat(semanticColors.inputBorder),\n borderRadius: effects.roundedCorner2,\n background: semanticColors.inputBackground,\n cursor: 'text',\n height: 32,\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'stretch',\n position: 'relative',\n },\n multiline && {\n minHeight: '60px',\n height: 'auto',\n display: 'flex',\n },\n !focused &&\n !disabled && {\n selectors: {\n ':hover': {\n borderColor: semanticColors.inputBorderHovered,\n selectors: (_f = {},\n _f[HighContrastSelector] = __assign({ borderColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _f),\n },\n },\n },\n focused &&\n !underlined &&\n getInputFocusStyle(!hasErrorMessage ? semanticColors.inputFocusBorderAlt : semanticColors.errorText, effects.roundedCorner2),\n disabled && {\n borderColor: semanticColors.disabledBackground,\n selectors: (_g = {},\n _g[HighContrastSelector] = __assign({ borderColor: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _g),\n cursor: 'default',\n },\n borderless && {\n border: 'none',\n },\n borderless &&\n focused && {\n border: 'none',\n selectors: {\n ':after': {\n border: 'none',\n },\n },\n },\n underlined && {\n flex: '1 1 0px',\n border: 'none',\n textAlign: 'left',\n },\n underlined &&\n disabled && {\n backgroundColor: 'transparent',\n },\n hasErrorMessage &&\n !underlined && {\n borderColor: semanticColors.errorText,\n selectors: {\n '&:hover': {\n borderColor: semanticColors.errorText,\n },\n },\n },\n !hasLabel &&\n required && {\n selectors: (_h = {\n ':before': {\n content: \"'*'\",\n color: semanticColors.errorText,\n position: 'absolute',\n top: -5,\n right: -10,\n }\n },\n _h[HighContrastSelector] = {\n selectors: {\n ':before': {\n color: 'WindowText',\n right: -14, // moving the * 4 pixel to right to alleviate border clipping in HC mode.\n },\n },\n },\n _h),\n },\n ],\n field: [\n fonts.medium,\n classNames.field,\n normalize,\n {\n borderRadius: 0,\n border: 'none',\n background: 'none',\n backgroundColor: 'transparent',\n color: semanticColors.inputText,\n padding: '0 8px',\n width: '100%',\n minWidth: 0,\n textOverflow: 'ellipsis',\n outline: 0,\n selectors: (_j = {\n '&:active, &:focus, &:hover': { outline: 0 },\n '::-ms-clear': {\n display: 'none',\n }\n },\n _j[HighContrastSelector] = {\n background: 'Window',\n color: disabled ? 'GrayText' : 'WindowText',\n },\n _j),\n },\n getPlaceholderStyles(placeholderStyles),\n multiline &&\n !resizable && [\n classNames.unresizable,\n {\n resize: 'none',\n },\n ],\n multiline && {\n minHeight: 'inherit',\n lineHeight: 17,\n flexGrow: 1,\n paddingTop: 6,\n paddingBottom: 6,\n overflow: 'auto',\n width: '100%',\n },\n multiline &&\n autoAdjustHeight && {\n overflow: 'hidden',\n },\n hasIcon &&\n !hasRevealButton && {\n paddingRight: 24,\n },\n multiline &&\n hasIcon && {\n paddingRight: 40,\n },\n disabled && [\n {\n backgroundColor: semanticColors.disabledBackground,\n color: semanticColors.disabledText,\n borderColor: semanticColors.disabledBackground,\n },\n getPlaceholderStyles(disabledPlaceholderStyles),\n ],\n underlined && {\n textAlign: 'left',\n },\n focused &&\n !borderless && {\n selectors: (_k = {},\n _k[HighContrastSelector] = {\n paddingLeft: 11,\n paddingRight: 11,\n },\n _k),\n },\n focused &&\n multiline &&\n !borderless && {\n selectors: (_l = {},\n _l[HighContrastSelector] = {\n paddingTop: 4, // take into consideration the 2px increased border-width (not when borderless).\n },\n _l),\n },\n inputClassName,\n ],\n icon: [\n multiline && {\n paddingRight: 24,\n alignItems: 'flex-end',\n },\n {\n pointerEvents: 'none',\n position: 'absolute',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n disabled && {\n color: semanticColors.disabledText,\n },\n ],\n description: [\n classNames.description,\n {\n color: semanticColors.bodySubtext,\n fontSize: fonts.xSmall.fontSize,\n },\n ],\n errorMessage: [\n classNames.errorMessage,\n AnimationClassNames.slideDownIn20,\n fonts.small,\n {\n color: semanticColors.errorText,\n margin: 0,\n paddingTop: 5,\n display: 'flex',\n alignItems: 'center',\n },\n ],\n prefix: [classNames.prefix, fieldPrefixSuffix],\n suffix: [classNames.suffix, fieldPrefixSuffix],\n revealButton: [\n classNames.revealButton,\n 'ms-Button',\n 'ms-Button--icon',\n getFocusStyle(theme, { inset: 1 }),\n {\n height: 30,\n width: 32,\n border: 'none',\n padding: '0px 4px',\n backgroundColor: 'transparent',\n color: semanticColors.link,\n selectors: {\n ':hover': {\n outline: 0,\n color: semanticColors.primaryButtonBackgroundHovered,\n backgroundColor: semanticColors.buttonBackgroundHovered,\n selectors: (_m = {},\n _m[HighContrastSelector] = {\n borderColor: 'Highlight',\n color: 'Highlight',\n },\n _m),\n },\n ':focus': { outline: 0 },\n },\n },\n hasIcon && {\n marginRight: 28,\n },\n ],\n revealSpan: {\n display: 'flex',\n height: '100%',\n alignItems: 'center',\n },\n revealIcon: {\n margin: '0px 4px',\n pointerEvents: 'none',\n bottom: 6,\n right: 8,\n top: 'auto',\n fontSize: IconFontSizes.medium,\n lineHeight: 18,\n },\n subComponentStyles: {\n label: getLabelStyles(props),\n },\n };\n}\n//# sourceMappingURL=TextField.styles.js.map","import { styled } from '../../Utilities';\nimport { TextFieldBase } from './TextField.base';\nimport { getStyles } from './TextField.styles';\nexport var TextField = styled(TextFieldBase, getStyles, undefined, {\n scope: 'TextField',\n});\n//# sourceMappingURL=TextField.js.map","export function getAllSelectedOptions(options, selectedIndices) {\n var selectedOptions = [];\n for (var _i = 0, selectedIndices_1 = selectedIndices; _i < selectedIndices_1.length; _i++) {\n var index = selectedIndices_1[_i];\n var option = options[index];\n if (option) {\n selectedOptions.push(option);\n }\n }\n return selectedOptions;\n}\n//# sourceMappingURL=SelectableOption.js.map","export var SelectableOptionMenuItemType;\n(function (SelectableOptionMenuItemType) {\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Normal\"] = 0] = \"Normal\";\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Divider\"] = 1] = \"Divider\";\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"Header\"] = 2] = \"Header\";\n SelectableOptionMenuItemType[SelectableOptionMenuItemType[\"SelectAll\"] = 3] = \"SelectAll\";\n})(SelectableOptionMenuItemType || (SelectableOptionMenuItemType = {}));\n//# sourceMappingURL=SelectableOption.types.js.map","/**\n * Possible variations of the spinner circle size.\n * {@docCategory Spinner}\n */\nexport var SpinnerSize;\n(function (SpinnerSize) {\n /**\n * 12px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"xSmall\"] = 0] = \"xSmall\";\n /**\n * 16px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"small\"] = 1] = \"small\";\n /**\n * 20px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"medium\"] = 2] = \"medium\";\n /**\n * 28px Spinner diameter\n */\n SpinnerSize[SpinnerSize[\"large\"] = 3] = \"large\";\n})(SpinnerSize || (SpinnerSize = {}));\n/**\n * @deprecated Use `SpinnerSize` instead. Will be removed at \\>= 2.0.0.\n * {@docCategory Spinner}\n */\nexport var SpinnerType;\n(function (SpinnerType) {\n /**\n * @deprecated Use `SpinnerSize.medium` instead. Will be removed at \\>= 2.0.0.\n */\n SpinnerType[SpinnerType[\"normal\"] = 0] = \"normal\";\n /**\n * @deprecated Use `SpinnerSize.large` instead. Will be removed at \\>= 2.0.0.\n */\n SpinnerType[SpinnerType[\"large\"] = 1] = \"large\";\n})(SpinnerType || (SpinnerType = {}));\n//# sourceMappingURL=Spinner.types.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { SpinnerType, SpinnerSize } from './Spinner.types';\nimport { classNamesFunction, DelayedRender, getNativeProps, divProperties } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar SpinnerBase = /** @class */ (function (_super) {\n __extends(SpinnerBase, _super);\n function SpinnerBase() {\n return _super !== null && _super.apply(this, arguments) || this;\n }\n SpinnerBase.prototype.render = function () {\n // eslint-disable-next-line deprecation/deprecation\n var _a = this.props, type = _a.type, size = _a.size, ariaLabel = _a.ariaLabel, ariaLive = _a.ariaLive, styles = _a.styles, label = _a.label, theme = _a.theme, className = _a.className, labelPosition = _a.labelPosition;\n var statusMessage = ariaLabel;\n var nativeProps = getNativeProps(this.props, divProperties, ['size']);\n // SpinnerType is deprecated. If someone is still using this property, rather than putting the SpinnerType into the\n // ISpinnerStyleProps, we'll map SpinnerType to its equivalent SpinnerSize and pass that in. Once SpinnerType\n // finally goes away we should delete this.\n var styleSize = size;\n if (styleSize === undefined && type !== undefined) {\n // eslint-disable-next-line deprecation/deprecation\n styleSize = type === SpinnerType.large ? SpinnerSize.large : SpinnerSize.medium;\n }\n var classNames = getClassNames(styles, {\n theme: theme,\n size: styleSize,\n className: className,\n labelPosition: labelPosition,\n });\n return (React.createElement(\"div\", __assign({}, nativeProps, { className: classNames.root }),\n React.createElement(\"div\", { className: classNames.circle }),\n label && React.createElement(\"div\", { className: classNames.label }, label),\n statusMessage && (React.createElement(\"div\", { role: \"status\", \"aria-live\": ariaLive },\n React.createElement(DelayedRender, null,\n React.createElement(\"div\", { className: classNames.screenReaderText }, statusMessage))))));\n };\n SpinnerBase.defaultProps = {\n size: SpinnerSize.medium,\n ariaLive: 'polite',\n labelPosition: 'bottom',\n };\n return SpinnerBase;\n}(React.Component));\nexport { SpinnerBase };\n//# sourceMappingURL=Spinner.base.js.map","import { __assign } from \"tslib\";\nimport { SpinnerSize } from './Spinner.types';\nimport { hiddenContentStyle, keyframes, HighContrastSelector, getGlobalClassNames, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { memoizeFunction } from '../../Utilities';\nvar GlobalClassNames = {\n root: 'ms-Spinner',\n circle: 'ms-Spinner-circle',\n label: 'ms-Spinner-label',\n};\nvar spinAnimation = memoizeFunction(function () {\n return keyframes({\n '0%': {\n transform: 'rotate(0deg)',\n },\n '100%': {\n transform: 'rotate(360deg)',\n },\n });\n});\nexport var getStyles = function (props) {\n var _a;\n var theme = props.theme, size = props.size, className = props.className, labelPosition = props.labelPosition;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n {\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n },\n labelPosition === 'top' && {\n flexDirection: 'column-reverse',\n },\n labelPosition === 'right' && {\n flexDirection: 'row',\n },\n labelPosition === 'left' && {\n flexDirection: 'row-reverse',\n },\n className,\n ],\n circle: [\n classNames.circle,\n {\n boxSizing: 'border-box',\n borderRadius: '50%',\n border: '1.5px solid ' + palette.themeLight,\n borderTopColor: palette.themePrimary,\n animationName: spinAnimation(),\n animationDuration: '1.3s',\n animationIterationCount: 'infinite',\n animationTimingFunction: 'cubic-bezier(.53,.21,.29,.67)',\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ borderTopColor: 'Highlight' }, getHighContrastNoAdjustStyle()),\n _a),\n },\n size === SpinnerSize.xSmall && [\n 'ms-Spinner--xSmall',\n {\n width: 12,\n height: 12,\n },\n ],\n size === SpinnerSize.small && [\n 'ms-Spinner--small',\n {\n width: 16,\n height: 16,\n },\n ],\n size === SpinnerSize.medium && [\n 'ms-Spinner--medium',\n {\n width: 20,\n height: 20,\n },\n ],\n size === SpinnerSize.large && [\n 'ms-Spinner--large',\n {\n width: 28,\n height: 28,\n },\n ],\n ],\n label: [\n classNames.label,\n theme.fonts.small,\n {\n color: palette.themePrimary,\n margin: '8px 0 0',\n textAlign: 'center',\n },\n labelPosition === 'top' && {\n margin: '0 0 8px',\n },\n labelPosition === 'right' && {\n margin: '0 0 0 8px',\n },\n labelPosition === 'left' && {\n margin: '0 8px 0 0',\n },\n ],\n screenReaderText: hiddenContentStyle,\n };\n};\n//# sourceMappingURL=Spinner.styles.js.map","import { styled } from '../../Utilities';\nimport { SpinnerBase } from './Spinner.base';\nimport { getStyles } from './Spinner.styles';\nexport var Spinner = styled(SpinnerBase, getStyles, undefined, { scope: 'Spinner' });\n//# sourceMappingURL=Spinner.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { classNamesFunction, getNativeProps, divProperties, enableBodyScroll, disableBodyScroll, initializeComponentRef, } from '../../Utilities';\nvar getClassNames = classNamesFunction();\nvar OverlayBase = /** @class */ (function (_super) {\n __extends(OverlayBase, _super);\n function OverlayBase(props) {\n var _this = _super.call(this, props) || this;\n initializeComponentRef(_this);\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n return _this;\n }\n OverlayBase.prototype.componentDidMount = function () {\n !this._allowTouchBodyScroll && disableBodyScroll();\n };\n OverlayBase.prototype.componentWillUnmount = function () {\n !this._allowTouchBodyScroll && enableBodyScroll();\n };\n OverlayBase.prototype.render = function () {\n var _a = this.props, isDark = _a.isDarkThemed, className = _a.className, theme = _a.theme, styles = _a.styles;\n var divProps = getNativeProps(this.props, divProperties);\n var classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n isDark: isDark,\n });\n return React.createElement(\"div\", __assign({}, divProps, { className: classNames.root }));\n };\n return OverlayBase;\n}(React.Component));\nexport { OverlayBase };\n//# sourceMappingURL=Overlay.base.js.map","import { HighContrastSelector, getGlobalClassNames } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Overlay',\n rootDark: 'ms-Overlay--dark',\n};\nexport var getStyles = function (props) {\n var _a;\n var className = props.className, theme = props.theme, isNone = props.isNone, isDark = props.isDark;\n var palette = theme.palette;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n {\n backgroundColor: palette.whiteTranslucent40,\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n position: 'absolute',\n selectors: (_a = {},\n _a[HighContrastSelector] = {\n border: '1px solid WindowText',\n opacity: 0,\n },\n _a),\n },\n isNone && {\n visibility: 'hidden',\n },\n isDark && [\n classNames.rootDark,\n {\n backgroundColor: palette.blackTranslucent40,\n },\n ],\n className,\n ],\n };\n};\n//# sourceMappingURL=Overlay.styles.js.map","import { styled } from '../../Utilities';\nimport { OverlayBase } from './Overlay.base';\nimport { getStyles } from './Overlay.styles';\nexport var Overlay = styled(OverlayBase, getStyles, undefined, {\n scope: 'Overlay',\n});\n//# sourceMappingURL=Overlay.js.map","import { __spreadArray } from \"tslib\";\nimport { DropdownMenuItemType } from '../Dropdown.types';\n/**\n * A utility class to cache size and position in cache.\n *\n * Dropdown options has non-selectable display types. It is therefore not cheap to determine\n * the total number of actual selectable options as well as the position an option is in the\n * list of options - O(n) cost for each lookup.\n *\n * Given that we potentially have to make this determination on every single render pass, this\n * cache should provide a little bit of relief.\n */\nvar DropdownSizePosCache = /** @class */ (function () {\n function DropdownSizePosCache() {\n this._size = 0;\n }\n /**\n * Invalidates the cache and recalculate the size of selectable options.\n */\n DropdownSizePosCache.prototype.updateOptions = function (options) {\n var displayOnlyOptionsCache = [];\n var notSelectableOptionsCache = [];\n var size = 0;\n for (var i = 0; i < options.length; i++) {\n var _a = options[i], itemType = _a.itemType, hidden = _a.hidden;\n if (itemType === DropdownMenuItemType.Divider || itemType === DropdownMenuItemType.Header) {\n displayOnlyOptionsCache.push(i);\n notSelectableOptionsCache.push(i);\n }\n else if (hidden) {\n notSelectableOptionsCache.push(i);\n }\n else {\n size++;\n }\n }\n this._size = size;\n this._displayOnlyOptionsCache = displayOnlyOptionsCache;\n this._notSelectableOptionsCache = notSelectableOptionsCache;\n this._cachedOptions = __spreadArray([], options, true);\n };\n Object.defineProperty(DropdownSizePosCache.prototype, \"optionSetSize\", {\n /**\n * The size of all the selectable options.\n */\n get: function () {\n return this._size;\n },\n enumerable: false,\n configurable: true\n });\n Object.defineProperty(DropdownSizePosCache.prototype, \"cachedOptions\", {\n /**\n * The chached options array.\n */\n get: function () {\n return this._cachedOptions;\n },\n enumerable: false,\n configurable: true\n });\n /**\n * Returns the position of this option element relative to the full set of selectable option elements.\n * Note: the first selectable element is position 1 in the set.\n * @param index The raw index of the option element.\n */\n DropdownSizePosCache.prototype.positionInSet = function (index) {\n if (index === undefined) {\n return undefined;\n }\n // we could possibly memoize this too but this should be good enough, most of the time (the expectation is that\n // when you have a lot of options, the selectable options will heavily dominate over the non-selectable options.\n var offset = 0;\n while (index > this._notSelectableOptionsCache[offset]) {\n offset++;\n }\n if (this._displayOnlyOptionsCache[offset] === index) {\n throw new Error(\"Unexpected: Option at index \".concat(index, \" is not a selectable element.\"));\n }\n if (this._notSelectableOptionsCache[offset] === index) {\n return undefined;\n }\n return index - offset + 1;\n };\n return DropdownSizePosCache;\n}());\nexport { DropdownSizePosCache };\n//# sourceMappingURL=DropdownSizePosCache.js.map","/**\n * {@docCategory Panel}\n */\nexport var PanelType;\n(function (PanelType) {\n /**\n * Renders the Panel with a `fluid` (full screen) width.\n * Recommended for use on small screen breakpoints.\n * - Small (320-479): full screen width, 16px left/right padding\n * - Medium (480-639): full screen width, 16px left/right padding\n * - Large (640-1023): full screen width, 32px left/right padding\n * - XLarge (1024-1365): full screen width, 32px left/right padding\n * - XXLarge (1366-up): full screen width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFluid\"] = 0] = \"smallFluid\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): 340px width, 16px left/right padding\n * - Large (640-1023): 340px width, 32px left/right padding\n * - XLarge (1024-1365): 340px width, 32px left/right padding\n * - XXLarge (1366-up): 340px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedFar\"] = 1] = \"smallFixedFar\";\n /**\n * Renders the Panel in fixed-width `small` size, anchored to the near side (left in LTR mode).\n * - Small (320-479): 272px width, 16px left/right padding\n * - Medium (480-639): 272px width, 16px left/right padding\n * - Large (640-1023): 272px width, 32px left/right padding\n * - XLarge (1024-1365): 272px width, 32px left/right padding\n * - XXLarge (1366-up): 272px width, 40px left/right padding\n */\n PanelType[PanelType[\"smallFixedNear\"] = 2] = \"smallFixedNear\";\n /**\n * Renders the Panel in `medium` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): 592px width, 32px left/right padding\n * - XLarge (1024-1365): 644px width, 32px left/right padding\n * - XXLarge (1366-up): 644px width, 40px left/right padding\n */\n PanelType[PanelType[\"medium\"] = 3] = \"medium\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 428px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"large\"] = 4] = \"large\";\n /**\n * Renders the Panel in `large` size, anchored to the far side (right in LTR mode), with a fixed width at\n * XX-Large breakpoint.\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): 48px fixed left margin, fluid width, 32px left/right padding\n * - XXLarge (1366-up): 940px width, 40px left/right padding\n */\n PanelType[PanelType[\"largeFixed\"] = 5] = \"largeFixed\";\n /**\n * Renders the Panel in `extra large` size, anchored to the far side (right in LTR mode).\n * - Small (320-479): adapts to `PanelType.smallFluid` at this breakpoint\n * - Medium (480-639): adapts to `PanelType.smallFixedFar` at this breakpoint\n * - Large (640-1023): adapts to `PanelType.medium` at this breakpoint\n * - XLarge (1024-1365): adapts to `PanelType.large` at this breakpoint\n * - XXLarge (1366-1919): 176px fixed left margin, fluid width, 40px left/right padding\n * - XXXLarge (1920-up): 176px fixed left margin, fluid width, 40px left/right padding\n */\n PanelType[PanelType[\"extraLarge\"] = 6] = \"extraLarge\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the far side (right in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"custom\"] = 7] = \"custom\";\n /**\n * Renders the Panel in `custom` size using `customWidth`, anchored to the near side (left in LTR mode).\n * - Has a fixed width provided by the `customWidth` prop\n * - When screen width reaches the `customWidth` value it will behave like a fluid width Panel\n * taking up 100% of the viewport width\n */\n PanelType[PanelType[\"customNear\"] = 8] = \"customNear\";\n})(PanelType || (PanelType = {}));\n//# sourceMappingURL=Panel.types.js.map","import { __assign, __extends } from \"tslib\";\nimport * as React from 'react';\nimport { IconButton } from '../../Button';\nimport { Layer } from '../../Layer';\nimport { Overlay } from '../../Overlay';\nimport { Popup } from '../../Popup';\nimport { allowScrollOnElement, allowOverscrollOnElement, classNamesFunction, divProperties, elementContains, getId, getNativeProps, getRTL, css, warnDeprecations, Async, EventGroup, initializeComponentRef, } from '../../Utilities';\nimport { FocusTrapZone } from '../FocusTrapZone/index';\nimport { PanelType } from './Panel.types';\nvar getClassNames = classNamesFunction();\nvar COMPONENT_NAME = 'Panel';\nvar PanelVisibilityState;\n(function (PanelVisibilityState) {\n PanelVisibilityState[PanelVisibilityState[\"closed\"] = 0] = \"closed\";\n PanelVisibilityState[PanelVisibilityState[\"animatingOpen\"] = 1] = \"animatingOpen\";\n PanelVisibilityState[PanelVisibilityState[\"open\"] = 2] = \"open\";\n PanelVisibilityState[PanelVisibilityState[\"animatingClosed\"] = 3] = \"animatingClosed\";\n})(PanelVisibilityState || (PanelVisibilityState = {}));\nvar PanelBase = /** @class */ (function (_super) {\n __extends(PanelBase, _super);\n function PanelBase(props) {\n var _this = _super.call(this, props) || this;\n _this._panel = React.createRef();\n _this._animationCallback = null;\n _this._hasCustomNavigation = !!(_this.props.onRenderNavigation || _this.props.onRenderNavigationContent);\n _this.dismiss = function (ev) {\n if (_this.props.onDismiss && _this.isActive) {\n _this.props.onDismiss(ev);\n }\n if (!ev || (ev && !ev.defaultPrevented)) {\n _this.close();\n }\n };\n // Allow the user to scroll within the panel but not on the body\n _this._allowScrollOnPanel = function (elt) {\n if (elt) {\n if (_this._allowTouchBodyScroll) {\n allowOverscrollOnElement(elt, _this._events);\n }\n else {\n allowScrollOnElement(elt, _this._events);\n }\n }\n else {\n _this._events.off(_this._scrollableContent);\n }\n _this._scrollableContent = elt;\n };\n _this._onRenderNavigation = function (props) {\n if (!_this.props.onRenderNavigationContent && !_this.props.onRenderNavigation && !_this.props.hasCloseButton) {\n return null;\n }\n var _a = _this.props.onRenderNavigationContent, onRenderNavigationContent = _a === void 0 ? _this._onRenderNavigationContent : _a;\n return (React.createElement(\"div\", { className: _this._classNames.navigation }, onRenderNavigationContent(props, _this._onRenderNavigationContent)));\n };\n _this._onRenderNavigationContent = function (props) {\n var _a;\n var closeButtonAriaLabel = props.closeButtonAriaLabel, hasCloseButton = props.hasCloseButton, _b = props.onRenderHeader, onRenderHeader = _b === void 0 ? _this._onRenderHeader : _b;\n if (hasCloseButton) {\n var iconButtonStyles = (_a = _this._classNames.subComponentStyles) === null || _a === void 0 ? void 0 : _a.closeButton();\n return (React.createElement(React.Fragment, null,\n !_this._hasCustomNavigation && onRenderHeader(_this.props, _this._onRenderHeader, _this._headerTextId),\n React.createElement(IconButton, { styles: iconButtonStyles, className: _this._classNames.closeButton, onClick: _this._onPanelClick, ariaLabel: closeButtonAriaLabel, title: closeButtonAriaLabel, \"data-is-visible\": true, iconProps: { iconName: 'Cancel' } })));\n }\n return null;\n };\n _this._onRenderHeader = function (props, defaultRender, headerTextId) {\n var headerText = props.headerText, _a = props.headerTextProps, headerTextProps = _a === void 0 ? {} : _a;\n if (headerText) {\n return (React.createElement(\"div\", { className: _this._classNames.header },\n React.createElement(\"div\", __assign({ id: headerTextId, role: \"heading\", \"aria-level\": 1 }, headerTextProps, { className: css(_this._classNames.headerText, headerTextProps.className) }), headerText)));\n }\n return null;\n };\n _this._onRenderBody = function (props) {\n return React.createElement(\"div\", { className: _this._classNames.content }, props.children);\n };\n _this._onRenderFooter = function (props) {\n var _a = _this.props.onRenderFooterContent, onRenderFooterContent = _a === void 0 ? null : _a;\n if (onRenderFooterContent) {\n return (React.createElement(\"div\", { className: _this._classNames.footer },\n React.createElement(\"div\", { className: _this._classNames.footerInner }, onRenderFooterContent())));\n }\n return null;\n };\n _this._animateTo = function (newVisibilityState) {\n if (newVisibilityState === PanelVisibilityState.open && _this.props.onOpen) {\n _this.props.onOpen();\n }\n _this._animationCallback = _this._async.setTimeout(function () {\n _this.setState({ visibility: newVisibilityState });\n _this._onTransitionComplete(newVisibilityState);\n }, 200);\n };\n _this._clearExistingAnimationTimer = function () {\n if (_this._animationCallback !== null) {\n _this._async.clearTimeout(_this._animationCallback);\n }\n };\n _this._onPanelClick = function (ev) {\n _this.dismiss(ev);\n };\n _this._onTransitionComplete = function (newVisibilityState) {\n _this._updateFooterPosition();\n if (newVisibilityState === PanelVisibilityState.open && _this.props.onOpened) {\n _this.props.onOpened();\n }\n if (newVisibilityState === PanelVisibilityState.closed && _this.props.onDismissed) {\n _this.props.onDismissed();\n }\n };\n var _a = _this.props.allowTouchBodyScroll, allowTouchBodyScroll = _a === void 0 ? false : _a;\n _this._allowTouchBodyScroll = allowTouchBodyScroll;\n initializeComponentRef(_this);\n warnDeprecations(COMPONENT_NAME, props, {\n ignoreExternalFocusing: 'focusTrapZoneProps',\n forceFocusInsideTrap: 'focusTrapZoneProps',\n firstFocusableSelector: 'focusTrapZoneProps',\n });\n _this.state = {\n isFooterSticky: false,\n // intentionally ignore props so animation takes place during componentDidMount\n visibility: PanelVisibilityState.closed,\n id: getId('Panel'),\n };\n return _this;\n }\n PanelBase.getDerivedStateFromProps = function (nextProps, prevState) {\n if (nextProps.isOpen === undefined) {\n return null; // no state update\n }\n if (nextProps.isOpen &&\n (prevState.visibility === PanelVisibilityState.closed ||\n prevState.visibility === PanelVisibilityState.animatingClosed)) {\n return { visibility: PanelVisibilityState.animatingOpen };\n }\n if (!nextProps.isOpen &&\n (prevState.visibility === PanelVisibilityState.open ||\n prevState.visibility === PanelVisibilityState.animatingOpen)) {\n return { visibility: PanelVisibilityState.animatingClosed };\n }\n return null;\n };\n PanelBase.prototype.componentDidMount = function () {\n this._async = new Async(this);\n this._events = new EventGroup(this);\n this._events.on(window, 'resize', this._updateFooterPosition);\n if (this._shouldListenForOuterClick(this.props)) {\n this._events.on(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n if (this.props.isOpen) {\n this.setState({ visibility: PanelVisibilityState.animatingOpen });\n }\n };\n PanelBase.prototype.componentDidUpdate = function (previousProps, previousState) {\n var shouldListenOnOuterClick = this._shouldListenForOuterClick(this.props);\n var previousShouldListenOnOuterClick = this._shouldListenForOuterClick(previousProps);\n if (this.state.visibility !== previousState.visibility) {\n this._clearExistingAnimationTimer();\n if (this.state.visibility === PanelVisibilityState.animatingOpen) {\n this._animateTo(PanelVisibilityState.open);\n }\n else if (this.state.visibility === PanelVisibilityState.animatingClosed) {\n this._animateTo(PanelVisibilityState.closed);\n }\n }\n if (shouldListenOnOuterClick && !previousShouldListenOnOuterClick) {\n this._events.on(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n else if (!shouldListenOnOuterClick && previousShouldListenOnOuterClick) {\n this._events.off(document.body, 'mousedown', this._dismissOnOuterClick, true);\n }\n };\n PanelBase.prototype.componentWillUnmount = function () {\n this._async.dispose();\n this._events.dispose();\n };\n PanelBase.prototype.render = function () {\n var _a = this.props, _b = _a.className, className = _b === void 0 ? '' : _b, elementToFocusOnDismiss = _a.elementToFocusOnDismiss, \n /* eslint-disable deprecation/deprecation */\n firstFocusableSelector = _a.firstFocusableSelector, focusTrapZoneProps = _a.focusTrapZoneProps, forceFocusInsideTrap = _a.forceFocusInsideTrap, hasCloseButton = _a.hasCloseButton, headerText = _a.headerText, _c = _a.headerClassName, headerClassName = _c === void 0 ? '' : _c, ignoreExternalFocusing = _a.ignoreExternalFocusing, isBlocking = _a.isBlocking, isFooterAtBottom = _a.isFooterAtBottom, isLightDismiss = _a.isLightDismiss, isHiddenOnDismiss = _a.isHiddenOnDismiss, layerProps = _a.layerProps, overlayProps = _a.overlayProps, popupProps = _a.popupProps, type = _a.type, styles = _a.styles, theme = _a.theme, customWidth = _a.customWidth, _d = _a.onLightDismissClick, onLightDismissClick = _d === void 0 ? this._onPanelClick : _d, _e = _a.onRenderNavigation, onRenderNavigation = _e === void 0 ? this._onRenderNavigation : _e, _f = _a.onRenderHeader, onRenderHeader = _f === void 0 ? this._onRenderHeader : _f, _g = _a.onRenderBody, onRenderBody = _g === void 0 ? this._onRenderBody : _g, _h = _a.onRenderFooter, onRenderFooter = _h === void 0 ? this._onRenderFooter : _h;\n var _j = this.state, isFooterSticky = _j.isFooterSticky, visibility = _j.visibility, id = _j.id;\n var isLeft = type === PanelType.smallFixedNear || type === PanelType.customNear ? true : false;\n var isRTL = getRTL(theme);\n var isOnRightSide = isRTL ? isLeft : !isLeft;\n var customWidthStyles = type === PanelType.custom || type === PanelType.customNear ? { width: customWidth } : {};\n var nativeProps = getNativeProps(this.props, divProperties);\n var isOpen = this.isActive;\n var isAnimating = visibility === PanelVisibilityState.animatingClosed || visibility === PanelVisibilityState.animatingOpen;\n this._headerTextId = headerText && id + '-headerText';\n if (!isOpen && !isAnimating && !isHiddenOnDismiss) {\n return null;\n }\n this._classNames = getClassNames(styles, {\n theme: theme,\n className: className,\n focusTrapZoneClassName: focusTrapZoneProps ? focusTrapZoneProps.className : undefined,\n hasCloseButton: hasCloseButton,\n headerClassName: headerClassName,\n isAnimating: isAnimating,\n isFooterSticky: isFooterSticky,\n isFooterAtBottom: isFooterAtBottom,\n isOnRightSide: isOnRightSide,\n isOpen: isOpen,\n isHiddenOnDismiss: isHiddenOnDismiss,\n type: type,\n hasCustomNavigation: this._hasCustomNavigation,\n });\n var _k = this, _classNames = _k._classNames, _allowTouchBodyScroll = _k._allowTouchBodyScroll;\n var overlay;\n if (isBlocking && isOpen) {\n overlay = (React.createElement(Overlay, __assign({ className: _classNames.overlay, isDarkThemed: false, onClick: isLightDismiss ? onLightDismissClick : undefined, allowTouchBodyScroll: _allowTouchBodyScroll }, overlayProps)));\n }\n return (React.createElement(Layer, __assign({}, layerProps),\n React.createElement(Popup, __assign({ role: \"dialog\", \"aria-modal\": isBlocking ? 'true' : undefined, ariaLabelledBy: this._headerTextId ? this._headerTextId : undefined, onDismiss: this.dismiss, className: _classNames.hiddenPanel, enableAriaHiddenSiblings: isOpen ? true : false }, popupProps),\n React.createElement(\"div\", __assign({ \"aria-hidden\": !isOpen && isAnimating }, nativeProps, { ref: this._panel, className: _classNames.root }),\n overlay,\n React.createElement(FocusTrapZone, __assign({ ignoreExternalFocusing: ignoreExternalFocusing, forceFocusInsideTrap: !isBlocking || (isHiddenOnDismiss && !isOpen) ? false : forceFocusInsideTrap, firstFocusableSelector: firstFocusableSelector, isClickableOutsideFocusTrap: true }, focusTrapZoneProps, { className: _classNames.main, style: customWidthStyles, elementToFocusOnDismiss: elementToFocusOnDismiss }),\n React.createElement(\"div\", { className: _classNames.contentInner },\n React.createElement(\"div\", { ref: this._allowScrollOnPanel, className: _classNames.scrollableContent, \"data-is-scrollable\": true },\n React.createElement(\"div\", { className: _classNames.commands, \"data-is-visible\": true }, onRenderNavigation(this.props, this._onRenderNavigation)),\n (this._hasCustomNavigation || !hasCloseButton) &&\n onRenderHeader(this.props, this._onRenderHeader, this._headerTextId),\n onRenderBody(this.props, this._onRenderBody),\n onRenderFooter(this.props, this._onRenderFooter))))))));\n };\n PanelBase.prototype.open = function () {\n if (this.props.isOpen !== undefined) {\n return;\n }\n if (this.isActive) {\n return;\n }\n this.setState({ visibility: PanelVisibilityState.animatingOpen });\n };\n PanelBase.prototype.close = function () {\n if (this.props.isOpen !== undefined) {\n return;\n }\n if (!this.isActive) {\n return;\n }\n this.setState({ visibility: PanelVisibilityState.animatingClosed });\n };\n Object.defineProperty(PanelBase.prototype, \"isActive\", {\n /** isActive is true when panel is open or opening. */\n get: function () {\n return (this.state.visibility === PanelVisibilityState.open ||\n this.state.visibility === PanelVisibilityState.animatingOpen);\n },\n enumerable: false,\n configurable: true\n });\n PanelBase.prototype._shouldListenForOuterClick = function (props) {\n return !!props.isBlocking && !!props.isOpen;\n };\n PanelBase.prototype._updateFooterPosition = function () {\n var scrollableContent = this._scrollableContent;\n if (scrollableContent) {\n var height = scrollableContent.clientHeight;\n var innerHeight_1 = scrollableContent.scrollHeight;\n this.setState({\n isFooterSticky: height < innerHeight_1 ? true : false,\n });\n }\n };\n PanelBase.prototype._dismissOnOuterClick = function (ev) {\n var panel = this._panel.current;\n if (this.isActive && panel && !ev.defaultPrevented) {\n if (!elementContains(panel, ev.target)) {\n if (this.props.onOuterClick) {\n this.props.onOuterClick(ev);\n }\n else {\n this.dismiss(ev);\n }\n }\n }\n };\n PanelBase.defaultProps = {\n isHiddenOnDismiss: false,\n isOpen: undefined,\n isBlocking: true,\n hasCloseButton: true,\n type: PanelType.smallFixedFar,\n };\n return PanelBase;\n}(React.Component));\nexport { PanelBase };\n//# sourceMappingURL=Panel.base.js.map","var _a, _b, _c, _d, _e;\nimport { __assign } from \"tslib\";\nimport { PanelType } from './Panel.types';\nimport { AnimationClassNames, AnimationVariables, getGlobalClassNames, HighContrastSelector, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinUhfMobile, IconFontSizes, } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Panel',\n main: 'ms-Panel-main',\n commands: 'ms-Panel-commands',\n contentInner: 'ms-Panel-contentInner',\n scrollableContent: 'ms-Panel-scrollableContent',\n navigation: 'ms-Panel-navigation',\n closeButton: 'ms-Panel-closeButton ms-PanelAction-close',\n header: 'ms-Panel-header',\n headerText: 'ms-Panel-headerText',\n content: 'ms-Panel-content',\n footer: 'ms-Panel-footer',\n footerInner: 'ms-Panel-footerInner',\n isOpen: 'is-open',\n hasCloseButton: 'ms-Panel--hasCloseButton',\n smallFluid: 'ms-Panel--smFluid',\n smallFixedNear: 'ms-Panel--smLeft',\n smallFixedFar: 'ms-Panel--sm',\n medium: 'ms-Panel--md',\n large: 'ms-Panel--lg',\n largeFixed: 'ms-Panel--fixed',\n extraLarge: 'ms-Panel--xl',\n custom: 'ms-Panel--custom',\n customNear: 'ms-Panel--customLeft',\n};\nvar panelWidth = {\n full: '100%',\n auto: 'auto',\n xs: 272,\n sm: 340,\n md1: 592,\n md2: 644,\n lg: 940,\n};\nvar panelMargin = {\n auto: 'auto',\n none: 0,\n md: 48,\n lg: 428,\n xl: 176,\n};\n// Following consts are used below in `getPanelBreakpoints()` function to provide\n// necessary fallbacks for different types of Panel in different breakpoints.\nvar smallPanelSelectors = (_a = {},\n _a[\"@media (min-width: \".concat(ScreenWidthMinMedium, \"px)\")] = {\n width: panelWidth.sm,\n },\n _a);\nvar mediumPanelSelectors = (_b = {},\n _b[\"@media (min-width: \".concat(ScreenWidthMinLarge, \"px)\")] = {\n width: panelWidth.md1,\n },\n _b[\"@media (min-width: \".concat(ScreenWidthMinXLarge, \"px)\")] = {\n width: panelWidth.md2,\n },\n _b);\nvar largePanelSelectors = (_c = {},\n _c[\"@media (min-width: \".concat(ScreenWidthMinUhfMobile, \"px)\")] = {\n left: panelMargin.md,\n width: panelWidth.auto,\n },\n _c[\"@media (min-width: \".concat(ScreenWidthMinXXLarge, \"px)\")] = {\n left: panelMargin.lg,\n },\n _c);\nvar largeFixedPanelSelectors = (_d = {},\n _d[\"@media (min-width: \".concat(ScreenWidthMinXXLarge, \"px)\")] = {\n left: panelMargin.auto,\n width: panelWidth.lg,\n },\n _d);\nvar extraLargePanelSelectors = (_e = {},\n _e[\"@media (min-width: \".concat(ScreenWidthMinXXLarge, \"px)\")] = {\n left: panelMargin.xl,\n },\n _e);\n// Make sure Panels have fallbacks to different breakpoints by reusing same selectors.\n// This is done in the effort to follow design redlines.\nvar getPanelBreakpoints = function (type) {\n var selectors;\n // Panel types `smallFluid`, `smallFixedNear`, `custom` and `customNear`\n // are not checked in here because they render the same in all the breakpoints\n // and have the checks done separately in the `getStyles` function below.\n switch (type) {\n case PanelType.smallFixedFar:\n selectors = __assign({}, smallPanelSelectors);\n break;\n case PanelType.medium:\n selectors = __assign(__assign({}, smallPanelSelectors), mediumPanelSelectors);\n break;\n case PanelType.large:\n selectors = __assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors);\n break;\n case PanelType.largeFixed:\n selectors = __assign(__assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors), largeFixedPanelSelectors);\n break;\n case PanelType.extraLarge:\n selectors = __assign(__assign(__assign(__assign({}, smallPanelSelectors), mediumPanelSelectors), largePanelSelectors), extraLargePanelSelectors);\n break;\n default:\n break;\n }\n return selectors;\n};\nvar commandBarHeight = '44px';\nvar sharedPaddingStyles = {\n paddingLeft: '24px',\n paddingRight: '24px',\n};\nexport var getStyles = function (props) {\n var _a, _b, _c, _d;\n var className = props.className, focusTrapZoneClassName = props.focusTrapZoneClassName, hasCloseButton = props.hasCloseButton, headerClassName = props.headerClassName, isAnimating = props.isAnimating, isFooterSticky = props.isFooterSticky, isFooterAtBottom = props.isFooterAtBottom, isOnRightSide = props.isOnRightSide, isOpen = props.isOpen, isHiddenOnDismiss = props.isHiddenOnDismiss, hasCustomNavigation = props.hasCustomNavigation, theme = props.theme, _e = props.type, type = _e === void 0 ? PanelType.smallFixedFar : _e;\n var effects = theme.effects, fonts = theme.fonts, semanticColors = theme.semanticColors;\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var isCustomPanel = type === PanelType.custom || type === PanelType.customNear;\n return {\n root: [\n classNames.root,\n theme.fonts.medium,\n isOpen && classNames.isOpen,\n hasCloseButton && classNames.hasCloseButton,\n {\n pointerEvents: 'none',\n position: 'absolute',\n top: 0,\n left: 0,\n right: 0,\n bottom: 0,\n },\n isCustomPanel && isOnRightSide && classNames.custom,\n isCustomPanel && !isOnRightSide && classNames.customNear,\n className,\n ],\n overlay: [\n {\n pointerEvents: 'auto',\n cursor: 'pointer',\n },\n isOpen && isAnimating && AnimationClassNames.fadeIn100,\n !isOpen && isAnimating && AnimationClassNames.fadeOut100,\n ],\n hiddenPanel: [\n !isOpen &&\n !isAnimating &&\n isHiddenOnDismiss && {\n visibility: 'hidden',\n },\n ],\n main: [\n classNames.main,\n {\n backgroundColor: semanticColors.bodyBackground,\n boxShadow: effects.elevation64,\n pointerEvents: 'auto',\n position: 'absolute',\n display: 'flex',\n flexDirection: 'column',\n overflowX: 'hidden',\n overflowY: 'auto',\n WebkitOverflowScrolling: 'touch',\n bottom: 0,\n top: 0,\n // left, right, width are overridden depending on the type of the Panel and the screen breakpoint.\n left: panelMargin.auto,\n right: panelMargin.none,\n width: panelWidth.full,\n selectors: __assign((_a = {}, _a[HighContrastSelector] = {\n borderLeft: \"3px solid \".concat(semanticColors.variantBorder),\n borderRight: \"3px solid \".concat(semanticColors.variantBorder),\n }, _a), getPanelBreakpoints(type)),\n },\n type === PanelType.smallFluid && {\n left: panelMargin.none,\n },\n type === PanelType.smallFixedNear && {\n left: panelMargin.none,\n right: panelMargin.auto,\n width: panelWidth.xs,\n },\n type === PanelType.customNear && {\n right: 'auto',\n left: 0,\n },\n isCustomPanel && {\n maxWidth: '100vw',\n },\n isOpen && isAnimating && !isOnRightSide && AnimationClassNames.slideRightIn40,\n isOpen && isAnimating && isOnRightSide && AnimationClassNames.slideLeftIn40,\n !isOpen && isAnimating && !isOnRightSide && AnimationClassNames.slideLeftOut40,\n !isOpen && isAnimating && isOnRightSide && AnimationClassNames.slideRightOut40,\n focusTrapZoneClassName,\n ],\n commands: [\n classNames.commands,\n {\n // Ensures that the sticky header always has a background to prevent overlaps on scroll.\n backgroundColor: semanticColors.bodyBackground,\n paddingTop: 18,\n selectors: (_b = {},\n _b[\"@media (min-height: \".concat(ScreenWidthMinMedium, \"px)\")] = {\n position: 'sticky',\n top: 0,\n zIndex: 1,\n },\n _b),\n },\n hasCustomNavigation && {\n paddingTop: 'inherit',\n },\n ],\n navigation: [\n classNames.navigation,\n {\n display: 'flex',\n justifyContent: 'flex-end',\n },\n hasCustomNavigation && {\n height: commandBarHeight,\n },\n ],\n contentInner: [\n classNames.contentInner,\n {\n display: 'flex',\n flexDirection: 'column',\n flexGrow: 1,\n overflowY: 'hidden',\n },\n ],\n header: [\n classNames.header,\n sharedPaddingStyles,\n {\n alignSelf: 'flex-start',\n },\n hasCloseButton &&\n !hasCustomNavigation && {\n flexGrow: 1,\n },\n hasCustomNavigation && {\n // Ensure that title doesn't shrink if screen is too small\n flexShrink: 0,\n },\n ],\n headerText: [\n classNames.headerText,\n fonts.xLarge,\n {\n color: semanticColors.bodyText,\n lineHeight: '27px',\n overflowWrap: 'break-word',\n wordWrap: 'break-word',\n wordBreak: 'break-word',\n hyphens: 'auto',\n },\n headerClassName,\n ],\n scrollableContent: [\n classNames.scrollableContent,\n {\n overflowY: 'auto',\n },\n isFooterAtBottom && {\n flexGrow: 1,\n display: 'inherit',\n flexDirection: 'inherit',\n },\n ],\n content: [\n classNames.content,\n sharedPaddingStyles,\n {\n paddingBottom: 20,\n },\n isFooterAtBottom && {\n selectors: (_c = {},\n _c[\"@media (min-height: \".concat(ScreenWidthMinMedium, \"px)\")] = {\n flexGrow: 1,\n },\n _c),\n },\n ],\n footer: [\n classNames.footer,\n {\n // Ensure that footer doesn't shrink if screen is too small\n flexShrink: 0,\n borderTop: '1px solid transparent',\n transition: \"opacity \".concat(AnimationVariables.durationValue3, \" \").concat(AnimationVariables.easeFunction2),\n selectors: (_d = {},\n _d[\"@media (min-height: \".concat(ScreenWidthMinMedium, \"px)\")] = {\n position: 'sticky',\n bottom: 0,\n },\n _d),\n },\n isFooterSticky && {\n backgroundColor: semanticColors.bodyBackground,\n borderTopColor: semanticColors.variantBorder,\n },\n ],\n footerInner: [\n classNames.footerInner,\n sharedPaddingStyles,\n {\n paddingBottom: 16,\n paddingTop: 16,\n },\n ],\n subComponentStyles: {\n closeButton: {\n root: [\n classNames.closeButton,\n {\n marginRight: 14,\n color: theme.palette.neutralSecondary,\n fontSize: IconFontSizes.large,\n },\n hasCustomNavigation && {\n marginRight: 0,\n height: 'auto',\n width: '44px',\n },\n ],\n rootHovered: {\n color: theme.palette.neutralPrimary,\n },\n },\n },\n };\n};\n//# sourceMappingURL=Panel.styles.js.map","import { styled } from '../../Utilities';\nimport { PanelBase } from './Panel.base';\nimport { getStyles } from './Panel.styles';\n/**\n * Panel description\n */\nexport var Panel = styled(PanelBase, getStyles, undefined, {\n scope: 'Panel',\n});\n//# sourceMappingURL=Panel.js.map","import { __assign, __extends, __spreadArray } from \"tslib\";\nimport * as React from 'react';\nimport { css, KeyCodes, classNamesFunction, divProperties, findIndex, getDocument, getFirstFocusable, getId, getLastFocusable, getNativeProps, initializeComponentRef, isIOS, isMac, mergeAriaAttributeValues, safeRequestAnimationFrame, warn, warnDeprecations, warnMutuallyExclusive, } from '../../Utilities';\nimport { Callout, DirectionalHint } from '../../Callout';\nimport { CommandButton } from '../../Button';\nimport { DropdownMenuItemType } from './Dropdown.types';\nimport { DropdownSizePosCache } from './utilities/DropdownSizePosCache';\nimport { FocusZone, FocusZoneDirection } from '../../FocusZone';\nimport { Icon } from '../../Icon';\nimport { Label } from '../../Label';\nimport { Panel } from '../../Panel';\nimport { ResponsiveMode, useResponsiveMode } from '../../ResponsiveMode';\nimport { SelectableOptionMenuItemType, getAllSelectedOptions } from '../../SelectableOption';\n// import and use V7 Checkbox to ensure no breaking changes.\nimport { Checkbox } from '../../Checkbox';\nimport { getNextElement, getPreviousElement, getPropsWithDefaults } from '@fluentui/utilities';\nimport { useMergedRefs, usePrevious } from '@fluentui/react-hooks';\nvar COMPONENT_NAME = 'Dropdown';\nvar getClassNames = classNamesFunction();\nvar DEFAULT_PROPS = {\n options: [],\n};\nfunction useSelectedItemsState(_a) {\n var defaultSelectedKeys = _a.defaultSelectedKeys, selectedKeys = _a.selectedKeys, defaultSelectedKey = _a.defaultSelectedKey, selectedKey = _a.selectedKey, options = _a.options, multiSelect = _a.multiSelect;\n var oldOptions = usePrevious(options);\n var _b = React.useState([]), selectedIndices = _b[0], setSelectedIndices = _b[1];\n // In controlled component usage where selectedKey is provided, update the selectedIndex\n // state if the key or options change.\n var selectedKeyPropToUse;\n // this does a shallow compare (assumes options are pure), for the purposes of determining whether\n // defaultSelectedKey/defaultSelectedKeys are respected.\n var didOptionsChange = options !== oldOptions;\n if (multiSelect) {\n if (didOptionsChange && defaultSelectedKeys !== undefined) {\n selectedKeyPropToUse = defaultSelectedKeys;\n }\n else {\n selectedKeyPropToUse = selectedKeys;\n }\n }\n else {\n if (didOptionsChange && defaultSelectedKey !== undefined) {\n selectedKeyPropToUse = defaultSelectedKey;\n }\n else {\n selectedKeyPropToUse = selectedKey;\n }\n }\n var oldSelectedKeyProp = usePrevious(selectedKeyPropToUse);\n React.useEffect(function () {\n /** Get all selected indexes for multi-select mode */\n var getSelectedIndexes = function () {\n if (selectedKeyPropToUse === undefined) {\n if (multiSelect) {\n return getAllSelectedIndices();\n }\n var selectedIndex = getSelectedIndex(null);\n return selectedIndex !== -1 ? [selectedIndex] : [];\n }\n else if (!Array.isArray(selectedKeyPropToUse)) {\n var selectedIndex = getSelectedIndex(selectedKeyPropToUse);\n return selectedIndex !== -1 ? [selectedIndex] : [];\n }\n var returnValue = [];\n for (var _i = 0, selectedKeyPropToUse_1 = selectedKeyPropToUse; _i < selectedKeyPropToUse_1.length; _i++) {\n var key = selectedKeyPropToUse_1[_i];\n var selectedIndex = getSelectedIndex(key);\n selectedIndex !== -1 && returnValue.push(selectedIndex);\n }\n return returnValue;\n };\n var getAllSelectedIndices = function () {\n return options\n .map(function (option, index) { return (option.selected ? index : -1); })\n .filter(function (index) { return index !== -1; });\n };\n var getSelectedIndex = function (searchKey) {\n return findIndex(options, function (option) {\n // eslint-disable-next-line eqeqeq\n if (searchKey != null) {\n return option.key === searchKey;\n }\n else {\n // eslint-disable-next-line deprecation/deprecation\n return !!option.selected || !!option.isSelected;\n }\n });\n };\n if ((selectedKeyPropToUse !== undefined || !oldOptions) &&\n (selectedKeyPropToUse !== oldSelectedKeyProp || didOptionsChange)) {\n setSelectedIndices(getSelectedIndexes());\n }\n }, [didOptionsChange, multiSelect, oldOptions, oldSelectedKeyProp, options, selectedKeyPropToUse]);\n return [selectedIndices, setSelectedIndices];\n}\nexport var DropdownBase = React.forwardRef(function (propsWithoutDefaults, forwardedRef) {\n var props = getPropsWithDefaults(DEFAULT_PROPS, propsWithoutDefaults);\n var rootRef = React.useRef(null);\n var mergedRootRef = useMergedRefs(forwardedRef, rootRef);\n var responsiveMode = useResponsiveMode(rootRef, props.responsiveMode);\n var _a = useSelectedItemsState(props), selectedIndices = _a[0], setSelectedIndices = _a[1];\n return (React.createElement(DropdownInternal, __assign({}, props, { responsiveMode: responsiveMode, hoisted: { rootRef: mergedRootRef, selectedIndices: selectedIndices, setSelectedIndices: setSelectedIndices } })));\n});\nDropdownBase.displayName = 'DropdownBase';\nvar DropdownInternal = /** @class */ (function (_super) {\n __extends(DropdownInternal, _super);\n function DropdownInternal(props) {\n var _this = _super.call(this, props) || this;\n _this._host = React.createRef();\n _this._focusZone = React.createRef();\n _this._dropDown = React.createRef();\n _this._scrollIdleDelay = 250 /* ms */;\n _this._sizePosCache = new DropdownSizePosCache();\n _this._requestAnimationFrame = safeRequestAnimationFrame(_this);\n /**\n * Close menu callout if it is open\n */\n _this.dismissMenu = function () {\n var isOpen = _this.state.isOpen;\n isOpen && _this.setState({ isOpen: false });\n };\n _this._onChange = function (event, options, index, checked, multiSelect) {\n // eslint-disable-next-line deprecation/deprecation\n var _a = _this.props, onChange = _a.onChange, onChanged = _a.onChanged;\n if (onChange || onChanged) {\n // for single-select, option passed in will always be selected.\n // for multi-select, flip the checked value\n var changedOpt = multiSelect ? __assign(__assign({}, options[index]), { selected: !checked }) : options[index];\n onChange && onChange(__assign(__assign({}, event), { target: _this._dropDown.current }), changedOpt, index);\n onChanged && onChanged(changedOpt, index);\n }\n };\n /** Get either props.placeholder (new name) or props.placeHolder (old name) */\n _this._getPlaceholder = function () {\n // eslint-disable-next-line deprecation/deprecation\n return _this.props.placeholder || _this.props.placeHolder;\n };\n /** Get text in dropdown input as a string */\n _this._getTitle = function (items, _unused) {\n var _a = _this.props.multiSelectDelimiter, multiSelectDelimiter = _a === void 0 ? ', ' : _a;\n return items.map(function (i) { return i.text; }).join(multiSelectDelimiter);\n };\n /** Render text in dropdown input */\n _this._onRenderTitle = function (items) {\n return React.createElement(React.Fragment, null, _this._getTitle(items));\n };\n /** Render placeholder text in dropdown input */\n _this._onRenderPlaceholder = function (props) {\n if (!_this._getPlaceholder()) {\n return null;\n }\n return React.createElement(React.Fragment, null, _this._getPlaceholder());\n };\n /** Render Callout or Panel container and pass in list */\n _this._onRenderContainer = function (props) {\n var calloutProps = props.calloutProps, panelProps = props.panelProps;\n var _a = _this.props, responsiveMode = _a.responsiveMode, dropdownWidth = _a.dropdownWidth;\n var isSmall = responsiveMode <= ResponsiveMode.medium;\n var focusTrapZoneProps = { firstFocusableTarget: \"#\".concat(_this._listId, \"1\") };\n var panelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.panel\n : undefined;\n var calloutWidth = undefined;\n var calloutMinWidth = undefined;\n if (dropdownWidth === 'auto') {\n calloutMinWidth = _this._dropDown.current ? _this._dropDown.current.clientWidth : 0;\n }\n else {\n calloutWidth = dropdownWidth || (_this._dropDown.current ? _this._dropDown.current.clientWidth : 0);\n }\n return isSmall ? (React.createElement(Panel, __assign({ closeButtonAriaLabel: \"Close\", focusTrapZoneProps: focusTrapZoneProps, hasCloseButton: true, isOpen: true, isLightDismiss: true, onDismiss: _this._onDismiss, styles: panelStyles }, panelProps), _this._renderFocusableList(props))) : (React.createElement(Callout, __assign({ isBeakVisible: false, gapSpace: 0, doNotLayer: false, directionalHintFixed: false, directionalHint: DirectionalHint.bottomLeftEdge, calloutWidth: calloutWidth, calloutMinWidth: calloutMinWidth }, calloutProps, { className: _this._classNames.callout, target: _this._dropDown.current, onDismiss: _this._onDismiss, onScroll: _this._onScroll, onPositioned: _this._onPositioned }), _this._renderFocusableList(props)));\n };\n /** Render Caret Down Icon */\n _this._onRenderCaretDown = function (props) {\n return React.createElement(Icon, { className: _this._classNames.caretDown, iconName: \"ChevronDown\", \"aria-hidden\": true });\n };\n /** Render List of items */\n _this._onRenderList = function (props) {\n var _a = props.onRenderItem, onRenderItem = _a === void 0 ? _this._onRenderItem : _a;\n var queue = { items: [] };\n var renderedList = [];\n var emptyQueue = function () {\n var newGroup = queue.id\n ? [\n React.createElement(\"div\", { role: \"group\", key: queue.id, \"aria-labelledby\": queue.id }, queue.items),\n ]\n : queue.items;\n renderedList = __spreadArray(__spreadArray([], renderedList, true), newGroup, true);\n // Flush items and id\n queue = { items: [] };\n };\n var placeRenderedOptionIntoQueue = function (item, index) {\n /*\n Case Header\n empty queue if it's not already empty\n ensure unique ID for header and set queue ID\n push header into queue\n Case Divider\n push divider into queue if not first item\n empty queue if not already empty\n Default\n push item into queue\n */\n switch (item.itemType) {\n case SelectableOptionMenuItemType.Header:\n queue.items.length > 0 && emptyQueue();\n var id = _this._id + item.key;\n queue.items.push(onRenderItem(__assign(__assign({ id: id }, item), { index: index }), _this._onRenderItem));\n queue.id = id;\n break;\n case SelectableOptionMenuItemType.Divider:\n index > 0 && queue.items.push(onRenderItem(__assign(__assign({}, item), { index: index }), _this._onRenderItem));\n queue.items.length > 0 && emptyQueue();\n break;\n default:\n queue.items.push(onRenderItem(__assign(__assign({}, item), { index: index }), _this._onRenderItem));\n }\n };\n // Place options into the queue. Queue will be emptied anytime a Header or Divider is encountered\n props.options.forEach(function (item, index) {\n placeRenderedOptionIntoQueue(item, index);\n });\n // Push remaining items into all renderedList\n queue.items.length > 0 && emptyQueue();\n return React.createElement(React.Fragment, null, renderedList);\n };\n _this._onRenderItem = function (item) {\n switch (item.itemType) {\n case SelectableOptionMenuItemType.Divider:\n return _this._renderSeparator(item);\n case SelectableOptionMenuItemType.Header:\n return _this._renderHeader(item);\n default:\n return _this._renderOption(item);\n }\n };\n _this._renderOption = function (item) {\n var _a;\n var _b = _this.props, _c = _b.onRenderOption, onRenderOption = _c === void 0 ? _this._onRenderOption : _c, _d = _b.hoisted.selectedIndices, selectedIndices = _d === void 0 ? [] : _d;\n var isItemSelected = item.index !== undefined && selectedIndices ? selectedIndices.indexOf(item.index) > -1 : false;\n // select the right className based on the combination of selected/disabled\n var itemClassName = item.hidden // predicate: item hidden\n ? _this._classNames.dropdownItemHidden\n : isItemSelected && item.disabled === true // predicate: both selected and disabled\n ? _this._classNames.dropdownItemSelectedAndDisabled\n : isItemSelected // predicate: selected only\n ? _this._classNames.dropdownItemSelected\n : item.disabled === true // predicate: disabled only\n ? _this._classNames.dropdownItemDisabled\n : _this._classNames.dropdownItem;\n var title = item.title;\n // define the id and label id (for multiselect checkboxes)\n var id = _this._listId + item.index;\n var labelId = (_a = item.id) !== null && _a !== void 0 ? _a : id + '-label';\n var multiSelectItemStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.multiSelectItem\n : undefined;\n return !_this.props.multiSelect ? (React.createElement(CommandButton, { id: id, key: item.key, \"data-index\": item.index, \"data-is-focusable\": !item.disabled, disabled: item.disabled, className: itemClassName, onClick: _this._onItemClick(item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseEnter: _this._onItemMouseEnter.bind(_this, item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseLeave: _this._onMouseItemLeave.bind(_this, item), \n // eslint-disable-next-line react/jsx-no-bind\n onMouseMove: _this._onItemMouseMove.bind(_this, item), role: \"option\", \"aria-selected\": isItemSelected ? 'true' : 'false', ariaLabel: item.ariaLabel, title: title, \"aria-posinset\": _this._sizePosCache.positionInSet(item.index), \"aria-setsize\": _this._sizePosCache.optionSetSize }, onRenderOption(item, _this._onRenderOption))) : (React.createElement(Checkbox, { id: id, key: item.key, disabled: item.disabled, onChange: _this._onItemClick(item), inputProps: __assign({ 'aria-selected': isItemSelected, onMouseEnter: _this._onItemMouseEnter.bind(_this, item), onMouseLeave: _this._onMouseItemLeave.bind(_this, item), onMouseMove: _this._onItemMouseMove.bind(_this, item), role: 'option' }, {\n 'data-index': item.index,\n 'data-is-focusable': !(item.disabled || item.hidden),\n }), label: item.text, title: title, \n // eslint-disable-next-line react/jsx-no-bind\n onRenderLabel: _this._onRenderItemLabel.bind(_this, __assign(__assign({}, item), { id: labelId })), className: css(itemClassName, 'is-multi-select'), checked: isItemSelected, styles: multiSelectItemStyles, ariaPositionInSet: !item.hidden ? _this._sizePosCache.positionInSet(item.index) : undefined, ariaSetSize: !item.hidden ? _this._sizePosCache.optionSetSize : undefined, ariaLabel: item.ariaLabel, ariaLabelledBy: item.ariaLabel ? undefined : labelId }));\n };\n /** Render content of item (i.e. text/icon inside of button) */\n _this._onRenderOption = function (item) {\n return React.createElement(\"span\", { className: _this._classNames.dropdownOptionText }, item.text);\n };\n /*\n * Render content of a multiselect item label.\n * Text within the label is aria-hidden, to prevent duplicate input/label exposure\n */\n _this._onRenderMultiselectOption = function (item) {\n return (React.createElement(\"span\", { id: item.id, \"aria-hidden\": \"true\", className: _this._classNames.dropdownOptionText }, item.text));\n };\n /** Render custom label for multiselect checkbox items */\n _this._onRenderItemLabel = function (item) {\n var _a = _this.props.onRenderOption, onRenderOption = _a === void 0 ? _this._onRenderMultiselectOption : _a;\n return onRenderOption(item, _this._onRenderMultiselectOption);\n };\n _this._onPositioned = function (positions) {\n if (_this._focusZone.current) {\n // Focusing an element can trigger a reflow. Making this wait until there is an animation\n // frame can improve perf significantly.\n _this._requestAnimationFrame(function () {\n var selectedIndices = _this.props.hoisted.selectedIndices;\n if (_this._focusZone.current) {\n if (!_this._hasBeenPositioned &&\n selectedIndices &&\n selectedIndices[0] &&\n !_this.props.options[selectedIndices[0]].disabled) {\n var element = getDocument().getElementById(\"\".concat(_this._id, \"-list\").concat(selectedIndices[0]));\n if (element) {\n _this._focusZone.current.focusElement(element);\n }\n _this._hasBeenPositioned = true;\n }\n else {\n _this._focusZone.current.focus();\n }\n }\n });\n }\n if (!_this.state.calloutRenderEdge || _this.state.calloutRenderEdge !== positions.targetEdge) {\n _this.setState({\n calloutRenderEdge: positions.targetEdge,\n });\n }\n };\n _this._onItemClick = function (item) {\n return function (event) {\n if (!item.disabled) {\n _this.setSelectedIndex(event, item.index);\n if (!_this.props.multiSelect) {\n // only close the callout when it's in single-select mode\n _this.setState({\n isOpen: false,\n });\n }\n }\n };\n };\n /**\n * Scroll handler for the callout to make sure the mouse events\n * for updating focus are not interacting during scroll\n */\n _this._onScroll = function () {\n if (!_this._isScrollIdle && _this._scrollIdleTimeoutId !== undefined) {\n clearTimeout(_this._scrollIdleTimeoutId);\n _this._scrollIdleTimeoutId = undefined;\n }\n else {\n _this._isScrollIdle = false;\n }\n _this._scrollIdleTimeoutId = window.setTimeout(function () {\n _this._isScrollIdle = true;\n }, _this._scrollIdleDelay);\n };\n _this._onMouseItemLeave = function (item, ev) {\n if (_this._shouldIgnoreMouseEvent()) {\n return;\n }\n /**\n * IE11 focus() method forces parents to scroll to top of element.\n * Edge and IE expose a setActive() function for focusable divs that\n * sets the page focus but does not scroll the parent element.\n */\n if (_this._host.current) {\n if (_this._host.current.setActive) {\n try {\n _this._host.current.setActive();\n }\n catch (e) {\n /* no-op */\n }\n }\n else {\n _this._host.current.focus();\n }\n }\n };\n _this._onDismiss = function () {\n _this.setState({ isOpen: false });\n };\n _this._onDropdownBlur = function (ev) {\n // If Dropdown disabled do not proceed with this logic.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n if (_this.state.isOpen) {\n // Do not call onBlur or update focus state when the callout is opened\n return;\n }\n _this.setState({ hasFocus: false });\n if (_this.props.onBlur) {\n _this.props.onBlur(ev);\n }\n };\n _this._onDropdownKeyDown = function (ev) {\n // If Dropdown disabled do not process any keyboard events.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n if (_this.props.onKeyDown) {\n _this.props.onKeyDown(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n var newIndex;\n var selectedIndex = _this.props.hoisted.selectedIndices.length ? _this.props.hoisted.selectedIndices[0] : -1;\n var containsExpandCollapseModifier = ev.altKey || ev.metaKey;\n var isOpen = _this.state.isOpen;\n // eslint-disable-next-line deprecation/deprecation\n switch (ev.which) {\n case KeyCodes.enter:\n _this.setState({\n isOpen: !isOpen,\n });\n break;\n case KeyCodes.escape:\n if (!isOpen) {\n return;\n }\n _this.setState({\n isOpen: false,\n });\n break;\n case KeyCodes.up:\n if (containsExpandCollapseModifier) {\n if (isOpen) {\n _this.setState({ isOpen: false });\n break;\n }\n return;\n }\n if (_this.props.multiSelect) {\n _this.setState({ isOpen: true });\n }\n else if (!_this._isDisabled()) {\n newIndex = _this._moveIndex(ev, -1, selectedIndex - 1, selectedIndex);\n }\n break;\n case KeyCodes.down:\n if (containsExpandCollapseModifier) {\n ev.stopPropagation();\n ev.preventDefault();\n }\n if ((containsExpandCollapseModifier && !isOpen) || _this.props.multiSelect) {\n _this.setState({ isOpen: true });\n }\n else if (!_this._isDisabled()) {\n newIndex = _this._moveIndex(ev, 1, selectedIndex + 1, selectedIndex);\n }\n break;\n case KeyCodes.home:\n if (!_this.props.multiSelect) {\n newIndex = _this._moveIndex(ev, 1, 0, selectedIndex);\n }\n break;\n case KeyCodes.end:\n if (!_this.props.multiSelect) {\n newIndex = _this._moveIndex(ev, -1, _this.props.options.length - 1, selectedIndex);\n }\n break;\n case KeyCodes.space:\n // event handled in _onDropdownKeyUp\n break;\n default:\n return;\n }\n if (newIndex !== selectedIndex) {\n ev.stopPropagation();\n ev.preventDefault();\n }\n };\n _this._onDropdownKeyUp = function (ev) {\n // If Dropdown disabled do not process any keyboard events.\n var disabled = _this._isDisabled();\n if (disabled) {\n return;\n }\n var shouldHandleKey = _this._shouldHandleKeyUp(ev);\n var isOpen = _this.state.isOpen;\n if (_this.props.onKeyUp) {\n _this.props.onKeyUp(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n // eslint-disable-next-line deprecation/deprecation\n switch (ev.which) {\n case KeyCodes.space:\n _this.setState({\n isOpen: !isOpen,\n });\n break;\n default:\n if (shouldHandleKey && isOpen) {\n _this.setState({ isOpen: false });\n }\n return;\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onZoneKeyDown = function (ev) {\n var _a, _b;\n var elementToFocus;\n // Take note if we are processing an alt (option) or meta (command) keydown.\n // See comment in _shouldHandleKeyUp for reasoning.\n _this._lastKeyDownWasAltOrMeta = _this._isAltOrMeta(ev);\n var containsExpandCollapseModifier = ev.altKey || ev.metaKey;\n // eslint-disable-next-line deprecation/deprecation\n switch (ev.which) {\n case KeyCodes.up:\n if (containsExpandCollapseModifier) {\n _this.setState({ isOpen: false });\n }\n else {\n if (_this._host.current) {\n elementToFocus = getLastFocusable(_this._host.current, _this._host.current.lastChild, true);\n }\n }\n break;\n // All directional keystrokes should be canceled when the zone is rendered.\n // This avoids the body scroll from reacting and thus dismissing the dropdown.\n case KeyCodes.home:\n case KeyCodes.end:\n case KeyCodes.pageUp:\n case KeyCodes.pageDown:\n break;\n case KeyCodes.down:\n if (!containsExpandCollapseModifier && _this._host.current) {\n elementToFocus = getFirstFocusable(_this._host.current, _this._host.current.firstChild, true);\n }\n break;\n case KeyCodes.escape:\n _this.setState({ isOpen: false });\n break;\n case KeyCodes.tab:\n _this.setState({ isOpen: false });\n var document_1 = getDocument();\n if (document_1) {\n if (ev.shiftKey) {\n (_a = getPreviousElement(document_1.body, _this._dropDown.current, false, false, true, true)) === null || _a === void 0 ? void 0 : _a.focus();\n }\n else {\n (_b = getNextElement(document_1.body, _this._dropDown.current, false, false, true, true)) === null || _b === void 0 ? void 0 : _b.focus();\n }\n }\n break;\n default:\n return;\n }\n if (elementToFocus) {\n elementToFocus.focus();\n }\n ev.stopPropagation();\n ev.preventDefault();\n };\n _this._onZoneKeyUp = function (ev) {\n var shouldHandleKey = _this._shouldHandleKeyUp(ev);\n if (shouldHandleKey && _this.state.isOpen) {\n _this.setState({ isOpen: false });\n ev.preventDefault();\n }\n };\n _this._onDropdownClick = function (ev) {\n if (_this.props.onClick) {\n _this.props.onClick(ev);\n if (ev.defaultPrevented) {\n return;\n }\n }\n var isOpen = _this.state.isOpen;\n var disabled = _this._isDisabled();\n if (!disabled && !_this._shouldOpenOnFocus()) {\n _this.setState({\n isOpen: !isOpen,\n });\n }\n _this._isFocusedByClick = false; // reset\n };\n _this._onDropdownMouseDown = function () {\n _this._isFocusedByClick = true;\n };\n _this._onFocus = function (ev) {\n var disabled = _this._isDisabled();\n if (!disabled) {\n if (_this.props.onFocus) {\n _this.props.onFocus(ev);\n }\n var state = { hasFocus: true };\n if (_this._shouldOpenOnFocus()) {\n state.isOpen = true;\n }\n _this.setState(state);\n }\n };\n /**\n * Because the isDisabled prop is deprecated, we have had to repeat this logic all over the place.\n * This helper method avoids all the repetition.\n */\n _this._isDisabled = function () {\n var disabled = _this.props.disabled;\n // eslint-disable-next-line deprecation/deprecation\n var isDisabled = _this.props.isDisabled;\n // Remove this deprecation workaround at 1.0.0\n if (disabled === undefined) {\n disabled = isDisabled;\n }\n return disabled;\n };\n _this._onRenderLabel = function (props) {\n var label = props.label, required = props.required, disabled = props.disabled;\n var labelStyles = _this._classNames.subComponentStyles\n ? _this._classNames.subComponentStyles.label\n : undefined;\n return label ? (React.createElement(Label, { className: _this._classNames.label, id: _this._labelId, required: required, styles: labelStyles, disabled: disabled }, label)) : null;\n };\n initializeComponentRef(_this);\n var multiSelect = props.multiSelect, selectedKey = props.selectedKey, selectedKeys = props.selectedKeys, defaultSelectedKey = props.defaultSelectedKey, defaultSelectedKeys = props.defaultSelectedKeys, options = props.options;\n if (process.env.NODE_ENV !== 'production') {\n warnDeprecations(COMPONENT_NAME, props, {\n isDisabled: 'disabled',\n onChanged: 'onChange',\n placeHolder: 'placeholder',\n onRenderPlaceHolder: 'onRenderPlaceholder',\n });\n warnMutuallyExclusive(COMPONENT_NAME, props, {\n defaultSelectedKey: 'selectedKey',\n defaultSelectedKeys: 'selectedKeys',\n selectedKeys: 'selectedKey',\n });\n if (multiSelect) {\n var warnMultiSelect = function (prop) {\n return warn(\"Dropdown property '\".concat(prop, \"' cannot be used when 'multiSelect' is true. Use '\").concat(prop, \"s' instead.\"));\n };\n if (selectedKey !== undefined) {\n warnMultiSelect('selectedKey');\n }\n if (defaultSelectedKey !== undefined) {\n warnMultiSelect('defaultSelectedKey');\n }\n }\n else {\n var warnNotMultiSelect = function (prop) {\n return warn(\"Dropdown property '\".concat(prop, \"s' cannot be used when 'multiSelect' is false/unset. Use '\").concat(prop, \"' instead.\"));\n };\n if (selectedKeys !== undefined) {\n warnNotMultiSelect('selectedKey');\n }\n if (defaultSelectedKeys !== undefined) {\n warnNotMultiSelect('defaultSelectedKey');\n }\n }\n }\n _this._id = props.id || getId('Dropdown');\n _this._labelId = _this._id + '-label';\n _this._listId = _this._id + '-list';\n _this._optionId = _this._id + '-option';\n _this._isScrollIdle = true;\n _this._hasBeenPositioned = false;\n _this._sizePosCache.updateOptions(options);\n _this.state = {\n isOpen: false,\n hasFocus: false,\n calloutRenderEdge: undefined,\n };\n return _this;\n }\n Object.defineProperty(DropdownInternal.prototype, \"selectedOptions\", {\n /**\n * All selected options\n */\n get: function () {\n var _a = this.props, options = _a.options, selectedIndices = _a.hoisted.selectedIndices;\n return getAllSelectedOptions(options, selectedIndices);\n },\n enumerable: false,\n configurable: true\n });\n DropdownInternal.prototype.componentWillUnmount = function () {\n clearTimeout(this._scrollIdleTimeoutId);\n };\n DropdownInternal.prototype.componentDidUpdate = function (prevProps, prevState) {\n if (prevState.isOpen === true && this.state.isOpen === false) {\n this._gotMouseMove = false;\n this._hasBeenPositioned = false;\n if (this.props.onDismiss) {\n this.props.onDismiss();\n }\n }\n };\n DropdownInternal.prototype.render = function () {\n var id = this._id;\n var props = this.props;\n var className = props.className, label = props.label, options = props.options, ariaLabel = props.ariaLabel, required = props.required, errorMessage = props.errorMessage, propStyles = props.styles, theme = props.theme, panelProps = props.panelProps, calloutProps = props.calloutProps, _a = props.onRenderTitle, onRenderTitle = _a === void 0 ? this._getTitle : _a, _b = props.onRenderContainer, onRenderContainer = _b === void 0 ? this._onRenderContainer : _b, _c = props.onRenderCaretDown, onRenderCaretDown = _c === void 0 ? this._onRenderCaretDown : _c, _d = props.onRenderLabel, onRenderLabel = _d === void 0 ? this._onRenderLabel : _d, _e = props.onRenderItem, onRenderItem = _e === void 0 ? this._onRenderItem : _e, selectedIndices = props.hoisted.selectedIndices;\n var _f = this.state, isOpen = _f.isOpen, calloutRenderEdge = _f.calloutRenderEdge, hasFocus = _f.hasFocus;\n // eslint-disable-next-line deprecation/deprecation\n var onRenderPlaceholder = props.onRenderPlaceholder || props.onRenderPlaceHolder || this._getPlaceholder;\n // If our cached options are out of date update our cache\n if (options !== this._sizePosCache.cachedOptions) {\n this._sizePosCache.updateOptions(options);\n }\n var selectedOptions = getAllSelectedOptions(options, selectedIndices);\n var divProps = getNativeProps(props, divProperties);\n var disabled = this._isDisabled();\n var errorMessageId = id + '-errorMessage';\n this._classNames = getClassNames(propStyles, {\n theme: theme,\n className: className,\n hasError: !!(errorMessage && errorMessage.length > 0),\n hasLabel: !!label,\n isOpen: isOpen,\n required: required,\n disabled: disabled,\n isRenderingPlaceholder: !selectedOptions.length,\n panelClassName: panelProps ? panelProps.className : undefined,\n calloutClassName: calloutProps ? calloutProps.className : undefined,\n calloutRenderEdge: calloutRenderEdge,\n });\n var hasErrorMessage = !!errorMessage && errorMessage.length > 0;\n return (React.createElement(\"div\", { className: this._classNames.root, ref: this.props.hoisted.rootRef, \"aria-owns\": isOpen ? this._listId : undefined },\n onRenderLabel(this.props, this._onRenderLabel),\n React.createElement(\"div\", __assign({ \"data-is-focusable\": !disabled, \"data-ktp-target\": true, ref: this._dropDown, id: id, tabIndex: disabled ? -1 : 0, role: \"combobox\", \"aria-haspopup\": \"listbox\", \"aria-expanded\": isOpen ? 'true' : 'false', \"aria-label\": ariaLabel, \"aria-labelledby\": label && !ariaLabel ? mergeAriaAttributeValues(this._labelId, this._optionId) : undefined, \"aria-describedby\": hasErrorMessage ? this._id + '-errorMessage' : undefined, \"aria-required\": required, \"aria-disabled\": disabled, \"aria-controls\": isOpen ? this._listId : undefined }, divProps, { className: this._classNames.dropdown, onBlur: this._onDropdownBlur, onKeyDown: this._onDropdownKeyDown, onKeyUp: this._onDropdownKeyUp, onClick: this._onDropdownClick, onMouseDown: this._onDropdownMouseDown, onFocus: this._onFocus }),\n React.createElement(\"span\", { id: this._optionId, className: this._classNames.title, \"aria-live\": hasFocus ? 'polite' : undefined, \"aria-atomic\": hasFocus ? true : undefined, \"aria-invalid\": hasErrorMessage }, \n // If option is selected render title, otherwise render the placeholder text\n selectedOptions.length\n ? onRenderTitle(selectedOptions, this._onRenderTitle)\n : onRenderPlaceholder(props, this._onRenderPlaceholder)),\n React.createElement(\"span\", { className: this._classNames.caretDownWrapper }, onRenderCaretDown(props, this._onRenderCaretDown))),\n isOpen &&\n onRenderContainer(__assign(__assign({}, props), { onDismiss: this._onDismiss, onRenderItem: onRenderItem }), this._onRenderContainer),\n hasErrorMessage && (React.createElement(\"div\", { role: \"alert\", id: errorMessageId, className: this._classNames.errorMessage }, errorMessage))));\n };\n DropdownInternal.prototype.focus = function (shouldOpenOnFocus) {\n if (this._dropDown.current) {\n this._dropDown.current.focus();\n if (shouldOpenOnFocus) {\n this.setState({\n isOpen: true,\n });\n }\n }\n };\n DropdownInternal.prototype.setSelectedIndex = function (event, index) {\n var _a = this.props, options = _a.options, selectedKey = _a.selectedKey, selectedKeys = _a.selectedKeys, multiSelect = _a.multiSelect, notifyOnReselect = _a.notifyOnReselect, _b = _a.hoisted.selectedIndices, selectedIndices = _b === void 0 ? [] : _b;\n var checked = selectedIndices ? selectedIndices.indexOf(index) > -1 : false;\n var newIndexes = [];\n index = Math.max(0, Math.min(options.length - 1, index));\n // If this is a controlled component then no state change should take place.\n if (selectedKey !== undefined || selectedKeys !== undefined) {\n this._onChange(event, options, index, checked, multiSelect);\n return;\n }\n if (!multiSelect && !notifyOnReselect && index === selectedIndices[0]) {\n return;\n }\n else if (multiSelect) {\n newIndexes = selectedIndices ? this._copyArray(selectedIndices) : [];\n if (checked) {\n var position = newIndexes.indexOf(index);\n if (position > -1) {\n // unchecked the current one\n newIndexes.splice(position, 1);\n }\n }\n else {\n // add the new selected index into the existing one\n newIndexes.push(index);\n }\n }\n else {\n // Set the selected option if this is an uncontrolled component\n newIndexes = [index];\n }\n event.persist();\n // Call onChange after state is updated\n this.props.hoisted.setSelectedIndices(newIndexes);\n this._onChange(event, options, index, checked, multiSelect);\n };\n DropdownInternal.prototype._copyArray = function (array) {\n var newArray = [];\n for (var _i = 0, array_1 = array; _i < array_1.length; _i++) {\n var element = array_1[_i];\n newArray.push(element);\n }\n return newArray;\n };\n /**\n * Finds the next valid Dropdown option and sets the selected index to it.\n * @param stepValue - Value of how many items the function should traverse. Should be -1 or 1.\n * @param index - Index of where the search should start\n * @param selectedIndex - The selectedIndex Dropdown's state\n * @returns The next valid dropdown option's index\n */\n DropdownInternal.prototype._moveIndex = function (event, stepValue, index, selectedIndex) {\n var options = this.props.options;\n // Return selectedIndex if nothing has changed or options is empty\n if (selectedIndex === index || options.length === 0) {\n return selectedIndex;\n }\n // If the user is pressing the up or down key we want to make\n // sure that the dropdown cycles through the options without\n // causing the screen to scroll. In _onDropdownKeyDown\n // at the very end is a check to see if newIndex !== selectedIndex.\n // If the index is less than 0 and we set it back to 0, then\n // newIndex will equal selectedIndex and not stop the action\n // of the key press happening and vice versa for indexes greater\n // than or equal to the options length.\n if (index >= options.length) {\n index = 0;\n }\n else if (index < 0) {\n index = options.length - 1;\n }\n var stepCounter = 0;\n // If current index is a header or divider, or disabled, increment by step\n while (options[index].itemType === DropdownMenuItemType.Header ||\n options[index].itemType === DropdownMenuItemType.Divider ||\n options[index].disabled) {\n // If stepCounter exceeds length of options, then return selectedIndex (-1)\n if (stepCounter >= options.length) {\n return selectedIndex;\n }\n // If index + stepValue is out of bounds, wrap around\n if (index + stepValue < 0) {\n index = options.length;\n }\n else if (index + stepValue >= options.length) {\n index = -1;\n }\n index = index + stepValue;\n stepCounter++;\n }\n this.setSelectedIndex(event, index);\n return index;\n };\n /** Wrap item list in a FocusZone */\n DropdownInternal.prototype._renderFocusableList = function (props) {\n var _a = props.onRenderList, onRenderList = _a === void 0 ? this._onRenderList : _a, label = props.label, ariaLabel = props.ariaLabel, multiSelect = props.multiSelect;\n return (React.createElement(\"div\", { className: this._classNames.dropdownItemsWrapper, onKeyDown: this._onZoneKeyDown, onKeyUp: this._onZoneKeyUp, ref: this._host, tabIndex: 0 },\n React.createElement(FocusZone, { ref: this._focusZone, direction: FocusZoneDirection.vertical, id: this._listId, className: this._classNames.dropdownItems, role: \"listbox\", \"aria-label\": ariaLabel, \"aria-labelledby\": label && !ariaLabel ? this._labelId : undefined, \"aria-multiselectable\": multiSelect }, onRenderList(props, this._onRenderList))));\n };\n DropdownInternal.prototype._renderSeparator = function (item) {\n var index = item.index, key = item.key;\n var separatorClassName = item.hidden ? this._classNames.dropdownDividerHidden : this._classNames.dropdownDivider;\n if (index > 0) {\n return React.createElement(\"div\", { role: \"presentation\", key: key, className: separatorClassName });\n }\n return null;\n };\n DropdownInternal.prototype._renderHeader = function (item) {\n var _a = this.props.onRenderOption, onRenderOption = _a === void 0 ? this._onRenderOption : _a;\n var key = item.key, id = item.id;\n var headerClassName = item.hidden\n ? this._classNames.dropdownItemHeaderHidden\n : this._classNames.dropdownItemHeader;\n return (React.createElement(\"div\", { id: id, key: key, className: headerClassName }, onRenderOption(item, this._onRenderOption)));\n };\n DropdownInternal.prototype._onItemMouseEnter = function (item, ev) {\n if (this._shouldIgnoreMouseEvent()) {\n return;\n }\n var targetElement = ev.currentTarget;\n targetElement.focus();\n };\n DropdownInternal.prototype._onItemMouseMove = function (item, ev) {\n var targetElement = ev.currentTarget;\n this._gotMouseMove = true;\n if (!this._isScrollIdle || document.activeElement === targetElement) {\n return;\n }\n targetElement.focus();\n };\n DropdownInternal.prototype._shouldIgnoreMouseEvent = function () {\n return !this._isScrollIdle || !this._gotMouseMove;\n };\n /**\n * Returns true if the key for the event is alt (Mac option) or meta (Mac command).\n */\n DropdownInternal.prototype._isAltOrMeta = function (ev) {\n // eslint-disable-next-line deprecation/deprecation\n return ev.which === KeyCodes.alt || ev.key === 'Meta';\n };\n /**\n * We close the menu on key up only if ALL of the following are true:\n * - Most recent key down was alt or meta (command)\n * - The alt/meta key down was NOT followed by some other key (such as down/up arrow to\n * expand/collapse the menu)\n * - We're not on a Mac (or iOS)\n *\n * This is because on Windows, pressing alt moves focus to the application menu bar or similar,\n * closing any open context menus. There is not a similar behavior on Macs.\n */\n DropdownInternal.prototype._shouldHandleKeyUp = function (ev) {\n var keyPressIsAltOrMetaAlone = this._lastKeyDownWasAltOrMeta && this._isAltOrMeta(ev);\n this._lastKeyDownWasAltOrMeta = false;\n return !!keyPressIsAltOrMetaAlone && !(isMac() || isIOS());\n };\n /**\n * Returns true if dropdown should set to open on focus.\n * Otherwise, isOpen state should be toggled on click\n */\n DropdownInternal.prototype._shouldOpenOnFocus = function () {\n var hasFocus = this.state.hasFocus;\n var openOnKeyboardFocus = this.props.openOnKeyboardFocus;\n return !this._isFocusedByClick && openOnKeyboardFocus === true && !hasFocus;\n };\n DropdownInternal.defaultProps = {\n options: [],\n };\n return DropdownInternal;\n}(React.Component));\n//# sourceMappingURL=Dropdown.base.js.map","var _a, _b, _c, _d;\nimport { __assign, __spreadArray } from \"tslib\";\nimport { IsFocusVisibleClassName } from '../../Utilities';\nimport { RectangleEdge } from '../../Positioning';\nimport { FontWeights, HighContrastSelector, getGlobalClassNames, normalize, HighContrastSelectorWhite, getScreenSelector, ScreenWidthMinMedium, getHighContrastNoAdjustStyle, } from '../../Styling';\nvar GlobalClassNames = {\n root: 'ms-Dropdown-container',\n label: 'ms-Dropdown-label',\n dropdown: 'ms-Dropdown',\n title: 'ms-Dropdown-title',\n caretDownWrapper: 'ms-Dropdown-caretDownWrapper',\n caretDown: 'ms-Dropdown-caretDown',\n callout: 'ms-Dropdown-callout',\n panel: 'ms-Dropdown-panel',\n dropdownItems: 'ms-Dropdown-items',\n dropdownItem: 'ms-Dropdown-item',\n dropdownDivider: 'ms-Dropdown-divider',\n dropdownOptionText: 'ms-Dropdown-optionText',\n dropdownItemHeader: 'ms-Dropdown-header',\n titleIsPlaceHolder: 'ms-Dropdown-titleIsPlaceHolder',\n titleHasError: 'ms-Dropdown-title--hasError',\n};\nvar DROPDOWN_HEIGHT = 32;\nvar DROPDOWN_ITEM_HEIGHT = 36;\nvar highContrastAdjustMixin = (_a = {},\n _a[\"\".concat(HighContrastSelector, \", \").concat(HighContrastSelectorWhite.replace('@media ', ''))] = __assign({}, getHighContrastNoAdjustStyle()),\n _a);\nvar highContrastItemAndTitleStateMixin = {\n selectors: __assign((_b = {}, _b[HighContrastSelector] = {\n backgroundColor: 'Highlight',\n borderColor: 'Highlight',\n color: 'HighlightText',\n }, _b['.ms-Checkbox-checkbox'] = (_c = {},\n _c[HighContrastSelector] = {\n borderColor: 'HighlightText',\n },\n _c), _b), highContrastAdjustMixin),\n};\nvar highContrastBorderState = {\n selectors: (_d = {},\n _d[HighContrastSelector] = {\n borderColor: 'Highlight',\n },\n _d),\n};\nvar MinimumScreenSelector = getScreenSelector(0, ScreenWidthMinMedium);\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;\n var theme = props.theme, hasError = props.hasError, hasLabel = props.hasLabel, className = props.className, isOpen = props.isOpen, disabled = props.disabled, required = props.required, isRenderingPlaceholder = props.isRenderingPlaceholder, panelClassName = props.panelClassName, calloutClassName = props.calloutClassName, calloutRenderEdge = props.calloutRenderEdge;\n if (!theme) {\n throw new Error('theme is undefined or null in base Dropdown getStyles function.');\n }\n var globalClassnames = getGlobalClassNames(GlobalClassNames, theme);\n var palette = theme.palette, semanticColors = theme.semanticColors, effects = theme.effects, fonts = theme.fonts;\n var rootHoverFocusActiveSelectorNeutralDarkMixin = {\n color: semanticColors.menuItemTextHovered,\n };\n var rootHoverFocusActiveSelectorNeutralPrimaryMixin = {\n color: semanticColors.menuItemText,\n };\n var borderColorError = {\n borderColor: semanticColors.errorText,\n };\n var dropdownItemStyle = [\n globalClassnames.dropdownItem,\n {\n backgroundColor: 'transparent',\n boxSizing: 'border-box',\n cursor: 'pointer',\n display: 'flex',\n alignItems: 'center',\n padding: '0 8px',\n width: '100%',\n minHeight: DROPDOWN_ITEM_HEIGHT,\n lineHeight: 20,\n height: 0,\n position: 'relative',\n border: '1px solid transparent',\n borderRadius: 0,\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n textAlign: 'left',\n '.ms-Button-flexContainer': {\n width: '100%',\n },\n },\n ];\n var dropdownHeaderStyle = [\n globalClassnames.dropdownItemHeader,\n __assign(__assign({}, fonts.medium), { fontWeight: FontWeights.semibold, color: semanticColors.menuHeader, background: 'none', backgroundColor: 'transparent', border: 'none', height: DROPDOWN_ITEM_HEIGHT, lineHeight: DROPDOWN_ITEM_HEIGHT, cursor: 'default', padding: '0 8px', userSelect: 'none', textAlign: 'left', selectors: (_a = {},\n _a[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _a) }),\n ];\n var selectedItemBackgroundColor = semanticColors.menuItemBackgroundPressed;\n var itemSelectors = function (isSelected) {\n var _a, _b;\n if (isSelected === void 0) { isSelected = false; }\n return {\n selectors: (_a = {\n '&:hover': [\n {\n color: semanticColors.menuItemTextHovered,\n backgroundColor: !isSelected ? semanticColors.menuItemBackgroundHovered : selectedItemBackgroundColor,\n },\n highContrastItemAndTitleStateMixin,\n ],\n '&.is-multi-select:hover': [\n { backgroundColor: !isSelected ? 'transparent' : selectedItemBackgroundColor },\n highContrastItemAndTitleStateMixin,\n ],\n '&:active:hover': [\n {\n color: semanticColors.menuItemTextHovered,\n backgroundColor: !isSelected\n ? semanticColors.menuItemBackgroundPressed\n : semanticColors.menuItemBackgroundHovered,\n },\n highContrastItemAndTitleStateMixin,\n ]\n },\n _a[\".\".concat(IsFocusVisibleClassName, \" &:focus:after\")] = (_b = {\n left: 0,\n top: 0,\n bottom: 0,\n right: 0\n },\n _b[HighContrastSelector] = {\n inset: '2px',\n },\n _b),\n _a[HighContrastSelector] = {\n border: 'none',\n },\n _a),\n };\n };\n var dropdownItemSelected = __spreadArray(__spreadArray([], dropdownItemStyle, true), [\n {\n backgroundColor: selectedItemBackgroundColor,\n color: semanticColors.menuItemTextHovered,\n },\n itemSelectors(true),\n highContrastItemAndTitleStateMixin,\n ], false);\n var dropdownItemDisabled = __spreadArray(__spreadArray([], dropdownItemStyle, true), [\n {\n color: semanticColors.disabledText,\n cursor: 'default',\n selectors: (_b = {},\n _b[HighContrastSelector] = {\n color: 'GrayText',\n border: 'none',\n },\n _b),\n },\n ], false);\n var titleOpenBorderRadius = calloutRenderEdge === RectangleEdge.bottom\n ? \"\".concat(effects.roundedCorner2, \" \").concat(effects.roundedCorner2, \" 0 0\")\n : \"0 0 \".concat(effects.roundedCorner2, \" \").concat(effects.roundedCorner2);\n var calloutOpenBorderRadius = calloutRenderEdge === RectangleEdge.bottom\n ? \"0 0 \".concat(effects.roundedCorner2, \" \").concat(effects.roundedCorner2)\n : \"\".concat(effects.roundedCorner2, \" \").concat(effects.roundedCorner2, \" 0 0\");\n return {\n root: [globalClassnames.root, className],\n label: globalClassnames.label,\n dropdown: [\n globalClassnames.dropdown,\n normalize,\n fonts.medium,\n {\n color: semanticColors.menuItemText,\n borderColor: semanticColors.focusBorder,\n position: 'relative',\n outline: 0,\n userSelect: 'none',\n selectors: (_c = {},\n _c['&:hover .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { borderColor: isOpen ? palette.neutralSecondary : palette.neutralPrimary },\n highContrastBorderState,\n ],\n _c['&:focus .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { selectors: (_d = {}, _d[HighContrastSelector] = { color: 'Highlight' }, _d) },\n ],\n _c['&:focus:after'] = [\n {\n pointerEvents: 'none',\n content: \"''\",\n position: 'absolute',\n boxSizing: 'border-box',\n top: '0px',\n left: '0px',\n width: '100%',\n height: '100%',\n // see https://github.com/microsoft/fluentui/pull/9182 for semantic color disc\n border: !disabled ? \"2px solid \".concat(palette.themePrimary) : 'none',\n borderRadius: '2px',\n selectors: (_e = {},\n _e[HighContrastSelector] = {\n color: 'Highlight',\n },\n _e),\n },\n ],\n _c['&:active .' + globalClassnames.title] = [\n !disabled && rootHoverFocusActiveSelectorNeutralDarkMixin,\n { borderColor: palette.themePrimary },\n highContrastBorderState,\n ],\n _c['&:hover .' + globalClassnames.caretDown] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _c['&:focus .' + globalClassnames.caretDown] = [\n !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n { selectors: (_f = {}, _f[HighContrastSelector] = { color: 'Highlight' }, _f) },\n ],\n _c['&:active .' + globalClassnames.caretDown] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _c['&:hover .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _c['&:focus .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _c['&:active .' + globalClassnames.titleIsPlaceHolder] = !disabled && rootHoverFocusActiveSelectorNeutralPrimaryMixin,\n _c['&:hover .' + globalClassnames.titleHasError] = borderColorError,\n _c['&:active .' + globalClassnames.titleHasError] = borderColorError,\n _c),\n },\n isOpen && 'is-open',\n disabled && 'is-disabled',\n required && 'is-required',\n required &&\n !hasLabel && {\n selectors: (_g = {\n ':before': {\n content: \"'*'\",\n color: semanticColors.errorText,\n position: 'absolute',\n top: -5,\n right: -10,\n }\n },\n _g[HighContrastSelector] = {\n selectors: {\n ':after': {\n right: -14, // moving the * 4 pixel to right to alleviate border clipping in HC mode.\n },\n },\n },\n _g),\n },\n ],\n title: [\n globalClassnames.title,\n normalize,\n {\n backgroundColor: semanticColors.inputBackground,\n borderWidth: 1,\n borderStyle: 'solid',\n borderColor: semanticColors.inputBorder,\n borderRadius: isOpen ? titleOpenBorderRadius : effects.roundedCorner2,\n cursor: 'pointer',\n display: 'block',\n height: DROPDOWN_HEIGHT,\n lineHeight: DROPDOWN_HEIGHT - 2,\n padding: \"0 28px 0 8px\",\n position: 'relative',\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n },\n isRenderingPlaceholder && [globalClassnames.titleIsPlaceHolder, { color: semanticColors.inputPlaceholderText }],\n hasError && [globalClassnames.titleHasError, borderColorError],\n disabled && {\n backgroundColor: semanticColors.disabledBackground,\n border: 'none',\n color: semanticColors.disabledText,\n cursor: 'default',\n selectors: (_h = {},\n _h[HighContrastSelector] = __assign({ border: '1px solid GrayText', color: 'GrayText', backgroundColor: 'Window' }, getHighContrastNoAdjustStyle()),\n _h),\n },\n ],\n caretDownWrapper: [\n globalClassnames.caretDownWrapper,\n {\n height: DROPDOWN_HEIGHT,\n lineHeight: DROPDOWN_HEIGHT - 2,\n paddingTop: 1,\n position: 'absolute',\n right: 8,\n top: 0,\n },\n !disabled && {\n cursor: 'pointer',\n },\n ],\n caretDown: [\n globalClassnames.caretDown,\n { color: palette.neutralSecondary, fontSize: fonts.small.fontSize, pointerEvents: 'none' },\n disabled && {\n color: semanticColors.disabledText,\n selectors: (_j = {},\n _j[HighContrastSelector] = __assign({ color: 'GrayText' }, getHighContrastNoAdjustStyle()),\n _j),\n },\n ],\n errorMessage: __assign(__assign({ color: semanticColors.errorText }, theme.fonts.small), { paddingTop: 5 }),\n callout: [\n globalClassnames.callout,\n {\n boxShadow: effects.elevation8,\n borderRadius: calloutOpenBorderRadius,\n selectors: (_k = {},\n _k['.ms-Callout-main'] = { borderRadius: calloutOpenBorderRadius },\n _k),\n },\n calloutClassName,\n ],\n dropdownItemsWrapper: { selectors: { '&:focus': { outline: 0 } } },\n dropdownItems: [globalClassnames.dropdownItems, { display: 'block' }],\n dropdownItem: __spreadArray(__spreadArray([], dropdownItemStyle, true), [itemSelectors()], false),\n dropdownItemSelected: dropdownItemSelected,\n dropdownItemDisabled: dropdownItemDisabled,\n dropdownItemSelectedAndDisabled: [dropdownItemSelected, dropdownItemDisabled, { backgroundColor: 'transparent' }],\n dropdownItemHidden: __spreadArray(__spreadArray([], dropdownItemStyle, true), [{ display: 'none' }], false),\n dropdownDivider: [globalClassnames.dropdownDivider, { height: 1, backgroundColor: semanticColors.bodyDivider }],\n dropdownDividerHidden: [globalClassnames.dropdownDivider, { display: 'none' }],\n dropdownOptionText: [\n globalClassnames.dropdownOptionText,\n {\n overflow: 'hidden',\n whiteSpace: 'nowrap',\n textOverflow: 'ellipsis',\n minWidth: 0,\n maxWidth: '100%',\n wordWrap: 'break-word',\n overflowWrap: 'break-word',\n margin: '1px',\n },\n ],\n dropdownItemHeader: dropdownHeaderStyle,\n dropdownItemHeaderHidden: __spreadArray(__spreadArray([], dropdownHeaderStyle, true), [{ display: 'none' }], false),\n subComponentStyles: {\n label: { root: { display: 'inline-block' } },\n multiSelectItem: {\n root: {\n padding: 0,\n },\n label: {\n alignSelf: 'stretch',\n padding: '0 8px',\n width: '100%',\n },\n input: {\n selectors: (_l = {},\n _l[\".\".concat(IsFocusVisibleClassName, \" &:focus + label::before\")] = {\n outlineOffset: '0px',\n },\n _l),\n },\n },\n panel: {\n root: [panelClassName],\n main: {\n selectors: (_m = {},\n // In case of extra small screen sizes\n _m[MinimumScreenSelector] = {\n // panelWidth xs\n width: 272,\n },\n _m),\n },\n contentInner: { padding: '0 0 20px' },\n },\n },\n };\n};\n//# sourceMappingURL=Dropdown.styles.js.map","import { styled } from '../../Utilities';\nimport { DropdownBase } from './Dropdown.base';\nimport { getStyles } from './Dropdown.styles';\nexport var Dropdown = styled(DropdownBase, getStyles, undefined, {\n scope: 'Dropdown',\n});\nDropdown.displayName = 'Dropdown';\n//# sourceMappingURL=Dropdown.js.map","/**\n * {@docCategory MessageBar}\n */\nexport var MessageBarType;\n(function (MessageBarType) {\n /** Info styled MessageBar */\n MessageBarType[MessageBarType[\"info\"] = 0] = \"info\";\n /** Error styled MessageBar */\n MessageBarType[MessageBarType[\"error\"] = 1] = \"error\";\n /** Blocked styled MessageBar */\n MessageBarType[MessageBarType[\"blocked\"] = 2] = \"blocked\";\n /** SevereWarning styled MessageBar */\n MessageBarType[MessageBarType[\"severeWarning\"] = 3] = \"severeWarning\";\n /** Success styled MessageBar */\n MessageBarType[MessageBarType[\"success\"] = 4] = \"success\";\n /** Warning styled MessageBar */\n MessageBarType[MessageBarType[\"warning\"] = 5] = \"warning\";\n})(MessageBarType || (MessageBarType = {}));\n//# sourceMappingURL=MessageBar.types.js.map","var _a;\nimport { __assign } from \"tslib\";\nimport * as React from 'react';\nimport { DelayedRender, classNamesFunction, getNativeProps, htmlElementProperties, css } from '../../Utilities';\nimport { IconButton } from '../../Button';\nimport { Icon } from '../../Icon';\nimport { MessageBarType } from './MessageBar.types';\nimport { useId, useBoolean } from '@fluentui/react-hooks';\nvar ICON_MAP = (_a = {},\n _a[MessageBarType.info] = 'Info',\n _a[MessageBarType.warning] = 'Info',\n _a[MessageBarType.error] = 'ErrorBadge',\n _a[MessageBarType.blocked] = 'Blocked2',\n _a[MessageBarType.severeWarning] = 'Warning',\n _a[MessageBarType.success] = 'Completed',\n _a);\nvar COMPONENT_NAME = 'MessageBar';\nvar getClassNames = classNamesFunction();\nvar getAnnouncementPriority = function (messageBarType) {\n switch (messageBarType) {\n case MessageBarType.blocked:\n case MessageBarType.error:\n case MessageBarType.severeWarning:\n return 'assertive';\n }\n return 'polite';\n};\nvar getRole = function (messageBarType) {\n switch (messageBarType) {\n case MessageBarType.blocked:\n case MessageBarType.error:\n case MessageBarType.severeWarning:\n return 'alert';\n }\n return 'status';\n};\nexport var MessageBarBase = React.forwardRef(function (props, ref) {\n var _a = useBoolean(false), expandSingleLine = _a[0], toggleExpandSingleLine = _a[1].toggle;\n var labelId = useId('MessageBar');\n var actions = props.actions, className = props.className, children = props.children, \n // eslint-disable-next-line deprecation/deprecation\n overflowButtonAriaLabel = props.overflowButtonAriaLabel, dismissIconProps = props.dismissIconProps, styles = props.styles, theme = props.theme, _b = props.messageBarType, messageBarType = _b === void 0 ? MessageBarType.info : _b, _c = props.onDismiss, onDismiss = _c === void 0 ? undefined : _c, _d = props.isMultiline, isMultiline = _d === void 0 ? true : _d, truncated = props.truncated, dismissButtonAriaLabel = props.dismissButtonAriaLabel, messageBarIconProps = props.messageBarIconProps, role = props.role, _e = props.delayedRender, delayedRender = _e === void 0 ? true : _e, expandButtonProps = props.expandButtonProps;\n var nativeProps = getNativeProps(props, htmlElementProperties, [\n 'className',\n 'role',\n ]);\n var classNames = getClassNames(styles, {\n theme: theme,\n messageBarType: messageBarType || MessageBarType.info,\n onDismiss: onDismiss !== undefined,\n actions: actions !== undefined,\n truncated: truncated,\n isMultiline: isMultiline,\n expandSingleLine: expandSingleLine,\n className: className,\n });\n var expandIconProps = { iconName: expandSingleLine ? 'DoubleChevronUp' : 'DoubleChevronDown' };\n var regionProps = actions || onDismiss ? { 'aria-describedby': labelId, role: 'region' } : {};\n var actionsDiv = actions ? React.createElement(\"div\", { className: classNames.actions }, actions) : null;\n var dismissButton = onDismiss ? (React.createElement(IconButton, { disabled: false, className: classNames.dismissal, onClick: onDismiss, iconProps: dismissIconProps ? dismissIconProps : { iconName: 'Clear' }, title: dismissButtonAriaLabel, ariaLabel: dismissButtonAriaLabel })) : null;\n return (React.createElement(\"div\", __assign({ ref: ref, className: classNames.root }, regionProps),\n React.createElement(\"div\", { className: classNames.content },\n React.createElement(\"div\", { className: classNames.iconContainer, \"aria-hidden\": true }, messageBarIconProps ? (React.createElement(Icon, __assign({}, messageBarIconProps, { className: css(classNames.icon, messageBarIconProps.className) }))) : (React.createElement(Icon, { iconName: ICON_MAP[messageBarType], className: classNames.icon }))),\n React.createElement(\"div\", { className: classNames.text, id: labelId, role: role || getRole(messageBarType), \"aria-live\": getAnnouncementPriority(messageBarType) },\n React.createElement(\"span\", __assign({ className: classNames.innerText }, nativeProps), delayedRender ? (React.createElement(DelayedRender, null,\n React.createElement(\"span\", null, children))) : (\n // this span is probably not necessary, but preserving it for now in case anyone\n // has styling that expects it to be present\n React.createElement(\"span\", null, children)))),\n /* singleline expand/collapse button */ !isMultiline && !actionsDiv && truncated && (React.createElement(\"div\", { className: classNames.expandSingleLine },\n React.createElement(IconButton, __assign({ disabled: false, className: classNames.expand, onClick: toggleExpandSingleLine, iconProps: expandIconProps, ariaLabel: overflowButtonAriaLabel, \"aria-expanded\": expandSingleLine }, expandButtonProps)))),\n !isMultiline && actionsDiv,\n /* singleline dismiss */ !isMultiline && dismissButton && (React.createElement(\"div\", { className: classNames.dismissSingleLine }, dismissButton)),\n isMultiline && dismissButton),\n isMultiline && actionsDiv));\n});\nMessageBarBase.displayName = COMPONENT_NAME;\n//# sourceMappingURL=MessageBar.base.js.map","var _a, _b, _c, _d;\nimport { __assign } from \"tslib\";\nimport { HighContrastSelector, HighContrastSelectorWhite, ScreenWidthMaxSmall, getScreenSelector, getGlobalClassNames, getFocusStyle, IconFontSizes, getHighContrastNoAdjustStyle, } from '../../Styling';\nimport { MessageBarType } from './MessageBar.types';\nvar GlobalClassNames = {\n root: 'ms-MessageBar',\n error: 'ms-MessageBar--error',\n blocked: 'ms-MessageBar--blocked',\n severeWarning: 'ms-MessageBar--severeWarning',\n success: 'ms-MessageBar--success',\n warning: 'ms-MessageBar--warning',\n multiline: 'ms-MessageBar-multiline',\n singleline: 'ms-MessageBar-singleline',\n dismissalSingleLine: 'ms-MessageBar-dismissalSingleLine',\n expandingSingleLine: 'ms-MessageBar-expandingSingleLine',\n content: 'ms-MessageBar-content',\n iconContainer: 'ms-MessageBar-icon',\n text: 'ms-MessageBar-text',\n innerText: 'ms-MessageBar-innerText',\n dismissSingleLine: 'ms-MessageBar-dismissSingleLine',\n expandSingleLine: 'ms-MessageBar-expandSingleLine',\n dismissal: 'ms-MessageBar-dismissal',\n expand: 'ms-MessageBar-expand',\n actions: 'ms-MessageBar-actions',\n actionsSingleline: 'ms-MessageBar-actionsSingleLine',\n};\nvar backgroundColor = (_a = {},\n _a[MessageBarType.error] = 'errorBackground',\n _a[MessageBarType.blocked] = 'errorBackground',\n _a[MessageBarType.success] = 'successBackground',\n _a[MessageBarType.warning] = 'warningBackground',\n _a[MessageBarType.severeWarning] = 'severeWarningBackground',\n _a[MessageBarType.info] = 'infoBackground',\n _a);\nvar iconColor = (_b = {},\n _b[MessageBarType.error] = 'errorIcon',\n _b[MessageBarType.blocked] = 'errorIcon',\n _b[MessageBarType.success] = 'successIcon',\n _b[MessageBarType.warning] = 'warningIcon',\n _b[MessageBarType.severeWarning] = 'severeWarningIcon',\n _b[MessageBarType.info] = 'infoIcon',\n _b);\nvar highContrastBorderColor = (_c = {},\n _c[MessageBarType.error] = '#ff0000',\n _c[MessageBarType.blocked] = '#ff0000',\n _c[MessageBarType.success] = '#bad80a',\n _c[MessageBarType.warning] = '#fff100',\n _c[MessageBarType.severeWarning] = '#ff0000',\n _c[MessageBarType.info] = 'WindowText',\n _c);\nvar highContrastWhiteBorderColor = (_d = {},\n _d[MessageBarType.error] = '#e81123',\n _d[MessageBarType.blocked] = '#e81123',\n _d[MessageBarType.success] = '#107c10',\n _d[MessageBarType.warning] = '#966400',\n _d[MessageBarType.severeWarning] = '#d83b01',\n _d[MessageBarType.info] = 'WindowText',\n _d);\nexport var getStyles = function (props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;\n var theme = props.theme, className = props.className, onDismiss = props.onDismiss, truncated = props.truncated, isMultiline = props.isMultiline, expandSingleLine = props.expandSingleLine, _m = props.messageBarType, messageBarType = _m === void 0 ? MessageBarType.info : _m;\n var semanticColors = theme.semanticColors, fonts = theme.fonts;\n var SmallScreenSelector = getScreenSelector(0, ScreenWidthMaxSmall);\n var classNames = getGlobalClassNames(GlobalClassNames, theme);\n var dismissalAndExpandIconStyle = {\n fontSize: IconFontSizes.xSmall,\n height: 10,\n lineHeight: '10px',\n color: semanticColors.messageText,\n selectors: (_a = {},\n _a[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { color: 'WindowText' }),\n _a),\n };\n var dismissalAndExpandStyle = [\n getFocusStyle(theme, {\n inset: 1,\n highContrastStyle: {\n outlineOffset: '-6px',\n outline: '1px solid Highlight',\n },\n borderColor: 'transparent',\n }),\n {\n flexShrink: 0,\n width: 32,\n height: 32,\n padding: '8px 12px',\n selectors: {\n '& .ms-Button-icon': dismissalAndExpandIconStyle,\n ':hover': {\n backgroundColor: 'transparent',\n },\n ':active': {\n backgroundColor: 'transparent',\n },\n },\n },\n ];\n return {\n root: [\n classNames.root,\n fonts.medium,\n messageBarType === MessageBarType.error && classNames.error,\n messageBarType === MessageBarType.blocked && classNames.blocked,\n messageBarType === MessageBarType.severeWarning && classNames.severeWarning,\n messageBarType === MessageBarType.success && classNames.success,\n messageBarType === MessageBarType.warning && classNames.warning,\n isMultiline ? classNames.multiline : classNames.singleline,\n !isMultiline && onDismiss && classNames.dismissalSingleLine,\n !isMultiline && truncated && classNames.expandingSingleLine,\n {\n background: semanticColors[backgroundColor[messageBarType]],\n boxSizing: 'border-box',\n color: semanticColors.messageText,\n minHeight: 32,\n width: '100%',\n display: 'flex',\n wordBreak: 'break-word',\n selectors: (_b = {\n '.ms-Link': {\n color: semanticColors.messageLink,\n selectors: {\n ':hover': {\n color: semanticColors.messageLinkHovered,\n },\n },\n }\n },\n _b[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { background: 'transparent', border: \"1px solid \".concat(highContrastBorderColor[messageBarType]), color: 'WindowText' }),\n _b[HighContrastSelectorWhite] = {\n border: \"1px solid \".concat(highContrastWhiteBorderColor[messageBarType]),\n },\n _b),\n },\n isMultiline && {\n flexDirection: 'column',\n },\n className,\n ],\n content: [\n classNames.content,\n (_c = {\n display: 'flex',\n width: '100%',\n lineHeight: 'normal'\n },\n _c[SmallScreenSelector] = {\n display: 'grid',\n gridTemplateColumns: 'auto 1fr auto',\n gridTemplateRows: '1fr auto',\n gridTemplateAreas: \"\\n \\\"icon text close\\\"\\n \\\"action action action\\\"\\n \",\n },\n _c),\n ],\n iconContainer: [\n classNames.iconContainer,\n (_d = {\n fontSize: IconFontSizes.medium,\n minWidth: 16,\n minHeight: 16,\n display: 'flex',\n flexShrink: 0,\n margin: '8px 0 8px 12px'\n },\n _d[SmallScreenSelector] = {\n gridArea: 'icon',\n },\n _d),\n ],\n icon: {\n color: semanticColors[iconColor[messageBarType]],\n selectors: (_e = {},\n _e[HighContrastSelector] = __assign(__assign({}, getHighContrastNoAdjustStyle()), { color: 'WindowText' }),\n _e),\n },\n text: [\n classNames.text,\n __assign(__assign({ minWidth: 0, display: 'flex', flexGrow: 1, margin: 8 }, fonts.small), (_f = {}, _f[SmallScreenSelector] = {\n gridArea: 'text',\n }, _f.selectors = (_g = {},\n _g[HighContrastSelector] = __assign({}, getHighContrastNoAdjustStyle()),\n _g), _f)),\n !onDismiss && {\n marginRight: 12,\n },\n ],\n innerText: [\n classNames.innerText,\n {\n lineHeight: 16,\n selectors: {\n '& span a:last-child': {\n paddingLeft: 4,\n },\n },\n },\n truncated && {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n !isMultiline && {\n // In high contrast this causes the top and bottom of links' focus outline to be clipped\n // (not sure of a good way around that while still maintaining text clipping)\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n },\n !isMultiline &&\n !truncated && {\n selectors: (_h = {},\n _h[SmallScreenSelector] = {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n _h),\n },\n expandSingleLine && {\n overflow: 'visible',\n whiteSpace: 'pre-wrap',\n },\n ],\n dismissSingleLine: [\n classNames.dismissSingleLine,\n (_j = {},\n _j[SmallScreenSelector] = {\n gridArea: 'close',\n },\n _j),\n ],\n expandSingleLine: classNames.expandSingleLine,\n dismissal: [classNames.dismissal, dismissalAndExpandStyle],\n expand: [classNames.expand, dismissalAndExpandStyle],\n actions: [\n isMultiline ? classNames.actions : classNames.actionsSingleline,\n (_k = {\n display: 'flex',\n flexGrow: 0,\n flexShrink: 0,\n flexBasis: 'auto',\n flexDirection: 'row-reverse',\n alignItems: 'center',\n margin: '0 12px 0 8px',\n // reset forced colors to browser control for inner actions\n forcedColorAdjust: 'auto',\n MsHighContrastAdjust: 'auto'\n },\n _k[SmallScreenSelector] = {\n gridArea: 'action',\n marginRight: 8,\n marginBottom: 8,\n },\n _k.selectors = {\n '& button:nth-child(n+2)': (_l = {\n marginLeft: 8\n },\n _l[SmallScreenSelector] = {\n marginBottom: 0,\n },\n _l),\n },\n _k),\n isMultiline && {\n marginBottom: 8,\n },\n onDismiss &&\n !isMultiline && {\n marginRight: 0,\n },\n ],\n };\n};\n//# sourceMappingURL=MessageBar.styles.js.map","import { styled } from '../../Utilities';\nimport { MessageBarBase } from './MessageBar.base';\nimport { getStyles } from './MessageBar.styles';\nexport var MessageBar = styled(MessageBarBase, getStyles, undefined, {\n scope: 'MessageBar',\n});\n//# sourceMappingURL=MessageBar.js.map","import { getWindow } from '@fluentui/utilities';\n/**\n * Wrapper for ResizeObserver, with fallback for browsers that don't support ResizeObserver.\n *\n * Calls the onResize callback once layout is complete, and again whenever any of the target(s) change size.\n * Or if ResizeObserver isn't supported, calls the callback whenever the window changes size.\n *\n * @param target - Either a single element, or array of elements to watch for size changes.\n * @param onResize - Callback to be notified when layout is complete, and when the target(s) change size.\n * If this browser supports ResizeObserver, the callback will be passed the ResizeObserverEntry[] array.\n * Otherwise, the entries array will be undefined, and you'll need to find another way to get the element's size,\n * (e.g. clientWidth/clientHeight or getBoundingClientRect).\n *\n * @returns A function to clean up the observer/listener.\n */\nexport var observeResize = function (target, onResize) {\n if (typeof ResizeObserver !== 'undefined') {\n var observer_1 = new ResizeObserver(onResize);\n if (Array.isArray(target)) {\n target.forEach(function (t) { return observer_1.observe(t); });\n }\n else {\n observer_1.observe(target);\n }\n return function () { return observer_1.disconnect(); };\n }\n else {\n // Fallback for browsers that don't support ResizeObserver\n var onResizeWrapper_1 = function () { return onResize(undefined); };\n var win_1 = getWindow(Array.isArray(target) ? target[0] : target);\n if (!win_1) {\n // Can't listen for resize if we can't get the window object\n return function () {\n // Nothing to clean up\n };\n }\n // Listen for the first animation frame, which will happen after layout is complete\n var animationFrameId_1 = win_1.requestAnimationFrame(onResizeWrapper_1);\n win_1.addEventListener('resize', onResizeWrapper_1, false);\n return function () {\n win_1.cancelAnimationFrame(animationFrameId_1);\n win_1.removeEventListener('resize', onResizeWrapper_1, false);\n };\n }\n};\n//# sourceMappingURL=observeResize.js.map","import * as React from 'react';\nimport { useIsomorphicLayoutEffect, useRefEffect } from '@fluentui/react-hooks';\nimport { getWindow } from '@fluentui/utilities';\nimport { observeResize } from './observeResize';\n/**\n * Track whether any items don't fit within their container, and move them to the overflow menu.\n * Items are moved into the overflow menu from back to front, excluding pinned items.\n *\n * The overflow menu button must be the last sibling of all of the items that can be put into the overflow, and it\n * must be hooked up to the `setMenuButtonRef` setter function that's returned by `useOverflow`:\n * ```ts\n * const overflow = useOverflow(...);\n * ```\n * ```jsx\n * \n * // Index 0\n * // Index 1\n * ...\n *
\n \n );\n};\n","import styles from \"./Example.module.css\";\n\ninterface Props {\n text: string;\n value: string;\n onClick: (value: string) => void;\n}\n\nexport const Example = ({ text, value, onClick }: Props) => {\n return (\n
onClick(value)}>\n

{text}

\n
\n );\n};\n","import { Example } from \"./Example\";\n\nimport styles from \"./Example.module.css\";\n\nconst DEFAULT_EXAMPLES: string[] = [\n \"Best shoe for hiking?\",\n \"Climbing gear cheaper than $30?\",\n \"Waterproof camping gear?\",\n];\n\ninterface Props {\n onExampleClicked: (value: string) => void\n}\n\nexport const ExampleList = ({ onExampleClicked }: Props) => {\n return (\n \n );\n};\n","import styles from \"./UserChatMessage.module.css\";\n\ninterface Props {\n message: string;\n}\n\nexport const UserChatMessage = ({ message }: Props) => {\n return (\n
\n
{message}
\n
\n );\n};\n","import DOMPurify from \"dompurify\";\n\ntype ParsedSupportingContentItem = {\n title: string;\n content: string;\n};\n\nexport function parseSupportingContentItem(item: string): ParsedSupportingContentItem {\n // Assumes the item starts with the file name followed by : and the content.\n // Example: \"sdp_corporate.pdf: this is the content that follows\".\n const parts = item.split(\": \");\n const title = parts[0];\n const content = DOMPurify.sanitize(parts.slice(1).join(\": \"));\n\n return {\n title,\n content\n };\n}\n","import { parseSupportingContentItem } from \"./SupportingContentParser\";\n\nimport styles from \"./SupportingContent.module.css\";\n\ninterface Props {\n supportingContent: string[] | { text: string[]; images?: { url: string }[] };\n}\n\nexport const SupportingContent = ({ supportingContent }: Props) => {\n const textItems = Array.isArray(supportingContent) ? supportingContent : supportingContent.text;\n const imageItems = !Array.isArray(supportingContent) ? supportingContent?.images : [];\n return (\n \n );\n};\n","export enum AnalysisPanelTabs {\n ThoughtProcessTab = \"thoughtProcess\",\n SupportingContentTab = \"supportingContent\",\n CitationTab = \"citation\"\n}\n","import { Stack } from \"@fluentui/react\";\nimport SyntaxHighlighter from \"react-syntax-highlighter\";\n\nimport styles from \"./AnalysisPanel.module.css\";\n\nimport { Thoughts } from \"../../api\";\n\ninterface Props {\n thoughts: Thoughts[];\n}\n\nexport const ThoughtProcess = ({ thoughts }: Props) => {\n return (\n \n );\n};\n","import React, { useState, useEffect } from \"react\";\nimport { marked } from \"marked\";\nimport styles from \"./MarkdownViewer.module.css\";\nimport { Spinner, SpinnerSize, MessageBar, MessageBarType, Link, IconButton } from \"@fluentui/react\";\n\ninterface MarkdownViewerProps {\n src: string;\n}\n\nexport const MarkdownViewer: React.FC = ({ src }) => {\n const [content, setContent] = useState(\"\");\n const [isLoading, setIsLoading] = useState(true);\n const [error, setError] = useState(null);\n\n /**\n * Anchor links are not handled well by 'marked' and result in HTTP 404 errors as the URL they point to does not exist.\n * This function removes them from the resulted HTML.\n */\n const removeAnchorLinks = (html: string) => {\n const ancorLinksRegex = /]*?\\s+)?href=['\"](#[^\"']*?)['\"][^>]*?>/g;\n return html.replace(ancorLinksRegex, \"\");\n };\n\n useEffect(() => {\n const fetchMarkdown = async () => {\n try {\n const response = await fetch(src);\n\n if (!response.ok) {\n throw new Error(\"Failed loading markdown file.\");\n }\n\n const markdownText = await response.text();\n const parsedHtml = await marked.parse(markdownText);\n const cleanedHtml = removeAnchorLinks(parsedHtml);\n setContent(cleanedHtml);\n } catch (error: any) {\n setError(error);\n } finally {\n setIsLoading(false);\n }\n };\n\n fetchMarkdown();\n }, [src]);\n\n return (\n
\n {isLoading ? (\n
\n \n
\n ) : error ? (\n
\n \n {error.message}\n \n Download the file\n \n \n
\n ) : (\n
\n \n
\n
\n )}\n
\n );\n};\n","import { Stack, Pivot, PivotItem } from \"@fluentui/react\";\n\nimport styles from \"./AnalysisPanel.module.css\";\n\nimport { SupportingContent } from \"../SupportingContent\";\nimport { ChatAppResponse } from \"../../api\";\nimport { AnalysisPanelTabs } from \"./AnalysisPanelTabs\";\nimport { ThoughtProcess } from \"./ThoughtProcess\";\nimport { MarkdownViewer } from \"../MarkdownViewer\";\nimport { useState, useEffect } from \"react\";\n\ninterface Props {\n className: string;\n activeTab: AnalysisPanelTabs;\n onActiveTabChanged: (tab: AnalysisPanelTabs) => void;\n activeCitation: string | undefined;\n citationHeight: string;\n answer: ChatAppResponse;\n}\n\nconst pivotItemDisabledStyle = { disabled: true, style: { color: \"grey\" } };\n\nexport const AnalysisPanel = ({ answer, activeTab, activeCitation, citationHeight, className, onActiveTabChanged }: Props) => {\n const isDisabledThoughtProcessTab: boolean = !answer.choices[0].context.thoughts;\n const isDisabledSupportingContentTab: boolean = !answer.choices[0].context.data_points;\n const isDisabledCitationTab: boolean = !activeCitation;\n const [citation, setCitation] = useState(\"\");\n\n\n const fetchCitation = async () => {\n if (activeCitation) {\n // Get hash from the URL as it may contain #page=N\n // which helps browser PDF renderer jump to correct page N\n const originalHash = activeCitation.indexOf(\"#\") ? activeCitation.split(\"#\")[1] : \"\";\n const response = await fetch(activeCitation, {\n method: \"GET\"\n });\n const citationContent = await response.blob();\n let citationObjectUrl = URL.createObjectURL(citationContent);\n // Add hash back to the new blob URL\n if (originalHash) {\n citationObjectUrl += \"#\" + originalHash;\n }\n setCitation(citationObjectUrl);\n }\n };\n useEffect(() => {\n fetchCitation();\n }, []);\n\n const renderFileViewer = () => {\n if (!activeCitation) {\n return null;\n }\n\n const fileExtension = activeCitation.split(\".\").pop()?.toLowerCase();\n switch (fileExtension) {\n case \"png\":\n return \"Citation;\n case \"md\":\n return ;\n default:\n return