diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 11a443e3..fdf0ba6b 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -2,11 +2,11 @@ name: "CodeQL"
 
 on:
   push:
-    branches: [ "main" ]
+    branches: ["main"]
   pull_request:
-    branches: [ "main" ]
+    branches: ["main"]
   schedule:
-    - cron: '42 14 * * 4'
+    - cron: "42 14 * * 4"
 
 jobs:
   analyze:
@@ -21,21 +21,21 @@ jobs:
       fail-fast: false
       matrix:
         include:
-        - language: javascript-typescript
-          build-mode: none
-        
+          - language: javascript-typescript
+            build-mode: none
+
     steps:
-    - name: Checkout repository
-      uses: actions/checkout@v4
+      - name: Checkout repository
+        uses: actions/checkout@v4
 
-    # Initializes the CodeQL tools for scanning.
-    - name: Initialize CodeQL
-      uses: github/codeql-action/init@v3
-      with:
-        languages: ${{ matrix.language }}
-        build-mode: ${{ matrix.build-mode }}
+      # Initializes the CodeQL tools for scanning.
+      - name: Initialize CodeQL
+        uses: github/codeql-action/init@v3
+        with:
+          languages: ${{ matrix.language }}
+          build-mode: ${{ matrix.build-mode }}
 
-    - name: Perform CodeQL Analysis
-      uses: github/codeql-action/analyze@v3
-      with:
-        category: "/language:${{matrix.language}}"
+      - name: Perform CodeQL Analysis
+        uses: github/codeql-action/analyze@v3
+        with:
+          category: "/language:${{matrix.language}}"
diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml
index cbe8c8bc..28989925 100644
--- a/.github/workflows/npm-publish.yml
+++ b/.github/workflows/npm-publish.yml
@@ -9,7 +9,7 @@ jobs:
       - uses: actions/checkout@v3
       - uses: actions/setup-node@v3
         with:
-          node-version: "18.x"
+          node-version: "20.x"
           registry-url: "https://registry.npmjs.org"
 
       - run: yarn install
diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml
index 84e99947..dce1d88e 100644
--- a/.github/workflows/test-build.yml
+++ b/.github/workflows/test-build.yml
@@ -12,6 +12,6 @@ jobs:
       - uses: actions/checkout@v3
       - uses: actions/setup-node@v3
         with:
-          node-version: 18
+          node-version: 20
       - run: yarn install
       - run: yarn build
diff --git a/.husky/post-merge b/.husky/post-merge
index 27443865..a2c24131 100755
--- a/.husky/post-merge
+++ b/.husky/post-merge
@@ -1,4 +1 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
 yarn install-if-package-changed
diff --git a/.husky/pre-commit b/.husky/pre-commit
index 025779ed..c4778ab5 100755
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
 yarn pre-commit
diff --git a/.nvmrc b/.nvmrc
index 3f430af8..9a2a0e21 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-v18
+v20
diff --git a/@stellar/design-system-website/docs/components/accents/tooltip.mdx b/@stellar/design-system-website/docs/components/accents/tooltip.mdx
index 8fa582ef..dfe7cb7f 100644
--- a/@stellar/design-system-website/docs/components/accents/tooltip.mdx
+++ b/@stellar/design-system-website/docs/components/accents/tooltip.mdx
@@ -11,8 +11,13 @@ description: "Tooltip is used to display info in a bubble."
 
 ```tsx live
 <PreviewBlock componentName="Tooltip">
-  <Tooltip isVisible isContrast triggerEl={<>Tooltip trigger</>}>
-    Lorem ipsum dolor sit
+  <Tooltip
+    isVisible
+    isContrast
+    triggerEl={<>Tooltip trigger</>}
+    title="Lorem ipsum dolor sit"
+  >
+    Lorem, ipsum dolor sit amet consectetur adipis elit.
   </Tooltip>
 </PreviewBlock>
 ```
diff --git a/@stellar/design-system-website/docs/components/buttons/button.mdx b/@stellar/design-system-website/docs/components/buttons/button.mdx
index 8552d9f7..4255f08d 100644
--- a/@stellar/design-system-website/docs/components/buttons/button.mdx
+++ b/@stellar/design-system-website/docs/components/buttons/button.mdx
@@ -11,7 +11,7 @@ description: "Used to trigger an action that is not opening a link."
 
 ```tsx live
 <PreviewBlock componentName="Button">
-  <Button variant="primary" size="md">
+  <Button variant="primary" size="sm">
     Button
   </Button>
 </PreviewBlock>
diff --git a/@stellar/design-system-website/docs/components/buttons/copy-text.mdx b/@stellar/design-system-website/docs/components/buttons/copy-text.mdx
index d8168134..5af20cfd 100644
--- a/@stellar/design-system-website/docs/components/buttons/copy-text.mdx
+++ b/@stellar/design-system-website/docs/components/buttons/copy-text.mdx
@@ -17,4 +17,11 @@ description: "Copy text component with an optional tooltip."
 
 ## Props
 
-<ComponentProps componentName="CopyText" />
+<ComponentProps
+  componentName="CopyText"
+  relatedType={[
+    "CopyTextVariantProps",
+    "CopyTextEllipsisProps",
+    "CopyTextBaseProps",
+  ]}
+/>
diff --git a/@stellar/design-system-website/docs/components/buttons/icon-button.mdx b/@stellar/design-system-website/docs/components/buttons/icon-button.mdx
index a74261ac..96a07518 100644
--- a/@stellar/design-system-website/docs/components/buttons/icon-button.mdx
+++ b/@stellar/design-system-website/docs/components/buttons/icon-button.mdx
@@ -11,7 +11,7 @@ description: "Button with icon as a label."
 
 ```tsx live
 <PreviewBlock componentName="IconButton">
-  <IconButton altText="Default" icon={<Icon.Info />} />
+  <IconButton altText="Default" icon={<Icon.InfoCircle />} />
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/buttons/nav-button.mdx b/@stellar/design-system-website/docs/components/buttons/nav-button.mdx
index a5a6e1a6..7ef23bc6 100644
--- a/@stellar/design-system-website/docs/components/buttons/nav-button.mdx
+++ b/@stellar/design-system-website/docs/components/buttons/nav-button.mdx
@@ -12,7 +12,7 @@ description: "Trigger actions like toggle dark mode, close a modal, etc."
 ```tsx live
 <PreviewBlock componentName="NavButton">
   <NavButton
-    icon={<Icon.Menu />}
+    icon={<Icon.Menu01 />}
     id="nav-button"
     onClick={() => {}}
     title="Menu"
diff --git a/@stellar/design-system-website/docs/components/containers/modal.mdx b/@stellar/design-system-website/docs/components/containers/modal.mdx
index cd400f3a..e393c05e 100644
--- a/@stellar/design-system-website/docs/components/containers/modal.mdx
+++ b/@stellar/design-system-website/docs/components/containers/modal.mdx
@@ -12,15 +12,6 @@ description: "A dialog window with an overlay background."
 ```tsx live
 <PreviewBlock componentName="Modal">
   <>
-    <Modal onClose={() => {}} parentId="preview-block">
-      <p>
-        Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur eius
-        beatae sint dolorem, excepturi quos enim, et ullam suscipit voluptates
-        voluptas accusantium repellendus amet explicabo, iure veritatis aperiam
-        alias molestiae.
-      </p>
-    </Modal>
-
     <Modal onClose={() => {}} parentId="preview-block">
       <Modal.Heading>Modal heading</Modal.Heading>
       <Modal.Body>
@@ -49,7 +40,7 @@ description: "A dialog window with an overlay background."
         <Button size="sm" variant="primary">
           Submit
         </Button>
-        <Button size="sm" variant="secondary">
+        <Button size="sm" variant="tertiary">
           Cancel
         </Button>
       </Modal.Footer>
diff --git a/@stellar/design-system-website/docs/components/elements/asset-icon.mdx b/@stellar/design-system-website/docs/components/elements/asset-icon.mdx
deleted file mode 100644
index 8bc65fc8..00000000
--- a/@stellar/design-system-website/docs/components/elements/asset-icon.mdx
+++ /dev/null
@@ -1,28 +0,0 @@
----
-slug: /asset-icon
-description: "Asset image displayed in a circle."
----
-
-# Asset icon
-
-<ComponentDescription componentName="AssetIcon" />
-
-## Example
-
-```tsx live
-<PreviewBlock componentName="AssetIcon">
-  <AssetIcon
-    source={[
-      {
-        altText: "XLM",
-        image: "https://cryptologos.cc/logos/stellar-xlm-logo.svg?v=024",
-        imageSize: "80%",
-      },
-    ]}
-  />
-</PreviewBlock>
-```
-
-## Props
-
-<ComponentProps componentName="AssetIcon" relatedType={["AssetIconSource"]} />
diff --git a/@stellar/design-system-website/docs/components/elements/asset.mdx b/@stellar/design-system-website/docs/components/elements/asset.mdx
new file mode 100644
index 00000000..0e4c7774
--- /dev/null
+++ b/@stellar/design-system-website/docs/components/elements/asset.mdx
@@ -0,0 +1,35 @@
+---
+slug: /asset
+description: "Asset or asset pair displayed in a circle."
+---
+
+# Asset
+
+<ComponentDescription componentName="Asset" />
+
+## Example
+
+```tsx live
+<PreviewBlock componentName="Asset">
+  <Asset
+    variant="single"
+    size="sm"
+    sourceOne={{
+      image: "https://cryptologos.cc/logos/stellar-xlm-logo.svg?v=024",
+      altText: "XLM",
+    }}
+  />
+</PreviewBlock>
+```
+
+## Props
+
+<ComponentProps
+  componentName="Asset"
+  relatedType={[
+    "AssetBaseProps",
+    "SingleAssetProps",
+    "MultiAssetProps",
+    "AssetSource",
+  ]}
+/>
diff --git a/@stellar/design-system-website/docs/components/elements/avatar.mdx b/@stellar/design-system-website/docs/components/elements/avatar.mdx
index be60af41..88b6f05e 100644
--- a/@stellar/design-system-website/docs/components/elements/avatar.mdx
+++ b/@stellar/design-system-website/docs/components/elements/avatar.mdx
@@ -1,6 +1,6 @@
 ---
 slug: /avatar
-description: "Identicon as an avatar."
+description: "Avatar as an identicon, user initials, or a profile icon."
 ---
 
 # Avatar
@@ -11,10 +11,17 @@ description: "Identicon as an avatar."
 
 ```tsx live
 <PreviewBlock componentName="Avatar">
-  <Avatar publicAddress="GD4XW236EFCESNO4RKGG5PWML2WNQIJS335XECBW4GRARXKE64VIMOLZ" />
+  <Avatar size="sm" />
 </PreviewBlock>
 ```
 
 ## Props
 
-<ComponentProps componentName="Avatar" />
+<ComponentProps
+  componentName="Avatar"
+  relatedType={[
+    "AvatarBaseProps",
+    "AvatarStellarAddressProps",
+    "AvatarUserNameProps",
+  ]}
+/>
diff --git a/@stellar/design-system-website/docs/components/inputs/checkbox.mdx b/@stellar/design-system-website/docs/components/inputs/checkbox.mdx
index 0e2560ee..11ab1c9d 100644
--- a/@stellar/design-system-website/docs/components/inputs/checkbox.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/checkbox.mdx
@@ -11,7 +11,7 @@ description: "Form input for single and multiple selections."
 
 ```tsx live
 <PreviewBlock componentName="Checkbox">
-  <Checkbox fieldSize="md" id="checkbox" />
+  <Checkbox fieldSize="sm" id="checkbox" />
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/inputs/input.mdx b/@stellar/design-system-website/docs/components/inputs/input.mdx
index 8481f284..524732f2 100644
--- a/@stellar/design-system-website/docs/components/inputs/input.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/input.mdx
@@ -11,10 +11,10 @@ description: "Form input for a single line of text."
 
 ```tsx live
 <PreviewBlock componentName="Input">
-  <Input fieldSize="md" id="input" />
+  <Input fieldSize="sm" id="input" />
 </PreviewBlock>
 ```
 
 ## Props
 
-<ComponentProps componentName="Input" />
+<ComponentProps componentName="Input" relatedType={["InputCopyButton"]} />
diff --git a/@stellar/design-system-website/docs/components/inputs/radio-button.mdx b/@stellar/design-system-website/docs/components/inputs/radio-button.mdx
index 569e8319..7d698edc 100644
--- a/@stellar/design-system-website/docs/components/inputs/radio-button.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/radio-button.mdx
@@ -11,7 +11,7 @@ description: "Form input for a single selection."
 
 ```tsx live
 <PreviewBlock componentName="RadioButton">
-  <RadioButton fieldSize="md" id="radio" label="Label" />
+  <RadioButton fieldSize="sm" id="radio" label="Label" />
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/inputs/select.mdx b/@stellar/design-system-website/docs/components/inputs/select.mdx
index e472af69..93761ba2 100644
--- a/@stellar/design-system-website/docs/components/inputs/select.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/select.mdx
@@ -11,7 +11,7 @@ description: "Form input for selecting a single option from a list."
 
 ```tsx live
 <PreviewBlock componentName="Select">
-  <Select fieldSize="md" id="select">
+  <Select fieldSize="sm" id="select">
     <option>Option 1</option>
     <option>Option 2</option>
   </Select>
diff --git a/@stellar/design-system-website/docs/components/inputs/textarea.mdx b/@stellar/design-system-website/docs/components/inputs/textarea.mdx
index f0151675..7baaa25f 100644
--- a/@stellar/design-system-website/docs/components/inputs/textarea.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/textarea.mdx
@@ -11,7 +11,7 @@ description: "Form input for multiple lines of text."
 
 ```tsx live
 <PreviewBlock componentName="Textarea">
-  <Textarea fieldSize="md" id="textarea"></Textarea>
+  <Textarea fieldSize="sm" id="textarea"></Textarea>
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/inputs/toggle.mdx b/@stellar/design-system-website/docs/components/inputs/toggle.mdx
index a7bb88cb..223c4e09 100644
--- a/@stellar/design-system-website/docs/components/inputs/toggle.mdx
+++ b/@stellar/design-system-website/docs/components/inputs/toggle.mdx
@@ -11,7 +11,7 @@ description: "Toggle a setting on or off."
 
 ```tsx live
 <PreviewBlock componentName="Toggle">
-  <Toggle id="toggle" />
+  <Toggle id="toggle" fieldSize="sm" />
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/notifications/alert.mdx b/@stellar/design-system-website/docs/components/notifications/alert.mdx
new file mode 100644
index 00000000..65532c90
--- /dev/null
+++ b/@stellar/design-system-website/docs/components/notifications/alert.mdx
@@ -0,0 +1,25 @@
+---
+slug: /alert
+description: "Display an alert message inline or at the bottom of the page."
+---
+
+# Alert
+
+<ComponentDescription componentName="Alert" />
+
+## Example
+
+```tsx live
+<PreviewBlock componentName="Alert">
+  <Alert variant="primary" placement="inline">
+    Lorem ipsum dolor sit amet consectetur adipisicing elit
+  </Alert>
+</PreviewBlock>
+```
+
+## Props
+
+<ComponentProps
+  componentName="Alert"
+  relatedType={["AlertBaseProps", "AlertActionButton", "AlertActionLink"]}
+/>
diff --git a/@stellar/design-system-website/docs/components/notifications/banner.mdx b/@stellar/design-system-website/docs/components/notifications/banner.mdx
index 5642b7dd..02dde42d 100644
--- a/@stellar/design-system-website/docs/components/notifications/banner.mdx
+++ b/@stellar/design-system-website/docs/components/notifications/banner.mdx
@@ -11,7 +11,9 @@ description: "Display message at the top of the page."
 
 ```tsx live
 <PreviewBlock componentName="Banner">
-  <Banner variant="default">Banner message</Banner>
+  <Banner variant="primary">
+    Lorem ipsum dolor sit amet consectetur adipisicing elit
+  </Banner>
 </PreviewBlock>
 ```
 
diff --git a/@stellar/design-system-website/docs/components/profile/profile.mdx b/@stellar/design-system-website/docs/components/profile/profile.mdx
index f496fcdf..39eedab3 100644
--- a/@stellar/design-system-website/docs/components/profile/profile.mdx
+++ b/@stellar/design-system-website/docs/components/profile/profile.mdx
@@ -13,7 +13,7 @@ description: "Avatar with Stellar address."
 <PreviewBlock componentName="Profile">
   <Profile
     publicAddress="GAVL6PM6TDJ7FBRCRL6GJ5WO2TWSH6ZRNU2HOARQ4RYMDUGSW7XWS57G"
-    size="md"
+    size="sm"
   />
 </PreviewBlock>
 ```
diff --git a/@stellar/design-system-website/docs/foundations/colors.mdx b/@stellar/design-system-website/docs/foundations/colors.mdx
index 24e64400..e10cfb72 100644
--- a/@stellar/design-system-website/docs/foundations/colors.mdx
+++ b/@stellar/design-system-website/docs/foundations/colors.mdx
@@ -18,167 +18,318 @@ Product colors in a design system serve as a key element for establishing a
 consistent and recognizable visual identity, fostering brand recognition, and
 creating a cohesive and harmonious user experience across various touchpoints.
 
-### Brand
+### Gray
 
 <ColorPalette
   colors={[
     {
       hex: {
-        light: "#fbfaff",
+        light: "#fcfcfc",
+        dark: "#161616",
+      },
+      variable: "--sds-clr-gray-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#f8f8f8",
+        dark: "#1c1c1c",
+      },
+      variable: "--sds-clr-gray-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#f3f3f3",
+        dark: "#232323",
+      },
+      variable: "--sds-clr-gray-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#ededed",
+        dark: "#282828",
+      },
+      variable: "--sds-clr-gray-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#e8e8e8",
+        dark: "#2e2e2e",
+      },
+      variable: "--sds-clr-gray-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#e2e2e2",
+        dark: "#343434",
+      },
+      variable: "--sds-clr-gray-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#dbdbdb",
+        dark: "#3e3e3e",
+      },
+      variable: "--sds-clr-gray-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#c7c7c7",
+        dark: "#505050",
+      },
+      variable: "--sds-clr-gray-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#8f8f8f",
+        dark: "#707070",
+      },
+      variable: "--sds-clr-gray-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#858585",
+        dark: "#7e7e7e",
+      },
+      variable: "--sds-clr-gray-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#6f6f6f",
+        dark: "#a0a0a0",
+      },
+      variable: "--sds-clr-gray-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#171717",
+        dark: "#ededed",
+      },
+      variable: "--sds-clr-gray-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Lilac
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fdfcfe",
         dark: "#17151f",
       },
-      variable: "--color-purple-10",
-      name: "Purple 10",
+      variable: "--sds-clr-lilac-01",
+      name: "1",
     },
     {
       hex: {
-        light: "#f5f2ff",
+        light: "#fbfaff",
         dark: "#1c172b",
       },
-      variable: "--color-purple-20",
-      name: "Purple 20",
+      variable: "--sds-clr-lilac-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#f5f2ff",
+        dark: "#251e40",
+      },
+      variable: "--sds-clr-lilac-03",
+      name: "3",
     },
     {
       hex: {
         light: "#ede9fe",
         dark: "#2c2250",
       },
-      variable: "--color-purple-30",
-      name: "Purple 30",
+      variable: "--sds-clr-lilac-04",
+      name: "4",
     },
     {
       hex: {
         light: "#e4defc",
         dark: "#32275f",
       },
-      variable: "--color-purple-40",
-      name: "Purple 40",
+      variable: "--sds-clr-lilac-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#d7cff9",
+        dark: "#392c72",
+      },
+      variable: "--sds-clr-lilac-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#c4b8f3",
+        dark: "#443592",
+      },
+      variable: "--sds-clr-lilac-07",
+      name: "7",
     },
     {
       hex: {
         light: "#aa99ec",
-        dark: "#634cc9",
+        dark: "#5842c3",
       },
-      variable: "--color-purple-50",
-      name: "Purple 50",
+      variable: "--sds-clr-lilac-08",
+      name: "8",
     },
     {
       hex: {
         light: "#6e56cf",
+        dark: "#6e56cf",
+      },
+      variable: "--sds-clr-lilac-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#644fc1",
         dark: "#7c66dc",
       },
-      variable: "--color-purple-60",
-      name: "Purple 60",
+      variable: "--sds-clr-lilac-10",
+      name: "10",
     },
     {
       hex: {
         light: "#5746af",
         dark: "#9e8cfc",
       },
-      variable: "--color-purple-70",
-      name: "Purple 70",
+      variable: "--sds-clr-lilac-11",
+      name: "11",
     },
     {
       hex: {
         light: "#20134b",
         dark: "#f1eefe",
       },
-      variable: "--color-purple-80",
-      name: "Purple 80",
+      variable: "--sds-clr-lilac-12",
+      name: "12",
     },
   ]}
 />
 
-### Grayscale
+### Base
 
 <ColorPalette
   colors={[
     {
       hex: {
-        light: "#f9f8f9",
-        dark: "#161618",
+        light: "#ffffff",
+        dark: "#000000",
       },
-      variable: "--color-gray-10",
-      name: "Gray 10",
+      variable: "--sds-clr-base-00",
+      name: "0",
     },
     {
       hex: {
-        light: "#f4f2f4",
-        dark: "#1c1c1f",
+        light: "#000000",
+        dark: "#ffffff",
       },
-      variable: "--color-gray-20",
-      name: "Gray 20",
+      variable: "--sds-clr-base-01",
+      name: "1",
     },
+  ]}
+/>
+
+### Overlay
+
+<ColorPalette
+  colors={[
     {
       hex: {
-        light: "#eeedef",
-        dark: "#28282c",
+        light: "rgba(0, 0, 0, 0.1)",
+        dark: "rgba(255, 255, 255, 0.1)",
       },
-      variable: "--color-gray-30",
-      name: "Gray 30",
+      variable: "--sds-overlay-01",
+      name: "1",
     },
     {
       hex: {
-        light: "#e9e8ea",
-        dark: "#2e2e32",
+        light: "rgba(0, 0, 0, 0.2)",
+        dark: "rgba(255, 255, 255, 0.2)",
       },
-      variable: "--color-gray-40",
-      name: "Gray 40",
+      variable: "--sds-overlay-02",
+      name: "2",
     },
     {
       hex: {
-        light: "#c8c7cb",
-        dark: "#706f78",
+        light: "rgba(0, 0, 0, 0.3)",
+        dark: "rgba(255, 255, 255, 0.3)",
       },
-      variable: "--color-gray-50",
-      name: "Gray 50",
+      variable: "--sds-overlay-03",
+      name: "3",
     },
     {
       hex: {
-        light: "#908e96",
-        dark: "#7e7d86",
+        light: "rgba(0, 0, 0, 0.4)",
+        dark: "rgba(255, 255, 255, 0.4)",
       },
-      variable: "--color-gray-60",
-      name: "Gray 60",
+      variable: "--sds-overlay-04",
+      name: "4",
     },
     {
       hex: {
-        light: "#6f6e77",
-        dark: "#a09fa6",
+        light: "rgba(0, 0, 0, 0.5)",
+        dark: "rgba(255, 255, 255, 0.5)",
       },
-      variable: "--color-gray-70",
-      name: "Gray 70",
+      variable: "--sds-overlay-05",
+      name: "5",
     },
     {
       hex: {
-        light: "#1a1523",
-        dark: "#ededef",
+        light: "rgba(0, 0, 0, 0.6)",
+        dark: "rgba(255, 255, 255, 0.6)",
       },
-      variable: "--color-gray-80",
-      name: "Gray 80",
+      variable: "--sds-overlay-06",
+      name: "6",
     },
-  ]}
-/>
-
-### System
-
-<ColorPalette
-  colors={[
     {
       hex: {
-        light: "#ffffff",
-        dark: "#000000",
+        light: "rgba(0, 0, 0, 0.7)",
+        dark: "rgba(255, 255, 255, 0.7)",
       },
-      variable: "--color-gray-00",
-      name: "Gray 0",
+      variable: "--sds-overlay-07",
+      name: "7",
     },
     {
       hex: {
-        light: "#000000",
-        dark: "#ffffff",
+        light: "rgba(0, 0, 0, 0.8)",
+        dark: "rgba(255, 255, 255, 0.8)",
       },
-      variable: "--color-gray-90",
-      name: "Gray 90",
+      variable: "--sds-overlay-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "rgba(0, 0, 0, 0.9)",
+        dark: "rgba(255, 255, 255, 0.9)",
+      },
+      variable: "--sds-overlay-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "rgba(0, 0, 0, 1)",
+        dark: "rgba(255, 255, 255, 1)",
+      },
+      variable: "--sds-overlay-10",
+      name: "10",
     },
   ]}
 />
@@ -196,67 +347,99 @@ feedback or system messages.
   colors={[
     {
       hex: {
-        light: "#f2fcf5",
+        light: "#fbfefc",
         dark: "#0d1912",
       },
-      variable: "--color-green-10",
-      name: "Green 10",
+      variable: "--sds-clr-green-01",
+      name: "1",
     },
     {
       hex: {
-        light: "#e9f9ee",
+        light: "#f2fcf5",
         dark: "#0c1f17",
       },
-      variable: "--color-green-20",
-      name: "Green 20",
+      variable: "--sds-clr-green-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#e9f9ee",
+        dark: "#0f291e",
+      },
+      variable: "--sds-clr-green-03",
+      name: "3",
     },
     {
       hex: {
         light: "#ddf3e4",
         dark: "#113123",
       },
-      variable: "--color-green-30",
-      name: "Green 30",
+      variable: "--sds-clr-green-04",
+      name: "4",
     },
     {
       hex: {
         light: "#ccebd7",
         dark: "#133929",
       },
-      variable: "--color-green-40",
-      name: "Green 40",
+      variable: "--sds-clr-green-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#b4dfc4",
+        dark: "#164430",
+      },
+      variable: "--sds-clr-green-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#92ceac",
+        dark: "#1b543a",
+      },
+      variable: "--sds-clr-green-07",
+      name: "7",
     },
     {
       hex: {
         light: "#5bb98c",
-        dark: "#30a46c",
+        dark: "#236e4a",
       },
-      variable: "--color-green-50",
-      name: "Green 50",
+      variable: "--sds-clr-green-08",
+      name: "8",
     },
     {
       hex: {
         light: "#30a46c",
+        dark: "#30a46c",
+      },
+      variable: "--sds-clr-green-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#299764",
         dark: "#3cb179",
       },
-      variable: "--color-green-60",
-      name: "Green 60",
+      variable: "--sds-clr-green-10",
+      name: "10",
     },
     {
       hex: {
         light: "#18794e",
         dark: "#4cc38a",
       },
-      variable: "--color-green-70",
-      name: "Green 70",
+      variable: "--sds-clr-green-11",
+      name: "11",
     },
     {
       hex: {
         light: "#153226",
         dark: "#e5fbeb",
       },
-      variable: "--color-green-80",
-      name: "Green 80",
+      variable: "--sds-clr-green-12",
+      name: "12",
     },
   ]}
 />
@@ -267,67 +450,99 @@ feedback or system messages.
   colors={[
     {
       hex: {
-        light: "#fff9ed",
+        light: "#fefdfb",
         dark: "#1f1300",
       },
-      variable: "--color-yellow-10",
-      name: "Yellow 10",
+      variable: "--sds-clr-amber-01",
+      name: "1",
     },
     {
       hex: {
-        light: "#fff4d5",
+        light: "#fff9ed",
         dark: "#271700",
       },
-      variable: "--color-yellow-20",
-      name: "Yellow 20",
+      variable: "--sds-clr-amber-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#fff4d5",
+        dark: "#341c00",
+      },
+      variable: "--sds-clr-amber-03",
+      name: "3",
     },
     {
       hex: {
         light: "#ffecbc",
         dark: "#3f2200",
       },
-      variable: "--color-yellow-30",
-      name: "Yellow 30",
+      variable: "--sds-clr-amber-04",
+      name: "4",
     },
     {
       hex: {
         light: "#ffe3a2",
         dark: "#4a2900",
       },
-      variable: "--color-yellow-40",
-      name: "Yellow 40",
+      variable: "--sds-clr-amber-05",
+      name: "5",
     },
     {
       hex: {
-        light: "#ffb224",
-        dark: "#f1a10d",
+        light: "#ffd386",
+        dark: "#573300",
+      },
+      variable: "--sds-clr-amber-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#f3ba63",
+        dark: "#693f05",
       },
-      variable: "--color-yellow-50",
-      name: "Yellow 50",
+      variable: "--sds-clr-amber-07",
+      name: "7",
     },
     {
       hex: {
         light: "#ee9d2b",
+        dark: "#824e00",
+      },
+      variable: "--sds-clr-amber-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#ffb224",
         dark: "#ffb224",
       },
-      variable: "--color-yellow-60",
-      name: "Yellow 60",
+      variable: "--sds-clr-amber-09",
+      name: "9",
     },
     {
       hex: {
-        light: "#ad5700",
+        light: "#ffa01c",
         dark: "#ffcb47",
       },
-      variable: "--color-yellow-70",
-      name: "Yellow 70",
+      variable: "--sds-clr-amber-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#ad5700",
+        dark: "#f1a10d",
+      },
+      variable: "--sds-clr-amber-11",
+      name: "11",
     },
     {
       hex: {
         light: "#4e2009",
         dark: "#fef3dd",
       },
-      variable: "--color-yellow-80",
-      name: "Yellow 80",
+      variable: "--sds-clr-amber-12",
+      name: "12",
     },
   ]}
 />
@@ -338,67 +553,723 @@ feedback or system messages.
   colors={[
     {
       hex: {
-        light: "#fff8f8",
+        light: "#fffcfc",
         dark: "#1f1315",
       },
-      variable: "--color-red-10",
-      name: "Red 10",
+      variable: "--sds-clr-red-01",
+      name: "1",
     },
     {
       hex: {
-        light: "#ffefef",
+        light: "#fff8f8",
         dark: "#291415",
       },
-      variable: "--color-red-20",
-      name: "Red 20",
+      variable: "--sds-clr-red-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#ffefef",
+        dark: "#3c181a",
+      },
+      variable: "--sds-clr-red-03",
+      name: "3",
     },
     {
       hex: {
         light: "#ffe5e5",
         dark: "#481a1d",
       },
-      variable: "--color-red-30",
-      name: "Red 30",
+      variable: "--sds-clr-red-04",
+      name: "4",
     },
     {
       hex: {
         light: "#fdd8d8",
         dark: "#541b1f",
       },
-      variable: "--color-red-40",
-      name: "Red 40",
+      variable: "--sds-clr-red-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#f9c6c6",
+        dark: "#671e22",
+      },
+      variable: "--sds-clr-red-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#f3aeaf",
+        dark: "#822025",
+      },
+      variable: "--sds-clr-red-07",
+      name: "7",
     },
     {
       hex: {
         light: "#eb9091",
-        dark: "#e5484d",
+        dark: "#aa2429",
       },
-      variable: "--color-red-50",
-      name: "Red 50",
+      variable: "--sds-clr-red-08",
+      name: "8",
     },
     {
       hex: {
         light: "#e5484d",
+        dark: "#e5484d",
+      },
+      variable: "--sds-clr-red-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#dc3d43",
         dark: "#f2555a",
       },
-      variable: "--color-red-60",
-      name: "Red 60",
+      variable: "--sds-clr-red-10",
+      name: "10",
     },
     {
       hex: {
         light: "#cd2b31",
         dark: "#ff6369",
       },
-      variable: "--color-red-70",
-      name: "Red 70",
+      variable: "--sds-clr-red-11",
+      name: "11",
     },
     {
       hex: {
         light: "#381316",
         dark: "#feecee",
       },
-      variable: "--color-red-80",
-      name: "Red 80",
+      variable: "--sds-clr-red-12",
+      name: "12",
+    },
+  ]}
+/>
+
+## Accent Colors
+
+Accent colors in a design system consists of vibrant hues strategically used to
+highlight key interface elements, enhancing usability while maintaining brand
+coherence and recognition.
+
+### Gold
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fdfdf9",
+        dark: "#1c1500",
+      },
+      variable: "--sds-clr-gold-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#fffce8",
+        dark: "#221a00",
+      },
+      variable: "--sds-clr-gold-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#fffbd1",
+        dark: "#2c2100",
+      },
+      variable: "--sds-clr-gold-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#fff8bb",
+        dark: "#352800",
+      },
+      variable: "--sds-clr-gold-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#fef2a4",
+        dark: "#3e3000",
+      },
+      variable: "--sds-clr-gold-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#f9e68c",
+        dark: "#493c00",
+      },
+      variable: "--sds-clr-gold-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#efd36c",
+        dark: "#594a05",
+      },
+      variable: "--sds-clr-gold-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#ebbc00",
+        dark: "#705e00",
+      },
+      variable: "--sds-clr-gold-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#fdda24",
+        dark: "#fdda24",
+      },
+      variable: "--sds-clr-gold-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#f7ce00",
+        dark: "#ffef5c",
+      },
+      variable: "--sds-clr-gold-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#946800",
+        dark: "#f0c000",
+      },
+      variable: "--sds-clr-gold-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#35290f",
+        dark: "#fffad1",
+      },
+      variable: "--sds-clr-gold-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Navy
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fdfdfe",
+        dark: "#131620",
+      },
+      variable: "--sds-clr-navy-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#f8faff",
+        dark: "#15192d",
+      },
+      variable: "--sds-clr-navy-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#f0f4ff",
+        dark: "#192140",
+      },
+      variable: "--sds-clr-navy-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#e6edfe",
+        dark: "#1c274f",
+      },
+      variable: "--sds-clr-navy-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#d9e2fc",
+        dark: "#1f2c5c",
+      },
+      variable: "--sds-clr-navy-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#c6d4f9",
+        dark: "#22346e",
+      },
+      variable: "--sds-clr-navy-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#aec0f5",
+        dark: "#273e89",
+      },
+      variable: "--sds-clr-navy-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#8da4ef",
+        dark: "#2f4eb2",
+      },
+      variable: "--sds-clr-navy-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#3e63dd",
+        dark: "#3e63dd",
+      },
+      variable: "--sds-clr-navy-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#3a5ccc",
+        dark: "#5373e7",
+      },
+      variable: "--sds-clr-navy-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#3451b2",
+        dark: "#849dff",
+      },
+      variable: "--sds-clr-navy-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#101d46",
+        dark: "#eef1fd",
+      },
+      variable: "--sds-clr-navy-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Teal
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fafdfe",
+        dark: "#07191d",
+      },
+      variable: "--sds-clr-teal-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#f2fcfd",
+        dark: "#061e24;",
+      },
+      variable: "--sds-clr-teal-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#e7f9fb",
+        dark: "#072830",
+      },
+      variable: "--sds-clr-teal-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#d8f3f6",
+        dark: "#07303b",
+      },
+      variable: "--sds-clr-teal-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#c4eaef",
+        dark: "#073844",
+      },
+      variable: "--sds-clr-teal-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#aadee6",
+        dark: "#064150",
+      },
+      variable: "--sds-clr-teal-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#84cdda",
+        dark: "#045063",
+      },
+      variable: "--sds-clr-teal-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#3db9cf",
+        dark: "#00647d",
+      },
+      variable: "--sds-clr-teal-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#05a2c2",
+        dark: "#05a2c2",
+      },
+      variable: "--sds-clr-teal-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#0894b3",
+        dark: "#00b1cc",
+      },
+      variable: "--sds-clr-teal-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#0c7792",
+        dark: "#00c2d7",
+      },
+      variable: "--sds-clr-teal-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#04313c",
+        dark: "#e1f8fa",
+      },
+      variable: "--sds-clr-teal-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Mint
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#f9fefd",
+        dark: "#081917",
+      },
+      variable: "--sds-clr-mint-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#effefa",
+        dark: "#05201e",
+      },
+      variable: "--sds-clr-mint-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#e1fbf4",
+        dark: "#052926",
+      },
+      variable: "--sds-clr-mint-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#d2f7ed",
+        dark: "#04312c",
+      },
+      variable: "--sds-clr-mint-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#c0efe3",
+        dark: "#033a34",
+      },
+      variable: "--sds-clr-mint-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#a5e4d4",
+        dark: "#01453d",
+      },
+      variable: "--sds-clr-mint-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#7dd4c0",
+        dark: "#00564a",
+      },
+      variable: "--sds-clr-mint-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#40c4aa",
+        dark: "#006d5b",
+      },
+      variable: "--sds-clr-mint-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#70e1c8",
+        dark: "#70e1c8",
+      },
+      variable: "--sds-clr-mint-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#69d9c1",
+        dark: "#95f3d9",
+      },
+      variable: "--sds-clr-mint-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#147d6f",
+        dark: "#25d0ab",
+      },
+      variable: "--sds-clr-mint-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#09342e",
+        dark: "#e7fcf7",
+      },
+      variable: "--sds-clr-mint-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Lime
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fcfdfa",
+        dark: "#141807",
+      },
+      variable: "--sds-clr-lime-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#f7fcf0",
+        dark: "#181d08",
+      },
+      variable: "--sds-clr-lime-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#eefadc",
+        dark: "#1e260d",
+      },
+      variable: "--sds-clr-lime-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#e4f7c7",
+        dark: "#252e0f",
+      },
+      variable: "--sds-clr-lime-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#d7f2b0",
+        dark: "#2b3711",
+      },
+      variable: "--sds-clr-lime-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#c9e894",
+        dark: "#344213",
+      },
+      variable: "--sds-clr-lime-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#b1d16a",
+        dark: "#415215",
+      },
+      variable: "--sds-clr-lime-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#94ba2c",
+        dark: "#536716",
+      },
+      variable: "--sds-clr-lime-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#99d52a",
+        dark: "#99d52a",
+      },
+      variable: "--sds-clr-lime-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#93c926",
+        dark: "#c4f042",
+      },
+      variable: "--sds-clr-lime-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#5d770d",
+        dark: "#87be22",
+      },
+      variable: "--sds-clr-lime-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#263209",
+        dark: "#effbdd",
+      },
+      variable: "--sds-clr-lime-12",
+      name: "12",
+    },
+  ]}
+/>
+
+### Pink
+
+<ColorPalette
+  colors={[
+    {
+      hex: {
+        light: "#fffcfe",
+        dark: "#1f121b",
+      },
+      variable: "--sds-clr-pink-01",
+      name: "1",
+    },
+    {
+      hex: {
+        light: "#fff7fc",
+        dark: "#271421",
+      },
+      variable: "--sds-clr-pink-02",
+      name: "2",
+    },
+    {
+      hex: {
+        light: "#feeef8",
+        dark: "#3a182f",
+      },
+      variable: "--sds-clr-pink-03",
+      name: "3",
+    },
+    {
+      hex: {
+        light: "#fce5f3",
+        dark: "#451a37",
+      },
+      variable: "--sds-clr-pink-04",
+      name: "4",
+    },
+    {
+      hex: {
+        light: "#f9d8ec",
+        dark: "#501b3f",
+      },
+      variable: "--sds-clr-pink-05",
+      name: "5",
+    },
+    {
+      hex: {
+        light: "#f3c6e2",
+        dark: "#601d48",
+      },
+      variable: "--sds-clr-pink-06",
+      name: "6",
+    },
+    {
+      hex: {
+        light: "#ecadd4",
+        dark: "#7a1d5a",
+      },
+      variable: "--sds-clr-pink-07",
+      name: "7",
+    },
+    {
+      hex: {
+        light: "#e38ec3",
+        dark: "#a71873",
+      },
+      variable: "--sds-clr-pink-08",
+      name: "8",
+    },
+    {
+      hex: {
+        light: "#d6409f",
+        dark: "#d6409f",
+      },
+      variable: "--sds-clr-pink-09",
+      name: "9",
+    },
+    {
+      hex: {
+        light: "#d23197",
+        dark: "#e34ba9",
+      },
+      variable: "--sds-clr-pink-10",
+      name: "10",
+    },
+    {
+      hex: {
+        light: "#cd1d8d",
+        dark: "#f65cb6",
+      },
+      variable: "--sds-clr-pink-11",
+      name: "11",
+    },
+    {
+      hex: {
+        light: "#3b0a2a",
+        dark: "#feebf7",
+      },
+      variable: "--sds-clr-pink-12",
+      name: "12",
     },
   ]}
 />
diff --git a/@stellar/design-system-website/docs/foundations/typography/_category_.json b/@stellar/design-system-website/docs/foundations/typography/_category_.json
index c99f54a5..82fb080d 100644
--- a/@stellar/design-system-website/docs/foundations/typography/_category_.json
+++ b/@stellar/design-system-website/docs/foundations/typography/_category_.json
@@ -2,6 +2,6 @@
   "label": "Typography",
   "link": {
     "type": "generated-index",
-    "description": "Typography (including headings, paragraph, and other text types) examples and documentation. These components don’t have any special props, and inherit their native HTML attributes."
+    "description": "Typography (including headings, paragraph, and other text types) examples and documentation."
   }
 }
diff --git a/@stellar/design-system-website/docs/foundations/typography/caption.mdx b/@stellar/design-system-website/docs/foundations/typography/caption.mdx
deleted file mode 100644
index aecda01e..00000000
--- a/@stellar/design-system-website/docs/foundations/typography/caption.mdx
+++ /dev/null
@@ -1,20 +0,0 @@
----
-slug: /caption
-description: "Text for single-line scenarios."
----
-
-# Caption
-
-<ComponentDescription componentName="Caption" />
-
-## Example
-
-```tsx live
-<PreviewBlock componentName="Caption">
-  <Caption size="xs">Caption</Caption>
-</PreviewBlock>
-```
-
-## Props
-
-<ComponentProps componentName="Caption" />
diff --git a/@stellar/design-system-website/docs/foundations/typography/code.mdx b/@stellar/design-system-website/docs/foundations/typography/code.mdx
new file mode 100644
index 00000000..cea6e379
--- /dev/null
+++ b/@stellar/design-system-website/docs/foundations/typography/code.mdx
@@ -0,0 +1,20 @@
+---
+slug: /code
+description: "Display text in computer code style."
+---
+
+# Code
+
+<ComponentDescription componentName="Code" />
+
+## Example
+
+```tsx live
+<PreviewBlock componentName="Code">
+  <Code size="xs">Code</Code>
+</PreviewBlock>
+```
+
+## Props
+
+<ComponentProps componentName="Code" />
diff --git a/@stellar/design-system-website/docs/foundations/typography/display.mdx b/@stellar/design-system-website/docs/foundations/typography/display.mdx
new file mode 100644
index 00000000..07506bf9
--- /dev/null
+++ b/@stellar/design-system-website/docs/foundations/typography/display.mdx
@@ -0,0 +1,20 @@
+---
+slug: /display
+description: "Generic titles and captions that are not headings."
+---
+
+# Display
+
+<ComponentDescription componentName="Display" />
+
+## Example
+
+```tsx live
+<PreviewBlock componentName="Display">
+  <Display size="xs">Display</Caption>
+</PreviewBlock>
+```
+
+## Props
+
+<ComponentProps componentName="Display" />
diff --git a/@stellar/design-system-website/docs/foundations/typography/paragraph.mdx b/@stellar/design-system-website/docs/foundations/typography/paragraph.mdx
deleted file mode 100644
index bb19ed9e..00000000
--- a/@stellar/design-system-website/docs/foundations/typography/paragraph.mdx
+++ /dev/null
@@ -1,20 +0,0 @@
----
-slug: /paragraph
-description: "Text paragraph is an HTML p tag, not a custom component."
----
-
-# Paragraph
-
-<ComponentDescription componentName="Paragraph" />
-
-## Example
-
-```tsx live
-<PreviewBlock componentName="Paragraph">
-  <Paragraph size="xs">Paragraph</Paragraph>
-</PreviewBlock>
-```
-
-## Props
-
-<ComponentProps componentName="Paragraph" />
diff --git a/@stellar/design-system-website/docs/foundations/typography/text.mdx b/@stellar/design-system-website/docs/foundations/typography/text.mdx
new file mode 100644
index 00000000..8d749a13
--- /dev/null
+++ b/@stellar/design-system-website/docs/foundations/typography/text.mdx
@@ -0,0 +1,22 @@
+---
+slug: /text
+description: "Display text as p, div, span, or heading h1 through h6."
+---
+
+# Text
+
+<ComponentDescription componentName="Text" />
+
+## Example
+
+```tsx live
+<PreviewBlock componentName="Text">
+  <Text as="p" size="xs">
+    Text
+  </Text>
+</PreviewBlock>
+```
+
+## Props
+
+<ComponentProps componentName="Text" />
diff --git a/@stellar/design-system-website/docs/foundations/typography/title.mdx b/@stellar/design-system-website/docs/foundations/typography/title.mdx
deleted file mode 100644
index c653fc6d..00000000
--- a/@stellar/design-system-website/docs/foundations/typography/title.mdx
+++ /dev/null
@@ -1,20 +0,0 @@
----
-slug: /title
-description: "Non-semantic heading (banner title, navigation item, label)."
----
-
-# Title
-
-<ComponentDescription componentName="Title" />
-
-## Example
-
-```tsx live
-<PreviewBlock componentName="Title">
-  <Title size="xs">Title</Title>
-</PreviewBlock>
-```
-
-## Props
-
-<ComponentProps componentName="Title" />
diff --git a/@stellar/design-system-website/docs/get-started/introduction.mdx b/@stellar/design-system-website/docs/get-started/introduction.mdx
index 80c6de29..9d347e29 100644
--- a/@stellar/design-system-website/docs/get-started/introduction.mdx
+++ b/@stellar/design-system-website/docs/get-started/introduction.mdx
@@ -35,20 +35,20 @@ Install SDS by using the package manager of your choice.
 npm install @stellar/design-system
 ```
 
-Add Google Fonts (`Inter Tight`, `Inter`, and `Roboto Mono`) to the `index.html`
-file or CSS/styles file.
+Add Google Fonts (`Inter` and `Inconsolata`) to the `index.html` file or
+CSS/styles file.
 
 ```html
 <link rel="preconnect" href="https://fonts.googleapis.com" />
 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
 <link
-  href="https://fonts.googleapis.com/css2?family=Inter+Tight&family=Inter:wght@400;500;600&family=Roboto+Mono&display=swap"
+  href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Inconsolata:wght@500&display=swap"
   rel="stylesheet"
 />
 ```
 
 ```css
-@import url("https://fonts.googleapis.com/css2?family=Inter+Tight&family=Inter:wght@400;500;600&family=Roboto+Mono&display=swap");
+@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Inconsolata:wght@500&display=swap");
 ```
 
 Add the main CSS file to your project (for example, the main `index` file of
diff --git a/@stellar/design-system-website/package.json b/@stellar/design-system-website/package.json
index 140805c5..a3b187e3 100644
--- a/@stellar/design-system-website/package.json
+++ b/@stellar/design-system-website/package.json
@@ -4,6 +4,9 @@
   "author": "Stellar Development Foundation <hello@stellar.org>",
   "description": "Stellar Development Foundation’s design system website",
   "license": "Apache-2.0",
+  "engines": {
+    "node": ">=20.0.0"
+  },
   "scripts": {
     "docusaurus": "docusaurus",
     "start": "docusaurus start",
@@ -18,34 +21,34 @@
     "git-info": "rm -rf src/generated/ && mkdir src/generated/ && echo export default \"{\\\"commitHash\\\": \\\"$(git rev-parse --short HEAD)\\\"};\" > src/generated/gitInfo.ts"
   },
   "dependencies": {
-    "@docusaurus/core": "3.1.0",
-    "@docusaurus/preset-classic": "3.1.0",
-    "@docusaurus/remark-plugin-npm2yarn": "^3.1.0",
-    "@docusaurus/theme-live-codeblock": "^3.1.0",
-    "@mdx-js/react": "^3.0.0",
-    "@stellar/design-system": "^1.1.3",
-    "clsx": "^2.1.0",
-    "prism-react-renderer": "^2.3.1",
-    "react": "^18.2.0",
-    "react-dom": "^18.2.0",
+    "@docusaurus/core": "^3.5.2",
+    "@docusaurus/preset-classic": "^3.5.2",
+    "@docusaurus/remark-plugin-npm2yarn": "^3.5.2",
+    "@docusaurus/theme-live-codeblock": "^3.5.2",
+    "@mdx-js/react": "^3.0.1",
+    "@stellar/design-system": "^3.0.0",
+    "clsx": "^2.1.1",
+    "prism-react-renderer": "^2.4.0",
+    "react": "^18.3.1",
+    "react-dom": "^18.3.1",
     "react-element-to-jsx-string": "^15.0.0",
     "rehype-parse": "^9.0.0",
     "rehype-react": "^8.0.0",
     "rehype-sanitize": "^6.0.0",
-    "unified": "^11.0.4"
+    "unified": "^11.0.5"
   },
   "devDependencies": {
-    "@docusaurus/module-type-aliases": "3.1.0",
-    "@tsconfig/docusaurus": "^2.0.2",
-    "eslint": "^8.44.0",
-    "eslint-config-prettier": "^8.8.0",
-    "eslint-plugin-import": "^2.27.5",
-    "eslint-plugin-jsx-a11y": "^6.7.1",
-    "eslint-plugin-mdx": "^2.1.0",
-    "eslint-plugin-react": "^7.32.2",
-    "eslint-plugin-react-hooks": "^4.6.0",
-    "eslint-webpack-plugin": "^4.0.1",
-    "typescript": "^5.3.3"
+    "@docusaurus/module-type-aliases": "^3.5.2",
+    "@docusaurus/tsconfig": "^3.5.2",
+    "eslint": "^9.11.1",
+    "eslint-config-prettier": "^9.1.0",
+    "eslint-plugin-import": "^2.30.0",
+    "eslint-plugin-jsx-a11y": "^6.10.0",
+    "eslint-plugin-mdx": "^3.1.5",
+    "eslint-plugin-react": "^7.37.0",
+    "eslint-plugin-react-hooks": "^4.6.2",
+    "eslint-webpack-plugin": "^4.2.0",
+    "typescript": "^5.6.2"
   },
   "browserslist": {
     "production": [
@@ -58,8 +61,5 @@
       "last 1 firefox version",
       "last 1 safari version"
     ]
-  },
-  "engines": {
-    "node": ">=18.0.0"
   }
 }
diff --git a/@stellar/design-system-website/src/componentPreview/alertPreview.tsx b/@stellar/design-system-website/src/componentPreview/alertPreview.tsx
new file mode 100644
index 00000000..a47419ff
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/alertPreview.tsx
@@ -0,0 +1,94 @@
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+
+export const alertPreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "variant",
+      options: [
+        {
+          value: "primary",
+          label: "Primary",
+        },
+        {
+          value: "secondary",
+          label: "Secondary",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+        {
+          value: "warning",
+          label: "Warning",
+        },
+        {
+          value: "error",
+          label: "Error",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "placement",
+      options: [
+        {
+          value: "inline",
+          label: "Inline",
+        },
+        {
+          value: "bottom",
+          label: "Bottom",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "title",
+      options: [
+        {
+          value: "",
+          label: "No title",
+        },
+        {
+          value: "Lorem ipsum dolor sit amet",
+          label: "Title",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "onClose",
+      customValue: () => {
+        console.log("Close action");
+      },
+      options: [
+        {
+          value: "",
+          label: "No close action",
+        },
+        {
+          value: "Close action",
+          label: "Close action",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "onAction",
+      customValue: () => {
+        console.log("Action");
+      },
+      options: [
+        {
+          value: "",
+          label: "No action",
+        },
+        {
+          value: "Action",
+          label: "Action",
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/assetIconPreview.tsx b/@stellar/design-system-website/src/componentPreview/assetIconPreview.tsx
deleted file mode 100644
index ce47e8a3..00000000
--- a/@stellar/design-system-website/src/componentPreview/assetIconPreview.tsx
+++ /dev/null
@@ -1,31 +0,0 @@
-import { ComponentPreview } from "@site/src/components/PreviewBlock";
-
-export const assetIconPreview: ComponentPreview = {
-  options: [
-    {
-      type: "select",
-      prop: "source",
-      customValue: [
-        {
-          altText: "XLM",
-          image: "https://cryptologos.cc/logos/stellar-xlm-logo.svg?v=024",
-          imageSize: "80%",
-        },
-        {
-          altText: "USDC",
-          image: "https://cryptologos.cc/logos/usd-coin-usdc-logo.svg?v=024",
-        },
-      ],
-      options: [
-        {
-          value: "",
-          label: "Single",
-        },
-        {
-          value: "pair",
-          label: "Pair",
-        },
-      ],
-    },
-  ],
-};
diff --git a/@stellar/design-system-website/src/componentPreview/assetPreview.tsx b/@stellar/design-system-website/src/componentPreview/assetPreview.tsx
new file mode 100644
index 00000000..61706195
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/assetPreview.tsx
@@ -0,0 +1,61 @@
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+
+const updateSourceTwo = {
+  prop: "sourceTwo",
+  value: {
+    altText: "USDC",
+    image: "https://cryptologos.cc/logos/usd-coin-usdc-logo.svg?v=024",
+  },
+};
+
+export const assetPreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "variant",
+      options: [
+        {
+          value: "single",
+          label: "Single",
+          updateRelated: {
+            prop: "sourceTwo",
+            value: undefined,
+          },
+        },
+        {
+          value: "swap",
+          label: "Swap",
+          updateRelated: updateSourceTwo,
+        },
+        {
+          value: "pair",
+          label: "Pair",
+          updateRelated: updateSourceTwo,
+        },
+        {
+          value: "platform",
+          label: "Platform",
+          updateRelated: updateSourceTwo,
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/avatarPreview.tsx b/@stellar/design-system-website/src/componentPreview/avatarPreview.tsx
index 7ada7139..25da83ab 100644
--- a/@stellar/design-system-website/src/componentPreview/avatarPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/avatarPreview.tsx
@@ -1,5 +1,60 @@
 import { ComponentPreview } from "@site/src/components/PreviewBlock";
 
 export const avatarPreview: ComponentPreview = {
-  options: [],
+  options: [
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "publicAddress",
+      options: [
+        {
+          value: "",
+          label: "No public address",
+        },
+        {
+          value: "GD4XW236EFCESNO4RKGG5PWML2WNQIJS335XECBW4GRARXKE64VIMOLZ",
+          label: "Public address",
+          updateRelated: {
+            prop: "userName",
+            value: undefined,
+          },
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "userName",
+      options: [
+        {
+          value: "",
+          label: "No user name",
+        },
+        {
+          value: "User Name",
+          label: "User name",
+          updateRelated: {
+            prop: "publicAddress",
+            value: undefined,
+          },
+        },
+      ],
+    },
+  ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/badgePreview.tsx b/@stellar/design-system-website/src/componentPreview/badgePreview.tsx
index f7bdcc4f..9aa7cca3 100644
--- a/@stellar/design-system-website/src/componentPreview/badgePreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/badgePreview.tsx
@@ -1,4 +1,6 @@
+import React from "react";
 import { ComponentPreview } from "@site/src/components/PreviewBlock";
+import { Icon } from "@stellar/design-system";
 
 export const badgePreview: ComponentPreview = {
   options: [
@@ -7,8 +9,16 @@ export const badgePreview: ComponentPreview = {
       prop: "variant",
       options: [
         {
-          value: "default",
-          label: "Default",
+          value: "primary",
+          label: "Primary",
+        },
+        {
+          value: "secondary",
+          label: "Secondary",
+        },
+        {
+          value: "tertiary",
+          label: "Tertiary",
         },
         {
           value: "success",
@@ -18,15 +28,64 @@ export const badgePreview: ComponentPreview = {
           value: "warning",
           label: "Warning",
         },
-        {
-          value: "pending",
-          label: "Pending",
-        },
         {
           value: "error",
           label: "Error",
         },
       ],
     },
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+      ],
+    },
+    {
+      type: "checkbox",
+      prop: "isOutlined",
+      label: "Outlined",
+    },
+    {
+      type: "checkbox",
+      prop: "isSquare",
+      label: "Square",
+    },
+    {
+      type: "checkbox",
+      prop: "isStatus",
+      label: "Status",
+    },
+    {
+      type: "select",
+      prop: "icon",
+      customValue: <Icon.ArrowNarrowRight />,
+      clearProp: "iconPosition",
+      options: [
+        {
+          value: "",
+          label: "No icon",
+        },
+        {
+          value: '{"iconPosition": "right"}',
+          label: "Icon right",
+        },
+        {
+          value: '{"iconPosition": "left"}',
+          label: "Icon left",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/bannerPreview.tsx b/@stellar/design-system-website/src/componentPreview/bannerPreview.tsx
index 50eb8f7e..a708e6dd 100644
--- a/@stellar/design-system-website/src/componentPreview/bannerPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/bannerPreview.tsx
@@ -1,4 +1,6 @@
+import React from "react";
 import { ComponentPreview } from "@site/src/components/PreviewBlock";
+import CheckIconSvg from "@site/static/img/check-icon.svg";
 
 export const bannerPreview: ComponentPreview = {
   options: [
@@ -6,14 +8,14 @@ export const bannerPreview: ComponentPreview = {
       type: "select",
       prop: "variant",
       options: [
-        {
-          value: "default",
-          label: "Default",
-        },
         {
           value: "primary",
           label: "Primary",
         },
+        {
+          value: "secondary",
+          label: "Secondary",
+        },
         {
           value: "success",
           label: "Success",
@@ -28,5 +30,35 @@ export const bannerPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "icon",
+      customValue: <CheckIconSvg />,
+      options: [
+        {
+          value: "",
+          label: "Default icon",
+        },
+        {
+          value: "customIcon",
+          label: "Custom icon",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "children",
+      options: [
+        {
+          value: "Lorem ipsum dolor sit amet consectetur adipisicing elit",
+          label: "Short message",
+        },
+        {
+          value:
+            "Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus dolorum eligendi, corrupti quam commodi, iure aliquam, architecto impedit amet nihil reiciendis. Pariatur nostrum ex nemo aut quod autem delectus voluptate!",
+          label: "Long message",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/buttonPresetPreview.tsx b/@stellar/design-system-website/src/componentPreview/buttonPresetPreview.tsx
index 28f6f574..56ede18f 100644
--- a/@stellar/design-system-website/src/componentPreview/buttonPresetPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/buttonPresetPreview.tsx
@@ -76,11 +76,11 @@ export const buttonPresetPreview: ComponentPreview = {
           label: "Default color",
         },
         {
-          value: "var(--color-green-50)",
+          value: "var(--sds-clr-green-09)",
           label: "Green",
         },
         {
-          value: "var(--color-yellow-50)",
+          value: "var(--sds-clr-amber-09)",
           label: "Yellow",
         },
       ],
diff --git a/@stellar/design-system-website/src/componentPreview/buttonPreview.tsx b/@stellar/design-system-website/src/componentPreview/buttonPreview.tsx
index a8e9d023..3d2ce129 100644
--- a/@stellar/design-system-website/src/componentPreview/buttonPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/buttonPreview.tsx
@@ -38,17 +38,17 @@ export const buttonPreview: ComponentPreview = {
       type: "select",
       prop: "size",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
@@ -57,11 +57,6 @@ export const buttonPreview: ComponentPreview = {
       prop: "disabled",
       label: "Disabled",
     },
-    {
-      type: "checkbox",
-      prop: "isExtraPadding",
-      label: "Extra padding",
-    },
     {
       type: "checkbox",
       prop: "isFullWidth",
@@ -72,16 +67,6 @@ export const buttonPreview: ComponentPreview = {
       prop: "isLoading",
       label: "Loading",
     },
-    {
-      type: "checkbox",
-      prop: "isPill",
-      label: "Pill",
-    },
-    {
-      type: "checkbox",
-      prop: "isUppercase",
-      label: "Uppercase",
-    },
     {
       type: "select",
       prop: "icon",
diff --git a/@stellar/design-system-website/src/componentPreview/captionPreview.tsx b/@stellar/design-system-website/src/componentPreview/captionPreview.tsx
deleted file mode 100644
index 0882a4be..00000000
--- a/@stellar/design-system-website/src/componentPreview/captionPreview.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import { ComponentPreview } from "@site/src/components/PreviewBlock";
-
-export const captionPreview: ComponentPreview = {
-  options: [
-    {
-      type: "select",
-      prop: "size",
-      options: [
-        {
-          value: "xs",
-          label: "XS",
-        },
-        {
-          value: "sm",
-          label: "SM",
-        },
-        {
-          value: "md",
-          label: "MD",
-        },
-        {
-          value: "lg",
-          label: "LG",
-        },
-      ],
-    },
-  ],
-};
diff --git a/@stellar/design-system-website/src/componentPreview/checkboxPreview.tsx b/@stellar/design-system-website/src/componentPreview/checkboxPreview.tsx
index 341a3d8b..39367a8b 100644
--- a/@stellar/design-system-website/src/componentPreview/checkboxPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/checkboxPreview.tsx
@@ -21,17 +21,17 @@ export const checkboxPreview: ComponentPreview = {
       type: "select",
       prop: "fieldSize",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
@@ -75,5 +75,20 @@ export const checkboxPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "success",
+      customValue: "Success message",
+      options: [
+        {
+          value: "",
+          label: "No success",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/codePreview.tsx b/@stellar/design-system-website/src/componentPreview/codePreview.tsx
new file mode 100644
index 00000000..02f0838d
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/codePreview.tsx
@@ -0,0 +1,24 @@
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+
+export const codePreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "xs",
+          label: "XS",
+        },
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/displayPreview.tsx b/@stellar/design-system-website/src/componentPreview/displayPreview.tsx
new file mode 100644
index 00000000..5ae40a15
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/displayPreview.tsx
@@ -0,0 +1,68 @@
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+
+export const displayPreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "as",
+      options: [
+        {
+          value: "div",
+          label: "div",
+        },
+        {
+          value: "span",
+          label: "span",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "xs",
+          label: "XS",
+        },
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+        {
+          value: "xl",
+          label: "XL",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "weight",
+      options: [
+        {
+          value: "regular",
+          label: "Regular",
+        },
+        {
+          value: "medium",
+          label: "Medium",
+        },
+        {
+          value: "semi-bold",
+          label: "Semi-Bold",
+        },
+        {
+          value: "bold",
+          label: "Bold",
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/headingPreview.tsx b/@stellar/design-system-website/src/componentPreview/headingPreview.tsx
index e2b787a9..dc4a3c50 100644
--- a/@stellar/design-system-website/src/componentPreview/headingPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/headingPreview.tsx
@@ -56,9 +56,27 @@ export const headingPreview: ComponentPreview = {
           value: "xl",
           label: "XL",
         },
+      ],
+    },
+    {
+      type: "select",
+      prop: "weight",
+      options: [
+        {
+          value: "regular",
+          label: "Regular",
+        },
+        {
+          value: "medium",
+          label: "Medium",
+        },
+        {
+          value: "semi-bold",
+          label: "Semi-Bold",
+        },
         {
-          value: "xxl",
-          label: "XXL",
+          value: "bold",
+          label: "Bold",
         },
       ],
     },
diff --git a/@stellar/design-system-website/src/componentPreview/iconButtonPreview.tsx b/@stellar/design-system-website/src/componentPreview/iconButtonPreview.tsx
index d4f7248f..5edff67c 100644
--- a/@stellar/design-system-website/src/componentPreview/iconButtonPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/iconButtonPreview.tsx
@@ -74,11 +74,11 @@ export const iconButtonPreview: ComponentPreview = {
           label: "Default color",
         },
         {
-          value: "var(--color-purple-50)",
+          value: "var(--sds-clr-lilac-09)",
           label: "Purple",
         },
         {
-          value: "var(--color-yellow-50)",
+          value: "var(--sds-clr-gold-09)",
           label: "Yellow",
         },
       ],
diff --git a/@stellar/design-system-website/src/componentPreview/inputPreview.tsx b/@stellar/design-system-website/src/componentPreview/inputPreview.tsx
index 1b03f732..3818080c 100644
--- a/@stellar/design-system-website/src/componentPreview/inputPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/inputPreview.tsx
@@ -19,6 +19,21 @@ export const inputPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "labelSuffix",
+      customValue: "optional",
+      options: [
+        {
+          value: "",
+          label: "No suffix",
+        },
+        {
+          value: "optional",
+          label: "Optional",
+        },
+      ],
+    },
     {
       type: "select",
       prop: "placeholder",
@@ -38,17 +53,17 @@ export const inputPreview: ComponentPreview = {
       type: "select",
       prop: "fieldSize",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
@@ -62,26 +77,30 @@ export const inputPreview: ComponentPreview = {
       prop: "isLabelUppercase",
       label: "Uppercase label",
     },
-    {
-      type: "checkbox",
-      prop: "isPill",
-      label: "Pill",
-    },
     {
       type: "checkbox",
       prop: "isError",
       label: "Error",
     },
-    {
-      type: "checkbox",
-      prop: "isExtraPadding",
-      label: "Extra padding",
-    },
     {
       type: "checkbox",
       prop: "isPassword",
       label: "Password",
     },
+    {
+      type: "select",
+      prop: "leftElement",
+      options: [
+        {
+          value: "",
+          label: "No left element",
+        },
+        {
+          value: "$",
+          label: "Left element",
+        },
+      ],
+    },
     {
       type: "select",
       prop: "rightElement",
@@ -89,11 +108,11 @@ export const inputPreview: ComponentPreview = {
       options: [
         {
           value: "",
-          label: "No element",
+          label: "No right element",
         },
         {
           value: "element",
-          label: "Element",
+          label: "Right element",
         },
       ],
     },
@@ -127,5 +146,63 @@ export const inputPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "success",
+      customValue: "Success message",
+      options: [
+        {
+          value: "",
+          label: "No success",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "copyButton",
+      customValue: { position: "right", showLabel: true },
+      options: [
+        {
+          value: "",
+          label: "No copy button",
+        },
+        {
+          value: "copyButton",
+          label: "Copy button",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoText",
+      options: [
+        {
+          value: "",
+          label: "No info text",
+        },
+        {
+          value: "Info text message",
+          label: "Info text",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoLink",
+      options: [
+        {
+          value: "",
+          label: "No info link",
+        },
+        {
+          value: "https://stellar.org",
+          label: "Info link",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/linkPreview.tsx b/@stellar/design-system-website/src/componentPreview/linkPreview.tsx
index d50e35c0..ed489770 100644
--- a/@stellar/design-system-website/src/componentPreview/linkPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/linkPreview.tsx
@@ -16,6 +16,18 @@ export const linkPreview: ComponentPreview = {
           value: "secondary",
           label: "Secondary",
         },
+        {
+          value: "success",
+          label: "Success",
+        },
+        {
+          value: "warning",
+          label: "Warning",
+        },
+        {
+          value: "error",
+          label: "Error",
+        },
       ],
     },
     {
diff --git a/@stellar/design-system-website/src/componentPreview/notificationPreview .tsx b/@stellar/design-system-website/src/componentPreview/notificationPreview .tsx
deleted file mode 100644
index b30b3062..00000000
--- a/@stellar/design-system-website/src/componentPreview/notificationPreview .tsx	
+++ /dev/null
@@ -1,65 +0,0 @@
-import React from "react";
-import { ComponentPreview } from "@site/src/components/PreviewBlock";
-import CheckIconSvg from "@site/static/img/check-icon.svg";
-
-export const notificationPreview: ComponentPreview = {
-  options: [
-    {
-      type: "select",
-      prop: "variant",
-      options: [
-        {
-          value: "primary",
-          label: "Primary",
-        },
-        {
-          value: "secondary",
-          label: "Secondary",
-        },
-        {
-          value: "success",
-          label: "Success",
-        },
-        {
-          value: "error",
-          label: "Error",
-        },
-        {
-          value: "warning",
-          label: "Warning",
-        },
-      ],
-    },
-    {
-      type: "select",
-      prop: "icon",
-      customValue: <CheckIconSvg />,
-      options: [
-        {
-          value: "",
-          label: "Default icon",
-        },
-        {
-          value: "customIcon",
-          label: "Custom icon",
-        },
-      ],
-    },
-    {
-      type: "select",
-      prop: "children",
-      customValue:
-        "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tenetur asperiores autem excepturi doloremque esse, dicta sunt soluta! Quia quis eos beatae et optio facere voluptatum. Labore illum molestiae corporis id?",
-      options: [
-        {
-          value: "",
-          label: "No message",
-        },
-        {
-          value: "Message",
-          label: "Message",
-        },
-      ],
-    },
-  ],
-};
diff --git a/@stellar/design-system-website/src/componentPreview/notificationPreview.tsx b/@stellar/design-system-website/src/componentPreview/notificationPreview.tsx
new file mode 100644
index 00000000..3f63a68e
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/notificationPreview.tsx
@@ -0,0 +1,70 @@
+import React from "react";
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+import CheckIconSvg from "@site/static/img/check-icon.svg";
+
+export const notificationPreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "variant",
+      options: [
+        {
+          value: "primary",
+          label: "Primary",
+        },
+        {
+          value: "secondary",
+          label: "Secondary",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+        {
+          value: "error",
+          label: "Error",
+        },
+        {
+          value: "warning",
+          label: "Warning",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "icon",
+      customValue: <CheckIconSvg />,
+      options: [
+        {
+          value: "",
+          label: "Default icon",
+        },
+        {
+          value: "customIcon",
+          label: "Custom icon",
+        },
+      ],
+    },
+    {
+      type: "checkbox",
+      prop: "isFilled",
+      label: "Filled",
+    },
+    {
+      type: "select",
+      prop: "children",
+      customValue:
+        "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Tenetur asperiores autem excepturi doloremque esse, dicta sunt soluta! Quia quis eos beatae et optio facere voluptatum. Labore illum molestiae corporis id?",
+      options: [
+        {
+          value: "",
+          label: "No message",
+        },
+        {
+          value: "Message",
+          label: "Message",
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/paragraphPreview.tsx b/@stellar/design-system-website/src/componentPreview/paragraphPreview.tsx
deleted file mode 100644
index 61659f4c..00000000
--- a/@stellar/design-system-website/src/componentPreview/paragraphPreview.tsx
+++ /dev/null
@@ -1,33 +0,0 @@
-import { ComponentPreview } from "@site/src/components/PreviewBlock";
-
-export const paragraphPreview: ComponentPreview = {
-  options: [
-    {
-      type: "select",
-      prop: "size",
-      options: [
-        {
-          value: "xs",
-          label: "XS",
-        },
-        {
-          value: "sm",
-          label: "SM",
-        },
-        {
-          value: "md",
-          label: "MD",
-        },
-        {
-          value: "lg",
-          label: "LG",
-        },
-      ],
-    },
-    {
-      type: "checkbox",
-      prop: "asDiv",
-      label: "As div",
-    },
-  ],
-};
diff --git a/@stellar/design-system-website/src/componentPreview/profilePreview.tsx b/@stellar/design-system-website/src/componentPreview/profilePreview.tsx
index a1b5e21e..ff170d05 100644
--- a/@stellar/design-system-website/src/componentPreview/profilePreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/profilePreview.tsx
@@ -6,17 +6,17 @@ export const profilePreview: ComponentPreview = {
       type: "select",
       prop: "size",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
diff --git a/@stellar/design-system-website/src/componentPreview/radioButtonPreview.tsx b/@stellar/design-system-website/src/componentPreview/radioButtonPreview.tsx
index 95184a59..23b2f39c 100644
--- a/@stellar/design-system-website/src/componentPreview/radioButtonPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/radioButtonPreview.tsx
@@ -6,17 +6,17 @@ export const radioButtonPreview: ComponentPreview = {
       type: "select",
       prop: "fieldSize",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
diff --git a/@stellar/design-system-website/src/componentPreview/selectPreview.tsx b/@stellar/design-system-website/src/componentPreview/selectPreview.tsx
index 378da196..22b952f7 100644
--- a/@stellar/design-system-website/src/componentPreview/selectPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/selectPreview.tsx
@@ -19,19 +19,34 @@ export const selectPreview: ComponentPreview = {
     },
     {
       type: "select",
-      prop: "fieldSize",
+      prop: "labelSuffix",
+      customValue: "optional",
       options: [
         {
-          value: "md",
-          label: "MD",
+          value: "",
+          label: "No suffix",
         },
+        {
+          value: "optional",
+          label: "Optional",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "fieldSize",
+      options: [
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
@@ -45,21 +60,11 @@ export const selectPreview: ComponentPreview = {
       prop: "isLabelUppercase",
       label: "Uppercase label",
     },
-    {
-      type: "checkbox",
-      prop: "isPill",
-      label: "Pill",
-    },
     {
       type: "checkbox",
       prop: "isError",
       label: "Error",
     },
-    {
-      type: "checkbox",
-      prop: "isExtraPadding",
-      label: "Extra padding",
-    },
     {
       type: "select",
       prop: "note",
@@ -90,5 +95,48 @@ export const selectPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "success",
+      customValue: "Success message",
+      options: [
+        {
+          value: "",
+          label: "No success",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoText",
+      options: [
+        {
+          value: "",
+          label: "No info text",
+        },
+        {
+          value: "Info text message",
+          label: "Info text",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoLink",
+      options: [
+        {
+          value: "",
+          label: "No info link",
+        },
+        {
+          value: "https://stellar.org",
+          label: "Info link",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/textPreview.tsx b/@stellar/design-system-website/src/componentPreview/textPreview.tsx
new file mode 100644
index 00000000..61530dc4
--- /dev/null
+++ b/@stellar/design-system-website/src/componentPreview/textPreview.tsx
@@ -0,0 +1,96 @@
+import { ComponentPreview } from "@site/src/components/PreviewBlock";
+
+export const textPreview: ComponentPreview = {
+  options: [
+    {
+      type: "select",
+      prop: "as",
+      options: [
+        {
+          value: "p",
+          label: "p",
+        },
+        {
+          value: "div",
+          label: "div",
+        },
+        {
+          value: "span",
+          label: "span",
+        },
+        {
+          value: "h1",
+          label: "h1",
+        },
+        {
+          value: "h2",
+          label: "h2",
+        },
+        {
+          value: "h3",
+          label: "h3",
+        },
+        {
+          value: "h4",
+          label: "h4",
+        },
+        {
+          value: "h5",
+          label: "h5",
+        },
+        {
+          value: "h6",
+          label: "h6",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "size",
+      options: [
+        {
+          value: "xs",
+          label: "XS",
+        },
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+        {
+          value: "xl",
+          label: "XL",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "weight",
+      options: [
+        {
+          value: "regular",
+          label: "Regular",
+        },
+        {
+          value: "medium",
+          label: "Medium",
+        },
+        {
+          value: "semi-bold",
+          label: "Semi-Bold",
+        },
+        {
+          value: "bold",
+          label: "Bold",
+        },
+      ],
+    },
+  ],
+};
diff --git a/@stellar/design-system-website/src/componentPreview/textareaPreview.tsx b/@stellar/design-system-website/src/componentPreview/textareaPreview.tsx
index c7e0885f..f541c9b9 100644
--- a/@stellar/design-system-website/src/componentPreview/textareaPreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/textareaPreview.tsx
@@ -17,6 +17,21 @@ export const textareaPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "labelSuffix",
+      customValue: "optional",
+      options: [
+        {
+          value: "",
+          label: "No suffix",
+        },
+        {
+          value: "optional",
+          label: "Optional",
+        },
+      ],
+    },
     {
       type: "select",
       prop: "placeholder",
@@ -36,17 +51,17 @@ export const textareaPreview: ComponentPreview = {
       type: "select",
       prop: "fieldSize",
       options: [
-        {
-          value: "md",
-          label: "MD",
-        },
         {
           value: "sm",
           label: "SM",
         },
         {
-          value: "xs",
-          label: "XS",
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
         },
       ],
     },
@@ -65,11 +80,6 @@ export const textareaPreview: ComponentPreview = {
       prop: "isError",
       label: "Error",
     },
-    {
-      type: "checkbox",
-      prop: "isExtraPadding",
-      label: "Extra padding",
-    },
     {
       type: "select",
       prop: "note",
@@ -100,5 +110,63 @@ export const textareaPreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "success",
+      customValue: "Success message",
+      options: [
+        {
+          value: "",
+          label: "No success",
+        },
+        {
+          value: "success",
+          label: "Success",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "hasCopyButton",
+      customValue: true,
+      options: [
+        {
+          value: "",
+          label: "No copy button",
+        },
+        {
+          value: "copy",
+          label: "Copy button",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoText",
+      options: [
+        {
+          value: "",
+          label: "No info text",
+        },
+        {
+          value: "Info text message",
+          label: "Info text",
+        },
+      ],
+    },
+    {
+      type: "select",
+      prop: "infoLink",
+      options: [
+        {
+          value: "",
+          label: "No info link",
+        },
+        {
+          value: "https://stellar.org",
+          label: "Info link",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/componentPreview/titlePreview.tsx b/@stellar/design-system-website/src/componentPreview/titlePreview.tsx
deleted file mode 100644
index 261f3a66..00000000
--- a/@stellar/design-system-website/src/componentPreview/titlePreview.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import { ComponentPreview } from "@site/src/components/PreviewBlock";
-
-export const titlePreview: ComponentPreview = {
-  options: [
-    {
-      type: "select",
-      prop: "size",
-      options: [
-        {
-          value: "xs",
-          label: "XS",
-        },
-        {
-          value: "sm",
-          label: "SM",
-        },
-        {
-          value: "md",
-          label: "MD",
-        },
-        {
-          value: "lg",
-          label: "LG",
-        },
-      ],
-    },
-  ],
-};
diff --git a/@stellar/design-system-website/src/componentPreview/togglePreview.tsx b/@stellar/design-system-website/src/componentPreview/togglePreview.tsx
index 45d6c9b0..ed38f5e3 100644
--- a/@stellar/design-system-website/src/componentPreview/togglePreview.tsx
+++ b/@stellar/design-system-website/src/componentPreview/togglePreview.tsx
@@ -22,5 +22,23 @@ export const togglePreview: ComponentPreview = {
         },
       ],
     },
+    {
+      type: "select",
+      prop: "fieldSize",
+      options: [
+        {
+          value: "sm",
+          label: "SM",
+        },
+        {
+          value: "md",
+          label: "MD",
+        },
+        {
+          value: "lg",
+          label: "LG",
+        },
+      ],
+    },
   ],
 };
diff --git a/@stellar/design-system-website/src/components/AssetPreview/index.tsx b/@stellar/design-system-website/src/components/AssetPreview/index.tsx
index 2fa82e3e..6fb38d3d 100644
--- a/@stellar/design-system-website/src/components/AssetPreview/index.tsx
+++ b/@stellar/design-system-website/src/components/AssetPreview/index.tsx
@@ -15,167 +15,1202 @@ export const AssetPreview = ({ type }: { type: "icon" | "logo" }) => {
 
   const ICON = Icon
     ? [
-        <Icon.AccountBalanceWallet />,
-        <Icon.AccountBalance />,
-        <Icon.AccountCircle />,
-        <Icon.AddCircle />,
-        <Icon.Add />,
-        <Icon.AllInbox />,
+        <Icon.ActivityHeart />,
+        <Icon.Activity />,
+        <Icon.Airplay />,
+        <Icon.Airpods />,
+        <Icon.AlarmClockCheck />,
+        <Icon.AlarmClockMinus />,
+        <Icon.AlarmClockOff />,
+        <Icon.AlarmClockPlus />,
+        <Icon.AlarmClock />,
+        <Icon.AlertCircle />,
+        <Icon.AlertHexagon />,
+        <Icon.AlertOctagon />,
+        <Icon.AlertSquare />,
+        <Icon.AlertTriangle />,
+        <Icon.AlignBottom01 />,
+        <Icon.AlignBottom02 />,
+        <Icon.AlignCenter />,
+        <Icon.AlignHorizontalCentre01 />,
+        <Icon.AlignHorizontalCentre02 />,
+        <Icon.AlignJustify />,
+        <Icon.AlignLeft01 />,
+        <Icon.AlignLeft02 />,
+        <Icon.AlignLeft />,
+        <Icon.AlignRight01 />,
+        <Icon.AlignRight02 />,
+        <Icon.AlignRight />,
+        <Icon.AlignTop01 />,
+        <Icon.AlignTop02 />,
+        <Icon.AlignVerticalCenter01 />,
+        <Icon.AlignVerticalCenter02 />,
         <Icon.Anchor />,
-        <Icon.Aod />,
+        <Icon.AnnotationAlert />,
+        <Icon.AnnotationCheck />,
+        <Icon.AnnotationDots />,
+        <Icon.AnnotationHeart />,
+        <Icon.AnnotationInfo />,
+        <Icon.AnnotationPlus />,
+        <Icon.AnnotationQuestion />,
+        <Icon.AnnotationX />,
+        <Icon.Annotation />,
+        <Icon.Announcement01 />,
+        <Icon.Announcement02 />,
+        <Icon.Announcement03 />,
+        <Icon.Archive />,
+        <Icon.ArrowBlockDown />,
+        <Icon.ArrowBlockLeft />,
+        <Icon.ArrowBlockRight />,
+        <Icon.ArrowBlockUp />,
+        <Icon.ArrowCircleBrokenDownLeft />,
+        <Icon.ArrowCircleBrokenDownRight />,
+        <Icon.ArrowCircleBrokenDown />,
+        <Icon.ArrowCircleBrokenLeft />,
+        <Icon.ArrowCircleBrokenRight />,
+        <Icon.ArrowCircleBrokenUpLeft />,
+        <Icon.ArrowCircleBrokenUpRight />,
+        <Icon.ArrowCircleBrokenUp />,
+        <Icon.ArrowCircleDownLeft />,
+        <Icon.ArrowCircleDownRight />,
         <Icon.ArrowCircleDown />,
         <Icon.ArrowCircleLeft />,
         <Icon.ArrowCircleRight />,
+        <Icon.ArrowCircleUpLeft />,
+        <Icon.ArrowCircleUpRight />,
         <Icon.ArrowCircleUp />,
+        <Icon.ArrowDownLeft />,
+        <Icon.ArrowDownRight />,
         <Icon.ArrowDown />,
         <Icon.ArrowLeft />,
+        <Icon.ArrowNarrowDownLeft />,
+        <Icon.ArrowNarrowDownRight />,
+        <Icon.ArrowNarrowDown />,
+        <Icon.ArrowNarrowLeft />,
+        <Icon.ArrowNarrowRight />,
+        <Icon.ArrowNarrowUpLeft />,
+        <Icon.ArrowNarrowUpRight />,
+        <Icon.ArrowNarrowUp />,
         <Icon.ArrowRight />,
-        <Icon.ArrowSmallDown />,
-        <Icon.ArrowSmallLeft />,
-        <Icon.ArrowSmallRight />,
-        <Icon.ArrowSmallUp />,
-        <Icon.ArrowTopLeft />,
-        <Icon.ArrowTopRight />,
+        <Icon.ArrowSquareDownLeft />,
+        <Icon.ArrowSquareDownRight />,
+        <Icon.ArrowSquareDown />,
+        <Icon.ArrowSquareLeft />,
+        <Icon.ArrowSquareRight />,
+        <Icon.ArrowSquareUpLeft />,
+        <Icon.ArrowSquareUpRight />,
+        <Icon.ArrowSquareUp />,
+        <Icon.ArrowUpLeft />,
+        <Icon.ArrowUpRight />,
         <Icon.ArrowUp />,
-        <Icon.Article />,
-        <Icon.Assets />,
-        <Icon.AttachFile />,
-        <Icon.Attachment />,
-        <Icon.Backspace />,
-        <Icon.Backup />,
-        <Icon.BarChart />,
-        <Icon.Block />,
-        <Icon.Burn />,
-        <Icon.CalendarMonth />,
-        <Icon.CalendarToday />,
-        <Icon.ChatBubble />,
-        <Icon.Chat />,
+        <Icon.ArrowsDown />,
+        <Icon.ArrowsLeft />,
+        <Icon.ArrowsRight />,
+        <Icon.ArrowsTriangle />,
+        <Icon.ArrowsUp />,
+        <Icon.Asterisk01 />,
+        <Icon.Asterisk02 />,
+        <Icon.AtSign />,
+        <Icon.Atom01 />,
+        <Icon.Atom02 />,
+        <Icon.Attachment01 />,
+        <Icon.Attachment02 />,
+        <Icon.Award01 />,
+        <Icon.Award02 />,
+        <Icon.Award03 />,
+        <Icon.Award04 />,
+        <Icon.Award05 />,
+        <Icon.Backpack />,
+        <Icon.BankNote01 />,
+        <Icon.BankNote02 />,
+        <Icon.BankNote03 />,
+        <Icon.Bank />,
+        <Icon.BarChart01 />,
+        <Icon.BarChart02 />,
+        <Icon.BarChart03 />,
+        <Icon.BarChart04 />,
+        <Icon.BarChart05 />,
+        <Icon.BarChart06 />,
+        <Icon.BarChart07 />,
+        <Icon.BarChart08 />,
+        <Icon.BarChart09 />,
+        <Icon.BarChart10 />,
+        <Icon.BarChart11 />,
+        <Icon.BarChart12 />,
+        <Icon.BarChartCircle01 />,
+        <Icon.BarChartCircle02 />,
+        <Icon.BarChartCircle03 />,
+        <Icon.BarChartSquare01 />,
+        <Icon.BarChartSquare02 />,
+        <Icon.BarChartSquare03 />,
+        <Icon.BarChartSquareDown />,
+        <Icon.BarChartSquareMinus />,
+        <Icon.BarChartSquarePlus />,
+        <Icon.BarChartSquareUp />,
+        <Icon.BarLineChart />,
+        <Icon.BatteryCharging01 />,
+        <Icon.BatteryCharging02 />,
+        <Icon.BatteryEmpty />,
+        <Icon.BatteryFull />,
+        <Icon.BatteryLow />,
+        <Icon.BatteryMid />,
+        <Icon.Beaker01 />,
+        <Icon.Beaker02 />,
+        <Icon.Bell01 />,
+        <Icon.Bell02 />,
+        <Icon.Bell03 />,
+        <Icon.Bell04 />,
+        <Icon.BellMinus />,
+        <Icon.BellOff01 />,
+        <Icon.BellOff02 />,
+        <Icon.BellOff03 />,
+        <Icon.BellPlus />,
+        <Icon.BellRinging01 />,
+        <Icon.BellRinging02 />,
+        <Icon.BellRinging03 />,
+        <Icon.BellRinging04 />,
+        <Icon.BezierCurve01 />,
+        <Icon.BezierCurve02 />,
+        <Icon.BezierCurve03 />,
+        <Icon.BluetoothConnect />,
+        <Icon.BluetoothOff />,
+        <Icon.BluetoothOn />,
+        <Icon.BluetoothSignal />,
+        <Icon.Bold01 />,
+        <Icon.Bold02 />,
+        <Icon.BoldSquare />,
+        <Icon.BookClosed />,
+        <Icon.BookOpen01 />,
+        <Icon.BookOpen02 />,
+        <Icon.BookmarkAdd />,
+        <Icon.BookmarkCheck />,
+        <Icon.BookmarkMinus />,
+        <Icon.BookmarkX />,
+        <Icon.Bookmark />,
+        <Icon.Box />,
+        <Icon.BracketsCheck />,
+        <Icon.BracketsEllipses />,
+        <Icon.BracketsMinus />,
+        <Icon.BracketsPlus />,
+        <Icon.BracketsSlash />,
+        <Icon.BracketsX />,
+        <Icon.Brackets />,
+        <Icon.Briefcase01 />,
+        <Icon.Briefcase02 />,
+        <Icon.Browser />,
+        <Icon.Brush01 />,
+        <Icon.Brush02 />,
+        <Icon.Brush03 />,
+        <Icon.Building01 />,
+        <Icon.Building02 />,
+        <Icon.Building03 />,
+        <Icon.Building04 />,
+        <Icon.Building05 />,
+        <Icon.Building06 />,
+        <Icon.Building07 />,
+        <Icon.Building08 />,
+        <Icon.Bus />,
+        <Icon.Calculator />,
+        <Icon.CalendarCheck01 />,
+        <Icon.CalendarCheck02 />,
+        <Icon.CalendarDate />,
+        <Icon.CalendarHeart01 />,
+        <Icon.CalendarHeart02 />,
+        <Icon.CalendarMinus01 />,
+        <Icon.CalendarMinus02 />,
+        <Icon.CalendarPlus01 />,
+        <Icon.CalendarPlus02 />,
+        <Icon.Calendar />,
+        <Icon.Camera01 />,
+        <Icon.Camera02 />,
+        <Icon.Camera03 />,
+        <Icon.CameraLens />,
+        <Icon.CameraOff />,
+        <Icon.CameraPlus />,
+        <Icon.Car01 />,
+        <Icon.Car02 />,
+        <Icon.Certificate01 />,
+        <Icon.Certificate02 />,
+        <Icon.ChartBreakoutCircle />,
+        <Icon.ChartBreakoutSquare />,
+        <Icon.CheckCircleBroken />,
         <Icon.CheckCircle />,
+        <Icon.CheckDone01 />,
+        <Icon.CheckDone02 />,
+        <Icon.CheckHeart />,
+        <Icon.CheckSquareBroken />,
+        <Icon.CheckSquare />,
+        <Icon.CheckVerified01 />,
+        <Icon.CheckVerified02 />,
+        <Icon.CheckVerified03 />,
         <Icon.Check />,
-        <Icon.ChevronDoubleDown />,
-        <Icon.ChevronDoubleLeft />,
-        <Icon.ChevronDoubleRight />,
-        <Icon.ChevronDoubleUp />,
+        <Icon.ChevronDownDouble />,
         <Icon.ChevronDown />,
+        <Icon.ChevronLeftDouble />,
         <Icon.ChevronLeft />,
+        <Icon.ChevronRightDouble />,
         <Icon.ChevronRight />,
+        <Icon.ChevronSelectorHorizontal />,
+        <Icon.ChevronSelectorVertical />,
+        <Icon.ChevronUpDouble />,
         <Icon.ChevronUp />,
+        <Icon.ChromeCast />,
+        <Icon.CircleCut />,
+        <Icon.Circle />,
+        <Icon.Clapperboard />,
+        <Icon.ClipboardAttachment />,
+        <Icon.ClipboardCheck />,
+        <Icon.ClipboardDownload />,
+        <Icon.ClipboardMinus />,
+        <Icon.ClipboardPlus />,
+        <Icon.ClipboardX />,
+        <Icon.Clipboard />,
+        <Icon.ClockCheck />,
+        <Icon.ClockFastForward />,
+        <Icon.ClockPlus />,
+        <Icon.ClockRefresh />,
+        <Icon.ClockRewind />,
+        <Icon.ClockSnooze />,
+        <Icon.ClockStopwatch />,
         <Icon.Clock />,
-        <Icon.Close />,
-        <Icon.CloudDone />,
-        <Icon.CloudDownload />,
-        <Icon.Code />,
-        <Icon.ContactPage />,
-        <Icon.Contacts />,
-        <Icon.ContentCopy />,
-        <Icon.ContentPaste />,
-        <Icon.CopyAll />,
-        <Icon.CurrencyExchange />,
-        <Icon.Dashboard />,
-        <Icon.DataArray />,
-        <Icon.DataObject />,
-        <Icon.Database />,
-        <Icon.DeleteForever />,
+        <Icon.Cloud01 />,
+        <Icon.Cloud02 />,
+        <Icon.Cloud03 />,
+        <Icon.CloudBlank01 />,
+        <Icon.CloudBlank02 />,
+        <Icon.CloudLightning />,
+        <Icon.CloudMoon />,
+        <Icon.CloudOff />,
+        <Icon.CloudRaining01 />,
+        <Icon.CloudRaining02 />,
+        <Icon.CloudRaining03 />,
+        <Icon.CloudRaining04 />,
+        <Icon.CloudRaining05 />,
+        <Icon.CloudRaining06 />,
+        <Icon.CloudSnowing01 />,
+        <Icon.CloudSnowing02 />,
+        <Icon.CloudSun01 />,
+        <Icon.CloudSun02 />,
+        <Icon.CloudSun03 />,
+        <Icon.Code01 />,
+        <Icon.Code02 />,
+        <Icon.CodeBrowser />,
+        <Icon.CodeCircle01 />,
+        <Icon.CodeCircle02 />,
+        <Icon.CodeCircle03 />,
+        <Icon.CodeSnippet01 />,
+        <Icon.CodeSnippet02 />,
+        <Icon.CodeSquare01 />,
+        <Icon.CodeSquare02 />,
+        <Icon.Codepen />,
+        <Icon.Coins01 />,
+        <Icon.Coins02 />,
+        <Icon.Coins03 />,
+        <Icon.Coins04 />,
+        <Icon.CoinsHand />,
+        <Icon.CoinsStacked01 />,
+        <Icon.CoinsStacked02 />,
+        <Icon.CoinsStacked03 />,
+        <Icon.CoinsStacked04 />,
+        <Icon.CoinsSwap01 />,
+        <Icon.CoinsSwap02 />,
+        <Icon.Colors />,
+        <Icon.Columns01 />,
+        <Icon.Columns02 />,
+        <Icon.Columns03 />,
+        <Icon.Command />,
+        <Icon.Compass01 />,
+        <Icon.Compass02 />,
+        <Icon.Compass03 />,
+        <Icon.Compass />,
+        <Icon.Container />,
+        <Icon.Contrast01 />,
+        <Icon.Contrast02 />,
+        <Icon.Contrast03 />,
+        <Icon.Copy01 />,
+        <Icon.Copy02 />,
+        <Icon.Copy03 />,
+        <Icon.Copy04 />,
+        <Icon.Copy05 />,
+        <Icon.Copy06 />,
+        <Icon.Copy07 />,
+        <Icon.CornerDownLeft />,
+        <Icon.CornerDownRight />,
+        <Icon.CornerLeftDown />,
+        <Icon.CornerLeftUp />,
+        <Icon.CornerRightDown />,
+        <Icon.CornerRightUp />,
+        <Icon.CornerUpLeft />,
+        <Icon.CornerUpRight />,
+        <Icon.CpuChip01 />,
+        <Icon.CpuChip02 />,
+        <Icon.CreditCard01 />,
+        <Icon.CreditCard02 />,
+        <Icon.CreditCardCheck />,
+        <Icon.CreditCardDown />,
+        <Icon.CreditCardDownload />,
+        <Icon.CreditCardEdit />,
+        <Icon.CreditCardLock />,
+        <Icon.CreditCardMinus />,
+        <Icon.CreditCardPlus />,
+        <Icon.CreditCardRefresh />,
+        <Icon.CreditCardSearch />,
+        <Icon.CreditCardShield />,
+        <Icon.CreditCardUp />,
+        <Icon.CreditCardUpload />,
+        <Icon.CreditCardX />,
+        <Icon.Crop01 />,
+        <Icon.Crop02 />,
+        <Icon.Cryptocurrency01 />,
+        <Icon.Cryptocurrency02 />,
+        <Icon.Cryptocurrency03 />,
+        <Icon.Cryptocurrency04 />,
+        <Icon.Cube01 />,
+        <Icon.Cube02 />,
+        <Icon.Cube03 />,
+        <Icon.Cube04 />,
+        <Icon.CubeOutline />,
+        <Icon.CurrencyBitcoinCircle />,
+        <Icon.CurrencyBitcoin />,
+        <Icon.CurrencyDollarCircle />,
+        <Icon.CurrencyDollar />,
+        <Icon.CurrencyEthereumCircle />,
+        <Icon.CurrencyEthereum />,
+        <Icon.CurrencyEuroCircle />,
+        <Icon.CurrencyEuro />,
+        <Icon.CurrencyPoundCircle />,
+        <Icon.CurrencyPound />,
+        <Icon.CurrencyRubleCircle />,
+        <Icon.CurrencyRuble />,
+        <Icon.CurrencyRupeeCircle />,
+        <Icon.CurrencyRupee />,
+        <Icon.CurrencyYenCircle />,
+        <Icon.CurrencyYen />,
+        <Icon.Cursor01 />,
+        <Icon.Cursor02 />,
+        <Icon.Cursor03 />,
+        <Icon.Cursor04 />,
+        <Icon.CursorBox />,
+        <Icon.CursorClick01 />,
+        <Icon.CursorClick02 />,
+        <Icon.Data />,
+        <Icon.Database01 />,
+        <Icon.Database02 />,
+        <Icon.Database03 />,
+        <Icon.Dataflow01 />,
+        <Icon.Dataflow02 />,
+        <Icon.Dataflow03 />,
+        <Icon.Dataflow04 />,
         <Icon.Delete />,
-        <Icon.DeployedCode />,
-        <Icon.Discord />,
-        <Icon.Done />,
-        <Icon.Dot />,
-        <Icon.Download />,
-        <Icon.Draft />,
-        <Icon.DragIndicator />,
-        <Icon.DragPan />,
-        <Icon.Edit />,
-        <Icon.Error />,
-        <Icon.ExternalLink />,
-        <Icon.Favorite />,
-        <Icon.Filter />,
-        <Icon.Flag />,
-        <Icon.FolderCopy />,
-        <Icon.Free />,
-        <Icon.FrontHand />,
-        <Icon.Github />,
-        <Icon.Grade />,
-        <Icon.GroupAdd />,
-        <Icon.Help />,
-        <Icon.Hide />,
-        <Icon.History />,
-        <Icon.Home />,
-        <Icon.HourglassBottom />,
-        <Icon.HourglassEmpty />,
-        <Icon.HourglassFull />,
-        <Icon.HourglassTop />,
-        <Icon.Info />,
-        <Icon.Insights />,
-        <Icon.IosShare />,
-        <Icon.Join />,
-        <Icon.KeyVisualizer />,
-        <Icon.Key />,
-        <Icon.Layers />,
-        <Icon.Link />,
-        <Icon.LocalMall />,
-        <Icon.LockOpen />,
-        <Icon.Lock />,
-        <Icon.Login />,
-        <Icon.Logout />,
-        <Icon.Mail />,
-        <Icon.ManageSearch />,
-        <Icon.Menu />,
-        <Icon.ModeDark />,
-        <Icon.ModeLight />,
-        <Icon.MonetizationOn />,
-        <Icon.MoreHoriz />,
-        <Icon.MoreVert />,
-        <Icon.MoveDown />,
-        <Icon.Notifications />,
-        <Icon.Password />,
-        <Icon.Payments />,
-        <Icon.PersonAdd />,
-        <Icon.Public />,
-        <Icon.QrCode2 />,
-        <Icon.QrCodeScanner />,
-        <Icon.QrCode />,
-        <Icon.Redeem />,
-        <Icon.RefreshHoriz />,
-        <Icon.RefreshVert />,
-        <Icon.Remove />,
-        <Icon.Replay />,
-        <Icon.Search />,
-        <Icon.Send />,
-        <Icon.Settings />,
-        <Icon.Shield />,
-        <Icon.ShowChart />,
-        <Icon.Show />,
-        <Icon.SignalCellularAlt />,
-        <Icon.Smile />,
-        <Icon.SortByAlpha />,
-        <Icon.SpaceDashboard />,
-        <Icon.StackedLineChart />,
-        <Icon.Status />,
-        <Icon.Store />,
-        <Icon.Toll />,
-        <Icon.TravelExplore />,
-        <Icon.Tune />,
-        <Icon.UnfoldLess />,
-        <Icon.UnfoldMore />,
-        <Icon.User />,
-        <Icon.Users />,
-        <Icon.VerifiedUser />,
-        <Icon.Verified />,
-        <Icon.VpnKey />,
-        <Icon.Wallet />,
-        <Icon.Warning />,
-        <Icon.ZoomOutMap />,
+        <Icon.Diamond01 />,
+        <Icon.Diamond02 />,
+        <Icon.Dice1 />,
+        <Icon.Dice2 />,
+        <Icon.Dice3 />,
+        <Icon.Dice4 />,
+        <Icon.Dice5 />,
+        <Icon.Dice6 />,
+        <Icon.Disc01 />,
+        <Icon.Disc02 />,
+        <Icon.DistributeSpacingHorizontal />,
+        <Icon.DistributeSpacingVertical />,
+        <Icon.Divide01 />,
+        <Icon.Divide02 />,
+        <Icon.Divide03 />,
+        <Icon.Divider />,
+        <Icon.Dotpoints01 />,
+        <Icon.Dotpoints02 />,
+        <Icon.DotsGrid />,
+        <Icon.DotsHorizontal />,
+        <Icon.DotsVertical />,
+        <Icon.Download01 />,
+        <Icon.Download02 />,
+        <Icon.Download03 />,
+        <Icon.Download04 />,
+        <Icon.DownloadCloud01 />,
+        <Icon.DownloadCloud02 />,
+        <Icon.Drop />,
+        <Icon.Droplets01 />,
+        <Icon.Droplets02 />,
+        <Icon.Droplets03 />,
+        <Icon.Dropper />,
+        <Icon.Edit01 />,
+        <Icon.Edit02 />,
+        <Icon.Edit03 />,
+        <Icon.Edit04 />,
+        <Icon.Edit05 />,
+        <Icon.EqualNot />,
+        <Icon.Equal />,
+        <Icon.Eraser />,
+        <Icon.Expand01 />,
+        <Icon.Expand02 />,
+        <Icon.Expand03 />,
+        <Icon.Expand04 />,
+        <Icon.Expand05 />,
+        <Icon.Expand06 />,
+        <Icon.EyeOff />,
+        <Icon.Eye />,
+        <Icon.FaceContent />,
+        <Icon.FaceFrown />,
+        <Icon.FaceHappy />,
+        <Icon.FaceIdSquare />,
+        <Icon.FaceId />,
+        <Icon.FaceNeutral />,
+        <Icon.FaceSad />,
+        <Icon.FaceSmile />,
+        <Icon.FaceWink />,
+        <Icon.FastBackward />,
+        <Icon.FastForward />,
+        <Icon.Feather />,
+        <Icon.Figma />,
+        <Icon.File01 />,
+        <Icon.File02 />,
+        <Icon.File03 />,
+        <Icon.File04 />,
+        <Icon.File05 />,
+        <Icon.File06 />,
+        <Icon.File07 />,
+        <Icon.FileAttachment01 />,
+        <Icon.FileAttachment02 />,
+        <Icon.FileAttachment03 />,
+        <Icon.FileAttachment04 />,
+        <Icon.FileAttachment05 />,
+        <Icon.FileCheck01 />,
+        <Icon.FileCheck02 />,
+        <Icon.FileCheck03 />,
+        <Icon.FileCode01 />,
+        <Icon.FileCode02 />,
+        <Icon.FileDownload01 />,
+        <Icon.FileDownload02 />,
+        <Icon.FileDownload03 />,
+        <Icon.FileHeart01 />,
+        <Icon.FileHeart02 />,
+        <Icon.FileHeart03 />,
+        <Icon.FileLock01 />,
+        <Icon.FileLock02 />,
+        <Icon.FileLock03 />,
+        <Icon.FileMinus01 />,
+        <Icon.FileMinus02 />,
+        <Icon.FileMinus03 />,
+        <Icon.FilePlus01 />,
+        <Icon.FilePlus02 />,
+        <Icon.FilePlus03 />,
+        <Icon.FileQuestion01 />,
+        <Icon.FileQuestion02 />,
+        <Icon.FileQuestion03 />,
+        <Icon.FileSearch01 />,
+        <Icon.FileSearch02 />,
+        <Icon.FileSearch03 />,
+        <Icon.FileShield01 />,
+        <Icon.FileShield02 />,
+        <Icon.FileShield03 />,
+        <Icon.FileX01 />,
+        <Icon.FileX02 />,
+        <Icon.FileX03 />,
+        <Icon.Film01 />,
+        <Icon.Film02 />,
+        <Icon.Film03 />,
+        <Icon.FilterFunnel01 />,
+        <Icon.FilterFunnel02 />,
+        <Icon.FilterLines />,
+        <Icon.Fingerprint01 />,
+        <Icon.Fingerprint02 />,
+        <Icon.Fingerprint03 />,
+        <Icon.Fingerprint04 />,
+        <Icon.Flag01 />,
+        <Icon.Flag02 />,
+        <Icon.Flag03 />,
+        <Icon.Flag04 />,
+        <Icon.Flag05 />,
+        <Icon.Flag06 />,
+        <Icon.FlashOff />,
+        <Icon.Flash />,
+        <Icon.FlexAlignBottom />,
+        <Icon.FlexAlignLeft />,
+        <Icon.FlexAlignRight />,
+        <Icon.FlexAlignTop />,
+        <Icon.FlipBackward />,
+        <Icon.FlipForward />,
+        <Icon.FolderCheck />,
+        <Icon.FolderClosed />,
+        <Icon.FolderCode />,
+        <Icon.FolderDownload />,
+        <Icon.FolderLock />,
+        <Icon.FolderMinus />,
+        <Icon.FolderPlus />,
+        <Icon.FolderQuestion />,
+        <Icon.FolderSearch />,
+        <Icon.FolderShield />,
+        <Icon.FolderX />,
+        <Icon.Folder />,
+        <Icon.Framer />,
+        <Icon.GamingPad01 />,
+        <Icon.GamingPad02 />,
+        <Icon.Gift01 />,
+        <Icon.Gift02 />,
+        <Icon.GitBranch01 />,
+        <Icon.GitBranch02 />,
+        <Icon.GitCommit />,
+        <Icon.GitMerge />,
+        <Icon.GitPullRequest />,
+        <Icon.Glasses01 />,
+        <Icon.Glasses02 />,
+        <Icon.Globe01 />,
+        <Icon.Globe02 />,
+        <Icon.Globe03 />,
+        <Icon.Globe04 />,
+        <Icon.Globe05 />,
+        <Icon.Globe06 />,
+        <Icon.GlobeSlated01 />,
+        <Icon.GlobeSlated02 />,
+        <Icon.GoogleChrome />,
+        <Icon.GraduationHat01 />,
+        <Icon.GraduationHat02 />,
+        <Icon.Grid01 />,
+        <Icon.Grid02 />,
+        <Icon.Grid03 />,
+        <Icon.GridDotsBlank />,
+        <Icon.GridDotsBottom />,
+        <Icon.GridDotsHorizontalCenter />,
+        <Icon.GridDotsLeft />,
+        <Icon.GridDotsOuter />,
+        <Icon.GridDotsRight />,
+        <Icon.GridDotsTop />,
+        <Icon.GridDotsVerticalCenter />,
+        <Icon.Hand />,
+        <Icon.HardDrive />,
+        <Icon.Hash01 />,
+        <Icon.Hash02 />,
+        <Icon.Heading01 />,
+        <Icon.Heading02 />,
+        <Icon.HeadingSquare />,
+        <Icon.Headphones01 />,
+        <Icon.Headphones02 />,
+        <Icon.HeartCircle />,
+        <Icon.HeartHand />,
+        <Icon.HeartHexagon />,
+        <Icon.HeartOctagon />,
+        <Icon.HeartRounded />,
+        <Icon.HeartSquare />,
+        <Icon.Heart />,
+        <Icon.Hearts />,
+        <Icon.HelpCircle />,
+        <Icon.HelpHexagon />,
+        <Icon.HelpOctagon />,
+        <Icon.HelpSquare />,
+        <Icon.Hexagon01 />,
+        <Icon.Hexagon02 />,
+        <Icon.Home01 />,
+        <Icon.Home02 />,
+        <Icon.Home03 />,
+        <Icon.Home04 />,
+        <Icon.Home05 />,
+        <Icon.HomeLine />,
+        <Icon.HomeSmile />,
+        <Icon.HorizontalBarChart01 />,
+        <Icon.HorizontalBarChart02 />,
+        <Icon.HorizontalBarChart03 />,
+        <Icon.Hourglass01 />,
+        <Icon.Hourglass02 />,
+        <Icon.Hourglass03 />,
+        <Icon.Hurricane01 />,
+        <Icon.Hurricane02 />,
+        <Icon.Hurricane03 />,
+        <Icon.Image01 />,
+        <Icon.Image02 />,
+        <Icon.Image03 />,
+        <Icon.Image04 />,
+        <Icon.Image05 />,
+        <Icon.ImageCheck />,
+        <Icon.ImageDown />,
+        <Icon.ImageIndentLeft />,
+        <Icon.ImageIndentRight />,
+        <Icon.ImageLeft />,
+        <Icon.ImagePlus />,
+        <Icon.ImageRight />,
+        <Icon.ImageUp />,
+        <Icon.ImageUserCheck />,
+        <Icon.ImageUserDown />,
+        <Icon.ImageUserLeft />,
+        <Icon.ImageUserPlus />,
+        <Icon.ImageUserRight />,
+        <Icon.ImageUserUp />,
+        <Icon.ImageUserX />,
+        <Icon.ImageUser />,
+        <Icon.ImageX />,
+        <Icon.Inbox01 />,
+        <Icon.Inbox02 />,
+        <Icon.Infinity />,
+        <Icon.InfoCircle />,
+        <Icon.InfoHexagon />,
+        <Icon.InfoOctagon />,
+        <Icon.InfoSquare />,
+        <Icon.Instagram />,
+        <Icon.IntersectCircle />,
+        <Icon.IntersectSquare />,
+        <Icon.Italic01 />,
+        <Icon.Italic02 />,
+        <Icon.ItalicSquare />,
+        <Icon.Key01 />,
+        <Icon.Key02 />,
+        <Icon.Keyboard01 />,
+        <Icon.Keyboard02 />,
+        <Icon.Laptop01 />,
+        <Icon.Laptop02 />,
+        <Icon.LayerSingle />,
+        <Icon.LayersThree01 />,
+        <Icon.LayersThree02 />,
+        <Icon.LayersTwo01 />,
+        <Icon.LayersTwo02 />,
+        <Icon.LayoutAlt01 />,
+        <Icon.LayoutAlt02 />,
+        <Icon.LayoutAlt03 />,
+        <Icon.LayoutAlt04 />,
+        <Icon.LayoutBottom />,
+        <Icon.LayoutGrid01 />,
+        <Icon.LayoutGrid02 />,
+        <Icon.LayoutLeft />,
+        <Icon.LayoutRight />,
+        <Icon.LayoutTop />,
+        <Icon.LeftIndent01 />,
+        <Icon.LeftIndent02 />,
+        <Icon.LetterSpacing01 />,
+        <Icon.LetterSpacing02 />,
+        <Icon.LifeBuoy01 />,
+        <Icon.LifeBuoy02 />,
+        <Icon.Lightbulb01 />,
+        <Icon.Lightbulb02 />,
+        <Icon.Lightbulb03 />,
+        <Icon.Lightbulb04 />,
+        <Icon.Lightbulb05 />,
+        <Icon.Lightning01 />,
+        <Icon.Lightning02 />,
+        <Icon.LineChartDown01 />,
+        <Icon.LineChartDown02 />,
+        <Icon.LineChartDown03 />,
+        <Icon.LineChartDown04 />,
+        <Icon.LineChartDown05 />,
+        <Icon.LineChartUp01 />,
+        <Icon.LineChartUp02 />,
+        <Icon.LineChartUp03 />,
+        <Icon.LineChartUp04 />,
+        <Icon.LineChartUp05 />,
+        <Icon.LineHeight />,
+        <Icon.Link01 />,
+        <Icon.Link02 />,
+        <Icon.Link03 />,
+        <Icon.Link04 />,
+        <Icon.Link05 />,
+        <Icon.LinkBroken01 />,
+        <Icon.LinkBroken02 />,
+        <Icon.LinkExternal01 />,
+        <Icon.LinkExternal02 />,
+        <Icon.List />,
+        <Icon.Loading01 />,
+        <Icon.Loading02 />,
+        <Icon.Loading03 />,
+        <Icon.Lock01 />,
+        <Icon.Lock02 />,
+        <Icon.Lock03 />,
+        <Icon.Lock04 />,
+        <Icon.LockKeyholeCircle />,
+        <Icon.LockKeyholeSquare />,
+        <Icon.LockUnlocked01 />,
+        <Icon.LockUnlocked02 />,
+        <Icon.LockUnlocked03 />,
+        <Icon.LockUnlocked04 />,
+        <Icon.LogIn01 />,
+        <Icon.LogIn02 />,
+        <Icon.LogIn03 />,
+        <Icon.LogIn04 />,
+        <Icon.LogOut01 />,
+        <Icon.LogOut02 />,
+        <Icon.LogOut03 />,
+        <Icon.LogOut04 />,
+        <Icon.Luggage01 />,
+        <Icon.Luggage02 />,
+        <Icon.Luggage03 />,
+        <Icon.MagicWand01 />,
+        <Icon.MagicWand02 />,
+        <Icon.Mail01 />,
+        <Icon.Mail02 />,
+        <Icon.Mail03 />,
+        <Icon.Mail04 />,
+        <Icon.Mail05 />,
+        <Icon.Map01 />,
+        <Icon.Map02 />,
+        <Icon.Mark />,
+        <Icon.MarkerPin01 />,
+        <Icon.MarkerPin02 />,
+        <Icon.MarkerPin03 />,
+        <Icon.MarkerPin04 />,
+        <Icon.MarkerPin05 />,
+        <Icon.MarkerPin06 />,
+        <Icon.Maximize01 />,
+        <Icon.Maximize02 />,
+        <Icon.MedicalCircle />,
+        <Icon.MedicalCross />,
+        <Icon.MedicalSquare />,
+        <Icon.Menu01 />,
+        <Icon.Menu02 />,
+        <Icon.Menu03 />,
+        <Icon.Menu04 />,
+        <Icon.Menu05 />,
+        <Icon.MessageAlertCircle />,
+        <Icon.MessageAlertSquare />,
+        <Icon.MessageChatCircle />,
+        <Icon.MessageChatSquare />,
+        <Icon.MessageCheckCircle />,
+        <Icon.MessageCheckSquare />,
+        <Icon.MessageCircle01 />,
+        <Icon.MessageCircle02 />,
+        <Icon.MessageDotsCircle />,
+        <Icon.MessageDotsSquare />,
+        <Icon.MessageHeartCircle />,
+        <Icon.MessageHeartSquare />,
+        <Icon.MessageNotificationCircle />,
+        <Icon.MessageNotificationSquare />,
+        <Icon.MessagePlusCircle />,
+        <Icon.MessagePlusSquare />,
+        <Icon.MessageQuestionCircle />,
+        <Icon.MessageQuestionSquare />,
+        <Icon.MessageSmileCircle />,
+        <Icon.MessageSmileSquare />,
+        <Icon.MessageSquare01 />,
+        <Icon.MessageSquare02 />,
+        <Icon.MessageTextCircle01 />,
+        <Icon.MessageTextCircle02 />,
+        <Icon.MessageTextSquare01 />,
+        <Icon.MessageTextSquare02 />,
+        <Icon.MessageXCircle />,
+        <Icon.MessageXSquare />,
+        <Icon.Meta />,
+        <Icon.Microphone01 />,
+        <Icon.Microphone02 />,
+        <Icon.MicrophoneOff01 />,
+        <Icon.MicrophoneOff02 />,
+        <Icon.Microscope />,
+        <Icon.Minimize01 />,
+        <Icon.Minimize02 />,
+        <Icon.MinusCircle />,
+        <Icon.MinusSquare />,
+        <Icon.Minus />,
+        <Icon.Modem01 />,
+        <Icon.Modem02 />,
+        <Icon.Monitor01 />,
+        <Icon.Monitor02 />,
+        <Icon.Monitor03 />,
+        <Icon.Monitor04 />,
+        <Icon.Monitor05 />,
+        <Icon.Moon01 />,
+        <Icon.Moon02 />,
+        <Icon.MoonEclipse />,
+        <Icon.MoonStar />,
+        <Icon.Mouse />,
+        <Icon.Move />,
+        <Icon.MusicNote01 />,
+        <Icon.MusicNote02 />,
+        <Icon.MusicNotePlus />,
+        <Icon.NavigationPointer01 />,
+        <Icon.NavigationPointer02 />,
+        <Icon.NavigationPointerOff01 />,
+        <Icon.NavigationPointerOff02 />,
+        <Icon.NotificationBox />,
+        <Icon.NotificationMessage />,
+        <Icon.NotificationText />,
+        <Icon.Octagon />,
+        <Icon.PackageCheck />,
+        <Icon.PackageMinus />,
+        <Icon.PackagePlus />,
+        <Icon.PackageSearch />,
+        <Icon.PackageX />,
+        <Icon.Package />,
+        <Icon.PaintPour />,
+        <Icon.Paint />,
+        <Icon.Palette />,
+        <Icon.Paperclip />,
+        <Icon.ParagraphSpacing />,
+        <Icon.ParagraphWrap />,
+        <Icon.PasscodeLock />,
+        <Icon.Passcode />,
+        <Icon.Passport />,
+        <Icon.PauseCircle />,
+        <Icon.PauseSquare />,
+        <Icon.PenTool01 />,
+        <Icon.PenTool02 />,
+        <Icon.PenToolMinus />,
+        <Icon.PenToolPlus />,
+        <Icon.Pencil01 />,
+        <Icon.Pencil02 />,
+        <Icon.PencilLine />,
+        <Icon.Pentagon />,
+        <Icon.Percent01 />,
+        <Icon.Percent02 />,
+        <Icon.Percent03 />,
+        <Icon.Perspective01 />,
+        <Icon.Perspective02 />,
+        <Icon.Phone01 />,
+        <Icon.Phone02 />,
+        <Icon.PhoneCall01 />,
+        <Icon.PhoneCall02 />,
+        <Icon.PhoneHangUp />,
+        <Icon.PhoneIncoming01 />,
+        <Icon.PhoneIncoming02 />,
+        <Icon.PhoneOutgoing01 />,
+        <Icon.PhoneOutgoing02 />,
+        <Icon.PhonePause />,
+        <Icon.PhonePlus />,
+        <Icon.PhoneX />,
+        <Icon.Phone />,
+        <Icon.PieChart01 />,
+        <Icon.PieChart02 />,
+        <Icon.PieChart03 />,
+        <Icon.PieChart04 />,
+        <Icon.PiggyBank01 />,
+        <Icon.PiggyBank02 />,
+        <Icon.Pilcrow01 />,
+        <Icon.Pilcrow02 />,
+        <Icon.PilcrowSquare />,
+        <Icon.Pin01 />,
+        <Icon.Pin02 />,
+        <Icon.Placeholder />,
+        <Icon.Plane />,
+        <Icon.PlayCircle />,
+        <Icon.PlaySquare />,
+        <Icon.Play />,
+        <Icon.PlusCircle />,
+        <Icon.PlusSquare />,
+        <Icon.Plus />,
+        <Icon.Podcast />,
+        <Icon.Power01 />,
+        <Icon.Power02 />,
+        <Icon.Power03 />,
+        <Icon.PresentationChart01 />,
+        <Icon.PresentationChart02 />,
+        <Icon.PresentationChart03 />,
+        <Icon.Printer />,
+        <Icon.PuzzlePiece01 />,
+        <Icon.PuzzlePiece02 />,
+        <Icon.QrCode01 />,
+        <Icon.QrCode02 />,
+        <Icon.ReceiptCheck />,
+        <Icon.Receipt />,
+        <Icon.Recording01 />,
+        <Icon.Recording02 />,
+        <Icon.Recording03 />,
+        <Icon.Reflect01 />,
+        <Icon.Reflect02 />,
+        <Icon.RefreshCcw01 />,
+        <Icon.RefreshCcw02 />,
+        <Icon.RefreshCcw03 />,
+        <Icon.RefreshCcw04 />,
+        <Icon.RefreshCcw05 />,
+        <Icon.RefreshCw01 />,
+        <Icon.RefreshCw02 />,
+        <Icon.RefreshCw03 />,
+        <Icon.RefreshCw04 />,
+        <Icon.RefreshCw05 />,
+        <Icon.Repeat01 />,
+        <Icon.Repeat02 />,
+        <Icon.Repeat03 />,
+        <Icon.Repeat04 />,
+        <Icon.ReverseLeft />,
+        <Icon.ReverseRight />,
+        <Icon.RightIndent01 />,
+        <Icon.RightIndent02 />,
+        <Icon.Rocket01 />,
+        <Icon.Rocket02 />,
+        <Icon.RollerBrush />,
+        <Icon.Route />,
+        <Icon.Rows01 />,
+        <Icon.Rows02 />,
+        <Icon.Rows03 />,
+        <Icon.Rss01 />,
+        <Icon.Rss02 />,
+        <Icon.Ruler />,
+        <Icon.Safe />,
+        <Icon.Sale01 />,
+        <Icon.Sale02 />,
+        <Icon.Sale03 />,
+        <Icon.Sale04 />,
+        <Icon.Save01 />,
+        <Icon.Save02 />,
+        <Icon.Save03 />,
+        <Icon.Scale01 />,
+        <Icon.Scale02 />,
+        <Icon.Scale03 />,
+        <Icon.Scales01 />,
+        <Icon.Scales02 />,
+        <Icon.Scan />,
+        <Icon.Scissors01 />,
+        <Icon.Scissors02 />,
+        <Icon.ScissorsCut01 />,
+        <Icon.ScissorsCut02 />,
+        <Icon.SearchLg />,
+        <Icon.SearchMd />,
+        <Icon.SearchRefraction />,
+        <Icon.SearchSm />,
+        <Icon.Send01 />,
+        <Icon.Send02 />,
+        <Icon.Send03 />,
+        <Icon.Server01 />,
+        <Icon.Server02 />,
+        <Icon.Server03 />,
+        <Icon.Server04 />,
+        <Icon.Server05 />,
+        <Icon.Server06 />,
+        <Icon.Settings01 />,
+        <Icon.Settings02 />,
+        <Icon.Settings03 />,
+        <Icon.Settings04 />,
+        <Icon.Share01 />,
+        <Icon.Share02 />,
+        <Icon.Share03 />,
+        <Icon.Share04 />,
+        <Icon.Share05 />,
+        <Icon.Share06 />,
+        <Icon.Share07 />,
+        <Icon.Shield01 />,
+        <Icon.Shield02 />,
+        <Icon.Shield03 />,
+        <Icon.ShieldDollar />,
+        <Icon.ShieldOff />,
+        <Icon.ShieldPlus />,
+        <Icon.ShieldTick />,
+        <Icon.ShieldZap />,
+        <Icon.ShoppingBag01 />,
+        <Icon.ShoppingBag02 />,
+        <Icon.ShoppingBag03 />,
+        <Icon.ShoppingCart01 />,
+        <Icon.ShoppingCart02 />,
+        <Icon.ShoppingCart03 />,
+        <Icon.Shuffle01 />,
+        <Icon.Shuffle02 />,
+        <Icon.Signal01 />,
+        <Icon.Signal02 />,
+        <Icon.Signal03 />,
+        <Icon.Simcard />,
+        <Icon.Skew />,
+        <Icon.SkipBack />,
+        <Icon.SkipForward />,
+        <Icon.SlashCircle01 />,
+        <Icon.SlashCircle02 />,
+        <Icon.SlashDivider />,
+        <Icon.SlashOctagon />,
+        <Icon.Sliders01 />,
+        <Icon.Sliders02 />,
+        <Icon.Sliders03 />,
+        <Icon.Sliders04 />,
+        <Icon.Snowflake01 />,
+        <Icon.Snowflake02 />,
+        <Icon.SpacingHeight01 />,
+        <Icon.SpacingHeight02 />,
+        <Icon.SpacingWidth01 />,
+        <Icon.SpacingWidth02 />,
+        <Icon.Speaker01 />,
+        <Icon.Speaker02 />,
+        <Icon.Speaker03 />,
+        <Icon.Speedometer01 />,
+        <Icon.Speedometer02 />,
+        <Icon.Speedometer03 />,
+        <Icon.Speedometer04 />,
+        <Icon.Square />,
+        <Icon.Stand />,
+        <Icon.Star01 />,
+        <Icon.Star02 />,
+        <Icon.Star03 />,
+        <Icon.Star04 />,
+        <Icon.Star05 />,
+        <Icon.Star06 />,
+        <Icon.Star07 />,
+        <Icon.Stars01 />,
+        <Icon.Stars02 />,
+        <Icon.Stars03 />,
+        <Icon.StickerCircle />,
+        <Icon.StickerSquare />,
+        <Icon.StopCircle />,
+        <Icon.StopSquare />,
+        <Icon.Stop />,
+        <Icon.Strikethrough01 />,
+        <Icon.Strikethrough02 />,
+        <Icon.StrikethroughSquare />,
+        <Icon.Subscript />,
+        <Icon.SunSetting01 />,
+        <Icon.SunSetting02 />,
+        <Icon.SunSetting03 />,
+        <Icon.Sun />,
+        <Icon.Sunrise />,
+        <Icon.Sunset />,
+        <Icon.SwitchHorizontal01 />,
+        <Icon.SwitchHorizontal02 />,
+        <Icon.SwitchVertical01 />,
+        <Icon.SwitchVertical02 />,
+        <Icon.Table />,
+        <Icon.Tablet01 />,
+        <Icon.Tablet02 />,
+        <Icon.Tag01 />,
+        <Icon.Tag02 />,
+        <Icon.Tag03 />,
+        <Icon.Target01 />,
+        <Icon.Target02 />,
+        <Icon.Target03 />,
+        <Icon.Target04 />,
+        <Icon.Target05 />,
+        <Icon.Telescope />,
+        <Icon.TerminalBrowser />,
+        <Icon.TerminalCircle />,
+        <Icon.TerminalSquare />,
+        <Icon.Terminal />,
+        <Icon.TextInput />,
+        <Icon.Thermometer01 />,
+        <Icon.Thermometer02 />,
+        <Icon.Thermometer03 />,
+        <Icon.ThermometerCold />,
+        <Icon.ThermometerWarm />,
+        <Icon.ThumbsDown />,
+        <Icon.ThumbsUp />,
+        <Icon.Ticket01 />,
+        <Icon.Ticket02 />,
+        <Icon.Toggle01Left />,
+        <Icon.Toggle01Right />,
+        <Icon.Toggle02Left />,
+        <Icon.Toggle02Right />,
+        <Icon.Toggle03Left />,
+        <Icon.Toggle03Right />,
+        <Icon.Tool01 />,
+        <Icon.Tool02 />,
+        <Icon.Train />,
+        <Icon.Tram />,
+        <Icon.Transform />,
+        <Icon.Translate01 />,
+        <Icon.Translate02 />,
+        <Icon.Trash01 />,
+        <Icon.Trash02 />,
+        <Icon.Trash03 />,
+        <Icon.Trash04 />,
+        <Icon.TrendDown01 />,
+        <Icon.TrendDown02 />,
+        <Icon.TrendUp01 />,
+        <Icon.TrendUp02 />,
+        <Icon.Triangle />,
+        <Icon.Trophy01 />,
+        <Icon.Trophy02 />,
+        <Icon.Truck01 />,
+        <Icon.Truck02 />,
+        <Icon.Tv01 />,
+        <Icon.Tv02 />,
+        <Icon.Tv03 />,
+        <Icon.Type01 />,
+        <Icon.Type02 />,
+        <Icon.TypeSquare />,
+        <Icon.TypeStrikethrough01 />,
+        <Icon.TypeStrikethrough02 />,
+        <Icon.Umbrella01 />,
+        <Icon.Umbrella02 />,
+        <Icon.Umbrella03 />,
+        <Icon.Underline01 />,
+        <Icon.Underline02 />,
+        <Icon.UnderlineSquare />,
+        <Icon.Upload01 />,
+        <Icon.Upload02 />,
+        <Icon.Upload03 />,
+        <Icon.Upload04 />,
+        <Icon.UploadCloud01 />,
+        <Icon.UploadCloud02 />,
+        <Icon.UsbFlashDrive />,
+        <Icon.User01 />,
+        <Icon.User02 />,
+        <Icon.User03 />,
+        <Icon.UserCheck01 />,
+        <Icon.UserCheck02 />,
+        <Icon.UserCircle />,
+        <Icon.UserDown01 />,
+        <Icon.UserDown02 />,
+        <Icon.UserEdit />,
+        <Icon.UserLeft01 />,
+        <Icon.UserLeft02 />,
+        <Icon.UserMinus01 />,
+        <Icon.UserMinus02 />,
+        <Icon.UserPlus01 />,
+        <Icon.UserPlus02 />,
+        <Icon.UserRight01 />,
+        <Icon.UserRight02 />,
+        <Icon.UserSquare />,
+        <Icon.UserUp01 />,
+        <Icon.UserUp02 />,
+        <Icon.UserX01 />,
+        <Icon.UserX02 />,
+        <Icon.Users01 />,
+        <Icon.Users02 />,
+        <Icon.Users03 />,
+        <Icon.UsersCheck />,
+        <Icon.UsersDown />,
+        <Icon.UsersEdit />,
+        <Icon.UsersLeft />,
+        <Icon.UsersMinus />,
+        <Icon.UsersPlus />,
+        <Icon.UsersRight />,
+        <Icon.UsersUp />,
+        <Icon.UsersX />,
+        <Icon.Variable />,
+        <Icon.VideoRecorderOff />,
+        <Icon.VideoRecorder />,
+        <Icon.Virus />,
+        <Icon.Voicemail />,
+        <Icon.VolumeMax />,
+        <Icon.VolumeMin />,
+        <Icon.VolumeMinus />,
+        <Icon.VolumePlus />,
+        <Icon.VolumeX />,
+        <Icon.Wallet01 />,
+        <Icon.Wallet02 />,
+        <Icon.Wallet03 />,
+        <Icon.Wallet04 />,
+        <Icon.Wallet05 />,
+        <Icon.WatchCircle />,
+        <Icon.WatchSquare />,
+        <Icon.Waves />,
+        <Icon.Webcam01 />,
+        <Icon.Webcam02 />,
+        <Icon.WifiOff />,
+        <Icon.Wifi />,
+        <Icon.Wind01 />,
+        <Icon.Wind02 />,
+        <Icon.Wind03 />,
+        <Icon.XCircle />,
+        <Icon.XClose />,
+        <Icon.XSquare />,
+        <Icon.X />,
+        <Icon.Youtube />,
+        <Icon.ZapCircle />,
+        <Icon.ZapFast />,
+        <Icon.ZapOff />,
+        <Icon.ZapSquare />,
+        <Icon.Zap />,
+        <Icon.ZoomIn />,
+        <Icon.ZoomOut />,
       ]
     : [];
 
   const LOGO = Logo
     ? [
         <Logo.Albedo />,
+        <Logo.AppStore />,
+        <Logo.Apple />,
+        <Logo.Discord />,
+        <Logo.Framer />,
         <Logo.Freighter />,
+        <Logo.Github />,
+        <Logo.GooglePlay />,
         <Logo.Ledger />,
+        <Logo.Linkedin />,
+        <Logo.Medium />,
+        <Logo.Reddit />,
+        <Logo.StellarShort />,
         <Logo.Stellar />,
         <Logo.Trezor />,
+        <Logo.XTwitter />,
+        <Logo.Youtube />,
       ]
     : [];
 
diff --git a/@stellar/design-system-website/src/components/ColorPalette/index.tsx b/@stellar/design-system-website/src/components/ColorPalette/index.tsx
index d8739381..ece2dd38 100644
--- a/@stellar/design-system-website/src/components/ColorPalette/index.tsx
+++ b/@stellar/design-system-website/src/components/ColorPalette/index.tsx
@@ -33,6 +33,20 @@ export const ColorPalette = ({
     };
   }, []);
 
+  const renderColor = (color: string) => {
+    if (color.startsWith("rgba")) {
+      // Turn RGBA opacity into %
+      const opacity = color
+        .match(/\((.*?)\)/)[1]
+        .split(",")[3]
+        .trim();
+
+      return `${Number(opacity) * 100}%`;
+    }
+
+    return color;
+  };
+
   if (!theme) {
     return null;
   }
@@ -50,7 +64,9 @@ export const ColorPalette = ({
             }
           ></div>
           <div className="ColorPalette__color__name">{c.name}</div>
-          <div className="ColorPalette__color__hex">{c.hex[theme]}</div>
+          <div className="ColorPalette__color__hex">
+            {renderColor(c.hex[theme])}
+          </div>
         </div>
       ))}
     </div>
diff --git a/@stellar/design-system-website/src/components/ColorPalette/styles.css b/@stellar/design-system-website/src/components/ColorPalette/styles.css
index b0e2aeda..20f1ef8b 100644
--- a/@stellar/design-system-website/src/components/ColorPalette/styles.css
+++ b/@stellar/design-system-website/src/components/ColorPalette/styles.css
@@ -1,6 +1,6 @@
 .ColorPalette {
   display: grid;
-  grid-template-columns: repeat(auto-fit, minmax(5.75rem, 1fr));
+  grid-template-columns: repeat(auto-fit, minmax(4.5rem, 1fr));
   gap: 0.5rem;
 }
 
diff --git a/@stellar/design-system-website/src/components/ComponentDescription/index.tsx b/@stellar/design-system-website/src/components/ComponentDescription/index.tsx
index 4e847bbf..4199ae80 100644
--- a/@stellar/design-system-website/src/components/ComponentDescription/index.tsx
+++ b/@stellar/design-system-website/src/components/ComponentDescription/index.tsx
@@ -18,7 +18,9 @@ export const ComponentDescription = ({
   return (
     <p>
       <ParseSummary
-        summary={(component.signatures?.[0] || component)?.comment?.summary}
+        summary={
+          ((component.signatures?.[0] || component) as any)?.comment?.summary
+        }
       />
     </p>
   );
diff --git a/@stellar/design-system-website/src/components/Element.tsx b/@stellar/design-system-website/src/components/Element.tsx
index 6e2f1cf8..c4bb243d 100644
--- a/@stellar/design-system-website/src/components/Element.tsx
+++ b/@stellar/design-system-website/src/components/Element.tsx
@@ -14,7 +14,6 @@ export interface ElementProps {
   tag?: string;
 }
 
-// @ts-expect-error: the react types are missing.
 const production = { Fragment: prod.Fragment, jsx: prod.jsx, jsxs: prod.jsxs };
 
 export const Element = ({ text, kind, tag }: ElementProps) => {
@@ -51,11 +50,11 @@ const parseMarkdownString = (text: string): React.ReactElement => {
 
   const file = unified()
     .use(rehypeSanitize)
-    .use(rehypeParse, { fragment: true })
-    .use(rehypeReact, production)
+    .use(rehypeParse as any, { fragment: true })
+    .use(rehypeReact as any, production)
     .processSync(text);
 
-  return file.result;
+  return file.result as any;
 };
 
 const parseLineBreak = (text: string) => {
diff --git a/@stellar/design-system-website/src/components/ElementPropType.tsx b/@stellar/design-system-website/src/components/ElementPropType.tsx
index 77b8ece5..aba7df2c 100644
--- a/@stellar/design-system-website/src/components/ElementPropType.tsx
+++ b/@stellar/design-system-website/src/components/ElementPropType.tsx
@@ -35,6 +35,8 @@ export const ElementPropType = ({ type }: { type: any }) => {
       return <code>{`() => void`}</code>;
     case "array":
       return <code>{`${type?.elementType?.name || ""}[]`}</code>;
+    case "literal":
+      return <code>{type.value}</code>;
     case "intrinsic":
     case "reference":
       return <code>{type.name}</code>;
diff --git a/@stellar/design-system-website/src/components/PreviewBlock/index.tsx b/@stellar/design-system-website/src/components/PreviewBlock/index.tsx
index a7a19819..bba60a97 100644
--- a/@stellar/design-system-website/src/components/PreviewBlock/index.tsx
+++ b/@stellar/design-system-website/src/components/PreviewBlock/index.tsx
@@ -6,16 +6,18 @@ import "./styles.css";
 // =============================================================================
 // Preview imports
 // =============================================================================
-import { assetIconPreview } from "@site/src/componentPreview/assetIconPreview";
+import { alertPreview } from "@site/src/componentPreview/alertPreview";
+import { assetPreview } from "@site/src/componentPreview/assetPreview";
 import { avatarPreview } from "@site/src/componentPreview/avatarPreview";
 import { badgePreview } from "@site/src/componentPreview/badgePreview";
 import { bannerPreview } from "@site/src/componentPreview/bannerPreview";
 import { buttonPreview } from "@site/src/componentPreview/buttonPreview";
 import { buttonPresetPreview } from "@site/src/componentPreview/buttonPresetPreview";
-import { captionPreview } from "@site/src/componentPreview/captionPreview";
 import { cardPreview } from "@site/src/componentPreview/cardPreview";
 import { checkboxPreview } from "@site/src/componentPreview/checkboxPreview";
+import { codePreview } from "@site/src/componentPreview/codePreview";
 import { copyTextPreview } from "@site/src/componentPreview/copyTextPreview";
+import { displayPreview } from "@site/src/componentPreview/displayPreview";
 import { headingPreview } from "@site/src/componentPreview/headingPreview";
 import { iconButtonPreview } from "@site/src/componentPreview/iconButtonPreview";
 import { inputPreview } from "@site/src/componentPreview/inputPreview";
@@ -24,16 +26,15 @@ import { linkPreview } from "@site/src/componentPreview/linkPreview";
 import { loaderPreview } from "@site/src/componentPreview/loaderPreview";
 import { modalPreview } from "@site/src/componentPreview/modalPreview";
 import { navButtonPreview } from "@site/src/componentPreview/navButtonPreview";
-import { notificationPreview } from "@site/src/componentPreview/notificationPreview ";
+import { notificationPreview } from "@site/src/componentPreview/notificationPreview";
 import { paginationPreview } from "@site/src/componentPreview/paginationPreview";
-import { paragraphPreview } from "@site/src/componentPreview/paragraphPreview";
 import { profilePreview } from "@site/src/componentPreview/profilePreview";
 import { projectLogoPreview } from "@site/src/componentPreview/projectLogoPreview";
 import { radioButtonPreview } from "@site/src/componentPreview/radioButtonPreview";
 import { selectPreview } from "@site/src/componentPreview/selectPreview";
 import { tablePreview } from "@site/src/componentPreview/tablePreview";
 import { textareaPreview } from "@site/src/componentPreview/textareaPreview";
-import { titlePreview } from "@site/src/componentPreview/titlePreview";
+import { textPreview } from "@site/src/componentPreview/textPreview";
 import { togglePreview } from "@site/src/componentPreview/togglePreview";
 import { tooltipPreview } from "@site/src/componentPreview/tooltipPreview";
 
@@ -41,18 +42,20 @@ import { tooltipPreview } from "@site/src/componentPreview/tooltipPreview";
 // Component previews
 // =============================================================================
 const previews: { [key: string]: ComponentPreview } = {
-  AssetIcon: assetIconPreview,
+  Alert: alertPreview,
+  Asset: assetPreview,
   Avatar: avatarPreview,
   Badge: badgePreview,
   Banner: bannerPreview,
   Button: buttonPreview,
   ButtonPreset: buttonPresetPreview,
-  Caption: captionPreview,
   Card: cardPreview,
   Checkbox: checkboxPreview,
+  Code: codePreview,
   Content: layoutPreview,
   CopyText: copyTextPreview,
   Footer: layoutPreview,
+  Display: displayPreview,
   Heading: headingPreview,
   Header: layoutPreview,
   IconButton: iconButtonPreview,
@@ -65,14 +68,13 @@ const previews: { [key: string]: ComponentPreview } = {
   NavButton: navButtonPreview,
   Notification: notificationPreview,
   Pagination: paginationPreview,
-  Paragraph: paragraphPreview,
   Profile: profilePreview,
   ProjectLogo: projectLogoPreview,
   RadioButton: radioButtonPreview,
   Select: selectPreview,
   Table: tablePreview,
   Textarea: textareaPreview,
-  Title: titlePreview,
+  Text: textPreview,
   Toggle: togglePreview,
   Tooltip: tooltipPreview,
 };
@@ -93,6 +95,10 @@ interface PreviewOptionSelect extends PreviewOptionBase {
   options: {
     value: string;
     label: string;
+    updateRelated?: {
+      prop: string;
+      value: any;
+    };
   }[];
 }
 
@@ -119,7 +125,7 @@ export const PreviewBlock = ({
   children: React.ReactElement;
 }) => {
   const [sds, setSds] = useState<any>({});
-  const { Checkbox, Select, Notification, Button, Modal } = sds;
+  const { Checkbox, Select, Notification, Text, Button, Modal, Input } = sds;
 
   // Importing SDS here because we need it async for server-side-rendering
   useEffect(() => {
@@ -138,8 +144,12 @@ export const PreviewBlock = ({
   }
 
   const [props, setProps] = useState({});
-  const [isModalOpen, setIsModalOpen] = useState(false);
   const [isBasicModalOpen, setIsBasicModalOpen] = useState(false);
+  const [isModalWithButtonsOpen, setIsModalWithButtonsOpen] = useState(false);
+  const [isModalButtonsStretchOpen, setIsModalButtonsStretchOpen] =
+    useState(false);
+  const [isModalButtonsStackOpen, setIsModalButtonsStackOpen] = useState(false);
+  const [inputValue, setInputValue] = useState("");
 
   const handleSelectChange = (
     event: React.ChangeEvent<HTMLSelectElement>,
@@ -160,7 +170,30 @@ export const PreviewBlock = ({
     }
 
     if (value) {
-      setProps({ ..._props, [id]: customValue ?? value, ...valObj });
+      // Get data-update-related attribute from option
+      const updateRelatedString = event.target.options[
+        event.target.selectedIndex
+      ].getAttribute("data-update-related");
+
+      const updateRelated = updateRelatedString
+        ? JSON.parse(updateRelatedString)
+        : undefined;
+
+      const updatedProps = {
+        ..._props,
+        [id]: customValue ?? value,
+        ...valObj,
+      };
+
+      if (updateRelated) {
+        if (updateRelated.value) {
+          updatedProps[updateRelated.prop] = updateRelated.value;
+        } else {
+          delete updatedProps[updateRelated.prop];
+        }
+      }
+
+      setProps(updatedProps);
     } else {
       delete _props[id];
 
@@ -202,7 +235,13 @@ export const PreviewBlock = ({
       >
         <>
           {option.options.map((o) => (
-            <option value={o.value} key={o.value}>
+            <option
+              value={o.value}
+              key={o.value}
+              data-update-related={
+                o.updateRelated ? JSON.stringify(o.updateRelated) : undefined
+              }
+            >
               {o.label}
             </option>
           ))}
@@ -244,7 +283,7 @@ export const PreviewBlock = ({
   );
 
   const renderPreview = () => {
-    // Need to handle Notification manually because of name collision that
+    // Need to handle these manually because of name collision that
     // breaks rendering
     if (componentName === "Notification") {
       return Notification ? (
@@ -252,32 +291,59 @@ export const PreviewBlock = ({
       ) : null;
     }
 
+    if (componentName === "Text") {
+      return Text ? (
+        <Text as="p" size="xs" {...props}>
+          Text
+        </Text>
+      ) : null;
+    }
+
     // Need to handle Modal manually because of button on click trigger to show
     // or hide
     if (componentName === "Modal") {
       return Button && Modal ? (
         <div className="PreviewBlock__block">
+          {/* Buttons */}
           <Button
             variant="primary"
             size="md"
             onClick={() => setIsBasicModalOpen(true)}
           >
-            Open basic modal
+            Basic modal
           </Button>
 
           <Button
             variant="primary"
             size="md"
-            onClick={() => setIsModalOpen(true)}
+            onClick={() => setIsModalWithButtonsOpen(true)}
           >
-            Open modal
+            Modal with buttons
           </Button>
 
+          <Button
+            variant="primary"
+            size="md"
+            onClick={() => setIsModalButtonsStretchOpen(true)}
+          >
+            Modal with stretched buttons
+          </Button>
+
+          <Button
+            variant="primary"
+            size="md"
+            onClick={() => setIsModalButtonsStackOpen(true)}
+          >
+            Modal with stacked buttons
+          </Button>
+
+          {/* Basic modal */}
           <Modal
             onClose={() => setIsBasicModalOpen(false)}
             parentId="preview-block"
             visible={isBasicModalOpen}
           >
+            <Modal.Heading>Modal heading</Modal.Heading>
             <p>
               Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur
               eius beatae sint dolorem, excepturi quos enim, et ullam suscipit
@@ -286,10 +352,11 @@ export const PreviewBlock = ({
             </p>
           </Modal>
 
+          {/* Modal with buttons */}
           <Modal
-            onClose={() => setIsModalOpen(false)}
+            onClose={() => setIsModalWithButtonsOpen(false)}
             parentId="preview-block"
-            visible={isModalOpen}
+            visible={isModalWithButtonsOpen}
           >
             <Modal.Heading>Modal heading</Modal.Heading>
             <Modal.Body>
@@ -315,10 +382,88 @@ export const PreviewBlock = ({
               </p>
             </Modal.Body>
             <Modal.Footer>
-              <Button size="sm" variant="primary">
+              <Button size="md" variant="tertiary">
+                Cancel
+              </Button>
+              <Button size="md" variant="primary">
                 Submit
               </Button>
-              <Button size="sm" variant="secondary">
+            </Modal.Footer>
+          </Modal>
+
+          {/* Modal with stretched buttons */}
+          <Modal
+            onClose={() => setIsModalButtonsStretchOpen(false)}
+            parentId="preview-block"
+            visible={isModalButtonsStretchOpen}
+          >
+            <Modal.Heading>Modal heading</Modal.Heading>
+            <Modal.Body>
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+            </Modal.Body>
+            <Modal.Footer itemAlignment="stretch">
+              <Button size="md" variant="tertiary">
+                Cancel
+              </Button>
+              <Button size="md" variant="primary">
+                Submit
+              </Button>
+            </Modal.Footer>
+          </Modal>
+
+          {/* Modal with stacked buttons */}
+          <Modal
+            onClose={() => setIsModalButtonsStackOpen(false)}
+            parentId="preview-block"
+            visible={isModalButtonsStackOpen}
+          >
+            <Modal.Heading>Modal heading</Modal.Heading>
+            <Modal.Body>
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+
+              <p>
+                Lorem ipsum dolor sit amet consectetur adipisicing elit.
+                Pariatur eius beatae sint dolorem, excepturi quos enim, et ullam
+                suscipit voluptates voluptas accusantium repellendus amet
+                explicabo, iure veritatis aperiam alias molestiae.
+              </p>
+            </Modal.Body>
+            <Modal.Footer itemAlignment="stack">
+              <Button size="md" variant="primary">
+                Submit
+              </Button>
+              <Button size="md" variant="tertiary">
                 Cancel
               </Button>
             </Modal.Footer>
@@ -327,6 +472,18 @@ export const PreviewBlock = ({
       ) : null;
     }
 
+    if (componentName === "Input") {
+      return Input ? (
+        <Input
+          fieldSize="sm"
+          id="input"
+          onChange={(e) => setInputValue(e.target.value)}
+          value={inputValue}
+          {...props}
+        />
+      ) : null;
+    }
+
     return component;
   };
 
diff --git a/@stellar/design-system-website/src/components/PreviewBlock/styles.css b/@stellar/design-system-website/src/components/PreviewBlock/styles.css
index c0b281c1..e94f039b 100644
--- a/@stellar/design-system-website/src/components/PreviewBlock/styles.css
+++ b/@stellar/design-system-website/src/components/PreviewBlock/styles.css
@@ -1,14 +1,14 @@
 .PreviewBlock {
-  background-color: var(--color-gray-00);
-  background-image: radial-gradient(var(--color-gray-40) 10%, transparent 11%),
-    radial-gradient(var(--color-gray-40) 10%, transparent 11%);
+  background-color: var(--sds-clr-base-00);
+  background-image: radial-gradient(var(--sds-clr-gray-02) 10%, transparent 11%),
+    radial-gradient(var(--sds-clr-gray-02) 10%, transparent 11%);
   background-size: 12px 12px;
   background-position: 0 0, 12px 12px;
   background-repeat: repeat;
   padding: 1.5rem 1rem;
   border-top-left-radius: 0.5rem;
   border-top-right-radius: 0.5rem;
-  border: 1px solid var(--color-gray-40);
+  border: 1px solid var(--sds-clr-gray-05);
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
@@ -41,15 +41,15 @@
 
 /* Checkboxes */
 .PreviewBlock__checkboxes__content {
-  border: 1px solid var(--color-gray-40);
-  background-color: var(--color-gray-00);
+  border: 1px solid var(--sds-clr-gray-05);
+  background-color: var(--sds-clr-base-00);
   border-radius: 0.25rem;
   padding: 0.75rem;
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem 1.5rem;
   width: fit-content;
-  color: var(--color-gray-80);
+  color: var(--sds-clr-gray-11);
 }
 
 .PreviewBlock__component {
@@ -57,7 +57,7 @@
   display: flex;
   align-items: center;
   justify-content: center;
-  color: var(--color-gray-70);
+  color: var(--sds-clr-gray-11);
 }
 
 @media (max-width: 600px) {
@@ -87,10 +87,11 @@
 .PreviewBlock .Caption,
 .PreviewBlock .Paragraph,
 .PreviewBlock .Title {
-  color: var(--color-gray-90);
+  color: var(--sds-clr-gray-12);
 }
 
-.PreviewBlock .Heading {
+.PreviewBlock .Heading,
+.Text {
   margin: 0 !important;
 }
 
@@ -100,8 +101,8 @@
   max-width: 24rem;
 }
 
-.PreviewBlock .Checkbox__container label {
-  font-weight: var(--font-weight-regular);
+.PreviewBlock .PreviewBlock__checkboxes label {
+  font-weight: var(--sds-fw-regular);
 }
 
 .PreviewBlock .Modal {
@@ -132,6 +133,6 @@
 }
 
 .PreviewBlock .Table td {
-  color: var(--color-gray-80);
+  color: var(--sds-clr-gray-11);
   border: none;
 }
diff --git a/@stellar/design-system-website/src/css/custom.css b/@stellar/design-system-website/src/css/custom.css
index f75a3e58..1eca5d66 100644
--- a/@stellar/design-system-website/src/css/custom.css
+++ b/@stellar/design-system-website/src/css/custom.css
@@ -9,138 +9,154 @@
 
 /* You can override the default Infima variables here. */
 :root {
-  /* --color-purple-60 */
+  /* --sds-clr-lilac-09 */
   --ifm-color-primary: #6e56cf;
-  /* --color-purple-70 */
+  /* --sds-clr-lilac-11 */
   --ifm-color-primary-dark: #5746af;
-  /* --color-purple-80 */
+  /* --sds-clr-lilac-12 */
   --ifm-color-primary-darker: #20134b;
-  /* --color-purple-80 */
+  /* --sds-clr-lilac-12 */
   --ifm-color-primary-darkest: #20134b;
-  /* --color-purple-50 */
+  /* --sds-clr-lilac-08 */
   --ifm-color-primary-light: #aa99ec;
-  /* --color-purple-50 */
+  /* --sds-clr-lilac-08 */
   --ifm-color-primary-lighter: #aa99ec;
-  /* --color-purple-40 */
+  /* --sds-clr-lilac-05 */
   --ifm-color-primary-lightest: #e4defc;
   --ifm-code-font-size: 95%;
   --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
 
-  /* --color-gray-00 */
-  --ifm-background-color: #ffffff;
-  --ifm-navbar-background-color: #ffffff;
-  --ifm-footer-background-color: #ffffff;
-  /* --color-gray-30 */
-  --ifm-hr-background-color: #eeedef;
-  --ifm-toc-border-color: #eeedef;
+  /* --sds-clr-gray-01 */
+  --ifm-background-color: #fcfcfc;
+  --ifm-navbar-background-color: #fcfcfc;
+  --ifm-footer-background-color: #fcfcfc;
+  /* --sds-clr-gray-04 */
+  --ifm-hr-background-color: #ededed;
+  --ifm-toc-border-color: #ededed;
 
   --ifm-font-family-base: "Inter", sans-serif;
-  --ifm-font-family-monospace: "Roboto Mono", monospace;
+  --ifm-font-family-monospace: "Inconsolata", monospace;
 
-  /* --color-gray-70 */
-  --ifm-menu-color: #6f6e77;
-  /* --color-gray-90 */
-  --ifm-menu-color-active: #000000;
+  /* --sds-clr-gray-11 */
+  --ifm-menu-color: #6f6f6f;
+  /* --sds-clr-gray-12 */
+  --ifm-menu-color-active: #171717;
   --ifm-menu-color-background-active: transparent;
   --ifm-menu-color-background-hover: transparent;
 
-  /* --color-gray-70 */
-  --ifm-font-color-base: #6f6e77;
+  /* --sds-clr-gray-11 */
+  --ifm-font-color-base: #6f6f6f;
 
   /* Playground */
-  /* --color-gray-00 */
-  --ifm-pg-background: #ffffff;
-  /* --color-gray-30 */
-  --ifm-pg-background-dot: #eeedef;
-  /* --color-gray-30 */
-  --ifm-pg-cta-background: #eeedef;
-  /* --color-gray-90 */
-  --ifm-pg-cta-color: #000000;
+  /* --sds-clr-gray-01 */
+  --ifm-pg-background: #fcfcfc;
+  /* --sds-clr-gray-04 */
+  --ifm-pg-background-dot: #ededed;
+  /* --sds-clr-gray-04 */
+  --ifm-pg-cta-background: #ededed;
+  /* --sds-clr-gray-12 */
+  --ifm-pg-cta-color: #171717;
 
   /* Icons and logos */
-  /* --color-gray-20 */
-  --ifm-sds-icon-bg: #f4f2f4;
-  /* --color-gray-80 */
-  --ifm-sds-icon-fill: #1a1523;
-  /* --color-gray-70 */
-  --ifm-sds-icon-text: #6f6e77;
+  /* --sds-clr-gray-03 */
+  --ifm-sds-icon-bg: #f3f3f3;
+  /* --sds-clr-gray-12 */
+  --ifm-sds-icon-fill: #171717;
+  /* --sds-clr-gray-11 */
+  --ifm-sds-icon-text: #6f6f6f;
 
   /* Text colors */
-  --clr-heading: #6f6f6f;
-  --clr-text-secondary: #8f8f8f;
+  --clr-heading: #171717;
+  --clr-text-secondary: #858585;
 
   /* Select */
-  --sds-select-color-background: #ffffff;
-  --sds-select-color-background-option: #ffffff;
-  --sds-select-color-border: #eeedef;
-  --sds-select-color-border-hover: #e9e8ea;
-  --sds-select-color-border-focus: #c8c7cb;
-  --sds-select-color-text: #1a1523;
+  --sds-select-color-background: #fcfcfc;
+  --sds-select-color-background-option: #fcfcfc;
+  --sds-select-color-border: #e2e2e2;
+  --sds-select-color-border-hover: #dbdbdb;
+  --sds-select-color-border-focus: #c7c7c7;
+  --sds-select-color-text: #171717;
+
+  /* Badge for logo */
+  /* --sds-clr-lilac-11 */
+  --sds-badge-color-text: #5746af;
+  /* --sds-clr-lilac-02 */
+  --sds-badge-color-background: #fbfaff;
+  /* --sds-clr-lilac-06 */
+  --sds-badge-color-border: #d7cff9;
 }
 
 /* For readability concerns, you should choose a lighter palette in dark mode. */
 [data-theme="dark"]:root {
-  /* --color-purple-60 */
+  /* --sds-clr-lilac-09 */
   --ifm-color-primary: #7c66dc;
-  /* --color-purple-70 */
+  /* --sds-clr-lilac-11 */
   --ifm-color-primary-dark: #9e8cfc;
-  /* --color-purple-80 */
+  /* --sds-clr-lilac-12 */
   --ifm-color-primary-darker: #f1eefe;
-  /* --color-purple-80 */
+  /* --sds-clr-lilac-12 */
   --ifm-color-primary-darkest: #f1eefe;
-  /* --color-purple-50 */
-  --ifm-color-primary-light: #634cc9;
-  /* --color-purple-50 */
-  --ifm-color-primary-lighter: #634cc9;
-  /* --color-purple-40 */
+  /* --sds-clr-lilac-08 */
+  --ifm-color-primary-light: #5842c3;
+  /* --sds-clr-lilac-08 */
+  --ifm-color-primary-lighter: #5842c3;
+  /* --sds-clr-lilac-05 */
   --ifm-color-primary-lightest: #32275f;
   --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
 
-  /* --color-gray-00 */
-  --ifm-background-color: #000000;
-  --ifm-navbar-background-color: #000000;
-  --ifm-footer-background-color: #000000;
-  /* --color-gray-30 */
-  --ifm-hr-background-color: #28282c;
-  --ifm-toc-border-color: #28282c;
+  /* --sds-clr-gray-01 */
+  --ifm-background-color: #161616;
+  --ifm-navbar-background-color: #161616;
+  --ifm-footer-background-color: #161616;
+  /* --sds-clr-gray-04 */
+  --ifm-hr-background-color: #282828;
+  --ifm-toc-border-color: #282828;
 
-  /* --color-gray-70 */
-  --ifm-menu-color: #a09fa6;
-  /* --color-gray-90 */
-  --ifm-menu-color-active: #ffffff;
+  /* --sds-clr-gray-11 */
+  --ifm-menu-color: #a0a0a0;
+  /* --sds-clr-gray-12 */
+  --ifm-menu-color-active: #ededed;
 
-  /* --color-gray-70 */
-  --ifm-font-color-base: #a09fa6;
+  /* --sds-clr-gray-11 */
+  --ifm-font-color-base: #a0a0a0;
 
   /* Playground */
-  /* --color-gray-00 */
-  --ifm-pg-background: #000000;
-  /* --color-gray-30 */
-  --ifm-pg-background-dot: #28282c;
-  /* --color-gray-30 */
-  --ifm-pg-cta-background: #28282c;
-  /* --color-gray-90 */
-  --ifm-pg-cta-color: #ffffff;
+  /* --sds-clr-gray-01 */
+  --ifm-pg-background: #161616;
+  /* --sds-clr-gray-04 */
+  --ifm-pg-background-dot: #282828;
+  /* --sds-clr-gray-04 */
+  --ifm-pg-cta-background: #282828;
+  /* --sds-clr-gray-12 */
+  --ifm-pg-cta-color: #ededed;
 
   /* Icons and logos */
-  /* --color-gray-20 */
-  --ifm-sds-icon-bg: #1c1c1f;
-  /* --color-gray-80 */
-  --ifm-sds-icon-fill: #ededef;
-  /* --color-gray-70 */
-  --ifm-sds-icon-text: #a09fa6;
+  /* --sds-clr-gray-03 */
+  --ifm-sds-icon-bg: #232323;
+  /* --sds-clr-gray-12 */
+  --ifm-sds-icon-fill: #ededed;
+  /* --sds-clr-gray-11 */
+  --ifm-sds-icon-text: #a0a0a0;
 
   /* Text colors */
-  --clr-heading: #a0a0a0;
-  --clr-text-secondary: #707070;
+  --clr-heading: #ededed;
+  --clr-text-secondary: #7e7e7e;
 
   /* Select */
-  --sds-select-color-background: #000000;
-  --sds-select-color-background-option: #000000;
-  --sds-select-color-border: #28282c;
-  --sds-select-color-border-hover: #2e2e32;
-  --sds-select-color-border-focus: #706f78;
-  --sds-select-color-text: #ededef;
+  --sds-select-color-background: #161616;
+  --sds-select-color-background-option: #161616;
+  --sds-select-color-border: #343434;
+  --sds-select-color-border-hover: #3e3e3e;
+  --sds-select-color-border-focus: #505050;
+  --sds-select-color-text: #ededed;
+
+  /* Badge for logo */
+  /* --sds-clr-lilac-11 */
+  --sds-badge-color-text: #9e8cfc;
+  /* --sds-clr-lilac-02 */
+  --sds-badge-color-background: #1c172b;
+  /* --sds-clr-lilac-06 */
+  --sds-badge-color-border: #392c72;
 }
 
 /* Typography */
@@ -226,14 +242,14 @@ table {
 
 .navbar__title {
   font-family: "Inter", sans-serif;
-  font-weight: 600;
-  font-size: 0.625rem;
-  line-height: 1rem;
-  text-transform: uppercase;
-  color: var(--ifm-color-primary);
-  border: 1px solid var(--ifm-color-primary);
-  padding: 0.125rem 0.25rem;
-  border-radius: 0.25rem;
+  font-weight: 500;
+  font-size: 0.875rem;
+  line-height: 1.25rem;
+  color: var(--sds-badge-color-text);
+  border: 1px solid var(--sds-badge-color-border);
+  background-color: var(--sds-badge-color-background);
+  padding: 0.125rem 0.5rem;
+  border-radius: 6.25rem;
 }
 
 [data-theme="dark"] .navbar__logo {
diff --git a/@stellar/design-system-website/src/theme/DocCard/index.js b/@stellar/design-system-website/src/theme/DocCard/index.js
index 57c32e25..90f1621f 100644
--- a/@stellar/design-system-website/src/theme/DocCard/index.js
+++ b/@stellar/design-system-website/src/theme/DocCard/index.js
@@ -1,15 +1,35 @@
+// NOTE: If there is an issue with this component after Docusaurus upgrade:
+// Delete the curent DocCard folder
+// Create the component again by running from the root
+// yarn swizzle @docusaurus/theme-classic DocCard --eject
 import React from "react";
 import clsx from "clsx";
-// eslint-disable-next-line import/no-unresolved
 import Link from "@docusaurus/Link";
 import {
-  findFirstCategoryLink,
   useDocById,
-} from "@docusaurus/theme-common/internal";
+  findFirstSidebarItemLink,
+} from "@docusaurus/plugin-content-docs/client";
+import { usePluralForm } from "@docusaurus/theme-common";
 // import isInternalUrl from "@docusaurus/isInternalUrl";
-// eslint-disable-next-line import/no-unresolved
 import { translate } from "@docusaurus/Translate";
+import Heading from "@theme/Heading";
 import styles from "./styles.module.css";
+function useCategoryItemsPlural() {
+  const { selectMessage } = usePluralForm();
+  return (count) =>
+    selectMessage(
+      count,
+      translate(
+        {
+          message: "1 item|{count} items",
+          id: "theme.docs.DocCard.categoryDescription.plurals",
+          description:
+            "The default description for a category card in the generated index about how many items this category includes",
+        },
+        { count },
+      ),
+    );
+}
 function CardContainer({ href, children }) {
   return (
     <Link
@@ -23,9 +43,13 @@ function CardContainer({ href, children }) {
 function CardLayout({ href, icon, title, description }) {
   return (
     <CardContainer href={href}>
-      <h2 className={clsx("text--truncate", styles.cardTitle)} title={title}>
+      <Heading
+        as="h2"
+        className={clsx("text--truncate", styles.cardTitle)}
+        title={title}
+      >
         {icon} {title}
-      </h2>
+      </Heading>
       {description && (
         <p
           className={clsx("text--truncate", styles.cardDescription)}
@@ -38,7 +62,8 @@ function CardLayout({ href, icon, title, description }) {
   );
 }
 function CardCategory({ item }) {
-  const href = findFirstCategoryLink(item);
+  const href = findFirstSidebarItemLink(item);
+  const categoryItemsPlural = useCategoryItemsPlural();
   // Unexpected: categories that don't have a link have been filtered upfront
   if (!href) {
     return null;
@@ -48,18 +73,7 @@ function CardCategory({ item }) {
       href={href}
       icon={null}
       title={item.label}
-      description={
-        item.description ??
-        translate(
-          {
-            message: "{count} items",
-            id: "theme.docs.DocCard.categoryDescription",
-            description:
-              "The default description for a category card in the generated index about how many items this category includes",
-          },
-          { count: item.items.length },
-        )
-      }
+      description={item.description ?? categoryItemsPlural(item.items.length)}
     />
   );
 }
diff --git a/@stellar/design-system-website/src/theme/MDXComponents.js b/@stellar/design-system-website/src/theme/MDXComponents.js
index 65365b33..e6dddb7d 100644
--- a/@stellar/design-system-website/src/theme/MDXComponents.js
+++ b/@stellar/design-system-website/src/theme/MDXComponents.js
@@ -1,3 +1,4 @@
+// eslint-disable-next-line import/no-unresolved
 import MDXComponents from "@theme-original/MDXComponents";
 import { ComponentDescription } from "@site/src/components/ComponentDescription";
 import { ComponentProps } from "@site/src/components/ComponentProps";
diff --git a/@stellar/design-system-website/tsconfig.json b/@stellar/design-system-website/tsconfig.json
index aea83c96..c330fbf2 100644
--- a/@stellar/design-system-website/tsconfig.json
+++ b/@stellar/design-system-website/tsconfig.json
@@ -1,6 +1,6 @@
 {
   // This file is not used in compilation. It is here just for a nice editor experience.
-  "extends": "@tsconfig/docusaurus/tsconfig.json",
+  "extends": "@docusaurus/tsconfig",
   "compilerOptions": {
     "baseUrl": ".",
     "resolveJsonModule": true
diff --git a/@stellar/design-system/package.json b/@stellar/design-system/package.json
index a3d86c4d..d89c84d3 100755
--- a/@stellar/design-system/package.json
+++ b/@stellar/design-system/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@stellar/design-system",
-  "version": "1.1.3",
+  "version": "3.0.0",
   "author": "Stellar Development Foundation <hello@stellar.org>",
   "description": "Components for Stellar Development Foundation’s design system",
   "license": "Apache-2.0",
@@ -15,7 +15,7 @@
   ],
   "types": "build/index.d.ts",
   "engines": {
-    "node": ">=18.0.0"
+    "node": ">=20.0.0"
   },
   "scripts": {
     "build:prod": "yarn clean && rollup -c",
@@ -29,52 +29,51 @@
     "typedoc": "typedoc --options typedoc.json"
   },
   "peerDependencies": {
-    "react": ">=18.0.0",
-    "react-dom": ">=18.0.0"
+    "react": ">=18.x",
+    "react-dom": ">=18.x"
   },
   "devDependencies": {
-    "@rollup/plugin-commonjs": "^25.0.7",
-    "@rollup/plugin-node-resolve": "^15.2.3",
+    "@rollup/plugin-commonjs": "^28.0.0",
+    "@rollup/plugin-node-resolve": "^15.3.0",
     "@rollup/plugin-url": "^8.0.2",
     "@svgr/rollup": "^8.1.0",
-    "@types/lodash": "^4.14.195",
-    "@types/react": "^18.0.27",
-    "@types/react-copy-to-clipboard": "^5.0.4",
-    "@types/react-dom": "^18.0.10",
-    "@typescript-eslint/eslint-plugin": "^5.50.0",
-    "@typescript-eslint/parser": "^5.50.0",
-    "concurrently": "^7.6.0",
-    "esbuild": "^0.19.8",
-    "eslint": "^8.33.0",
-    "eslint-config-prettier": "^8.6.0",
+    "@types/lodash": "^4.17.9",
+    "@types/react": "^18.3.9",
+    "@types/react-dom": "^18.3.0",
+    "@typescript-eslint/eslint-plugin": "^8.7.0",
+    "@typescript-eslint/parser": "^8.7.0",
+    "concurrently": "^9.0.1",
+    "esbuild": "^0.24.0",
+    "eslint": "^9.11.1",
+    "eslint-config-prettier": "^9.1.0",
     "eslint-config-react": "^1.1.7",
     "eslint-config-react-app": "^7.0.1",
-    "eslint-import-resolver-typescript": "^3.5.3",
-    "eslint-plugin-import": "^2.27.5",
-    "eslint-plugin-jsx-a11y": "^6.7.1",
-    "eslint-plugin-react": "^7.32.2",
-    "eslint-plugin-react-hooks": "^4.6.0",
-    "husky": "^8.0.3",
-    "lint-staged": "^13.1.0",
+    "eslint-import-resolver-typescript": "^3.6.3",
+    "eslint-plugin-import": "^2.30.0",
+    "eslint-plugin-jsx-a11y": "^6.10.0",
+    "eslint-plugin-react": "^7.37.0",
+    "eslint-plugin-react-hooks": "^4.6.2",
+    "husky": "^9.1.6",
+    "lint-staged": "^15.2.10",
     "npm-run-all": "^4.1.5",
     "path": "^0.12.7",
-    "postcss-preset-env": "^9.3.0",
-    "prettier": "^2.8.3",
-    "pretty-quick": "^3.1.3",
-    "rimraf": "^4.1.2",
-    "rollup": "^4.6.0",
-    "rollup-plugin-esbuild": "^6.1.0",
+    "postcss-preset-env": "^10.0.5",
+    "prettier": "^3.3.3",
+    "pretty-quick": "^4.0.0",
+    "rimraf": "^6.0.1",
+    "rollup": "^4.22.5",
+    "rollup-plugin-esbuild": "^6.1.1",
     "rollup-plugin-peer-deps-external": "^2.2.4",
     "rollup-plugin-postcss": "^4.0.2",
-    "sass": "^1.69.5",
-    "typedoc": "^0.25.7",
-    "typescript": "^5.3.3"
+    "sass": "^1.79.3",
+    "typedoc": "^0.26.7",
+    "typescript": "^5.6.2"
   },
   "dependencies": {
-    "@floating-ui/dom": "^1.5.3",
-    "bignumber.js": "^9.1.1",
+    "@floating-ui/dom": "^1.6.11",
+    "bignumber.js": "^9.1.2",
     "lodash": "^4.17.21",
     "react-copy-to-clipboard": "^5.1.0",
-    "tslib": "^2.5.0"
+    "tslib": "^2.7.0"
   }
 }
diff --git a/@stellar/design-system/src/assets/icons/account-balance-wallet.svg b/@stellar/design-system/src/assets/icons/account-balance-wallet.svg
deleted file mode 100644
index 4c97d272..00000000
--- a/@stellar/design-system/src/assets/icons/account-balance-wallet.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7044)"><path d="M16 13.5C16.4333 13.5 16.7917 13.3583 17.075 13.075C17.3583 12.7917 17.5 12.4333 17.5 12C17.5 11.5667 17.3583 11.2083 17.075 10.925C16.7917 10.6417 16.4333 10.5 16 10.5C15.5667 10.5 15.2083 10.6417 14.925 10.925C14.6417 11.2083 14.5 11.5667 14.5 12C14.5 12.4333 14.6417 12.7917 14.925 13.075C15.2083 13.3583 15.5667 13.5 16 13.5ZM13 17C12.45 17 11.9793 16.8043 11.588 16.413C11.196 16.021 11 15.55 11 15V9C11 8.45 11.196 7.979 11.588 7.587C11.9793 7.19567 12.45 7 13 7H20C20.55 7 21.021 7.19567 21.413 7.587C21.8043 7.979 22 8.45 22 9V15C22 15.55 21.8043 16.021 21.413 16.413C21.021 16.8043 20.55 17 20 17H13ZM5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5H13C11.8167 5 10.8543 5.37067 10.113 6.112C9.371 6.854 9 7.81667 9 9V15C9 16.1833 9.371 17.1457 10.113 17.887C10.8543 18.629 11.8167 19 13 19H21C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H5Z"/></g><defs><clipPath id="clip0_1113_7044"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/account-balance.svg b/@stellar/design-system/src/assets/icons/account-balance.svg
deleted file mode 100644
index 80f5b2ad..00000000
--- a/@stellar/design-system/src/assets/icons/account-balance.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6 17C5.71667 17 5.479 16.904 5.287 16.712C5.09567 16.5207 5 16.2833 5 16V10.975C5 10.6917 5.09567 10.4583 5.287 10.275C5.479 10.0917 5.71667 10 6 10C6.28333 10 6.521 10.0957 6.713 10.287C6.90433 10.479 7 10.7167 7 11V16.025C7 16.3083 6.90433 16.5417 6.713 16.725C6.521 16.9083 6.28333 17 6 17ZM12 17C11.7167 17 11.4793 16.904 11.288 16.712C11.096 16.5207 11 16.2833 11 16V10.975C11 10.6917 11.096 10.4583 11.288 10.275C11.4793 10.0917 11.7167 10 12 10C12.2833 10 12.521 10.0957 12.713 10.287C12.9043 10.479 13 10.7167 13 11V16.025C13 16.3083 12.9043 16.5417 12.713 16.725C12.521 16.9083 12.2833 17 12 17ZM2.975 21C2.69167 21 2.45833 20.904 2.275 20.712C2.09167 20.5207 2 20.2833 2 20C2 19.7167 2.096 19.4793 2.288 19.288C2.47933 19.096 2.71667 19 3 19H21.025C21.3083 19 21.5417 19.096 21.725 19.288C21.9083 19.4793 22 19.7167 22 20C22 20.2833 21.904 20.5207 21.712 20.712C21.5207 20.904 21.2833 21 21 21H2.975ZM18 17C17.7167 17 17.4793 16.904 17.288 16.712C17.096 16.5207 17 16.2833 17 16V10.975C17 10.6917 17.096 10.4583 17.288 10.275C17.4793 10.0917 17.7167 10 18 10C18.2833 10 18.5207 10.0957 18.712 10.287C18.904 10.479 19 10.7167 19 11V16.025C19 16.3083 18.904 16.5417 18.712 16.725C18.5207 16.9083 18.2833 17 18 17ZM12.9 1.45L21.325 5.65C21.5417 5.76667 21.7083 5.929 21.825 6.137C21.9417 6.34567 22 6.575 22 6.825C22 7.15833 21.8793 7.43733 21.638 7.662C21.396 7.88733 21.1083 8 20.775 8H3.25C2.91667 8 2.625 7.88733 2.375 7.662C2.125 7.43733 2 7.15833 2 6.825C2 6.59167 2.05433 6.36667 2.163 6.15C2.271 5.93333 2.44167 5.775 2.675 5.675L11.1 1.45C11.3833 1.31667 11.6833 1.25 12 1.25C12.3167 1.25 12.6167 1.31667 12.9 1.45Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/account-circle.svg b/@stellar/design-system/src/assets/icons/account-circle.svg
deleted file mode 100644
index d08bb441..00000000
--- a/@stellar/design-system/src/assets/icons/account-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7041)"><path d="M5.85 17.1C6.7 16.45 7.65 15.9373 8.7 15.562C9.75 15.1873 10.85 15 12 15C13.15 15 14.25 15.1873 15.3 15.562C16.35 15.9373 17.3 16.45 18.15 17.1C18.7333 16.4167 19.1877 15.6417 19.513 14.775C19.8377 13.9083 20 12.9833 20 12C20 9.78333 19.221 7.89567 17.663 6.337C16.1043 4.779 14.2167 4 12 4C9.78333 4 7.896 4.779 6.338 6.337C4.77933 7.89567 4 9.78333 4 12C4 12.9833 4.16267 13.9083 4.488 14.775C4.81267 15.6417 5.26667 16.4167 5.85 17.1ZM12 13C11.0167 13 10.1873 12.6627 9.512 11.988C8.83733 11.3127 8.5 10.4833 8.5 9.5C8.5 8.51667 8.83733 7.68733 9.512 7.012C10.1873 6.33733 11.0167 6 12 6C12.9833 6 13.8127 6.33733 14.488 7.012C15.1627 7.68733 15.5 8.51667 15.5 9.5C15.5 10.4833 15.1627 11.3127 14.488 11.988C13.8127 12.6627 12.9833 13 12 13ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7041"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/activity-heart.svg b/@stellar/design-system/src/assets/icons/activity-heart.svg
new file mode 100644
index 00000000..f4972085
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/activity-heart.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.5 11.5H14.5L13 14.5L11 8.5L9.5 11.5H8.5M11.9932 5.13581C9.9938 2.7984 6.65975 2.16964 4.15469 4.31001C1.64964 6.45038 1.29697 10.029 3.2642 12.5604C4.75009 14.4724 8.97129 18.311 10.948 20.0749C11.3114 20.3991 11.4931 20.5613 11.7058 20.6251C11.8905 20.6805 12.0958 20.6805 12.2805 20.6251C12.4932 20.5613 12.6749 20.3991 13.0383 20.0749C15.015 18.311 19.2362 14.4724 20.7221 12.5604C22.6893 10.029 22.3797 6.42787 19.8316 4.31001C17.2835 2.19216 13.9925 2.7984 11.9932 5.13581Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/activity.svg b/@stellar/design-system/src/assets/icons/activity.svg
new file mode 100644
index 00000000..b611b53a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/activity.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12H18L15 21L9 3L6 12H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/add-circle.svg b/@stellar/design-system/src/assets/icons/add-circle.svg
deleted file mode 100644
index 76255d97..00000000
--- a/@stellar/design-system/src/assets/icons/add-circle.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7035)"><path d="M12 17C12.2833 17 12.521 16.904 12.713 16.712C12.9043 16.5207 13 16.2833 13 16V13H16.025C16.3083 13 16.5417 12.904 16.725 12.712C16.9083 12.5207 17 12.2833 17 12C17 11.7167 16.904 11.479 16.712 11.287C16.5207 11.0957 16.2833 11 16 11H13V7.975C13 7.69167 12.9043 7.45833 12.713 7.275C12.521 7.09167 12.2833 7 12 7C11.7167 7 11.4793 7.09567 11.288 7.287C11.096 7.479 11 7.71667 11 8V11H7.975C7.69167 11 7.45833 11.0957 7.275 11.287C7.09167 11.479 7 11.7167 7 12C7 12.2833 7.09567 12.5207 7.287 12.712C7.479 12.904 7.71667 13 8 13H11V16.025C11 16.3083 11.096 16.5417 11.288 16.725C11.4793 16.9083 11.7167 17 12 17ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7035"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/add.svg b/@stellar/design-system/src/assets/icons/add.svg
deleted file mode 100644
index 001c5345..00000000
--- a/@stellar/design-system/src/assets/icons/add.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7038)"><path d="M12 19C11.7167 19 11.4793 18.904 11.288 18.712C11.096 18.5207 11 18.2833 11 18V13H6C5.71667 13 5.479 12.904 5.287 12.712C5.09567 12.5207 5 12.2833 5 12C5 11.7167 5.09567 11.479 5.287 11.287C5.479 11.0957 5.71667 11 6 11H11V6C11 5.71667 11.096 5.479 11.288 5.287C11.4793 5.09567 11.7167 5 12 5C12.2833 5 12.521 5.09567 12.713 5.287C12.9043 5.479 13 5.71667 13 6V11H18C18.2833 11 18.5207 11.0957 18.712 11.287C18.904 11.479 19 11.7167 19 12C19 12.2833 18.904 12.5207 18.712 12.712C18.5207 12.904 18.2833 13 18 13H13V18C13 18.2833 12.9043 18.5207 12.713 18.712C12.521 18.904 12.2833 19 12 19Z"/></g><defs><clipPath id="clip0_1113_7038"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/airplay.svg b/@stellar/design-system/src/assets/icons/airplay.svg
new file mode 100644
index 00000000..c5be8a08
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/airplay.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 18C3.34315 18 2 16.6569 2 15V7.8C2 6.11984 2 5.27976 2.32698 4.63803C2.6146 4.07354 3.07354 3.6146 3.63803 3.32698C4.27976 3 5.11984 3 6.8 3H17.2C18.8802 3 19.7202 3 20.362 3.32698C20.9265 3.6146 21.3854 4.07354 21.673 4.63803C22 5.27976 22 6.11984 22 7.8V15C22 16.6569 20.6569 18 19 18M8.70803 21H15.292C15.8368 21 16.1093 21 16.2467 20.8889C16.3663 20.7923 16.4347 20.6461 16.4324 20.4925C16.4298 20.3157 16.2554 20.1064 15.9065 19.6879L12.6146 15.7375C12.4035 15.4842 12.298 15.3576 12.1716 15.3114C12.0608 15.2709 11.9392 15.2709 11.8284 15.3114C11.702 15.3576 11.5965 15.4842 11.3854 15.7375L8.09346 19.6879C7.74465 20.1064 7.57024 20.3157 7.56758 20.4925C7.56526 20.6461 7.63373 20.7923 7.75326 20.8889C7.89075 21 8.16318 21 8.70803 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/airpods.svg b/@stellar/design-system/src/assets/icons/airpods.svg
new file mode 100644
index 00000000..3c5801c0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/airpods.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7.625C2 9.90317 3.84683 11.75 6.125 11.75C6.43089 11.75 6.58383 11.75 6.66308 11.7773C6.82888 11.8345 6.91545 11.9211 6.97266 12.0869C7 12.1662 7 12.2903 7 12.5386V18.875C7 19.7725 7.72754 20.5 8.625 20.5C9.52246 20.5 10.25 19.7725 10.25 18.875V7.625C10.25 5.34683 8.40317 3.5 6.125 3.5C3.84683 3.5 2 5.34683 2 7.625Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 7.625C22 9.90317 20.1532 11.75 17.875 11.75C17.5691 11.75 17.4162 11.75 17.3369 11.7773C17.1711 11.8345 17.0845 11.9211 17.0273 12.0869C17 12.1662 17 12.2903 17 12.5386V18.875C17 19.7725 16.2725 20.5 15.375 20.5C14.4775 20.5 13.75 19.7725 13.75 18.875V7.625C13.75 5.34683 15.5968 3.5 17.875 3.5C20.1532 3.5 22 5.34683 22 7.625Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alarm-clock-check.svg b/@stellar/design-system/src/assets/icons/alarm-clock-check.svg
new file mode 100644
index 00000000..255d4387
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alarm-clock-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M9 13.5L11 15.5L15.5 11M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alarm-clock-minus.svg b/@stellar/design-system/src/assets/icons/alarm-clock-minus.svg
new file mode 100644
index 00000000..0dd8eb8b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alarm-clock-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M9 13H15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alarm-clock-off.svg b/@stellar/design-system/src/assets/icons/alarm-clock-off.svg
new file mode 100644
index 00000000..74b0cb0e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alarm-clock-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5 5.14185C10.991 5.04813 11.493 5 12 5C14.1217 5 16.1566 5.84285 17.6569 7.34315C19.1571 8.84344 20 10.8783 20 13C20 13.507 19.9519 14.009 19.8582 14.5M18.1356 18.1337C17.9844 18.3144 17.8247 18.489 17.6569 18.6569C16.1566 20.1571 14.1217 21 12 21C9.87827 21 7.84344 20.1571 6.34315 18.6569C4.84285 17.1566 4 15.1217 4 13C4 10.8783 4.84285 8.84344 6.34315 7.34315C6.50948 7.17682 6.68238 7.01857 6.86123 6.86865M4 4L2 6M22 6L19 3M6 19L4 21M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alarm-clock-plus.svg b/@stellar/design-system/src/assets/icons/alarm-clock-plus.svg
new file mode 100644
index 00000000..102524be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alarm-clock-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M12 16V10M9 13H15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alarm-clock.svg b/@stellar/design-system/src/assets/icons/alarm-clock.svg
new file mode 100644
index 00000000..e8a7be88
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alarm-clock.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 3L2 6M22 6L19 3M6 19L4 21M18 19L20 21M12 9V13L14 15M12 21C14.1217 21 16.1566 20.1571 17.6569 18.6569C19.1571 17.1566 20 15.1217 20 13C20 10.8783 19.1571 8.84344 17.6569 7.34315C16.1566 5.84285 14.1217 5 12 5C9.87827 5 7.84344 5.84285 6.34315 7.34315C4.84285 8.84344 4 10.8783 4 13C4 15.1217 4.84285 17.1566 6.34315 18.6569C7.84344 20.1571 9.87827 21 12 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alert-circle.svg b/@stellar/design-system/src/assets/icons/alert-circle.svg
new file mode 100644
index 00000000..76acefad
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alert-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V12M12 16H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alert-hexagon.svg b/@stellar/design-system/src/assets/icons/alert-hexagon.svg
new file mode 100644
index 00000000..ef880bce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alert-hexagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V12M12 16H12.01M3 7.94145V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7985 21.8355C11.9315 21.8629 12.0685 21.8629 12.2015 21.8355C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586V7.94145C21 7.5988 21 7.42748 20.9495 7.27468C20.9049 7.13951 20.8318 7.01542 20.7354 6.91073C20.6263 6.7924 20.4766 6.7092 20.177 6.54279L12.777 2.43168C12.4934 2.27412 12.3516 2.19535 12.2015 2.16446C12.0685 2.13713 11.9315 2.13713 11.7985 2.16446C11.6484 2.19535 11.5066 2.27412 11.223 2.43168L3.82297 6.54279C3.52345 6.7092 3.37369 6.7924 3.26463 6.91073C3.16816 7.01542 3.09515 7.13951 3.05048 7.27468C3 7.42748 3 7.5988 3 7.94145Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alert-octagon.svg b/@stellar/design-system/src/assets/icons/alert-octagon.svg
new file mode 100644
index 00000000..307c54bf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alert-octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V12M12 16H12.01M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alert-square.svg b/@stellar/design-system/src/assets/icons/alert-square.svg
new file mode 100644
index 00000000..7169a916
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alert-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V12M12 16H12.01M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/alert-triangle.svg b/@stellar/design-system/src/assets/icons/alert-triangle.svg
new file mode 100644
index 00000000..fc446119
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/alert-triangle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.9998 8.99999V13M11.9998 17H12.0098M10.6151 3.89171L2.39019 18.0983C1.93398 18.8863 1.70588 19.2803 1.73959 19.6037C1.769 19.8857 1.91677 20.142 2.14613 20.3088C2.40908 20.5 2.86435 20.5 3.77487 20.5H20.2246C21.1352 20.5 21.5904 20.5 21.8534 20.3088C22.0827 20.142 22.2305 19.8857 22.2599 19.6037C22.2936 19.2803 22.0655 18.8863 21.6093 18.0983L13.3844 3.89171C12.9299 3.10654 12.7026 2.71396 12.4061 2.58211C12.1474 2.4671 11.8521 2.4671 11.5935 2.58211C11.2969 2.71396 11.0696 3.10655 10.6151 3.89171Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-bottom-01.svg b/@stellar/design-system/src/assets/icons/align-bottom-01.svg
new file mode 100644
index 00000000..b42e3fc2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-bottom-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 21H21M12 3V17M12 17L19 10M12 17L5 10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-bottom-02.svg b/@stellar/design-system/src/assets/icons/align-bottom-02.svg
new file mode 100644
index 00000000..99c41d2a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-bottom-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20 18V10C20 9.06812 20 8.60218 19.8478 8.23463C19.6448 7.74458 19.2554 7.35523 18.7654 7.15224C18.3978 7 17.9319 7 17 7C16.0681 7 15.6022 7 15.2346 7.15224C14.7446 7.35523 14.3552 7.74458 14.1522 8.23463C14 8.60218 14 9.06812 14 10V18C14 18.9319 14 19.3978 14.1522 19.7654C14.3552 20.2554 14.7446 20.6448 15.2346 20.8478C15.6022 21 16.0681 21 17 21C17.9319 21 18.3978 21 18.7654 20.8478C19.2554 20.6448 19.6448 20.2554 19.8478 19.7654C20 19.3978 20 18.9319 20 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-center.svg b/@stellar/design-system/src/assets/icons/align-center.svg
new file mode 100644
index 00000000..755f9d85
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-center.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 10H6M21 6H3M21 14H3M18 18H6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-horizontal-centre-01.svg b/@stellar/design-system/src/assets/icons/align-horizontal-centre-01.svg
new file mode 100644
index 00000000..81ea2f0d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-horizontal-centre-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3V21M22 12H15.5M15.5 12L19.5 16M15.5 12L19.5 8M2 12H8.5M8.5 12L4.5 16M8.5 12L4.5 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-horizontal-centre-02.svg b/@stellar/design-system/src/assets/icons/align-horizontal-centre-02.svg
new file mode 100644
index 00000000..9469da33
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-horizontal-centre-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 10C16.9319 10 17.3978 10 17.7654 9.84776C18.2554 9.64477 18.6448 9.25542 18.8478 8.76537C19 8.39782 19 7.93188 19 7C19 6.06812 19 5.60218 18.8478 5.23463C18.6448 4.74458 18.2554 4.35523 17.7654 4.15224C17.3978 4 16.9319 4 16 4L8 4C7.06812 4 6.60218 4 6.23463 4.15224C5.74458 4.35523 5.35523 4.74458 5.15224 5.23463C5 5.60218 5 6.06812 5 7C5 7.93188 5 8.39782 5.15224 8.76537C5.35523 9.25542 5.74458 9.64477 6.23463 9.84776C6.60218 10 7.06812 10 8 10L16 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-justify.svg b/@stellar/design-system/src/assets/icons/align-justify.svg
new file mode 100644
index 00000000..e3fd285a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-justify.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M21 18H3M21 6H3M21 14H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-left-01.svg b/@stellar/design-system/src/assets/icons/align-left-01.svg
new file mode 100644
index 00000000..c7a10aa0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-left-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3V21M21 12H7M7 12L14 19M7 12L14 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-left-02.svg b/@stellar/design-system/src/assets/icons/align-left-02.svg
new file mode 100644
index 00000000..2eae21c1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-left-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 10C14.9319 10 15.3978 10 15.7654 9.84776C16.2554 9.64477 16.6448 9.25542 16.8478 8.76537C17 8.39782 17 7.93188 17 7C17 6.06812 17 5.60218 16.8478 5.23463C16.6448 4.74458 16.2554 4.35523 15.7654 4.15224C15.3978 4 14.9319 4 14 4L6 4C5.06812 4 4.60218 4 4.23463 4.15224C3.74458 4.35523 3.35523 4.74458 3.15224 5.23463C3 5.60218 3 6.06812 3 7C3 7.93188 3 8.39782 3.15224 8.76537C3.35523 9.25542 3.74458 9.64477 4.23463 9.84776C4.60218 10 5.06812 10 6 10L14 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-left.svg b/@stellar/design-system/src/assets/icons/align-left.svg
new file mode 100644
index 00000000..61166f6f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 10H3M20 6H3M20 14H3M16 18H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-right-01.svg b/@stellar/design-system/src/assets/icons/align-right-01.svg
new file mode 100644
index 00000000..5cca336f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-right-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21V3M3 12H17M17 12L10 5M17 12L10 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-right-02.svg b/@stellar/design-system/src/assets/icons/align-right-02.svg
new file mode 100644
index 00000000..7b215118
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-right-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 10C18.9319 10 19.3978 10 19.7654 9.84776C20.2554 9.64477 20.6448 9.25542 20.8478 8.76537C21 8.39782 21 7.93188 21 7C21 6.06812 21 5.60218 20.8478 5.23463C20.6448 4.74458 20.2554 4.35523 19.7654 4.15224C19.3978 4 18.9319 4 18 4L10 4C9.06812 4 8.60218 4 8.23463 4.15224C7.74458 4.35523 7.35523 4.74458 7.15224 5.23463C7 5.60218 7 6.06812 7 7C7 7.93188 7 8.39782 7.15224 8.76537C7.35523 9.25542 7.74458 9.64477 8.23463 9.84776C8.60218 10 9.06812 10 10 10L18 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18 20C18.9319 20 19.3978 20 19.7654 19.8478C20.2554 19.6448 20.6448 19.2554 20.8478 18.7654C21 18.3978 21 17.9319 21 17C21 16.0681 21 15.6022 20.8478 15.2346C20.6448 14.7446 20.2554 14.3552 19.7654 14.1522C19.3978 14 18.9319 14 18 14H6C5.06812 14 4.60218 14 4.23463 14.1522C3.74458 14.3552 3.35523 14.7446 3.15224 15.2346C3 15.6022 3 16.0681 3 17C3 17.9319 3 18.3978 3.15224 18.7654C3.35523 19.2554 3.74458 19.6448 4.23463 19.8478C4.60218 20 5.06812 20 6 20L18 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-right.svg b/@stellar/design-system/src/assets/icons/align-right.svg
new file mode 100644
index 00000000..c2b84668
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H8M21 6H4M21 14H4M21 18H8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-top-01.svg b/@stellar/design-system/src/assets/icons/align-top-01.svg
new file mode 100644
index 00000000..35b2e68f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-top-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 3H3M12 21V7M12 7L5 14M12 7L19 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-top-02.svg b/@stellar/design-system/src/assets/icons/align-top-02.svg
new file mode 100644
index 00000000..d06af7bc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-top-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20 14V6C20 5.06812 20 4.60218 19.8478 4.23463C19.6448 3.74458 19.2554 3.35523 18.7654 3.15224C18.3978 3 17.9319 3 17 3C16.0681 3 15.6022 3 15.2346 3.15224C14.7446 3.35523 14.3552 3.74458 14.1522 4.23463C14 4.60218 14 5.06812 14 6V14C14 14.9319 14 15.3978 14.1522 15.7654C14.3552 16.2554 14.7446 16.6448 15.2346 16.8478C15.6022 17 16.0681 17 17 17C17.9319 17 18.3978 17 18.7654 16.8478C19.2554 16.6448 19.6448 16.2554 19.8478 15.7654C20 15.3978 20 14.9319 20 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-vertical-center-01.svg b/@stellar/design-system/src/assets/icons/align-vertical-center-01.svg
new file mode 100644
index 00000000..50f60ac4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-vertical-center-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M12 2V8.5M12 8.5L16 4.5M12 8.5L8 4.5M12 22V15.5M12 15.5L16 19.5M12 15.5L8 19.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/align-vertical-center-02.svg b/@stellar/design-system/src/assets/icons/align-vertical-center-02.svg
new file mode 100644
index 00000000..4a281f8c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/align-vertical-center-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 18V6C10 5.06812 10 4.60218 9.84776 4.23463C9.64477 3.74458 9.25542 3.35523 8.76537 3.15224C8.39782 3 7.93188 3 7 3C6.06812 3 5.60218 3 5.23463 3.15224C4.74458 3.35523 4.35523 3.74458 4.15224 4.23463C4 4.60218 4 5.06812 4 6V18C4 18.9319 4 19.3978 4.15224 19.7654C4.35523 20.2554 4.74458 20.6448 5.23463 20.8478C5.60218 21 6.06812 21 7 21C7.93188 21 8.39782 21 8.76537 20.8478C9.25542 20.6448 9.64477 20.2554 9.84776 19.7654C10 19.3978 10 18.9319 10 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20 16V8C20 7.06812 20 6.60218 19.8478 6.23463C19.6448 5.74458 19.2554 5.35523 18.7654 5.15224C18.3978 5 17.9319 5 17 5C16.0681 5 15.6022 5 15.2346 5.15224C14.7446 5.35523 14.3552 5.74458 14.1522 6.23463C14 6.60218 14 7.06812 14 8V16C14 16.9319 14 17.3978 14.1522 17.7654C14.3552 18.2554 14.7446 18.6448 15.2346 18.8478C15.6022 19 16.0681 19 17 19C17.9319 19 18.3978 19 18.7654 18.8478C19.2554 18.6448 19.6448 18.2554 19.8478 17.7654C20 17.3978 20 16.9319 20 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/all-inbox.svg b/@stellar/design-system/src/assets/icons/all-inbox.svg
deleted file mode 100644
index 33fd17b8..00000000
--- a/@stellar/design-system/src/assets/icons/all-inbox.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7032)"><path d="M14 13C14.55 13 14.9833 12.8417 15.3 12.525C15.6167 12.2083 15.8167 11.9083 15.9 11.625C15.95 11.4583 16.0627 11.3127 16.238 11.188C16.4127 11.0627 16.6167 11 16.85 11H20V4H8V11H11.15C11.3833 11 11.5873 11.0667 11.762 11.2C11.9373 11.3333 12.05 11.475 12.1 11.625C12.1833 11.9083 12.3833 12.2083 12.7 12.525C13.0167 12.8417 13.45 13 14 13ZM8 18C7.45 18 6.97933 17.8043 6.588 17.413C6.196 17.021 6 16.55 6 16V4C6 3.45 6.196 2.979 6.588 2.587C6.97933 2.19567 7.45 2 8 2H20C20.55 2 21.021 2.19567 21.413 2.587C21.8043 2.979 22 3.45 22 4V16C22 16.55 21.8043 17.021 21.413 17.413C21.021 17.8043 20.55 18 20 18H8ZM4 22C3.45 22 2.97933 21.8043 2.588 21.413C2.196 21.021 2 20.55 2 20V7C2 6.71667 2.096 6.479 2.288 6.287C2.47933 6.09567 2.71667 6 3 6C3.28333 6 3.521 6.09567 3.713 6.287C3.90433 6.479 4 6.71667 4 7V20H17C17.2833 20 17.5207 20.096 17.712 20.288C17.904 20.4793 18 20.7167 18 21C18 21.2833 17.904 21.5207 17.712 21.712C17.5207 21.904 17.2833 22 17 22H4Z"/></g><defs><clipPath id="clip0_1113_7032"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/anchor.svg b/@stellar/design-system/src/assets/icons/anchor.svg
index 1b85f788..a1efcc24 100644
--- a/@stellar/design-system/src/assets/icons/anchor.svg
+++ b/@stellar/design-system/src/assets/icons/anchor.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7029)"><path d="M12 22C10.9833 22 9.94167 21.8167 8.875 21.45C7.80833 21.0833 6.84167 20.5833 5.975 19.95C5.10833 19.3167 4.39567 18.575 3.837 17.725C3.279 16.875 3 15.9667 3 15V13C3 12.8 3.09167 12.65 3.275 12.55C3.45833 12.45 3.63333 12.4667 3.8 12.6L6.55 14.65C6.68333 14.7333 6.75433 14.85 6.763 15C6.771 15.15 6.71667 15.2833 6.6 15.4L5.45 16.55C5.93333 17.4 6.7 18.1333 7.75 18.75C8.8 19.3667 9.88333 19.7583 11 19.925V11H9C8.71667 11 8.47933 10.904 8.288 10.712C8.096 10.5207 8 10.2833 8 10C8 9.71667 8.096 9.479 8.288 9.287C8.47933 9.09567 8.71667 9 9 9H11V7.825C10.4167 7.60833 9.93733 7.24567 9.562 6.737C9.18733 6.229 9 5.65 9 5C9 4.16667 9.29167 3.45833 9.875 2.875C10.4583 2.29167 11.1667 2 12 2C12.8333 2 13.5417 2.29167 14.125 2.875C14.7083 3.45833 15 4.16667 15 5C15 5.65 14.8127 6.229 14.438 6.737C14.0627 7.24567 13.5833 7.60833 13 7.825V9H15C15.2833 9 15.521 9.09567 15.713 9.287C15.9043 9.479 16 9.71667 16 10C16 10.2833 15.9043 10.5207 15.713 10.712C15.521 10.904 15.2833 11 15 11H13V19.925C14.1167 19.7583 15.2 19.3667 16.25 18.75C17.3 18.1333 18.0667 17.4 18.55 16.55L17.4 15.4C17.2833 15.2833 17.2293 15.15 17.238 15C17.246 14.85 17.3167 14.7333 17.45 14.65L20.2 12.6C20.3667 12.4667 20.5417 12.45 20.725 12.55C20.9083 12.65 21 12.8 21 13V15C21 15.9667 20.721 16.875 20.163 17.725C19.6043 18.575 18.8917 19.3167 18.025 19.95C17.1583 20.5833 16.1917 21.0833 15.125 21.45C14.0583 21.8167 13.0167 22 12 22ZM12 6C12.2833 6 12.521 5.90433 12.713 5.713C12.9043 5.521 13 5.28333 13 5C13 4.71667 12.9043 4.479 12.713 4.287C12.521 4.09567 12.2833 4 12 4C11.7167 4 11.4793 4.09567 11.288 4.287C11.096 4.479 11 4.71667 11 5C11 5.28333 11.096 5.521 11.288 5.713C11.4793 5.90433 11.7167 6 12 6Z"/></g><defs><clipPath id="clip0_1113_7029"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8C13.6569 8 15 6.65685 15 5C15 3.34315 13.6569 2 12 2C10.3431 2 9 3.34315 9 5C9 6.65685 10.3431 8 12 8ZM12 8V22M12 22C9.34784 22 6.8043 20.9464 4.92893 19.0711C3.05357 17.1957 2 14.6522 2 12H5M12 22C14.6522 22 17.1957 20.9464 19.0711 19.0711C20.9464 17.1957 22 14.6522 22 12H19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-alert.svg b/@stellar/design-system/src/assets/icons/annotation-alert.svg
new file mode 100644
index 00000000..d95fc41a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-alert.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 10.5V7M12 14H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-check.svg b/@stellar/design-system/src/assets/icons/annotation-check.svg
new file mode 100644
index 00000000..419ef0a0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 11L11 13L15.5 8.5M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-dots.svg b/@stellar/design-system/src/assets/icons/annotation-dots.svg
new file mode 100644
index 00000000..89627ea3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-dots.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 10.5H7.51M12 10.5H12.01M16.5 10.5H16.51M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2ZM8 10.5C8 10.7761 7.77614 11 7.5 11C7.22386 11 7 10.7761 7 10.5C7 10.2239 7.22386 10 7.5 10C7.77614 10 8 10.2239 8 10.5ZM12.5 10.5C12.5 10.7761 12.2761 11 12 11C11.7239 11 11.5 10.7761 11.5 10.5C11.5 10.2239 11.7239 10 12 10C12.2761 10 12.5 10.2239 12.5 10.5ZM17 10.5C17 10.7761 16.7761 11 16.5 11C16.2239 11 16 10.7761 16 10.5C16 10.2239 16.2239 10 16.5 10C16.7761 10 17 10.2239 17 10.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-heart.svg b/@stellar/design-system/src/assets/icons/annotation-heart.svg
new file mode 100644
index 00000000..a77a24c8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-heart.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.5C21 14.8978 21 15.5967 20.7716 16.1481C20.4672 16.8831 19.8831 17.4672 19.1481 17.7716C18.5967 18 17.8978 18 16.5 18C16.0114 18 15.7671 18 15.5405 18.0535C15.2383 18.1248 14.9569 18.2656 14.7185 18.4645C14.5397 18.6137 14.3931 18.8091 14.1 19.2L12.64 21.1467C12.4229 21.4362 12.3143 21.5809 12.1812 21.6327C12.0647 21.678 11.9353 21.678 11.8188 21.6327C11.6857 21.5809 11.5771 21.4362 11.36 21.1467L9.9 19.2C9.60685 18.8091 9.46028 18.6137 9.2815 18.4645C9.04312 18.2656 8.76169 18.1248 8.45951 18.0535C8.23287 18 7.98858 18 7.5 18C6.10218 18 5.40326 18 4.85195 17.7716C4.11687 17.4672 3.53284 16.8831 3.22836 16.1481C3 15.5967 3 14.8978 3 13.5V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9973 8.33059C11.1975 7.4216 9.8639 7.17708 8.86188 8.00945C7.85986 8.84182 7.71879 10.2335 8.50568 11.2179C8.97361 11.8033 10.1197 12.8531 10.9719 13.6079C11.3237 13.9195 11.4996 14.0753 11.7114 14.1385C11.8925 14.1926 12.102 14.1926 12.2832 14.1385C12.4949 14.0753 12.6708 13.9195 13.0226 13.6079C13.8748 12.8531 15.0209 11.8033 15.4888 11.2179C16.2757 10.2335 16.1519 8.83306 15.1326 8.00945C14.1134 7.18584 12.797 7.4216 11.9973 8.33059Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-info.svg b/@stellar/design-system/src/assets/icons/annotation-info.svg
new file mode 100644
index 00000000..6c7f7be7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-info.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 14V10.5M12 7H12.01M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-plus.svg b/@stellar/design-system/src/assets/icons/annotation-plus.svg
new file mode 100644
index 00000000..0511070b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13.5V7.5M9 10.5H15M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-question.svg b/@stellar/design-system/src/assets/icons/annotation-question.svg
new file mode 100644
index 00000000..ba63535e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-question.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 8.50224C10.1762 8.00136 10.524 7.579 10.9817 7.30998C11.4395 7.04095 11.9777 6.9426 12.501 7.03237C13.0243 7.12213 13.499 7.39421 13.8409 7.80041C14.1829 8.20661 14.37 8.72072 14.3692 9.25168C14.3692 10.7506 12.1209 11.5 12.1209 11.5M12.1499 14.5H12.1599M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation-x.svg b/@stellar/design-system/src/assets/icons/annotation-x.svg
new file mode 100644
index 00000000..111e7751
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 8L14.5 13M14.5 8L9.5 13M9.9 19.2L11.36 21.1467C11.5771 21.4362 11.6857 21.5809 11.8188 21.6327C11.9353 21.678 12.0647 21.678 12.1812 21.6327C12.3143 21.5809 12.4229 21.4362 12.64 21.1467L14.1 19.2C14.3931 18.8091 14.5397 18.6137 14.7185 18.4645C14.9569 18.2656 15.2383 18.1248 15.5405 18.0535C15.7671 18 16.0114 18 16.5 18C17.8978 18 18.5967 18 19.1481 17.7716C19.8831 17.4672 20.4672 16.8831 20.7716 16.1481C21 15.5967 21 14.8978 21 13.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V13.5C3 14.8978 3 15.5967 3.22836 16.1481C3.53284 16.8831 4.11687 17.4672 4.85195 17.7716C5.40326 18 6.10218 18 7.5 18C7.98858 18 8.23287 18 8.45951 18.0535C8.76169 18.1248 9.04312 18.2656 9.2815 18.4645C9.46028 18.6137 9.60685 18.8091 9.9 19.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/annotation.svg b/@stellar/design-system/src/assets/icons/annotation.svg
new file mode 100644
index 00000000..1eaaf356
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/annotation.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.5C21 14.8978 21 15.5967 20.7716 16.1481C20.4672 16.8831 19.8831 17.4672 19.1481 17.7716C18.5967 18 17.8978 18 16.5 18C16.0114 18 15.7671 18 15.5405 18.0535C15.2383 18.1248 14.9569 18.2656 14.7185 18.4645C14.5397 18.6137 14.3931 18.8091 14.1 19.2L12.64 21.1467C12.4229 21.4362 12.3143 21.5809 12.1812 21.6327C12.0647 21.678 11.9353 21.678 11.8188 21.6327C11.6857 21.5809 11.5771 21.4362 11.36 21.1467L9.9 19.2C9.60685 18.8091 9.46028 18.6137 9.2815 18.4645C9.04312 18.2656 8.76169 18.1248 8.45951 18.0535C8.23287 18 7.98858 18 7.5 18C6.10218 18 5.40326 18 4.85195 17.7716C4.11687 17.4672 3.53284 16.8831 3.22836 16.1481C3 15.5967 3 14.8978 3 13.5V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/announcement-01.svg b/@stellar/design-system/src/assets/icons/announcement-01.svg
new file mode 100644
index 00000000..50a6b16c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/announcement-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 8.00001V12M10.25 5.5H6.8C5.11984 5.5 4.27976 5.5 3.63803 5.82698C3.07354 6.1146 2.6146 6.57355 2.32698 7.13803C2 7.77977 2 8.61985 2 10.3L2 11.5C2 12.4319 2 12.8978 2.15224 13.2654C2.35523 13.7554 2.74458 14.1448 3.23463 14.3478C3.60218 14.5 4.06812 14.5 5 14.5V18.75C5 18.9822 5 19.0983 5.00963 19.196C5.10316 20.1456 5.85441 20.8968 6.80397 20.9904C6.90175 21 7.01783 21 7.25 21C7.48217 21 7.59826 21 7.69604 20.9904C8.64559 20.8968 9.39685 20.1456 9.49037 19.196C9.5 19.0983 9.5 18.9822 9.5 18.75V14.5H10.25C12.0164 14.5 14.1772 15.4469 15.8443 16.3556C16.8168 16.8858 17.3031 17.1509 17.6216 17.1119C17.9169 17.0757 18.1402 16.9431 18.3133 16.7011C18.5 16.4402 18.5 15.918 18.5 14.8737V5.12629C18.5 4.082 18.5 3.55985 18.3133 3.29889C18.1402 3.0569 17.9169 2.9243 17.6216 2.88813C17.3031 2.84912 16.8168 3.1142 15.8443 3.64436C14.1772 4.55312 12.0164 5.5 10.25 5.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/announcement-02.svg b/@stellar/design-system/src/assets/icons/announcement-02.svg
new file mode 100644
index 00000000..952932c9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/announcement-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 14L5.57465 20.2986C5.61893 20.4757 5.64107 20.5643 5.66727 20.6416C5.92317 21.3971 6.60352 21.9283 7.39852 21.9933C7.4799 22 7.5712 22 7.75379 22C7.98244 22 8.09677 22 8.19308 21.9907C9.145 21.8983 9.89834 21.145 9.99066 20.1931C10 20.0968 10 19.9824 10 19.7538V5.5M18.5 13.5C20.433 13.5 22 11.933 22 10C22 8.06701 20.433 6.5 18.5 6.5M10.25 5.5H6.5C4.01472 5.5 2 7.51472 2 10C2 12.4853 4.01472 14.5 6.5 14.5H10.25C12.0164 14.5 14.1772 15.4469 15.8443 16.3556C16.8168 16.8858 17.3031 17.1509 17.6216 17.1119C17.9169 17.0757 18.1402 16.9431 18.3133 16.7011C18.5 16.4402 18.5 15.918 18.5 14.8737V5.12629C18.5 4.082 18.5 3.55985 18.3133 3.29889C18.1402 3.0569 17.9169 2.9243 17.6216 2.88813C17.3031 2.84912 16.8168 3.1142 15.8443 3.64436C14.1772 4.55312 12.0164 5.5 10.25 5.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/announcement-03.svg b/@stellar/design-system/src/assets/icons/announcement-03.svg
new file mode 100644
index 00000000..75e1b6b7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/announcement-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5 16C20.433 16 22 13.0899 22 9.5C22 5.91015 20.433 3 18.5 3M18.5 16C16.567 16 15 13.0899 15 9.5C15 5.91015 16.567 3 18.5 3M18.5 16L5.44354 13.6261C4.51605 13.4575 4.05231 13.3731 3.67733 13.189C2.91447 12.8142 2.34636 12.1335 2.11414 11.3159C2 10.914 2 10.4427 2 9.5C2 8.5573 2 8.08595 2.11414 7.68407C2.34636 6.86649 2.91447 6.18577 3.67733 5.81105C4.05231 5.62685 4.51605 5.54254 5.44354 5.3739L18.5 3M5 14L5.39386 19.514C5.43126 20.0376 5.44996 20.2995 5.56387 20.4979C5.66417 20.6726 5.81489 20.8129 5.99629 20.9005C6.20232 21 6.46481 21 6.98979 21H8.7722C9.37234 21 9.67242 21 9.89451 20.8803C10.0897 20.7751 10.2443 20.6081 10.3342 20.4055C10.4365 20.1749 10.4135 19.8757 10.3675 19.2773L10 14.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/aod.svg b/@stellar/design-system/src/assets/icons/aod.svg
deleted file mode 100644
index 6e24ff2e..00000000
--- a/@stellar/design-system/src/assets/icons/aod.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7026)"><path d="M8.75 11.5C8.53333 11.5 8.35433 11.429 8.213 11.287C8.071 11.1457 8 10.9667 8 10.75C8 10.5333 8.071 10.354 8.213 10.212C8.35433 10.0707 8.53333 10 8.75 10H15.25C15.4667 10 15.646 10.0707 15.788 10.212C15.9293 10.354 16 10.5333 16 10.75C16 10.9667 15.9293 11.1457 15.788 11.287C15.646 11.429 15.4667 11.5 15.25 11.5H8.75ZM9.75 14.5C9.53333 14.5 9.35433 14.429 9.213 14.287C9.071 14.1457 9 13.9667 9 13.75C9 13.5333 9.071 13.354 9.213 13.212C9.35433 13.0707 9.53333 13 9.75 13H14.25C14.4667 13 14.646 13.0707 14.788 13.212C14.9293 13.354 15 13.5333 15 13.75C15 13.9667 14.9293 14.1457 14.788 14.287C14.646 14.429 14.4667 14.5 14.25 14.5H9.75ZM7 23C6.45 23 5.97933 22.8043 5.588 22.413C5.196 22.021 5 21.55 5 21V3C5 2.45 5.196 1.979 5.588 1.587C5.97933 1.19567 6.45 1 7 1H17C17.55 1 18.021 1.19567 18.413 1.587C18.8043 1.979 19 2.45 19 3V21C19 21.55 18.8043 22.021 18.413 22.413C18.021 22.8043 17.55 23 17 23H7ZM7 18H17V6H7V18Z"/></g><defs><clipPath id="clip0_1113_7026"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/archive.svg b/@stellar/design-system/src/assets/icons/archive.svg
new file mode 100644
index 00000000..fc202688
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/archive.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7.9966C3.83599 7.99236 3.7169 7.98287 3.60982 7.96157C2.81644 7.80376 2.19624 7.18356 2.03843 6.39018C2 6.19698 2 5.96466 2 5.5C2 5.03534 2 4.80302 2.03843 4.60982C2.19624 3.81644 2.81644 3.19624 3.60982 3.03843C3.80302 3 4.03534 3 4.5 3H19.5C19.9647 3 20.197 3 20.3902 3.03843C21.1836 3.19624 21.8038 3.81644 21.9616 4.60982C22 4.80302 22 5.03534 22 5.5C22 5.96466 22 6.19698 21.9616 6.39018C21.8038 7.18356 21.1836 7.80376 20.3902 7.96157C20.2831 7.98287 20.164 7.99236 20 7.9966M10 13H14M4 8H20V16.2C20 17.8802 20 18.7202 19.673 19.362C19.3854 19.9265 18.9265 20.3854 18.362 20.673C17.7202 21 16.8802 21 15.2 21H8.8C7.11984 21 6.27976 21 5.63803 20.673C5.07354 20.3854 4.6146 19.9265 4.32698 19.362C4 18.7202 4 17.8802 4 16.2V8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-block-down.svg b/@stellar/design-system/src/assets/icons/arrow-block-down.svg
new file mode 100644
index 00000000..976d6906
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-block-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3.8C9 3.51997 9 3.37996 9.0545 3.273C9.10243 3.17892 9.17892 3.10243 9.273 3.0545C9.37996 3 9.51997 3 9.8 3H14.2C14.48 3 14.62 3 14.727 3.0545C14.8211 3.10243 14.8976 3.17892 14.9455 3.273C15 3.37996 15 3.51997 15 3.8V14H19L12 21L5 14H9V3.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-block-left.svg b/@stellar/design-system/src/assets/icons/arrow-block-left.svg
new file mode 100644
index 00000000..62d1af6b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-block-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12L10 5V9H20.2C20.48 9 20.62 9 20.727 9.0545C20.8211 9.10243 20.8976 9.17892 20.9455 9.273C21 9.37996 21 9.51997 21 9.8V14.2C21 14.48 21 14.62 20.9455 14.727C20.8976 14.8211 20.8211 14.8976 20.727 14.9455C20.62 15 20.48 15 20.2 15H10V19L3 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-block-right.svg b/@stellar/design-system/src/assets/icons/arrow-block-right.svg
new file mode 100644
index 00000000..4fb510fc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-block-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 12L14 5V9H3.8C3.51997 9 3.37996 9 3.273 9.0545C3.17892 9.10243 3.10243 9.17892 3.0545 9.273C3 9.37996 3 9.51997 3 9.8V14.2C3 14.48 3 14.62 3.0545 14.727C3.10243 14.8211 3.17892 14.8976 3.273 14.9455C3.37996 15 3.51997 15 3.8 15H14V19L21 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-block-up.svg b/@stellar/design-system/src/assets/icons/arrow-block-up.svg
new file mode 100644
index 00000000..ae7c0009
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-block-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.8 21C9.51997 21 9.37996 21 9.273 20.9455C9.17892 20.8976 9.10243 20.8211 9.0545 20.727C9 20.62 9 20.48 9 20.2V10H5L12 3L19 10H15V20.2C15 20.48 15 20.62 14.9455 20.727C14.8976 20.8211 14.8211 20.8976 14.727 20.9455C14.62 21 14.48 21 14.2 21H9.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-left.svg
new file mode 100644
index 00000000..131411ab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.00019 9.00005V15.0001M9.00019 15.0001H15.0002M9.00019 15.0001L19 5M21.6606 9.41049C22.5515 12.7467 21.6883 16.4538 19.071 19.0711C15.1658 22.9764 8.83413 22.9764 4.92889 19.0711C1.02364 15.1659 1.02364 8.83422 4.92889 4.92898C7.54618 2.31168 11.2533 1.4485 14.5895 2.33943" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-right.svg
new file mode 100644
index 00000000..1f8dff79
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.41049 2.33943C12.7467 1.4485 16.4538 2.31168 19.0711 4.92898C22.9764 8.83422 22.9764 15.1659 19.0711 19.0711C15.1659 22.9764 8.83422 22.9764 4.92898 19.0711C2.31168 16.4538 1.4485 12.7467 2.33943 9.41049M15.0002 9.00005V15.0001M15.0002 15.0001H9.00018M15.0002 15.0001L5 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-down.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down.svg
new file mode 100644
index 00000000..ff3568fa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 3.33782C19.989 5.06687 22 8.29859 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 8.29859 4.01099 5.06687 7 3.33782M8 12L12 16M12 16L16 12M12 16V2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-left.svg
new file mode 100644
index 00000000..d4b311f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.6621 17C18.9331 19.989 15.7014 22 11.9999 22C6.47709 22 1.99994 17.5228 1.99994 12C1.99994 6.47715 6.47709 2 11.9999 2C15.7014 2 18.9331 4.01099 20.6621 7M12 8L8.00001 12M8.00001 12L12 16M8.00001 12H22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-right.svg
new file mode 100644
index 00000000..ef42d8a5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.33789 7C5.06694 4.01099 8.29866 2 12.0001 2C17.5229 2 22.0001 6.47715 22.0001 12C22.0001 17.5228 17.5229 22 12.0001 22C8.29866 22 5.06694 19.989 3.33789 17M12 16L16 12M16 12L12 8M16 12H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-left.svg
new file mode 100644
index 00000000..66e6c40f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5895 21.6606C11.2533 22.5515 7.54616 21.6883 4.92887 19.071C1.02363 15.1658 1.02363 8.83413 4.92887 4.92889C8.83411 1.02364 15.1658 1.02364 19.071 4.92889C21.6883 7.54618 22.5515 11.2533 21.6606 14.5895M9.00017 15.0001V9.00006M9.00017 9.00006H15.0002M9.00017 9.00006L19 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-right.svg
new file mode 100644
index 00000000..724ef6de
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.33944 14.5895C1.44852 11.2533 2.3117 7.54618 4.92899 4.92889C8.83424 1.02364 15.1659 1.02364 19.0711 4.92889C22.9764 8.83413 22.9764 15.1658 19.0711 19.071C16.4538 21.6883 12.7467 22.5515 9.41051 21.6606M15.0002 15.0001V9.00006M15.0002 9.00006H9.0002M15.0002 9.00006L5.00001 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-broken-up.svg b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up.svg
new file mode 100644
index 00000000..80d4103e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-broken-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 20.6621C4.01099 18.9331 2 15.7013 2 11.9999C2 6.47708 6.47715 1.99993 12 1.99993C17.5228 1.99993 22 6.47708 22 11.9999C22 15.7013 19.989 18.9331 17 20.6621M16 12L12 8M12 8L8 12M12 8V22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-down-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-down-left.svg
new file mode 100644
index 00000000..d4e9f3f1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.00019 9.00005V15.0001M9.00019 15.0001H15.0002M9.00019 15.0001L15.0002 8.99994M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-down-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-down-right.svg
new file mode 100644
index 00000000..ecac8d05
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0002 9.00005V15.0001M15.0002 15.0001H9.00019M15.0002 15.0001L9.00019 8.99994M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-down.svg b/@stellar/design-system/src/assets/icons/arrow-circle-down.svg
index 6196f596..7de1917a 100644
--- a/@stellar/design-system/src/assets/icons/arrow-circle-down.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-down.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7023)"><path d="M12 15.575C12.1333 15.575 12.2583 15.554 12.375 15.512C12.4917 15.4707 12.6 15.4 12.7 15.3L15.3 12.7C15.4833 12.5167 15.575 12.2833 15.575 12C15.575 11.7167 15.4833 11.4833 15.3 11.3C15.1167 11.1167 14.8833 11.025 14.6 11.025C14.3167 11.025 14.0833 11.1167 13.9 11.3L13 12.2V9C13 8.71667 12.9043 8.479 12.713 8.287C12.521 8.09567 12.2833 8 12 8C11.7167 8 11.4793 8.09567 11.288 8.287C11.096 8.479 11 8.71667 11 9V12.2L10.1 11.3C9.91667 11.1167 9.68333 11.025 9.4 11.025C9.11667 11.025 8.88333 11.1167 8.7 11.3C8.51667 11.4833 8.425 11.7167 8.425 12C8.425 12.2833 8.51667 12.5167 8.7 12.7L11.3 15.3C11.4 15.4 11.5083 15.4707 11.625 15.512C11.7417 15.554 11.8667 15.575 12 15.575ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7023"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-left.svg
index 0313ee70..2208f6a7 100644
--- a/@stellar/design-system/src/assets/icons/arrow-circle-left.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-left.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7020)"><path d="M11.325 15.325C11.5083 15.5083 11.7377 15.5957 12.013 15.587C12.2877 15.579 12.5167 15.4833 12.7 15.3C12.8833 15.1167 12.975 14.8833 12.975 14.6C12.975 14.3167 12.8833 14.0833 12.7 13.9L11.8 13H15.025C15.3083 13 15.5417 12.904 15.725 12.712C15.9083 12.5207 16 12.2833 16 12C16 11.7167 15.9043 11.479 15.713 11.287C15.521 11.0957 15.2833 11 15 11H11.8L12.725 10.075C12.9083 9.89167 12.996 9.66233 12.988 9.387C12.9793 9.11233 12.8833 8.88333 12.7 8.7C12.5167 8.51667 12.2833 8.425 12 8.425C11.7167 8.425 11.4833 8.51667 11.3 8.7L8.7 11.3C8.51667 11.4833 8.425 11.7167 8.425 12C8.425 12.2833 8.51667 12.5167 8.7 12.7L11.325 15.325ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7020"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8L8 12M8 12L12 16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-right.svg
index 79b6e45b..fba1607f 100644
--- a/@stellar/design-system/src/assets/icons/arrow-circle-right.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-right.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7017)"><path d="M12.7 15.3L15.3 12.7C15.4833 12.5167 15.575 12.2833 15.575 12C15.575 11.7167 15.4833 11.4833 15.3 11.3L12.675 8.675C12.4917 8.49167 12.2627 8.404 11.988 8.412C11.7127 8.42067 11.4833 8.51667 11.3 8.7C11.1167 8.88333 11.025 9.11667 11.025 9.4C11.025 9.68333 11.1167 9.91667 11.3 10.1L12.2 11H8.975C8.69167 11 8.45833 11.0957 8.275 11.287C8.09167 11.479 8 11.7167 8 12C8 12.2833 8.096 12.5207 8.288 12.712C8.47933 12.904 8.71667 13 9 13H12.2L11.275 13.925C11.0917 14.1083 11.004 14.3377 11.012 14.613C11.0207 14.8877 11.1167 15.1167 11.3 15.3C11.4833 15.4833 11.7167 15.575 12 15.575C12.2833 15.575 12.5167 15.4833 12.7 15.3ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7017"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16L16 12M16 12L12 8M16 12H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-up-left.svg b/@stellar/design-system/src/assets/icons/arrow-circle-up-left.svg
new file mode 100644
index 00000000..013b7ed9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.00019 15.0001V9.00005M9.00019 9.00005H15.0002M9.00019 9.00005L15.0002 14.9999M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-up-right.svg b/@stellar/design-system/src/assets/icons/arrow-circle-up-right.svg
new file mode 100644
index 00000000..cb22c816
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0002 15.0001V9.00005M15.0002 9.00005H9.00019M15.0002 9.00005L9.00019 14.9999M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-circle-up.svg b/@stellar/design-system/src/assets/icons/arrow-circle-up.svg
index 66c24a49..31ab3250 100644
--- a/@stellar/design-system/src/assets/icons/arrow-circle-up.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-circle-up.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7014)"><path d="M12 16C12.2833 16 12.521 15.904 12.713 15.712C12.9043 15.5207 13 15.2833 13 15V11.8L13.9 12.7C14.0833 12.8833 14.3167 12.975 14.6 12.975C14.8833 12.975 15.1167 12.8833 15.3 12.7C15.4833 12.5167 15.575 12.2833 15.575 12C15.575 11.7167 15.4833 11.4833 15.3 11.3L12.7 8.7C12.6 8.6 12.4917 8.529 12.375 8.487C12.2583 8.44567 12.1333 8.425 12 8.425C11.8667 8.425 11.7417 8.44567 11.625 8.487C11.5083 8.529 11.4 8.6 11.3 8.7L8.7 11.3C8.51667 11.4833 8.425 11.7167 8.425 12C8.425 12.2833 8.51667 12.5167 8.7 12.7C8.88333 12.8833 9.11667 12.975 9.4 12.975C9.68333 12.975 9.91667 12.8833 10.1 12.7L11 11.8V15C11 15.2833 11.096 15.5207 11.288 15.712C11.4793 15.904 11.7167 16 12 16ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_7014"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12L12 8M12 8L8 12M12 8V16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-down-left.svg b/@stellar/design-system/src/assets/icons/arrow-down-left.svg
new file mode 100644
index 00000000..50cee1e3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 7L7 17M7 17H17M7 17V7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-down-right.svg b/@stellar/design-system/src/assets/icons/arrow-down-right.svg
new file mode 100644
index 00000000..7fc2d991
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 7L17 17M17 17V7M17 17H7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-down.svg b/@stellar/design-system/src/assets/icons/arrow-down.svg
index 5e5b8d6a..404c532a 100644
--- a/@stellar/design-system/src/assets/icons/arrow-down.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-down.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7011)"><path d="M12 19.575C11.8667 19.575 11.7417 19.554 11.625 19.512C11.5084 19.4707 11.4 19.4 11.3 19.3L4.70002 12.7C4.50002 12.5 4.40002 12.2623 4.40002 11.987C4.40002 11.7123 4.50002 11.475 4.70002 11.275C4.90002 11.075 5.13336 10.975 5.40002 10.975C5.66669 10.975 5.90002 11.075 6.10002 11.275L11 16.175V4.975C11 4.69167 11.096 4.45833 11.288 4.275C11.4794 4.09167 11.7167 4 12 4C12.2834 4 12.521 4.09567 12.713 4.287C12.9044 4.479 13 4.71667 13 5V16.175L17.9 11.275C18.1 11.075 18.3334 10.975 18.6 10.975C18.8667 10.975 19.1 11.075 19.3 11.275C19.5 11.475 19.6 11.7123 19.6 11.987C19.6 12.2623 19.5 12.5 19.3 12.7L12.7 19.3C12.6 19.4 12.4917 19.4707 12.375 19.512C12.2584 19.554 12.1334 19.575 12 19.575Z"/></g><defs><clipPath id="clip0_1113_7011"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 5V19M12 19L19 12M12 19L5 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-left.svg b/@stellar/design-system/src/assets/icons/arrow-left.svg
index e4b02a79..679c6f68 100644
--- a/@stellar/design-system/src/assets/icons/arrow-left.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-left.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7008)"><path d="M10.875 19.3L4.275 12.7C4.175 12.6 4.104 12.4917 4.062 12.375C4.02067 12.2583 4 12.1333 4 12C4 11.8667 4.02067 11.7417 4.062 11.625C4.104 11.5083 4.175 11.4 4.275 11.3L10.875 4.69999C11.0583 4.51666 11.2873 4.42066 11.562 4.41199C11.8373 4.40399 12.075 4.49999 12.275 4.69999C12.475 4.88332 12.5793 5.11232 12.588 5.38699C12.596 5.66232 12.5 5.89999 12.3 6.09999L7.4 11H18.575C18.8583 11 19.096 11.0957 19.288 11.287C19.4793 11.479 19.575 11.7167 19.575 12C19.575 12.2833 19.4793 12.5207 19.288 12.712C19.096 12.904 18.8583 13 18.575 13H7.4L12.3 17.9C12.4833 18.0833 12.5793 18.3167 12.588 18.6C12.596 18.8833 12.5 19.1167 12.3 19.3C12.1167 19.5 11.8833 19.6 11.6 19.6C11.3167 19.6 11.075 19.5 10.875 19.3Z"/></g><defs><clipPath id="clip0_1113_7008"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 12H5M5 12L12 19M5 12L12 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-down-left.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-down-left.svg
new file mode 100644
index 00000000..0c321e76
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 6L6 18M6 18H14M6 18V10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-down-right.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-down-right.svg
new file mode 100644
index 00000000..c4461497
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 6L18 18M18 18V10M18 18H10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-down.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-down.svg
new file mode 100644
index 00000000..a6cbc86d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 4V20M12 20L18 14M12 20L6 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-left.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-left.svg
new file mode 100644
index 00000000..53101773
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12H4M4 12L10 18M4 12L10 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-right.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-right.svg
new file mode 100644
index 00000000..babe4502
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 12H20M20 12L14 6M20 12L14 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-up-left.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-up-left.svg
new file mode 100644
index 00000000..412ddea2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 18L6 6M6 6V14M6 6H14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-up-right.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-up-right.svg
new file mode 100644
index 00000000..027df486
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 18L18 6M18 6H10M18 6V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-narrow-up.svg b/@stellar/design-system/src/assets/icons/arrow-narrow-up.svg
new file mode 100644
index 00000000..ecc19330
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-narrow-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20V4M12 4L6 10M12 4L18 10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-right.svg b/@stellar/design-system/src/assets/icons/arrow-right.svg
index e0d000eb..500a8ef6 100644
--- a/@stellar/design-system/src/assets/icons/arrow-right.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-right.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7005)"><path d="M11.3 19.3C11.1167 19.1167 11.0207 18.8833 11.012 18.6C11.004 18.3167 11.0917 18.0833 11.275 17.9L16.175 13H5C4.71667 13 4.479 12.904 4.287 12.712C4.09567 12.5207 4 12.2833 4 12C4 11.7167 4.09567 11.479 4.287 11.287C4.479 11.0957 4.71667 11 5 11H16.175L11.275 6.09999C11.0917 5.91665 11.004 5.68332 11.012 5.39999C11.0207 5.11665 11.1167 4.88332 11.3 4.69999C11.4833 4.51665 11.7167 4.42499 12 4.42499C12.2833 4.42499 12.5167 4.51665 12.7 4.69999L19.3 11.3C19.4 11.3833 19.471 11.4873 19.513 11.612C19.5543 11.7373 19.575 11.8667 19.575 12C19.575 12.1333 19.5543 12.2583 19.513 12.375C19.471 12.4917 19.4 12.6 19.3 12.7L12.7 19.3C12.5167 19.4833 12.2833 19.575 12 19.575C11.7167 19.575 11.4833 19.4833 11.3 19.3Z"/></g><defs><clipPath id="clip0_1113_7005"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 12H19M19 12L12 5M19 12L12 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-small-down.svg b/@stellar/design-system/src/assets/icons/arrow-small-down.svg
deleted file mode 100644
index 8cc6f3c5..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-small-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_7002)"><path d="M11.3 14.3L8.70001 11.7C8.38335 11.3833 8.31268 11.021 8.48801 10.613C8.66268 10.2043 8.97501 10 9.42501 10H14.575C15.025 10 15.3373 10.2043 15.512 10.613C15.6873 11.021 15.6167 11.3833 15.3 11.7L12.7 14.3C12.6 14.4 12.4917 14.475 12.375 14.525C12.2583 14.575 12.1333 14.6 12 14.6C11.8667 14.6 11.7417 14.575 11.625 14.525C11.5083 14.475 11.4 14.4 11.3 14.3Z"/></g><defs><clipPath id="clip0_1113_7002"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-small-left.svg b/@stellar/design-system/src/assets/icons/arrow-small-left.svg
deleted file mode 100644
index d2fe5fb0..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-small-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6999)"><path d="M12.3 15.3L9.70002 12.7C9.60002 12.6 9.52503 12.4917 9.47503 12.375C9.42503 12.2583 9.40002 12.1333 9.40002 12C9.40002 11.8667 9.42503 11.7417 9.47503 11.625C9.52503 11.5083 9.60002 11.4 9.70002 11.3L12.3 8.70001C12.6167 8.38335 12.979 8.31268 13.387 8.48801C13.7957 8.66268 14 8.97501 14 9.42501V14.575C14 15.025 13.7957 15.3373 13.387 15.512C12.979 15.6873 12.6167 15.6167 12.3 15.3Z"/></g><defs><clipPath id="clip0_1113_6999"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-small-right.svg b/@stellar/design-system/src/assets/icons/arrow-small-right.svg
deleted file mode 100644
index 3e07cc1b..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-small-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6996)"><path d="M11.7 15.3C11.3833 15.6167 11.021 15.6873 10.613 15.512C10.2043 15.3373 10 15.025 10 14.575V9.42501C10 8.97501 10.2043 8.66268 10.613 8.48801C11.021 8.31268 11.3833 8.38335 11.7 8.70001L14.3 11.3C14.4 11.4 14.475 11.5083 14.525 11.625C14.575 11.7417 14.6 11.8667 14.6 12C14.6 12.1333 14.575 12.2583 14.525 12.375C14.475 12.4917 14.4 12.6 14.3 12.7L11.7 15.3Z"/></g><defs><clipPath id="clip0_1113_6996"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-small-up.svg b/@stellar/design-system/src/assets/icons/arrow-small-up.svg
deleted file mode 100644
index 1780d011..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-small-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6993)"><path d="M9.42501 14C8.97501 14 8.66268 13.7957 8.48801 13.387C8.31268 12.979 8.38335 12.6167 8.70001 12.3L11.3 9.69999C11.4 9.59999 11.5083 9.52499 11.625 9.47499C11.7417 9.42499 11.8667 9.39999 12 9.39999C12.1333 9.39999 12.2583 9.42499 12.375 9.47499C12.4917 9.52499 12.6 9.59999 12.7 9.69999L15.3 12.3C15.6167 12.6167 15.6873 12.979 15.512 13.387C15.3373 13.7957 15.025 14 14.575 14H9.42501Z"/></g><defs><clipPath id="clip0_1113_6993"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-down-left.svg b/@stellar/design-system/src/assets/icons/arrow-square-down-left.svg
new file mode 100644
index 00000000..0f8a80a0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.00019 9.00005V15.0001M9.00019 15.0001H15.0002M9.00019 15.0001L15.0002 8.99994M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-down-right.svg b/@stellar/design-system/src/assets/icons/arrow-square-down-right.svg
new file mode 100644
index 00000000..5d856c64
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0002 9.00005V15.0001M15.0002 15.0001H9.00019M15.0002 15.0001L9.00019 8.99994M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-down.svg b/@stellar/design-system/src/assets/icons/arrow-square-down.svg
new file mode 100644
index 00000000..3a84ee30
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12L12 16M12 16L16 12M12 16V8M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-left.svg b/@stellar/design-system/src/assets/icons/arrow-square-left.svg
new file mode 100644
index 00000000..6a0ecdd8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8L8 12M8 12L12 16M8 12H16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-right.svg b/@stellar/design-system/src/assets/icons/arrow-square-right.svg
new file mode 100644
index 00000000..523ef387
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16L16 12M16 12L12 8M16 12H8M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-up-left.svg b/@stellar/design-system/src/assets/icons/arrow-square-up-left.svg
new file mode 100644
index 00000000..56b1d06b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.00019 15.0001V9.00005M9.00019 9.00005H15.0002M9.00019 9.00005L15.0002 14.9999M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-up-right.svg b/@stellar/design-system/src/assets/icons/arrow-square-up-right.svg
new file mode 100644
index 00000000..58c7e959
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0002 15.0001V9.00005M15.0002 9.00005H9.00019M15.0002 9.00005L9.00019 14.9999M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-square-up.svg b/@stellar/design-system/src/assets/icons/arrow-square-up.svg
new file mode 100644
index 00000000..bdd3fc9a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-square-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12L12 8M12 8L8 12M12 8V16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-top-left.svg b/@stellar/design-system/src/assets/icons/arrow-top-left.svg
deleted file mode 100644
index ee416159..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-top-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6990)"><path d="M7.82502 9.99999L10.7 12.875C10.8834 13.0583 10.975 13.2873 10.975 13.562C10.975 13.8373 10.8834 14.075 10.7 14.275C10.5 14.475 10.2627 14.575 9.98802 14.575C9.71269 14.575 9.47502 14.475 9.27502 14.275L4.70002 9.69999C4.50002 9.49999 4.40002 9.26666 4.40002 8.99999C4.40002 8.73332 4.50002 8.49999 4.70002 8.29999L9.30002 3.69999C9.48336 3.51666 9.71269 3.42066 9.98802 3.41199C10.2627 3.40399 10.5 3.49999 10.7 3.69999C10.8834 3.88332 10.975 4.11666 10.975 4.39999C10.975 4.68332 10.8834 4.91666 10.7 5.09999L7.82502 7.99999H17C17.55 7.99999 18.021 8.19566 18.413 8.58699C18.8044 8.97899 19 9.44999 19 9.99999V19C19 19.2833 18.904 19.5207 18.712 19.712C18.5207 19.904 18.2834 20 18 20C17.7167 20 17.4794 19.904 17.288 19.712C17.096 19.5207 17 19.2833 17 19V9.99999H7.82502Z"/></g><defs><clipPath id="clip0_1113_6990"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-top-right.svg b/@stellar/design-system/src/assets/icons/arrow-top-right.svg
deleted file mode 100644
index 9d0183ec..00000000
--- a/@stellar/design-system/src/assets/icons/arrow-top-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6987)"><path d="M16.175 9.99999H7V19C7 19.2833 6.90433 19.5207 6.713 19.712C6.521 19.904 6.28333 20 6 20C5.71667 20 5.479 19.904 5.287 19.712C5.09567 19.5207 5 19.2833 5 19V9.99999C5 9.44999 5.196 8.97899 5.588 8.58699C5.97933 8.19565 6.45 7.99999 7 7.99999H16.175L13.3 5.09999C13.1167 4.91665 13.0207 4.68732 13.012 4.41199C13.004 4.13732 13.1 3.89999 13.3 3.69999C13.4833 3.51665 13.7167 3.42499 14 3.42499C14.2833 3.42499 14.5167 3.51665 14.7 3.69999L19.3 8.29999C19.5 8.49999 19.6 8.73332 19.6 8.99999C19.6 9.26665 19.5 9.49999 19.3 9.69999L14.7 14.3C14.5 14.5 14.2667 14.5957 14 14.587C13.7333 14.579 13.5 14.475 13.3 14.275C13.1167 14.075 13.0207 13.8417 13.012 13.575C13.004 13.3083 13.1 13.075 13.3 12.875L16.175 9.99999Z"/></g><defs><clipPath id="clip0_1113_6987"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-up-left.svg b/@stellar/design-system/src/assets/icons/arrow-up-left.svg
new file mode 100644
index 00000000..5c7828f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 17L7 7M7 7V17M7 7H17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-up-right.svg b/@stellar/design-system/src/assets/icons/arrow-up-right.svg
new file mode 100644
index 00000000..a7af55f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrow-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 17L17 7M17 7H7M17 7V17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrow-up.svg b/@stellar/design-system/src/assets/icons/arrow-up.svg
index 5f1f0812..1d7ec00f 100644
--- a/@stellar/design-system/src/assets/icons/arrow-up.svg
+++ b/@stellar/design-system/src/assets/icons/arrow-up.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6984)"><path d="M12 20C11.7167 20 11.4794 19.904 11.288 19.712C11.096 19.5207 11 19.2833 11 19V7.82499L6.12502 12.7C5.92502 12.9 5.68736 13 5.41202 13C5.13736 13 4.90002 12.9 4.70002 12.7C4.50002 12.5 4.40002 12.2667 4.40002 12C4.40002 11.7333 4.50002 11.5 4.70002 11.3L11.3 4.69999C11.4 4.59999 11.5084 4.52899 11.625 4.48699C11.7417 4.44565 11.8667 4.42499 12 4.42499C12.1334 4.42499 12.2627 4.44565 12.388 4.48699C12.5127 4.52899 12.6167 4.59999 12.7 4.69999L19.3 11.3C19.5 11.5 19.6 11.7333 19.6 12C19.6 12.2667 19.5 12.5 19.3 12.7C19.1 12.9 18.8624 13 18.587 13C18.3124 13 18.075 12.9 17.875 12.7L13 7.82499V19C13 19.2833 12.9044 19.5207 12.713 19.712C12.521 19.904 12.2834 20 12 20Z"/></g><defs><clipPath id="clip0_1113_6984"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 19V5M12 5L5 12M12 5L19 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrows-down.svg b/@stellar/design-system/src/assets/icons/arrows-down.svg
new file mode 100644
index 00000000..8c06e92a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrows-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 4V15M17 15L13 11M17 15L21 11M7 4V20M7 20L3 16M7 20L11 16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrows-left.svg b/@stellar/design-system/src/assets/icons/arrows-left.svg
new file mode 100644
index 00000000..b175a407
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrows-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 17H4M4 17L8 21M4 17L8 13M20 7H9M9 7L13 11M9 7L13 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrows-right.svg b/@stellar/design-system/src/assets/icons/arrows-right.svg
new file mode 100644
index 00000000..12ecd3ee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrows-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7H15M15 7L11 11M15 7L11 3M4 17H20M20 17L16 21M20 17L16 13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrows-triangle.svg b/@stellar/design-system/src/assets/icons/arrows-triangle.svg
new file mode 100644
index 00000000..fc11657f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrows-triangle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 19H17.2942C19.1594 19 20.092 19 20.6215 18.6092C21.0832 18.2685 21.3763 17.7459 21.4263 17.1743C21.4836 16.5187 20.9973 15.7229 20.0247 14.1314L19.0278 12.5M6.13014 10.6052L3.97528 14.1314C3.00267 15.7229 2.51637 16.5187 2.57372 17.1743C2.62372 17.7459 2.91681 18.2685 3.37846 18.6092C3.90799 19 4.84059 19 6.70578 19H8.5M16.8889 9.00001L14.7305 5.4681C13.8277 3.9908 13.3763 3.25216 12.7952 3.00035C12.2879 2.7805 11.7121 2.7805 11.2048 3.00035C10.6237 3.25216 10.1723 3.9908 9.2695 5.4681L8.24967 7.1369M18 5.00007L16.9019 9.09815L12.8038 8.00007M2 11.5981L6.09808 10.5L7.19615 14.5981M15.5 22L12.5 19L15.5 16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/arrows-up.svg b/@stellar/design-system/src/assets/icons/arrows-up.svg
new file mode 100644
index 00000000..5f25fff7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/arrows-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 20V4M7 4L3 8M7 4L11 8M17 20V9M17 9L13 13M17 9L21 13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/article.svg b/@stellar/design-system/src/assets/icons/article.svg
deleted file mode 100644
index c7395b54..00000000
--- a/@stellar/design-system/src/assets/icons/article.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6981)"><path d="M8 17H13C13.2833 17 13.521 16.904 13.713 16.712C13.9043 16.5207 14 16.2833 14 16C14 15.7167 13.9043 15.479 13.713 15.287C13.521 15.0957 13.2833 15 13 15H8C7.71667 15 7.479 15.0957 7.287 15.287C7.09567 15.479 7 15.7167 7 16C7 16.2833 7.09567 16.5207 7.287 16.712C7.479 16.904 7.71667 17 8 17ZM8 13H16C16.2833 13 16.5207 12.904 16.712 12.712C16.904 12.5207 17 12.2833 17 12C17 11.7167 16.904 11.479 16.712 11.287C16.5207 11.0957 16.2833 11 16 11H8C7.71667 11 7.479 11.0957 7.287 11.287C7.09567 11.479 7 11.7167 7 12C7 12.2833 7.09567 12.5207 7.287 12.712C7.479 12.904 7.71667 13 8 13ZM8 9H16C16.2833 9 16.5207 8.904 16.712 8.712C16.904 8.52067 17 8.28333 17 8C17 7.71667 16.904 7.479 16.712 7.287C16.5207 7.09567 16.2833 7 16 7H8C7.71667 7 7.479 7.09567 7.287 7.287C7.09567 7.479 7 7.71667 7 8C7 8.28333 7.09567 8.52067 7.287 8.712C7.479 8.904 7.71667 9 8 9ZM5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5V19C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H5Z"/></g><defs><clipPath id="clip0_1113_6981"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/assets.svg b/@stellar/design-system/src/assets/icons/assets.svg
deleted file mode 100644
index 68b131dc..00000000
--- a/@stellar/design-system/src/assets/icons/assets.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M15 20C12.7667 20 10.875 19.225 9.325 17.675C7.775 16.125 7 14.2333 7 12C7 9.76667 7.775 7.875 9.325 6.325C10.875 4.775 12.7667 4 15 4C17.2333 4 19.125 4.775 20.675 6.325C22.225 7.875 23 9.76667 23 12C23 14.2333 22.225 16.125 20.675 17.675C19.125 19.225 17.2333 20 15 20ZM5.625 19.25C4.225 18.6 3.10417 17.625 2.2625 16.325C1.42083 15.025 1 13.5833 1 12C1 10.4167 1.42083 8.975 2.2625 7.675C3.10417 6.375 4.225 5.4 5.625 4.75C5.975 4.58333 6.29167 4.59583 6.575 4.7875C6.85833 4.97917 7 5.29167 7 5.725C7 5.89167 6.94583 6.05417 6.8375 6.2125C6.72917 6.37083 6.59167 6.49167 6.425 6.575C5.375 7.05833 4.54167 7.7875 3.925 8.7625C3.30833 9.7375 3 10.8167 3 12C3 13.1833 3.30833 14.2625 3.925 15.2375C4.54167 16.2125 5.375 16.9417 6.425 17.425C6.59167 17.5083 6.72917 17.625 6.8375 17.775C6.94583 17.925 7 18.0917 7 18.275C7 18.6917 6.85833 19 6.575 19.2C6.29167 19.4 5.975 19.4167 5.625 19.25Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/asterisk-01.svg b/@stellar/design-system/src/assets/icons/asterisk-01.svg
new file mode 100644
index 00000000..b805e8b5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/asterisk-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V22M19.0711 4.92893L4.92893 19.0711M22 12H2M19.0711 19.0711L4.92893 4.92893" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/asterisk-02.svg b/@stellar/design-system/src/assets/icons/asterisk-02.svg
new file mode 100644
index 00000000..24ed70be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/asterisk-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 4V20M18 6L6 18M20 12H4M18 18L6 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/at-sign.svg b/@stellar/design-system/src/assets/icons/at-sign.svg
new file mode 100644
index 00000000..bc9576dd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/at-sign.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8V13C16 13.7957 16.3161 14.5587 16.8787 15.1213C17.4413 15.6839 18.2044 16 19 16C19.7957 16 20.5587 15.6839 21.1213 15.1213C21.6839 14.5587 22 13.7957 22 13V12C21.9999 9.74303 21.2362 7.55248 19.8333 5.78454C18.4303 4.01659 16.4706 2.77523 14.2726 2.2623C12.0747 1.74937 9.76794 1.99505 7.72735 2.95937C5.68676 3.9237 4.0324 5.54996 3.03326 7.57373C2.03412 9.5975 1.74897 11.8997 2.22417 14.1061C2.69937 16.3125 3.90698 18.2932 5.65063 19.7263C7.39429 21.1593 9.57143 21.9604 11.8281 21.9992C14.0847 22.038 16.2881 21.3122 18.08 19.94M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79087 9.79086 8 12 8C14.2091 8 16 9.79087 16 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/atom-01.svg b/@stellar/design-system/src/assets/icons/atom-01.svg
new file mode 100644
index 00000000..099c0236
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/atom-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.9995 12.0001H12.0095M15.535 15.5357C10.8488 20.222 5.46685 22.438 3.51423 20.4854C1.56161 18.5328 3.77769 13.1509 8.46398 8.46461C13.1503 3.77832 18.5322 1.56224 20.4848 3.51486C22.4374 5.46748 20.2213 10.8494 15.535 15.5357ZM15.535 8.46443C20.2213 13.1507 22.4374 18.5326 20.4848 20.4852C18.5321 22.4379 13.1502 20.2218 8.46394 15.5355C3.77765 10.8492 1.56157 5.4673 3.51419 3.51468C5.46681 1.56206 10.8487 3.77814 15.535 8.46443ZM12.4995 12.0001C12.4995 12.2763 12.2757 12.5001 11.9995 12.5001C11.7234 12.5001 11.4995 12.2763 11.4995 12.0001C11.4995 11.724 11.7234 11.5001 11.9995 11.5001C12.2757 11.5001 12.4995 11.724 12.4995 12.0001Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/atom-02.svg b/@stellar/design-system/src/assets/icons/atom-02.svg
new file mode 100644
index 00000000..f28ffc82
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/atom-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.1153 15.3582C16.8446 15.6642 16.5605 15.9665 16.2635 16.2635C11.9677 20.5593 6.58579 22.1422 4.24264 19.7991C2.63624 18.1926 2.87514 15.158 4.56841 12.0242M6.88961 8.72526C7.17132 8.40495 7.46766 8.08875 7.77818 7.77824C12.0739 3.48247 17.4558 1.89956 19.799 4.2427C21.4065 5.85021 21.1662 8.88795 19.4697 12.024M16.2635 7.77824C20.5592 12.074 22.1421 17.4559 19.799 19.7991C17.4558 22.1422 12.0739 20.5593 7.77818 16.2635C3.48241 11.9678 1.8995 6.58585 4.24264 4.2427C6.58579 1.89956 11.9677 3.48247 16.2635 7.77824ZM13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/attach-file.svg b/@stellar/design-system/src/assets/icons/attach-file.svg
deleted file mode 100644
index 2ff3d57c..00000000
--- a/@stellar/design-system/src/assets/icons/attach-file.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6978)"><path d="M11.5 22C9.96667 22 8.66667 21.4667 7.6 20.4C6.53333 19.3333 6 18.0333 6 16.5V6C6 4.9 6.39167 3.95833 7.175 3.175C7.95833 2.39167 8.9 2 10 2C11.1 2 12.0417 2.39167 12.825 3.175C13.6083 3.95833 14 4.9 14 6V15.5C14 16.2 13.7583 16.7917 13.275 17.275C12.7917 17.7583 12.2 18 11.5 18C10.8 18 10.2083 17.7583 9.725 17.275C9.24167 16.7917 9 16.2 9 15.5V6.75C9 6.53333 9.071 6.35433 9.213 6.213C9.35433 6.071 9.53333 6 9.75 6C9.96667 6 10.146 6.071 10.288 6.213C10.4293 6.35433 10.5 6.53333 10.5 6.75V15.5C10.5 15.7833 10.596 16.0207 10.788 16.212C10.9793 16.404 11.2167 16.5 11.5 16.5C11.7833 16.5 12.021 16.404 12.213 16.212C12.4043 16.0207 12.5 15.7833 12.5 15.5V6C12.5 5.3 12.2583 4.70833 11.775 4.225C11.2917 3.74167 10.7 3.5 10 3.5C9.3 3.5 8.70833 3.74167 8.225 4.225C7.74167 4.70833 7.5 5.3 7.5 6V16.5C7.5 17.6 7.89167 18.5417 8.675 19.325C9.45833 20.1083 10.4 20.5 11.5 20.5C12.6 20.5 13.5417 20.1083 14.325 19.325C15.1083 18.5417 15.5 17.6 15.5 16.5V6.75C15.5 6.53333 15.571 6.35433 15.713 6.213C15.8543 6.071 16.0333 6 16.25 6C16.4667 6 16.646 6.071 16.788 6.213C16.9293 6.35433 17 6.53333 17 6.75V16.5C17 18.0333 16.4667 19.3333 15.4 20.4C14.3333 21.4667 13.0333 22 11.5 22Z"/></g><defs><clipPath id="clip0_1113_6978"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/attachment-01.svg b/@stellar/design-system/src/assets/icons/attachment-01.svg
new file mode 100644
index 00000000..1c31535f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/attachment-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.1525 10.8995L12.1369 19.9151C10.0866 21.9654 6.76253 21.9654 4.71228 19.9151C2.66203 17.8649 2.66203 14.5407 4.71228 12.4905L13.7279 3.47488C15.0947 2.10804 17.3108 2.10804 18.6776 3.47488C20.0445 4.84171 20.0445 7.05779 18.6776 8.42463L10.0156 17.0867C9.33216 17.7701 8.22412 17.7701 7.54071 17.0867C6.85729 16.4033 6.85729 15.2952 7.54071 14.6118L15.1421 7.01041" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/attachment-02.svg b/@stellar/design-system/src/assets/icons/attachment-02.svg
new file mode 100644
index 00000000..c2b80643
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/attachment-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 5.25581V16.5C17.5 19.5376 15.0376 22 12 22C8.96243 22 6.5 19.5376 6.5 16.5V5.66667C6.5 3.64162 8.14162 2 10.1667 2C12.1917 2 13.8333 3.64162 13.8333 5.66667V16.4457C13.8333 17.4583 13.0125 18.2791 12 18.2791C10.9875 18.2791 10.1667 17.4583 10.1667 16.4457V6.65116" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/attachment.svg b/@stellar/design-system/src/assets/icons/attachment.svg
deleted file mode 100644
index 54a9d86b..00000000
--- a/@stellar/design-system/src/assets/icons/attachment.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6975)"><path d="M7.5 17.5C5.96667 17.5 4.66667 16.9667 3.6 15.9C2.53333 14.8333 2 13.5333 2 12C2 10.4667 2.53333 9.16667 3.6 8.1C4.66667 7.03333 5.96667 6.5 7.5 6.5H18C19.1 6.5 20.0417 6.89167 20.825 7.675C21.6083 8.45833 22 9.4 22 10.5C22 11.6 21.6083 12.5417 20.825 13.325C20.0417 14.1083 19.1 14.5 18 14.5H8.5C7.8 14.5 7.20833 14.2583 6.725 13.775C6.24167 13.2917 6 12.7 6 12C6 11.3 6.24167 10.7083 6.725 10.225C7.20833 9.74167 7.8 9.5 8.5 9.5H17.25C17.4667 9.5 17.646 9.57067 17.788 9.712C17.9293 9.854 18 10.0333 18 10.25C18 10.4667 17.9293 10.6457 17.788 10.787C17.646 10.929 17.4667 11 17.25 11H8.5C8.21667 11 7.97933 11.0957 7.788 11.287C7.596 11.479 7.5 11.7167 7.5 12C7.5 12.2833 7.596 12.5207 7.788 12.712C7.97933 12.904 8.21667 13 8.5 13H18C18.7 13 19.2917 12.7583 19.775 12.275C20.2583 11.7917 20.5 11.2 20.5 10.5C20.5 9.8 20.2583 9.20833 19.775 8.725C19.2917 8.24167 18.7 8 18 8H7.5C6.4 8 5.45833 8.39167 4.675 9.175C3.89167 9.95833 3.5 10.9 3.5 12C3.5 13.1 3.89167 14.0417 4.675 14.825C5.45833 15.6083 6.4 16 7.5 16H17.25C17.4667 16 17.646 16.0707 17.788 16.212C17.9293 16.354 18 16.5333 18 16.75C18 16.9667 17.9293 17.146 17.788 17.288C17.646 17.4293 17.4667 17.5 17.25 17.5H7.5Z"/></g><defs><clipPath id="clip0_1113_6975"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/award-01.svg b/@stellar/design-system/src/assets/icons/award-01.svg
new file mode 100644
index 00000000..c94682c4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/award-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.96668 14.7219L7 22L11.5884 19.247C11.7381 19.1572 11.8129 19.1123 11.8928 19.0947C11.9634 19.0792 12.0366 19.0792 12.1072 19.0947C12.1871 19.1123 12.2619 19.1572 12.4116 19.247L17 22L16.0343 14.7212M19 9C19 12.866 15.866 16 12 16C8.13401 16 5 12.866 5 9C5 5.13401 8.13401 2 12 2C15.866 2 19 5.13401 19 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/award-02.svg b/@stellar/design-system/src/assets/icons/award-02.svg
new file mode 100644
index 00000000..9046dfcd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/award-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 15.0903V22L11.7029 20.1188C11.8126 20.0749 11.8675 20.053 11.9242 20.0443C11.9744 20.0366 12.0256 20.0366 12.0758 20.0443C12.1325 20.053 12.1874 20.0749 12.2971 20.1188L17 22V15.0903M19.5 9.5C19.5 13.6421 16.1421 17 12 17C7.85786 17 4.5 13.6421 4.5 9.5C4.5 5.35786 7.85786 2 12 2C16.1421 2 19.5 5.35786 19.5 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/award-03.svg b/@stellar/design-system/src/assets/icons/award-03.svg
new file mode 100644
index 00000000..ef448ec5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/award-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.86866 15.4599L7 22L11.5884 19.247C11.7381 19.1572 11.8129 19.1123 11.8928 19.0947C11.9634 19.0792 12.0366 19.0792 12.1072 19.0947C12.1871 19.1123 12.2619 19.1572 12.4116 19.247L17 22L16.1319 15.4571M16.4259 4.24888C16.5803 4.6224 16.8768 4.9193 17.25 5.0743L18.5589 5.61648C18.9325 5.77121 19.2292 6.06799 19.384 6.44154C19.5387 6.81509 19.5387 7.23481 19.384 7.60836L18.8422 8.91635C18.6874 9.29007 18.6872 9.71021 18.8427 10.0837L19.3835 11.3913C19.4602 11.5764 19.4997 11.7747 19.4997 11.975C19.4998 12.1752 19.4603 12.3736 19.3837 12.5586C19.3071 12.7436 19.1947 12.9118 19.0531 13.0534C18.9114 13.195 18.7433 13.3073 18.5582 13.3839L17.2503 13.9256C16.8768 14.0801 16.5799 14.3765 16.4249 14.7498L15.8827 16.0588C15.728 16.4323 15.4312 16.7291 15.0577 16.8838C14.6841 17.0386 14.2644 17.0386 13.8909 16.8838L12.583 16.342C12.2094 16.1877 11.7899 16.188 11.4166 16.3429L10.1077 16.8843C9.73434 17.0387 9.31501 17.0386 8.94178 16.884C8.56854 16.7293 8.27194 16.4329 8.11711 16.0598L7.57479 14.7504C7.42035 14.3769 7.12391 14.08 6.75064 13.925L5.44175 13.3828C5.06838 13.2282 4.77169 12.9316 4.61691 12.5582C4.46213 12.1849 4.46192 11.7654 4.61633 11.3919L5.1581 10.0839C5.31244 9.71035 5.31213 9.29079 5.15722 8.91746L4.61623 7.60759C4.53953 7.42257 4.50003 7.22426 4.5 7.02397C4.49997 6.82369 4.5394 6.62536 4.61604 6.44032C4.69268 6.25529 4.80504 6.08716 4.94668 5.94556C5.08832 5.80396 5.25647 5.69166 5.44152 5.61508L6.74947 5.07329C7.12265 4.91898 7.41936 4.6229 7.57448 4.25004L8.11664 2.94111C8.27136 2.56756 8.56813 2.27078 8.94167 2.11605C9.3152 1.96132 9.7349 1.96132 10.1084 2.11605L11.4164 2.65784C11.7899 2.81218 12.2095 2.81187 12.5828 2.65696L13.8922 2.11689C14.2657 1.96224 14.6853 1.96228 15.0588 2.11697C15.4322 2.27167 15.729 2.56837 15.8837 2.94182L16.426 4.25115L16.4259 4.24888Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/award-04.svg b/@stellar/design-system/src/assets/icons/award-04.svg
new file mode 100644
index 00000000..39fa4485
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/award-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.87625 13.0953L4.70122 7.87653C4.44132 7.55166 4.31138 7.38922 4.21897 7.20834C4.13698 7.04787 4.07706 6.87705 4.04084 6.70052C4 6.50155 4 6.29354 4 5.8775V5.2C4 4.0799 4 3.51984 4.21799 3.09202C4.40973 2.71569 4.71569 2.40973 5.09202 2.21799C5.51984 2 6.0799 2 7.2 2H16.8C17.9201 2 18.4802 2 18.908 2.21799C19.2843 2.40973 19.5903 2.71569 19.782 3.09202C20 3.51984 20 4.0799 20 5.2V5.8775C20 6.29354 20 6.50155 19.9592 6.70052C19.9229 6.87705 19.863 7.04787 19.781 7.20834C19.6886 7.38922 19.5587 7.55166 19.2988 7.87652L15.1238 13.0953M5.00005 3L12.0001 12L19 3M15.5355 13.4645C17.4882 15.4171 17.4882 18.5829 15.5355 20.5355C13.5829 22.4882 10.4171 22.4882 8.46446 20.5355C6.51185 18.5829 6.51185 15.4171 8.46446 13.4645C10.4171 11.5118 13.5829 11.5118 15.5355 13.4645Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/award-05.svg b/@stellar/design-system/src/assets/icons/award-05.svg
new file mode 100644
index 00000000..1136fce3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/award-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.13506 11.189L3.33031 4.38052C2.89282 3.59765 2.67408 3.20621 2.71094 2.88573C2.7431 2.60611 2.89161 2.353 3.12001 2.18852C3.38179 2 3.8302 2 4.72702 2H6.96184C7.29513 2 7.46178 2 7.61126 2.04813C7.74353 2.09073 7.86547 2.16042 7.9693 2.25276C8.08664 2.35712 8.17123 2.5007 8.34041 2.78788L12 9L15.6596 2.78788C15.8288 2.5007 15.9134 2.35712 16.0307 2.25276C16.1346 2.16042 16.2565 2.09073 16.3888 2.04813C16.5382 2 16.7049 2 17.0382 2H19.273C20.1698 2 20.6182 2 20.88 2.18852C21.1084 2.353 21.2569 2.60611 21.2891 2.88573C21.326 3.20621 21.1072 3.59765 20.6697 4.38052L16.865 11.189M10.5 14L12 13V18M10.75 18H13.25M16.5962 10.9038C19.1346 13.4422 19.1346 17.5578 16.5962 20.0962C14.0578 22.6346 9.94223 22.6346 7.40382 20.0962C4.86541 17.5578 4.86541 13.4422 7.40382 10.9038C9.94222 8.3654 14.0578 8.3654 16.5962 10.9038Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/backpack.svg b/@stellar/design-system/src/assets/icons/backpack.svg
new file mode 100644
index 00000000..04d1b464
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/backpack.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 13V17.8C20 18.9201 20 19.4802 19.782 19.908C19.5903 20.2843 19.2843 20.5903 18.908 20.782C18.4802 21 17.9201 21 16.8 21H7.2C6.0799 21 5.51984 21 5.09202 20.782C4.71569 20.5903 4.40973 20.2843 4.21799 19.908C4 19.4802 4 18.9201 4 17.8V13M9 10H15M9.28571 14H14.7143C16.8467 14 17.913 14 18.7355 13.6039C19.552 13.2107 20.2107 12.552 20.6039 11.7355C21 10.913 21 9.84674 21 7.71429C21 6.11494 21 5.31527 20.7029 4.69835C20.408 4.08603 19.914 3.59197 19.3017 3.29709C18.6847 3 17.8851 3 16.2857 3H7.71429C6.11494 3 5.31527 3 4.69835 3.29709C4.08603 3.59197 3.59197 4.08603 3.29709 4.69835C3 5.31527 3 6.11494 3 7.71429C3 9.84674 3 10.913 3.39612 11.7355C3.7893 12.552 4.44803 13.2107 5.26447 13.6039C6.08703 14 7.15326 14 9.28571 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/backspace.svg b/@stellar/design-system/src/assets/icons/backspace.svg
deleted file mode 100644
index ebb9f4ca..00000000
--- a/@stellar/design-system/src/assets/icons/backspace.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6972)"><path d="M9.02498 19C8.69164 19 8.37931 18.925 8.08798 18.775C7.79598 18.625 7.55831 18.4167 7.37498 18.15L3.84998 13.15C3.59998 12.8 3.47498 12.4167 3.47498 12C3.47498 11.5833 3.59998 11.2 3.84998 10.85L7.37498 5.85C7.55831 5.58333 7.79598 5.375 8.08798 5.225C8.37931 5.075 8.69164 5 9.02498 5H19.025C19.575 5 20.046 5.196 20.438 5.588C20.8293 5.97933 21.025 6.45 21.025 7V17C21.025 17.55 20.8293 18.021 20.438 18.413C20.046 18.8043 19.575 19 19.025 19H9.02498ZM10.7 15.3C10.8833 15.4833 11.1166 15.575 11.4 15.575C11.6833 15.575 11.9166 15.4833 12.1 15.3L14 13.4L15.9 15.3C16.0833 15.4833 16.3166 15.575 16.6 15.575C16.8833 15.575 17.1166 15.4833 17.3 15.3C17.4833 15.1167 17.575 14.8833 17.575 14.6C17.575 14.3167 17.4833 14.0833 17.3 13.9L15.4 12L17.3 10.1C17.4833 9.91667 17.575 9.68333 17.575 9.4C17.575 9.11667 17.4833 8.88333 17.3 8.7C17.1166 8.51667 16.8833 8.425 16.6 8.425C16.3166 8.425 16.0833 8.51667 15.9 8.7L14 10.6L12.1 8.7C11.9166 8.51667 11.6833 8.425 11.4 8.425C11.1166 8.425 10.8833 8.51667 10.7 8.7C10.5166 8.88333 10.425 9.11667 10.425 9.4C10.425 9.68333 10.5166 9.91667 10.7 10.1L12.6 12L10.7 13.9C10.5166 14.0833 10.425 14.3167 10.425 14.6C10.425 14.8833 10.5166 15.1167 10.7 15.3Z"/></g><defs><clipPath id="clip0_1113_6972"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/backup.svg b/@stellar/design-system/src/assets/icons/backup.svg
deleted file mode 100644
index c398d09a..00000000
--- a/@stellar/design-system/src/assets/icons/backup.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6969)"><path d="M6.5 20C4.98333 20 3.68767 19.475 2.613 18.425C1.53767 17.375 1 16.0917 1 14.575C1 13.275 1.39167 12.1167 2.175 11.1C2.95833 10.0833 3.98333 9.43333 5.25 9.15C5.66667 7.61667 6.5 6.375 7.75 5.425C9 4.475 10.4167 4 12 4C13.95 4 15.604 4.679 16.962 6.037C18.3207 7.39567 19 9.05 19 11C20.15 11.1333 21.1043 11.629 21.863 12.487C22.621 13.3457 23 14.35 23 15.5C23 16.75 22.5627 17.8127 21.688 18.688C20.8127 19.5627 19.75 20 18.5 20H13V12.85L13.9 13.725C14.0833 13.9083 14.3127 14 14.588 14C14.8627 14 15.1 13.9 15.3 13.7C15.4833 13.5167 15.575 13.2833 15.575 13C15.575 12.7167 15.4833 12.4833 15.3 12.3L12.7 9.7C12.5 9.5 12.2667 9.4 12 9.4C11.7333 9.4 11.5 9.5 11.3 9.7L8.7 12.3C8.51667 12.4833 8.421 12.7123 8.413 12.987C8.40433 13.2623 8.5 13.5 8.7 13.7C8.88333 13.8833 9.11233 13.9793 9.387 13.988C9.66233 13.996 9.9 13.9083 10.1 13.725L11 12.85V20H6.5Z"/></g><defs><clipPath id="clip0_1113_6969"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bank-note-01.svg b/@stellar/design-system/src/assets/icons/bank-note-01.svg
new file mode 100644
index 00000000..42e12ba7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bank-note-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 11V15M18 9V13M17 4C19.4487 4 20.7731 4.37476 21.4321 4.66544C21.5199 4.70415 21.5638 4.72351 21.6904 4.84437C21.7663 4.91682 21.9049 5.12939 21.9405 5.22809C22 5.39274 22 5.48274 22 5.66274V16.4111C22 17.3199 22 17.7743 21.8637 18.0079C21.7251 18.2454 21.5914 18.3559 21.3319 18.4472C21.0769 18.5369 20.562 18.438 19.5322 18.2401C18.8114 18.1017 17.9565 18 17 18C14 18 11 20 7 20C4.55129 20 3.22687 19.6252 2.56788 19.3346C2.48012 19.2958 2.43624 19.2765 2.3096 19.1556C2.23369 19.0832 2.09512 18.8706 2.05947 18.7719C2 18.6073 2 18.5173 2 18.3373L2 7.58885C2 6.68009 2 6.2257 2.13628 5.99214C2.2749 5.75456 2.40859 5.64412 2.66806 5.55281C2.92314 5.46305 3.43803 5.56198 4.46783 5.75985C5.18862 5.89834 6.04348 6 7 6C10 6 13 4 17 4ZM14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bank-note-02.svg b/@stellar/design-system/src/assets/icons/bank-note-02.svg
new file mode 100644
index 00000000..342d6b00
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bank-note-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 10V14M18 10V14M2 8.2L2 15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.07989 19 5.2 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5L5.2 5C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.07989 2 8.2ZM14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bank-note-03.svg b/@stellar/design-system/src/assets/icons/bank-note-03.svg
new file mode 100644
index 00000000..7e004809
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bank-note-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 9H11.5C10.6716 9 10 9.67157 10 10.5C10 11.3284 10.6716 12 11.5 12H12.5C13.3284 12 14 12.6716 14 13.5C14 14.3284 13.3284 15 12.5 15H10M12 8V9M12 15V16M18 12H18.01M6 12H6.01M2 8.2L2 15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.07989 19 5.2 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5L5.2 5C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.07989 2 8.2ZM18.5 12C18.5 12.2761 18.2761 12.5 18 12.5C17.7239 12.5 17.5 12.2761 17.5 12C17.5 11.7239 17.7239 11.5 18 11.5C18.2761 11.5 18.5 11.7239 18.5 12ZM6.5 12C6.5 12.2761 6.27614 12.5 6 12.5C5.72386 12.5 5.5 12.2761 5.5 12C5.5 11.7239 5.72386 11.5 6 11.5C6.27614 11.5 6.5 11.7239 6.5 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bank.svg b/@stellar/design-system/src/assets/icons/bank.svg
new file mode 100644
index 00000000..42f6c15c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bank.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 9V17M9.5 9V17M14.5 9V17M19 9V17M3 18.6L3 19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.04 21 17.7599 20.891 17.546C20.7951 17.3579 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H4.6C4.03995 17 3.75992 17 3.54601 17.109C3.35785 17.2049 3.20487 17.3579 3.10899 17.546C3 17.7599 3 18.04 3 18.6ZM11.6529 3.07714L4.25291 4.72158C3.80585 4.82093 3.58232 4.8706 3.41546 4.99081C3.26829 5.09684 3.15273 5.2409 3.08115 5.40757C3 5.59653 3 5.82551 3 6.28348L3 7.4C3 7.96006 3 8.24008 3.10899 8.45399C3.20487 8.64216 3.35785 8.79514 3.54601 8.89101C3.75992 9 4.03995 9 4.6 9H19.4C19.9601 9 20.2401 9 20.454 8.89101C20.6422 8.79514 20.7951 8.64216 20.891 8.454C21 8.24008 21 7.96006 21 7.4V6.28348C21 5.82551 21 5.59653 20.9188 5.40757C20.8473 5.2409 20.7317 5.09684 20.5845 4.99081C20.4177 4.8706 20.1942 4.82093 19.7471 4.72158L12.3471 3.07714C12.2176 3.04835 12.1528 3.03396 12.0874 3.02822C12.0292 3.02312 11.9708 3.02312 11.9126 3.02822C11.8472 3.03396 11.7824 3.04835 11.6529 3.07714Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-01.svg b/@stellar/design-system/src/assets/icons/bar-chart-01.svg
new file mode 100644
index 00000000..62c9de52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 20V10M12 20V4M6 20V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-02.svg b/@stellar/design-system/src/assets/icons/bar-chart-02.svg
new file mode 100644
index 00000000..73589ba0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 20V4M6 20V16M12 20V10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-03.svg b/@stellar/design-system/src/assets/icons/bar-chart-03.svg
new file mode 100644
index 00000000..8520a25c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 20V4M18 20V16M12 20V10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-04.svg b/@stellar/design-system/src/assets/icons/bar-chart-04.svg
new file mode 100644
index 00000000..63ec3ecd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 11L3 21M15 11L15 21M9 3L9 21M21 3V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-05.svg b/@stellar/design-system/src/assets/icons/bar-chart-05.svg
new file mode 100644
index 00000000..61dc375a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 17V21M15 8V21M9 13V21M21 3V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-06.svg b/@stellar/design-system/src/assets/icons/bar-chart-06.svg
new file mode 100644
index 00000000..12a4b57d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 8V21M21 17V21M3 3V21M15 13V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-07.svg b/@stellar/design-system/src/assets/icons/bar-chart-07.svg
new file mode 100644
index 00000000..4084c31c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H6.2C5.07989 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V3M7 10.5V17.5M11.5 5.5V17.5M16 10.5V17.5M20.5 5.5V17.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-08.svg b/@stellar/design-system/src/assets/icons/bar-chart-08.svg
new file mode 100644
index 00000000..0622056c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-08.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H6.2C5.07989 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V3M7 14.5V17.5M11.5 11.5V17.5M16 8.5V17.5M20.5 5.5V17.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-09.svg b/@stellar/design-system/src/assets/icons/bar-chart-09.svg
new file mode 100644
index 00000000..3a23f3d2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-09.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H6.2C5.07989 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V3M7 5.5V17.5M11.5 8.5V17.5M16 11.5V17.5M20.5 14.5V17.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-10.svg b/@stellar/design-system/src/assets/icons/bar-chart-10.svg
new file mode 100644
index 00000000..a8e6d480
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-10.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 7H4.6C4.03995 7 3.75992 7 3.54601 7.10899C3.35785 7.20487 3.20487 7.35785 3.10899 7.54601C3 7.75992 3 8.03995 3 8.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H9M9 21H15M9 21L9 4.6C9 4.03995 9 3.75992 9.10899 3.54601C9.20487 3.35785 9.35785 3.20487 9.54601 3.10899C9.75992 3 10.0399 3 10.6 3L13.4 3C13.9601 3 14.2401 3 14.454 3.10899C14.6422 3.20487 14.7951 3.35785 14.891 3.54601C15 3.75992 15 4.03995 15 4.6V21M15 11H19.4C19.9601 11 20.2401 11 20.454 11.109C20.6422 11.2049 20.7951 11.3578 20.891 11.546C21 11.7599 21 12.0399 21 12.6V19.4C21 19.9601 21 20.2401 20.891 20.454C20.7951 20.6422 20.6422 20.7951 20.454 20.891C20.2401 21 19.9601 21 19.4 21H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-11.svg b/@stellar/design-system/src/assets/icons/bar-chart-11.svg
new file mode 100644
index 00000000..001002c3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-11.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V4.6C3 4.03995 3 3.75992 3.10899 3.54601C3.20487 3.35785 3.35785 3.20487 3.54601 3.10899C3.75992 3 4.03995 3 4.6 3H7.4C7.96005 3 8.24008 3 8.45399 3.10899C8.64215 3.20487 8.79513 3.35785 8.89101 3.54601C9 3.75992 9 4.03995 9 4.6V7M9 21H15M9 21L9 7M9 7H13.4C13.9601 7 14.2401 7 14.454 7.10899C14.6422 7.20487 14.7951 7.35785 14.891 7.54601C15 7.75992 15 8.03995 15 8.6V21M15 11H19.4C19.9601 11 20.2401 11 20.454 11.109C20.6422 11.2049 20.7951 11.3578 20.891 11.546C21 11.7599 21 12.0399 21 12.6V19.4C21 19.9601 21 20.2401 20.891 20.454C20.7951 20.6422 20.6422 20.7951 20.454 20.891C20.2401 21 19.9601 21 19.4 21H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-12.svg b/@stellar/design-system/src/assets/icons/bar-chart-12.svg
new file mode 100644
index 00000000..d9eaa90c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-12.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 12H4.6C4.03995 12 3.75992 12 3.54601 12.109C3.35785 12.2049 3.20487 12.3578 3.10899 12.546C3 12.7599 3 13.0399 3 13.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H9M9 21H15M9 21L9 8.6C9 8.03995 9 7.75992 9.10899 7.54601C9.20487 7.35785 9.35785 7.20487 9.54601 7.10899C9.75992 7 10.0399 7 10.6 7H13.4C13.9601 7 14.2401 7 14.454 7.10899C14.6422 7.20487 14.7951 7.35785 14.891 7.54601C15 7.75992 15 8.03995 15 8.6V21M15 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H16.6C16.0399 3 15.7599 3 15.546 3.10899C15.3578 3.20487 15.2049 3.35785 15.109 3.54601C15 3.75992 15 4.03995 15 4.6V8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-circle-01.svg b/@stellar/design-system/src/assets/icons/bar-chart-circle-01.svg
new file mode 100644
index 00000000..5c7f6470
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-circle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 13V17M16 11V17M12 7V17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-circle-02.svg b/@stellar/design-system/src/assets/icons/bar-chart-circle-02.svg
new file mode 100644
index 00000000..d9daf0f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-circle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 15V17M12 11V17M16 7V17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-circle-03.svg b/@stellar/design-system/src/assets/icons/bar-chart-circle-03.svg
new file mode 100644
index 00000000..f7cf5abf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-circle-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 7V17M12 11V17M16 15V17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-01.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-01.svg
new file mode 100644
index 00000000..aaebbe43
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 13V17M16 11V17M12 7V17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-02.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-02.svg
new file mode 100644
index 00000000..55220ba6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 15V17M12 11V17M16 7V17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-03.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-03.svg
new file mode 100644
index 00000000..87612f58
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 7V17M12 11V17M16 15V17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-down.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-down.svg
new file mode 100644
index 00000000..b0dc0853
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M8 13V17M16 11V17M12 7V17M2 5L5 8M5 8L8 5M5 8L5 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-minus.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-minus.svg
new file mode 100644
index 00000000..f7de3735
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M8 13V17M16 11V17M12 7V17M2 5H8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-plus.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-plus.svg
new file mode 100644
index 00000000..53ce6802
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M8 13V17M16 11V17M12 7V17M5 8V2M2 5H8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart-square-up.svg b/@stellar/design-system/src/assets/icons/bar-chart-square-up.svg
new file mode 100644
index 00000000..0f0f1b2a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-chart-square-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M8 13V17M16 11V17M12 7V17M2 5L5 2M5 2L8 5M5 2L5 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-chart.svg b/@stellar/design-system/src/assets/icons/bar-chart.svg
deleted file mode 100644
index 97164eff..00000000
--- a/@stellar/design-system/src/assets/icons/bar-chart.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6966)"><path d="M6 20C5.45 20 4.97933 19.8043 4.588 19.413C4.196 19.021 4 18.55 4 18V11C4 10.45 4.196 9.979 4.588 9.587C4.97933 9.19567 5.45 9 6 9C6.55 9 7.02067 9.19567 7.412 9.587C7.804 9.979 8 10.45 8 11V18C8 18.55 7.804 19.021 7.412 19.413C7.02067 19.8043 6.55 20 6 20ZM12 20C11.45 20 10.9793 19.8043 10.588 19.413C10.196 19.021 10 18.55 10 18V6C10 5.45 10.196 4.97933 10.588 4.588C10.9793 4.196 11.45 4 12 4C12.55 4 13.021 4.196 13.413 4.588C13.8043 4.97933 14 5.45 14 6V18C14 18.55 13.8043 19.021 13.413 19.413C13.021 19.8043 12.55 20 12 20ZM18 20C17.45 20 16.979 19.8043 16.587 19.413C16.1957 19.021 16 18.55 16 18V15C16 14.45 16.1957 13.979 16.587 13.587C16.979 13.1957 17.45 13 18 13C18.55 13 19.021 13.1957 19.413 13.587C19.8043 13.979 20 14.45 20 15V18C20 18.55 19.8043 19.021 19.413 19.413C19.021 19.8043 18.55 20 18 20Z"/></g><defs><clipPath id="clip0_1113_6966"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bar-line-chart.svg b/@stellar/design-system/src/assets/icons/bar-line-chart.svg
new file mode 100644
index 00000000..988417d4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bar-line-chart.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 20V13M12 20V10M4 20L4 16M13.4067 5.0275L18.5751 6.96567M10.7988 5.40092L5.20023 9.59983M21.0607 6.43934C21.6464 7.02513 21.6464 7.97487 21.0607 8.56066C20.4749 9.14645 19.5251 9.14645 18.9393 8.56066C18.3536 7.97487 18.3536 7.02513 18.9393 6.43934C19.5251 5.85355 20.4749 5.85355 21.0607 6.43934ZM5.06066 9.43934C5.64645 10.0251 5.64645 10.9749 5.06066 11.5607C4.47487 12.1464 3.52513 12.1464 2.93934 11.5607C2.35355 10.9749 2.35355 10.0251 2.93934 9.43934C3.52513 8.85355 4.47487 8.85355 5.06066 9.43934ZM13.0607 3.43934C13.6464 4.02513 13.6464 4.97487 13.0607 5.56066C12.4749 6.14645 11.5251 6.14645 10.9393 5.56066C10.3536 4.97487 10.3536 4.02513 10.9393 3.43934C11.5251 2.85355 12.4749 2.85355 13.0607 3.43934Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-charging-01.svg b/@stellar/design-system/src/assets/icons/battery-charging-01.svg
new file mode 100644
index 00000000..c251bb65
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-charging-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.8333 15L12.5 12H8.5L10.1667 9M22 13V11M6.8 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10.8C19 9.11984 19 8.27976 18.673 7.63803C18.3854 7.07354 17.9265 6.6146 17.362 6.32698C16.7202 6 15.8802 6 14.2 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-charging-02.svg b/@stellar/design-system/src/assets/icons/battery-charging-02.svg
new file mode 100644
index 00000000..334e9b44
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-charging-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 18L13.5 12H7.5L11.5 6M22 13V11M14 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10C19 9.07003 19 8.60504 18.8978 8.22354C18.6204 7.18827 17.8117 6.37962 16.7765 6.10222C16.395 6 15.93 6 15 6M7 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V14C2 14.93 2 15.395 2.10222 15.7765C2.37962 16.8117 3.18827 17.6204 4.22354 17.8978C4.60504 18 5.07003 18 6 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-empty.svg b/@stellar/design-system/src/assets/icons/battery-empty.svg
new file mode 100644
index 00000000..66c9ca71
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-empty.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 13V11M6.8 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10.8C19 9.11984 19 8.27976 18.673 7.63803C18.3854 7.07354 17.9265 6.6146 17.362 6.32698C16.7202 6 15.8802 6 14.2 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-full.svg b/@stellar/design-system/src/assets/icons/battery-full.svg
new file mode 100644
index 00000000..836ec0b9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-full.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 10V14M10.5 10V14M14.5 10V14M22 13V11M6.8 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10.8C19 9.11984 19 8.27976 18.673 7.63803C18.3854 7.07354 17.9265 6.6146 17.362 6.32698C16.7202 6 15.8802 6 14.2 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-low.svg b/@stellar/design-system/src/assets/icons/battery-low.svg
new file mode 100644
index 00000000..6c87659c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-low.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 10V14M22 13V11M6.8 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10.8C19 9.11984 19 8.27976 18.673 7.63803C18.3854 7.07354 17.9265 6.6146 17.362 6.32698C16.7202 6 15.8802 6 14.2 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/battery-mid.svg b/@stellar/design-system/src/assets/icons/battery-mid.svg
new file mode 100644
index 00000000..64b7aea6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/battery-mid.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 10V14M10.5 10V14M22 13V11M6.8 18H14.2C15.8802 18 16.7202 18 17.362 17.673C17.9265 17.3854 18.3854 16.9265 18.673 16.362C19 15.7202 19 14.8802 19 13.2V10.8C19 9.11984 19 8.27976 18.673 7.63803C18.3854 7.07354 17.9265 6.6146 17.362 6.32698C16.7202 6 15.8802 6 14.2 6H6.8C5.11984 6 4.27976 6 3.63803 6.32698C3.07354 6.6146 2.6146 7.07354 2.32698 7.63803C2 8.27976 2 9.11984 2 10.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/beaker-01.svg b/@stellar/design-system/src/assets/icons/beaker-01.svg
new file mode 100644
index 00000000..292aa01d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/beaker-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 2.00008V6.6605C10 6.87768 10 6.98626 9.9669 7.07264C9.93568 7.15413 9.89435 7.21328 9.82858 7.27063C9.75885 7.33142 9.64593 7.37279 9.42008 7.45553C6.54892 8.50734 4.5 11.2644 4.5 14.5C4.5 18.6421 7.85786 22 12 22C16.1421 22 19.5 18.6421 19.5 14.5C19.5 11.2644 17.4511 8.50734 14.5799 7.45553C14.3541 7.37279 14.2411 7.33142 14.1714 7.27063C14.1056 7.21328 14.0643 7.15413 14.0331 7.07264C14 6.98626 14 6.87768 14 6.6605V2.00008M8.5 2H15.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/beaker-02.svg b/@stellar/design-system/src/assets/icons/beaker-02.svg
new file mode 100644
index 00000000..c5268bd8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/beaker-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 6V10.5012C9 11.0521 9 11.3276 8.93132 11.5829C8.87047 11.809 8.77037 12.0228 8.63557 12.2143C8.48344 12.4305 8.27182 12.6068 7.84859 12.9595L4.15141 16.0405C3.72818 16.3932 3.51656 16.5695 3.36443 16.7857C3.22963 16.9772 3.12953 17.191 3.06868 17.4171C3 17.6724 3 17.9479 3 18.4988V18.8C3 19.9201 3 20.4802 3.21799 20.908C3.40973 21.2843 3.71569 21.5903 4.09202 21.782C4.51984 22 5.0799 22 6.2 22H17.8C18.9201 22 19.4802 22 19.908 21.782C20.2843 21.5903 20.5903 21.2843 20.782 20.908C21 20.4802 21 19.9201 21 18.8V18.4988C21 17.9479 21 17.6724 20.9313 17.4171C20.8705 17.191 20.7704 16.9772 20.6356 16.7857C20.4834 16.5695 20.2718 16.3932 19.8486 16.0405L16.1514 12.9595C15.7282 12.6068 15.5166 12.4305 15.3644 12.2143C15.2296 12.0228 15.1295 11.809 15.0687 11.5829C15 11.3276 15 11.0521 15 10.5012V6M8.3 6H15.7C15.98 6 16.12 6 16.227 5.9455C16.3211 5.89757 16.3976 5.82108 16.4455 5.727C16.5 5.62004 16.5 5.48003 16.5 5.2V2.8C16.5 2.51997 16.5 2.37996 16.4455 2.273C16.3976 2.17892 16.3211 2.10243 16.227 2.0545C16.12 2 15.98 2 15.7 2H8.3C8.01997 2 7.87996 2 7.773 2.0545C7.67892 2.10243 7.60243 2.17892 7.5545 2.273C7.5 2.37996 7.5 2.51997 7.5 2.8V5.2C7.5 5.48003 7.5 5.62004 7.5545 5.727C7.60243 5.82108 7.67892 5.89757 7.773 5.9455C7.87996 6 8.01997 6 8.3 6ZM5.5 17H18.5C18.9647 17 19.197 17 19.3902 17.0384C20.1836 17.1962 20.8038 17.8164 20.9616 18.6098C21 18.803 21 19.0353 21 19.5C21 19.9647 21 20.197 20.9616 20.3902C20.8038 21.1836 20.1836 21.8038 19.3902 21.9616C19.197 22 18.9647 22 18.5 22H5.5C5.03534 22 4.80302 22 4.60982 21.9616C3.81644 21.8038 3.19624 21.1836 3.03843 20.3902C3 20.197 3 19.9647 3 19.5C3 19.0353 3 18.803 3.03843 18.6098C3.19624 17.8164 3.81644 17.1962 4.60982 17.0384C4.80302 17 5.03534 17 5.5 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-01.svg b/@stellar/design-system/src/assets/icons/bell-01.svg
new file mode 100644
index 00000000..e0d5d536
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.35419 21C10.0593 21.6224 10.9856 22 12 22C13.0145 22 13.9407 21.6224 14.6458 21M18 8C18 6.4087 17.3679 4.88258 16.2427 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.8826 2.63214 7.75738 3.75736C6.63216 4.88258 6.00002 6.4087 6.00002 8C6.00002 11.0902 5.22049 13.206 4.34968 14.6054C3.61515 15.7859 3.24788 16.3761 3.26134 16.5408C3.27626 16.7231 3.31488 16.7926 3.46179 16.9016C3.59448 17 4.19261 17 5.38887 17H18.6112C19.8074 17 20.4056 17 20.5382 16.9016C20.6852 16.7926 20.7238 16.7231 20.7387 16.5408C20.7522 16.3761 20.3849 15.7859 19.6504 14.6054C18.7795 13.206 18 11.0902 18 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-02.svg b/@stellar/design-system/src/assets/icons/bell-02.svg
new file mode 100644
index 00000000..31392a5f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 21H10M18 8C18 6.4087 17.3679 4.88258 16.2426 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.88258 2.63214 7.75736 3.75736C6.63214 4.88258 6 6.4087 6 8C6 11.0902 5.22047 13.206 4.34966 14.6054C3.61513 15.7859 3.24786 16.3761 3.26132 16.5408C3.27624 16.7231 3.31486 16.7926 3.46178 16.9016C3.59446 17 4.19259 17 5.38885 17H18.6111C19.8074 17 20.4055 17 20.5382 16.9016C20.6851 16.7926 20.7238 16.7231 20.7387 16.5408C20.7521 16.3761 20.3849 15.7859 19.6503 14.6054C18.7795 13.206 18 11.0902 18 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-03.svg b/@stellar/design-system/src/assets/icons/bell-03.svg
new file mode 100644
index 00000000..1081da9e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.9997 19C14.9997 20.6569 13.6566 22 11.9997 22C10.3429 22 8.99972 20.6569 8.99972 19M13.7962 6.23856C14.2317 5.78864 14.4997 5.17562 14.4997 4.5C14.4997 3.11929 13.3804 2 11.9997 2C10.619 2 9.49972 3.11929 9.49972 4.5C9.49972 5.17562 9.76772 5.78864 10.2032 6.23856M17.9997 11.2C17.9997 9.82087 17.3676 8.49823 16.2424 7.52304C15.1171 6.54786 13.591 6 11.9997 6C10.4084 6 8.8823 6.54786 7.75708 7.52304C6.63186 8.49823 5.99972 9.82087 5.99972 11.2C5.99972 13.4818 5.43385 15.1506 4.72778 16.3447C3.92306 17.7056 3.5207 18.3861 3.53659 18.5486C3.55476 18.7346 3.58824 18.7933 3.73906 18.9036C3.87089 19 4.53323 19 5.85791 19H18.1415C19.4662 19 20.1286 19 20.2604 18.9036C20.4112 18.7933 20.4447 18.7346 20.4629 18.5486C20.4787 18.3861 20.0764 17.7056 19.2717 16.3447C18.5656 15.1506 17.9997 13.4818 17.9997 11.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-04.svg b/@stellar/design-system/src/assets/icons/bell-04.svg
new file mode 100644
index 00000000..c8f5326c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.3909 18.0149C14.8198 19.6153 13.87 21.2603 12.2696 21.6891C10.6692 22.118 9.0242 21.1682 8.59538 19.5678M10.8915 5.74097C11.1957 5.19367 11.2959 4.53217 11.121 3.87957C10.7637 2.54591 9.39282 1.75445 8.05916 2.11181C6.72549 2.46916 5.93404 3.84 6.29139 5.17367C6.46625 5.82627 6.88379 6.34904 7.42089 6.67091M16.2358 9.44541C15.8789 8.11328 14.926 6.99931 13.5867 6.34858C12.2474 5.69785 10.6315 5.56365 9.09443 5.97551C7.55736 6.38737 6.22503 7.31155 5.39055 8.54473C4.55607 9.77792 4.28779 11.2191 4.64474 12.5512C5.23531 14.7553 5.12064 16.5137 4.74768 17.8498C4.32262 19.3727 4.11008 20.1341 4.1675 20.287C4.23319 20.4619 4.28071 20.5099 4.45494 20.5774C4.60724 20.6364 5.24701 20.465 6.52655 20.1222L18.3916 16.9429C19.6712 16.6001 20.3109 16.4287 20.4133 16.3014C20.5305 16.1558 20.5476 16.0905 20.517 15.9061C20.4903 15.745 19.9255 15.1919 18.796 14.0856C17.8049 13.1149 16.8264 11.6495 16.2358 9.44541Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-minus.svg b/@stellar/design-system/src/assets/icons/bell-minus.svg
new file mode 100644
index 00000000..7174e6c2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.35418 21C10.0593 21.6224 10.9856 22 12 22C13.0145 22 13.9407 21.6224 14.6458 21M15 5H21M13 2.08389C12.6717 2.02841 12.3373 2 12 2C10.4087 2 8.88258 2.63214 7.75736 3.75736C6.63214 4.88258 6 6.4087 6 8C6 11.0902 5.22047 13.206 4.34967 14.6054C3.61513 15.7859 3.24786 16.3761 3.26133 16.5408C3.27624 16.7231 3.31486 16.7926 3.46178 16.9016C3.59446 17 4.19259 17 5.38886 17H18.6111C19.8075 17 20.4056 17 20.5383 16.9016C20.6852 16.7926 20.7238 16.7231 20.7388 16.5407C20.7522 16.3761 20.385 15.786 19.6505 14.6057C18.877 13.3626 18.1754 11.5544 18.0283 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-off-01.svg b/@stellar/design-system/src/assets/icons/bell-off-01.svg
new file mode 100644
index 00000000..0fa1fcf7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-off-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.63306 3.03371C9.61959 2.3649 10.791 2 12 2C13.5913 2 15.1174 2.63214 16.2426 3.75736C17.3679 4.88258 18 6.4087 18 8C18 10.1008 18.2702 11.7512 18.6484 13.0324M6.25867 6.25724C6.08866 6.81726 6 7.40406 6 8C6 11.0902 5.22047 13.206 4.34966 14.6054C3.61513 15.7859 3.24786 16.3761 3.26132 16.5408C3.27624 16.7231 3.31486 16.7926 3.46178 16.9016C3.59446 17 4.19259 17 5.38885 17H17M9.35418 21C10.0593 21.6224 10.9856 22 12 22C13.0144 22 13.9407 21.6224 14.6458 21M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-off-02.svg b/@stellar/design-system/src/assets/icons/bell-off-02.svg
new file mode 100644
index 00000000..10065b10
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-off-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 21H10M8.63306 3.03371C9.61959 2.3649 10.791 2 12 2C13.5913 2 15.1174 2.63214 16.2426 3.75736C17.3679 4.88258 18 6.4087 18 8C18 10.1008 18.2702 11.7512 18.6484 13.0324M6.25867 6.25723C6.08866 6.81726 6 7.40406 6 8C6 11.0902 5.22047 13.206 4.34966 14.6054C3.61513 15.7859 3.24786 16.3761 3.26132 16.5408C3.27624 16.7231 3.31486 16.7926 3.46178 16.9016C3.59446 17 4.19259 17 5.38885 17H17M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-off-03.svg b/@stellar/design-system/src/assets/icons/bell-off-03.svg
new file mode 100644
index 00000000..9fa42ba7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-off-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 19C15 20.6569 13.6569 22 12 22C10.3431 22 9 20.6569 9 19M7.37748 7.88479C6.49088 8.81326 6 9.9847 6 11.2C6 13.4818 5.43413 15.1506 4.72806 16.3447C3.92334 17.7056 3.52098 18.3861 3.53686 18.5486C3.55504 18.7346 3.58852 18.7933 3.73934 18.9036C3.87117 19 4.53351 19 5.85819 19H19.88M12 6C11.7071 6 11.4164 6.01856 11.13 6.05493C10.7485 6.10339 10.5577 6.12762 10.3662 6.07557C10.2284 6.0381 10.0206 5.91728 9.91979 5.81604C9.77982 5.67541 9.74922 5.60123 9.68801 5.45287C9.56684 5.15921 9.5 4.83741 9.5 4.5C9.5 3.11929 10.6193 2 12 2C13.3807 2 14.5 3.11929 14.5 4.5C14.5 5.17562 14.232 5.78864 13.7965 6.23856C13.2203 6.08184 12.615 6 12 6ZM12 6C13.5913 6 15.1174 6.54786 16.2426 7.52304C17.3679 8.49823 18 9.82087 18 11.2C18 11.5348 18.0091 11.8563 18.0264 12.1652M21 20L3 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-plus.svg b/@stellar/design-system/src/assets/icons/bell-plus.svg
new file mode 100644
index 00000000..82572779
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.35416 21C10.0593 21.6224 10.9855 22 12 22C13.0144 22 13.9407 21.6224 14.6458 21M18 8V2M15 5H21M13 2.08389C12.6717 2.02841 12.3373 2 12 2C10.4087 2 8.88257 2.63214 7.75735 3.75736C6.63213 4.88258 5.99999 6.4087 5.99999 8C5.99999 11.0902 5.22046 13.206 4.34965 14.6054C3.61512 15.7859 3.24785 16.3761 3.26131 16.5408C3.27622 16.7231 3.31485 16.7926 3.46176 16.9016C3.59445 17 4.19258 17 5.38884 17H18.6111C19.8073 17 20.4055 17 20.5381 16.9016C20.6851 16.7926 20.7237 16.7231 20.7386 16.5408C20.7521 16.3761 20.3848 15.7858 19.6502 14.6052C19.1581 13.8144 18.6952 12.7948 18.3857 11.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-ringing-01.svg b/@stellar/design-system/src/assets/icons/bell-ringing-01.svg
new file mode 100644
index 00000000..d14f78f2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-ringing-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.35442 21C10.0596 21.6224 10.9858 22 12.0002 22C13.0147 22 13.9409 21.6224 14.6461 21M2.29414 5.81989C2.27979 4.36854 3.06227 3.01325 4.32635 2.3M21.7024 5.8199C21.7167 4.36855 20.9342 3.01325 19.6702 2.3M18.0002 8C18.0002 6.4087 17.3681 4.88258 16.2429 3.75736C15.1177 2.63214 13.5915 2 12.0002 2C10.4089 2 8.88283 2.63214 7.75761 3.75736C6.63239 4.88258 6.00025 6.4087 6.00025 8C6.00025 11.0902 5.22072 13.206 4.34991 14.6054C3.61538 15.7859 3.24811 16.3761 3.26157 16.5408C3.27649 16.7231 3.31511 16.7926 3.46203 16.9016C3.59471 17 4.19284 17 5.3891 17H18.6114C19.8077 17 20.4058 17 20.5385 16.9016C20.6854 16.7926 20.724 16.7231 20.7389 16.5408C20.7524 16.3761 20.3851 15.7859 19.6506 14.6054C18.7798 13.206 18.0002 11.0902 18.0002 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-ringing-02.svg b/@stellar/design-system/src/assets/icons/bell-ringing-02.svg
new file mode 100644
index 00000000..5245638b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-ringing-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.0003 21H10.0003M2.29414 5.81989C2.27979 4.36854 3.06227 3.01325 4.32635 2.3M21.7025 5.8199C21.7169 4.36855 20.9344 3.01325 19.6703 2.3M18.0003 8C18.0003 6.4087 17.3682 4.88258 16.2429 3.75736C15.1177 2.63214 13.5916 2 12.0003 2C10.409 2 8.88288 2.63214 7.75766 3.75736C6.63244 4.88258 6.0003 6.4087 6.0003 8C6.0003 11.0902 5.22077 13.206 4.34996 14.6054C3.61542 15.7859 3.24816 16.3761 3.26162 16.5408C3.27653 16.7231 3.31516 16.7926 3.46207 16.9016C3.59476 17 4.19289 17 5.38915 17H18.6114C19.8077 17 20.4058 17 20.5385 16.9016C20.6854 16.7926 20.7241 16.7231 20.739 16.5408C20.7524 16.3761 20.3852 15.7859 19.6506 14.6054C18.7798 13.206 18.0003 11.0902 18.0003 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-ringing-03.svg b/@stellar/design-system/src/assets/icons/bell-ringing-03.svg
new file mode 100644
index 00000000..e2929bee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-ringing-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0002 19C15.0002 20.6569 13.6571 22 12.0002 22C10.3434 22 9.00025 20.6569 9.00025 19M13.7968 6.23856C14.2322 5.78864 14.5002 5.17562 14.5002 4.5C14.5002 3.11929 13.381 2 12.0002 2C10.6195 2 9.50025 3.11929 9.50025 4.5C9.50025 5.17562 9.76825 5.78864 10.2037 6.23856M2.54707 8.32296C2.53272 6.87161 3.3152 5.51631 4.57928 4.80306M21.4534 8.32296C21.4678 6.87161 20.6853 5.51631 19.4212 4.80306M18.0002 11.2C18.0002 9.82087 17.3681 8.49823 16.2429 7.52304C15.1177 6.54786 13.5915 6 12.0002 6C10.4089 6 8.88283 6.54786 7.75761 7.52304C6.63239 8.49823 6.00025 9.82087 6.00025 11.2C6.00025 13.4818 5.43438 15.1506 4.72831 16.3447C3.92359 17.7056 3.52122 18.3861 3.53711 18.5486C3.55529 18.7346 3.58876 18.7933 3.73959 18.9036C3.87142 19 4.53376 19 5.85844 19H18.1421C19.4667 19 20.1291 19 20.2609 18.9036C20.4117 18.7933 20.4452 18.7346 20.4634 18.5486C20.4793 18.3861 20.0769 17.7056 19.2722 16.3447C18.5661 15.1506 18.0002 13.4818 18.0002 11.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bell-ringing-04.svg b/@stellar/design-system/src/assets/icons/bell-ringing-04.svg
new file mode 100644
index 00000000..549e19be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bell-ringing-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.646 18.0149C16.0748 19.6153 15.1251 21.2603 13.5247 21.6891C11.9243 22.118 10.2792 21.1682 9.85042 19.5678M2.05689 11.6134C1.6674 10.2152 2.07244 8.70361 3.10884 7.6875M12.1464 5.74097C12.4506 5.19367 12.5508 4.53217 12.3759 3.87957C12.0186 2.54591 10.6477 1.75445 9.31406 2.11181C7.9804 2.46916 7.18894 3.84 7.5463 5.17367C7.72116 5.82627 8.13869 6.34904 8.67579 6.67091M20.3191 6.72012C19.9573 5.31451 18.8507 4.20792 17.4451 3.84614M17.4907 9.4454C17.1337 8.11327 16.1808 6.99931 14.8415 6.34858C13.5023 5.69784 11.8864 5.56365 10.3493 5.9755C8.8122 6.38736 7.47988 7.31154 6.6454 8.54473C5.81092 9.77792 5.54264 11.2191 5.89958 12.5512C6.49016 14.7553 6.37548 16.5137 6.00253 17.8498C5.57746 19.3727 5.36493 20.1341 5.42235 20.287C5.48804 20.4619 5.53556 20.5099 5.70979 20.5774C5.86208 20.6364 6.50185 20.465 7.78139 20.1222L19.6465 16.9429C20.926 16.6001 21.5658 16.4286 21.6682 16.3014C21.7853 16.1558 21.8024 16.0905 21.7719 15.9061C21.7451 15.745 21.1804 15.1919 20.0508 14.0856C19.0598 13.1149 18.0813 11.6495 17.4907 9.4454Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bezier-curve-01.svg b/@stellar/design-system/src/assets/icons/bezier-curve-01.svg
new file mode 100644
index 00000000..906470a5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bezier-curve-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 7L3 7M21 7L14 7M14 7.25195C17.4505 8.14004 20 11.2722 20 14.9999M4 14.9999C4 11.2722 6.54955 8.14004 10 7.25195M3.6 19H4.4C4.96005 19 5.24008 19 5.45399 18.891C5.64215 18.7951 5.79513 18.6422 5.89101 18.454C6 18.2401 6 17.9601 6 17.4V16.6C6 16.0399 6 15.7599 5.89101 15.546C5.79513 15.3578 5.64215 15.2049 5.45399 15.109C5.24008 15 4.96005 15 4.4 15H3.6C3.03995 15 2.75992 15 2.54601 15.109C2.35785 15.2049 2.20487 15.3578 2.10899 15.546C2 15.7599 2 16.0399 2 16.6V17.4C2 17.9601 2 18.2401 2.10899 18.454C2.20487 18.6422 2.35785 18.7951 2.54601 18.891C2.75992 19 3.03995 19 3.6 19ZM11.6 9H12.4C12.9601 9 13.2401 9 13.454 8.89101C13.6422 8.79513 13.7951 8.64215 13.891 8.45399C14 8.24008 14 7.96005 14 7.4V6.6C14 6.03995 14 5.75992 13.891 5.54601C13.7951 5.35785 13.6422 5.20487 13.454 5.10899C13.2401 5 12.9601 5 12.4 5H11.6C11.0399 5 10.7599 5 10.546 5.10899C10.3578 5.20487 10.2049 5.35785 10.109 5.54601C10 5.75992 10 6.03995 10 6.6V7.4C10 7.96005 10 8.24008 10.109 8.45399C10.2049 8.64215 10.3578 8.79513 10.546 8.89101C10.7599 9 11.0399 9 11.6 9ZM19.6 19H20.4C20.9601 19 21.2401 19 21.454 18.891C21.6422 18.7951 21.7951 18.6422 21.891 18.454C22 18.2401 22 17.9601 22 17.4V16.6C22 16.0399 22 15.7599 21.891 15.546C21.7951 15.3578 21.6422 15.2049 21.454 15.109C21.2401 15 20.9601 15 20.4 15H19.6C19.0399 15 18.7599 15 18.546 15.109C18.3578 15.2049 18.2049 15.3578 18.109 15.546C18 15.7599 18 16.0399 18 16.6V17.4C18 17.9601 18 18.2401 18.109 18.454C18.2049 18.6422 18.3578 18.7951 18.546 18.891C18.7599 19 19.0399 19 19.6 19ZM22 7C22 7.55228 21.5523 8 21 8C20.4477 8 20 7.55228 20 7C20 6.44772 20.4477 6 21 6C21.5523 6 22 6.44772 22 7ZM4 7C4 7.55228 3.55228 8 3 8C2.44772 8 2 7.55228 2 7C2 6.44772 2.44772 6 3 6C3.55228 6 4 6.44772 4 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bezier-curve-02.svg b/@stellar/design-system/src/assets/icons/bezier-curve-02.svg
new file mode 100644
index 00000000..cdc469a4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bezier-curve-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.9998 20.2633C6.91189 19.5185 4.48131 17.0879 3.73662 13.9999M20.2636 14C19.5188 17.0879 17.0883 19.5185 14.0004 20.2633M14.0002 3.73657C17.0882 4.48129 19.5188 6.91193 20.2636 9.99989M3.73682 10C4.48152 6.91199 6.9122 4.4813 10.0002 3.73657M3.6 14H4.4C4.96005 14 5.24008 14 5.45399 13.891C5.64215 13.7951 5.79513 13.6422 5.89101 13.454C6 13.2401 6 12.9601 6 12.4V11.6C6 11.0399 6 10.7599 5.89101 10.546C5.79513 10.3578 5.64215 10.2049 5.45399 10.109C5.24008 10 4.96005 10 4.4 10H3.6C3.03995 10 2.75992 10 2.54601 10.109C2.35785 10.2049 2.20487 10.3578 2.10899 10.546C2 10.7599 2 11.0399 2 11.6V12.4C2 12.9601 2 13.2401 2.10899 13.454C2.20487 13.6422 2.35785 13.7951 2.54601 13.891C2.75992 14 3.03995 14 3.6 14ZM19.6 14H20.4C20.9601 14 21.2401 14 21.454 13.891C21.6422 13.7951 21.7951 13.6422 21.891 13.454C22 13.2401 22 12.9601 22 12.4V11.6C22 11.0399 22 10.7599 21.891 10.546C21.7951 10.3578 21.6422 10.2049 21.454 10.109C21.2401 10 20.9601 10 20.4 10H19.6C19.0399 10 18.7599 10 18.546 10.109C18.3578 10.2049 18.2049 10.3578 18.109 10.546C18 10.7599 18 11.0399 18 11.6V12.4C18 12.9601 18 13.2401 18.109 13.454C18.2049 13.6422 18.3578 13.7951 18.546 13.891C18.7599 14 19.0399 14 19.6 14ZM11.6 6H12.4C12.9601 6 13.2401 6 13.454 5.89101C13.6422 5.79513 13.7951 5.64215 13.891 5.45399C14 5.24008 14 4.96005 14 4.4V3.6C14 3.03995 14 2.75992 13.891 2.54601C13.7951 2.35785 13.6422 2.20487 13.454 2.10899C13.2401 2 12.9601 2 12.4 2H11.6C11.0399 2 10.7599 2 10.546 2.10899C10.3578 2.20487 10.2049 2.35785 10.109 2.54601C10 2.75992 10 3.03995 10 3.6V4.4C10 4.96005 10 5.24008 10.109 5.45399C10.2049 5.64215 10.3578 5.79513 10.546 5.89101C10.7599 6 11.0399 6 11.6 6ZM11.6 22H12.4C12.9601 22 13.2401 22 13.454 21.891C13.6422 21.7951 13.7951 21.6422 13.891 21.454C14 21.2401 14 20.9601 14 20.4V19.6C14 19.0399 14 18.7599 13.891 18.546C13.7951 18.3578 13.6422 18.2049 13.454 18.109C13.2401 18 12.9601 18 12.4 18H11.6C11.0399 18 10.7599 18 10.546 18.109C10.3578 18.2049 10.2049 18.3578 10.109 18.546C10 18.7599 10 19.0399 10 19.6V20.4C10 20.9601 10 21.2401 10.109 21.454C10.2049 21.6422 10.3578 21.7951 10.546 21.891C10.7599 22 11.0399 22 11.6 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bezier-curve-03.svg b/@stellar/design-system/src/assets/icons/bezier-curve-03.svg
new file mode 100644
index 00000000..e6d71343
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bezier-curve-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.8571 7L5.14286 17M6 19H17.9998M18.8571 17L13.1429 7M3.6 21H4.4C4.96005 21 5.24008 21 5.45399 20.891C5.64215 20.7951 5.79513 20.6422 5.89101 20.454C6 20.2401 6 19.9601 6 19.4V18.6C6 18.0399 6 17.7599 5.89101 17.546C5.79513 17.3578 5.64215 17.2049 5.45399 17.109C5.24008 17 4.96005 17 4.4 17H3.6C3.03995 17 2.75992 17 2.54601 17.109C2.35785 17.2049 2.20487 17.3578 2.10899 17.546C2 17.7599 2 18.0399 2 18.6V19.4C2 19.9601 2 20.2401 2.10899 20.454C2.20487 20.6422 2.35785 20.7951 2.54601 20.891C2.75992 21 3.03995 21 3.6 21ZM19.6 21H20.4C20.9601 21 21.2401 21 21.454 20.891C21.6422 20.7951 21.7951 20.6422 21.891 20.454C22 20.2401 22 19.9601 22 19.4V18.6C22 18.0399 22 17.7599 21.891 17.546C21.7951 17.3578 21.6422 17.2049 21.454 17.109C21.2401 17 20.9601 17 20.4 17H19.6C19.0399 17 18.7599 17 18.546 17.109C18.3578 17.2049 18.2049 17.3578 18.109 17.546C18 17.7599 18 18.0399 18 18.6V19.4C18 19.9601 18 20.2401 18.109 20.454C18.2049 20.6422 18.3578 20.7951 18.546 20.891C18.7599 21 19.0399 21 19.6 21ZM11.6 7H12.4C12.9601 7 13.2401 7 13.454 6.89101C13.6422 6.79513 13.7951 6.64215 13.891 6.45399C14 6.24008 14 5.96005 14 5.4V4.6C14 4.03995 14 3.75992 13.891 3.54601C13.7951 3.35785 13.6422 3.20487 13.454 3.10899C13.2401 3 12.9601 3 12.4 3H11.6C11.0399 3 10.7599 3 10.546 3.10899C10.3578 3.20487 10.2049 3.35785 10.109 3.54601C10 3.75992 10 4.03995 10 4.6V5.4C10 5.96005 10 6.24008 10.109 6.45399C10.2049 6.64215 10.3578 6.79513 10.546 6.89101C10.7599 7 11.0399 7 11.6 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/block.svg b/@stellar/design-system/src/assets/icons/block.svg
deleted file mode 100644
index 21120a48..00000000
--- a/@stellar/design-system/src/assets/icons/block.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6963)"><path d="M12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 11.1 19.854 10.2333 19.562 9.4C19.2707 8.56667 18.85 7.8 18.3 7.1L7.1 18.3C7.8 18.85 8.56667 19.2707 9.4 19.562C10.2333 19.854 11.1 20 12 20ZM5.7 16.9L16.9 5.7C16.2 5.15 15.4333 4.72933 14.6 4.438C13.7667 4.146 12.9 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 12.9 4.146 13.7667 4.438 14.6C4.72933 15.4333 5.15 16.2 5.7 16.9Z"/></g><defs><clipPath id="clip0_1113_6963"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bluetooth-connect.svg b/@stellar/design-system/src/assets/icons/bluetooth-connect.svg
new file mode 100644
index 00000000..32e65013
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bluetooth-connect.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7L15 17L9 22V2L15 7L3 17M18 12H18.01M15 12H15.01M21 12H21.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bluetooth-off.svg b/@stellar/design-system/src/assets/icons/bluetooth-off.svg
new file mode 100644
index 00000000..982af165
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bluetooth-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 17L12 12V22L17.4398 17.4668M12 7V2L18 7L15.0817 9.43194M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bluetooth-on.svg b/@stellar/design-system/src/assets/icons/bluetooth-on.svg
new file mode 100644
index 00000000..4a2598c0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bluetooth-on.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 7L18 17L12 22V2L18 7L6 17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bluetooth-signal.svg b/@stellar/design-system/src/assets/icons/bluetooth-signal.svg
new file mode 100644
index 00000000..172f683c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bluetooth-signal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7L14 17L8 22V2L14 7L2 17M20.1445 6.5C21.2581 8.04804 21.914 9.94743 21.914 12C21.914 14.0526 21.2581 15.952 20.1445 17.5M17 8.85724C17.6214 9.74811 17.9858 10.8315 17.9858 12.0001C17.9858 13.1686 17.6214 14.2521 17 15.143" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bold-01.svg b/@stellar/design-system/src/assets/icons/bold-01.svg
new file mode 100644
index 00000000..53768b71
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bold-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 12H14C16.2091 12 18 10.2091 18 8C18 5.79086 16.2091 4 14 4H6V12ZM6 12H15C17.2091 12 19 13.7909 19 16C19 18.2091 17.2091 20 15 20H6V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bold-02.svg b/@stellar/design-system/src/assets/icons/bold-02.svg
new file mode 100644
index 00000000..4655e8fa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bold-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 4V20M9.5 4H15.5C17.7091 4 19.5 5.79086 19.5 8C19.5 10.2091 17.7091 12 15.5 12H9.5H16.5C18.7091 12 20.5 13.7909 20.5 16C20.5 18.2091 18.7091 20 16.5 20H9.5M9.5 4V20M9.5 4H4M9.5 20H4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bold-square.svg b/@stellar/design-system/src/assets/icons/bold-square.svg
new file mode 100644
index 00000000..80e7e3d1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bold-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 12H13C14.3807 12 15.5 10.8807 15.5 9.5C15.5 8.11929 14.3807 7 13 7H8.5V12ZM8.5 12H14C15.3807 12 16.5 13.1193 16.5 14.5C16.5 15.8807 15.3807 17 14 17H8.5V12ZM7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/book-closed.svg b/@stellar/design-system/src/assets/icons/book-closed.svg
new file mode 100644
index 00000000..0902e9a1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/book-closed.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 19V16H7C5.34315 16 4 17.3431 4 19M8.8 22H16.8C17.9201 22 18.4802 22 18.908 21.782C19.2843 21.5903 19.5903 21.2843 19.782 20.908C20 20.4802 20 19.9201 20 18.8V5.2C20 4.07989 20 3.51984 19.782 3.09202C19.5903 2.71569 19.2843 2.40973 18.908 2.21799C18.4802 2 17.9201 2 16.8 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/book-open-01.svg b/@stellar/design-system/src/assets/icons/book-open-01.svg
new file mode 100644
index 00000000..a8e85037
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/book-open-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 21L11.8999 20.8499C11.2053 19.808 10.858 19.287 10.3991 18.9098C9.99286 18.5759 9.52476 18.3254 9.02161 18.1726C8.45325 18 7.82711 18 6.57482 18H5.2C4.07989 18 3.51984 18 3.09202 17.782C2.71569 17.5903 2.40973 17.2843 2.21799 16.908C2 16.4802 2 15.9201 2 14.8V6.2C2 5.07989 2 4.51984 2.21799 4.09202C2.40973 3.71569 2.71569 3.40973 3.09202 3.21799C3.51984 3 4.07989 3 5.2 3H5.6C7.84021 3 8.96031 3 9.81596 3.43597C10.5686 3.81947 11.1805 4.43139 11.564 5.18404C12 6.03968 12 7.15979 12 9.4M12 21V9.4M12 21L12.1001 20.8499C12.7947 19.808 13.142 19.287 13.6009 18.9098C14.0071 18.5759 14.4752 18.3254 14.9784 18.1726C15.5467 18 16.1729 18 17.4252 18H18.8C19.9201 18 20.4802 18 20.908 17.782C21.2843 17.5903 21.5903 17.2843 21.782 16.908C22 16.4802 22 15.9201 22 14.8V6.2C22 5.07989 22 4.51984 21.782 4.09202C21.5903 3.71569 21.2843 3.40973 20.908 3.21799C20.4802 3 19.9201 3 18.8 3H18.4C16.1598 3 15.0397 3 14.184 3.43597C13.4314 3.81947 12.8195 4.43139 12.436 5.18404C12 6.03968 12 7.15979 12 9.4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/book-open-02.svg b/@stellar/design-system/src/assets/icons/book-open-02.svg
new file mode 100644
index 00000000..21f20ced
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/book-open-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20H5.2C4.07989 20 3.51984 20 3.09202 19.782C2.71569 19.5903 2.40973 19.2843 2.21799 18.908C2 18.4802 2 17.9201 2 16.8V7.2C2 6.07989 2 5.51984 2.21799 5.09202C2.40973 4.71569 2.71569 4.40973 3.09202 4.21799C3.51984 4 4.07989 4 5.2 4H5.6C7.84021 4 8.96031 4 9.81596 4.43597C10.5686 4.81947 11.1805 5.43139 11.564 6.18404C12 7.03968 12 8.15979 12 10.4M12 20V10.4M12 20H18.8C19.9201 20 20.4802 20 20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908C22 18.4802 22 17.9201 22 16.8V7.2C22 6.07989 22 5.51984 21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799C20.4802 4 19.9201 4 18.8 4H18.4C16.1598 4 15.0397 4 14.184 4.43597C13.4314 4.81947 12.8195 5.43139 12.436 6.18404C12 7.03968 12 8.15979 12 10.4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bookmark-add.svg b/@stellar/design-system/src/assets/icons/bookmark-add.svg
new file mode 100644
index 00000000..d048a74c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bookmark-add.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13V7M9 10H15M19 21V7.8C19 6.11984 19 5.27976 18.673 4.63803C18.3854 4.07354 17.9265 3.6146 17.362 3.32698C16.7202 3 15.8802 3 14.2 3H9.8C8.11984 3 7.27976 3 6.63803 3.32698C6.07354 3.6146 5.6146 4.07354 5.32698 4.63803C5 5.27976 5 6.11984 5 7.8V21L12 17L19 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bookmark-check.svg b/@stellar/design-system/src/assets/icons/bookmark-check.svg
new file mode 100644
index 00000000..b75fe173
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bookmark-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 10.5L11 12.5L15.5 8M19 21V7.8C19 6.11984 19 5.27976 18.673 4.63803C18.3854 4.07354 17.9265 3.6146 17.362 3.32698C16.7202 3 15.8802 3 14.2 3H9.8C8.11984 3 7.27976 3 6.63803 3.32698C6.07354 3.6146 5.6146 4.07354 5.32698 4.63803C5 5.27976 5 6.11984 5 7.8V21L12 17L19 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bookmark-minus.svg b/@stellar/design-system/src/assets/icons/bookmark-minus.svg
new file mode 100644
index 00000000..592f083f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bookmark-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 10H15M19 21V7.8C19 6.11984 19 5.27976 18.673 4.63803C18.3854 4.07354 17.9265 3.6146 17.362 3.32698C16.7202 3 15.8802 3 14.2 3H9.8C8.11984 3 7.27976 3 6.63803 3.32698C6.07354 3.6146 5.6146 4.07354 5.32698 4.63803C5 5.27976 5 6.11984 5 7.8V21L12 17L19 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bookmark-x.svg b/@stellar/design-system/src/assets/icons/bookmark-x.svg
new file mode 100644
index 00000000..eb534d58
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bookmark-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 7.5L14.5 12.5M14.5 7.5L9.5 12.5M19 21V7.8C19 6.11984 19 5.27976 18.673 4.63803C18.3854 4.07354 17.9265 3.6146 17.362 3.32698C16.7202 3 15.8802 3 14.2 3H9.8C8.11984 3 7.27976 3 6.63803 3.32698C6.07354 3.6146 5.6146 4.07354 5.32698 4.63803C5 5.27976 5 6.11984 5 7.8V21L12 17L19 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bookmark.svg b/@stellar/design-system/src/assets/icons/bookmark.svg
new file mode 100644
index 00000000..71f4451a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bookmark.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 7.8C5 6.11984 5 5.27976 5.32698 4.63803C5.6146 4.07354 6.07354 3.6146 6.63803 3.32698C7.27976 3 8.11984 3 9.8 3H14.2C15.8802 3 16.7202 3 17.362 3.32698C17.9265 3.6146 18.3854 4.07354 18.673 4.63803C19 5.27976 19 6.11984 19 7.8V21L12 17L5 21V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/box.svg b/@stellar/design-system/src/assets/icons/box.svg
new file mode 100644
index 00000000..d6d6557f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/box.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 8V16.2C20.5 17.8802 20.5 18.7202 20.173 19.362C19.8854 19.9265 19.4265 20.3854 18.862 20.673C18.2202 21 17.3802 21 15.7 21H8.3C6.61984 21 5.77976 21 5.13803 20.673C4.57354 20.3854 4.1146 19.9265 3.82698 19.362C3.5 18.7202 3.5 17.8802 3.5 16.2V8M3.6 3H20.4C20.9601 3 21.2401 3 21.454 3.10899C21.6422 3.20487 21.7951 3.35785 21.891 3.54601C22 3.75992 22 4.03995 22 4.6V6.4C22 6.96005 22 7.24008 21.891 7.45399C21.7951 7.64215 21.6422 7.79513 21.454 7.89101C21.2401 8 20.9601 8 20.4 8H3.6C3.03995 8 2.75992 8 2.54601 7.89101C2.35785 7.79513 2.20487 7.64215 2.10899 7.45399C2 7.24008 2 6.96005 2 6.4V4.6C2 4.03995 2 3.75992 2.10899 3.54601C2.20487 3.35785 2.35785 3.20487 2.54601 3.10899C2.75992 3 3.03995 3 3.6 3ZM9.6 11.5H14.4C14.9601 11.5 15.2401 11.5 15.454 11.609C15.6422 11.7049 15.7951 11.8578 15.891 12.046C16 12.2599 16 12.5399 16 13.1V13.9C16 14.4601 16 14.7401 15.891 14.954C15.7951 15.1422 15.6422 15.2951 15.454 15.391C15.2401 15.5 14.9601 15.5 14.4 15.5H9.6C9.03995 15.5 8.75992 15.5 8.54601 15.391C8.35785 15.2951 8.20487 15.1422 8.10899 14.954C8 14.7401 8 14.4601 8 13.9V13.1C8 12.5399 8 12.2599 8.10899 12.046C8.20487 11.8578 8.35785 11.7049 8.54601 11.609C8.75992 11.5 9.03995 11.5 9.6 11.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-check.svg b/@stellar/design-system/src/assets/icons/brackets-check.svg
new file mode 100644
index 00000000..ad402da5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M7.5 12L9.93431 14.4343C10.1323 14.6323 10.2313 14.7313 10.3455 14.7684C10.4459 14.8011 10.5541 14.8011 10.6545 14.7684C10.7687 14.7313 10.8677 14.6323 11.0657 14.4343L16.5 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-ellipses.svg b/@stellar/design-system/src/assets/icons/brackets-ellipses.svg
new file mode 100644
index 00000000..4a06bd37
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-ellipses.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M7.5 12H7.51M12 12H12.01M16.5 12H16.51M8 12C8 12.2761 7.77614 12.5 7.5 12.5C7.22386 12.5 7 12.2761 7 12C7 11.7239 7.22386 11.5 7.5 11.5C7.77614 11.5 8 11.7239 8 12ZM12.5 12C12.5 12.2761 12.2761 12.5 12 12.5C11.7239 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.7239 11.5 12 11.5C12.2761 11.5 12.5 11.7239 12.5 12ZM17 12C17 12.2761 16.7761 12.5 16.5 12.5C16.2239 12.5 16 12.2761 16 12C16 11.7239 16.2239 11.5 16.5 11.5C16.7761 11.5 17 11.7239 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-minus.svg b/@stellar/design-system/src/assets/icons/brackets-minus.svg
new file mode 100644
index 00000000..908ffc23
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M8 12H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-plus.svg b/@stellar/design-system/src/assets/icons/brackets-plus.svg
new file mode 100644
index 00000000..54b86bf8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M12 8V16M8 12H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-slash.svg b/@stellar/design-system/src/assets/icons/brackets-slash.svg
new file mode 100644
index 00000000..92caa94b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-slash.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M9 17L15 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets-x.svg b/@stellar/design-system/src/assets/icons/brackets-x.svg
new file mode 100644
index 00000000..44ac015e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20M15 9L9 15M9 9L15 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brackets.svg b/@stellar/design-system/src/assets/icons/brackets.svg
new file mode 100644
index 00000000..47eb703e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brackets.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5708 20C19.8328 20 20.8568 18.977 20.8568 17.714V13.143L21.9998 12L20.8568 10.857V6.286C20.8568 5.023 19.8338 4 18.5708 4M5.429 4C4.166 4 3.143 5.023 3.143 6.286V10.857L2 12L3.143 13.143V17.714C3.143 18.977 4.166 20 5.429 20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/briefcase-01.svg b/@stellar/design-system/src/assets/icons/briefcase-01.svg
new file mode 100644
index 00000000..3004cc00
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/briefcase-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 7C16 6.07003 16 5.60504 15.8978 5.22354C15.6204 4.18827 14.8117 3.37962 13.7765 3.10222C13.395 3 12.93 3 12 3C11.07 3 10.605 3 10.2235 3.10222C9.18827 3.37962 8.37962 4.18827 8.10222 5.22354C8 5.60504 8 6.07003 8 7M5.2 21H18.8C19.9201 21 20.4802 21 20.908 20.782C21.2843 20.5903 21.5903 20.2843 21.782 19.908C22 19.4802 22 18.9201 22 17.8V10.2C22 9.07989 22 8.51984 21.782 8.09202C21.5903 7.71569 21.2843 7.40973 20.908 7.21799C20.4802 7 19.9201 7 18.8 7H5.2C4.07989 7 3.51984 7 3.09202 7.21799C2.71569 7.40973 2.40973 7.71569 2.21799 8.09202C2 8.51984 2 9.07989 2 10.2V17.8C2 18.9201 2 19.4802 2.21799 19.908C2.40973 20.2843 2.71569 20.5903 3.09202 20.782C3.51984 21 4.0799 21 5.2 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/briefcase-02.svg b/@stellar/design-system/src/assets/icons/briefcase-02.svg
new file mode 100644
index 00000000..a2c7826a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/briefcase-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 21V7C8 6.07003 8 5.60504 8.10222 5.22354C8.37962 4.18827 9.18827 3.37962 10.2235 3.10222C10.605 3 11.07 3 12 3C12.93 3 13.395 3 13.7765 3.10222C14.8117 3.37962 15.6204 4.18827 15.8978 5.22354C16 5.60504 16 6.07003 16 7V21M5.2 21H18.8C19.9201 21 20.4802 21 20.908 20.782C21.2843 20.5903 21.5903 20.2843 21.782 19.908C22 19.4802 22 18.9201 22 17.8V10.2C22 9.07989 22 8.51984 21.782 8.09202C21.5903 7.71569 21.2843 7.40973 20.908 7.21799C20.4802 7 19.9201 7 18.8 7H5.2C4.07989 7 3.51984 7 3.09202 7.21799C2.71569 7.40973 2.40973 7.71569 2.21799 8.09202C2 8.51984 2 9.07989 2 10.2V17.8C2 18.9201 2 19.4802 2.21799 19.908C2.40973 20.2843 2.71569 20.5903 3.09202 20.782C3.51984 21 4.0799 21 5.2 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/browser.svg b/@stellar/design-system/src/assets/icons/browser.svg
new file mode 100644
index 00000000..411569f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/browser.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 9H2M2 7.8L2 16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27977 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3L6.8 3C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brush-01.svg b/@stellar/design-system/src/assets/icons/brush-01.svg
new file mode 100644
index 00000000..040c39c2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brush-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.99997 11.2222L12.7778 15M7.97485 20.9749C6.60801 22.3417 4 22 2 22C3.0251 20 1.65827 17.392 3.0251 16.0251C4.39194 14.6583 6.60801 14.6583 7.97485 16.0251C9.34168 17.392 9.34168 19.608 7.97485 20.9749ZM11.9216 15.9246L21.0587 6.05653C21.8635 5.18737 21.8375 3.83758 20.9999 2.99999C20.1624 2.1624 18.8126 2.13645 17.9434 2.94123L8.07534 12.0783C7.5654 12.5505 7.31043 12.7866 7.16173 13.0384C6.80514 13.6421 6.79079 14.3885 7.12391 15.0056C7.26283 15.2629 7.50853 15.5086 7.99995 16C8.49136 16.4914 8.73707 16.7371 8.99438 16.876C9.6114 17.2091 10.3578 17.1948 10.9616 16.8382C11.2134 16.6895 11.4494 16.4345 11.9216 15.9246Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brush-02.svg b/@stellar/design-system/src/assets/icons/brush-02.svg
new file mode 100644
index 00000000..0fab6dce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brush-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 10V3.6C18 3.03995 18 2.75992 17.891 2.54601C17.7951 2.35785 17.6422 2.20487 17.454 2.10899C17.2401 2 16.9601 2 16.4 2H7.6C7.03995 2 6.75992 2 6.54601 2.10899C6.35785 2.20487 6.20487 2.35785 6.10899 2.54601C6 2.75992 6 3.03995 6 3.6V10M18 10H6M18 10V10.2C18 11.8802 18 12.7202 17.673 13.362C17.3854 13.9265 16.9265 14.3854 16.362 14.673C15.7202 15 14.8802 15 13.2 15H10.8C9.11984 15 8.27976 15 7.63803 14.673C7.07354 14.3854 6.6146 13.9265 6.32698 13.362C6 12.7202 6 11.8802 6 10.2V10M14.5 15V19.5C14.5 20.8807 13.3807 22 12 22C10.6193 22 9.5 20.8807 9.5 19.5V15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/brush-03.svg b/@stellar/design-system/src/assets/icons/brush-03.svg
new file mode 100644
index 00000000..57925991
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/brush-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V3.6C20 3.03995 20 2.75992 19.891 2.54601C19.7951 2.35785 19.6422 2.20487 19.454 2.10899C19.2401 2 18.9601 2 18.4 2H5.6C5.03995 2 4.75992 2 4.54601 2.10899C4.35785 2.20487 4.20487 2.35785 4.10899 2.54601C4 2.75992 4 3.03995 4 3.6V10M20 10H4M20 10V10.2C20 11.8802 20 12.7202 19.673 13.362C19.3854 13.9265 18.9265 14.3854 18.362 14.673C17.7202 15 16.8802 15 15.2 15H8.8C7.11984 15 6.27976 15 5.63803 14.673C5.07354 14.3854 4.6146 13.9265 4.32698 13.362C4 12.7202 4 11.8802 4 10.2V10M14.5 15V19.5C14.5 20.8807 13.3807 22 12 22C10.6193 22 9.5 20.8807 9.5 19.5V15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-01.svg b/@stellar/design-system/src/assets/icons/building-01.svg
new file mode 100644
index 00000000..97b65c06
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 21V15.6C15 15.0399 15 14.7599 14.891 14.546C14.7951 14.3578 14.6422 14.2049 14.454 14.109C14.2401 14 13.9601 14 13.4 14H10.6C10.0399 14 9.75992 14 9.54601 14.109C9.35785 14.2049 9.20487 14.3578 9.10899 14.546C9 14.7599 9 15.0399 9 15.6V21M19 21V6.2C19 5.0799 19 4.51984 18.782 4.09202C18.5903 3.71569 18.2843 3.40973 17.908 3.21799C17.4802 3 16.9201 3 15.8 3H8.2C7.07989 3 6.51984 3 6.09202 3.21799C5.71569 3.40973 5.40973 3.71569 5.21799 4.09202C5 4.51984 5 5.0799 5 6.2V21M21 21H3M9.5 8H9.51M14.5 8H14.51M10 8C10 8.27614 9.77614 8.5 9.5 8.5C9.22386 8.5 9 8.27614 9 8C9 7.72386 9.22386 7.5 9.5 7.5C9.77614 7.5 10 7.72386 10 8ZM15 8C15 8.27614 14.7761 8.5 14.5 8.5C14.2239 8.5 14 8.27614 14 8C14 7.72386 14.2239 7.5 14.5 7.5C14.7761 7.5 15 7.72386 15 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-02.svg b/@stellar/design-system/src/assets/icons/building-02.svg
new file mode 100644
index 00000000..f77b3f19
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 21V15.6C15 15.0399 15 14.7599 14.891 14.546C14.7951 14.3578 14.6422 14.2049 14.454 14.109C14.2401 14 13.9601 14 13.4 14H10.6C10.0399 14 9.75992 14 9.54601 14.109C9.35785 14.2049 9.20487 14.3578 9.10899 14.546C9 14.7599 9 15.0399 9 15.6V21M3 7C3 8.65685 4.34315 10 6 10C7.65685 10 9 8.65685 9 7C9 8.65685 10.3431 10 12 10C13.6569 10 15 8.65685 15 7C15 8.65685 16.3431 10 18 10C19.6569 10 21 8.65685 21 7M6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4802 21 18.9201 21 17.8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.07989 3 6.2V17.8C3 18.9201 3 19.4802 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-03.svg b/@stellar/design-system/src/assets/icons/building-03.svg
new file mode 100644
index 00000000..839dd1fe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 7H10.25M7.5 11H10.25M7.5 15H10.25M13.75 7H16.5M13.75 11H16.5M13.75 15H16.5M20 21V6.2C20 5.0799 20 4.51984 19.782 4.09202C19.5903 3.71569 19.2843 3.40973 18.908 3.21799C18.4802 3 17.9201 3 16.8 3H7.2C6.07989 3 5.51984 3 5.09202 3.21799C4.71569 3.40973 4.40973 3.71569 4.21799 4.09202C4 4.51984 4 5.0799 4 6.2V21M22 21H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-04.svg b/@stellar/design-system/src/assets/icons/building-04.svg
new file mode 100644
index 00000000..0b9b27bb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 7H14.5M9.5 11H14.5M9.5 15H14.5M18 21V6.2C18 5.0799 18 4.51984 17.782 4.09202C17.5903 3.71569 17.2843 3.40973 16.908 3.21799C16.4802 3 15.9201 3 14.8 3H9.2C8.0799 3 7.51984 3 7.09202 3.21799C6.71569 3.40973 6.40973 3.71569 6.21799 4.09202C6 4.51984 6 5.0799 6 6.2V21M20 21H4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-05.svg b/@stellar/design-system/src/assets/icons/building-05.svg
new file mode 100644
index 00000000..1401667a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 11H17.8C18.9201 11 19.4802 11 19.908 11.218C20.2843 11.4097 20.5903 11.7157 20.782 12.092C21 12.5198 21 13.0799 21 14.2V21M13 21V6.2C13 5.0799 13 4.51984 12.782 4.09202C12.5903 3.71569 12.2843 3.40973 11.908 3.21799C11.4802 3 10.9201 3 9.8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.0799 3 6.2V21M22 21H2M6.5 7H9.5M6.5 11H9.5M6.5 15H9.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-06.svg b/@stellar/design-system/src/assets/icons/building-06.svg
new file mode 100644
index 00000000..67489573
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 11H6.2C5.07989 11 4.51984 11 4.09202 11.218C3.71569 11.4097 3.40973 11.7157 3.21799 12.092C3 12.5198 3 13.0799 3 14.2V21M21 21V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3H14.2C13.0799 3 12.5198 3 12.092 3.21799C11.7157 3.40973 11.4097 3.71569 11.218 4.09202C11 4.51984 11 5.0799 11 6.2V21M22 21H2M14.5 7H17.5M14.5 11H17.5M14.5 15H17.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-07.svg b/@stellar/design-system/src/assets/icons/building-07.svg
new file mode 100644
index 00000000..2083bd8e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 11H4.6C4.03995 11 3.75992 11 3.54601 11.109C3.35785 11.2049 3.20487 11.3578 3.10899 11.546C3 11.7599 3 12.0399 3 12.6V21M16.5 11H19.4C19.9601 11 20.2401 11 20.454 11.109C20.6422 11.2049 20.7951 11.3578 20.891 11.546C21 11.7599 21 12.0399 21 12.6V21M16.5 21V6.2C16.5 5.0799 16.5 4.51984 16.282 4.09202C16.0903 3.71569 15.7843 3.40973 15.408 3.21799C14.9802 3 14.4201 3 13.3 3H10.7C9.57989 3 9.01984 3 8.59202 3.21799C8.21569 3.40973 7.90973 3.71569 7.71799 4.09202C7.5 4.51984 7.5 5.0799 7.5 6.2V21M22 21H2M11 7H13M11 11H13M11 15H13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/building-08.svg b/@stellar/design-system/src/assets/icons/building-08.svg
new file mode 100644
index 00000000..3ba73f93
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/building-08.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 21H21M6 18V10M10 18V10M14 18V10M18 18V10M20 7.00001L12.424 2.26501C12.2702 2.16887 12.1933 2.1208 12.1108 2.10206C12.0379 2.08549 11.9621 2.08549 11.8892 2.10206C11.8067 2.1208 11.7298 2.16887 11.576 2.26501L4 7.00001H20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/burn.svg b/@stellar/design-system/src/assets/icons/burn.svg
deleted file mode 100644
index 6067621d..00000000
--- a/@stellar/design-system/src/assets/icons/burn.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M4 14C4 12.1167 4.55833 10.3083 5.675 8.57501C6.79167 6.84167 8.325 5.32501 10.275 4.02501C10.6417 3.77501 11.0208 3.76251 11.4125 3.98751C11.8042 4.21251 12 4.55001 12 5.00001V6.30001C12 6.86667 12.1958 7.34167 12.5875 7.72501C12.9792 8.10834 13.4583 8.30001 14.025 8.30001C14.3083 8.30001 14.5792 8.23751 14.8375 8.11251C15.0958 7.98751 15.325 7.80834 15.525 7.57501C15.6583 7.40834 15.8292 7.30417 16.0375 7.26251C16.2458 7.22084 16.4417 7.26667 16.625 7.40001C17.675 8.15001 18.5 9.10834 19.1 10.275C19.7 11.4417 20 12.6833 20 14C20 15.4667 19.6417 16.8042 18.925 18.0125C18.2083 19.2208 17.2667 20.175 16.1 20.875C16.3833 20.475 16.6042 20.0375 16.7625 19.5625C16.9208 19.0875 17 18.5833 17 18.05C17 17.3833 16.875 16.7542 16.625 16.1625C16.375 15.5708 16.0167 15.0417 15.55 14.575L12 11.1L8.475 14.575C7.99167 15.0583 7.625 15.5917 7.375 16.175C7.125 16.7583 7 17.3833 7 18.05C7 18.5833 7.07917 19.0875 7.2375 19.5625C7.39583 20.0375 7.61667 20.475 7.9 20.875C6.73333 20.175 5.79167 19.2208 5.075 18.0125C4.35833 16.8042 4 15.4667 4 14ZM12 13.9L14.125 15.975C14.4083 16.2583 14.625 16.575 14.775 16.925C14.925 17.275 15 17.65 15 18.05C15 18.8667 14.7083 19.5625 14.125 20.1375C13.5417 20.7125 12.8333 21 12 21C11.1667 21 10.4583 20.7125 9.875 20.1375C9.29167 19.5625 9 18.8667 9 18.05C9 17.6667 9.075 17.2958 9.225 16.9375C9.375 16.5792 9.59167 16.2583 9.875 15.975L12 13.9Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/bus.svg b/@stellar/design-system/src/assets/icons/bus.svg
new file mode 100644
index 00000000..ae2892d8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/bus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 19V21.2C8.5 21.48 8.5 21.62 8.4455 21.727C8.39757 21.8211 8.32108 21.8976 8.227 21.9455C8.12004 22 7.98003 22 7.7 22H5.8C5.51997 22 5.37996 22 5.273 21.9455C5.17892 21.8976 5.10243 21.8211 5.0545 21.727C5 21.62 5 21.48 5 21.2V19M19 19V21.2C19 21.48 19 21.62 18.9455 21.727C18.8976 21.8211 18.8211 21.8976 18.727 21.9455C18.62 22 18.48 22 18.2 22H16.3C16.02 22 15.88 22 15.773 21.9455C15.6789 21.8976 15.6024 21.8211 15.5545 21.727C15.5 21.62 15.5 21.48 15.5 21.2V19M3 12H21M3 5.5H21M6.5 15.5H8M16 15.5H17.5M7.8 19H16.2C17.8802 19 18.7202 19 19.362 18.673C19.9265 18.3854 20.3854 17.9265 20.673 17.362C21 16.7202 21 15.8802 21 14.2V6.8C21 5.11984 21 4.27976 20.673 3.63803C20.3854 3.07354 19.9265 2.6146 19.362 2.32698C18.7202 2 17.8802 2 16.2 2H7.8C6.11984 2 5.27976 2 4.63803 2.32698C4.07354 2.6146 3.6146 3.07354 3.32698 3.63803C3 4.27976 3 5.11984 3 6.8V14.2C3 15.8802 3 16.7202 3.32698 17.362C3.6146 17.9265 4.07354 18.3854 4.63803 18.673C5.27976 19 6.11984 19 7.8 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calculator.svg b/@stellar/design-system/src/assets/icons/calculator.svg
new file mode 100644
index 00000000..0263ed50
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calculator.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 6.5L6.5 17.5M8.5 10.5V6.5M6.5 8.5H10.5M13.5 15.5H17.5M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-check-01.svg b/@stellar/design-system/src/assets/icons/calendar-check-01.svg
new file mode 100644
index 00000000..3d8fdc3a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-check-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M16 2V6M8 2V6M9 16L11 18L15.5 13.5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-check-02.svg b/@stellar/design-system/src/assets/icons/calendar-check-02.svg
new file mode 100644
index 00000000..1bdf4a72
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-check-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M21 12.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12M16 2V6M8 2V6M14.5 19L16.5 21L21 16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-date.svg b/@stellar/design-system/src/assets/icons/calendar-date.svg
new file mode 100644
index 00000000..1272d795
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-date.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M16 2V6M8 2V6M10.5 14L12 13V18M10.75 18H13.25M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-heart-01.svg b/@stellar/design-system/src/assets/icons/calendar-heart-01.svg
new file mode 100644
index 00000000..46de0466
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-heart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 8H3M16 2V5M8 2V5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22ZM11.9973 12.3306C11.1975 11.4216 9.8639 11.1771 8.86188 12.0094C7.85986 12.8418 7.71879 14.2335 8.50568 15.2179C9.077 15.9327 10.6593 17.3397 11.4833 18.0569C11.662 18.2124 11.7513 18.2902 11.856 18.321C11.9466 18.3477 12.0479 18.3477 12.1386 18.321C12.2432 18.2902 12.3325 18.2124 12.5112 18.0569C13.3353 17.3397 14.9175 15.9327 15.4888 15.2179C16.2757 14.2335 16.1519 12.8331 15.1326 12.0094C14.1134 11.1858 12.797 11.4216 11.9973 12.3306Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-heart-02.svg b/@stellar/design-system/src/assets/icons/calendar-heart-02.svg
new file mode 100644
index 00000000..56340461
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-heart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M21 11.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12.5M16 2V6M8 2V6M17.4976 15.7119C16.7978 14.9328 15.6309 14.7232 14.7541 15.4367C13.8774 16.1501 13.7539 17.343 14.4425 18.1868C15.131 19.0306 17.4976 21 17.4976 21C17.4976 21 19.8642 19.0306 20.5527 18.1868C21.2413 17.343 21.1329 16.1426 20.2411 15.4367C19.3492 14.7307 18.1974 14.9328 17.4976 15.7119Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-minus-01.svg b/@stellar/design-system/src/assets/icons/calendar-minus-01.svg
new file mode 100644
index 00000000..b89dad4b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-minus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 15H15M21 8H3M16 2V5M8 2V5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-minus-02.svg b/@stellar/design-system/src/assets/icons/calendar-minus-02.svg
new file mode 100644
index 00000000..48ae822c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-minus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 18H21M21 11.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12.5M21 10H3M16 2V6M8 2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-month.svg b/@stellar/design-system/src/assets/icons/calendar-month.svg
deleted file mode 100644
index dcb700a2..00000000
--- a/@stellar/design-system/src/assets/icons/calendar-month.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6960)"><path d="M12 14C11.7167 14 11.4793 13.904 11.288 13.712C11.096 13.5207 11 13.2833 11 13C11 12.7167 11.096 12.479 11.288 12.287C11.4793 12.0957 11.7167 12 12 12C12.2833 12 12.521 12.0957 12.713 12.287C12.9043 12.479 13 12.7167 13 13C13 13.2833 12.9043 13.5207 12.713 13.712C12.521 13.904 12.2833 14 12 14ZM8 14C7.71667 14 7.479 13.904 7.287 13.712C7.09567 13.5207 7 13.2833 7 13C7 12.7167 7.09567 12.479 7.287 12.287C7.479 12.0957 7.71667 12 8 12C8.28333 12 8.521 12.0957 8.713 12.287C8.90433 12.479 9 12.7167 9 13C9 13.2833 8.90433 13.5207 8.713 13.712C8.521 13.904 8.28333 14 8 14ZM16 14C15.7167 14 15.4793 13.904 15.288 13.712C15.096 13.5207 15 13.2833 15 13C15 12.7167 15.096 12.479 15.288 12.287C15.4793 12.0957 15.7167 12 16 12C16.2833 12 16.5207 12.0957 16.712 12.287C16.904 12.479 17 12.7167 17 13C17 13.2833 16.904 13.5207 16.712 13.712C16.5207 13.904 16.2833 14 16 14ZM12 18C11.7167 18 11.4793 17.904 11.288 17.712C11.096 17.5207 11 17.2833 11 17C11 16.7167 11.096 16.4793 11.288 16.288C11.4793 16.096 11.7167 16 12 16C12.2833 16 12.521 16.096 12.713 16.288C12.9043 16.4793 13 16.7167 13 17C13 17.2833 12.9043 17.5207 12.713 17.712C12.521 17.904 12.2833 18 12 18ZM8 18C7.71667 18 7.479 17.904 7.287 17.712C7.09567 17.5207 7 17.2833 7 17C7 16.7167 7.09567 16.4793 7.287 16.288C7.479 16.096 7.71667 16 8 16C8.28333 16 8.521 16.096 8.713 16.288C8.90433 16.4793 9 16.7167 9 17C9 17.2833 8.90433 17.5207 8.713 17.712C8.521 17.904 8.28333 18 8 18ZM16 18C15.7167 18 15.4793 17.904 15.288 17.712C15.096 17.5207 15 17.2833 15 17C15 16.7167 15.096 16.4793 15.288 16.288C15.4793 16.096 15.7167 16 16 16C16.2833 16 16.5207 16.096 16.712 16.288C16.904 16.4793 17 16.7167 17 17C17 17.2833 16.904 17.5207 16.712 17.712C16.5207 17.904 16.2833 18 16 18ZM5 22C4.45 22 3.979 21.8043 3.587 21.413C3.19567 21.021 3 20.55 3 20V6C3 5.45 3.19567 4.97933 3.587 4.588C3.979 4.196 4.45 4 5 4H6V3C6 2.71667 6.09567 2.479 6.287 2.287C6.479 2.09567 6.71667 2 7 2C7.28333 2 7.521 2.09567 7.713 2.287C7.90433 2.479 8 2.71667 8 3V4H16V3C16 2.71667 16.096 2.479 16.288 2.287C16.4793 2.09567 16.7167 2 17 2C17.2833 2 17.5207 2.09567 17.712 2.287C17.904 2.479 18 2.71667 18 3V4H19C19.55 4 20.021 4.196 20.413 4.588C20.8043 4.97933 21 5.45 21 6V20C21 20.55 20.8043 21.021 20.413 21.413C20.021 21.8043 19.55 22 19 22H5ZM5 20H19V10H5V20Z"/></g><defs><clipPath id="clip0_1113_6960"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-plus-01.svg b/@stellar/design-system/src/assets/icons/calendar-plus-01.svg
new file mode 100644
index 00000000..5f2d6b91
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-plus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-plus-02.svg b/@stellar/design-system/src/assets/icons/calendar-plus-02.svg
new file mode 100644
index 00000000..9167e02b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar-plus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 11.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12.5M21 10H3M16 2V6M8 2V6M18 21V15M15 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar-today.svg b/@stellar/design-system/src/assets/icons/calendar-today.svg
deleted file mode 100644
index 8122f434..00000000
--- a/@stellar/design-system/src/assets/icons/calendar-today.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6957)"><path d="M5 22C4.45 22 3.979 21.8043 3.587 21.413C3.19567 21.021 3 20.55 3 20V6C3 5.45 3.19567 4.97933 3.587 4.588C3.979 4.196 4.45 4 5 4H6V2.975C6 2.69167 6.09567 2.45833 6.287 2.275C6.479 2.09167 6.71667 2 7 2C7.28333 2 7.521 2.09567 7.713 2.287C7.90433 2.479 8 2.71667 8 3V4H16V2.975C16 2.69167 16.096 2.45833 16.288 2.275C16.4793 2.09167 16.7167 2 17 2C17.2833 2 17.5207 2.09567 17.712 2.287C17.904 2.479 18 2.71667 18 3V4H19C19.55 4 20.021 4.196 20.413 4.588C20.8043 4.97933 21 5.45 21 6V20C21 20.55 20.8043 21.021 20.413 21.413C20.021 21.8043 19.55 22 19 22H5ZM5 20H19V10H5V20Z"/></g><defs><clipPath id="clip0_1113_6957"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/calendar.svg b/@stellar/design-system/src/assets/icons/calendar.svg
new file mode 100644
index 00000000..da89c8c3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/calendar.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-01.svg b/@stellar/design-system/src/assets/icons/camera-01.svg
new file mode 100644
index 00000000..2eaeb400
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-02.svg b/@stellar/design-system/src/assets/icons/camera-02.svg
new file mode 100644
index 00000000..b3388934
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7.70178C2 6.20963 3.20963 5 4.70178 5C5.47706 5 6.16537 4.5039 6.41053 3.7684L6.5 3.5C6.54219 3.37343 6.56329 3.31014 6.58586 3.254C6.87405 2.53712 7.54939 2.05037 8.32061 2.00366C8.38101 2 8.44772 2 8.58114 2H15.4189C15.5523 2 15.619 2 15.6794 2.00366C16.4506 2.05037 17.126 2.53712 17.4141 3.254C17.4367 3.31014 17.4578 3.37343 17.5 3.5L17.5895 3.7684C17.8346 4.5039 18.5229 5 19.2982 5C20.7904 5 22 6.20963 22 7.70178V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7.70178Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-03.svg b/@stellar/design-system/src/assets/icons/camera-03.svg
new file mode 100644
index 00000000..60bfdff7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7.8C2 6.11984 2 5.27976 2.32698 4.63803C2.6146 4.07354 3.07354 3.6146 3.63803 3.32698C4.27976 3 5.11984 3 6.8 3H17.2C18.8802 3 19.7202 3 20.362 3.32698C20.9265 3.6146 21.3854 4.07354 21.673 4.63803C22 5.27976 22 6.11984 22 7.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-lens.svg b/@stellar/design-system/src/assets/icons/camera-lens.svg
new file mode 100644
index 00000000..9ef4d12f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-lens.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.4155 15.3411C18.5924 17.3495 14.8895 17.5726 11.877 16M2.58445 8.65889C5.41439 6.64566 9.12844 6.42638 12.1448 8.01149M15.3737 14.1243C18.2604 12.305 19.9319 8.97413 19.601 5.51222M8.58184 9.90371C5.72231 11.7291 4.06959 15.0436 4.39878 18.4878M15.5269 10.137C15.3939 6.72851 13.345 3.61684 10.1821 2.17222M8.47562 13.9256C8.63112 17.3096 10.6743 20.392 13.8177 21.8278M19.071 4.92893C22.9763 8.83418 22.9763 15.1658 19.071 19.071C15.1658 22.9763 8.83416 22.9763 4.92893 19.071C1.02369 15.1658 1.02369 8.83416 4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.071 4.92893ZM14.8284 9.17157C16.3905 10.7337 16.3905 13.2663 14.8284 14.8284C13.2663 16.3905 10.7337 16.3905 9.17157 14.8284C7.60948 13.2663 7.60948 10.7337 9.17157 9.17157C10.7337 7.60948 13.2663 7.60948 14.8284 9.17157Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-off.svg b/@stellar/design-system/src/assets/icons/camera-off.svg
new file mode 100644
index 00000000..45f7ad72
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 5H5.41886C5.55228 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V18C22 19.0849 21.4241 20.0353 20.5613 20.5622M15.0641 15.0714C15.6482 14.3761 16 13.4791 16 12.5C16 10.2909 14.2091 8.5 12 8.5C11.0216 8.5 10.1252 8.8513 9.43012 9.43464M22 22L2 2M2 7.5V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H15.5M12 16.5C9.79086 16.5 8 14.7091 8 12.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/camera-plus.svg b/@stellar/design-system/src/assets/icons/camera-plus.svg
new file mode 100644
index 00000000..ddbc4ca7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/camera-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 11.5V14.6C22 16.8402 22 17.9603 21.564 18.816C21.1805 19.5686 20.5686 20.1805 19.816 20.564C18.9603 21 17.8402 21 15.6 21H8.4C6.15979 21 5.03969 21 4.18404 20.564C3.43139 20.1805 2.81947 19.5686 2.43597 18.816C2 17.9603 2 16.8402 2 14.6V9.4C2 7.15979 2 6.03969 2.43597 5.18404C2.81947 4.43139 3.43139 3.81947 4.18404 3.43597C5.03969 3 6.15979 3 8.4 3H12.5M19 8V2M16 5H22M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/car-01.svg b/@stellar/design-system/src/assets/icons/car-01.svg
new file mode 100644
index 00000000..a84b1d11
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/car-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 13H8M2 9L4 10L5.27064 6.18807C5.53292 5.40125 5.66405 5.00784 5.90729 4.71698C6.12208 4.46013 6.39792 4.26132 6.70951 4.13878C7.06236 4 7.47705 4 8.30643 4H15.6936C16.523 4 16.9376 4 17.2905 4.13878C17.6021 4.26132 17.8779 4.46013 18.0927 4.71698C18.3359 5.00784 18.4671 5.40125 18.7294 6.18807L20 10L22 9M16 13H19M6.8 10H17.2C18.8802 10 19.7202 10 20.362 10.327C20.9265 10.6146 21.3854 11.0735 21.673 11.638C22 12.2798 22 13.1198 22 14.8V17.5C22 17.9647 22 18.197 21.9616 18.3902C21.8038 19.1836 21.1836 19.8038 20.3902 19.9616C20.197 20 19.9647 20 19.5 20H19C17.8954 20 17 19.1046 17 18C17 17.7239 16.7761 17.5 16.5 17.5H7.5C7.22386 17.5 7 17.7239 7 18C7 19.1046 6.10457 20 5 20H4.5C4.03534 20 3.80302 20 3.60982 19.9616C2.81644 19.8038 2.19624 19.1836 2.03843 18.3902C2 18.197 2 17.9647 2 17.5V14.8C2 13.1198 2 12.2798 2.32698 11.638C2.6146 11.0735 3.07354 10.6146 3.63803 10.327C4.27976 10 5.11984 10 6.8 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/car-02.svg b/@stellar/design-system/src/assets/icons/car-02.svg
new file mode 100644
index 00000000..54b364f9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/car-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 10V6.2C19 5.0799 19 4.51984 18.782 4.09202C18.5903 3.71569 18.2843 3.40973 17.908 3.21799C17.4802 3 16.9201 3 15.8 3H8.2C7.07989 3 6.51984 3 6.09202 3.21799C5.71569 3.40973 5.40973 3.71569 5.21799 4.09202C5 4.51984 5 5.0799 5 6.2V10M5 9H2V8M19 9H22V8M6 13.5H6.01M18 13.5H18.01M6.8 10H17.2C18.8802 10 19.7202 10 20.362 10.327C20.9265 10.6146 21.3854 11.0735 21.673 11.638C22 12.2798 22 13.1198 22 14.8V18C22 18.9319 22 19.3978 21.8478 19.7654C21.6448 20.2554 21.2554 20.6448 20.7654 20.8478C20.3978 21 19.9319 21 19 21H18.4C18.0284 21 17.8426 21 17.6871 20.9754C16.8313 20.8398 16.1602 20.1687 16.0246 19.3129C16 19.1574 16 18.9716 16 18.6C16 18.5071 16 18.4606 15.9938 18.4218C15.96 18.2078 15.7922 18.04 15.5782 18.0062C15.5394 18 15.4929 18 15.4 18H8.6C8.5071 18 8.46065 18 8.42178 18.0062C8.20784 18.04 8.04004 18.2078 8.00616 18.4218C8 18.4606 8 18.5071 8 18.6C8 18.9716 8 19.1574 7.97538 19.3129C7.83983 20.1687 7.16865 20.8398 6.31287 20.9754C6.1574 21 5.9716 21 5.6 21H5C4.06812 21 3.60218 21 3.23463 20.8478C2.74458 20.6448 2.35523 20.2554 2.15224 19.7654C2 19.3978 2 18.9319 2 18V14.8C2 13.1198 2 12.2798 2.32698 11.638C2.6146 11.0735 3.07354 10.6146 3.63803 10.327C4.27976 10 5.11984 10 6.8 10ZM6.5 13.5C6.5 13.7761 6.27614 14 6 14C5.72386 14 5.5 13.7761 5.5 13.5C5.5 13.2239 5.72386 13 6 13C6.27614 13 6.5 13.2239 6.5 13.5ZM18.5 13.5C18.5 13.7761 18.2761 14 18 14C17.7239 14 17.5 13.7761 17.5 13.5C17.5 13.2239 17.7239 13 18 13C18.2761 13 18.5 13.2239 18.5 13.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/certificate-01.svg b/@stellar/design-system/src/assets/icons/certificate-01.svg
new file mode 100644
index 00000000..6759e9b2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/certificate-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 20H5C3.89543 20 3 19.1046 3 18V4C3 2.89543 3.89543 2 5 2H19C20.1046 2 21 2.89543 21 4V18C21 19.1046 20.1046 20 19 20H17.5M12 19C13.6569 19 15 17.6569 15 16C15 14.3431 13.6569 13 12 13C10.3431 13 9 14.3431 9 16C9 17.6569 10.3431 19 12 19ZM12 19L12.0214 18.9998L8.82867 22.1926L6.00024 19.3641L9.01965 16.3447M12 19L15.1928 22.1926L18.0212 19.3641L15.0018 16.3447M9 6H15M7 9.5H17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/certificate-02.svg b/@stellar/design-system/src/assets/icons/certificate-02.svg
new file mode 100644
index 00000000..87e785c0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/certificate-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 18.5H15M7 15H17M5 2H19C20.1046 2 21 2.99492 21 4.22222V19.7778C21 21.0051 20.1046 22 19 22H5C3.89543 22 3 21.0051 3 19.7778V4.22222C3 2.99492 3.89543 2 5 2ZM11.9976 6.21194C11.2978 5.4328 10.1309 5.22321 9.25414 5.93667C8.37738 6.65013 8.25394 7.84299 8.94247 8.6868C9.631 9.53061 11.9976 11.5 11.9976 11.5C11.9976 11.5 14.3642 9.53061 15.0527 8.6868C15.7413 7.84299 15.6329 6.64262 14.7411 5.93667C13.8492 5.23072 12.6974 5.4328 11.9976 6.21194Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chart-breakout-circle.svg b/@stellar/design-system/src/assets/icons/chart-breakout-circle.svg
new file mode 100644
index 00000000..c133ad5e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chart-breakout-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.5 3.5V2M19.4393 4.56066L20.5 3.5M20.5103 8.5H22.0103M21.9506 13C21.4489 18.0533 17.1853 22 12 22C6.47715 22 2 17.5228 2 12C2 6.81465 5.94668 2.5511 11 2.04938M12 8H16V12M15.6197 8C13.2653 11.3276 9.38636 13.5 5 13.5C3.9971 13.5 3.02072 13.3864 2.08302 13.1715" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chart-breakout-square.svg b/@stellar/design-system/src/assets/icons/chart-breakout-square.svg
new file mode 100644
index 00000000..dd94caab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chart-breakout-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V13M12 8H16V12M15.5 3.5V2M19.4393 4.56066L20.5 3.5M20.5103 8.5H22.0103M3 13.3471C3.65194 13.4478 4.31987 13.5 5 13.5C9.38636 13.5 13.2653 11.3276 15.6197 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chat-bubble.svg b/@stellar/design-system/src/assets/icons/chat-bubble.svg
deleted file mode 100644
index e82b7871..00000000
--- a/@stellar/design-system/src/assets/icons/chat-bubble.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6948)"><path d="M2 19.575V4C2 3.45 2.196 2.979 2.588 2.587C2.97933 2.19567 3.45 2 4 2H20C20.55 2 21.021 2.19567 21.413 2.587C21.8043 2.979 22 3.45 22 4V16C22 16.55 21.8043 17.021 21.413 17.413C21.021 17.8043 20.55 18 20 18H6L3.7 20.3C3.38333 20.6167 3.02067 20.6873 2.612 20.512C2.204 20.3373 2 20.025 2 19.575Z"/></g><defs><clipPath id="clip0_1113_6948"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chat.svg b/@stellar/design-system/src/assets/icons/chat.svg
deleted file mode 100644
index 056342ee..00000000
--- a/@stellar/design-system/src/assets/icons/chat.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6951)"><path d="M7 14H13.025C13.3083 14 13.5417 13.904 13.725 13.712C13.9083 13.5207 14 13.2833 14 13C14 12.7167 13.9043 12.479 13.713 12.287C13.521 12.0957 13.2833 12 13 12H6.975C6.69167 12 6.45833 12.0957 6.275 12.287C6.09167 12.479 6 12.7167 6 13C6 13.2833 6.09567 13.5207 6.287 13.712C6.479 13.904 6.71667 14 7 14ZM7 11H17.025C17.3083 11 17.5417 10.904 17.725 10.712C17.9083 10.5207 18 10.2833 18 10C18 9.71667 17.904 9.479 17.712 9.287C17.5207 9.09567 17.2833 9 17 9H6.975C6.69167 9 6.45833 9.09567 6.275 9.287C6.09167 9.479 6 9.71667 6 10C6 10.2833 6.09567 10.5207 6.287 10.712C6.479 10.904 6.71667 11 7 11ZM7 8H17.025C17.3083 8 17.5417 7.90433 17.725 7.713C17.9083 7.521 18 7.28333 18 7C18 6.71667 17.904 6.479 17.712 6.287C17.5207 6.09567 17.2833 6 17 6H6.975C6.69167 6 6.45833 6.09567 6.275 6.287C6.09167 6.479 6 6.71667 6 7C6 7.28333 6.09567 7.521 6.287 7.713C6.479 7.90433 6.71667 8 7 8ZM2 19.575V4C2 3.45 2.196 2.979 2.588 2.587C2.97933 2.19567 3.45 2 4 2H20C20.55 2 21.021 2.19567 21.413 2.587C21.8043 2.979 22 3.45 22 4V16C22 16.55 21.8043 17.021 21.413 17.413C21.021 17.8043 20.55 18 20 18H6L3.7 20.3C3.38333 20.6167 3.02067 20.6873 2.612 20.512C2.204 20.3373 2 20.025 2 19.575Z"/></g><defs><clipPath id="clip0_1113_6951"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-circle-broken.svg b/@stellar/design-system/src/assets/icons/check-circle-broken.svg
new file mode 100644
index 00000000..6b413fdf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-circle-broken.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 11.0857V12.0057C21.9988 14.1621 21.3005 16.2604 20.0093 17.9875C18.7182 19.7147 16.9033 20.9782 14.8354 21.5896C12.7674 22.201 10.5573 22.1276 8.53447 21.3803C6.51168 20.633 4.78465 19.2518 3.61096 17.4428C2.43727 15.6338 1.87979 13.4938 2.02168 11.342C2.16356 9.19029 2.99721 7.14205 4.39828 5.5028C5.79935 3.86354 7.69279 2.72111 9.79619 2.24587C11.8996 1.77063 14.1003 1.98806 16.07 2.86572M22 4L12 14.01L9 11.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-circle.svg b/@stellar/design-system/src/assets/icons/check-circle.svg
index a0adff2e..5835a391 100644
--- a/@stellar/design-system/src/assets/icons/check-circle.svg
+++ b/@stellar/design-system/src/assets/icons/check-circle.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6945)"><path d="M10.6 13.8L8.425 11.625C8.24167 11.4417 8.01667 11.35 7.75 11.35C7.48333 11.35 7.25 11.45 7.05 11.65C6.86667 11.8333 6.775 12.0667 6.775 12.35C6.775 12.6333 6.86667 12.8667 7.05 13.05L9.9 15.9C10.0833 16.0833 10.3167 16.175 10.6 16.175C10.8833 16.175 11.1167 16.0833 11.3 15.9L16.975 10.225C17.1583 10.0417 17.25 9.81667 17.25 9.55C17.25 9.28333 17.15 9.05 16.95 8.85C16.7667 8.66667 16.5333 8.575 16.25 8.575C15.9667 8.575 15.7333 8.66667 15.55 8.85L10.6 13.8ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6945"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-done-01.svg b/@stellar/design-system/src/assets/icons/check-done-01.svg
new file mode 100644
index 00000000..2ac657b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-done-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 15L8 17L12.5 12.5M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-done-02.svg b/@stellar/design-system/src/assets/icons/check-done-02.svg
new file mode 100644
index 00000000..d6a508d1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-done-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.0799 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.0799 16 5.2 16H8M12 15L14 17L18.5 12.5M11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H11.2C10.0799 8 9.51984 8 9.09202 8.21799C8.71569 8.40973 8.40973 8.71569 8.21799 9.09202C8 9.51984 8 10.0799 8 11.2V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-heart.svg b/@stellar/design-system/src/assets/icons/check-heart.svg
new file mode 100644
index 00000000..79713cc2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-heart.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 11L11 13L15.5 8.5M11.9932 5.13581C9.9938 2.7984 6.65975 2.16964 4.15469 4.31001C1.64964 6.45038 1.29697 10.029 3.2642 12.5604C4.75009 14.4724 8.97129 18.311 10.948 20.0749C11.3114 20.3991 11.4931 20.5613 11.7058 20.6251C11.8905 20.6805 12.0958 20.6805 12.2805 20.6251C12.4932 20.5613 12.6749 20.3991 13.0383 20.0749C15.015 18.311 19.2362 14.4724 20.7221 12.5604C22.6893 10.029 22.3797 6.42787 19.8316 4.31001C17.2835 2.19216 13.9925 2.7984 11.9932 5.13581Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-square-broken.svg b/@stellar/design-system/src/assets/icons/check-square-broken.svg
new file mode 100644
index 00000000..fe87af98
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-square-broken.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 11L12 14L22 4M16 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-square.svg b/@stellar/design-system/src/assets/icons/check-square.svg
new file mode 100644
index 00000000..5dbf8110
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 12L10.5 15L16.5 9M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-verified-01.svg b/@stellar/design-system/src/assets/icons/check-verified-01.svg
new file mode 100644
index 00000000..5d1281b8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-verified-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 12L11 14L15.5 9.5M7.33377 3.8187C8.1376 3.75455 8.90071 3.43846 9.51447 2.91542C10.9467 1.69486 13.0533 1.69486 14.4855 2.91542C15.0993 3.43846 15.8624 3.75455 16.6662 3.8187C18.5421 3.96839 20.0316 5.45794 20.1813 7.33377C20.2455 8.1376 20.5615 8.90071 21.0846 9.51447C22.3051 10.9467 22.3051 13.0533 21.0846 14.4855C20.5615 15.0993 20.2455 15.8624 20.1813 16.6662C20.0316 18.5421 18.5421 20.0316 16.6662 20.1813C15.8624 20.2455 15.0993 20.5615 14.4855 21.0846C13.0533 22.3051 10.9467 22.3051 9.51447 21.0846C8.90071 20.5615 8.1376 20.2455 7.33377 20.1813C5.45794 20.0316 3.96839 18.5421 3.8187 16.6662C3.75455 15.8624 3.43846 15.0993 2.91542 14.4855C1.69486 13.0533 1.69486 10.9467 2.91542 9.51447C3.43846 8.90071 3.75455 8.1376 3.8187 7.33377C3.96839 5.45794 5.45794 3.96839 7.33377 3.8187Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-verified-02.svg b/@stellar/design-system/src/assets/icons/check-verified-02.svg
new file mode 100644
index 00000000..078b5886
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-verified-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 12L11 14L15.5 9.5M17.9012 4.99851C18.1071 5.49653 18.5024 5.8924 19.0001 6.09907L20.7452 6.82198C21.2433 7.02828 21.639 7.42399 21.8453 7.92206C22.0516 8.42012 22.0516 8.97974 21.8453 9.47781L21.1229 11.2218C20.9165 11.7201 20.9162 12.2803 21.1236 12.7783L21.8447 14.5218C21.9469 14.7685 21.9996 15.0329 21.9996 15.2999C21.9997 15.567 21.9471 15.8314 21.8449 16.0781C21.7427 16.3249 21.5929 16.549 21.4041 16.7378C21.2152 16.9266 20.991 17.0764 20.7443 17.1785L19.0004 17.9009C18.5023 18.1068 18.1065 18.5021 17.8998 18.9998L17.1769 20.745C16.9706 21.2431 16.575 21.6388 16.0769 21.8451C15.5789 22.0514 15.0193 22.0514 14.5212 21.8451L12.7773 21.1227C12.2792 20.9169 11.7198 20.9173 11.2221 21.1239L9.47689 21.8458C8.97912 22.0516 8.42001 22.0514 7.92237 21.8453C7.42473 21.6391 7.02925 21.2439 6.82281 20.7464L6.09972 19.0006C5.8938 18.5026 5.49854 18.1067 5.00085 17.9L3.25566 17.1771C2.75783 16.9709 2.36226 16.5754 2.15588 16.0777C1.94951 15.5799 1.94923 15.0205 2.1551 14.5225L2.87746 12.7786C3.08325 12.2805 3.08283 11.7211 2.8763 11.2233L2.15497 9.47678C2.0527 9.2301 2.00004 8.96568 2 8.69863C1.99996 8.43159 2.05253 8.16715 2.15472 7.92043C2.25691 7.67372 2.40671 7.44955 2.59557 7.26075C2.78442 7.07195 3.00862 6.92222 3.25537 6.8201L4.9993 6.09772C5.49687 5.89197 5.89248 5.4972 6.0993 5.00006L6.82218 3.25481C7.02848 2.75674 7.42418 2.36103 7.92222 2.15473C8.42027 1.94842 8.97987 1.94842 9.47792 2.15473L11.2218 2.87712C11.7199 3.08291 12.2793 3.08249 12.7771 2.87595L14.523 2.15585C15.021 1.94966 15.5804 1.9497 16.0784 2.15597C16.5763 2.36223 16.972 2.75783 17.1783 3.25576L17.9014 5.00153L17.9012 4.99851Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check-verified-03.svg b/@stellar/design-system/src/assets/icons/check-verified-03.svg
new file mode 100644
index 00000000..bd7389d8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/check-verified-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 12L11 14L15.5 9.5M9.2019 20.6009C9.52965 20.5575 9.86073 20.6464 10.1218 20.8475L11.3251 21.7708C11.7228 22.0764 12.2761 22.0764 12.6727 21.7708L13.9215 20.812C14.1548 20.6331 14.4492 20.5542 14.7403 20.5931L16.3024 20.7986C16.799 20.8642 17.2779 20.5875 17.4701 20.1242L18.0712 18.6709C18.1834 18.3987 18.3989 18.1832 18.6711 18.0709L20.1243 17.4698C20.5876 17.2787 20.8643 16.7988 20.7987 16.3021L20.601 14.7966C20.5576 14.4688 20.6465 14.1377 20.8476 13.8766L21.7709 12.6733C22.0764 12.2755 22.0764 11.7222 21.7709 11.3256L20.812 10.0767C20.6332 9.84339 20.5543 9.54896 20.5932 9.25785L20.7987 7.69568C20.8643 7.19902 20.5876 6.72015 20.1243 6.52793L18.6711 5.92684C18.3989 5.81462 18.1834 5.59907 18.0712 5.32685L17.4701 3.87356C17.279 3.41024 16.799 3.13358 16.3024 3.19913L14.7403 3.40468C14.4492 3.44468 14.1548 3.36579 13.9226 3.18802L12.6738 2.22916C12.2761 1.92361 11.7228 1.92361 11.3262 2.22916L10.0774 3.18802C9.84407 3.36579 9.54965 3.44468 9.25856 3.40691L7.69647 3.20136C7.19984 3.1358 6.721 3.41246 6.52879 3.87578L5.92884 5.32907C5.81552 5.60018 5.59998 5.81573 5.32889 5.92906L3.87568 6.52904C3.41238 6.72126 3.13574 7.20013 3.20129 7.69679L3.40683 9.25897C3.4446 9.55007 3.36572 9.8445 3.18796 10.0767L2.22915 11.3256C1.92362 11.7233 1.92362 12.2767 2.22915 12.6733L3.18796 13.9222C3.36683 14.1555 3.44571 14.4499 3.40683 14.741L3.20129 16.3032C3.13574 16.7999 3.41238 17.2787 3.87568 17.471L5.32889 18.0721C5.60109 18.1843 5.81663 18.3998 5.92884 18.672L6.5299 20.1253C6.721 20.5887 7.20096 20.8653 7.69758 20.7998L9.2019 20.6009Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/check.svg b/@stellar/design-system/src/assets/icons/check.svg
index ccf5f2bd..3c876dd4 100644
--- a/@stellar/design-system/src/assets/icons/check.svg
+++ b/@stellar/design-system/src/assets/icons/check.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.55012 17.575C9.41679 17.575 9.29179 17.554 9.17512 17.512C9.05846 17.4707 8.95012 17.4 8.85012 17.3L4.55012 13C4.36679 12.8167 4.27912 12.579 4.28712 12.287C4.29579 11.9957 4.39179 11.7584 4.57512 11.575C4.75846 11.3917 4.99179 11.3 5.27512 11.3C5.55846 11.3 5.79179 11.3917 5.97512 11.575L9.55012 15.15L18.0251 6.67502C18.2085 6.49169 18.4461 6.40002 18.7381 6.40002C19.0295 6.40002 19.2668 6.49169 19.4501 6.67502C19.6335 6.85836 19.7251 7.09569 19.7251 7.38702C19.7251 7.67902 19.6335 7.91669 19.4501 8.10002L10.2501 17.3C10.1501 17.4 10.0418 17.4707 9.92512 17.512C9.80846 17.554 9.68346 17.575 9.55012 17.575Z"/></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 6L9 17L4 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-double-down.svg b/@stellar/design-system/src/assets/icons/chevron-double-down.svg
deleted file mode 100644
index bb19a470..00000000
--- a/@stellar/design-system/src/assets/icons/chevron-double-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6942)"><path d="M12 12.575C11.8667 12.575 11.7417 12.554 11.625 12.512C11.5083 12.4707 11.4 12.4 11.3 12.3L6.70002 7.7C6.51668 7.51666 6.42102 7.28733 6.41302 7.012C6.40435 6.73733 6.50002 6.5 6.70002 6.3C6.88335 6.11666 7.11668 6.025 7.40002 6.025C7.68335 6.025 7.91668 6.11666 8.10002 6.3L12 10.175L15.9 6.3C16.0833 6.11666 16.3123 6.02066 16.587 6.012C16.8623 6.004 17.1 6.1 17.3 6.3C17.4833 6.48333 17.575 6.71666 17.575 7C17.575 7.28333 17.4833 7.51666 17.3 7.7L12.7 12.3C12.6 12.4 12.4917 12.4707 12.375 12.512C12.2583 12.554 12.1333 12.575 12 12.575ZM12 18.575C11.8667 18.575 11.7417 18.554 11.625 18.512C11.5083 18.4707 11.4 18.4 11.3 18.3L6.70002 13.7C6.51668 13.5167 6.42102 13.2873 6.41302 13.012C6.40435 12.7373 6.50002 12.5 6.70002 12.3C6.88335 12.1167 7.11668 12.025 7.40002 12.025C7.68335 12.025 7.91668 12.1167 8.10002 12.3L12 16.175L15.9 12.3C16.0833 12.1167 16.3123 12.0207 16.587 12.012C16.8623 12.004 17.1 12.1 17.3 12.3C17.4833 12.4833 17.575 12.7167 17.575 13C17.575 13.2833 17.4833 13.5167 17.3 13.7L12.7 18.3C12.6 18.4 12.4917 18.4707 12.375 18.512C12.2583 18.554 12.1333 18.575 12 18.575Z"/></g><defs><clipPath id="clip0_1113_6942"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-double-left.svg b/@stellar/design-system/src/assets/icons/chevron-double-left.svg
deleted file mode 100644
index 7748124d..00000000
--- a/@stellar/design-system/src/assets/icons/chevron-double-left.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6939)"><path d="M16.9 17.3L12.3 12.7C12.2 12.6 12.1294 12.4917 12.088 12.375C12.046 12.2584 12.025 12.1334 12.025 12C12.025 11.8667 12.046 11.7417 12.088 11.625C12.1294 11.5084 12.2 11.4 12.3 11.3L16.9 6.70002C17.0834 6.51669 17.3124 6.42069 17.587 6.41202C17.8624 6.40402 18.1 6.50002 18.3 6.70002C18.4834 6.88335 18.575 7.11669 18.575 7.40002C18.575 7.68335 18.4834 7.91669 18.3 8.10002L14.425 12L18.3 15.9C18.4834 16.0834 18.579 16.3124 18.587 16.587C18.5957 16.8624 18.5 17.1 18.3 17.3C18.1167 17.4834 17.8834 17.575 17.6 17.575C17.3167 17.575 17.0834 17.4834 16.9 17.3ZM10.3 17.3L5.70005 12.7C5.60005 12.6 5.52938 12.4917 5.48805 12.375C5.44605 12.2584 5.42505 12.1334 5.42505 12C5.42505 11.8667 5.44605 11.7417 5.48805 11.625C5.52938 11.5084 5.60005 11.4 5.70005 11.3L10.3 6.70002C10.4834 6.51669 10.7127 6.42069 10.988 6.41202C11.2627 6.40402 11.5 6.50002 11.7 6.70002C11.8834 6.88335 11.975 7.11669 11.975 7.40002C11.975 7.68335 11.8834 7.91669 11.7 8.10002L7.82505 12L11.7 15.9C11.8834 16.0834 11.9794 16.3124 11.988 16.587C11.996 16.8624 11.9 17.1 11.7 17.3C11.5167 17.4834 11.2834 17.575 11 17.575C10.7167 17.575 10.4834 17.4834 10.3 17.3Z"/></g><defs><clipPath id="clip0_1113_6939"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-double-right.svg b/@stellar/design-system/src/assets/icons/chevron-double-right.svg
deleted file mode 100644
index 98a94409..00000000
--- a/@stellar/design-system/src/assets/icons/chevron-double-right.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6936)"><path d="M5.70002 17.3C5.51668 17.1167 5.42502 16.8833 5.42502 16.6C5.42502 16.3167 5.51668 16.0833 5.70002 15.9L9.57502 12L5.70002 8.09999C5.51668 7.91665 5.42102 7.68732 5.41302 7.41199C5.40435 7.13732 5.50002 6.89999 5.70002 6.69999C5.88335 6.51665 6.11668 6.42499 6.40002 6.42499C6.68335 6.42499 6.91668 6.51665 7.10002 6.69999L11.7 11.3C11.8 11.4 11.871 11.5083 11.913 11.625C11.9543 11.7417 11.975 11.8667 11.975 12C11.975 12.1333 11.9543 12.2583 11.913 12.375C11.871 12.4917 11.8 12.6 11.7 12.7L7.10002 17.3C6.91668 17.4833 6.68735 17.579 6.41202 17.587C6.13735 17.5957 5.90002 17.5 5.70002 17.3ZM12.3 17.3C12.1167 17.1167 12.025 16.8833 12.025 16.6C12.025 16.3167 12.1167 16.0833 12.3 15.9L16.175 12L12.3 8.09999C12.1167 7.91665 12.0207 7.68732 12.012 7.41199C12.004 7.13732 12.1 6.89999 12.3 6.69999C12.4833 6.51665 12.7167 6.42499 13 6.42499C13.2833 6.42499 13.5167 6.51665 13.7 6.69999L18.3 11.3C18.4 11.4 18.4707 11.5083 18.512 11.625C18.554 11.7417 18.575 11.8667 18.575 12C18.575 12.1333 18.554 12.2583 18.512 12.375C18.4707 12.4917 18.4 12.6 18.3 12.7L13.7 17.3C13.5167 17.4833 13.2877 17.579 13.013 17.587C12.7377 17.5957 12.5 17.5 12.3 17.3Z"/></g><defs><clipPath id="clip0_1113_6936"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-double-up.svg b/@stellar/design-system/src/assets/icons/chevron-double-up.svg
deleted file mode 100644
index ef31c987..00000000
--- a/@stellar/design-system/src/assets/icons/chevron-double-up.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6933)"><path d="M6.70005 11.7C6.51672 11.5167 6.42505 11.2833 6.42505 11C6.42505 10.7167 6.51672 10.4833 6.70005 10.3L11.3 5.69999C11.4 5.59999 11.5084 5.52932 11.625 5.48799C11.7417 5.44599 11.8667 5.42499 12 5.42499C12.1334 5.42499 12.2584 5.44599 12.375 5.48799C12.4917 5.52932 12.6 5.59999 12.7 5.69999L17.3 10.3C17.4834 10.4833 17.579 10.7123 17.587 10.987C17.5957 11.2623 17.5 11.5 17.3 11.7C17.1167 11.8833 16.8834 11.975 16.6 11.975C16.3167 11.975 16.0834 11.8833 15.9 11.7L12 7.82499L8.10005 11.7C7.91672 11.8833 7.68738 11.9793 7.41205 11.988C7.13738 11.996 6.90005 11.9 6.70005 11.7ZM6.70005 17.7C6.51672 17.5167 6.42505 17.2833 6.42505 17C6.42505 16.7167 6.51672 16.4833 6.70005 16.3L11.3 11.7C11.4 11.6 11.5084 11.529 11.625 11.487C11.7417 11.4457 11.8667 11.425 12 11.425C12.1334 11.425 12.2584 11.4457 12.375 11.487C12.4917 11.529 12.6 11.6 12.7 11.7L17.3 16.3C17.4834 16.4833 17.579 16.7123 17.587 16.987C17.5957 17.2623 17.5 17.5 17.3 17.7C17.1167 17.8833 16.8834 17.975 16.6 17.975C16.3167 17.975 16.0834 17.8833 15.9 17.7L12 13.825L8.10005 17.7C7.91672 17.8833 7.68738 17.9793 7.41205 17.988C7.13738 17.996 6.90005 17.9 6.70005 17.7Z"/></g><defs><clipPath id="clip0_1113_6933"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-down-double.svg b/@stellar/design-system/src/assets/icons/chevron-down-double.svg
new file mode 100644
index 00000000..7713a3e5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-down-double.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 13L12 18L17 13M7 6L12 11L17 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-down.svg b/@stellar/design-system/src/assets/icons/chevron-down.svg
index 9bf7aae5..ad1a4483 100644
--- a/@stellar/design-system/src/assets/icons/chevron-down.svg
+++ b/@stellar/design-system/src/assets/icons/chevron-down.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6930)"><path d="M12 14.975C11.8667 14.975 11.7377 14.95 11.613 14.9C11.4877 14.85 11.3834 14.7833 11.3 14.7L6.70005 10.1C6.51672 9.91665 6.42505 9.68332 6.42505 9.39999C6.42505 9.11665 6.51672 8.88332 6.70005 8.69999C6.88338 8.51665 7.11672 8.42499 7.40005 8.42499C7.68338 8.42499 7.91672 8.51665 8.10005 8.69999L12 12.6L15.9 8.69999C16.0834 8.51665 16.3167 8.42499 16.6 8.42499C16.8834 8.42499 17.1167 8.51665 17.3 8.69999C17.4834 8.88332 17.575 9.11665 17.575 9.39999C17.575 9.68332 17.4834 9.91665 17.3 10.1L12.7 14.7C12.6 14.8 12.4917 14.8707 12.375 14.912C12.2584 14.954 12.1334 14.975 12 14.975Z"/></g><defs><clipPath id="clip0_1113_6930"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-left-double.svg b/@stellar/design-system/src/assets/icons/chevron-left-double.svg
new file mode 100644
index 00000000..31ddc875
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-left-double.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 17L13 12L18 7M11 17L6 12L11 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-left.svg b/@stellar/design-system/src/assets/icons/chevron-left.svg
index 372ff9d4..b7f65b40 100644
--- a/@stellar/design-system/src/assets/icons/chevron-left.svg
+++ b/@stellar/design-system/src/assets/icons/chevron-left.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6927)"><path d="M13.3 17.3L8.70005 12.7C8.60005 12.6 8.52938 12.4917 8.48805 12.375C8.44605 12.2583 8.42505 12.1333 8.42505 12C8.42505 11.8667 8.44605 11.7417 8.48805 11.625C8.52938 11.5083 8.60005 11.4 8.70005 11.3L13.3 6.69999C13.4834 6.51665 13.7167 6.42499 14 6.42499C14.2834 6.42499 14.5167 6.51665 14.7 6.69999C14.8834 6.88332 14.975 7.11665 14.975 7.39999C14.975 7.68332 14.8834 7.91665 14.7 8.09999L10.8 12L14.7 15.9C14.8834 16.0833 14.975 16.3167 14.975 16.6C14.975 16.8833 14.8834 17.1167 14.7 17.3C14.5167 17.4833 14.2834 17.575 14 17.575C13.7167 17.575 13.4834 17.4833 13.3 17.3Z"/></g><defs><clipPath id="clip0_1113_6927"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 18L9 12L15 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-right-double.svg b/@stellar/design-system/src/assets/icons/chevron-right-double.svg
new file mode 100644
index 00000000..d412464d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-right-double.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 17L11 12L6 7M13 17L18 12L13 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-right.svg b/@stellar/design-system/src/assets/icons/chevron-right.svg
index 06d66495..f0dbcca1 100644
--- a/@stellar/design-system/src/assets/icons/chevron-right.svg
+++ b/@stellar/design-system/src/assets/icons/chevron-right.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6924)"><path d="M8.70005 17.3C8.51672 17.1167 8.42505 16.8833 8.42505 16.6C8.42505 16.3167 8.51672 16.0833 8.70005 15.9L12.6 12L8.70005 8.09999C8.51672 7.91665 8.42505 7.68332 8.42505 7.39999C8.42505 7.11665 8.51672 6.88332 8.70005 6.69999C8.88338 6.51665 9.11671 6.42499 9.40005 6.42499C9.68338 6.42499 9.91672 6.51665 10.1 6.69999L14.7 11.3C14.8 11.4 14.871 11.5083 14.913 11.625C14.9544 11.7417 14.975 11.8667 14.975 12C14.975 12.1333 14.9544 12.2583 14.913 12.375C14.871 12.4917 14.8 12.6 14.7 12.7L10.1 17.3C9.91672 17.4833 9.68338 17.575 9.40005 17.575C9.11671 17.575 8.88338 17.4833 8.70005 17.3Z"/></g><defs><clipPath id="clip0_1113_6924"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 18L15 12L9 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-selector-horizontal.svg b/@stellar/design-system/src/assets/icons/chevron-selector-horizontal.svg
new file mode 100644
index 00000000..2f4563b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-selector-horizontal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 7L4 12L9 17M15 7L20 12L15 17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-selector-vertical.svg b/@stellar/design-system/src/assets/icons/chevron-selector-vertical.svg
new file mode 100644
index 00000000..6f159e2f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-selector-vertical.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 15L12 20L17 15M7 9L12 4L17 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-up-double.svg b/@stellar/design-system/src/assets/icons/chevron-up-double.svg
new file mode 100644
index 00000000..31db60da
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chevron-up-double.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 18L12 13L7 18M17 11L12 6L7 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chevron-up.svg b/@stellar/design-system/src/assets/icons/chevron-up.svg
index 0ad2cc91..9ba8e327 100644
--- a/@stellar/design-system/src/assets/icons/chevron-up.svg
+++ b/@stellar/design-system/src/assets/icons/chevron-up.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6921)"><path d="M6.70005 14.7C6.51672 14.5167 6.42505 14.2833 6.42505 14C6.42505 13.7167 6.51672 13.4833 6.70005 13.3L11.3 8.69999C11.4 8.59999 11.5084 8.52899 11.625 8.48699C11.7417 8.44565 11.8667 8.42499 12 8.42499C12.1334 8.42499 12.2627 8.44999 12.388 8.49999C12.5127 8.54999 12.6167 8.61665 12.7 8.69999L17.3 13.3C17.4834 13.4833 17.575 13.7167 17.575 14C17.575 14.2833 17.4834 14.5167 17.3 14.7C17.1167 14.8833 16.8834 14.975 16.6 14.975C16.3167 14.975 16.0834 14.8833 15.9 14.7L12 10.8L8.10005 14.7C7.91672 14.8833 7.68338 14.975 7.40005 14.975C7.11672 14.975 6.88338 14.8833 6.70005 14.7Z"/></g><defs><clipPath id="clip0_1113_6921"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 15L12 9L6 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/chrome-cast.svg b/@stellar/design-system/src/assets/icons/chrome-cast.svg
new file mode 100644
index 00000000..7bb7fff1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/chrome-cast.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12.05C4.03079 12.2759 5.92428 13.186 7.36911 14.6309C8.81395 16.0757 9.72414 17.9692 9.95 20M2 16.1C2.96089 16.296 3.84294 16.7702 4.53638 17.4636C5.22982 18.157 5.70403 19.0391 5.9 20M2 20H2.01M14 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/circle-cut.svg b/@stellar/design-system/src/assets/icons/circle-cut.svg
new file mode 100644
index 00000000..b6c3a181
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/circle-cut.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 20.6622C9.98901 18.9331 12 15.7014 12 12C12 8.29859 9.98901 5.06687 7 3.33782M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/circle.svg b/@stellar/design-system/src/assets/icons/circle.svg
new file mode 100644
index 00000000..5e003a63
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clapperboard.svg b/@stellar/design-system/src/assets/icons/clapperboard.svg
new file mode 100644
index 00000000..91531b50
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clapperboard.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3L8 8M16 3L15 8M22 8H2M6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-attachment.svg b/@stellar/design-system/src/assets/icons/clipboard-attachment.svg
new file mode 100644
index 00000000..16cace08
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-attachment.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M12 15.5V11C12 10.1716 12.6716 9.5 13.5 9.5C14.3284 9.5 15 10.1716 15 11V15.5C15 17.1569 13.6569 18.5 12 18.5C10.3431 18.5 9 17.1569 9 15.5V11.5M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-check.svg b/@stellar/design-system/src/assets/icons/clipboard-check.svg
new file mode 100644
index 00000000..555c8d28
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9 15L11 17L15.5 12.5M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-download.svg b/@stellar/design-system/src/assets/icons/clipboard-download.svg
new file mode 100644
index 00000000..572ba12b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-download.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 11V17M12 17L9 14M12 17L15 14M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-minus.svg b/@stellar/design-system/src/assets/icons/clipboard-minus.svg
new file mode 100644
index 00000000..2b4f2555
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9 14H15M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-plus.svg b/@stellar/design-system/src/assets/icons/clipboard-plus.svg
new file mode 100644
index 00000000..3d58bf61
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M12 17V11M9 14H15M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard-x.svg b/@stellar/design-system/src/assets/icons/clipboard-x.svg
new file mode 100644
index 00000000..dee5f13c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9.5 12L14.5 17M14.5 12L9.5 17M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clipboard.svg b/@stellar/design-system/src/assets/icons/clipboard.svg
new file mode 100644
index 00000000..8b091324
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clipboard.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-check.svg b/@stellar/design-system/src/assets/icons/clock-check.svg
new file mode 100644
index 00000000..a0f58e7a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 19L16.5 21L21 16.5M21.9851 12.5499C21.995 12.3678 22 12.1845 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.4354 6.33651 21.858 11.7385 21.9966M12 6V12L15.7384 13.8692" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-fast-forward.svg b/@stellar/design-system/src/assets/icons/clock-fast-forward.svg
new file mode 100644
index 00000000..253fbaf7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-fast-forward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22.7 11.5L20.7005 13.5L18.7 11.5M20.9451 13C20.9814 12.6717 21 12.338 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C14.8273 21 17.35 19.6963 19 17.6573M12 7V12L15 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-plus.svg b/@stellar/design-system/src/assets/icons/clock-plus.svg
new file mode 100644
index 00000000..8eaa9d80
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.9208 13.265C21.9731 12.8507 22 12.4285 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C12.4354 22 12.8643 21.9722 13.285 21.9182M12 6V12L15.7384 13.8692M19 22V16M16 19H22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-refresh.svg b/@stellar/design-system/src/assets/icons/clock-refresh.svg
new file mode 100644
index 00000000..7ae1dfb5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-refresh.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.4532 12.8928C20.1754 15.5027 18.6967 17.9484 16.2497 19.3612C12.1842 21.7084 6.98566 20.3155 4.63845 16.25L4.38845 15.817M3.54617 11.1071C3.82397 8.49723 5.30276 6.05151 7.74974 4.63874C11.8152 2.29153 17.0138 3.68447 19.361 7.74995L19.611 8.18297M3.49316 18.0659L4.22522 15.3339L6.95727 16.0659M17.0422 7.93398L19.7743 8.66603L20.5063 5.93398M11.9997 7.49995V12L14.4997 13.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-rewind.svg b/@stellar/design-system/src/assets/icons/clock-rewind.svg
new file mode 100644
index 00000000..eb066155
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-rewind.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22.7 13.5L20.7005 11.5L18.7 13.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C15.3019 3 18.1885 4.77814 19.7545 7.42909M12 7V12L15 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-snooze.svg b/@stellar/design-system/src/assets/icons/clock-snooze.svg
new file mode 100644
index 00000000..500d1458
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-snooze.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 17H21.5L16.5 22H21.5M21.9506 13C21.9833 12.6711 22 12.3375 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C12.1677 22 12.3344 21.9959 12.5 21.9877C12.6678 21.9795 12.8345 21.9671 13 21.9506M12 6V12L15.7384 13.8692" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock-stopwatch.svg b/@stellar/design-system/src/assets/icons/clock-stopwatch.svg
new file mode 100644
index 00000000..5aa27ea1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/clock-stopwatch.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 9.5V13.5L14.5 15M12 5C7.30558 5 3.5 8.80558 3.5 13.5C3.5 18.1944 7.30558 22 12 22C16.6944 22 20.5 18.1944 20.5 13.5C20.5 8.80558 16.6944 5 12 5ZM12 5V2M10 2H14M20.329 5.59204L18.829 4.09204L19.579 4.84204M3.67102 5.59204L5.17102 4.09204L4.42102 4.84204" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/clock.svg b/@stellar/design-system/src/assets/icons/clock.svg
index b67fc772..97ab892f 100644
--- a/@stellar/design-system/src/assets/icons/clock.svg
+++ b/@stellar/design-system/src/assets/icons/clock.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6918)"><path d="M14.625 16.025C14.8083 16.2083 15.0333 16.3 15.3 16.3C15.5667 16.3 15.8 16.2 16 16C16.1833 15.8167 16.275 15.5833 16.275 15.3C16.275 15.0167 16.1833 14.7833 16 14.6L13 11.6V7.975C13 7.69167 12.9043 7.45833 12.713 7.275C12.521 7.09167 12.2833 7 12 7C11.7167 7 11.4793 7.09567 11.288 7.287C11.096 7.479 11 7.71667 11 8V11.975C11 12.1083 11.025 12.2373 11.075 12.362C11.125 12.4873 11.2 12.6 11.3 12.7L14.625 16.025ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6918"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/close.svg b/@stellar/design-system/src/assets/icons/close.svg
deleted file mode 100644
index 2a54ad67..00000000
--- a/@stellar/design-system/src/assets/icons/close.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6915)"><path d="M12 13.4L7.10005 18.3C6.91672 18.4833 6.68338 18.575 6.40005 18.575C6.11672 18.575 5.88338 18.4833 5.70005 18.3C5.51672 18.1167 5.42505 17.8833 5.42505 17.6C5.42505 17.3167 5.51672 17.0833 5.70005 16.9L10.6 12L5.70005 7.09999C5.51672 6.91665 5.42505 6.68332 5.42505 6.39999C5.42505 6.11665 5.51672 5.88332 5.70005 5.69999C5.88338 5.51665 6.11672 5.42499 6.40005 5.42499C6.68338 5.42499 6.91672 5.51665 7.10005 5.69999L12 10.6L16.9 5.69999C17.0834 5.51665 17.3167 5.42499 17.6 5.42499C17.8834 5.42499 18.1167 5.51665 18.3 5.69999C18.4834 5.88332 18.575 6.11665 18.575 6.39999C18.575 6.68332 18.4834 6.91665 18.3 7.09999L13.4 12L18.3 16.9C18.4834 17.0833 18.575 17.3167 18.575 17.6C18.575 17.8833 18.4834 18.1167 18.3 18.3C18.1167 18.4833 17.8834 18.575 17.6 18.575C17.3167 18.575 17.0834 18.4833 16.9 18.3L12 13.4Z"/></g><defs><clipPath id="clip0_1113_6915"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-01.svg b/@stellar/design-system/src/assets/icons/cloud-01.svg
new file mode 100644
index 00000000..edd2ee9d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 19C4.01472 19 2 16.9853 2 14.5C2 12.1564 3.79151 10.2313 6.07974 10.0194C6.54781 7.17213 9.02024 5 12 5C14.9798 5 17.4522 7.17213 17.9203 10.0194C20.2085 10.2313 22 12.1564 22 14.5C22 16.9853 19.9853 19 17.5 19C13.1102 19 10.3433 19 6.5 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-02.svg b/@stellar/design-system/src/assets/icons/cloud-02.svg
new file mode 100644
index 00000000..77fc9415
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 19C3.79086 19 2 17.2091 2 15C2 13.1358 3.27532 11.5694 5.00111 11.1257C5.00037 11.0839 5 11.042 5 11C5 7.13401 8.13401 4 12 4C15.6099 4 18.5815 6.73249 18.9594 10.2419C20.7284 10.8481 22 12.5255 22 14.5C22 16.9853 19.9853 19 17.5 19C13.7609 19 10.1876 19 6 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-03.svg b/@stellar/design-system/src/assets/icons/cloud-03.svg
new file mode 100644
index 00000000..2add0caa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 19C5.35786 19 2 15.6421 2 11.5C2 7.35786 5.35786 4 9.5 4C12.3827 4 14.8855 5.62634 16.141 8.01153C16.2597 8.00388 16.3794 8 16.5 8C19.5376 8 22 10.4624 22 13.5C22 16.5376 19.5376 19 16.5 19C13.9485 19 12.1224 19 9.5 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-blank-01.svg b/@stellar/design-system/src/assets/icons/cloud-blank-01.svg
new file mode 100644
index 00000000..edd2ee9d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-blank-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 19C4.01472 19 2 16.9853 2 14.5C2 12.1564 3.79151 10.2313 6.07974 10.0194C6.54781 7.17213 9.02024 5 12 5C14.9798 5 17.4522 7.17213 17.9203 10.0194C20.2085 10.2313 22 12.1564 22 14.5C22 16.9853 19.9853 19 17.5 19C13.1102 19 10.3433 19 6.5 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-blank-02.svg b/@stellar/design-system/src/assets/icons/cloud-blank-02.svg
new file mode 100644
index 00000000..2add0caa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-blank-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 19C5.35786 19 2 15.6421 2 11.5C2 7.35786 5.35786 4 9.5 4C12.3827 4 14.8855 5.62634 16.141 8.01153C16.2597 8.00388 16.3794 8 16.5 8C19.5376 8 22 10.4624 22 13.5C22 16.5376 19.5376 19 16.5 19C13.9485 19 12.1224 19 9.5 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-done.svg b/@stellar/design-system/src/assets/icons/cloud-done.svg
deleted file mode 100644
index b52bb459..00000000
--- a/@stellar/design-system/src/assets/icons/cloud-done.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6912)"><path d="M6.5 20C4.98333 20 3.68767 19.475 2.613 18.425C1.53767 17.375 1 16.0917 1 14.575C1 13.275 1.39167 12.1167 2.175 11.1C2.95833 10.0833 3.98333 9.43333 5.25 9.15C5.66667 7.61667 6.5 6.375 7.75 5.425C9 4.475 10.4167 4 12 4C13.95 4 15.604 4.679 16.962 6.037C18.3207 7.39567 19 9.05 19 11C20.15 11.1333 21.1043 11.629 21.863 12.487C22.621 13.3457 23 14.35 23 15.5C23 16.75 22.5627 17.8127 21.688 18.688C20.8127 19.5627 19.75 20 18.5 20H6.5ZM10.35 16.575C10.4833 16.575 10.6083 16.554 10.725 16.512C10.8417 16.4707 10.95 16.4 11.05 16.3L15.275 12.075C15.475 11.875 15.575 11.6333 15.575 11.35C15.575 11.0667 15.475 10.825 15.275 10.625C15.075 10.425 14.8333 10.325 14.55 10.325C14.2667 10.325 14.025 10.425 13.825 10.625L10.325 14.125L8.925 12.725C8.74167 12.5417 8.50833 12.45 8.225 12.45C7.94167 12.45 7.70833 12.5417 7.525 12.725C7.325 12.925 7.225 13.1667 7.225 13.45C7.225 13.7333 7.325 13.9667 7.525 14.15L9.65 16.3C9.75 16.4 9.85833 16.4707 9.975 16.512C10.0917 16.554 10.2167 16.575 10.35 16.575Z"/></g><defs><clipPath id="clip0_1113_6912"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-download.svg b/@stellar/design-system/src/assets/icons/cloud-download.svg
deleted file mode 100644
index 315ffa35..00000000
--- a/@stellar/design-system/src/assets/icons/cloud-download.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6909)"><path d="M6.5 20C4.98333 20 3.68767 19.475 2.613 18.425C1.53767 17.375 1 16.0917 1 14.575C1 13.275 1.39167 12.1167 2.175 11.1C2.95833 10.0833 3.98333 9.43335 5.25 9.15001C5.63333 7.80001 6.346 6.66668 7.388 5.75001C8.42933 4.83335 9.63333 4.27501 11 4.07501V12.15L10.1 11.275C9.91667 11.0917 9.68767 11 9.413 11C9.13767 11 8.9 11.1 8.7 11.3C8.51667 11.4833 8.425 11.7167 8.425 12C8.425 12.2833 8.51667 12.5167 8.7 12.7L11.3 15.3C11.5 15.5 11.7333 15.6 12 15.6C12.2667 15.6 12.5 15.5 12.7 15.3L15.3 12.7C15.4833 12.5167 15.5793 12.2873 15.588 12.012C15.596 11.7373 15.5 11.5 15.3 11.3C15.1167 11.1167 14.8877 11.0207 14.613 11.012C14.3377 11.004 14.1 11.0917 13.9 11.275L13 12.15V4.07501C14.7167 4.30835 16.146 5.07901 17.288 6.38701C18.4293 7.69568 19 9.23335 19 11C20.15 11.1333 21.1043 11.629 21.863 12.487C22.621 13.3457 23 14.35 23 15.5C23 16.75 22.5627 17.8127 21.688 18.688C20.8127 19.5627 19.75 20 18.5 20H6.5Z"/></g><defs><clipPath id="clip0_1113_6909"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-lightning.svg b/@stellar/design-system/src/assets/icons/cloud-lightning.svg
new file mode 100644
index 00000000..6d9f927c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-lightning.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 15.7439C20.7478 15.1262 22 13.4593 22 11.5C22 9.15643 20.2085 7.23129 17.9203 7.01937C17.4522 4.17213 14.9798 2 12 2C9.02024 2 6.54781 4.17213 6.07974 7.01937C3.79151 7.23129 2 9.15643 2 11.5C2 13.4593 3.25221 15.1262 5 15.7439M13 10L9 16H15L11 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-moon.svg b/@stellar/design-system/src/assets/icons/cloud-moon.svg
new file mode 100644
index 00000000..f8d68d1b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-moon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 13C19.0768 13 21.2397 11.228 21.8366 8.83604C21.4087 8.94287 20.961 8.99958 20.5 8.99958C17.4624 8.99958 15 6.53715 15 3.49958C15 3.03881 15.0567 2.59128 15.1634 2.16357C12.7717 2.76068 11 4.92345 11 7.50003C11 8.41275 11.2223 9.27355 11.6158 10.0312M5 7V3M3 5H7M6 22C3.79086 22 2 20.2091 2 18C2 16.0221 3.43551 14.3796 5.32148 14.0573C6.12876 11.697 8.3662 10 11 10C13.2882 10 15.2772 11.2809 16.2892 13.1648C16.6744 13.0574 17.0805 13 17.5 13C19.9853 13 22 15.0147 22 17.5C22 19.9853 19.9853 22 17.5 22C13.6667 22 9.83333 22 6 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-off.svg b/@stellar/design-system/src/assets/icons/cloud-off.svg
new file mode 100644
index 00000000..cd8329c0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.7003 16.1181C21.8939 15.616 22 15.0704 22 14.5C22 12.1564 20.2085 10.2313 17.9203 10.0194C17.4522 7.17213 14.9798 5 12 5C11.5534 5 11.1183 5.04879 10.6995 5.14132M7.28746 7.28585C6.67317 8.06419 6.24759 8.99838 6.07974 10.0194C3.79151 10.2313 2 12.1564 2 14.5C2 16.9853 4.01472 19 6.5 19H17.5C17.9561 19 18.3963 18.9322 18.8112 18.806M3 3L21 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-01.svg b/@stellar/design-system/src/assets/icons/cloud-raining-01.svg
new file mode 100644
index 00000000..a29302b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 15.2422C21.206 14.435 22 13.0602 22 11.5C22 9.15643 20.2085 7.23129 17.9203 7.01937C17.4522 4.17213 14.9798 2 12 2C9.02024 2 6.54781 4.17213 6.07974 7.01937C3.79151 7.23129 2 9.15643 2 11.5C2 13.0602 2.79401 14.435 4 15.2422M8 18V20M8 12V14M16 18V20M16 12V14M12 20V22M12 14V16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-02.svg b/@stellar/design-system/src/assets/icons/cloud-raining-02.svg
new file mode 100644
index 00000000..16a5b42c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12V20M8 12V20M12 14V22M20 15.2422C21.206 14.435 22 13.0602 22 11.5C22 9.15643 20.2085 7.23129 17.9203 7.01937C17.4522 4.17213 14.9798 2 12 2C9.02024 2 6.54781 4.17213 6.07974 7.01937C3.79151 7.23129 2 9.15643 2 11.5C2 13.0602 2.79401 14.435 4 15.2422" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-03.svg b/@stellar/design-system/src/assets/icons/cloud-raining-03.svg
new file mode 100644
index 00000000..d803a0ac
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 15.2422C21.206 14.435 22 13.0602 22 11.5C22 9.15643 20.2085 7.23129 17.9203 7.01937C17.4522 4.17213 14.9798 2 12 2C9.02024 2 6.54781 4.17213 6.07974 7.01937C3.79151 7.23129 2 9.15643 2 11.5C2 13.0602 2.79401 14.435 4 15.2422M12.25 15L9.44995 22M17.05 13L14.25 20M9.05 13L6.25 20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-04.svg b/@stellar/design-system/src/assets/icons/cloud-raining-04.svg
new file mode 100644
index 00000000..83221d43
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18.5V21M8 18.5V21M12 19.5V22M7 15C4.23858 15 2 12.7614 2 10C2 7.23858 4.23858 5 7 5C7.03315 5 7.06622 5.00032 7.09922 5.00097C8.0094 3.2196 9.86227 2 12 2C14.5192 2 16.6429 3.69375 17.2943 6.00462C17.3625 6.00155 17.4311 6 17.5 6C19.9853 6 22 8.01472 22 10.5C22 12.9853 19.9853 15 17.5 15C13.7434 15 11.2352 15 7 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-05.svg b/@stellar/design-system/src/assets/icons/cloud-raining-05.svg
new file mode 100644
index 00000000..6de18965
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18.5L15 21M8 18.5L7 21M12 18.5L11 21M7 15C4.23858 15 2 12.7614 2 10C2 7.23858 4.23858 5 7 5C7.03315 5 7.06622 5.00032 7.09922 5.00097C8.0094 3.2196 9.86227 2 12 2C14.5192 2 16.6429 3.69375 17.2943 6.00462C17.3625 6.00155 17.4311 6 17.5 6C19.9853 6 22 8.01472 22 10.5C22 12.9853 19.9853 15 17.5 15C13.7434 15 11.2352 15 7 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-raining-06.svg b/@stellar/design-system/src/assets/icons/cloud-raining-06.svg
new file mode 100644
index 00000000..62116205
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-raining-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 21H6M19 18H10M7 18H5M18 21H16M7 15C4.23858 15 2 12.7614 2 10C2 7.23858 4.23858 5 7 5C7.03315 5 7.06622 5.00032 7.09922 5.00097C8.0094 3.2196 9.86227 2 12 2C14.5192 2 16.6429 3.69375 17.2943 6.00462C17.3625 6.00155 17.4311 6 17.5 6C19.9853 6 22 8.01472 22 10.5C22 12.9853 19.9853 15 17.5 15C13.7434 15 11.2352 15 7 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-snowing-01.svg b/@stellar/design-system/src/assets/icons/cloud-snowing-01.svg
new file mode 100644
index 00000000..b5697ab6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-snowing-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 15.2422C21.206 14.435 22 13.0602 22 11.5C22 9.15643 20.2085 7.23129 17.9203 7.01937C17.4522 4.17213 14.9798 2 12 2C9.02024 2 6.54781 4.17213 6.07974 7.01937C3.79151 7.23129 2 9.15643 2 11.5C2 13.0602 2.79401 14.435 4 15.2422M8 15H8.01M8 19H8.01M12 17H12.01M12 21H12.01M16 15H16.01M16 19H16.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-snowing-02.svg b/@stellar/design-system/src/assets/icons/cloud-snowing-02.svg
new file mode 100644
index 00000000..ef62fbe8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-snowing-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 18H8.01M8 21H8.01M12 18.5H12.01M12 21.5H12.01M16 18H16.01M16 21H16.01M7 15C4.23858 15 2 12.7614 2 10C2 7.23858 4.23858 5 7 5C7.03315 5 7.06622 5.00032 7.09922 5.00097C8.0094 3.2196 9.86227 2 12 2C14.5192 2 16.6429 3.69375 17.2943 6.00462C17.3625 6.00155 17.4311 6 17.5 6C19.9853 6 22 8.01472 22 10.5C22 12.9853 19.9853 15 17.5 15C13.7434 15 11.2352 15 7 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-sun-01.svg b/@stellar/design-system/src/assets/icons/cloud-sun-01.svg
new file mode 100644
index 00000000..20079ec6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-sun-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19.368 12.4048C20.935 11.5606 22 9.9047 22 8C22 5.23858 19.7614 3 17 3C14.2386 3 12 5.23858 12 8M12 8C9.86227 8 8.0094 9.2196 7.09922 11.001C7.06622 11.0003 7.03315 11 7 11C4.23858 11 2 13.2386 2 16C2 18.7614 4.23858 21 7 21C11.2352 21 13.7434 21 17.5 21C19.9853 21 22 18.9853 22 16.5C22 14.0147 19.9853 12 17.5 12C17.4311 12 17.3625 12.0016 17.2943 12.0046C16.6429 9.69375 14.5192 8 12 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-sun-02.svg b/@stellar/design-system/src/assets/icons/cloud-sun-02.svg
new file mode 100644
index 00000000..7fd16260
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-sun-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5 1.5V3.1M3.6 10H2M5.4512 4.95137L4.31982 3.82M15.5498 4.95137L16.6812 3.82M19 10H17.4M6.50007 10.0001C6.50007 7.79093 8.29093 6.00007 10.5001 6.00007C12.0061 6.00007 13.3177 6.83235 14.0001 8.06206M6 22C3.79086 22 2 20.2091 2 18C2 15.7909 3.79086 14 6 14C6.46419 14 6.90991 14.0791 7.32442 14.2245C8.04061 12.3396 9.86387 11 12 11C14.1361 11 15.9594 12.3396 16.6756 14.2245C17.0901 14.0791 17.5358 14 18 14C20.2091 14 22 15.7909 22 18C22 20.2091 20.2091 22 18 22C13.3597 22 9.87921 22 6 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cloud-sun-03.svg b/@stellar/design-system/src/assets/icons/cloud-sun-03.svg
new file mode 100644
index 00000000..fb2f75a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cloud-sun-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.15003 11C3.05165 10.5153 3 10.0137 3 9.5C3 5.35786 6.35786 2 10.5 2C14.3031 2 17.445 4.83064 17.9339 8.5M6 22C3.79086 22 2 20.2091 2 18C2 15.7909 3.79086 14 6 14C6.11333 14 6.22556 14.0047 6.3365 14.014C7.15622 11.6763 9.38235 10 12 10C14.2248 10 16.1668 11.2109 17.2029 13.0097C17.3011 13.0033 17.4002 13 17.5 13C19.9853 13 22 15.0147 22 17.5C22 19.9853 19.9853 22 17.5 22C13.7633 22 10.0546 22 6 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-01.svg b/@stellar/design-system/src/assets/icons/code-01.svg
new file mode 100644
index 00000000..19d15b4f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L22 12L16 6M8 6L2 12L8 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-02.svg b/@stellar/design-system/src/assets/icons/code-02.svg
new file mode 100644
index 00000000..7471e011
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 17L22 12L17 7M7 7L2 12L7 17M14 3L10 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-browser.svg b/@stellar/design-system/src/assets/icons/code-browser.svg
new file mode 100644
index 00000000..43dfacad
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-browser.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 9H2M14 17.5L16.5 15L14 12.5M10 12.5L7.5 15L10 17.5M2 7.8L2 16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27977 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3L6.8 3C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-circle-01.svg b/@stellar/design-system/src/assets/icons/code-circle-01.svg
new file mode 100644
index 00000000..42525670
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-circle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 15L17.5 12L14.5 9M9.5 9L6.5 12L9.5 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-circle-02.svg b/@stellar/design-system/src/assets/icons/code-circle-02.svg
new file mode 100644
index 00000000..811e21b8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-circle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 17L17 14L14 11M10 7L7 10L10 13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-circle-03.svg b/@stellar/design-system/src/assets/icons/code-circle-03.svg
new file mode 100644
index 00000000..37e45101
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-circle-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.5 15L18.5 12L15.5 9M8.5 9L5.5 12L8.5 15M13 7L11 17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-snippet-01.svg b/@stellar/design-system/src/assets/icons/code-snippet-01.svg
new file mode 100644
index 00000000..19d15b4f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-snippet-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L22 12L16 6M8 6L2 12L8 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-snippet-02.svg b/@stellar/design-system/src/assets/icons/code-snippet-02.svg
new file mode 100644
index 00000000..7471e011
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-snippet-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 17L22 12L17 7M7 7L2 12L7 17M14 3L10 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-square-01.svg b/@stellar/design-system/src/assets/icons/code-square-01.svg
new file mode 100644
index 00000000..a830f34d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-square-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 15L17.5 12L14.5 9M9.5 9L6.5 12L9.5 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code-square-02.svg b/@stellar/design-system/src/assets/icons/code-square-02.svg
new file mode 100644
index 00000000..bfa3afb1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/code-square-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 17L17 14L14 11M10 7L7 10L10 13M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/code.svg b/@stellar/design-system/src/assets/icons/code.svg
deleted file mode 100644
index 6916ea8b..00000000
--- a/@stellar/design-system/src/assets/icons/code.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6906)"><path d="M16.7 17.3C16.5167 17.4834 16.2877 17.575 16.013 17.575C15.7377 17.575 15.5 17.475 15.3 17.275C15.1 17.075 15 16.8374 15 16.562C15 16.2874 15.1 16.05 15.3 15.85L19.175 11.975L15.275 8.07502C15.0917 7.89169 15.004 7.66235 15.012 7.38702C15.0207 7.11235 15.1167 6.88335 15.3 6.70002C15.4834 6.51669 15.7167 6.42502 16 6.42502C16.2834 6.42502 16.5167 6.51669 16.7 6.70002L21.3 11.3C21.5 11.5 21.6 11.7334 21.6 12C21.6 12.2667 21.5 12.5 21.3 12.7L16.7 17.3ZM7.30002 17.3L2.70002 12.7C2.50002 12.5 2.40002 12.2667 2.40002 12C2.40002 11.7334 2.50002 11.5 2.70002 11.3L7.30002 6.70002C7.48336 6.51669 7.71669 6.42069 8.00002 6.41202C8.28336 6.40402 8.52502 6.50002 8.72502 6.70002C8.92502 6.90002 9.02502 7.13735 9.02502 7.41202C9.02502 7.68735 8.92502 7.92502 8.72502 8.12502L4.82502 12.025L8.72502 15.925C8.90836 16.1084 8.99602 16.3374 8.98802 16.612C8.97936 16.8874 8.88336 17.1167 8.70002 17.3C8.51669 17.4834 8.28336 17.575 8.00002 17.575C7.71669 17.575 7.48336 17.4834 7.30002 17.3Z"/></g><defs><clipPath id="clip0_1113_6906"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/codepen.svg b/@stellar/design-system/src/assets/icons/codepen.svg
new file mode 100644
index 00000000..66d9c93a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/codepen.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 9L4.06386 14.1585C3.37601 14.6056 3.03209 14.8291 2.91297 15.1126C2.80888 15.3604 2.80888 15.6396 2.91297 15.8874M12 9L19.9361 14.1585C20.624 14.6056 20.9679 14.8291 21.087 15.1126C21.1911 15.3604 21.1911 15.6396 21.087 15.8874M12 9V2.5M12 15L4.06386 9.84151C3.37601 9.39441 3.03209 9.17086 2.91297 8.88736C2.80888 8.63961 2.80888 8.36039 2.91297 8.11264M12 15L19.9361 9.84151C20.624 9.39441 20.9679 9.17086 21.087 8.88736C21.1911 8.63961 21.1911 8.36039 21.087 8.11264M12 15V21.5M21.272 15.9732L12.872 21.4332C12.5564 21.6384 12.3985 21.7409 12.2285 21.7809C12.0782 21.8161 11.9218 21.8161 11.7715 21.7809C11.6015 21.7409 11.4436 21.6384 11.128 21.4332L2.72802 15.9732C2.46201 15.8003 2.32901 15.7139 2.23265 15.5985C2.14735 15.4965 2.08327 15.3784 2.04417 15.2512C2 15.1076 2 14.949 2 14.6317V9.3683C2 9.05104 2 8.89241 2.04417 8.74877C2.08327 8.62161 2.14735 8.50354 2.23265 8.40146C2.32901 8.28614 2.46201 8.19969 2.72802 8.02679L11.128 2.56679C11.4436 2.36164 11.6015 2.25906 11.7715 2.21915C11.9218 2.18387 12.0782 2.18387 12.2285 2.21915C12.3985 2.25906 12.5564 2.36164 12.872 2.56679L21.272 8.02679C21.538 8.19969 21.671 8.28614 21.7674 8.40146C21.8527 8.50354 21.9167 8.62161 21.9558 8.74877C22 8.89241 22 9.05104 22 9.3683V14.6317C22 14.949 22 15.1076 21.9558 15.2512C21.9167 15.3784 21.8527 15.4965 21.7674 15.5985C21.671 15.7139 21.538 15.8003 21.272 15.9732Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-01.svg b/@stellar/design-system/src/assets/icons/coins-01.svg
new file mode 100644
index 00000000..35a0a9a1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.9377 15.9377C19.3603 15.4795 22 12.548 22 9C22 5.13401 18.866 2 15 2C11.452 2 8.52049 4.63967 8.06227 8.06227M16 15C16 18.866 12.866 22 9 22C5.13401 22 2 18.866 2 15C2 11.134 5.13401 8 9 8C12.866 8 16 11.134 16 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-02.svg b/@stellar/design-system/src/assets/icons/coins-02.svg
new file mode 100644
index 00000000..e4082e51
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.9377 15.9377C19.3603 15.4795 22 12.548 22 9C22 5.13401 18.866 2 15 2C11.452 2 8.52049 4.63967 8.06227 8.06227M7.5 13L9 12V17.5M7.5 17.5H10.5M16 15C16 18.866 12.866 22 9 22C5.13401 22 2 18.866 2 15C2 11.134 5.13401 8 9 8C12.866 8 16 11.134 16 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-03.svg b/@stellar/design-system/src/assets/icons/coins-03.svg
new file mode 100644
index 00000000..50c4b691
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.101 4C11.3636 2.76281 13.0927 2 15 2C18.866 2 22 5.13401 22 9C22 10.9073 21.2372 12.6365 19.9999 13.899M16 15C16 18.866 12.866 22 9 22C5.13401 22 2 18.866 2 15C2 11.134 5.13401 8 9 8C12.866 8 16 11.134 16 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-04.svg b/@stellar/design-system/src/assets/icons/coins-04.svg
new file mode 100644
index 00000000..79e9d8a2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.101 4C11.3636 2.76281 13.0927 2 15 2C18.866 2 22 5.13401 22 9C22 10.9073 21.2372 12.6365 19.9999 13.899M7.5 13L9 12V17.5M7.5 17.5H10.5M16 15C16 18.866 12.866 22 9 22C5.13401 22 2 18.866 2 15C2 11.134 5.13401 8 9 8C12.866 8 16 11.134 16 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-hand.svg b/@stellar/design-system/src/assets/icons/coins-hand.svg
new file mode 100644
index 00000000..c9e747db
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-hand.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.5295 8.35186C12.9571 8.75995 12.2566 9 11.5 9C9.567 9 8 7.433 8 5.5C8 3.567 9.567 2 11.5 2C12.753 2 13.8522 2.65842 14.4705 3.64814M6 20.0872H8.61029C8.95063 20.0872 9.28888 20.1277 9.61881 20.2086L12.3769 20.8789C12.9753 21.0247 13.5988 21.0388 14.2035 20.9214L17.253 20.3281C18.0585 20.1712 18.7996 19.7854 19.3803 19.2205L21.5379 17.1217C22.154 16.5234 22.154 15.5524 21.5379 14.9531C20.9832 14.4134 20.1047 14.3527 19.4771 14.8103L16.9626 16.6449C16.6025 16.9081 16.1643 17.0498 15.7137 17.0498H13.2855L14.8311 17.0498C15.7022 17.0498 16.4079 16.3633 16.4079 15.5159V15.2091C16.4079 14.5055 15.9156 13.892 15.2141 13.7219L12.8286 13.1417C12.4404 13.0476 12.0428 13 11.6431 13C10.6783 13 8.93189 13.7988 8.93189 13.7988L6 15.0249M20 6.5C20 8.433 18.433 10 16.5 10C14.567 10 13 8.433 13 6.5C13 4.567 14.567 3 16.5 3C18.433 3 20 4.567 20 6.5ZM2 14.6L2 20.4C2 20.9601 2 21.2401 2.10899 21.454C2.20487 21.6422 2.35785 21.7951 2.54601 21.891C2.75992 22 3.03995 22 3.6 22H4.4C4.96005 22 5.24008 22 5.45399 21.891C5.64215 21.7951 5.79513 21.6422 5.89101 21.454C6 21.2401 6 20.9601 6 20.4V14.6C6 14.0399 6 13.7599 5.89101 13.546C5.79513 13.3578 5.64215 13.2049 5.45399 13.109C5.24008 13 4.96005 13 4.4 13L3.6 13C3.03995 13 2.75992 13 2.54601 13.109C2.35785 13.2049 2.20487 13.3578 2.10899 13.546C2 13.7599 2 14.0399 2 14.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-stacked-01.svg b/@stellar/design-system/src/assets/icons/coins-stacked-01.svg
new file mode 100644
index 00000000..afebd821
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-stacked-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 17C12 19.7614 14.2386 22 17 22C19.7614 22 22 19.7614 22 17C22 14.2386 19.7614 12 17 12C14.2386 12 12 14.2386 12 17ZM12 17C12 15.8742 12.3721 14.8353 13 13.9995V5M12 17C12 17.8254 12.2 18.604 12.5541 19.2901C11.7117 20.0018 9.76584 20.5 7.5 20.5C4.46243 20.5 2 19.6046 2 18.5V5M13 5C13 6.10457 10.5376 7 7.5 7C4.46243 7 2 6.10457 2 5M13 5C13 3.89543 10.5376 3 7.5 3C4.46243 3 2 3.89543 2 5M2 14C2 15.1046 4.46243 16 7.5 16C9.689 16 11.5793 15.535 12.4646 14.8618M13 9.5C13 10.6046 10.5376 11.5 7.5 11.5C4.46243 11.5 2 10.6046 2 9.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-stacked-02.svg b/@stellar/design-system/src/assets/icons/coins-stacked-02.svg
new file mode 100644
index 00000000..00271a3d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-stacked-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 5C13 6.10457 10.5376 7 7.5 7C4.46243 7 2 6.10457 2 5M13 5C13 3.89543 10.5376 3 7.5 3C4.46243 3 2 3.89543 2 5M13 5V9.45715C11.7785 9.82398 11 10.3789 11 11M2 5V17C2 18.1046 4.46243 19 7.5 19C8.82963 19 10.0491 18.8284 11 18.5429V11M2 9C2 10.1046 4.46243 11 7.5 11C8.82963 11 10.0491 10.8284 11 10.5429M2 13C2 14.1046 4.46243 15 7.5 15C8.82963 15 10.0491 14.8284 11 14.5429M22 11C22 12.1046 19.5376 13 16.5 13C13.4624 13 11 12.1046 11 11M22 11C22 9.89543 19.5376 9 16.5 9C13.4624 9 11 9.89543 11 11M22 11V19C22 20.1046 19.5376 21 16.5 21C13.4624 21 11 20.1046 11 19V11M22 15C22 16.1046 19.5376 17 16.5 17C13.4624 17 11 16.1046 11 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-stacked-03.svg b/@stellar/design-system/src/assets/icons/coins-stacked-03.svg
new file mode 100644
index 00000000..7dc6ed27
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-stacked-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 5C13 6.10457 10.5376 7 7.5 7C4.46243 7 2 6.10457 2 5M13 5C13 3.89543 10.5376 3 7.5 3C4.46243 3 2 3.89543 2 5M13 5V6.5M2 5V17C2 18.1046 4.46243 19 7.5 19M7.5 11C7.33145 11 7.16468 10.9972 7 10.9918C4.19675 10.9 2 10.0433 2 9M7.5 15C4.46243 15 2 14.1046 2 13M22 11.5C22 12.6046 19.5376 13.5 16.5 13.5C13.4624 13.5 11 12.6046 11 11.5M22 11.5C22 10.3954 19.5376 9.5 16.5 9.5C13.4624 9.5 11 10.3954 11 11.5M22 11.5V19C22 20.1046 19.5376 21 16.5 21C13.4624 21 11 20.1046 11 19V11.5M22 15.25C22 16.3546 19.5376 17.25 16.5 17.25C13.4624 17.25 11 16.3546 11 15.25" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-stacked-04.svg b/@stellar/design-system/src/assets/icons/coins-stacked-04.svg
new file mode 100644
index 00000000..9bd09add
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-stacked-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 5C20 6.65685 16.4183 8 12 8C7.58172 8 4 6.65685 4 5M20 5C20 3.34315 16.4183 2 12 2C7.58172 2 4 3.34315 4 5M20 5V19C20 20.6569 16.4183 22 12 22C7.58172 22 4 20.6569 4 19V5M20 9.6666C20 11.3235 16.4183 12.6666 12 12.6666C7.58172 12.6666 4 11.3235 4 9.6666M20 14.33C20 15.9869 16.4183 17.33 12 17.33C7.58172 17.33 4 15.9869 4 14.33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-swap-01.svg b/@stellar/design-system/src/assets/icons/coins-swap-01.svg
new file mode 100644
index 00000000..b1f1ab45
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-swap-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 6L8 4M8 4L6 2M8 4H6C3.79086 4 2 5.79086 2 8M18 18L16 20M16 20L18 22M16 20H18C20.2091 20 22 18.2091 22 16M13.4172 13.4172C14.1994 13.7908 15.0753 14 16 14C19.3137 14 22 11.3137 22 8C22 4.68629 19.3137 2 16 2C12.6863 2 10 4.68629 10 8C10 8.92472 10.2092 9.80057 10.5828 10.5828M14 16C14 19.3137 11.3137 22 8 22C4.68629 22 2 19.3137 2 16C2 12.6863 4.68629 10 8 10C11.3137 10 14 12.6863 14 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/coins-swap-02.svg b/@stellar/design-system/src/assets/icons/coins-swap-02.svg
new file mode 100644
index 00000000..bc9aaeef
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/coins-swap-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 6L8 4M8 4L6 2M8 4H6C3.79086 4 2 5.79086 2 8M18 18L16 20M16 20L18 22M16 20H18C20.2091 20 22 18.2091 22 16M10.189 6.5C10.8551 3.91216 13.2042 2 16 2C19.3137 2 22 4.68629 22 8C22 10.7957 20.0879 13.1449 17.5001 13.811M14 16C14 19.3137 11.3137 22 8 22C4.68629 22 2 19.3137 2 16C2 12.6863 4.68629 10 8 10C11.3137 10 14 12.6863 14 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/colors.svg b/@stellar/design-system/src/assets/icons/colors.svg
new file mode 100644
index 00000000..7c8fe7e5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/colors.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20.4722C13.0615 21.4223 14.4633 22 16 22C19.3137 22 22 19.3137 22 16C22 13.2331 20.1271 10.9036 17.5798 10.2102M6.42018 10.2102C3.87293 10.9036 2 13.2331 2 16C2 19.3137 4.68629 22 8 22C11.3137 22 14 19.3137 14 16C14 15.2195 13.851 14.4738 13.5798 13.7898M18 8C18 11.3137 15.3137 14 12 14C8.68629 14 6 11.3137 6 8C6 4.68629 8.68629 2 12 2C15.3137 2 18 4.68629 18 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/columns-01.svg b/@stellar/design-system/src/assets/icons/columns-01.svg
new file mode 100644
index 00000000..569705ce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/columns-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.07989 3 6.2V17.8C3 18.9201 3 19.4802 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.0799 21 6.2 21H6.8C7.9201 21 8.48016 21 8.90798 20.782C9.28431 20.5903 9.59027 20.2843 9.78201 19.908C10 19.4802 10 18.9201 10 17.8V6.2C10 5.0799 10 4.51984 9.78201 4.09202C9.59027 3.71569 9.28431 3.40973 8.90798 3.21799C8.48016 3 7.9201 3 6.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.8 3H17.2C16.0799 3 15.5198 3 15.092 3.21799C14.7157 3.40973 14.4097 3.71569 14.218 4.09202C14 4.51984 14 5.0799 14 6.2V17.8C14 18.9201 14 19.4802 14.218 19.908C14.4097 20.2843 14.7157 20.5903 15.092 20.782C15.5198 21 16.0799 21 17.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4802 21 18.9201 21 17.8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/columns-02.svg b/@stellar/design-system/src/assets/icons/columns-02.svg
new file mode 100644
index 00000000..b79e1edb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/columns-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/columns-03.svg b/@stellar/design-system/src/assets/icons/columns-03.svg
new file mode 100644
index 00000000..84c39b46
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/columns-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3V21M15 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/command.svg b/@stellar/design-system/src/assets/icons/command.svg
new file mode 100644
index 00000000..088c0f90
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/command.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9V6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9H9ZM9 9V15M9 9H15M9 15V18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15H9ZM9 15H15M15 15H18C19.6569 15 21 16.3431 21 18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18V15ZM15 15V9M15 9V6C15 4.34315 16.3431 3 18 3C19.6569 3 21 4.34315 21 6C21 7.65685 19.6569 9 18 9H15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/compass-01.svg b/@stellar/design-system/src/assets/icons/compass-01.svg
new file mode 100644
index 00000000..d57ef14f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/compass-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12C22 17.5228 17.5228 22 12 22M22 12C22 6.47715 17.5228 2 12 2M22 12H20M12 22C6.47715 22 2 17.5228 2 12M12 22V20M2 12C2 6.47715 6.47715 2 12 2M2 12H4M12 2V4M19.0711 19.0711L17.6569 17.6569M6.34315 6.34315L4.92893 4.92893M17.6569 6.34315L19.0711 4.92893M4.92893 19.0711L6.34315 17.6569M8 12L10.5 10.5L12 8L13.5 10.5L16 12L13.5 13.5L12 16L10.5 13.5L8 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/compass-02.svg b/@stellar/design-system/src/assets/icons/compass-02.svg
new file mode 100644
index 00000000..a1222aca
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/compass-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12H20M22 12C22 17.5228 17.5228 22 12 22M22 12C22 6.47715 17.5228 2 12 2M19.0711 19.0711L17.6569 17.6569M4 12H2M2 12C2 17.5228 6.47715 22 12 22M2 12C2 6.47715 6.47715 2 12 2M6.34315 6.34315L4.92893 4.92893M12 4V2M17.6569 6.34315L19.0711 4.92893M12 22V20M4.92893 19.0711L6.34315 17.6569M12 8L16 12L12 16L8 12L12 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/compass-03.svg b/@stellar/design-system/src/assets/icons/compass-03.svg
new file mode 100644
index 00000000..a9874b2d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/compass-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.7221 8.26596C15.2107 8.10312 15.4549 8.02169 15.6174 8.07962C15.7587 8.13003 15.87 8.24127 15.9204 8.38263C15.9783 8.54507 15.8969 8.78935 15.734 9.27789L14.2465 13.7405C14.2001 13.8797 14.1769 13.9492 14.1374 14.007C14.1024 14.0582 14.0582 14.1024 14.007 14.1374C13.9492 14.1769 13.8797 14.2001 13.7405 14.2465L9.27789 15.734C8.78935 15.8969 8.54507 15.9783 8.38263 15.9204C8.24127 15.87 8.13003 15.7587 8.07962 15.6174C8.02169 15.4549 8.10312 15.2107 8.26596 14.7221L9.75351 10.2595C9.79989 10.1203 9.82308 10.0508 9.8626 9.99299C9.8976 9.94182 9.94182 9.8976 9.99299 9.8626C10.0508 9.82308 10.1203 9.79989 10.2595 9.75351L14.7221 8.26596Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/compass.svg b/@stellar/design-system/src/assets/icons/compass.svg
new file mode 100644
index 00000000..7a03e640
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/compass.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 4C10.6193 4 9.5 5.11929 9.5 6.5C9.5 7.88071 10.6193 9 12 9C13.3807 9 14.5 7.88071 14.5 6.5C14.5 5.11929 13.3807 4 12 4ZM12 4V2M21 14.9375C18.8012 17.4287 15.5841 19 12 19C8.41592 19 5.19883 17.4287 3 14.9375M10.7448 8.66169L3 22M13.2552 8.66169L21 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/contact-page.svg b/@stellar/design-system/src/assets/icons/contact-page.svg
deleted file mode 100644
index 3331b755..00000000
--- a/@stellar/design-system/src/assets/icons/contact-page.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6903)"><path d="M12 14C12.55 14 13.021 13.804 13.413 13.412C13.8043 13.0207 14 12.55 14 12C14 11.45 13.8043 10.979 13.413 10.587C13.021 10.1957 12.55 10 12 10C11.45 10 10.9793 10.1957 10.588 10.587C10.196 10.979 10 11.45 10 12C10 12.55 10.196 13.0207 10.588 13.412C10.9793 13.804 11.45 14 12 14ZM8 18H16V17.425C16 17.025 15.8917 16.6583 15.675 16.325C15.4583 15.9917 15.1583 15.7417 14.775 15.575C14.3417 15.3917 13.896 15.25 13.438 15.15C12.9793 15.05 12.5 15 12 15C11.5 15 11.0207 15.05 10.562 15.15C10.104 15.25 9.65833 15.3917 9.225 15.575C8.84167 15.7417 8.54167 15.9917 8.325 16.325C8.10833 16.6583 8 17.025 8 17.425V18ZM18 22H6C5.45 22 4.97933 21.8043 4.588 21.413C4.196 21.021 4 20.55 4 20V4C4 3.45 4.196 2.979 4.588 2.587C4.97933 2.19567 5.45 2 6 2H13.175C13.4417 2 13.696 2.05 13.938 2.15C14.1793 2.25 14.3917 2.39167 14.575 2.575L19.425 7.425C19.6083 7.60833 19.75 7.82067 19.85 8.062C19.95 8.304 20 8.55833 20 8.825V20C20 20.55 19.8043 21.021 19.413 21.413C19.021 21.8043 18.55 22 18 22Z"/></g><defs><clipPath id="clip0_1113_6903"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/contacts.svg b/@stellar/design-system/src/assets/icons/contacts.svg
deleted file mode 100644
index f8b5a31b..00000000
--- a/@stellar/design-system/src/assets/icons/contacts.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6900)"><path d="M5 23C4.71667 23 4.479 22.904 4.287 22.712C4.09567 22.5207 4 22.2833 4 22C4 21.7167 4.09567 21.4793 4.287 21.288C4.479 21.096 4.71667 21 5 21H19C19.2833 21 19.5207 21.096 19.712 21.288C19.904 21.4793 20 21.7167 20 22C20 22.2833 19.904 22.5207 19.712 22.712C19.5207 22.904 19.2833 23 19 23H5ZM5 3C4.71667 3 4.479 2.904 4.287 2.712C4.09567 2.52067 4 2.28333 4 2C4 1.71667 4.09567 1.479 4.287 1.287C4.479 1.09567 4.71667 1 5 1H19C19.2833 1 19.5207 1.09567 19.712 1.287C19.904 1.479 20 1.71667 20 2C20 2.28333 19.904 2.52067 19.712 2.712C19.5207 2.904 19.2833 3 19 3H5ZM12 13C12.8333 13 13.5417 12.7083 14.125 12.125C14.7083 11.5417 15 10.8333 15 10C15 9.16667 14.7083 8.45833 14.125 7.875C13.5417 7.29167 12.8333 7 12 7C11.1667 7 10.4583 7.29167 9.875 7.875C9.29167 8.45833 9 9.16667 9 10C9 10.8333 9.29167 11.5417 9.875 12.125C10.4583 12.7083 11.1667 13 12 13ZM4 20C3.45 20 2.97933 19.8043 2.588 19.413C2.196 19.021 2 18.55 2 18V6C2 5.45 2.196 4.97933 2.588 4.588C2.97933 4.196 3.45 4 4 4H20C20.55 4 21.021 4.196 21.413 4.588C21.8043 4.97933 22 5.45 22 6V18C22 18.55 21.8043 19.021 21.413 19.413C21.021 19.8043 20.55 20 20 20H4ZM5.75 18H18.25C17.5 17.0667 16.5917 16.3333 15.525 15.8C14.4583 15.2667 13.2833 15 12 15C10.7167 15 9.54167 15.2667 8.475 15.8C7.40833 16.3333 6.5 17.0667 5.75 18Z"/></g><defs><clipPath id="clip0_1113_6900"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/container.svg b/@stellar/design-system/src/assets/icons/container.svg
new file mode 100644
index 00000000..ca16ae23
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/container.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27777L12 12M12 12L3.49997 7.27777M12 12L12 21.5M21 16.0586V7.94147C21 7.59883 21 7.4275 20.9495 7.27471C20.9049 7.13953 20.8318 7.01545 20.7354 6.91076C20.6263 6.79242 20.4766 6.70922 20.177 6.54282L12.777 2.43171C12.4934 2.27415 12.3516 2.19537 12.2015 2.16448C12.0685 2.13715 11.9315 2.13715 11.7986 2.16448C11.6484 2.19537 11.5066 2.27415 11.223 2.43171L3.82297 6.54282C3.52345 6.70922 3.37369 6.79242 3.26463 6.91076C3.16816 7.01545 3.09515 7.13953 3.05048 7.27471C3 7.42751 3 7.59883 3 7.94147V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/content-copy.svg b/@stellar/design-system/src/assets/icons/content-copy.svg
deleted file mode 100644
index 6ebe6b93..00000000
--- a/@stellar/design-system/src/assets/icons/content-copy.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6897)"><path d="M9 18C8.45 18 7.97933 17.8043 7.588 17.413C7.196 17.021 7 16.55 7 16V4C7 3.45 7.196 2.979 7.588 2.587C7.97933 2.19567 8.45 2 9 2H18C18.55 2 19.021 2.19567 19.413 2.587C19.8043 2.979 20 3.45 20 4V16C20 16.55 19.8043 17.021 19.413 17.413C19.021 17.8043 18.55 18 18 18H9ZM5 22C4.45 22 3.979 21.8043 3.587 21.413C3.19567 21.021 3 20.55 3 20V7C3 6.71667 3.096 6.479 3.288 6.287C3.47933 6.09567 3.71667 6 4 6C4.28333 6 4.521 6.09567 4.713 6.287C4.90433 6.479 5 6.71667 5 7V20H15C15.2833 20 15.521 20.096 15.713 20.288C15.9043 20.4793 16 20.7167 16 21C16 21.2833 15.9043 21.5207 15.713 21.712C15.521 21.904 15.2833 22 15 22H5Z"/></g><defs><clipPath id="clip0_1113_6897"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/content-paste.svg b/@stellar/design-system/src/assets/icons/content-paste.svg
deleted file mode 100644
index e2bdfff5..00000000
--- a/@stellar/design-system/src/assets/icons/content-paste.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6894)"><path d="M12 5C12.2833 5 12.521 4.904 12.713 4.712C12.9043 4.52067 13 4.28333 13 4C13 3.71667 12.9043 3.479 12.713 3.287C12.521 3.09567 12.2833 3 12 3C11.7167 3 11.4793 3.09567 11.288 3.287C11.096 3.479 11 3.71667 11 4C11 4.28333 11.096 4.52067 11.288 4.712C11.4793 4.904 11.7167 5 12 5ZM5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H9.175C9.35833 2.41667 9.71667 1.93733 10.25 1.562C10.7833 1.18733 11.3667 1 12 1C12.6667 1 13.2627 1.18733 13.788 1.562C14.3127 1.93733 14.6667 2.41667 14.85 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5V19C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H5ZM5 19H19V5H17V6C17 6.55 16.8043 7.02067 16.413 7.412C16.021 7.804 15.55 8 15 8H9C8.45 8 7.97933 7.804 7.588 7.412C7.196 7.02067 7 6.55 7 6V5H5V19Z"/></g><defs><clipPath id="clip0_1113_6894"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/contrast-01.svg b/@stellar/design-system/src/assets/icons/contrast-01.svg
new file mode 100644
index 00000000..4c0518c7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/contrast-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2C12.5917 2 13.1713 2.05139 13.7348 2.14994M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22M12 2V22M17.738 3.809C18.6922 4.47869 19.5241 5.31089 20.1934 6.26541M21.8501 10.2656C21.9486 10.8289 22 11.4085 22 12C22 12.5915 21.9486 13.1711 21.8501 13.7344M20.1892 17.7406C19.5203 18.693 18.6896 19.5233 17.7369 20.1917M13.7328 21.8504C13.17 21.9487 12.591 22 12 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/contrast-02.svg b/@stellar/design-system/src/assets/icons/contrast-02.svg
new file mode 100644
index 00000000..df5cd90d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/contrast-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 18.5C15.5899 18.5 18.5 15.5899 18.5 12C18.5 8.41015 15.5899 5.5 12 5.5V18.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/contrast-03.svg b/@stellar/design-system/src/assets/icons/contrast-03.svg
new file mode 100644
index 00000000..4a2f4411
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/contrast-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 8.5C16 12.6421 12.6421 16 8.5 16C7.88534 16 7.28795 15.9261 6.71623 15.7866C7.89585 17.4297 9.82294 18.5 12 18.5C15.5899 18.5 18.5 15.5899 18.5 12C18.5 9.82294 17.4297 7.89585 15.7866 6.71623C15.9261 7.28795 16 7.88534 16 8.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-01.svg b/@stellar/design-system/src/assets/icons/copy-01.svg
new file mode 100644
index 00000000..e06ace38
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 15C4.06812 15 3.60218 15 3.23463 14.8478C2.74458 14.6448 2.35523 14.2554 2.15224 13.7654C2 13.3978 2 12.9319 2 12V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H12C12.9319 2 13.3978 2 13.7654 2.15224C14.2554 2.35523 14.6448 2.74458 14.8478 3.23463C15 3.60218 15 4.06812 15 5M12.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V12.2C22 11.0799 22 10.5198 21.782 10.092C21.5903 9.71569 21.2843 9.40973 20.908 9.21799C20.4802 9 19.9201 9 18.8 9H12.2C11.0799 9 10.5198 9 10.092 9.21799C9.71569 9.40973 9.40973 9.71569 9.21799 10.092C9 10.5198 9 11.0799 9 12.2V18.8C9 19.9201 9 20.4802 9.21799 20.908C9.40973 21.2843 9.71569 21.5903 10.092 21.782C10.5198 22 11.0799 22 12.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-02.svg b/@stellar/design-system/src/assets/icons/copy-02.svg
new file mode 100644
index 00000000..377caa9f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.0799 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.0799 16 5.2 16H8M11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H11.2C10.0799 8 9.51984 8 9.09202 8.21799C8.71569 8.40973 8.40973 8.71569 8.21799 9.09202C8 9.51984 8 10.0799 8 11.2V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-03.svg b/@stellar/design-system/src/assets/icons/copy-03.svg
new file mode 100644
index 00000000..816e8420
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-04.svg b/@stellar/design-system/src/assets/icons/copy-04.svg
new file mode 100644
index 00000000..4863faf2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 16V18.8C16 19.9201 16 20.4802 15.782 20.908C15.5903 21.2843 15.2843 21.5903 14.908 21.782C14.4802 22 13.9201 22 12.8 22H5.2C4.0799 22 3.51984 22 3.09202 21.782C2.71569 21.5903 2.40973 21.2843 2.21799 20.908C2 20.4802 2 19.9201 2 18.8V11.2C2 10.0799 2 9.51984 2.21799 9.09202C2.40973 8.71569 2.71569 8.40973 3.09202 8.21799C3.51984 8 4.0799 8 5.2 8H8M11.2 16H18.8C19.9201 16 20.4802 16 20.908 15.782C21.2843 15.5903 21.5903 15.2843 21.782 14.908C22 14.4802 22 13.9201 22 12.8V5.2C22 4.0799 22 3.51984 21.782 3.09202C21.5903 2.71569 21.2843 2.40973 20.908 2.21799C20.4802 2 19.9201 2 18.8 2H11.2C10.0799 2 9.51984 2 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8 3.51984 8 4.07989 8 5.2V12.8C8 13.9201 8 14.4802 8.21799 14.908C8.40973 15.2843 8.71569 15.5903 9.09202 15.782C9.51984 16 10.0799 16 11.2 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-05.svg b/@stellar/design-system/src/assets/icons/copy-05.svg
new file mode 100644
index 00000000..6e2aa990
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 16V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H16M5.2 16H12.8C13.9201 16 14.4802 16 14.908 15.782C15.2843 15.5903 15.5903 15.2843 15.782 14.908C16 14.4802 16 13.9201 16 12.8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.07989 16 5.2 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-06.svg b/@stellar/design-system/src/assets/icons/copy-06.svg
new file mode 100644
index 00000000..3413ba6e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 3H14.6C16.8402 3 17.9603 3 18.816 3.43597C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C21 6.03969 21 7.15979 21 9.4V16.5M6.2 21H14.3C15.4201 21 15.9802 21 16.408 20.782C16.7843 20.5903 17.0903 20.2843 17.282 19.908C17.5 19.4802 17.5 18.9201 17.5 17.8V9.7C17.5 8.57989 17.5 8.01984 17.282 7.59202C17.0903 7.21569 16.7843 6.90973 16.408 6.71799C15.9802 6.5 15.4201 6.5 14.3 6.5H6.2C5.0799 6.5 4.51984 6.5 4.09202 6.71799C3.71569 6.90973 3.40973 7.21569 3.21799 7.59202C3 8.01984 3 8.57989 3 9.7V17.8C3 18.9201 3 19.4802 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.0799 21 6.2 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-07.svg b/@stellar/design-system/src/assets/icons/copy-07.svg
new file mode 100644
index 00000000..b9a96a19
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/copy-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5 2.0028C9.82495 2.01194 9.4197 2.05103 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8.05103 3.4197 8.01194 3.82495 8.0028 4.5M19.5 2.0028C20.1751 2.01194 20.5803 2.05103 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C21.949 3.4197 21.9881 3.82494 21.9972 4.49999M21.9972 13.5C21.9881 14.175 21.949 14.5803 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.5803 15.949 20.1751 15.9881 19.5 15.9972M22 7.99999V9.99999M14.0001 2H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/copy-all.svg b/@stellar/design-system/src/assets/icons/copy-all.svg
deleted file mode 100644
index 18579fdd..00000000
--- a/@stellar/design-system/src/assets/icons/copy-all.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6891)"><path d="M9 18C8.45 18 7.97933 17.8043 7.588 17.413C7.196 17.021 7 16.55 7 16V4C7 3.45 7.196 2.979 7.588 2.587C7.97933 2.19567 8.45 2 9 2H18C18.55 2 19.021 2.19567 19.413 2.587C19.8043 2.979 20 3.45 20 4V16C20 16.55 19.8043 17.021 19.413 17.413C19.021 17.8043 18.55 18 18 18H9ZM9 16H18V4H9V16ZM3 15H5V13H3V15ZM3 11.5H5V9.5H3V11.5ZM10 22H12V20H10V22ZM3 18.5H5V16.5H3V18.5ZM5 22V20H3C3 20.55 3.19567 21.021 3.587 21.413C3.979 21.8043 4.45 22 5 22ZM6.5 22H8.5V20H6.5V22ZM13.5 22C14.05 22 14.521 21.8043 14.913 21.413C15.3043 21.021 15.5 20.55 15.5 20H13.5V22ZM3 8H5V6C4.45 6 3.979 6.196 3.587 6.588C3.19567 6.97933 3 7.45 3 8Z"/></g><defs><clipPath id="clip0_1113_6891"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-down-left.svg b/@stellar/design-system/src/assets/icons/corner-down-left.svg
new file mode 100644
index 00000000..5b0a236e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-down-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 4V5.4C20 8.76031 20 10.4405 19.346 11.7239C18.7708 12.8529 17.8529 13.7708 16.7239 14.346C15.4405 15 13.7603 15 10.4 15H4M4 15L9 10M4 15L9 20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-down-right.svg b/@stellar/design-system/src/assets/icons/corner-down-right.svg
new file mode 100644
index 00000000..c1eeccdd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-down-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 4V5.4C4 8.76031 4 10.4405 4.65396 11.7239C5.2292 12.8529 6.14708 13.7708 7.27606 14.346C8.55953 15 10.2397 15 13.6 15H20M20 15L15 10M20 15L15 20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-left-down.svg b/@stellar/design-system/src/assets/icons/corner-left-down.svg
new file mode 100644
index 00000000..075fb801
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-left-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 4H17.6C14.2397 4 12.5595 4 11.2761 4.65396C10.1471 5.2292 9.2292 6.14708 8.65396 7.27606C8 8.55953 8 10.2397 8 13.6V20M8 20L13 15M8 20L3 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-left-up.svg b/@stellar/design-system/src/assets/icons/corner-left-up.svg
new file mode 100644
index 00000000..41dcfd6f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-left-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 20H17.6C14.2397 20 12.5595 20 11.2761 19.346C10.1471 18.7708 9.2292 17.8529 8.65396 16.7239C8 15.4405 8 13.7603 8 10.4V4M8 4L13 9M8 4L3 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-right-down.svg b/@stellar/design-system/src/assets/icons/corner-right-down.svg
new file mode 100644
index 00000000..6f7dcf1d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-right-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 4H6.4C9.76031 4 11.4405 4 12.7239 4.65396C13.8529 5.2292 14.7708 6.14708 15.346 7.27606C16 8.55953 16 10.2397 16 13.6L16 20M16 20L11 15M16 20L21 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-right-up.svg b/@stellar/design-system/src/assets/icons/corner-right-up.svg
new file mode 100644
index 00000000..99b5ca6f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-right-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 20H6.4C9.76031 20 11.4405 20 12.7239 19.346C13.8529 18.7708 14.7708 17.8529 15.346 16.7239C16 15.4405 16 13.7603 16 10.4L16 4M16 4L11 9M16 4L21 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-up-left.svg b/@stellar/design-system/src/assets/icons/corner-up-left.svg
new file mode 100644
index 00000000..dd364731
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-up-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 14L4 9M4 9L9 4M4 9H10.4C13.7603 9 15.4405 9 16.7239 9.65396C17.8529 10.2292 18.7708 11.1471 19.346 12.2761C20 13.5595 20 15.2397 20 18.6V20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/corner-up-right.svg b/@stellar/design-system/src/assets/icons/corner-up-right.svg
new file mode 100644
index 00000000..02ea975b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/corner-up-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 20V18.6C4 15.2397 4 13.5595 4.65396 12.2761C5.2292 11.1471 6.14708 10.2292 7.27606 9.65396C8.55953 9 10.2397 9 13.6 9H20M20 9L15 14M20 9L15 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cpu-chip-01.svg b/@stellar/design-system/src/assets/icons/cpu-chip-01.svg
new file mode 100644
index 00000000..c7b473f0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cpu-chip-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 2V4M15 2V4M9 20V22M15 20V22M20 9H22M20 14H22M2 9H4M2 14H4M8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2V8.8C20 7.11984 20 6.27976 19.673 5.63803C19.3854 5.07354 18.9265 4.6146 18.362 4.32698C17.7202 4 16.8802 4 15.2 4H8.8C7.11984 4 6.27976 4 5.63803 4.32698C5.07354 4.6146 4.6146 5.07354 4.32698 5.63803C4 6.27976 4 7.11984 4 8.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20ZM10.6 15H13.4C13.9601 15 14.2401 15 14.454 14.891C14.6422 14.7951 14.7951 14.6422 14.891 14.454C15 14.2401 15 13.9601 15 13.4V10.6C15 10.0399 15 9.75992 14.891 9.54601C14.7951 9.35785 14.6422 9.20487 14.454 9.10899C14.2401 9 13.9601 9 13.4 9H10.6C10.0399 9 9.75992 9 9.54601 9.10899C9.35785 9.20487 9.20487 9.35785 9.10899 9.54601C9 9.75992 9 10.0399 9 10.6V13.4C9 13.9601 9 14.2401 9.10899 14.454C9.20487 14.6422 9.35785 14.7951 9.54601 14.891C9.75992 15 10.0399 15 10.6 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cpu-chip-02.svg b/@stellar/design-system/src/assets/icons/cpu-chip-02.svg
new file mode 100644
index 00000000..a798fe16
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cpu-chip-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 2V5M15 2V5M9 19V22M15 19V22M19 9H22M19 14H22M2 9H5M2 14H5M9.8 19H14.2C15.8802 19 16.7202 19 17.362 18.673C17.9265 18.3854 18.3854 17.9265 18.673 17.362C19 16.7202 19 15.8802 19 14.2V9.8C19 8.11984 19 7.27976 18.673 6.63803C18.3854 6.07354 17.9265 5.6146 17.362 5.32698C16.7202 5 15.8802 5 14.2 5H9.8C8.11984 5 7.27976 5 6.63803 5.32698C6.07354 5.6146 5.6146 6.07354 5.32698 6.63803C5 7.27976 5 8.11984 5 9.8V14.2C5 15.8802 5 16.7202 5.32698 17.362C5.6146 17.9265 6.07354 18.3854 6.63803 18.673C7.27976 19 8.11984 19 9.8 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-01.svg b/@stellar/design-system/src/assets/icons/credit-card-01.svg
new file mode 100644
index 00000000..b8d6892f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10H2M2 8.2L2 15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.07989 19 5.2 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5L5.2 5C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.07989 2 8.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-02.svg b/@stellar/design-system/src/assets/icons/credit-card-02.svg
new file mode 100644
index 00000000..cf78bc22
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10H2M11 14H6M2 8.2L2 15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.07989 19 5.2 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5L5.2 5C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.07989 2 8.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-check.svg b/@stellar/design-system/src/assets/icons/credit-card-check.svg
new file mode 100644
index 00000000..797e4f43
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L18 20L22 16M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-down.svg b/@stellar/design-system/src/assets/icons/credit-card-down.svg
new file mode 100644
index 00000000..6751e877
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L19 21M19 21L22 18M19 21V15M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-download.svg b/@stellar/design-system/src/assets/icons/credit-card-download.svg
new file mode 100644
index 00000000..37ab1474
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-download.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 17L12 20M12 20L15 17M12 20V13M22 9H2M5.5 18H5.2C4.0799 18 3.51984 18 3.09202 17.782C2.71569 17.5903 2.40973 17.2843 2.21799 16.908C2 16.4802 2 15.9201 2 14.8V7.2C2 6.0799 2 5.51984 2.21799 5.09202C2.40973 4.71569 2.7157 4.40973 3.09202 4.21799C3.51984 4 4.0799 4 5.2 4H18.8C19.9201 4 20.4802 4 20.908 4.21799C21.2843 4.40974 21.5903 4.7157 21.782 5.09202C22 5.51984 22 6.0799 22 7.2V14.8C22 15.9201 22 16.4802 21.782 16.908C21.5903 17.2843 21.2843 17.5903 20.908 17.782C20.4802 18 19.9201 18 18.8 18H18.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-edit.svg b/@stellar/design-system/src/assets/icons/credit-card-edit.svg
new file mode 100644
index 00000000..1e959935
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-edit.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 10H22V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H11M14.5 21L16.525 20.595C16.7015 20.5597 16.7898 20.542 16.8721 20.5097C16.9452 20.4811 17.0147 20.4439 17.079 20.399C17.1516 20.3484 17.2152 20.2848 17.3426 20.1574L21.5 16C22.0523 15.4477 22.0523 14.5523 21.5 14C20.9477 13.4477 20.0523 13.4477 19.5 14L15.3426 18.1574C15.2152 18.2848 15.1516 18.3484 15.101 18.421C15.0561 18.4853 15.0189 18.5548 14.9903 18.6279C14.958 18.7102 14.9403 18.7985 14.905 18.975L14.5 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-lock.svg b/@stellar/design-system/src/assets/icons/credit-card-lock.svg
new file mode 100644
index 00000000..ef7c59b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-lock.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.25 17.5V15.75C20.25 14.7835 19.4665 14 18.5 14C17.5335 14 16.75 14.7835 16.75 15.75V17.5M22 10H2M22 11V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H11M16.6 21.5H20.4C20.9601 21.5 21.2401 21.5 21.454 21.391C21.6422 21.2951 21.7951 21.1422 21.891 20.954C22 20.7401 22 20.4601 22 19.9V19.1C22 18.5399 22 18.2599 21.891 18.046C21.7951 17.8578 21.6422 17.7049 21.454 17.609C21.2401 17.5 20.9601 17.5 20.4 17.5H16.6C16.0399 17.5 15.7599 17.5 15.546 17.609C15.3578 17.7049 15.2049 17.8578 15.109 18.046C15 18.2599 15 18.5399 15 19.1V19.9C15 20.4601 15 20.7401 15.109 20.954C15.2049 21.1422 15.3578 21.2951 15.546 21.391C15.7599 21.5 16.0399 21.5 16.6 21.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-minus.svg b/@stellar/design-system/src/assets/icons/credit-card-minus.svg
new file mode 100644
index 00000000..c865b497
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18H22M22 10H2M22 13.5V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-plus.svg b/@stellar/design-system/src/assets/icons/credit-card-plus.svg
new file mode 100644
index 00000000..82c1dd3f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21V15M16 18H22M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-refresh.svg b/@stellar/design-system/src/assets/icons/credit-card-refresh.svg
new file mode 100644
index 00000000..b2c59cc5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-refresh.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10H2M11 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H17M11 19L13 21M11 19L13 17M7 19H5.2C4.07989 19 3.51984 19 3.09202 18.782C2.71569 18.5903 2.40973 18.2843 2.21799 17.908C2 17.4802 2 16.9201 2 15.8V8.2C2 7.0799 2 6.51984 2.21799 6.09202C2.40973 5.71569 2.7157 5.40973 3.09202 5.21799C3.51984 5 4.0799 5 5.2 5H13M13 5L11 7M13 5L11 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-search.svg b/@stellar/design-system/src/assets/icons/credit-card-search.svg
new file mode 100644
index 00000000..66ac915d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-search.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 22L20.5 20.5M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H10.5M21.5 18C21.5 19.933 19.933 21.5 18 21.5C16.067 21.5 14.5 19.933 14.5 18C14.5 16.067 16.067 14.5 18 14.5C19.933 14.5 21.5 16.067 21.5 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-shield.svg b/@stellar/design-system/src/assets/icons/credit-card-shield.svg
new file mode 100644
index 00000000..724dc91b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-shield.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10H2M22 11V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.07989 19 5.2 19H11.5M18 21C18 21 21 19.5701 21 17.4252V14.9229L18.8124 14.1412C18.2868 13.9529 17.712 13.9529 17.1864 14.1412L15 14.9229V17.4252C15 19.5701 18 21 18 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-up.svg b/@stellar/design-system/src/assets/icons/credit-card-up.svg
new file mode 100644
index 00000000..7521976f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L19 15M19 15L22 18M19 15V21M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-upload.svg b/@stellar/design-system/src/assets/icons/credit-card-upload.svg
new file mode 100644
index 00000000..806d3236
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-upload.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 16L12 13M12 13L15 16M12 13V20M22 9H2M5.5 18H5.2C4.0799 18 3.51984 18 3.09202 17.782C2.71569 17.5903 2.40973 17.2843 2.21799 16.908C2 16.4802 2 15.9201 2 14.8V7.2C2 6.0799 2 5.51984 2.21799 5.09202C2.40973 4.71569 2.7157 4.40973 3.09202 4.21799C3.51984 4 4.0799 4 5.2 4H18.8C19.9201 4 20.4802 4 20.908 4.21799C21.2843 4.40974 21.5903 4.7157 21.782 5.09202C22 5.51984 22 6.0799 22 7.2V14.8C22 15.9201 22 16.4802 21.782 16.908C21.5903 17.2843 21.2843 17.5903 20.908 17.782C20.4802 18 19.9201 18 18.8 18H18.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/credit-card-x.svg b/@stellar/design-system/src/assets/icons/credit-card-x.svg
new file mode 100644
index 00000000..8430dfea
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/credit-card-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 16L21.5 21M21.5 16L16.5 21M22 10H2M22 12V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.7157 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V15.8C2 16.9201 2 17.4802 2.21799 17.908C2.40973 18.2843 2.71569 18.5903 3.09202 18.782C3.51984 19 4.0799 19 5.2 19H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/crop-01.svg b/@stellar/design-system/src/assets/icons/crop-01.svg
new file mode 100644
index 00000000..b23231c5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/crop-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 6H14.8C15.9201 6 16.4802 6 16.908 6.21799C17.2843 6.40973 17.5903 6.71569 17.782 7.09202C18 7.51984 18 8.07989 18 9.2V22M22 18L9.2 18C8.07989 18 7.51984 18 7.09202 17.782C6.71569 17.5903 6.40973 17.2843 6.21799 16.908C6 16.4802 6 15.9201 6 14.8V2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/crop-02.svg b/@stellar/design-system/src/assets/icons/crop-02.svg
new file mode 100644
index 00000000..114d8ba3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/crop-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 6H14.8C15.9201 6 16.4802 6 16.908 6.21799C17.2843 6.40973 17.5903 6.71569 17.782 7.09202C18 7.51984 18 8.07989 18 9.2V14M2 6H6M18 18V22M22 18L9.2 18C8.07989 18 7.51984 18 7.09202 17.782C6.71569 17.5903 6.40973 17.2843 6.21799 16.908C6 16.4802 6 15.9201 6 14.8V2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cryptocurrency-01.svg b/@stellar/design-system/src/assets/icons/cryptocurrency-01.svg
new file mode 100644
index 00000000..b3b4adab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cryptocurrency-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.8778 20.0902C16.1694 21.3315 14.1118 22 12 22C9.88818 22 7.8306 21.3315 6.12212 20.0902M16.3837 3.01206C18.2818 3.93781 19.838 5.44068 20.8295 7.30528C21.8209 9.16989 22.1966 11.3005 21.9027 13.3917M2.09739 13.3916C1.80349 11.3004 2.17917 9.16979 3.1706 7.30519C4.16202 5.44059 5.71829 3.93771 7.61636 3.01196M17.5 12C17.5 15.0376 15.0375 17.5 12 17.5C8.96241 17.5 6.49997 15.0376 6.49997 12C6.49997 8.96244 8.96241 6.5 12 6.5C15.0375 6.5 17.5 8.96244 17.5 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cryptocurrency-02.svg b/@stellar/design-system/src/assets/icons/cryptocurrency-02.svg
new file mode 100644
index 00000000..c02968b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cryptocurrency-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.8778 20.0902C16.1694 21.3315 14.1118 22 12 22C9.88818 22 7.8306 21.3315 6.12212 20.0902M16.3837 3.01206C18.2818 3.93781 19.838 5.44068 20.8295 7.30528C21.8209 9.16989 22.1966 11.3005 21.9027 13.3917M2.09739 13.3916C1.80349 11.3004 2.17917 9.16979 3.1706 7.30519C4.16202 5.44059 5.71829 3.93771 7.61636 3.01196M11.4343 6.56569L6.56566 11.4343C6.36765 11.6323 6.26865 11.7313 6.23155 11.8455C6.19892 11.9459 6.19892 12.0541 6.23155 12.1545C6.26865 12.2687 6.36765 12.3677 6.56566 12.5657L11.4343 17.4343C11.6323 17.6323 11.7313 17.7313 11.8455 17.7684C11.9459 17.8011 12.0541 17.8011 12.1545 17.7684C12.2686 17.7313 12.3677 17.6323 12.5657 17.4343L17.4343 12.5657C17.6323 12.3677 17.7313 12.2687 17.7684 12.1545C17.801 12.0541 17.801 11.9459 17.7684 11.8455C17.7313 11.7313 17.6323 11.6323 17.4343 11.4343L12.5657 6.56569C12.3677 6.36768 12.2686 6.26867 12.1545 6.23158C12.0541 6.19895 11.9459 6.19895 11.8455 6.23158C11.7313 6.26867 11.6323 6.36768 11.4343 6.56569Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cryptocurrency-03.svg b/@stellar/design-system/src/assets/icons/cryptocurrency-03.svg
new file mode 100644
index 00000000..b9456bd6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cryptocurrency-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 2L4 4M22 2L20 4M22 22L20 20M2 22L4 20M2 16H3.5M8 2V3.5M22 8H20.5M16 22V20.5M18 16H21.5M16 2V6M2 8H6M8 22V18M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cryptocurrency-04.svg b/@stellar/design-system/src/assets/icons/cryptocurrency-04.svg
new file mode 100644
index 00000000..67bff24d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cryptocurrency-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 2L4 4M22 2L20 4M22 22L20 20M2 22L4 20M2 16H3.5M8 2V3.5M22 8H20.5M16 22V20.5M18 16H21.5M16 2V6M2 8H6M8 22V18M11.4343 7.56569L7.56569 11.4343C7.36768 11.6323 7.26867 11.7313 7.23158 11.8455C7.19895 11.9459 7.19895 12.0541 7.23158 12.1545C7.26867 12.2687 7.36768 12.3677 7.56569 12.5657L11.4343 16.4343C11.6323 16.6323 11.7313 16.7313 11.8455 16.7684C11.9459 16.8011 12.0541 16.8011 12.1545 16.7684C12.2687 16.7313 12.3677 16.6323 12.5657 16.4343L16.4343 12.5657C16.6323 12.3677 16.7313 12.2687 16.7684 12.1545C16.8011 12.0541 16.8011 11.9459 16.7684 11.8455C16.7313 11.7313 16.6323 11.6323 16.4343 11.4343L12.5657 7.56569C12.3677 7.36768 12.2687 7.26867 12.1545 7.23158C12.0541 7.19895 11.9459 7.19895 11.8455 7.23158C11.7313 7.26867 11.6323 7.36768 11.4343 7.56569Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cube-01.svg b/@stellar/design-system/src/assets/icons/cube-01.svg
new file mode 100644
index 00000000..ca16ae23
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cube-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27777L12 12M12 12L3.49997 7.27777M12 12L12 21.5M21 16.0586V7.94147C21 7.59883 21 7.4275 20.9495 7.27471C20.9049 7.13953 20.8318 7.01545 20.7354 6.91076C20.6263 6.79242 20.4766 6.70922 20.177 6.54282L12.777 2.43171C12.4934 2.27415 12.3516 2.19537 12.2015 2.16448C12.0685 2.13715 11.9315 2.13715 11.7986 2.16448C11.6484 2.19537 11.5066 2.27415 11.223 2.43171L3.82297 6.54282C3.52345 6.70922 3.37369 6.79242 3.26463 6.91076C3.16816 7.01545 3.09515 7.13953 3.05048 7.27471C3 7.42751 3 7.59883 3 7.94147V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cube-02.svg b/@stellar/design-system/src/assets/icons/cube-02.svg
new file mode 100644
index 00000000..efad3ee7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cube-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2.50002V12M12 12L20.5 7.27773M12 12L3.5 7.27773M12 12V21.5M20.5 16.7222L12.777 12.4317C12.4934 12.2741 12.3516 12.1954 12.2015 12.1645C12.0685 12.1371 11.9315 12.1371 11.7986 12.1645C11.6484 12.1954 11.5066 12.2741 11.223 12.4317L3.5 16.7222M21 16.0586V7.94147C21 7.59883 21 7.4275 20.9495 7.27471C20.9049 7.13953 20.8318 7.01545 20.7354 6.91076C20.6263 6.79242 20.4766 6.70922 20.177 6.54282L12.777 2.43171C12.4934 2.27415 12.3516 2.19537 12.2015 2.16448C12.0685 2.13715 11.9315 2.13715 11.7986 2.16448C11.6484 2.19537 11.5066 2.27415 11.223 2.43171L3.82297 6.54282C3.52345 6.70922 3.37369 6.79242 3.26463 6.91076C3.16816 7.01545 3.09515 7.13953 3.05048 7.27471C3 7.42751 3 7.59883 3 7.94147V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cube-03.svg b/@stellar/design-system/src/assets/icons/cube-03.svg
new file mode 100644
index 00000000..c50200cf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cube-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.5 8H16M16 8V20.5M16 8L20.5 3.5M21 15.3373V3.8C21 3.51997 21 3.37996 20.9455 3.273C20.8976 3.17892 20.8211 3.10243 20.727 3.0545C20.62 3 20.48 3 20.2 3H8.66274C8.41815 3 8.29586 3 8.18077 3.02763C8.07873 3.05213 7.98119 3.09253 7.89172 3.14736C7.7908 3.2092 7.70432 3.29568 7.53137 3.46863L3.46863 7.53137C3.29568 7.70432 3.2092 7.7908 3.14736 7.89172C3.09253 7.98119 3.05213 8.07873 3.02763 8.18077C3 8.29586 3 8.41815 3 8.66274V20.2C3 20.48 3 20.62 3.0545 20.727C3.10243 20.8211 3.17892 20.8976 3.273 20.9455C3.37996 21 3.51997 21 3.8 21H15.3373C15.5818 21 15.7041 21 15.8192 20.9724C15.9213 20.9479 16.0188 20.9075 16.1083 20.8526C16.2092 20.7908 16.2957 20.7043 16.4686 20.5314L20.5314 16.4686C20.7043 16.2957 20.7908 16.2092 20.8526 16.1083C20.9075 16.0188 20.9479 15.9213 20.9724 15.8192C21 15.7041 21 15.5818 21 15.3373Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cube-04.svg b/@stellar/design-system/src/assets/icons/cube-04.svg
new file mode 100644
index 00000000..e68e3cdd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cube-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 16H8M8 16V3.5M8 16L3.5 20.5M3.5 8H16M16 8V20.5M16 8L20.5 3.5M21 15.3373V3.8C21 3.51997 21 3.37996 20.9455 3.273C20.8976 3.17892 20.8211 3.10243 20.727 3.0545C20.62 3 20.48 3 20.2 3H8.66274C8.41815 3 8.29586 3 8.18077 3.02763C8.07873 3.05213 7.98119 3.09253 7.89172 3.14736C7.7908 3.2092 7.70432 3.29568 7.53137 3.46863L3.46863 7.53137C3.29568 7.70432 3.2092 7.7908 3.14736 7.89172C3.09253 7.98119 3.05213 8.07873 3.02763 8.18077C3 8.29586 3 8.41815 3 8.66274V20.2C3 20.48 3 20.62 3.0545 20.727C3.10243 20.8211 3.17892 20.8976 3.273 20.9455C3.37996 21 3.51997 21 3.8 21H15.3373C15.5818 21 15.7041 21 15.8192 20.9724C15.9213 20.9479 16.0188 20.9075 16.1083 20.8526C16.2092 20.7908 16.2957 20.7043 16.4686 20.5314L20.5314 16.4686C20.7043 16.2957 20.7908 16.2092 20.8526 16.1083C20.9075 16.0188 20.9479 15.9213 20.9724 15.8192C21 15.7041 21 15.5818 21 15.3373Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cube-outline.svg b/@stellar/design-system/src/assets/icons/cube-outline.svg
new file mode 100644
index 00000000..ae04f8f6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cube-outline.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.75 20.75L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L14.25 20.75M5.25 18.25L3.82297 17.4572C3.52346 17.2908 3.37368 17.2076 3.26463 17.0893C3.16816 16.9846 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0586V14.5M3 9.50002V7.94147C3 7.59883 3 7.42751 3.05048 7.27471C3.09515 7.13953 3.16816 7.01545 3.26463 6.91076C3.37368 6.79242 3.52345 6.70922 3.82297 6.54282L5.25 5.75002M9.75 3.25002L11.223 2.43171C11.5066 2.27415 11.6484 2.19537 11.7986 2.16448C11.9315 2.13715 12.0685 2.13715 12.2015 2.16448C12.3516 2.19537 12.4934 2.27415 12.777 2.43171L14.25 3.25002M18.75 5.75002L20.177 6.54282C20.4766 6.70922 20.6263 6.79242 20.7354 6.91076C20.8318 7.01545 20.9049 7.13953 20.9495 7.27471C21 7.4275 21 7.59883 21 7.94147V9.50002M21 14.5V16.0586C21 16.4012 21 16.5725 20.9495 16.7253C20.9049 16.8605 20.8318 16.9846 20.7354 17.0893C20.6263 17.2076 20.4766 17.2908 20.177 17.4572L18.75 18.25M9.75 10.75L12 12M12 12L14.25 10.75M12 12V14.5M3 7.00002L5.25 8.25002M18.75 8.25002L21 7.00002M12 19.5V22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-bitcoin-circle.svg b/@stellar/design-system/src/assets/icons/currency-bitcoin-circle.svg
new file mode 100644
index 00000000..34efda8d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-bitcoin-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 7.5H13.75C14.9926 7.5 16 8.50736 16 9.75C16 10.9926 14.9926 12 13.75 12H9.5H14.25C15.4926 12 16.5 13.0074 16.5 14.25C16.5 15.4926 15.4926 16.5 14.25 16.5H9.5M9.5 7.5H8M9.5 7.5V16.5M9.5 16.5H8M10 6V7.5M10 16.5V18M13 6V7.5M13 16.5V18M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-bitcoin.svg b/@stellar/design-system/src/assets/icons/currency-bitcoin.svg
new file mode 100644
index 00000000..07fe949e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-bitcoin.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 2V4M9.5 20V22M13.5 2V4M13.5 20V22M7.5 4H14C16.2091 4 18 5.79086 18 8C18 10.2091 16.2091 12 14 12H7.5H15C17.2091 12 19 13.7909 19 16C19 18.2091 17.2091 20 15 20H7.5M7.5 4H5.5M7.5 4V20M7.5 20H5.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-dollar-circle.svg b/@stellar/design-system/src/assets/icons/currency-dollar-circle.svg
new file mode 100644
index 00000000..723ecd8a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-dollar-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 14.6667C8.5 15.9553 9.54467 17 10.8333 17H13C14.3807 17 15.5 15.8807 15.5 14.5C15.5 13.1193 14.3807 12 13 12H11C9.61929 12 8.5 10.8807 8.5 9.5C8.5 8.11929 9.61929 7 11 7H13.1667C14.4553 7 15.5 8.04467 15.5 9.33333M12 5.5V7M12 17V18.5M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-dollar.svg b/@stellar/design-system/src/assets/icons/currency-dollar.svg
new file mode 100644
index 00000000..805edaf8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-dollar.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 16C6 18.2091 7.79086 20 10 20H14C16.2091 20 18 18.2091 18 16C18 13.7909 16.2091 12 14 12H10C7.79086 12 6 10.2091 6 8C6 5.79086 7.79086 4 10 4H14C16.2091 4 18 5.79086 18 8M12 2V22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-ethereum-circle.svg b/@stellar/design-system/src/assets/icons/currency-ethereum-circle.svg
new file mode 100644
index 00000000..6c78aa57
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-ethereum-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 15.5L12.0002 18L17.5 15.5M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM6.5 11.5L12.0002 14L17.5 11.5L12.0002 5L6.5 11.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-ethereum.svg b/@stellar/design-system/src/assets/icons/currency-ethereum.svg
new file mode 100644
index 00000000..04c20215
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-ethereum.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 11.0001L12 13L20 11M4 11.0001L12 2M4 11.0001L12 9.00008M20 11L12 2M20 11L12 9.00008M12 2V9.00008M5.5 15L12.0001 22L18.5 15L12 16.5L5.5 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-euro-circle.svg b/@stellar/design-system/src/assets/icons/currency-euro-circle.svg
new file mode 100644
index 00000000..faf61960
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-euro-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.3333 8.27316C14.4487 7.48142 13.2806 7 12 7C9.23858 7 7 9.23858 7 12C7 14.7614 9.23858 17 12 17C13.2806 17 14.4487 16.5186 15.3333 15.7268M6 13.5H11M6 10.5H11M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-euro.svg b/@stellar/design-system/src/assets/icons/currency-euro.svg
new file mode 100644
index 00000000..719581b5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-euro.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 5.51903C17.5176 4.25973 15.5975 3.5 13.5 3.5C8.80558 3.5 5 7.30558 5 12C5 16.6944 8.80558 20.5 13.5 20.5C15.5975 20.5 17.5176 19.7403 19 18.481M3 14H13M3 10H13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-exchange.svg b/@stellar/design-system/src/assets/icons/currency-exchange.svg
deleted file mode 100644
index 358e7fca..00000000
--- a/@stellar/design-system/src/assets/icons/currency-exchange.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6888)"><path d="M12 23C10.1333 23 8.41667 22.575 6.85 21.725C5.28333 20.875 4 19.7417 3 18.325V20C3 20.2833 2.90433 20.5207 2.713 20.712C2.521 20.904 2.28333 21 2 21C1.71667 21 1.47933 20.904 1.288 20.712C1.096 20.5207 1 20.2833 1 20V16C1 15.7167 1.096 15.479 1.288 15.287C1.47933 15.0957 1.71667 15 2 15H6C6.28333 15 6.521 15.0957 6.713 15.287C6.90433 15.479 7 15.7167 7 16C7 16.2833 6.90433 16.5207 6.713 16.712C6.521 16.904 6.28333 17 6 17H4.525C5.325 18.2 6.37933 19.1667 7.688 19.9C8.996 20.6333 10.4333 21 12 21C14.3333 21 16.346 20.2333 18.038 18.7C19.7293 17.1667 20.7 15.2667 20.95 13C20.9833 12.7167 21.096 12.479 21.288 12.287C21.4793 12.0957 21.7167 12 22 12C22.2833 12 22.5207 12.1 22.712 12.3C22.904 12.5 22.9833 12.7333 22.95 13C22.8333 14.4 22.4627 15.7083 21.838 16.925C21.2127 18.1417 20.4127 19.2 19.438 20.1C18.4627 21 17.3373 21.7083 16.062 22.225C14.7873 22.7417 13.4333 23 12 23ZM2 12C1.71667 12 1.47933 11.9 1.288 11.7C1.096 11.5 1.01667 11.2667 1.05 11C1.18333 9.6 1.55833 8.29167 2.175 7.075C2.79167 5.85833 3.58733 4.8 4.562 3.9C5.53733 3 6.66267 2.29167 7.938 1.775C9.21267 1.25833 10.5667 1 12 1C13.8667 1 15.5833 1.425 17.15 2.275C18.7167 3.125 20 4.25833 21 5.675V4C21 3.71667 21.096 3.479 21.288 3.287C21.4793 3.09567 21.7167 3 22 3C22.2833 3 22.5207 3.09567 22.712 3.287C22.904 3.479 23 3.71667 23 4V8C23 8.28333 22.904 8.52067 22.712 8.712C22.5207 8.904 22.2833 9 22 9H18C17.7167 9 17.4793 8.904 17.288 8.712C17.096 8.52067 17 8.28333 17 8C17 7.71667 17.096 7.479 17.288 7.287C17.4793 7.09567 17.7167 7 18 7H19.475C18.675 5.8 17.6207 4.83333 16.312 4.1C15.004 3.36667 13.5667 3 12 3C9.66667 3 7.65433 3.76667 5.963 5.3C4.271 6.83333 3.3 8.73333 3.05 11C3.01667 11.2833 2.90433 11.5207 2.713 11.712C2.521 11.904 2.28333 12 2 12ZM11.975 19C11.7417 19 11.5377 18.9127 11.363 18.738C11.1877 18.5627 11.1 18.3583 11.1 18.125V17.7C10.4667 17.5667 9.925 17.3207 9.475 16.962C9.025 16.604 8.66667 16.1417 8.4 15.575C8.3 15.3583 8.30433 15.1333 8.413 14.9C8.521 14.6667 8.69167 14.5083 8.925 14.425C9.14167 14.3417 9.35833 14.3417 9.575 14.425C9.79167 14.5083 9.96667 14.6667 10.1 14.9C10.3333 15.3167 10.625 15.629 10.975 15.837C11.325 16.0457 11.7167 16.15 12.15 16.15C12.7 16.15 13.1707 16.0207 13.562 15.762C13.954 15.504 14.15 15.1 14.15 14.55C14.15 14.0667 13.946 13.675 13.538 13.375C13.1293 13.075 12.4 12.7333 11.35 12.35C10.3667 12 9.646 11.5833 9.188 11.1C8.72933 10.6167 8.5 9.98333 8.5 9.2C8.5 8.51667 8.73333 7.9 9.2 7.35C9.66667 6.8 10.3167 6.43333 11.15 6.25V5.875C11.15 5.64167 11.2377 5.43733 11.413 5.262C11.5877 5.08733 11.7917 5 12.025 5C12.2583 5 12.4623 5.08733 12.637 5.262C12.8123 5.43733 12.9 5.64167 12.9 5.875V6.25C13.35 6.28333 13.771 6.43333 14.163 6.7C14.5543 6.96667 14.8833 7.29167 15.15 7.675C15.2833 7.875 15.3043 8.09567 15.213 8.337C15.121 8.579 14.95 8.75 14.7 8.85C14.5167 8.93333 14.321 8.93767 14.113 8.863C13.9043 8.78767 13.7167 8.65 13.55 8.45C13.3833 8.25 13.175 8.09167 12.925 7.975C12.675 7.85833 12.3833 7.8 12.05 7.8C11.4667 7.8 11.021 7.925 10.713 8.175C10.4043 8.425 10.25 8.76667 10.25 9.2C10.25 9.63333 10.4417 9.975 10.825 10.225C11.2083 10.475 11.9 10.7667 12.9 11.1C14.1 11.5333 14.9 12.0417 15.3 12.625C15.7 13.2083 15.9 13.85 15.9 14.55C15.9 15.5333 15.6 16.275 15 16.775C14.4 17.275 13.6833 17.6 12.85 17.75V18.125C12.85 18.3583 12.7627 18.5627 12.588 18.738C12.4127 18.9127 12.2083 19 11.975 19Z"/></g><defs><clipPath id="clip0_1113_6888"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-pound-circle.svg b/@stellar/design-system/src/assets/icons/currency-pound-circle.svg
new file mode 100644
index 00000000..01e8b4d6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-pound-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 17.5H9C9 17.5 11 15.2444 11 12.5C11 11 9.91479 10.4867 9.89534 8.96204C9.8966 5.94404 13.5297 6.1045 14.7926 7.30402M9 12.5H14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-pound.svg b/@stellar/design-system/src/assets/icons/currency-pound.svg
new file mode 100644
index 00000000..5c0a6232
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-pound.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 20.5H6.5C6.5 20.5 10 17.7413 10 13.5C10 10.6725 7.91376 9.66123 7.8837 7.30497C7.88566 2.64078 13.5005 2.88877 15.4521 4.74258M6.5 13.5H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-ruble-circle.svg b/@stellar/design-system/src/assets/icons/currency-ruble-circle.svg
new file mode 100644
index 00000000..52b6a23d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-ruble-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 6.5H14C15.3807 6.5 16.5 7.61929 16.5 9C16.5 10.3807 15.3807 11.5 14 11.5H9.5V6.5ZM9.5 6.5V17.5M9.75 11.5H8M13 14.75H8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-ruble.svg b/@stellar/design-system/src/assets/icons/currency-ruble.svg
new file mode 100644
index 00000000..2105acde
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-ruble.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 11.5H14.5C16.7091 11.5 18.5 9.70914 18.5 7.5C18.5 5.29086 16.7091 3.5 14.5 3.5H8.5V11.5ZM8.5 11.5H6.5M13.5 15.5H6.5M8.5 4V20.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-rupee-circle.svg b/@stellar/design-system/src/assets/icons/currency-rupee-circle.svg
new file mode 100644
index 00000000..8b385169
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-rupee-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 9.99984H15.5M8.5 6.5H15.5M14 18.0002L8.5 13.5002L10 13.5C14.4447 13.5 14.4447 6.5 10 6.5M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-rupee.svg b/@stellar/design-system/src/assets/icons/currency-rupee.svg
new file mode 100644
index 00000000..2a81b152
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-rupee.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 3H18M6 8H18M14.5 21L6 13H9C15.667 13 15.667 3 9 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-yen-circle.svg b/@stellar/design-system/src/assets/icons/currency-yen-circle.svg
new file mode 100644
index 00000000..45d0be52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-yen-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 18V12M12 12L16 7M12 12L8 7M16 12H8M15.5 15H8.5M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/currency-yen.svg b/@stellar/design-system/src/assets/icons/currency-yen.svg
new file mode 100644
index 00000000..52ee8245
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/currency-yen.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20.5V11.5M12 11.5L18.5001 3.5M12 11.5L5.50012 3.5M18 11.5H5.99998M17 15.5H6.99998" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-01.svg b/@stellar/design-system/src/assets/icons/cursor-01.svg
new file mode 100644
index 00000000..b7a56506
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 13L19 19M17.9642 10.7513L12.9534 12.4532C12.8164 12.4997 12.7479 12.523 12.691 12.5622C12.6405 12.5968 12.5968 12.6405 12.5622 12.691C12.523 12.7479 12.4997 12.8164 12.4532 12.9534L10.7513 17.9642C10.5403 18.5855 10.4348 18.8961 10.2698 18.9901C10.1268 19.0715 9.95293 19.0773 9.8048 19.0057C9.63386 18.9231 9.50768 18.6203 9.25533 18.0145L3.74711 4.79324C3.51295 4.23121 3.39588 3.95019 3.45284 3.77438C3.50227 3.62184 3.62184 3.50227 3.77438 3.45284C3.95019 3.39588 4.23121 3.51295 4.79324 3.74711L18.0145 9.25533C18.6203 9.50768 18.9231 9.63386 19.0057 9.8048C19.0773 9.95293 19.0715 10.1268 18.9901 10.2698C18.8961 10.4348 18.5855 10.5403 17.9642 10.7513Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-02.svg b/@stellar/design-system/src/assets/icons/cursor-02.svg
new file mode 100644
index 00000000..2a004293
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5056 10.7756C21.1225 10.5357 21.431 10.4157 21.5176 10.2461C21.5926 10.0992 21.5903 9.9247 21.5115 9.77978C21.4205 9.61251 21.109 9.50069 20.486 9.27705L4.59629 3.57305C4.0866 3.39008 3.83175 3.29859 3.66514 3.35629C3.52029 3.40645 3.40645 3.52029 3.35629 3.66514C3.29859 3.83175 3.39008 4.08659 3.57304 4.59629L9.277 20.486C9.50064 21.109 9.61246 21.4205 9.77973 21.5115C9.92465 21.5904 10.0991 21.5927 10.2461 21.5176C10.4157 21.431 10.5356 21.1226 10.7756 20.5057L13.3724 13.8281C13.4194 13.7072 13.4429 13.6468 13.4792 13.5959C13.5114 13.5508 13.5508 13.5114 13.5959 13.4792C13.6468 13.4429 13.7072 13.4194 13.828 13.3724L20.5056 10.7756Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-03.svg b/@stellar/design-system/src/assets/icons/cursor-03.svg
new file mode 100644
index 00000000..5079064d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.71152 3.67446C4.17096 3.46151 3.90067 3.35504 3.72846 3.41232C3.57892 3.46207 3.46158 3.5794 3.41184 3.72894C3.35455 3.90116 3.46102 4.17144 3.67397 4.71201L8.97461 18.1675C9.14612 18.6028 9.23188 18.8205 9.37164 18.9079C9.49348 18.9841 9.64219 19.0041 9.77986 18.963C9.93778 18.9158 10.0782 18.7286 10.3589 18.3542L12.4996 15.5001L15.9489 20.2429C16.1385 20.5036 16.2334 20.634 16.3542 20.6885C16.4602 20.7363 16.5796 20.7457 16.6918 20.715C16.8196 20.68 16.9336 20.566 17.1616 20.338L20.3376 17.1621C20.5655 16.9341 20.6795 16.8201 20.7145 16.6923C20.7452 16.5801 20.7359 16.4607 20.688 16.3547C20.6335 16.2338 20.5032 16.139 20.2424 15.9494L15.4996 12.5001L18.3538 10.3594C18.7281 10.0787 18.9153 9.93827 18.9625 9.78035C19.0036 9.64268 18.9836 9.49397 18.9074 9.37213C18.82 9.23237 18.6024 9.14661 18.167 8.97509L4.71152 3.67446Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-04.svg b/@stellar/design-system/src/assets/icons/cursor-04.svg
new file mode 100644
index 00000000..6d00c587
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.40707 3.41385C3.94882 3.27907 3.7197 3.21168 3.56369 3.26983C3.42774 3.32051 3.32051 3.42774 3.26983 3.56369C3.21168 3.7197 3.27907 3.94882 3.41385 4.40707L7.61975 18.7071C7.74499 19.133 7.80762 19.3459 7.93401 19.4447C8.0443 19.531 8.1857 19.567 8.32383 19.5441C8.48212 19.5179 8.63906 19.3609 8.95292 19.0471L12 16L16.4343 20.4343C16.6323 20.6323 16.7313 20.7313 16.8455 20.7684C16.9459 20.8011 17.0541 20.8011 17.1545 20.7684C17.2687 20.7313 17.3677 20.6323 17.5657 20.4343L20.4343 17.5657C20.6323 17.3677 20.7313 17.2687 20.7684 17.1545C20.8011 17.0541 20.8011 16.9459 20.7684 16.8455C20.7313 16.7313 20.6323 16.6323 20.4343 16.4343L16 12L19.0471 8.95292C19.3609 8.63906 19.5179 8.48212 19.5441 8.32383C19.567 8.1857 19.531 8.0443 19.4447 7.93401C19.3459 7.80762 19.133 7.74499 18.7071 7.61975L4.40707 3.41385Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-box.svg b/@stellar/design-system/src/assets/icons/cursor-box.svg
new file mode 100644
index 00000000..e5a34eb0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-box.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.5V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H9.5M17.3862 17.7113L15.6879 20.8653C15.4103 21.3808 15.2715 21.6386 15.1023 21.7059C14.9555 21.7643 14.7896 21.7498 14.6551 21.6668C14.5001 21.5712 14.4081 21.2933 14.2241 20.7375L11.5004 12.5113C11.3392 12.0245 11.2586 11.7812 11.3166 11.6191C11.367 11.478 11.478 11.367 11.6191 11.3166C11.7812 11.2586 12.0245 11.3392 12.5113 11.5004L20.7374 14.2241C21.2933 14.4082 21.5712 14.5002 21.6668 14.6551C21.7498 14.7897 21.7642 14.9555 21.7058 15.1024C21.6386 15.2715 21.3808 15.4103 20.8652 15.6879L17.7113 17.3862C17.6328 17.4285 17.5935 17.4497 17.5591 17.4768C17.5286 17.501 17.501 17.5286 17.4768 17.5591C17.4497 17.5935 17.4285 17.6328 17.3862 17.7113Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-click-01.svg b/@stellar/design-system/src/assets/icons/cursor-click-01.svg
new file mode 100644
index 00000000..dce84cf9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-click-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M15.8645 16.1896L13.3727 20.817C13.0881 21.3457 12.9457 21.61 12.7745 21.6769C12.6259 21.7349 12.4585 21.7185 12.324 21.6328C12.1689 21.534 12.0806 21.2471 11.9038 20.6733L8.44519 9.44525C8.3008 8.97651 8.2286 8.74213 8.28669 8.58383C8.33729 8.44595 8.44595 8.33729 8.58383 8.2867C8.74213 8.22861 8.9765 8.3008 9.44525 8.44519L20.6732 11.9038C21.247 12.0806 21.5339 12.169 21.6327 12.324C21.7185 12.4586 21.7348 12.6259 21.6768 12.7745C21.61 12.9458 21.3456 13.0881 20.817 13.3728L16.1896 15.8645C16.111 15.9068 16.0717 15.9279 16.0374 15.9551C16.0068 15.9792 15.9792 16.0068 15.9551 16.0374C15.9279 16.0717 15.9068 16.111 15.8645 16.1896Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/cursor-click-02.svg b/@stellar/design-system/src/assets/icons/cursor-click-02.svg
new file mode 100644
index 00000000..4d1644aa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/cursor-click-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M8.5 8.5L12.6111 21.2778L15.5 18.3889L19.1111 22L22 19.1111L18.3889 15.5L21.2778 12.6111L8.5 8.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dashboard.svg b/@stellar/design-system/src/assets/icons/dashboard.svg
deleted file mode 100644
index 1f929b1e..00000000
--- a/@stellar/design-system/src/assets/icons/dashboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6885)"><path d="M13 8V4C13 3.71667 13.096 3.479 13.288 3.287C13.4793 3.09567 13.7167 3 14 3H20C20.2833 3 20.5207 3.09567 20.712 3.287C20.904 3.479 21 3.71667 21 4V8C21 8.28333 20.904 8.52067 20.712 8.712C20.5207 8.904 20.2833 9 20 9H14C13.7167 9 13.4793 8.904 13.288 8.712C13.096 8.52067 13 8.28333 13 8ZM3 12V4C3 3.71667 3.096 3.479 3.288 3.287C3.47933 3.09567 3.71667 3 4 3H10C10.2833 3 10.521 3.09567 10.713 3.287C10.9043 3.479 11 3.71667 11 4V12C11 12.2833 10.9043 12.5207 10.713 12.712C10.521 12.904 10.2833 13 10 13H4C3.71667 13 3.47933 12.904 3.288 12.712C3.096 12.5207 3 12.2833 3 12ZM13 20V12C13 11.7167 13.096 11.479 13.288 11.287C13.4793 11.0957 13.7167 11 14 11H20C20.2833 11 20.5207 11.0957 20.712 11.287C20.904 11.479 21 11.7167 21 12V20C21 20.2833 20.904 20.5207 20.712 20.712C20.5207 20.904 20.2833 21 20 21H14C13.7167 21 13.4793 20.904 13.288 20.712C13.096 20.5207 13 20.2833 13 20ZM3 20V16C3 15.7167 3.096 15.479 3.288 15.287C3.47933 15.0957 3.71667 15 4 15H10C10.2833 15 10.521 15.0957 10.713 15.287C10.9043 15.479 11 15.7167 11 16V20C11 20.2833 10.9043 20.5207 10.713 20.712C10.521 20.904 10.2833 21 10 21H4C3.71667 21 3.47933 20.904 3.288 20.712C3.096 20.5207 3 20.2833 3 20Z"/></g><defs><clipPath id="clip0_1113_6885"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/data-array.svg b/@stellar/design-system/src/assets/icons/data-array.svg
deleted file mode 100644
index b61cb126..00000000
--- a/@stellar/design-system/src/assets/icons/data-array.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6882)"><path d="M18 18V6H16C15.7167 6 15.4793 5.90433 15.288 5.713C15.096 5.521 15 5.28333 15 5C15 4.71667 15.096 4.479 15.288 4.287C15.4793 4.09567 15.7167 4 16 4H18C18.55 4 19.021 4.196 19.413 4.588C19.8043 4.97933 20 5.45 20 6V18C20 18.55 19.8043 19.021 19.413 19.413C19.021 19.8043 18.55 20 18 20H16C15.7167 20 15.4793 19.904 15.288 19.712C15.096 19.5207 15 19.2833 15 19C15 18.7167 15.096 18.4793 15.288 18.288C15.4793 18.096 15.7167 18 16 18H18ZM6 18H8C8.28333 18 8.521 18.096 8.713 18.288C8.90433 18.4793 9 18.7167 9 19C9 19.2833 8.90433 19.5207 8.713 19.712C8.521 19.904 8.28333 20 8 20H6C5.45 20 4.97933 19.8043 4.588 19.413C4.196 19.021 4 18.55 4 18V6C4 5.45 4.196 4.97933 4.588 4.588C4.97933 4.196 5.45 4 6 4H8C8.28333 4 8.521 4.09567 8.713 4.287C8.90433 4.479 9 4.71667 9 5C9 5.28333 8.90433 5.521 8.713 5.713C8.521 5.90433 8.28333 6 8 6H6V18Z"/></g><defs><clipPath id="clip0_1113_6882"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/data-object.svg b/@stellar/design-system/src/assets/icons/data-object.svg
deleted file mode 100644
index ef6ab890..00000000
--- a/@stellar/design-system/src/assets/icons/data-object.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6879)"><path d="M15 20C14.7167 20 14.4793 19.904 14.288 19.712C14.096 19.5207 14 19.2833 14 19C14 18.7167 14.096 18.4793 14.288 18.288C14.4793 18.096 14.7167 18 15 18H17C17.2833 18 17.5207 17.904 17.712 17.712C17.904 17.5207 18 17.2833 18 17V15C18 14.3667 18.1833 13.7917 18.55 13.275C18.9167 12.7583 19.4 12.3917 20 12.175V11.825C19.4 11.6083 18.9167 11.2417 18.55 10.725C18.1833 10.2083 18 9.63333 18 9V7C18 6.71667 17.904 6.479 17.712 6.287C17.5207 6.09567 17.2833 6 17 6H15C14.7167 6 14.4793 5.90433 14.288 5.713C14.096 5.521 14 5.28333 14 5C14 4.71667 14.096 4.479 14.288 4.287C14.4793 4.09567 14.7167 4 15 4H17C17.8333 4 18.5417 4.29167 19.125 4.875C19.7083 5.45833 20 6.16667 20 7V9C20 9.28333 20.096 9.52067 20.288 9.712C20.4793 9.904 20.7167 10 21 10C21.2833 10 21.5207 10.0957 21.712 10.287C21.904 10.479 22 10.7167 22 11V13C22 13.2833 21.904 13.5207 21.712 13.712C21.5207 13.904 21.2833 14 21 14C20.7167 14 20.4793 14.0957 20.288 14.287C20.096 14.479 20 14.7167 20 15V17C20 17.8333 19.7083 18.5417 19.125 19.125C18.5417 19.7083 17.8333 20 17 20H15ZM7 20C6.16667 20 5.45833 19.7083 4.875 19.125C4.29167 18.5417 4 17.8333 4 17V15C4 14.7167 3.90433 14.479 3.713 14.287C3.521 14.0957 3.28333 14 3 14C2.71667 14 2.47933 13.904 2.288 13.712C2.096 13.5207 2 13.2833 2 13V11C2 10.7167 2.096 10.479 2.288 10.287C2.47933 10.0957 2.71667 10 3 10C3.28333 10 3.521 9.904 3.713 9.712C3.90433 9.52067 4 9.28333 4 9V7C4 6.16667 4.29167 5.45833 4.875 4.875C5.45833 4.29167 6.16667 4 7 4H9C9.28333 4 9.521 4.09567 9.713 4.287C9.90433 4.479 10 4.71667 10 5C10 5.28333 9.90433 5.521 9.713 5.713C9.521 5.90433 9.28333 6 9 6H7C6.71667 6 6.479 6.09567 6.287 6.287C6.09567 6.479 6 6.71667 6 7V9C6 9.63333 5.81667 10.2083 5.45 10.725C5.08333 11.2417 4.6 11.6083 4 11.825V12.175C4.6 12.3917 5.08333 12.7583 5.45 13.275C5.81667 13.7917 6 14.3667 6 15V17C6 17.2833 6.09567 17.5207 6.287 17.712C6.479 17.904 6.71667 18 7 18H9C9.28333 18 9.521 18.096 9.713 18.288C9.90433 18.4793 10 18.7167 10 19C10 19.2833 9.90433 19.5207 9.713 19.712C9.521 19.904 9.28333 20 9 20H7Z"/></g><defs><clipPath id="clip0_1113_6879"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/data.svg b/@stellar/design-system/src/assets/icons/data.svg
new file mode 100644
index 00000000..71258d42
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/data.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/database-01.svg b/@stellar/design-system/src/assets/icons/database-01.svg
new file mode 100644
index 00000000..ab0943ff
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/database-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V19C21 20.66 17 22 12 22C7 22 3 20.66 3 19V5M21 12C21 13.66 17 15 12 15C7 15 3 13.66 3 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/database-02.svg b/@stellar/design-system/src/assets/icons/database-02.svg
new file mode 100644
index 00000000..122f5ba3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/database-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V19C21 20.66 17 22 12 22C7 22 3 20.66 3 19V5M21 9.72021C21 11.3802 17 12.7202 12 12.7202C7 12.7202 3 11.3802 3 9.72021M21 14.44C21 16.1 17 17.44 12 17.44C7 17.44 3 16.1 3 14.44" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/database-03.svg b/@stellar/design-system/src/assets/icons/database-03.svg
new file mode 100644
index 00000000..e75830b8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/database-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20M14 20C14 18.8954 13.1046 18 12 18M14 20H21M10 20C10 18.8954 10.8954 18 12 18M10 20H3M12 18V14M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V11C21 12.66 17 14 12 14M3 5V11C3 12.66 7 14 12 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/database.svg b/@stellar/design-system/src/assets/icons/database.svg
deleted file mode 100644
index b6217b9d..00000000
--- a/@stellar/design-system/src/assets/icons/database.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6876)"><path d="M12 11C9.5 11 7.375 10.6083 5.625 9.825C3.875 9.04167 3 8.1 3 7C3 5.9 3.875 4.95833 5.625 4.175C7.375 3.39167 9.5 3 12 3C14.5 3 16.625 3.39167 18.375 4.175C20.125 4.95833 21 5.9 21 7C21 8.1 20.125 9.04167 18.375 9.825C16.625 10.6083 14.5 11 12 11ZM12 16C9.5 16 7.375 15.6083 5.625 14.825C3.875 14.0417 3 13.1 3 12V9.5C3 10.2333 3.34167 10.8543 4.025 11.363C4.70833 11.871 5.525 12.2833 6.475 12.6C7.425 12.9167 8.41267 13.1457 9.438 13.287C10.4627 13.429 11.3167 13.5 12 13.5C12.6833 13.5 13.5373 13.429 14.562 13.287C15.5873 13.1457 16.575 12.9167 17.525 12.6C18.475 12.2833 19.2917 11.871 19.975 11.363C20.6583 10.8543 21 10.2333 21 9.5V12C21 13.1 20.125 14.0417 18.375 14.825C16.625 15.6083 14.5 16 12 16ZM12 21C9.5 21 7.375 20.6083 5.625 19.825C3.875 19.0417 3 18.1 3 17V14.5C3 15.2333 3.34167 15.8543 4.025 16.363C4.70833 16.871 5.525 17.2833 6.475 17.6C7.425 17.9167 8.41267 18.146 9.438 18.288C10.4627 18.4293 11.3167 18.5 12 18.5C12.6833 18.5 13.5373 18.4293 14.562 18.288C15.5873 18.146 16.575 17.9167 17.525 17.6C18.475 17.2833 19.2917 16.871 19.975 16.363C20.6583 15.8543 21 15.2333 21 14.5V17C21 18.1 20.125 19.0417 18.375 19.825C16.625 20.6083 14.5 21 12 21Z"/></g><defs><clipPath id="clip0_1113_6876"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dataflow-01.svg b/@stellar/design-system/src/assets/icons/dataflow-01.svg
new file mode 100644
index 00000000..da7f252b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dataflow-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 20H16.8C15.1198 20 14.2798 20 13.638 19.673C13.0735 19.3854 12.6146 18.9265 12.327 18.362C12 17.7202 12 16.8802 12 15.2V8.8C12 7.11984 12 6.27976 12.327 5.63803C12.6146 5.07354 13.0735 4.6146 13.638 4.32698C14.2798 4 15.1198 4 16.8 4H17M17 20C17 21.1046 17.8954 22 19 22C20.1046 22 21 21.1046 21 20C21 18.8954 20.1046 18 19 18C17.8954 18 17 18.8954 17 20ZM17 4C17 5.10457 17.8954 6 19 6C20.1046 6 21 5.10457 21 4C21 2.89543 20.1046 2 19 2C17.8954 2 17 2.89543 17 4ZM7 12L17 12M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12ZM17 12C17 13.1046 17.8954 14 19 14C20.1046 14 21 13.1046 21 12C21 10.8954 20.1046 10 19 10C17.8954 10 17 10.8954 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dataflow-02.svg b/@stellar/design-system/src/assets/icons/dataflow-02.svg
new file mode 100644
index 00000000..8ce3b7b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dataflow-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 4V15.2C12 16.8802 12 17.7202 12.327 18.362C12.6146 18.9265 13.0735 19.3854 13.638 19.673C14.2798 20 15.1198 20 16.8 20H17M17 20C17 21.1046 17.8954 22 19 22C20.1046 22 21 21.1046 21 20C21 18.8954 20.1046 18 19 18C17.8954 18 17 18.8954 17 20ZM7 4L17 4M7 4C7 5.10457 6.10457 6 5 6C3.89543 6 3 5.10457 3 4C3 2.89543 3.89543 2 5 2C6.10457 2 7 2.89543 7 4ZM17 4C17 5.10457 17.8954 6 19 6C20.1046 6 21 5.10457 21 4C21 2.89543 20.1046 2 19 2C17.8954 2 17 2.89543 17 4ZM12 12H17M17 12C17 13.1046 17.8954 14 19 14C20.1046 14 21 13.1046 21 12C21 10.8954 20.1046 10 19 10C17.8954 10 17 10.8954 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dataflow-03.svg b/@stellar/design-system/src/assets/icons/dataflow-03.svg
new file mode 100644
index 00000000..445ae94c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dataflow-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 4.5H18.3C19.4201 4.5 19.9802 4.5 20.408 4.71799C20.7843 4.90973 21.0903 5.21569 21.282 5.59202C21.5 6.01984 21.5 6.57989 21.5 7.7V9C21.5 9.93188 21.5 10.3978 21.3478 10.7654C21.1448 11.2554 20.7554 11.6448 20.2654 11.8478C19.8978 12 19.4319 12 18.5 12M13 19.5H5.7C4.5799 19.5 4.01984 19.5 3.59202 19.282C3.21569 19.0903 2.90973 18.7843 2.71799 18.408C2.5 17.9802 2.5 17.4201 2.5 16.3V15C2.5 14.0681 2.5 13.6022 2.65224 13.2346C2.85523 12.7446 3.24458 12.3552 3.73463 12.1522C4.10218 12 4.56812 12 5.5 12M10.3 14.5H13.7C13.98 14.5 14.12 14.5 14.227 14.4455C14.3211 14.3976 14.3976 14.3211 14.4455 14.227C14.5 14.12 14.5 13.98 14.5 13.7V10.3C14.5 10.02 14.5 9.87996 14.4455 9.773C14.3976 9.67892 14.3211 9.60243 14.227 9.5545C14.12 9.5 13.98 9.5 13.7 9.5H10.3C10.02 9.5 9.87996 9.5 9.773 9.5545C9.67892 9.60243 9.60243 9.67892 9.5545 9.773C9.5 9.87996 9.5 10.02 9.5 10.3V13.7C9.5 13.98 9.5 14.12 9.5545 14.227C9.60243 14.3211 9.67892 14.3976 9.773 14.4455C9.87996 14.5 10.02 14.5 10.3 14.5ZM17.8 22H21.2C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V17.8C22 17.52 22 17.38 21.9455 17.273C21.8976 17.1789 21.8211 17.1024 21.727 17.0545C21.62 17 21.48 17 21.2 17H17.8C17.52 17 17.38 17 17.273 17.0545C17.1789 17.1024 17.1024 17.1789 17.0545 17.273C17 17.38 17 17.52 17 17.8V21.2C17 21.48 17 21.62 17.0545 21.727C17.1024 21.8211 17.1789 21.8976 17.273 21.9455C17.38 22 17.52 22 17.8 22ZM2.8 7H6.2C6.48003 7 6.62004 7 6.727 6.9455C6.82108 6.89757 6.89757 6.82108 6.9455 6.727C7 6.62004 7 6.48003 7 6.2V2.8C7 2.51997 7 2.37996 6.9455 2.273C6.89757 2.17892 6.82108 2.10243 6.727 2.0545C6.62004 2 6.48003 2 6.2 2H2.8C2.51997 2 2.37996 2 2.273 2.0545C2.17892 2.10243 2.10243 2.17892 2.0545 2.273C2 2.37996 2 2.51997 2 2.8V6.2C2 6.48003 2 6.62004 2.0545 6.727C2.10243 6.82108 2.17892 6.89757 2.273 6.9455C2.37996 7 2.51997 7 2.8 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dataflow-04.svg b/@stellar/design-system/src/assets/icons/dataflow-04.svg
new file mode 100644
index 00000000..6ee53aa7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dataflow-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 18V17.8C4 16.1198 4 15.2798 4.32698 14.638C4.6146 14.0735 5.07354 13.6146 5.63803 13.327C6.27976 13 7.11984 13 8.8 13H15.2C16.8802 13 17.7202 13 18.362 13.327C18.9265 13.6146 19.3854 14.0735 19.673 14.638C20 15.2798 20 16.1198 20 17.8V18M4 18C2.89543 18 2 18.8954 2 20C2 21.1046 2.89543 22 4 22C5.10457 22 6 21.1046 6 20C6 18.8954 5.10457 18 4 18ZM20 18C18.8954 18 18 18.8954 18 20C18 21.1046 18.8954 22 20 22C21.1046 22 22 21.1046 22 20C22 18.8954 21.1046 18 20 18ZM12 18C10.8954 18 10 18.8954 10 20C10 21.1046 10.8954 22 12 22C13.1046 22 14 21.1046 14 20C14 18.8954 13.1046 18 12 18ZM12 18V8M6 8H18C18.9319 8 19.3978 8 19.7654 7.84776C20.2554 7.64477 20.6448 7.25542 20.8478 6.76537C21 6.39782 21 5.93188 21 5C21 4.06812 21 3.60218 20.8478 3.23463C20.6448 2.74458 20.2554 2.35523 19.7654 2.15224C19.3978 2 18.9319 2 18 2H6C5.06812 2 4.60218 2 4.23463 2.15224C3.74458 2.35523 3.35523 2.74458 3.15224 3.23463C3 3.60218 3 4.06812 3 5C3 5.93188 3 6.39782 3.15224 6.76537C3.35523 7.25542 3.74458 7.64477 4.23463 7.84776C4.60218 8 5.06812 8 6 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/delete-forever.svg b/@stellar/design-system/src/assets/icons/delete-forever.svg
deleted file mode 100644
index cf236454..00000000
--- a/@stellar/design-system/src/assets/icons/delete-forever.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6870)"><path d="M12 13.9L13.9 15.8C14.1 15.9833 14.3377 16.075 14.613 16.075C14.8877 16.075 15.1167 15.9833 15.3 15.8C15.5 15.6 15.6 15.3623 15.6 15.087C15.6 14.8123 15.5 14.5833 15.3 14.4L13.4 12.5L15.3 10.6C15.5 10.4 15.6 10.1623 15.6 9.887C15.6 9.61233 15.5 9.38333 15.3 9.2C15.1167 9 14.8877 8.9 14.613 8.9C14.3377 8.9 14.1 9 13.9 9.2L12 11.1L10.1 9.2C9.91667 9 9.68767 8.9 9.413 8.9C9.13767 8.9 8.9 9 8.7 9.2C8.51667 9.38333 8.425 9.61233 8.425 9.887C8.425 10.1623 8.51667 10.4 8.7 10.6L10.6 12.5L8.7 14.4C8.51667 14.5833 8.425 14.8123 8.425 15.087C8.425 15.3623 8.51667 15.6 8.7 15.8C8.9 15.9833 9.13767 16.075 9.413 16.075C9.68767 16.075 9.91667 15.9833 10.1 15.8L12 13.9ZM7 21C6.45 21 5.97933 20.8043 5.588 20.413C5.196 20.021 5 19.55 5 19V6C4.71667 6 4.479 5.90433 4.287 5.713C4.09567 5.521 4 5.28333 4 5C4 4.71667 4.09567 4.479 4.287 4.287C4.479 4.09567 4.71667 4 5 4H9C9 3.71667 9.096 3.479 9.288 3.287C9.47933 3.09567 9.71667 3 10 3H14C14.2833 3 14.521 3.09567 14.713 3.287C14.9043 3.479 15 3.71667 15 4H19C19.2833 4 19.5207 4.09567 19.712 4.287C19.904 4.479 20 4.71667 20 5C20 5.28333 19.904 5.521 19.712 5.713C19.5207 5.90433 19.2833 6 19 6V19C19 19.55 18.8043 20.021 18.413 20.413C18.021 20.8043 17.55 21 17 21H7Z"/></g><defs><clipPath id="clip0_1113_6870"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/delete.svg b/@stellar/design-system/src/assets/icons/delete.svg
index d17ac347..e4b4fa90 100644
--- a/@stellar/design-system/src/assets/icons/delete.svg
+++ b/@stellar/design-system/src/assets/icons/delete.svg
@@ -1 +1 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6873)"><path d="M7 21C6.45 21 5.97933 20.8043 5.588 20.413C5.196 20.021 5 19.55 5 19V6C4.71667 6 4.479 5.90433 4.287 5.713C4.09567 5.521 4 5.28333 4 5C4 4.71667 4.09567 4.479 4.287 4.287C4.479 4.09567 4.71667 4 5 4H9C9 3.71667 9.096 3.479 9.288 3.287C9.47933 3.09567 9.71667 3 10 3H14C14.2833 3 14.521 3.09567 14.713 3.287C14.9043 3.479 15 3.71667 15 4H19C19.2833 4 19.5207 4.09567 19.712 4.287C19.904 4.479 20 4.71667 20 5C20 5.28333 19.904 5.521 19.712 5.713C19.5207 5.90433 19.2833 6 19 6V19C19 19.55 18.8043 20.021 18.413 20.413C18.021 20.8043 17.55 21 17 21H7ZM9 16C9 16.2833 9.096 16.5207 9.288 16.712C9.47933 16.904 9.71667 17 10 17C10.2833 17 10.521 16.904 10.713 16.712C10.9043 16.5207 11 16.2833 11 16V9C11 8.71667 10.9043 8.479 10.713 8.287C10.521 8.09567 10.2833 8 10 8C9.71667 8 9.47933 8.09567 9.288 8.287C9.096 8.479 9 8.71667 9 9V16ZM13 16C13 16.2833 13.096 16.5207 13.288 16.712C13.4793 16.904 13.7167 17 14 17C14.2833 17 14.521 16.904 14.713 16.712C14.9043 16.5207 15 16.2833 15 16V9C15 8.71667 14.9043 8.479 14.713 8.287C14.521 8.09567 14.2833 8 14 8C13.7167 8 13.4793 8.09567 13.288 8.287C13.096 8.479 13 8.71667 13 9V16Z"/></g><defs><clipPath id="clip0_1113_6873"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 9L11 15M11 9L17 15M2.72 12.96L7.04 18.72C7.392 19.1893 7.568 19.424 7.79105 19.5932C7.9886 19.7432 8.21232 19.855 8.45077 19.9231C8.72 20 9.01334 20 9.6 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H9.6C9.01334 4 8.72 4 8.45077 4.07689C8.21232 4.14499 7.9886 4.25685 7.79105 4.40675C7.568 4.576 7.392 4.81067 7.04 5.28L2.72 11.04C2.46181 11.3843 2.33271 11.5564 2.28294 11.7454C2.23902 11.9123 2.23902 12.0877 2.28294 12.2546C2.33271 12.4436 2.46181 12.6157 2.72 12.96Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/deployed-code.svg b/@stellar/design-system/src/assets/icons/deployed-code.svg
deleted file mode 100644
index 53431f2c..00000000
--- a/@stellar/design-system/src/assets/icons/deployed-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11 21.725L4 17.7C3.68333 17.5167 3.4375 17.275 3.2625 16.975C3.0875 16.675 3 16.3417 3 15.975V8.025C3 7.65833 3.0875 7.325 3.2625 7.025C3.4375 6.725 3.68333 6.48333 4 6.3L11 2.275C11.3167 2.09167 11.65 2 12 2C12.35 2 12.6833 2.09167 13 2.275L20 6.3C20.3167 6.48333 20.5625 6.725 20.7375 7.025C20.9125 7.325 21 7.65833 21 8.025V15.975C21 16.3417 20.9125 16.675 20.7375 16.975C20.5625 17.275 20.3167 17.5167 20 17.7L13 21.725C12.6833 21.9083 12.35 22 12 22C11.65 22 11.3167 21.9083 11 21.725ZM12 20L13 19.425V12.575L19 9.1V8.05L17.925 7.425L12 10.85L6.075 7.425L5 8.05V9.1L11 12.575V19.425L12 20Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/diamond-01.svg b/@stellar/design-system/src/assets/icons/diamond-01.svg
new file mode 100644
index 00000000..658a6c64
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/diamond-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.49954 9H21.4995M9.99954 3L7.99954 9L11.9995 20.5L15.9995 9L13.9995 3M12.6141 20.2625L21.5727 9.51215C21.7246 9.32995 21.8005 9.23885 21.8295 9.13717C21.8551 9.04751 21.8551 8.95249 21.8295 8.86283C21.8005 8.76114 21.7246 8.67005 21.5727 8.48785L17.2394 3.28785C17.1512 3.18204 17.1072 3.12914 17.0531 3.09111C17.0052 3.05741 16.9518 3.03238 16.8953 3.01717C16.8314 3 16.7626 3 16.6248 3H7.37424C7.2365 3 7.16764 3 7.10382 3.01717C7.04728 3.03238 6.99385 3.05741 6.94596 3.09111C6.89192 3.12914 6.84783 3.18204 6.75966 3.28785L2.42633 8.48785C2.2745 8.67004 2.19858 8.76114 2.16957 8.86283C2.144 8.95249 2.144 9.04751 2.16957 9.13716C2.19858 9.23885 2.2745 9.32995 2.42633 9.51215L11.385 20.2625C11.596 20.5158 11.7015 20.6424 11.8279 20.6886C11.9387 20.7291 12.0603 20.7291 12.1712 20.6886C12.2975 20.6424 12.4031 20.5158 12.6141 20.2625Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/diamond-02.svg b/@stellar/design-system/src/assets/icons/diamond-02.svg
new file mode 100644
index 00000000..c918dc02
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/diamond-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.00033 22H19.0003M2.50033 8H21.5003M10.0003 2L8.00033 8L12.0003 18.5L16.0003 8L14.0003 2M12.5923 18.3489L21.5319 8.5153C21.6979 8.33264 21.781 8.24131 21.814 8.13732C21.8432 8.04569 21.8453 7.94759 21.8201 7.85478C21.7916 7.74946 21.7125 7.65465 21.5545 7.46501L17.2402 2.28785C17.152 2.18204 17.108 2.12914 17.0539 2.09111C17.006 2.05741 16.9526 2.03238 16.896 2.01717C16.8322 2 16.7634 2 16.6256 2H7.37503C7.2373 2 7.16844 2 7.10462 2.01717C7.04808 2.03238 6.99465 2.05741 6.94676 2.09111C6.89272 2.12914 6.84863 2.18204 6.76046 2.28785L2.44616 7.46501C2.28813 7.65464 2.20911 7.74946 2.18054 7.85478C2.15535 7.94759 2.15747 8.04569 2.18662 8.13732C2.21971 8.24131 2.30273 8.33264 2.46879 8.51529L11.4084 18.3489C11.6136 18.5746 11.7162 18.6875 11.8368 18.7292C11.9427 18.7659 12.0579 18.7659 12.1639 18.7292C12.2845 18.6875 12.3871 18.5746 12.5923 18.3489Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-1.svg b/@stellar/design-system/src/assets/icons/dice-1.svg
new file mode 100644
index 00000000..a99b1acf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-1.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12H12.005M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-2.svg b/@stellar/design-system/src/assets/icons/dice-2.svg
new file mode 100644
index 00000000..099b889f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-2.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.25 8.75H15.255M8.75 15.25H8.755M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM15.5 8.75C15.5 8.88807 15.3881 9 15.25 9C15.1119 9 15 8.88807 15 8.75C15 8.61193 15.1119 8.5 15.25 8.5C15.3881 8.5 15.5 8.61193 15.5 8.75ZM9 15.25C9 15.3881 8.88807 15.5 8.75 15.5C8.61193 15.5 8.5 15.3881 8.5 15.25C8.5 15.1119 8.61193 15 8.75 15C8.88807 15 9 15.1119 9 15.25Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-3.svg b/@stellar/design-system/src/assets/icons/dice-3.svg
new file mode 100644
index 00000000..dc533dae
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-3.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.25 7.75H16.255M12 12H12.005M7.75 16.25H7.755M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM16.5 7.75C16.5 7.88807 16.3881 8 16.25 8C16.1119 8 16 7.88807 16 7.75C16 7.61193 16.1119 7.5 16.25 7.5C16.3881 7.5 16.5 7.61193 16.5 7.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12ZM8 16.25C8 16.3881 7.88807 16.5 7.75 16.5C7.61193 16.5 7.5 16.3881 7.5 16.25C7.5 16.1119 7.61193 16 7.75 16C7.88807 16 8 16.1119 8 16.25Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-4.svg b/@stellar/design-system/src/assets/icons/dice-4.svg
new file mode 100644
index 00000000..0c9d249b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-4.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.25 7.75H16.255M16.25 16.25H16.255M7.75 7.75H7.755M7.75 16.25H7.755M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM16.5 7.75C16.5 7.88807 16.3881 8 16.25 8C16.1119 8 16 7.88807 16 7.75C16 7.61193 16.1119 7.5 16.25 7.5C16.3881 7.5 16.5 7.61193 16.5 7.75ZM16.5 16.25C16.5 16.3881 16.3881 16.5 16.25 16.5C16.1119 16.5 16 16.3881 16 16.25C16 16.1119 16.1119 16 16.25 16C16.3881 16 16.5 16.1119 16.5 16.25ZM8 7.75C8 7.88807 7.88807 8 7.75 8C7.61193 8 7.5 7.88807 7.5 7.75C7.5 7.61193 7.61193 7.5 7.75 7.5C7.88807 7.5 8 7.61193 8 7.75ZM8 16.25C8 16.3881 7.88807 16.5 7.75 16.5C7.61193 16.5 7.5 16.3881 7.5 16.25C7.5 16.1119 7.61193 16 7.75 16C7.88807 16 8 16.1119 8 16.25Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-5.svg b/@stellar/design-system/src/assets/icons/dice-5.svg
new file mode 100644
index 00000000..3f5e3385
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-5.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.25 7.75H16.255M16.25 16.25H16.255M7.75 7.75H7.755M12 12H12.005M7.75 16.25H7.755M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM16.5 7.75C16.5 7.88807 16.3881 8 16.25 8C16.1119 8 16 7.88807 16 7.75C16 7.61193 16.1119 7.5 16.25 7.5C16.3881 7.5 16.5 7.61193 16.5 7.75ZM16.5 16.25C16.5 16.3881 16.3881 16.5 16.25 16.5C16.1119 16.5 16 16.3881 16 16.25C16 16.1119 16.1119 16 16.25 16C16.3881 16 16.5 16.1119 16.5 16.25ZM8 7.75C8 7.88807 7.88807 8 7.75 8C7.61193 8 7.5 7.88807 7.5 7.75C7.5 7.61193 7.61193 7.5 7.75 7.5C7.88807 7.5 8 7.61193 8 7.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12ZM8 16.25C8 16.3881 7.88807 16.5 7.75 16.5C7.61193 16.5 7.5 16.3881 7.5 16.25C7.5 16.1119 7.61193 16 7.75 16C7.88807 16 8 16.1119 8 16.25Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dice-6.svg b/@stellar/design-system/src/assets/icons/dice-6.svg
new file mode 100644
index 00000000..d9088d75
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dice-6.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.25 7.75H16.255M16.25 11.75H16.255M16.25 16.25H16.255M7.75 7.75H7.755M7.75 11.75H7.755M7.75 16.25H7.755M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21ZM16.5 7.75C16.5 7.88807 16.3881 8 16.25 8C16.1119 8 16 7.88807 16 7.75C16 7.61193 16.1119 7.5 16.25 7.5C16.3881 7.5 16.5 7.61193 16.5 7.75ZM16.5 11.75C16.5 11.8881 16.3881 12 16.25 12C16.1119 12 16 11.8881 16 11.75C16 11.6119 16.1119 11.5 16.25 11.5C16.3881 11.5 16.5 11.6119 16.5 11.75ZM16.5 16.25C16.5 16.3881 16.3881 16.5 16.25 16.5C16.1119 16.5 16 16.3881 16 16.25C16 16.1119 16.1119 16 16.25 16C16.3881 16 16.5 16.1119 16.5 16.25ZM8 7.75C8 7.88807 7.88807 8 7.75 8C7.61193 8 7.5 7.88807 7.5 7.75C7.5 7.61193 7.61193 7.5 7.75 7.5C7.88807 7.5 8 7.61193 8 7.75ZM8 11.75C8 11.8881 7.88807 12 7.75 12C7.61193 12 7.5 11.8881 7.5 11.75C7.5 11.6119 7.61193 11.5 7.75 11.5C7.88807 11.5 8 11.6119 8 11.75ZM8 16.25C8 16.3881 7.88807 16.5 7.75 16.5C7.61193 16.5 7.5 16.3881 7.5 16.25C7.5 16.1119 7.61193 16 7.75 16C7.88807 16 8 16.1119 8 16.25Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/disc-01.svg b/@stellar/design-system/src/assets/icons/disc-01.svg
new file mode 100644
index 00000000..d88d302e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/disc-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/disc-02.svg b/@stellar/design-system/src/assets/icons/disc-02.svg
new file mode 100644
index 00000000..c1e2a35b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/disc-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 5.67363C17.3649 6.7971 19 9.2076 19 12M8.39241 18C6.35958 16.7751 5 14.5463 5 12M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/discord.svg b/@stellar/design-system/src/assets/icons/discord.svg
deleted file mode 100644
index 2b32ff38..00000000
--- a/@stellar/design-system/src/assets/icons/discord.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9.87605 4.98879C9.70165 4.50399 9.52565 4.01519 9.52245 4.00879C9.43845 3.82079 9.24405 3.70239 9.03925 3.72319C8.90965 3.73359 5.84325 3.99759 3.87845 5.57759C2.85125 6.52639 0.800049 12.0736 0.800049 16.8696C0.800049 16.9544 0.821649 17.0368 0.864049 17.1104C2.28085 19.5984 6.14325 20.2496 7.02325 20.2776C7.02885 20.2784 7.03365 20.2784 7.03845 20.2784C7.19365 20.2784 7.33925 20.204 7.43205 20.0784L8.38405 18.7888C6.81125 18.5496 6.52725 18.2376 6.46085 18.1888C6.10565 17.9272 5.84325 17.5608 6.16165 17.0984C6.40645 16.7392 6.92005 16.6208 7.31365 16.8232C7.71685 17.0112 8.79605 17.616 12 17.6C15.1816 17.5904 16.5784 16.924 16.5984 16.9096C17.1328 16.6688 17.5496 16.768 17.8096 17.1248C18.1192 17.6104 17.8984 17.9392 17.5448 18.2C17.4784 18.2488 17.3176 18.3856 15.628 18.7856L16.568 20.0776C16.66 20.204 16.8064 20.2776 16.9616 20.2776C16.9672 20.2776 16.972 20.2776 16.9769 20.2768C17.8576 20.2488 21.72 19.5976 23.136 17.1096C23.1784 17.036 23.2 16.9536 23.2 16.8688C23.2 12.0736 21.1488 6.52639 20.0961 5.55679C18.1568 3.99839 15.0904 3.73439 14.9608 3.72319C14.756 3.70559 14.5616 3.82159 14.4776 4.00879C14.4744 4.01519 14.3032 4.51199 14.1376 4.99119C14.1376 4.99119 12.8328 4.79999 12 4.79999C11.1672 4.79999 9.87605 4.98879 9.87605 4.98879ZM8.80005 15.2C7.91605 15.2 7.20005 14.1336 7.20005 12.8168C7.20005 11.5 7.91605 10.4336 8.80005 10.4336C9.68725 10.3016 10.3808 11.5 10.4 12.8168C10.4 14.1336 9.68405 15.2 8.80005 15.2ZM15.2 15.2C14.316 15.2 13.6 14.1264 13.6 12.8024C13.6 11.4784 14.316 10.4048 15.2 10.4048C16.084 10.4048 16.8 11.4784 16.8 12.8024C16.8 14.1264 16.084 15.2 15.2 15.2Z"/></svg>
diff --git a/@stellar/design-system/src/assets/icons/distribute-spacing-horizontal.svg b/@stellar/design-system/src/assets/icons/distribute-spacing-horizontal.svg
new file mode 100644
index 00000000..e5120721
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/distribute-spacing-horizontal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21V3M3 21V3M9 8V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V8C15 7.06812 15 6.60218 14.8478 6.23463C14.6448 5.74458 14.2554 5.35523 13.7654 5.15224C13.3978 5 12.9319 5 12 5C11.0681 5 10.6022 5 10.2346 5.15224C9.74458 5.35523 9.35523 5.74458 9.15224 6.23463C9 6.60218 9 7.06812 9 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/distribute-spacing-vertical.svg b/@stellar/design-system/src/assets/icons/distribute-spacing-vertical.svg
new file mode 100644
index 00000000..5dc98496
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/distribute-spacing-vertical.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 3H3M21 21H3M5 12C5 11.0681 5 10.6022 5.15224 10.2346C5.35523 9.74458 5.74458 9.35523 6.23463 9.15224C6.60218 9 7.06812 9 8 9L16 9C16.9319 9 17.3978 9 17.7654 9.15224C18.2554 9.35523 18.6448 9.74458 18.8478 10.2346C19 10.6022 19 11.0681 19 12C19 12.9319 19 13.3978 18.8478 13.7654C18.6448 14.2554 18.2554 14.6448 17.7654 14.8478C17.3978 15 16.9319 15 16 15L8 15C7.06812 15 6.60218 15 6.23463 14.8478C5.74458 14.6448 5.35523 14.2554 5.15224 13.7654C5 13.3978 5 12.9319 5 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/divide-01.svg b/@stellar/design-system/src/assets/icons/divide-01.svg
new file mode 100644
index 00000000..aaf9fd36
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/divide-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 12H20M13 6C13 6.55228 12.5523 7 12 7C11.4477 7 11 6.55228 11 6C11 5.44772 11.4477 5 12 5C12.5523 5 13 5.44772 13 6ZM13 18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18C11 17.4477 11.4477 17 12 17C12.5523 17 13 17.4477 13 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/divide-02.svg b/@stellar/design-system/src/assets/icons/divide-02.svg
new file mode 100644
index 00000000..8e78f93c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/divide-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 12H20M14 6C14 7.10457 13.1046 8 12 8C10.8954 8 10 7.10457 10 6C10 4.89543 10.8954 4 12 4C13.1046 4 14 4.89543 14 6ZM14 18C14 19.1046 13.1046 20 12 20C10.8954 20 10 19.1046 10 18C10 16.8954 10.8954 16 12 16C13.1046 16 14 16.8954 14 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/divide-03.svg b/@stellar/design-system/src/assets/icons/divide-03.svg
new file mode 100644
index 00000000..ae00c802
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/divide-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8H12.01M12 16H12.01M7 12H17M12.5 8C12.5 8.27614 12.2761 8.5 12 8.5C11.7239 8.5 11.5 8.27614 11.5 8C11.5 7.72386 11.7239 7.5 12 7.5C12.2761 7.5 12.5 7.72386 12.5 8ZM12.5 16C12.5 16.2761 12.2761 16.5 12 16.5C11.7239 16.5 11.5 16.2761 11.5 16C11.5 15.7239 11.7239 15.5 12 15.5C12.2761 15.5 12.5 15.7239 12.5 16ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/divider.svg b/@stellar/design-system/src/assets/icons/divider.svg
new file mode 100644
index 00000000..37aaa89e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/divider.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H3.01M7.5 12H7.51M16.5 12H16.51M12 12H12.01M21 12H21.01M21 21V20.2C21 19.0799 21 18.5198 20.782 18.092C20.5903 17.7157 20.2843 17.4097 19.908 17.218C19.4802 17 18.9201 17 17.8 17H6.2C5.0799 17 4.51984 17 4.09202 17.218C3.7157 17.4097 3.40973 17.7157 3.21799 18.092C3 18.5198 3 19.0799 3 20.2V21M21 3V3.8C21 4.9201 21 5.48016 20.782 5.90798C20.5903 6.28431 20.2843 6.59027 19.908 6.78201C19.4802 7 18.9201 7 17.8 7H6.2C5.0799 7 4.51984 7 4.09202 6.78201C3.71569 6.59027 3.40973 6.28431 3.21799 5.90798C3 5.48016 3 4.92011 3 3.8V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/done.svg b/@stellar/design-system/src/assets/icons/done.svg
deleted file mode 100644
index 2c100056..00000000
--- a/@stellar/design-system/src/assets/icons/done.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6867)"><path d="M9.55 17.575C9.41667 17.575 9.29167 17.554 9.175 17.512C9.05833 17.4707 8.95 17.4 8.85 17.3L4.55 13C4.36667 12.8167 4.279 12.579 4.287 12.287C4.29567 11.9957 4.39167 11.7584 4.575 11.575C4.75833 11.3917 4.99167 11.3 5.275 11.3C5.55833 11.3 5.79167 11.3917 5.975 11.575L9.55 15.15L18.025 6.67502C18.2083 6.49169 18.446 6.40002 18.738 6.40002C19.0293 6.40002 19.2667 6.49169 19.45 6.67502C19.6333 6.85836 19.725 7.09569 19.725 7.38702C19.725 7.67902 19.6333 7.91669 19.45 8.10002L10.25 17.3C10.15 17.4 10.0417 17.4707 9.925 17.512C9.80833 17.554 9.68333 17.575 9.55 17.575Z"/></g><defs><clipPath id="clip0_1113_6867"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dot.svg b/@stellar/design-system/src/assets/icons/dot.svg
deleted file mode 100644
index a270d73a..00000000
--- a/@stellar/design-system/src/assets/icons/dot.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 19C10.05 19 8.39583 18.3208 7.0375 16.9625C5.67917 15.6042 5 13.95 5 12C5 10.05 5.67917 8.39583 7.0375 7.0375C8.39583 5.67917 10.05 5 12 5C13.95 5 15.6042 5.67917 16.9625 7.0375C18.3208 8.39583 19 10.05 19 12C19 13.95 18.3208 15.6042 16.9625 16.9625C15.6042 18.3208 13.95 19 12 19Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dotpoints-01.svg b/@stellar/design-system/src/assets/icons/dotpoints-01.svg
new file mode 100644
index 00000000..57f697b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dotpoints-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 12L9 12M21 6L9 6M21 18L9 18M5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12ZM5 6C5 6.55228 4.55228 7 4 7C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5C4.55228 5 5 5.44772 5 6ZM5 18C5 18.5523 4.55228 19 4 19C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17C4.55228 17 5 17.4477 5 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dotpoints-02.svg b/@stellar/design-system/src/assets/icons/dotpoints-02.svg
new file mode 100644
index 00000000..0c99aeda
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dotpoints-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 5L10 5M21 19L10 19M21 12L10 12M6 5C6 5.82843 5.32843 6.5 4.5 6.5C3.67157 6.5 3 5.82843 3 5C3 4.17157 3.67157 3.5 4.5 3.5C5.32843 3.5 6 4.17157 6 5ZM6 19C6 19.8284 5.32843 20.5 4.5 20.5C3.67157 20.5 3 19.8284 3 19C3 18.1716 3.67157 17.5 4.5 17.5C5.32843 17.5 6 18.1716 6 19ZM6 12C6 12.8284 5.32843 13.5 4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5C5.32843 10.5 6 11.1716 6 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dots-grid.svg b/@stellar/design-system/src/assets/icons/dots-grid.svg
new file mode 100644
index 00000000..67d037d0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dots-grid.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 6C19.5523 6 20 5.55228 20 5C20 4.44772 19.5523 4 19 4C18.4477 4 18 4.44772 18 5C18 5.55228 18.4477 6 19 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 20C19.5523 20 20 19.5523 20 19C20 18.4477 19.5523 18 19 18C18.4477 18 18 18.4477 18 19C18 19.5523 18.4477 20 19 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 6C5.55228 6 6 5.55228 6 5C6 4.44772 5.55228 4 5 4C4.44772 4 4 4.44772 4 5C4 5.55228 4.44772 6 5 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 20C5.55228 20 6 19.5523 6 19C6 18.4477 5.55228 18 5 18C4.44772 18 4 18.4477 4 19C4 19.5523 4.44772 20 5 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dots-horizontal.svg b/@stellar/design-system/src/assets/icons/dots-horizontal.svg
new file mode 100644
index 00000000..f84498bc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dots-horizontal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dots-vertical.svg b/@stellar/design-system/src/assets/icons/dots-vertical.svg
new file mode 100644
index 00000000..93931e94
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dots-vertical.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-01.svg b/@stellar/design-system/src/assets/icons/download-01.svg
new file mode 100644
index 00000000..0c7499ac
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-02.svg b/@stellar/design-system/src/assets/icons/download-02.svg
new file mode 100644
index 00000000..e83821a7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H3M18 11L12 17M12 17L6 11M12 17V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-03.svg b/@stellar/design-system/src/assets/icons/download-03.svg
new file mode 100644
index 00000000..7de1917a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-04.svg b/@stellar/design-system/src/assets/icons/download-04.svg
new file mode 100644
index 00000000..72744930
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12L12 16M12 16L16 12M12 16V6.8C12 5.40929 12 4.71394 11.4495 3.9354C11.0837 3.41812 10.0306 2.77968 9.40278 2.69462C8.45789 2.5666 8.09907 2.75378 7.38143 3.12814C4.18333 4.79643 2 8.14324 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 8.29859 19.989 5.06687 17 3.33782" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-cloud-01.svg b/@stellar/design-system/src/assets/icons/download-cloud-01.svg
new file mode 100644
index 00000000..a223d368
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-cloud-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 16.2422C2.79401 15.435 2 14.0602 2 12.5C2 10.1564 3.79151 8.23129 6.07974 8.01937C6.54781 5.17213 9.02024 3 12 3C14.9798 3 17.4522 5.17213 17.9203 8.01937C20.2085 8.23129 22 10.1564 22 12.5C22 14.0602 21.206 15.435 20 16.2422M8 17L12 21M12 21L16 17M12 21V12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download-cloud-02.svg b/@stellar/design-system/src/assets/icons/download-cloud-02.svg
new file mode 100644
index 00000000..ea359de8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/download-cloud-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 17L12 21M12 21L16 17M12 21V12M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/download.svg b/@stellar/design-system/src/assets/icons/download.svg
deleted file mode 100644
index 0b11ba62..00000000
--- a/@stellar/design-system/src/assets/icons/download.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6864)"><path d="M12 15.575C11.8667 15.575 11.7417 15.554 11.625 15.512C11.5083 15.4707 11.4 15.4 11.3 15.3L7.7 11.7C7.51667 11.5167 7.425 11.2833 7.425 11C7.425 10.7167 7.51667 10.4833 7.7 10.3C7.88333 10.1167 8.12067 10.0207 8.412 10.012C8.704 10.004 8.94167 10.0917 9.125 10.275L11 12.15V5C11 4.71667 11.096 4.479 11.288 4.287C11.4793 4.09567 11.7167 4 12 4C12.2833 4 12.521 4.09567 12.713 4.287C12.9043 4.479 13 4.71667 13 5V12.15L14.875 10.275C15.0583 10.0917 15.296 10.004 15.588 10.012C15.8793 10.0207 16.1167 10.1167 16.3 10.3C16.4833 10.4833 16.575 10.7167 16.575 11C16.575 11.2833 16.4833 11.5167 16.3 11.7L12.7 15.3C12.6 15.4 12.4917 15.4707 12.375 15.512C12.2583 15.554 12.1333 15.575 12 15.575ZM6 20C5.45 20 4.97933 19.8043 4.588 19.413C4.196 19.021 4 18.55 4 18V16C4 15.7167 4.09567 15.479 4.287 15.287C4.479 15.0957 4.71667 15 5 15C5.28333 15 5.521 15.0957 5.713 15.287C5.90433 15.479 6 15.7167 6 16V18H18V16C18 15.7167 18.096 15.479 18.288 15.287C18.4793 15.0957 18.7167 15 19 15C19.2833 15 19.5207 15.0957 19.712 15.287C19.904 15.479 20 15.7167 20 16V18C20 18.55 19.8043 19.021 19.413 19.413C19.021 19.8043 18.55 20 18 20H6Z"/></g><defs><clipPath id="clip0_1113_6864"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/draft.svg b/@stellar/design-system/src/assets/icons/draft.svg
deleted file mode 100644
index ba4ea725..00000000
--- a/@stellar/design-system/src/assets/icons/draft.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6861)"><path d="M6 22C5.45 22 4.97933 21.8043 4.588 21.413C4.196 21.021 4 20.55 4 20V4C4 3.45 4.196 2.979 4.588 2.587C4.97933 2.19567 5.45 2 6 2H13.175C13.4417 2 13.696 2.05 13.938 2.15C14.1793 2.25 14.3917 2.39167 14.575 2.575L19.425 7.425C19.6083 7.60833 19.75 7.82067 19.85 8.062C19.95 8.304 20 8.55833 20 8.825V20C20 20.55 19.8043 21.021 19.413 21.413C19.021 21.8043 18.55 22 18 22H6ZM13 8C13 8.28333 13.096 8.52067 13.288 8.712C13.4793 8.904 13.7167 9 14 9H18L13 4V8Z"/></g><defs><clipPath id="clip0_1113_6861"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/drag-indicator.svg b/@stellar/design-system/src/assets/icons/drag-indicator.svg
deleted file mode 100644
index 5dc56d4d..00000000
--- a/@stellar/design-system/src/assets/icons/drag-indicator.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M9 20C8.45 20 7.97933 19.8043 7.588 19.413C7.196 19.021 7 18.55 7 18C7 17.45 7.196 16.979 7.588 16.587C7.97933 16.1957 8.45 16 9 16C9.55 16 10.021 16.1957 10.413 16.587C10.8043 16.979 11 17.45 11 18C11 18.55 10.8043 19.021 10.413 19.413C10.021 19.8043 9.55 20 9 20ZM15 20C14.45 20 13.9793 19.8043 13.588 19.413C13.196 19.021 13 18.55 13 18C13 17.45 13.196 16.979 13.588 16.587C13.9793 16.1957 14.45 16 15 16C15.55 16 16.021 16.1957 16.413 16.587C16.8043 16.979 17 17.45 17 18C17 18.55 16.8043 19.021 16.413 19.413C16.021 19.8043 15.55 20 15 20ZM9 14C8.45 14 7.97933 13.804 7.588 13.412C7.196 13.0207 7 12.55 7 12C7 11.45 7.196 10.979 7.588 10.587C7.97933 10.1957 8.45 10 9 10C9.55 10 10.021 10.1957 10.413 10.587C10.8043 10.979 11 11.45 11 12C11 12.55 10.8043 13.0207 10.413 13.412C10.021 13.804 9.55 14 9 14ZM15 14C14.45 14 13.9793 13.804 13.588 13.412C13.196 13.0207 13 12.55 13 12C13 11.45 13.196 10.979 13.588 10.587C13.9793 10.1957 14.45 10 15 10C15.55 10 16.021 10.1957 16.413 10.587C16.8043 10.979 17 11.45 17 12C17 12.55 16.8043 13.0207 16.413 13.412C16.021 13.804 15.55 14 15 14ZM9 8C8.45 8 7.97933 7.804 7.588 7.412C7.196 7.02067 7 6.55 7 6C7 5.45 7.196 4.97933 7.588 4.588C7.97933 4.196 8.45 4 9 4C9.55 4 10.021 4.196 10.413 4.588C10.8043 4.97933 11 5.45 11 6C11 6.55 10.8043 7.02067 10.413 7.412C10.021 7.804 9.55 8 9 8ZM15 8C14.45 8 13.9793 7.804 13.588 7.412C13.196 7.02067 13 6.55 13 6C13 5.45 13.196 4.97933 13.588 4.588C13.9793 4.196 14.45 4 15 4C15.55 4 16.021 4.196 16.413 4.588C16.8043 4.97933 17 5.45 17 6C17 6.55 16.8043 7.02067 16.413 7.412C16.021 7.804 15.55 8 15 8Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/drag-pan.svg b/@stellar/design-system/src/assets/icons/drag-pan.svg
deleted file mode 100644
index 330fd3e9..00000000
--- a/@stellar/design-system/src/assets/icons/drag-pan.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M10.9999 12.975H5.8749L6.9749 14.075C7.1749 14.275 7.2749 14.5167 7.2749 14.8C7.2749 15.0834 7.1749 15.325 6.9749 15.525C6.7749 15.725 6.53324 15.825 6.2499 15.825C5.96657 15.825 5.7249 15.725 5.5249 15.525L2.6999 12.7C2.4999 12.5 2.3999 12.2667 2.3999 12C2.3999 11.7334 2.4999 11.5 2.6999 11.3L5.5249 8.47502C5.7249 8.27502 5.96257 8.17502 6.2379 8.17502C6.51257 8.17502 6.7499 8.27502 6.9499 8.47502C7.1499 8.67502 7.2499 8.91269 7.2499 9.18802C7.2499 9.46269 7.1499 9.70002 6.9499 9.90002L5.8499 11H10.9999V5.85002L9.8749 6.97502C9.6749 7.17502 9.44157 7.27502 9.1749 7.27502C8.90824 7.27502 8.6749 7.17502 8.4749 6.97502C8.2749 6.77502 8.1749 6.53736 8.1749 6.26202C8.1749 5.98736 8.2749 5.75002 8.4749 5.55002L11.2999 2.70002C11.4999 2.50002 11.7332 2.40002 11.9999 2.40002C12.2666 2.40002 12.4999 2.50002 12.6999 2.70002L15.5499 5.55002C15.7499 5.75002 15.8499 5.98336 15.8499 6.25002C15.8499 6.51669 15.7499 6.75002 15.5499 6.95002C15.3499 7.15002 15.1126 7.25002 14.8379 7.25002C14.5626 7.25002 14.3249 7.15002 14.1249 6.95002L12.9999 5.85002V11L18.1249 11.025L17.0249 9.92502C16.8249 9.72502 16.7249 9.48336 16.7249 9.20002C16.7249 8.91669 16.8249 8.67502 17.0249 8.47502C17.2249 8.27502 17.4666 8.17502 17.7499 8.17502C18.0332 8.17502 18.2749 8.27502 18.4749 8.47502L21.2999 11.3C21.4999 11.5 21.5999 11.7334 21.5999 12C21.5999 12.2667 21.4999 12.5 21.2999 12.7L18.4499 15.55C18.2499 15.75 18.0126 15.8457 17.7379 15.837C17.4626 15.829 17.2249 15.725 17.0249 15.525C16.8249 15.325 16.7249 15.0874 16.7249 14.812C16.7249 14.5374 16.8249 14.3 17.0249 14.1L18.1499 12.975H12.9999V18.125L14.0749 17.025C14.2749 16.825 14.5166 16.725 14.7999 16.725C15.0832 16.725 15.3249 16.825 15.5249 17.025C15.7249 17.225 15.8249 17.4667 15.8249 17.75C15.8249 18.0334 15.7249 18.275 15.5249 18.475L12.6999 21.3C12.4999 21.5 12.2666 21.6 11.9999 21.6C11.7332 21.6 11.4999 21.5 11.2999 21.3L8.4499 18.45C8.2499 18.25 8.15424 18.0124 8.1629 17.737C8.1709 17.4624 8.2749 17.225 8.4749 17.025C8.6749 16.825 8.91257 16.725 9.1879 16.725C9.46257 16.725 9.6999 16.825 9.8999 17.025L10.9999 18.15V12.975Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/drop.svg b/@stellar/design-system/src/assets/icons/drop.svg
new file mode 100644
index 00000000..2d03b0bc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/drop.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 14C20 18.4183 16.4183 22 12 22C7.58172 22 4 18.4183 4 14C4 12.9391 4.20651 11.9264 4.58152 11C5.76829 8.06817 12 2 12 2C12 2 18.2317 8.06817 19.4185 11C19.7935 11.9264 20 12.9391 20 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/droplets-01.svg b/@stellar/design-system/src/assets/icons/droplets-01.svg
new file mode 100644
index 00000000..acafdb50
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/droplets-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 16C22 19.3137 19.3137 22 16 22C12.6863 22 10 19.3137 10 16C10 11.6863 16 2 16 2C16 2 22 11.6863 22 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 9C8 10.6569 6.65685 12 5 12C3.34315 12 2 10.6569 2 9C2 6.84315 5 2 5 2C5 2 8 6.84315 8 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/droplets-02.svg b/@stellar/design-system/src/assets/icons/droplets-02.svg
new file mode 100644
index 00000000..ecb8885c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/droplets-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 21.5C13.8565 21.5 15.637 20.7625 16.9497 19.4497C18.2625 18.137 19 16.3565 19 14.5C19 12.5 18 10.6 16 9C14 7.4 12.5 5 12 2.5C11.5 5 10 7.4 8 9C6 10.6 5 12.5 5 14.5C5 16.3565 5.7375 18.137 7.05025 19.4497C8.36301 20.7625 10.1435 21.5 12 21.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/droplets-03.svg b/@stellar/design-system/src/assets/icons/droplets-03.svg
new file mode 100644
index 00000000..a13b4ff0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/droplets-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.56 6.08C13.2478 4.98112 13.7353 3.76904 14 2.5C14.5 5 16 7.4 18 9C20 10.6 21 12.5 21 14.5C21.0057 15.8823 20.6009 17.2352 19.8368 18.3871C19.0727 19.539 17.9838 20.4382 16.7081 20.9705C15.4324 21.5028 14.0274 21.6444 12.6712 21.3773C11.3149 21.1101 10.0685 20.4463 9.09 19.47M7 15.78C9.2 15.78 11 13.95 11 11.73C11 10.57 10.43 9.47 9.29 8.54C8.15 7.61 7.29 6.23 7 4.78C6.71 6.23 5.86 7.62 4.71 8.54C3.56 9.46 3 10.58 3 11.73C3 13.95 4.8 15.78 7 15.78Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/dropper.svg b/@stellar/design-system/src/assets/icons/dropper.svg
new file mode 100644
index 00000000..e9302ab5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/dropper.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5 6.5L17.5 13.5M2 22C2 22 6.5 21.5 9 19L21 7C22.1046 5.89543 22.1046 4.10457 21 3C19.8954 1.89543 18.1046 1.89543 17 3L5 15C2.5 17.5 2 22 2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit-01.svg b/@stellar/design-system/src/assets/icons/edit-01.svg
new file mode 100644
index 00000000..454e3dc6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/edit-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.87604 18.1156C2.92198 17.7021 2.94496 17.4954 3.00751 17.3022C3.06301 17.1307 3.14143 16.9676 3.24064 16.8171C3.35246 16.6475 3.49955 16.5005 3.79373 16.2063L17 3C18.1046 1.89543 19.8955 1.89543 21 3C22.1046 4.10457 22.1046 5.89543 21 7L7.79373 20.2063C7.49955 20.5005 7.35245 20.6475 7.18289 20.7594C7.03245 20.8586 6.86929 20.937 6.69785 20.9925C6.5046 21.055 6.29786 21.078 5.88437 21.124L2.5 21.5L2.87604 18.1156Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit-02.svg b/@stellar/design-system/src/assets/icons/edit-02.svg
new file mode 100644
index 00000000..ab81a1c0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/edit-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 10L14 6M2.5 21.5L5.88437 21.124C6.29786 21.078 6.5046 21.055 6.69785 20.9925C6.86929 20.937 7.03245 20.8586 7.18289 20.7594C7.35245 20.6475 7.49955 20.5005 7.79373 20.2063L21 7C22.1046 5.89543 22.1046 4.10457 21 3C19.8955 1.89543 18.1046 1.89543 17 3L3.79373 16.2063C3.49955 16.5005 3.35246 16.6475 3.24064 16.8171C3.14143 16.9676 3.06301 17.1307 3.00751 17.3022C2.94496 17.4954 2.92198 17.7021 2.87604 18.1156L2.5 21.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit-03.svg b/@stellar/design-system/src/assets/icons/edit-03.svg
new file mode 100644
index 00000000..ee67fc2e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/edit-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20H21M3 20H4.67454C5.16372 20 5.40832 20 5.63849 19.9447C5.84256 19.8957 6.03765 19.8149 6.2166 19.7053C6.41843 19.5816 6.59138 19.4086 6.93729 19.0627L19.5 6.49998C20.3285 5.67156 20.3285 4.32841 19.5 3.49998C18.6716 2.67156 17.3285 2.67156 16.5 3.49998L3.93726 16.0627C3.59136 16.4086 3.4184 16.5816 3.29472 16.7834C3.18506 16.9624 3.10425 17.1574 3.05526 17.3615C3 17.5917 3 17.8363 3 18.3255V20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit-04.svg b/@stellar/design-system/src/assets/icons/edit-04.svg
new file mode 100644
index 00000000..19ddaf9b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/edit-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 18L19.9999 19.094C19.4695 19.6741 18.7501 20 18.0001 20C17.2501 20 16.5308 19.6741 16.0004 19.094C15.4692 18.5151 14.75 18.1901 14.0002 18.1901C13.2504 18.1901 12.5311 18.5151 12 19.094M3 20H4.67454C5.16372 20 5.40832 20 5.63849 19.9447C5.84256 19.8957 6.03765 19.8149 6.2166 19.7053C6.41843 19.5816 6.59138 19.4086 6.93729 19.0627L19.5 6.49998C20.3285 5.67156 20.3285 4.32841 19.5 3.49998C18.6716 2.67156 17.3285 2.67156 16.5 3.49998L3.93726 16.0627C3.59136 16.4086 3.4184 16.5816 3.29472 16.7834C3.18506 16.9624 3.10425 17.1574 3.05526 17.3615C3 17.5917 3 17.8363 3 18.3255V20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit-05.svg b/@stellar/design-system/src/assets/icons/edit-05.svg
new file mode 100644
index 00000000..99a8d100
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/edit-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 3.99998H6.8C5.11984 3.99998 4.27976 3.99998 3.63803 4.32696C3.07354 4.61458 2.6146 5.07353 2.32698 5.63801C2 6.27975 2 7.11983 2 8.79998V17.2C2 18.8801 2 19.7202 2.32698 20.362C2.6146 20.9264 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9264 19.673 20.362C20 19.7202 20 18.8801 20 17.2V13M7.99997 16H9.67452C10.1637 16 10.4083 16 10.6385 15.9447C10.8425 15.8957 11.0376 15.8149 11.2166 15.7053C11.4184 15.5816 11.5914 15.4086 11.9373 15.0627L21.5 5.49998C22.3284 4.67156 22.3284 3.32841 21.5 2.49998C20.6716 1.67156 19.3284 1.67155 18.5 2.49998L8.93723 12.0627C8.59133 12.4086 8.41838 12.5816 8.29469 12.7834C8.18504 12.9624 8.10423 13.1574 8.05523 13.3615C7.99997 13.5917 7.99997 13.8363 7.99997 14.3255V16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/edit.svg b/@stellar/design-system/src/assets/icons/edit.svg
deleted file mode 100644
index e264ec39..00000000
--- a/@stellar/design-system/src/assets/icons/edit.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6858)"><path d="M21.875 9.04999L17.6 4.84999L18.675 3.77499C19.075 3.37499 19.5543 3.17499 20.113 3.17499C20.671 3.17499 21.1417 3.37499 21.525 3.77499L22.925 5.19999C23.3083 5.58332 23.5 6.04999 23.5 6.59999C23.5 7.14999 23.3083 7.61665 22.925 7.99999L21.875 9.04999ZM5 23.7C4.45 23.7 3.979 23.504 3.587 23.112C3.19567 22.7207 3 22.25 3 21.7V7.69999C3 7.14999 3.19567 6.67899 3.587 6.28699C3.979 5.89565 4.45 5.69999 5 5.69999H13.925L7.875 11.75C7.59167 12.0333 7.375 12.3583 7.225 12.725C7.075 13.0917 7 13.475 7 13.875V17.7C7 18.25 7.196 18.7207 7.588 19.112C7.97933 19.504 8.45 19.7 9 19.7H12.825C13.225 19.7 13.6083 19.625 13.975 19.475C14.3417 19.325 14.6667 19.1083 14.95 18.825L21 12.75V21.7C21 22.25 20.8043 22.7207 20.413 23.112C20.021 23.504 19.55 23.7 19 23.7H5ZM10 17.7C9.71667 17.7 9.47933 17.6043 9.288 17.413C9.096 17.221 9 16.9833 9 16.7V14.275C9 14.0083 9.05 13.754 9.15 13.512C9.25 13.2707 9.39167 13.0583 9.575 12.875L16.175 6.27499L20.45 10.475L13.825 17.1C13.6417 17.2833 13.4293 17.4293 13.188 17.538C12.946 17.646 12.6917 17.7 12.425 17.7H10Z"/></g><defs><clipPath id="clip0_1113_6858"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/equal-not.svg b/@stellar/design-system/src/assets/icons/equal-not.svg
new file mode 100644
index 00000000..1ea919f9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/equal-not.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 9H19M5 15H19M19 5L5 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/equal.svg b/@stellar/design-system/src/assets/icons/equal.svg
new file mode 100644
index 00000000..eb3aa604
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/equal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 9H19M5 15H19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/eraser.svg b/@stellar/design-system/src/assets/icons/eraser.svg
new file mode 100644
index 00000000..b2bfccb5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/eraser.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.9995 13L10.9995 6.00004M20.9995 21H7.99955M10.9368 20.0628L19.6054 11.3941C20.7935 10.2061 21.3875 9.61207 21.6101 8.92709C21.8058 8.32456 21.8058 7.67551 21.6101 7.07298C21.3875 6.388 20.7935 5.79397 19.6054 4.60592L19.3937 4.39415C18.2056 3.2061 17.6116 2.61207 16.9266 2.38951C16.3241 2.19373 15.675 2.19373 15.0725 2.38951C14.3875 2.61207 13.7935 3.2061 12.6054 4.39415L4.39366 12.6059C3.20561 13.794 2.61158 14.388 2.38902 15.073C2.19324 15.6755 2.19324 16.3246 2.38902 16.9271C2.61158 17.6121 3.20561 18.2061 4.39366 19.3941L5.06229 20.0628C5.40819 20.4087 5.58114 20.5816 5.78298 20.7053C5.96192 20.815 6.15701 20.8958 6.36108 20.9448C6.59126 21 6.83585 21 7.32503 21H8.67406C9.16324 21 9.40784 21 9.63801 20.9448C9.84208 20.8958 10.0372 20.815 10.2161 20.7053C10.418 20.5816 10.5909 20.4087 10.9368 20.0628Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/error.svg b/@stellar/design-system/src/assets/icons/error.svg
deleted file mode 100644
index 0501f6d1..00000000
--- a/@stellar/design-system/src/assets/icons/error.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M7.7 16.3C7.88333 16.4833 8.11667 16.575 8.4 16.575C8.68333 16.575 8.91667 16.4833 9.1 16.3L12 13.4L14.925 16.325C15.1083 16.5083 15.3377 16.5957 15.613 16.587C15.8877 16.579 16.1167 16.4833 16.3 16.3C16.4833 16.1167 16.575 15.8833 16.575 15.6C16.575 15.3167 16.4833 15.0833 16.3 14.9L13.4 12L16.325 9.075C16.5083 8.89167 16.5957 8.66233 16.587 8.387C16.579 8.11233 16.4833 7.88333 16.3 7.7C16.1167 7.51667 15.8833 7.425 15.6 7.425C15.3167 7.425 15.0833 7.51667 14.9 7.7L12 10.6L9.075 7.675C8.89167 7.49167 8.66267 7.404 8.388 7.412C8.11267 7.42067 7.88333 7.51667 7.7 7.7C7.51667 7.88333 7.425 8.11667 7.425 8.4C7.425 8.68333 7.51667 8.91667 7.7 9.1L10.6 12L7.675 14.925C7.49167 15.1083 7.40433 15.3373 7.413 15.612C7.421 15.8873 7.51667 16.1167 7.7 16.3ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-01.svg b/@stellar/design-system/src/assets/icons/expand-01.svg
new file mode 100644
index 00000000..ca0518b2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 10L21 3M21 3H15M21 3V9M10 14L3 21M3 21H9M3 21L3 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-02.svg b/@stellar/design-system/src/assets/icons/expand-02.svg
new file mode 100644
index 00000000..f9c68497
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 21L21 3M3 21H9M3 21L3 15M21 3H15M21 3V9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-03.svg b/@stellar/design-system/src/assets/icons/expand-03.svg
new file mode 100644
index 00000000..16fcca6a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 14V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H14M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V10M15 9L21 3M21 3H15M21 3V9M9 15L3 21M3 21H9M3 21L3 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-04.svg b/@stellar/design-system/src/assets/icons/expand-04.svg
new file mode 100644
index 00000000..b69f3717
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 14V16.8C20 17.9201 20 18.4802 19.782 18.908C19.5903 19.2843 19.2843 19.5903 18.908 19.782C18.4802 20 17.9201 20 16.8 20H14M10 4H7.2C6.0799 4 5.51984 4 5.09202 4.21799C4.71569 4.40973 4.40973 4.71569 4.21799 5.09202C4 5.51984 4 6.07989 4 7.2V10M15 9L21 3M21 3H15M21 3V9M9 15L3 21M3 21H9M3 21L3 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-05.svg b/@stellar/design-system/src/assets/icons/expand-05.svg
new file mode 100644
index 00000000..3b14c09d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 9L21 3M21 3H15M21 3V9M9 9L3 3M3 3L3 9M3 3L9 3M9 15L3 21M3 21H9M3 21L3 15M15 15L21 21M21 21V15M21 21H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/expand-06.svg b/@stellar/design-system/src/assets/icons/expand-06.svg
new file mode 100644
index 00000000..9435060a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/expand-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/external-link.svg b/@stellar/design-system/src/assets/icons/external-link.svg
deleted file mode 100644
index b668839f..00000000
--- a/@stellar/design-system/src/assets/icons/external-link.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6855)"><path d="M5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H11C11.2833 3 11.521 3.09567 11.713 3.287C11.9043 3.479 12 3.71667 12 4C12 4.28333 11.9043 4.52067 11.713 4.712C11.521 4.904 11.2833 5 11 5H5V19H19V13C19 12.7167 19.096 12.479 19.288 12.287C19.4793 12.0957 19.7167 12 20 12C20.2833 12 20.5207 12.0957 20.712 12.287C20.904 12.479 21 12.7167 21 13V19C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H5ZM9 15C8.81667 14.8167 8.725 14.5833 8.725 14.3C8.725 14.0167 8.81667 13.7833 9 13.6L17.6 5H15C14.7167 5 14.4793 4.904 14.288 4.712C14.096 4.52067 14 4.28333 14 4C14 3.71667 14.096 3.479 14.288 3.287C14.4793 3.09567 14.7167 3 15 3H20C20.2833 3 20.5207 3.09567 20.712 3.287C20.904 3.479 21 3.71667 21 4V9C21 9.28333 20.904 9.52067 20.712 9.712C20.5207 9.904 20.2833 10 20 10C19.7167 10 19.4793 9.904 19.288 9.712C19.096 9.52067 19 9.28333 19 9V6.4L10.375 15.025C10.1917 15.2083 9.96667 15.3 9.7 15.3C9.43333 15.3 9.2 15.2 9 15Z"/></g><defs><clipPath id="clip0_1113_6855"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/eye-off.svg b/@stellar/design-system/src/assets/icons/eye-off.svg
new file mode 100644
index 00000000..44cf2e60
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/eye-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.7429 5.09232C11.1494 5.03223 11.5686 5 12.0004 5C17.1054 5 20.4553 9.50484 21.5807 11.2868C21.7169 11.5025 21.785 11.6103 21.8231 11.7767C21.8518 11.9016 21.8517 12.0987 21.8231 12.2236C21.7849 12.3899 21.7164 12.4985 21.5792 12.7156C21.2793 13.1901 20.8222 13.8571 20.2165 14.5805M6.72432 6.71504C4.56225 8.1817 3.09445 10.2194 2.42111 11.2853C2.28428 11.5019 2.21587 11.6102 2.17774 11.7765C2.1491 11.9014 2.14909 12.0984 2.17771 12.2234C2.21583 12.3897 2.28393 12.4975 2.42013 12.7132C3.54554 14.4952 6.89541 19 12.0004 19C14.0588 19 15.8319 18.2676 17.2888 17.2766M3.00042 3L21.0004 21M9.8791 9.87868C9.3362 10.4216 9.00042 11.1716 9.00042 12C9.00042 13.6569 10.3436 15 12.0004 15C12.8288 15 13.5788 14.6642 14.1217 14.1213" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/eye.svg b/@stellar/design-system/src/assets/icons/eye.svg
new file mode 100644
index 00000000..0805d2d1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/eye.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.42012 12.7132C2.28394 12.4975 2.21584 12.3897 2.17772 12.2234C2.14909 12.0985 2.14909 11.9015 2.17772 11.7766C2.21584 11.6103 2.28394 11.5025 2.42012 11.2868C3.54553 9.50484 6.8954 5 12.0004 5C17.1054 5 20.4553 9.50484 21.5807 11.2868C21.7169 11.5025 21.785 11.6103 21.8231 11.7766C21.8517 11.9015 21.8517 12.0985 21.8231 12.2234C21.785 12.3897 21.7169 12.4975 21.5807 12.7132C20.4553 14.4952 17.1054 19 12.0004 19C6.8954 19 3.54553 14.4952 2.42012 12.7132Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12.0004 15C13.6573 15 15.0004 13.6569 15.0004 12C15.0004 10.3431 13.6573 9 12.0004 9C10.3435 9 9.0004 10.3431 9.0004 12C9.0004 13.6569 10.3435 15 12.0004 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-content.svg b/@stellar/design-system/src/assets/icons/face-content.svg
new file mode 100644
index 00000000..6b6677a9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-content.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 14C8 14 9.5 16 12 16C14.5 16 16 14 16 14M17 9.24C16.605 9.725 16.065 10 15.5 10C14.935 10 14.41 9.725 14 9.24M10 9.24C9.605 9.725 9.065 10 8.5 10C7.935 10 7.41 9.725 7 9.24M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-frown.svg b/@stellar/design-system/src/assets/icons/face-frown.svg
new file mode 100644
index 00000000..2c71ccbc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-frown.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 16C16 16 14.5 14 12 14C9.5 14 8 16 8 16M15 9H15.01M9 9H9.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-happy.svg b/@stellar/design-system/src/assets/icons/face-happy.svg
new file mode 100644
index 00000000..ddfbff99
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-happy.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 9H15.01M9 9H9.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM12 17.5C14.5005 17.5 16.5 15.667 16.5 14H7.5C7.5 15.667 9.4995 17.5 12 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-id-square.svg b/@stellar/design-system/src/assets/icons/face-id-square.svg
new file mode 100644
index 00000000..fb00dd43
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-id-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 8V9.5M16.5 8V9.5M11 12.6001C11.8 12.6001 12.5 11.9001 12.5 11.1001V8M15.2002 15.2C13.4002 17 10.5002 17 8.7002 15.2M3 7.8L3 16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27977 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3L7.8 3C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-id.svg b/@stellar/design-system/src/assets/icons/face-id.svg
new file mode 100644
index 00000000..f7c4dfb3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-id.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V8M8 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V16M21 8V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H16M21 16V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H16M7.5 8V9.5M16.5 8V9.5M11 12.6001C11.8 12.6001 12.5 11.9001 12.5 11.1001V8M15.2002 15.2C13.4002 17 10.5002 17 8.7002 15.2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-neutral.svg b/@stellar/design-system/src/assets/icons/face-neutral.svg
new file mode 100644
index 00000000..04d1d464
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-neutral.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 15H16M15 9H15.01M9 9H9.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-sad.svg b/@stellar/design-system/src/assets/icons/face-sad.svg
new file mode 100644
index 00000000..5c671a26
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-sad.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 16C16 16 14.5 14 12 14C9.5 14 8 16 8 16M17 9.24C16.605 9.725 16.065 10 15.5 10C14.935 10 14.41 9.725 14 9.24M10 9.24C9.605 9.725 9.065 10 8.5 10C7.935 10 7.41 9.725 7 9.24M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-smile.svg b/@stellar/design-system/src/assets/icons/face-smile.svg
new file mode 100644
index 00000000..05135af9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-smile.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 14C8 14 9.5 16 12 16C14.5 16 16 14 16 14M15 9H15.01M9 9H9.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/face-wink.svg b/@stellar/design-system/src/assets/icons/face-wink.svg
new file mode 100644
index 00000000..22208faa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/face-wink.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 14C8 14 9.5 16 12 16C14.5 16 16 14 16 14M15 9H15.01M8 9H10M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM15.5 9C15.5 9.27614 15.2761 9.5 15 9.5C14.7239 9.5 14.5 9.27614 14.5 9C14.5 8.72386 14.7239 8.5 15 8.5C15.2761 8.5 15.5 8.72386 15.5 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fast-backward.svg b/@stellar/design-system/src/assets/icons/fast-backward.svg
new file mode 100644
index 00000000..58ec81f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fast-backward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.9997 16.437C21.9997 17.567 21.9997 18.1321 21.7714 18.4091C21.5731 18.6497 21.2739 18.7841 20.9623 18.7724C20.6036 18.759 20.1813 18.3836 19.3367 17.6329L14.345 13.1958C13.8797 12.7822 13.6471 12.5754 13.5614 12.3312C13.4861 12.1168 13.4861 11.8831 13.5614 11.6687C13.6471 11.4245 13.8797 11.2177 14.345 10.8041L19.3367 6.36706C20.1813 5.61631 20.6036 5.24093 20.9623 5.22751C21.2739 5.21584 21.5731 5.35021 21.7714 5.59086C21.9997 5.86787 21.9997 6.43288 21.9997 7.56291V16.437Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.9997 16.437C10.9997 17.567 10.9997 18.1321 10.7714 18.4091C10.5731 18.6497 10.2739 18.7841 9.96228 18.7724C9.60359 18.759 9.1813 18.3836 8.3367 17.6329L3.34502 13.1958C2.87973 12.7822 2.64709 12.5754 2.56135 12.3312C2.48606 12.1168 2.48606 11.8831 2.56135 11.6687C2.64709 11.4245 2.87973 11.2177 3.34502 10.8041L8.3367 6.36706C9.1813 5.61631 9.60359 5.24093 9.96228 5.22751C10.2739 5.21584 10.5731 5.35021 10.7714 5.59086C10.9997 5.86787 10.9997 6.43288 10.9997 7.56291V16.437Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fast-forward.svg b/@stellar/design-system/src/assets/icons/fast-forward.svg
new file mode 100644
index 00000000..ea4327ae
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fast-forward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 16.4371C13 17.5671 13 18.1321 13.2283 18.4091C13.4266 18.6498 13.7258 18.7841 14.0374 18.7725C14.3961 18.7591 14.8184 18.3837 15.663 17.6329L20.6547 13.1959C21.12 12.7823 21.3526 12.5755 21.4383 12.3313C21.5136 12.1169 21.5136 11.8832 21.4383 11.6687C21.3526 11.4246 21.12 11.2178 20.6547 10.8042L15.663 6.36712C14.8184 5.61637 14.3961 5.24099 14.0374 5.22757C13.7258 5.21591 13.4266 5.35027 13.2283 5.59092C13 5.86793 13 6.43295 13 7.56298V16.4371Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 16.4371C2 17.5671 2 18.1321 2.22827 18.4091C2.42657 18.6498 2.72579 18.7841 3.0374 18.7725C3.39609 18.7591 3.81839 18.3837 4.66298 17.6329L9.65466 13.1959C10.12 12.7823 10.3526 12.5755 10.4383 12.3313C10.5136 12.1169 10.5136 11.8832 10.4383 11.6687C10.3526 11.4246 10.12 11.2178 9.65466 10.8042L4.66298 6.36712C3.81839 5.61637 3.39609 5.24099 3.0374 5.22757C2.72579 5.21591 2.42657 5.35027 2.22827 5.59092C2 5.86793 2 6.43295 2 7.56298V16.4371Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/favorite.svg b/@stellar/design-system/src/assets/icons/favorite.svg
deleted file mode 100644
index 02a160ec..00000000
--- a/@stellar/design-system/src/assets/icons/favorite.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6852)"><path d="M10.65 19.8L8.925 18.225C7.15833 16.6083 5.56267 15.004 4.138 13.412C2.71267 11.8207 2 10.0667 2 8.14999C2 6.58333 2.525 5.27499 3.575 4.22499C4.625 3.17499 5.93333 2.64999 7.5 2.64999C8.38333 2.64999 9.21667 2.83733 10 3.21199C10.7833 3.58733 11.45 4.09999 12 4.74999C12.55 4.09999 13.2167 3.58733 14 3.21199C14.7833 2.83733 15.6167 2.64999 16.5 2.64999C18.0667 2.64999 19.375 3.17499 20.425 4.22499C21.475 5.27499 22 6.58333 22 8.14999C22 10.0667 21.2917 11.825 19.875 13.425C18.4583 15.025 16.85 16.6333 15.05 18.25L13.35 19.8C12.9667 20.15 12.5167 20.325 12 20.325C11.4833 20.325 11.0333 20.15 10.65 19.8Z"/></g><defs><clipPath id="clip0_1113_6852"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/feather.svg b/@stellar/design-system/src/assets/icons/feather.svg
new file mode 100644
index 00000000..a230e3fa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/feather.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8.00001L2 22M18 15H9M6.6 19H13.3373C13.5818 19 13.7041 19 13.8192 18.9724C13.9213 18.9479 14.0188 18.9075 14.1083 18.8526C14.2092 18.7908 14.2957 18.7043 14.4686 18.5314L19.5 13.5C19.739 13.261 19.8584 13.1416 19.9546 13.0358C22.0348 10.7473 22.0348 7.25269 19.9546 4.96424C19.8584 4.85845 19.739 4.73897 19.5 4.50001C19.261 4.26105 19.1416 4.14157 19.0358 4.04541C16.7473 1.96525 13.2527 1.96525 10.9642 4.04541C10.8584 4.14157 10.739 4.26105 10.5 4.50001L5.46863 9.53138C5.29568 9.70433 5.2092 9.79081 5.14736 9.89172C5.09253 9.9812 5.05213 10.0787 5.02763 10.1808C5 10.2959 5 10.4182 5 10.6628V17.4C5 17.9601 5 18.2401 5.10899 18.454C5.20487 18.6422 5.35785 18.7951 5.54601 18.891C5.75992 19 6.03995 19 6.6 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/figma.svg b/@stellar/design-system/src/assets/icons/figma.svg
new file mode 100644
index 00000000..31d5c08d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/figma.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 1.5H8.5C6.567 1.5 5 3.067 5 5C5 6.933 6.567 8.5 8.5 8.5M12 1.5V8.5M12 1.5H15.5C17.433 1.5 19 3.067 19 5C19 6.933 17.433 8.5 15.5 8.5M12 8.5H8.5M12 8.5V15.5M12 8.5H15.5M8.5 8.5C6.567 8.5 5 10.067 5 12C5 13.933 6.567 15.5 8.5 15.5M12 15.5H8.5M12 15.5V19C12 20.933 10.433 22.5 8.5 22.5C6.567 22.5 5 20.933 5 19C5 17.067 6.567 15.5 8.5 15.5M15.5 8.5C17.433 8.5 19 10.067 19 12C19 13.933 17.433 15.5 15.5 15.5C13.567 15.5 12 13.933 12 12C12 10.067 13.567 8.5 15.5 8.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-01.svg b/@stellar/design-system/src/assets/icons/file-01.svg
new file mode 100644
index 00000000..197895a5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-02.svg b/@stellar/design-system/src/assets/icons/file-02.svg
new file mode 100644
index 00000000..a3aaa471
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 11H8M10 15H8M16 7H8M20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-03.svg b/@stellar/design-system/src/assets/icons/file-03.svg
new file mode 100644
index 00000000..56694949
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 14V18M16 12V18M12 8V18M20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-04.svg b/@stellar/design-system/src/assets/icons/file-04.svg
new file mode 100644
index 00000000..1626b2de
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26946V6.4C14 6.96005 14 7.24008 14.109 7.45399C14.2049 7.64215 14.3578 7.79513 14.546 7.89101C14.7599 8 15.0399 8 15.6 8H19.7305M20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-05.svg b/@stellar/design-system/src/assets/icons/file-05.svg
new file mode 100644
index 00000000..fc3e58eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M14 17H8M16 13H8M20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-06.svg b/@stellar/design-system/src/assets/icons/file-06.svg
new file mode 100644
index 00000000..45cc18cc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M16 13H8M16 17H8M10 9H8M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-07.svg b/@stellar/design-system/src/assets/icons/file-07.svg
new file mode 100644
index 00000000..7ad9c8b5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M8 15V18M16 13V18M12 10.5V18M20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-attachment-01.svg b/@stellar/design-system/src/assets/icons/file-attachment-01.svg
new file mode 100644
index 00000000..1569fdc2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-attachment-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 10V4.5C6 3.67157 6.67157 3 7.5 3C8.32843 3 9 3.67157 9 4.5V10C9 11.6569 7.65685 13 6 13C4.34315 13 3 11.6569 3 10V6M12.5 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-attachment-02.svg b/@stellar/design-system/src/assets/icons/file-attachment-02.svg
new file mode 100644
index 00000000..ce246f27
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-attachment-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.5 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V16.5M16 13H11.5M16 9H12.5M16 17H8M6 10V4.5C6 3.67157 6.67157 3 7.5 3C8.32843 3 9 3.67157 9 4.5V10C9 11.6569 7.65685 13 6 13C4.34315 13 3 11.6569 3 10V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-attachment-03.svg b/@stellar/design-system/src/assets/icons/file-attachment-03.svg
new file mode 100644
index 00000000..adc886ab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-attachment-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 7V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12.5M18 18V12.5C18 11.6716 18.6716 11 19.5 11C20.3284 11 21 11.6716 21 12.5V18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-attachment-04.svg b/@stellar/design-system/src/assets/icons/file-attachment-04.svg
new file mode 100644
index 00000000..30932a7f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-attachment-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 7V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12.5M12.5 11H8M11.5 15H8M16 7H8M18 18V12.5C18 11.6716 18.6716 11 19.5 11C20.3284 11 21 11.6716 21 12.5V18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-attachment-05.svg b/@stellar/design-system/src/assets/icons/file-attachment-05.svg
new file mode 100644
index 00000000..fac1f8eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-attachment-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 14V8.5C12 7.67157 12.6716 7 13.5 7C14.3284 7 15 7.67157 15 8.5V14C15 15.6569 13.6569 17 12 17C10.3431 17 9 15.6569 9 14V10M8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-check-01.svg b/@stellar/design-system/src/assets/icons/file-check-01.svg
new file mode 100644
index 00000000..c01e1de9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-check-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11982 22 8.79993 22H12M14.5 19L16.5 21L21 16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-check-02.svg b/@stellar/design-system/src/assets/icons/file-check-02.svg
new file mode 100644
index 00000000..f0e0c6c1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-check-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M14 11H8M10 15H8M16 7H8M14.5 19L16.5 21L21 16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-check-03.svg b/@stellar/design-system/src/assets/icons/file-check-03.svg
new file mode 100644
index 00000000..d59566e9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-check-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9 16L11 18L15.5 13.5M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-code-01.svg b/@stellar/design-system/src/assets/icons/file-code-01.svg
new file mode 100644
index 00000000..6218d512
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-code-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M14 17.5L16.5 15L14 12.5M10 12.5L7.5 15L10 17.5M20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-code-02.svg b/@stellar/design-system/src/assets/icons/file-code-02.svg
new file mode 100644
index 00000000..ca3e506f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-code-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 18.5C5 18.9644 5 19.1966 5.02567 19.3916C5.2029 20.7378 6.26222 21.7971 7.60842 21.9743C7.80337 22 8.03558 22 8.5 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V9.98822C21 9.25445 21 8.88757 20.9171 8.5423C20.8436 8.2362 20.7224 7.94356 20.5579 7.67515C20.3724 7.3724 20.113 7.11296 19.5941 6.59411L16.4059 3.40589C15.887 2.88703 15.6276 2.6276 15.3249 2.44208C15.0564 2.27759 14.7638 2.15638 14.4577 2.08289C14.1124 2 13.7455 2 13.0118 2H8.5C8.03558 2 7.80337 2 7.60842 2.02567C6.26222 2.2029 5.2029 3.26222 5.02567 4.60842C5 4.80337 5 5.03558 5 5.5M9 14.5L11.5 12L9 9.5M5 9.5L2.5 12L5 14.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-download-01.svg b/@stellar/design-system/src/assets/icons/file-download-01.svg
new file mode 100644
index 00000000..2adf1d9c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-download-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.1198 22 8.79986 22H12.5M15 19L18 22M18 22L21 19M18 22V16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-download-02.svg b/@stellar/design-system/src/assets/icons/file-download-02.svg
new file mode 100644
index 00000000..1290ff07
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-download-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.1198 22 8.79986 22H12.5M14 11H8M10 15H8M16 7H8M15 19L18 22M18 22L21 19M18 22V16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-download-03.svg b/@stellar/design-system/src/assets/icons/file-download-03.svg
new file mode 100644
index 00000000..dbcc96b1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-download-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9 15L12 18M12 18L15 15M12 18L12 12M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-heart-01.svg b/@stellar/design-system/src/assets/icons/file-heart-01.svg
new file mode 100644
index 00000000..057fb9de
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-heart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M16.9973 14.8306C16.1975 13.9216 14.8639 13.6771 13.8619 14.5094C12.8599 15.3418 12.7188 16.7335 13.5057 17.7179C14.2926 18.7024 16.9973 21 16.9973 21C16.9973 21 19.7019 18.7024 20.4888 17.7179C21.2757 16.7335 21.1519 15.3331 20.1326 14.5094C19.1134 13.6858 17.797 13.9216 16.9973 14.8306Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-heart-02.svg b/@stellar/design-system/src/assets/icons/file-heart-02.svg
new file mode 100644
index 00000000..ddc4a2b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-heart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M12.5 11H8M9 15H8M16 7H8M16.9973 14.8306C16.1975 13.9216 14.8639 13.6771 13.8619 14.5094C12.8599 15.3418 12.7188 16.7335 13.5057 17.7179C14.2926 18.7024 16.9973 21 16.9973 21C16.9973 21 19.7019 18.7024 20.4888 17.7179C21.2757 16.7335 21.1519 15.3331 20.1326 14.5094C19.1134 13.6858 17.797 13.9216 16.9973 14.8306Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-heart-03.svg b/@stellar/design-system/src/assets/icons/file-heart-03.svg
new file mode 100644
index 00000000..a9a5209f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-heart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2ZM11.9973 11.8306C11.1975 10.9216 9.8639 10.6771 8.86188 11.5094C7.85986 12.3418 7.71879 13.7335 8.50568 14.7179C9.29257 15.7024 11.9973 18 11.9973 18C11.9973 18 14.7019 15.7024 15.4888 14.7179C16.2757 13.7335 16.1519 12.3331 15.1326 11.5094C14.1134 10.6858 12.797 10.9216 11.9973 11.8306Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-lock-01.svg b/@stellar/design-system/src/assets/icons/file-lock-01.svg
new file mode 100644
index 00000000..77ee2348
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-lock-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H10.5M19.25 17V15.25C19.25 14.2835 18.4665 13.5 17.5 13.5C16.5335 13.5 15.75 14.2835 15.75 15.25V17M15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H15.6C15.0399 17 14.7599 17 14.546 17.109C14.3578 17.2049 14.2049 17.3578 14.109 17.546C14 17.7599 14 18.0399 14 18.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-lock-02.svg b/@stellar/design-system/src/assets/icons/file-lock-02.svg
new file mode 100644
index 00000000..bfa73228
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-lock-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H10.5M13 11H8M11 15H8M16 7H8M19.25 17V15.25C19.25 14.2835 18.4665 13.5 17.5 13.5C16.5335 13.5 15.75 14.2835 15.75 15.25V17M15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H15.6C15.0399 17 14.7599 17 14.546 17.109C14.3578 17.2049 14.2049 17.3578 14.109 17.546C14 17.7599 14 18.0399 14 18.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-lock-03.svg b/@stellar/design-system/src/assets/icons/file-lock-03.svg
new file mode 100644
index 00000000..b3ce0091
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-lock-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8M14 2L20 8M14 2V8H20M13.75 14V12.25C13.75 11.2835 12.9665 10.5 12 10.5C11.0335 10.5 10.25 11.2835 10.25 12.25V14M10.1 18H13.9C14.4601 18 14.7401 18 14.954 17.891C15.1422 17.7951 15.2951 17.6422 15.391 17.454C15.5 17.2401 15.5 16.9601 15.5 16.4V15.6C15.5 15.0399 15.5 14.7599 15.391 14.546C15.2951 14.3578 15.1422 14.2049 14.954 14.109C14.7401 14 14.4601 14 13.9 14H10.1C9.53995 14 9.25992 14 9.04601 14.109C8.85785 14.2049 8.70487 14.3578 8.60899 14.546C8.5 14.7599 8.5 15.0399 8.5 15.6V16.4C8.5 16.9601 8.5 17.2401 8.60899 17.454C8.70487 17.6422 8.85785 17.7951 9.04601 17.891C9.25992 18 9.53995 18 10.1 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-minus-01.svg b/@stellar/design-system/src/assets/icons/file-minus-01.svg
new file mode 100644
index 00000000..09677182
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-minus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 11.9412V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M15 17H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-minus-02.svg b/@stellar/design-system/src/assets/icons/file-minus-02.svg
new file mode 100644
index 00000000..886a7fbe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-minus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 11.9412V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M14 11H8M10 15H8M16 7H8M15 17H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-minus-03.svg b/@stellar/design-system/src/assets/icons/file-minus-03.svg
new file mode 100644
index 00000000..ea024886
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-minus-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9 15H15M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-plus-01.svg b/@stellar/design-system/src/assets/icons/file-plus-01.svg
new file mode 100644
index 00000000..fe1acbbb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-plus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M18 21V15M15 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-plus-02.svg b/@stellar/design-system/src/assets/icons/file-plus-02.svg
new file mode 100644
index 00000000..23ac270f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-plus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M14 11H8M10 15H8M16 7H8M18 21V15M15 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-plus-03.svg b/@stellar/design-system/src/assets/icons/file-plus-03.svg
new file mode 100644
index 00000000..bdc28ea7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-plus-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M12 18V12M9 15H15M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-question-01.svg b/@stellar/design-system/src/assets/icons/file-question-01.svg
new file mode 100644
index 00000000..d6637c9d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-question-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 9.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M16.5 15.0022C16.6762 14.5014 17.024 14.079 17.4817 13.81C17.9395 13.5409 18.4777 13.4426 19.001 13.5324C19.5243 13.6221 19.999 13.8942 20.3409 14.3004C20.6829 14.7066 20.87 15.2207 20.8692 15.7517C20.8692 17.2506 18.6209 18 18.6209 18M18.65 21H18.66" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-question-02.svg b/@stellar/design-system/src/assets/icons/file-question-02.svg
new file mode 100644
index 00000000..4dc7898e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-question-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 9.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M14 11H8M10 15H8M16 7H8M16.5 15.0022C16.6762 14.5014 17.024 14.079 17.4817 13.81C17.9395 13.5409 18.4777 13.4426 19.001 13.5324C19.5243 13.6221 19.999 13.8942 20.3409 14.3004C20.6829 14.7066 20.87 15.2207 20.8692 15.7517C20.8692 17.2506 18.6209 18 18.6209 18M18.6499 21H18.6599" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-question-03.svg b/@stellar/design-system/src/assets/icons/file-question-03.svg
new file mode 100644
index 00000000..41471056
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-question-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9.84998 12.0022C10.0262 11.5014 10.3739 11.079 10.8317 10.81C11.2895 10.5409 11.8277 10.4426 12.351 10.5324C12.8743 10.6221 13.349 10.8942 13.6909 11.3004C14.0329 11.7066 14.22 12.2207 14.2192 12.7517C14.2192 14.2506 11.9709 15 11.9709 15M12 18H12.01M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-search-01.svg b/@stellar/design-system/src/assets/icons/file-search-01.svg
new file mode 100644
index 00000000..89512153
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-search-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H11.5M22 22L20.5 20.5M21.5 18C21.5 19.933 19.933 21.5 18 21.5C16.067 21.5 14.5 19.933 14.5 18C14.5 16.067 16.067 14.5 18 14.5C19.933 14.5 21.5 16.067 21.5 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-search-02.svg b/@stellar/design-system/src/assets/icons/file-search-02.svg
new file mode 100644
index 00000000..54ce5a27
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-search-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 11H8M10 15H8M16 7H8M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H11.5M22 22L20.5 20.5M21.5 18C21.5 19.933 19.933 21.5 18 21.5C16.067 21.5 14.5 19.933 14.5 18C14.5 16.067 16.067 14.5 18 14.5C19.933 14.5 21.5 16.067 21.5 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-search-03.svg b/@stellar/design-system/src/assets/icons/file-search-03.svg
new file mode 100644
index 00000000..91cc2c5f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-search-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M16 18.5L14.5 17M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2ZM15.5 14.5C15.5 16.433 13.933 18 12 18C10.067 18 8.5 16.433 8.5 14.5C8.5 12.567 10.067 11 12 11C13.933 11 15.5 12.567 15.5 14.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-shield-01.svg b/@stellar/design-system/src/assets/icons/file-shield-01.svg
new file mode 100644
index 00000000..43604188
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-shield-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12.5M18 21C18 21 21 19.5701 21 17.4252V14.9229L18.8124 14.1412C18.2868 13.9529 17.712 13.9529 17.1864 14.1412L15 14.9229V17.4252C15 19.5701 18 21 18 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-shield-02.svg b/@stellar/design-system/src/assets/icons/file-shield-02.svg
new file mode 100644
index 00000000..5060acbb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-shield-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 11H8M10 15H8M16 7H8M20 10V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12.5M18 21C18 21 21 19.5701 21 17.4252V14.9229L18.8124 14.1412C18.2868 13.9529 17.712 13.9529 17.1864 14.1412L15 14.9229V17.4252C15 19.5701 18 21 18 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-shield-03.svg b/@stellar/design-system/src/assets/icons/file-shield-03.svg
new file mode 100644
index 00000000..e3d47832
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-shield-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8M14 2L20 8M14 2V8H20M12 18C12 18 15 16.5701 15 14.4252V11.9229L12.8124 11.1412C12.2868 10.9529 11.712 10.9529 11.1864 11.1412L9 11.9229V14.4252C9 16.5701 12 18 12 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-x-01.svg b/@stellar/design-system/src/assets/icons/file-x-01.svg
new file mode 100644
index 00000000..adc7dcf8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-x-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M16 16L21 21M21 16L16 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-x-02.svg b/@stellar/design-system/src/assets/icons/file-x-02.svg
new file mode 100644
index 00000000..72ef48a5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-x-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 11H8M10 15H8M16 7H8M20 12V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M16 16L21 21M21 16L16 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/file-x-03.svg b/@stellar/design-system/src/assets/icons/file-x-03.svg
new file mode 100644
index 00000000..debbe17c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/file-x-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9.5 12L14.5 17M14.5 12L9.5 17M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/film-01.svg b/@stellar/design-system/src/assets/icons/film-01.svg
new file mode 100644
index 00000000..c10c0c7e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/film-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12H22M2 7H7M17 7H22M2 17H7M17 17H22M7 22V2M17 22V2M6.8 22H17.2C18.8802 22 19.7202 22 20.362 21.673C20.9265 21.3854 21.3854 20.9265 21.673 20.362C22 19.7202 22 18.8802 22 17.2V6.8C22 5.11984 22 4.27976 21.673 3.63803C21.3854 3.07354 20.9265 2.6146 20.362 2.32698C19.7202 2 18.8802 2 17.2 2H6.8C5.11984 2 4.27976 2 3.63803 2.32698C3.07354 2.6146 2.6146 3.07354 2.32698 3.63803C2 4.27976 2 5.11984 2 6.8V17.2C2 18.8802 2 19.7202 2.32698 20.362C2.6146 20.9265 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/film-02.svg b/@stellar/design-system/src/assets/icons/film-02.svg
new file mode 100644
index 00000000..10938141
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/film-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22V2M7 22V17M7 7V2M17 22V17M17 7V2M2 7H22M2 17H22M22 17.2V6.8C22 5.11984 22 4.27976 21.673 3.63803C21.3854 3.07354 20.9265 2.6146 20.362 2.32698C19.7202 2 18.8802 2 17.2 2L6.8 2C5.11984 2 4.27976 2 3.63803 2.32698C3.07354 2.6146 2.6146 3.07354 2.32698 3.63803C2 4.27976 2 5.11984 2 6.8L2 17.2C2 18.8802 2 19.7202 2.32698 20.362C2.6146 20.9265 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22H17.2C18.8802 22 19.7202 22 20.362 21.673C20.9265 21.3854 21.3854 20.9265 21.673 20.362C22 19.7202 22 18.8802 22 17.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/film-03.svg b/@stellar/design-system/src/assets/icons/film-03.svg
new file mode 100644
index 00000000..131a4564
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/film-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 2V6M7 16V20M17 4V8M17 18V22M2 6H12M2 16H12M12 8H22M12 18H22M12 20V3.6C12 3.03995 12 2.75992 11.891 2.54601C11.7951 2.35785 11.6422 2.20487 11.454 2.10899C11.2401 2 10.9601 2 10.4 2H6.8C5.11984 2 4.27976 2 3.63803 2.32698C3.07354 2.6146 2.6146 3.07354 2.32698 3.63803C2 4.27976 2 5.11984 2 6.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20H12ZM12 4H17.2C18.8802 4 19.7202 4 20.362 4.32698C20.9265 4.6146 21.3854 5.07354 21.673 5.63803C22 6.27976 22 7.11984 22 8.8V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H13.6C13.0399 22 12.7599 22 12.546 21.891C12.3578 21.7951 12.2049 21.6422 12.109 21.454C12 21.2401 12 20.9601 12 20.4V4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/filter-funnel-01.svg b/@stellar/design-system/src/assets/icons/filter-funnel-01.svg
new file mode 100644
index 00000000..186b4ebe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/filter-funnel-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 4.6C2 4.03995 2 3.75992 2.10899 3.54601C2.20487 3.35785 2.35785 3.20487 2.54601 3.10899C2.75992 3 3.03995 3 3.6 3H20.4C20.9601 3 21.2401 3 21.454 3.10899C21.6422 3.20487 21.7951 3.35785 21.891 3.54601C22 3.75992 22 4.03995 22 4.6V5.26939C22 5.53819 22 5.67259 21.9672 5.79756C21.938 5.90831 21.8901 6.01323 21.8255 6.10776C21.7526 6.21443 21.651 6.30245 21.4479 6.4785L15.0521 12.0215C14.849 12.1975 14.7474 12.2856 14.6745 12.3922C14.6099 12.4868 14.562 12.5917 14.5328 12.7024C14.5 12.8274 14.5 12.9618 14.5 13.2306V18.4584C14.5 18.6539 14.5 18.7517 14.4685 18.8363C14.4406 18.911 14.3953 18.9779 14.3363 19.0315C14.2695 19.0922 14.1787 19.1285 13.9971 19.2012L10.5971 20.5612C10.2296 20.7082 10.0458 20.7817 9.89827 20.751C9.76927 20.7242 9.65605 20.6476 9.58325 20.5377C9.5 20.4122 9.5 20.2142 9.5 19.8184V13.2306C9.5 12.9618 9.5 12.8274 9.46715 12.7024C9.43805 12.5917 9.39014 12.4868 9.32551 12.3922C9.25258 12.2856 9.15102 12.1975 8.94789 12.0215L2.55211 6.4785C2.34898 6.30245 2.24742 6.21443 2.17449 6.10776C2.10986 6.01323 2.06195 5.90831 2.03285 5.79756C2 5.67259 2 5.53819 2 5.26939V4.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/filter-funnel-02.svg b/@stellar/design-system/src/assets/icons/filter-funnel-02.svg
new file mode 100644
index 00000000..1cc724d1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/filter-funnel-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.38589 5.66687C2.62955 4.82155 2.25138 4.39889 2.23712 4.03968C2.22473 3.72764 2.35882 3.42772 2.59963 3.22889C2.87684 3 3.44399 3 4.57828 3H19.4212C20.5555 3 21.1227 3 21.3999 3.22889C21.6407 3.42772 21.7748 3.72764 21.7624 4.03968C21.7481 4.39889 21.3699 4.82155 20.6136 5.66687L14.9074 12.0444C14.7566 12.2129 14.6812 12.2972 14.6275 12.3931C14.5798 12.4781 14.5448 12.5697 14.5236 12.6648C14.4997 12.7721 14.4997 12.8852 14.4997 13.1113V18.4584C14.4997 18.6539 14.4997 18.7517 14.4682 18.8363C14.4403 18.911 14.395 18.9779 14.336 19.0315C14.2692 19.0922 14.1784 19.1285 13.9969 19.2012L10.5969 20.5612C10.2293 20.7082 10.0455 20.7817 9.89802 20.751C9.76901 20.7242 9.6558 20.6476 9.583 20.5377C9.49975 20.4122 9.49975 20.2142 9.49975 19.8184V13.1113C9.49975 12.8852 9.49975 12.7721 9.47587 12.6648C9.45469 12.5697 9.41971 12.4781 9.37204 12.3931C9.31828 12.2972 9.2429 12.2129 9.09213 12.0444L3.38589 5.66687Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/filter-lines.svg b/@stellar/design-system/src/assets/icons/filter-lines.svg
new file mode 100644
index 00000000..dbc0b2c2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/filter-lines.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 12H18M3 6H21M9 18H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/filter.svg b/@stellar/design-system/src/assets/icons/filter.svg
deleted file mode 100644
index 46ce83f7..00000000
--- a/@stellar/design-system/src/assets/icons/filter.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6849)"><path d="M11 18C10.7167 18 10.4793 17.904 10.288 17.712C10.096 17.5207 10 17.2833 10 17C10 16.7167 10.096 16.4793 10.288 16.288C10.4793 16.096 10.7167 16 11 16H13C13.2833 16 13.521 16.096 13.713 16.288C13.9043 16.4793 14 16.7167 14 17C14 17.2833 13.9043 17.5207 13.713 17.712C13.521 17.904 13.2833 18 13 18H11ZM4 8C3.71667 8 3.47933 7.90433 3.288 7.713C3.096 7.521 3 7.28333 3 7C3 6.71667 3.096 6.479 3.288 6.287C3.47933 6.09567 3.71667 6 4 6H20C20.2833 6 20.5207 6.09567 20.712 6.287C20.904 6.479 21 6.71667 21 7C21 7.28333 20.904 7.521 20.712 7.713C20.5207 7.90433 20.2833 8 20 8H4ZM7 13C6.71667 13 6.479 12.904 6.287 12.712C6.09567 12.5207 6 12.2833 6 12C6 11.7167 6.09567 11.479 6.287 11.287C6.479 11.0957 6.71667 11 7 11H17C17.2833 11 17.5207 11.0957 17.712 11.287C17.904 11.479 18 11.7167 18 12C18 12.2833 17.904 12.5207 17.712 12.712C17.5207 12.904 17.2833 13 17 13H7Z"/></g><defs><clipPath id="clip0_1113_6849"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fingerprint-01.svg b/@stellar/design-system/src/assets/icons/fingerprint-01.svg
new file mode 100644
index 00000000..6c3c39c8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fingerprint-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.91822 3.38565C8.40742 2.50524 10.1447 2 12 2C17.5228 2 22 6.47715 22 12C22 12.0331 21.9998 12.0662 21.9995 12.0993M3.38114 6.92585C2.50352 8.41335 2 10.1479 2 12C2 16.6596 5.18693 20.5748 9.5 21.685M20.7076 16.9206C19.3872 19.2522 17.1574 21.001 14.5 21.685M14.0893 6.37378C13.4387 6.13207 12.7348 6 12 6C8.68629 6 6 8.68629 6 12C6 12.7387 6.13351 13.4463 6.37772 14.0999M17.6251 9.90767C17.8675 10.5591 18 11.2641 18 12C18 15.3137 15.3137 18 12 18C11.2701 18 10.5707 17.8697 9.92373 17.631M12 10V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fingerprint-02.svg b/@stellar/design-system/src/assets/icons/fingerprint-02.svg
new file mode 100644
index 00000000..6244b3ed
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fingerprint-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 10V14M7.44712 3.42103C8.73941 2.52503 10.3084 2 12 2C16.4183 2 20 5.58172 20 10V11.2367M4.41632 7.44607C4.14633 8.24809 4 9.10696 4 10V14C4 17.6349 6.42416 20.7035 9.74396 21.6775M19.6588 16.3187C18.9294 18.7314 17.0911 20.6626 14.7367 21.5196M14.325 6.14635C13.6464 5.7361 12.8508 5.5 12 5.5C9.51472 5.5 7.5 7.51472 7.5 10V12.95M16.5 11.04V14C16.5 16.4853 14.4853 18.5 12 18.5C11.1514 18.5 10.3576 18.2651 9.68014 17.8567" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fingerprint-03.svg b/@stellar/design-system/src/assets/icons/fingerprint-03.svg
new file mode 100644
index 00000000..82e8e438
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fingerprint-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.09996 21.221C6.71009 19.2375 5.89246 16.8243 5.89246 14.2186C5.89246 10.8443 8.62638 8.10931 11.9987 8.10931C15.3711 8.10931 18.105 10.8443 18.105 14.2186" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.10008 21.221C6.71021 19.2375 5.89258 16.8243 5.89258 14.2187C5.89258 10.8443 8.6265 8.10938 11.9989 8.10938C15.3712 8.10938 18.1051 10.8443 18.1051 14.2187" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.436 20.3117C18.326 20.3178 18.2181 20.328 18.1071 20.328C14.7348 20.328 12.0009 17.5931 12.0009 14.2187" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.4361 20.3118C18.3262 20.3179 18.2182 20.3281 18.1073 20.3281C14.7349 20.3281 12.001 17.5931 12.001 14.2188" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.2694 21.9999C10.675 20.382 8.94705 17.5024 8.94705 14.2187C8.94705 12.5315 10.3145 11.164 12.0007 11.164C13.6869 11.164 15.0543 12.5315 15.0543 14.2187C15.0543 15.9059 16.4218 17.2733 18.108 17.2733C19.7942 17.2733 21.1616 15.9059 21.1616 14.2187C21.1616 9.1571 17.0602 5.05469 12.0017 5.05469C6.94319 5.05469 2.8418 9.1571 2.8418 14.2187C2.8418 15.3469 2.96806 16.4455 3.20021 17.5045" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.2694 21.9999C10.675 20.382 8.94705 17.5024 8.94705 14.2187C8.94705 12.5315 10.3145 11.164 12.0007 11.164C13.6869 11.164 15.0543 12.5315 15.0543 14.2187C15.0543 15.9059 16.4218 17.2733 18.108 17.2733C19.7942 17.2733 21.1616 15.9059 21.1616 14.2187C21.1616 9.1571 17.0602 5.05469 12.0017 5.05469C6.94319 5.05469 2.8418 9.1571 2.8418 14.2187C2.8418 15.3469 2.96806 16.4455 3.20021 17.5045" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.5257 5.86313C18.4435 3.4978 15.399 2 12.0002 2C8.60136 2 5.55687 3.4978 3.47461 5.86313" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.5257 5.86313C18.4435 3.4978 15.399 2 12.0002 2C8.60136 2 5.55687 3.4978 3.47461 5.86313" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/fingerprint-04.svg b/@stellar/design-system/src/assets/icons/fingerprint-04.svg
new file mode 100644
index 00000000..2a85a02e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/fingerprint-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.80688 18.5304C5.82459 18.5005 5.84273 18.4709 5.8613 18.4413C7.2158 16.2881 7.99991 13.7418 7.99991 11C7.99991 8.79086 9.79077 7 11.9999 7C14.209 7 15.9999 8.79086 15.9999 11C15.9999 12.017 15.9307 13.0186 15.7966 14M13.6792 20.8436C14.2909 19.6226 14.7924 18.3369 15.1707 17M19.0097 18.132C19.6547 15.8657 20 13.4732 20 11C20 6.58172 16.4183 3 12 3C10.5429 3 9.17669 3.38958 8 4.07026M3 15.3641C3.64066 14.0454 4 12.5646 4 11C4 9.54285 4.38958 8.17669 5.07026 7M11.9999 11C11.9999 14.5172 10.9911 17.7988 9.24707 20.5712" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-01.svg b/@stellar/design-system/src/assets/icons/flag-01.svg
new file mode 100644
index 00000000..377fa134
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 15C4 15 5 14 8 14C11 14 13 16 16 16C19 16 20 15 20 15V3C20 3 19 4 16 4C13 4 11 2 8 2C5 2 4 3 4 3L4 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-02.svg b/@stellar/design-system/src/assets/icons/flag-02.svg
new file mode 100644
index 00000000..d647df00
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 15C4 15 5 14 8 14C11 14 13 16 16 16C19 16 20 15 20 15V4C20 4 19 5 16 5C13 5 11 3 8 3C5 3 4 4 4 4M4 22L4 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-03.svg b/@stellar/design-system/src/assets/icons/flag-03.svg
new file mode 100644
index 00000000..4c421115
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 13H19.587C20.0495 13 20.2808 13 20.4128 12.903C20.528 12.8185 20.6015 12.6887 20.6147 12.5464C20.63 12.3833 20.511 12.185 20.273 11.7884L18.247 8.4116C18.1572 8.26195 18.1123 8.18712 18.0947 8.10724C18.0792 8.03659 18.0792 7.96341 18.0947 7.89276C18.1123 7.81288 18.1572 7.73805 18.247 7.5884L20.273 4.2116C20.511 3.81503 20.63 3.61674 20.6147 3.45359C20.6015 3.31133 20.528 3.18154 20.4128 3.09698C20.2808 3 20.0495 3 19.587 3H4L4 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-04.svg b/@stellar/design-system/src/assets/icons/flag-04.svg
new file mode 100644
index 00000000..cded3b64
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.5 6.5H19.7056C20.1342 6.5 20.3485 6.5 20.4776 6.59027C20.5903 6.6691 20.6655 6.79086 20.6856 6.92692C20.7086 7.08273 20.6128 7.27442 20.4211 7.65777L19.1688 10.1623C19.1068 10.2864 19.0758 10.3485 19.0626 10.4137C19.051 10.4714 19.0496 10.5308 19.0586 10.5891C19.0688 10.6548 19.097 10.7182 19.1533 10.845L20.5 13.8751C20.6667 14.25 20.75 14.4374 20.7227 14.5888C20.6988 14.721 20.6227 14.8381 20.5116 14.9136C20.3844 15 20.1793 15 19.769 15H12.1C11.5399 15 11.2599 15 11.046 14.891C10.8578 14.7951 10.7049 14.6422 10.609 14.454C10.5 14.2401 10.5 13.9601 10.5 13.4V11M3 21L3 3.5M3 11H11.9C12.4601 11 12.7401 11 12.954 10.891C13.1422 10.7951 13.2951 10.6422 13.391 10.454C13.5 10.2401 13.5 9.96005 13.5 9.4V4.1C13.5 3.53995 13.5 3.25992 13.391 3.04601C13.2951 2.85785 13.1422 2.70487 12.954 2.60899C12.7401 2.5 12.4601 2.5 11.9 2.5L4.6 2.5C4.03995 2.5 3.75992 2.5 3.54601 2.60899C3.35785 2.70487 3.20487 2.85785 3.10899 3.04601C3 3.25992 3 3.53995 3 4.1V11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-05.svg b/@stellar/design-system/src/assets/icons/flag-05.svg
new file mode 100644
index 00000000..e949bbc6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.1112 6.72217H20.1404C20.5877 6.72217 20.8114 6.72217 20.9422 6.81621C21.0563 6.89826 21.1306 7.02456 21.1469 7.16416C21.1656 7.32417 21.057 7.51967 20.8398 7.91068L19.3702 10.5559C19.2914 10.6977 19.252 10.7686 19.2366 10.8437C19.2229 10.9101 19.2229 10.9787 19.2366 11.0451C19.252 11.1202 19.2914 11.1911 19.3702 11.3329L20.8398 13.9781C21.057 14.3691 21.1656 14.5646 21.1469 14.7246C21.1306 14.8642 21.0563 14.9905 20.9422 15.0726C20.8114 15.1666 20.5877 15.1666 20.1404 15.1666H12.5445C11.9844 15.1666 11.7044 15.1666 11.4905 15.0576C11.3023 14.9617 11.1494 14.8088 11.0535 14.6206C10.9445 14.4067 10.9445 14.1267 10.9445 13.5666V10.9444M7.25006 21.5002L3.02784 4.61133M4.61121 10.9444H12.5112C13.0712 10.9444 13.3512 10.9444 13.5652 10.8355C13.7533 10.7396 13.9063 10.5866 14.0022 10.3984C14.1112 10.1845 14.1112 9.9045 14.1112 9.34445V4.1C14.1112 3.53995 14.1112 3.25992 14.0022 3.04601C13.9063 2.85785 13.7533 2.70487 13.5652 2.60899C13.3512 2.5 13.0712 2.5 12.5112 2.5H4.54928C3.85076 2.5 3.5015 2.5 3.26262 2.64474C3.05325 2.77159 2.89768 2.97084 2.8254 3.20472C2.74292 3.47158 2.82764 3.81041 2.99706 4.48807L4.61121 10.9444Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag-06.svg b/@stellar/design-system/src/assets/icons/flag-06.svg
new file mode 100644
index 00000000..248af66b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flag-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 21L4 4M4 13H11.4C11.9601 13 12.2401 13 12.454 12.891C12.6422 12.7951 12.7951 12.6422 12.891 12.454C13 12.2401 13 11.9601 13 11.4V4.6C13 4.03995 13 3.75992 12.891 3.54601C12.7951 3.35785 12.6422 3.20487 12.454 3.10899C12.2401 3 11.9601 3 11.4 3H5.6C5.03995 3 4.75992 3 4.54601 3.10899C4.35785 3.20487 4.20487 3.35785 4.10899 3.54601C4 3.75992 4 4.03995 4 4.6V13ZM13 5H19.4C19.9601 5 20.2401 5 20.454 5.10899C20.6422 5.20487 20.7951 5.35785 20.891 5.54601C21 5.75992 21 6.03995 21 6.6V13.4C21 13.9601 21 14.2401 20.891 14.454C20.7951 14.6422 20.6422 14.7951 20.454 14.891C20.2401 15 19.9601 15 19.4 15H14.6C14.0399 15 13.7599 15 13.546 14.891C13.3578 14.7951 13.2049 14.6422 13.109 14.454C13 14.2401 13 13.9601 13 13.4V5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flag.svg b/@stellar/design-system/src/assets/icons/flag.svg
deleted file mode 100644
index c0507e1b..00000000
--- a/@stellar/design-system/src/assets/icons/flag.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6846)"><path d="M6 21C5.71667 21 5.479 20.904 5.287 20.712C5.09567 20.5207 5 20.2833 5 20V5C5 4.71667 5.09567 4.479 5.287 4.287C5.479 4.09567 5.71667 4 6 4H13.175C13.4083 4 13.6167 4.075 13.8 4.225C13.9833 4.375 14.1 4.56667 14.15 4.8L14.4 6H19C19.2833 6 19.5207 6.09567 19.712 6.287C19.904 6.479 20 6.71667 20 7V15C20 15.2833 19.904 15.5207 19.712 15.712C19.5207 15.904 19.2833 16 19 16H13.825C13.5917 16 13.3833 15.925 13.2 15.775C13.0167 15.625 12.9 15.4333 12.85 15.2L12.6 14H7V20C7 20.2833 6.90433 20.5207 6.713 20.712C6.521 20.904 6.28333 21 6 21Z"/></g><defs><clipPath id="clip0_1113_6846"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flash-off.svg b/@stellar/design-system/src/assets/icons/flash-off.svg
new file mode 100644
index 00000000..a981bfbb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flash-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8L4.09346 12.6879C3.74465 13.1064 3.57024 13.3157 3.56758 13.4925C3.56526 13.6461 3.63373 13.7923 3.75326 13.8889C3.89075 14 4.16318 14 4.70803 14H12L11 22L16 16M15.65 10H19.292C19.8368 10 20.1093 10 20.2467 10.1111C20.3663 10.2077 20.4347 10.3539 20.4324 10.5075C20.4298 10.6843 20.2554 10.8936 19.9065 11.3121L18.5502 12.9397M10.5728 4.91265L13 2L12.4002 6.79771M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flash.svg b/@stellar/design-system/src/assets/icons/flash.svg
new file mode 100644
index 00000000..70a60906
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flash.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 2L4.09347 12.6879C3.74466 13.1064 3.57026 13.3157 3.56759 13.4925C3.56528 13.6461 3.63375 13.7923 3.75327 13.8889C3.89076 14 4.16319 14 4.70805 14H12L11 22L19.9066 11.3121C20.2554 10.8936 20.4298 10.6843 20.4324 10.5075C20.4348 10.3539 20.3663 10.2077 20.2468 10.1111C20.1093 10 19.8368 10 19.292 10H12L13 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flex-align-bottom.svg b/@stellar/design-system/src/assets/icons/flex-align-bottom.svg
new file mode 100644
index 00000000..5219b572
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flex-align-bottom.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 17.6L6.5 17.6M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flex-align-left.svg b/@stellar/design-system/src/assets/icons/flex-align-left.svg
new file mode 100644
index 00000000..7f922cc5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flex-align-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 17.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flex-align-right.svg b/@stellar/design-system/src/assets/icons/flex-align-right.svg
new file mode 100644
index 00000000..08306fa1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flex-align-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 17.5L17.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flex-align-top.svg b/@stellar/design-system/src/assets/icons/flex-align-top.svg
new file mode 100644
index 00000000..a58a787d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flex-align-top.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 6.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flip-backward.svg b/@stellar/design-system/src/assets/icons/flip-backward.svg
new file mode 100644
index 00000000..ab601dee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flip-backward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/flip-forward.svg b/@stellar/design-system/src/assets/icons/flip-forward.svg
new file mode 100644
index 00000000..7d213612
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/flip-forward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-check.svg b/@stellar/design-system/src/assets/icons/folder-check.svg
new file mode 100644
index 00000000..c57e1a86
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9 14L11 16L15.5 11.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-closed.svg b/@stellar/design-system/src/assets/icons/folder-closed.svg
new file mode 100644
index 00000000..25acf2ce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-closed.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9.5 11.5L14.5 16.5M16 14C16 16.2091 14.2091 18 12 18C9.79086 18 8 16.2091 8 14C8 11.7909 9.79086 10 12 10C14.2091 10 16 11.7909 16 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-code.svg b/@stellar/design-system/src/assets/icons/folder-code.svg
new file mode 100644
index 00000000..108f0020
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-code.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM14 16.5L16.5 14L14 11.5M10 11.5L7.5 14L10 16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-copy.svg b/@stellar/design-system/src/assets/icons/folder-copy.svg
deleted file mode 100644
index d810ae10..00000000
--- a/@stellar/design-system/src/assets/icons/folder-copy.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6843)"><path d="M3 21C2.45 21 1.97933 20.8043 1.588 20.413C1.196 20.021 1 19.55 1 19V7C1 6.71667 1.096 6.479 1.288 6.287C1.47933 6.09567 1.71667 6 2 6C2.28333 6 2.521 6.09567 2.713 6.287C2.90433 6.479 3 6.71667 3 7V19H19C19.2833 19 19.5207 19.096 19.712 19.288C19.904 19.4793 20 19.7167 20 20C20 20.2833 19.904 20.5207 19.712 20.712C19.5207 20.904 19.2833 21 19 21H3ZM7 17C6.45 17 5.97933 16.8043 5.588 16.413C5.196 16.021 5 15.55 5 15V4C5 3.45 5.196 2.979 5.588 2.587C5.97933 2.19567 6.45 2 7 2H11.175C11.4417 2 11.696 2.05 11.938 2.15C12.1793 2.25 12.3917 2.39167 12.575 2.575L14 4H21C21.55 4 22.021 4.196 22.413 4.588C22.8043 4.97933 23 5.45 23 6V15C23 15.55 22.8043 16.021 22.413 16.413C22.021 16.8043 21.55 17 21 17H7Z"/></g><defs><clipPath id="clip0_1113_6843"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-download.svg b/@stellar/design-system/src/assets/icons/folder-download.svg
new file mode 100644
index 00000000..24125bbe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-download.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9 14L12 17M12 17L15 14M12 17V11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-lock.svg b/@stellar/design-system/src/assets/icons/folder-lock.svg
new file mode 100644
index 00000000..8eb32147
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-lock.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM10.1 17.5H13.9C14.4601 17.5 14.7401 17.5 14.954 17.391C15.1422 17.2951 15.2951 17.1422 15.391 16.954C15.5 16.7401 15.5 16.4601 15.5 15.9V15.1C15.5 14.5399 15.5 14.2599 15.391 14.046C15.2951 13.8578 15.1422 13.7049 14.954 13.609C14.7401 13.5 14.4601 13.5 13.9 13.5H10.1C9.53995 13.5 9.25992 13.5 9.04601 13.609C8.85785 13.7049 8.70487 13.8578 8.60899 14.046C8.5 14.2599 8.5 14.5399 8.5 15.1V15.9C8.5 16.4601 8.5 16.7401 8.60899 16.954C8.70487 17.1422 8.85785 17.2951 9.04601 17.391C9.25992 17.5 9.53995 17.5 10.1 17.5ZM13.75 13.5V11.75C13.75 10.7835 12.9665 10 12 10C11.0335 10 10.25 10.7835 10.25 11.75V13.5H13.75Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-minus.svg b/@stellar/design-system/src/assets/icons/folder-minus.svg
new file mode 100644
index 00000000..65de6e40
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9 14H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-plus.svg b/@stellar/design-system/src/assets/icons/folder-plus.svg
new file mode 100644
index 00000000..f1cba01c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM12 17V11M9 14H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-question.svg b/@stellar/design-system/src/assets/icons/folder-question.svg
new file mode 100644
index 00000000..cd19661f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-question.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9.8501 11.7522C10.0263 11.2514 10.3741 10.829 10.8318 10.56C11.2896 10.2909 11.8278 10.1926 12.3511 10.2824C12.8744 10.3721 13.3491 10.6442 13.691 11.0504C14.033 11.4566 14.2201 11.9707 14.2193 12.5017C14.2193 14.0006 11.971 14.75 11.971 14.75M12 17.75H12.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-search.svg b/@stellar/design-system/src/assets/icons/folder-search.svg
new file mode 100644
index 00000000..c37b174a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-search.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM15.5 17.5L14 16M15 13.5C15 15.433 13.433 17 11.5 17C9.567 17 8 15.433 8 13.5C8 11.567 9.567 10 11.5 10C13.433 10 15 11.567 15 13.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-shield.svg b/@stellar/design-system/src/assets/icons/folder-shield.svg
new file mode 100644
index 00000000..7992cb60
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-shield.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM12 17.5C12 17.5 15 16.0701 15 13.9252V11.4229L12.8124 10.6412C12.2868 10.4529 11.712 10.4529 11.1864 10.6412L9 11.4229V13.9252C9 16.0701 12 17.5 12 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder-x.svg b/@stellar/design-system/src/assets/icons/folder-x.svg
new file mode 100644
index 00000000..f6855722
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7ZM9.5 11.5L14.5 16.5M14.5 11.5L9.5 16.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/folder.svg b/@stellar/design-system/src/assets/icons/folder.svg
new file mode 100644
index 00000000..669c203e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/folder.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/framer.svg b/@stellar/design-system/src/assets/icons/framer.svg
new file mode 100644
index 00000000..0c13c33f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/framer.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15.5V22.5L5 15.5M5 15.5V8.5H12M5 15.5H19L12 8.5M12 8.5H19V1.5H5L12 8.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/free.svg b/@stellar/design-system/src/assets/icons/free.svg
deleted file mode 100644
index b29092bd..00000000
--- a/@stellar/design-system/src/assets/icons/free.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M15 6.7C14.7667 6.46667 14.5083 6.28333 14.225 6.15C13.9417 6.01667 13.6083 5.95 13.225 5.95C12.925 5.95 12.6333 5.99167 12.35 6.075C12.0667 6.15833 11.8083 6.31667 11.575 6.55L10.125 5.1C10.3583 4.86667 10.675 4.65417 11.075 4.4625C11.475 4.27083 11.8417 4.15 12.175 4.1V3C12.175 2.71667 12.2708 2.47917 12.4625 2.2875C12.6542 2.09583 12.8917 2 13.175 2C13.4583 2 13.6958 2.09583 13.8875 2.2875C14.0792 2.47917 14.175 2.71667 14.175 3V4.05C14.7583 4.16667 15.2792 4.375 15.7375 4.675C16.1958 4.975 16.5917 5.35833 16.925 5.825C17.0917 6.05833 17.1208 6.30833 17.0125 6.575C16.9042 6.84167 16.7083 7.04167 16.425 7.175C16.1917 7.25833 15.95 7.25833 15.7 7.175C15.45 7.09167 15.2167 6.93333 15 6.7ZM20.275 20.9L16.375 17C16.125 17.25 15.7833 17.4542 15.35 17.6125C14.9167 17.7708 14.525 17.8667 14.175 17.9V19C14.175 19.2833 14.0792 19.5208 13.8875 19.7125C13.6958 19.9042 13.4583 20 13.175 20C12.8917 20 12.6542 19.9042 12.4625 19.7125C12.2708 19.5208 12.175 19.2833 12.175 19V17.85C11.425 17.6667 10.7708 17.3542 10.2125 16.9125C9.65417 16.4708 9.20833 15.9167 8.875 15.25C8.74167 15 8.73333 14.7333 8.85 14.45C8.96667 14.1667 9.175 13.9667 9.475 13.85C9.725 13.75 9.98333 13.75 10.25 13.85C10.5167 13.95 10.725 14.1417 10.875 14.425C11.125 14.8917 11.4583 15.2708 11.875 15.5625C12.2917 15.8542 12.7917 16 13.375 16C13.675 16 13.95 15.9625 14.2 15.8875C14.45 15.8125 14.6917 15.7 14.925 15.55L3.275 3.9C3.09167 3.71667 3 3.48333 3 3.2C3 2.91667 3.09167 2.68333 3.275 2.5C3.45833 2.31667 3.69167 2.225 3.975 2.225C4.25833 2.225 4.49167 2.31667 4.675 2.5L21.675 19.5C21.775 19.6 21.8458 19.7083 21.8875 19.825C21.9292 19.9417 21.95 20.0667 21.95 20.2C21.95 20.3333 21.9292 20.4583 21.8875 20.575C21.8458 20.6917 21.775 20.8 21.675 20.9C21.4917 21.0833 21.2583 21.175 20.975 21.175C20.6917 21.175 20.4583 21.0833 20.275 20.9Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/front-hand.svg b/@stellar/design-system/src/assets/icons/front-hand.svg
deleted file mode 100644
index 262308d8..00000000
--- a/@stellar/design-system/src/assets/icons/front-hand.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.775 24C11.5583 24 10.446 23.7707 9.438 23.312C8.42933 22.854 7.55833 22.246 6.825 21.488C6.09167 20.7293 5.521 19.85 5.113 18.85C4.70433 17.85 4.5 16.8167 4.5 15.75V5.75C4.5 5.4 4.621 5.104 4.863 4.862C5.10433 4.62067 5.4 4.5 5.75 4.5C6.1 4.5 6.396 4.62067 6.638 4.862C6.87933 5.104 7 5.4 7 5.75V11.5C7 11.6333 7.05 11.75 7.15 11.85C7.25 11.95 7.36667 12 7.5 12C7.63333 12 7.75 11.95 7.85 11.85C7.95 11.75 8 11.6333 8 11.5V2.75C8 2.4 8.121 2.104 8.363 1.862C8.60433 1.62067 8.9 1.5 9.25 1.5C9.6 1.5 9.89567 1.62067 10.137 1.862C10.379 2.104 10.5 2.4 10.5 2.75V10.5C10.5 10.6333 10.55 10.75 10.65 10.85C10.75 10.95 10.8667 11 11 11C11.1333 11 11.25 10.95 11.35 10.85C11.45 10.75 11.5 10.6333 11.5 10.5V1.25C11.5 0.9 11.621 0.604 11.863 0.362C12.1043 0.120667 12.4 0 12.75 0C13.1 0 13.3957 0.120667 13.637 0.362C13.879 0.604 14 0.9 14 1.25V10.5C14 10.6333 14.05 10.75 14.15 10.85C14.25 10.95 14.3667 11 14.5 11C14.6333 11 14.75 10.95 14.85 10.85C14.95 10.75 15 10.6333 15 10.5V3.25C15 2.9 15.121 2.604 15.363 2.362C15.6043 2.12067 15.9 2 16.25 2C16.6 2 16.896 2.12067 17.138 2.362C17.3793 2.604 17.5 2.9 17.5 3.25V14.025C16.5667 14.1583 15.7917 14.5377 15.175 15.163C14.5583 15.7877 14.1833 16.5417 14.05 17.425C14.0167 17.575 14.0543 17.7083 14.163 17.825C14.271 17.9417 14.4083 18 14.575 18C14.6917 18 14.7917 17.9623 14.875 17.887C14.9583 17.8123 15.0083 17.7083 15.025 17.575C15.125 16.8417 15.4583 16.2293 16.025 15.738C16.5917 15.246 17.25 15 18 15C18.1333 15 18.25 14.95 18.35 14.85C18.45 14.75 18.5 14.6333 18.5 14.5V9.25C18.5 8.9 18.621 8.60433 18.863 8.363C19.1043 8.121 19.4 8 19.75 8C20.1 8 20.396 8.121 20.638 8.363C20.8793 8.60433 21 8.9 21 9.25V15.75C21 16.8167 20.8 17.8457 20.4 18.837C20 19.829 19.4373 20.7083 18.712 21.475C17.9873 22.2417 17.121 22.854 16.113 23.312C15.1043 23.7707 13.9917 24 12.775 24Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/gaming-pad-01.svg b/@stellar/design-system/src/assets/icons/gaming-pad-01.svg
new file mode 100644
index 00000000..1222ae24
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/gaming-pad-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.00001 11H10M8.00001 9V13M15 12H15.01M18 10H18.01M10.449 5H13.5511C16.1759 5 17.4884 5 18.5186 5.49743C19.4256 5.9354 20.1792 6.63709 20.6806 7.51059C21.2502 8.5027 21.3437 9.81181 21.5307 12.43L21.7768 15.8745C21.8974 17.5634 20.5598 19 18.8666 19C18.0007 19 17.1795 18.6154 16.6252 17.9502L16.25 17.5C15.9069 17.0882 15.7353 16.8823 15.5399 16.7159C15.1303 16.3672 14.6345 16.1349 14.1044 16.0436C13.8515 16 13.5835 16 13.0475 16H10.9526C10.4165 16 10.1485 16 9.89565 16.0436C9.36551 16.1349 8.86969 16.3672 8.46012 16.7159C8.26475 16.8823 8.09317 17.0882 7.75001 17.5L7.37485 17.9502C6.82052 18.6154 5.99936 19 5.13347 19C3.44025 19 2.10263 17.5634 2.22326 15.8745L2.4693 12.43C2.65631 9.81181 2.74982 8.5027 3.31938 7.51059C3.82086 6.63709 4.57446 5.9354 5.48147 5.49743C6.51164 5 7.82408 5 10.449 5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/gaming-pad-02.svg b/@stellar/design-system/src/assets/icons/gaming-pad-02.svg
new file mode 100644
index 00000000..9687b351
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/gaming-pad-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 12H10M8 10V14M15 13H15.01M18 11H18.01M5.2 18H18.8C19.9201 18 20.4802 18 20.908 17.782C21.2843 17.5903 21.5903 17.2843 21.782 16.908C22 16.4802 22 15.9201 22 14.8V9.2C22 8.0799 22 7.51984 21.782 7.09202C21.5903 6.71569 21.2843 6.40973 20.908 6.21799C20.4802 6 19.9201 6 18.8 6H5.2C4.07989 6 3.51984 6 3.09202 6.21799C2.71569 6.40973 2.40973 6.71569 2.21799 7.09202C2 7.51984 2 8.07989 2 9.2V14.8C2 15.9201 2 16.4802 2.21799 16.908C2.40973 17.2843 2.71569 17.5903 3.09202 17.782C3.51984 18 4.0799 18 5.2 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/gift-01.svg b/@stellar/design-system/src/assets/icons/gift-01.svg
new file mode 100644
index 00000000..a1eca629
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/gift-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 6V22M12 6H8.46429C7.94332 6 7.4437 5.78929 7.07533 5.41421C6.70695 5.03914 6.5 4.53043 6.5 4C6.5 3.46957 6.70695 2.96086 7.07533 2.58579C7.4437 2.21071 7.94332 2 8.46429 2C11.2143 2 12 6 12 6ZM12 6H15.5357C16.0567 6 16.5563 5.78929 16.9247 5.41421C17.293 5.03914 17.5 4.53043 17.5 4C17.5 3.46957 17.293 2.96086 16.9247 2.58579C16.5563 2.21071 16.0567 2 15.5357 2C12.7857 2 12 6 12 6ZM20 11V18.8C20 19.9201 20 20.4802 19.782 20.908C19.5903 21.2843 19.2843 21.5903 18.908 21.782C18.4802 22 17.9201 22 16.8 22L7.2 22C6.07989 22 5.51984 22 5.09202 21.782C4.71569 21.5903 4.40973 21.2843 4.21799 20.908C4 20.4802 4 19.9201 4 18.8V11M2 7.6L2 9.4C2 9.96005 2 10.2401 2.10899 10.454C2.20487 10.6422 2.35785 10.7951 2.54601 10.891C2.75992 11 3.03995 11 3.6 11L20.4 11C20.9601 11 21.2401 11 21.454 10.891C21.6422 10.7951 21.7951 10.6422 21.891 10.454C22 10.2401 22 9.96005 22 9.4V7.6C22 7.03995 22 6.75992 21.891 6.54601C21.7951 6.35785 21.6422 6.20487 21.454 6.10899C21.2401 6 20.9601 6 20.4 6L3.6 6C3.03995 6 2.75992 6 2.54601 6.10899C2.35785 6.20487 2.20487 6.35785 2.10899 6.54601C2 6.75992 2 7.03995 2 7.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/gift-02.svg b/@stellar/design-system/src/assets/icons/gift-02.svg
new file mode 100644
index 00000000..02cbf567
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/gift-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 7H7.5C6.83696 7 6.20107 6.73661 5.73223 6.26777C5.26339 5.79893 5 5.16304 5 4.5C5 3.83696 5.26339 3.20107 5.73223 2.73223C6.20107 2.26339 6.83696 2 7.5 2C11 2 12 7 12 7ZM12 7H16.5C17.163 7 17.7989 6.73661 18.2678 6.26777C18.7366 5.79893 19 5.16304 19 4.5C19 3.83696 18.7366 3.20107 18.2678 2.73223C17.7989 2.26339 17.163 2 16.5 2C13 2 12 7 12 7ZM12 7L12 22M2 14H22M2 10.2L2 18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22L18.8 22C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V10.2C22 9.0799 22 8.51984 21.782 8.09202C21.5903 7.7157 21.2843 7.40974 20.908 7.21799C20.4802 7 19.9201 7 18.8 7L5.2 7C4.0799 7 3.51984 7 3.09202 7.21799C2.7157 7.40973 2.40973 7.71569 2.21799 8.09202C2 8.51984 2 9.07989 2 10.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/git-branch-01.svg b/@stellar/design-system/src/assets/icons/git-branch-01.svg
new file mode 100644
index 00000000..3e2ac56b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/git-branch-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3V13.2C3 14.8802 3 15.7202 3.32698 16.362C3.6146 16.9265 4.07354 17.3854 4.63803 17.673C5.27976 18 6.11984 18 7.8 18H15M15 18C15 19.6569 16.3431 21 18 21C19.6569 21 21 19.6569 21 18C21 16.3431 19.6569 15 18 15C16.3431 15 15 16.3431 15 18ZM3 8L15 8M15 8C15 9.65686 16.3431 11 18 11C19.6569 11 21 9.65685 21 8C21 6.34315 19.6569 5 18 5C16.3431 5 15 6.34315 15 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/git-branch-02.svg b/@stellar/design-system/src/assets/icons/git-branch-02.svg
new file mode 100644
index 00000000..faf719a8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/git-branch-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 3V15M6 15C4.34315 15 3 16.3431 3 18C3 19.6569 4.34315 21 6 21C7.65685 21 9 19.6569 9 18M6 15C7.65685 15 9 16.3431 9 18M18 9C19.6569 9 21 7.65685 21 6C21 4.34315 19.6569 3 18 3C16.3431 3 15 4.34315 15 6C15 7.65685 16.3431 9 18 9ZM18 9C18 11.3869 17.0518 13.6761 15.364 15.364C13.6761 17.0518 11.3869 18 9 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/git-commit.svg b/@stellar/design-system/src/assets/icons/git-commit.svg
new file mode 100644
index 00000000..a7835c7c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/git-commit.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12C16 14.2091 14.2091 16 12 16C9.79085 16 7.99999 14.2091 7.99999 12M16 12C16 9.79086 14.2091 8 12 8C9.79085 8 7.99999 9.79086 7.99999 12M16 12H22M7.99999 12H2.00018" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/git-merge.svg b/@stellar/design-system/src/assets/icons/git-merge.svg
new file mode 100644
index 00000000..71625b85
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/git-merge.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 18C15 19.6569 16.3431 21 18 21C19.6569 21 21 19.6569 21 18C21 16.3431 19.6569 15 18 15C16.3431 15 15 16.3431 15 18ZM15 18C12.6131 18 10.3239 17.0518 8.63604 15.364C6.94821 13.6761 6 11.3869 6 9M6 9C7.65685 9 9 7.65685 9 6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9ZM6 9V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/git-pull-request.svg b/@stellar/design-system/src/assets/icons/git-pull-request.svg
new file mode 100644
index 00000000..a8eda09f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/git-pull-request.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 15C16.3431 15 15 16.3431 15 18C15 19.6569 16.3431 21 18 21C19.6569 21 21 19.6569 21 18C21 16.3431 19.6569 15 18 15ZM18 15V8C18 7.46957 17.7893 6.96086 17.4142 6.58579C17.0391 6.21071 16.5304 6 16 6H13M6 9C7.65685 9 9 7.65685 9 6C9 4.34315 7.65685 3 6 3C4.34315 3 3 4.34315 3 6C3 7.65685 4.34315 9 6 9ZM6 9V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/github.svg b/@stellar/design-system/src/assets/icons/github.svg
deleted file mode 100644
index 5fc6698f..00000000
--- a/@stellar/design-system/src/assets/icons/github.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.9999 2.40002C6.6983 2.40002 2.3999 6.69842 2.3999 12C2.3999 16.4984 5.4975 20.2624 9.6735 21.304C9.6287 21.1744 9.5999 21.024 9.5999 20.8376V19.1968C9.2103 19.1968 8.5575 19.1968 8.3935 19.1968C7.7367 19.1968 7.1527 18.9144 6.8695 18.3896C6.5551 17.8064 6.5007 16.9144 5.7215 16.3688C5.4903 16.1872 5.6663 15.98 5.9327 16.008C6.4247 16.1472 6.8327 16.4848 7.2167 16.9856C7.5991 17.4872 7.7791 17.6008 8.4935 17.6008C8.8399 17.6008 9.3583 17.5808 9.8463 17.504C10.1087 16.8376 10.5623 16.224 11.1167 15.9344C7.9199 15.6056 6.3943 14.0152 6.3943 11.856C6.3943 10.9264 6.7903 10.0272 7.4631 9.26962C7.2423 8.51762 6.9647 6.98402 7.5479 6.40002C8.9863 6.40002 9.8559 7.33282 10.0647 7.58482C10.7815 7.33922 11.5687 7.20002 12.3959 7.20002C13.2247 7.20002 14.0151 7.33922 14.7335 7.58642C14.9399 7.33602 15.8103 6.40002 17.2519 6.40002C17.8375 6.98482 17.5567 8.52482 17.3335 9.27522C18.0023 10.0312 18.3959 10.928 18.3959 11.856C18.3959 14.0136 16.8727 15.6032 13.6807 15.9336C14.5591 16.392 15.1999 17.68 15.1999 18.6504V20.8376C15.1999 20.9208 15.1815 20.9808 15.1719 21.052C18.9127 19.7408 21.5999 16.1888 21.5999 12C21.5999 6.69842 17.3015 2.40002 11.9999 2.40002Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/glasses-01.svg b/@stellar/design-system/src/assets/icons/glasses-01.svg
new file mode 100644
index 00000000..cbce83f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/glasses-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 11.5347C11.2335 10.8218 12.7663 10.8218 13.9999 11.5347M8.82843 9.17157C10.3905 10.7337 10.3905 13.2663 8.82843 14.8284C7.26634 16.3905 4.73367 16.3905 3.17157 14.8284C1.60948 13.2663 1.60948 10.7337 3.17157 9.17157C4.73366 7.60948 7.26633 7.60948 8.82843 9.17157ZM20.8284 9.17157C22.3905 10.7337 22.3905 13.2663 20.8284 14.8284C19.2663 16.3905 16.7337 16.3905 15.1716 14.8284C13.6095 13.2663 13.6095 10.7337 15.1716 9.17157C16.7337 7.60948 19.2663 7.60948 20.8284 9.17157Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/glasses-02.svg b/@stellar/design-system/src/assets/icons/glasses-02.svg
new file mode 100644
index 00000000..51a29543
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/glasses-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 14.5347C11.2335 13.8218 12.7663 13.8218 13.9999 14.5347M2 15L2.70149 7.98511C2.72808 7.71915 2.74138 7.58617 2.76178 7.47208C3.00222 6.12702 4.1212 5.11436 5.48352 5.00894C5.59907 5 5.73271 5 6 5M22 15L21.2985 7.98511C21.2719 7.71916 21.2586 7.58617 21.2382 7.47208C20.9978 6.12702 19.8788 5.11436 18.5165 5.00894C18.4009 5 18.2673 5 18 5M8.82843 12.1716C10.3905 13.7337 10.3905 16.2663 8.82843 17.8284C7.26634 19.3905 4.73367 19.3905 3.17157 17.8284C1.60948 16.2663 1.60948 13.7337 3.17157 12.1716C4.73366 10.6095 7.26633 10.6095 8.82843 12.1716ZM20.8284 12.1716C22.3905 13.7337 22.3905 16.2663 20.8284 17.8284C19.2663 19.3905 16.7337 19.3905 15.1716 17.8284C13.6095 16.2663 13.6095 13.7337 15.1716 12.1716C16.7337 10.6095 19.2663 10.6095 20.8284 12.1716Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-01.svg b/@stellar/design-system/src/assets/icons/globe-01.svg
new file mode 100644
index 00000000..c990e414
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12H22M2 12C2 17.5228 6.47715 22 12 22M2 12C2 6.47715 6.47715 2 12 2M22 12C22 17.5228 17.5228 22 12 22M22 12C22 6.47715 17.5228 2 12 2M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22M12 2C9.49872 4.73835 8.07725 8.29203 8 12C8.07725 15.708 9.49872 19.2616 12 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-02.svg b/@stellar/design-system/src/assets/icons/globe-02.svg
new file mode 100644
index 00000000..148f509f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2C14.5013 4.73835 15.9228 8.29203 16 12C15.9228 15.708 14.5013 19.2616 12 22M12 2C9.49872 4.73835 8.07725 8.29203 8 12C8.07725 15.708 9.49872 19.2616 12 22M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22M2.50002 9H21.5M2.5 15H21.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-03.svg b/@stellar/design-system/src/assets/icons/globe-03.svg
new file mode 100644
index 00000000..b2db2f57
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2C15 4 15.9228 8.29203 16 12C15.9228 15.708 15 20 12 22M12 2C9 4 8.07725 8.29203 8 12C8.07725 15.708 9 20 12 22M12 2C6.47715 2 2 6.47715 2 12M12 2C17.5228 2 22 6.47715 22 12M12 22C17.5229 22 22 17.5228 22 12M12 22C6.47716 22 2 17.5228 2 12M22 12C20 15 15.708 15.9228 12 16C8.29203 15.9228 4 15 2 12M22 12C20 9 15.708 8.07725 12 8C8.29203 8.07725 4 9 2 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-04.svg b/@stellar/design-system/src/assets/icons/globe-04.svg
new file mode 100644
index 00000000..e4b9c252
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.07598 7.48282L7.36402 10.5457C7.58715 10.705 7.69872 10.7847 7.81548 10.8031C7.91821 10.8192 8.02343 10.8029 8.11648 10.7565C8.22223 10.7037 8.30449 10.594 8.46901 10.3747L9.37511 9.16652C9.42164 9.10448 9.4449 9.07347 9.47224 9.04671C9.49652 9.02295 9.52315 9.00173 9.55173 8.98338C9.58392 8.9627 9.61935 8.94696 9.6902 8.91546L13.5588 7.19609C13.7192 7.12482 13.7993 7.08918 13.8598 7.03352C13.9133 6.9843 13.9554 6.924 13.9832 6.85684C14.0146 6.78091 14.0204 6.69336 14.0321 6.51826L14.3154 2.2694M13.5 13.5L16.116 14.6211C16.4195 14.7512 16.5713 14.8163 16.6517 14.9243C16.7222 15.0191 16.7569 15.1358 16.7496 15.2537C16.7413 15.3881 16.6497 15.5255 16.4665 15.8002L15.2375 17.6438C15.1507 17.774 15.1072 17.8391 15.0499 17.8863C14.9991 17.928 14.9406 17.9593 14.8777 17.9784C14.8067 18 14.7284 18 14.5719 18H12.5766C12.3693 18 12.2656 18 12.1774 17.9653C12.0995 17.9347 12.0305 17.885 11.9768 17.8208C11.916 17.7481 11.8832 17.6497 11.8177 17.453L11.1048 15.3144C11.0661 15.1983 11.0468 15.1403 11.0417 15.0814C11.0372 15.0291 11.0409 14.9764 11.0528 14.9253C11.0662 14.8677 11.0935 14.813 11.1482 14.7036L11.6897 13.6206C11.7997 13.4005 11.8547 13.2905 11.9395 13.2222C12.0141 13.162 12.1046 13.1246 12.1999 13.1143C12.3081 13.1027 12.4248 13.1416 12.6582 13.2194L13.5 13.5ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-05.svg b/@stellar/design-system/src/assets/icons/globe-05.svg
new file mode 100644
index 00000000..f30cdded
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 2.4578C14.053 2.16035 13.0452 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 10.2847 21.5681 8.67022 20.8071 7.25945M17 5.75H17.005M10.5001 21.8883L10.5002 19.6849C10.5002 19.5656 10.5429 19.4502 10.6205 19.3596L13.1063 16.4594C13.3106 16.2211 13.2473 15.8556 12.9748 15.6999L10.1185 14.0677C10.0409 14.0234 9.97663 13.9591 9.93234 13.8814L8.07046 10.6186C7.97356 10.4488 7.78657 10.3511 7.59183 10.3684L2.06418 10.8607M21 6C21 8.20914 19 10 17 12C15 10 13 8.20914 13 6C13 3.79086 14.7909 2 17 2C19.2091 2 21 3.79086 21 6ZM17.25 5.75C17.25 5.88807 17.1381 6 17 6C16.8619 6 16.75 5.88807 16.75 5.75C16.75 5.61193 16.8619 5.5 17 5.5C17.1381 5.5 17.25 5.61193 17.25 5.75Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-06.svg b/@stellar/design-system/src/assets/icons/globe-06.svg
new file mode 100644
index 00000000..4bf7481f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.68675 15.6451L4.59494 14.5435C4.6983 14.4839 4.8196 14.4631 4.9369 14.4851L8.6914 15.1878C8.99995 15.2455 9.28478 15.008 9.28338 14.6941L9.26876 11.4045C9.26836 11.3151 9.29193 11.2272 9.33701 11.15L11.2317 7.90621C11.3303 7.73739 11.3215 7.52658 11.2091 7.3666L8.01892 2.82568M19.0002 4.85905C13.5002 7.50004 16.5 11 17.5002 11.5C19.3773 12.4384 21.9876 12.5 21.9876 12.5C21.9958 12.3344 22 12.1677 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C12.1677 22 12.3344 21.9959 12.5 21.9877M16.7578 21.9398L13.591 13.591L21.9398 16.7578L18.2376 18.2376L16.7578 21.9398Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-slated-01.svg b/@stellar/design-system/src/assets/icons/globe-slated-01.svg
new file mode 100644
index 00000000..d1f3ebb0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-slated-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.6318 2.36829C23.1228 6.85931 23.1228 14.1407 18.6318 18.6317C14.3309 22.9326 7.47106 23.1147 2.95347 19.1782C2.75646 19.0065 2.65795 18.9206 2.61348 18.8033C2.57607 18.7045 2.57188 18.5825 2.60244 18.4814C2.63875 18.3613 2.73717 18.2629 2.934 18.0661L5.14925 15.8508M18 10.5C18 14.6421 14.6422 18 10.5 18C6.35791 18 3.00004 14.6421 3.00004 10.5C3.00004 6.35788 6.35791 3.00001 10.5 3.00001C14.6422 3.00001 18 6.35788 18 10.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/globe-slated-02.svg b/@stellar/design-system/src/assets/icons/globe-slated-02.svg
new file mode 100644
index 00000000..dfb3d249
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/globe-slated-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.66117 18.3388L7.25502 13.745M18.2175 2.78247C21.9275 6.49245 21.9275 12.5075 18.2175 16.2175C14.5075 19.9275 8.49247 19.9275 4.78249 16.2175M17 22H7M12 22V19M17.5 9.49998C17.5 12.8137 14.8137 15.5 11.5 15.5C8.18629 15.5 5.5 12.8137 5.5 9.49998C5.5 6.18628 8.18629 3.49998 11.5 3.49998C14.8137 3.49998 17.5 6.18628 17.5 9.49998Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/google-chrome.svg b/@stellar/design-system/src/assets/icons/google-chrome.svg
new file mode 100644
index 00000000..642cbfad
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/google-chrome.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8ZM12 8H21.17M3.95 6.06L8.54 14M10.88 21.94L15.46 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grade.svg b/@stellar/design-system/src/assets/icons/grade.svg
deleted file mode 100644
index 152eb39d..00000000
--- a/@stellar/design-system/src/assets/icons/grade.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6840)"><path d="M7.05005 21.05C6.86671 21.2 6.67105 21.2083 6.46305 21.075C6.25438 20.9417 6.19171 20.7583 6.27505 20.525L8.15005 14.4L3.27505 10.9C3.07505 10.7667 3.01271 10.5833 3.08805 10.35C3.16271 10.1167 3.31671 10 3.55005 10H9.60005L11.525 3.6C11.5584 3.46667 11.621 3.375 11.713 3.325C11.8044 3.275 11.9 3.25 12 3.25C12.1 3.25 12.196 3.275 12.288 3.325C12.3794 3.375 12.4417 3.46667 12.475 3.6L14.4 10H20.45C20.6834 10 20.8377 10.1167 20.913 10.35C20.9877 10.5833 20.925 10.7667 20.725 10.9L15.85 14.4L17.725 20.525C17.8084 20.7583 17.746 20.9417 17.538 21.075C17.3294 21.2083 17.1334 21.2 16.95 21.05L12 17.3L7.05005 21.05Z"/></g><defs><clipPath id="clip0_1113_6840"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/graduation-hat-01.svg b/@stellar/design-system/src/assets/icons/graduation-hat-01.svg
new file mode 100644
index 00000000..28bf72f0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/graduation-hat-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 9.99994V16.0111C5 16.37 5 16.5495 5.05465 16.708C5.10299 16.8481 5.18187 16.9757 5.28558 17.0816C5.40287 17.2014 5.5634 17.2816 5.88446 17.4422L11.2845 20.1422C11.5468 20.2733 11.678 20.3389 11.8156 20.3648C11.9375 20.3876 12.0625 20.3876 12.1844 20.3648C12.322 20.3389 12.4532 20.2733 12.7155 20.1422L18.1155 17.4422C18.4366 17.2816 18.5971 17.2014 18.7144 17.0816C18.8181 16.9757 18.897 16.8481 18.9453 16.708C19 16.5495 19 16.37 19 16.0111V9.99994M2 8.49994L11.6422 3.67883C11.7734 3.61324 11.839 3.58044 11.9078 3.56753C11.9687 3.5561 12.0313 3.5561 12.0922 3.56753C12.161 3.58044 12.2266 3.61324 12.3578 3.67883L22 8.49994L12.3578 13.3211C12.2266 13.3866 12.161 13.4194 12.0922 13.4324C12.0313 13.4438 11.9687 13.4438 11.9078 13.4324C11.839 13.4194 11.7734 13.3866 11.6422 13.3211L2 8.49994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/graduation-hat-02.svg b/@stellar/design-system/src/assets/icons/graduation-hat-02.svg
new file mode 100644
index 00000000..d6b427cd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/graduation-hat-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 14.4999V11.4944C17 11.3149 17 11.2252 16.9727 11.1459C16.9485 11.0759 16.9091 11.012 16.8572 10.9591C16.7986 10.8992 16.7183 10.8591 16.5578 10.7788L12 8.49994M4 9.49994V16.3066C4 16.6785 4 16.8644 4.05802 17.0272C4.10931 17.1712 4.1929 17.3014 4.30238 17.408C4.42622 17.5286 4.59527 17.6061 4.93335 17.7611L11.3334 20.6944C11.5786 20.8068 11.7012 20.863 11.8289 20.8852C11.9421 20.9048 12.0579 20.9048 12.1711 20.8852C12.2988 20.863 12.4214 20.8068 12.6666 20.6944L19.0666 17.7611C19.4047 17.6061 19.5738 17.5286 19.6976 17.408C19.8071 17.3014 19.8907 17.1712 19.942 17.0272C20 16.8644 20 16.6785 20 16.3066V9.49994M2 8.49994L11.6422 3.67883C11.7734 3.61324 11.839 3.58044 11.9078 3.56753C11.9687 3.5561 12.0313 3.5561 12.0922 3.56753C12.161 3.58044 12.2266 3.61324 12.3578 3.67883L22 8.49994L12.3578 13.3211C12.2266 13.3866 12.161 13.4194 12.0922 13.4324C12.0313 13.4438 11.9687 13.4438 11.9078 13.4324C11.839 13.4194 11.7734 13.3866 11.6422 13.3211L2 8.49994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-01.svg b/@stellar/design-system/src/assets/icons/grid-01.svg
new file mode 100644
index 00000000..7846e2a7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V8.4C3 8.96005 3 9.24008 3.10899 9.45399C3.20487 9.64215 3.35785 9.79513 3.54601 9.89101C3.75992 10 4.03995 10 4.6 10H8.4C8.96005 10 9.24008 10 9.45399 9.89101C9.64215 9.79513 9.79513 9.64215 9.89101 9.45399C10 9.24008 10 8.96005 10 8.4V4.6C10 4.03995 10 3.75992 9.89101 3.54601C9.79513 3.35785 9.64215 3.20487 9.45399 3.10899C9.24008 3 8.96005 3 8.4 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.4 3H15.6C15.0399 3 14.7599 3 14.546 3.10899C14.3578 3.20487 14.2049 3.35785 14.109 3.54601C14 3.75992 14 4.03995 14 4.6V8.4C14 8.96005 14 9.24008 14.109 9.45399C14.2049 9.64215 14.3578 9.79513 14.546 9.89101C14.7599 10 15.0399 10 15.6 10H19.4C19.9601 10 20.2401 10 20.454 9.89101C20.6422 9.79513 20.7951 9.64215 20.891 9.45399C21 9.24008 21 8.96005 21 8.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.4 14H15.6C15.0399 14 14.7599 14 14.546 14.109C14.3578 14.2049 14.2049 14.3578 14.109 14.546C14 14.7599 14 15.0399 14 15.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V15.6C21 15.0399 21 14.7599 20.891 14.546C20.7951 14.3578 20.6422 14.2049 20.454 14.109C20.2401 14 19.9601 14 19.4 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.4 14H4.6C4.03995 14 3.75992 14 3.54601 14.109C3.35785 14.2049 3.20487 14.3578 3.10899 14.546C3 14.7599 3 15.0399 3 15.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H8.4C8.96005 21 9.24008 21 9.45399 20.891C9.64215 20.7951 9.79513 20.6422 9.89101 20.454C10 20.2401 10 19.9601 10 19.4V15.6C10 15.0399 10 14.7599 9.89101 14.546C9.79513 14.3578 9.64215 14.2049 9.45399 14.109C9.24008 14 8.96005 14 8.4 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-02.svg b/@stellar/design-system/src/assets/icons/grid-02.svg
new file mode 100644
index 00000000..ece95485
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.0799 3 6.2V8M8 21H6.2C5.0799 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V16M21 8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3H16M21 16V17.8C21 18.9201 21 19.4802 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.4802 21 18.9201 21 17.8 21H16M12 17L12 7M7 12H17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-03.svg b/@stellar/design-system/src/assets/icons/grid-03.svg
new file mode 100644
index 00000000..b34745b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.0799 3 6.2V8M8 21H6.2C5.0799 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V16M21 8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3H16M21 16V17.8C21 18.9201 21 19.4802 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.4802 21 18.9201 21 17.8 21H16M16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-blank.svg b/@stellar/design-system/src/assets/icons/grid-dots-blank.svg
new file mode 100644
index 00000000..57057f96
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-blank.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3H3.01M3 12H3.01M3 21H3.01M3 16.5H3.01M3 7.5H3.01M7.5 3H7.51M7.5 12H7.51M7.5 21H7.51M16.5 3H16.51M16.5 12H16.51M16.5 21H16.51M12 3H12.01M12 12H12.01M12 21H12.01M12 16.5H12.01M12 7.5H12.01M21 3H21.01M21 12H21.01M21 21H21.01M21 16.5H21.01M21 7.5H21.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-bottom.svg b/@stellar/design-system/src/assets/icons/grid-dots-bottom.svg
new file mode 100644
index 00000000..63af8528
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-bottom.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3H3.01M3 12H3.01M3 16.5H3.01M3 7.5H3.01M7.5 3H7.51M7.5 12H7.51M16.5 3H16.51M16.5 12H16.51M12 3H12.01M12 12H12.01M12 16.5H12.01M12 7.5H12.01M21 3H21.01M21 12H21.01M21 16.5H21.01M21 7.5H21.01M21 21H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-horizontal-center.svg b/@stellar/design-system/src/assets/icons/grid-dots-horizontal-center.svg
new file mode 100644
index 00000000..0e9ac51c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-horizontal-center.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3H3.01M3 12H3.01M3 21H3.01M3 16.5H3.01M3 7.5H3.01M7.5 3H7.51M7.5 12H7.51M7.5 21H7.51M16.5 3H16.51M16.5 12H16.51M16.5 21H16.51M21 3H21.01M21 12H21.01M21 21H21.01M21 16.5H21.01M21 7.5H21.01M12 21V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-left.svg b/@stellar/design-system/src/assets/icons/grid-dots-left.svg
new file mode 100644
index 00000000..3fc435e8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 3H7.51M7.5 12H7.51M7.5 21H7.51M16.5 3H16.51M16.5 12H16.51M16.5 21H16.51M12 3H12.01M12 12H12.01M12 21H12.01M12 16.5H12.01M12 7.5H12.01M21 3H21.01M21 12H21.01M21 21H21.01M21 16.5H21.01M21 7.5H21.01M3 21V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-outer.svg b/@stellar/design-system/src/assets/icons/grid-dots-outer.svg
new file mode 100644
index 00000000..280517bd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-outer.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 12H7.51M16.5 12H16.51M12 12H12.01M12 16.5H12.01M12 7.5H12.01M3 7.8L3 16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27977 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3L7.8 3C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-right.svg b/@stellar/design-system/src/assets/icons/grid-dots-right.svg
new file mode 100644
index 00000000..fb1df9d2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 3H7.51M7.5 12H7.51M7.5 21H7.51M16.5 3H16.51M16.5 12H16.51M16.5 21H16.51M12 3H12.01M12 12H12.01M12 21H12.01M12 16.5H12.01M12 7.5H12.01M3 3H3.01M3 12H3.01M3 21H3.01M3 16.5H3.01M3 7.5H3.01M21 21V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-top.svg b/@stellar/design-system/src/assets/icons/grid-dots-top.svg
new file mode 100644
index 00000000..3472b6d8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-top.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 21H3.01M3 12H3.01M3 16.5H3.01M3 7.5H3.01M7.5 21H7.51M7.5 12H7.51M16.5 21H16.51M16.5 12H16.51M12 21H12.01M12 12H12.01M12 16.5H12.01M12 7.5H12.01M21 21H21.01M21 12H21.01M21 16.5H21.01M21 7.5H21.01M21 3H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/grid-dots-vertical-center.svg b/@stellar/design-system/src/assets/icons/grid-dots-vertical-center.svg
new file mode 100644
index 00000000..57d3237f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/grid-dots-vertical-center.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 3H3.01M3 21H3.01M3 16.5H3.01M3 7.5H3.01M7.5 3H7.51M7.5 21H7.51M16.5 3H16.51M16.5 21H16.51M12 3H12.01M12 21H12.01M12 16.5H12.01M12 7.5H12.01M21 3H21.01M21 21H21.01M21 16.5H21.01M21 7.5H21.01M21 12H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/group-add.svg b/@stellar/design-system/src/assets/icons/group-add.svg
deleted file mode 100644
index e80e4705..00000000
--- a/@stellar/design-system/src/assets/icons/group-add.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.5 11.95C12.9833 11.4167 13.3543 10.8083 13.613 10.125C13.871 9.44167 14 8.73333 14 8C14 7.26667 13.871 6.55833 13.613 5.875C13.3543 5.19167 12.9833 4.58333 12.5 4.05C13.5 4.18333 14.3333 4.625 15 5.375C15.6667 6.125 16 7 16 8C16 9 15.6667 9.875 15 10.625C14.3333 11.375 13.5 11.8167 12.5 11.95ZM17.525 20C17.675 19.8833 17.7917 19.7373 17.875 19.562C17.9583 19.3873 18 19.1917 18 18.975V17C18 16.4 17.8667 15.8293 17.6 15.288C17.3333 14.746 16.9833 14.2667 16.55 13.85C17.4 14.15 18.1877 14.5373 18.913 15.012C19.6377 15.4873 20 16.15 20 17V19C20 19.2833 19.904 19.5207 19.712 19.712C19.5207 19.904 19.2833 20 19 20H17.525ZM21 13C20.7167 13 20.4793 12.904 20.288 12.712C20.096 12.5207 20 12.2833 20 12V11H19C18.7167 11 18.4793 10.904 18.288 10.712C18.096 10.5207 18 10.2833 18 10C18 9.71667 18.096 9.479 18.288 9.287C18.4793 9.09567 18.7167 9 19 9H20V8C20 7.71667 20.096 7.479 20.288 7.287C20.4793 7.09567 20.7167 7 21 7C21.2833 7 21.5207 7.09567 21.712 7.287C21.904 7.479 22 7.71667 22 8V9H23C23.2833 9 23.5207 9.09567 23.712 9.287C23.904 9.479 24 9.71667 24 10C24 10.2833 23.904 10.5207 23.712 10.712C23.5207 10.904 23.2833 11 23 11H22V12C22 12.2833 21.904 12.5207 21.712 12.712C21.5207 12.904 21.2833 13 21 13ZM8 12C6.9 12 5.95833 11.6083 5.175 10.825C4.39167 10.0417 4 9.1 4 8C4 6.9 4.39167 5.95833 5.175 5.175C5.95833 4.39167 6.9 4 8 4C9.1 4 10.0417 4.39167 10.825 5.175C11.6083 5.95833 12 6.9 12 8C12 9.1 11.6083 10.0417 10.825 10.825C10.0417 11.6083 9.1 12 8 12ZM1 20C0.716667 20 0.479333 19.904 0.288 19.712C0.096 19.5207 0 19.2833 0 19V17.2C0 16.6333 0.146 16.1123 0.438 15.637C0.729333 15.1623 1.11667 14.8 1.6 14.55C2.63333 14.0333 3.68333 13.6457 4.75 13.387C5.81667 13.129 6.9 13 8 13C9.1 13 10.1833 13.129 11.25 13.387C12.3167 13.6457 13.3667 14.0333 14.4 14.55C14.8833 14.8 15.2707 15.1623 15.562 15.637C15.854 16.1123 16 16.6333 16 17.2V19C16 19.2833 15.9043 19.5207 15.713 19.712C15.521 19.904 15.2833 20 15 20H1Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hand.svg b/@stellar/design-system/src/assets/icons/hand.svg
new file mode 100644
index 00000000..3d560a4d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hand.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.9 11.4444V14.2222M6.9 11.4444V4.77778C6.9 3.8573 7.66112 3.11111 8.6 3.11111C9.53888 3.11111 10.3 3.8573 10.3 4.77778M6.9 11.4444C6.9 10.524 6.13888 9.77778 5.2 9.77778C4.26112 9.77778 3.5 10.524 3.5 11.4444V13.6667C3.5 18.269 7.30558 22 12 22C16.6944 22 20.5 18.269 20.5 13.6667V8.11111C20.5 7.19064 19.7389 6.44444 18.8 6.44444C17.8611 6.44444 17.1 7.19064 17.1 8.11111M10.3 4.77778V10.8889M10.3 4.77778V3.66667C10.3 2.74619 11.0611 2 12 2C12.9389 2 13.7 2.74619 13.7 3.66667V4.77778M13.7 4.77778V10.8889M13.7 4.77778C13.7 3.8573 14.4611 3.11111 15.4 3.11111C16.3389 3.11111 17.1 3.8573 17.1 4.77778V8.11111M17.1 8.11111V10.8889" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hard-drive.svg b/@stellar/design-system/src/assets/icons/hard-drive.svg
new file mode 100644
index 00000000..ce3dda17
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hard-drive.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.5 12H21.5M6 16H10M8.96656 4H15.0334C16.1103 4 16.6487 4 17.1241 4.16396C17.5445 4.30896 17.9274 4.5456 18.2451 4.85675C18.6043 5.2086 18.8451 5.6902 19.3267 6.65337L21.4932 10.9865C21.6822 11.3645 21.7767 11.5535 21.8434 11.7515C21.9026 11.9275 21.9453 12.1085 21.971 12.2923C22 12.4992 22 12.7105 22 13.1331V15.2C22 16.8802 22 17.7202 21.673 18.362C21.3854 18.9265 20.9265 19.3854 20.362 19.673C19.7202 20 18.8802 20 17.2 20H6.8C5.11984 20 4.27976 20 3.63803 19.673C3.07354 19.3854 2.6146 18.9265 2.32698 18.362C2 17.7202 2 16.8802 2 15.2V13.1331C2 12.7105 2 12.4992 2.02897 12.2923C2.05471 12.1085 2.09744 11.9275 2.15662 11.7515C2.22326 11.5535 2.31776 11.3645 2.50675 10.9865L4.67331 6.65337C5.1549 5.69019 5.3957 5.2086 5.75495 4.85675C6.07263 4.5456 6.45551 4.30896 6.87589 4.16396C7.35125 4 7.88969 4 8.96656 4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hash-01.svg b/@stellar/design-system/src/assets/icons/hash-01.svg
new file mode 100644
index 00000000..52ce2fba
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hash-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 8H20M4 16H20M8 3V21M16 3V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hash-02.svg b/@stellar/design-system/src/assets/icons/hash-02.svg
new file mode 100644
index 00000000..8fe8ed37
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hash-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.49999 3L6.49999 21M17.5 3L14.5 21M20.5 8H3.5M19.5 16H2.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heading-01.svg b/@stellar/design-system/src/assets/icons/heading-01.svg
new file mode 100644
index 00000000..1ba4d7b7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heading-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 4V20M18 4V20M8 4H4M18 12L6 12M8 20H4M20 20H16M20 4H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heading-02.svg b/@stellar/design-system/src/assets/icons/heading-02.svg
new file mode 100644
index 00000000..ea7d0080
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heading-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 4V20M18 4V20M9.5 4V20M11.5 4H4M18 12H9.5M11.5 20H4M20 20H16M20 4H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heading-square.svg b/@stellar/design-system/src/assets/icons/heading-square.svg
new file mode 100644
index 00000000..f2494f1f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heading-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 7V17M16 7V17M16 12L8 12M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/headphones-01.svg b/@stellar/design-system/src/assets/icons/headphones-01.svg
new file mode 100644
index 00000000..90a9faa1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/headphones-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 18V12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12V18M5.5 21C4.11929 21 3 19.8807 3 18.5V16.5C3 15.1193 4.11929 14 5.5 14C6.88071 14 8 15.1193 8 16.5V18.5C8 19.8807 6.88071 21 5.5 21ZM18.5 21C17.1193 21 16 19.8807 16 18.5V16.5C16 15.1193 17.1193 14 18.5 14C19.8807 14 21 15.1193 21 16.5V18.5C21 19.8807 19.8807 21 18.5 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/headphones-02.svg b/@stellar/design-system/src/assets/icons/headphones-02.svg
new file mode 100644
index 00000000..3c125370
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/headphones-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 17V13C22 7.47715 17.5228 3 12 3C6.47715 3 2 7.47715 2 13V17M7.5 21C6.11929 21 5 19.8807 5 18.5V15.5C5 14.1193 6.11929 13 7.5 13C8.88071 13 10 14.1193 10 15.5V18.5C10 19.8807 8.88071 21 7.5 21ZM16.5 21C15.1193 21 14 19.8807 14 18.5V15.5C14 14.1193 15.1193 13 16.5 13C17.8807 13 19 14.1193 19 15.5V18.5C19 19.8807 17.8807 21 16.5 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-circle.svg b/@stellar/design-system/src/assets/icons/heart-circle.svg
new file mode 100644
index 00000000..77192ae4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9966 9.06791C10.9969 7.8992 9.32987 7.58482 8.07735 8.65501C6.82482 9.72519 6.64848 11.5145 7.6321 12.7802C8.26211 13.5909 9.87558 15.0942 10.9542 16.0704C11.3127 16.3947 11.4919 16.5569 11.7066 16.622C11.8911 16.6779 12.102 16.6779 12.2866 16.622C12.5012 16.5569 12.6805 16.3947 13.0389 16.0704C14.1176 15.0942 15.731 13.5909 16.3611 12.7802C17.3447 11.5145 17.1899 9.71393 15.9158 8.65501C14.6417 7.59608 12.9963 7.8992 11.9966 9.06791Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-hand.svg b/@stellar/design-system/src/assets/icons/heart-hand.svg
new file mode 100644
index 00000000..ef5dd930
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-hand.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 20.0872H8.61029C8.95063 20.0872 9.28888 20.1277 9.61881 20.2087L12.3769 20.8789C12.9753 21.0247 13.5988 21.0389 14.2035 20.9214L17.253 20.3281C18.0585 20.1712 18.7996 19.7855 19.3803 19.2205L21.5379 17.1217C22.154 16.5234 22.154 15.5524 21.5379 14.9531C20.9832 14.4135 20.1047 14.3527 19.4771 14.8103L16.9626 16.6449C16.6025 16.9081 16.1643 17.0498 15.7137 17.0498H13.2855L14.8311 17.0498C15.7022 17.0498 16.4079 16.3633 16.4079 15.5159V15.2092C16.4079 14.5055 15.9156 13.892 15.2141 13.7219L12.8286 13.1418C12.4404 13.0476 12.0428 13 11.6431 13C10.6783 13 8.93189 13.7988 8.93189 13.7988L6 15.0249M2 14.6L2 20.4C2 20.9601 2 21.2401 2.10899 21.454C2.20487 21.6422 2.35785 21.7951 2.54601 21.891C2.75992 22 3.03995 22 3.6 22H4.4C4.96005 22 5.24008 22 5.45399 21.891C5.64215 21.7952 5.79513 21.6422 5.89101 21.454C6 21.2401 6 20.9601 6 20.4V14.6C6 14.04 6 13.7599 5.89101 13.546C5.79513 13.3579 5.64215 13.2049 5.45399 13.109C5.24008 13 4.96005 13 4.4 13H3.6C3.03995 13 2.75992 13 2.54601 13.109C2.35785 13.2049 2.20487 13.3579 2.10899 13.546C2 13.7599 2 14.04 2 14.6ZM17.1914 3.59227C16.5946 2.34341 15.2186 1.6818 13.8804 2.32039C12.5423 2.95898 11.9722 4.4734 12.5325 5.80284C12.8787 6.62448 13.8707 8.22002 14.5781 9.31905C14.8394 9.72513 14.9701 9.92817 15.161 10.0469C15.3247 10.1488 15.5297 10.2037 15.7224 10.1974C15.9471 10.1899 16.1618 10.0794 16.5911 9.85845C17.7532 9.26033 19.4101 8.37457 20.1208 7.83614C21.2707 6.96494 21.5556 5.36359 20.6947 4.14626C19.8337 2.92892 18.3327 2.80914 17.1914 3.59227Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-hexagon.svg b/@stellar/design-system/src/assets/icons/heart-hexagon.svg
new file mode 100644
index 00000000..c5411b79
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-hexagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.223 2.43164C11.5066 2.27409 11.6484 2.19531 11.7985 2.16442C11.9315 2.13709 12.0685 2.13709 12.2015 2.16442C12.3516 2.19531 12.4934 2.27409 12.777 2.43164L20.177 6.54276C20.4766 6.70916 20.6263 6.79236 20.7354 6.9107C20.8318 7.01539 20.9049 7.13947 20.9495 7.27464C21 7.42744 21 7.59876 21 7.94141V16.0585C21 16.4012 21 16.5725 20.9495 16.7253C20.9049 16.8605 20.8318 16.9845 20.7354 17.0892C20.6263 17.2076 20.4766 17.2908 20.177 17.4572L12.777 21.5683C12.4934 21.7258 12.3516 21.8046 12.2015 21.8355C12.0685 21.8628 11.9315 21.8628 11.7985 21.8355C11.6484 21.8046 11.5066 21.7258 11.223 21.5683L3.82297 17.4572C3.52345 17.2908 3.37369 17.2076 3.26463 17.0892C3.16816 16.9845 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V7.94141C3 7.59876 3 7.42744 3.05048 7.27464C3.09515 7.13947 3.16816 7.01539 3.26463 6.9107C3.37369 6.79236 3.52345 6.70916 3.82297 6.54276L11.223 2.43164Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9966 9.06787C10.9969 7.89916 9.32987 7.58478 8.07735 8.65497C6.82482 9.72515 6.64848 11.5145 7.6321 12.7802C8.26211 13.5909 9.87558 15.0942 10.9542 16.0703C11.3127 16.3947 11.4919 16.5569 11.7066 16.6219C11.8911 16.6779 12.102 16.6779 12.2866 16.6219C12.5012 16.5569 12.6805 16.3947 13.0389 16.0703C14.1176 15.0942 15.731 13.5909 16.3611 12.7802C17.3447 11.5145 17.1899 9.7139 15.9158 8.65497C14.6417 7.59604 12.9963 7.89916 11.9966 9.06787Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-octagon.svg b/@stellar/design-system/src/assets/icons/heart-octagon.svg
new file mode 100644
index 00000000..efdbecba
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.39137 2.46863C7.56432 2.29568 7.6508 2.2092 7.75172 2.14736C7.84119 2.09253 7.93873 2.05213 8.04077 2.02763C8.15586 2 8.27815 2 8.52274 2H15.4773C15.7218 2 15.8441 2 15.9592 2.02763C16.0613 2.05213 16.1588 2.09253 16.2483 2.14736C16.3492 2.2092 16.4357 2.29568 16.6086 2.46863L21.5314 7.39137C21.7043 7.56432 21.7908 7.6508 21.8526 7.75172C21.9075 7.84119 21.9479 7.93873 21.9724 8.04077C22 8.15586 22 8.27815 22 8.52274V15.4773C22 15.7218 22 15.8441 21.9724 15.9592C21.9479 16.0613 21.9075 16.1588 21.8526 16.2483C21.7908 16.3492 21.7043 16.4357 21.5314 16.6086L16.6086 21.5314C16.4357 21.7043 16.3492 21.7908 16.2483 21.8526C16.1588 21.9075 16.0613 21.9479 15.9592 21.9724C15.8441 22 15.7218 22 15.4773 22H8.52274C8.27815 22 8.15586 22 8.04077 21.9724C7.93873 21.9479 7.84119 21.9075 7.75172 21.8526C7.6508 21.7908 7.56432 21.7043 7.39137 21.5314L2.46863 16.6086C2.29568 16.4357 2.2092 16.3492 2.14736 16.2483C2.09253 16.1588 2.05213 16.0613 2.02763 15.9592C2 15.8441 2 15.7218 2 15.4773V8.52274C2 8.27815 2 8.15586 2.02763 8.04077C2.05213 7.93873 2.09253 7.84119 2.14736 7.75172C2.2092 7.6508 2.29568 7.56432 2.46863 7.39137L7.39137 2.46863Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9966 9.06791C10.9969 7.8992 9.32987 7.58482 8.07735 8.65501C6.82482 9.72519 6.64848 11.5145 7.6321 12.7802C8.26211 13.5909 9.87558 15.0942 10.9542 16.0704C11.3127 16.3947 11.4919 16.5569 11.7066 16.622C11.8911 16.6779 12.102 16.6779 12.2866 16.622C12.5012 16.5569 12.6805 16.3947 13.0389 16.0704C14.1176 15.0942 15.731 13.5909 16.3611 12.7802C17.3447 11.5145 17.1899 9.71393 15.9158 8.65501C14.6417 7.59608 12.9963 7.8992 11.9966 9.06791Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-rounded.svg b/@stellar/design-system/src/assets/icons/heart-rounded.svg
new file mode 100644
index 00000000..0d00012f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-rounded.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.1111 3C19.6333 3 22 6.3525 22 9.48C22 15.8138 12.1778 21 12 21C11.8222 21 2 15.8138 2 9.48C2 6.3525 4.36667 3 7.88889 3C9.91111 3 11.2333 4.02375 12 4.92375C12.7667 4.02375 14.0889 3 16.1111 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart-square.svg b/@stellar/design-system/src/assets/icons/heart-square.svg
new file mode 100644
index 00000000..46864c63
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9966 9.06791C10.9969 7.8992 9.32987 7.58482 8.07735 8.65501C6.82482 9.72519 6.64848 11.5145 7.6321 12.7802C8.26211 13.5909 9.87558 15.0942 10.9542 16.0704C11.3127 16.3947 11.4919 16.5569 11.7066 16.622C11.8911 16.6779 12.102 16.6779 12.2866 16.622C12.5012 16.5569 12.6805 16.3947 13.0389 16.0704C14.1176 15.0942 15.731 13.5909 16.3611 12.7802C17.3447 11.5145 17.1899 9.71393 15.9158 8.65501C14.6417 7.59608 12.9963 7.8992 11.9966 9.06791Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/heart.svg b/@stellar/design-system/src/assets/icons/heart.svg
new file mode 100644
index 00000000..b9d59048
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/heart.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9932 5.13581C9.9938 2.7984 6.65975 2.16964 4.15469 4.31001C1.64964 6.45038 1.29697 10.029 3.2642 12.5604C4.89982 14.6651 9.84977 19.1041 11.4721 20.5408C11.6536 20.7016 11.7444 20.7819 11.8502 20.8135C11.9426 20.8411 12.0437 20.8411 12.1361 20.8135C12.2419 20.7819 12.3327 20.7016 12.5142 20.5408C14.1365 19.1041 19.0865 14.6651 20.7221 12.5604C22.6893 10.029 22.3797 6.42787 19.8316 4.31001C17.2835 2.19216 13.9925 2.7984 11.9932 5.13581Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hearts.svg b/@stellar/design-system/src/assets/icons/hearts.svg
new file mode 100644
index 00000000..7d78febe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hearts.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.5455 9.92543C15.9195 9.26103 16.2313 8.66151 16.4236 8.20521C17.3573 5.98947 16.434 3.44077 14.1769 2.40112C11.9199 1.36148 9.65341 2.4395 8.65871 4.52093C6.75657 3.2157 4.21918 3.40739 2.81989 5.44424C1.42059 7.48108 1.85975 10.142 3.77629 11.594C4.6461 12.253 6.36636 13.2242 7.98596 14.0884M16.2972 11.7499C15.8751 9.482 13.9454 7.82334 11.5156 8.27415C9.08592 8.72497 7.51488 10.9171 7.84335 13.299C8.10725 15.2127 9.56392 19.7027 10.1264 21.394C10.2032 21.6248 10.2415 21.7402 10.3175 21.8206C10.3837 21.8907 10.4717 21.9416 10.5655 21.9638C10.6732 21.9894 10.7923 21.9649 11.0306 21.916C12.7765 21.5575 17.3933 20.574 19.1826 19.8457C21.4096 18.9392 22.5589 16.4841 21.6981 14.153C20.8372 11.8219 18.4723 10.9815 16.2972 11.7499Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/help-circle.svg b/@stellar/design-system/src/assets/icons/help-circle.svg
new file mode 100644
index 00000000..e2168a49
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/help-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/help-hexagon.svg b/@stellar/design-system/src/assets/icons/help-hexagon.svg
new file mode 100644
index 00000000..b895fec9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/help-hexagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.08997 8.99995C9.32507 8.33162 9.78912 7.76806 10.3999 7.40908C11.0107 7.05011 11.7289 6.91889 12.4271 7.03866C13.1254 7.15844 13.7588 7.52148 14.215 8.06348C14.6713 8.60548 14.921 9.29147 14.92 9.99995C14.92 12 11.92 13 11.92 13M12 17H12.01M3 7.94141V16.0585C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9845 3.26463 17.0892C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7258 11.6484 21.8046 11.7985 21.8355C11.9315 21.8628 12.0685 21.8628 12.2015 21.8355C12.3516 21.8046 12.4934 21.7258 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0892C20.8318 16.9845 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0585V7.94141C21 7.59876 21 7.42744 20.9495 7.27464C20.9049 7.13947 20.8318 7.01539 20.7354 6.9107C20.6263 6.79236 20.4766 6.70916 20.177 6.54276L12.777 2.43164C12.4934 2.27409 12.3516 2.19531 12.2015 2.16442C12.0685 2.13709 11.9315 2.13709 11.7985 2.16442C11.6484 2.19531 11.5066 2.27409 11.223 2.43164L3.82297 6.54276C3.52345 6.70916 3.37369 6.79236 3.26463 6.9107C3.16816 7.01539 3.09515 7.13947 3.05048 7.27464C3 7.42744 3 7.59876 3 7.94141Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/help-octagon.svg b/@stellar/design-system/src/assets/icons/help-octagon.svg
new file mode 100644
index 00000000..7c53db46
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/help-octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.08997 8.99999C9.32507 8.33166 9.78912 7.7681 10.3999 7.40912C11.0107 7.05015 11.7289 6.91893 12.4271 7.0387C13.1254 7.15848 13.7588 7.52151 14.215 8.06352C14.6713 8.60552 14.921 9.29151 14.92 9.99999C14.92 12 11.92 13 11.92 13M12 17H12.01M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/help-square.svg b/@stellar/design-system/src/assets/icons/help-square.svg
new file mode 100644
index 00000000..6e2eac9b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/help-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/help.svg b/@stellar/design-system/src/assets/icons/help.svg
deleted file mode 100644
index 923f432e..00000000
--- a/@stellar/design-system/src/assets/icons/help.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6837)"><path d="M11.95 18C12.3 18 12.596 17.879 12.838 17.637C13.0793 17.3957 13.2 17.1 13.2 16.75C13.2 16.4 13.0793 16.1043 12.838 15.863C12.596 15.621 12.3 15.5 11.95 15.5C11.6 15.5 11.304 15.621 11.062 15.863C10.8207 16.1043 10.7 16.4 10.7 16.75C10.7 17.1 10.8207 17.3957 11.062 17.637C11.304 17.879 11.6 18 11.95 18ZM12.1 7.7C12.5667 7.7 12.9417 7.829 13.225 8.087C13.5083 8.34567 13.65 8.68333 13.65 9.1C13.65 9.38333 13.5543 9.67067 13.363 9.962C13.171 10.254 12.9 10.5583 12.55 10.875C12.05 11.3083 11.6833 11.725 11.45 12.125C11.2167 12.525 11.1 12.925 11.1 13.325C11.1 13.5583 11.1877 13.754 11.363 13.912C11.5377 14.0707 11.7417 14.15 11.975 14.15C12.2083 14.15 12.4167 14.0667 12.6 13.9C12.7833 13.7333 12.9 13.525 12.95 13.275C13 12.9917 13.1127 12.7293 13.288 12.488C13.4627 12.246 13.75 11.9333 14.15 11.55C14.6667 11.0667 15.0293 10.625 15.238 10.225C15.446 9.825 15.55 9.38333 15.55 8.9C15.55 8.05 15.2293 7.354 14.588 6.812C13.946 6.27067 13.1167 6 12.1 6C11.4 6 10.7793 6.13333 10.238 6.4C9.696 6.66667 9.275 7.075 8.975 7.625C8.85833 7.84167 8.81667 8.054 8.85 8.262C8.88333 8.47067 9 8.64167 9.2 8.775C9.41667 8.90833 9.65433 8.95 9.913 8.9C10.171 8.85 10.3833 8.70833 10.55 8.475C10.7333 8.225 10.9543 8.03333 11.213 7.9C11.471 7.76667 11.7667 7.7 12.1 7.7ZM12 22C10.6333 22 9.34167 21.7373 8.125 21.212C6.90833 20.6873 5.846 19.975 4.938 19.075C4.02933 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.02933 5.825 4.938 4.925C5.846 4.025 6.90833 3.31233 8.125 2.787C9.34167 2.26233 10.6333 2 12 2C13.4 2 14.7083 2.26233 15.925 2.787C17.1417 3.31233 18.2 4.025 19.1 4.925C20 5.825 20.7083 6.88333 21.225 8.1C21.7417 9.31667 22 10.6167 22 12C22 13.3833 21.7417 14.6833 21.225 15.9C20.7083 17.1167 20 18.175 19.1 19.075C18.2 19.975 17.1417 20.6873 15.925 21.212C14.7083 21.7373 13.4 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6837"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hexagon-01.svg b/@stellar/design-system/src/assets/icons/hexagon-01.svg
new file mode 100644
index 00000000..2738fcc9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hexagon-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.223 2.43164C11.5066 2.27409 11.6484 2.19531 11.7985 2.16442C11.9315 2.13709 12.0685 2.13709 12.2015 2.16442C12.3516 2.19531 12.4934 2.27409 12.777 2.43164L20.177 6.54276C20.4766 6.70916 20.6263 6.79236 20.7354 6.9107C20.8318 7.01539 20.9049 7.13947 20.9495 7.27464C21 7.42744 21 7.59876 21 7.94141V16.0585C21 16.4012 21 16.5725 20.9495 16.7253C20.9049 16.8605 20.8318 16.9845 20.7354 17.0892C20.6263 17.2076 20.4766 17.2908 20.177 17.4572L12.777 21.5683C12.4934 21.7258 12.3516 21.8046 12.2015 21.8355C12.0685 21.8628 11.9315 21.8628 11.7985 21.8355C11.6484 21.8046 11.5066 21.7258 11.223 21.5683L3.82297 17.4572C3.52345 17.2908 3.37369 17.2076 3.26463 17.0892C3.16816 16.9845 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V7.94141C3 7.59876 3 7.42744 3.05048 7.27464C3.09515 7.13947 3.16816 7.01539 3.26463 6.9107C3.37369 6.79236 3.52345 6.70916 3.82297 6.54276L11.223 2.43164Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hexagon-02.svg b/@stellar/design-system/src/assets/icons/hexagon-02.svg
new file mode 100644
index 00000000..76365d74
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hexagon-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.5679 11.223C21.7255 11.5066 21.8042 11.6484 21.8351 11.7985C21.8625 11.9315 21.8625 12.0685 21.8351 12.2015C21.8042 12.3516 21.7255 12.4934 21.5679 12.777L17.4568 20.177C17.2904 20.4766 17.2072 20.6263 17.0889 20.7354C16.9842 20.8318 16.8601 20.9049 16.7249 20.9495C16.5721 21 16.4008 21 16.0582 21H7.94104C7.5984 21 7.42708 21 7.27428 20.9495C7.1391 20.9049 7.01502 20.8318 6.91033 20.7354C6.79199 20.6263 6.70879 20.4766 6.54239 20.177L2.43128 12.777C2.27372 12.4934 2.19494 12.3516 2.16406 12.2015C2.13672 12.0685 2.13672 11.9315 2.16406 11.7985C2.19494 11.6484 2.27372 11.5066 2.43128 11.223L6.54239 3.82297C6.70879 3.52345 6.79199 3.37369 6.91033 3.26463C7.01502 3.16816 7.1391 3.09515 7.27428 3.05048C7.42708 3 7.5984 3 7.94104 3L16.0582 3C16.4008 3 16.5721 3 16.7249 3.05049C16.8601 3.09515 16.9842 3.16816 17.0889 3.26463C17.2072 3.37369 17.2904 3.52345 17.4568 3.82297L21.5679 11.223Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hide.svg b/@stellar/design-system/src/assets/icons/hide.svg
deleted file mode 100644
index bb4c3c40..00000000
--- a/@stellar/design-system/src/assets/icons/hide.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M18.9856 16.6463L15.7856 13.4463C15.9189 13.163 16.0189 12.8755 16.0856 12.5838C16.1523 12.2921 16.1856 11.9796 16.1856 11.6463C16.1856 10.3963 15.7481 9.33381 14.8731 8.45881C13.9981 7.58381 12.9356 7.14631 11.6856 7.14631C11.3523 7.14631 11.0398 7.17964 10.7481 7.24631C10.4564 7.31297 10.1689 7.41297 9.8856 7.54631L7.3356 4.99631C8.01893 4.71297 8.71893 4.50047 9.4356 4.35881C10.1523 4.21714 10.9023 4.14631 11.6856 4.14631C14.0689 4.14631 16.2106 4.77547 18.1106 6.03381C20.0106 7.29214 21.4356 8.92964 22.3856 10.9463C22.4356 11.0296 22.4689 11.1338 22.4856 11.2588C22.5023 11.3838 22.5106 11.513 22.5106 11.6463C22.5106 11.7796 22.4981 11.9088 22.4731 12.0338C22.4481 12.1588 22.4189 12.263 22.3856 12.3463C22.0023 13.1963 21.5231 13.988 20.9481 14.7213C20.3731 15.4546 19.7189 16.0963 18.9856 16.6463ZM18.7856 22.0463L15.2856 18.5963C14.7023 18.7796 14.1148 18.9171 13.5231 19.0088C12.9314 19.1005 12.3189 19.1463 11.6856 19.1463C9.30226 19.1463 7.1606 18.5171 5.2606 17.2588C3.3606 16.0005 1.9356 14.363 0.985596 12.3463C0.935596 12.263 0.902262 12.1588 0.885596 12.0338C0.868929 11.9088 0.860596 11.7796 0.860596 11.6463C0.860596 11.513 0.868929 11.388 0.885596 11.2713C0.902262 11.1546 0.935596 11.0546 0.985596 10.9713C1.3356 10.2213 1.75226 9.52964 2.2356 8.89631C2.71893 8.26297 3.25226 7.67964 3.8356 7.14631L1.7606 5.04631C1.57726 4.86297 1.4856 4.63381 1.4856 4.35881C1.4856 4.08381 1.5856 3.84631 1.7856 3.64631C1.96893 3.46297 2.20226 3.37131 2.4856 3.37131C2.76893 3.37131 3.00226 3.46297 3.1856 3.64631L20.1856 20.6463C20.3689 20.8296 20.4648 21.0588 20.4731 21.3338C20.4814 21.6088 20.3856 21.8463 20.1856 22.0463C20.0023 22.2296 19.7689 22.3213 19.4856 22.3213C19.2023 22.3213 18.9689 22.2296 18.7856 22.0463ZM11.6856 16.1463C11.8689 16.1463 12.0398 16.138 12.1981 16.1213C12.3564 16.1046 12.5273 16.0713 12.7106 16.0213L7.3106 10.6213C7.2606 10.8046 7.22726 10.9755 7.2106 11.1338C7.19393 11.2921 7.1856 11.463 7.1856 11.6463C7.1856 12.8963 7.6231 13.9588 8.4981 14.8338C9.3731 15.7088 10.4356 16.1463 11.6856 16.1463ZM14.3356 11.9963L11.3356 8.99631C12.2856 8.84631 13.0606 9.11297 13.6606 9.79631C14.2606 10.4796 14.4856 11.213 14.3356 11.9963Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/history.svg b/@stellar/design-system/src/assets/icons/history.svg
deleted file mode 100644
index 1a284b6f..00000000
--- a/@stellar/design-system/src/assets/icons/history.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6834)"><path d="M13 11.6L15.5 14.1C15.6833 14.2833 15.775 14.5167 15.775 14.8C15.775 15.0833 15.6833 15.3167 15.5 15.5C15.3167 15.6833 15.0833 15.775 14.8 15.775C14.5167 15.775 14.2833 15.6833 14.1 15.5L11.3 12.7C11.2 12.6 11.125 12.4873 11.075 12.362C11.025 12.2373 11 12.1083 11 11.975V8C11 7.71667 11.096 7.479 11.288 7.287C11.4793 7.09567 11.7167 7 12 7C12.2833 7 12.521 7.09567 12.713 7.287C12.9043 7.479 13 7.71667 13 8V11.6ZM12 21C9.98333 21 8.175 20.404 6.575 19.212C4.975 18.0207 3.9 16.4667 3.35 14.55C3.26667 14.25 3.296 13.9667 3.438 13.7C3.57933 13.4333 3.8 13.2667 4.1 13.2C4.38333 13.1333 4.63767 13.1957 4.863 13.387C5.08767 13.579 5.24167 13.8167 5.325 14.1C5.75833 15.5667 6.596 16.75 7.838 17.65C9.07933 18.55 10.4667 19 12 19C13.95 19 15.604 18.3207 16.962 16.962C18.3207 15.604 19 13.95 19 12C19 10.05 18.3207 8.39567 16.962 7.037C15.604 5.679 13.95 5 12 5C10.85 5 9.775 5.26667 8.775 5.8C7.775 6.33333 6.93333 7.06667 6.25 8H8C8.28333 8 8.521 8.09567 8.713 8.287C8.90433 8.479 9 8.71667 9 9C9 9.28333 8.90433 9.52067 8.713 9.712C8.521 9.904 8.28333 10 8 10H4C3.71667 10 3.47933 9.904 3.288 9.712C3.096 9.52067 3 9.28333 3 9V5C3 4.71667 3.096 4.479 3.288 4.287C3.47933 4.09567 3.71667 4 4 4C4.28333 4 4.521 4.09567 4.713 4.287C4.90433 4.479 5 4.71667 5 5V6.35C5.85 5.28333 6.88767 4.45833 8.113 3.875C9.33767 3.29167 10.6333 3 12 3C13.25 3 14.421 3.23733 15.513 3.712C16.6043 4.18733 17.5543 4.829 18.363 5.637C19.171 6.44567 19.8127 7.39567 20.288 8.487C20.7627 9.579 21 10.75 21 12C21 13.25 20.7627 14.4207 20.288 15.512C19.8127 16.604 19.171 17.554 18.363 18.362C17.5543 19.1707 16.6043 19.8127 15.513 20.288C14.421 20.7627 13.25 21 12 21Z"/></g><defs><clipPath id="clip0_1113_6834"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-01.svg b/@stellar/design-system/src/assets/icons/home-01.svg
new file mode 100644
index 00000000..bb27e5e3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 10.5651C3 9.9907 3 9.70352 3.07403 9.43905C3.1396 9.20478 3.24737 8.98444 3.39203 8.78886C3.55534 8.56806 3.78202 8.39175 4.23539 8.03912L11.0177 2.764C11.369 2.49075 11.5447 2.35412 11.7387 2.3016C11.9098 2.25526 12.0902 2.25526 12.2613 2.3016C12.4553 2.35412 12.631 2.49075 12.9823 2.764L19.7646 8.03913C20.218 8.39175 20.4447 8.56806 20.608 8.78886C20.7526 8.98444 20.8604 9.20478 20.926 9.43905C21 9.70352 21 9.9907 21 10.5651V17.8C21 18.9201 21 19.4801 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.4802 21 18.9201 21 17.8 21H6.2C5.07989 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4801 3 18.9201 3 17.8V10.5651Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-02.svg b/@stellar/design-system/src/assets/icons/home-02.svg
new file mode 100644
index 00000000..32c3d29e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 21V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-03.svg b/@stellar/design-system/src/assets/icons/home-03.svg
new file mode 100644
index 00000000..fffb7feb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 21V13.6C9 13.0399 9 12.7599 9.109 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75993 12 10.04 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M2 9.5L11.04 2.72C11.3843 2.46181 11.5564 2.33271 11.7454 2.28294C11.9123 2.23902 12.0877 2.23902 12.2546 2.28295C12.4436 2.33271 12.6157 2.46181 12.96 2.72L22 9.5M4 8V17.8C4 18.9201 4 19.4802 4.21799 19.908C4.40974 20.2843 4.7157 20.5903 5.09202 20.782C5.51985 21 6.0799 21 7.2 21H16.8C17.9201 21 18.4802 21 18.908 20.782C19.2843 20.5903 19.5903 20.2843 19.782 19.908C20 19.4802 20 18.9201 20 17.8V8L13.92 3.44C13.2315 2.92361 12.8872 2.66542 12.5091 2.56589C12.1754 2.47804 11.8246 2.47804 11.4909 2.56589C11.1128 2.66542 10.7685 2.92361 10.08 3.44L4 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-04.svg b/@stellar/design-system/src/assets/icons/home-04.svg
new file mode 100644
index 00000000..94a52fe7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16C13.6569 16 15 14.6568 15 13C15 11.3431 13.6569 9.99998 12 9.99998C10.3431 9.99998 9 11.3431 9 13C9 14.6568 10.3431 16 12 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 10.5651C3 9.9907 3 9.70352 3.07403 9.43905C3.1396 9.20478 3.24737 8.98444 3.39203 8.78886C3.55534 8.56806 3.78202 8.39175 4.23539 8.03912L11.0177 2.764C11.369 2.49075 11.5447 2.35412 11.7387 2.3016C11.9098 2.25526 12.0902 2.25526 12.2613 2.3016C12.4553 2.35412 12.631 2.49075 12.9823 2.764L19.7646 8.03913C20.218 8.39175 20.4447 8.56806 20.608 8.78886C20.7526 8.98444 20.8604 9.20478 20.926 9.43905C21 9.70352 21 9.9907 21 10.5651V17.8C21 18.9201 21 19.4801 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.4802 21 18.9201 21 17.8 21H6.2C5.07989 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4801 3 18.9201 3 17.8V10.5651Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-05.svg b/@stellar/design-system/src/assets/icons/home-05.svg
new file mode 100644
index 00000000..4d3f560f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.0799 21 6.2 21H8.2C8.48003 21 8.62004 21 8.727 20.9455C8.82108 20.8976 8.89757 20.8211 8.9455 20.727C9 20.62 9 20.48 9 20.2V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V20.2C15 20.48 15 20.62 15.0545 20.727C15.1024 20.8211 15.1789 20.8976 15.273 20.9455C15.38 21 15.52 21 15.8 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-line.svg b/@stellar/design-system/src/assets/icons/home-line.svg
new file mode 100644
index 00000000..8c8d1fed
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-line.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 17H16M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home-smile.svg b/@stellar/design-system/src/assets/icons/home-smile.svg
new file mode 100644
index 00000000..4f8e21f1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/home-smile.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.12602 14C8.57006 15.7252 10.1362 17 12 17C13.8638 17 15.4299 15.7252 15.874 14M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/home.svg b/@stellar/design-system/src/assets/icons/home.svg
deleted file mode 100644
index 2e67c988..00000000
--- a/@stellar/design-system/src/assets/icons/home.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6831)"><path d="M6 21C5.45 21 4.97933 20.8043 4.588 20.413C4.196 20.021 4 19.55 4 19V10C4 9.68333 4.071 9.38333 4.213 9.1C4.35433 8.81667 4.55 8.58333 4.8 8.4L10.8 3.9C10.9833 3.76667 11.175 3.66667 11.375 3.6C11.575 3.53333 11.7833 3.5 12 3.5C12.2167 3.5 12.425 3.53333 12.625 3.6C12.825 3.66667 13.0167 3.76667 13.2 3.9L19.2 8.4C19.45 8.58333 19.646 8.81667 19.788 9.1C19.9293 9.38333 20 9.68333 20 10V19C20 19.55 19.8043 20.021 19.413 20.413C19.021 20.8043 18.55 21 18 21H14V14H10V21H6Z"/></g><defs><clipPath id="clip0_1113_6831"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/horizontal-bar-chart-01.svg b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-01.svg
new file mode 100644
index 00000000..c1669252
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 9.5V6.1C17 5.53995 17 5.25992 16.891 5.04601C16.7951 4.85785 16.6422 4.70487 16.454 4.60899C16.2401 4.5 15.9601 4.5 15.4 4.5H3M13 14.5V17.9C13 18.4601 13 18.7401 12.891 18.954C12.7951 19.1422 12.6422 19.2951 12.454 19.391C12.2401 19.5 11.9601 19.5 11.4 19.5H3M3 2L3 22M3 14.5L19.4 14.5C19.9601 14.5 20.2401 14.5 20.454 14.391C20.6422 14.2951 20.7951 14.1422 20.891 13.954C21 13.7401 21 13.4601 21 12.9V11.1C21 10.5399 21 10.2599 20.891 10.046C20.7951 9.85785 20.6422 9.70487 20.454 9.60899C20.2401 9.5 19.9601 9.5 19.4 9.5L3 9.5L3 14.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/horizontal-bar-chart-02.svg b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-02.svg
new file mode 100644
index 00000000..1423584a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 9.5V12.9C17 13.4601 17 13.7401 16.891 13.954C16.7951 14.1422 16.6422 14.2951 16.454 14.391C16.2401 14.5 15.9601 14.5 15.4 14.5L3 14.5M13 14.5V17.9C13 18.4601 13 18.7401 12.891 18.954C12.7951 19.1422 12.6422 19.2951 12.454 19.391C12.2401 19.5 11.9601 19.5 11.4 19.5H3M3 2L3 22M3 9.5L19.4 9.5C19.9601 9.5 20.2401 9.5 20.454 9.39101C20.6422 9.29513 20.7951 9.14215 20.891 8.95399C21 8.74008 21 8.46005 21 7.9V6.1C21 5.53995 21 5.25992 20.891 5.04601C20.7951 4.85785 20.6422 4.70487 20.454 4.60899C20.2401 4.5 19.9601 4.5 19.4 4.5L3 4.5L3 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/horizontal-bar-chart-03.svg b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-03.svg
new file mode 100644
index 00000000..133c7d3a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/horizontal-bar-chart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 9.5V6.1C13 5.53995 13 5.25992 12.891 5.04601C12.7951 4.85785 12.6422 4.70487 12.454 4.60899C12.2401 4.5 11.9601 4.5 11.4 4.5H3M17 14.5V11.1C17 10.5399 17 10.2599 16.891 10.046C16.7951 9.85785 16.6422 9.70487 16.454 9.60899C16.2401 9.5 15.9601 9.5 15.4 9.5H3M3 2L3 22M3 19.5H19.4C19.9601 19.5 20.2401 19.5 20.454 19.391C20.6422 19.2951 20.7951 19.1422 20.891 18.954C21 18.7401 21 18.4601 21 17.9V16.1C21 15.5399 21 15.2599 20.891 15.046C20.7951 14.8578 20.6422 14.7049 20.454 14.609C20.2401 14.5 19.9601 14.5 19.4 14.5L3 14.5L3 19.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-01.svg b/@stellar/design-system/src/assets/icons/hourglass-01.svg
new file mode 100644
index 00000000..32a138f5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hourglass-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12L7.72711 8.43926C7.09226 7.91022 6.77484 7.6457 6.54664 7.32144C6.34444 7.03413 6.19429 6.71354 6.10301 6.37428C6 5.99139 6 5.57819 6 4.7518V2M12 12L16.2729 8.43926C16.9077 7.91022 17.2252 7.6457 17.4534 7.32144C17.6556 7.03413 17.8057 6.71354 17.897 6.37428C18 5.99139 18 5.57819 18 4.7518V2M12 12L7.72711 15.5607C7.09226 16.0898 6.77484 16.3543 6.54664 16.6786C6.34444 16.9659 6.19429 17.2865 6.10301 17.6257C6 18.0086 6 18.4218 6 19.2482V22M12 12L16.2729 15.5607C16.9077 16.0898 17.2252 16.3543 17.4534 16.6786C17.6556 16.9659 17.8057 17.2865 17.897 17.6257C18 18.0086 18 18.4218 18 19.2482V22M4 2H20M4 22H20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-02.svg b/@stellar/design-system/src/assets/icons/hourglass-02.svg
new file mode 100644
index 00000000..bb853252
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hourglass-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.1626 2H5.83744C5.37494 2 5 2.37494 5 2.83744C5 5.50268 6.05876 8.05876 7.94337 9.94337L9.16256 11.1626C9.28363 11.2836 9.34417 11.3442 9.3875 11.4023C9.65188 11.7569 9.65188 12.2431 9.3875 12.5977C9.34417 12.6558 9.28363 12.7164 9.16256 12.8374L7.94337 14.0566C6.05876 15.9412 5 18.4973 5 21.1626C5 21.6251 5.37494 22 5.83744 22H18.1626C18.6251 22 19 21.6251 19 21.1626C19 18.4973 17.9412 15.9412 16.0566 14.0566L14.8374 12.8374C14.7164 12.7164 14.6558 12.6558 14.6125 12.5977C14.3481 12.2431 14.3481 11.7569 14.6125 11.4023C14.6558 11.3442 14.7164 11.2836 14.8374 11.1626L16.0566 9.94337C17.9412 8.05876 19 5.50268 19 2.83744C19 2.37494 18.6251 2 18.1626 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-03.svg b/@stellar/design-system/src/assets/icons/hourglass-03.svg
new file mode 100644
index 00000000..d40364cb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hourglass-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 18.5H15M6.6 2H17.4C17.9601 2 18.2401 2 18.454 2.10899C18.6422 2.20487 18.7951 2.35785 18.891 2.54601C19 2.75992 19 3.03995 19 3.6V5.67452C19 6.1637 19 6.40829 18.9447 6.63846C18.8957 6.84254 18.8149 7.03763 18.7053 7.21657C18.5816 7.4184 18.4086 7.59135 18.0627 7.93726L15.1314 10.8686C14.7354 11.2646 14.5373 11.4627 14.4632 11.691C14.3979 11.8918 14.3979 12.1082 14.4632 12.309C14.5373 12.5373 14.7354 12.7354 15.1314 13.1314L18.0627 16.0627C18.4086 16.4086 18.5816 16.5816 18.7053 16.7834C18.8149 16.9624 18.8957 17.1575 18.9447 17.3615C19 17.5917 19 17.8363 19 18.3255V20.4C19 20.9601 19 21.2401 18.891 21.454C18.7951 21.6422 18.6422 21.7951 18.454 21.891C18.2401 22 17.9601 22 17.4 22H6.6C6.03995 22 5.75992 22 5.54601 21.891C5.35785 21.7951 5.20487 21.6422 5.10899 21.454C5 21.2401 5 20.9601 5 20.4V18.3255C5 17.8363 5 17.5917 5.05526 17.3615C5.10425 17.1575 5.18506 16.9624 5.29472 16.7834C5.4184 16.5816 5.59135 16.4086 5.93726 16.0627L8.86863 13.1314C9.26465 12.7354 9.46265 12.5373 9.53684 12.309C9.6021 12.1082 9.6021 11.8918 9.53684 11.691C9.46266 11.4627 9.26464 11.2646 8.86863 10.8686L5.93726 7.93726C5.59136 7.59136 5.4184 7.4184 5.29472 7.21657C5.18506 7.03763 5.10425 6.84254 5.05526 6.63846C5 6.40829 5 6.1637 5 5.67452V3.6C5 3.03995 5 2.75992 5.10899 2.54601C5.20487 2.35785 5.35785 2.20487 5.54601 2.10899C5.75992 2 6.03995 2 6.6 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-bottom.svg b/@stellar/design-system/src/assets/icons/hourglass-bottom.svg
deleted file mode 100644
index 29bd8acc..00000000
--- a/@stellar/design-system/src/assets/icons/hourglass-bottom.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6828)"><path d="M12 11C13.1 11 14.0417 10.6083 14.825 9.825C15.6083 9.04167 16 8.1 16 7V4H8V7C8 8.1 8.39167 9.04167 9.175 9.825C9.95833 10.6083 10.9 11 12 11ZM19 22H5C4.71667 22 4.479 21.904 4.287 21.712C4.09567 21.5207 4 21.2833 4 21C4 20.7167 4.09567 20.4793 4.287 20.288C4.479 20.096 4.71667 20 5 20H6V17C6 15.9833 6.23767 15.029 6.713 14.137C7.18767 13.2457 7.85 12.5333 8.7 12C7.85 11.4667 7.18767 10.754 6.713 9.862C6.23767 8.97067 6 8.01667 6 7V4H5C4.71667 4 4.479 3.904 4.287 3.712C4.09567 3.52067 4 3.28333 4 3C4 2.71667 4.09567 2.479 4.287 2.287C4.479 2.09567 4.71667 2 5 2H19C19.2833 2 19.5207 2.09567 19.712 2.287C19.904 2.479 20 2.71667 20 3C20 3.28333 19.904 3.52067 19.712 3.712C19.5207 3.904 19.2833 4 19 4H18V7C18 8.01667 17.7627 8.97067 17.288 9.862C16.8127 10.754 16.15 11.4667 15.3 12C16.15 12.5333 16.8127 13.2457 17.288 14.137C17.7627 15.029 18 15.9833 18 17V20H19C19.2833 20 19.5207 20.096 19.712 20.288C19.904 20.4793 20 20.7167 20 21C20 21.2833 19.904 21.5207 19.712 21.712C19.5207 21.904 19.2833 22 19 22Z"/></g><defs><clipPath id="clip0_1113_6828"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-empty.svg b/@stellar/design-system/src/assets/icons/hourglass-empty.svg
deleted file mode 100644
index 598ffdb3..00000000
--- a/@stellar/design-system/src/assets/icons/hourglass-empty.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6825)"><path d="M8 20H16V17C16 15.9 15.6083 14.9583 14.825 14.175C14.0417 13.3917 13.1 13 12 13C10.9 13 9.95833 13.3917 9.175 14.175C8.39167 14.9583 8 15.9 8 17V20ZM12 11C13.1 11 14.0417 10.6083 14.825 9.825C15.6083 9.04167 16 8.1 16 7V4H8V7C8 8.1 8.39167 9.04167 9.175 9.825C9.95833 10.6083 10.9 11 12 11ZM19 22H5C4.71667 22 4.479 21.904 4.287 21.712C4.09567 21.5207 4 21.2833 4 21C4 20.7167 4.09567 20.4793 4.287 20.288C4.479 20.096 4.71667 20 5 20H6V17C6 15.9833 6.23767 15.029 6.713 14.137C7.18767 13.2457 7.85 12.5333 8.7 12C7.85 11.4667 7.18767 10.754 6.713 9.862C6.23767 8.97067 6 8.01667 6 7V4H5C4.71667 4 4.479 3.904 4.287 3.712C4.09567 3.52067 4 3.28333 4 3C4 2.71667 4.09567 2.479 4.287 2.287C4.479 2.09567 4.71667 2 5 2H19C19.2833 2 19.5207 2.09567 19.712 2.287C19.904 2.479 20 2.71667 20 3C20 3.28333 19.904 3.52067 19.712 3.712C19.5207 3.904 19.2833 4 19 4H18V7C18 8.01667 17.7627 8.97067 17.288 9.862C16.8127 10.754 16.15 11.4667 15.3 12C16.15 12.5333 16.8127 13.2457 17.288 14.137C17.7627 15.029 18 15.9833 18 17V20H19C19.2833 20 19.5207 20.096 19.712 20.288C19.904 20.4793 20 20.7167 20 21C20 21.2833 19.904 21.5207 19.712 21.712C19.5207 21.904 19.2833 22 19 22Z"/></g><defs><clipPath id="clip0_1113_6825"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-full.svg b/@stellar/design-system/src/assets/icons/hourglass-full.svg
deleted file mode 100644
index 26739662..00000000
--- a/@stellar/design-system/src/assets/icons/hourglass-full.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6822)"><path d="M5 22C4.71667 22 4.479 21.904 4.287 21.712C4.09567 21.5207 4 21.2833 4 21C4 20.7167 4.09567 20.4793 4.287 20.288C4.479 20.096 4.71667 20 5 20H6V17C6 15.9833 6.23767 15.029 6.713 14.137C7.18767 13.2457 7.85 12.5333 8.7 12C7.85 11.4667 7.18767 10.754 6.713 9.862C6.23767 8.97067 6 8.01667 6 7V4H5C4.71667 4 4.479 3.904 4.287 3.712C4.09567 3.52067 4 3.28333 4 3C4 2.71667 4.09567 2.479 4.287 2.287C4.479 2.09567 4.71667 2 5 2H19C19.2833 2 19.5207 2.09567 19.712 2.287C19.904 2.479 20 2.71667 20 3C20 3.28333 19.904 3.52067 19.712 3.712C19.5207 3.904 19.2833 4 19 4H18V7C18 8.01667 17.7627 8.97067 17.288 9.862C16.8127 10.754 16.15 11.4667 15.3 12C16.15 12.5333 16.8127 13.2457 17.288 14.137C17.7627 15.029 18 15.9833 18 17V20H19C19.2833 20 19.5207 20.096 19.712 20.288C19.904 20.4793 20 20.7167 20 21C20 21.2833 19.904 21.5207 19.712 21.712C19.5207 21.904 19.2833 22 19 22H5Z"/></g><defs><clipPath id="clip0_1113_6822"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hourglass-top.svg b/@stellar/design-system/src/assets/icons/hourglass-top.svg
deleted file mode 100644
index 00d6903e..00000000
--- a/@stellar/design-system/src/assets/icons/hourglass-top.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6819)"><path d="M8 20H16V17C16 15.9 15.6083 14.9583 14.825 14.175C14.0417 13.3917 13.1 13 12 13C10.9 13 9.95833 13.3917 9.175 14.175C8.39167 14.9583 8 15.9 8 17V20ZM19 22H5C4.71667 22 4.479 21.904 4.287 21.712C4.09567 21.5207 4 21.2833 4 21C4 20.7167 4.09567 20.4793 4.287 20.288C4.479 20.096 4.71667 20 5 20H6V17C6 15.9833 6.23767 15.029 6.713 14.137C7.18767 13.2457 7.85 12.5333 8.7 12C7.85 11.4667 7.18767 10.754 6.713 9.862C6.23767 8.97067 6 8.01667 6 7V4H5C4.71667 4 4.479 3.904 4.287 3.712C4.09567 3.52067 4 3.28333 4 3C4 2.71667 4.09567 2.479 4.287 2.287C4.479 2.09567 4.71667 2 5 2H19C19.2833 2 19.5207 2.09567 19.712 2.287C19.904 2.479 20 2.71667 20 3C20 3.28333 19.904 3.52067 19.712 3.712C19.5207 3.904 19.2833 4 19 4H18V7C18 8.01667 17.7627 8.97067 17.288 9.862C16.8127 10.754 16.15 11.4667 15.3 12C16.15 12.5333 16.8127 13.2457 17.288 14.137C17.7627 15.029 18 15.9833 18 17V20H19C19.2833 20 19.5207 20.096 19.712 20.288C19.904 20.4793 20 20.7167 20 21C20 21.2833 19.904 21.5207 19.712 21.712C19.5207 21.904 19.2833 22 19 22Z"/></g><defs><clipPath id="clip0_1113_6819"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hurricane-01.svg b/@stellar/design-system/src/assets/icons/hurricane-01.svg
new file mode 100644
index 00000000..2a0f399e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hurricane-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 20.5002C15.2465 20.814 13.6884 21 12 21C10.3116 21 8.75349 20.814 7.5 20.5002M18 16.4305C16.5341 16.9842 14.3894 17.3333 12 17.3333C9.61061 17.3333 7.46589 16.9842 6 16.4305M4.5 11.6679C5.93143 12.5598 8.75311 13.1667 12 13.1667C15.2469 13.1667 18.0686 12.5598 19.5 11.6679M21 6C21 7.65685 16.9706 9 12 9C7.02944 9 3 7.65685 3 6C3 4.34315 7.02944 3 12 3C16.9706 3 21 4.34315 21 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hurricane-02.svg b/@stellar/design-system/src/assets/icons/hurricane-02.svg
new file mode 100644
index 00000000..9e7e64ae
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hurricane-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12M18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12M18 12C18 16.4183 14.4183 20 10 20C5.58172 20 2 16.4183 2 12M6 12C6 7.58172 9.58172 4 14 4C18.4183 4 22 7.58172 22 12M13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/hurricane-03.svg b/@stellar/design-system/src/assets/icons/hurricane-03.svg
new file mode 100644
index 00000000..b7c4c892
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/hurricane-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 4H3M20 8L6 8M18 12L9 12M15 16L8 16M17 20H12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-01.svg b/@stellar/design-system/src/assets/icons/image-01.svg
new file mode 100644
index 00000000..9d49d438
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-02.svg b/@stellar/design-system/src/assets/icons/image-02.svg
new file mode 100644
index 00000000..8d01d34f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.99958 20.0004L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21.4053 15.4053M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-03.svg b/@stellar/design-system/src/assets/icons/image-03.svg
new file mode 100644
index 00000000..b03b5c44
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.27209 20.7279L10.8686 14.1314C11.2646 13.7354 11.4627 13.5373 11.691 13.4632C11.8918 13.3979 12.1082 13.3979 12.309 13.4632C12.5373 13.5373 12.7354 13.7354 13.1314 14.1314L19.6839 20.6839M14 15L16.8686 12.1314C17.2646 11.7354 17.4627 11.5373 17.691 11.4632C17.8918 11.3979 18.1082 11.3979 18.309 11.4632C18.5373 11.5373 18.7354 11.7354 19.1314 12.1314L22 15M10 9C10 10.1046 9.10457 11 8 11C6.89543 11 6 10.1046 6 9C6 7.89543 6.89543 7 8 7C9.10457 7 10 7.89543 10 9ZM6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-04.svg b/@stellar/design-system/src/assets/icons/image-04.svg
new file mode 100644
index 00000000..37c74be6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 9.5L6 15H18L13.5 7.5L11 11L9 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-05.svg b/@stellar/design-system/src/assets/icons/image-05.svg
new file mode 100644
index 00000000..95204e16
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21H20.0104C20.9816 21 21.4671 21 21.7348 20.7975C21.968 20.6211 22.1123 20.3515 22.1297 20.0596C22.1497 19.7246 21.8804 19.3205 21.3417 18.5125L18.3313 13.9969C17.8862 13.3292 17.6636 12.9954 17.3831 12.8791C17.1378 12.7773 16.8622 12.7773 16.6169 12.8791C16.3364 12.9954 16.1139 13.3292 15.6687 13.9969L14.9245 15.1132M19 21L11.3155 9.90018C10.8736 9.26182 10.6526 8.94264 10.3766 8.83044C10.1351 8.73228 9.8649 8.73228 9.62344 8.83044C9.34742 8.94264 9.12645 9.26182 8.68451 9.90018L2.73822 18.4893C2.17519 19.3025 1.89368 19.7092 1.90971 20.0473C1.92366 20.3419 2.06688 20.6152 2.30109 20.7943C2.57002 21 3.06459 21 4.05373 21H19ZM21 6C21 7.65685 19.6569 9 18 9C16.3432 9 15 7.65685 15 6C15 4.34315 16.3432 3 18 3C19.6569 3 21 4.34315 21 6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-check.svg b/@stellar/design-system/src/assets/icons/image-check.svg
new file mode 100644
index 00000000..d6d780fb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L18 7L22 3M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-down.svg b/@stellar/design-system/src/assets/icons/image-down.svg
new file mode 100644
index 00000000..6504af17
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L19 8M19 8L22 5M19 8V2M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-indent-left.svg b/@stellar/design-system/src/assets/icons/image-indent-left.svg
new file mode 100644
index 00000000..58a2110a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-indent-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.25H15M21 4H3M21 14.75H15M21 20H3M4.6 16H9.4C9.96005 16 10.2401 16 10.454 15.891C10.6422 15.7951 10.7951 15.6422 10.891 15.454C11 15.2401 11 14.9601 11 14.4V9.6C11 9.03995 11 8.75992 10.891 8.54601C10.7951 8.35785 10.6422 8.20487 10.454 8.10899C10.2401 8 9.96005 8 9.4 8H4.6C4.03995 8 3.75992 8 3.54601 8.10899C3.35785 8.20487 3.20487 8.35785 3.10899 8.54601C3 8.75992 3 9.03995 3 9.6V14.4C3 14.9601 3 15.2401 3.10899 15.454C3.20487 15.6422 3.35785 15.7951 3.54601 15.891C3.75992 16 4.03995 16 4.6 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-indent-right.svg b/@stellar/design-system/src/assets/icons/image-indent-right.svg
new file mode 100644
index 00000000..b87ec87b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-indent-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 4H3M21 20H3M9 9.25H3M9 14.75H3M14.6 16H19.4C19.9601 16 20.2401 16 20.454 15.891C20.6422 15.7951 20.7951 15.6422 20.891 15.454C21 15.2401 21 14.9601 21 14.4V9.6C21 9.03995 21 8.75992 20.891 8.54601C20.7951 8.35785 20.6422 8.20487 20.454 8.10899C20.2401 8 19.9601 8 19.4 8H14.6C14.0399 8 13.7599 8 13.546 8.10899C13.3578 8.20487 13.2049 8.35785 13.109 8.54601C13 8.75992 13 9.03995 13 9.6V14.4C13 14.9601 13 15.2401 13.109 15.454C13.2049 15.6422 13.3578 15.7951 13.546 15.891C13.7599 16 14.0399 16 14.6 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-left.svg b/@stellar/design-system/src/assets/icons/image-left.svg
new file mode 100644
index 00000000..5780037c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 8L16 5M16 5L19 2M16 5L22 5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-plus.svg b/@stellar/design-system/src/assets/icons/image-plus.svg
new file mode 100644
index 00000000..712cc0c5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M19 8V2M16 5H22M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-right.svg b/@stellar/design-system/src/assets/icons/image-right.svg
new file mode 100644
index 00000000..b0944c8b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 8L22 5M22 5L19 2M22 5L16 5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-up.svg b/@stellar/design-system/src/assets/icons/image-up.svg
new file mode 100644
index 00000000..8798f59d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L19 2M19 2L22 5M19 2V8M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-check.svg b/@stellar/design-system/src/assets/icons/image-user-check.svg
new file mode 100644
index 00000000..e4efeaa5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L18 7L22 3M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14551 19.9263C2.61465 18.2386 4.16256 17 5.99977 17H12.9998C13.9291 17 14.3937 17 14.7801 17.0769C16.3669 17.3925 17.6073 18.6329 17.9229 20.2196C17.9998 20.606 17.9998 21.0707 17.9998 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-down.svg b/@stellar/design-system/src/assets/icons/image-user-down.svg
new file mode 100644
index 00000000..03251b93
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L19 8M19 8L22 5M19 8V2M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14574 19.9263C2.61488 18.2386 4.1628 17 6 17H13C13.9293 17 14.394 17 14.7804 17.0769C16.3671 17.3925 17.6075 18.6329 17.9231 20.2196C18 20.606 18 21.0707 18 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-left.svg b/@stellar/design-system/src/assets/icons/image-user-left.svg
new file mode 100644
index 00000000..28025559
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 8L16 5M16 5L19 2M16 5L22 5M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14551 19.9263C2.61465 18.2386 4.16256 17 5.99977 17H12.9998C13.9291 17 14.3937 17 14.7801 17.0769C16.3669 17.3925 17.6073 18.6329 17.9229 20.2196C17.9998 20.606 17.9998 21.0707 17.9998 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-plus.svg b/@stellar/design-system/src/assets/icons/image-user-plus.svg
new file mode 100644
index 00000000..48df8203
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 8V2M16 5H22M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14574 19.9263C2.61488 18.2386 4.1628 17 6 17H13C13.9293 17 14.394 17 14.7804 17.0769C16.3671 17.3925 17.6075 18.6329 17.9231 20.2196C18 20.606 18 21.0707 18 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-right.svg b/@stellar/design-system/src/assets/icons/image-user-right.svg
new file mode 100644
index 00000000..6f9e598c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 8L22 5M22 5L19 2M22 5L16 5M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14551 19.9263C2.61465 18.2386 4.16256 17 5.99977 17H12.9998C13.9291 17 14.3937 17 14.7801 17.0769C16.3669 17.3925 17.6073 18.6329 17.9229 20.2196C17.9998 20.606 17.9998 21.0707 17.9998 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-up.svg b/@stellar/design-system/src/assets/icons/image-user-up.svg
new file mode 100644
index 00000000..353076ec
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 5L19 2M19 2L22 5M19 2V8M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14551 19.9263C2.61465 18.2386 4.16256 17 5.99977 17H12.9998C13.9291 17 14.3937 17 14.7801 17.0769C16.3669 17.3925 17.6073 18.6329 17.9229 20.2196C17.9998 20.606 17.9998 21.0707 17.9998 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user-x.svg b/@stellar/design-system/src/assets/icons/image-user-x.svg
new file mode 100644
index 00000000..9e459f32
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M22 12V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C19.7202 22 18.8802 22 17.2 22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H12M2.14551 19.9263C2.61465 18.2386 4.16256 17 5.99977 17H12.9998C13.9291 17 14.3937 17 14.7801 17.0769C16.3669 17.3925 17.6073 18.6329 17.9229 20.2196C17.9998 20.606 17.9998 21.0707 17.9998 22M14 9.5C14 11.7091 12.2091 13.5 10 13.5C7.79086 13.5 6 11.7091 6 9.5C6 7.29086 7.79086 5.5 10 5.5C12.2091 5.5 14 7.29086 14 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-user.svg b/@stellar/design-system/src/assets/icons/image-user.svg
new file mode 100644
index 00000000..1d92e14b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-user.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.00002 21.8174C4.6026 22 5.41649 22 6.8 22H17.2C18.5835 22 19.3974 22 20 21.8174M4.00002 21.8174C3.87082 21.7783 3.75133 21.7308 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H17.2C18.8802 2 19.7202 2 20.362 2.32698C20.9265 2.6146 21.3854 3.07354 21.673 3.63803C22 4.27976 22 5.11984 22 6.8V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C20.2487 21.7308 20.1292 21.7783 20 21.8174M4.00002 21.8174C4.00035 21.0081 4.00521 20.5799 4.07686 20.2196C4.39249 18.6329 5.63288 17.3925 7.21964 17.0769C7.60603 17 8.07069 17 9 17H15C15.9293 17 16.394 17 16.7804 17.0769C18.3671 17.3925 19.6075 18.6329 19.9231 20.2196C19.9948 20.5799 19.9996 21.0081 20 21.8174M16 9.5C16 11.7091 14.2091 13.5 12 13.5C9.79086 13.5 8 11.7091 8 9.5C8 7.29086 9.79086 5.5 12 5.5C14.2091 5.5 16 7.29086 16 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/image-x.svg b/@stellar/design-system/src/assets/icons/image-x.svg
new file mode 100644
index 00000000..a1d82eb2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/image-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/inbox-01.svg b/@stellar/design-system/src/assets/icons/inbox-01.svg
new file mode 100644
index 00000000..1428e9f0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/inbox-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.5 12H5.88197C6.56717 12 7.19357 12.3871 7.5 13C7.80643 13.6129 8.43283 14 9.11803 14H14.882C15.5672 14 16.1936 13.6129 16.5 13C16.8064 12.3871 17.4328 12 18.118 12H21.5M8.96656 4H15.0334C16.1103 4 16.6487 4 17.1241 4.16396C17.5445 4.30896 17.9274 4.5456 18.2451 4.85675C18.6043 5.2086 18.8451 5.6902 19.3267 6.65337L21.4932 10.9865C21.6822 11.3645 21.7767 11.5535 21.8434 11.7515C21.9026 11.9275 21.9453 12.1085 21.971 12.2923C22 12.4992 22 12.7105 22 13.1331V15.2C22 16.8802 22 17.7202 21.673 18.362C21.3854 18.9265 20.9265 19.3854 20.362 19.673C19.7202 20 18.8802 20 17.2 20H6.8C5.11984 20 4.27976 20 3.63803 19.673C3.07354 19.3854 2.6146 18.9265 2.32698 18.362C2 17.7202 2 16.8802 2 15.2V13.1331C2 12.7105 2 12.4992 2.02897 12.2923C2.05471 12.1085 2.09744 11.9275 2.15662 11.7515C2.22326 11.5535 2.31776 11.3645 2.50675 10.9865L4.67331 6.65337C5.1549 5.69019 5.3957 5.2086 5.75495 4.85675C6.07263 4.5456 6.45551 4.30896 6.87589 4.16396C7.35125 4 7.88969 4 8.96656 4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/inbox-02.svg b/@stellar/design-system/src/assets/icons/inbox-02.svg
new file mode 100644
index 00000000..3581b2af
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/inbox-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12H5.88197C6.56717 12 7.19357 12.3871 7.5 13C7.80643 13.6129 8.43283 14 9.11803 14H14.882C15.5672 14 16.1936 13.6129 16.5 13C16.8064 12.3871 17.4328 12 18.118 12H22M2 12V8.8C2 7.11984 2 6.27976 2.32698 5.63803C2.6146 5.07354 3.07354 4.6146 3.63803 4.32698C4.27976 4 5.11984 4 6.8 4H17.2C18.8802 4 19.7202 4 20.362 4.32698C20.9265 4.6146 21.3854 5.07354 21.673 5.63803C22 6.27976 22 7.11984 22 8.8V12M2 12V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/infinity.svg b/@stellar/design-system/src/assets/icons/infinity.svg
new file mode 100644
index 00000000..e5dcca03
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/infinity.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.1777 8C23.2737 8 23.2737 16 18.1777 16C13.0827 16 11.0447 8 5.43875 8C0.85375 8 0.85375 16 5.43875 16C11.0447 16 13.0828 8 18.1788 8H18.1777Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/info-circle.svg b/@stellar/design-system/src/assets/icons/info-circle.svg
new file mode 100644
index 00000000..2c98aeb1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/info-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/info-hexagon.svg b/@stellar/design-system/src/assets/icons/info-hexagon.svg
new file mode 100644
index 00000000..d6ca220a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/info-hexagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V12M12 7.99996H12.01M3 7.94141V16.0585C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9845 3.26463 17.0892C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7258 11.6484 21.8046 11.7985 21.8355C11.9315 21.8628 12.0685 21.8628 12.2015 21.8355C12.3516 21.8046 12.4934 21.7258 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0892C20.8318 16.9845 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0585V7.94141C21 7.59876 21 7.42744 20.9495 7.27464C20.9049 7.13947 20.8318 7.01539 20.7354 6.9107C20.6263 6.79236 20.4766 6.70916 20.177 6.54276L12.777 2.43164C12.4934 2.27409 12.3516 2.19531 12.2015 2.16442C12.0685 2.13709 11.9315 2.13709 11.7985 2.16442C11.6484 2.19531 11.5066 2.27409 11.223 2.43164L3.82297 6.54276C3.52345 6.70916 3.37369 6.79236 3.26463 6.9107C3.16816 7.01539 3.09515 7.13947 3.05048 7.27464C3 7.42744 3 7.59876 3 7.94141Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/info-octagon.svg b/@stellar/design-system/src/assets/icons/info-octagon.svg
new file mode 100644
index 00000000..7d283fee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/info-octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V12M12 8H12.01M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/info-square.svg b/@stellar/design-system/src/assets/icons/info-square.svg
new file mode 100644
index 00000000..c4c7e264
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/info-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V12M12 8H12.01M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/info.svg b/@stellar/design-system/src/assets/icons/info.svg
deleted file mode 100644
index d7814a28..00000000
--- a/@stellar/design-system/src/assets/icons/info.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6816)"><path d="M12 17C12.2833 17 12.521 16.904 12.713 16.712C12.9043 16.5207 13 16.2833 13 16V11.975C13 11.6917 12.9043 11.4583 12.713 11.275C12.521 11.0917 12.2833 11 12 11C11.7167 11 11.4793 11.0957 11.288 11.287C11.096 11.479 11 11.7167 11 12V16.025C11 16.3083 11.096 16.5417 11.288 16.725C11.4793 16.9083 11.7167 17 12 17ZM12 9C12.2833 9 12.521 8.904 12.713 8.712C12.9043 8.52067 13 8.28333 13 8C13 7.71667 12.9043 7.479 12.713 7.287C12.521 7.09567 12.2833 7 12 7C11.7167 7 11.4793 7.09567 11.288 7.287C11.096 7.479 11 7.71667 11 8C11 8.28333 11.096 8.52067 11.288 8.712C11.4793 8.904 11.7167 9 12 9ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6816"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/insights.svg b/@stellar/design-system/src/assets/icons/insights.svg
deleted file mode 100644
index ce5725a5..00000000
--- a/@stellar/design-system/src/assets/icons/insights.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6813)"><path d="M3 20C2.45 20 1.97933 19.8043 1.588 19.413C1.196 19.021 1 18.55 1 18C1 17.45 1.196 16.979 1.588 16.587C1.97933 16.1957 2.45 16 3 16H3.263C3.33767 16 3.41667 16.0167 3.5 16.05L8.05 11.5C8.01667 11.4167 8 11.3373 8 11.262V11C8 10.45 8.196 9.979 8.588 9.587C8.97933 9.19567 9.45 9 10 9C10.55 9 11.021 9.19567 11.413 9.587C11.8043 9.979 12 10.45 12 11C12 11.0333 11.9833 11.2 11.95 11.5L14.5 14.05C14.5833 14.0167 14.6627 14 14.738 14H15.262C15.3373 14 15.4167 14.0167 15.5 14.05L19.05 10.5C19.0167 10.4167 19 10.3373 19 10.262V10C19 9.45 19.1957 8.979 19.587 8.587C19.979 8.19567 20.45 8 21 8C21.55 8 22.021 8.19567 22.413 8.587C22.8043 8.979 23 9.45 23 10C23 10.55 22.8043 11.0207 22.413 11.412C22.021 11.804 21.55 12 21 12H20.738C20.6627 12 20.5833 11.9833 20.5 11.95L16.95 15.5C16.9833 15.5833 17 15.6627 17 15.738V16C17 16.55 16.8043 17.021 16.413 17.413C16.021 17.8043 15.55 18 15 18C14.45 18 13.9793 17.8043 13.588 17.413C13.196 17.021 13 16.55 13 16V15.738C13 15.6627 13.0167 15.5833 13.05 15.5L10.5 12.95C10.4167 12.9833 10.3373 13 10.262 13H10C9.96667 13 9.8 12.9833 9.5 12.95L4.95 17.5C4.98333 17.5833 5 17.6627 5 17.738V18C5 18.55 4.804 19.021 4.412 19.413C4.02067 19.8043 3.55 20 3 20ZM4 9.975L3.375 8.625L2.025 8L3.375 7.375L4 6.025L4.625 7.375L5.975 8L4.625 8.625L4 9.975ZM15 9L14.05 6.95L12 6L14.05 5.05L15 3L15.95 5.05L18 6L15.95 6.95L15 9Z"/></g><defs><clipPath id="clip0_1113_6813"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/instagram.svg b/@stellar/design-system/src/assets/icons/instagram.svg
new file mode 100644
index 00000000..48bfe42e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/instagram.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><g clip-path="url(#clip0_2079_486)"><path d="M12 0C8.74 0 8.333 0.015 7.053 0.072C5.775 0.132 4.905 0.333 4.14 0.63C3.351 0.936 2.681 1.347 2.014 2.014C1.347 2.681 0.935 3.35 0.63 4.14C0.333 4.905 0.131 5.775 0.072 7.053C0.012 8.333 0 8.74 0 12C0 15.26 0.015 15.667 0.072 16.947C0.132 18.224 0.333 19.095 0.63 19.86C0.936 20.648 1.347 21.319 2.014 21.986C2.681 22.652 3.35 23.065 4.14 23.37C4.906 23.666 5.776 23.869 7.053 23.928C8.333 23.988 8.74 24 12 24C15.26 24 15.667 23.985 16.947 23.928C18.224 23.868 19.095 23.666 19.86 23.37C20.648 23.064 21.319 22.652 21.986 21.986C22.652 21.319 23.065 20.651 23.37 19.86C23.666 19.095 23.869 18.224 23.928 16.947C23.988 15.667 24 15.26 24 12C24 8.74 23.985 8.333 23.928 7.053C23.868 5.776 23.666 4.904 23.37 4.14C23.064 3.351 22.652 2.681 21.986 2.014C21.319 1.347 20.651 0.935 19.86 0.63C19.095 0.333 18.224 0.131 16.947 0.072C15.667 0.012 15.26 0 12 0ZM12 2.16C15.203 2.16 15.585 2.176 16.85 2.231C18.02 2.286 18.655 2.48 19.077 2.646C19.639 2.863 20.037 3.123 20.459 3.542C20.878 3.962 21.138 4.361 21.355 4.923C21.519 5.345 21.715 5.98 21.768 7.15C21.825 8.416 21.838 8.796 21.838 12C21.838 15.204 21.823 15.585 21.764 16.85C21.703 18.02 21.508 18.655 21.343 19.077C21.119 19.639 20.864 20.037 20.444 20.459C20.025 20.878 19.62 21.138 19.064 21.355C18.644 21.519 17.999 21.715 16.829 21.768C15.555 21.825 15.18 21.838 11.97 21.838C8.759 21.838 8.384 21.823 7.111 21.764C5.94 21.703 5.295 21.508 4.875 21.343C4.306 21.119 3.915 20.864 3.496 20.444C3.075 20.025 2.806 19.62 2.596 19.064C2.431 18.644 2.237 17.999 2.176 16.829C2.131 15.569 2.115 15.18 2.115 11.985C2.115 8.789 2.131 8.399 2.176 7.124C2.237 5.954 2.431 5.31 2.596 4.89C2.806 4.32 3.075 3.93 3.496 3.509C3.915 3.09 4.306 2.82 4.875 2.611C5.295 2.445 5.926 2.25 7.096 2.19C8.371 2.145 8.746 2.13 11.955 2.13L12 2.16ZM12 5.838C8.595 5.838 5.838 8.598 5.838 12C5.838 15.405 8.598 18.162 12 18.162C15.405 18.162 18.162 15.402 18.162 12C18.162 8.595 15.402 5.838 12 5.838ZM12 16C9.79 16 8 14.21 8 12C8 9.79 9.79 8 12 8C14.21 8 16 9.79 16 12C16 14.21 14.21 16 12 16ZM19.846 5.595C19.846 6.39 19.2 7.035 18.406 7.035C17.611 7.035 16.966 6.389 16.966 5.595C16.966 4.801 17.612 4.156 18.406 4.156C19.199 4.155 19.846 4.801 19.846 5.595Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_486"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/intersect-circle.svg b/@stellar/design-system/src/assets/icons/intersect-circle.svg
new file mode 100644
index 00000000..44ce4553
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/intersect-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 16C12.866 16 16 12.866 16 9C16 5.13401 12.866 2 9 2C5.13401 2 2 5.13401 2 9C2 12.866 5.13401 16 9 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 22C18.866 22 22 18.866 22 15C22 11.134 18.866 8 15 8C11.134 8 8 11.134 8 15C8 18.866 11.134 22 15 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/intersect-square.svg b/@stellar/design-system/src/assets/icons/intersect-square.svg
new file mode 100644
index 00000000..0f23184c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/intersect-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 5.2C2 4.07989 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H12.8C13.9201 2 14.4802 2 14.908 2.21799C15.2843 2.40973 15.5903 2.71569 15.782 3.09202C16 3.51984 16 4.0799 16 5.2V12.8C16 13.9201 16 14.4802 15.782 14.908C15.5903 15.2843 15.2843 15.5903 14.908 15.782C14.4802 16 13.9201 16 12.8 16H5.2C4.07989 16 3.51984 16 3.09202 15.782C2.71569 15.5903 2.40973 15.2843 2.21799 14.908C2 14.4802 2 13.9201 2 12.8V5.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 11.2C8 10.0799 8 9.51984 8.21799 9.09202C8.40973 8.71569 8.71569 8.40973 9.09202 8.21799C9.51984 8 10.0799 8 11.2 8H18.8C19.9201 8 20.4802 8 20.908 8.21799C21.2843 8.40973 21.5903 8.71569 21.782 9.09202C22 9.51984 22 10.0799 22 11.2V18.8C22 19.9201 22 20.4802 21.782 20.908C21.5903 21.2843 21.2843 21.5903 20.908 21.782C20.4802 22 19.9201 22 18.8 22H11.2C10.0799 22 9.51984 22 9.09202 21.782C8.71569 21.5903 8.40973 21.2843 8.21799 20.908C8 20.4802 8 19.9201 8 18.8V11.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/ios-share.svg b/@stellar/design-system/src/assets/icons/ios-share.svg
deleted file mode 100644
index 7e64d14a..00000000
--- a/@stellar/design-system/src/assets/icons/ios-share.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6810)"><path d="M12 16C11.7167 16 11.4793 15.904 11.288 15.712C11.096 15.5207 11 15.2833 11 15V4.82499L10.1 5.72499C9.91667 5.90832 9.68767 5.99999 9.413 5.99999C9.13767 5.99999 8.9 5.89999 8.7 5.69999C8.51667 5.49999 8.425 5.26232 8.425 4.98699C8.425 4.71232 8.51667 4.48332 8.7 4.29999L11.3 1.69999C11.3833 1.61665 11.4877 1.54999 11.613 1.49999C11.7377 1.44999 11.8667 1.42499 12 1.42499C12.1333 1.42499 12.2627 1.44999 12.388 1.49999C12.5127 1.54999 12.6167 1.61665 12.7 1.69999L15.3 4.29999C15.5 4.49999 15.6 4.74165 15.6 5.02499C15.6 5.30832 15.5 5.54165 15.3 5.72499C15.1 5.90832 14.8627 5.99999 14.588 5.99999C14.3127 5.99999 14.0833 5.90832 13.9 5.72499L13 4.82499V15C13 15.2833 12.9043 15.5207 12.713 15.712C12.521 15.904 12.2833 16 12 16ZM6 23C5.45 23 4.97933 22.8043 4.588 22.413C4.196 22.021 4 21.55 4 21V9.99999C4 9.44999 4.196 8.97899 4.588 8.58699C4.97933 8.19565 5.45 7.99999 6 7.99999H8C8.28333 7.99999 8.521 8.09565 8.713 8.28699C8.90433 8.47899 9 8.71665 9 8.99999C9 9.28332 8.90433 9.52065 8.713 9.71199C8.521 9.90399 8.28333 9.99999 8 9.99999H6V21H18V9.99999H16C15.7167 9.99999 15.4793 9.90399 15.288 9.71199C15.096 9.52065 15 9.28332 15 8.99999C15 8.71665 15.096 8.47899 15.288 8.28699C15.4793 8.09565 15.7167 7.99999 16 7.99999H18C18.55 7.99999 19.021 8.19565 19.413 8.58699C19.8043 8.97899 20 9.44999 20 9.99999V21C20 21.55 19.8043 22.021 19.413 22.413C19.021 22.8043 18.55 23 18 23H6Z"/></g><defs><clipPath id="clip0_1113_6810"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/italic-01.svg b/@stellar/design-system/src/assets/icons/italic-01.svg
new file mode 100644
index 00000000..368ac328
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/italic-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 4H10M14 20H5M15 4L9 20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/italic-02.svg b/@stellar/design-system/src/assets/icons/italic-02.svg
new file mode 100644
index 00000000..5c252de3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/italic-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.25 4L7.25 20M16.75 4L10.75 20M19.5 4L9.5 4M14.5 20H4.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/italic-square.svg b/@stellar/design-system/src/assets/icons/italic-square.svg
new file mode 100644
index 00000000..b5989106
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/italic-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 7L10 17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/join.svg b/@stellar/design-system/src/assets/icons/join.svg
deleted file mode 100644
index 3c7c4218..00000000
--- a/@stellar/design-system/src/assets/icons/join.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M16 19C15.5333 19 15.0792 18.9542 14.6375 18.8625C14.1958 18.7708 13.7667 18.6417 13.35 18.475C14.3333 17.575 15.1042 16.5708 15.6625 15.4625C16.2208 14.3542 16.5 13.2 16.5 12C16.5 10.8 16.2208 9.64583 15.6625 8.5375C15.1042 7.42917 14.3333 6.425 13.35 5.525C13.7667 5.35833 14.1958 5.22917 14.6375 5.1375C15.0792 5.04583 15.5333 5 16 5C17.95 5 19.6042 5.67917 20.9625 7.0375C22.3208 8.39583 23 10.05 23 12C23 13.95 22.3208 15.6042 20.9625 16.9625C19.6042 18.3208 17.95 19 16 19ZM12 17.75C11.0833 17.1167 10.3542 16.3 9.8125 15.3C9.27083 14.3 9 13.2 9 12C9 10.8 9.27083 9.7 9.8125 8.7C10.3542 7.7 11.0833 6.88333 12 6.25C12.9167 6.88333 13.6458 7.7 14.1875 8.7C14.7292 9.7 15 10.8 15 12C15 13.2 14.7292 14.3 14.1875 15.3C13.6458 16.3 12.9167 17.1167 12 17.75ZM8 19C6.05 19 4.39583 18.3208 3.0375 16.9625C1.67917 15.6042 1 13.95 1 12C1 10.05 1.67917 8.39583 3.0375 7.0375C4.39583 5.67917 6.05 5 8 5C8.46667 5 8.92083 5.04583 9.3625 5.1375C9.80417 5.22917 10.2333 5.35833 10.65 5.525C9.66667 6.425 8.89583 7.42917 8.3375 8.5375C7.77917 9.64583 7.5 10.8 7.5 12C7.5 13.3167 7.77083 14.5375 8.3125 15.6625C8.85417 16.7875 9.6 17.7417 10.55 18.525C10.15 18.675 9.7375 18.7917 9.3125 18.875C8.8875 18.9583 8.45 19 8 19Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/key-01.svg b/@stellar/design-system/src/assets/icons/key-01.svg
new file mode 100644
index 00000000..4d52f428
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/key-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 8.99994C17 8.48812 16.8047 7.9763 16.4142 7.58579C16.0237 7.19526 15.5118 7 15 7M15 15C18.3137 15 21 12.3137 21 9C21 5.68629 18.3137 3 15 3C11.6863 3 9 5.68629 9 9C9 9.27368 9.01832 9.54308 9.05381 9.80704C9.11218 10.2412 9.14136 10.4583 9.12172 10.5956C9.10125 10.7387 9.0752 10.8157 9.00469 10.9419C8.937 11.063 8.81771 11.1823 8.57913 11.4209L3.46863 16.5314C3.29568 16.7043 3.2092 16.7908 3.14736 16.8917C3.09253 16.9812 3.05213 17.0787 3.02763 17.1808C3 17.2959 3 17.4182 3 17.6627V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H7V19H9V17H11L12.5791 15.4209C12.8177 15.1823 12.937 15.063 13.0581 14.9953C13.1843 14.9248 13.2613 14.8987 13.4044 14.8783C13.5417 14.8586 13.7588 14.8878 14.193 14.9462C14.4569 14.9817 14.7263 15 15 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/key-02.svg b/@stellar/design-system/src/assets/icons/key-02.svg
new file mode 100644
index 00000000..f83703be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/key-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 9H15.01M15 15C18.3137 15 21 12.3137 21 9C21 5.68629 18.3137 3 15 3C11.6863 3 9 5.68629 9 9C9 9.27368 9.01832 9.54308 9.05381 9.80704C9.11218 10.2412 9.14136 10.4583 9.12172 10.5956C9.10125 10.7387 9.0752 10.8157 9.00469 10.9419C8.937 11.063 8.81771 11.1823 8.57913 11.4209L3.46863 16.5314C3.29568 16.7043 3.2092 16.7908 3.14736 16.8917C3.09253 16.9812 3.05213 17.0787 3.02763 17.1808C3 17.2959 3 17.4182 3 17.6627V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H6.33726C6.58185 21 6.70414 21 6.81923 20.9724C6.92127 20.9479 7.01881 20.9075 7.10828 20.8526C7.2092 20.7908 7.29568 20.7043 7.46863 20.5314L12.5791 15.4209C12.8177 15.1823 12.937 15.063 13.0581 14.9953C13.1843 14.9248 13.2613 14.8987 13.4044 14.8783C13.5417 14.8586 13.7588 14.8878 14.193 14.9462C14.4569 14.9817 14.7263 15 15 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/key-visualizer.svg b/@stellar/design-system/src/assets/icons/key-visualizer.svg
deleted file mode 100644
index d2cca435..00000000
--- a/@stellar/design-system/src/assets/icons/key-visualizer.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M3 21V19H6V21H3ZM3 17V15H11V17H3ZM3 13V11H21V13H3ZM3 9V7H11V9H3ZM3 5V3H6V5H3ZM8 21V19H11V21H8ZM8 5V3H11V5H8ZM13 21V19H16V21H13ZM13 17V15H21V17H13ZM13 9V7H21V9H13ZM13 5V3H16V5H13ZM18 21V19H21V21H18ZM18 5V3H21V5H18Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/key.svg b/@stellar/design-system/src/assets/icons/key.svg
deleted file mode 100644
index 131caedc..00000000
--- a/@stellar/design-system/src/assets/icons/key.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6807)"><path d="M7 15C7.83333 15 8.54167 14.7083 9.125 14.125C9.70833 13.5417 10 12.8333 10 12C10 11.1667 9.70833 10.4583 9.125 9.875C8.54167 9.29167 7.83333 9 7 9C6.16667 9 5.45833 9.29167 4.875 9.875C4.29167 10.4583 4 11.1667 4 12C4 12.8333 4.29167 13.5417 4.875 14.125C5.45833 14.7083 6.16667 15 7 15ZM7 18C5.33333 18 3.91667 17.4167 2.75 16.25C1.58333 15.0833 1 13.6667 1 12C1 10.3333 1.58333 8.91667 2.75 7.75C3.91667 6.58333 5.33333 6 7 6C8.35 6 9.52933 6.38333 10.538 7.15C11.546 7.91667 12.25 8.86667 12.65 10H20.6C20.7333 10 20.8627 10.025 20.988 10.075C21.1127 10.125 21.2167 10.1917 21.3 10.275L22.275 11.25C22.375 11.35 22.45 11.4623 22.5 11.587C22.55 11.7123 22.575 11.8417 22.575 11.975C22.575 12.1083 22.5543 12.2333 22.513 12.35C22.471 12.4667 22.4 12.575 22.3 12.675L19.7 15.275C19.6 15.375 19.4917 15.45 19.375 15.5C19.2583 15.55 19.1333 15.575 19 15.575C18.8667 15.575 18.7417 15.554 18.625 15.512C18.5083 15.4707 18.4 15.4 18.3 15.3L17 14L15.7 15.3C15.6 15.4 15.4917 15.4707 15.375 15.512C15.2583 15.554 15.1333 15.575 15 15.575C14.8667 15.575 14.7417 15.554 14.625 15.512C14.5083 15.4707 14.4 15.4 14.3 15.3L13 14H12.65C12.2333 15.2 11.5083 16.1667 10.475 16.9C9.44167 17.6333 8.28333 18 7 18Z"/></g><defs><clipPath id="clip0_1113_6807"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/keyboard-01.svg b/@stellar/design-system/src/assets/icons/keyboard-01.svg
new file mode 100644
index 00000000..3edebb79
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/keyboard-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 10H6.01M8 14H8.01M10 10H10.01M12 14H12.01M14 10H14.01M16 14H16.01M18 10H18.01M5.2 18H18.8C19.9201 18 20.4802 18 20.908 17.782C21.2843 17.5903 21.5903 17.2843 21.782 16.908C22 16.4802 22 15.9201 22 14.8V9.2C22 8.0799 22 7.51984 21.782 7.09202C21.5903 6.71569 21.2843 6.40973 20.908 6.21799C20.4802 6 19.9201 6 18.8 6H5.2C4.07989 6 3.51984 6 3.09202 6.21799C2.71569 6.40973 2.40973 6.71569 2.21799 7.09202C2 7.51984 2 8.07989 2 9.2V14.8C2 15.9201 2 16.4802 2.21799 16.908C2.40973 17.2843 2.71569 17.5903 3.09202 17.782C3.51984 18 4.0799 18 5.2 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/keyboard-02.svg b/@stellar/design-system/src/assets/icons/keyboard-02.svg
new file mode 100644
index 00000000..856cd0a9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/keyboard-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 14.5H17M6 10H6.01M10 10H10.01M14 10H14.01M18 10H18.01M5.2 18H18.8C19.9201 18 20.4802 18 20.908 17.782C21.2843 17.5903 21.5903 17.2843 21.782 16.908C22 16.4802 22 15.9201 22 14.8V9.2C22 8.0799 22 7.51984 21.782 7.09202C21.5903 6.71569 21.2843 6.40973 20.908 6.21799C20.4802 6 19.9201 6 18.8 6H5.2C4.07989 6 3.51984 6 3.09202 6.21799C2.71569 6.40973 2.40973 6.71569 2.21799 7.09202C2 7.51984 2 8.07989 2 9.2V14.8C2 15.9201 2 16.4802 2.21799 16.908C2.40973 17.2843 2.71569 17.5903 3.09202 17.782C3.51984 18 4.0799 18 5.2 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/laptop-01.svg b/@stellar/design-system/src/assets/icons/laptop-01.svg
new file mode 100644
index 00000000..6f9322c5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/laptop-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 16V7.2C3 6.07989 3 5.51984 3.21799 5.09202C3.40973 4.71569 3.71569 4.40973 4.09202 4.21799C4.51984 4 5.0799 4 6.2 4H17.8C18.9201 4 19.4802 4 19.908 4.21799C20.2843 4.40973 20.5903 4.71569 20.782 5.09202C21 5.51984 21 6.0799 21 7.2V16H15.6627C15.4182 16 15.2959 16 15.1808 16.0276C15.0787 16.0521 14.9812 16.0925 14.8917 16.1474C14.7908 16.2092 14.7043 16.2957 14.5314 16.4686L14.4686 16.5314C14.2957 16.7043 14.2092 16.7908 14.1083 16.8526C14.0188 16.9075 13.9213 16.9479 13.8192 16.9724C13.7041 17 13.5818 17 13.3373 17H10.6627C10.4182 17 10.2959 17 10.1808 16.9724C10.0787 16.9479 9.98119 16.9075 9.89172 16.8526C9.7908 16.7908 9.70432 16.7043 9.53137 16.5314L9.46863 16.4686C9.29568 16.2957 9.2092 16.2092 9.10828 16.1474C9.01881 16.0925 8.92127 16.0521 8.81923 16.0276C8.70414 16 8.58185 16 8.33726 16H3ZM3 16C2.44772 16 2 16.4477 2 17V17.3333C2 17.9533 2 18.2633 2.06815 18.5176C2.25308 19.2078 2.79218 19.7469 3.48236 19.9319C3.7367 20 4.04669 20 4.66667 20H19.3333C19.9533 20 20.2633 20 20.5176 19.9319C21.2078 19.7469 21.7469 19.2078 21.9319 18.5176C22 18.2633 22 17.9533 22 17.3333C22 17.0233 22 16.8683 21.9659 16.7412C21.8735 16.3961 21.6039 16.1265 21.2588 16.0341C21.1317 16 20.9767 16 20.6667 16H20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/laptop-02.svg b/@stellar/design-system/src/assets/icons/laptop-02.svg
new file mode 100644
index 00000000..79fc35eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/laptop-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 16V7.2C21 6.0799 21 5.51984 20.782 5.09202C20.5903 4.71569 20.2843 4.40973 19.908 4.21799C19.4802 4 18.9201 4 17.8 4H6.2C5.07989 4 4.51984 4 4.09202 4.21799C3.71569 4.40973 3.40973 4.71569 3.21799 5.09202C3 5.51984 3 6.0799 3 7.2V16M4.66667 20H19.3333C19.9533 20 20.2633 20 20.5176 19.9319C21.2078 19.7469 21.7469 19.2078 21.9319 18.5176C22 18.2633 22 17.9533 22 17.3333C22 17.0233 22 16.8683 21.9659 16.7412C21.8735 16.3961 21.6039 16.1265 21.2588 16.0341C21.1317 16 20.9767 16 20.6667 16H3.33333C3.02334 16 2.86835 16 2.74118 16.0341C2.39609 16.1265 2.12654 16.3961 2.03407 16.7412C2 16.8683 2 17.0233 2 17.3333C2 17.9533 2 18.2633 2.06815 18.5176C2.25308 19.2078 2.79218 19.7469 3.48236 19.9319C3.73669 20 4.04669 20 4.66667 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layer-single.svg b/@stellar/design-system/src/assets/icons/layer-single.svg
new file mode 100644
index 00000000..96eb5940
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layer-single.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.3578 7.17883C12.2266 7.11324 12.161 7.08044 12.0922 7.06753C12.0313 7.0561 11.9687 7.0561 11.9078 7.06753C11.839 7.08044 11.7734 7.11324 11.6422 7.17883L2 11.9999L11.6422 16.8211C11.7734 16.8866 11.839 16.9194 11.9078 16.9324C11.9687 16.9438 12.0313 16.9438 12.0922 16.9324C12.161 16.9194 12.2266 16.8866 12.3578 16.8211L22 11.9999L12.3578 7.17883Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layers-three-01.svg b/@stellar/design-system/src/assets/icons/layers-three-01.svg
new file mode 100644
index 00000000..83065efa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layers-three-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 11.9999L11.6422 16.8211C11.7734 16.8866 11.839 16.9194 11.9078 16.9324C11.9687 16.9438 12.0313 16.9438 12.0922 16.9324C12.161 16.9194 12.2266 16.8866 12.3578 16.8211L22 11.9999M2 16.9999L11.6422 21.8211C11.7734 21.8866 11.839 21.9194 11.9078 21.9324C11.9687 21.9438 12.0313 21.9438 12.0922 21.9324C12.161 21.9194 12.2266 21.8866 12.3578 21.8211L22 16.9999M2 6.99994L11.6422 2.17883C11.7734 2.11324 11.839 2.08044 11.9078 2.06753C11.9687 2.0561 12.0313 2.0561 12.0922 2.06753C12.161 2.08044 12.2266 2.11324 12.3578 2.17883L22 6.99994L12.3578 11.8211C12.2266 11.8866 12.161 11.9194 12.0922 11.9324C12.0313 11.9438 11.9687 11.9438 11.9078 11.9324C11.839 11.9194 11.7734 11.8866 11.6422 11.8211L2 6.99994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layers-three-02.svg b/@stellar/design-system/src/assets/icons/layers-three-02.svg
new file mode 100644
index 00000000..097cc1f3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layers-three-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 9.49994L2 11.9999L11.6422 16.8211C11.7734 16.8866 11.839 16.9194 11.9078 16.9324C11.9687 16.9438 12.0313 16.9438 12.0922 16.9324C12.161 16.9194 12.2266 16.8866 12.3578 16.8211L22 11.9999L17 9.49994M7 14.4999L2 16.9999L11.6422 21.8211C11.7734 21.8866 11.839 21.9194 11.9078 21.9324C11.9687 21.9438 12.0313 21.9438 12.0922 21.9324C12.161 21.9194 12.2266 21.8866 12.3578 21.8211L22 16.9999L17 14.4999M2 6.99994L11.6422 2.17883C11.7734 2.11324 11.839 2.08044 11.9078 2.06753C11.9687 2.0561 12.0313 2.0561 12.0922 2.06753C12.161 2.08044 12.2266 2.11324 12.3578 2.17883L22 6.99994L12.3578 11.8211C12.2266 11.8866 12.161 11.9194 12.0922 11.9324C12.0313 11.9438 11.9687 11.9438 11.9078 11.9324C11.839 11.9194 11.7734 11.8866 11.6422 11.8211L2 6.99994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layers-two-01.svg b/@stellar/design-system/src/assets/icons/layers-two-01.svg
new file mode 100644
index 00000000..da09bd48
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layers-two-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 14.4999L11.6422 19.3211C11.7734 19.3866 11.839 19.4194 11.9078 19.4324C11.9687 19.4438 12.0313 19.4438 12.0922 19.4324C12.161 19.4194 12.2266 19.3866 12.3578 19.3211L22 14.4999M2 9.49994L11.6422 4.67883C11.7734 4.61324 11.839 4.58044 11.9078 4.56753C11.9687 4.5561 12.0313 4.5561 12.0922 4.56753C12.161 4.58044 12.2266 4.61324 12.3578 4.67883L22 9.49994L12.3578 14.3211C12.2266 14.3866 12.161 14.4194 12.0922 14.4324C12.0313 14.4438 11.9687 14.4438 11.9078 14.4324C11.839 14.4194 11.7734 14.3866 11.6422 14.3211L2 9.49994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layers-two-02.svg b/@stellar/design-system/src/assets/icons/layers-two-02.svg
new file mode 100644
index 00000000..41a8fc42
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layers-two-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 11.9999L2 14.4999L11.6422 19.3211C11.7734 19.3866 11.839 19.4194 11.9078 19.4324C11.9687 19.4438 12.0313 19.4438 12.0922 19.4324C12.161 19.4194 12.2266 19.3866 12.3578 19.3211L22 14.4999L17 11.9999M2 9.49994L11.6422 4.67883C11.7734 4.61324 11.839 4.58044 11.9078 4.56753C11.9687 4.5561 12.0313 4.5561 12.0922 4.56753C12.161 4.58044 12.2266 4.61324 12.3578 4.67883L22 9.49994L12.3578 14.3211C12.2266 14.3866 12.161 14.4194 12.0922 14.4324C12.0313 14.4438 11.9687 14.4438 11.9078 14.4324C11.839 14.4194 11.7734 14.3866 11.6422 14.3211L2 9.49994Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layers.svg b/@stellar/design-system/src/assets/icons/layers.svg
deleted file mode 100644
index 2dd22478..00000000
--- a/@stellar/design-system/src/assets/icons/layers.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6804)"><path d="M12 20.525C11.7833 20.525 11.571 20.4877 11.363 20.413C11.1543 20.3377 10.9583 20.2334 10.775 20.1L4.025 14.85C3.75833 14.65 3.62933 14.3874 3.638 14.062C3.646 13.7374 3.78333 13.475 4.05 13.275C4.23333 13.1417 4.43333 13.075 4.65 13.075C4.86667 13.075 5.06667 13.1417 5.25 13.275L12 18.5L18.75 13.275C18.9333 13.1417 19.1333 13.075 19.35 13.075C19.5667 13.075 19.7667 13.1417 19.95 13.275C20.2167 13.475 20.3543 13.7374 20.363 14.062C20.371 14.3874 20.2417 14.65 19.975 14.85L13.225 20.1C13.0417 20.2334 12.846 20.3377 12.638 20.413C12.4293 20.4877 12.2167 20.525 12 20.525ZM12 15.475C11.7833 15.475 11.571 15.4377 11.363 15.363C11.1543 15.2877 10.9583 15.1834 10.775 15.05L4.025 9.80002C3.89167 9.70002 3.79167 9.57936 3.725 9.43802C3.65833 9.29602 3.625 9.15002 3.625 9.00002C3.625 8.85002 3.65833 8.70402 3.725 8.56202C3.79167 8.42069 3.89167 8.30002 4.025 8.20002L10.775 2.95002C10.9583 2.81669 11.1543 2.71236 11.363 2.63702C11.571 2.56236 11.7833 2.52502 12 2.52502C12.2167 2.52502 12.4293 2.56236 12.638 2.63702C12.846 2.71236 13.0417 2.81669 13.225 2.95002L19.975 8.20002C20.1083 8.30002 20.2083 8.42069 20.275 8.56202C20.3417 8.70402 20.375 8.85002 20.375 9.00002C20.375 9.15002 20.3417 9.29602 20.275 9.43802C20.2083 9.57936 20.1083 9.70002 19.975 9.80002L13.225 15.05C13.0417 15.1834 12.846 15.2877 12.638 15.363C12.4293 15.4377 12.2167 15.475 12 15.475Z"/></g><defs><clipPath id="clip0_1113_6804"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-alt-01.svg b/@stellar/design-system/src/assets/icons/layout-alt-01.svg
new file mode 100644
index 00000000..ab45e8ea
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-alt-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9H21M9 9L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-alt-02.svg b/@stellar/design-system/src/assets/icons/layout-alt-02.svg
new file mode 100644
index 00000000..ea5739a7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-alt-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 11H12.5M17.5 15H12.5M17.5 7H12.5M9 3L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-alt-03.svg b/@stellar/design-system/src/assets/icons/layout-alt-03.svg
new file mode 100644
index 00000000..bfd6f807
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-alt-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 17H6.5M17.5 13H6.5M3 9H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-alt-04.svg b/@stellar/design-system/src/assets/icons/layout-alt-04.svg
new file mode 100644
index 00000000..d0798535
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-alt-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12L21 12M12 3L12 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-bottom.svg b/@stellar/design-system/src/assets/icons/layout-bottom.svg
new file mode 100644
index 00000000..854b00f3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-bottom.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 15H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-grid-01.svg b/@stellar/design-system/src/assets/icons/layout-grid-01.svg
new file mode 100644
index 00000000..0cf82b33
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-grid-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M12 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-grid-02.svg b/@stellar/design-system/src/assets/icons/layout-grid-02.svg
new file mode 100644
index 00000000..6b68d7b0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-grid-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9H21M3 15H21M12 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-left.svg b/@stellar/design-system/src/assets/icons/layout-left.svg
new file mode 100644
index 00000000..d988e5a1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-right.svg b/@stellar/design-system/src/assets/icons/layout-right.svg
new file mode 100644
index 00000000..9ccd2b88
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 3V21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/layout-top.svg b/@stellar/design-system/src/assets/icons/layout-top.svg
new file mode 100644
index 00000000..93ff63bb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/layout-top.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/left-indent-01.svg b/@stellar/design-system/src/assets/icons/left-indent-01.svg
new file mode 100644
index 00000000..de60ae79
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/left-indent-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.25H12M21 4H3M21 14.75H12M21 20H3M4.28 8.56L8.14667 11.46C8.43616 11.6771 8.5809 11.7857 8.63266 11.9188C8.678 12.0353 8.678 12.1647 8.63266 12.2812C8.5809 12.4143 8.43616 12.5229 8.14667 12.74L4.28 15.64C3.86802 15.949 3.66203 16.1035 3.48961 16.0999C3.33956 16.0968 3.19885 16.0264 3.10632 15.9082C3 15.7725 3 15.515 3 15V9.2C3 8.68503 3 8.42754 3.10632 8.29175C3.19885 8.17358 3.33956 8.10323 3.48961 8.10011C3.66203 8.09652 3.86802 8.25102 4.28 8.56Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/left-indent-02.svg b/@stellar/design-system/src/assets/icons/left-indent-02.svg
new file mode 100644
index 00000000..20f2d793
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/left-indent-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.24995H12M21 3.99995L12 3.99995M21 14.75H3M21 20H3M4.28 2.95995L8.14667 5.85995C8.43616 6.07707 8.5809 6.18563 8.63266 6.31872C8.678 6.43529 8.678 6.56462 8.63266 6.68119C8.5809 6.81427 8.43616 6.92283 8.14667 7.13995L4.28 10.04C3.86802 10.3489 3.66203 10.5034 3.48961 10.4998C3.33956 10.4967 3.19885 10.4264 3.10632 10.3082C3 10.1724 3 9.91493 3 9.39995V3.59995C3 3.08498 3 2.82749 3.10632 2.6917C3.19885 2.57354 3.33956 2.50318 3.48961 2.50006C3.66203 2.49648 3.86802 2.65097 4.28 2.95995Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/letter-spacing-01.svg b/@stellar/design-system/src/assets/icons/letter-spacing-01.svg
new file mode 100644
index 00000000..cb488f9c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/letter-spacing-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 13L15 13M7 17L11.2717 7.60225C11.5031 7.09323 11.6188 6.83872 11.7791 6.75976C11.9184 6.69115 12.0816 6.69115 12.2209 6.75976C12.3812 6.83872 12.4969 7.09323 12.7283 7.60225L17 17M21 3V21M3 3L3 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/letter-spacing-02.svg b/@stellar/design-system/src/assets/icons/letter-spacing-02.svg
new file mode 100644
index 00000000..0c1a0732
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/letter-spacing-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 18H22M2 18L5 15M2 18L5 21M22 18L19 15M22 18L19 21M7 3H17M12 3V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/life-buoy-01.svg b/@stellar/design-system/src/assets/icons/life-buoy-01.svg
new file mode 100644
index 00000000..d710303f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/life-buoy-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.13626 9.13628L4.92893 4.92896M4.92893 19.0711L9.16797 14.8321M14.8611 14.8638L19.0684 19.0711M19.0684 4.92896L14.8287 9.16862M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/life-buoy-02.svg b/@stellar/design-system/src/assets/icons/life-buoy-02.svg
new file mode 100644
index 00000000..29a4be91
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/life-buoy-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.46445 8.46448L4.92893 4.92896M4.92893 19.0711L8.46448 15.5355M15.5355 15.5355L19.0711 19.071M19.0711 4.92891L15.5355 8.46445M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightbulb-01.svg b/@stellar/design-system/src/assets/icons/lightbulb-01.svg
new file mode 100644
index 00000000..21eb5a78
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightbulb-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 16.5V19C15 19.9319 15 20.3978 14.8478 20.7654C14.6448 21.2554 14.2554 21.6448 13.7654 21.8478C13.3978 22 12.9319 22 12 22C11.0681 22 10.6022 22 10.2346 21.8478C9.74458 21.6448 9.35523 21.2554 9.15224 20.7654C9 20.3978 9 19.9319 9 19V16.5M15 16.5C17.6489 15.3427 19.5 12.5755 19.5 9.5C19.5 5.35786 16.1421 2 12 2C7.85786 2 4.5 5.35786 4.5 9.5C4.5 12.5755 6.35114 15.3427 9 16.5M15 16.5H9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightbulb-02.svg b/@stellar/design-system/src/assets/icons/lightbulb-02.svg
new file mode 100644
index 00000000..0e23fc3a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightbulb-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 17.6586V20C10 21.1046 10.8954 22 12 22C13.1046 22 14 21.1046 14 20V17.6586M12 2V3M3 12H2M5.5 5.5L4.8999 4.8999M18.5 5.5L19.1002 4.8999M22 12H21M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightbulb-03.svg b/@stellar/design-system/src/assets/icons/lightbulb-03.svg
new file mode 100644
index 00000000..83fea05c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightbulb-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 22H14.5M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightbulb-04.svg b/@stellar/design-system/src/assets/icons/lightbulb-04.svg
new file mode 100644
index 00000000..44e23511
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightbulb-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightbulb-05.svg b/@stellar/design-system/src/assets/icons/lightbulb-05.svg
new file mode 100644
index 00000000..9bcbc5a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightbulb-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V3M3 12H2M5.5 5.5L4.8999 4.8999M18.5 5.5L19.1002 4.8999M22 12H21M10 13.5H14M12 13.5V18.5M15.5 16.874C17.0141 15.7848 18 14.0075 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 14.0075 6.98593 15.7848 8.5 16.874V18.8C8.5 19.9201 8.5 20.4802 8.71799 20.908C8.90973 21.2843 9.21569 21.5903 9.59202 21.782C10.0198 22 10.5799 22 11.7 22H12.3C13.4201 22 13.9802 22 14.408 21.782C14.7843 21.5903 15.0903 21.2843 15.282 20.908C15.5 20.4802 15.5 19.9201 15.5 18.8V16.874Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightning-01.svg b/@stellar/design-system/src/assets/icons/lightning-01.svg
new file mode 100644
index 00000000..8af71808
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightning-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 2L4.09346 12.6879C3.74465 13.1064 3.57024 13.3157 3.56758 13.4925C3.56526 13.6461 3.63373 13.7923 3.75326 13.8889C3.89075 14 4.16318 14 4.70803 14H12L11 22L19.9065 11.3121C20.2554 10.8936 20.4298 10.6843 20.4324 10.5075C20.4347 10.3539 20.3663 10.2077 20.2467 10.1111C20.1093 10 19.8368 10 19.292 10H12L13 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lightning-02.svg b/@stellar/design-system/src/assets/icons/lightning-02.svg
new file mode 100644
index 00000000..15a79e0a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lightning-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.2495 2H8.49395C8.31447 2 8.22473 2 8.14551 2.02733C8.07544 2.05149 8.01163 2.09093 7.95868 2.14279C7.89881 2.20143 7.85868 2.2817 7.77841 2.44223L3.57841 10.8422C3.38673 11.2256 3.29089 11.4173 3.31391 11.5731C3.33401 11.7091 3.40927 11.8309 3.52197 11.9097C3.65104 12 3.86534 12 4.29395 12H10.4995L7.49953 22L19.6926 9.35531C20.104 8.9287 20.3097 8.7154 20.3217 8.53288C20.3321 8.37446 20.2667 8.22049 20.1454 8.11803C20.0057 8 19.7094 8 19.1167 8H11.9995L14.2495 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-down-01.svg b/@stellar/design-system/src/assets/icons/line-chart-down-01.svg
new file mode 100644
index 00000000..bb83d52d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-down-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M20 15L16.0811 10.8173C15.9326 10.6588 15.8584 10.5796 15.7688 10.5386C15.6897 10.5024 15.6026 10.4875 15.516 10.4953C15.4179 10.5042 15.3215 10.5542 15.1287 10.6543L11.8713 12.3457C11.6785 12.4458 11.5821 12.4958 11.484 12.5047C11.3974 12.5125 11.3103 12.4976 11.2312 12.4614C11.1416 12.4204 11.0674 12.3412 10.9189 12.1827L7 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-down-02.svg b/@stellar/design-system/src/assets/icons/line-chart-down-02.svg
new file mode 100644
index 00000000..651640e7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-down-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M21 15L15.5657 9.56569C15.3677 9.36768 15.2687 9.26867 15.1545 9.23158C15.0541 9.19895 14.9459 9.19895 14.8455 9.23158C14.7313 9.26867 14.6323 9.36768 14.4343 9.56569L12.5657 11.4343C12.3677 11.6323 12.2687 11.7313 12.1545 11.7684C12.0541 11.8011 11.9459 11.8011 11.8455 11.7684C11.7313 11.7313 11.6323 11.6323 11.4343 11.4343L7 7M21 15H17M21 15V11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-down-03.svg b/@stellar/design-system/src/assets/icons/line-chart-down-03.svg
new file mode 100644
index 00000000..c83c6301
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-down-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 15L11.5657 9.56569C11.3677 9.36768 11.2687 9.26867 11.1545 9.23158C11.0541 9.19895 10.9459 9.19895 10.8455 9.23158C10.7313 9.26867 10.6323 9.36768 10.4343 9.56569L8.56569 11.4343C8.36768 11.6323 8.26867 11.7313 8.15451 11.7684C8.05409 11.8011 7.94591 11.8011 7.84549 11.7684C7.73133 11.7313 7.63232 11.6323 7.43431 11.4343L3 7M17 15H13M17 15V11M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-down-04.svg b/@stellar/design-system/src/assets/icons/line-chart-down-04.svg
new file mode 100644
index 00000000..f3e6197b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-down-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9L9.65533 13.7538C9.85422 13.8959 10.1267 13.8733 10.2995 13.7005L13.7005 10.2995C13.8733 10.1267 14.1458 10.1041 14.3447 10.2462L21 15M6 21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H6C4.34315 3 3 4.34315 3 6V18C3 19.6569 4.34315 21 6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-down-05.svg b/@stellar/design-system/src/assets/icons/line-chart-down-05.svg
new file mode 100644
index 00000000..ec5ea468
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-down-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 10L9.43431 13.4343C9.63232 13.6323 9.73133 13.7313 9.84549 13.7684C9.94591 13.8011 10.0541 13.8011 10.1545 13.7684C10.2687 13.7313 10.3677 13.6323 10.5657 13.4343L13.4343 10.5657C13.6323 10.3677 13.7313 10.2687 13.8455 10.2316C13.9459 10.1989 14.0541 10.1989 14.1545 10.2316C14.2687 10.2687 14.3677 10.3677 14.5657 10.5657L18 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-up-01.svg b/@stellar/design-system/src/assets/icons/line-chart-up-01.svg
new file mode 100644
index 00000000..e49ef0f2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-up-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M20 8L16.0811 12.1827C15.9326 12.3412 15.8584 12.4204 15.7688 12.4614C15.6897 12.4976 15.6026 12.5125 15.516 12.5047C15.4179 12.4958 15.3215 12.4458 15.1287 12.3457L11.8713 10.6543C11.6785 10.5542 11.5821 10.5042 11.484 10.4953C11.3974 10.4875 11.3103 10.5024 11.2312 10.5386C11.1416 10.5796 11.0674 10.6588 10.9189 10.8173L7 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-up-02.svg b/@stellar/design-system/src/assets/icons/line-chart-up-02.svg
new file mode 100644
index 00000000..5e404dc5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-up-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M21 7L15.5657 12.4343C15.3677 12.6323 15.2687 12.7313 15.1545 12.7684C15.0541 12.8011 14.9459 12.8011 14.8455 12.7684C14.7313 12.7313 14.6323 12.6323 14.4343 12.4343L12.5657 10.5657C12.3677 10.3677 12.2687 10.2687 12.1545 10.2316C12.0541 10.1989 11.9459 10.1989 11.8455 10.2316C11.7313 10.2687 11.6323 10.3677 11.4343 10.5657L7 15M21 7H17M21 7V11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-up-03.svg b/@stellar/design-system/src/assets/icons/line-chart-up-03.svg
new file mode 100644
index 00000000..4895c2a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-up-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 9L11.5657 14.4343C11.3677 14.6323 11.2687 14.7313 11.1545 14.7684C11.0541 14.8011 10.9459 14.8011 10.8455 14.7684C10.7313 14.7313 10.6323 14.6323 10.4343 14.4343L8.56569 12.5657C8.36768 12.3677 8.26867 12.2687 8.15451 12.2316C8.05409 12.1989 7.94591 12.1989 7.84549 12.2316C7.73133 12.2687 7.63232 12.3677 7.43431 12.5657L3 17M17 9H13M17 9V13M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-up-04.svg b/@stellar/design-system/src/assets/icons/line-chart-up-04.svg
new file mode 100644
index 00000000..b2c50ea5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-up-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9L14.5515 13.6061C14.3555 13.746 14.2576 13.816 14.1527 13.8371C14.0602 13.8557 13.9643 13.8478 13.8762 13.8142C13.7762 13.7762 13.691 13.691 13.5208 13.5208L10.4792 10.4792C10.309 10.309 10.2238 10.2238 10.1238 10.1858C10.0357 10.1522 9.9398 10.1443 9.84732 10.1629C9.74241 10.184 9.64445 10.254 9.44853 10.3939L3 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-chart-up-05.svg b/@stellar/design-system/src/assets/icons/line-chart-up-05.svg
new file mode 100644
index 00000000..6a3d26f4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-chart-up-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 10L14.5657 13.4343C14.3677 13.6323 14.2687 13.7313 14.1545 13.7684C14.0541 13.8011 13.9459 13.8011 13.8455 13.7684C13.7313 13.7313 13.6323 13.6323 13.4343 13.4343L10.5657 10.5657C10.3677 10.3677 10.2687 10.2687 10.1545 10.2316C10.0541 10.1989 9.94591 10.1989 9.84549 10.2316C9.73133 10.2687 9.63232 10.3677 9.43431 10.5657L6 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/line-height.svg b/@stellar/design-system/src/assets/icons/line-height.svg
new file mode 100644
index 00000000..5510c78e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/line-height.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 13H15M7 17L11.2717 7.60224C11.5031 7.09323 11.6188 6.83872 11.7791 6.75976C11.9184 6.69115 12.0816 6.69115 12.2209 6.75976C12.3812 6.83872 12.4969 7.09323 12.7283 7.60224L17 17M21 21H3M21 3H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-01.svg b/@stellar/design-system/src/assets/icons/link-01.svg
new file mode 100644
index 00000000..831920ca
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.7076 18.3639L11.2933 19.7781C9.34072 21.7308 6.1749 21.7308 4.22228 19.7781C2.26966 17.8255 2.26966 14.6597 4.22228 12.7071L5.63649 11.2929M18.3644 12.7071L19.7786 11.2929C21.7312 9.34024 21.7312 6.17441 19.7786 4.22179C17.826 2.26917 14.6602 2.26917 12.7076 4.22179L11.2933 5.636M8.50045 15.4999L15.5005 8.49994" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-02.svg b/@stellar/design-system/src/assets/icons/link-02.svg
new file mode 100644
index 00000000..cb8434be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 17H7C4.23858 17 2 14.7614 2 12C2 9.23858 4.23858 7 7 7H9M15 17H17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7H15M7 12L17 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-03.svg b/@stellar/design-system/src/assets/icons/link-03.svg
new file mode 100644
index 00000000..81d8a047
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 13C10.4295 13.5741 10.9774 14.0491 11.6066 14.3929C12.2358 14.7367 12.9315 14.9411 13.6467 14.9923C14.3618 15.0435 15.0796 14.9403 15.7514 14.6897C16.4231 14.4392 17.0331 14.047 17.54 13.54L20.54 10.54C21.4508 9.59695 21.9548 8.33394 21.9434 7.02296C21.932 5.71198 21.4062 4.45791 20.4791 3.53087C19.5521 2.60383 18.298 2.07799 16.987 2.0666C15.676 2.0552 14.413 2.55918 13.47 3.46997L11.75 5.17997M14 11C13.5706 10.4258 13.0227 9.95078 12.3935 9.60703C11.7643 9.26327 11.0685 9.05885 10.3534 9.00763C9.63822 8.95641 8.92043 9.0596 8.24867 9.31018C7.57691 9.56077 6.9669 9.9529 6.46002 10.46L3.46002 13.46C2.54923 14.403 2.04525 15.666 2.05665 16.977C2.06804 18.288 2.59388 19.542 3.52092 20.4691C4.44796 21.3961 5.70203 21.9219 7.01301 21.9333C8.32399 21.9447 9.58701 21.4408 10.53 20.53L12.24 18.82" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-04.svg b/@stellar/design-system/src/assets/icons/link-04.svg
new file mode 100644
index 00000000..1831cbc2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 7H7C4.23858 7 2 9.23858 2 12C2 14.7614 4.23858 17 7 17H9C11.7614 17 14 14.7614 14 12M16.5 17H17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7H15C12.2386 7 10 9.23858 10 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-05.svg b/@stellar/design-system/src/assets/icons/link-05.svg
new file mode 100644
index 00000000..e758dce9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 17H7C4.23858 17 2 14.7614 2 12C2 9.23858 4.23858 7 7 7H9M8 12L18 12M15.7778 17H17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7H15.7778C15.3482 7 15 7.34822 15 7.77778V16.2222C15 16.6518 15.3482 17 15.7778 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-broken-01.svg b/@stellar/design-system/src/assets/icons/link-broken-01.svg
new file mode 100644
index 00000000..d81332a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-broken-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 4V2M15 20V22M4 9H2M20 15H22M4.91421 4.91421L3.5 3.5M19.0858 19.0858L20.5 20.5M12 17.6569L9.87868 19.7782C8.31658 21.3403 5.78392 21.3403 4.22183 19.7782C2.65973 18.2161 2.65973 15.6834 4.22183 14.1213L6.34315 12M17.6569 12L19.7782 9.87868C21.3403 8.31658 21.3403 5.78392 19.7782 4.22183C18.2161 2.65973 15.6834 2.65973 14.1213 4.22183L12 6.34315" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-broken-02.svg b/@stellar/design-system/src/assets/icons/link-broken-02.svg
new file mode 100644
index 00000000..d10a5ad5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-broken-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 15.5L15.5 8.49998M9 4V2M15 20V22M4 9H2M20 15H22M4.91421 4.91421L3.5 3.5M19.0858 19.0857L20.5 20.4999M12 17.6568L9.87871 19.7781C8.31662 21.3402 5.78396 21.3402 4.22186 19.7781C2.65976 18.216 2.65976 15.6833 4.22186 14.1212L6.34318 11.9999M17.6569 11.9999L19.7782 9.87859C21.3403 8.31649 21.3403 5.78383 19.7782 4.22174C18.2161 2.65964 15.6835 2.65964 14.1214 4.22174L12 6.34306" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-external-01.svg b/@stellar/design-system/src/assets/icons/link-external-01.svg
new file mode 100644
index 00000000..b90b0615
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-external-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9L21 3M21 3H15M21 3L13 11M10 5H7.8C6.11984 5 5.27976 5 4.63803 5.32698C4.07354 5.6146 3.6146 6.07354 3.32698 6.63803C3 7.27976 3 8.11984 3 9.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H14.2C15.8802 21 16.7202 21 17.362 20.673C17.9265 20.3854 18.3854 19.9265 18.673 19.362C19 18.7202 19 17.8802 19 16.2V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link-external-02.svg b/@stellar/design-system/src/assets/icons/link-external-02.svg
new file mode 100644
index 00000000..9c975ce1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/link-external-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/link.svg b/@stellar/design-system/src/assets/icons/link.svg
deleted file mode 100644
index f7958b2f..00000000
--- a/@stellar/design-system/src/assets/icons/link.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6801)"><path d="M7 17C5.61667 17 4.43767 16.5123 3.463 15.537C2.48767 14.5623 2 13.3833 2 12C2 10.6167 2.48767 9.43733 3.463 8.462C4.43767 7.48733 5.61667 7 7 7H10C10.2833 7 10.521 7.09567 10.713 7.287C10.9043 7.479 11 7.71667 11 8C11 8.28333 10.9043 8.52067 10.713 8.712C10.521 8.904 10.2833 9 10 9H7C6.16667 9 5.45833 9.29167 4.875 9.875C4.29167 10.4583 4 11.1667 4 12C4 12.8333 4.29167 13.5417 4.875 14.125C5.45833 14.7083 6.16667 15 7 15H10C10.2833 15 10.521 15.0957 10.713 15.287C10.9043 15.479 11 15.7167 11 16C11 16.2833 10.9043 16.5207 10.713 16.712C10.521 16.904 10.2833 17 10 17H7ZM9 13C8.71667 13 8.47933 12.904 8.288 12.712C8.096 12.5207 8 12.2833 8 12C8 11.7167 8.096 11.479 8.288 11.287C8.47933 11.0957 8.71667 11 9 11H15C15.2833 11 15.521 11.0957 15.713 11.287C15.9043 11.479 16 11.7167 16 12C16 12.2833 15.9043 12.5207 15.713 12.712C15.521 12.904 15.2833 13 15 13H9ZM14 17C13.7167 17 13.4793 16.904 13.288 16.712C13.096 16.5207 13 16.2833 13 16C13 15.7167 13.096 15.479 13.288 15.287C13.4793 15.0957 13.7167 15 14 15H17C17.8333 15 18.5417 14.7083 19.125 14.125C19.7083 13.5417 20 12.8333 20 12C20 11.1667 19.7083 10.4583 19.125 9.875C18.5417 9.29167 17.8333 9 17 9H14C13.7167 9 13.4793 8.904 13.288 8.712C13.096 8.52067 13 8.28333 13 8C13 7.71667 13.096 7.479 13.288 7.287C13.4793 7.09567 13.7167 7 14 7H17C18.3833 7 19.5627 7.48733 20.538 8.462C21.5127 9.43733 22 10.6167 22 12C22 13.3833 21.5127 14.5623 20.538 15.537C19.5627 16.5123 18.3833 17 17 17H14Z"/></g><defs><clipPath id="clip0_1113_6801"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/list.svg b/@stellar/design-system/src/assets/icons/list.svg
new file mode 100644
index 00000000..57f697b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/list.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 12L9 12M21 6L9 6M21 18L9 18M5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12ZM5 6C5 6.55228 4.55228 7 4 7C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5C4.55228 5 5 5.44772 5 6ZM5 18C5 18.5523 4.55228 19 4 19C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17C4.55228 17 5 17.4477 5 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/loading-01.svg b/@stellar/design-system/src/assets/icons/loading-01.svg
new file mode 100644
index 00000000..f7d4959c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/loading-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2.25V4.75M12 18V22M5.75 12H2.25M21.25 12H19.75M18.4571 18.4571L17.75 17.75M18.6642 5.41579L17.25 6.83M4.92157 19.0784L7.75 16.25M5.12868 5.20868L7.25 7.33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/loading-02.svg b/@stellar/design-system/src/assets/icons/loading-02.svg
new file mode 100644
index 00000000..8ad5f8eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/loading-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V6M12 18V22M6 12H2M22 12H18M19.0784 19.0784L16.25 16.25M19.0784 4.99994L16.25 7.82837M4.92157 19.0784L7.75 16.25M4.92157 4.99994L7.75 7.82837" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/loading-03.svg b/@stellar/design-system/src/assets/icons/loading-03.svg
new file mode 100644
index 00000000..c55a508d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/loading-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.34025 16.9997C2.0881 14.8298 2.72473 12.0644 4.79795 10.6601L4.80018 10.6578C6.46564 9.53235 8.65775 9.57012 10.2843 10.7523L13.7164 13.2477C15.3418 14.4299 17.5339 14.4676 19.2005 13.3421L19.2027 13.3399C21.2771 11.9356 21.9148 9.16792 20.6604 7.00026M17.002 20.6593C14.8321 21.9114 12.0667 21.2748 10.6623 19.2016L10.6601 19.1994C9.53457 17.5339 9.57234 15.3418 10.7545 13.7152L13.2499 10.2832C14.4321 8.6577 14.4699 6.46559 13.3444 4.79901L13.3399 4.79679C11.9356 2.72468 9.16792 2.08582 7.00026 3.3402M19.0705 4.92901C22.9758 8.83436 22.9758 15.1651 19.0705 19.0705C15.1651 22.9758 8.83436 22.9758 4.92901 19.0705C1.02366 15.1651 1.02366 8.83436 4.92901 4.92901C8.83436 1.02366 15.1651 1.02366 19.0705 4.92901Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/local-mall.svg b/@stellar/design-system/src/assets/icons/local-mall.svg
deleted file mode 100644
index f838e0c4..00000000
--- a/@stellar/design-system/src/assets/icons/local-mall.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6798)"><path d="M19 22H5C4.45 22 3.979 21.8043 3.587 21.413C3.19567 21.021 3 20.55 3 20V8C3 7.45 3.19567 6.97933 3.587 6.588C3.979 6.196 4.45 6 5 6H7C7 4.61667 7.48767 3.43733 8.463 2.462C9.43767 1.48733 10.6167 1 12 1C13.3833 1 14.5627 1.48733 15.538 2.462C16.5127 3.43733 17 4.61667 17 6H19C19.55 6 20.021 6.196 20.413 6.588C20.8043 6.97933 21 7.45 21 8V20C21 20.55 20.8043 21.021 20.413 21.413C20.021 21.8043 19.55 22 19 22ZM9 6H15C15 5.16667 14.7083 4.45833 14.125 3.875C13.5417 3.29167 12.8333 3 12 3C11.1667 3 10.4583 3.29167 9.875 3.875C9.29167 4.45833 9 5.16667 9 6ZM12 14C13.2333 14 14.35 13.5917 15.35 12.775C16.35 11.9583 16.8417 11.0417 16.825 10.025C16.825 9.74167 16.7333 9.5 16.55 9.3C16.3667 9.1 16.1333 9 15.85 9C15.6167 9 15.4083 9.075 15.225 9.225C15.0417 9.375 14.9083 9.6 14.825 9.9C14.6417 10.5333 14.2833 11.0417 13.75 11.425C13.2167 11.8083 12.6333 12 12 12C11.3667 12 10.7793 11.8083 10.238 11.425C9.696 11.0417 9.34167 10.5333 9.175 9.9C9.09167 9.58333 8.96667 9.354 8.8 9.212C8.63333 9.07067 8.43333 9 8.2 9C7.91667 9 7.67933 9.1 7.488 9.3C7.296 9.5 7.2 9.74167 7.2 10.025C7.2 11.0417 7.69167 11.9583 8.675 12.775C9.65833 13.5917 10.7667 14 12 14Z"/></g><defs><clipPath id="clip0_1113_6798"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-01.svg b/@stellar/design-system/src/assets/icons/lock-01.svg
new file mode 100644
index 00000000..833ecc0f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 10V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V10M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-02.svg b/@stellar/design-system/src/assets/icons/lock-02.svg
new file mode 100644
index 00000000..51401b18
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 11V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V11M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V15.8C21 14.1198 21 13.2798 20.673 12.638C20.3854 12.0735 19.9265 11.6146 19.362 11.327C18.7202 11 17.8802 11 16.2 11H7.8C6.11984 11 5.27976 11 4.63803 11.327C4.07354 11.6146 3.6146 12.0735 3.32698 12.638C3 13.2798 3 14.1198 3 15.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-03.svg b/@stellar/design-system/src/assets/icons/lock-03.svg
new file mode 100644
index 00000000..4f9e49ac
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 11V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V11M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V15.8C20 14.1198 20 13.2798 19.673 12.638C19.3854 12.0735 18.9265 11.6146 18.362 11.327C17.7202 11 16.8802 11 15.2 11H8.8C7.11984 11 6.27976 11 5.63803 11.327C5.07354 11.6146 4.6146 12.0735 4.32698 12.638C4 13.2798 4 14.1198 4 15.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-04.svg b/@stellar/design-system/src/assets/icons/lock-04.svg
new file mode 100644
index 00000000..0ec6c9b2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.10102 10H7V8C7 5.23858 9.23858 3 12 3C14.7614 3 17 5.23858 17 8V10H16.899M12 14V16M19 15C19 18.866 15.866 22 12 22C8.13401 22 5 18.866 5 15C5 11.134 8.13401 8 12 8C15.866 8 19 11.134 19 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-keyhole-circle.svg b/@stellar/design-system/src/assets/icons/lock-keyhole-circle.svg
new file mode 100644
index 00000000..5a89b56e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-keyhole-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.7316 13.1947C13.661 12.9831 13.6257 12.8772 13.6276 12.7907C13.6295 12.6996 13.6417 12.6519 13.6836 12.5711C13.7235 12.4942 13.83 12.395 14.0432 12.1967C14.6318 11.649 15 10.8675 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 10.8675 9.36818 11.649 9.95681 12.1967C10.17 12.395 10.2765 12.4942 10.3164 12.5711C10.3583 12.6519 10.3705 12.6996 10.3724 12.7907C10.3743 12.8772 10.339 12.9831 10.2684 13.1947L9.35099 15.947C9.23249 16.3025 9.17324 16.4803 9.20877 16.6218C9.23987 16.7456 9.31718 16.8529 9.42484 16.9216C9.54783 17 9.7352 17 10.1099 17H13.8901C14.2648 17 14.4522 17 14.5752 16.9216C14.6828 16.8529 14.7601 16.7456 14.7912 16.6218C14.8268 16.4803 14.7675 16.3025 14.649 15.947L13.7316 13.1947Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-keyhole-square.svg b/@stellar/design-system/src/assets/icons/lock-keyhole-square.svg
new file mode 100644
index 00000000..41ff2237
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-keyhole-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27977 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3L7.8 3C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8L3 16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.7316 13.1947C13.661 12.9831 13.6257 12.8772 13.6276 12.7907C13.6295 12.6996 13.6417 12.6519 13.6836 12.5711C13.7235 12.4942 13.83 12.395 14.0432 12.1967C14.6318 11.6489 15 10.8675 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 10.8675 9.36818 11.649 9.95681 12.1967C10.17 12.395 10.2765 12.4942 10.3164 12.5711C10.3583 12.6519 10.3705 12.6996 10.3724 12.7907C10.3743 12.8772 10.339 12.9831 10.2684 13.1947L9.35099 15.947C9.23249 16.3025 9.17324 16.4803 9.20877 16.6218C9.23987 16.7456 9.31718 16.8529 9.42484 16.9216C9.54783 17 9.7352 17 10.1099 17H13.8901C14.2648 17 14.4522 17 14.5752 16.9216C14.6828 16.8529 14.7601 16.7456 14.7912 16.6218C14.8268 16.4803 14.7675 16.3025 14.649 15.947L13.7316 13.1947Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-open.svg b/@stellar/design-system/src/assets/icons/lock-open.svg
deleted file mode 100644
index 4099c4e9..00000000
--- a/@stellar/design-system/src/assets/icons/lock-open.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6792)"><path d="M6 22C5.45 22 4.97933 21.8043 4.588 21.413C4.196 21.021 4 20.55 4 20V10C4 9.45 4.196 8.979 4.588 8.587C4.97933 8.19567 5.45 8 6 8H15V6C15 5.16667 14.7083 4.45833 14.125 3.875C13.5417 3.29167 12.8333 3 12 3C11.3167 3 10.7127 3.204 10.188 3.612C9.66267 4.02067 9.30833 4.53333 9.125 5.15C9.04167 5.4 8.91267 5.604 8.738 5.762C8.56267 5.92067 8.35833 6 8.125 6C7.79167 6 7.525 5.88733 7.325 5.662C7.125 5.43733 7.05833 5.18333 7.125 4.9C7.375 3.78333 7.95 2.854 8.85 2.112C9.75 1.37067 10.8 1 12 1C13.3833 1 14.5627 1.48733 15.538 2.462C16.5127 3.43733 17 4.61667 17 6V8H18C18.55 8 19.021 8.19567 19.413 8.587C19.8043 8.979 20 9.45 20 10V20C20 20.55 19.8043 21.021 19.413 21.413C19.021 21.8043 18.55 22 18 22H6ZM12 17C12.55 17 13.021 16.8043 13.413 16.413C13.8043 16.021 14 15.55 14 15C14 14.45 13.8043 13.979 13.413 13.587C13.021 13.1957 12.55 13 12 13C11.45 13 10.9793 13.1957 10.588 13.587C10.196 13.979 10 14.45 10 15C10 15.55 10.196 16.021 10.588 16.413C10.9793 16.8043 11.45 17 12 17Z"/></g><defs><clipPath id="clip0_1113_6792"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-unlocked-01.svg b/@stellar/design-system/src/assets/icons/lock-unlocked-01.svg
new file mode 100644
index 00000000..f9fd22e9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-unlocked-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 10V8C7 5.23858 9.23858 3 12 3C14.0503 3 15.8124 4.2341 16.584 6M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-unlocked-02.svg b/@stellar/design-system/src/assets/icons/lock-unlocked-02.svg
new file mode 100644
index 00000000..044d6e1a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-unlocked-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 11V8C7 5.23858 9.23858 3 12 3C14.419 3 16.4367 4.71776 16.9 7M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V15.8C21 14.1198 21 13.2798 20.673 12.638C20.3854 12.0735 19.9265 11.6146 19.362 11.327C18.7202 11 17.8802 11 16.2 11H7.8C6.11984 11 5.27976 11 4.63803 11.327C4.07354 11.6146 3.6146 12.0735 3.32698 12.638C3 13.2798 3 14.1198 3 15.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-unlocked-03.svg b/@stellar/design-system/src/assets/icons/lock-unlocked-03.svg
new file mode 100644
index 00000000..ef45950d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-unlocked-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 11V8C7 5.23858 9.23858 3 12 3C14.419 3 16.4367 4.71776 16.9 7M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V15.8C20 14.1198 20 13.2798 19.673 12.638C19.3854 12.0735 18.9265 11.6146 18.362 11.327C17.7202 11 16.8802 11 15.2 11H8.8C7.11984 11 6.27976 11 5.63803 11.327C5.07354 11.6146 4.6146 12.0735 4.32698 12.638C4 13.2798 4 14.1198 4 15.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock-unlocked-04.svg b/@stellar/design-system/src/assets/icons/lock-unlocked-04.svg
new file mode 100644
index 00000000..77553c94
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/lock-unlocked-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 10V8C7 5.23858 9.23858 3 12 3C13.6358 3 15.0882 3.78555 16.0004 5M12 14V16M19 15C19 18.866 15.866 22 12 22C8.13401 22 5 18.866 5 15C5 11.134 8.13401 8 12 8C15.866 8 19 11.134 19 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/lock.svg b/@stellar/design-system/src/assets/icons/lock.svg
deleted file mode 100644
index e73f2ee1..00000000
--- a/@stellar/design-system/src/assets/icons/lock.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6795)"><path d="M6 22C5.45 22 4.97933 21.8043 4.588 21.413C4.196 21.021 4 20.55 4 20V10C4 9.45 4.196 8.979 4.588 8.587C4.97933 8.19567 5.45 8 6 8H7V6C7 4.61667 7.48767 3.43733 8.463 2.462C9.43767 1.48733 10.6167 1 12 1C13.3833 1 14.5627 1.48733 15.538 2.462C16.5127 3.43733 17 4.61667 17 6V8H18C18.55 8 19.021 8.19567 19.413 8.587C19.8043 8.979 20 9.45 20 10V20C20 20.55 19.8043 21.021 19.413 21.413C19.021 21.8043 18.55 22 18 22H6ZM12 17C12.55 17 13.021 16.8043 13.413 16.413C13.8043 16.021 14 15.55 14 15C14 14.45 13.8043 13.979 13.413 13.587C13.021 13.1957 12.55 13 12 13C11.45 13 10.9793 13.1957 10.588 13.587C10.196 13.979 10 14.45 10 15C10 15.55 10.196 16.021 10.588 16.413C10.9793 16.8043 11.45 17 12 17ZM9 8H15V6C15 5.16667 14.7083 4.45833 14.125 3.875C13.5417 3.29167 12.8333 3 12 3C11.1667 3 10.4583 3.29167 9.875 3.875C9.29167 4.45833 9 5.16667 9 6V8Z"/></g><defs><clipPath id="clip0_1113_6795"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-in-01.svg b/@stellar/design-system/src/assets/icons/log-in-01.svg
new file mode 100644
index 00000000..0c6acc0c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-in-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11985 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H15M10 7L15 12M15 12L10 17M15 12L3 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-in-02.svg b/@stellar/design-system/src/assets/icons/log-in-02.svg
new file mode 100644
index 00000000..bf5bad1d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-in-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 17C6 17.93 6 18.395 6.10222 18.7765C6.37962 19.8117 7.18827 20.6204 8.22354 20.8978C8.60504 21 9.07003 21 10 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H10C9.07003 3 8.60504 3 8.22354 3.10222C7.18827 3.37962 6.37962 4.18827 6.10222 5.22354C6 5.60504 6 6.07003 6 7M12 8L16 12M16 12L12 16M16 12H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-in-03.svg b/@stellar/design-system/src/assets/icons/log-in-03.svg
new file mode 100644
index 00000000..6c182043
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-in-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 17C6 17.3513 6 17.5269 6.01567 17.6796C6.14575 18.9474 7.0626 19.9946 8.30206 20.2911C8.45134 20.3268 8.6255 20.35 8.97368 20.3965L15.5656 21.2754C17.442 21.5256 18.3803 21.6507 19.1084 21.3611C19.7478 21.1069 20.2803 20.6407 20.6168 20.0406C21 19.357 21 18.4105 21 16.5175V7.48244C21 5.5894 21 4.64288 20.6168 3.95935C20.2803 3.35923 19.7478 2.893 19.1084 2.6388C18.3803 2.34926 17.442 2.47435 15.5656 2.72455L8.97368 3.60347C8.62546 3.6499 8.45135 3.67311 8.30206 3.70883C7.0626 4.00532 6.14575 5.05254 6.01567 6.3203C6 6.47301 6 6.64866 6 6.99996M12 7.99996L16 12M16 12L12 16M16 12H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-in-04.svg b/@stellar/design-system/src/assets/icons/log-in-04.svg
new file mode 100644
index 00000000..7b18bee9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-in-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8L16 12M16 12L12 16M16 12H3M3.33782 7C5.06687 4.01099 8.29859 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C8.29859 22 5.06687 19.989 3.33782 17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-out-01.svg b/@stellar/design-system/src/assets/icons/log-out-01.svg
new file mode 100644
index 00000000..d0237e17
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-out-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 17L21 12M21 12L16 7M21 12H9M9 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-out-02.svg b/@stellar/design-system/src/assets/icons/log-out-02.svg
new file mode 100644
index 00000000..5e5ecb03
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-out-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 17L21 12M21 12L16 7M21 12H9M12 17C12 17.93 12 18.395 11.8978 18.7765C11.6204 19.8117 10.8117 20.6204 9.77646 20.8978C9.39496 21 8.92997 21 8 21H7.5C6.10218 21 5.40326 21 4.85195 20.7716C4.11687 20.4672 3.53284 19.8831 3.22836 19.1481C3 18.5967 3 17.8978 3 16.5V7.5C3 6.10217 3 5.40326 3.22836 4.85195C3.53284 4.11687 4.11687 3.53284 4.85195 3.22836C5.40326 3 6.10218 3 7.5 3H8C8.92997 3 9.39496 3 9.77646 3.10222C10.8117 3.37962 11.6204 4.18827 11.8978 5.22354C12 5.60504 12 6.07003 12 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-out-03.svg b/@stellar/design-system/src/assets/icons/log-out-03.svg
new file mode 100644
index 00000000..84c293c5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-out-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 16.9999L21 11.9999M21 11.9999L16 6.99994M21 11.9999H9M12 16.9999C12 17.2955 12 17.4433 11.989 17.5713C11.8748 18.9019 10.8949 19.9968 9.58503 20.2572C9.45903 20.2823 9.31202 20.2986 9.01835 20.3312L7.99694 20.4447C6.46248 20.6152 5.69521 20.7005 5.08566 20.5054C4.27293 20.2453 3.60942 19.6515 3.26118 18.8724C3 18.2881 3 17.5162 3 15.9722V8.02764C3 6.4837 3 5.71174 3.26118 5.12746C3.60942 4.34842 4.27293 3.75454 5.08566 3.49447C5.69521 3.29941 6.46246 3.38466 7.99694 3.55516L9.01835 3.66865C9.31212 3.70129 9.45901 3.71761 9.58503 3.74267C10.8949 4.0031 11.8748 5.09798 11.989 6.42855C12 6.55657 12 6.70436 12 6.99994" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/log-out-04.svg b/@stellar/design-system/src/assets/icons/log-out-04.svg
new file mode 100644
index 00000000..d7bafeb7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/log-out-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 8L22 12M22 12L18 16M22 12H9M15 4.20404C13.7252 3.43827 12.2452 3 10.6667 3C5.8802 3 2 7.02944 2 12C2 16.9706 5.8802 21 10.6667 21C12.2452 21 13.7252 20.5617 15 19.796" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/login.svg b/@stellar/design-system/src/assets/icons/login.svg
deleted file mode 100644
index 72941692..00000000
--- a/@stellar/design-system/src/assets/icons/login.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6789)"><path d="M9.325 16.275C9.14167 16.0583 9.05 15.8123 9.05 15.537C9.05 15.2623 9.14167 15.0333 9.325 14.85L11.175 13H4C3.71667 13 3.47933 12.904 3.288 12.712C3.096 12.5207 3 12.2833 3 12C3 11.7167 3.096 11.479 3.288 11.287C3.47933 11.0957 3.71667 11 4 11H11.175L9.325 9.15C9.125 8.95 9.025 8.71267 9.025 8.438C9.025 8.16267 9.125 7.925 9.325 7.725C9.50833 7.525 9.73767 7.425 10.013 7.425C10.2877 7.425 10.5167 7.51667 10.7 7.7L14.3 11.3C14.4 11.4 14.471 11.5083 14.513 11.625C14.5543 11.7417 14.575 11.8667 14.575 12C14.575 12.1333 14.5543 12.2583 14.513 12.375C14.471 12.4917 14.4 12.6 14.3 12.7L10.7 16.3C10.5 16.5 10.2667 16.5917 10 16.575C9.73333 16.5583 9.50833 16.4583 9.325 16.275ZM13 21C12.7167 21 12.4793 20.904 12.288 20.712C12.096 20.5207 12 20.2833 12 20C12 19.7167 12.096 19.4793 12.288 19.288C12.4793 19.096 12.7167 19 13 19H19V5H13C12.7167 5 12.4793 4.904 12.288 4.712C12.096 4.52067 12 4.28333 12 4C12 3.71667 12.096 3.479 12.288 3.287C12.4793 3.09567 12.7167 3 13 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5V19C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H13Z"/></g><defs><clipPath id="clip0_1113_6789"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/logout.svg b/@stellar/design-system/src/assets/icons/logout.svg
deleted file mode 100644
index 619a638b..00000000
--- a/@stellar/design-system/src/assets/icons/logout.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6786)"><path d="M15.325 16.275C15.1417 16.0583 15.05 15.8123 15.05 15.537C15.05 15.2623 15.1417 15.0333 15.325 14.85L17.175 13H10C9.71667 13 9.47933 12.904 9.288 12.712C9.096 12.5207 9 12.2833 9 12C9 11.7167 9.096 11.479 9.288 11.287C9.47933 11.0957 9.71667 11 10 11H17.175L15.325 9.15C15.125 8.95 15.025 8.71267 15.025 8.438C15.025 8.16267 15.125 7.925 15.325 7.725C15.5083 7.525 15.7377 7.425 16.013 7.425C16.2877 7.425 16.5167 7.51667 16.7 7.7L20.3 11.3C20.4 11.4 20.471 11.5083 20.513 11.625C20.5543 11.7417 20.575 11.8667 20.575 12C20.575 12.1333 20.5543 12.2583 20.513 12.375C20.471 12.4917 20.4 12.6 20.3 12.7L16.7 16.3C16.4833 16.5167 16.246 16.6123 15.988 16.587C15.7293 16.5623 15.5083 16.4583 15.325 16.275ZM5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H11C11.2833 3 11.521 3.09567 11.713 3.287C11.9043 3.479 12 3.71667 12 4C12 4.28333 11.9043 4.52067 11.713 4.712C11.521 4.904 11.2833 5 11 5H5V19H11C11.2833 19 11.521 19.096 11.713 19.288C11.9043 19.4793 12 19.7167 12 20C12 20.2833 11.9043 20.5207 11.713 20.712C11.521 20.904 11.2833 21 11 21H5Z"/></g><defs><clipPath id="clip0_1113_6786"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/luggage-01.svg b/@stellar/design-system/src/assets/icons/luggage-01.svg
new file mode 100644
index 00000000..8622bef3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/luggage-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 22V20M9.5 15V7M16 22V20M14.5 15V7M8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/luggage-02.svg b/@stellar/design-system/src/assets/icons/luggage-02.svg
new file mode 100644
index 00000000..06838a2f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/luggage-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 7C16 6.07003 16 5.60504 15.8978 5.22354C15.6204 4.18827 14.8117 3.37962 13.7765 3.10222C13.395 3 12.93 3 12 3C11.07 3 10.605 3 10.2235 3.10222C9.18827 3.37962 8.37962 4.18827 8.10222 5.22354C8 5.60504 8 6.07003 8 7M12.8 17.5H17.7C17.98 17.5 18.12 17.5 18.227 17.4455C18.3211 17.3976 18.3976 17.3211 18.4455 17.227C18.5 17.12 18.5 16.98 18.5 16.7V14.3C18.5 14.02 18.5 13.88 18.4455 13.773C18.3976 13.6789 18.3211 13.6024 18.227 13.5545C18.12 13.5 17.98 13.5 17.7 13.5H12.8C12.52 13.5 12.38 13.5 12.273 13.5545C12.1789 13.6024 12.1024 13.6789 12.0545 13.773C12 13.88 12 14.02 12 14.3V16.7C12 16.98 12 17.12 12.0545 17.227C12.1024 17.3211 12.1789 17.3976 12.273 17.4455C12.38 17.5 12.52 17.5 12.8 17.5ZM6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V11.8C22 10.1198 22 9.27976 21.673 8.63803C21.3854 8.07354 20.9265 7.6146 20.362 7.32698C19.7202 7 18.8802 7 17.2 7H6.8C5.11984 7 4.27976 7 3.63803 7.32698C3.07354 7.6146 2.6146 8.07354 2.32698 8.63803C2 9.27976 2 10.1198 2 11.8V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/luggage-03.svg b/@stellar/design-system/src/assets/icons/luggage-03.svg
new file mode 100644
index 00000000..4e16c897
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/luggage-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 21V7C8 6.07003 8 5.60504 8.10222 5.22354C8.37962 4.18827 9.18827 3.37962 10.2235 3.10222C10.605 3 11.07 3 12 3C12.93 3 13.395 3 13.7765 3.10222C14.8117 3.37962 15.6204 4.18827 15.8978 5.22354C16 5.60504 16 6.07003 16 7V13.5M16 17.5V21M6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V11.8C22 10.1198 22 9.27976 21.673 8.63803C21.3854 8.07354 20.9265 7.6146 20.362 7.32698C19.7202 7 18.8802 7 17.2 7H6.8C5.11984 7 4.27976 7 3.63803 7.32698C3.07354 7.6146 2.6146 8.07354 2.32698 8.63803C2 9.27976 2 10.1198 2 11.8V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21ZM12.8 17.5H17.7C17.98 17.5 18.12 17.5 18.227 17.4455C18.3211 17.3976 18.3976 17.3211 18.4455 17.227C18.5 17.12 18.5 16.98 18.5 16.7V14.3C18.5 14.02 18.5 13.88 18.4455 13.773C18.3976 13.6789 18.3211 13.6024 18.227 13.5545C18.12 13.5 17.98 13.5 17.7 13.5H12.8C12.52 13.5 12.38 13.5 12.273 13.5545C12.1789 13.6024 12.1024 13.6789 12.0545 13.773C12 13.88 12 14.02 12 14.3V16.7C12 16.98 12 17.12 12.0545 17.227C12.1024 17.3211 12.1789 17.3976 12.273 17.4455C12.38 17.5 12.52 17.5 12.8 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/magic-wand-01.svg b/@stellar/design-system/src/assets/icons/magic-wand-01.svg
new file mode 100644
index 00000000..527a6028
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/magic-wand-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 14L10 11M15.0104 3.5V2M18.9497 5.06066L20.0104 4M18.9497 13L20.0104 14.0607M11.0104 5.06066L9.94969 4M20.5104 9H22.0104M6.13137 20.8686L15.3686 11.6314C15.7646 11.2354 15.9627 11.0373 16.0368 10.809C16.1021 10.6082 16.1021 10.3918 16.0368 10.191C15.9627 9.96265 15.7646 9.76465 15.3686 9.36863L14.6314 8.63137C14.2354 8.23535 14.0373 8.03735 13.809 7.96316C13.6082 7.8979 13.3918 7.8979 13.191 7.96316C12.9627 8.03735 12.7646 8.23535 12.3686 8.63137L3.13137 17.8686C2.73536 18.2646 2.53735 18.4627 2.46316 18.691C2.3979 18.8918 2.3979 19.1082 2.46316 19.309C2.53735 19.5373 2.73536 19.7354 3.13137 20.1314L3.86863 20.8686C4.26465 21.2646 4.46266 21.4627 4.69098 21.5368C4.89183 21.6021 5.10818 21.6021 5.30902 21.5368C5.53735 21.4627 5.73536 21.2646 6.13137 20.8686Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/magic-wand-02.svg b/@stellar/design-system/src/assets/icons/magic-wand-02.svg
new file mode 100644
index 00000000..b03c1b5b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/magic-wand-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 4V2M15 16V14M8 9H10M20 9H22M17.8 11.8L19 13M17.8 6.2L19 5M3 21L12 12M12.2 6.2L11 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail-01.svg b/@stellar/design-system/src/assets/icons/mail-01.svg
new file mode 100644
index 00000000..0c1a22f3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mail-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail-02.svg b/@stellar/design-system/src/assets/icons/mail-02.svg
new file mode 100644
index 00000000..777db00f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mail-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.5 18L14.8571 12M9.14286 12L2.50003 18M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail-03.svg b/@stellar/design-system/src/assets/icons/mail-03.svg
new file mode 100644
index 00000000..c839a264
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mail-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 7L7.19384 10.4626C7.49349 10.6623 7.64331 10.7622 7.8054 10.833C7.94927 10.8958 8.10003 10.9414 8.25458 10.969C8.42869 11 8.60876 11 8.96888 11H15.0311C15.3912 11 15.5713 11 15.7454 10.969C15.9 10.9414 16.0507 10.8958 16.1946 10.833C16.3567 10.7622 16.5065 10.6623 16.8062 10.4626L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail-04.svg b/@stellar/design-system/src/assets/icons/mail-04.svg
new file mode 100644
index 00000000..69e73763
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mail-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.744 2.63358L21.272 7.52679C21.538 7.69969 21.671 7.78615 21.7674 7.90146C21.8527 8.00354 21.9167 8.12162 21.9558 8.24877C22 8.39241 22 8.55104 22 8.8683V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.8683C2 8.55104 2 8.39241 2.04417 8.24877C2.08327 8.12162 2.14735 8.00354 2.23265 7.90146C2.32901 7.78615 2.46201 7.69969 2.72802 7.52679L10.256 2.63358M13.744 2.63358C13.1127 2.22327 12.7971 2.01812 12.457 1.93829C12.1564 1.86774 11.8436 1.86774 11.543 1.93829C11.2029 2.01812 10.8873 2.22327 10.256 2.63358M13.744 2.63358L20.9681 7.32925C21.312 7.5528 21.484 7.66458 21.5435 7.80632C21.5956 7.9302 21.5956 8.06981 21.5435 8.19368C21.484 8.33543 21.312 8.44721 20.9681 8.67076L13.744 13.3664C13.1127 13.7767 12.7971 13.9819 12.457 14.0617C12.1564 14.1323 11.8436 14.1323 11.543 14.0617C11.2029 13.9819 10.8873 13.7767 10.256 13.3664L3.03193 8.67076C2.68801 8.44721 2.51604 8.33543 2.45649 8.19368C2.40444 8.06981 2.40444 7.9302 2.45649 7.80632C2.51604 7.66458 2.68801 7.5528 3.03193 7.32925L10.256 2.63358" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail-05.svg b/@stellar/design-system/src/assets/icons/mail-05.svg
new file mode 100644
index 00000000..b153feb4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mail-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.744 2.63358L21.272 7.52679C21.538 7.69969 21.671 7.78615 21.7674 7.90146C21.8527 8.00354 21.9167 8.12162 21.9558 8.24877C22 8.39241 22 8.55104 22 8.8683V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.8683C2 8.55104 2 8.39241 2.04417 8.24877C2.08327 8.12162 2.14735 8.00354 2.23265 7.90146C2.32901 7.78615 2.46201 7.69969 2.72802 7.52679L10.256 2.63358M13.744 2.63358C13.1127 2.22327 12.7971 2.01812 12.457 1.93829C12.1564 1.86774 11.8436 1.86774 11.543 1.93829C11.2029 2.01812 10.8873 2.22327 10.256 2.63358M13.744 2.63358L19.9361 6.65849C20.624 7.10559 20.9679 7.32915 21.087 7.61264C21.1911 7.86039 21.1911 8.13961 21.087 8.38737C20.9679 8.67086 20.624 8.89441 19.9361 9.34152L13.744 13.3664C13.1127 13.7767 12.7971 13.9819 12.457 14.0617C12.1564 14.1323 11.8436 14.1323 11.543 14.0617C11.2029 13.9819 10.8873 13.7767 10.256 13.3664L4.06386 9.34151C3.37601 8.89441 3.03209 8.67086 2.91297 8.38737C2.80888 8.13961 2.80888 7.86039 2.91297 7.61264C3.03209 7.32915 3.37601 7.1056 4.06386 6.65849L10.256 2.63358M21.5 19L14.8572 13M9.14282 13L2.5 19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mail.svg b/@stellar/design-system/src/assets/icons/mail.svg
deleted file mode 100644
index 52fe8924..00000000
--- a/@stellar/design-system/src/assets/icons/mail.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6783)"><path d="M4 20C3.45 20 2.97933 19.8043 2.588 19.413C2.196 19.021 2 18.55 2 18V6C2 5.45 2.196 4.97933 2.588 4.588C2.97933 4.196 3.45 4 4 4H20C20.55 4 21.021 4.196 21.413 4.588C21.8043 4.97933 22 5.45 22 6V18C22 18.55 21.8043 19.021 21.413 19.413C21.021 19.8043 20.55 20 20 20H4ZM12 12.825C12.0833 12.825 12.1707 12.8123 12.262 12.787C12.354 12.7623 12.4417 12.725 12.525 12.675L19.6 8.25C19.7333 8.16667 19.8333 8.06267 19.9 7.938C19.9667 7.81267 20 7.675 20 7.525C20 7.19167 19.8583 6.94167 19.575 6.775C19.2917 6.60833 19 6.61667 18.7 6.8L12 11L5.3 6.8C5 6.61667 4.70833 6.61233 4.425 6.787C4.14167 6.96233 4 7.20833 4 7.525C4 7.69167 4.03333 7.83733 4.1 7.962C4.16667 8.08733 4.26667 8.18333 4.4 8.25L11.475 12.675C11.5583 12.725 11.646 12.7623 11.738 12.787C11.8293 12.8123 11.9167 12.825 12 12.825Z"/></g><defs><clipPath id="clip0_1113_6783"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/manage-search.svg b/@stellar/design-system/src/assets/icons/manage-search.svg
deleted file mode 100644
index 749c7ce1..00000000
--- a/@stellar/design-system/src/assets/icons/manage-search.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6780)"><path d="M3 9C2.71667 9 2.47933 8.904 2.288 8.712C2.096 8.52067 2 8.28333 2 8C2 7.71667 2.096 7.479 2.288 7.287C2.47933 7.09567 2.71667 7 3 7H6C6.28333 7 6.521 7.09567 6.713 7.287C6.90433 7.479 7 7.71667 7 8C7 8.28333 6.90433 8.52067 6.713 8.712C6.521 8.904 6.28333 9 6 9H3ZM3 14C2.71667 14 2.47933 13.904 2.288 13.712C2.096 13.5207 2 13.2833 2 13C2 12.7167 2.096 12.479 2.288 12.287C2.47933 12.0957 2.71667 12 3 12H6C6.28333 12 6.521 12.0957 6.713 12.287C6.90433 12.479 7 12.7167 7 13C7 13.2833 6.90433 13.5207 6.713 13.712C6.521 13.904 6.28333 14 6 14H3ZM19.9 18.3L16.75 15.15C16.35 15.4333 15.9127 15.6457 15.438 15.787C14.9627 15.929 14.4833 16 14 16C12.6167 16 11.4377 15.5123 10.463 14.537C9.48767 13.5623 9 12.3833 9 11C9 9.61667 9.48767 8.43733 10.463 7.462C11.4377 6.48733 12.6167 6 14 6C15.3833 6 16.5627 6.48733 17.538 7.462C18.5127 8.43733 19 9.61667 19 11C19 11.4833 18.9293 11.9627 18.788 12.438C18.646 12.9127 18.4333 13.35 18.15 13.75L21.3 16.9C21.4833 17.0833 21.575 17.3167 21.575 17.6C21.575 17.8833 21.4833 18.1167 21.3 18.3C21.1167 18.4833 20.8833 18.575 20.6 18.575C20.3167 18.575 20.0833 18.4833 19.9 18.3ZM14 14C14.8333 14 15.5417 13.7083 16.125 13.125C16.7083 12.5417 17 11.8333 17 11C17 10.1667 16.7083 9.45833 16.125 8.875C15.5417 8.29167 14.8333 8 14 8C13.1667 8 12.4583 8.29167 11.875 8.875C11.2917 9.45833 11 10.1667 11 11C11 11.8333 11.2917 12.5417 11.875 13.125C12.4583 13.7083 13.1667 14 14 14ZM3 19C2.71667 19 2.47933 18.904 2.288 18.712C2.096 18.5207 2 18.2833 2 18C2 17.7167 2.096 17.4793 2.288 17.288C2.47933 17.096 2.71667 17 3 17H11C11.2833 17 11.521 17.096 11.713 17.288C11.9043 17.4793 12 17.7167 12 18C12 18.2833 11.9043 18.5207 11.713 18.712C11.521 18.904 11.2833 19 11 19H3Z"/></g><defs><clipPath id="clip0_1113_6780"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/map-01.svg b/@stellar/design-system/src/assets/icons/map-01.svg
new file mode 100644
index 00000000..3086b1c8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/map-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 18L2 22V6L9 2M9 18L16 22M9 18V2M16 22L22 18V2L16 6M16 22V6M16 6L9 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/map-02.svg b/@stellar/design-system/src/assets/icons/map-02.svg
new file mode 100644
index 00000000..e4afb0eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/map-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3L16 21M3 17L12 12M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mark.svg b/@stellar/design-system/src/assets/icons/mark.svg
new file mode 100644
index 00000000..c6bd2baa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mark.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12C20 16.4183 16.4183 20 12 20M20 12C20 7.58172 16.4183 4 12 4M20 12H22M12 20C7.58172 20 4 16.4183 4 12M12 20V22M4 12C4 7.58172 7.58172 4 12 4M4 12H2M12 4V2M15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-01.svg b/@stellar/design-system/src/assets/icons/marker-pin-01.svg
new file mode 100644
index 00000000..3c110141
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 22C16 18 20 14.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 14.4183 8 18 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-02.svg b/@stellar/design-system/src/assets/icons/marker-pin-02.svg
new file mode 100644
index 00000000..ca4b946a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12.5C13.6569 12.5 15 11.1569 15 9.5C15 7.84315 13.6569 6.5 12 6.5C10.3431 6.5 9 7.84315 9 9.5C9 11.1569 10.3431 12.5 12 12.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 22C14 18 20 15.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 15.4183 10 18 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-03.svg b/@stellar/design-system/src/assets/icons/marker-pin-03.svg
new file mode 100644
index 00000000..d6f5fb0f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C13 17 20 16.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 16.4183 11 17 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-04.svg b/@stellar/design-system/src/assets/icons/marker-pin-04.svg
new file mode 100644
index 00000000..0660bb3c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 14.2864C3.14864 15.1031 2 16.2412 2 17.5C2 19.9853 6.47715 22 12 22C17.5228 22 22 19.9853 22 17.5C22 16.2412 20.8514 15.1031 19 14.2864M18 8C18 12.0637 13.5 14 12 17C10.5 14 6 12.0637 6 8C6 4.68629 8.68629 2 12 2C15.3137 2 18 4.68629 18 8ZM13 8C13 8.55228 12.5523 9 12 9C11.4477 9 11 8.55228 11 8C11 7.44772 11.4477 7 12 7C12.5523 7 13 7.44772 13 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-05.svg b/@stellar/design-system/src/assets/icons/marker-pin-05.svg
new file mode 100644
index 00000000..6dcf91c3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 13.3744C19.5318 14.0688 22 15.6547 22 17.5C22 19.9853 17.5228 22 12 22C6.47715 22 2 19.9853 2 17.5C2 15.6547 4.46819 14.0688 8 13.3744M12 17V3L17.3177 6.27244C17.7056 6.51114 17.8995 6.63049 17.9614 6.78085C18.0154 6.912 18.0111 7.0599 17.9497 7.18771C17.8792 7.33426 17.6787 7.44222 17.2777 7.65815L12 10.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/marker-pin-06.svg b/@stellar/design-system/src/assets/icons/marker-pin-06.svg
new file mode 100644
index 00000000..6dd8cfaf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/marker-pin-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 13.3744C19.5318 14.0688 22 15.6547 22 17.5C22 19.9853 17.5228 22 12 22C6.47715 22 2 19.9853 2 17.5C2 15.6547 4.46819 14.0688 8 13.3744M12 17V9M12 9C13.6569 9 15 7.65685 15 6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6C9 7.65685 10.3431 9 12 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/maximize-01.svg b/@stellar/design-system/src/assets/icons/maximize-01.svg
new file mode 100644
index 00000000..ca0518b2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/maximize-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 10L21 3M21 3H15M21 3V9M10 14L3 21M3 21H9M3 21L3 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/maximize-02.svg b/@stellar/design-system/src/assets/icons/maximize-02.svg
new file mode 100644
index 00000000..de2ce413
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/maximize-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V8M8 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V16M21 8V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H16M21 16V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/medical-circle.svg b/@stellar/design-system/src/assets/icons/medical-circle.svg
new file mode 100644
index 00000000..1c0aa7b6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/medical-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.8333 7.3C13.8333 7.01997 13.8333 6.87996 13.7788 6.773C13.7309 6.67892 13.6544 6.60243 13.5603 6.5545C13.4534 6.5 13.3134 6.5 13.0333 6.5H10.9667C10.6866 6.5 10.5466 6.5 10.4397 6.5545C10.3456 6.60243 10.2691 6.67892 10.2212 6.773C10.1667 6.87996 10.1667 7.01997 10.1667 7.3V9.36667C10.1667 9.64669 10.1667 9.78671 10.1122 9.89366C10.0642 9.98774 9.98774 10.0642 9.89366 10.1122C9.78671 10.1667 9.64669 10.1667 9.36667 10.1667H7.3C7.01997 10.1667 6.87996 10.1667 6.773 10.2212C6.67892 10.2691 6.60243 10.3456 6.5545 10.4397C6.5 10.5466 6.5 10.6866 6.5 10.9667V13.0333C6.5 13.3134 6.5 13.4534 6.5545 13.5603C6.60243 13.6544 6.67892 13.7309 6.773 13.7788C6.87996 13.8333 7.01997 13.8333 7.3 13.8333H9.36667C9.64669 13.8333 9.78671 13.8333 9.89366 13.8878C9.98774 13.9358 10.0642 14.0123 10.1122 14.1063C10.1667 14.2133 10.1667 14.3533 10.1667 14.6333V16.7C10.1667 16.98 10.1667 17.12 10.2212 17.227C10.2691 17.3211 10.3456 17.3976 10.4397 17.4455C10.5466 17.5 10.6866 17.5 10.9667 17.5H13.0333C13.3134 17.5 13.4534 17.5 13.5603 17.4455C13.6544 17.3976 13.7309 17.3211 13.7788 17.227C13.8333 17.12 13.8333 16.98 13.8333 16.7V14.6333C13.8333 14.3533 13.8333 14.2133 13.8878 14.1063C13.9358 14.0123 14.0123 13.9358 14.1063 13.8878C14.2133 13.8333 14.3533 13.8333 14.6333 13.8333H16.7C16.98 13.8333 17.12 13.8333 17.227 13.7788C17.3211 13.7309 17.3976 13.6544 17.4455 13.5603C17.5 13.4534 17.5 13.3134 17.5 13.0333V10.9667C17.5 10.6866 17.5 10.5466 17.4455 10.4397C17.3976 10.3456 17.3211 10.2691 17.227 10.2212C17.12 10.1667 16.98 10.1667 16.7 10.1667H14.6333C14.3533 10.1667 14.2133 10.1667 14.1063 10.1122C14.0123 10.0642 13.9358 9.98774 13.8878 9.89366C13.8333 9.78671 13.8333 9.64669 13.8333 9.36667V7.3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/medical-cross.svg b/@stellar/design-system/src/assets/icons/medical-cross.svg
new file mode 100644
index 00000000..15ab1430
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/medical-cross.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 4.6C15 4.03995 15 3.75992 14.891 3.54601C14.7951 3.35785 14.6422 3.20487 14.454 3.10899C14.2401 3 13.9601 3 13.4 3H10.6C10.0399 3 9.75992 3 9.54601 3.10899C9.35785 3.20487 9.20487 3.35785 9.10899 3.54601C9 3.75992 9 4.03995 9 4.6V7.4C9 7.96005 9 8.24008 8.89101 8.45399C8.79513 8.64215 8.64215 8.79513 8.45399 8.89101C8.24008 9 7.96005 9 7.4 9H4.6C4.03995 9 3.75992 9 3.54601 9.10899C3.35785 9.20487 3.20487 9.35785 3.10899 9.54601C3 9.75992 3 10.0399 3 10.6V13.4C3 13.9601 3 14.2401 3.10899 14.454C3.20487 14.6422 3.35785 14.7951 3.54601 14.891C3.75992 15 4.03995 15 4.6 15H7.4C7.96005 15 8.24008 15 8.45399 15.109C8.64215 15.2049 8.79513 15.3578 8.89101 15.546C9 15.7599 9 16.0399 9 16.6V19.4C9 19.9601 9 20.2401 9.10899 20.454C9.20487 20.6422 9.35785 20.7951 9.54601 20.891C9.75992 21 10.0399 21 10.6 21H13.4C13.9601 21 14.2401 21 14.454 20.891C14.6422 20.7951 14.7951 20.6422 14.891 20.454C15 20.2401 15 19.9601 15 19.4V16.6C15 16.0399 15 15.7599 15.109 15.546C15.2049 15.3578 15.3578 15.2049 15.546 15.109C15.7599 15 16.0399 15 16.6 15H19.4C19.9601 15 20.2401 15 20.454 14.891C20.6422 14.7951 20.7951 14.6422 20.891 14.454C21 14.2401 21 13.9601 21 13.4V10.6C21 10.0399 21 9.75992 20.891 9.54601C20.7951 9.35785 20.6422 9.20487 20.454 9.10899C20.2401 9 19.9601 9 19.4 9L16.6 9C16.0399 9 15.7599 9 15.546 8.89101C15.3578 8.79513 15.2049 8.64215 15.109 8.45399C15 8.24008 15 7.96005 15 7.4V4.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/medical-square.svg b/@stellar/design-system/src/assets/icons/medical-square.svg
new file mode 100644
index 00000000..666ca604
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/medical-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M13.8333 7.3C13.8333 7.01997 13.8333 6.87996 13.7788 6.773C13.7309 6.67892 13.6544 6.60243 13.5603 6.5545C13.4534 6.5 13.3134 6.5 13.0333 6.5H10.9667C10.6866 6.5 10.5466 6.5 10.4397 6.5545C10.3456 6.60243 10.2691 6.67892 10.2212 6.773C10.1667 6.87996 10.1667 7.01997 10.1667 7.3V9.36667C10.1667 9.64669 10.1667 9.78671 10.1122 9.89366C10.0642 9.98774 9.98774 10.0642 9.89366 10.1122C9.78671 10.1667 9.64669 10.1667 9.36667 10.1667H7.3C7.01997 10.1667 6.87996 10.1667 6.773 10.2212C6.67892 10.2691 6.60243 10.3456 6.5545 10.4397C6.5 10.5466 6.5 10.6866 6.5 10.9667V13.0333C6.5 13.3134 6.5 13.4534 6.5545 13.5603C6.60243 13.6544 6.67892 13.7309 6.773 13.7788C6.87996 13.8333 7.01997 13.8333 7.3 13.8333H9.36667C9.64669 13.8333 9.78671 13.8333 9.89366 13.8878C9.98774 13.9358 10.0642 14.0123 10.1122 14.1063C10.1667 14.2133 10.1667 14.3533 10.1667 14.6333V16.7C10.1667 16.98 10.1667 17.12 10.2212 17.227C10.2691 17.3211 10.3456 17.3976 10.4397 17.4455C10.5466 17.5 10.6866 17.5 10.9667 17.5H13.0333C13.3134 17.5 13.4534 17.5 13.5603 17.4455C13.6544 17.3976 13.7309 17.3211 13.7788 17.227C13.8333 17.12 13.8333 16.98 13.8333 16.7V14.6333C13.8333 14.3533 13.8333 14.2133 13.8878 14.1063C13.9358 14.0123 14.0123 13.9358 14.1063 13.8878C14.2133 13.8333 14.3533 13.8333 14.6333 13.8333H16.7C16.98 13.8333 17.12 13.8333 17.227 13.7788C17.3211 13.7309 17.3976 13.6544 17.4455 13.5603C17.5 13.4534 17.5 13.3134 17.5 13.0333V10.9667C17.5 10.6866 17.5 10.5466 17.4455 10.4397C17.3976 10.3456 17.3211 10.2691 17.227 10.2212C17.12 10.1667 16.98 10.1667 16.7 10.1667H14.6333C14.3533 10.1667 14.2133 10.1667 14.1063 10.1122C14.0123 10.0642 13.9358 9.98774 13.8878 9.89366C13.8333 9.78671 13.8333 9.64669 13.8333 9.36667V7.3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu-01.svg b/@stellar/design-system/src/assets/icons/menu-01.svg
new file mode 100644
index 00000000..1b2ae542
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/menu-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M3 6H21M3 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu-02.svg b/@stellar/design-system/src/assets/icons/menu-02.svg
new file mode 100644
index 00000000..8533a4e0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/menu-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H15M3 6H21M3 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu-03.svg b/@stellar/design-system/src/assets/icons/menu-03.svg
new file mode 100644
index 00000000..13beff95
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/menu-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M3 6H21M3 18H15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu-04.svg b/@stellar/design-system/src/assets/icons/menu-04.svg
new file mode 100644
index 00000000..be9e92b0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/menu-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M3 6H21M9 18H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu-05.svg b/@stellar/design-system/src/assets/icons/menu-05.svg
new file mode 100644
index 00000000..ff3f80c8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/menu-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 8.5H21M3 15.5H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/menu.svg b/@stellar/design-system/src/assets/icons/menu.svg
deleted file mode 100644
index f771d982..00000000
--- a/@stellar/design-system/src/assets/icons/menu.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6777)"><path d="M4 18C3.71667 18 3.47933 17.904 3.288 17.712C3.096 17.5207 3 17.2833 3 17C3 16.7167 3.096 16.4793 3.288 16.288C3.47933 16.096 3.71667 16 4 16H20C20.2833 16 20.5207 16.096 20.712 16.288C20.904 16.4793 21 16.7167 21 17C21 17.2833 20.904 17.5207 20.712 17.712C20.5207 17.904 20.2833 18 20 18H4ZM4 13C3.71667 13 3.47933 12.904 3.288 12.712C3.096 12.5207 3 12.2833 3 12C3 11.7167 3.096 11.479 3.288 11.287C3.47933 11.0957 3.71667 11 4 11H20C20.2833 11 20.5207 11.0957 20.712 11.287C20.904 11.479 21 11.7167 21 12C21 12.2833 20.904 12.5207 20.712 12.712C20.5207 12.904 20.2833 13 20 13H4ZM4 8C3.71667 8 3.47933 7.90433 3.288 7.713C3.096 7.521 3 7.28333 3 7C3 6.71667 3.096 6.479 3.288 6.287C3.47933 6.09567 3.71667 6 4 6H20C20.2833 6 20.5207 6.09567 20.712 6.287C20.904 6.479 21 6.71667 21 7C21 7.28333 20.904 7.521 20.712 7.713C20.5207 7.90433 20.2833 8 20 8H4Z"/></g><defs><clipPath id="clip0_1113_6777"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-alert-circle.svg b/@stellar/design-system/src/assets/icons/message-alert-circle.svg
new file mode 100644
index 00000000..f244048e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-alert-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.4996 11V7.5M12.4996 14.5H12.5096M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-alert-square.svg b/@stellar/design-system/src/assets/icons/message-alert-square.svg
new file mode 100644
index 00000000..d032fc84
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-alert-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 10.5V7M12 14H12.01M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-chat-circle.svg b/@stellar/design-system/src/assets/icons/message-chat-circle.svg
new file mode 100644
index 00000000..5325aa6a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-chat-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.09436 11.2288C6.03221 10.8282 5.99996 10.4179 5.99996 10C5.99996 5.58172 9.60525 2 14.0526 2C18.4999 2 22.1052 5.58172 22.1052 10C22.1052 10.9981 21.9213 11.9535 21.5852 12.8345C21.5154 13.0175 21.4804 13.109 21.4646 13.1804C21.4489 13.2512 21.4428 13.301 21.4411 13.3735C21.4394 13.4466 21.4493 13.5272 21.4692 13.6883L21.8717 16.9585C21.9153 17.3125 21.9371 17.4895 21.8782 17.6182C21.8266 17.731 21.735 17.8205 21.6211 17.8695C21.4911 17.9254 21.3146 17.8995 20.9617 17.8478L17.7765 17.3809C17.6101 17.3565 17.527 17.3443 17.4512 17.3448C17.3763 17.3452 17.3245 17.3507 17.2511 17.3661C17.177 17.3817 17.0823 17.4172 16.893 17.4881C16.0097 17.819 15.0524 18 14.0526 18C13.6344 18 13.2237 17.9683 12.8227 17.9073M7.63158 22C10.5965 22 13 19.5376 13 16.5C13 13.4624 10.5965 11 7.63158 11C4.66668 11 2.26316 13.4624 2.26316 16.5C2.26316 17.1106 2.36028 17.6979 2.53955 18.2467C2.61533 18.4787 2.65322 18.5947 2.66566 18.6739C2.67864 18.7567 2.68091 18.8031 2.67608 18.8867C2.67145 18.9668 2.65141 19.0573 2.61134 19.2383L2 22L4.9948 21.591C5.15827 21.5687 5.24 21.5575 5.31137 21.558C5.38652 21.5585 5.42641 21.5626 5.50011 21.5773C5.5701 21.5912 5.67416 21.6279 5.88227 21.7014C6.43059 21.8949 7.01911 22 7.63158 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-chat-square.svg b/@stellar/design-system/src/assets/icons/message-chat-square.svg
new file mode 100644
index 00000000..b66af3c3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-chat-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-check-circle.svg b/@stellar/design-system/src/assets/icons/message-check-circle.svg
new file mode 100644
index 00000000..b516d864
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-check-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.49962 11.5L11.4996 13.5L15.9996 9M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-check-square.svg b/@stellar/design-system/src/assets/icons/message-check-square.svg
new file mode 100644
index 00000000..486f8855
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-check-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 10.5L11 12.5L15.5 8M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-circle-01.svg b/@stellar/design-system/src/assets/icons/message-circle-01.svg
new file mode 100644
index 00000000..800e2b0c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-circle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.9996 11.5C20.9996 16.1944 17.194 20 12.4996 20C11.4228 20 10.3928 19.7998 9.44478 19.4345C9.27145 19.3678 9.18478 19.3344 9.11586 19.3185C9.04807 19.3029 8.999 19.2963 8.92949 19.2937C8.85881 19.291 8.78127 19.299 8.62619 19.315L3.50517 19.8444C3.01692 19.8948 2.7728 19.9201 2.6288 19.8322C2.50337 19.7557 2.41794 19.6279 2.3952 19.4828C2.36909 19.3161 2.48575 19.1002 2.71906 18.6684L4.35472 15.6408C4.48942 15.3915 4.55677 15.2668 4.58728 15.1469C4.6174 15.0286 4.62469 14.9432 4.61505 14.8214C4.60529 14.6981 4.55119 14.5376 4.443 14.2166C4.15547 13.3636 3.99962 12.45 3.99962 11.5C3.99962 6.80558 7.8052 3 12.4996 3C17.194 3 20.9996 6.80558 20.9996 11.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-circle-02.svg b/@stellar/design-system/src/assets/icons/message-circle-02.svg
new file mode 100644
index 00000000..494e0dab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-circle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 12C21 16.9706 16.9706 21 12 21C10.8029 21 9.6603 20.7663 8.61549 20.3419C8.41552 20.2607 8.31554 20.2201 8.23472 20.202C8.15566 20.1843 8.09715 20.1778 8.01613 20.1778C7.9333 20.1778 7.84309 20.1928 7.66265 20.2229L4.10476 20.8159C3.73218 20.878 3.54589 20.909 3.41118 20.8512C3.29328 20.8007 3.19933 20.7067 3.14876 20.5888C3.09098 20.4541 3.12203 20.2678 3.18413 19.8952L3.77711 16.3374C3.80718 16.1569 3.82222 16.0667 3.82221 15.9839C3.8222 15.9028 3.81572 15.8443 3.798 15.7653C3.77988 15.6845 3.73927 15.5845 3.65806 15.3845C3.23374 14.3397 3 13.1971 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-dots-circle.svg b/@stellar/design-system/src/assets/icons/message-dots-circle.svg
new file mode 100644
index 00000000..8e762117
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-dots-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 12H7.51M12 12H12.01M16.5 12H16.51M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 13.1971 3.23374 14.3397 3.65806 15.3845C3.73927 15.5845 3.77988 15.6845 3.798 15.7653C3.81572 15.8443 3.8222 15.9028 3.82221 15.9839C3.82222 16.0667 3.80718 16.1569 3.77711 16.3374L3.18413 19.8952C3.12203 20.2678 3.09098 20.4541 3.14876 20.5888C3.19933 20.7067 3.29328 20.8007 3.41118 20.8512C3.54589 20.909 3.73218 20.878 4.10476 20.8159L7.66265 20.2229C7.84309 20.1928 7.9333 20.1778 8.01613 20.1778C8.09715 20.1778 8.15566 20.1843 8.23472 20.202C8.31554 20.2201 8.41552 20.2607 8.61549 20.3419C9.6603 20.7663 10.8029 21 12 21ZM8 12C8 12.2761 7.77614 12.5 7.5 12.5C7.22386 12.5 7 12.2761 7 12C7 11.7239 7.22386 11.5 7.5 11.5C7.77614 11.5 8 11.7239 8 12ZM12.5 12C12.5 12.2761 12.2761 12.5 12 12.5C11.7239 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.7239 11.5 12 11.5C12.2761 11.5 12.5 11.7239 12.5 12ZM17 12C17 12.2761 16.7761 12.5 16.5 12.5C16.2239 12.5 16 12.2761 16 12C16 11.7239 16.2239 11.5 16.5 11.5C16.7761 11.5 17 11.7239 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-dots-square.svg b/@stellar/design-system/src/assets/icons/message-dots-square.svg
new file mode 100644
index 00000000..eebde388
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-dots-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 10.5H7.51M12 10.5H12.01M16.5 10.5H16.51M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18ZM8 10.5C8 10.7761 7.77614 11 7.5 11C7.22386 11 7 10.7761 7 10.5C7 10.2239 7.22386 10 7.5 10C7.77614 10 8 10.2239 8 10.5ZM12.5 10.5C12.5 10.7761 12.2761 11 12 11C11.7239 11 11.5 10.7761 11.5 10.5C11.5 10.2239 11.7239 10 12 10C12.2761 10 12.5 10.2239 12.5 10.5ZM17 10.5C17 10.7761 16.7761 11 16.5 11C16.2239 11 16 10.7761 16 10.5C16 10.2239 16.2239 10 16.5 10C16.7761 10 17 10.2239 17 10.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-heart-circle.svg b/@stellar/design-system/src/assets/icons/message-heart-circle.svg
new file mode 100644
index 00000000..2435eb29
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-heart-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.9996 11.5C20.9996 16.1944 17.194 20 12.4996 20C11.4228 20 10.3928 19.7998 9.44478 19.4345C9.27145 19.3678 9.18478 19.3344 9.11586 19.3185C9.04807 19.3029 8.999 19.2963 8.92949 19.2937C8.85881 19.291 8.78127 19.299 8.62619 19.315L3.50517 19.8444C3.01692 19.8948 2.7728 19.9201 2.6288 19.8322C2.50337 19.7557 2.41794 19.6279 2.3952 19.4828C2.36909 19.3161 2.48575 19.1002 2.71906 18.6684L4.35472 15.6408C4.48942 15.3915 4.55677 15.2668 4.58728 15.1469C4.6174 15.0286 4.62469 14.9432 4.61505 14.8214C4.60529 14.6981 4.55119 14.5376 4.443 14.2166C4.15547 13.3636 3.99962 12.45 3.99962 11.5C3.99962 6.80558 7.8052 3 12.4996 3C17.194 3 20.9996 6.80558 20.9996 11.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4965 8.94925C11.5968 7.9104 10.0965 7.63095 8.96924 8.58223C7.84196 9.5335 7.68326 11.124 8.56851 12.2491C9.11696 12.9461 10.4935 14.2191 11.4616 15.087C11.8172 15.4057 11.995 15.5651 12.2084 15.6293C12.3914 15.6844 12.6017 15.6844 12.7847 15.6293C12.9981 15.5651 13.1759 15.4057 13.5315 15.087C14.4996 14.2191 15.8761 12.9461 16.4246 12.2491C17.3098 11.124 17.1705 9.5235 16.0238 8.58223C14.8772 7.64096 13.3963 7.9104 12.4965 8.94925Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-heart-square.svg b/@stellar/design-system/src/assets/icons/message-heart-square.svg
new file mode 100644
index 00000000..efabdc0d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-heart-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.2C21 14.8802 21 15.7202 20.673 16.362C20.3854 16.9265 19.9265 17.3854 19.362 17.673C18.7202 18 17.8802 18 16.2 18H13.6837C13.0597 18 12.7477 18 12.4492 18.0613C12.1844 18.1156 11.9282 18.2055 11.6875 18.3285C11.4162 18.4671 11.1725 18.662 10.6852 19.0518L8.29976 20.9602C7.88367 21.2931 7.67563 21.4595 7.50054 21.4597C7.34827 21.4599 7.20422 21.3906 7.10923 21.2716C7 21.1348 7 20.8684 7 20.3355V18C6.07003 18 5.60504 18 5.22354 17.8978C4.18827 17.6204 3.37962 16.8117 3.10222 15.7765C3 15.395 3 14.93 3 14V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9969 7.69925C11.0972 6.6604 9.59689 6.38095 8.46961 7.33223C7.34234 8.2835 7.18364 9.87399 8.06889 10.9991C8.61733 11.6961 9.99389 12.9691 10.962 13.837C11.3176 14.1557 11.4953 14.3151 11.7087 14.3793C11.8918 14.4344 12.1021 14.4344 12.2851 14.3793C12.4985 14.3151 12.6763 14.1557 13.0319 13.837C13.9999 12.9691 15.3765 11.6961 15.9249 10.9991C16.8102 9.87399 16.6709 8.2735 15.5242 7.33223C14.3776 6.39096 12.8966 6.6604 11.9969 7.69925Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-notification-circle.svg b/@stellar/design-system/src/assets/icons/message-notification-circle.svg
new file mode 100644
index 00000000..4d537336
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-notification-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.707 3.03647C7.38421 3.43621 3.99962 7.07285 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.44299 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78121 19.299 8.85882 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20C16.9304 20 20.5694 16.6098 20.9641 12.2819M20.1209 3.87868C21.2925 5.05025 21.2925 6.94975 20.1209 8.12132C18.9494 9.29289 17.0499 9.29289 15.8783 8.12132C14.7067 6.94975 14.7067 5.05025 15.8783 3.87868C17.0499 2.70711 18.9494 2.70711 20.1209 3.87868Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-notification-square.svg b/@stellar/design-system/src/assets/icons/message-notification-square.svg
new file mode 100644
index 00000000..36723ff3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-notification-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H15.2C16.8802 18 17.7202 18 18.362 17.673C18.9265 17.3854 19.3854 16.9265 19.673 16.362C20 15.7202 20 14.8802 20 13.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-plus-circle.svg b/@stellar/design-system/src/assets/icons/message-plus-circle.svg
new file mode 100644
index 00000000..fff82308
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-plus-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.4996 14.5V8.5M9.49962 11.5H15.4996M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-plus-square.svg b/@stellar/design-system/src/assets/icons/message-plus-square.svg
new file mode 100644
index 00000000..0c433cf9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-plus-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 13.5V7.5M9 10.5H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-question-circle.svg b/@stellar/design-system/src/assets/icons/message-question-circle.svg
new file mode 100644
index 00000000..62860b4f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-question-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.4996 9.00224C10.6758 8.50136 11.0236 8.079 11.4814 7.80998C11.9391 7.54095 12.4773 7.4426 13.0006 7.53237C13.524 7.62213 13.9986 7.89421 14.3406 8.30041C14.6825 8.70661 14.8697 9.22072 14.8689 9.75168C14.8689 11.2506 12.6205 12 12.6205 12M12.6495 15H12.6595M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-question-square.svg b/@stellar/design-system/src/assets/icons/message-question-square.svg
new file mode 100644
index 00000000..eed7a37e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-question-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 8.00224C10.1762 7.50136 10.524 7.07901 10.9817 6.80998C11.4395 6.54095 11.9777 6.4426 12.501 6.53237C13.0243 6.62213 13.499 6.89421 13.8409 7.30041C14.1829 7.70661 14.37 8.22072 14.3692 8.75168C14.3692 10.2506 12.1209 11 12.1209 11M12.1499 14H12.1599M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-smile-circle.svg b/@stellar/design-system/src/assets/icons/message-smile-circle.svg
new file mode 100644
index 00000000..1108bc68
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-smile-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.99962 14C8.99962 14 10.3121 15.5 12.4996 15.5C14.6871 15.5 15.9996 14 15.9996 14M15.2496 9H15.2596M9.74962 9H9.75962M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20ZM15.7496 9C15.7496 9.27614 15.5258 9.5 15.2496 9.5C14.9735 9.5 14.7496 9.27614 14.7496 9C14.7496 8.72386 14.9735 8.5 15.2496 8.5C15.5258 8.5 15.7496 8.72386 15.7496 9ZM10.2496 9C10.2496 9.27614 10.0258 9.5 9.74962 9.5C9.47348 9.5 9.24962 9.27614 9.24962 9C9.24962 8.72386 9.47348 8.5 9.74962 8.5C10.0258 8.5 10.2496 8.72386 10.2496 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-smile-square.svg b/@stellar/design-system/src/assets/icons/message-smile-square.svg
new file mode 100644
index 00000000..53fc04f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-smile-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.5 12.5C8.5 12.5 9.8125 14 12 14C14.1875 14 15.5 12.5 15.5 12.5M14.75 7.5H14.76M9.25 7.5H9.26M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18ZM15.25 7.5C15.25 7.77614 15.0261 8 14.75 8C14.4739 8 14.25 7.77614 14.25 7.5C14.25 7.22386 14.4739 7 14.75 7C15.0261 7 15.25 7.22386 15.25 7.5ZM9.75 7.5C9.75 7.77614 9.52614 8 9.25 8C8.97386 8 8.75 7.77614 8.75 7.5C8.75 7.22386 8.97386 7 9.25 7C9.52614 7 9.75 7.22386 9.75 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-square-01.svg b/@stellar/design-system/src/assets/icons/message-square-01.svg
new file mode 100644
index 00000000..9c54d4d9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-square-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.2C21 14.8802 21 15.7202 20.673 16.362C20.3854 16.9265 19.9265 17.3854 19.362 17.673C18.7202 18 17.8802 18 16.2 18H9.68375C9.0597 18 8.74767 18 8.44921 18.0613C8.18443 18.1156 7.9282 18.2055 7.68749 18.3285C7.41617 18.4671 7.17252 18.662 6.68521 19.0518L4.29976 20.9602C3.88367 21.2931 3.67563 21.4595 3.50054 21.4597C3.34827 21.4599 3.20422 21.3906 3.10923 21.2716C3 21.1348 3 20.8684 3 20.3355V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-square-02.svg b/@stellar/design-system/src/assets/icons/message-square-02.svg
new file mode 100644
index 00000000..48b833b8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-square-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V13.2C21 14.8802 21 15.7202 20.673 16.362C20.3854 16.9265 19.9265 17.3854 19.362 17.673C18.7202 18 17.8802 18 16.2 18H13.6837C13.0597 18 12.7477 18 12.4492 18.0613C12.1844 18.1156 11.9282 18.2055 11.6875 18.3285C11.4162 18.4671 11.1725 18.662 10.6852 19.0518L8.29976 20.9602C7.88367 21.2931 7.67563 21.4595 7.50054 21.4597C7.34827 21.4599 7.20422 21.3906 7.10923 21.2716C7 21.1348 7 20.8684 7 20.3355V18C6.07003 18 5.60504 18 5.22354 17.8978C4.18827 17.6204 3.37962 16.8117 3.10222 15.7765C3 15.395 3 14.93 3 14V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-text-circle-01.svg b/@stellar/design-system/src/assets/icons/message-text-circle-01.svg
new file mode 100644
index 00000000..6ef4db6b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-text-circle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.99962 9.5H11.9996M7.99962 13H14.9996M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-text-circle-02.svg b/@stellar/design-system/src/assets/icons/message-text-circle-02.svg
new file mode 100644
index 00000000..ca168c88
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-text-circle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 9.5H12M8 13H15M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 13.1971 3.23374 14.3397 3.65806 15.3845C3.73927 15.5845 3.77988 15.6845 3.798 15.7653C3.81572 15.8443 3.8222 15.9028 3.82221 15.9839C3.82222 16.0667 3.80718 16.1569 3.77711 16.3374L3.18413 19.8952C3.12203 20.2678 3.09098 20.4541 3.14876 20.5888C3.19933 20.7067 3.29328 20.8007 3.41118 20.8512C3.54589 20.909 3.73218 20.878 4.10476 20.8159L7.66265 20.2229C7.84309 20.1928 7.9333 20.1778 8.01613 20.1778C8.09715 20.1778 8.15566 20.1843 8.23472 20.202C8.31554 20.2201 8.41552 20.2607 8.61549 20.3419C9.6603 20.7663 10.8029 21 12 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-text-square-01.svg b/@stellar/design-system/src/assets/icons/message-text-square-01.svg
new file mode 100644
index 00000000..0e9aa3ad
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-text-square-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 8.5H12M7 12H15M9.68375 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V20.3355C3 20.8684 3 21.1348 3.10923 21.2716C3.20422 21.3906 3.34827 21.4599 3.50054 21.4597C3.67563 21.4595 3.88367 21.2931 4.29976 20.9602L6.68521 19.0518C7.17252 18.662 7.41617 18.4671 7.68749 18.3285C7.9282 18.2055 8.18443 18.1156 8.44921 18.0613C8.74767 18 9.0597 18 9.68375 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-text-square-02.svg b/@stellar/design-system/src/assets/icons/message-text-square-02.svg
new file mode 100644
index 00000000..a611c76b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-text-square-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-x-circle.svg b/@stellar/design-system/src/assets/icons/message-x-circle.svg
new file mode 100644
index 00000000..a0d5de72
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-x-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.99962 9L14.9996 14M14.9996 9L9.99962 14M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/message-x-square.svg b/@stellar/design-system/src/assets/icons/message-x-square.svg
new file mode 100644
index 00000000..bc89aef1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/message-x-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 8L14.5 13M14.5 8L9.5 13M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/meta.svg b/@stellar/design-system/src/assets/icons/meta.svg
new file mode 100644
index 00000000..b3f7e356
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/meta.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.915 4.03005C4.947 4.03005 3.232 5.31005 2.044 7.14305C0.704 9.20805 0 11.8831 0 14.4491C0 15.1551 0.07 15.8181 0.21 16.4221C0.278736 16.7144 0.367274 17.0017 0.475 17.2821C0.578164 17.5452 0.702227 17.7997 0.846 18.0431C1.542 19.2021 2.664 19.9701 4.439 19.9701C5.936 19.9701 7.072 19.2991 8.404 17.5261C9.164 16.5141 9.548 15.9001 11.067 13.2061L11.823 11.8671L12.009 11.5421C12.07 11.6421 12.13 11.7381 12.192 11.8421L14.344 15.4371C15.068 16.6471 16.009 17.9931 16.814 18.7511C17.86 19.7381 18.806 19.9711 19.874 19.9711C20.949 19.9711 21.75 19.6161 22.329 19.1281C22.6523 18.8521 22.9262 18.523 23.139 18.1551C23.681 17.2161 24 16.0281 24 14.4101C24 11.6901 23.319 9.05305 21.916 6.96005C20.634 5.04805 18.959 4.03005 17.2 4.03005C16.153 4.03005 15.112 4.49705 14.147 5.33805C13.495 5.90805 12.89 6.62805 12.327 7.38805C11.637 6.51305 10.992 5.84105 10.369 5.33205C9.187 4.36605 8.054 4.02905 6.915 4.02905V4.03005ZM17.075 6.08305C18.222 6.08305 19.263 6.84105 20.067 8.08205C21.199 9.83005 21.714 12.2771 21.714 14.4821C21.714 16.0301 21.346 17.3821 19.875 17.3821C19.295 17.3821 18.848 17.1521 18.211 16.3781C17.715 15.7771 16.868 14.5001 15.379 12.0201L14.762 10.9921C14.361 10.3212 13.9425 9.66102 13.507 9.01205C13.577 8.90305 13.648 8.78805 13.718 8.68505C14.838 7.01805 15.835 6.08305 17.075 6.08305ZM6.874 6.63605C8.139 6.63605 8.932 7.42705 9.549 8.08205C9.856 8.40905 10.286 8.95305 10.783 9.66105L9.763 11.2271C9.006 12.3901 7.881 14.2441 6.926 15.5651C5.735 17.2141 5.116 17.3821 4.44 17.3821C3.916 17.3821 3.402 17.1451 3.057 16.5881C2.794 16.1621 2.593 15.4581 2.593 14.5421C2.593 12.3211 3.223 10.0071 4.253 8.45405C4.707 7.76705 5.217 7.22805 5.786 6.92105C6.11892 6.73605 6.49313 6.63802 6.874 6.63605Z" fill="#8F8F8F"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/microphone-01.svg b/@stellar/design-system/src/assets/icons/microphone-01.svg
new file mode 100644
index 00000000..059bb6d8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/microphone-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 10V12C19 15.866 15.866 19 12 19M5 10V12C5 15.866 8.13401 19 12 19M12 19V22M8 22H16M12 15C10.3431 15 9 13.6569 9 12V5C9 3.34315 10.3431 2 12 2C13.6569 2 15 3.34315 15 5V12C15 13.6569 13.6569 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/microphone-02.svg b/@stellar/design-system/src/assets/icons/microphone-02.svg
new file mode 100644
index 00000000..d70f8a52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/microphone-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V12M12 17C9.79086 17 8 15.2091 8 13V7C8 4.79086 9.79086 3 12 3C14.2091 3 16 4.79086 16 7V13C16 15.2091 14.2091 17 12 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/microphone-off-01.svg b/@stellar/design-system/src/assets/icons/microphone-off-01.svg
new file mode 100644
index 00000000..b43bc3a2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/microphone-off-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 9.4V5C15 3.34315 13.6569 2 12 2C10.8224 2 9.80325 2.67852 9.3122 3.66593M12 19V22M12 19C8.13401 19 5 15.866 5 12V10M12 19C15.866 19 19 15.866 19 12V10M8 22H16M2 2L22 22M12 15C10.3431 15 9 13.6569 9 12V9L14.1226 14.12C13.5796 14.6637 12.8291 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/microphone-off-02.svg b/@stellar/design-system/src/assets/icons/microphone-off-02.svg
new file mode 100644
index 00000000..9dccd35b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/microphone-off-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 12V13C4 17.4183 7.58172 21 12 21C14.4653 21 16.6701 19.8849 18.1376 18.1316M2 2L22 22M16 10.4V7C16 4.79086 14.2091 3 12 3C11.0406 3 10.1601 3.33778 9.47086 3.9009M12 17C9.79086 17 8 15.2091 8 13V8L15.2815 15.288C14.5585 16.323 13.3583 17 12 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/microscope.svg b/@stellar/design-system/src/assets/icons/microscope.svg
new file mode 100644
index 00000000..63d21fa0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/microscope.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 22H12M11 6.25204C11.6392 6.08751 12.3094 6 13 6C17.4183 6 21 9.58172 21 14C21 17.3574 18.9318 20.2317 16 21.4185M5.5 13H9.5C9.96466 13 10.197 13 10.3902 13.0384C11.1836 13.1962 11.8038 13.8164 11.9616 14.6098C12 14.803 12 15.0353 12 15.5C12 15.9647 12 16.197 11.9616 16.3902C11.8038 17.1836 11.1836 17.8038 10.3902 17.9616C10.197 18 9.96466 18 9.5 18H5.5C5.03534 18 4.80302 18 4.60982 17.9616C3.81644 17.8038 3.19624 17.1836 3.03843 16.3902C3 16.197 3 15.9647 3 15.5C3 15.0353 3 14.803 3.03843 14.6098C3.19624 13.8164 3.81644 13.1962 4.60982 13.0384C4.80302 13 5.03534 13 5.5 13ZM4 5.5V13H11V5.5C11 3.567 9.433 2 7.5 2C5.567 2 4 3.567 4 5.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/minimize-01.svg b/@stellar/design-system/src/assets/icons/minimize-01.svg
new file mode 100644
index 00000000..12bc21b5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/minimize-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 14H10M10 14V20M10 14L3 21M20 10H14M14 10V4M14 10L21 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/minimize-02.svg b/@stellar/design-system/src/assets/icons/minimize-02.svg
new file mode 100644
index 00000000..355b80c7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/minimize-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.99988 7.99988H3.19988C4.88004 7.99988 5.72011 7.99988 6.36185 7.6729C6.92634 7.38528 7.38528 6.92634 7.6729 6.36185C7.99988 5.72011 7.99988 4.88004 7.99988 3.19988V2.99988M2.99988 15.9999H3.19988C4.88004 15.9999 5.72011 15.9999 6.36185 16.3269C6.92634 16.6145 7.38528 17.0734 7.6729 17.6379C7.99988 18.2796 7.99988 19.1197 7.99988 20.7999V20.9999M15.9999 2.99988V3.19988C15.9999 4.88004 15.9999 5.72011 16.3269 6.36185C16.6145 6.92634 17.0734 7.38528 17.6379 7.6729C18.2796 7.99988 19.1197 7.99988 20.7999 7.99988H20.9999M15.9999 20.9999V20.7999C15.9999 19.1197 15.9999 18.2796 16.3269 17.6379C16.6145 17.0734 17.0734 16.6145 17.6379 16.3269C18.2796 15.9999 19.1197 15.9999 20.7999 15.9999H20.9999" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/minus-circle.svg b/@stellar/design-system/src/assets/icons/minus-circle.svg
new file mode 100644
index 00000000..4fac3f26
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/minus-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/minus-square.svg b/@stellar/design-system/src/assets/icons/minus-square.svg
new file mode 100644
index 00000000..35075819
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/minus-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 12H16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/minus.svg b/@stellar/design-system/src/assets/icons/minus.svg
new file mode 100644
index 00000000..6da3b385
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 12H19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mode-dark.svg b/@stellar/design-system/src/assets/icons/mode-dark.svg
deleted file mode 100644
index f2fe9794..00000000
--- a/@stellar/design-system/src/assets/icons/mode-dark.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6774)"><path d="M12 21C9.48333 21 7.354 20.129 5.612 18.387C3.87067 16.6457 3 14.5167 3 12C3 9.70002 3.75 7.70402 5.25 6.01202C6.75 4.32069 8.66667 3.33336 11 3.05002C11.4167 3.00002 11.7417 3.15002 11.975 3.50002C12.2083 3.85002 12.2 4.21669 11.95 4.60002C11.6667 5.03336 11.454 5.49169 11.312 5.97502C11.1707 6.45836 11.1 6.96669 11.1 7.50002C11.1 9.00002 11.625 10.275 12.675 11.325C13.725 12.375 15 12.9 16.5 12.9C17.0167 12.9 17.5293 12.825 18.038 12.675C18.546 12.525 19 12.3167 19.4 12.05C19.75 11.8167 20.1083 11.804 20.475 12.012C20.8417 12.2207 21 12.55 20.95 13C20.7167 15.3 19.7377 17.2084 18.013 18.725C16.2877 20.2417 14.2833 21 12 21Z"/></g><defs><clipPath id="clip0_1113_6774"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mode-light.svg b/@stellar/design-system/src/assets/icons/mode-light.svg
deleted file mode 100644
index 3ce3dcdf..00000000
--- a/@stellar/design-system/src/assets/icons/mode-light.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6771)"><path d="M12 17C10.6167 17 9.43767 16.5123 8.463 15.537C7.48767 14.5623 7 13.3833 7 12C7 10.6167 7.48767 9.43733 8.463 8.462C9.43767 7.48733 10.6167 7 12 7C13.3833 7 14.5627 7.48733 15.538 8.462C16.5127 9.43733 17 10.6167 17 12C17 13.3833 16.5127 14.5623 15.538 15.537C14.5627 16.5123 13.3833 17 12 17ZM2 13C1.71667 13 1.47933 12.904 1.288 12.712C1.096 12.5207 1 12.2833 1 12C1 11.7167 1.096 11.479 1.288 11.287C1.47933 11.0957 1.71667 11 2 11H4C4.28333 11 4.521 11.0957 4.713 11.287C4.90433 11.479 5 11.7167 5 12C5 12.2833 4.90433 12.5207 4.713 12.712C4.521 12.904 4.28333 13 4 13H2ZM20 13C19.7167 13 19.4793 12.904 19.288 12.712C19.096 12.5207 19 12.2833 19 12C19 11.7167 19.096 11.479 19.288 11.287C19.4793 11.0957 19.7167 11 20 11H22C22.2833 11 22.5207 11.0957 22.712 11.287C22.904 11.479 23 11.7167 23 12C23 12.2833 22.904 12.5207 22.712 12.712C22.5207 12.904 22.2833 13 22 13H20ZM12 5C11.7167 5 11.4793 4.904 11.288 4.712C11.096 4.52067 11 4.28333 11 4V2C11 1.71667 11.096 1.479 11.288 1.287C11.4793 1.09567 11.7167 1 12 1C12.2833 1 12.521 1.09567 12.713 1.287C12.9043 1.479 13 1.71667 13 2V4C13 4.28333 12.9043 4.52067 12.713 4.712C12.521 4.904 12.2833 5 12 5ZM12 23C11.7167 23 11.4793 22.904 11.288 22.712C11.096 22.5207 11 22.2833 11 22V20C11 19.7167 11.096 19.4793 11.288 19.288C11.4793 19.096 11.7167 19 12 19C12.2833 19 12.521 19.096 12.713 19.288C12.9043 19.4793 13 19.7167 13 20V22C13 22.2833 12.9043 22.5207 12.713 22.712C12.521 22.904 12.2833 23 12 23ZM5.65 7.05L4.575 6C4.375 5.81667 4.279 5.58333 4.287 5.3C4.29567 5.01667 4.39167 4.775 4.575 4.575C4.775 4.375 5.01667 4.275 5.3 4.275C5.58333 4.275 5.81667 4.375 6 4.575L7.05 5.65C7.23333 5.85 7.325 6.08333 7.325 6.35C7.325 6.61667 7.23333 6.85 7.05 7.05C6.86667 7.25 6.63767 7.34567 6.363 7.337C6.08767 7.329 5.85 7.23333 5.65 7.05ZM18 19.425L16.95 18.35C16.7667 18.15 16.675 17.9127 16.675 17.638C16.675 17.3627 16.7667 17.1333 16.95 16.95C17.1333 16.75 17.3627 16.6543 17.638 16.663C17.9127 16.671 18.15 16.7667 18.35 16.95L19.425 18C19.625 18.1833 19.721 18.4167 19.713 18.7C19.7043 18.9833 19.6083 19.225 19.425 19.425C19.225 19.625 18.9833 19.725 18.7 19.725C18.4167 19.725 18.1833 19.625 18 19.425ZM16.95 7.05C16.75 6.86667 16.6543 6.63733 16.663 6.362C16.671 6.08733 16.7667 5.85 16.95 5.65L18 4.575C18.1833 4.375 18.4167 4.279 18.7 4.287C18.9833 4.29567 19.225 4.39167 19.425 4.575C19.625 4.775 19.725 5.01667 19.725 5.3C19.725 5.58333 19.625 5.81667 19.425 6L18.35 7.05C18.15 7.23333 17.9167 7.325 17.65 7.325C17.3833 7.325 17.15 7.23333 16.95 7.05ZM4.575 19.425C4.375 19.225 4.275 18.9833 4.275 18.7C4.275 18.4167 4.375 18.1833 4.575 18L5.65 16.95C5.85 16.7667 6.08767 16.675 6.363 16.675C6.63767 16.675 6.86667 16.7667 7.05 16.95C7.25 17.1333 7.346 17.3627 7.338 17.638C7.32933 17.9127 7.23333 18.15 7.05 18.35L6 19.425C5.81667 19.625 5.58333 19.7207 5.3 19.712C5.01667 19.704 4.775 19.6083 4.575 19.425Z"/></g><defs><clipPath id="clip0_1113_6771"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/modem-01.svg b/@stellar/design-system/src/assets/icons/modem-01.svg
new file mode 100644
index 00000000..dd2bf415
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/modem-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2427 4.75732C18.5858 7.10047 18.5858 10.8995 16.2427 13.2426M7.75734 13.2426C5.41419 10.8995 5.41419 7.10047 7.75734 4.75732M4.85829 16C1.02359 12.0894 1.04705 5.81059 4.92869 1.92896M19.0713 1.92896C22.9529 5.81059 22.9764 12.0894 19.1417 16M12 16V9M4.99998 22H19C19.9319 22 20.3978 22 20.7653 21.8478C21.2554 21.6448 21.6447 21.2554 21.8477 20.7654C22 20.3978 22 19.9319 22 19C22 18.0681 22 17.6022 21.8477 17.2346C21.6447 16.7446 21.2554 16.3552 20.7653 16.1522C20.3978 16 19.9319 16 19 16H4.99998C4.06809 16 3.60215 16 3.23461 16.1522C2.74455 16.3552 2.35521 16.7446 2.15222 17.2346C1.99998 17.6022 1.99998 18.0681 1.99998 19C1.99998 19.9319 1.99998 20.3978 2.15222 20.7654C2.35521 21.2554 2.74455 21.6448 3.23461 21.8478C3.60215 22 4.06809 22 4.99998 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/modem-02.svg b/@stellar/design-system/src/assets/icons/modem-02.svg
new file mode 100644
index 00000000..ac244f05
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/modem-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.20472 10.5579C5.72578 8.76965 6.08709 6.80318 7.28865 5.28378M17.7952 10.5579C18.2742 8.7696 17.9129 6.80314 16.7113 5.28373M2.34183 11.5997C1.50387 8.47493 2.20543 5.0233 4.44651 2.44592M21.6547 11.5997C22.4926 8.47497 21.7911 5.02334 19.55 2.44597M12 15V9.00004M5.49998 18.5H9.49998M5.19998 22H18.8C19.9201 22 20.4801 22 20.908 21.7821C21.2843 21.5903 21.5902 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V18.2C22 17.0799 22 16.5199 21.782 16.0921C21.5902 15.7157 21.2843 15.4098 20.908 15.218C20.4801 15 19.9201 15 18.8 15H5.19998C4.07987 15 3.51982 15 3.092 15.218C2.71567 15.4098 2.40971 15.7157 2.21796 16.0921C1.99998 16.5199 1.99998 17.0799 1.99998 18.2V18.8C1.99998 19.9201 1.99998 20.4802 2.21796 20.908C2.40971 21.2843 2.71567 21.5903 3.092 21.7821C3.51982 22 4.07987 22 5.19998 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monetization-on.svg b/@stellar/design-system/src/assets/icons/monetization-on.svg
deleted file mode 100644
index 7b7be32d..00000000
--- a/@stellar/design-system/src/assets/icons/monetization-on.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6768)"><path d="M11.975 19C12.2083 19 12.4127 18.9127 12.588 18.738C12.7627 18.5627 12.85 18.3583 12.85 18.125V17.75C13.6833 17.6 14.4 17.275 15 16.775C15.6 16.275 15.9 15.5333 15.9 14.55C15.9 13.85 15.7 13.2083 15.3 12.625C14.9 12.0417 14.1 11.5333 12.9 11.1C11.9 10.7667 11.2083 10.475 10.825 10.225C10.4417 9.975 10.25 9.63333 10.25 9.2C10.25 8.76667 10.4043 8.425 10.713 8.175C11.021 7.925 11.4667 7.8 12.05 7.8C12.3833 7.8 12.675 7.85833 12.925 7.975C13.175 8.09167 13.3833 8.25 13.55 8.45C13.7167 8.65 13.9043 8.78767 14.113 8.863C14.321 8.93767 14.5167 8.93333 14.7 8.85C14.95 8.75 15.121 8.579 15.213 8.337C15.3043 8.09567 15.2833 7.875 15.15 7.675C14.8833 7.29167 14.5543 6.96667 14.163 6.7C13.771 6.43333 13.35 6.28333 12.9 6.25V5.875C12.9 5.64167 12.8123 5.43733 12.637 5.262C12.4623 5.08733 12.2583 5 12.025 5C11.7917 5 11.5877 5.08733 11.413 5.262C11.2377 5.43733 11.15 5.64167 11.15 5.875V6.25C10.3167 6.43333 9.66667 6.8 9.2 7.35C8.73333 7.9 8.5 8.51667 8.5 9.2C8.5 9.98333 8.72933 10.6167 9.188 11.1C9.646 11.5833 10.3667 12 11.35 12.35C12.4 12.7333 13.1293 13.075 13.538 13.375C13.946 13.675 14.15 14.0667 14.15 14.55C14.15 15.1 13.954 15.504 13.562 15.762C13.1707 16.0207 12.7 16.15 12.15 16.15C11.7167 16.15 11.325 16.0457 10.975 15.837C10.625 15.629 10.3333 15.3167 10.1 14.9C9.96667 14.6667 9.79167 14.5083 9.575 14.425C9.35833 14.3417 9.14167 14.3417 8.925 14.425C8.69167 14.5083 8.521 14.6667 8.413 14.9C8.30433 15.1333 8.3 15.3583 8.4 15.575C8.66667 16.1417 9.025 16.604 9.475 16.962C9.925 17.3207 10.4667 17.5667 11.1 17.7V18.125C11.1 18.3583 11.1877 18.5627 11.363 18.738C11.5377 18.9127 11.7417 19 11.975 19ZM12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6768"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monitor-01.svg b/@stellar/design-system/src/assets/icons/monitor-01.svg
new file mode 100644
index 00000000..b014476b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/monitor-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 21H16M12 17V21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monitor-02.svg b/@stellar/design-system/src/assets/icons/monitor-02.svg
new file mode 100644
index 00000000..6e28fa03
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/monitor-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monitor-03.svg b/@stellar/design-system/src/assets/icons/monitor-03.svg
new file mode 100644
index 00000000..a6d5b909
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/monitor-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 14L22 14M8 21H16M6.8 18H17.2C18.8802 18 19.7202 18 20.362 17.673C20.9265 17.3854 21.3854 16.9265 21.673 16.362C22 15.7202 22 14.8802 22 13.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V13.2C2 14.8802 2 15.7202 2.32698 16.362C2.6146 16.9265 3.07354 17.3854 3.63803 17.673C4.27976 18 5.11984 18 6.8 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monitor-04.svg b/@stellar/design-system/src/assets/icons/monitor-04.svg
new file mode 100644
index 00000000..56ee9087
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/monitor-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 17V21H9V17M5.2 17H18.8C19.9201 17 20.4802 17 20.908 16.782C21.2843 16.5903 21.5903 16.2843 21.782 15.908C22 15.4802 22 14.9201 22 13.8V6.2C22 5.0799 22 4.51984 21.782 4.09202C21.5903 3.71569 21.2843 3.40973 20.908 3.21799C20.4802 3 19.9201 3 18.8 3H5.2C4.07989 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.07989 2 6.2V13.8C2 14.9201 2 15.4802 2.21799 15.908C2.40973 16.2843 2.71569 16.5903 3.09202 16.782C3.51984 17 4.0799 17 5.2 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/monitor-05.svg b/@stellar/design-system/src/assets/icons/monitor-05.svg
new file mode 100644
index 00000000..e5231791
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/monitor-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.5 20H8M17 9H17.01M8 6H5.2C4.0799 6 3.51984 6 3.09202 6.21799C2.71569 6.40973 2.40973 6.71569 2.21799 7.09202C2 7.51984 2 8.0799 2 9.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.0799 16 5.2 16H8M15.2 20H18.8C19.9201 20 20.4802 20 20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908C22 18.4802 22 17.9201 22 16.8V7.2C22 6.0799 22 5.51984 21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799C20.4802 4 19.9201 4 18.8 4H15.2C14.0799 4 13.5198 4 13.092 4.21799C12.7157 4.40973 12.4097 4.71569 12.218 5.09202C12 5.51984 12 6.07989 12 7.2V16.8C12 17.9201 12 18.4802 12.218 18.908C12.4097 19.2843 12.7157 19.5903 13.092 19.782C13.5198 20 14.0799 20 15.2 20ZM18 15C18 15.5523 17.5523 16 17 16C16.4477 16 16 15.5523 16 15C16 14.4477 16.4477 14 17 14C17.5523 14 18 14.4477 18 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/moon-01.svg b/@stellar/design-system/src/assets/icons/moon-01.svg
new file mode 100644
index 00000000..68adefe2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/moon-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 15.8442C20.6866 16.4382 19.2286 16.7688 17.6935 16.7688C11.9153 16.7688 7.23116 12.0847 7.23116 6.30654C7.23116 4.77135 7.5618 3.3134 8.15577 2C4.52576 3.64163 2 7.2947 2 11.5377C2 17.3159 6.68414 22 12.4623 22C16.7053 22 20.3584 19.4742 22 15.8442Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/moon-02.svg b/@stellar/design-system/src/assets/icons/moon-02.svg
new file mode 100644
index 00000000..26f8154a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/moon-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.9548 12.9566C20.5779 15.3719 17.9791 17.0003 15 17.0003C10.5817 17.0003 7 13.4186 7 9.00033C7 6.02096 8.62867 3.42199 11.0443 2.04517C5.96975 2.52631 2 6.79961 2 12.0001C2 17.5229 6.47715 22.0001 12 22.0001C17.2002 22.0001 21.4733 18.0308 21.9548 12.9566Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/moon-eclipse.svg b/@stellar/design-system/src/assets/icons/moon-eclipse.svg
new file mode 100644
index 00000000..ff291ba3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/moon-eclipse.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.0017 6.00022C22.6667 9.54505 22.6661 14.4578 20 18.0021M12 22C13.5711 22 15.0575 21.6377 16.3803 20.9921C16.2542 20.9974 16.1274 21 16 21C11.0294 21 7 16.9706 7 12C7 7.02944 11.0294 3 16 3C16.1274 3 16.2542 3.00265 16.3803 3.00789C15.0575 2.36229 13.5711 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/moon-star.svg b/@stellar/design-system/src/assets/icons/moon-star.svg
new file mode 100644
index 00000000..e04624dd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/moon-star.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 2L18.6178 3.23558C18.8833 3.76656 19.016 4.03205 19.1934 4.26211C19.3507 4.46626 19.5337 4.64927 19.7379 4.80664C19.9679 4.98397 20.2334 5.11672 20.7644 5.38221L22 6L20.7644 6.61779C20.2334 6.88328 19.9679 7.01603 19.7379 7.19336C19.5337 7.35073 19.3507 7.53374 19.1934 7.73789C19.016 7.96795 18.8833 8.23344 18.6178 8.76442L18 10L17.3822 8.76442C17.1167 8.23344 16.984 7.96795 16.8066 7.73789C16.6493 7.53374 16.4663 7.35073 16.2621 7.19336C16.0321 7.01603 15.7666 6.88328 15.2356 6.61779L14 6L15.2356 5.38221C15.7666 5.11672 16.0321 4.98397 16.2621 4.80664C16.4663 4.64927 16.6493 4.46626 16.8066 4.26211C16.984 4.03205 17.1167 3.76656 17.3822 3.23558L18 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21 13.3893C19.689 15.689 17.2145 17.2395 14.3779 17.2395C10.1711 17.2395 6.76075 13.8292 6.76075 9.62233C6.76075 6.78554 8.31149 4.31094 10.6115 3C5.77979 3.45812 2 7.52692 2 12.4785C2 17.7371 6.26292 22 11.5215 22C16.4729 22 20.5415 18.2206 21 13.3893Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/more-horiz.svg b/@stellar/design-system/src/assets/icons/more-horiz.svg
deleted file mode 100644
index 7a9e7ed3..00000000
--- a/@stellar/design-system/src/assets/icons/more-horiz.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6765)"><path d="M6 14C5.45 14 4.97933 13.804 4.588 13.412C4.196 13.0207 4 12.55 4 12C4 11.45 4.196 10.979 4.588 10.587C4.97933 10.1957 5.45 10 6 10C6.55 10 7.02067 10.1957 7.412 10.587C7.804 10.979 8 11.45 8 12C8 12.55 7.804 13.0207 7.412 13.412C7.02067 13.804 6.55 14 6 14ZM12 14C11.45 14 10.9793 13.804 10.588 13.412C10.196 13.0207 10 12.55 10 12C10 11.45 10.196 10.979 10.588 10.587C10.9793 10.1957 11.45 10 12 10C12.55 10 13.021 10.1957 13.413 10.587C13.8043 10.979 14 11.45 14 12C14 12.55 13.8043 13.0207 13.413 13.412C13.021 13.804 12.55 14 12 14ZM18 14C17.45 14 16.979 13.804 16.587 13.412C16.1957 13.0207 16 12.55 16 12C16 11.45 16.1957 10.979 16.587 10.587C16.979 10.1957 17.45 10 18 10C18.55 10 19.021 10.1957 19.413 10.587C19.8043 10.979 20 11.45 20 12C20 12.55 19.8043 13.0207 19.413 13.412C19.021 13.804 18.55 14 18 14Z"/></g><defs><clipPath id="clip0_1113_6765"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/more-vert.svg b/@stellar/design-system/src/assets/icons/more-vert.svg
deleted file mode 100644
index a741ee00..00000000
--- a/@stellar/design-system/src/assets/icons/more-vert.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6762)"><path d="M12 20C11.45 20 10.9793 19.8043 10.588 19.413C10.196 19.021 10 18.55 10 18C10 17.45 10.196 16.979 10.588 16.587C10.9793 16.1957 11.45 16 12 16C12.55 16 13.021 16.1957 13.413 16.587C13.8043 16.979 14 17.45 14 18C14 18.55 13.8043 19.021 13.413 19.413C13.021 19.8043 12.55 20 12 20ZM12 14C11.45 14 10.9793 13.804 10.588 13.412C10.196 13.0207 10 12.55 10 12C10 11.45 10.196 10.979 10.588 10.587C10.9793 10.1957 11.45 10 12 10C12.55 10 13.021 10.1957 13.413 10.587C13.8043 10.979 14 11.45 14 12C14 12.55 13.8043 13.0207 13.413 13.412C13.021 13.804 12.55 14 12 14ZM12 8C11.45 8 10.9793 7.804 10.588 7.412C10.196 7.02067 10 6.55 10 6C10 5.45 10.196 4.97933 10.588 4.588C10.9793 4.196 11.45 4 12 4C12.55 4 13.021 4.196 13.413 4.588C13.8043 4.97933 14 5.45 14 6C14 6.55 13.8043 7.02067 13.413 7.412C13.021 7.804 12.55 8 12 8Z"/></g><defs><clipPath id="clip0_1113_6762"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/mouse.svg b/@stellar/design-system/src/assets/icons/mouse.svg
new file mode 100644
index 00000000..3d5e1b90
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/mouse.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 9V6M12 22C8.13401 22 5 18.866 5 15V9C5 5.13401 8.13401 2 12 2C15.866 2 19 5.13401 19 9V15C19 18.866 15.866 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/move-down.svg b/@stellar/design-system/src/assets/icons/move-down.svg
deleted file mode 100644
index 324c98f8..00000000
--- a/@stellar/design-system/src/assets/icons/move-down.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M6.275 20.275C6.09167 20.0917 6 19.8667 6 19.6C6 19.3333 6.09167 19.1 6.275 18.9L7.175 17.95C5.425 17.75 3.95833 16.9917 2.775 15.675C1.59167 14.3583 1 12.8 1 11C1 9.05 1.67917 7.39583 3.0375 6.0375C4.39583 4.67917 6.05 4 8 4H10C10.2833 4 10.5208 4.09583 10.7125 4.2875C10.9042 4.47917 11 4.71667 11 5C11 5.28333 10.9042 5.52083 10.7125 5.7125C10.5208 5.90417 10.2833 6 10 6H8C6.61667 6 5.4375 6.4875 4.4625 7.4625C3.4875 8.4375 3 9.61667 3 11C3 12.2333 3.3875 13.3 4.1625 14.2C4.9375 15.1 5.90833 15.6667 7.075 15.9L6.3 15.125C6.11667 14.9417 6.025 14.7125 6.025 14.4375C6.025 14.1625 6.11667 13.925 6.3 13.725C6.5 13.525 6.7375 13.425 7.0125 13.425C7.2875 13.425 7.525 13.525 7.725 13.725L10.3 16.3C10.4 16.4 10.4708 16.5083 10.5125 16.625C10.5542 16.7417 10.575 16.8667 10.575 17C10.575 17.1333 10.5542 17.2583 10.5125 17.375C10.4708 17.4917 10.4 17.6 10.3 17.7L7.7 20.3C7.51667 20.4833 7.28333 20.575 7 20.575C6.71667 20.575 6.475 20.475 6.275 20.275ZM15 11C14.45 11 13.9792 10.8042 13.5875 10.4125C13.1958 10.0208 13 9.55 13 9V6C13 5.45 13.1958 4.97917 13.5875 4.5875C13.9792 4.19583 14.45 4 15 4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V9C22 9.55 21.8042 10.0208 21.4125 10.4125C21.0208 10.8042 20.55 11 20 11H15ZM15 9H20V6H15V9ZM15 20C14.45 20 13.9792 19.8042 13.5875 19.4125C13.1958 19.0208 13 18.55 13 18V15C13 14.45 13.1958 13.9792 13.5875 13.5875C13.9792 13.1958 14.45 13 15 13H20C20.55 13 21.0208 13.1958 21.4125 13.5875C21.8042 13.9792 22 14.45 22 15V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H15Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/move.svg b/@stellar/design-system/src/assets/icons/move.svg
new file mode 100644
index 00000000..49597161
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/move.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 9L2 12M2 12L5 15M2 12H22M9 5L12 2M12 2L15 5M12 2V22M15 19L12 22M12 22L9 19M19 9L22 12M22 12L19 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/music-note-01.svg b/@stellar/design-system/src/assets/icons/music-note-01.svg
new file mode 100644
index 00000000..49744a1d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/music-note-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 18V6.35537C9 5.87383 9 5.63306 9.0876 5.43778C9.16482 5.26565 9.28917 5.11887 9.44627 5.0144C9.62449 4.89588 9.86198 4.8563 10.337 4.77714L19.137 3.31047C19.7779 3.20364 20.0984 3.15023 20.3482 3.243C20.5674 3.32441 20.7511 3.48005 20.8674 3.68286C21 3.91398 21 4.23889 21 4.8887V16M9 18C9 19.6568 7.65685 21 6 21C4.34315 21 3 19.6568 3 18C3 16.3431 4.34315 15 6 15C7.65685 15 9 16.3431 9 18ZM21 16C21 17.6568 19.6569 19 18 19C16.3431 19 15 17.6568 15 16C15 14.3431 16.3431 13 18 13C19.6569 13 21 14.3431 21 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/music-note-02.svg b/@stellar/design-system/src/assets/icons/music-note-02.svg
new file mode 100644
index 00000000..2c960637
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/music-note-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 18V5.58888C12 4.73166 12 4.30306 12.1805 4.04492C12.3382 3.81952 12.5817 3.669 12.8538 3.6288C13.1655 3.58276 13.5488 3.77444 14.3155 4.1578L18 6.00003M12 18C12 19.6569 10.6569 21 9 21C7.34315 21 6 19.6569 6 18C6 16.3432 7.34315 15 9 15C10.6569 15 12 16.3432 12 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/music-note-plus.svg b/@stellar/design-system/src/assets/icons/music-note-plus.svg
new file mode 100644
index 00000000..21e78cb7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/music-note-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 18V5.58888C14.5 4.73166 14.5 4.30306 14.6805 4.04492C14.8382 3.81952 15.0817 3.669 15.3538 3.6288C15.6655 3.58276 16.0488 3.77444 16.8155 4.1578L20.5 6.00003M14.5 18C14.5 19.6569 13.1569 21 11.5 21C9.84315 21 8.5 19.6569 8.5 18C8.5 16.3432 9.84315 15 11.5 15C13.1569 15 14.5 16.3432 14.5 18ZM6.5 10V4.00003M3.5 7.00003H9.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/navigation-pointer-01.svg b/@stellar/design-system/src/assets/icons/navigation-pointer-01.svg
new file mode 100644
index 00000000..4706dc75
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/navigation-pointer-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.41345 10.7445C2.81811 10.513 2.52043 10.3972 2.43353 10.2304C2.35819 10.0858 2.35809 9.91354 2.43326 9.76886C2.51997 9.60195 2.8175 9.48584 3.41258 9.25361L20.3003 2.66327C20.8375 2.45364 21.1061 2.34883 21.2777 2.40616C21.4268 2.45596 21.5437 2.57292 21.5935 2.72197C21.6509 2.8936 21.5461 3.16219 21.3364 3.69937L14.7461 20.5871C14.5139 21.1822 14.3977 21.4797 14.2308 21.5664C14.0862 21.6416 13.9139 21.6415 13.7693 21.5662C13.6025 21.4793 13.4867 21.1816 13.2552 20.5862L10.6271 13.8282C10.5801 13.7074 10.5566 13.647 10.5203 13.5961C10.4881 13.551 10.4487 13.5115 10.4036 13.4794C10.3527 13.4431 10.2923 13.4196 10.1715 13.3726L3.41345 10.7445Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/navigation-pointer-02.svg b/@stellar/design-system/src/assets/icons/navigation-pointer-02.svg
new file mode 100644
index 00000000..c2e6bf44
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/navigation-pointer-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.03685 21.3253C4.45216 21.5826 4.15982 21.7112 3.98042 21.6547C3.8249 21.6057 3.70303 21.484 3.65387 21.3285C3.59717 21.1492 3.72545 20.8567 3.98203 20.2717L11.2634 3.6702C11.495 3.14212 11.6108 2.87808 11.7727 2.79727C11.9133 2.72708 12.0787 2.72708 12.2193 2.79727C12.3812 2.87808 12.497 3.14212 12.7287 3.6702L20.01 20.2717C20.2666 20.8567 20.3949 21.1492 20.3382 21.3285C20.289 21.484 20.1671 21.6057 20.0116 21.6547C19.8322 21.7112 19.5399 21.5826 18.9552 21.3253L12.3182 18.405C12.1995 18.3528 12.1402 18.3267 12.0785 18.3164C12.0239 18.3072 11.9681 18.3072 11.9135 18.3164C11.8519 18.3267 11.7925 18.3528 11.6738 18.405L5.03685 21.3253Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/navigation-pointer-off-01.svg b/@stellar/design-system/src/assets/icons/navigation-pointer-off-01.svg
new file mode 100644
index 00000000..ac5cb382
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/navigation-pointer-off-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.337 6.16115L20.3003 2.66327C20.8375 2.45364 21.1061 2.34883 21.2777 2.40616C21.4268 2.45596 21.5437 2.57292 21.5935 2.72197C21.6509 2.8936 21.5461 3.16219 21.3364 3.69937L17.8274 12.6913M16.3857 16.3857L14.7461 20.5871C14.5139 21.1822 14.3977 21.4797 14.2308 21.5664C14.0862 21.6416 13.9139 21.6415 13.7693 21.5662C13.6025 21.4793 13.4867 21.1816 13.2552 20.5862L10.6271 13.8282C10.5801 13.7074 10.5566 13.647 10.5203 13.5961C10.4881 13.551 10.4487 13.5115 10.4036 13.4794C10.3527 13.4431 10.2923 13.4196 10.1715 13.3726L3.41345 10.7445C2.81811 10.513 2.52043 10.3972 2.43353 10.2304C2.35819 10.0858 2.35809 9.91354 2.43326 9.76885C2.51997 9.60195 2.8175 9.48584 3.41258 9.25361L7.61748 7.61268M20.9995 21.0002L2.99952 3.00017" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/navigation-pointer-off-02.svg b/@stellar/design-system/src/assets/icons/navigation-pointer-off-02.svg
new file mode 100644
index 00000000..61f6bec3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/navigation-pointer-off-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.4712 5.47577L11.2631 3.67044C11.4947 3.14236 11.6105 2.87832 11.7724 2.79751C11.913 2.72732 12.0784 2.72732 12.219 2.79751C12.3809 2.87832 12.4967 3.14236 12.7283 3.67044L15.9006 10.9033M8.94668 8.95153L3.98158 20.272C3.725 20.857 3.59672 21.1495 3.65342 21.3288C3.70258 21.4842 3.82445 21.606 3.97997 21.6549C4.15937 21.7114 4.45171 21.5828 5.0364 21.3256L11.6734 18.4053C11.7921 18.3531 11.8514 18.327 11.9131 18.3166C11.9677 18.3075 12.0235 18.3075 12.0781 18.3166C12.1397 18.327 12.1991 18.3531 12.3178 18.4053L18.9547 21.3256C19.5394 21.5828 19.8318 21.7114 20.0112 21.6549C20.1667 21.606 20.2886 21.4842 20.3377 21.3288C20.3944 21.1495 20.2661 20.857 20.0096 20.272L19.8054 19.8066M22 22L2 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/notification-box.svg b/@stellar/design-system/src/assets/icons/notification-box.svg
new file mode 100644
index 00000000..18c81a03
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/notification-box.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/notification-message.svg b/@stellar/design-system/src/assets/icons/notification-message.svg
new file mode 100644
index 00000000..36723ff3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/notification-message.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H15.2C16.8802 18 17.7202 18 18.362 17.673C18.9265 17.3854 19.3854 16.9265 19.673 16.362C20 15.7202 20 14.8802 20 13.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/notification-text.svg b/@stellar/design-system/src/assets/icons/notification-text.svg
new file mode 100644
index 00000000..1b5f2a23
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/notification-text.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M13 17H7M15 13H7M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/notifications.svg b/@stellar/design-system/src/assets/icons/notifications.svg
deleted file mode 100644
index aa6f8171..00000000
--- a/@stellar/design-system/src/assets/icons/notifications.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6759)"><path d="M5 19C4.71667 19 4.479 18.904 4.287 18.712C4.09567 18.5207 4 18.2833 4 18C4 17.7167 4.09567 17.4793 4.287 17.288C4.479 17.096 4.71667 17 5 17H6V10C6 8.61667 6.41667 7.38733 7.25 6.312C8.08333 5.23733 9.16667 4.53333 10.5 4.2V3.5C10.5 3.08333 10.646 2.72933 10.938 2.438C11.2293 2.146 11.5833 2 12 2C12.4167 2 12.7707 2.146 13.062 2.438C13.354 2.72933 13.5 3.08333 13.5 3.5V4.2C14.8333 4.53333 15.9167 5.23733 16.75 6.312C17.5833 7.38733 18 8.61667 18 10V17H19C19.2833 17 19.5207 17.096 19.712 17.288C19.904 17.4793 20 17.7167 20 18C20 18.2833 19.904 18.5207 19.712 18.712C19.5207 18.904 19.2833 19 19 19H5ZM12 22C11.45 22 10.9793 21.8043 10.588 21.413C10.196 21.021 10 20.55 10 20H14C14 20.55 13.8043 21.021 13.413 21.413C13.021 21.8043 12.55 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6759"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/octagon.svg b/@stellar/design-system/src/assets/icons/octagon.svg
new file mode 100644
index 00000000..c32c907b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.39137 2.46863C7.56432 2.29568 7.6508 2.2092 7.75172 2.14736C7.84119 2.09253 7.93873 2.05213 8.04077 2.02763C8.15586 2 8.27815 2 8.52274 2H15.4773C15.7218 2 15.8441 2 15.9592 2.02763C16.0613 2.05213 16.1588 2.09253 16.2483 2.14736C16.3492 2.2092 16.4357 2.29568 16.6086 2.46863L21.5314 7.39137C21.7043 7.56432 21.7908 7.6508 21.8526 7.75172C21.9075 7.84119 21.9479 7.93873 21.9724 8.04077C22 8.15586 22 8.27815 22 8.52274V15.4773C22 15.7218 22 15.8441 21.9724 15.9592C21.9479 16.0613 21.9075 16.1588 21.8526 16.2483C21.7908 16.3492 21.7043 16.4357 21.5314 16.6086L16.6086 21.5314C16.4357 21.7043 16.3492 21.7908 16.2483 21.8526C16.1588 21.9075 16.0613 21.9479 15.9592 21.9724C15.8441 22 15.7218 22 15.4773 22H8.52274C8.27815 22 8.15586 22 8.04077 21.9724C7.93873 21.9479 7.84119 21.9075 7.75172 21.8526C7.6508 21.7908 7.56432 21.7043 7.39137 21.5314L2.46863 16.6086C2.29568 16.4357 2.2092 16.3492 2.14736 16.2483C2.09253 16.1588 2.05213 16.0613 2.02763 15.9592C2 15.8441 2 15.7218 2 15.4773V8.52274C2 8.27815 2 8.15586 2.02763 8.04077C2.05213 7.93873 2.09253 7.84119 2.14736 7.75172C2.2092 7.6508 2.29568 7.56432 2.46863 7.39137L7.39137 2.46863Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package-check.svg b/@stellar/design-system/src/assets/icons/package-check.svg
new file mode 100644
index 00000000..9f4f97c7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M14 20.8889L12.777 21.5683C12.4934 21.7258 12.3516 21.8046 12.2015 21.8355C12.0685 21.8628 11.9315 21.8628 11.7986 21.8355C11.6484 21.8046 11.5066 21.7258 11.223 21.5683L3.82297 17.4572C3.52346 17.2908 3.37368 17.2076 3.26463 17.0892C3.16816 16.9845 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V7.94141C3 7.59877 3 7.42744 3.05048 7.27465C3.09515 7.13947 3.16816 7.01539 3.26463 6.9107C3.37368 6.79236 3.52345 6.70916 3.82297 6.54276L11.223 2.43165C11.5066 2.27409 11.6484 2.19531 11.7986 2.16442C11.9315 2.13709 12.0685 2.13709 12.2015 2.16442C12.3516 2.19531 12.4934 2.27409 12.777 2.43164L20.177 6.54276C20.4766 6.70916 20.6263 6.79236 20.7354 6.9107C20.8318 7.01539 20.9049 7.13947 20.9495 7.27464C21 7.42744 21 7.59876 21 7.94141L21 12.5M7.5 4.49996L16.5 9.49996M16 18L18 20L22 16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package-minus.svg b/@stellar/design-system/src/assets/icons/package-minus.svg
new file mode 100644
index 00000000..adb0f9a6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M14 20.8889L12.777 21.5683C12.4934 21.7258 12.3516 21.8046 12.2015 21.8355C12.0685 21.8628 11.9315 21.8628 11.7986 21.8355C11.6484 21.8046 11.5066 21.7258 11.223 21.5683L3.82297 17.4572C3.52346 17.2908 3.37368 17.2076 3.26463 17.0892C3.16816 16.9845 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V7.94141C3 7.59877 3 7.42744 3.05048 7.27465C3.09515 7.13947 3.16816 7.01539 3.26463 6.9107C3.37368 6.79236 3.52345 6.70916 3.82297 6.54276L11.223 2.43165C11.5066 2.27409 11.6484 2.19531 11.7986 2.16442C11.9315 2.13709 12.0685 2.13709 12.2015 2.16442C12.3516 2.19531 12.4934 2.27409 12.777 2.43164L20.177 6.54276C20.4766 6.70916 20.6263 6.79236 20.7354 6.9107C20.8318 7.01539 20.9049 7.13947 20.9495 7.27464C21 7.42744 21 7.59876 21 7.94141V13M7.5 4.49996L16.5 9.49996M16 18H22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package-plus.svg b/@stellar/design-system/src/assets/icons/package-plus.svg
new file mode 100644
index 00000000..265b232f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M14 20.8889L12.777 21.5683C12.4934 21.7258 12.3516 21.8046 12.2015 21.8355C12.0685 21.8628 11.9315 21.8628 11.7986 21.8355C11.6484 21.8046 11.5066 21.7258 11.223 21.5683L3.82297 17.4572C3.52346 17.2908 3.37368 17.2076 3.26463 17.0892C3.16816 16.9845 3.09515 16.8605 3.05048 16.7253C3 16.5725 3 16.4012 3 16.0585V7.94141C3 7.59877 3 7.42744 3.05048 7.27465C3.09515 7.13947 3.16816 7.01539 3.26463 6.9107C3.37368 6.79236 3.52345 6.70916 3.82297 6.54276L11.223 2.43165C11.5066 2.27409 11.6484 2.19531 11.7986 2.16442C11.9315 2.13709 12.0685 2.13709 12.2015 2.16442C12.3516 2.19531 12.4934 2.27409 12.777 2.43164L20.177 6.54276C20.4766 6.70916 20.6263 6.79236 20.7354 6.9107C20.8318 7.01539 20.9049 7.13947 20.9495 7.27464C21 7.42744 21 7.59876 21 7.94141L21 12.5M7.5 4.49996L16.5 9.49996M19 21V15M16 18H22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package-search.svg b/@stellar/design-system/src/assets/icons/package-search.svg
new file mode 100644
index 00000000..369b9172
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package-search.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M21 12V7.94141C21 7.59876 21 7.42744 20.9495 7.27464C20.9049 7.13947 20.8318 7.01539 20.7354 6.9107C20.6263 6.79236 20.4766 6.70916 20.177 6.54276L12.777 2.43164C12.4934 2.27409 12.3516 2.19531 12.2015 2.16442C12.0685 2.13709 11.9315 2.13709 11.7986 2.16442C11.6484 2.19531 11.5066 2.27409 11.223 2.43165L3.82297 6.54276C3.52345 6.70916 3.37368 6.79236 3.26463 6.9107C3.16816 7.01539 3.09515 7.13947 3.05048 7.27465C3 7.42744 3 7.59877 3 7.94141V16.0585C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9845 3.26463 17.0892C3.37368 17.2076 3.52346 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7258 11.6484 21.8046 11.7986 21.8355C11.9315 21.8628 12.0685 21.8628 12.2015 21.8355C12.3516 21.8046 12.4934 21.7258 12.777 21.5683L13 21.4444M7.5 4.49996L16.5 9.49996M22 21.5L21 20.5M22 18C22 19.6568 20.6569 21 19 21C17.3431 21 16 19.6568 16 18C16 16.3431 17.3431 15 19 15C20.6569 15 22 16.3431 22 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package-x.svg b/@stellar/design-system/src/assets/icons/package-x.svg
new file mode 100644
index 00000000..8a3d1c5b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M21 12.5L21 7.94141C21 7.59876 21 7.42744 20.9495 7.27464C20.9049 7.13947 20.8318 7.01539 20.7354 6.9107C20.6263 6.79236 20.4766 6.70916 20.177 6.54276L12.777 2.43164C12.4934 2.27409 12.3516 2.19531 12.2015 2.16442C12.0685 2.13709 11.9315 2.13709 11.7986 2.16442C11.6484 2.19531 11.5066 2.27409 11.223 2.43165L3.82297 6.54276C3.52345 6.70916 3.37368 6.79236 3.26463 6.9107C3.16816 7.01539 3.09515 7.13947 3.05048 7.27465C3 7.42744 3 7.59877 3 7.94141V16.0585C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9845 3.26463 17.0892C3.37368 17.2076 3.52346 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7258 11.6484 21.8046 11.7986 21.8355C11.9315 21.8628 12.0685 21.8628 12.2015 21.8355C12.3516 21.8046 12.4934 21.7258 12.777 21.5683L13 21.4444M7.5 4.49996L16.5 9.49996M16.5 16L21.5 21M21.5 16L16.5 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/package.svg b/@stellar/design-system/src/assets/icons/package.svg
new file mode 100644
index 00000000..97fb386e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/package.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.5 7.27771L12 11.9999M12 11.9999L3.49997 7.27771M12 11.9999L12 21.5M21 16.0585V7.94141C21 7.59876 21 7.42744 20.9495 7.27464C20.9049 7.13947 20.8318 7.01539 20.7354 6.9107C20.6263 6.79236 20.4766 6.70916 20.177 6.54276L12.777 2.43164C12.4934 2.27409 12.3516 2.19531 12.2015 2.16442C12.0685 2.13709 11.9315 2.13709 11.7986 2.16442C11.6484 2.19531 11.5066 2.27409 11.223 2.43165L3.82297 6.54276C3.52345 6.70916 3.37369 6.79236 3.26463 6.9107C3.16816 7.01539 3.09515 7.13947 3.05048 7.27465C3 7.42745 3 7.59877 3 7.94141V16.0585C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9845 3.26463 17.0892C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7258 11.6484 21.8046 11.7986 21.8355C11.9315 21.8628 12.0685 21.8628 12.2015 21.8355C12.3516 21.8046 12.4934 21.7258 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0892C20.8318 16.9845 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0585Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.5 9.5L7.5 4.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/paint-pour.svg b/@stellar/design-system/src/assets/icons/paint-pour.svg
new file mode 100644
index 00000000..f5515a74
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/paint-pour.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.9997 11L1.9997 11M9.9997 4L7.9997 2M13.9997 22L1.9997 22M21.9997 16C21.9997 17.1046 21.1043 18 19.9997 18C18.8951 18 17.9997 17.1046 17.9997 16C17.9997 14.8954 19.9997 13 19.9997 13C19.9997 13 21.9997 14.8954 21.9997 16ZM8.9997 3L15.8683 9.86863C16.2643 10.2646 16.4624 10.4627 16.5365 10.691C16.6018 10.8918 16.6018 11.1082 16.5365 11.309C16.4624 11.5373 16.2643 11.7354 15.8683 12.1314L11.2624 16.7373C10.4704 17.5293 10.0744 17.9253 9.61773 18.0737C9.21605 18.2042 8.78335 18.2042 8.38166 18.0737C7.92501 17.9253 7.52899 17.5293 6.73696 16.7373L3.26244 13.2627C2.4704 12.4707 2.07439 12.0747 1.92601 11.618C1.7955 11.2163 1.7955 10.7837 1.92601 10.382C2.07439 9.92531 2.47041 9.52929 3.26244 8.73726L8.9997 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/paint.svg b/@stellar/design-system/src/assets/icons/paint.svg
new file mode 100644
index 00000000..fb8c0b3f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/paint.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.99955 13H19.9995M11.9995 3.5L10.4995 2M11.4995 3L20.3682 11.8686C20.7642 12.2646 20.9622 12.4627 21.0364 12.691C21.1016 12.8918 21.1016 13.1082 21.0364 13.309C20.9622 13.5373 20.7642 13.7354 20.3682 14.1314L14.8937 19.6059C13.7056 20.7939 13.1116 21.388 12.4266 21.6105C11.8241 21.8063 11.175 21.8063 10.5725 21.6105C9.88751 21.388 9.29349 20.7939 8.10543 19.6059L4.89366 16.3941C3.70561 15.2061 3.11158 14.612 2.88902 13.9271C2.69324 13.3245 2.69324 12.6755 2.88902 12.0729C3.11158 11.388 3.70561 10.7939 4.89366 9.60589L11.4995 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/palette.svg b/@stellar/design-system/src/assets/icons/palette.svg
new file mode 100644
index 00000000..5000b47c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/palette.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12C2 17.5228 6.47715 22 12 22C13.6569 22 15 20.6569 15 19V18.5C15 18.0356 15 17.8034 15.0257 17.6084C15.2029 16.2622 16.2622 15.2029 17.6084 15.0257C17.8034 15 18.0356 15 18.5 15H19C20.6569 15 22 13.6569 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 13C7.55228 13 8 12.5523 8 12C8 11.4477 7.55228 11 7 11C6.44772 11 6 11.4477 6 12C6 12.5523 6.44772 13 7 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 9C16.5523 9 17 8.55228 17 8C17 7.44772 16.5523 7 16 7C15.4477 7 15 7.44772 15 8C15 8.55228 15.4477 9 16 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10 8C10.5523 8 11 7.55228 11 7C11 6.44772 10.5523 6 10 6C9.44772 6 9 6.44772 9 7C9 7.55228 9.44772 8 10 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/paperclip.svg b/@stellar/design-system/src/assets/icons/paperclip.svg
new file mode 100644
index 00000000..9a2ab571
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/paperclip.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.1525 10.8995L12.1369 19.9151C10.0866 21.9653 6.76253 21.9653 4.71228 19.9151C2.66203 17.8648 2.66203 14.5407 4.71228 12.4904L13.7279 3.47483C15.0947 2.108 17.3108 2.108 18.6776 3.47483C20.0445 4.84167 20.0445 7.05775 18.6776 8.42458L10.0156 17.0866C9.33216 17.7701 8.22412 17.7701 7.54071 17.0866C6.85729 16.4032 6.85729 15.2952 7.54071 14.6118L15.1421 7.01037" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/paragraph-spacing.svg b/@stellar/design-system/src/assets/icons/paragraph-spacing.svg
new file mode 100644
index 00000000..e4b638a8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/paragraph-spacing.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 10H13M21 6H13M21 14H13M21 18H13M6 20L6 4M6 20L3 17M6 20L9 17M6 4L3 7M6 4L9 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/paragraph-wrap.svg b/@stellar/design-system/src/assets/icons/paragraph-wrap.svg
new file mode 100644
index 00000000..12363115
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/paragraph-wrap.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 6H21M3 12H18C18.7956 12 19.5587 12.3161 20.1213 12.8787C20.6839 13.4413 21 14.2044 21 15C21 15.7956 20.6839 16.5587 20.1213 17.1213C19.5587 17.6839 18.7956 18 18 18H14M14 18L16 16M14 18L16 20M3 18H10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/passcode-lock.svg b/@stellar/design-system/src/assets/icons/passcode-lock.svg
new file mode 100644
index 00000000..d74a4cff
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/passcode-lock.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 11V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.71569 21.2843 5.40973 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.71569 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V11.8C2 12.9201 2 13.4802 2.21799 13.908C2.40973 14.2843 2.71569 14.5903 3.09202 14.782C3.51984 15 4.0799 15 5.2 15H11M12 10H12.005M17 10H17.005M7 10H7.005M19.25 17V15.25C19.25 14.2835 18.4665 13.5 17.5 13.5C16.5335 13.5 15.75 14.2835 15.75 15.25V17M12.25 10C12.25 10.1381 12.1381 10.25 12 10.25C11.8619 10.25 11.75 10.1381 11.75 10C11.75 9.86193 11.8619 9.75 12 9.75C12.1381 9.75 12.25 9.86193 12.25 10ZM17.25 10C17.25 10.1381 17.1381 10.25 17 10.25C16.8619 10.25 16.75 10.1381 16.75 10C16.75 9.86193 16.8619 9.75 17 9.75C17.1381 9.75 17.25 9.86193 17.25 10ZM7.25 10C7.25 10.1381 7.13807 10.25 7 10.25C6.86193 10.25 6.75 10.1381 6.75 10C6.75 9.86193 6.86193 9.75 7 9.75C7.13807 9.75 7.25 9.86193 7.25 10ZM15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H15.6C15.0399 17 14.7599 17 14.546 17.109C14.3578 17.2049 14.2049 17.3578 14.109 17.546C14 17.7599 14 18.0399 14 18.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/passcode.svg b/@stellar/design-system/src/assets/icons/passcode.svg
new file mode 100644
index 00000000..752a8d70
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/passcode.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12H12.005M17 12H17.005M7 12H7.005M5.2 7H18.8C19.9201 7 20.4802 7 20.908 7.21799C21.2843 7.40973 21.5903 7.71569 21.782 8.09202C22 8.51984 22 9.0799 22 10.2V13.8C22 14.9201 22 15.4802 21.782 15.908C21.5903 16.2843 21.2843 16.5903 20.908 16.782C20.4802 17 19.9201 17 18.8 17H5.2C4.0799 17 3.51984 17 3.09202 16.782C2.71569 16.5903 2.40973 16.2843 2.21799 15.908C2 15.4802 2 14.9201 2 13.8V10.2C2 9.0799 2 8.51984 2.21799 8.09202C2.40973 7.71569 2.71569 7.40973 3.09202 7.21799C3.51984 7 4.0799 7 5.2 7ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25C11.8619 12.25 11.75 12.1381 11.75 12C11.75 11.8619 11.8619 11.75 12 11.75C12.1381 11.75 12.25 11.8619 12.25 12ZM17.25 12C17.25 12.1381 17.1381 12.25 17 12.25C16.8619 12.25 16.75 12.1381 16.75 12C16.75 11.8619 16.8619 11.75 17 11.75C17.1381 11.75 17.25 11.8619 17.25 12ZM7.25 12C7.25 12.1381 7.13807 12.25 7 12.25C6.86193 12.25 6.75 12.1381 6.75 12C6.75 11.8619 6.86193 11.75 7 11.75C7.13807 11.75 7.25 11.8619 7.25 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/passport.svg b/@stellar/design-system/src/assets/icons/passport.svg
new file mode 100644
index 00000000..b5213a1c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/passport.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 16H14M8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22ZM15 9C15 10.6569 13.6569 12 12 12C10.3431 12 9 10.6569 9 9C9 7.34315 10.3431 6 12 6C13.6569 6 15 7.34315 15 9Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/password.svg b/@stellar/design-system/src/assets/icons/password.svg
deleted file mode 100644
index 413e2325..00000000
--- a/@stellar/design-system/src/assets/icons/password.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6756)"><path d="M3 19C2.71667 19 2.47933 18.904 2.288 18.712C2.096 18.5207 2 18.2834 2 18C2 17.7167 2.096 17.4794 2.288 17.288C2.47933 17.096 2.71667 17 3 17H21C21.2833 17 21.5207 17.096 21.712 17.288C21.904 17.4794 22 17.7167 22 18C22 18.2834 21.904 18.5207 21.712 18.712C21.5207 18.904 21.2833 19 21 19H3ZM2.5 12.575C2.31667 12.475 2.2 12.325 2.15 12.125C2.1 11.925 2.125 11.7334 2.225 11.55L2.7 10.7H1.75C1.53333 10.7 1.354 10.629 1.212 10.487C1.07067 10.3457 1 10.1667 1 9.95002C1 9.73336 1.07067 9.55402 1.212 9.41202C1.354 9.27069 1.53333 9.20002 1.75 9.20002H2.7L2.225 8.40002C2.125 8.21669 2.1 8.02502 2.15 7.82502C2.2 7.62502 2.31667 7.47502 2.5 7.37502C2.68333 7.27502 2.875 7.25002 3.075 7.30002C3.275 7.35002 3.425 7.46669 3.525 7.65002L4 8.45002L4.475 7.65002C4.575 7.46669 4.725 7.35002 4.925 7.30002C5.125 7.25002 5.31667 7.27502 5.5 7.37502C5.68333 7.47502 5.8 7.62502 5.85 7.82502C5.9 8.02502 5.875 8.21669 5.775 8.40002L5.3 9.20002H6.25C6.46667 9.20002 6.64567 9.27069 6.787 9.41202C6.929 9.55402 7 9.73336 7 9.95002C7 10.1667 6.929 10.3457 6.787 10.487C6.64567 10.629 6.46667 10.7 6.25 10.7H5.3L5.775 11.55C5.875 11.7334 5.9 11.925 5.85 12.125C5.8 12.325 5.68333 12.475 5.5 12.575C5.31667 12.675 5.125 12.7 4.925 12.65C4.725 12.6 4.575 12.4834 4.475 12.3L4 11.45L3.525 12.3C3.425 12.4834 3.275 12.6 3.075 12.65C2.875 12.7 2.68333 12.675 2.5 12.575ZM10.5 12.575C10.3167 12.475 10.2 12.325 10.15 12.125C10.1 11.925 10.125 11.7334 10.225 11.55L10.7 10.7H9.75C9.53333 10.7 9.35433 10.629 9.213 10.487C9.071 10.3457 9 10.1667 9 9.95002C9 9.73336 9.071 9.55402 9.213 9.41202C9.35433 9.27069 9.53333 9.20002 9.75 9.20002H10.7L10.225 8.40002C10.125 8.21669 10.1 8.02502 10.15 7.82502C10.2 7.62502 10.3167 7.47502 10.5 7.37502C10.6833 7.27502 10.875 7.25002 11.075 7.30002C11.275 7.35002 11.425 7.46669 11.525 7.65002L12 8.45002L12.475 7.65002C12.575 7.46669 12.725 7.35002 12.925 7.30002C13.125 7.25002 13.3167 7.27502 13.5 7.37502C13.6833 7.47502 13.8 7.62502 13.85 7.82502C13.9 8.02502 13.875 8.21669 13.775 8.40002L13.3 9.20002H14.25C14.4667 9.20002 14.646 9.27069 14.788 9.41202C14.9293 9.55402 15 9.73336 15 9.95002C15 10.1667 14.9293 10.3457 14.788 10.487C14.646 10.629 14.4667 10.7 14.25 10.7H13.3L13.775 11.55C13.875 11.7334 13.9 11.925 13.85 12.125C13.8 12.325 13.6833 12.475 13.5 12.575C13.3167 12.675 13.125 12.7 12.925 12.65C12.725 12.6 12.575 12.4834 12.475 12.3L12 11.45L11.525 12.3C11.425 12.4834 11.275 12.6 11.075 12.65C10.875 12.7 10.6833 12.675 10.5 12.575ZM18.5 12.575C18.3167 12.475 18.2 12.325 18.15 12.125C18.1 11.925 18.125 11.7334 18.225 11.55L18.7 10.7H17.75C17.5333 10.7 17.354 10.629 17.212 10.487C17.0707 10.3457 17 10.1667 17 9.95002C17 9.73336 17.0707 9.55402 17.212 9.41202C17.354 9.27069 17.5333 9.20002 17.75 9.20002H18.7L18.225 8.40002C18.125 8.21669 18.1 8.02502 18.15 7.82502C18.2 7.62502 18.3167 7.47502 18.5 7.37502C18.6833 7.27502 18.875 7.25002 19.075 7.30002C19.275 7.35002 19.425 7.46669 19.525 7.65002L20 8.45002L20.475 7.65002C20.575 7.46669 20.725 7.35002 20.925 7.30002C21.125 7.25002 21.3167 7.27502 21.5 7.37502C21.6833 7.47502 21.8 7.62502 21.85 7.82502C21.9 8.02502 21.875 8.21669 21.775 8.40002L21.3 9.20002H22.25C22.4667 9.20002 22.646 9.27069 22.788 9.41202C22.9293 9.55402 23 9.73336 23 9.95002C23 10.1667 22.9293 10.3457 22.788 10.487C22.646 10.629 22.4667 10.7 22.25 10.7H21.3L21.775 11.55C21.875 11.7334 21.9 11.925 21.85 12.125C21.8 12.325 21.6833 12.475 21.5 12.575C21.3167 12.675 21.125 12.7 20.925 12.65C20.725 12.6 20.575 12.4834 20.475 12.3L20 11.45L19.525 12.3C19.425 12.4834 19.275 12.6 19.075 12.65C18.875 12.7 18.6833 12.675 18.5 12.575Z"/></g><defs><clipPath id="clip0_1113_6756"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pause-circle.svg b/@stellar/design-system/src/assets/icons/pause-circle.svg
new file mode 100644
index 00000000..93fa8515
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pause-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pause-square.svg b/@stellar/design-system/src/assets/icons/pause-square.svg
new file mode 100644
index 00000000..d7aeb406
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pause-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 15V9M14.5 15V9M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/payments.svg b/@stellar/design-system/src/assets/icons/payments.svg
deleted file mode 100644
index da28a1e6..00000000
--- a/@stellar/design-system/src/assets/icons/payments.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6753)"><path d="M14 13C14.8333 13 15.5417 12.7083 16.125 12.125C16.7083 11.5417 17 10.8333 17 10C17 9.16667 16.7083 8.45833 16.125 7.875C15.5417 7.29167 14.8333 7 14 7C13.1667 7 12.4583 7.29167 11.875 7.875C11.2917 8.45833 11 9.16667 11 10C11 10.8333 11.2917 11.5417 11.875 12.125C12.4583 12.7083 13.1667 13 14 13ZM7 16C6.45 16 5.97933 15.804 5.588 15.412C5.196 15.0207 5 14.55 5 14V6C5 5.45 5.196 4.97933 5.588 4.588C5.97933 4.196 6.45 4 7 4H21C21.55 4 22.021 4.196 22.413 4.588C22.8043 4.97933 23 5.45 23 6V14C23 14.55 22.8043 15.0207 22.413 15.412C22.021 15.804 21.55 16 21 16H7ZM3 20C2.45 20 1.97933 19.8043 1.588 19.413C1.196 19.021 1 18.55 1 18V8C1 7.71667 1.096 7.479 1.288 7.287C1.47933 7.09567 1.71667 7 2 7C2.28333 7 2.521 7.09567 2.713 7.287C2.90433 7.479 3 7.71667 3 8V18H19C19.2833 18 19.5207 18.096 19.712 18.288C19.904 18.4793 20 18.7167 20 19C20 19.2833 19.904 19.5207 19.712 19.712C19.5207 19.904 19.2833 20 19 20H3ZM7 8C7.55 8 8.02067 7.804 8.412 7.412C8.804 7.02067 9 6.55 9 6H7V8ZM21 8V6H19C19 6.55 19.1957 7.02067 19.587 7.412C19.979 7.804 20.45 8 21 8ZM7 14H9C9 13.45 8.804 12.979 8.412 12.587C8.02067 12.1957 7.55 12 7 12V14ZM19 14H21V12C20.45 12 19.979 12.1957 19.587 12.587C19.1957 12.979 19 13.45 19 14Z"/></g><defs><clipPath id="clip0_1113_6753"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pen-tool-01.svg b/@stellar/design-system/src/assets/icons/pen-tool-01.svg
new file mode 100644
index 00000000..6c578a37
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pen-tool-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 13L16.7004 6.50182C16.6278 6.13883 16.5915 5.95733 16.5032 5.80953C16.4252 5.67886 16.3183 5.56773 16.1908 5.4846C16.0466 5.39057 15.8667 5.34714 15.5069 5.26028L2 2M2 2L5.26028 15.5069C5.34714 15.8667 5.39057 16.0466 5.4846 16.1908C5.56773 16.3183 5.67886 16.4252 5.80953 16.5032C5.95733 16.5915 6.13883 16.6278 6.50182 16.7004L13 18M2 2L9.586 9.586M16.1314 20.8686L20.8686 16.1314C21.2646 15.7354 21.4627 15.5373 21.5368 15.309C21.6021 15.1082 21.6021 14.8918 21.5368 14.691C21.4627 14.4627 21.2646 14.2646 20.8686 13.8686L20.1314 13.1314C19.7354 12.7354 19.5373 12.5373 19.309 12.4632C19.1082 12.3979 18.8918 12.3979 18.691 12.4632C18.4627 12.5373 18.2646 12.7354 17.8686 13.1314L13.1314 17.8686C12.7354 18.2646 12.5373 18.4627 12.4632 18.691C12.3979 18.8918 12.3979 19.1082 12.4632 19.309C12.5373 19.5373 12.7354 19.7354 13.1314 20.1314L13.8686 20.8686C14.2646 21.2646 14.4627 21.4627 14.691 21.5368C14.8918 21.6021 15.1082 21.6021 15.309 21.5368C15.5373 21.4627 15.7354 21.2646 16.1314 20.8686ZM13 11C13 12.1046 12.1046 13 11 13C9.89543 13 9 12.1046 9 11C9 9.89543 9.89543 9 11 9C12.1046 9 13 9.89543 13 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pen-tool-02.svg b/@stellar/design-system/src/assets/icons/pen-tool-02.svg
new file mode 100644
index 00000000..2459e124
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pen-tool-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 5.99997L6.50182 7.29961C6.13883 7.37221 5.95733 7.40851 5.80952 7.49677C5.67886 7.57481 5.56772 7.68164 5.4846 7.80913C5.39057 7.95334 5.34714 8.13326 5.26028 8.49311L2 22M2 22L15.5069 18.7397C15.8667 18.6528 16.0466 18.6094 16.1908 18.5154C16.3183 18.4322 16.4252 18.3211 16.5032 18.1904C16.5915 18.0426 16.6278 17.8611 16.7004 17.4981L18 11M2 22L9.586 14.414M20.8686 7.8686L16.1314 3.13134C15.7354 2.73532 15.5373 2.53732 15.309 2.46313C15.1082 2.39787 14.8918 2.39787 14.691 2.46313C14.4627 2.53732 14.2646 2.73533 13.8686 3.13134L13.1314 3.8686C12.7354 4.26462 12.5373 4.46263 12.4632 4.69095C12.3979 4.8918 12.3979 5.10814 12.4632 5.30899C12.5373 5.53732 12.7354 5.73532 13.1314 6.13134L17.8686 10.8686C18.2646 11.2646 18.4627 11.4626 18.691 11.5368C18.8918 11.6021 19.1082 11.6021 19.309 11.5368C19.5373 11.4626 19.7354 11.2646 20.1314 10.8686L20.8686 10.1313C21.2646 9.73532 21.4627 9.53732 21.5368 9.30899C21.6021 9.10814 21.6021 8.8918 21.5368 8.69095C21.4627 8.46263 21.2646 8.26462 20.8686 7.8686ZM11 11C12.1046 11 13 11.8954 13 13C13 14.1045 12.1046 15 11 15C9.89543 15 9 14.1045 9 13C9 11.8954 9.89543 11 11 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pen-tool-minus.svg b/@stellar/design-system/src/assets/icons/pen-tool-minus.svg
new file mode 100644
index 00000000..f71a172f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pen-tool-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 4.99997H8M15 6.99997L8.83447 8.76155C8.52956 8.84867 8.37711 8.89223 8.25117 8.97411C8.13969 9.04659 8.04379 9.14058 7.96907 9.25057C7.88466 9.37483 7.83803 9.52637 7.74477 9.82945L4 22M4 22L16.1705 18.2552C16.4736 18.1619 16.6251 18.1153 16.7494 18.0309C16.8594 17.9562 16.9534 17.8603 17.0259 17.7488C17.1077 17.6229 17.1513 17.4704 17.2384 17.1655L19 11M4 22L10.586 15.4139M21.8686 7.8686L18.1314 4.13134C17.7354 3.73532 17.5373 3.53732 17.309 3.46313C17.1082 3.39787 16.8918 3.39787 16.691 3.46313C16.4627 3.53732 16.2646 3.73533 15.8686 4.13134L15.1314 4.8686C14.7354 5.26462 14.5373 5.46263 14.4632 5.69095C14.3979 5.8918 14.3979 6.10814 14.4632 6.30899C14.5373 6.53732 14.7354 6.73533 15.1314 7.13134L18.8686 10.8686C19.2646 11.2646 19.4627 11.4626 19.691 11.5368C19.8918 11.6021 20.1082 11.6021 20.309 11.5368C20.5373 11.4626 20.7354 11.2646 21.1314 10.8686L21.8686 10.1313C22.2646 9.73532 22.4627 9.53732 22.5368 9.30899C22.6021 9.10814 22.6021 8.8918 22.5368 8.69095C22.4627 8.46263 22.2646 8.26462 21.8686 7.8686ZM12 12C13.1046 12 14 12.8954 14 14C14 15.1045 13.1046 16 12 16C10.8954 16 10 15.1045 10 14C10 12.8954 10.8954 12 12 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pen-tool-plus.svg b/@stellar/design-system/src/assets/icons/pen-tool-plus.svg
new file mode 100644
index 00000000..8b8c9db5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pen-tool-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 7L8.83447 8.76158C8.52956 8.8487 8.37711 8.89226 8.25117 8.97414C8.13969 9.04662 8.04379 9.1406 7.96907 9.2506C7.88466 9.37485 7.83803 9.5264 7.74477 9.82948L4 22M4 22L16.1705 18.2552C16.4736 18.162 16.6251 18.1153 16.7494 18.0309C16.8594 17.9562 16.9534 17.8603 17.0259 17.7488C17.1077 17.6229 17.1513 17.4704 17.2384 17.1655L19 11M4 22L10.586 15.4139M5 8V2M2 5H8M21.8686 7.86863L18.1314 4.13137C17.7354 3.73535 17.5373 3.53735 17.309 3.46316C17.1082 3.3979 16.8918 3.3979 16.691 3.46316C16.4627 3.53735 16.2646 3.73535 15.8686 4.13137L15.1314 4.86863C14.7354 5.26465 14.5373 5.46265 14.4632 5.69098C14.3979 5.89183 14.3979 6.10817 14.4632 6.30902C14.5373 6.53735 14.7354 6.73535 15.1314 7.13137L18.8686 10.8686C19.2646 11.2646 19.4627 11.4627 19.691 11.5368C19.8918 11.6021 20.1082 11.6021 20.309 11.5368C20.5373 11.4627 20.7354 11.2646 21.1314 10.8686L21.8686 10.1314C22.2646 9.73535 22.4627 9.53735 22.5368 9.30902C22.6021 9.10817 22.6021 8.89183 22.5368 8.69098C22.4627 8.46265 22.2646 8.26465 21.8686 7.86863ZM12 12C13.1046 12 14 12.8954 14 14C14 15.1046 13.1046 16 12 16C10.8954 16 10 15.1046 10 14C10 12.8954 10.8954 12 12 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pencil-01.svg b/@stellar/design-system/src/assets/icons/pencil-01.svg
new file mode 100644
index 00000000..17a7f06c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pencil-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.5 21.5001L8.04927 19.3657C8.40421 19.2292 8.58168 19.161 8.74772 19.0718C8.8952 18.9927 9.0358 18.9013 9.16804 18.7987C9.31692 18.6831 9.45137 18.5487 9.72028 18.2798L21 7.00006C22.1046 5.89549 22.1046 4.10463 21 3.00006C19.8955 1.89549 18.1046 1.89549 17 3.00006L5.72028 14.2798C5.45138 14.5487 5.31692 14.6831 5.20139 14.832C5.09877 14.9643 5.0074 15.1049 4.92823 15.2523C4.83911 15.4184 4.77085 15.5959 4.63433 15.9508L2.5 21.5001ZM2.5 21.5001L4.55812 16.149C4.7054 15.7661 4.77903 15.5746 4.90534 15.4869C5.01572 15.4103 5.1523 15.3813 5.2843 15.4065C5.43533 15.4354 5.58038 15.5804 5.87048 15.8705L8.12957 18.1296C8.41967 18.4197 8.56472 18.5648 8.59356 18.7158C8.61877 18.8478 8.58979 18.9844 8.51314 19.0947C8.42545 19.2211 8.23399 19.2947 7.85107 19.442L2.5 21.5001Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pencil-02.svg b/@stellar/design-system/src/assets/icons/pencil-02.svg
new file mode 100644
index 00000000..f04d78ff
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pencil-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 2L22 6M2 22L3.2764 17.3199C3.35968 17.0145 3.40131 16.8619 3.46523 16.7195C3.52199 16.5931 3.59172 16.4729 3.67332 16.3609C3.76521 16.2348 3.87711 16.1229 4.1009 15.8991L14.4343 5.56569C14.6323 5.36768 14.7313 5.26867 14.8455 5.23158C14.9459 5.19895 15.0541 5.19895 15.1545 5.23158C15.2687 5.26867 15.3677 5.36768 15.5657 5.56569L18.4343 8.43431C18.6323 8.63232 18.7313 8.73133 18.7684 8.84549C18.8011 8.94591 18.8011 9.05409 18.7684 9.15451C18.7313 9.26867 18.6323 9.36768 18.4343 9.56569L8.1009 19.8991C7.87711 20.1229 7.76521 20.2348 7.63908 20.3267C7.52709 20.4083 7.40692 20.478 7.28052 20.5348C7.13815 20.5987 6.98548 20.6403 6.68014 20.7236L2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pencil-line.svg b/@stellar/design-system/src/assets/icons/pencil-line.svg
new file mode 100644
index 00000000..d8fbc737
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pencil-line.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21.0001H13M2.5 21.5001L8.04927 19.3657C8.40421 19.2292 8.58168 19.161 8.74772 19.0718C8.8952 18.9927 9.0358 18.9013 9.16804 18.7987C9.31692 18.6831 9.45137 18.5487 9.72028 18.2798L21 7.00006C22.1046 5.89549 22.1046 4.10463 21 3.00006C19.8955 1.89549 18.1046 1.89549 17 3.00006L5.72028 14.2798C5.45138 14.5487 5.31692 14.6831 5.20139 14.832C5.09877 14.9643 5.0074 15.1049 4.92823 15.2523C4.83911 15.4184 4.77085 15.5959 4.63433 15.9508L2.5 21.5001ZM2.5 21.5001L4.55812 16.149C4.7054 15.7661 4.77903 15.5746 4.90534 15.4869C5.01572 15.4103 5.1523 15.3813 5.2843 15.4065C5.43533 15.4354 5.58038 15.5804 5.87048 15.8705L8.12957 18.1296C8.41967 18.4197 8.56472 18.5648 8.59356 18.7158C8.61877 18.8478 8.58979 18.9844 8.51314 19.0947C8.42545 19.2211 8.23399 19.2947 7.85107 19.442L2.5 21.5001Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pentagon.svg b/@stellar/design-system/src/assets/icons/pentagon.svg
new file mode 100644
index 00000000..56478098
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pentagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.0605 2.93203C11.3983 2.68689 11.5672 2.56432 11.7518 2.51696C11.9148 2.47514 12.0858 2.47514 12.2488 2.51696C12.4334 2.56432 12.6023 2.68689 12.9401 2.93203L21.0586 8.82396C21.397 9.06956 21.5663 9.19235 21.6686 9.3535C21.7589 9.49579 21.8119 9.65862 21.8224 9.82684C21.8344 10.0174 21.7697 10.2162 21.6404 10.6138L18.5401 20.1449C18.4109 20.5421 18.3463 20.7407 18.2247 20.8876C18.1173 21.0173 17.979 21.1178 17.8224 21.1798C17.6451 21.25 17.4362 21.25 17.0186 21.25H6.98203C6.56437 21.25 6.35554 21.25 6.17822 21.1798C6.02164 21.1178 5.88325 21.0173 5.77589 20.8876C5.65429 20.7407 5.58969 20.5421 5.4605 20.1449L2.36021 10.6138C2.23086 10.2162 2.16619 10.0174 2.17817 9.82684C2.18874 9.65862 2.24166 9.49579 2.33202 9.3535C2.43434 9.19235 2.60355 9.06956 2.94196 8.82396L11.0605 2.93203Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/percent-01.svg b/@stellar/design-system/src/assets/icons/percent-01.svg
new file mode 100644
index 00000000..8bbe1cd9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/percent-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 5L5 19M7.5 6.5C7.5 7.05228 7.05228 7.5 6.5 7.5C5.94772 7.5 5.5 7.05228 5.5 6.5C5.5 5.94772 5.94772 5.5 6.5 5.5C7.05228 5.5 7.5 5.94772 7.5 6.5ZM18.5 17.5C18.5 18.0523 18.0523 18.5 17.5 18.5C16.9477 18.5 16.5 18.0523 16.5 17.5C16.5 16.9477 16.9477 16.5 17.5 16.5C18.0523 16.5 18.5 16.9477 18.5 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/percent-02.svg b/@stellar/design-system/src/assets/icons/percent-02.svg
new file mode 100644
index 00000000..1479104b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/percent-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 5L5 19M9 7C9 8.10457 8.10457 9 7 9C5.89543 9 5 8.10457 5 7C5 5.89543 5.89543 5 7 5C8.10457 5 9 5.89543 9 7ZM19 17C19 18.1046 18.1046 19 17 19C15.8954 19 15 18.1046 15 17C15 15.8954 15.8954 15 17 15C18.1046 15 19 15.8954 19 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/percent-03.svg b/@stellar/design-system/src/assets/icons/percent-03.svg
new file mode 100644
index 00000000..d5aebd05
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/percent-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9H9.01M15 15H15.01M16 8L8 16M9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/person-add.svg b/@stellar/design-system/src/assets/icons/person-add.svg
deleted file mode 100644
index 07cc1f90..00000000
--- a/@stellar/design-system/src/assets/icons/person-add.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M19 14C18.7167 14 18.4793 13.904 18.288 13.712C18.096 13.5207 18 13.2833 18 13V11H16C15.7167 11 15.4793 10.904 15.288 10.712C15.096 10.5207 15 10.2833 15 10C15 9.71667 15.096 9.479 15.288 9.287C15.4793 9.09567 15.7167 9 16 9H18V7C18 6.71667 18.096 6.479 18.288 6.287C18.4793 6.09567 18.7167 6 19 6C19.2833 6 19.5207 6.09567 19.712 6.287C19.904 6.479 20 6.71667 20 7V9H22C22.2833 9 22.5207 9.09567 22.712 9.287C22.904 9.479 23 9.71667 23 10C23 10.2833 22.904 10.5207 22.712 10.712C22.5207 10.904 22.2833 11 22 11H20V13C20 13.2833 19.904 13.5207 19.712 13.712C19.5207 13.904 19.2833 14 19 14ZM9 12C7.9 12 6.95833 11.6083 6.175 10.825C5.39167 10.0417 5 9.1 5 8C5 6.9 5.39167 5.95833 6.175 5.175C6.95833 4.39167 7.9 4 9 4C10.1 4 11.0417 4.39167 11.825 5.175C12.6083 5.95833 13 6.9 13 8C13 9.1 12.6083 10.0417 11.825 10.825C11.0417 11.6083 10.1 12 9 12ZM2 20C1.71667 20 1.47933 19.904 1.288 19.712C1.096 19.5207 1 19.2833 1 19V17.2C1 16.6333 1.146 16.1123 1.438 15.637C1.72933 15.1623 2.11667 14.8 2.6 14.55C3.63333 14.0333 4.68333 13.6457 5.75 13.387C6.81667 13.129 7.9 13 9 13C10.1 13 11.1833 13.129 12.25 13.387C13.3167 13.6457 14.3667 14.0333 15.4 14.55C15.8833 14.8 16.2707 15.1623 16.562 15.637C16.854 16.1123 17 16.6333 17 17.2V19C17 19.2833 16.904 19.5207 16.712 19.712C16.5207 19.904 16.2833 20 16 20H2Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/perspective-01.svg b/@stellar/design-system/src/assets/icons/perspective-01.svg
new file mode 100644
index 00000000..f9f6e859
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/perspective-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 9V15M5 7V17M17 6.71429L7 5.28571M17 17.2857L7 18.7143M4.6 7H5.4C5.96005 7 6.24008 7 6.45399 6.89101C6.64215 6.79513 6.79513 6.64215 6.89101 6.45399C7 6.24008 7 5.96005 7 5.4V4.6C7 4.03995 7 3.75992 6.89101 3.54601C6.79513 3.35785 6.64215 3.20487 6.45399 3.10899C6.24008 3 5.96005 3 5.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V5.4C3 5.96005 3 6.24008 3.10899 6.45399C3.20487 6.64215 3.35785 6.79513 3.54601 6.89101C3.75992 7 4.03995 7 4.6 7ZM4.6 21H5.4C5.96005 21 6.24008 21 6.45399 20.891C6.64215 20.7951 6.79513 20.6422 6.89101 20.454C7 20.2401 7 19.9601 7 19.4V18.6C7 18.0399 7 17.7599 6.89101 17.546C6.79513 17.3578 6.64215 17.2049 6.45399 17.109C6.24008 17 5.96005 17 5.4 17H4.6C4.03995 17 3.75992 17 3.54601 17.109C3.35785 17.2049 3.20487 17.3578 3.10899 17.546C3 17.7599 3 18.0399 3 18.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21ZM18.6 9H19.4C19.9601 9 20.2401 9 20.454 8.89101C20.6422 8.79513 20.7951 8.64215 20.891 8.45399C21 8.24008 21 7.96005 21 7.4V6.6C21 6.03995 21 5.75992 20.891 5.54601C20.7951 5.35785 20.6422 5.20487 20.454 5.10899C20.2401 5 19.9601 5 19.4 5H18.6C18.0399 5 17.7599 5 17.546 5.10899C17.3578 5.20487 17.2049 5.35785 17.109 5.54601C17 5.75992 17 6.03995 17 6.6V7.4C17 7.96005 17 8.24008 17.109 8.45399C17.2049 8.64215 17.3578 8.79513 17.546 8.89101C17.7599 9 18.0399 9 18.6 9ZM18.6 19H19.4C19.9601 19 20.2401 19 20.454 18.891C20.6422 18.7951 20.7951 18.6422 20.891 18.454C21 18.2401 21 17.9601 21 17.4V16.6C21 16.0399 21 15.7599 20.891 15.546C20.7951 15.3578 20.6422 15.2049 20.454 15.109C20.2401 15 19.9601 15 19.4 15H18.6C18.0399 15 17.7599 15 17.546 15.109C17.3578 15.2049 17.2049 15.3578 17.109 15.546C17 15.7599 17 16.0399 17 16.6V17.4C17 17.9601 17 18.2401 17.109 18.454C17.2049 18.6422 17.3578 18.7951 17.546 18.891C17.7599 19 18.0399 19 18.6 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/perspective-02.svg b/@stellar/design-system/src/assets/icons/perspective-02.svg
new file mode 100644
index 00000000..95c1111d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/perspective-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4.99994L16 18.9999M10 3.99995L10 19.9999M3 11.9999H21M3 5.98912L3 18.0108C3 19.3748 3 20.0568 3.28134 20.5296C3.52803 20.9441 3.9162 21.2554 4.37434 21.4063C4.89685 21.5784 5.56262 21.4305 6.89418 21.1346L18.4942 18.5568C19.3883 18.3581 19.8354 18.2588 20.1691 18.0183C20.4634 17.8063 20.6945 17.5182 20.8377 17.1848C21 16.8069 21 16.3489 21 15.433V8.5669C21 7.65096 21 7.193 20.8377 6.81508C20.6945 6.48174 20.4634 6.19361 20.1691 5.98155C19.8354 5.74114 19.3883 5.64179 18.4942 5.4431L6.89418 2.86532C5.56262 2.56942 4.89685 2.42147 4.37434 2.59356C3.9162 2.74445 3.52803 3.05583 3.28134 3.47033C3 3.94306 3 4.62508 3 5.98912Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-01.svg b/@stellar/design-system/src/assets/icons/phone-01.svg
new file mode 100644
index 00000000..55186619
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-02.svg b/@stellar/design-system/src/assets/icons/phone-02.svg
new file mode 100644
index 00000000..559f6311
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 2V3.4C15 3.96005 15 4.24008 14.891 4.45399C14.7951 4.64215 14.6422 4.79513 14.454 4.89101C14.2401 5 13.9601 5 13.4 5H10.6C10.0399 5 9.75992 5 9.54601 4.89101C9.35785 4.79513 9.20487 4.64215 9.10899 4.45399C9 4.24008 9 3.96005 9 3.4V2M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-call-01.svg b/@stellar/design-system/src/assets/icons/phone-call-01.svg
new file mode 100644
index 00000000..f67d92c9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-call-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.0497 6C15.0264 6.19057 15.924 6.66826 16.6277 7.37194C17.3314 8.07561 17.8091 8.97326 17.9997 9.95M14.0497 2C16.0789 2.22544 17.9713 3.13417 19.4159 4.57701C20.8606 6.01984 21.7717 7.91101 21.9997 9.94M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-call-02.svg b/@stellar/design-system/src/assets/icons/phone-call-02.svg
new file mode 100644
index 00000000..e6214be2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-call-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.85864 6C6.67357 4.14864 9.20268 3 12.0001 3C14.7975 3 17.3266 4.14864 19.1415 6M16.4723 9C15.3736 7.7725 13.777 7 12 7C10.223 7 8.62647 7.7725 7.52783 9M12 17C13.5105 17 14.9608 17.2576 16.3094 17.7313C16.3542 17.747 16.3767 17.7549 16.412 17.7705C16.7326 17.9118 16.9788 18.2591 17.0058 18.6084C17.0088 18.647 17.0088 18.6811 17.0088 18.7494C17.0088 18.9821 17.0088 19.0985 17.0185 19.1965C17.1122 20.1457 17.8631 20.8966 18.8123 20.9903C18.9103 21 19.0267 21 19.2594 21H19.5044C19.965 21 20.1952 21 20.3868 20.9622C21.1829 20.8053 21.8053 20.1829 21.9622 19.3868C22 19.1952 22 18.965 22 18.5044V18.3062C22 17.831 22 17.5933 21.9493 17.3209C21.8358 16.7119 21.3933 15.9583 20.9166 15.5624C20.7035 15.3854 20.5589 15.3048 20.2698 15.1435C17.822 13.7781 15.0019 13 12 13C8.99812 13 6.17797 13.7781 3.73021 15.1435C3.4411 15.3048 3.29654 15.3854 3.0834 15.5624C2.60675 15.9583 2.16421 16.7119 2.05074 17.3209C2 17.5933 2 17.831 2 18.3062V18.5044C2 18.965 2 19.1952 2.03776 19.3868C2.19469 20.1829 2.81709 20.8053 3.61321 20.9622C3.80476 21 4.03504 21 4.4956 21H4.74057C4.97332 21 5.0897 21 5.18773 20.9903C6.13689 20.8966 6.8878 20.1457 6.98152 19.1965C6.9912 19.0985 6.9912 18.9821 6.9912 18.7494C6.9912 18.6811 6.9912 18.647 6.99418 18.6084C7.02122 18.2591 7.2674 17.9118 7.58798 17.7705C7.62335 17.7549 7.64577 17.747 7.69061 17.7313C9.03921 17.2576 10.4895 17 12 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-hang-up.svg b/@stellar/design-system/src/assets/icons/phone-hang-up.svg
new file mode 100644
index 00000000..a4fdd86d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-hang-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.47542 12.8631C4.44449 11.2622 3.67643 9.54121 3.17124 7.76131C3.01103 7.19687 2.93093 6.91464 2.9297 6.5017C2.92833 6.04347 3.08969 5.42298 3.31412 5.02348C3.51636 4.66345 3.78117 4.39863 4.3108 3.86901L4.46843 3.71138C4.99987 3.17993 5.2656 2.91421 5.55098 2.76987C6.11854 2.4828 6.7888 2.4828 7.35636 2.76987C7.64174 2.91421 7.90747 3.17993 8.43891 3.71138L8.63378 3.90625C8.98338 4.25585 9.15819 4.43066 9.27247 4.60643C9.70347 5.26932 9.70347 6.1239 9.27247 6.7868C9.15819 6.96257 8.98338 7.13738 8.63378 7.48698C8.51947 7.60129 8.46231 7.65845 8.41447 7.72526C8.24446 7.96269 8.18576 8.30695 8.26748 8.58731C8.29048 8.6662 8.32041 8.72855 8.38028 8.85324C8.50111 9.10491 8.62956 9.35383 8.76563 9.59967M11.1817 12.8179L11.2266 12.8631C12.4282 14.0646 13.7869 15.0134 15.2365 15.7094C15.3612 15.7693 15.4235 15.7992 15.5024 15.8222C15.7828 15.904 16.127 15.8453 16.3644 15.6752C16.4313 15.6274 16.4884 15.5702 16.6027 15.4559C16.9523 15.1063 17.1271 14.9315 17.3029 14.8172C17.9658 14.3862 18.8204 14.3862 19.4833 14.8172C19.6591 14.9315 19.8339 15.1063 20.1835 15.4559L20.3783 15.6508C20.9098 16.1822 21.1755 16.448 21.3198 16.7333C21.6069 17.3009 21.6069 17.9712 21.3198 18.5387C21.1755 18.8241 20.9098 19.0898 20.3783 19.6213L20.2207 19.7789C19.6911 20.3085 19.4263 20.5733 19.0662 20.7756C18.6667 21 18.0462 21.1614 17.588 21.16C17.1751 21.1588 16.8928 21.0787 16.3284 20.9185C13.295 20.0575 10.4326 18.433 8.04466 16.045L7.99976 16M20.9996 3L2.99961 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-incoming-01.svg b/@stellar/design-system/src/assets/icons/phone-incoming-01.svg
new file mode 100644
index 00000000..5b44afd2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-incoming-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.9996 4V9M14.9996 9L19.9996 9M14.9996 9L20.9996 3M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-incoming-02.svg b/@stellar/design-system/src/assets/icons/phone-incoming-02.svg
new file mode 100644
index 00000000..b9db6825
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-incoming-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.4996 3L12.9996 6.5M12.9996 6.5L16.4996 10M12.9996 6.5H20.9996M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-outgoing-01.svg b/@stellar/design-system/src/assets/icons/phone-outgoing-01.svg
new file mode 100644
index 00000000..f046307e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-outgoing-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.9996 8V3M20.9996 3H15.9996M20.9996 3L14.9996 9M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-outgoing-02.svg b/@stellar/design-system/src/assets/icons/phone-outgoing-02.svg
new file mode 100644
index 00000000..fb8469d2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-outgoing-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.4996 3L20.9996 6.5M20.9996 6.5L17.4996 10M20.9996 6.5H12.9996M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-pause.svg b/@stellar/design-system/src/assets/icons/phone-pause.svg
new file mode 100644
index 00000000..d7181cc7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-pause.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19.9996 10V3M14.9996 10V3M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-plus.svg b/@stellar/design-system/src/assets/icons/phone-plus.svg
new file mode 100644
index 00000000..6549f843
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.9996 11V3M12.9996 7H20.9996M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone-x.svg b/@stellar/design-system/src/assets/icons/phone-x.svg
new file mode 100644
index 00000000..a5e75f7e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.9996 3L14.9996 9M14.9996 3L20.9996 9M10.2266 13.8631C9.02506 12.6615 8.07627 11.3028 7.38028 9.85323C7.32041 9.72854 7.29048 9.66619 7.26748 9.5873C7.18576 9.30695 7.24446 8.96269 7.41447 8.72526C7.46231 8.65845 7.51947 8.60129 7.63378 8.48698C7.98338 8.13737 8.15819 7.96257 8.27247 7.78679C8.70347 7.1239 8.70347 6.26932 8.27247 5.60643C8.15819 5.43065 7.98338 5.25585 7.63378 4.90624L7.43891 4.71137C6.90747 4.17993 6.64174 3.91421 6.35636 3.76987C5.7888 3.4828 5.11854 3.4828 4.55098 3.76987C4.2656 3.91421 3.99987 4.17993 3.46843 4.71137L3.3108 4.86901C2.78117 5.39863 2.51636 5.66344 2.31411 6.02348C2.08969 6.42298 1.92833 7.04347 1.9297 7.5017C1.93092 7.91464 2.01103 8.19687 2.17124 8.76131C3.03221 11.7947 4.65668 14.6571 7.04466 17.045C9.43264 19.433 12.295 21.0575 15.3284 21.9185C15.8928 22.0787 16.1751 22.1588 16.588 22.16C17.0462 22.1614 17.6667 22 18.0662 21.7756C18.4263 21.5733 18.6911 21.3085 19.2207 20.7789L19.3783 20.6213C19.9098 20.0898 20.1755 19.8241 20.3198 19.5387C20.6069 18.9712 20.6069 18.3009 20.3198 17.7333C20.1755 17.448 19.9098 17.1822 19.3783 16.6508L19.1835 16.4559C18.8339 16.1063 18.6591 15.9315 18.4833 15.8172C17.8204 15.3862 16.9658 15.3862 16.3029 15.8172C16.1271 15.9315 15.9523 16.1063 15.6027 16.4559C15.4884 16.5702 15.4313 16.6274 15.3644 16.6752C15.127 16.8453 14.7828 16.904 14.5024 16.8222C14.4235 16.7992 14.3612 16.7693 14.2365 16.7094C12.7869 16.0134 11.4282 15.0646 10.2266 13.8631Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/phone.svg b/@stellar/design-system/src/assets/icons/phone.svg
new file mode 100644
index 00000000..93567bfc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/phone.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.38028 8.85323C9.07627 10.3028 10.0251 11.6615 11.2266 12.8631C12.4282 14.0646 13.7869 15.0134 15.2365 15.7094C15.3612 15.7693 15.4235 15.7992 15.5024 15.8222C15.7828 15.904 16.127 15.8453 16.3644 15.6752C16.4313 15.6274 16.4884 15.5702 16.6027 15.4559C16.9523 15.1063 17.1271 14.9315 17.3029 14.8172C17.9658 14.3862 18.8204 14.3862 19.4833 14.8172C19.6591 14.9315 19.8339 15.1063 20.1835 15.4559L20.3783 15.6508C20.9098 16.1822 21.1755 16.448 21.3198 16.7333C21.6069 17.3009 21.6069 17.9712 21.3198 18.5387C21.1755 18.8241 20.9098 19.0898 20.3783 19.6213L20.2207 19.7789C19.6911 20.3085 19.4263 20.5733 19.0662 20.7756C18.6667 21 18.0462 21.1614 17.588 21.16C17.1751 21.1588 16.8928 21.0787 16.3284 20.9185C13.295 20.0575 10.4326 18.433 8.04466 16.045C5.65668 13.6571 4.03221 10.7947 3.17124 7.76131C3.01103 7.19687 2.93092 6.91464 2.9297 6.5017C2.92833 6.04347 3.08969 5.42298 3.31411 5.02348C3.51636 4.66345 3.78117 4.39863 4.3108 3.86901L4.46843 3.71138C4.99987 3.17993 5.2656 2.91421 5.55098 2.76987C6.11854 2.4828 6.7888 2.4828 7.35636 2.76987C7.64174 2.91421 7.90747 3.17993 8.43891 3.71138L8.63378 3.90625C8.98338 4.25585 9.15819 4.43065 9.27247 4.60643C9.70347 5.26932 9.70347 6.1239 9.27247 6.78679C9.15819 6.96257 8.98338 7.13738 8.63378 7.48698C8.51947 7.60129 8.46231 7.65845 8.41447 7.72526C8.24446 7.96269 8.18576 8.30695 8.26748 8.5873C8.29048 8.6662 8.32041 8.72854 8.38028 8.85323Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pie-chart-01.svg b/@stellar/design-system/src/assets/icons/pie-chart-01.svg
new file mode 100644
index 00000000..f0a3cb52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pie-chart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.2104 15.8899C20.5742 17.3944 19.5792 18.7202 18.3123 19.7512C17.0454 20.7823 15.5452 21.4874 13.9428 21.8047C12.3405 22.1221 10.6848 22.0421 9.12055 21.5717C7.55627 21.1014 6.13103 20.255 4.96942 19.1066C3.80782 17.9582 2.94522 16.5427 2.45704 14.9839C1.96886 13.4251 1.86996 11.7704 2.169 10.1646C2.46804 8.55873 3.1559 7.05058 4.17245 5.77198C5.189 4.49338 6.50329 3.48327 8.0004 2.82995M21.2392 8.17311C21.6395 9.13958 21.8851 10.1613 21.9684 11.2008C21.989 11.4576 21.9993 11.586 21.9483 11.7017C21.9057 11.7983 21.8213 11.8897 21.7284 11.9399C21.6172 11.9999 21.4783 11.9999 21.2004 11.9999H12.8004C12.5204 11.9999 12.3804 11.9999 12.2734 11.9455C12.1793 11.8975 12.1028 11.821 12.0549 11.7269C12.0004 11.62 12.0004 11.48 12.0004 11.1999V2.79995C12.0004 2.52208 12.0004 2.38315 12.0605 2.27193C12.1107 2.17903 12.2021 2.09464 12.2987 2.05204C12.4144 2.00105 12.5428 2.01134 12.7996 2.03193C13.839 2.11527 14.8608 2.36083 15.8272 2.76115C17.0405 3.2637 18.1429 4.00029 19.0715 4.92888C20.0001 5.85747 20.7367 6.95986 21.2392 8.17311Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pie-chart-02.svg b/@stellar/design-system/src/assets/icons/pie-chart-02.svg
new file mode 100644
index 00000000..a3d9aa6c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pie-chart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.2 14C17.477 14 17.6155 14 17.7278 14.0616C17.8204 14.1123 17.9065 14.2076 17.9478 14.3048C17.9978 14.4226 17.9852 14.548 17.96 14.7987C17.8296 16.0988 17.3822 17.3515 16.6518 18.4446C15.7727 19.7602 14.5233 20.7856 13.0615 21.3911C11.5997 21.9966 9.99113 22.155 8.43928 21.8463C6.88743 21.5376 5.46197 20.7757 4.34315 19.6569C3.22433 18.5381 2.4624 17.1126 2.15372 15.5608C1.84504 14.0089 2.00347 12.4004 2.60897 10.9386C3.21447 9.47677 4.23985 8.22734 5.55544 7.34829C6.64856 6.61789 7.90125 6.17045 9.20131 6.04001C9.45207 6.01485 9.57745 6.00227 9.69528 6.05226C9.79249 6.0935 9.88776 6.1797 9.9385 6.2723C10 6.38455 10 6.52305 10 6.80005V13.2C10 13.4801 10 13.6201 10.0545 13.727C10.1024 13.8211 10.1789 13.8976 10.273 13.9456C10.38 14 10.52 14 10.8 14H17.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 2.80005C14 2.52304 14 2.38454 14.0615 2.27229C14.1122 2.17969 14.2075 2.0935 14.3047 2.05226C14.4225 2.00226 14.5479 2.01484 14.7987 2.03999C16.6271 2.22339 18.346 3.03235 19.6569 4.34319C20.9677 5.65404 21.7767 7.37295 21.9601 9.20135C21.9852 9.45212 21.9978 9.5775 21.9478 9.69533C21.9066 9.79254 21.8204 9.88781 21.7278 9.93854C21.6155 10 21.477 10 21.2 10L14.8 10C14.52 10 14.38 10 14.273 9.94555C14.1789 9.89761 14.1024 9.82112 14.0545 9.72704C14 9.62009 14 9.48007 14 9.20005V2.80005Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pie-chart-03.svg b/@stellar/design-system/src/assets/icons/pie-chart-03.svg
new file mode 100644
index 00000000..20f48197
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pie-chart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2C13.3132 2 14.6136 2.25866 15.8268 2.76121C17.0401 3.26375 18.1425 4.00035 19.0711 4.92893C19.9997 5.85752 20.7363 6.95991 21.2388 8.17317C21.7413 9.38643 22 10.6868 22 12M12 2V12M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5229 22 12M12 2C17.5228 2 22 6.47716 22 12M22 12L12 12M22 12C22 13.5781 21.6265 15.1338 20.9101 16.5399C20.1936 17.946 19.1546 19.1626 17.8779 20.0902L12 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pie-chart-04.svg b/@stellar/design-system/src/assets/icons/pie-chart-04.svg
new file mode 100644
index 00000000..2af1bbbd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pie-chart-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12L2.33178 9.44554C1.70974 11.7999 1.96813 14.3002 3.05847 16.4776C4.14881 18.6549 5.99616 20.3596 8.25395 21.2718L12 12ZM12 12L12.1047 2.00055C9.88558 1.97731 7.72174 2.69293 5.95402 4.0347C4.1863 5.37647 2.91514 7.26815 2.34075 9.41181L12 12ZM22 12C22 17.5228 17.5229 22 12 22C6.47716 22 2.00001 17.5228 2.00001 12C2.00001 6.47715 6.47716 2 12 2C17.5229 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/piggy-bank-01.svg b/@stellar/design-system/src/assets/icons/piggy-bank-01.svg
new file mode 100644
index 00000000..a54aaa29
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/piggy-bank-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.99993 13C4.99993 14.6484 5.66466 16.1415 6.74067 17.226C6.84445 17.3305 6.89633 17.3828 6.92696 17.4331C6.95619 17.4811 6.9732 17.5224 6.98625 17.5771C6.99993 17.6343 6.99993 17.6995 6.99993 17.8298V20.2C6.99993 20.48 6.99993 20.62 7.05443 20.727C7.10236 20.8211 7.17885 20.8976 7.27293 20.9455C7.37989 21 7.5199 21 7.79993 21H9.69993C9.97996 21 10.12 21 10.2269 20.9455C10.321 20.8976 10.3975 20.8211 10.4454 20.727C10.4999 20.62 10.4999 20.48 10.4999 20.2V19.8C10.4999 19.52 10.4999 19.38 10.5544 19.273C10.6024 19.1789 10.6789 19.1024 10.7729 19.0545C10.8799 19 11.0199 19 11.2999 19H12.6999C12.98 19 13.12 19 13.2269 19.0545C13.321 19.1024 13.3975 19.1789 13.4454 19.273C13.4999 19.38 13.4999 19.52 13.4999 19.8V20.2C13.4999 20.48 13.4999 20.62 13.5544 20.727C13.6024 20.8211 13.6789 20.8976 13.7729 20.9455C13.8799 21 14.0199 21 14.2999 21H16.2C16.48 21 16.62 21 16.727 20.9455C16.8211 20.8976 16.8976 20.8211 16.9455 20.727C17 20.62 17 20.48 17 20.2V19.2243C17 19.0223 17 18.9212 17.0288 18.8401C17.0563 18.7624 17.0911 18.708 17.15 18.6502C17.2114 18.59 17.3155 18.5417 17.5237 18.445C18.5059 17.989 19.344 17.2751 19.9511 16.3902C20.0579 16.2346 20.1112 16.1568 20.1683 16.1108C20.2228 16.0668 20.2717 16.0411 20.3387 16.021C20.4089 16 20.4922 16 20.6587 16H21.2C21.48 16 21.62 16 21.727 15.9455C21.8211 15.8976 21.8976 15.8211 21.9455 15.727C22 15.62 22 15.48 22 15.2V11.7857C22 11.5192 22 11.3859 21.9505 11.283C21.9013 11.181 21.819 11.0987 21.717 11.0495C21.6141 11 21.4808 11 21.2143 11C21.0213 11 20.9248 11 20.8471 10.9738C20.7633 10.9456 20.7045 10.908 20.6437 10.8438C20.5874 10.7842 20.5413 10.6846 20.4493 10.4855C20.1538 9.84622 19.7492 9.26777 19.2593 8.77404C19.1555 8.66945 19.1036 8.61716 19.073 8.56687C19.0437 8.51889 19.0267 8.47759 19.0137 8.42294C19 8.36567 19 8.30051 19 8.17018V7.06058C19 6.70053 19 6.52051 18.925 6.39951C18.8593 6.29351 18.7564 6.21588 18.6365 6.18184C18.4995 6.14299 18.3264 6.19245 17.9802 6.29136L15.6077 6.96922C15.5673 6.98074 15.5472 6.9865 15.5267 6.99054C15.5085 6.99414 15.4901 6.99671 15.4716 6.99826C15.4508 7 15.4298 7 15.3879 7H14.959M4.99993 13C4.99993 10.6959 6.29864 8.6952 8.20397 7.6899M4.99993 13H4C2.89543 13 2 12.1046 2 11C2 10.2597 2.4022 9.61337 3 9.26756M15 6.5C15 8.433 13.433 10 11.5 10C9.567 10 8 8.433 8 6.5C8 4.567 9.567 3 11.5 3C13.433 3 15 4.567 15 6.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/piggy-bank-02.svg b/@stellar/design-system/src/assets/icons/piggy-bank-02.svg
new file mode 100644
index 00000000..c11ac414
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/piggy-bank-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.99993 13C4.99993 9.68629 7.68622 7 10.9999 7M4.99993 13C4.99993 14.6484 5.66466 16.1415 6.74067 17.226C6.84445 17.3305 6.89633 17.3828 6.92696 17.4331C6.95619 17.4811 6.9732 17.5224 6.98625 17.5771C6.99993 17.6343 6.99993 17.6995 6.99993 17.8298V20.2C6.99993 20.48 6.99993 20.62 7.05443 20.727C7.10236 20.8211 7.17885 20.8976 7.27293 20.9455C7.37989 21 7.5199 21 7.79993 21H9.69993C9.97996 21 10.12 21 10.2269 20.9455C10.321 20.8976 10.3975 20.8211 10.4454 20.727C10.4999 20.62 10.4999 20.48 10.4999 20.2V19.8C10.4999 19.52 10.4999 19.38 10.5544 19.273C10.6024 19.1789 10.6789 19.1024 10.7729 19.0545C10.8799 19 11.0199 19 11.2999 19H12.6999C12.98 19 13.12 19 13.2269 19.0545C13.321 19.1024 13.3975 19.1789 13.4454 19.273C13.4999 19.38 13.4999 19.52 13.4999 19.8V20.2C13.4999 20.48 13.4999 20.62 13.5544 20.727C13.6024 20.8211 13.6789 20.8976 13.7729 20.9455C13.8799 21 14.0199 21 14.2999 21H16.2C16.48 21 16.62 21 16.727 20.9455C16.8211 20.8976 16.8976 20.8211 16.9455 20.727C17 20.62 17 20.48 17 20.2V19.2243C17 19.0223 17 18.9212 17.0288 18.8401C17.0563 18.7624 17.0911 18.708 17.15 18.6502C17.2114 18.59 17.3155 18.5417 17.5237 18.445C18.5059 17.989 19.344 17.2751 19.9511 16.3902C20.0579 16.2346 20.1112 16.1568 20.1683 16.1108C20.2228 16.0668 20.2717 16.0411 20.3387 16.021C20.4089 16 20.4922 16 20.6587 16H21.2C21.48 16 21.62 16 21.727 15.9455C21.8211 15.8976 21.8976 15.8211 21.9455 15.727C22 15.62 22 15.48 22 15.2V11.7857C22 11.5192 22 11.3859 21.9505 11.283C21.9013 11.181 21.819 11.0987 21.717 11.0495C21.6141 11 21.4808 11 21.2143 11C21.0213 11 20.9248 11 20.8471 10.9738C20.7633 10.9456 20.7045 10.908 20.6437 10.8438C20.5874 10.7842 20.5413 10.6846 20.4493 10.4855C20.1538 9.84622 19.7492 9.26777 19.2593 8.77404C19.1555 8.66945 19.1036 8.61716 19.073 8.56687C19.0437 8.51889 19.0267 8.47759 19.0137 8.42294C19 8.36567 19 8.30051 19 8.17018V7.06058C19 6.70053 19 6.52051 18.925 6.39951C18.8593 6.29351 18.7564 6.21588 18.6365 6.18184C18.4995 6.14299 18.3264 6.19245 17.9802 6.29136L15.6077 6.96922C15.5673 6.98074 15.5472 6.9865 15.5267 6.99054C15.5085 6.99414 15.4901 6.99671 15.4716 6.99826C15.4508 7 15.4297 7 15.3874 7H10.9999M4.99993 13H4C2.89543 13 2 12.1046 2 11C2 10.2597 2.4022 9.61337 3 9.26756M10.9999 7H14.9646C14.9879 6.8367 15 6.66976 15 6.5C15 4.567 13.433 3 11.5 3C9.567 3 8 4.567 8 6.5C8 6.9172 8.073 7.31736 8.20692 7.68839C9.04114 7.24881 9.99144 7 10.9999 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pilcrow-01.svg b/@stellar/design-system/src/assets/icons/pilcrow-01.svg
new file mode 100644
index 00000000..478609cc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pilcrow-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 4V20M16 4H18M16 4H10.5C8.01472 4 6 6.01472 6 8.5C6 10.9853 8.01472 13 10.5 13H16V4ZM14 20H18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pilcrow-02.svg b/@stellar/design-system/src/assets/icons/pilcrow-02.svg
new file mode 100644
index 00000000..fbd80b4d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pilcrow-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.5 4V20M19.5 4H9C6.79086 4 5 5.79086 5 8C5 10.2091 6.79086 12 9 12H14M14 4V20M12 20H19.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pilcrow-square.svg b/@stellar/design-system/src/assets/icons/pilcrow-square.svg
new file mode 100644
index 00000000..ef7594bf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pilcrow-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 17V7H11C9.34315 7 8 8.34315 8 10C8 11.6569 9.34315 13 11 13H15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pin-01.svg b/@stellar/design-system/src/assets/icons/pin-01.svg
new file mode 100644
index 00000000..bd258821
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pin-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.0004 15L12.0004 22M8.00043 7.30813V9.43875C8.00043 9.64677 8.00043 9.75078 7.98001 9.85026C7.9619 9.93852 7.93194 10.0239 7.89095 10.1042C7.84474 10.1946 7.77977 10.2758 7.64982 10.4383L6.08004 12.4005C5.4143 13.2327 5.08143 13.6487 5.08106 13.9989C5.08073 14.3035 5.21919 14.5916 5.4572 14.7815C5.73088 15 6.26373 15 7.32943 15H16.6714C17.7371 15 18.27 15 18.5437 14.7815C18.7817 14.5916 18.9201 14.3035 18.9198 13.9989C18.9194 13.6487 18.5866 13.2327 17.9208 12.4005L16.351 10.4383C16.2211 10.2758 16.1561 10.1946 16.1099 10.1042C16.0689 10.0239 16.039 9.93852 16.0208 9.85026C16.0004 9.75078 16.0004 9.64677 16.0004 9.43875V7.30813C16.0004 7.19301 16.0004 7.13544 16.0069 7.07868C16.0127 7.02825 16.0223 6.97833 16.0357 6.92937C16.0507 6.87424 16.0721 6.8208 16.1149 6.71391L17.1227 4.19423C17.4168 3.45914 17.5638 3.09159 17.5025 2.79655C17.4489 2.53853 17.2956 2.31211 17.0759 2.1665C16.8247 2 16.4289 2 15.6372 2H8.36368C7.57197 2 7.17611 2 6.92494 2.1665C6.70529 2.31211 6.55199 2.53853 6.49838 2.79655C6.43707 3.09159 6.58408 3.45914 6.87812 4.19423L7.88599 6.71391C7.92875 6.8208 7.95013 6.87424 7.96517 6.92937C7.97853 6.97833 7.98814 7.02825 7.99392 7.07868C8.00043 7.13544 8.00043 7.19301 8.00043 7.30813Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/pin-02.svg b/@stellar/design-system/src/assets/icons/pin-02.svg
new file mode 100644
index 00000000..2b55c694
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/pin-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.37671 15.6163L2.71986 21.2732M11.6944 6.64181L10.1335 8.2027C10.0062 8.33003 9.94252 8.39369 9.86999 8.44427C9.80561 8.48917 9.73617 8.52634 9.6631 8.555C9.58078 8.58729 9.49249 8.60495 9.31593 8.64026L5.65146 9.37315C4.69916 9.56361 4.22301 9.65884 4.00025 9.9099C3.80618 10.1286 3.71756 10.4213 3.75771 10.7109C3.8038 11.0434 4.14716 11.3867 4.83388 12.0735L11.9196 19.1592C12.6063 19.8459 12.9497 20.1893 13.2821 20.2354C13.5718 20.2755 13.8645 20.1869 14.0832 19.9928C14.3342 19.7701 14.4295 19.2939 14.6199 18.3416L15.3528 14.6771C15.3881 14.5006 15.4058 14.4123 15.4381 14.33C15.4667 14.2569 15.5039 14.1875 15.5488 14.1231C15.5994 14.0505 15.663 13.9869 15.7904 13.8596L17.3513 12.2987C17.4327 12.2173 17.4734 12.1766 17.5181 12.141C17.5578 12.1095 17.5999 12.081 17.644 12.0558C17.6936 12.0274 17.7465 12.0048 17.8524 11.9594L20.3467 10.8904C21.0744 10.5785 21.4383 10.4226 21.6035 10.1706C21.7481 9.95025 21.7998 9.68175 21.7474 9.42348C21.6875 9.12813 21.4076 8.84822 20.8478 8.28839L15.7047 3.14526C15.1448 2.58543 14.8649 2.30552 14.5696 2.24565C14.3113 2.19329 14.0428 2.245 13.8225 2.38953C13.5705 2.55481 13.4145 2.91866 13.1027 3.64636L12.0337 6.14071C11.9883 6.24653 11.9656 6.29944 11.9373 6.34905C11.9121 6.39313 11.8836 6.43522 11.852 6.47496C11.8165 6.51971 11.7758 6.56041 11.6944 6.64181Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/placeholder.svg b/@stellar/design-system/src/assets/icons/placeholder.svg
new file mode 100644
index 00000000..5e003a63
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/placeholder.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/plane.svg b/@stellar/design-system/src/assets/icons/plane.svg
new file mode 100644
index 00000000..0f6b9f69
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/plane.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.7448 2.81286C18.7095 1.81638 20.3036 1.80349 21.2843 2.78424C22.2382 3.73811 22.256 5.27908 21.3243 6.25469L18.5457 9.16445C18.3279 9.39252 18.219 9.50656 18.1519 9.64012C18.0925 9.75835 18.0571 9.8872 18.0479 10.0192C18.0374 10.1683 18.0729 10.3219 18.1438 10.6292L19.8717 18.1168C19.9445 18.4322 19.9809 18.5899 19.9691 18.7425C19.9587 18.8775 19.921 19.009 19.8582 19.129C19.7874 19.2646 19.6729 19.379 19.444 19.6079L19.0732 19.9787C18.4671 20.5848 18.164 20.8879 17.8538 20.9428C17.583 20.9907 17.3043 20.9249 17.0835 20.7609C16.8306 20.5731 16.6951 20.1665 16.424 19.3533L14.4142 13.324L11.0689 16.6693C10.8692 16.869 10.7694 16.9689 10.7026 17.0864C10.6434 17.1906 10.6034 17.3045 10.5846 17.4228C10.5633 17.5564 10.5789 17.6967 10.6101 17.9774L10.7938 19.6308C10.8249 19.9115 10.8405 20.0518 10.8192 20.1853C10.8004 20.3036 10.7604 20.4176 10.7012 20.5217C10.6345 20.6393 10.5346 20.7392 10.3349 20.9388L10.1374 21.1363C9.66436 21.6094 9.42783 21.8459 9.16498 21.9144C8.93443 21.9745 8.69001 21.9503 8.47572 21.8462C8.23141 21.7275 8.04586 21.4491 7.67476 20.8925L6.10644 18.54C6.04014 18.4406 6.00699 18.3908 5.96851 18.3457C5.93432 18.3057 5.89702 18.2684 5.85696 18.2342C5.81186 18.1957 5.76213 18.1626 5.66268 18.0963L3.3102 16.5279C2.75355 16.1568 2.47523 15.9713 2.35651 15.727C2.25238 15.5127 2.22818 15.2683 2.28826 15.0377C2.35676 14.7749 2.59329 14.5383 3.06635 14.0653L3.26385 13.8678C3.46354 13.6681 3.56338 13.5682 3.68096 13.5015C3.78512 13.4423 3.89907 13.4023 4.01737 13.3834C4.15091 13.3622 4.29124 13.3777 4.57192 13.4089L6.2253 13.5926C6.50597 13.6238 6.64631 13.6394 6.77985 13.6181C6.89815 13.5993 7.01209 13.5593 7.11626 13.5001C7.23383 13.4333 7.33368 13.3335 7.53336 13.1338L10.8787 9.78848L4.84941 7.77872C4.03618 7.50764 3.62957 7.3721 3.44177 7.11919C3.27779 6.89836 3.21201 6.61972 3.25992 6.34886C3.31478 6.03867 3.61786 5.7356 4.224 5.12945L4.59477 4.75868C4.82367 4.52979 4.93811 4.41534 5.07371 4.34445C5.19372 4.28171 5.32522 4.24399 5.46024 4.23359C5.6128 4.22184 5.7705 4.25824 6.08592 4.33103L13.5451 6.05236C13.855 6.12389 14.01 6.15966 14.1596 6.14902C14.3041 6.13874 14.4446 6.09721 14.5714 6.0273C14.7028 5.95488 14.8134 5.84062 15.0347 5.61208L17.7448 2.81286Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/play-circle.svg b/@stellar/design-system/src/assets/icons/play-circle.svg
new file mode 100644
index 00000000..04febad8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/play-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/play-square.svg b/@stellar/design-system/src/assets/icons/play-square.svg
new file mode 100644
index 00000000..2c011c85
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/play-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/play.svg b/@stellar/design-system/src/assets/icons/play.svg
new file mode 100644
index 00000000..e71827b9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/play.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 4.98963C5 4.01847 5 3.53289 5.20249 3.26522C5.37889 3.03203 5.64852 2.88773 5.9404 2.8703C6.27544 2.8503 6.67946 3.11965 7.48752 3.65835L18.0031 10.6687C18.6708 11.1139 19.0046 11.3364 19.1209 11.6169C19.2227 11.8622 19.2227 12.1378 19.1209 12.3831C19.0046 12.6636 18.6708 12.8862 18.0031 13.3313L7.48752 20.3417C6.67946 20.8804 6.27544 21.1497 5.9404 21.1297C5.64852 21.1123 5.37889 20.968 5.20249 20.7348C5 20.4671 5 19.9815 5 19.0104V4.98963Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/plus-circle.svg b/@stellar/design-system/src/assets/icons/plus-circle.svg
new file mode 100644
index 00000000..f3305c3f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/plus-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/plus-square.svg b/@stellar/design-system/src/assets/icons/plus-square.svg
new file mode 100644
index 00000000..1d7caa30
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/plus-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V16M8 12H16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/plus.svg b/@stellar/design-system/src/assets/icons/plus.svg
new file mode 100644
index 00000000..fa0a5bdf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 5V19M5 12H19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/podcast.svg b/@stellar/design-system/src/assets/icons/podcast.svg
new file mode 100644
index 00000000..a45f905e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/podcast.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.1189 18C19.4623 16.4151 21 13.7779 21 10.785C21 5.9333 16.9704 2 12 2C7.02958 2 3 5.9333 3 10.785C3 13.7779 4.53771 16.4151 6.88113 18M8.35967 14C7.51875 13.15 7 12.0086 7 10.7505C7 8.12711 9.23881 6 12 6C14.7612 6 17 8.12711 17 10.7505C17 12.0095 16.4813 13.15 15.6403 14M12 22C10.8954 22 10 21.1046 10 20V18C10 16.8954 10.8954 16 12 16C13.1046 16 14 16.8954 14 18V20C14 21.1046 13.1046 22 12 22ZM13 11C13 11.5523 12.5523 12 12 12C11.4477 12 11 11.5523 11 11C11 10.4477 11.4477 10 12 10C12.5523 10 13 10.4477 13 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/power-01.svg b/@stellar/design-system/src/assets/icons/power-01.svg
new file mode 100644
index 00000000..a3f6aa11
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/power-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V12M18.36 6.64C19.6184 7.89879 20.4753 9.50244 20.8223 11.2482C21.1693 12.9939 20.9909 14.8034 20.3096 16.4478C19.6284 18.0921 18.4748 19.4976 16.9948 20.4864C15.5148 21.4752 13.7749 22.0029 11.995 22.0029C10.2151 22.0029 8.47515 21.4752 6.99517 20.4864C5.51519 19.4976 4.36164 18.0921 3.68036 16.4478C2.99909 14.8034 2.82069 12.9939 3.16772 11.2482C3.51475 9.50244 4.37162 7.89879 5.63 6.64" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/power-02.svg b/@stellar/design-system/src/assets/icons/power-02.svg
new file mode 100644
index 00000000..c46e829d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/power-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 7V12M8 8.99951C7.37209 9.83526 7 10.8742 7 12C7 14.7614 9.23858 17 12 17C14.7614 17 17 14.7614 17 12C17 10.8742 16.6279 9.83526 16 8.99951M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/power-03.svg b/@stellar/design-system/src/assets/icons/power-03.svg
new file mode 100644
index 00000000..ab980ec4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/power-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 7V17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/presentation-chart-01.svg b/@stellar/design-system/src/assets/icons/presentation-chart-01.svg
new file mode 100644
index 00000000..34638560
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/presentation-chart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V21M12 16L18 21M12 16L6 21M21 3V11.2C21 12.8802 21 13.7202 20.673 14.362C20.3854 14.9265 19.9265 15.3854 19.362 15.673C18.7202 16 17.8802 16 16.2 16H7.8C6.11984 16 5.27976 16 4.63803 15.673C4.07354 15.3854 3.6146 14.9265 3.32698 14.362C3 13.7202 3 12.8802 3 11.2V3M8 9V12M12 7V12M16 11V12M22 3H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/presentation-chart-02.svg b/@stellar/design-system/src/assets/icons/presentation-chart-02.svg
new file mode 100644
index 00000000..d5f96cb9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/presentation-chart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V21M18 21L14.0486 17.7072C13.3198 17.0998 12.9554 16.7962 12.5487 16.6801C12.19 16.5778 11.81 16.5778 11.4513 16.6801C11.0446 16.7962 10.6802 17.0998 9.95141 17.7072L6 21M8 11V12M12 9V12M16 7V12M22 3H2M3 3H21V11.2C21 12.8802 21 13.7202 20.673 14.362C20.3854 14.9265 19.9265 15.3854 19.362 15.673C18.7202 16 17.8802 16 16.2 16H7.8C6.11984 16 5.27976 16 4.63803 15.673C4.07354 15.3854 3.6146 14.9265 3.32698 14.362C3 13.7202 3 12.8802 3 11.2V3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/presentation-chart-03.svg b/@stellar/design-system/src/assets/icons/presentation-chart-03.svg
new file mode 100644
index 00000000..0cc5e83b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/presentation-chart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 16V21M12 16L18 21M12 16L6 21M8 7V12M12 9V12M16 11V12M22 3H2M3 3H21V11.2C21 12.8802 21 13.7202 20.673 14.362C20.3854 14.9265 19.9265 15.3854 19.362 15.673C18.7202 16 17.8802 16 16.2 16H7.8C6.11984 16 5.27976 16 4.63803 15.673C4.07354 15.3854 3.6146 14.9265 3.32698 14.362C3 13.7202 3 12.8802 3 11.2V3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/printer.svg b/@stellar/design-system/src/assets/icons/printer.svg
new file mode 100644
index 00000000..14b89819
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/printer.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 7V5.2C18 4.0799 18 3.51984 17.782 3.09202C17.5903 2.71569 17.2843 2.40973 16.908 2.21799C16.4802 2 15.9201 2 14.8 2H9.2C8.0799 2 7.51984 2 7.09202 2.21799C6.71569 2.40973 6.40973 2.71569 6.21799 3.09202C6 3.51984 6 4.0799 6 5.2V7M6 18C5.07003 18 4.60504 18 4.22354 17.8978C3.18827 17.6204 2.37962 16.8117 2.10222 15.7765C2 15.395 2 14.93 2 14V11.8C2 10.1198 2 9.27976 2.32698 8.63803C2.6146 8.07354 3.07354 7.6146 3.63803 7.32698C4.27976 7 5.11984 7 6.8 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V14C22 14.93 22 15.395 21.8978 15.7765C21.6204 16.8117 20.8117 17.6204 19.7765 17.8978C19.395 18 18.93 18 18 18M15 10.5H18M9.2 22H14.8C15.9201 22 16.4802 22 16.908 21.782C17.2843 21.5903 17.5903 21.2843 17.782 20.908C18 20.4802 18 19.9201 18 18.8V17.2C18 16.0799 18 15.5198 17.782 15.092C17.5903 14.7157 17.2843 14.4097 16.908 14.218C16.4802 14 15.9201 14 14.8 14H9.2C8.0799 14 7.51984 14 7.09202 14.218C6.71569 14.4097 6.40973 14.7157 6.21799 15.092C6 15.5198 6 16.0799 6 17.2V18.8C6 19.9201 6 20.4802 6.21799 20.908C6.40973 21.2843 6.71569 21.5903 7.09202 21.782C7.51984 22 8.07989 22 9.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/public.svg b/@stellar/design-system/src/assets/icons/public.svg
deleted file mode 100644
index d2d2fea1..00000000
--- a/@stellar/design-system/src/assets/icons/public.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6750)"><path d="M12 22C10.6167 22 9.31667 21.7373 8.1 21.212C6.88333 20.6873 5.825 19.975 4.925 19.075C4.025 18.175 3.31267 17.1167 2.788 15.9C2.26267 14.6833 2 13.3833 2 12C2 10.6167 2.26267 9.31667 2.788 8.1C3.31267 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.31233 8.1 2.787C9.31667 2.26233 10.6167 2 12 2C13.3833 2 14.6833 2.26233 15.9 2.787C17.1167 3.31233 18.175 4.025 19.075 4.925C19.975 5.825 20.6873 6.88333 21.212 8.1C21.7373 9.31667 22 10.6167 22 12C22 13.3833 21.7373 14.6833 21.212 15.9C20.6873 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6873 15.9 21.212C14.6833 21.7373 13.3833 22 12 22ZM11 19.95V18C10.45 18 9.97933 17.8043 9.588 17.413C9.196 17.021 9 16.55 9 16V15L4.2 10.2C4.15 10.5 4.104 10.8 4.062 11.1C4.02067 11.4 4 11.7 4 12C4 14.0167 4.66267 15.7833 5.988 17.3C7.31267 18.8167 8.98333 19.7 11 19.95ZM17.9 17.4C18.2333 17.0333 18.5333 16.6373 18.8 16.212C19.0667 15.7873 19.2877 15.3457 19.463 14.887C19.6377 14.429 19.771 13.9583 19.863 13.475C19.9543 12.9917 20 12.5 20 12C20 10.3667 19.546 8.875 18.638 7.525C17.7293 6.175 16.5167 5.2 15 4.6V5C15 5.55 14.8043 6.02067 14.413 6.412C14.021 6.804 13.55 7 13 7H11V9C11 9.28333 10.9043 9.52067 10.713 9.712C10.521 9.904 10.2833 10 10 10H8V12H14C14.2833 12 14.521 12.0957 14.713 12.287C14.9043 12.479 15 12.7167 15 13V16H16C16.4333 16 16.825 16.129 17.175 16.387C17.525 16.6457 17.7667 16.9833 17.9 17.4Z"/></g><defs><clipPath id="clip0_1113_6750"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/puzzle-piece-01.svg b/@stellar/design-system/src/assets/icons/puzzle-piece-01.svg
new file mode 100644
index 00000000..60d8824a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/puzzle-piece-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7.5 4.5C7.5 3.11929 8.61929 2 10 2C11.3807 2 12.5 3.11929 12.5 4.5V6H13.5C14.8978 6 15.5967 6 16.1481 6.22836C16.8831 6.53284 17.4672 7.11687 17.7716 7.85195C18 8.40326 18 9.10218 18 10.5H19.5C20.8807 10.5 22 11.6193 22 13C22 14.3807 20.8807 15.5 19.5 15.5H18V17.2C18 18.8802 18 19.7202 17.673 20.362C17.3854 20.9265 16.9265 21.3854 16.362 21.673C15.7202 22 14.8802 22 13.2 22H12.5V20.25C12.5 19.0074 11.4926 18 10.25 18C9.00736 18 8 19.0074 8 20.25V22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V15.5H3.5C4.88071 15.5 6 14.3807 6 13C6 11.6193 4.88071 10.5 3.5 10.5H2C2 9.10218 2 8.40326 2.22836 7.85195C2.53284 7.11687 3.11687 6.53284 3.85195 6.22836C4.40326 6 5.10218 6 6.5 6H7.5V4.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/puzzle-piece-02.svg b/@stellar/design-system/src/assets/icons/puzzle-piece-02.svg
new file mode 100644
index 00000000..cf2ef5d2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/puzzle-piece-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2L15.6 5.6C18 -0.7 24.7 6 18.4 8.4L22 12L18.4 15.6C16 9.3 9.3 16 15.6 18.4L12 22L8.4 18.4C6 24.7 -0.7 18 5.6 15.6L2 12L5.6 8.4C8 14.7 14.7 8 8.4 5.6L12 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/qr-code-01.svg b/@stellar/design-system/src/assets/icons/qr-code-01.svg
new file mode 100644
index 00000000..23a767ee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/qr-code-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 12H12V17M3.01 12H3M8.01 17H8M12.01 21H12M21.01 12H21M3 17H4.5M15.5 12H17.5M3 21H8M12 2V8M17.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V17.6C21 17.0399 21 16.7599 20.891 16.546C20.7951 16.3578 20.6422 16.2049 20.454 16.109C20.2401 16 19.9601 16 19.4 16H17.6C17.0399 16 16.7599 16 16.546 16.109C16.3578 16.2049 16.2049 16.3578 16.109 16.546C16 16.7599 16 17.0399 16 17.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21ZM17.6 8H19.4C19.9601 8 20.2401 8 20.454 7.89101C20.6422 7.79513 20.7951 7.64215 20.891 7.45399C21 7.24008 21 6.96005 21 6.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H17.6C17.0399 3 16.7599 3 16.546 3.10899C16.3578 3.20487 16.2049 3.35785 16.109 3.54601C16 3.75992 16 4.03995 16 4.6V6.4C16 6.96005 16 7.24008 16.109 7.45399C16.2049 7.64215 16.3578 7.79513 16.546 7.89101C16.7599 8 17.0399 8 17.6 8ZM4.6 8H6.4C6.96005 8 7.24008 8 7.45399 7.89101C7.64215 7.79513 7.79513 7.64215 7.89101 7.45399C8 7.24008 8 6.96005 8 6.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V6.4C3 6.96005 3 7.24008 3.10899 7.45399C3.20487 7.64215 3.35785 7.79513 3.54601 7.89101C3.75992 8 4.03995 8 4.6 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/qr-code-02.svg b/@stellar/design-system/src/assets/icons/qr-code-02.svg
new file mode 100644
index 00000000..69997c9b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/qr-code-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 6.5H6.51M17.5 6.5H17.51M6.5 17.5H6.51M13 13H13.01M17.5 17.5H17.51M17 21H21V17M14 16.5V21M21 14H16.5M15.6 10H19.4C19.9601 10 20.2401 10 20.454 9.89101C20.6422 9.79513 20.7951 9.64215 20.891 9.45399C21 9.24008 21 8.96005 21 8.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H15.6C15.0399 3 14.7599 3 14.546 3.10899C14.3578 3.20487 14.2049 3.35785 14.109 3.54601C14 3.75992 14 4.03995 14 4.6V8.4C14 8.96005 14 9.24008 14.109 9.45399C14.2049 9.64215 14.3578 9.79513 14.546 9.89101C14.7599 10 15.0399 10 15.6 10ZM4.6 10H8.4C8.96005 10 9.24008 10 9.45399 9.89101C9.64215 9.79513 9.79513 9.64215 9.89101 9.45399C10 9.24008 10 8.96005 10 8.4V4.6C10 4.03995 10 3.75992 9.89101 3.54601C9.79513 3.35785 9.64215 3.20487 9.45399 3.10899C9.24008 3 8.96005 3 8.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V8.4C3 8.96005 3 9.24008 3.10899 9.45399C3.20487 9.64215 3.35785 9.79513 3.54601 9.89101C3.75992 10 4.03995 10 4.6 10ZM4.6 21H8.4C8.96005 21 9.24008 21 9.45399 20.891C9.64215 20.7951 9.79513 20.6422 9.89101 20.454C10 20.2401 10 19.9601 10 19.4V15.6C10 15.0399 10 14.7599 9.89101 14.546C9.79513 14.3578 9.64215 14.2049 9.45399 14.109C9.24008 14 8.96005 14 8.4 14H4.6C4.03995 14 3.75992 14 3.54601 14.109C3.35785 14.2049 3.20487 14.3578 3.10899 14.546C3 14.7599 3 15.0399 3 15.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/qr-code-2.svg b/@stellar/design-system/src/assets/icons/qr-code-2.svg
deleted file mode 100644
index 22e68145..00000000
--- a/@stellar/design-system/src/assets/icons/qr-code-2.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6744)"><path d="M13 21V19H15V21H13ZM11 19V14H13V19H11ZM19 16V12H21V16H19ZM17 12V10H19V12H17ZM5 14V12H7V14H5ZM3 12V10H5V12H3ZM12 5V3H14V5H12ZM4.5 7.5H7.5V4.5H4.5V7.5ZM4 9C3.71667 9 3.47933 8.904 3.288 8.712C3.096 8.52067 3 8.28333 3 8V4C3 3.71667 3.096 3.479 3.288 3.287C3.47933 3.09567 3.71667 3 4 3H8C8.28333 3 8.521 3.09567 8.713 3.287C8.90433 3.479 9 3.71667 9 4V8C9 8.28333 8.90433 8.52067 8.713 8.712C8.521 8.904 8.28333 9 8 9H4ZM4.5 19.5H7.5V16.5H4.5V19.5ZM4 21C3.71667 21 3.47933 20.904 3.288 20.712C3.096 20.5207 3 20.2833 3 20V16C3 15.7167 3.096 15.479 3.288 15.287C3.47933 15.0957 3.71667 15 4 15H8C8.28333 15 8.521 15.0957 8.713 15.287C8.90433 15.479 9 15.7167 9 16V20C9 20.2833 8.90433 20.5207 8.713 20.712C8.521 20.904 8.28333 21 8 21H4ZM16.5 7.5H19.5V4.5H16.5V7.5ZM16 9C15.7167 9 15.4793 8.904 15.288 8.712C15.096 8.52067 15 8.28333 15 8V4C15 3.71667 15.096 3.479 15.288 3.287C15.4793 3.09567 15.7167 3 16 3H20C20.2833 3 20.5207 3.09567 20.712 3.287C20.904 3.479 21 3.71667 21 4V8C21 8.28333 20.904 8.52067 20.712 8.712C20.5207 8.904 20.2833 9 20 9H16ZM17 21V18H15V16H19V19H21V21H17ZM13 14V12H17V14H13ZM9 14V12H7V10H13V12H11V14H9ZM10 9V5H12V7H14V9H10ZM5.25 6.75V5.25H6.75V6.75H5.25ZM5.25 18.75V17.25H6.75V18.75H5.25ZM17.25 6.75V5.25H18.75V6.75H17.25Z"/></g><defs><clipPath id="clip0_1113_6744"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/qr-code-scanner.svg b/@stellar/design-system/src/assets/icons/qr-code-scanner.svg
deleted file mode 100644
index b6a4da92..00000000
--- a/@stellar/design-system/src/assets/icons/qr-code-scanner.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6741)"><path d="M3 7C2.71667 7 2.47933 6.90433 2.288 6.713C2.096 6.521 2 6.28333 2 6V3C2 2.71667 2.096 2.479 2.288 2.287C2.47933 2.09567 2.71667 2 3 2H6C6.28333 2 6.521 2.09567 6.713 2.287C6.90433 2.479 7 2.71667 7 3C7 3.28333 6.90433 3.52067 6.713 3.712C6.521 3.904 6.28333 4 6 4H4V6C4 6.28333 3.90433 6.521 3.713 6.713C3.521 6.90433 3.28333 7 3 7ZM3 22C2.71667 22 2.47933 21.904 2.288 21.712C2.096 21.5207 2 21.2833 2 21V18C2 17.7167 2.096 17.4793 2.288 17.288C2.47933 17.096 2.71667 17 3 17C3.28333 17 3.521 17.096 3.713 17.288C3.90433 17.4793 4 17.7167 4 18V20H6C6.28333 20 6.521 20.096 6.713 20.288C6.90433 20.4793 7 20.7167 7 21C7 21.2833 6.90433 21.5207 6.713 21.712C6.521 21.904 6.28333 22 6 22H3ZM18 22C17.7167 22 17.4793 21.904 17.288 21.712C17.096 21.5207 17 21.2833 17 21C17 20.7167 17.096 20.4793 17.288 20.288C17.4793 20.096 17.7167 20 18 20H20V18C20 17.7167 20.096 17.4793 20.288 17.288C20.4793 17.096 20.7167 17 21 17C21.2833 17 21.5207 17.096 21.712 17.288C21.904 17.4793 22 17.7167 22 18V21C22 21.2833 21.904 21.5207 21.712 21.712C21.5207 21.904 21.2833 22 21 22H18ZM21 7C20.7167 7 20.4793 6.90433 20.288 6.713C20.096 6.521 20 6.28333 20 6V4H18C17.7167 4 17.4793 3.904 17.288 3.712C17.096 3.52067 17 3.28333 17 3C17 2.71667 17.096 2.479 17.288 2.287C17.4793 2.09567 17.7167 2 18 2H21C21.2833 2 21.5207 2.09567 21.712 2.287C21.904 2.479 22 2.71667 22 3V6C22 6.28333 21.904 6.521 21.712 6.713C21.5207 6.90433 21.2833 7 21 7ZM17.5 17.5H19V19H17.5V17.5ZM17.5 14.5H19V16H17.5V14.5ZM16 16H17.5V17.5H16V16ZM14.5 17.5H16V19H14.5V17.5ZM13 16H14.5V17.5H13V16ZM16 13H17.5V14.5H16V13ZM14.5 14.5H16V16H14.5V14.5ZM13 13H14.5V14.5H13V13ZM19 5V11H13V5H19ZM11 13V19H5V13H11ZM11 5V11H5V5H11ZM9.5 17.5V14.5H6.5V17.5H9.5ZM9.5 9.5V6.5H6.5V9.5H9.5ZM17.5 9.5V6.5H14.5V9.5H17.5Z"/></g><defs><clipPath id="clip0_1113_6741"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/qr-code.svg b/@stellar/design-system/src/assets/icons/qr-code.svg
deleted file mode 100644
index 1951024a..00000000
--- a/@stellar/design-system/src/assets/icons/qr-code.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6747)"><path d="M5 11C4.45 11 3.979 10.804 3.587 10.412C3.19567 10.0207 3 9.55 3 9V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H9C9.55 3 10.021 3.19567 10.413 3.587C10.8043 3.979 11 4.45 11 5V9C11 9.55 10.8043 10.0207 10.413 10.412C10.021 10.804 9.55 11 9 11H5ZM5 9H9V5H5V9ZM5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V15C3 14.45 3.19567 13.979 3.587 13.587C3.979 13.1957 4.45 13 5 13H9C9.55 13 10.021 13.1957 10.413 13.587C10.8043 13.979 11 14.45 11 15V19C11 19.55 10.8043 20.021 10.413 20.413C10.021 20.8043 9.55 21 9 21H5ZM5 19H9V15H5V19ZM15 11C14.45 11 13.9793 10.804 13.588 10.412C13.196 10.0207 13 9.55 13 9V5C13 4.45 13.196 3.979 13.588 3.587C13.9793 3.19567 14.45 3 15 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5V9C21 9.55 20.8043 10.0207 20.413 10.412C20.021 10.804 19.55 11 19 11H15ZM15 9H19V5H15V9ZM19.5 21C19.3667 21 19.25 20.95 19.15 20.85C19.05 20.75 19 20.6333 19 20.5V19.5C19 19.3667 19.05 19.25 19.15 19.15C19.25 19.05 19.3667 19 19.5 19H20.5C20.6333 19 20.75 19.05 20.85 19.15C20.95 19.25 21 19.3667 21 19.5V20.5C21 20.6333 20.95 20.75 20.85 20.85C20.75 20.95 20.6333 21 20.5 21H19.5ZM13.5 15C13.3667 15 13.25 14.95 13.15 14.85C13.05 14.75 13 14.6333 13 14.5V13.5C13 13.3667 13.05 13.25 13.15 13.15C13.25 13.05 13.3667 13 13.5 13H14.5C14.6333 13 14.75 13.05 14.85 13.15C14.95 13.25 15 13.3667 15 13.5V14.5C15 14.6333 14.95 14.75 14.85 14.85C14.75 14.95 14.6333 15 14.5 15H13.5ZM15.5 17C15.3667 17 15.25 16.95 15.15 16.85C15.05 16.75 15 16.6333 15 16.5V15.5C15 15.3667 15.05 15.25 15.15 15.15C15.25 15.05 15.3667 15 15.5 15H16.5C16.6333 15 16.75 15.05 16.85 15.15C16.95 15.25 17 15.3667 17 15.5V16.5C17 16.6333 16.95 16.75 16.85 16.85C16.75 16.95 16.6333 17 16.5 17H15.5ZM13.5 19C13.3667 19 13.25 18.95 13.15 18.85C13.05 18.75 13 18.6333 13 18.5V17.5C13 17.3667 13.05 17.25 13.15 17.15C13.25 17.05 13.3667 17 13.5 17H14.5C14.6333 17 14.75 17.05 14.85 17.15C14.95 17.25 15 17.3667 15 17.5V18.5C15 18.6333 14.95 18.75 14.85 18.85C14.75 18.95 14.6333 19 14.5 19H13.5ZM15.5 21C15.3667 21 15.25 20.95 15.15 20.85C15.05 20.75 15 20.6333 15 20.5V19.5C15 19.3667 15.05 19.25 15.15 19.15C15.25 19.05 15.3667 19 15.5 19H16.5C16.6333 19 16.75 19.05 16.85 19.15C16.95 19.25 17 19.3667 17 19.5V20.5C17 20.6333 16.95 20.75 16.85 20.85C16.75 20.95 16.6333 21 16.5 21H15.5ZM17.5 19C17.3667 19 17.25 18.95 17.15 18.85C17.05 18.75 17 18.6333 17 18.5V17.5C17 17.3667 17.05 17.25 17.15 17.15C17.25 17.05 17.3667 17 17.5 17H18.5C18.6333 17 18.75 17.05 18.85 17.15C18.95 17.25 19 17.3667 19 17.5V18.5C19 18.6333 18.95 18.75 18.85 18.85C18.75 18.95 18.6333 19 18.5 19H17.5ZM17.5 15C17.3667 15 17.25 14.95 17.15 14.85C17.05 14.75 17 14.6333 17 14.5V13.5C17 13.3667 17.05 13.25 17.15 13.15C17.25 13.05 17.3667 13 17.5 13H18.5C18.6333 13 18.75 13.05 18.85 13.15C18.95 13.25 19 13.3667 19 13.5V14.5C19 14.6333 18.95 14.75 18.85 14.85C18.75 14.95 18.6333 15 18.5 15H17.5ZM19.5 17C19.3667 17 19.25 16.95 19.15 16.85C19.05 16.75 19 16.6333 19 16.5V15.5C19 15.3667 19.05 15.25 19.15 15.15C19.25 15.05 19.3667 15 19.5 15H20.5C20.6333 15 20.75 15.05 20.85 15.15C20.95 15.25 21 15.3667 21 15.5V16.5C21 16.6333 20.95 16.75 20.85 16.85C20.75 16.95 20.6333 17 20.5 17H19.5Z"/></g><defs><clipPath id="clip0_1113_6747"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/receipt-check.svg b/@stellar/design-system/src/assets/icons/receipt-check.svg
new file mode 100644
index 00000000..160b298e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/receipt-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/receipt.svg b/@stellar/design-system/src/assets/icons/receipt.svg
new file mode 100644
index 00000000..c56ad0b5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/receipt.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7.8C4 6.11984 4 5.27976 4.32698 4.63803C4.6146 4.07354 5.07354 3.6146 5.63803 3.32698C6.27976 3 7.11984 3 8.8 3H15.2C16.8802 3 17.7202 3 18.362 3.32698C18.9265 3.6146 19.3854 4.07354 19.673 4.63803C20 5.27976 20 6.11984 20 7.8V21L17.25 19L14.75 21L12 19L9.25 21L6.75 19L4 21V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/recording-01.svg b/@stellar/design-system/src/assets/icons/recording-01.svg
new file mode 100644
index 00000000..32283573
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/recording-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 10L3 14M7.5 6L7.5 18M12 3V21M16.5 6V18M21 10V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/recording-02.svg b/@stellar/design-system/src/assets/icons/recording-02.svg
new file mode 100644
index 00000000..e17b80a8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/recording-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 10L3 14M7.5 11V13M12 6V18M16.5 3V21M21 10V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/recording-03.svg b/@stellar/design-system/src/assets/icons/recording-03.svg
new file mode 100644
index 00000000..bc46884b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/recording-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 11V13M10 9V15M14 7V17M18 11V13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/redeem.svg b/@stellar/design-system/src/assets/icons/redeem.svg
deleted file mode 100644
index 6bceb44d..00000000
--- a/@stellar/design-system/src/assets/icons/redeem.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6738)"><path d="M4 17V19H20V17H4ZM4 21C3.45 21 2.97933 20.8043 2.588 20.413C2.196 20.021 2 19.55 2 19V8C2 7.45 2.196 6.97933 2.588 6.588C2.97933 6.196 3.45 6 4 6H6.2C6.11667 5.85 6.06233 5.69167 6.037 5.525C6.01233 5.35833 6 5.18333 6 5C6 4.16667 6.29167 3.45833 6.875 2.875C7.45833 2.29167 8.16667 2 9 2C9.5 2 9.96233 2.129 10.387 2.387C10.8123 2.64567 11.1833 2.96667 11.5 3.35L12 4L12.5 3.35C12.8 2.95 13.1667 2.625 13.6 2.375C14.0333 2.125 14.5 2 15 2C15.8333 2 16.5417 2.29167 17.125 2.875C17.7083 3.45833 18 4.16667 18 5C18 5.18333 17.9873 5.35833 17.962 5.525C17.9373 5.69167 17.8833 5.85 17.8 6H20C20.55 6 21.021 6.196 21.413 6.588C21.8043 6.97933 22 7.45 22 8V19C22 19.55 21.8043 20.021 21.413 20.413C21.021 20.8043 20.55 21 20 21H4ZM4 14H20V8H14.9L16.425 10.075C16.575 10.275 16.6207 10.504 16.562 10.762C16.504 11.0207 16.3833 11.2417 16.2 11.425C15.9833 11.5917 15.7417 11.65 15.475 11.6C15.2083 11.55 14.9917 11.4167 14.825 11.2L12 7.4L9.175 11.225C8.99167 11.4583 8.76267 11.5957 8.488 11.637C8.21267 11.679 7.98333 11.6083 7.8 11.425C7.56667 11.2583 7.42933 11.0417 7.388 10.775C7.346 10.5083 7.40833 10.2667 7.575 10.05L9.05 8H4V14ZM9 6C9.28333 6 9.521 5.90433 9.713 5.713C9.90433 5.521 10 5.28333 10 5C10 4.71667 9.90433 4.479 9.713 4.287C9.521 4.09567 9.28333 4 9 4C8.71667 4 8.47933 4.09567 8.288 4.287C8.096 4.479 8 4.71667 8 5C8 5.28333 8.096 5.521 8.288 5.713C8.47933 5.90433 8.71667 6 9 6ZM15 6C15.2833 6 15.521 5.90433 15.713 5.713C15.9043 5.521 16 5.28333 16 5C16 4.71667 15.9043 4.479 15.713 4.287C15.521 4.09567 15.2833 4 15 4C14.7167 4 14.4793 4.09567 14.288 4.287C14.096 4.479 14 4.71667 14 5C14 5.28333 14.096 5.521 14.288 5.713C14.4793 5.90433 14.7167 6 15 6Z"/></g><defs><clipPath id="clip0_1113_6738"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/reflect-01.svg b/@stellar/design-system/src/assets/icons/reflect-01.svg
new file mode 100644
index 00000000..a914ea3d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/reflect-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3V6M12 10.5V13.5M12 18V21M3.28777 7.99059L7.67567 11.3659C7.95617 11.5817 8.09641 11.6895 8.14681 11.821C8.19098 11.9363 8.19098 12.0637 8.14681 12.179C8.09641 12.3105 7.95617 12.4183 7.67567 12.6341L3.28777 16.0094C2.87415 16.3276 2.66735 16.4867 2.49387 16.4845C2.34295 16.4827 2.20094 16.4128 2.10745 16.2943C2 16.1581 2 15.8971 2 15.3753V8.62469C2 8.10286 2 7.84195 2.10745 7.70574C2.20094 7.58724 2.34295 7.51732 2.49387 7.51547C2.66735 7.51334 2.87415 7.67243 3.28777 7.99059ZM20.7122 7.99059L16.3243 11.3659C16.0438 11.5817 15.9036 11.6895 15.8532 11.821C15.809 11.9363 15.809 12.0637 15.8532 12.179C15.9036 12.3105 16.0438 12.4183 16.3243 12.6341L20.7122 16.0094C21.1258 16.3276 21.3327 16.4867 21.5061 16.4845C21.6571 16.4827 21.7991 16.4128 21.8925 16.2943C22 16.1581 22 15.8971 22 15.3753V8.62469C22 8.10286 22 7.84195 21.8925 7.70574C21.7991 7.58724 21.6571 7.51732 21.5061 7.51547C21.3327 7.51334 21.1258 7.67243 20.7122 7.99059Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/reflect-02.svg b/@stellar/design-system/src/assets/icons/reflect-02.svg
new file mode 100644
index 00000000..f6823a94
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/reflect-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3V6M12 10.5V13.5M12 18V21M22 12H15.5M15.5 12L19.5 16M15.5 12L19.5 8M2 12H8.5M8.5 12L4.5 16M8.5 12L4.5 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-ccw-01.svg b/@stellar/design-system/src/assets/icons/refresh-ccw-01.svg
new file mode 100644
index 00000000..1338fbb1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-ccw-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-ccw-02.svg b/@stellar/design-system/src/assets/icons/refresh-ccw-02.svg
new file mode 100644
index 00000000..209d9fa3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-ccw-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-ccw-03.svg b/@stellar/design-system/src/assets/icons/refresh-ccw-03.svg
new file mode 100644
index 00000000..034b7378
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-ccw-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 2C14 2 14.8492 2.12132 18.364 5.63604C21.8787 9.15076 21.8787 14.8492 18.364 18.364C17.1187 19.6092 15.5993 20.4133 14 20.7762M14 2L20 2M14 2L14 8M10 21.9998C10 21.9998 9.15076 21.8785 5.63604 18.3638C2.12132 14.849 2.12132 9.15056 5.63604 5.63584C6.88131 4.39057 8.40072 3.5865 10 3.22363M10 21.9998L4 22M10 21.9998L10 16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-ccw-04.svg b/@stellar/design-system/src/assets/icons/refresh-ccw-04.svg
new file mode 100644
index 00000000..809a84ec
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-ccw-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 18.8746C19.1213 17.329 20.5 14.8255 20.5 12C20.5 7.30555 16.6944 3.49998 12 3.49998H11.5M12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.17444 4.87867 6.67091 7 5.12537M11 22.4L13 20.4L11 18.4M13 5.59998L11 3.59998L13 1.59998" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-ccw-05.svg b/@stellar/design-system/src/assets/icons/refresh-ccw-05.svg
new file mode 100644
index 00000000..4667fe01
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-ccw-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.54661 19.7675C10.9457 20.8319 13.8032 20.7741 16.2502 19.3613C20.3157 17.0141 21.7086 11.8156 19.3614 7.75008L19.1114 7.31706M4.63851 16.2502C2.2913 12.1847 3.68424 6.98619 7.74972 4.63898C10.1967 3.22621 13.0542 3.16841 15.4533 4.23277M2.49341 16.3338L5.22546 17.0659L5.95751 14.3338M18.0426 9.6659L18.7747 6.93385L21.5067 7.6659" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-cw-01.svg b/@stellar/design-system/src/assets/icons/refresh-cw-01.svg
new file mode 100644
index 00000000..2181bc77
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-cw-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10C22 10 19.995 7.26822 18.3662 5.63824C16.7373 4.00827 14.4864 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.1031 21 19.5649 18.2543 20.6482 14.5M22 10V4M22 10H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-cw-02.svg b/@stellar/design-system/src/assets/icons/refresh-cw-02.svg
new file mode 100644
index 00000000..0022b59b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-cw-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 14C2 14 2.12132 14.8492 5.63604 18.364C9.15076 21.8787 14.8492 21.8787 18.364 18.364C19.6092 17.1187 20.4133 15.5993 20.7762 14M2 14V20M2 14H8M22 10C22 10 21.8787 9.15076 18.364 5.63604C14.8492 2.12132 9.15076 2.12132 5.63604 5.63604C4.39076 6.88131 3.58669 8.40072 3.22383 10M22 10V4M22 10H16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-cw-03.svg b/@stellar/design-system/src/assets/icons/refresh-cw-03.svg
new file mode 100644
index 00000000..d0909966
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-cw-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 22C14 22 14.8492 21.8787 18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C17.1187 4.39077 15.5993 3.58669 14 3.22383M14 22H20M14 22L14 16M10 2.00019C10 2.00019 9.15076 2.12152 5.63604 5.63624C2.12132 9.15095 2.12132 14.8494 5.63604 18.3642C6.88131 19.6094 8.40072 20.4135 10 20.7764M10 2.00019L4 2M10 2.00019L10 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-cw-04.svg b/@stellar/design-system/src/assets/icons/refresh-cw-04.svg
new file mode 100644
index 00000000..d66dbccb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-cw-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 5.12537C19.1213 6.67091 20.5 9.17444 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5H11.5M7 18.8746C4.87867 17.329 3.5 14.8255 3.5 12C3.5 7.30555 7.30558 3.49998 12 3.49998H12.5M13 22.4L11 20.4L13 18.4M11 5.59998L13 3.59998L11 1.59998" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-cw-05.svg b/@stellar/design-system/src/assets/icons/refresh-cw-05.svg
new file mode 100644
index 00000000..51e51c52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/refresh-cw-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.453 12.893C20.1752 15.5029 18.6964 17.9487 16.2494 19.3614C12.1839 21.7086 6.98539 20.3157 4.63818 16.2502L4.38818 15.8172M3.54613 11.107C3.82393 8.49711 5.30272 6.05138 7.74971 4.63862C11.8152 2.29141 17.0137 3.68434 19.3609 7.74983L19.6109 8.18285M3.49316 18.0661L4.22521 15.334L6.95727 16.0661M17.0424 7.93401L19.7744 8.66606L20.5065 5.93401" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-horiz.svg b/@stellar/design-system/src/assets/icons/refresh-horiz.svg
deleted file mode 100644
index 2cfac490..00000000
--- a/@stellar/design-system/src/assets/icons/refresh-horiz.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6735)"><path d="M12.05 20C9.81672 20 7.91672 19.225 6.35005 17.675C4.78338 16.125 4.00005 14.2333 4.00005 12V11.825L3.10005 12.725C2.91672 12.9083 2.68338 13 2.40005 13C2.11672 13 1.88338 12.9083 1.70005 12.725C1.51672 12.5417 1.42505 12.3083 1.42505 12.025C1.42505 11.7417 1.51672 11.5083 1.70005 11.325L4.30005 8.725C4.40005 8.625 4.50838 8.554 4.62505 8.512C4.74172 8.47067 4.86672 8.45 5.00005 8.45C5.13338 8.45 5.25838 8.47067 5.37505 8.512C5.49172 8.554 5.60005 8.625 5.70005 8.725L8.30005 11.325C8.48338 11.5083 8.57505 11.7417 8.57505 12.025C8.57505 12.3083 8.48338 12.5417 8.30005 12.725C8.11672 12.9083 7.88338 13 7.60005 13C7.31672 13 7.08338 12.9083 6.90005 12.725L6.00005 11.825V12C6.00005 13.6667 6.58772 15.0833 7.76305 16.25C8.93772 17.4167 10.3667 18 12.05 18C12.3834 18 12.7084 17.971 13.025 17.913C13.3417 17.8543 13.6584 17.7667 13.975 17.65C14.1417 17.5833 14.321 17.5667 14.513 17.6C14.7044 17.6333 14.8667 17.7167 15 17.85C15.3 18.15 15.421 18.4707 15.363 18.812C15.3044 19.154 15.0834 19.3917 14.7 19.525C14.2667 19.675 13.8294 19.7917 13.388 19.875C12.946 19.9583 12.5 20 12.05 20ZM19 15.55C18.8667 15.55 18.7417 15.529 18.625 15.487C18.5084 15.4457 18.4 15.375 18.3 15.275L15.7 12.675C15.5167 12.4917 15.425 12.2583 15.425 11.975C15.425 11.6917 15.5167 11.4583 15.7 11.275C15.8834 11.0917 16.1167 11 16.4 11C16.6834 11 16.9167 11.0917 17.1 11.275L18 12.175V12C18 10.3333 17.4127 8.91667 16.238 7.75C15.0627 6.58333 13.6334 6 11.95 6C11.6167 6 11.2917 6.02933 10.975 6.088C10.6584 6.146 10.3417 6.23333 10.025 6.35C9.85838 6.41667 9.67938 6.43333 9.48805 6.4C9.29605 6.36667 9.13338 6.28333 9.00005 6.15C8.70005 5.85 8.57905 5.529 8.63705 5.187C8.69572 4.84567 8.91672 4.60833 9.30005 4.475C9.73338 4.325 10.171 4.20833 10.613 4.125C11.0544 4.04167 11.5 4 11.95 4C14.1834 4 16.0834 4.775 17.65 6.325C19.2167 7.875 20 9.76667 20 12V12.175L20.9 11.275C21.0834 11.0917 21.3167 11 21.6 11C21.8834 11 22.1167 11.0917 22.3 11.275C22.4834 11.4583 22.5751 11.6917 22.5751 11.975C22.5751 12.2583 22.4834 12.4917 22.3 12.675L19.7001 15.275C19.6001 15.375 19.4917 15.4457 19.375 15.487C19.2584 15.529 19.1334 15.55 19 15.55Z"/></g><defs><clipPath id="clip0_1113_6735"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/refresh-vert.svg b/@stellar/design-system/src/assets/icons/refresh-vert.svg
deleted file mode 100644
index 490d9196..00000000
--- a/@stellar/design-system/src/assets/icons/refresh-vert.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6732)"><path d="M4.475 14.7C4.30833 14.2667 4.18767 13.829 4.113 13.387C4.03767 12.9457 4 12.5 4 12.05C4 9.81665 4.775 7.91665 6.325 6.34999C7.875 4.78332 9.76667 3.99999 12 3.99999H12.175L11.275 3.09999C11.0917 2.91665 11 2.68332 11 2.39999C11 2.11665 11.0917 1.88332 11.275 1.69999C11.4583 1.51665 11.6917 1.42499 11.975 1.42499C12.2583 1.42499 12.4917 1.51665 12.675 1.69999L15.275 4.29999C15.375 4.39999 15.446 4.50832 15.488 4.62499C15.5293 4.74165 15.55 4.86665 15.55 4.99999C15.55 5.13332 15.5293 5.25832 15.488 5.37499C15.446 5.49165 15.375 5.59999 15.275 5.69999L12.675 8.29999C12.4917 8.48332 12.2583 8.57499 11.975 8.57499C11.6917 8.57499 11.4583 8.48332 11.275 8.29999C11.0917 8.11665 11 7.88332 11 7.59999C11 7.31665 11.0917 7.08332 11.275 6.89999L12.175 5.99999H12C10.3333 5.99999 8.91667 6.58732 7.75 7.76199C6.58333 8.93732 6 10.3667 6 12.05C6 12.3833 6.02933 12.7083 6.088 13.025C6.146 13.3417 6.23333 13.6583 6.35 13.975C6.41667 14.1417 6.43333 14.3207 6.4 14.512C6.36667 14.704 6.28333 14.8667 6.15 15C5.85 15.3 5.52933 15.421 5.188 15.363C4.846 15.3043 4.60833 15.0833 4.475 14.7ZM11.325 22.3L8.725 19.7C8.625 19.6 8.55433 19.4917 8.513 19.375C8.471 19.2583 8.45 19.1333 8.45 19C8.45 18.8667 8.471 18.7417 8.513 18.625C8.55433 18.5083 8.625 18.4 8.725 18.3L11.325 15.7C11.5083 15.5167 11.7417 15.425 12.025 15.425C12.3083 15.425 12.5417 15.5167 12.725 15.7C12.9083 15.8833 13 16.1167 13 16.4C13 16.6833 12.9083 16.9167 12.725 17.1L11.825 18H12C13.6667 18 15.0833 17.4127 16.25 16.238C17.4167 15.0627 18 13.6333 18 11.95C18 11.6167 17.971 11.2917 17.913 10.975C17.8543 10.6583 17.7667 10.3417 17.65 10.025C17.5833 9.85832 17.5667 9.67899 17.6 9.48699C17.6333 9.29565 17.7167 9.13332 17.85 8.99999C18.15 8.69999 18.4707 8.57899 18.812 8.63699C19.154 8.69565 19.3917 8.91665 19.525 9.29999C19.6917 9.73332 19.8127 10.1707 19.888 10.612C19.9627 11.054 20 11.5 20 11.95C20 14.1833 19.225 16.0833 17.675 17.65C16.125 19.2167 14.2333 20 12 20H11.825L12.725 20.9C12.9083 21.0833 13 21.3167 13 21.6C13 21.8833 12.9083 22.1167 12.725 22.3C12.5417 22.4833 12.3083 22.575 12.025 22.575C11.7417 22.575 11.5083 22.4833 11.325 22.3Z"/></g><defs><clipPath id="clip0_1113_6732"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/remove.svg b/@stellar/design-system/src/assets/icons/remove.svg
deleted file mode 100644
index 0ccc317b..00000000
--- a/@stellar/design-system/src/assets/icons/remove.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><mask id="mask0_1861_16285" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24"/></mask><g mask="url(#mask0_1861_16285)"><path d="M6 13C5.71667 13 5.47917 12.9042 5.2875 12.7125C5.09583 12.5208 5 12.2833 5 12C5 11.7167 5.09583 11.4792 5.2875 11.2875C5.47917 11.0958 5.71667 11 6 11H18C18.2833 11 18.5208 11.0958 18.7125 11.2875C18.9042 11.4792 19 11.7167 19 12C19 12.2833 18.9042 12.5208 18.7125 12.7125C18.5208 12.9042 18.2833 13 18 13H6Z"/></g></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/repeat-01.svg b/@stellar/design-system/src/assets/icons/repeat-01.svg
new file mode 100644
index 00000000..5ed78ae0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/repeat-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 2L21 6M21 6L17 10M21 6H7.8C6.11984 6 5.27976 6 4.63803 6.32698C4.07354 6.6146 3.6146 7.07354 3.32698 7.63803C3 8.27976 3 9.11984 3 10.8V11M3 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V13M3 18L7 22M3 18L7 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/repeat-02.svg b/@stellar/design-system/src/assets/icons/repeat-02.svg
new file mode 100644
index 00000000..59b1cdee
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/repeat-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 2L14 5M14 5L11 8M14 5H6.8C5.11984 5 4.27976 5 3.63803 5.32698C3.07354 5.6146 2.6146 6.07354 2.32698 6.63803C2 7.27976 2 8.11984 2 9.8V15.5C2 15.9644 2 16.1966 2.02567 16.3916C2.2029 17.7378 3.26222 18.7971 4.60842 18.9743C4.80337 19 5.03558 19 5.5 19M10 19H17.2C18.8802 19 19.7202 19 20.362 18.673C20.9265 18.3854 21.3854 17.9265 21.673 17.362C22 16.7202 22 15.8802 22 14.2V8.5C22 8.03558 22 7.80337 21.9743 7.60842C21.7971 6.26222 20.7378 5.2029 19.3916 5.02567C19.1966 5 18.9644 5 18.5 5M10 19L13 22M10 19L13 16" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/repeat-03.svg b/@stellar/design-system/src/assets/icons/repeat-03.svg
new file mode 100644
index 00000000..5f6042ec
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/repeat-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 22L10 19M10 19L13 16M10 19H15C18.866 19 22 15.866 22 12C22 9.2076 20.3649 6.7971 18 5.67363M6 18.3264C3.63505 17.2029 2 14.7924 2 12C2 8.13401 5.13401 5 9 5H14M14 5L11 2M14 5L11 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/repeat-04.svg b/@stellar/design-system/src/assets/icons/repeat-04.svg
new file mode 100644
index 00000000..215956f7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/repeat-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 9.17444 19.1213 6.67091 17 5.12537M13 22.4L11 20.4L13 18.4M12 3.49998C7.30558 3.49998 3.5 7.30555 3.5 12C3.5 14.8255 4.87867 17.329 7 18.8746M11 5.59998L13 3.59998L11 1.59998" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/replay.svg b/@stellar/design-system/src/assets/icons/replay.svg
deleted file mode 100644
index dbbe4dda..00000000
--- a/@stellar/design-system/src/assets/icons/replay.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6729)"><path d="M12 22C9.66667 22 7.65433 21.2333 5.963 19.7C4.271 18.1667 3.3 16.2667 3.05 14C3.01667 13.7333 3.096 13.5 3.288 13.3C3.47933 13.1 3.71667 13 4 13C4.26667 13 4.50433 13.0957 4.713 13.287C4.921 13.479 5.04167 13.7167 5.075 14C5.30833 15.7167 6.075 17.146 7.375 18.288C8.675 19.4293 10.2167 20 12 20C13.95 20 15.604 19.3207 16.962 17.962C18.3207 16.604 19 14.95 19 13C19 11.05 18.3207 9.39565 16.962 8.03699C15.604 6.67899 13.95 5.99999 12 5.99999H11.85L12.725 6.87499C12.9083 7.05832 13 7.29165 13 7.57499C13 7.85832 12.9083 8.09165 12.725 8.27499C12.525 8.47499 12.2833 8.57499 12 8.57499C11.7167 8.57499 11.4833 8.47499 11.3 8.27499L8.7 5.69999C8.6 5.59999 8.52933 5.49165 8.488 5.37499C8.446 5.25832 8.425 5.13332 8.425 4.99999C8.425 4.86665 8.446 4.74165 8.488 4.62499C8.52933 4.50832 8.6 4.39999 8.7 4.29999L11.3 1.69999C11.4833 1.51665 11.7167 1.42499 12 1.42499C12.2833 1.42499 12.525 1.51665 12.725 1.69999C12.9083 1.89999 13 2.14165 13 2.42499C13 2.70832 12.9083 2.94165 12.725 3.12499L11.85 3.99999H12C13.25 3.99999 14.421 4.23765 15.513 4.71299C16.6043 5.18765 17.5543 5.82899 18.363 6.63699C19.171 7.44565 19.8127 8.39565 20.288 9.48699C20.7627 10.579 21 11.75 21 13C21 14.25 20.7627 15.4207 20.288 16.512C19.8127 17.604 19.171 18.554 18.363 19.362C17.5543 20.1707 16.6043 20.8127 15.513 21.288C14.421 21.7627 13.25 22 12 22Z"/></g><defs><clipPath id="clip0_1113_6729"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/reverse-left.svg b/@stellar/design-system/src/assets/icons/reverse-left.svg
new file mode 100644
index 00000000..899fd145
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/reverse-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7H14C17.3137 7 20 9.68629 20 13C20 16.3137 17.3137 19 14 19H4M4 7L8 3M4 7L8 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/reverse-right.svg b/@stellar/design-system/src/assets/icons/reverse-right.svg
new file mode 100644
index 00000000..f190840f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/reverse-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 7H10C6.68629 7 4 9.68629 4 13C4 16.3137 6.68629 19 10 19H20M20 7L16 3M20 7L16 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/right-indent-01.svg b/@stellar/design-system/src/assets/icons/right-indent-01.svg
new file mode 100644
index 00000000..535db106
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/right-indent-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 4H3M21 20H3M12 9.25H3M12 14.75H3M19.72 8.46L15.8533 11.36C15.5638 11.5771 15.4191 11.6857 15.3673 11.8188C15.322 11.9353 15.322 12.0647 15.3673 12.1812C15.4191 12.3143 15.5638 12.4229 15.8533 12.64L19.72 15.54C20.132 15.849 20.338 16.0035 20.5104 15.9999C20.6604 15.9968 20.8012 15.9264 20.8937 15.8082C21 15.6725 21 15.415 21 14.9V9.1C21 8.58503 21 8.32754 20.8937 8.19175C20.8012 8.07358 20.6604 8.00323 20.5104 8.00011C20.338 7.99652 20.132 8.15102 19.72 8.46Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/right-indent-02.svg b/@stellar/design-system/src/assets/icons/right-indent-02.svg
new file mode 100644
index 00000000..3c64f8af
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/right-indent-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 9.24995H3M12 3.99995L3 3.99995M21 14.75H3M21 20H3M19.72 2.95995L15.8533 5.85995C15.5638 6.07707 15.4191 6.18563 15.3673 6.31872C15.322 6.43529 15.322 6.56462 15.3673 6.68119C15.4191 6.81427 15.5638 6.92283 15.8533 7.13995L19.72 10.04C20.132 10.3489 20.338 10.5034 20.5104 10.4998C20.6604 10.4967 20.8012 10.4264 20.8937 10.3082C21 10.1724 21 9.91493 21 9.39995V3.59995C21 3.08498 21 2.82749 20.8937 2.6917C20.8012 2.57354 20.6604 2.50318 20.5104 2.50006C20.338 2.49648 20.132 2.65097 19.72 2.95995Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rocket-01.svg b/@stellar/design-system/src/assets/icons/rocket-01.svg
new file mode 100644
index 00000000..9bd475cc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rocket-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.9996 10.9999L3.49964 20.4999M14.0181 3.53838C15.2361 4.34658 16.4068 5.29941 17.5008 6.3934C18.6042 7.49683 19.564 8.67831 20.3767 9.90766M9.2546 7.89605L6.37973 6.93776C6.04865 6.8274 5.68398 6.89763 5.41756 7.12306L2.56041 9.54065C1.97548 10.0356 2.14166 10.9775 2.86064 11.2424L5.56784 12.2398M11.6807 18.3524L12.6781 21.0596C12.943 21.7786 13.8849 21.9448 14.3798 21.3599L16.7974 18.5027C17.0228 18.2363 17.0931 17.8716 16.9827 17.5405L16.0244 14.6657M19.3482 2.27063L14.4418 3.08838C13.9119 3.17668 13.426 3.43709 13.0591 3.82932L6.446 10.8985C4.73185 12.7308 4.77953 15.5924 6.55378 17.3667C8.32803 19.1409 11.1896 19.1886 13.022 17.4744L20.0911 10.8614C20.4834 10.4944 20.7438 10.0085 20.8321 9.47869L21.6498 4.57222C21.8754 3.21858 20.7019 2.04503 19.3482 2.27063Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rocket-02.svg b/@stellar/design-system/src/assets/icons/rocket-02.svg
new file mode 100644
index 00000000..61e0750f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rocket-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15L9 12M12 15C13.3968 14.4687 14.7369 13.7987 16 13M12 15V20C12 20 15.03 19.45 16 18C17.08 16.38 16 13 16 13M9 12C9.53214 10.6194 10.2022 9.29607 11 8.05C12.1652 6.18699 13.7876 4.65305 15.713 3.5941C17.6384 2.53514 19.8027 1.98637 22 2C22 4.72 21.22 9.5 16 13M9 12H4C4 12 4.55 8.97 6 8C7.62 6.92 11 8 11 8M4.5 16.5C3 17.76 2.5 21.5 2.5 21.5C2.5 21.5 6.24 21 7.5 19.5C8.21 18.66 8.2 17.37 7.41 16.59C7.02131 16.219 6.50929 16.0046 5.97223 15.988C5.43516 15.9714 4.91088 16.1537 4.5 16.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/roller-brush.svg b/@stellar/design-system/src/assets/icons/roller-brush.svg
new file mode 100644
index 00000000..7f4d941c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/roller-brush.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 4.5C19 4.96466 19 5.19698 18.9616 5.39018C18.8038 6.18356 18.1836 6.80376 17.3902 6.96157C17.197 7 16.9647 7 16.5 7H5.5C5.03534 7 4.80302 7 4.60982 6.96157C3.81644 6.80376 3.19624 6.18356 3.03843 5.39018C3 5.19698 3 4.96466 3 4.5C3 4.03534 3 3.80302 3.03843 3.60982C3.19624 2.81644 3.81644 2.19624 4.60982 2.03843C4.80302 2 5.03534 2 5.5 2H16.5C16.9647 2 17.197 2 17.3902 2.03843C18.1836 2.19624 18.8038 2.81644 18.9616 3.60982C19 3.80302 19 4.03534 19 4.5ZM19 4.5C19.9319 4.5 20.3978 4.5 20.7654 4.65224C21.2554 4.85523 21.6448 5.24458 21.8478 5.73463C22 6.10218 22 6.56812 22 7.5V7.8C22 8.9201 22 9.48016 21.782 9.90798C21.5903 10.2843 21.2843 10.5903 20.908 10.782C20.4802 11 19.9201 11 18.8 11H15.2C14.0799 11 13.5198 11 13.092 11.218C12.7157 11.4097 12.4097 11.7157 12.218 12.092C12 12.5198 12 13.0799 12 14.2V15M11.6 22H12.4C12.9601 22 13.2401 22 13.454 21.891C13.6422 21.7951 13.7951 21.6422 13.891 21.454C14 21.2401 14 20.9601 14 20.4V16.6C14 16.0399 14 15.7599 13.891 15.546C13.7951 15.3578 13.6422 15.2049 13.454 15.109C13.2401 15 12.9601 15 12.4 15H11.6C11.0399 15 10.7599 15 10.546 15.109C10.3578 15.2049 10.2049 15.3578 10.109 15.546C10 15.7599 10 16.0399 10 16.6V20.4C10 20.9601 10 21.2401 10.109 21.454C10.2049 21.6422 10.3578 21.7951 10.546 21.891C10.7599 22 11.0399 22 11.6 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/route.svg b/@stellar/design-system/src/assets/icons/route.svg
new file mode 100644
index 00000000..4dc659c5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/route.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.5 5H11.9344C14.9816 5 16.5053 5 17.0836 5.54729C17.5836 6.02037 17.8051 6.71728 17.6702 7.39221C17.514 8.17302 16.2701 9.05285 13.7823 10.8125L9.71772 13.6875C7.2299 15.4471 5.98599 16.327 5.82984 17.1078C5.69486 17.7827 5.91642 18.4796 6.41636 18.9527C6.99474 19.5 8.51836 19.5 11.5656 19.5H12.5M8 5C8 6.65685 6.65685 8 5 8C3.34315 8 2 6.65685 2 5C2 3.34315 3.34315 2 5 2C6.65685 2 8 3.34315 8 5ZM22 19C22 20.6569 20.6569 22 19 22C17.3431 22 16 20.6569 16 19C16 17.3431 17.3431 16 19 16C20.6569 16 22 17.3431 22 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rows-01.svg b/@stellar/design-system/src/assets/icons/rows-01.svg
new file mode 100644
index 00000000..444567bb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rows-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.8 10C18.9201 10 19.4802 10 19.908 9.78201C20.2843 9.59027 20.5903 9.28431 20.782 8.90798C21 8.48016 21 7.92011 21 6.8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.7157 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3L6.2 3C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.07989 3 6.2L3 6.8C3 7.9201 3 8.48016 3.21799 8.90798C3.40973 9.28431 3.71569 9.59027 4.09202 9.78201C4.51984 10 5.07989 10 6.2 10L17.8 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.8 21C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4802 21 18.9201 21 17.8V17.2C21 16.0799 21 15.5198 20.782 15.092C20.5903 14.7157 20.2843 14.4097 19.908 14.218C19.4802 14 18.9201 14 17.8 14L6.2 14C5.0799 14 4.51984 14 4.09202 14.218C3.71569 14.4097 3.40973 14.7157 3.21799 15.092C3 15.5198 3 16.0799 3 17.2L3 17.8C3 18.9201 3 19.4802 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rows-02.svg b/@stellar/design-system/src/assets/icons/rows-02.svg
new file mode 100644
index 00000000..a8600016
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rows-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 12H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rows-03.svg b/@stellar/design-system/src/assets/icons/rows-03.svg
new file mode 100644
index 00000000..546ce6ce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rows-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9H21M3 15H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rss-01.svg b/@stellar/design-system/src/assets/icons/rss-01.svg
new file mode 100644
index 00000000..22142e92
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rss-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 11C6.38695 11 8.67613 11.9482 10.364 13.636C12.0518 15.3239 13 17.6131 13 20M4 4C8.24346 4 12.3131 5.68571 15.3137 8.68629C18.3143 11.6869 20 15.7565 20 20M6 19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19C4 18.4477 4.44772 18 5 18C5.55228 18 6 18.4477 6 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/rss-02.svg b/@stellar/design-system/src/assets/icons/rss-02.svg
new file mode 100644
index 00000000..8a7cad84
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/rss-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3.00024 13.0225C8.18522 12.2429 11.7559 15.8146 10.9774 20.9996M3.00024 8.03784C10.938 7.25824 16.7417 13.0619 15.9621 20.9997M3.00024 3.05212C13.6919 2.27364 21.7264 10.3082 20.948 20.9998M5 21C3.89566 21 3 20.1043 3 19C3 17.8957 3.89566 17 5 17C6.10434 17 7 17.8957 7 19C7 20.1043 6.10434 21 5 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/ruler.svg b/@stellar/design-system/src/assets/icons/ruler.svg
new file mode 100644
index 00000000..ca1db562
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/ruler.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 5.50001L16 7.00001M11.5 8.50001L13 10M8.5 11.5L10 13M5.5 14.5L7 16M2.56564 17.5657L6.43427 21.4344C6.63228 21.6324 6.73128 21.7314 6.84545 21.7685C6.94587 21.8011 7.05404 21.8011 7.15446 21.7685C7.26863 21.7314 7.36763 21.6324 7.56564 21.4344L21.4343 7.56573C21.6323 7.36772 21.7313 7.26872 21.7684 7.15455C21.801 7.05413 21.801 6.94596 21.7684 6.84554C21.7313 6.73137 21.6323 6.63237 21.4343 6.43436L17.5656 2.56573C17.3676 2.36772 17.2686 2.26872 17.1545 2.23163C17.054 2.199 16.9459 2.199 16.8454 2.23163C16.7313 2.26872 16.6323 2.36772 16.4343 2.56573L2.56564 16.4344C2.36763 16.6324 2.26863 16.7314 2.23153 16.8455C2.1989 16.946 2.1989 17.0541 2.23153 17.1546C2.26863 17.2687 2.36763 17.3677 2.56564 17.5657Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/safe.svg b/@stellar/design-system/src/assets/icons/safe.svg
new file mode 100644
index 00000000..d022cfd2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/safe.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 21H9M15 21H18M17.5 6.5V14.5M3 6.2L3 14.8C3 15.9201 3 16.4802 3.21799 16.908C3.40973 17.2843 3.71569 17.5903 4.09202 17.782C4.51984 18 5.07989 18 6.2 18L17.8 18C18.9201 18 19.4802 18 19.908 17.782C20.2843 17.5903 20.5903 17.2843 20.782 16.908C21 16.4802 21 15.9201 21 14.8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.7157 20.2843 3.40974 19.908 3.21799C19.4802 3 18.9201 3 17.8 3L6.2 3C5.0799 3 4.51984 3 4.09202 3.21799C3.7157 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.07989 3 6.2ZM11.5 10.5C11.5 11.8807 10.3807 13 9 13C7.61929 13 6.5 11.8807 6.5 10.5C6.5 9.11929 7.61929 8 9 8C10.3807 8 11.5 9.11929 11.5 10.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sale-01.svg b/@stellar/design-system/src/assets/icons/sale-01.svg
new file mode 100644
index 00000000..fc6bbe71
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sale-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9H9.01M15 15H15.01M16 8L8 16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sale-02.svg b/@stellar/design-system/src/assets/icons/sale-02.svg
new file mode 100644
index 00000000..4fc461e0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sale-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9H9.01M15 15H15.01M16 8L8 16M7.33377 3.8187C8.1376 3.75455 8.90071 3.43846 9.51447 2.91542C10.9467 1.69486 13.0533 1.69486 14.4855 2.91542C15.0993 3.43846 15.8624 3.75455 16.6662 3.8187C18.5421 3.96839 20.0316 5.45794 20.1813 7.33377C20.2455 8.1376 20.5615 8.90071 21.0846 9.51447C22.3051 10.9467 22.3051 13.0533 21.0846 14.4855C20.5615 15.0993 20.2455 15.8624 20.1813 16.6662C20.0316 18.5421 18.5421 20.0316 16.6662 20.1813C15.8624 20.2455 15.0993 20.5615 14.4855 21.0846C13.0533 22.3051 10.9467 22.3051 9.51447 21.0846C8.90071 20.5615 8.1376 20.2455 7.33377 20.1813C5.45794 20.0316 3.96839 18.5421 3.8187 16.6662C3.75455 15.8624 3.43846 15.0993 2.91542 14.4855C1.69486 13.0533 1.69486 10.9467 2.91542 9.51447C3.43846 8.90071 3.75455 8.1376 3.8187 7.33377C3.96839 5.45794 5.45794 3.96839 7.33377 3.8187ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sale-03.svg b/@stellar/design-system/src/assets/icons/sale-03.svg
new file mode 100644
index 00000000..17a3fe41
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sale-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9H9.01M15 15H15.01M16 8L8 16M17.9012 4.99851C18.1071 5.49653 18.5024 5.8924 19.0001 6.09907L20.7452 6.82198C21.2433 7.02828 21.639 7.42399 21.8453 7.92206C22.0516 8.42012 22.0516 8.97974 21.8453 9.47781L21.1229 11.2218C20.9165 11.7201 20.9162 12.2803 21.1236 12.7783L21.8447 14.5218C21.9469 14.7685 21.9996 15.0329 21.9996 15.2999C21.9997 15.567 21.9471 15.8314 21.8449 16.0781C21.7427 16.3249 21.5929 16.549 21.4041 16.7378C21.2152 16.9266 20.991 17.0764 20.7443 17.1785L19.0004 17.9009C18.5023 18.1068 18.1065 18.5021 17.8998 18.9998L17.1769 20.745C16.9706 21.2431 16.575 21.6388 16.0769 21.8451C15.5789 22.0514 15.0193 22.0514 14.5212 21.8451L12.7773 21.1227C12.2792 20.9169 11.7198 20.9173 11.2221 21.1239L9.47689 21.8458C8.97912 22.0516 8.42001 22.0514 7.92237 21.8453C7.42473 21.6391 7.02925 21.2439 6.82281 20.7464L6.09972 19.0006C5.8938 18.5026 5.49854 18.1067 5.00085 17.9L3.25566 17.1771C2.75783 16.9709 2.36226 16.5754 2.15588 16.0777C1.94951 15.5799 1.94923 15.0205 2.1551 14.5225L2.87746 12.7786C3.08325 12.2805 3.08283 11.7211 2.8763 11.2233L2.15497 9.47678C2.0527 9.2301 2.00004 8.96568 2 8.69863C1.99996 8.43159 2.05253 8.16715 2.15472 7.92043C2.25691 7.67372 2.40671 7.44955 2.59557 7.26075C2.78442 7.07195 3.00862 6.92222 3.25537 6.8201L4.9993 6.09772C5.49687 5.89197 5.89248 5.4972 6.0993 5.00006L6.82218 3.25481C7.02848 2.75674 7.42418 2.36103 7.92222 2.15473C8.42027 1.94842 8.97987 1.94842 9.47792 2.15473L11.2218 2.87712C11.7199 3.08291 12.2793 3.08249 12.7771 2.87595L14.523 2.15585C15.021 1.94966 15.5804 1.9497 16.0784 2.15597C16.5763 2.36223 16.972 2.75783 17.1783 3.25576L17.9014 5.00153L17.9012 4.99851ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sale-04.svg b/@stellar/design-system/src/assets/icons/sale-04.svg
new file mode 100644
index 00000000..3c50160a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sale-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9H9.01M15 15H15.01M16 8L8 16M9.2019 20.6009C9.52965 20.5575 9.86073 20.6464 10.1218 20.8475L11.3251 21.7708C11.7228 22.0764 12.2761 22.0764 12.6727 21.7708L13.9215 20.812C14.1548 20.6331 14.4492 20.5542 14.7403 20.5931L16.3024 20.7986C16.799 20.8642 17.2779 20.5875 17.4701 20.1242L18.0712 18.6709C18.1834 18.3987 18.3989 18.1832 18.6711 18.0709L20.1243 17.4698C20.5876 17.2787 20.8643 16.7988 20.7987 16.3021L20.601 14.7966C20.5576 14.4688 20.6465 14.1377 20.8476 13.8766L21.7709 12.6733C22.0764 12.2755 22.0764 11.7222 21.7709 11.3256L20.812 10.0767C20.6332 9.84339 20.5543 9.54896 20.5932 9.25785L20.7987 7.69568C20.8643 7.19902 20.5876 6.72015 20.1243 6.52793L18.6711 5.92684C18.3989 5.81462 18.1834 5.59907 18.0712 5.32685L17.4701 3.87356C17.279 3.41024 16.799 3.13358 16.3024 3.19913L14.7403 3.40468C14.4492 3.44468 14.1548 3.36579 13.9226 3.18802L12.6738 2.22916C12.2761 1.92361 11.7228 1.92361 11.3262 2.22916L10.0774 3.18802C9.84407 3.36579 9.54965 3.44468 9.25856 3.40691L7.69647 3.20136C7.19984 3.1358 6.721 3.41246 6.52879 3.87578L5.92884 5.32907C5.81552 5.60018 5.59998 5.81573 5.32889 5.92906L3.87568 6.52904C3.41238 6.72126 3.13574 7.20013 3.20129 7.69679L3.40683 9.25897C3.4446 9.55007 3.36572 9.8445 3.18796 10.0767L2.22915 11.3256C1.92362 11.7233 1.92362 12.2767 2.22915 12.6733L3.18796 13.9222C3.36683 14.1555 3.44571 14.4499 3.40683 14.741L3.20129 16.3032C3.13574 16.7999 3.41238 17.2787 3.87568 17.471L5.32889 18.0721C5.60109 18.1843 5.81663 18.3998 5.92884 18.672L6.5299 20.1253C6.721 20.5887 7.20096 20.8653 7.69758 20.7998L9.2019 20.6009ZM9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9ZM15.5 15C15.5 15.2761 15.2761 15.5 15 15.5C14.7239 15.5 14.5 15.2761 14.5 15C14.5 14.7239 14.7239 14.5 15 14.5C15.2761 14.5 15.5 14.7239 15.5 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/save-01.svg b/@stellar/design-system/src/assets/icons/save-01.svg
new file mode 100644
index 00000000..15cd003b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/save-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 3V6.4C7 6.96005 7 7.24008 7.10899 7.45399C7.20487 7.64215 7.35785 7.79513 7.54601 7.89101C7.75992 8 8.03995 8 8.6 8H15.4C15.9601 8 16.2401 8 16.454 7.89101C16.6422 7.79513 16.7951 7.64215 16.891 7.45399C17 7.24008 17 6.96005 17 6.4V4M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/save-02.svg b/@stellar/design-system/src/assets/icons/save-02.svg
new file mode 100644
index 00000000..491d10a2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/save-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 8H8.6C8.03995 8 7.75992 8 7.54601 7.89101C7.35785 7.79513 7.20487 7.64215 7.10899 7.45399C7 7.24008 7 6.96005 7 6.4V3M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/save-03.svg b/@stellar/design-system/src/assets/icons/save-03.svg
new file mode 100644
index 00000000..a751af33
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/save-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548V17M12.5 10H8.6C8.03995 10 7.75992 10 7.54601 9.89101C7.35785 9.79513 7.20487 9.64215 7.10899 9.45399C7 9.24008 7 8.96005 7 8.4V6.5M13.5 21V16.6C13.5 16.0399 13.5 15.7599 13.391 15.546C13.2951 15.3578 13.1422 15.2049 12.954 15.109C12.7401 15 12.4601 15 11.9 15H8.6C8.03995 15 7.75992 15 7.54601 15.109C7.35785 15.2049 7.20487 15.3578 7.10899 15.546C7 15.7599 7 16.0399 7 16.6V21M17.5 10.1627V17.8C17.5 18.9201 17.5 19.4802 17.282 19.908C17.0903 20.2843 16.7843 20.5903 16.408 20.782C15.9802 21 15.4201 21 14.3 21H6.2C5.0799 21 4.51984 21 4.09202 20.782C3.71569 20.5903 3.40973 20.2843 3.21799 19.908C3 19.4802 3 18.9201 3 17.8V9.7C3 8.57989 3 8.01984 3.21799 7.59202C3.40973 7.21569 3.71569 6.90973 4.09202 6.71799C4.51984 6.5 5.0799 6.5 6.2 6.5H13.8373C14.0818 6.5 14.2041 6.5 14.3192 6.52763C14.4213 6.55213 14.5188 6.59253 14.6083 6.64736C14.7092 6.7092 14.7957 6.79568 14.9686 6.96863L17.0314 9.03137C17.2043 9.20432 17.2908 9.2908 17.3526 9.39172C17.4075 9.48119 17.4479 9.57873 17.4724 9.68077C17.5 9.79586 17.5 9.91815 17.5 10.1627Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scale-01.svg b/@stellar/design-system/src/assets/icons/scale-01.svg
new file mode 100644
index 00000000..54f94fe1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scale-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 22H6.8M6.8 22C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2M6.8 22H7.2C8.88016 22 9.72024 22 10.362 21.673C10.9265 21.3854 11.3854 20.9265 11.673 20.362C12 19.7202 12 18.8802 12 17.2V16.8C12 15.1198 12 14.2798 11.673 13.638C11.3854 13.0735 10.9265 12.6146 10.362 12.327C9.72024 12 8.88016 12 7.2 12H6.8C5.11984 12 4.27976 12 3.63803 12.327C3.07354 12.6146 2.6146 13.0735 2.32698 13.638C2 14.2798 2 15.1198 2 16.8V17.2M2 17.2V10M10 2H14M22 10V14M18 22C18.93 22 19.395 22 19.7765 21.8978C20.8117 21.6204 21.6204 20.8117 21.8978 19.7765C22 19.395 22 18.93 22 18M22 6C22 5.07003 22 4.60504 21.8978 4.22354C21.6204 3.18827 20.8117 2.37962 19.7765 2.10222C19.395 2 18.93 2 18 2M6 2C5.07003 2 4.60504 2 4.22354 2.10222C3.18827 2.37962 2.37962 3.18827 2.10222 4.22354C2 4.60504 2 5.07003 2 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scale-02.svg b/@stellar/design-system/src/assets/icons/scale-02.svg
new file mode 100644
index 00000000..d5fa56e2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scale-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V8M11.5 12.5L17 7M17 7H12M17 7V12M6.2 21H8.8C9.9201 21 10.4802 21 10.908 20.782C11.2843 20.5903 11.5903 20.2843 11.782 19.908C12 19.4802 12 18.9201 12 17.8V15.2C12 14.0799 12 13.5198 11.782 13.092C11.5903 12.7157 11.2843 12.4097 10.908 12.218C10.4802 12 9.92011 12 8.8 12H6.2C5.0799 12 4.51984 12 4.09202 12.218C3.71569 12.4097 3.40973 12.7157 3.21799 13.092C3 13.5198 3 14.0799 3 15.2V17.8C3 18.9201 3 19.4802 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scale-03.svg b/@stellar/design-system/src/assets/icons/scale-03.svg
new file mode 100644
index 00000000..7b9f8575
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scale-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8M16.2 3C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8M16.2 3H15.2C14.0799 3 13.5198 3 13.092 3.21799C12.7157 3.40973 12.4097 3.71569 12.218 4.09202C12 4.51984 12 5.07989 12 6.2V8.8C12 9.9201 12 10.4802 12.218 10.908C12.4097 11.2843 12.7157 11.5903 13.092 11.782C13.5198 12 14.0799 12 15.2 12H17.8C18.9201 12 19.4802 12 19.908 11.782C20.2843 11.5903 20.5903 11.2843 20.782 10.908C21 10.4802 21 9.92011 21 8.8V7.8M12.5 11.5L7 17M7 17H12M7 17L7 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scales-01.svg b/@stellar/design-system/src/assets/icons/scales-01.svg
new file mode 100644
index 00000000..8c0a7af1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scales-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 17V16.8498C2 16.5333 2 16.3751 2.02421 16.2209C2.0457 16.084 2.08136 15.9497 2.13061 15.8202C2.18609 15.6743 2.2646 15.5369 2.42162 15.2622L6 9M2 17C2 19.2091 3.79086 21 6 21C8.20914 21 10 19.2091 10 17M2 17V16.8C2 16.52 2 16.38 2.0545 16.273C2.10243 16.1789 2.17892 16.1024 2.273 16.0545C2.37996 16 2.51997 16 2.8 16H9.2C9.48003 16 9.62004 16 9.727 16.0545C9.82108 16.1024 9.89757 16.1789 9.9455 16.273C10 16.38 10 16.52 10 16.8V17M6 9L9.57838 15.2622C9.7354 15.5369 9.81391 15.6743 9.86939 15.8202C9.91864 15.9497 9.9543 16.084 9.97579 16.2209C10 16.3751 10 16.5333 10 16.8498V17M6 9L18 7M14 15V14.8498C14 14.5333 14 14.3751 14.0242 14.2209C14.0457 14.084 14.0814 13.9497 14.1306 13.8202C14.1861 13.6743 14.2646 13.5369 14.4216 13.2622L18 7M14 15C14 17.2091 15.7909 19 18 19C20.2091 19 22 17.2091 22 15M14 15V14.8C14 14.52 14 14.38 14.0545 14.273C14.1024 14.1789 14.1789 14.1024 14.273 14.0545C14.38 14 14.52 14 14.8 14H21.2C21.48 14 21.62 14 21.727 14.0545C21.8211 14.1024 21.8976 14.1789 21.9455 14.273C22 14.38 22 14.52 22 14.8V15M18 7L21.5784 13.2622C21.7354 13.5369 21.8139 13.6743 21.8694 13.8202C21.9186 13.9497 21.9543 14.084 21.9758 14.2209C22 14.3751 22 14.5333 22 14.8498V15M12 3V8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scales-02.svg b/@stellar/design-system/src/assets/icons/scales-02.svg
new file mode 100644
index 00000000..75b9b03b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scales-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.50047 13H8.50047M15.5005 13H21.5005M12.0005 7V21M12.0005 7C13.3812 7 14.5005 5.88071 14.5005 4.5M12.0005 7C10.6198 7 9.50047 5.88071 9.50047 4.5M4.00047 21L20.0005 21M4.00047 4.50001L9.50047 4.5M9.50047 4.5C9.50047 3.11929 10.6198 2 12.0005 2C13.3812 2 14.5005 3.11929 14.5005 4.5M14.5005 4.5L20.0005 4.5M8.88091 14.3364C8.48022 15.8706 7.11858 17 5.50047 17C3.88237 17 2.52073 15.8706 2.12004 14.3364C2.0873 14.211 2.07093 14.1483 2.06935 13.8979C2.06838 13.7443 2.12544 13.3904 2.17459 13.2449C2.25478 13.0076 2.34158 12.8737 2.51519 12.6059L5.50047 8L8.48576 12.6059C8.65937 12.8737 8.74617 13.0076 8.82636 13.2449C8.87551 13.3904 8.93257 13.7443 8.9316 13.8979C8.93002 14.1483 8.91365 14.211 8.88091 14.3364ZM21.8809 14.3364C21.4802 15.8706 20.1186 17 18.5005 17C16.8824 17 15.5207 15.8706 15.12 14.3364C15.0873 14.211 15.0709 14.1483 15.0693 13.8979C15.0684 13.7443 15.1254 13.3904 15.1746 13.2449C15.2548 13.0076 15.3416 12.8737 15.5152 12.6059L18.5005 8L21.4858 12.6059C21.6594 12.8737 21.7462 13.0076 21.8264 13.2449C21.8755 13.3904 21.9326 13.7443 21.9316 13.8979C21.93 14.1483 21.9137 14.211 21.8809 14.3364Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scan.svg b/@stellar/design-system/src/assets/icons/scan.svg
new file mode 100644
index 00000000..29f153ce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scan.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V8M8 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V16M21 8V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H16M21 16V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H16M3 12H3.01M7.5 12H7.51M16.5 12H16.51M12 12H12.01M21 12H21.01" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scissors-01.svg b/@stellar/design-system/src/assets/icons/scissors-01.svg
new file mode 100644
index 00000000..9e9a402e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scissors-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 4L8.5 15.5M8.5 8.5L20 20M6 3C7.65685 3 9 4.34315 9 6C9 7.65685 7.65685 9 6 9C4.34315 9 3 7.65685 3 6C3 4.34315 4.34315 3 6 3ZM6 15C7.65685 15 9 16.3431 9 18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scissors-02.svg b/@stellar/design-system/src/assets/icons/scissors-02.svg
new file mode 100644
index 00000000..d5008a74
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scissors-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.5 8.6L21 17M21 7L4.5 15.4M6 3C7.65685 3 9 4.34315 9 6C9 7.65685 7.65685 9 6 9C4.34315 9 3 7.65685 3 6C3 4.34315 4.34315 3 6 3ZM6 15C7.65685 15 9 16.3431 9 18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scissors-cut-01.svg b/@stellar/design-system/src/assets/icons/scissors-cut-01.svg
new file mode 100644
index 00000000..079a9d3c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scissors-cut-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 4L8.5 15.5M8.5 8.5L20 20M17.5 12H17.51M22 12H22.01M6 3C7.65685 3 9 4.34315 9 6C9 7.65685 7.65685 9 6 9C4.34315 9 3 7.65685 3 6C3 4.34315 4.34315 3 6 3ZM6 15C7.65685 15 9 16.3431 9 18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/scissors-cut-02.svg b/@stellar/design-system/src/assets/icons/scissors-cut-02.svg
new file mode 100644
index 00000000..d2ec53c7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/scissors-cut-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.5 8.6L21 17M21 7L4.5 15.4M17.5 12H17.51M22 12H22.01M6 3C7.65685 3 9 4.34315 9 6C9 7.65685 7.65685 9 6 9C4.34315 9 3 7.65685 3 6C3 4.34315 4.34315 3 6 3ZM6 15C7.65685 15 9 16.3431 9 18C9 19.6569 7.65685 21 6 21C4.34315 21 3 19.6569 3 18C3 16.3431 4.34315 15 6 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/search-lg.svg b/@stellar/design-system/src/assets/icons/search-lg.svg
new file mode 100644
index 00000000..88ce1cb8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/search-lg.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L17.5001 17.5M20 11.5C20 16.1944 16.1944 20 11.5 20C6.80558 20 3 16.1944 3 11.5C3 6.80558 6.80558 3 11.5 3C16.1944 3 20 6.80558 20 11.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/search-md.svg b/@stellar/design-system/src/assets/icons/search-md.svg
new file mode 100644
index 00000000..1f5c5082
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/search-md.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/search-refraction.svg b/@stellar/design-system/src/assets/icons/search-refraction.svg
new file mode 100644
index 00000000..c9bd9159
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/search-refraction.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L16.65 16.65M11 6C13.7614 6 16 8.23858 16 11M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/search-sm.svg b/@stellar/design-system/src/assets/icons/search-sm.svg
new file mode 100644
index 00000000..2098b39b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/search-sm.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L15.0001 15M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/search.svg b/@stellar/design-system/src/assets/icons/search.svg
deleted file mode 100644
index 9b64c481..00000000
--- a/@stellar/design-system/src/assets/icons/search.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6726)"><path d="M18.9 20.3L13.3 14.7C12.8 15.1 12.225 15.4167 11.575 15.65C10.925 15.8833 10.2333 16 9.5 16C7.68333 16 6.146 15.371 4.888 14.113C3.62933 12.8543 3 11.3167 3 9.5C3 7.68333 3.62933 6.14567 4.888 4.887C6.146 3.629 7.68333 3 9.5 3C11.3167 3 12.8543 3.629 14.113 4.887C15.371 6.14567 16 7.68333 16 9.5C16 10.2333 15.8833 10.925 15.65 11.575C15.4167 12.225 15.1 12.8 14.7 13.3L20.325 18.925C20.5083 19.1083 20.6 19.3333 20.6 19.6C20.6 19.8667 20.5 20.1 20.3 20.3C20.1167 20.4833 19.8833 20.575 19.6 20.575C19.3167 20.575 19.0833 20.4833 18.9 20.3ZM9.5 14C10.75 14 11.8127 13.5627 12.688 12.688C13.5627 11.8127 14 10.75 14 9.5C14 8.25 13.5627 7.18733 12.688 6.312C11.8127 5.43733 10.75 5 9.5 5C8.25 5 7.18733 5.43733 6.312 6.312C5.43733 7.18733 5 8.25 5 9.5C5 10.75 5.43733 11.8127 6.312 12.688C7.18733 13.5627 8.25 14 9.5 14Z"/></g><defs><clipPath id="clip0_1113_6726"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/send-01.svg b/@stellar/design-system/src/assets/icons/send-01.svg
new file mode 100644
index 00000000..2da44424
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/send-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.4995 13.5001L20.9995 3.00005M10.6271 13.8281L13.2552 20.5861C13.4867 21.1815 13.6025 21.4791 13.7693 21.566C13.9139 21.6414 14.0862 21.6415 14.2308 21.5663C14.3977 21.4796 14.5139 21.1821 14.7461 20.587L21.3364 3.69925C21.5461 3.16207 21.6509 2.89348 21.5935 2.72185C21.5437 2.5728 21.4268 2.45583 21.2777 2.40604C21.1061 2.34871 20.8375 2.45352 20.3003 2.66315L3.41258 9.25349C2.8175 9.48572 2.51997 9.60183 2.43326 9.76873C2.35809 9.91342 2.35819 10.0857 2.43353 10.2303C2.52043 10.3971 2.81811 10.5128 3.41345 10.7444L10.1715 13.3725C10.2923 13.4195 10.3527 13.443 10.4036 13.4793C10.4487 13.5114 10.4881 13.5509 10.5203 13.596C10.5566 13.6468 10.5801 13.7073 10.6271 13.8281Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/send-02.svg b/@stellar/design-system/src/assets/icons/send-02.svg
new file mode 100644
index 00000000..d5cbc058
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/send-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.0005 19V12M12.292 19.0846L19.2704 21.4208C19.8173 21.6039 20.0908 21.6954 20.2594 21.6297C20.4059 21.5727 20.517 21.4501 20.5594 21.2988C20.6082 21.1245 20.4903 20.8614 20.2545 20.3351L12.766 3.62232C12.5354 3.10762 12.4201 2.85027 12.2594 2.77053C12.1199 2.70125 11.956 2.70099 11.8162 2.76982C11.6553 2.84905 11.5392 3.10602 11.3069 3.61998L3.75244 20.336C3.51474 20.862 3.39589 21.125 3.44422 21.2994C3.48619 21.4509 3.59697 21.5738 3.74329 21.6313C3.91178 21.6975 4.18567 21.6066 4.73346 21.4248L11.786 19.084C11.8799 19.0528 11.9268 19.0372 11.9749 19.0311C12.0175 19.0256 12.0606 19.0257 12.1032 19.0312C12.1512 19.0375 12.1981 19.0532 12.292 19.0846Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/send-03.svg b/@stellar/design-system/src/assets/icons/send-03.svg
new file mode 100644
index 00000000..7c6f19bb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/send-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5004 12H5.00043M4.91577 12.2915L2.58085 19.2662C2.39742 19.8142 2.3057 20.0881 2.37152 20.2569C2.42868 20.4034 2.55144 20.5145 2.70292 20.5567C2.87736 20.6054 3.14083 20.4869 3.66776 20.2497L20.3792 12.7296C20.8936 12.4981 21.1507 12.3824 21.2302 12.2216C21.2993 12.082 21.2993 11.9181 21.2302 11.7784C21.1507 11.6177 20.8936 11.5019 20.3792 11.2705L3.66193 3.74776C3.13659 3.51135 2.87392 3.39315 2.69966 3.44164C2.54832 3.48375 2.42556 3.59454 2.36821 3.74078C2.30216 3.90917 2.3929 4.18255 2.57437 4.72931L4.91642 11.7856C4.94759 11.8795 4.96317 11.9264 4.96933 11.9744C4.97479 12.0171 4.97473 12.0602 4.96916 12.1028C4.96289 12.1508 4.94718 12.1977 4.91577 12.2915Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/send.svg b/@stellar/design-system/src/assets/icons/send.svg
deleted file mode 100644
index 3721edb6..00000000
--- a/@stellar/design-system/src/assets/icons/send.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6723)"><path d="M4.4 19.425C4.06667 19.5583 3.75 19.529 3.45 19.337C3.15 19.1457 3 18.8667 3 18.5V14.775C3 14.5417 3.06667 14.3333 3.2 14.15C3.33333 13.9667 3.51667 13.85 3.75 13.8L11 12L3.75 10.2C3.51667 10.15 3.33333 10.0333 3.2 9.84999C3.06667 9.66666 3 9.45833 3 9.22499V5.49999C3 5.13333 3.15 4.85399 3.45 4.66199C3.75 4.47066 4.06667 4.44166 4.4 4.57499L19.8 11.075C20.2167 11.2583 20.425 11.5667 20.425 12C20.425 12.4333 20.2167 12.7417 19.8 12.925L4.4 19.425Z"/></g><defs><clipPath id="clip0_1113_6723"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-01.svg b/@stellar/design-system/src/assets/icons/server-01.svg
new file mode 100644
index 00000000..a78f23df
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 6H6.01M6 18H6.01M5.2 10H18.8C19.9201 10 20.4802 10 20.908 9.78201C21.2843 9.59027 21.5903 9.28431 21.782 8.90798C22 8.48016 22 7.92011 22 6.8V5.2C22 4.0799 22 3.51984 21.782 3.09202C21.5903 2.71569 21.2843 2.40973 20.908 2.21799C20.4802 2 19.9201 2 18.8 2H5.2C4.07989 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V6.8C2 7.92011 2 8.48016 2.21799 8.90798C2.40973 9.28431 2.71569 9.59027 3.09202 9.78201C3.51984 10 4.0799 10 5.2 10ZM5.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V17.2C22 16.0799 22 15.5198 21.782 15.092C21.5903 14.7157 21.2843 14.4097 20.908 14.218C20.4802 14 19.9201 14 18.8 14H5.2C4.07989 14 3.51984 14 3.09202 14.218C2.71569 14.4097 2.40973 14.7157 2.21799 15.092C2 15.5198 2 16.0799 2 17.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.0799 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-02.svg b/@stellar/design-system/src/assets/icons/server-02.svg
new file mode 100644
index 00000000..9eca334b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 8H6.01M6 16H6.01M6 12H18M6 12C3.79086 12 2 10.2091 2 8C2 5.79086 3.79086 4 6 4H18C20.2091 4 22 5.79086 22 8C22 10.2091 20.2091 12 18 12M6 12C3.79086 12 2 13.7909 2 16C2 18.2091 3.79086 20 6 20H18C20.2091 20 22 18.2091 22 16C22 13.7909 20.2091 12 18 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-03.svg b/@stellar/design-system/src/assets/icons/server-03.svg
new file mode 100644
index 00000000..11564cc0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 17.5L21.3083 7.46975C21.1997 5.89504 21.1454 5.10768 20.8041 4.51082C20.5036 3.98533 20.0512 3.56304 19.5062 3.29942C18.8873 3 18.0981 3 16.5196 3H7.48037C5.90191 3 5.11268 3 4.49376 3.29942C3.94884 3.56304 3.49642 3.98533 3.19594 4.51082C2.85464 5.10768 2.80034 5.89503 2.69174 7.46975L2 17.5M22 17.5C22 19.433 20.433 21 18.5 21H5.5C3.567 21 2 19.433 2 17.5M22 17.5C22 15.567 20.433 14 18.5 14H5.5C3.567 14 2 15.567 2 17.5M6 17.5H6.01M12 17.5H18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-04.svg b/@stellar/design-system/src/assets/icons/server-04.svg
new file mode 100644
index 00000000..9609a2fe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 10.5L21.5256 6.70463C21.3395 5.21602 21.2465 4.47169 20.8961 3.9108C20.5875 3.41662 20.1416 3.02301 19.613 2.77804C19.013 2.5 18.2629 2.5 16.7626 2.5H7.23735C5.73714 2.5 4.98704 2.5 4.38702 2.77804C3.85838 3.02301 3.4125 3.41662 3.10386 3.9108C2.75354 4.47169 2.6605 5.21601 2.47442 6.70463L2 10.5M5.5 14.5H18.5M5.5 14.5C3.567 14.5 2 12.933 2 11C2 9.067 3.567 7.5 5.5 7.5H18.5C20.433 7.5 22 9.067 22 11C22 12.933 20.433 14.5 18.5 14.5M5.5 14.5C3.567 14.5 2 16.067 2 18C2 19.933 3.567 21.5 5.5 21.5H18.5C20.433 21.5 22 19.933 22 18C22 16.067 20.433 14.5 18.5 14.5M6 11H6.01M6 18H6.01M12 11H18M12 18H18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-05.svg b/@stellar/design-system/src/assets/icons/server-05.svg
new file mode 100644
index 00000000..ef9827f0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 9C19 12.866 15.866 16 12 16M19 9C19 5.13401 15.866 2 12 2M19 9H5M12 16C8.13401 16 5 12.866 5 9M12 16C13.7509 14.0832 14.7468 11.5956 14.8009 9C14.7468 6.40442 13.7509 3.91685 12 2M12 16C10.2491 14.0832 9.25498 11.5956 9.20091 9C9.25498 6.40442 10.2491 3.91685 12 2M12 16V18M5 9C5 5.13401 8.13401 2 12 2M14 20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20M14 20C14 18.8954 13.1046 18 12 18M14 20H21M10 20C10 18.8954 10.8954 18 12 18M10 20H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/server-06.svg b/@stellar/design-system/src/assets/icons/server-06.svg
new file mode 100644
index 00000000..df00c432
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/server-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 12C20 16.4183 16.4183 20 12 20M20 12C20 7.58172 16.4183 4 12 4M20 12H4M12 20C7.58172 20 4 16.4183 4 12M12 20C14.001 17.8093 15.1388 14.9664 15.2006 12C15.1388 9.03363 14.001 6.19068 12 4M12 20C9.99898 17.8093 8.86235 14.9664 8.80055 12C8.86235 9.03363 9.99898 6.19068 12 4M4 12C4 7.58172 7.58172 4 12 4M6 20C6 21.1046 5.10457 22 4 22C2.89543 22 2 21.1046 2 20C2 18.8954 2.89543 18 4 18C5.10457 18 6 18.8954 6 20ZM22 20C22 21.1046 21.1046 22 20 22C18.8954 22 18 21.1046 18 20C18 18.8954 18.8954 18 20 18C21.1046 18 22 18.8954 22 20ZM6 4C6 5.10457 5.10457 6 4 6C2.89543 6 2 5.10457 2 4C2 2.89543 2.89543 2 4 2C5.10457 2 6 2.89543 6 4ZM22 4C22 5.10457 21.1046 6 20 6C18.8954 6 18 5.10457 18 4C18 2.89543 18.8954 2 20 2C21.1046 2 22 2.89543 22 4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/settings-01.svg b/@stellar/design-system/src/assets/icons/settings-01.svg
new file mode 100644
index 00000000..dc7e0bc3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/settings-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/settings-02.svg b/@stellar/design-system/src/assets/icons/settings-02.svg
new file mode 100644
index 00000000..bd6b74b8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/settings-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.3951 19.3711L9.97955 20.6856C10.1533 21.0768 10.4368 21.4093 10.7958 21.6426C11.1547 21.8759 11.5737 22.0001 12.0018 22C12.4299 22.0001 12.8488 21.8759 13.2078 21.6426C13.5667 21.4093 13.8503 21.0768 14.024 20.6856L14.6084 19.3711C14.8165 18.9047 15.1664 18.5159 15.6084 18.26C16.0532 18.0034 16.5678 17.8941 17.0784 17.9478L18.5084 18.1C18.9341 18.145 19.3637 18.0656 19.7451 17.8713C20.1265 17.6771 20.4434 17.3763 20.6573 17.0056C20.8715 16.635 20.9735 16.2103 20.9511 15.7829C20.9286 15.3555 20.7825 14.9438 20.5307 14.5978L19.684 13.4344C19.3825 13.0171 19.2214 12.5148 19.224 12C19.2239 11.4866 19.3865 10.9864 19.6884 10.5711L20.5351 9.40778C20.787 9.06175 20.933 8.65007 20.9555 8.22267C20.978 7.79528 20.8759 7.37054 20.6618 7C20.4479 6.62923 20.131 6.32849 19.7496 6.13423C19.3681 5.93997 18.9386 5.86053 18.5129 5.90556L17.0829 6.05778C16.5722 6.11141 16.0577 6.00212 15.6129 5.74556C15.17 5.48825 14.82 5.09736 14.6129 4.62889L14.024 3.31444C13.8503 2.92317 13.5667 2.59072 13.2078 2.3574C12.8488 2.12408 12.4299 1.99993 12.0018 2C11.5737 1.99993 11.1547 2.12408 10.7958 2.3574C10.4368 2.59072 10.1533 2.92317 9.97955 3.31444L9.3951 4.62889C9.18803 5.09736 8.83798 5.48825 8.3951 5.74556C7.95032 6.00212 7.43577 6.11141 6.9251 6.05778L5.49066 5.90556C5.06499 5.86053 4.6354 5.93997 4.25397 6.13423C3.87255 6.32849 3.55567 6.62923 3.34177 7C3.12759 7.37054 3.02555 7.79528 3.04804 8.22267C3.07052 8.65007 3.21656 9.06175 3.46844 9.40778L4.3151 10.5711C4.61704 10.9864 4.77964 11.4866 4.77955 12C4.77964 12.5134 4.61704 13.0137 4.3151 13.4289L3.46844 14.5922C3.21656 14.9382 3.07052 15.3499 3.04804 15.7773C3.02555 16.2047 3.12759 16.6295 3.34177 17C3.55589 17.3706 3.8728 17.6712 4.25417 17.8654C4.63554 18.0596 5.06502 18.1392 5.49066 18.0944L6.92066 17.9422C7.43133 17.8886 7.94587 17.9979 8.39066 18.2544C8.83519 18.511 9.18687 18.902 9.3951 19.3711Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 15C13.6568 15 15 13.6569 15 12C15 10.3431 13.6568 9 12 9C10.3431 9 8.99998 10.3431 8.99998 12C8.99998 13.6569 10.3431 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/settings-03.svg b/@stellar/design-system/src/assets/icons/settings-03.svg
new file mode 100644
index 00000000..ae19d4cb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/settings-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0505 9H5.5C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4H15.0505M8.94949 20H18.5C19.8807 20 21 18.8807 21 17.5C21 16.1193 19.8807 15 18.5 15H8.94949M3 17.5C3 19.433 4.567 21 6.5 21C8.433 21 10 19.433 10 17.5C10 15.567 8.433 14 6.5 14C4.567 14 3 15.567 3 17.5ZM21 6.5C21 8.433 19.433 10 17.5 10C15.567 10 14 8.433 14 6.5C14 4.567 15.567 3 17.5 3C19.433 3 21 4.567 21 6.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/settings-04.svg b/@stellar/design-system/src/assets/icons/settings-04.svg
new file mode 100644
index 00000000..28f7efa9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/settings-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 8L15 8M15 8C15 9.65686 16.3431 11 18 11C19.6569 11 21 9.65685 21 8C21 6.34315 19.6569 5 18 5C16.3431 5 15 6.34315 15 8ZM9 16L21 16M9 16C9 17.6569 7.65685 19 6 19C4.34315 19 3 17.6569 3 16C3 14.3431 4.34315 13 6 13C7.65685 13 9 14.3431 9 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/settings.svg b/@stellar/design-system/src/assets/icons/settings.svg
deleted file mode 100644
index d480a48b..00000000
--- a/@stellar/design-system/src/assets/icons/settings.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6720)"><path d="M13.875 22H10.125C9.87497 22 9.6583 21.9167 9.47497 21.75C9.29164 21.5833 9.1833 21.375 9.14997 21.125L8.84997 18.8C8.6333 18.7167 8.4293 18.6167 8.23797 18.5C8.04597 18.3833 7.8583 18.2583 7.67497 18.125L5.49997 19.025C5.26664 19.1083 5.0333 19.1167 4.79997 19.05C4.56664 18.9833 4.3833 18.8417 4.24997 18.625L2.39997 15.4C2.26664 15.1833 2.22497 14.95 2.27497 14.7C2.32497 14.45 2.44997 14.25 2.64997 14.1L4.52497 12.675C4.5083 12.5583 4.49997 12.4457 4.49997 12.337V11.662C4.49997 11.554 4.5083 11.4417 4.52497 11.325L2.64997 9.9C2.44997 9.75 2.32497 9.55 2.27497 9.3C2.22497 9.05 2.26664 8.81667 2.39997 8.6L4.24997 5.375C4.36664 5.14167 4.54564 4.99567 4.78697 4.937C5.02897 4.879 5.26664 4.89167 5.49997 4.975L7.67497 5.875C7.8583 5.74167 8.04997 5.61667 8.24997 5.5C8.44997 5.38333 8.64997 5.28333 8.84997 5.2L9.14997 2.875C9.1833 2.625 9.29164 2.41667 9.47497 2.25C9.6583 2.08333 9.87497 2 10.125 2H13.875C14.125 2 14.3416 2.08333 14.525 2.25C14.7083 2.41667 14.8166 2.625 14.85 2.875L15.15 5.2C15.3666 5.28333 15.571 5.38333 15.763 5.5C15.9543 5.61667 16.1416 5.74167 16.325 5.875L18.5 4.975C18.7333 4.89167 18.9666 4.88333 19.2 4.95C19.4333 5.01667 19.6166 5.15833 19.75 5.375L21.6 8.6C21.7333 8.81667 21.775 9.05 21.725 9.3C21.675 9.55 21.55 9.75 21.35 9.9L19.475 11.325C19.4916 11.4417 19.5 11.554 19.5 11.662V12.337C19.5 12.4457 19.4833 12.5583 19.45 12.675L21.325 14.1C21.525 14.25 21.65 14.45 21.7 14.7C21.75 14.95 21.7083 15.1833 21.575 15.4L19.725 18.6C19.5916 18.8167 19.4043 18.9627 19.163 19.038C18.921 19.1127 18.6833 19.1083 18.45 19.025L16.325 18.125C16.1416 18.2583 15.95 18.3833 15.75 18.5C15.55 18.6167 15.35 18.7167 15.15 18.8L14.85 21.125C14.8166 21.375 14.7083 21.5833 14.525 21.75C14.3416 21.9167 14.125 22 13.875 22ZM12.05 15.5C13.0166 15.5 13.8416 15.1583 14.525 14.475C15.2083 13.7917 15.55 12.9667 15.55 12C15.55 11.0333 15.2083 10.2083 14.525 9.525C13.8416 8.84167 13.0166 8.5 12.05 8.5C11.0666 8.5 10.2373 8.84167 9.56197 9.525C8.8873 10.2083 8.54997 11.0333 8.54997 12C8.54997 12.9667 8.8873 13.7917 9.56197 14.475C10.2373 15.1583 11.0666 15.5 12.05 15.5Z"/></g><defs><clipPath id="clip0_1113_6720"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-01.svg b/@stellar/design-system/src/assets/icons/share-01.svg
new file mode 100644
index 00000000..3f37446d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 12V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V12M16 7L12 3M12 3L8 7M12 3V15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-02.svg b/@stellar/design-system/src/assets/icons/share-02.svg
new file mode 100644
index 00000000..10572090
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 11C6.07003 11 5.60504 11 5.22354 11.1022C4.18827 11.3796 3.37962 12.1883 3.10222 13.2235C3 13.605 3 14.07 3 15V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V15C21 14.07 21 13.605 20.8978 13.2235C20.6204 12.1883 19.8117 11.3796 18.7765 11.1022C18.395 11 17.93 11 17 11M16 7L12 3M12 3L8 7M12 3V15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-03.svg b/@stellar/design-system/src/assets/icons/share-03.svg
new file mode 100644
index 00000000..9c975ce1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-04.svg b/@stellar/design-system/src/assets/icons/share-04.svg
new file mode 100644
index 00000000..b90b0615
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 9L21 3M21 3H15M21 3L13 11M10 5H7.8C6.11984 5 5.27976 5 4.63803 5.32698C4.07354 5.6146 3.6146 6.07354 3.32698 6.63803C3 7.27976 3 8.11984 3 9.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H14.2C15.8802 21 16.7202 21 17.362 20.673C17.9265 20.3854 18.3854 19.9265 18.673 19.362C19 18.7202 19 17.8802 19 16.2V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-05.svg b/@stellar/design-system/src/assets/icons/share-05.svg
new file mode 100644
index 00000000..e9cc664d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 6H17.8C16.1198 6 15.2798 6 14.638 6.32698C14.0735 6.6146 13.6146 7.07354 13.327 7.63803C13 8.27976 13 9.11984 13 10.8V12M21 6L18 3M21 6L18 9M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-06.svg b/@stellar/design-system/src/assets/icons/share-06.svg
new file mode 100644
index 00000000..5bd592cf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20.7914 12.6075C21.0355 12.3982 21.1575 12.2936 21.2023 12.1691C21.2415 12.0598 21.2415 11.9403 21.2023 11.831C21.1575 11.7065 21.0355 11.6019 20.7914 11.3926L12.3206 4.13202C11.9004 3.77182 11.6903 3.59172 11.5124 3.58731C11.3578 3.58348 11.2101 3.6514 11.1124 3.77128C11 3.90921 11 4.18595 11 4.73942V9.03468C8.86532 9.40813 6.91159 10.4898 5.45971 12.1139C3.87682 13.8846 3.00123 16.176 3 18.551V19.163C4.04934 17.8989 5.35951 16.8766 6.84076 16.166C8.1467 15.5395 9.55842 15.1684 11 15.0706V19.2607C11 19.8141 11 20.0909 11.1124 20.2288C11.2101 20.3487 11.3578 20.4166 11.5124 20.4128C11.6903 20.4084 11.9004 20.2283 12.3206 19.8681L20.7914 12.6075Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/share-07.svg b/@stellar/design-system/src/assets/icons/share-07.svg
new file mode 100644
index 00000000..0f56c385
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/share-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.59 13.51L15.42 17.49M15.41 6.51L8.59 10.49M21 5C21 6.65685 19.6569 8 18 8C16.3431 8 15 6.65685 15 5C15 3.34315 16.3431 2 18 2C19.6569 2 21 3.34315 21 5ZM9 12C9 13.6569 7.65685 15 6 15C4.34315 15 3 13.6569 3 12C3 10.3431 4.34315 9 6 9C7.65685 9 9 10.3431 9 12ZM21 19C21 20.6569 19.6569 22 18 22C16.3431 22 15 20.6569 15 19C15 17.3431 16.3431 16 18 16C19.6569 16 21 17.3431 21 19Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-01.svg b/@stellar/design-system/src/assets/icons/shield-01.svg
new file mode 100644
index 00000000..1a297557
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.302 21.6149C11.5234 21.744 11.6341 21.8086 11.7903 21.8421C11.9116 21.8681 12.0884 21.8681 12.2097 21.8421C12.3659 21.8086 12.4766 21.744 12.698 21.6149C14.646 20.4784 20 16.9084 20 12V7.21759C20 6.41808 20 6.01833 19.8692 5.6747C19.7537 5.37113 19.566 5.10027 19.3223 4.88552C19.0465 4.64243 18.6722 4.50207 17.9236 4.22134L12.5618 2.21067C12.3539 2.13271 12.25 2.09373 12.143 2.07827C12.0482 2.06457 11.9518 2.06457 11.857 2.07827C11.75 2.09373 11.6461 2.13271 11.4382 2.21067L6.0764 4.22134C5.3278 4.50207 4.9535 4.64243 4.67766 4.88552C4.43398 5.10027 4.24627 5.37113 4.13076 5.6747C4 6.01833 4 6.41808 4 7.21759V12C4 16.9084 9.35396 20.4784 11.302 21.6149Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-02.svg b/@stellar/design-system/src/assets/icons/shield-02.svg
new file mode 100644
index 00000000..059c43cd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.302 21.6148C11.5234 21.744 11.6341 21.8086 11.7903 21.8421C11.9116 21.8681 12.0884 21.8681 12.2097 21.8421C12.3659 21.8086 12.4766 21.744 12.698 21.6148C14.646 20.4783 20 16.9084 20 11.9999V8.19994C20 7.12605 20 6.5891 19.8345 6.20795C19.6662 5.82055 19.4986 5.61446 19.1536 5.37085C18.8141 5.13117 18.1486 4.99277 16.8177 4.71597C15.3508 4.41088 14.2243 3.85998 13.1944 3.06326C12.7005 2.68121 12.4536 2.49019 12.2603 2.43808C12.0564 2.38311 11.9436 2.38311 11.7397 2.43808C11.5464 2.49019 11.2995 2.68121 10.8056 3.06326C9.77572 3.85998 8.6492 4.41088 7.1823 4.71597C5.85137 4.99277 5.18591 5.13117 4.84645 5.37085C4.50142 5.61446 4.33379 5.82055 4.16554 6.20795C4 6.5891 4 7.12605 4 8.19994V11.9999C4 16.9084 9.35396 20.4783 11.302 21.6148Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-03.svg b/@stellar/design-system/src/assets/icons/shield-03.svg
new file mode 100644
index 00000000..a371b5a1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2.49999V21.5M20 12C20 16.9084 14.646 20.4784 12.698 21.6149C12.4766 21.744 12.3659 21.8086 12.2097 21.8421C12.0884 21.8681 11.9116 21.8681 11.7903 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V7.21759C4 6.41808 4 6.01833 4.13076 5.6747C4.24627 5.37113 4.43398 5.10027 4.67766 4.88552C4.9535 4.64243 5.3278 4.50207 6.0764 4.22134L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-dollar.svg b/@stellar/design-system/src/assets/icons/shield-dollar.svg
new file mode 100644
index 00000000..7a92a5c6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-dollar.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.21296 14.5C9.52517 15.0945 10.1486 15.5 10.8667 15.5H13C14.1046 15.5 15 14.6046 15 13.5C15 12.3954 14.1046 11.5 13 11.5H11C9.89543 11.5 9 10.6046 9 9.49999C9 8.39542 9.89543 7.49999 11 7.49999H13.1333C13.8514 7.49999 14.4748 7.90549 14.787 8.49999M12 5.99999V7.49999M12 15.5V17M20 12C20 16.9084 14.646 20.4784 12.698 21.6149C12.4766 21.744 12.3659 21.8086 12.2097 21.8421C12.0884 21.8681 11.9116 21.8681 11.7903 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V7.21759C4 6.41808 4 6.01833 4.13076 5.6747C4.24627 5.37113 4.43398 5.10027 4.67766 4.88552C4.9535 4.64243 5.3278 4.50207 6.0764 4.22134L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-off.svg b/@stellar/design-system/src/assets/icons/shield-off.svg
new file mode 100644
index 00000000..a40aacc5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8.80868 3.19674L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12C20 12.7203 19.8847 13.4118 19.6818 14.071M17.6219 17.6257C15.9362 19.586 13.7879 20.9789 12.6996 21.6139C12.4772 21.7437 12.366 21.8086 12.2098 21.8421C12.0885 21.8681 11.9116 21.8681 11.7904 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V5.7763C4 5.30935 4.28966 4.89137 4.72688 4.72741M3 2.99999L21 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-plus.svg b/@stellar/design-system/src/assets/icons/shield-plus.svg
new file mode 100644
index 00000000..89600553
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 14.5V8.49999M9 11.5H15M20 12C20 16.9084 14.646 20.4784 12.698 21.6149C12.4766 21.744 12.3659 21.8086 12.2097 21.8421C12.0884 21.8681 11.9116 21.8681 11.7903 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V7.21759C4 6.41808 4 6.01833 4.13076 5.6747C4.24627 5.37113 4.43398 5.10027 4.67766 4.88552C4.9535 4.64243 5.3278 4.50207 6.0764 4.22134L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-tick.svg b/@stellar/design-system/src/assets/icons/shield-tick.svg
new file mode 100644
index 00000000..90095d8d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-tick.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 11.5L11 13.5L15.5 8.99999M20 12C20 16.9084 14.646 20.4784 12.698 21.6149C12.4766 21.744 12.3659 21.8086 12.2097 21.8421C12.0884 21.8681 11.9116 21.8681 11.7903 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V7.21759C4 6.41808 4 6.01833 4.13076 5.6747C4.24627 5.37113 4.43398 5.10027 4.67766 4.88552C4.9535 4.64243 5.3278 4.50207 6.0764 4.22134L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield-zap.svg b/@stellar/design-system/src/assets/icons/shield-zap.svg
new file mode 100644
index 00000000..64d8692c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shield-zap.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7.49999L10 10.5L14 12.5L11 15.5M20 12C20 16.9084 14.646 20.4784 12.698 21.6149C12.4766 21.744 12.3659 21.8086 12.2097 21.8421C12.0884 21.8681 11.9116 21.8681 11.7903 21.8421C11.6341 21.8086 11.5234 21.744 11.302 21.6149C9.35396 20.4784 4 16.9084 4 12V7.21759C4 6.41808 4 6.01833 4.13076 5.6747C4.24627 5.37113 4.43398 5.10027 4.67766 4.88552C4.9535 4.64243 5.3278 4.50207 6.0764 4.22134L11.4382 2.21067C11.6461 2.13271 11.75 2.09373 11.857 2.07827C11.9518 2.06457 12.0482 2.06457 12.143 2.07827C12.25 2.09373 12.3539 2.13271 12.5618 2.21067L17.9236 4.22134C18.6722 4.50207 19.0465 4.64243 19.3223 4.88552C19.566 5.10027 19.7537 5.37113 19.8692 5.6747C20 6.01833 20 6.41808 20 7.21759V12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shield.svg b/@stellar/design-system/src/assets/icons/shield.svg
deleted file mode 100644
index a1e145e7..00000000
--- a/@stellar/design-system/src/assets/icons/shield.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 21.925H11.75C11.6667 21.925 11.5917 21.9083 11.525 21.875C9.34167 21.1917 7.54167 19.8375 6.125 17.8125C4.70833 15.7875 4 13.55 4 11.1V6.37499C4 5.95833 4.12083 5.58333 4.3625 5.24999C4.60417 4.91666 4.91667 4.67499 5.3 4.52499L11.3 2.27499C11.5333 2.19166 11.7667 2.14999 12 2.14999C12.2333 2.14999 12.4667 2.19166 12.7 2.27499L18.7 4.52499C19.0833 4.67499 19.3958 4.91666 19.6375 5.24999C19.8792 5.58333 20 5.95833 20 6.37499V11.1C20 13.55 19.2917 15.7875 17.875 17.8125C16.4583 19.8375 14.6583 21.1917 12.475 21.875C12.3917 21.9083 12.2333 21.925 12 21.925Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-bag-01.svg b/@stellar/design-system/src/assets/icons/shopping-bag-01.svg
new file mode 100644
index 00000000..75ae30ed
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-bag-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.52 2.64L3.96 4.72C3.65102 5.13198 3.49652 5.33797 3.50011 5.51039C3.50323 5.66044 3.57358 5.80115 3.69175 5.89368C3.82754 6 4.08503 6 4.6 6H19.4C19.915 6 20.1725 6 20.3083 5.89368C20.4264 5.80115 20.4968 5.66044 20.4999 5.51039C20.5035 5.33797 20.349 5.13198 20.04 4.72L18.48 2.64M5.52 2.64C5.696 2.40533 5.784 2.288 5.89552 2.20338C5.9943 2.12842 6.10616 2.0725 6.22539 2.03845C6.36 2 6.50667 2 6.8 2H17.2C17.4933 2 17.64 2 17.7746 2.03845C17.8938 2.0725 18.0057 2.12842 18.1045 2.20338C18.216 2.288 18.304 2.40533 18.48 2.64M5.52 2.64L3.64 5.14666C3.40254 5.46328 3.28381 5.62159 3.1995 5.79592C3.12469 5.95062 3.07012 6.11431 3.03715 6.28296C3 6.47301 3 6.6709 3 7.06666L3 18.8C3 19.9201 3 20.4802 3.21799 20.908C3.40973 21.2843 3.71569 21.5903 4.09202 21.782C4.51984 22 5.07989 22 6.2 22L17.8 22C18.9201 22 19.4802 22 19.908 21.782C20.2843 21.5903 20.5903 21.2843 20.782 20.908C21 20.4802 21 19.9201 21 18.8V7.06667C21 6.6709 21 6.47301 20.9628 6.28296C20.9299 6.11431 20.8753 5.95062 20.8005 5.79592C20.7162 5.62159 20.5975 5.46328 20.36 5.14667L18.48 2.64M16 10C16 11.0609 15.5786 12.0783 14.8284 12.8284C14.0783 13.5786 13.0609 14 12 14C10.9391 14 9.92172 13.5786 9.17157 12.8284C8.42143 12.0783 8 11.0609 8 10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-bag-02.svg b/@stellar/design-system/src/assets/icons/shopping-bag-02.svg
new file mode 100644
index 00000000..977aca47
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-bag-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.0004 9V6C16.0004 3.79086 14.2095 2 12.0004 2C9.79123 2 8.00037 3.79086 8.00037 6V9M3.59237 10.352L2.99237 16.752C2.82178 18.5717 2.73648 19.4815 3.03842 20.1843C3.30367 20.8016 3.76849 21.3121 4.35839 21.6338C5.0299 22 5.94374 22 7.77142 22H16.2293C18.057 22 18.9708 22 19.6423 21.6338C20.2322 21.3121 20.6971 20.8016 20.9623 20.1843C21.2643 19.4815 21.179 18.5717 21.0084 16.752L20.4084 10.352C20.2643 8.81535 20.1923 8.04704 19.8467 7.46616C19.5424 6.95458 19.0927 6.54511 18.555 6.28984C17.9444 6 17.1727 6 15.6293 6L8.37142 6C6.82806 6 6.05638 6 5.44579 6.28984C4.90803 6.54511 4.45838 6.95458 4.15403 7.46616C3.80846 8.04704 3.73643 8.81534 3.59237 10.352Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-bag-03.svg b/@stellar/design-system/src/assets/icons/shopping-bag-03.svg
new file mode 100644
index 00000000..2cff2410
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-bag-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.9996 8C15.9996 9.06087 15.5782 10.0783 14.828 10.8284C14.0779 11.5786 13.0605 12 11.9996 12C10.9387 12 9.92131 11.5786 9.17116 10.8284C8.42102 10.0783 7.99959 9.06087 7.99959 8M3.63281 7.40138L2.93281 15.8014C2.78243 17.6059 2.70724 18.5082 3.01227 19.2042C3.28027 19.8157 3.74462 20.3204 4.33177 20.6382C5.00006 21 5.90545 21 7.71623 21H16.283C18.0937 21 18.9991 21 19.6674 20.6382C20.2546 20.3204 20.7189 19.8157 20.9869 19.2042C21.2919 18.5082 21.2167 17.6059 21.0664 15.8014L20.3664 7.40138C20.237 5.84875 20.1723 5.07243 19.8285 4.48486C19.5257 3.96744 19.0748 3.5526 18.5341 3.29385C17.92 3 17.141 3 15.583 3L8.41623 3C6.85821 3 6.07921 3 5.4651 3.29384C4.92433 3.5526 4.47349 3.96744 4.17071 4.48486C3.82689 5.07243 3.76219 5.84875 3.63281 7.40138Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-cart-01.svg b/@stellar/design-system/src/assets/icons/shopping-cart-01.svg
new file mode 100644
index 00000000..3c909950
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-cart-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 2H3.30616C3.55218 2 3.67519 2 3.77418 2.04524C3.86142 2.08511 3.93535 2.14922 3.98715 2.22995C4.04593 2.32154 4.06333 2.44332 4.09812 2.68686L4.57143 6M4.57143 6L5.62332 13.7314C5.75681 14.7125 5.82355 15.2031 6.0581 15.5723C6.26478 15.8977 6.56108 16.1564 6.91135 16.3174C7.30886 16.5 7.80394 16.5 8.79411 16.5H17.352C18.2945 16.5 18.7658 16.5 19.151 16.3304C19.4905 16.1809 19.7818 15.9398 19.9923 15.6342C20.2309 15.2876 20.3191 14.8247 20.4955 13.8988L21.8191 6.94969C21.8812 6.62381 21.9122 6.46087 21.8672 6.3335C21.8278 6.22177 21.7499 6.12768 21.6475 6.06802C21.5308 6 21.365 6 21.0332 6H4.57143ZM10 21C10 21.5523 9.55228 22 9 22C8.44772 22 8 21.5523 8 21C8 20.4477 8.44772 20 9 20C9.55228 20 10 20.4477 10 21ZM18 21C18 21.5523 17.5523 22 17 22C16.4477 22 16 21.5523 16 21C16 20.4477 16.4477 20 17 20C17.5523 20 18 20.4477 18 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-cart-02.svg b/@stellar/design-system/src/assets/icons/shopping-cart-02.svg
new file mode 100644
index 00000000..efe41615
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-cart-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.50014 17H17.3294C18.2793 17 18.7543 17 19.1414 16.8284C19.4827 16.6771 19.7748 16.4333 19.9847 16.1246C20.2228 15.7744 20.3078 15.3071 20.4777 14.3724L21.8285 6.94311C21.8874 6.61918 21.9169 6.45721 21.8714 6.33074C21.8315 6.21979 21.7536 6.12651 21.6516 6.06739C21.5353 6 21.3707 6 21.0414 6H5.00014M2 2H3.3164C3.55909 2 3.68044 2 3.77858 2.04433C3.86507 2.0834 3.93867 2.14628 3.99075 2.22563C4.04984 2.31565 4.06876 2.43551 4.10662 2.67523L6.89338 20.3248C6.93124 20.5645 6.95016 20.6843 7.00925 20.7744C7.06133 20.8537 7.13493 20.9166 7.22142 20.9557C7.31956 21 7.44091 21 7.6836 21H19" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shopping-cart-03.svg b/@stellar/design-system/src/assets/icons/shopping-cart-03.svg
new file mode 100644
index 00000000..7e523d4d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shopping-cart-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.00014 14H18.1359C19.1487 14 19.6551 14 20.0582 13.8112C20.4134 13.6448 20.7118 13.3777 20.9163 13.0432C21.1485 12.6633 21.2044 12.16 21.3163 11.1534L21.9013 5.88835C21.9355 5.58088 21.9525 5.42715 21.9031 5.30816C21.8597 5.20366 21.7821 5.11697 21.683 5.06228C21.5702 5 21.4155 5 21.1062 5H4.50014M2 2H3.24844C3.51306 2 3.64537 2 3.74889 2.05032C3.84002 2.09463 3.91554 2.16557 3.96544 2.25376C4.02212 2.35394 4.03037 2.48599 4.04688 2.7501L4.95312 17.2499C4.96963 17.514 4.97788 17.6461 5.03456 17.7462C5.08446 17.8344 5.15998 17.9054 5.25111 17.9497C5.35463 18 5.48694 18 5.75156 18H19M7.5 21.5H7.51M16.5 21.5H16.51M8 21.5C8 21.7761 7.77614 22 7.5 22C7.22386 22 7 21.7761 7 21.5C7 21.2239 7.22386 21 7.5 21C7.77614 21 8 21.2239 8 21.5ZM17 21.5C17 21.7761 16.7761 22 16.5 22C16.2239 22 16 21.7761 16 21.5C16 21.2239 16.2239 21 16.5 21C16.7761 21 17 21.2239 17 21.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/show-chart.svg b/@stellar/design-system/src/assets/icons/show-chart.svg
deleted file mode 100644
index 59bf2726..00000000
--- a/@stellar/design-system/src/assets/icons/show-chart.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6717)"><path d="M2.72502 17.75C2.50836 17.5333 2.40002 17.2833 2.40002 17C2.40002 16.7167 2.50836 16.4667 2.72502 16.25L8.77502 10.2C8.97502 10 9.20836 9.90001 9.47502 9.90001C9.74169 9.90001 9.97502 10 10.175 10.2L13.475 13.5L19.875 6.27501C20.0584 6.05835 20.296 5.95001 20.588 5.95001C20.8794 5.95001 21.125 6.05001 21.325 6.25001C21.5084 6.43335 21.6044 6.65401 21.613 6.91201C21.621 7.17068 21.5334 7.40001 21.35 7.60001L14.175 15.7C13.9917 15.9167 13.7544 16.0293 13.463 16.038C13.171 16.046 12.925 15.95 12.725 15.75L9.47502 12.5L4.22502 17.75C4.00836 17.9667 3.75836 18.075 3.47502 18.075C3.19169 18.075 2.94169 17.9667 2.72502 17.75Z"/></g><defs><clipPath id="clip0_1113_6717"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/show.svg b/@stellar/design-system/src/assets/icons/show.svg
deleted file mode 100644
index 9cb64253..00000000
--- a/@stellar/design-system/src/assets/icons/show.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M11.9329 16.1463C13.1829 16.1463 14.2454 15.7088 15.1204 14.8338C15.9954 13.9588 16.4329 12.8963 16.4329 11.6463C16.4329 10.3963 15.9954 9.3338 15.1204 8.4588C14.2454 7.5838 13.1829 7.1463 11.9329 7.1463C10.6829 7.1463 9.62041 7.5838 8.74541 8.4588C7.87041 9.3338 7.43291 10.3963 7.43291 11.6463C7.43291 12.8963 7.87041 13.9588 8.74541 14.8338C9.62041 15.7088 10.6829 16.1463 11.9329 16.1463ZM11.9329 14.3463C11.1829 14.3463 10.5454 14.0838 10.0204 13.5588C9.49541 13.0338 9.23291 12.3963 9.23291 11.6463C9.23291 10.8963 9.49541 10.2588 10.0204 9.7338C10.5454 9.2088 11.1829 8.9463 11.9329 8.9463C12.6829 8.9463 13.3204 9.2088 13.8454 9.7338C14.3704 10.2588 14.6329 10.8963 14.6329 11.6463C14.6329 12.3963 14.3704 13.0338 13.8454 13.5588C13.3204 14.0838 12.6829 14.3463 11.9329 14.3463ZM11.9329 19.1463C9.61624 19.1463 7.49958 18.5338 5.58291 17.3088C3.66624 16.0838 2.21624 14.4296 1.23291 12.3463C1.18291 12.263 1.14958 12.1588 1.13291 12.0338C1.11624 11.9088 1.10791 11.7796 1.10791 11.6463C1.10791 11.513 1.11624 11.3838 1.13291 11.2588C1.14958 11.1338 1.18291 11.0296 1.23291 10.9463C2.21624 8.86297 3.66624 7.2088 5.58291 5.9838C7.49958 4.7588 9.61624 4.1463 11.9329 4.1463C14.2496 4.1463 16.3662 4.7588 18.2829 5.9838C20.1996 7.2088 21.6496 8.86297 22.6329 10.9463C22.6829 11.0296 22.7162 11.1338 22.7329 11.2588C22.7496 11.3838 22.7579 11.513 22.7579 11.6463C22.7579 11.7796 22.7496 11.9088 22.7329 12.0338C22.7162 12.1588 22.6829 12.263 22.6329 12.3463C21.6496 14.4296 20.1996 16.0838 18.2829 17.3088C16.3662 18.5338 14.2496 19.1463 11.9329 19.1463Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shuffle-01.svg b/@stellar/design-system/src/assets/icons/shuffle-01.svg
new file mode 100644
index 00000000..a8c10e2a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shuffle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 15L21 18M21 18L18 21M21 18H18.5689C17.6297 18 17.1601 18 16.7338 17.8705C16.3564 17.7559 16.0054 17.5681 15.7007 17.3176C15.3565 17.0348 15.096 16.644 14.575 15.8626L14.3333 15.5M18 3L21 6M21 6L18 9M21 6H18.5689C17.6297 6 17.1601 6 16.7338 6.12945C16.3564 6.24406 16.0054 6.43194 15.7007 6.68236C15.3565 6.96523 15.096 7.35597 14.575 8.13744L9.42496 15.8626C8.90398 16.644 8.64349 17.0348 8.29933 17.3176C7.99464 17.5681 7.64357 17.7559 7.2662 17.8705C6.83994 18 6.37033 18 5.43112 18H3M3 6H5.43112C6.37033 6 6.83994 6 7.2662 6.12945C7.64357 6.24406 7.99464 6.43194 8.29933 6.68236C8.64349 6.96523 8.90398 7.35597 9.42496 8.13744L9.66667 8.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/shuffle-02.svg b/@stellar/design-system/src/assets/icons/shuffle-02.svg
new file mode 100644
index 00000000..7267fa28
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/shuffle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 16V21M21 21H16M21 21L15 15M3 3L9 9M16 3H21M21 3V8M21 3L3 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/signal-01.svg b/@stellar/design-system/src/assets/icons/signal-01.svg
new file mode 100644
index 00000000..a60ecd8e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/signal-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2426 7.75738C18.5858 10.1005 18.5858 13.8995 16.2426 16.2427M7.75736 16.2426C5.41421 13.8995 5.41421 10.1005 7.75736 7.75735M4.92893 19.0711C1.02369 15.1658 1.02369 8.8342 4.92893 4.92896M19.0711 4.929C22.9763 8.83424 22.9763 15.1659 19.0711 19.0711M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8955 10.8954 10 12 10C13.1046 10 14 10.8955 14 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/signal-02.svg b/@stellar/design-system/src/assets/icons/signal-02.svg
new file mode 100644
index 00000000..daf8689d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/signal-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.2427 5.75732C18.5858 8.10047 18.5858 11.8995 16.2427 14.2426M7.75734 14.2426C5.41419 11.8995 5.41419 8.10047 7.75734 5.75732M4.92869 17.0711C1.02345 13.1658 1.02345 6.8342 4.92869 2.92896M19.0713 2.92896C22.9765 6.8342 22.9765 13.1658 19.0713 17.0711M12 12C13.1045 12 14 11.1046 14 10C14 8.89543 13.1045 8 12 8C10.8954 8 9.99998 8.89543 9.99998 10C9.99998 11.1046 10.8954 12 12 12ZM12 12V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/signal-03.svg b/@stellar/design-system/src/assets/icons/signal-03.svg
new file mode 100644
index 00000000..112cc241
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/signal-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.5858 13.4142C9.80474 12.6332 9.80474 11.3668 10.5858 10.5858C11.3668 9.80474 12.6332 9.80474 13.4142 10.5858C14.1953 11.3668 14.1953 12.6332 13.4142 13.4142M7.75736 16.2426C5.41421 13.8995 5.41421 10.1005 7.75736 7.75736C10.1005 5.41421 13.8995 5.41421 16.2426 7.75736C18.5858 10.1005 18.5858 13.8995 16.2426 16.2426M4.92893 19.0711C1.02369 15.1658 1.02369 8.83418 4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.0711 4.92893C22.9763 8.83418 22.9763 15.1658 19.0711 19.0711" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/signal-cellular-alt.svg b/@stellar/design-system/src/assets/icons/signal-cellular-alt.svg
deleted file mode 100644
index 03aed26d..00000000
--- a/@stellar/design-system/src/assets/icons/signal-cellular-alt.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6714)"><path d="M18.5 20C18.0833 20 17.7293 19.854 17.438 19.562C17.146 19.2707 17 18.9167 17 18.5V5.5C17 5.08333 17.146 4.72933 17.438 4.438C17.7293 4.146 18.0833 4 18.5 4C18.9167 4 19.2707 4.146 19.562 4.438C19.854 4.72933 20 5.08333 20 5.5V18.5C20 18.9167 19.854 19.2707 19.562 19.562C19.2707 19.854 18.9167 20 18.5 20ZM6.5 20C6.3 20 6.10833 19.9623 5.925 19.887C5.74167 19.8123 5.57933 19.704 5.438 19.562C5.296 19.4207 5.18767 19.2583 5.113 19.075C5.03767 18.8917 5 18.7 5 18.5V15.5C5 15.0833 5.146 14.7293 5.438 14.438C5.72933 14.146 6.08333 14 6.5 14C6.91667 14 7.27067 14.146 7.562 14.438C7.854 14.7293 8 15.0833 8 15.5V18.5C8 18.7 7.96267 18.8917 7.888 19.075C7.81267 19.2583 7.704 19.4207 7.562 19.562C7.42067 19.704 7.25833 19.8123 7.075 19.887C6.89167 19.9623 6.7 20 6.5 20ZM12.5 20C12.0833 20 11.7293 19.854 11.438 19.562C11.146 19.2707 11 18.9167 11 18.5V10.5C11 10.0833 11.146 9.72933 11.438 9.438C11.7293 9.146 12.0833 9 12.5 9C12.9167 9 13.2707 9.146 13.562 9.438C13.854 9.72933 14 10.0833 14 10.5V18.5C14 18.9167 13.854 19.2707 13.562 19.562C13.2707 19.854 12.9167 20 12.5 20Z"/></g><defs><clipPath id="clip0_1113_6714"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/simcard.svg b/@stellar/design-system/src/assets/icons/simcard.svg
new file mode 100644
index 00000000..d39f09a1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/simcard.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 13.8C8 13.52 8 13.38 8.0545 13.273C8.10243 13.1789 8.17892 13.1024 8.273 13.0545C8.37996 13 8.51997 13 8.8 13H15.2C15.48 13 15.62 13 15.727 13.0545C15.8211 13.1024 15.8976 13.1789 15.9455 13.273C16 13.38 16 13.52 16 13.8V17.2C16 17.48 16 17.62 15.9455 17.727C15.8976 17.8211 15.8211 17.8976 15.727 17.9455C15.62 18 15.48 18 15.2 18H8.8C8.51997 18 8.37996 18 8.273 17.9455C8.17892 17.8976 8.10243 17.8211 8.0545 17.727C8 17.62 8 17.48 8 17.2V13.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/skew.svg b/@stellar/design-system/src/assets/icons/skew.svg
new file mode 100644
index 00000000..a31325e6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/skew.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19.7141 6.9999L18.2856 16.9999M6.14286 7L4.35714 17M18 5L8 5M16 19L6 19M5.6 7H6.4C6.96005 7 7.24008 7 7.45399 6.89101C7.64215 6.79513 7.79513 6.64215 7.89101 6.45399C8 6.24008 8 5.96005 8 5.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H5.6C5.03995 3 4.75992 3 4.54601 3.10899C4.35785 3.20487 4.20487 3.35785 4.10899 3.54601C4 3.75992 4 4.03995 4 4.6V5.4C4 5.96005 4 6.24008 4.10899 6.45399C4.20487 6.64215 4.35785 6.79513 4.54601 6.89101C4.75992 7 5.03995 7 5.6 7ZM3.6 21H4.4C4.96005 21 5.24008 21 5.45399 20.891C5.64215 20.7951 5.79513 20.6422 5.89101 20.454C6 20.2401 6 19.9601 6 19.4V18.6C6 18.0399 6 17.7599 5.89101 17.546C5.79513 17.3578 5.64215 17.2049 5.45399 17.109C5.24008 17 4.96005 17 4.4 17H3.6C3.03995 17 2.75992 17 2.54601 17.109C2.35785 17.2049 2.20487 17.3578 2.10899 17.546C2 17.7599 2 18.0399 2 18.6V19.4C2 19.9601 2 20.2401 2.10899 20.454C2.20487 20.6422 2.35785 20.7951 2.54601 20.891C2.75992 21 3.03995 21 3.6 21ZM19.6 7H20.4C20.9601 7 21.2401 7 21.454 6.89101C21.6422 6.79513 21.7951 6.64215 21.891 6.45399C22 6.24008 22 5.96005 22 5.4V4.6C22 4.03995 22 3.75992 21.891 3.54601C21.7951 3.35785 21.6422 3.20487 21.454 3.10899C21.2401 3 20.9601 3 20.4 3H19.6C19.0399 3 18.7599 3 18.546 3.10899C18.3578 3.20487 18.2049 3.35785 18.109 3.54601C18 3.75992 18 4.03995 18 4.6V5.4C18 5.96005 18 6.24008 18.109 6.45399C18.2049 6.64215 18.3578 6.79513 18.546 6.89101C18.7599 7 19.0399 7 19.6 7ZM17.6 21H18.4C18.9601 21 19.2401 21 19.454 20.891C19.6422 20.7951 19.7951 20.6422 19.891 20.454C20 20.2401 20 19.9601 20 19.4V18.6C20 18.0399 20 17.7599 19.891 17.546C19.7951 17.3578 19.6422 17.2049 19.454 17.109C19.2401 17 18.9601 17 18.4 17H17.6C17.0399 17 16.7599 17 16.546 17.109C16.3578 17.2049 16.2049 17.3578 16.109 17.546C16 17.7599 16 18.0399 16 18.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/skip-back.svg b/@stellar/design-system/src/assets/icons/skip-back.svg
new file mode 100644
index 00000000..81d2aa15
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/skip-back.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 19V5M16.4005 6.07961L10.5617 10.7506C10.0279 11.1777 9.76097 11.3912 9.66433 11.6492C9.5796 11.8754 9.5796 12.1246 9.66433 12.3508C9.76097 12.6088 10.0279 12.8223 10.5617 13.2494L16.4005 17.9204C17.2327 18.5861 17.6487 18.919 17.9989 18.9194C18.3035 18.9197 18.5916 18.7812 18.7815 18.5432C19 18.2695 19 17.7367 19 16.671V7.329C19 6.2633 19 5.73045 18.7815 5.45677C18.5916 5.21876 18.3035 5.0803 17.9989 5.08063C17.6487 5.081 17.2327 5.41387 16.4005 6.07961Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/skip-forward.svg b/@stellar/design-system/src/assets/icons/skip-forward.svg
new file mode 100644
index 00000000..d90a322b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/skip-forward.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 5V19M7.59951 17.9204L13.4383 13.2494C13.9721 12.8223 14.239 12.6088 14.3357 12.3508C14.4204 12.1246 14.4204 11.8754 14.3357 11.6492C14.239 11.3912 13.9721 11.1777 13.4383 10.7506L7.59951 6.07961C6.76734 5.41387 6.35125 5.081 6.00108 5.08063C5.69654 5.0803 5.40845 5.21876 5.21846 5.45677C5 5.73045 5 6.2633 5 7.329V16.671C5 17.7367 5 18.2695 5.21846 18.5432C5.40845 18.7812 5.69654 18.9197 6.00108 18.9194C6.35125 18.919 6.76734 18.5861 7.59951 17.9204Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/slash-circle-01.svg b/@stellar/design-system/src/assets/icons/slash-circle-01.svg
new file mode 100644
index 00000000..9015c67a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/slash-circle-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.93 4.93L19.07 19.07M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/slash-circle-02.svg b/@stellar/design-system/src/assets/icons/slash-circle-02.svg
new file mode 100644
index 00000000..74523df8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/slash-circle-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.93 4.93L19.07 19.07M19.0699 4.92999L4.92993 19.07M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/slash-divider.svg b/@stellar/design-system/src/assets/icons/slash-divider.svg
new file mode 100644
index 00000000..2c31f3e1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/slash-divider.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 22L17 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/slash-octagon.svg b/@stellar/design-system/src/assets/icons/slash-octagon.svg
new file mode 100644
index 00000000..ed6a5f8d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/slash-octagon.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.93 4.93L19.07 19.07M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sliders-01.svg b/@stellar/design-system/src/assets/icons/sliders-01.svg
new file mode 100644
index 00000000..ef1f103a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sliders-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 21V14M5 10V3M12 21V12M12 8V3M19 21V16M19 12V3M2 14H8M9 8H15M16 16H22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sliders-02.svg b/@stellar/design-system/src/assets/icons/sliders-02.svg
new file mode 100644
index 00000000..5b108d11
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sliders-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 21L5 15M5 15C6.10457 15 7 14.1046 7 13C7 11.8954 6.10457 11 5 11C3.89543 11 3 11.8954 3 13C3 14.1046 3.89543 15 5 15ZM5 7V3M12 21V15M12 7V3M12 7C10.8954 7 10 7.89543 10 9C10 10.1046 10.8954 11 12 11C13.1046 11 14 10.1046 14 9C14 7.89543 13.1046 7 12 7ZM19 21V17M19 17C20.1046 17 21 16.1046 21 15C21 13.8954 20.1046 13 19 13C17.8954 13 17 13.8954 17 15C17 16.1046 17.8954 17 19 17ZM19 9V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sliders-03.svg b/@stellar/design-system/src/assets/icons/sliders-03.svg
new file mode 100644
index 00000000..ae19d4cb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sliders-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.0505 9H5.5C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4H15.0505M8.94949 20H18.5C19.8807 20 21 18.8807 21 17.5C21 16.1193 19.8807 15 18.5 15H8.94949M3 17.5C3 19.433 4.567 21 6.5 21C8.433 21 10 19.433 10 17.5C10 15.567 8.433 14 6.5 14C4.567 14 3 15.567 3 17.5ZM21 6.5C21 8.433 19.433 10 17.5 10C15.567 10 14 8.433 14 6.5C14 4.567 15.567 3 17.5 3C19.433 3 21 4.567 21 6.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sliders-04.svg b/@stellar/design-system/src/assets/icons/sliders-04.svg
new file mode 100644
index 00000000..28f7efa9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sliders-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 8L15 8M15 8C15 9.65686 16.3431 11 18 11C19.6569 11 21 9.65685 21 8C21 6.34315 19.6569 5 18 5C16.3431 5 15 6.34315 15 8ZM9 16L21 16M9 16C9 17.6569 7.65685 19 6 19C4.34315 19 3 17.6569 3 16C3 14.3431 4.34315 13 6 13C7.65685 13 9 14.3431 9 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/smile.svg b/@stellar/design-system/src/assets/icons/smile.svg
deleted file mode 100644
index e94a94d9..00000000
--- a/@stellar/design-system/src/assets/icons/smile.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M15.5 11C15.9333 11 16.2917 10.8583 16.575 10.575C16.8583 10.2917 17 9.93333 17 9.5C17 9.06667 16.8583 8.70833 16.575 8.425C16.2917 8.14167 15.9333 8 15.5 8C15.0667 8 14.7083 8.14167 14.425 8.425C14.1417 8.70833 14 9.06667 14 9.5C14 9.93333 14.1417 10.2917 14.425 10.575C14.7083 10.8583 15.0667 11 15.5 11ZM8.5 11C8.93333 11 9.29167 10.8583 9.575 10.575C9.85833 10.2917 10 9.93333 10 9.5C10 9.06667 9.85833 8.70833 9.575 8.425C9.29167 8.14167 8.93333 8 8.5 8C8.06667 8 7.70833 8.14167 7.425 8.425C7.14167 8.70833 7 9.06667 7 9.5C7 9.93333 7.14167 10.2917 7.425 10.575C7.70833 10.8583 8.06667 11 8.5 11ZM12 17.5C13.0333 17.5 13.9583 17.25 14.775 16.75C15.5917 16.25 16.2417 15.5917 16.725 14.775C16.8417 14.575 16.85 14.3958 16.75 14.2375C16.65 14.0792 16.4833 14 16.25 14H7.75C7.51667 14 7.35 14.0792 7.25 14.2375C7.15 14.3958 7.15833 14.575 7.275 14.775C7.75833 15.5917 8.40833 16.25 9.225 16.75C10.0417 17.25 10.9667 17.5 12 17.5ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/snowflake-01.svg b/@stellar/design-system/src/assets/icons/snowflake-01.svg
new file mode 100644
index 00000000..fb802afc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/snowflake-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.0622 8.5L5.9378 15.5M18.0622 8.5L19.1602 4.40192M18.0622 8.5L22.1602 9.59808M5.9378 15.5L1.83972 14.4019M5.9378 15.5L4.83972 19.5981M18.0621 15.4999L5.93771 8.49986M18.0621 15.4999L22.1602 14.4018M18.0621 15.4999L19.1602 19.598M5.93771 8.49986L4.83986 4.40203M5.93771 8.49986L1.83986 9.59819M12 5L12 19M12 5L8.99998 2M12 5L15 2M12 19L8.99998 22M12 19L15 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/snowflake-02.svg b/@stellar/design-system/src/assets/icons/snowflake-02.svg
new file mode 100644
index 00000000..6b4d587a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/snowflake-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 8V16M12 8V2M12 8L7 3M12 8L17 3M12 16V22M12 16L7 21M12 16L17 21M16 12H8M16 12H22M16 12L21 7M16 12L21 17M8 12H2M8 12L3 7M8 12L3 17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sort-by-alpha.svg b/@stellar/design-system/src/assets/icons/sort-by-alpha.svg
deleted file mode 100644
index 130e808c..00000000
--- a/@stellar/design-system/src/assets/icons/sort-by-alpha.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6711)"><path d="M3.40003 17C3.0167 17 2.73737 16.875 2.56203 16.625C2.38737 16.375 2.3667 16.0667 2.50003 15.7L5.37503 8.00001C5.47503 7.71668 5.6667 7.47901 5.95003 7.28701C6.23337 7.09568 6.52503 7.00001 6.82503 7.00001C7.10837 7.00001 7.39603 7.09568 7.68803 7.28701C7.97937 7.47901 8.17503 7.71668 8.27503 8.00001L11.175 15.725C11.3084 16.075 11.2877 16.375 11.113 16.625C10.9377 16.875 10.6584 17 10.275 17C10.0917 17 9.9127 16.9417 9.73803 16.825C9.5627 16.7083 9.4417 16.5583 9.37503 16.375L8.75003 14.6H4.90003L4.32503 16.35C4.25837 16.5333 4.1377 16.6873 3.96303 16.812C3.7877 16.9373 3.60003 17 3.40003 17ZM5.50003 12.9H8.10003L6.90003 9.15001H6.75003L5.50003 12.9ZM14.925 17C14.5917 17 14.304 16.879 14.062 16.637C13.8207 16.3957 13.7 16.1083 13.7 15.775C13.7 15.5917 13.7417 15.379 13.825 15.137C13.9084 14.8957 14.0084 14.7083 14.125 14.575L18.75 8.80001H14.8C14.55 8.80001 14.3377 8.71235 14.163 8.53701C13.9877 8.36235 13.9 8.15001 13.9 7.90001C13.9 7.65001 13.9877 7.43735 14.163 7.26201C14.3377 7.08735 14.55 7.00001 14.8 7.00001H19.725C20.0584 7.00001 20.346 7.12068 20.588 7.36201C20.8294 7.60401 20.95 7.90001 20.95 8.25001C20.95 8.43335 20.9127 8.64168 20.838 8.87501C20.7627 9.10835 20.6667 9.29168 20.55 9.42501L15.95 15.2H20.1C20.35 15.2 20.5627 15.2873 20.738 15.462C20.9127 15.6373 21 15.85 21 16.1C21 16.35 20.9127 16.5627 20.738 16.738C20.5627 16.9127 20.35 17 20.1 17H14.925ZM10.2 5.00001C9.9667 5.00001 9.80837 4.90001 9.72503 4.70001C9.6417 4.50001 9.68337 4.31668 9.85003 4.15001L11.65 2.35001C11.6834 2.31668 11.8 2.26668 12 2.20001C12.0334 2.20001 12.15 2.25001 12.35 2.35001L14.15 4.15001C14.3167 4.31668 14.3584 4.50001 14.275 4.70001C14.1917 4.90001 14.0334 5.00001 13.8 5.00001H10.2ZM12 21.8C11.9667 21.8 11.85 21.75 11.65 21.65L9.85003 19.85C9.68337 19.6833 9.6417 19.5 9.72503 19.3C9.80837 19.1 9.9667 19 10.2 19H13.8C14.0334 19 14.1917 19.1 14.275 19.3C14.3584 19.5 14.3167 19.6833 14.15 19.85L12.35 21.65C12.3167 21.6833 12.2 21.7333 12 21.8Z"/></g><defs><clipPath id="clip0_1113_6711"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/space-dashboard.svg b/@stellar/design-system/src/assets/icons/space-dashboard.svg
deleted file mode 100644
index 5b2fab52..00000000
--- a/@stellar/design-system/src/assets/icons/space-dashboard.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6708)"><path d="M5 21C4.45 21 3.979 20.8043 3.587 20.413C3.19567 20.021 3 19.55 3 19V5C3 4.45 3.19567 3.979 3.587 3.587C3.979 3.19567 4.45 3 5 3H9C9.55 3 10.021 3.19567 10.413 3.587C10.8043 3.979 11 4.45 11 5V19C11 19.55 10.8043 20.021 10.413 20.413C10.021 20.8043 9.55 21 9 21H5ZM15 10C14.45 10 13.9793 9.804 13.588 9.412C13.196 9.02067 13 8.55 13 8V5C13 4.45 13.196 3.979 13.588 3.587C13.9793 3.19567 14.45 3 15 3H19C19.55 3 20.021 3.19567 20.413 3.587C20.8043 3.979 21 4.45 21 5V8C21 8.55 20.8043 9.02067 20.413 9.412C20.021 9.804 19.55 10 19 10H15ZM15 21C14.45 21 13.9793 20.8043 13.588 20.413C13.196 20.021 13 19.55 13 19V14C13 13.45 13.196 12.979 13.588 12.587C13.9793 12.1957 14.45 12 15 12H19C19.55 12 20.021 12.1957 20.413 12.587C20.8043 12.979 21 13.45 21 14V19C21 19.55 20.8043 20.021 20.413 20.413C20.021 20.8043 19.55 21 19 21H15Z"/></g><defs><clipPath id="clip0_1113_6708"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/spacing-height-01.svg b/@stellar/design-system/src/assets/icons/spacing-height-01.svg
new file mode 100644
index 00000000..2dc4fa88
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/spacing-height-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 18L12 6M12 18L9 16M12 18L15 16M12 6L9 8M12 6L15 8M21 3H3M21 21H3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/spacing-height-02.svg b/@stellar/design-system/src/assets/icons/spacing-height-02.svg
new file mode 100644
index 00000000..0cb5564e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/spacing-height-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 3H3M21 21H3M12 17.5L12 6.50004M15.0001 6.50001L9 6.5M15.0001 17.5L9 17.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/spacing-width-01.svg b/@stellar/design-system/src/assets/icons/spacing-width-01.svg
new file mode 100644
index 00000000..46846b24
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/spacing-width-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 12H18M6 12L8 9M6 12L8 15M18 12L16 9M18 12L16 15M21 21V3M3 21V3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/spacing-width-02.svg b/@stellar/design-system/src/assets/icons/spacing-width-02.svg
new file mode 100644
index 00000000..9211795f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/spacing-width-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21V3M3 21V3M6.5 12H17.5M17.5 15L17.5 9M6.5 15L6.5 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speaker-01.svg b/@stellar/design-system/src/assets/icons/speaker-01.svg
new file mode 100644
index 00000000..d862287d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speaker-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 6H12.01M8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22ZM12.5 6C12.5 6.27614 12.2761 6.5 12 6.5C11.7239 6.5 11.5 6.27614 11.5 6C11.5 5.72386 11.7239 5.5 12 5.5C12.2761 5.5 12.5 5.72386 12.5 6ZM16 14C16 16.2091 14.2091 18 12 18C9.79086 18 8 16.2091 8 14C8 11.7909 9.79086 10 12 10C14.2091 10 16 11.7909 16 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speaker-02.svg b/@stellar/design-system/src/assets/icons/speaker-02.svg
new file mode 100644
index 00000000..f758aa73
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speaker-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 12H12.01M18 6H18.01M6 6H6.01M18 18H18.01M6 18H6.01M6.8 22H17.2C18.8802 22 19.7202 22 20.362 21.673C20.9265 21.3854 21.3854 20.9265 21.673 20.362C22 19.7202 22 18.8802 22 17.2V6.8C22 5.11984 22 4.27976 21.673 3.63803C21.3854 3.07354 20.9265 2.6146 20.362 2.32698C19.7202 2 18.8802 2 17.2 2H6.8C5.11984 2 4.27976 2 3.63803 2.32698C3.07354 2.6146 2.6146 3.07354 2.32698 3.63803C2 4.27976 2 5.11984 2 6.8V17.2C2 18.8802 2 19.7202 2.32698 20.362C2.6146 20.9265 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22ZM12.5 12C12.5 12.2761 12.2761 12.5 12 12.5C11.7239 12.5 11.5 12.2761 11.5 12C11.5 11.7239 11.7239 11.5 12 11.5C12.2761 11.5 12.5 11.7239 12.5 12ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speaker-03.svg b/@stellar/design-system/src/assets/icons/speaker-03.svg
new file mode 100644
index 00000000..64b93e9d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speaker-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 18V20.4C18 20.9601 18 21.2401 17.891 21.454C17.7951 21.6422 17.6422 21.7951 17.454 21.891C17.2401 22 16.9601 22 16.4 22H7.6C7.03995 22 6.75992 22 6.54601 21.891C6.35785 21.7951 6.20487 21.6422 6.10899 21.454C6 21.2401 6 20.9601 6 20.4V18M12 10H12.01M7.8 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V6.8C21 5.11984 21 4.27976 20.673 3.63803C20.3854 3.07354 19.9265 2.6146 19.362 2.32698C18.7202 2 17.8802 2 16.2 2H7.8C6.11984 2 5.27976 2 4.63803 2.32698C4.07354 2.6146 3.6146 3.07354 3.32698 3.63803C3 4.27976 3 5.11984 3 6.8V13.2C3 14.8802 3 15.7202 3.32698 16.362C3.6146 16.9265 4.07354 17.3854 4.63803 17.673C5.27976 18 6.11984 18 7.8 18ZM17 10C17 12.7614 14.7614 15 12 15C9.23858 15 7 12.7614 7 10C7 7.23858 9.23858 5 12 5C14.7614 5 17 7.23858 17 10ZM12.5 10C12.5 10.2761 12.2761 10.5 12 10.5C11.7239 10.5 11.5 10.2761 11.5 10C11.5 9.72386 11.7239 9.5 12 9.5C12.2761 9.5 12.5 9.72386 12.5 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speedometer-01.svg b/@stellar/design-system/src/assets/icons/speedometer-01.svg
new file mode 100644
index 00000000..89a58391
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speedometer-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V4.5M12 2C6.47715 2 2 6.47715 2 12M12 2C17.5228 2 22 6.47715 22 12M12 19.5V22M12 22C17.5228 22 22 17.5228 22 12M12 22C6.47715 22 2 17.5228 2 12M4.5 12H2M22 12H19.5M19.0784 19.0784L17.3047 17.3047M4.92163 19.0784L6.69715 17.3029M4.92163 5L6.65808 6.73645M19.0784 5L13.4999 10.5M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speedometer-02.svg b/@stellar/design-system/src/assets/icons/speedometer-02.svg
new file mode 100644
index 00000000..ebe99398
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speedometer-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12M22 12C22 6.47715 17.5228 2 12 2M22 12H19.5M2 12C2 6.47715 6.47715 2 12 2M2 12H4.5M12 2V4.5M19.0784 5L13.4999 10.5M19.0784 19.0784L18.8745 18.8745C18.1827 18.1827 17.8368 17.8368 17.4331 17.5894C17.0753 17.3701 16.6851 17.2085 16.2769 17.1105C15.8166 17 15.3274 17 14.349 17L9.65096 17C8.6726 17 8.18342 17 7.72307 17.1106C7.31493 17.2086 6.92475 17.3702 6.56686 17.5895C6.1632 17.8369 5.8173 18.1828 5.12549 18.8746L4.92163 19.0784M4.92163 5L6.65808 6.73645M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speedometer-03.svg b/@stellar/design-system/src/assets/icons/speedometer-03.svg
new file mode 100644
index 00000000..2cd77333
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speedometer-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 12C5 8.13401 8.13401 5 12 5M16.4999 7.5L11.9999 12M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/speedometer-04.svg b/@stellar/design-system/src/assets/icons/speedometer-04.svg
new file mode 100644
index 00000000..6d960400
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/speedometer-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17.7453 16C18.5362 14.8661 19 13.4872 19 12C19 11.4851 18.9444 10.9832 18.8389 10.5M6.25469 16C5.46381 14.8662 5 13.4872 5 12C5 8.13401 8.13401 5 12 5C12.4221 5 12.8355 5.03737 13.2371 5.10897M16.4999 7.5L11.9999 12M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/square.svg b/@stellar/design-system/src/assets/icons/square.svg
new file mode 100644
index 00000000..152aa61b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stacked-line-chart.svg b/@stellar/design-system/src/assets/icons/stacked-line-chart.svg
deleted file mode 100644
index e854e227..00000000
--- a/@stellar/design-system/src/assets/icons/stacked-line-chart.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6705)"><path d="M9.50005 15.5L4.25005 20.75C4.03338 20.9667 3.78338 21.075 3.50005 21.075C3.21672 21.075 2.96672 20.9667 2.75005 20.75C2.53338 20.5333 2.42505 20.2833 2.42505 20C2.42505 19.7167 2.53338 19.4667 2.75005 19.25L8.80005 13.2C9.00005 13 9.23338 12.9 9.50005 12.9C9.76672 12.9 10 13 10.2 13.2L13.5 16.5L19.9 9.27501C20.0834 9.05835 20.3211 8.95001 20.6131 8.95001C20.9044 8.95001 21.15 9.05001 21.35 9.25001C21.5334 9.43335 21.6294 9.65401 21.6381 9.91201C21.6461 10.1707 21.5584 10.4 21.375 10.6L14.2 18.7C14.0167 18.9167 13.7794 19.0293 13.488 19.038C13.196 19.046 12.95 18.95 12.75 18.75L9.50005 15.5ZM9.50005 9.50001L4.25005 14.75C4.03338 14.9667 3.78338 15.075 3.50005 15.075C3.21672 15.075 2.96672 14.9667 2.75005 14.75C2.53338 14.5333 2.42505 14.2833 2.42505 14C2.42505 13.7167 2.53338 13.4667 2.75005 13.25L8.80005 7.20001C9.00005 7.00001 9.23338 6.90001 9.50005 6.90001C9.76672 6.90001 10 7.00001 10.2 7.20001L13.5 10.5L19.9 3.27501C20.0834 3.05835 20.3211 2.95001 20.6131 2.95001C20.9044 2.95001 21.15 3.05001 21.35 3.25001C21.5334 3.43335 21.6294 3.65401 21.6381 3.91201C21.6461 4.17068 21.5584 4.40001 21.375 4.60001L14.2 12.7C14.0167 12.9167 13.7794 13.029 13.488 13.037C13.196 13.0457 12.95 12.95 12.75 12.75L9.50005 9.50001Z"/></g><defs><clipPath id="clip0_1113_6705"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stand.svg b/@stellar/design-system/src/assets/icons/stand.svg
new file mode 100644
index 00000000..02d70e07
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stand.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 17L4 22M15 17L20 22M12 2V4M12 22V17M5.2 17H18.8C19.9201 17 20.4802 17 20.908 16.782C21.2843 16.5903 21.5903 16.2843 21.782 15.908C22 15.4802 22 14.9201 22 13.8V7.2C22 6.07989 22 5.51984 21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799C20.4802 4 19.9201 4 18.8 4H5.2C4.07989 4 3.51984 4 3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202C2 5.51984 2 6.07989 2 7.2V13.8C2 14.9201 2 15.4802 2.21799 15.908C2.40973 16.2843 2.71569 16.5903 3.09202 16.782C3.51984 17 4.0799 17 5.2 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-01.svg b/@stellar/design-system/src/assets/icons/star-01.svg
new file mode 100644
index 00000000..2a90d006
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.2826 3.45332C11.5131 2.98638 11.6284 2.75291 11.7848 2.67831C11.9209 2.61341 12.0791 2.61341 12.2152 2.67831C12.3716 2.75291 12.4869 2.98638 12.7174 3.45332L14.904 7.88328C14.9721 8.02113 15.0061 8.09006 15.0558 8.14358C15.0999 8.19096 15.1527 8.22935 15.2113 8.25662C15.2775 8.28742 15.3536 8.29854 15.5057 8.32077L20.397 9.03571C20.912 9.11099 21.1696 9.14863 21.2888 9.27444C21.3925 9.38389 21.4412 9.5343 21.4215 9.68377C21.3988 9.85558 21.2124 10.0372 20.8395 10.4004L17.3014 13.8464C17.1911 13.9538 17.136 14.0076 17.1004 14.0715C17.0689 14.128 17.0487 14.1902 17.0409 14.2545C17.0321 14.3271 17.0451 14.403 17.0711 14.5547L17.9059 19.4221C17.994 19.9355 18.038 20.1922 17.9553 20.3445C17.8833 20.477 17.7553 20.57 17.607 20.5975C17.4366 20.6291 17.2061 20.5078 16.7451 20.2654L12.3724 17.9658C12.2361 17.8942 12.168 17.8584 12.0962 17.8443C12.0327 17.8318 11.9673 17.8318 11.9038 17.8443C11.832 17.8584 11.7639 17.8942 11.6276 17.9658L7.25491 20.2654C6.7939 20.5078 6.5634 20.6291 6.39296 20.5975C6.24467 20.57 6.11671 20.477 6.04472 20.3445C5.96199 20.1922 6.00601 19.9355 6.09406 19.4221L6.92887 14.5547C6.9549 14.403 6.96791 14.3271 6.9591 14.2545C6.95131 14.1902 6.9311 14.128 6.89959 14.0715C6.86401 14.0076 6.80886 13.9538 6.69857 13.8464L3.16054 10.4004C2.78765 10.0372 2.6012 9.85558 2.57851 9.68377C2.55877 9.5343 2.60754 9.38389 2.71124 9.27444C2.83042 9.14863 3.08796 9.11099 3.60303 9.03571L8.4943 8.32077C8.64641 8.29854 8.72247 8.28742 8.7887 8.25662C8.84735 8.22935 8.90015 8.19096 8.94417 8.14358C8.99389 8.09006 9.02791 8.02113 9.09596 7.88328L11.2826 3.45332Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-02.svg b/@stellar/design-system/src/assets/icons/star-02.svg
new file mode 100644
index 00000000..4894bc49
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.3064 3.20705C11.5339 2.8112 11.6476 2.61327 11.7963 2.54693C11.9259 2.48908 12.0741 2.48908 12.2037 2.54693C12.3524 2.61327 12.4661 2.8112 12.6936 3.20705L14.6488 6.60938C14.733 6.75592 14.7751 6.82919 14.8341 6.88243C14.8864 6.92954 14.948 6.9651 15.0149 6.98678C15.0905 7.01129 15.175 7.01112 15.344 7.01078L19.2681 7.00284C19.7247 7.00191 19.953 7.00145 20.0847 7.09703C20.1997 7.1804 20.2738 7.3087 20.2885 7.44992C20.3054 7.61184 20.1908 7.8093 19.9618 8.20424L17.9928 11.5986C17.908 11.7448 17.8656 11.8179 17.849 11.8957C17.8344 11.9645 17.8344 12.0356 17.849 12.1044C17.8656 12.1821 17.908 12.2552 17.9928 12.4014L19.9618 15.7958C20.1908 16.1907 20.3054 16.3882 20.2885 16.5501C20.2738 16.6913 20.1997 16.8196 20.0847 16.903C19.953 16.9986 19.7247 16.9981 19.2681 16.9972L15.344 16.9893C15.175 16.9889 15.0905 16.9888 15.0149 17.0133C14.948 17.0349 14.8864 17.0705 14.8341 17.1176C14.7751 17.1709 14.733 17.2441 14.6488 17.3907L12.6936 20.793C12.4661 21.1888 12.3524 21.3868 12.2037 21.4531C12.0741 21.511 11.9259 21.511 11.7963 21.4531C11.6476 21.3868 11.5339 21.1888 11.3064 20.793L9.35121 17.3907C9.267 17.2441 9.22489 17.1709 9.16585 17.1176C9.11362 17.0705 9.05203 17.0349 8.98511 17.0133C8.90948 16.9888 8.82497 16.9889 8.65596 16.9893L4.73188 16.9972C4.27532 16.9981 4.04704 16.9986 3.91525 16.903C3.80032 16.8196 3.72624 16.6913 3.71152 16.5501C3.69463 16.3882 3.80917 16.1907 4.03825 15.7958L6.00717 12.4014C6.09197 12.2552 6.13437 12.1821 6.15096 12.1044C6.16565 12.0356 6.16565 11.9645 6.15096 11.8957C6.13437 11.8179 6.09197 11.7448 6.00717 11.5986L4.03825 8.20424C3.80917 7.8093 3.69463 7.61184 3.71152 7.44992C3.72624 7.3087 3.80032 7.1804 3.91525 7.09703C4.04704 7.00145 4.27532 7.00191 4.73188 7.00284L8.65596 7.01078C8.82497 7.01112 8.90948 7.01129 8.98511 6.98678C9.05203 6.9651 9.11362 6.92954 9.16585 6.88243C9.22489 6.82919 9.267 6.75592 9.35121 6.60938L11.3064 3.20705Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-03.svg b/@stellar/design-system/src/assets/icons/star-03.svg
new file mode 100644
index 00000000..fe29d60e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11.2896 3.36637C11.5193 2.92427 11.6342 2.70323 11.7881 2.63139C11.9221 2.56883 12.077 2.56883 12.211 2.63139C12.3649 2.70323 12.4798 2.92427 12.7095 3.36637L14.2225 6.27865C14.3216 6.46934 14.3711 6.56468 14.4454 6.62803C14.511 6.68394 14.5899 6.72195 14.6745 6.73837C14.7704 6.75697 14.8758 6.73625 15.0867 6.69481L18.3069 6.06197C18.7958 5.9659 19.0402 5.91786 19.1923 5.99342C19.3248 6.05921 19.4214 6.18027 19.456 6.32406C19.4958 6.4892 19.3946 6.71681 19.1922 7.17203L17.8586 10.1707C17.7713 10.3671 17.7276 10.4653 17.7244 10.5628C17.7216 10.649 17.7411 10.7344 17.781 10.8108C17.8262 10.8973 17.9082 10.9668 18.072 11.1058L20.5746 13.229C20.9545 13.5513 21.1445 13.7124 21.1803 13.8785C21.2114 14.0231 21.177 14.174 21.0862 14.2908C20.9819 14.4249 20.7408 14.4876 20.2587 14.6132L17.0827 15.4402C16.8748 15.4944 16.7708 15.5215 16.6925 15.5798C16.6234 15.6313 16.5688 15.6998 16.534 15.7786C16.4945 15.868 16.4912 15.9754 16.4847 16.1901L16.3851 19.4705C16.37 19.9685 16.3624 20.2175 16.2549 20.349C16.1613 20.4635 16.0218 20.5307 15.8739 20.5325C15.704 20.5345 15.5047 20.3852 15.1059 20.0865L12.4791 18.1191C12.3071 17.9903 12.2211 17.9259 12.1267 17.9011C12.0434 17.8791 11.9558 17.8791 11.8724 17.9011C11.778 17.9259 11.692 17.9903 11.52 18.1191L8.8932 20.0865C8.49444 20.3852 8.29506 20.5345 8.12521 20.5325C7.97731 20.5307 7.8378 20.4635 7.74418 20.349C7.63667 20.2175 7.62911 19.9685 7.61399 19.4705L7.51439 16.1901C7.50787 15.9754 7.50461 15.868 7.46514 15.7786C7.43031 15.6998 7.37569 15.6313 7.30658 15.5798C7.22829 15.5215 7.12432 15.4944 6.91636 15.4402L3.74042 14.6132C3.2583 14.4876 3.01724 14.4249 2.91295 14.2908C2.82214 14.174 2.78768 14.0231 2.81884 13.8785C2.85463 13.7124 3.04458 13.5513 3.42448 13.229L5.92706 11.1058C6.09093 10.9668 6.17286 10.8973 6.21808 10.8108C6.258 10.7344 6.27749 10.649 6.27467 10.5628C6.27148 10.4653 6.22782 10.3671 6.1405 10.1707L4.80694 7.17203C4.6045 6.71681 4.50328 6.4892 4.54309 6.32406C4.57775 6.18027 4.6743 6.05921 4.80677 5.99342C4.95891 5.91786 5.20333 5.9659 5.69219 6.06197L8.91245 6.69481C9.1233 6.73625 9.22873 6.75697 9.32458 6.73837C9.4092 6.72195 9.48812 6.68394 9.55371 6.62803C9.62802 6.56468 9.67755 6.46934 9.77662 6.27865L11.2896 3.36637Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-04.svg b/@stellar/design-system/src/assets/icons/star-04.svg
new file mode 100644
index 00000000..90dde437
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2L14.012 7.23109C14.294 7.96432 14.435 8.33093 14.6542 8.63931C14.8486 8.91262 15.0874 9.15141 15.3607 9.34575C15.6691 9.56503 16.0357 9.70603 16.7689 9.98804L22 12L16.7689 14.012C16.0357 14.294 15.6691 14.435 15.3607 14.6542C15.0874 14.8486 14.8486 15.0874 14.6542 15.3607C14.435 15.6691 14.294 16.0357 14.012 16.7689L12 22L9.98804 16.7689C9.70603 16.0357 9.56503 15.6691 9.34575 15.3607C9.15141 15.0874 8.91262 14.8486 8.63931 14.6542C8.33093 14.435 7.96432 14.294 7.23109 14.012L2 12L7.23108 9.98804C7.96431 9.70603 8.33093 9.56503 8.63931 9.34575C8.91262 9.15141 9.15141 8.91262 9.34575 8.63931C9.56503 8.33093 9.70603 7.96431 9.98804 7.23108L12 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-05.svg b/@stellar/design-system/src/assets/icons/star-05.svg
new file mode 100644
index 00000000..93c2b7e7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2L10.6985 7.20599C10.4445 8.22185 10.3176 8.72978 10.0531 9.14309C9.81915 9.50868 9.50868 9.81915 9.14309 10.0531C8.72978 10.3176 8.22185 10.4445 7.20599 10.6985L2 12L7.20599 13.3015C8.22185 13.5555 8.72978 13.6824 9.14309 13.9469C9.50868 14.1808 9.81915 14.4913 10.0531 14.8569C10.3176 15.2702 10.4445 15.7782 10.6985 16.794L12 22L13.3015 16.794C13.5555 15.7782 13.6824 15.2702 13.9469 14.8569C14.1808 14.4913 14.4913 14.1808 14.8569 13.9469C15.2702 13.6824 15.7782 13.5555 16.794 13.3015L22 12L16.794 10.6985C15.7782 10.4445 15.2702 10.3176 14.8569 10.0531C14.4913 9.81915 14.1808 9.50868 13.9469 9.14309C13.6824 8.72978 13.5555 8.22185 13.3015 7.20599L12 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-06.svg b/@stellar/design-system/src/assets/icons/star-06.svg
new file mode 100644
index 00000000..9ddd0583
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-06.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.84281 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/star-07.svg b/@stellar/design-system/src/assets/icons/star-07.svg
new file mode 100644
index 00000000..b1e53e4c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/star-07.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12H20M19.071 19.0711L17.6567 17.6569M4 12H2M6.34292 6.34317L4.92871 4.92896M12 4V2M17.6567 6.34317L19.071 4.92896M12 22V20M4.92871 19.0711L6.34292 17.6569M12 7L13.545 10.13L17 10.635L14.5 13.07L15.09 16.51L12 14.885L8.91 16.51L9.5 13.07L7 10.635L10.455 10.13L12 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stars-01.svg b/@stellar/design-system/src/assets/icons/stars-01.svg
new file mode 100644
index 00000000..929d4a99
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stars-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.5 13L7.28446 14.5689C7.54995 15.0999 7.68269 15.3654 7.86003 15.5954C8.01739 15.7996 8.20041 15.9826 8.40455 16.14C8.63462 16.3173 8.9001 16.4501 9.43108 16.7155L11 17.5L9.43108 18.2845C8.9001 18.5499 8.63462 18.6827 8.40455 18.86C8.20041 19.0174 8.01739 19.2004 7.86003 19.4046C7.68269 19.6346 7.54995 19.9001 7.28446 20.4311L6.5 22L5.71554 20.4311C5.45005 19.9001 5.31731 19.6346 5.13997 19.4046C4.98261 19.2004 4.79959 19.0174 4.59545 18.86C4.36538 18.6827 4.0999 18.5499 3.56892 18.2845L2 17.5L3.56892 16.7155C4.0999 16.4501 4.36538 16.3173 4.59545 16.14C4.79959 15.9826 4.98261 15.7996 5.13997 15.5954C5.31731 15.3654 5.45005 15.0999 5.71554 14.5689L6.5 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 2L16.1786 5.06442C16.4606 5.79765 16.6016 6.16426 16.8209 6.47264C17.0153 6.74595 17.254 6.98475 17.5274 7.17909C17.8357 7.39836 18.2024 7.53937 18.9356 7.82138L22 9L18.9356 10.1786C18.2024 10.4606 17.8357 10.6016 17.5274 10.8209C17.254 11.0153 17.0153 11.254 16.8209 11.5274C16.6016 11.8357 16.4606 12.2024 16.1786 12.9356L15 16L13.8214 12.9356C13.5394 12.2024 13.3984 11.8357 13.1791 11.5274C12.9847 11.254 12.746 11.0153 12.4726 10.8209C12.1643 10.6016 11.7976 10.4606 11.0644 10.1786L8 9L11.0644 7.82138C11.7976 7.53937 12.1643 7.39836 12.4726 7.17909C12.746 6.98475 12.9847 6.74595 13.1791 6.47264C13.3984 6.16426 13.5394 5.79765 13.8214 5.06442L15 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stars-02.svg b/@stellar/design-system/src/assets/icons/stars-02.svg
new file mode 100644
index 00000000..1ba6986b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stars-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.8428 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stars-03.svg b/@stellar/design-system/src/assets/icons/stars-03.svg
new file mode 100644
index 00000000..21f05b39
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stars-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5 8V3M5.5 21V16M16 5.5H21M3 18.5H8M6.5 2L5.71554 3.56892C5.45005 4.09989 5.31731 4.36538 5.13997 4.59545C4.98261 4.79959 4.79959 4.98261 4.59545 5.13997C4.36538 5.31731 4.0999 5.45005 3.56892 5.71554L2 6.5L3.56892 7.28446C4.0999 7.54995 4.36538 7.68269 4.59545 7.86003C4.79959 8.01739 4.98261 8.20041 5.13997 8.40455C5.31731 8.63462 5.45005 8.9001 5.71554 9.43108L6.5 11L7.28446 9.43108C7.54995 8.9001 7.68269 8.63462 7.86003 8.40455C8.01739 8.20041 8.20041 8.01739 8.40455 7.86003C8.63462 7.68269 8.9001 7.54995 9.43108 7.28446L11 6.5L9.43108 5.71554C8.9001 5.45005 8.63462 5.31731 8.40455 5.13997C8.20041 4.98261 8.01739 4.79959 7.86003 4.59545C7.68269 4.36538 7.54995 4.0999 7.28446 3.56892L6.5 2ZM17 12L16.0489 13.9022C15.7834 14.4332 15.6506 14.6987 15.4733 14.9288C15.3159 15.1329 15.1329 15.3159 14.9288 15.4733C14.6987 15.6506 14.4332 15.7834 13.9023 16.0489L12 17L13.9023 17.9511C14.4332 18.2166 14.6987 18.3494 14.9288 18.5267C15.1329 18.6841 15.3159 18.8671 15.4733 19.0712C15.6506 19.3013 15.7834 19.5668 16.0489 20.0977L17 22L17.9511 20.0978C18.2166 19.5668 18.3494 19.3013 18.5267 19.0712C18.6841 18.8671 18.8671 18.6841 19.0712 18.5267C19.3013 18.3494 19.5668 18.2166 20.0977 17.9511L22 17L20.0977 16.0489C19.5668 15.7834 19.3013 15.6506 19.0712 15.4733C18.8671 15.3159 18.6841 15.1329 18.5267 14.9288C18.3494 14.6987 18.2166 14.4332 17.9511 13.9023L17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/status.svg b/@stellar/design-system/src/assets/icons/status.svg
deleted file mode 100644
index 6b0884e6..00000000
--- a/@stellar/design-system/src/assets/icons/status.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12.0459 14.7979C12.8792 14.7979 13.5876 14.5062 14.1709 13.9229C14.7542 13.3396 15.0459 12.6312 15.0459 11.7979C15.0459 10.9646 14.7542 10.2562 14.1709 9.67291C13.5876 9.08958 12.8792 8.79791 12.0459 8.79791C11.2126 8.79791 10.5042 9.08958 9.9209 9.67291C9.33756 10.2562 9.0459 10.9646 9.0459 11.7979C9.0459 12.6312 9.33756 13.3396 9.9209 13.9229C10.5042 14.5062 11.2126 14.7979 12.0459 14.7979ZM12.0459 21.7979C10.6626 21.7979 9.36257 21.5354 8.1459 21.0104C6.92923 20.4854 5.8709 19.7729 4.9709 18.8729C4.0709 17.9729 3.3584 16.9146 2.8334 15.6979C2.3084 14.4812 2.0459 13.1812 2.0459 11.7979C2.0459 10.4146 2.3084 9.11458 2.8334 7.89791C3.3584 6.68125 4.0709 5.62291 4.9709 4.72291C5.8709 3.82291 6.92923 3.11041 8.1459 2.58541C9.36257 2.06041 10.6626 1.79791 12.0459 1.79791C13.4292 1.79791 14.7292 2.06041 15.9459 2.58541C17.1626 3.11041 18.2209 3.82291 19.1209 4.72291C20.0209 5.62291 20.7334 6.68125 21.2584 7.89791C21.7834 9.11458 22.0459 10.4146 22.0459 11.7979C22.0459 13.1812 21.7834 14.4812 21.2584 15.6979C20.7334 16.9146 20.0209 17.9729 19.1209 18.8729C18.2209 19.7729 17.1626 20.4854 15.9459 21.0104C14.7292 21.5354 13.4292 21.7979 12.0459 21.7979Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sticker-circle.svg b/@stellar/design-system/src/assets/icons/sticker-circle.svg
new file mode 100644
index 00000000..562ee9e8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sticker-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22.0006 12.1171C22.0006 6.5296 17.471 2 11.8835 2C7.34846 2 3.51036 4.98385 2.22531 9.0954C2.143 9.35878 2.10184 9.49047 2.10572 9.65514C2.10888 9.78904 2.14958 9.95446 2.20891 10.0745C2.28188 10.2222 2.39454 10.3349 2.61986 10.5602L13.4409 21.3807C13.6662 21.606 13.7788 21.7187 13.9265 21.7916C14.0466 21.8509 14.212 21.8916 14.3459 21.8948C14.5106 21.8987 14.6423 21.8575 14.9057 21.7752C19.017 20.49 22.0006 16.652 22.0006 12.1171Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.4468 9.7341C3.6873 9.71699 3.93013 9.70829 4.17499 9.70829C9.76253 9.70829 14.2921 14.2379 14.2921 19.8254C14.2921 20.0703 14.2834 20.3131 14.2663 20.5536C14.2364 20.9738 14.2215 21.1839 14.099 21.3137C13.9995 21.4191 13.8298 21.4824 13.6856 21.468C13.508 21.4502 13.3466 21.2887 13.0236 20.9658L3.03464 10.9768C2.71171 10.6539 2.55024 10.4924 2.53246 10.3148C2.51801 10.1706 2.58136 10.0009 2.68675 9.9014C2.81651 9.77892 3.02661 9.76398 3.4468 9.7341Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sticker-square.svg b/@stellar/design-system/src/assets/icons/sticker-square.svg
new file mode 100644
index 00000000..f1b56c5c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sticker-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 3.5V6.2C13 7.88016 13 8.72024 13.327 9.36197C13.6146 9.92646 14.0735 10.3854 14.638 10.673C15.2798 11 16.1198 11 17.8 11H20.5M21 12.9882V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H11.0118C11.7455 3 12.1124 3 12.4577 3.08289C12.7638 3.15638 13.0564 3.27759 13.3249 3.44208C13.6276 3.6276 13.887 3.88703 14.4059 4.40589L19.5941 9.59411C20.113 10.113 20.3724 10.3724 20.5579 10.6751C20.7224 10.9436 20.8436 11.2362 20.9171 11.5423C21 11.8876 21 12.2545 21 12.9882Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stop-circle.svg b/@stellar/design-system/src/assets/icons/stop-circle.svg
new file mode 100644
index 00000000..43a6a2e5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stop-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 9.6C8 9.03995 8 8.75992 8.10899 8.54601C8.20487 8.35785 8.35785 8.20487 8.54601 8.10899C8.75992 8 9.03995 8 9.6 8H14.4C14.9601 8 15.2401 8 15.454 8.10899C15.6422 8.20487 15.7951 8.35785 15.891 8.54601C16 8.75992 16 9.03995 16 9.6V14.4C16 14.9601 16 15.2401 15.891 15.454C15.7951 15.6422 15.6422 15.7951 15.454 15.891C15.2401 16 14.9601 16 14.4 16H9.6C9.03995 16 8.75992 16 8.54601 15.891C8.35785 15.7951 8.20487 15.6422 8.10899 15.454C8 15.2401 8 14.9601 8 14.4V9.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stop-square.svg b/@stellar/design-system/src/assets/icons/stop-square.svg
new file mode 100644
index 00000000..f8c1d91e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stop-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 9.6C8 9.03995 8 8.75992 8.10899 8.54601C8.20487 8.35785 8.35785 8.20487 8.54601 8.10899C8.75992 8 9.03995 8 9.6 8H14.4C14.9601 8 15.2401 8 15.454 8.10899C15.6422 8.20487 15.7951 8.35785 15.891 8.54601C16 8.75992 16 9.03995 16 9.6V14.4C16 14.9601 16 15.2401 15.891 15.454C15.7951 15.6422 15.6422 15.7951 15.454 15.891C15.2401 16 14.9601 16 14.4 16H9.6C9.03995 16 8.75992 16 8.54601 15.891C8.35785 15.7951 8.20487 15.6422 8.10899 15.454C8 15.2401 8 14.9601 8 14.4V9.6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/stop.svg b/@stellar/design-system/src/assets/icons/stop.svg
new file mode 100644
index 00000000..152aa61b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/stop.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/store.svg b/@stellar/design-system/src/assets/icons/store.svg
deleted file mode 100644
index 85e495b1..00000000
--- a/@stellar/design-system/src/assets/icons/store.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6702)"><path d="M4.99995 6C4.71662 6 4.47895 5.90433 4.28695 5.713C4.09562 5.521 3.99995 5.28333 3.99995 5C3.99995 4.71667 4.09562 4.479 4.28695 4.287C4.47895 4.09567 4.71662 4 4.99995 4H19C19.2833 4 19.5206 4.09567 19.712 4.287C19.904 4.479 20 4.71667 20 5C20 5.28333 19.904 5.521 19.712 5.713C19.5206 5.90433 19.2833 6 19 6H4.99995ZM4.99995 20C4.71662 20 4.47895 19.904 4.28695 19.712C4.09562 19.5207 3.99995 19.2833 3.99995 19V14H3.82495C3.50828 14 3.24995 13.879 3.04995 13.637C2.84995 13.3957 2.78328 13.1167 2.84995 12.8L3.84995 7.8C3.89995 7.56667 4.01662 7.375 4.19995 7.225C4.38328 7.075 4.59162 7 4.82495 7H19.1749C19.4083 7 19.6166 7.075 19.7999 7.225C19.9833 7.375 20.1 7.56667 20.15 7.8L21.15 12.8C21.2166 13.1167 21.15 13.3957 20.95 13.637C20.75 13.879 20.4916 14 20.1749 14H20V19C20 19.2833 19.904 19.5207 19.712 19.712C19.5206 19.904 19.2833 20 19 20C18.7166 20 18.4793 19.904 18.288 19.712C18.096 19.5207 18 19.2833 18 19V14H14V19C14 19.2833 13.9043 19.5207 13.713 19.712C13.521 19.904 13.2833 20 13 20H4.99995ZM5.99995 18H12V14H5.99995V18Z"/></g><defs><clipPath id="clip0_1113_6702"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/strikethrough-01.svg b/@stellar/design-system/src/assets/icons/strikethrough-01.svg
new file mode 100644
index 00000000..a86fab26
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/strikethrough-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 16C6 18.2091 7.79086 20 10 20H14C16.2091 20 18 18.2091 18 16C18 13.7909 16.2091 12 14 12M18 8C18 5.79086 16.2091 4 14 4H10C7.79086 4 6 5.79086 6 8M3 12H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/strikethrough-02.svg b/@stellar/design-system/src/assets/icons/strikethrough-02.svg
new file mode 100644
index 00000000..6b6edfd8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/strikethrough-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 16C6 18.2091 7.79086 20 10 20H14C16.2091 20 18 18.2091 18 16C18 13.7909 16.2091 12 14 12M10.5 20C12.7091 20 14.5 18.2091 14.5 16C14.5 13.7909 12.7091 12 10.5 12M18 8C18 5.79086 16.2091 4 14 4H10C7.79086 4 6 5.79086 6 8M13.5 4C11.2909 4 9.5 5.79086 9.5 8M3 12H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/strikethrough-square.svg b/@stellar/design-system/src/assets/icons/strikethrough-square.svg
new file mode 100644
index 00000000..15a6bbed
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/strikethrough-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 12H18M11 12H13C14.3807 12 15.5 13.1193 15.5 14.5C15.5 15.8807 14.3807 17 13 17H10.8333C9.83827 17 8.98868 16.3771 8.65321 15.5M15.3468 8.5C15.0113 7.62288 14.1617 7 13.1667 7H11C9.97484 7 9.0938 7.61705 8.70802 8.5M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/subscript.svg b/@stellar/design-system/src/assets/icons/subscript.svg
new file mode 100644
index 00000000..38550aff
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/subscript.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 5L13 15M13 5L3 15M21 19.0001H17C17 17.5001 17.44 17.0001 18.5 16.5001C19.56 16.0001 21 15.3301 21 14.0001C21 13.5301 20.83 13.0701 20.52 12.7101C20.1999 12.3476 19.7649 12.1061 19.2879 12.026C18.811 11.9459 18.321 12.0321 17.9 12.2701C17.48 12.5101 17.16 12.8901 17 13.3401" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sun-setting-01.svg b/@stellar/design-system/src/assets/icons/sun-setting-01.svg
new file mode 100644
index 00000000..40f83eb9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sun-setting-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 3V5M5.31412 7.31412L3.8999 5.8999M18.6858 7.31412L20.1 5.8999M6 15C6 11.6863 8.68629 9 12 9C15.3137 9 18 11.6863 18 15M22 15H2M19 19H5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sun-setting-02.svg b/@stellar/design-system/src/assets/icons/sun-setting-02.svg
new file mode 100644
index 00000000..0b998150
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sun-setting-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 16.5H2M20 20H4M12 3V5M4 13H2M6.31412 7.31412L4.8999 5.8999M17.6855 7.31412L19.0998 5.8999M22 13H20M7 13C7 10.2386 9.23858 8 12 8C14.7614 8 17 10.2386 17 13" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sun-setting-03.svg b/@stellar/design-system/src/assets/icons/sun-setting-03.svg
new file mode 100644
index 00000000..b0dddd44
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sun-setting-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.06006 20.9125C7.27006 21.4625 8.81006 21.4625 10.0201 20.9125C11.2301 20.3625 12.7701 20.3625 13.9801 20.9125C15.1901 21.4625 16.7301 21.4625 17.9401 20.9125M12 3V5M4 13H2M6.31412 7.31412L4.8999 5.8999M17.6855 7.31412L19.0998 5.8999M22 13H20M7 13C7 10.2386 9.23858 8 12 8C14.7614 8 17 10.2386 17 13M2.1001 17.4125C3.3101 16.8625 4.8501 16.8625 6.0601 17.4125C7.2701 17.9625 8.8101 17.9625 10.0201 17.4125C11.2301 16.8625 12.7701 16.8625 13.9801 17.4125C15.1901 17.9625 16.7301 17.9625 17.9401 17.4125C19.1501 16.8625 20.6901 16.8625 21.9001 17.4125" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sun.svg b/@stellar/design-system/src/assets/icons/sun.svg
new file mode 100644
index 00000000..963bbdfd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sun.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V4M12 20V22M4 12H2M6.31412 6.31412L4.8999 4.8999M17.6859 6.31412L19.1001 4.8999M6.31412 17.69L4.8999 19.1042M17.6859 17.69L19.1001 19.1042M22 12H20M17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sunrise.svg b/@stellar/design-system/src/assets/icons/sunrise.svg
new file mode 100644
index 00000000..b151a7db
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sunrise.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 18H2M6.31412 12.3141L4.8999 10.8999M17.6858 12.3141L19.1 10.8999M22 18H20M7 18C7 15.2386 9.23858 13 12 13C14.7614 13 17 15.2386 17 18M22 22H2M16 6L12 2M12 2L8 6M12 2V9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/sunset.svg b/@stellar/design-system/src/assets/icons/sunset.svg
new file mode 100644
index 00000000..603a4647
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/sunset.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 18H2M6.31412 12.3141L4.8999 10.8999M17.6858 12.3141L19.1 10.8999M22 18H20M7 18C7 15.2386 9.23858 13 12 13C14.7614 13 17 15.2386 17 18M22 22H2M16 5L12 9M12 9L8 5M12 9V2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/switch-horizontal-01.svg b/@stellar/design-system/src/assets/icons/switch-horizontal-01.svg
new file mode 100644
index 00000000..d2ba3a97
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/switch-horizontal-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 17H4M4 17L8 13M4 17L8 21M4 7H20M20 7L16 3M20 7L16 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/switch-horizontal-02.svg b/@stellar/design-system/src/assets/icons/switch-horizontal-02.svg
new file mode 100644
index 00000000..dab382fa
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/switch-horizontal-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 17H20M20 17L16 13M20 17L16 21M20 7H4M4 7L8 3M4 7L8 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/switch-vertical-01.svg b/@stellar/design-system/src/assets/icons/switch-vertical-01.svg
new file mode 100644
index 00000000..93ba87cd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/switch-vertical-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 4V20M17 20L13 16M17 20L21 16M7 20V4M7 4L3 8M7 4L11 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/switch-vertical-02.svg b/@stellar/design-system/src/assets/icons/switch-vertical-02.svg
new file mode 100644
index 00000000..dcade0cf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/switch-vertical-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 4V20M7 20L3 16M7 20L11 16M17 20V4M17 4L13 8M17 4L21 8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/table.svg b/@stellar/design-system/src/assets/icons/table.svg
new file mode 100644
index 00000000..e68cf084
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/table.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 9L21 9M9 3L9 21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tablet-01.svg b/@stellar/design-system/src/assets/icons/tablet-01.svg
new file mode 100644
index 00000000..2d91df6c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tablet-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 17.5H12.01M7.2 22H16.8C17.9201 22 18.4802 22 18.908 21.782C19.2843 21.5903 19.5903 21.2843 19.782 20.908C20 20.4802 20 19.9201 20 18.8V5.2C20 4.07989 20 3.51984 19.782 3.09202C19.5903 2.71569 19.2843 2.40973 18.908 2.21799C18.4802 2 17.9201 2 16.8 2H7.2C6.0799 2 5.51984 2 5.09202 2.21799C4.71569 2.40973 4.40973 2.71569 4.21799 3.09202C4 3.51984 4 4.0799 4 5.2V18.8C4 19.9201 4 20.4802 4.21799 20.908C4.40973 21.2843 4.71569 21.5903 5.09202 21.782C5.51984 22 6.07989 22 7.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tablet-02.svg b/@stellar/design-system/src/assets/icons/tablet-02.svg
new file mode 100644
index 00000000..aba56f68
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tablet-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 2V3.4C15 3.96005 15 4.24008 14.891 4.45399C14.7951 4.64215 14.6422 4.79513 14.454 4.89101C14.2401 5 13.9601 5 13.4 5H10.6C10.0399 5 9.75992 5 9.54601 4.89101C9.35785 4.79513 9.20487 4.64215 9.10899 4.45399C9 4.24008 9 3.96005 9 3.4V2M7.2 22H16.8C17.9201 22 18.4802 22 18.908 21.782C19.2843 21.5903 19.5903 21.2843 19.782 20.908C20 20.4802 20 19.9201 20 18.8V5.2C20 4.07989 20 3.51984 19.782 3.09202C19.5903 2.71569 19.2843 2.40973 18.908 2.21799C18.4802 2 17.9201 2 16.8 2H7.2C6.0799 2 5.51984 2 5.09202 2.21799C4.71569 2.40973 4.40973 2.71569 4.21799 3.09202C4 3.51984 4 4.0799 4 5.2V18.8C4 19.9201 4 20.4802 4.21799 20.908C4.40973 21.2843 4.71569 21.5903 5.09202 21.782C5.51984 22 6.07989 22 7.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tag-01.svg b/@stellar/design-system/src/assets/icons/tag-01.svg
new file mode 100644
index 00000000..151e35eb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tag-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8H8.01M2 5.2L2 9.67451C2 10.1637 2 10.4083 2.05526 10.6385C2.10425 10.8425 2.18506 11.0376 2.29472 11.2166C2.4184 11.4184 2.59135 11.5914 2.93726 11.9373L10.6059 19.6059C11.7939 20.7939 12.388 21.388 13.0729 21.6105C13.6755 21.8063 14.3245 21.8063 14.927 21.6105C15.612 21.388 16.2061 20.7939 17.3941 19.6059L19.6059 17.3941C20.7939 16.2061 21.388 15.612 21.6105 14.927C21.8063 14.3245 21.8063 13.6755 21.6105 13.0729C21.388 12.388 20.7939 11.7939 19.6059 10.6059L11.9373 2.93726C11.5914 2.59135 11.4184 2.4184 11.2166 2.29472C11.0376 2.18506 10.8425 2.10425 10.6385 2.05526C10.4083 2 10.1637 2 9.67452 2L5.2 2C4.0799 2 3.51984 2 3.09202 2.21799C2.7157 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2ZM8.5 8C8.5 8.27614 8.27614 8.5 8 8.5C7.72386 8.5 7.5 8.27614 7.5 8C7.5 7.72386 7.72386 7.5 8 7.5C8.27614 7.5 8.5 7.72386 8.5 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tag-02.svg b/@stellar/design-system/src/assets/icons/tag-02.svg
new file mode 100644
index 00000000..97c596d6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tag-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8H8.01M4.56274 2.93726L2.93726 4.56274C2.59136 4.90864 2.4184 5.0816 2.29472 5.28343C2.18506 5.46237 2.10425 5.65746 2.05526 5.86154C2 6.09171 2 6.3363 2 6.82548L2 9.67452C2 10.1637 2 10.4083 2.05526 10.6385C2.10425 10.8425 2.18506 11.0376 2.29472 11.2166C2.4184 11.4184 2.59135 11.5914 2.93726 11.9373L10.6059 19.6059C11.7939 20.7939 12.388 21.388 13.0729 21.6105C13.6755 21.8063 14.3245 21.8063 14.927 21.6105C15.612 21.388 16.2061 20.7939 17.3941 19.6059L19.6059 17.3941C20.7939 16.2061 21.388 15.612 21.6105 14.927C21.8063 14.3245 21.8063 13.6755 21.6105 13.0729C21.388 12.388 20.7939 11.7939 19.6059 10.6059L11.9373 2.93726C11.5914 2.59136 11.4184 2.4184 11.2166 2.29472C11.0376 2.18506 10.8425 2.10425 10.6385 2.05526C10.4083 2 10.1637 2 9.67452 2L6.82548 2C6.3363 2 6.09171 2 5.86154 2.05526C5.65746 2.10425 5.46237 2.18506 5.28343 2.29472C5.0816 2.4184 4.90865 2.59135 4.56274 2.93726ZM8.5 8C8.5 8.27614 8.27614 8.5 8 8.5C7.72386 8.5 7.5 8.27614 7.5 8C7.5 7.72386 7.72386 7.5 8 7.5C8.27614 7.5 8.5 7.72386 8.5 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tag-03.svg b/@stellar/design-system/src/assets/icons/tag-03.svg
new file mode 100644
index 00000000..b2274fa8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tag-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 11L13.4059 3.40589C12.887 2.88703 12.6276 2.6276 12.3249 2.44208C12.0564 2.27759 11.7638 2.15638 11.4577 2.08289C11.1124 2 10.7455 2 10.0118 2L6 2M3 8.7L3 10.6745C3 11.1637 3 11.4083 3.05526 11.6385C3.10425 11.8425 3.18506 12.0376 3.29472 12.2166C3.4184 12.4184 3.59136 12.5914 3.93726 12.9373L11.7373 20.7373C12.5293 21.5293 12.9253 21.9253 13.382 22.0737C13.7837 22.2042 14.2163 22.2042 14.618 22.0737C15.0747 21.9253 15.4707 21.5293 16.2627 20.7373L18.7373 18.2627C19.5293 17.4707 19.9253 17.0747 20.0737 16.618C20.2042 16.2163 20.2042 15.7837 20.0737 15.382C19.9253 14.9253 19.5293 14.5293 18.7373 13.7373L11.4373 6.43726C11.0914 6.09136 10.9184 5.9184 10.7166 5.79472C10.5376 5.68506 10.3425 5.60425 10.1385 5.55526C9.90829 5.5 9.6637 5.5 9.17452 5.5H6.2C5.0799 5.5 4.51984 5.5 4.09202 5.71799C3.7157 5.90973 3.40973 6.21569 3.21799 6.59202C3 7.01984 3 7.57989 3 8.7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/target-01.svg b/@stellar/design-system/src/assets/icons/target-01.svg
new file mode 100644
index 00000000..127ef745
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/target-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12C22 17.5228 17.5228 22 12 22M22 12C22 6.47715 17.5228 2 12 2M22 12H18M12 22C6.47715 22 2 17.5228 2 12M12 22V18M2 12C2 6.47715 6.47715 2 12 2M2 12H6M12 2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/target-02.svg b/@stellar/design-system/src/assets/icons/target-02.svg
new file mode 100644
index 00000000..4b610fb7
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/target-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12H18M6 12H2M12 6V2M12 22V18M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/target-03.svg b/@stellar/design-system/src/assets/icons/target-03.svg
new file mode 100644
index 00000000..90026e8d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/target-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 12H18M6 12H2M12 6V2M12 22V18M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/target-04.svg b/@stellar/design-system/src/assets/icons/target-04.svg
new file mode 100644
index 00000000..c301f3e0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/target-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8V5L19 2L20 4L22 5L19 8H16ZM16 8L12 11.9999M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2M17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/target-05.svg b/@stellar/design-system/src/assets/icons/target-05.svg
new file mode 100644
index 00000000..4b919f5d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/target-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 18C15.3137 18 18 15.3137 18 12C18 8.68629 15.3137 6 12 6C8.68629 6 6 8.68629 6 12C6 15.3137 8.68629 18 12 18Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/telescope.svg b/@stellar/design-system/src/assets/icons/telescope.svg
new file mode 100644
index 00000000..34e7b4bb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/telescope.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.1218 14.8446L18.0004 21.9999M10.879 14.8446L6.00041 21.9999M14.0004 13.2C14.0004 14.3045 13.105 15.2 12.0004 15.2C10.8958 15.2 10.0004 14.3045 10.0004 13.2C10.0004 12.0954 10.8958 11.2 12.0004 11.2C13.105 11.2 14.0004 12.0954 14.0004 13.2ZM17.1489 4.53225L5.36462 7.68984C5.09414 7.76232 4.95889 7.79855 4.86969 7.87888C4.79122 7.94953 4.73713 8.04321 4.71518 8.14649C4.69022 8.26391 4.72646 8.39915 4.79893 8.66964L5.67892 11.9538C5.7514 12.2243 5.78763 12.3595 5.86796 12.4487C5.93861 12.5272 6.03229 12.5813 6.13557 12.6032C6.25299 12.6282 6.38823 12.5919 6.65871 12.5195L18.443 9.36188L17.1489 4.53225ZM21.7928 9.49958C20.7109 9.78949 20.1699 9.93444 19.7002 9.83461C19.2871 9.74679 18.9124 9.53045 18.6298 9.21657C18.3085 8.85975 18.1635 8.31878 17.8736 7.23684L17.7183 6.65728C17.4284 5.57535 17.2835 5.03438 17.3833 4.56471C17.4711 4.15158 17.6875 3.77686 18.0013 3.49425C18.3582 3.17296 18.8991 3.02801 19.9811 2.7381C20.2515 2.66562 20.3868 2.62939 20.5042 2.65434C20.6075 2.6763 20.7012 2.73038 20.7718 2.80885C20.8521 2.89806 20.8884 3.0333 20.9609 3.30379L22.3585 8.51979C22.431 8.79027 22.4672 8.92551 22.4422 9.04293C22.4203 9.14621 22.3662 9.23989 22.2877 9.31055C22.1985 9.39087 22.0633 9.42711 21.7928 9.49958ZM3.50212 12.33L4.85441 11.9677C5.1249 11.8952 5.26014 11.8589 5.34935 11.7786C5.42782 11.708 5.4819 11.6143 5.50386 11.511C5.52881 11.3936 5.49258 11.2583 5.4201 10.9879L5.05775 9.63556C4.98528 9.36508 4.94904 9.22983 4.86872 9.14063C4.79806 9.06216 4.70438 9.00807 4.6011 8.98612C4.48368 8.96116 4.34844 8.9974 4.07796 9.06988L2.72566 9.43222C2.45518 9.5047 2.31993 9.54094 2.23073 9.62126C2.15226 9.69191 2.09817 9.78559 2.07622 9.88888C2.05126 10.0063 2.0875 10.1415 2.15998 10.412L2.52232 11.7643C2.5948 12.0348 2.63104 12.17 2.71136 12.2592C2.78201 12.3377 2.87569 12.3918 2.97898 12.4138C3.09639 12.4387 3.23163 12.4025 3.50212 12.33Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/terminal-browser.svg b/@stellar/design-system/src/assets/icons/terminal-browser.svg
new file mode 100644
index 00000000..7774bd0e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/terminal-browser.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 9H2M6 17.5L8.5 15L6 12.5M11 17.5L15 17.5M2 7.8L2 16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27977 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3L6.8 3C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/terminal-circle.svg b/@stellar/design-system/src/assets/icons/terminal-circle.svg
new file mode 100644
index 00000000..e56058fe
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/terminal-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 15L10 12L7 9M13 15H17M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/terminal-square.svg b/@stellar/design-system/src/assets/icons/terminal-square.svg
new file mode 100644
index 00000000..929c8f84
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/terminal-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 15L10 12L7 9M13 15H17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/terminal.svg b/@stellar/design-system/src/assets/icons/terminal.svg
new file mode 100644
index 00000000..bc958975
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/terminal.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 17L10 11L4 5M12 19H20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/text-input.svg b/@stellar/design-system/src/assets/icons/text-input.svg
new file mode 100644
index 00000000..a171bace
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/text-input.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 7H5.2C4.0799 7 3.51984 7 3.09202 7.21799C2.71569 7.40973 2.40973 7.71569 2.21799 8.09202C2 8.51984 2 9.0799 2 10.2V13.8C2 14.9201 2 15.4802 2.21799 15.908C2.40973 16.2843 2.71569 16.5903 3.09202 16.782C3.51984 17 4.07989 17 5.2 17H13M17 7H18.8C19.9201 7 20.4802 7 20.908 7.21799C21.2843 7.40973 21.5903 7.71569 21.782 8.09202C22 8.51984 22 9.0799 22 10.2V13.8C22 14.9201 22 15.4802 21.782 15.908C21.5903 16.2843 21.2843 16.5903 20.908 16.782C20.4802 17 19.9201 17 18.8 17H17M17 21L17 3M19.5 3.00001L14.5 3M19.5 21L14.5 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thermometer-01.svg b/@stellar/design-system/src/assets/icons/thermometer-01.svg
new file mode 100644
index 00000000..af6262d9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thermometer-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 4.5C14.5 3.11929 13.3807 2 12 2C10.6193 2 9.5 3.11929 9.5 4.5V13.7578C8.29401 14.565 7.5 15.9398 7.5 17.5C7.5 19.9853 9.51472 22 12 22C14.4853 22 16.5 19.9853 16.5 17.5C16.5 15.9398 15.706 14.565 14.5 13.7578V4.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thermometer-02.svg b/@stellar/design-system/src/assets/icons/thermometer-02.svg
new file mode 100644
index 00000000..d570e39d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thermometer-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14.5 4.5C14.5 3.11929 13.3807 2 12 2C10.6193 2 9.5 3.11929 9.5 4.5V13.7578C8.29401 14.565 7.5 15.9398 7.5 17.5C7.5 19.9853 9.51472 22 12 22C14.4853 22 16.5 19.9853 16.5 17.5C16.5 15.9398 15.706 14.565 14.5 13.7578V4.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 18.5C12.5523 18.5 13 18.0523 13 17.5C13 16.9477 12.5523 16.5 12 16.5C11.4477 16.5 11 16.9477 11 17.5C11 18.0523 11.4477 18.5 12 18.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thermometer-03.svg b/@stellar/design-system/src/assets/icons/thermometer-03.svg
new file mode 100644
index 00000000..5114dc52
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thermometer-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 3L15 3M21 7L15 7M21 11L15 11M5.5 13.7578V4.5C5.5 3.11929 6.61929 2 8 2C9.38071 2 10.5 3.11929 10.5 4.5V13.7578C11.706 14.565 12.5 15.9398 12.5 17.5C12.5 19.9853 10.4853 22 8 22C5.51472 22 3.5 19.9853 3.5 17.5C3.5 15.9398 4.29401 14.565 5.5 13.7578ZM9 17.5C9 18.0523 8.55228 18.5 8 18.5C7.44772 18.5 7 18.0523 7 17.5C7 16.9477 7.44772 16.5 8 16.5C8.55228 16.5 9 16.9477 9 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thermometer-cold.svg b/@stellar/design-system/src/assets/icons/thermometer-cold.svg
new file mode 100644
index 00000000..f8b15fe3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thermometer-cold.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12H12M9 4V20M3 9L6 12L3 15M12 6L9 9L6 6M6 18L9 15L10.5 16.5M20 14.5351V4C20 2.89543 19.1046 2 18 2C16.8954 2 16 2.89543 16 4V14.5351C14.8044 15.2267 14 16.5194 14 18C14 20.2091 15.7909 22 18 22C20.2091 22 22 20.2091 22 18C22 16.5194 21.1956 15.2267 20 14.5351Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thermometer-warm.svg b/@stellar/design-system/src/assets/icons/thermometer-warm.svg
new file mode 100644
index 00000000..1f177973
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thermometer-warm.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 9C11.1077 8.98562 10.2363 9.27003 9.52424 9.808C8.81222 10.346 8.30055 11.1066 8.07061 11.9688C7.84068 12.8311 7.90568 13.7455 8.25529 14.5665C8.6049 15.3876 9.21904 16.0682 10 16.5M12 3V5M6.6 18.4L5.2 19.8M4 13H2M6.6 7.6L5.2 6.2M20 14.5351V4C20 2.89543 19.1046 2 18 2C16.8954 2 16 2.89543 16 4V14.5351C14.8044 15.2267 14 16.5194 14 18C14 20.2091 15.7909 22 18 22C20.2091 22 22 20.2091 22 18C22 16.5194 21.1956 15.2267 20 14.5351Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thumbs-down.svg b/@stellar/design-system/src/assets/icons/thumbs-down.svg
new file mode 100644
index 00000000..e98632a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thumbs-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 2V13M22 9.8V5.2C22 4.07989 22 3.51984 21.782 3.09202C21.5903 2.71569 21.2843 2.40973 20.908 2.21799C20.4801 2 19.9201 2 18.8 2H8.118C6.65652 2 5.92578 2 5.33557 2.26743C4.81539 2.50314 4.37329 2.88242 4.06123 3.36072C3.70716 3.90339 3.59605 4.62564 3.37382 6.07012L2.85074 9.47012C2.55764 11.3753 2.41108 12.3279 2.6938 13.0691C2.94193 13.7197 3.40864 14.2637 4.01391 14.6079C4.70352 15 5.66732 15 7.59493 15H8.39999C8.96004 15 9.24007 15 9.45398 15.109C9.64214 15.2049 9.79512 15.3578 9.891 15.546C9.99999 15.7599 9.99999 16.0399 9.99999 16.6V19.5342C9.99999 20.896 11.104 22 12.4658 22C12.7907 22 13.085 21.8087 13.2169 21.5119L16.5777 13.9502C16.7305 13.6062 16.807 13.4343 16.9278 13.3082C17.0346 13.1967 17.1657 13.1115 17.3109 13.0592C17.4752 13 17.6634 13 18.0398 13H18.8C19.9201 13 20.4801 13 20.908 12.782C21.2843 12.5903 21.5903 12.2843 21.782 11.908C22 11.4802 22 10.9201 22 9.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/thumbs-up.svg b/@stellar/design-system/src/assets/icons/thumbs-up.svg
new file mode 100644
index 00000000..cde30dc6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/thumbs-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 22V11M2 13V20C2 21.1046 2.89543 22 4 22H17.4262C18.907 22 20.1662 20.9197 20.3914 19.4562L21.4683 12.4562C21.7479 10.6389 20.3418 9 18.5032 9H15C14.4477 9 14 8.55228 14 8V4.46584C14 3.10399 12.896 2 11.5342 2C11.2093 2 10.915 2.1913 10.7831 2.48812L7.26394 10.4061C7.10344 10.7673 6.74532 11 6.35013 11H4C2.89543 11 2 11.8954 2 13Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/ticket-01.svg b/@stellar/design-system/src/assets/icons/ticket-01.svg
new file mode 100644
index 00000000..7bd8fb84
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/ticket-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10 8V7M10 12.5V11.5M10 17V16M5.2 4H18.8C19.9201 4 20.4802 4 20.908 4.21799C21.2843 4.40973 21.5903 4.71569 21.782 5.09202C22 5.51984 22 6.0799 22 7.2V8.5C20.067 8.5 18.5 10.067 18.5 12C18.5 13.933 20.067 15.5 22 15.5V16.8C22 17.9201 22 18.4802 21.782 18.908C21.5903 19.2843 21.2843 19.5903 20.908 19.782C20.4802 20 19.9201 20 18.8 20H5.2C4.0799 20 3.51984 20 3.09202 19.782C2.71569 19.5903 2.40973 19.2843 2.21799 18.908C2 18.4802 2 17.9201 2 16.8V15.5C3.933 15.5 5.5 13.933 5.5 12C5.5 10.067 3.933 8.5 2 8.5V7.2C2 6.0799 2 5.51984 2.21799 5.09202C2.40973 4.71569 2.71569 4.40973 3.09202 4.21799C3.51984 4 4.0799 4 5.2 4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/ticket-02.svg b/@stellar/design-system/src/assets/icons/ticket-02.svg
new file mode 100644
index 00000000..88defe83
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/ticket-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8V7M8 12.5V11.5M8 17V16M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-01-left.svg b/@stellar/design-system/src/assets/icons/toggle-01-left.svg
new file mode 100644
index 00000000..357e40c2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-01-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 17H17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7H7M7 17C4.23858 17 2 14.7614 2 12C2 9.23858 4.23858 7 7 7M7 17C9.76142 17 12 14.7614 12 12C12 9.23858 9.76142 7 7 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-01-right.svg b/@stellar/design-system/src/assets/icons/toggle-01-right.svg
new file mode 100644
index 00000000..1b39bfc6
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-01-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 17H7C4.23858 17 2 14.7614 2 12C2 9.23858 4.23858 7 7 7H17M17 17C19.7614 17 22 14.7614 22 12C22 9.23858 19.7614 7 17 7M17 17C14.2386 17 12 14.7614 12 12C12 9.23858 14.2386 7 17 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-02-left.svg b/@stellar/design-system/src/assets/icons/toggle-02-left.svg
new file mode 100644
index 00000000..98a23214
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-02-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M10.0005 16H18C20.2091 16 22 14.2091 22 12C22 9.79086 20.2091 8 18 8H10.0005M12 12C12 14.7614 9.76142 17 7 17C4.23858 17 2 14.7614 2 12C2 9.23858 4.23858 7 7 7C9.76142 7 12 9.23858 12 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-02-right.svg b/@stellar/design-system/src/assets/icons/toggle-02-right.svg
new file mode 100644
index 00000000..22e14726
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-02-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13.9995 16H6C3.79086 16 2 14.2091 2 12C2 9.79086 3.79086 8 6 8H13.9995M21.9995 12C21.9995 14.7614 19.7609 17 16.9995 17C14.2381 17 11.9995 14.7614 11.9995 12C11.9995 9.23858 14.2381 7 16.9995 7C19.7609 7 21.9995 9.23858 21.9995 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-03-left.svg b/@stellar/design-system/src/assets/icons/toggle-03-left.svg
new file mode 100644
index 00000000..004d5a84
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-03-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12C2 8.68629 4.68629 6 8 6H16C19.3137 6 22 8.68629 22 12C22 15.3137 19.3137 18 16 18H8C4.68629 18 2 15.3137 2 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 14.5C9.38071 14.5 10.5 13.3807 10.5 12C10.5 10.6193 9.38071 9.5 8 9.5C6.61929 9.5 5.5 10.6193 5.5 12C5.5 13.3807 6.61929 14.5 8 14.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toggle-03-right.svg b/@stellar/design-system/src/assets/icons/toggle-03-right.svg
new file mode 100644
index 00000000..6d9bd689
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/toggle-03-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 12C2 8.68629 4.68629 6 8 6H16C19.3137 6 22 8.68629 22 12C22 15.3137 19.3137 18 16 18H8C4.68629 18 2 15.3137 2 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 14.5C17.3807 14.5 18.5 13.3807 18.5 12C18.5 10.6193 17.3807 9.5 16 9.5C14.6193 9.5 13.5 10.6193 13.5 12C13.5 13.3807 14.6193 14.5 16 14.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/toll.svg b/@stellar/design-system/src/assets/icons/toll.svg
deleted file mode 100644
index 889ea3b5..00000000
--- a/@stellar/design-system/src/assets/icons/toll.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6699)"><path d="M15 20C12.7667 20 10.875 19.225 9.325 17.675C7.775 16.125 7 14.2333 7 12C7 9.76667 7.775 7.875 9.325 6.325C10.875 4.775 12.7667 4 15 4C17.2333 4 19.125 4.775 20.675 6.325C22.225 7.875 23 9.76667 23 12C23 14.2333 22.225 16.125 20.675 17.675C19.125 19.225 17.2333 20 15 20ZM5.625 19.25C4.225 18.6 3.10433 17.625 2.263 16.325C1.421 15.025 1 13.5833 1 12C1 10.4167 1.421 8.975 2.263 7.675C3.10433 6.375 4.225 5.4 5.625 4.75C5.975 4.58333 6.29167 4.59567 6.575 4.787C6.85833 4.979 7 5.29167 7 5.725C7 5.89167 6.946 6.054 6.838 6.212C6.72933 6.37067 6.59167 6.49167 6.425 6.575C5.375 7.05833 4.54167 7.78733 3.925 8.762C3.30833 9.73733 3 10.8167 3 12C3 13.1833 3.30833 14.2623 3.925 15.237C4.54167 16.2123 5.375 16.9417 6.425 17.425C6.59167 17.5083 6.72933 17.625 6.838 17.775C6.946 17.925 7 18.0917 7 18.275C7 18.6917 6.85833 19 6.575 19.2C6.29167 19.4 5.975 19.4167 5.625 19.25Z"/></g><defs><clipPath id="clip0_1113_6699"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tool-01.svg b/@stellar/design-system/src/assets/icons/tool-01.svg
new file mode 100644
index 00000000..4238a49e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tool-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.6314 7.63137C15.2353 7.23535 15.0373 7.03735 14.9631 6.80902C14.8979 6.60817 14.8979 6.39183 14.9631 6.19098C15.0373 5.96265 15.2353 5.76465 15.6314 5.36863L18.4697 2.53026C17.7165 2.18962 16.8804 2 16 2C12.6863 2 9.99998 4.68629 9.99998 8C9.99998 8.49104 10.059 8.9683 10.1702 9.42509C10.2894 9.91424 10.349 10.1588 10.3384 10.3133C10.3273 10.4751 10.3032 10.5612 10.2286 10.7051C10.1574 10.8426 10.0208 10.9791 9.7478 11.2522L3.49998 17.5C2.67156 18.3284 2.67156 19.6716 3.49998 20.5C4.32841 21.3284 5.67156 21.3284 6.49998 20.5L12.7478 14.2522C13.0208 13.9791 13.1574 13.8426 13.2949 13.7714C13.4388 13.6968 13.5249 13.6727 13.6867 13.6616C13.8412 13.651 14.0857 13.7106 14.5749 13.8297C15.0317 13.941 15.5089 14 16 14C19.3137 14 22 11.3137 22 8C22 7.11959 21.8104 6.28347 21.4697 5.53026L18.6314 8.36863C18.2353 8.76465 18.0373 8.96265 17.809 9.03684C17.6082 9.1021 17.3918 9.1021 17.191 9.03684C16.9626 8.96265 16.7646 8.76465 16.3686 8.36863L15.6314 7.63137Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tool-02.svg b/@stellar/design-system/src/assets/icons/tool-02.svg
new file mode 100644
index 00000000..36d9b558
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tool-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 6L10.5 10.5M6 6H3L2 3L3 2L6 3V6ZM19.259 2.74101L16.6314 5.36863C16.2354 5.76465 16.0373 5.96265 15.9632 6.19098C15.8979 6.39183 15.8979 6.60817 15.9632 6.80902C16.0373 7.03735 16.2354 7.23535 16.6314 7.63137L16.8686 7.86863C17.2646 8.26465 17.4627 8.46265 17.691 8.53684C17.8918 8.6021 18.1082 8.6021 18.309 8.53684C18.5373 8.46265 18.7354 8.26465 19.1314 7.86863L21.5893 5.41072C21.854 6.05488 22 6.76039 22 7.5C22 10.5376 19.5376 13 16.5 13C16.1338 13 15.7759 12.9642 15.4298 12.8959C14.9436 12.8001 14.7005 12.7521 14.5532 12.7668C14.3965 12.7824 14.3193 12.8059 14.1805 12.8802C14.0499 12.9501 13.919 13.081 13.657 13.343L6.5 20.5C5.67157 21.3284 4.32843 21.3284 3.5 20.5C2.67157 19.6716 2.67157 18.3284 3.5 17.5L10.657 10.343C10.919 10.081 11.0499 9.95005 11.1198 9.81949C11.1941 9.68068 11.2176 9.60347 11.2332 9.44681C11.2479 9.29945 11.1999 9.05638 11.1041 8.57024C11.0358 8.22406 11 7.86621 11 7.5C11 4.46243 13.4624 2 16.5 2C17.5055 2 18.448 2.26982 19.259 2.74101ZM12.0001 14.9999L17.5 20.4999C18.3284 21.3283 19.6716 21.3283 20.5 20.4999C21.3284 19.6715 21.3284 18.3283 20.5 17.4999L15.9753 12.9753C15.655 12.945 15.3427 12.8872 15.0408 12.8043C14.6517 12.6975 14.2249 12.7751 13.9397 13.0603L12.0001 14.9999Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/train.svg b/@stellar/design-system/src/assets/icons/train.svg
new file mode 100644
index 00000000..88d1d2c1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/train.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.5 22H14.5M8 2H16M12 5V2M4 12H20M17 19L18.5 22M7 19L5.5 22M8.5 15.5H8.51M15.5 15.5H15.51M8.8 19H15.2C16.8802 19 17.7202 19 18.362 18.673C18.9265 18.3854 19.3854 17.9265 19.673 17.362C20 16.7202 20 15.8802 20 14.2V9.8C20 8.11984 20 7.27976 19.673 6.63803C19.3854 6.07354 18.9265 5.6146 18.362 5.32698C17.7202 5 16.8802 5 15.2 5H8.8C7.11984 5 6.27976 5 5.63803 5.32698C5.07354 5.6146 4.6146 6.07354 4.32698 6.63803C4 7.27976 4 8.11984 4 9.8V14.2C4 15.8802 4 16.7202 4.32698 17.362C4.6146 17.9265 5.07354 18.3854 5.63803 18.673C6.27976 19 7.11984 19 8.8 19ZM9 15.5C9 15.7761 8.77614 16 8.5 16C8.22386 16 8 15.7761 8 15.5C8 15.2239 8.22386 15 8.5 15C8.77614 15 9 15.2239 9 15.5ZM16 15.5C16 15.7761 15.7761 16 15.5 16C15.2239 16 15 15.7761 15 15.5C15 15.2239 15.2239 15 15.5 15C15.7761 15 16 15.2239 16 15.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tram.svg b/@stellar/design-system/src/assets/icons/tram.svg
new file mode 100644
index 00000000..22b459db
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tram.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5 3L17.5135 2.50675C17.1355 2.31776 16.9465 2.22326 16.7485 2.15662C16.5725 2.09744 16.3915 2.05471 16.2077 2.02897C16.0008 2 15.7895 2 15.3669 2H8.63313C8.21053 2 7.99923 2 7.79227 2.02897C7.60847 2.05471 7.42745 2.09744 7.25155 2.15662C7.05348 2.22326 6.86449 2.31776 6.4865 2.50675L5.5 3M11 6L9 2M13 6L15 2M4 13H20M17 20L18 22M7 20L6.00016 22M8.5 16.5H8.51M15.5 16.5H15.51M8.8 20H15.2C16.8802 20 17.7202 20 18.362 19.673C18.9265 19.3854 19.3854 18.9265 19.673 18.362C20 17.7202 20 16.8802 20 15.2V10.8C20 9.11984 20 8.27976 19.673 7.63803C19.3854 7.07354 18.9265 6.6146 18.362 6.32698C17.7202 6 16.8802 6 15.2 6H8.8C7.11984 6 6.27976 6 5.63803 6.32698C5.07354 6.6146 4.6146 7.07354 4.32698 7.63803C4 8.27976 4 9.11984 4 10.8V15.2C4 16.8802 4 17.7202 4.32698 18.362C4.6146 18.9265 5.07354 19.3854 5.63803 19.673C6.27976 20 7.11984 20 8.8 20ZM9 16.5C9 16.7761 8.77614 17 8.5 17C8.22386 17 8 16.7761 8 16.5C8 16.2239 8.22386 16 8.5 16C8.77614 16 9 16.2239 9 16.5ZM16 16.5C16 16.7761 15.7761 17 15.5 17C15.2239 17 15 16.7761 15 16.5C15 16.2239 15.2239 16 15.5 16C15.7761 16 16 16.2239 16 16.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/transform.svg b/@stellar/design-system/src/assets/icons/transform.svg
new file mode 100644
index 00000000..17494b15
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/transform.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 7V17M5 7V17M17 5L7 5M17 19H7M4.6 7H5.4C5.96005 7 6.24008 7 6.45399 6.89101C6.64215 6.79513 6.79513 6.64215 6.89101 6.45399C7 6.24008 7 5.96005 7 5.4V4.6C7 4.03995 7 3.75992 6.89101 3.54601C6.79513 3.35785 6.64215 3.20487 6.45399 3.10899C6.24008 3 5.96005 3 5.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V5.4C3 5.96005 3 6.24008 3.10899 6.45399C3.20487 6.64215 3.35785 6.79513 3.54601 6.89101C3.75992 7 4.03995 7 4.6 7ZM4.6 21H5.4C5.96005 21 6.24008 21 6.45399 20.891C6.64215 20.7951 6.79513 20.6422 6.89101 20.454C7 20.2401 7 19.9601 7 19.4V18.6C7 18.0399 7 17.7599 6.89101 17.546C6.79513 17.3578 6.64215 17.2049 6.45399 17.109C6.24008 17 5.96005 17 5.4 17H4.6C4.03995 17 3.75992 17 3.54601 17.109C3.35785 17.2049 3.20487 17.3578 3.10899 17.546C3 17.7599 3 18.0399 3 18.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21ZM18.6 7H19.4C19.9601 7 20.2401 7 20.454 6.89101C20.6422 6.79513 20.7951 6.64215 20.891 6.45399C21 6.24008 21 5.96005 21 5.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H18.6C18.0399 3 17.7599 3 17.546 3.10899C17.3578 3.20487 17.2049 3.35785 17.109 3.54601C17 3.75992 17 4.03995 17 4.6V5.4C17 5.96005 17 6.24008 17.109 6.45399C17.2049 6.64215 17.3578 6.79513 17.546 6.89101C17.7599 7 18.0399 7 18.6 7ZM18.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H18.6C18.0399 17 17.7599 17 17.546 17.109C17.3578 17.2049 17.2049 17.3578 17.109 17.546C17 17.7599 17 18.0399 17 18.6V19.4C17 19.9601 17 20.2401 17.109 20.454C17.2049 20.6422 17.3578 20.7951 17.546 20.891C17.7599 21 18.0399 21 18.6 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/translate-01.svg b/@stellar/design-system/src/assets/icons/translate-01.svg
new file mode 100644
index 00000000..05e9f9f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/translate-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12.913 17H20.087M12.913 17L11 21M12.913 17L15.7783 11.009C16.0092 10.5263 16.1246 10.2849 16.2826 10.2086C16.4199 10.1423 16.5801 10.1423 16.7174 10.2086C16.8754 10.2849 16.9908 10.5263 17.2217 11.009L20.087 17M20.087 17L22 21M2 5H8M8 5H11.5M8 5V3M11.5 5H14M11.5 5C11.0039 7.95729 9.85259 10.6362 8.16555 12.8844M10 14C9.38747 13.7248 8.76265 13.3421 8.16555 12.8844M8.16555 12.8844C6.81302 11.8478 5.60276 10.4266 5 9M8.16555 12.8844C6.56086 15.0229 4.47143 16.7718 2 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/translate-02.svg b/@stellar/design-system/src/assets/icons/translate-02.svg
new file mode 100644
index 00000000..244220f2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/translate-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 8L10 13M4 14L10 8L12 5M2 5H14M7 2H8M12.913 17H20.087M12.913 17L11 21M12.913 17L15.7783 11.009C16.0092 10.5263 16.1246 10.2849 16.2826 10.2086C16.4199 10.1423 16.5801 10.1423 16.7174 10.2086C16.8754 10.2849 16.9908 10.5263 17.2217 11.009L20.087 17M20.087 17L22 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trash-01.svg b/@stellar/design-system/src/assets/icons/trash-01.svg
new file mode 100644
index 00000000..ca1cc9ca
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trash-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 6V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H11.2C10.0799 2 9.51984 2 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8 3.51984 8 4.0799 8 5.2V6M10 11.5V16.5M14 11.5V16.5M3 6H21M19 6V17.2C19 18.8802 19 19.7202 18.673 20.362C18.3854 20.9265 17.9265 21.3854 17.362 21.673C16.7202 22 15.8802 22 14.2 22H9.8C8.11984 22 7.27976 22 6.63803 21.673C6.07354 21.3854 5.6146 20.9265 5.32698 20.362C5 19.7202 5 18.8802 5 17.2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trash-02.svg b/@stellar/design-system/src/assets/icons/trash-02.svg
new file mode 100644
index 00000000..3cdc000a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trash-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 6V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H11.2C10.0799 2 9.51984 2 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8 3.51984 8 4.0799 8 5.2V6M3 6H21M19 6V17.2C19 18.8802 19 19.7202 18.673 20.362C18.3854 20.9265 17.9265 21.3854 17.362 21.673C16.7202 22 15.8802 22 14.2 22H9.8C8.11984 22 7.27976 22 6.63803 21.673C6.07354 21.3854 5.6146 20.9265 5.32698 20.362C5 19.7202 5 18.8802 5 17.2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trash-03.svg b/@stellar/design-system/src/assets/icons/trash-03.svg
new file mode 100644
index 00000000..4211d14f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trash-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trash-04.svg b/@stellar/design-system/src/assets/icons/trash-04.svg
new file mode 100644
index 00000000..15f40801
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trash-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/travel-explore.svg b/@stellar/design-system/src/assets/icons/travel-explore.svg
deleted file mode 100644
index edb7405b..00000000
--- a/@stellar/design-system/src/assets/icons/travel-explore.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="M12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C14.4333 2 16.5625 2.7625 18.3875 4.2875C20.2125 5.8125 21.35 7.725 21.8 10.025H19.75C19.4333 8.80833 18.8625 7.72083 18.0375 6.7625C17.2125 5.80417 16.2 5.08333 15 4.6V5C15 5.55 14.8042 6.02083 14.4125 6.4125C14.0208 6.80417 13.55 7 13 7H11V9C11 9.28333 10.9042 9.52083 10.7125 9.7125C10.5208 9.90417 10.2833 10 10 10H8V12H10V15H9L4.2 10.2C4.15 10.5 4.10417 10.8 4.0625 11.1C4.02083 11.4 4 11.7 4 12C4 14.1833 4.76667 16.0583 6.3 17.625C7.83333 19.1917 9.73333 19.9833 12 20V22ZM20.4 20.8L17.9 18.3C17.55 18.5 17.175 18.6667 16.775 18.8C16.375 18.9333 15.95 19 15.5 19C14.25 19 13.1875 18.5625 12.3125 17.6875C11.4375 16.8125 11 15.75 11 14.5C11 13.25 11.4375 12.1875 12.3125 11.3125C13.1875 10.4375 14.25 10 15.5 10C16.75 10 17.8125 10.4375 18.6875 11.3125C19.5625 12.1875 20 13.25 20 14.5C20 14.95 19.9333 15.375 19.8 15.775C19.6667 16.175 19.5 16.55 19.3 16.9L21.8 19.4C21.9833 19.5833 22.075 19.8167 22.075 20.1C22.075 20.3833 21.9833 20.6167 21.8 20.8C21.6167 20.9833 21.3833 21.075 21.1 21.075C20.8167 21.075 20.5833 20.9833 20.4 20.8ZM15.5 17C16.2 17 16.7917 16.7583 17.275 16.275C17.7583 15.7917 18 15.2 18 14.5C18 13.8 17.7583 13.2083 17.275 12.725C16.7917 12.2417 16.2 12 15.5 12C14.8 12 14.2083 12.2417 13.725 12.725C13.2417 13.2083 13 13.8 13 14.5C13 15.2 13.2417 15.7917 13.725 16.275C14.2083 16.7583 14.8 17 15.5 17Z"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trend-down-01.svg b/@stellar/design-system/src/assets/icons/trend-down-01.svg
new file mode 100644
index 00000000..2ac322b3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trend-down-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 17H15M22 17V10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trend-down-02.svg b/@stellar/design-system/src/assets/icons/trend-down-02.svg
new file mode 100644
index 00000000..7fc2d991
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trend-down-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 7L17 17M17 17V7M17 17H7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trend-up-01.svg b/@stellar/design-system/src/assets/icons/trend-up-01.svg
new file mode 100644
index 00000000..fce5a18f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trend-up-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 7H15M22 7V14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trend-up-02.svg b/@stellar/design-system/src/assets/icons/trend-up-02.svg
new file mode 100644
index 00000000..a7af55f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trend-up-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 17L17 7M17 7H7M17 7V17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/triangle.svg b/@stellar/design-system/src/assets/icons/triangle.svg
new file mode 100644
index 00000000..12c31d19
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/triangle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2.39019 18.0983L10.6151 3.89171C11.0696 3.10655 11.2969 2.71396 11.5935 2.58211C11.8521 2.4671 12.1474 2.4671 12.4061 2.58211C12.7026 2.71396 12.9299 3.10654 13.3844 3.89171L21.6093 18.0983C22.0655 18.8863 22.2936 19.2803 22.2599 19.6037C22.2305 19.8857 22.0827 20.142 21.8534 20.3088C21.5904 20.5 21.1352 20.5 20.2246 20.5H3.77487C2.86435 20.5 2.40908 20.5 2.14613 20.3088C1.91677 20.142 1.769 19.8857 1.73959 19.6037C1.70588 19.2803 1.93398 18.8863 2.39019 18.0983Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trophy-01.svg b/@stellar/design-system/src/assets/icons/trophy-01.svg
new file mode 100644
index 00000000..c08a8fd1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trophy-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15C8.68629 15 6 12.3137 6 9V3.44444C6 3.0306 6 2.82367 6.06031 2.65798C6.16141 2.38021 6.38021 2.16141 6.65798 2.06031C6.82367 2 7.0306 2 7.44444 2H16.5556C16.9694 2 17.1763 2 17.342 2.06031C17.6198 2.16141 17.8386 2.38021 17.9397 2.65798C18 2.82367 18 3.0306 18 3.44444V9C18 12.3137 15.3137 15 12 15ZM12 15V18M18 4H20.5C20.9659 4 21.1989 4 21.3827 4.07612C21.6277 4.17761 21.8224 4.37229 21.9239 4.61732C22 4.80109 22 5.03406 22 5.5V6C22 6.92997 22 7.39496 21.8978 7.77646C21.6204 8.81173 20.8117 9.62038 19.7765 9.89778C19.395 10 18.93 10 18 10M6 4H3.5C3.03406 4 2.80109 4 2.61732 4.07612C2.37229 4.17761 2.17761 4.37229 2.07612 4.61732C2 4.80109 2 5.03406 2 5.5V6C2 6.92997 2 7.39496 2.10222 7.77646C2.37962 8.81173 3.18827 9.62038 4.22354 9.89778C4.60504 10 5.07003 10 6 10M7.44444 22H16.5556C16.801 22 17 21.801 17 21.5556C17 19.5919 15.4081 18 13.4444 18H10.5556C8.59188 18 7 19.5919 7 21.5556C7 21.801 7.19898 22 7.44444 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/trophy-02.svg b/@stellar/design-system/src/assets/icons/trophy-02.svg
new file mode 100644
index 00000000..7be0be4e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/trophy-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 17C8.41015 17 5.5 14.0899 5.5 10.5V4.55556C5.5 4.03739 5.5 3.77831 5.59369 3.57738C5.69305 3.36431 5.86431 3.19305 6.07738 3.09369C6.27831 3 6.53739 3 7.05556 3H16.9444C17.4626 3 17.7217 3 17.9226 3.09369C18.1357 3.19305 18.3069 3.36431 18.4063 3.57738C18.5 3.77831 18.5 4.03739 18.5 4.55556V10.5C18.5 14.0899 15.5899 17 12 17ZM12 17V21M17 21H7M22 5V10M2 5V10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/truck-01.svg b/@stellar/design-system/src/assets/icons/truck-01.svg
new file mode 100644
index 00000000..4d5d4736
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/truck-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M14 7H16.3373C16.5818 7 16.7041 7 16.8192 7.02763C16.9213 7.05213 17.0188 7.09253 17.1083 7.14736C17.2092 7.2092 17.2957 7.29568 17.4686 7.46863L21.5314 11.5314C21.7043 11.7043 21.7908 11.7908 21.8526 11.8917C21.9075 11.9812 21.9479 12.0787 21.9724 12.1808C22 12.2959 22 12.4182 22 12.6627V15.5C22 15.9659 22 16.1989 21.9239 16.3827C21.8224 16.6277 21.6277 16.8224 21.3827 16.9239C21.1989 17 20.9659 17 20.5 17M15.5 17H14M14 17V7.2C14 6.0799 14 5.51984 13.782 5.09202C13.5903 4.71569 13.2843 4.40973 12.908 4.21799C12.4802 4 11.9201 4 10.8 4H5.2C4.0799 4 3.51984 4 3.09202 4.21799C2.71569 4.40973 2.40973 4.71569 2.21799 5.09202C2 5.51984 2 6.0799 2 7.2V15C2 16.1046 2.89543 17 4 17M14 17H10M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17M10 17C10 15.3431 8.65685 14 7 14C5.34315 14 4 15.3431 4 17M20.5 17.5C20.5 18.8807 19.3807 20 18 20C16.6193 20 15.5 18.8807 15.5 17.5C15.5 16.1193 16.6193 15 18 15C19.3807 15 20.5 16.1193 20.5 17.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/truck-02.svg b/@stellar/design-system/src/assets/icons/truck-02.svg
new file mode 100644
index 00000000..b8cf9d2e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/truck-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 16V6.2C16 5.0799 16 4.51984 15.782 4.09202C15.5903 3.71569 15.2843 3.40973 14.908 3.21799C14.4802 3 13.9201 3 12.8 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.0799 16 5.2 16H16ZM16 16H20.4C20.9601 16 21.2401 16 21.454 15.891C21.6422 15.7951 21.7951 15.6422 21.891 15.454C22 15.2401 22 14.9601 22 14.4V11.6627C22 11.4182 22 11.2959 21.9724 11.1808C21.9479 11.0787 21.9075 10.9812 21.8526 10.8917C21.7908 10.7908 21.7043 10.7043 21.5314 10.5314L19.4686 8.46863C19.2957 8.29568 19.2092 8.2092 19.1083 8.14736C19.0188 8.09253 18.9213 8.05213 18.8192 8.02763C18.7041 8 18.5818 8 18.3373 8H16M9 18.5C9 19.8807 7.88071 21 6.5 21C5.11929 21 4 19.8807 4 18.5C4 17.1193 5.11929 16 6.5 16C7.88071 16 9 17.1193 9 18.5ZM20 18.5C20 19.8807 18.8807 21 17.5 21C16.1193 21 15 19.8807 15 18.5C15 17.1193 16.1193 16 17.5 16C18.8807 16 20 17.1193 20 18.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tune.svg b/@stellar/design-system/src/assets/icons/tune.svg
deleted file mode 100644
index b8239de8..00000000
--- a/@stellar/design-system/src/assets/icons/tune.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6696)"><path d="M4 19C3.71667 19 3.47933 18.904 3.288 18.712C3.096 18.5207 3 18.2833 3 18C3 17.7167 3.096 17.4793 3.288 17.288C3.47933 17.096 3.71667 17 4 17H8C8.28333 17 8.521 17.096 8.713 17.288C8.90433 17.4793 9 17.7167 9 18C9 18.2833 8.90433 18.5207 8.713 18.712C8.521 18.904 8.28333 19 8 19H4ZM4 7C3.71667 7 3.47933 6.90433 3.288 6.713C3.096 6.521 3 6.28333 3 6C3 5.71667 3.096 5.479 3.288 5.287C3.47933 5.09567 3.71667 5 4 5H12C12.2833 5 12.521 5.09567 12.713 5.287C12.9043 5.479 13 5.71667 13 6C13 6.28333 12.9043 6.521 12.713 6.713C12.521 6.90433 12.2833 7 12 7H4ZM12 21C11.7167 21 11.4793 20.904 11.288 20.712C11.096 20.5207 11 20.2833 11 20V16C11 15.7167 11.096 15.479 11.288 15.287C11.4793 15.0957 11.7167 15 12 15C12.2833 15 12.521 15.0957 12.713 15.287C12.9043 15.479 13 15.7167 13 16V17H20C20.2833 17 20.5207 17.096 20.712 17.288C20.904 17.4793 21 17.7167 21 18C21 18.2833 20.904 18.5207 20.712 18.712C20.5207 18.904 20.2833 19 20 19H13V20C13 20.2833 12.9043 20.5207 12.713 20.712C12.521 20.904 12.2833 21 12 21ZM8 15C7.71667 15 7.479 14.904 7.287 14.712C7.09567 14.5207 7 14.2833 7 14V13H4C3.71667 13 3.47933 12.904 3.288 12.712C3.096 12.5207 3 12.2833 3 12C3 11.7167 3.096 11.479 3.288 11.287C3.47933 11.0957 3.71667 11 4 11H7V10C7 9.71667 7.09567 9.479 7.287 9.287C7.479 9.09567 7.71667 9 8 9C8.28333 9 8.521 9.09567 8.713 9.287C8.90433 9.479 9 9.71667 9 10V14C9 14.2833 8.90433 14.5207 8.713 14.712C8.521 14.904 8.28333 15 8 15ZM12 13C11.7167 13 11.4793 12.904 11.288 12.712C11.096 12.5207 11 12.2833 11 12C11 11.7167 11.096 11.479 11.288 11.287C11.4793 11.0957 11.7167 11 12 11H20C20.2833 11 20.5207 11.0957 20.712 11.287C20.904 11.479 21 11.7167 21 12C21 12.2833 20.904 12.5207 20.712 12.712C20.5207 12.904 20.2833 13 20 13H12ZM16 9C15.7167 9 15.4793 8.904 15.288 8.712C15.096 8.52067 15 8.28333 15 8V4C15 3.71667 15.096 3.479 15.288 3.287C15.4793 3.09567 15.7167 3 16 3C16.2833 3 16.5207 3.09567 16.712 3.287C16.904 3.479 17 3.71667 17 4V5H20C20.2833 5 20.5207 5.09567 20.712 5.287C20.904 5.479 21 5.71667 21 6C21 6.28333 20.904 6.521 20.712 6.713C20.5207 6.90433 20.2833 7 20 7H17V8C17 8.28333 16.904 8.52067 16.712 8.712C16.5207 8.904 16.2833 9 16 9Z"/></g><defs><clipPath id="clip0_1113_6696"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tv-01.svg b/@stellar/design-system/src/assets/icons/tv-01.svg
new file mode 100644
index 00000000..46cb8c4f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tv-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 17V19.4C18 19.9601 18 20.2401 17.891 20.454C17.7951 20.6422 17.6422 20.7951 17.454 20.891C17.2401 21 16.9601 21 16.4 21H7.6C7.03995 21 6.75992 21 6.54601 20.891C6.35785 20.7951 6.20487 20.6422 6.10899 20.454C6 20.2401 6 19.9601 6 19.4V17M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tv-02.svg b/@stellar/design-system/src/assets/icons/tv-02.svg
new file mode 100644
index 00000000..21b7a5d3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tv-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 21L12 17L7 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/tv-03.svg b/@stellar/design-system/src/assets/icons/tv-03.svg
new file mode 100644
index 00000000..29cc05db
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/tv-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 3L12 7L7 3M6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V11.8C22 10.1198 22 9.27976 21.673 8.63803C21.3854 8.07354 20.9265 7.6146 20.362 7.32698C19.7202 7 18.8802 7 17.2 7H6.8C5.11984 7 4.27976 7 3.63803 7.32698C3.07354 7.6146 2.6146 8.07354 2.32698 8.63803C2 9.27976 2 10.1198 2 11.8V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/type-01.svg b/@stellar/design-system/src/assets/icons/type-01.svg
new file mode 100644
index 00000000..5c3756e0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/type-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7C4 6.06812 4 5.60218 4.15224 5.23463C4.35523 4.74458 4.74458 4.35523 5.23463 4.15224C5.60218 4 6.06812 4 7 4H17C17.9319 4 18.3978 4 18.7654 4.15224C19.2554 4.35523 19.6448 4.74458 19.8478 5.23463C20 5.60218 20 6.06812 20 7M9 20H15M12 4V20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/type-02.svg b/@stellar/design-system/src/assets/icons/type-02.svg
new file mode 100644
index 00000000..bc31584b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/type-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7C4 6.06812 4 5.60218 4.15224 5.23463C4.35523 4.74458 4.74458 4.35523 5.23463 4.15224C5.60218 4 6.06812 4 7 4H17C17.9319 4 18.3978 4 18.7654 4.15224C19.2554 4.35523 19.6448 4.74458 19.8478 5.23463C20 5.60218 20 6.06812 20 7M8 20H16M10.25 4V20M13.75 4V20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/type-square.svg b/@stellar/design-system/src/assets/icons/type-square.svg
new file mode 100644
index 00000000..31a99941
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/type-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 7H16M12 7V17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/type-strikethrough-01.svg b/@stellar/design-system/src/assets/icons/type-strikethrough-01.svg
new file mode 100644
index 00000000..80004134
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/type-strikethrough-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 7V6C4 5.45879 4.21497 4.96778 4.56419 4.60772M9 20H15M12 12V20M3 3L21 21M9.5 4H17C17.9319 4 18.3978 4 18.7654 4.15224C19.2554 4.35523 19.6448 4.74458 19.8478 5.23463C20 5.60218 20 6.06812 20 7M12 4V6.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/type-strikethrough-02.svg b/@stellar/design-system/src/assets/icons/type-strikethrough-02.svg
new file mode 100644
index 00000000..b0e9698f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/type-strikethrough-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 20H16M10.25 10.5V20M13.75 14V20M3 3L21 21M4 6.99995V5.99995C4 5.45873 4.21497 4.96773 4.56419 4.60767M9.5 4H17C17.9319 4 18.3978 4 18.7654 4.15224C19.2554 4.35523 19.6448 4.74458 19.8478 5.23463C20 5.60218 20 6.06812 20 7M10.25 4V5M13.75 4V8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/umbrella-01.svg b/@stellar/design-system/src/assets/icons/umbrella-01.svg
new file mode 100644
index 00000000..4696015e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/umbrella-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 19.4C17 20.8359 15.8807 22 14.5 22C13.1193 22 12 20.8359 12 19.4V12M2.12633 10.4063C2.88954 5.64091 7.01959 2 12 2C16.9805 2 21.1105 5.64091 21.8737 10.4063C21.9482 10.8714 21.9855 11.1039 21.8919 11.3523C21.8175 11.55 21.6354 11.7636 21.452 11.8684C21.2215 12 20.9477 12 20.4 12H3.60003C3.05238 12 2.77856 12 2.54808 11.8684C2.36469 11.7636 2.18252 11.55 2.10811 11.3523C2.01459 11.1039 2.05184 10.8714 2.12633 10.4063Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/umbrella-02.svg b/@stellar/design-system/src/assets/icons/umbrella-02.svg
new file mode 100644
index 00000000..e2b37b47
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/umbrella-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 19.4C7 20.8359 8.11929 22 9.5 22C10.8807 22 12 20.8359 12 19.4V11M12 11C10.3898 11 8 12 8 12C8 12 6.61017 11 5 11C3.38983 11 2 12 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 12 20.6102 11 19 11C17.3898 11 16 12 16 12C16 12 13.6102 11 12 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/umbrella-03.svg b/@stellar/design-system/src/assets/icons/umbrella-03.svg
new file mode 100644
index 00000000..91ea9efc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/umbrella-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6.25 21.9593L12 12M17 3.33971C12.6868 0.849491 7.28964 1.93758 4.246 5.6829C3.94893 6.04846 3.80039 6.23123 3.75718 6.49312C3.7228 6.70148 3.77373 6.97761 3.88018 7.15999C4.01398 7.38923 4.25111 7.52614 4.72539 7.79996L19.2746 16.2C19.7489 16.4738 19.986 16.6107 20.2514 16.6119C20.4626 16.6129 20.7272 16.519 20.8905 16.385C21.0957 16.2167 21.1797 15.9966 21.3477 15.5566C23.0695 11.0481 21.3132 5.82992 17 3.33971ZM17 3.33971C15.0868 2.23514 11.2973 5.21703 8.5359 9.99996M17 3.33971C18.9132 4.44428 18.2255 9.21703 15.4641 14M22 22H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/underline-01.svg b/@stellar/design-system/src/assets/icons/underline-01.svg
new file mode 100644
index 00000000..f7723ce8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/underline-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 4V11C18 14.3137 15.3137 17 12 17C8.68629 17 6 14.3137 6 11V4M4 21H20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/underline-02.svg b/@stellar/design-system/src/assets/icons/underline-02.svg
new file mode 100644
index 00000000..21318141
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/underline-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 4V10C19 13.866 15.866 17 12 17C8.13401 17 5 13.866 5 10V4M8.5 4V10C8.5 13.2218 10.6766 15.9352 13.6395 16.7501M4 21H20M3 4L10.5 4M17 4L21 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/underline-square.svg b/@stellar/design-system/src/assets/icons/underline-square.svg
new file mode 100644
index 00000000..12984bce
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/underline-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.5 7V10.5C15.5 12.433 13.933 14 12 14C10.067 14 8.5 12.433 8.5 10.5V7M8 17H16M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/unfold-less.svg b/@stellar/design-system/src/assets/icons/unfold-less.svg
deleted file mode 100644
index 2da9c732..00000000
--- a/@stellar/design-system/src/assets/icons/unfold-less.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6693)"><path d="M12 9.47499C11.8667 9.47499 11.7377 9.44999 11.613 9.39999C11.4877 9.34999 11.3834 9.28332 11.3 9.19999L8.20005 6.09999C8.01672 5.91665 7.92505 5.68332 7.92505 5.39999C7.92505 5.11665 8.01672 4.88332 8.20005 4.69999C8.38338 4.51665 8.61671 4.42499 8.90005 4.42499C9.18338 4.42499 9.41672 4.51665 9.60005 4.69999L12 7.09999L14.4 4.69999C14.5834 4.51665 14.8167 4.42499 15.1 4.42499C15.3834 4.42499 15.6167 4.51665 15.8 4.69999C15.9834 4.88332 16.075 5.11665 16.075 5.39999C16.075 5.68332 15.9834 5.91665 15.8 6.09999L12.7 9.19999C12.6 9.29999 12.4917 9.37065 12.375 9.41199C12.2584 9.45399 12.1334 9.47499 12 9.47499ZM8.20005 19.3C8.01672 19.1167 7.92505 18.8833 7.92505 18.6C7.92505 18.3167 8.01672 18.0833 8.20005 17.9L11.3 14.8C11.4 14.7 11.5084 14.6293 11.625 14.588C11.7417 14.546 11.8667 14.525 12 14.525C12.1334 14.525 12.2627 14.546 12.388 14.588C12.5127 14.6293 12.6167 14.7 12.7 14.8L15.825 17.925C16.0084 18.1083 16.0957 18.3373 16.087 18.612C16.079 18.8873 15.9834 19.1167 15.8 19.3C15.6167 19.4833 15.3834 19.575 15.1 19.575C14.8167 19.575 14.5834 19.4833 14.4 19.3L12 16.9L9.60005 19.3C9.41672 19.4833 9.18338 19.575 8.90005 19.575C8.61671 19.575 8.38338 19.4833 8.20005 19.3Z"/></g><defs><clipPath id="clip0_1113_6693"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/unfold-more.svg b/@stellar/design-system/src/assets/icons/unfold-more.svg
deleted file mode 100644
index bed03e32..00000000
--- a/@stellar/design-system/src/assets/icons/unfold-more.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6690)"><path d="M8.22495 8.32502C8.04162 8.14169 7.94995 7.90002 7.94995 7.60002C7.94995 7.30002 8.04162 7.05836 8.22495 6.87502L11.3 3.80002C11.4 3.70002 11.5083 3.62902 11.625 3.58702C11.7416 3.54569 11.8666 3.52502 12 3.52502C12.1333 3.52502 12.2626 3.54569 12.388 3.58702C12.5126 3.62902 12.6166 3.70002 12.7 3.80002L15.8 6.90002C15.9833 7.08336 16.0706 7.32069 16.062 7.61202C16.054 7.90402 15.9583 8.14169 15.775 8.32502C15.5916 8.50836 15.35 8.60002 15.05 8.60002C14.75 8.60002 14.5083 8.50836 14.325 8.32502L12 6.00002L9.64995 8.35002C9.46662 8.53336 9.22928 8.62102 8.93795 8.61302C8.64595 8.60436 8.40829 8.50836 8.22495 8.32502ZM12 20.575C11.8666 20.575 11.7416 20.55 11.625 20.5C11.5083 20.45 11.4 20.3834 11.3 20.3L8.22495 17.225C8.04162 17.0417 7.94995 16.8 7.94995 16.5C7.94995 16.2 8.04162 15.9584 8.22495 15.775C8.40829 15.5917 8.64995 15.5 8.94995 15.5C9.24995 15.5 9.49162 15.5917 9.67495 15.775L12 18.1L14.35 15.75C14.5333 15.5667 14.7706 15.4794 15.062 15.488C15.354 15.496 15.5916 15.5917 15.775 15.775C15.9583 15.9584 16.05 16.2 16.05 16.5C16.05 16.8 15.9583 17.0417 15.775 17.225L12.7 20.3C12.6166 20.3834 12.5126 20.45 12.388 20.5C12.2626 20.55 12.1333 20.575 12 20.575Z"/></g><defs><clipPath id="clip0_1113_6690"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-01.svg b/@stellar/design-system/src/assets/icons/upload-01.svg
new file mode 100644
index 00000000..08801f3f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 8L12 3M12 3L7 8M12 3V15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-02.svg b/@stellar/design-system/src/assets/icons/upload-02.svg
new file mode 100644
index 00000000..cf52792e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 3H3M18 13L12 7M12 7L6 13M12 7V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-03.svg b/@stellar/design-system/src/assets/icons/upload-03.svg
new file mode 100644
index 00000000..31ab3250
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12L12 8M12 8L8 12M12 8V16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-04.svg b/@stellar/design-system/src/assets/icons/upload-04.svg
new file mode 100644
index 00000000..bda5b2ec
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 12L12 8M12 8L8 12M12 8V17.2C12 18.5907 12 19.2861 12.5505 20.0646C12.9163 20.5819 13.9694 21.2203 14.5972 21.3054C15.5421 21.4334 15.9009 21.2462 16.6186 20.8719C19.8167 19.2036 22 15.8568 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 15.7014 4.01099 18.9331 7 20.6622" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-cloud-01.svg b/@stellar/design-system/src/assets/icons/upload-cloud-01.svg
new file mode 100644
index 00000000..eba326d3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-cloud-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4 16.2422C2.79401 15.435 2 14.0602 2 12.5C2 10.1564 3.79151 8.23129 6.07974 8.01937C6.54781 5.17213 9.02024 3 12 3C14.9798 3 17.4522 5.17213 17.9203 8.01937C20.2085 8.23129 22 10.1564 22 12.5C22 14.0602 21.206 15.435 20 16.2422M8 16L12 12M12 12L16 16M12 12V21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/upload-cloud-02.svg b/@stellar/design-system/src/assets/icons/upload-cloud-02.svg
new file mode 100644
index 00000000..2d5f9f82
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/upload-cloud-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 16L12 12M12 12L16 16M12 12V21M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/usb-flash-drive.svg b/@stellar/design-system/src/assets/icons/usb-flash-drive.svg
new file mode 100644
index 00000000..7b6da1dc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/usb-flash-drive.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 9V3.6C18 3.03995 18 2.75992 17.891 2.54601C17.7951 2.35785 17.6422 2.20487 17.454 2.10899C17.2401 2 16.9601 2 16.4 2H7.6C7.03995 2 6.75992 2 6.54601 2.10899C6.35785 2.20487 6.20487 2.35785 6.10899 2.54601C6 2.75992 6 3.03995 6 3.6V9M10 6V5M14 6V5M8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V12.2C20 11.0799 20 10.5198 19.782 10.092C19.5903 9.71569 19.2843 9.40973 18.908 9.21799C18.4802 9 17.9201 9 16.8 9H7.2C6.0799 9 5.51984 9 5.09202 9.21799C4.71569 9.40973 4.40973 9.71569 4.21799 10.092C4 10.5198 4 11.0799 4 12.2V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-01.svg b/@stellar/design-system/src/assets/icons/user-01.svg
new file mode 100644
index 00000000..5ee936cf
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-02.svg b/@stellar/design-system/src/assets/icons/user-02.svg
new file mode 100644
index 00000000..cc7e06d3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15C8.82993 15 6.0108 16.5306 4.216 18.906C3.82971 19.4172 3.63656 19.6728 3.64288 20.0183C3.64776 20.2852 3.81536 20.6219 4.02537 20.7867C4.29719 21 4.67387 21 5.42724 21H18.5728C19.3261 21 19.7028 21 19.9746 20.7867C20.1846 20.6219 20.3522 20.2852 20.3571 20.0183C20.3634 19.6728 20.1703 19.4172 19.784 18.906C17.9892 16.5306 15.1701 15 12 15Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 12C14.4853 12 16.5 9.98528 16.5 7.5C16.5 5.01472 14.4853 3 12 3C9.51472 3 7.5 5.01472 7.5 7.5C7.5 9.98528 9.51472 12 12 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-03.svg b/@stellar/design-system/src/assets/icons/user-03.svg
new file mode 100644
index 00000000..e766496a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 20C5.33579 17.5226 8.50702 16 12 16C15.493 16 18.6642 17.5226 21 20M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-check-01.svg b/@stellar/design-system/src/assets/icons/user-check-01.svg
new file mode 100644
index 00000000..b12f1bab
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-check-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M16 18L18 20L22 16M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-check-02.svg b/@stellar/design-system/src/assets/icons/user-check-02.svg
new file mode 100644
index 00000000..81b1680c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-check-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M16 6L18 8L22 4M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-circle.svg b/@stellar/design-system/src/assets/icons/user-circle.svg
new file mode 100644
index 00000000..2b50a82e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5.3163 19.4384C5.92462 18.0052 7.34492 17 9 17H15C16.6551 17 18.0754 18.0052 18.6837 19.4384M16 9.5C16 11.7091 14.2091 13.5 12 13.5C9.79086 13.5 8 11.7091 8 9.5C8 7.29086 9.79086 5.5 12 5.5C14.2091 5.5 16 7.29086 16 9.5ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-down-01.svg b/@stellar/design-system/src/assets/icons/user-down-01.svg
new file mode 100644
index 00000000..6a54af33
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-down-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M16 18L19 21M19 21L22 18M19 21V15M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-down-02.svg b/@stellar/design-system/src/assets/icons/user-down-02.svg
new file mode 100644
index 00000000..44372316
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-down-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 7L19 10M19 10L22 7M19 10V4M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-edit.svg b/@stellar/design-system/src/assets/icons/user-edit.svg
new file mode 100644
index 00000000..a034650c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-edit.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5ZM11 21L14.1014 20.1139C14.2499 20.0715 14.3241 20.0502 14.3934 20.0184C14.4549 19.9902 14.5134 19.9558 14.5679 19.9158C14.6293 19.8707 14.6839 19.8161 14.7932 19.7068L21.25 13.25C21.9404 12.5597 21.9404 11.4403 21.25 10.75C20.5597 10.0596 19.4404 10.0596 18.75 10.75L12.2932 17.2068C12.1839 17.3161 12.1293 17.3707 12.0842 17.4321C12.0442 17.4866 12.0098 17.5451 11.9816 17.6066C11.9497 17.6759 11.9285 17.7501 11.8861 17.8987L11 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-left-01.svg b/@stellar/design-system/src/assets/icons/user-left-01.svg
new file mode 100644
index 00000000..db4e1432
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-left-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21L16 18M16 18L19 15M16 18H22M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-left-02.svg b/@stellar/design-system/src/assets/icons/user-left-02.svg
new file mode 100644
index 00000000..2948ba9a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-left-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 9L16 6M16 6L19 3M16 6L22 6M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-minus-01.svg b/@stellar/design-system/src/assets/icons/user-minus-01.svg
new file mode 100644
index 00000000..a9726b66
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-minus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18H22M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-minus-02.svg b/@stellar/design-system/src/assets/icons/user-minus-02.svg
new file mode 100644
index 00000000..8332b411
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-minus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 7H22M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-plus-01.svg b/@stellar/design-system/src/assets/icons/user-plus-01.svg
new file mode 100644
index 00000000..5b0eb851
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-plus-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M19 21V15M16 18H22M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-plus-02.svg b/@stellar/design-system/src/assets/icons/user-plus-02.svg
new file mode 100644
index 00000000..feb70826
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-plus-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 10V4M16 7H22M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-right-01.svg b/@stellar/design-system/src/assets/icons/user-right-01.svg
new file mode 100644
index 00000000..2c61b651
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-right-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21L22 18M22 18L19 15M22 18H16M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-right-02.svg b/@stellar/design-system/src/assets/icons/user-right-02.svg
new file mode 100644
index 00000000..6cfa0ac3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-right-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 9L22 6M22 6L19 3M22 6L16 6M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-square.svg b/@stellar/design-system/src/assets/icons/user-square.svg
new file mode 100644
index 00000000..1d92e14b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M4.00002 21.8174C4.6026 22 5.41649 22 6.8 22H17.2C18.5835 22 19.3974 22 20 21.8174M4.00002 21.8174C3.87082 21.7783 3.75133 21.7308 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H17.2C18.8802 2 19.7202 2 20.362 2.32698C20.9265 2.6146 21.3854 3.07354 21.673 3.63803C22 4.27976 22 5.11984 22 6.8V17.2C22 18.8802 22 19.7202 21.673 20.362C21.3854 20.9265 20.9265 21.3854 20.362 21.673C20.2487 21.7308 20.1292 21.7783 20 21.8174M4.00002 21.8174C4.00035 21.0081 4.00521 20.5799 4.07686 20.2196C4.39249 18.6329 5.63288 17.3925 7.21964 17.0769C7.60603 17 8.07069 17 9 17H15C15.9293 17 16.394 17 16.7804 17.0769C18.3671 17.3925 19.6075 18.6329 19.9231 20.2196C19.9948 20.5799 19.9996 21.0081 20 21.8174M16 9.5C16 11.7091 14.2091 13.5 12 13.5C9.79086 13.5 8 11.7091 8 9.5C8 7.29086 9.79086 5.5 12 5.5C14.2091 5.5 16 7.29086 16 9.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-up-01.svg b/@stellar/design-system/src/assets/icons/user-up-01.svg
new file mode 100644
index 00000000..feb168a4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-up-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L19 15M19 15L22 18M19 15V21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-up-02.svg b/@stellar/design-system/src/assets/icons/user-up-02.svg
new file mode 100644
index 00000000..a42ae535
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-up-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 6L19 3M19 3L22 6M19 3V9M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-x-01.svg b/@stellar/design-system/src/assets/icons/user-x-01.svg
new file mode 100644
index 00000000..a2d06a3c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-x-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 16L21.5 21M21.5 16L16.5 21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user-x-02.svg b/@stellar/design-system/src/assets/icons/user-x-02.svg
new file mode 100644
index 00000000..6fc7f056
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/user-x-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 4L21.5 9M21.5 4L16.5 9M16 21V19.8C16 18.1198 16 17.2798 15.673 16.638C15.3854 16.0735 14.9265 15.6146 14.362 15.327C13.7202 15 12.8802 15 11.2 15H6.8C5.11984 15 4.27976 15 3.63803 15.327C3.07354 15.6146 2.6146 16.0735 2.32698 16.638C2 17.2798 2 18.1198 2 19.8V21M12.5 7.5C12.5 9.433 10.933 11 9 11C7.067 11 5.5 9.433 5.5 7.5C5.5 5.567 7.067 4 9 4C10.933 4 12.5 5.567 12.5 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/user.svg b/@stellar/design-system/src/assets/icons/user.svg
deleted file mode 100644
index 004c50d0..00000000
--- a/@stellar/design-system/src/assets/icons/user.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6687)"><path d="M12 12C10.9 12 9.95833 11.6083 9.175 10.825C8.39167 10.0417 8 9.1 8 8C8 6.9 8.39167 5.95833 9.175 5.175C9.95833 4.39167 10.9 4 12 4C13.1 4 14.0417 4.39167 14.825 5.175C15.6083 5.95833 16 6.9 16 8C16 9.1 15.6083 10.0417 14.825 10.825C14.0417 11.6083 13.1 12 12 12ZM6 20C5.45 20 4.97933 19.8043 4.588 19.413C4.196 19.021 4 18.55 4 18V17.2C4 16.6333 4.146 16.1123 4.438 15.637C4.72933 15.1623 5.11667 14.8 5.6 14.55C6.63333 14.0333 7.68333 13.6457 8.75 13.387C9.81667 13.129 10.9 13 12 13C13.1 13 14.1833 13.129 15.25 13.387C16.3167 13.6457 17.3667 14.0333 18.4 14.55C18.8833 14.8 19.2707 15.1623 19.562 15.637C19.854 16.1123 20 16.6333 20 17.2V18C20 18.55 19.8043 19.021 19.413 19.413C19.021 19.8043 18.55 20 18 20H6Z"/></g><defs><clipPath id="clip0_1113_6687"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-01.svg b/@stellar/design-system/src/assets/icons/users-01.svg
new file mode 100644
index 00000000..61102fcc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-02.svg b/@stellar/design-system/src/assets/icons/users-02.svg
new file mode 100644
index 00000000..07b1ca9e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 3.46776C17.4817 4.20411 18.5 5.73314 18.5 7.5C18.5 9.26686 17.4817 10.7959 16 11.5322M18 16.7664C19.5115 17.4503 20.8725 18.565 22 20M2 20C3.94649 17.5226 6.58918 16 9.5 16C12.4108 16 15.0535 17.5226 17 20M14 7.5C14 9.98528 11.9853 12 9.5 12C7.01472 12 5 9.98528 5 7.5C5 5.01472 7.01472 3 9.5 3C11.9853 3 14 5.01472 14 7.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-03.svg b/@stellar/design-system/src/assets/icons/users-03.svg
new file mode 100644
index 00000000..b7c1d4f5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 15.8369C19.4559 16.5683 20.7041 17.742 21.6152 19.2096C21.7957 19.5003 21.8859 19.6456 21.9171 19.8468C21.9804 20.2558 21.7008 20.7585 21.3199 20.9204C21.1325 21 20.9217 21 20.5 21M16 11.5322C17.4817 10.7959 18.5 9.26686 18.5 7.5C18.5 5.73314 17.4817 4.20411 16 3.46776M14 7.5C14 9.98528 11.9853 12 9.49999 12C7.01471 12 4.99999 9.98528 4.99999 7.5C4.99999 5.01472 7.01471 3 9.49999 3C11.9853 3 14 5.01472 14 7.5ZM2.55922 18.9383C4.15353 16.5446 6.66936 15 9.49999 15C12.3306 15 14.8465 16.5446 16.4408 18.9383C16.79 19.4628 16.9647 19.725 16.9446 20.0599C16.9289 20.3207 16.7579 20.64 16.5496 20.7976C16.2819 21 15.9138 21 15.1776 21H3.82235C3.08616 21 2.71807 21 2.45043 20.7976C2.24204 20.64 2.07108 20.3207 2.05542 20.0599C2.03532 19.725 2.20995 19.4628 2.55922 18.9383Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-check.svg b/@stellar/design-system/src/assets/icons/users-check.svg
new file mode 100644
index 00000000..b537a040
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-check.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L18 20L22 16M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-down.svg b/@stellar/design-system/src/assets/icons/users-down.svg
new file mode 100644
index 00000000..9ed9ef26
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-down.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L19 21M19 21L22 18M19 21V15M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-edit.svg b/@stellar/design-system/src/assets/icons/users-edit.svg
new file mode 100644
index 00000000..4bf344d3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-edit.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7M11.9999 21.5L14.025 21.095C14.2015 21.0597 14.2898 21.042 14.3721 21.0097C14.4452 20.9811 14.5147 20.9439 14.579 20.899C14.6516 20.8484 14.7152 20.7848 14.8426 20.6574L21.5 14C22.0524 13.4477 22.0523 12.5523 21.5 12C20.9477 11.4477 20.0523 11.4477 19.5 12L12.8425 18.6575C12.7152 18.7848 12.6516 18.8484 12.601 18.921C12.5561 18.9853 12.5189 19.0548 12.4902 19.1278C12.458 19.2102 12.4403 19.2984 12.405 19.475L11.9999 21.5ZM13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-left.svg b/@stellar/design-system/src/assets/icons/users-left.svg
new file mode 100644
index 00000000..5eea91f8
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-left.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21L16 18M16 18L19 15M16 18H22M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-minus.svg b/@stellar/design-system/src/assets/icons/users-minus.svg
new file mode 100644
index 00000000..90009ebd
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18H22M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-plus.svg b/@stellar/design-system/src/assets/icons/users-plus.svg
new file mode 100644
index 00000000..c991a7b4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21V15M16 18H22M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-right.svg b/@stellar/design-system/src/assets/icons/users-right.svg
new file mode 100644
index 00000000..3115f2b9
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-right.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 21L22 18M22 18L19 15M22 18H16M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-up.svg b/@stellar/design-system/src/assets/icons/users-up.svg
new file mode 100644
index 00000000..30430463
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-up.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 18L19 15M19 15L22 18M19 15V21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users-x.svg b/@stellar/design-system/src/assets/icons/users-x.svg
new file mode 100644
index 00000000..afe728d4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/users-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 16L21.5 21M21.5 16L16.5 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/users.svg b/@stellar/design-system/src/assets/icons/users.svg
deleted file mode 100644
index ab0cd3f9..00000000
--- a/@stellar/design-system/src/assets/icons/users.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6684)"><path d="M2 20C1.71667 20 1.47933 19.904 1.288 19.712C1.096 19.5207 1 19.2833 1 19V17.2C1 16.6333 1.146 16.1123 1.438 15.637C1.72933 15.1623 2.11667 14.8 2.6 14.55C3.63333 14.0333 4.68333 13.6457 5.75 13.387C6.81667 13.129 7.9 13 9 13C10.1 13 11.1833 13.129 12.25 13.387C13.3167 13.6457 14.3667 14.0333 15.4 14.55C15.8833 14.8 16.2707 15.1623 16.562 15.637C16.854 16.1123 17 16.6333 17 17.2V19C17 19.2833 16.904 19.5207 16.712 19.712C16.5207 19.904 16.2833 20 16 20H2ZM18.525 20C18.675 19.8833 18.7917 19.7373 18.875 19.562C18.9583 19.3873 19 19.1917 19 18.975V17C19 16.2667 18.796 15.5623 18.388 14.887C17.9793 14.2123 17.4 13.6333 16.65 13.15C17.5 13.25 18.3 13.4207 19.05 13.662C19.8 13.904 20.5 14.2 21.15 14.55C21.75 14.8833 22.2083 15.254 22.525 15.662C22.8417 16.0707 23 16.5167 23 17V19C23 19.2833 22.904 19.5207 22.712 19.712C22.5207 19.904 22.2833 20 22 20H18.525ZM9 12C7.9 12 6.95833 11.6083 6.175 10.825C5.39167 10.0417 5 9.1 5 8C5 6.9 5.39167 5.95833 6.175 5.175C6.95833 4.39167 7.9 4 9 4C10.1 4 11.0417 4.39167 11.825 5.175C12.6083 5.95833 13 6.9 13 8C13 9.1 12.6083 10.0417 11.825 10.825C11.0417 11.6083 10.1 12 9 12ZM19 8C19 9.1 18.6083 10.0417 17.825 10.825C17.0417 11.6083 16.1 12 15 12C14.8167 12 14.5833 11.9793 14.3 11.938C14.0167 11.896 13.7833 11.85 13.6 11.8C14.05 11.2667 14.3957 10.675 14.637 10.025C14.879 9.375 15 8.7 15 8C15 7.3 14.879 6.625 14.637 5.975C14.3957 5.325 14.05 4.73333 13.6 4.2C13.8333 4.11667 14.0667 4.06233 14.3 4.037C14.5333 4.01233 14.7667 4 15 4C16.1 4 17.0417 4.39167 17.825 5.175C18.6083 5.95833 19 6.9 19 8Z"/></g><defs><clipPath id="clip0_1113_6684"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/variable.svg b/@stellar/design-system/src/assets/icons/variable.svg
new file mode 100644
index 00000000..4afded3c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/variable.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19.9061 21C21.2464 18.2888 22 15.2329 22 12C22 8.76711 21.2464 5.71116 19.9061 3M4.09393 3C2.75363 5.71116 2 8.76711 2 12C2 15.2329 2.75363 18.2888 4.09393 21M16.5486 8.625H16.459C15.8056 8.625 15.1848 8.91202 14.7596 9.41072L9.38471 15.7143C8.95948 16.213 8.33871 16.5 7.6853 16.5H7.59563M8.71483 8.625H10.1089C10.6086 8.625 11.0477 8.95797 11.185 9.44094L12.9594 15.6841C13.0967 16.167 13.5358 16.5 14.0355 16.5H15.4296" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/verified-user.svg b/@stellar/design-system/src/assets/icons/verified-user.svg
deleted file mode 100644
index a6a4a155..00000000
--- a/@stellar/design-system/src/assets/icons/verified-user.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6678)"><path d="M10.95 12.7L9.575 11.3C9.375 11.1 9.13767 11 8.863 11C8.58767 11 8.35 11.1 8.15 11.3C7.95 11.5 7.846 11.7374 7.838 12.012C7.82933 12.2874 7.925 12.525 8.125 12.725L10.25 14.85C10.45 15.05 10.6833 15.15 10.95 15.15C11.2167 15.15 11.45 15.05 11.65 14.85L15.9 10.6C16.1 10.4 16.2 10.1624 16.2 9.88702C16.2 9.61236 16.1 9.37502 15.9 9.17502C15.7 8.97502 15.4627 8.87502 15.188 8.87502C14.9127 8.87502 14.675 8.97502 14.475 9.17502L10.95 12.7ZM12 21.925H11.75C11.6667 21.925 11.5917 21.9084 11.525 21.875C9.34167 21.1917 7.54167 19.8374 6.125 17.812C4.70833 15.7874 4 13.55 4 11.1V6.37502C4 5.95836 4.121 5.58336 4.363 5.25002C4.60433 4.91669 4.91667 4.67502 5.3 4.52502L11.3 2.27502C11.5333 2.19169 11.7667 2.15002 12 2.15002C12.2333 2.15002 12.4667 2.19169 12.7 2.27502L18.7 4.52502C19.0833 4.67502 19.396 4.91669 19.638 5.25002C19.8793 5.58336 20 5.95836 20 6.37502V11.1C20 13.55 19.2917 15.7874 17.875 17.812C16.4583 19.8374 14.6583 21.1917 12.475 21.875C12.3917 21.9084 12.2333 21.925 12 21.925Z"/></g><defs><clipPath id="clip0_1113_6678"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/verified.svg b/@stellar/design-system/src/assets/icons/verified.svg
deleted file mode 100644
index a6588b83..00000000
--- a/@stellar/design-system/src/assets/icons/verified.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6681)"><path d="M6.69995 19.3L3.94995 18.7C3.69995 18.65 3.49995 18.5206 3.34995 18.312C3.19995 18.104 3.14162 17.875 3.17495 17.625L3.44995 14.8L1.57495 12.65C1.40828 12.4666 1.32495 12.25 1.32495 12C1.32495 11.75 1.40828 11.5333 1.57495 11.35L3.44995 9.19996L3.17495 6.37496C3.14162 6.12496 3.19995 5.89596 3.34995 5.68796C3.49995 5.4793 3.69995 5.34996 3.94995 5.29996L6.69995 4.69996L8.14995 2.24996C8.28328 2.0333 8.46662 1.89163 8.69995 1.82496C8.93328 1.7583 9.16662 1.76663 9.39995 1.84996L12 2.94996L14.6 1.84996C14.8333 1.76663 15.0666 1.7583 15.3 1.82496C15.5333 1.89163 15.7166 2.0333 15.85 2.24996L17.3 4.69996L20.0499 5.29996C20.2999 5.34996 20.5 5.4793 20.65 5.68796C20.8 5.89596 20.8583 6.12496 20.825 6.37496L20.5499 9.19996L22.4249 11.35C22.5916 11.5333 22.6749 11.75 22.6749 12C22.6749 12.25 22.5916 12.4666 22.4249 12.65L20.5499 14.8L20.825 17.625C20.8583 17.875 20.8 18.104 20.65 18.312C20.5 18.5206 20.2999 18.65 20.0499 18.7L17.3 19.3L15.85 21.75C15.7166 21.9666 15.5333 22.1083 15.3 22.175C15.0666 22.2416 14.8333 22.2333 14.6 22.15L12 21.05L9.39995 22.15C9.16662 22.2333 8.93328 22.2416 8.69995 22.175C8.46662 22.1083 8.28328 21.9666 8.14995 21.75L6.69995 19.3ZM10.25 14.85C10.4333 15.0333 10.6666 15.125 10.95 15.125C11.2333 15.125 11.4666 15.0333 11.65 14.85L15.9 10.6C16.1 10.4 16.2 10.1623 16.2 9.88696C16.2 9.6123 16.1 9.37496 15.9 9.17496C15.7 8.97496 15.4626 8.87496 15.188 8.87496C14.9126 8.87496 14.675 8.97496 14.475 9.17496L10.95 12.7L9.49995 11.275C9.29995 11.0916 9.06262 11.004 8.78795 11.012C8.51262 11.0206 8.28329 11.1166 8.09995 11.3C7.91662 11.4833 7.82495 11.7166 7.82495 12C7.82495 12.2833 7.91662 12.5166 8.09995 12.7L10.25 14.85Z"/></g><defs><clipPath id="clip0_1113_6681"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/video-recorder-off.svg b/@stellar/design-system/src/assets/icons/video-recorder-off.svg
new file mode 100644
index 00000000..e9d28d56
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/video-recorder-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/video-recorder.svg b/@stellar/design-system/src/assets/icons/video-recorder.svg
new file mode 100644
index 00000000..467953c2
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/video-recorder.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/virus.svg b/@stellar/design-system/src/assets/icons/virus.svg
new file mode 100644
index 00000000..8aac0bb5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/virus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 2V7M12 2C11.2867 2 10.5909 2.07467 9.91991 2.21663M12 2C12.7132 2 13.4091 2.07467 14.08 2.21663M12 7C9.23855 7 7 9.2386 7 12M12 7C14.7614 7 17 9.2386 17 12M12 17V22M12 17C14.7614 17 17 14.7614 17 12M12 17C9.23855 17 7 14.7614 7 12M12 22C12.7122 22 13.407 21.9255 14.077 21.784M12 22C11.2851 22 10.5878 21.925 9.91545 21.7824M4.92891 4.92893L8.46444 8.46447M15.5355 15.5355L19.071 19.0711M2 12H7M2 12C2 12.7133 2.07466 13.4092 2.21664 14.0802M2 12C2 11.2857 2.07488 10.5888 2.21727 9.91683M17 12H22M22 12C22 11.2867 21.9253 10.5908 21.7833 9.91978M22 12C22 12.7131 21.9254 13.4086 21.7835 14.0794M4.92891 19.0711L8.46444 15.5355M15.5355 8.46447L19.071 4.92893M17.4466 3.61208C18.621 4.37619 19.6249 5.38023 20.3888 6.55469M20.386 17.4496C19.622 18.6229 18.6183 19.626 17.4445 20.3893M6.55371 20.3882C5.38104 19.6252 4.37831 18.623 3.61474 17.4508M3.61171 6.55387C4.37545 5.37994 5.37894 4.37633 6.55275 3.61244" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/voicemail.svg b/@stellar/design-system/src/assets/icons/voicemail.svg
new file mode 100644
index 00000000..2503fa5b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/voicemail.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M6 16L18 16M6 16C8.20914 16 10 14.2091 10 12C10 9.79086 8.20914 8 6 8C3.79086 8 2 9.79086 2 12C2 14.2091 3.79086 16 6 16ZM18 16C20.2091 16 22 14.2091 22 12C22 9.79086 20.2091 8 18 8C15.7909 8 14 9.79086 14 12C14 14.2091 15.7909 16 18 16Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/volume-max.svg b/@stellar/design-system/src/assets/icons/volume-max.svg
new file mode 100644
index 00000000..6fac50ec
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/volume-max.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19.7479 4.99993C21.1652 6.97016 22 9.38756 22 11.9999C22 14.6123 21.1652 17.0297 19.7479 18.9999M15.7453 7.99993C16.5362 9.13376 17 10.5127 17 11.9999C17 13.4872 16.5362 14.8661 15.7453 15.9999M9.63432 4.36561L6.46863 7.5313C6.29568 7.70425 6.2092 7.79073 6.10828 7.85257C6.01881 7.9074 5.92127 7.9478 5.81923 7.9723C5.70414 7.99993 5.58185 7.99993 5.33726 7.99993H3.6C3.03995 7.99993 2.75992 7.99993 2.54601 8.10892C2.35785 8.20479 2.20487 8.35777 2.10899 8.54594C2 8.75985 2 9.03987 2 9.59993V14.3999C2 14.96 2 15.24 2.10899 15.4539C2.20487 15.6421 2.35785 15.7951 2.54601 15.8909C2.75992 15.9999 3.03995 15.9999 3.6 15.9999H5.33726C5.58185 15.9999 5.70414 15.9999 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2091 6.29568 16.2956 6.46863 16.4686L9.63431 19.6342C10.0627 20.0626 10.2769 20.2768 10.4608 20.2913C10.6203 20.3038 10.7763 20.2392 10.8802 20.1175C11 19.9773 11 19.6744 11 19.0686V4.9313C11 4.32548 11 4.02257 10.8802 3.88231C10.7763 3.76061 10.6203 3.69602 10.4608 3.70858C10.2769 3.72305 10.0627 3.93724 9.63432 4.36561Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/volume-min.svg b/@stellar/design-system/src/assets/icons/volume-min.svg
new file mode 100644
index 00000000..7d65875f
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/volume-min.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.2451 7.99993C19.036 9.13376 19.4998 10.5127 19.4998 11.9999C19.4998 13.4872 19.036 14.8661 18.2451 15.9999M12.1343 4.36561L8.96863 7.5313C8.79568 7.70425 8.7092 7.79073 8.60828 7.85257C8.51881 7.9074 8.42127 7.9478 8.31923 7.9723C8.20414 7.99993 8.08185 7.99993 7.83726 7.99993H6.1C5.53995 7.99993 5.25992 7.99993 5.04601 8.10892C4.85785 8.20479 4.70487 8.35777 4.60899 8.54594C4.5 8.75985 4.5 9.03987 4.5 9.59993V14.3999C4.5 14.96 4.5 15.24 4.60899 15.4539C4.70487 15.6421 4.85785 15.7951 5.04601 15.8909C5.25992 15.9999 5.53995 15.9999 6.1 15.9999H7.83726C8.08185 15.9999 8.20414 15.9999 8.31923 16.0276C8.42127 16.0521 8.51881 16.0925 8.60828 16.1473C8.7092 16.2091 8.79568 16.2956 8.96863 16.4686L12.1343 19.6342C12.5627 20.0626 12.7769 20.2768 12.9608 20.2913C13.1203 20.3038 13.2763 20.2392 13.3802 20.1175C13.5 19.9773 13.5 19.6744 13.5 19.0686V4.9313C13.5 4.32548 13.5 4.02257 13.3802 3.88231C13.2763 3.76061 13.1203 3.69602 12.9608 3.70858C12.7769 3.72305 12.5627 3.93724 12.1343 4.36561Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/volume-minus.svg b/@stellar/design-system/src/assets/icons/volume-minus.svg
new file mode 100644
index 00000000..1740e217
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/volume-minus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 11.9999H22M9.63432 4.36561L6.46863 7.5313C6.29568 7.70425 6.2092 7.79073 6.10828 7.85257C6.01881 7.9074 5.92127 7.9478 5.81923 7.9723C5.70414 7.99993 5.58185 7.99993 5.33726 7.99993H3.6C3.03995 7.99993 2.75992 7.99993 2.54601 8.10892C2.35785 8.20479 2.20487 8.35777 2.10899 8.54594C2 8.75985 2 9.03987 2 9.59993V14.3999C2 14.96 2 15.24 2.10899 15.4539C2.20487 15.6421 2.35785 15.7951 2.54601 15.8909C2.75992 15.9999 3.03995 15.9999 3.6 15.9999H5.33726C5.58185 15.9999 5.70414 15.9999 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2091 6.29568 16.2956 6.46863 16.4686L9.63431 19.6342C10.0627 20.0626 10.2769 20.2768 10.4608 20.2913C10.6203 20.3038 10.7763 20.2392 10.8802 20.1175C11 19.9773 11 19.6744 11 19.0686V4.9313C11 4.32548 11 4.02257 10.8802 3.88231C10.7763 3.76061 10.6203 3.69602 10.4608 3.70858C10.2769 3.72305 10.0627 3.93724 9.63432 4.36561Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/volume-plus.svg b/@stellar/design-system/src/assets/icons/volume-plus.svg
new file mode 100644
index 00000000..b3040534
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/volume-plus.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18.5 15.4999V8.49993M15 11.9999H22M9.63432 4.36561L6.46863 7.5313C6.29568 7.70425 6.2092 7.79073 6.10828 7.85257C6.01881 7.9074 5.92127 7.9478 5.81923 7.9723C5.70414 7.99993 5.58185 7.99993 5.33726 7.99993H3.6C3.03995 7.99993 2.75992 7.99993 2.54601 8.10892C2.35785 8.20479 2.20487 8.35777 2.10899 8.54594C2 8.75985 2 9.03987 2 9.59993V14.3999C2 14.96 2 15.24 2.10899 15.4539C2.20487 15.6421 2.35785 15.7951 2.54601 15.8909C2.75992 15.9999 3.03995 15.9999 3.6 15.9999H5.33726C5.58185 15.9999 5.70414 15.9999 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2091 6.29568 16.2956 6.46863 16.4686L9.63431 19.6342C10.0627 20.0626 10.2769 20.2768 10.4608 20.2913C10.6203 20.3038 10.7763 20.2392 10.8802 20.1175C11 19.9773 11 19.6744 11 19.0686V4.9313C11 4.32548 11 4.02257 10.8802 3.88231C10.7763 3.76061 10.6203 3.69602 10.4608 3.70858C10.2769 3.72305 10.0627 3.93724 9.63432 4.36561Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/volume-x.svg b/@stellar/design-system/src/assets/icons/volume-x.svg
new file mode 100644
index 00000000..5f4db02b
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/volume-x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 8.99993L16 14.9999M16 8.99993L22 14.9999M9.63432 4.36561L6.46863 7.5313C6.29568 7.70425 6.2092 7.79073 6.10828 7.85257C6.01881 7.9074 5.92127 7.9478 5.81923 7.9723C5.70414 7.99993 5.58185 7.99993 5.33726 7.99993H3.6C3.03995 7.99993 2.75992 7.99993 2.54601 8.10892C2.35785 8.20479 2.20487 8.35777 2.10899 8.54594C2 8.75985 2 9.03987 2 9.59993V14.3999C2 14.96 2 15.24 2.10899 15.4539C2.20487 15.6421 2.35785 15.7951 2.54601 15.8909C2.75992 15.9999 3.03995 15.9999 3.6 15.9999H5.33726C5.58185 15.9999 5.70414 15.9999 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2091 6.29568 16.2956 6.46863 16.4686L9.63431 19.6342C10.0627 20.0626 10.2769 20.2768 10.4608 20.2913C10.6203 20.3038 10.7763 20.2392 10.8802 20.1175C11 19.9773 11 19.6744 11 19.0686V4.9313C11 4.32548 11 4.02257 10.8802 3.88231C10.7763 3.76061 10.6203 3.69602 10.4608 3.70858C10.2769 3.72305 10.0627 3.93724 9.63432 4.36561Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/vpn-key.svg b/@stellar/design-system/src/assets/icons/vpn-key.svg
deleted file mode 100644
index 7e2d645c..00000000
--- a/@stellar/design-system/src/assets/icons/vpn-key.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6675)"><path d="M7 18C5.33333 18 3.91667 17.4167 2.75 16.25C1.58333 15.0833 1 13.6667 1 12C1 10.3333 1.58333 8.91667 2.75 7.75C3.91667 6.58333 5.33333 6 7 6C8.35 6 9.52933 6.379 10.538 7.137C11.546 7.89567 12.25 8.85 12.65 10H21C21.55 10 22.021 10.1957 22.413 10.587C22.8043 10.979 23 11.45 23 12C23 12.6 22.7917 13.0833 22.375 13.45C21.9583 13.8167 21.5 14 21 14V16C21 16.55 20.8043 17.021 20.413 17.413C20.021 17.8043 19.55 18 19 18C18.45 18 17.979 17.8043 17.587 17.413C17.1957 17.021 17 16.55 17 16V14H12.65C12.25 15.15 11.546 16.1043 10.538 16.863C9.52933 17.621 8.35 18 7 18ZM7 14C7.55 14 8.02067 13.804 8.412 13.412C8.804 13.0207 9 12.55 9 12C9 11.45 8.804 10.979 8.412 10.587C8.02067 10.1957 7.55 10 7 10C6.45 10 5.97933 10.1957 5.588 10.587C5.196 10.979 5 11.45 5 12C5 12.55 5.196 13.0207 5.588 13.412C5.97933 13.804 6.45 14 7 14Z"/></g><defs><clipPath id="clip0_1113_6675"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet-01.svg b/@stellar/design-system/src/assets/icons/wallet-01.svg
new file mode 100644
index 00000000..6077537c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wallet-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M22 8.5H2M2 12.5H5.54668C6.08687 12.5 6.35696 12.5 6.61813 12.5466C6.84995 12.5879 7.0761 12.6563 7.29191 12.7506C7.53504 12.8567 7.75977 13.0065 8.20924 13.3062L8.79076 13.6938C9.24023 13.9935 9.46496 14.1433 9.70809 14.2494C9.9239 14.3437 10.15 14.4121 10.3819 14.4534C10.643 14.5 10.9131 14.5 11.4533 14.5H12.5467C13.0869 14.5 13.357 14.5 13.6181 14.4534C13.85 14.4121 14.0761 14.3437 14.2919 14.2494C14.535 14.1433 14.7598 13.9935 15.2092 13.6938L15.7908 13.3062C16.2402 13.0065 16.465 12.8567 16.7081 12.7506C16.9239 12.6563 17.15 12.5879 17.3819 12.5466C17.643 12.5 17.9131 12.5 18.4533 12.5H22M2 7.2L2 16.8C2 17.9201 2 18.4802 2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782C3.51984 20 4.07989 20 5.2 20L18.8 20C19.9201 20 20.4802 20 20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908C22 18.4802 22 17.9201 22 16.8V7.2C22 6.0799 22 5.51984 21.782 5.09202C21.5903 4.7157 21.2843 4.40974 20.908 4.21799C20.4802 4 19.9201 4 18.8 4L5.2 4C4.0799 4 3.51984 4 3.09202 4.21799C2.7157 4.40973 2.40973 4.71569 2.21799 5.09202C2 5.51984 2 6.07989 2 7.2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet-02.svg b/@stellar/design-system/src/assets/icons/wallet-02.svg
new file mode 100644
index 00000000..1d48fd29
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wallet-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16 8.00007V4.50073C16 3.66899 16 3.25312 15.8248 2.99755C15.6717 2.77425 15.4346 2.62257 15.1678 2.57715C14.8623 2.52517 14.4847 2.69944 13.7295 3.04799L4.85901 7.14206C4.18551 7.45291 3.84875 7.60834 3.60211 7.84939C3.38406 8.06249 3.21762 8.32262 3.1155 8.6099C3 8.93486 3 9.30575 3 10.0475V15.0001M16.5 14.5001H16.51M3 11.2001L3 17.8001C3 18.9202 3 19.4802 3.21799 19.9081C3.40973 20.2844 3.71569 20.5903 4.09202 20.7821C4.51984 21.0001 5.07989 21.0001 6.2 21.0001H17.8C18.9201 21.0001 19.4802 21.0001 19.908 20.7821C20.2843 20.5903 20.5903 20.2844 20.782 19.9081C21 19.4802 21 18.9202 21 17.8001V11.2001C21 10.08 21 9.51992 20.782 9.09209C20.5903 8.71577 20.2843 8.40981 19.908 8.21806C19.4802 8.00007 18.9201 8.00007 17.8 8.00007L6.2 8.00007C5.0799 8.00007 4.51984 8.00007 4.09202 8.21806C3.7157 8.40981 3.40973 8.71577 3.21799 9.09209C3 9.51991 3 10.08 3 11.2001ZM17 14.5001C17 14.7762 16.7761 15.0001 16.5 15.0001C16.2239 15.0001 16 14.7762 16 14.5001C16 14.2239 16.2239 14.0001 16.5 14.0001C16.7761 14.0001 17 14.2239 17 14.5001Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet-03.svg b/@stellar/design-system/src/assets/icons/wallet-03.svg
new file mode 100644
index 00000000..fab1f9d0
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wallet-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.5 14H16.51M3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V9C21 7.89543 20.1046 7 19 7L5 7C3.89543 7 3 6.10457 3 5ZM3 5C3 3.89543 3.89543 3 5 3H17M17 14C17 14.2761 16.7761 14.5 16.5 14.5C16.2239 14.5 16 14.2761 16 14C16 13.7239 16.2239 13.5 16.5 13.5C16.7761 13.5 17 13.7239 17 14Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet-04.svg b/@stellar/design-system/src/assets/icons/wallet-04.svg
new file mode 100644
index 00000000..1840edd3
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wallet-04.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M20 9.5V7.2C20 6.0799 20 5.51984 19.782 5.09202C19.5903 4.7157 19.2843 4.40974 18.908 4.21799C18.4802 4 17.9201 4 16.8 4H5.2C4.0799 4 3.51984 4 3.09202 4.21799C2.7157 4.40973 2.40973 4.71569 2.21799 5.09202C2 5.51984 2 6.0799 2 7.2V16.8C2 17.9201 2 18.4802 2.21799 18.908C2.40973 19.2843 2.71569 19.5903 3.09202 19.782C3.51984 20 4.07989 20 5.2 20L16.8 20C17.9201 20 18.4802 20 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C20 18.4802 20 17.9201 20 16.8V14.5M15 12C15 11.5353 15 11.303 15.0384 11.1098C15.1962 10.3164 15.8164 9.69624 16.6098 9.53843C16.803 9.5 17.0353 9.5 17.5 9.5H19.5C19.9647 9.5 20.197 9.5 20.3902 9.53843C21.1836 9.69624 21.8038 10.3164 21.9616 11.1098C22 11.303 22 11.5353 22 12C22 12.4647 22 12.697 21.9616 12.8902C21.8038 13.6836 21.1836 14.3038 20.3902 14.4616C20.197 14.5 19.9647 14.5 19.5 14.5H17.5C17.0353 14.5 16.803 14.5 16.6098 14.4616C15.8164 14.3038 15.1962 13.6836 15.0384 12.8902C15 12.697 15 12.4647 15 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet-05.svg b/@stellar/design-system/src/assets/icons/wallet-05.svg
new file mode 100644
index 00000000..55b0881d
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wallet-05.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M19 10L5 10M19 10L20.8641 13.1069C21.2819 13.8032 21.4908 14.1514 21.5993 14.5262C21.6954 14.8582 21.7334 15.2045 21.7116 15.5495C21.687 15.9389 21.5586 16.324 21.3019 17.0944L21.094 17.7179C20.7006 18.8981 20.5039 19.4882 20.1391 19.9245C19.8169 20.3098 19.4031 20.608 18.9357 20.7918C18.4065 21 17.7844 21 16.5404 21L7.45964 21C6.21557 21 5.59353 21 5.06426 20.7918C4.59687 20.608 4.18312 20.3098 3.86093 19.9245C3.49608 19.4882 3.29937 18.8981 2.90596 17.7179L2.69813 17.0944C2.44134 16.324 2.31295 15.9389 2.28835 15.5495C2.26655 15.2044 2.30455 14.8582 2.40068 14.5261C2.50917 14.1514 2.71806 13.8032 3.13584 13.1069L5 10M19 10L19.4173 8.53955C19.6151 7.84717 19.714 7.50097 19.6363 7.22708C19.5682 6.98715 19.413 6.78132 19.201 6.64996C18.959 6.5 18.5989 6.5 17.8788 6.5L6.12116 6.5C5.40107 6.5 5.04102 6.5 4.79901 6.64996C4.58702 6.78132 4.43176 6.98715 4.36369 7.22708C4.28599 7.50097 4.3849 7.84717 4.58273 8.53955L5 10M12 6.5H8.46428C7.94332 6.5 7.4437 6.28929 7.07532 5.91421C6.70695 5.53914 6.5 5.03043 6.5 4.5C6.5 3.96957 6.70695 3.46086 7.07532 3.08579C7.4437 2.71071 7.94332 2.5 8.46428 2.5C11.2143 2.5 12 6.5 12 6.5ZM12 6.5H15.5357C16.0567 6.5 16.5563 6.28929 16.9247 5.91421C17.293 5.53914 17.5 5.03043 17.5 4.5C17.5 3.96957 17.293 3.46086 16.9247 3.08579C16.5563 2.71071 16.0567 2.5 15.5357 2.5C12.7857 2.5 12 6.5 12 6.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wallet.svg b/@stellar/design-system/src/assets/icons/wallet.svg
deleted file mode 100644
index 5eb8f3dc..00000000
--- a/@stellar/design-system/src/assets/icons/wallet.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6672)"><path d="M6 20C4.9 20 3.95833 19.6083 3.175 18.825C2.39167 18.0417 2 17.1 2 16V8C2 6.9 2.39167 5.95833 3.175 5.175C3.95833 4.39167 4.9 4 6 4H18C19.1 4 20.0417 4.39167 20.825 5.175C21.6083 5.95833 22 6.9 22 8V16C22 17.1 21.6083 18.0417 20.825 18.825C20.0417 19.6083 19.1 20 18 20H6ZM6 8H18C18.3667 8 18.7167 8.04167 19.05 8.125C19.3833 8.20833 19.7 8.34167 20 8.525V8C20 7.45 19.8043 6.97933 19.413 6.588C19.021 6.196 18.55 6 18 6H6C5.45 6 4.97933 6.196 4.588 6.588C4.196 6.97933 4 7.45 4 8V8.525C4.3 8.34167 4.61667 8.20833 4.95 8.125C5.28333 8.04167 5.63333 8 6 8ZM4.15 11.25L15.275 13.95C15.425 13.9833 15.575 13.9833 15.725 13.95C15.875 13.9167 16.0167 13.85 16.15 13.75L19.625 10.85C19.4417 10.6 19.2083 10.396 18.925 10.238C18.6417 10.0793 18.3333 10 18 10H6C5.56667 10 5.18767 10.1123 4.863 10.337C4.53767 10.5623 4.3 10.8667 4.15 11.25Z"/></g><defs><clipPath id="clip0_1113_6672"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/warning.svg b/@stellar/design-system/src/assets/icons/warning.svg
deleted file mode 100644
index 6620f459..00000000
--- a/@stellar/design-system/src/assets/icons/warning.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6669)"><path d="M2.72505 21C2.34172 21 2.05838 20.8333 1.87505 20.5C1.69172 20.1667 1.69172 19.8333 1.87505 19.5L11.125 3.5C11.3084 3.16667 11.6 3 12 3C12.4 3 12.6917 3.16667 12.875 3.5L22.125 19.5C22.3084 19.8333 22.3084 20.1667 22.125 20.5C21.9417 20.8333 21.6584 21 21.275 21H2.72505ZM12 10C11.7167 10 11.4794 10.0957 11.288 10.287C11.096 10.479 11 10.7167 11 11V14C11 14.2833 11.096 14.5207 11.288 14.712C11.4794 14.904 11.7167 15 12 15C12.2834 15 12.521 14.904 12.713 14.712C12.9044 14.5207 13 14.2833 13 14V11C13 10.7167 12.9044 10.479 12.713 10.287C12.521 10.0957 12.2834 10 12 10ZM12 18C12.2834 18 12.521 17.904 12.713 17.712C12.9044 17.5207 13 17.2833 13 17C13 16.7167 12.9044 16.4793 12.713 16.288C12.521 16.096 12.2834 16 12 16C11.7167 16 11.4794 16.096 11.288 16.288C11.096 16.4793 11 16.7167 11 17C11 17.2833 11.096 17.5207 11.288 17.712C11.4794 17.904 11.7167 18 12 18Z"/></g><defs><clipPath id="clip0_1113_6669"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/watch-circle.svg b/@stellar/design-system/src/assets/icons/watch-circle.svg
new file mode 100644
index 00000000..0ac03613
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/watch-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M7 17L7.48551 19.4276C7.66878 20.3439 7.76041 20.8021 7.99964 21.1448C8.2106 21.447 8.50097 21.685 8.83869 21.8326C9.22166 22 9.6889 22 10.6234 22H13.3766C14.3111 22 14.7783 22 15.1613 21.8326C15.499 21.685 15.7894 21.447 16.0004 21.1448C16.2396 20.8021 16.3312 20.3439 16.5145 19.4276L17 17M7 7L7.48551 4.57243C7.66878 3.6561 7.76041 3.19793 7.99964 2.85522C8.2106 2.55301 8.50097 2.31497 8.83869 2.16737C9.22166 2 9.6889 2 10.6234 2H13.3766C14.3111 2 14.7783 2 15.1613 2.16737C15.499 2.31497 15.7894 2.55301 16.0004 2.85522C16.2396 3.19793 16.3312 3.6561 16.5145 4.57243L17 7M12 9V12L13.5 13.5M19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/watch-square.svg b/@stellar/design-system/src/assets/icons/watch-square.svg
new file mode 100644
index 00000000..8f7da8a5
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/watch-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 18.5L16.6631 19.6791C16.4254 20.511 16.3066 20.927 16.0639 21.2358C15.8498 21.5083 15.5685 21.7205 15.2476 21.8515C14.8841 22 14.4515 22 13.5862 22H10.4138C9.54854 22 9.11592 22 8.75239 21.8515C8.43152 21.7205 8.15022 21.5083 7.93606 21.2358C7.69343 20.927 7.57458 20.511 7.33689 19.6791L7 18.5M17 5.5L16.6631 4.32089C16.4254 3.48896 16.3066 3.07298 16.0639 2.76423C15.8498 2.49171 15.5685 2.27953 15.2476 2.14847C14.8841 2 14.4515 2 13.5862 2H10.4138C9.54854 2 9.11592 2 8.75239 2.14847C8.43152 2.27953 8.15022 2.49171 7.93606 2.76423C7.69343 3.07299 7.57458 3.48895 7.33689 4.32089L7 5.5M12 9V12L13.5 13.5M8.7 18.5H15.3C16.4201 18.5 16.9802 18.5 17.408 18.282C17.7843 18.0903 18.0903 17.7843 18.282 17.408C18.5 16.9802 18.5 16.4201 18.5 15.3V8.7C18.5 7.57989 18.5 7.01984 18.282 6.59202C18.0903 6.21569 17.7843 5.90973 17.408 5.71799C16.9802 5.5 16.4201 5.5 15.3 5.5H8.7C7.5799 5.5 7.01984 5.5 6.59202 5.71799C6.21569 5.90973 5.90973 6.21569 5.71799 6.59202C5.5 7.01984 5.5 7.57989 5.5 8.7V15.3C5.5 16.4201 5.5 16.9802 5.71799 17.408C5.90973 17.7843 6.21569 18.0903 6.59202 18.282C7.01984 18.5 7.57989 18.5 8.7 18.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/waves.svg b/@stellar/design-system/src/assets/icons/waves.svg
new file mode 100644
index 00000000..05c025be
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/waves.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M2 6C2.6 6.5 3.2 7 4.5 7C7 7 7 5 9.5 5C10.8 5 11.4 5.5 12 6C12.6 6.5 13.2 7 14.5 7C17 7 17 5 19.5 5C20.8 5 21.4 5.5 22 6M2 18C2.6 18.5 3.2 19 4.5 19C7 19 7 17 9.5 17C10.8 17 11.4 17.5 12 18C12.6 18.5 13.2 19 14.5 19C17 19 17 17 19.5 17C20.8 17 21.4 17.5 22 18M2 12C2.6 12.5 3.2 13 4.5 13C7 13 7 11 9.5 11C10.8 11 11.4 11.5 12 12C12.6 12.5 13.2 13 14.5 13C17 13 17 11 19.5 11C20.8 11 21.4 11.5 22 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/webcam-01.svg b/@stellar/design-system/src/assets/icons/webcam-01.svg
new file mode 100644
index 00000000..016649da
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/webcam-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 18C16.4183 18 20 14.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 14.4183 7.58172 18 12 18ZM12 18V22M12 22H7M12 22H17M15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/webcam-02.svg b/@stellar/design-system/src/assets/icons/webcam-02.svg
new file mode 100644
index 00000000..06ea4677
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/webcam-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 22H16M20.5 10.5C20.5 15.1944 16.6944 19 12 19C7.30558 19 3.5 15.1944 3.5 10.5C3.5 5.80558 7.30558 2 12 2C16.6944 2 20.5 5.80558 20.5 10.5ZM15.1875 10.5C15.1875 12.2604 13.7604 13.6875 12 13.6875C10.2396 13.6875 8.8125 12.2604 8.8125 10.5C8.8125 8.73959 10.2396 7.3125 12 7.3125C13.7604 7.3125 15.1875 8.73959 15.1875 10.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wifi-off.svg b/@stellar/design-system/src/assets/icons/wifi-off.svg
new file mode 100644
index 00000000..878fd69a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wifi-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15.3119 10C16.6802 10.4263 17.9624 11.1191 19.08 12.05M22.5799 8.49997C19.6575 5.92394 15.8956 4.50262 11.9999 4.50262C11.3949 4.50262 10.7931 4.5369 10.1972 4.60447M8.52979 15.61C9.54499 14.8888 10.7595 14.5013 12.0048 14.5013C13.2501 14.5013 14.4646 14.8888 15.4798 15.61M12 19.5H12.01M1.19336 8.70076C2.52697 7.47869 4.06839 6.47975 5.75851 5.76306M4.73193 12.243C6.12934 11.012 7.84172 10.1302 9.73265 9.73393M15.6983 15.7751C14.6792 14.9763 13.3952 14.5 11.9999 14.5C10.5835 14.5 9.28172 14.9908 8.25537 15.8116M3 3L21 21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wifi.svg b/@stellar/design-system/src/assets/icons/wifi.svg
new file mode 100644
index 00000000..10b73c34
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wifi.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 19.5H12.01M22.8064 8.70076C19.9595 6.09199 16.1656 4.5 11.9999 4.5C7.83414 4.5 4.04023 6.09199 1.19336 8.70076M4.73193 12.243C6.67006 10.5357 9.21407 9.5 12 9.5C14.7859 9.5 17.3299 10.5357 19.268 12.243M15.6983 15.7751C14.6792 14.9763 13.3952 14.5 11.9999 14.5C10.5835 14.5 9.28172 14.9908 8.25537 15.8116" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wind-01.svg b/@stellar/design-system/src/assets/icons/wind-01.svg
new file mode 100644
index 00000000..28214226
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wind-01.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 18C21 18 19.8096 17.5305 19 17.3021C13.8797 15.8574 10.1203 20.1426 5 18.6979C4.19041 18.4695 3 18 3 18M21 12C21 12 19.8096 11.5305 19 11.3021C13.8797 9.85739 10.1203 14.1426 5 12.6979C4.19041 12.4695 3 12 3 12M21 6C21 6 19.8096 5.53048 19 5.30206C13.8797 3.85739 10.1203 8.14261 5 6.69794C4.19041 6.46952 3 6 3 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wind-02.svg b/@stellar/design-system/src/assets/icons/wind-02.svg
new file mode 100644
index 00000000..76bc08d1
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wind-02.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9.50929 4.66667C9.8755 4.2575 10.4077 4 11 4C12.1046 4 13 4.89543 13 6C13 7.10457 12.1046 8 11 8H2.00002M12.5093 19.3333C12.8755 19.7425 13.4077 20 14 20C15.1046 20 16 19.1046 16 18C16 16.8954 15.1046 16 14 16H2.00002M16.7639 7C17.3132 6.38625 18.1115 6 19 6C20.6569 6 22 7.34315 22 9C22 10.6569 20.6569 12 19 12H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/wind-03.svg b/@stellar/design-system/src/assets/icons/wind-03.svg
new file mode 100644
index 00000000..85170a37
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/wind-03.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M16.7639 6.5C17.3132 5.88625 18.1115 5.5 19 5.5C20.6569 5.5 22 6.84315 22 8.5C22 10.1569 20.6569 11.5 19 11.5H13M6.7639 4C7.31322 3.38625 8.1115 3 9 3C10.6569 3 12 4.34315 12 6C12 7.65685 10.6569 9 9 9H2M10.7639 20C11.3132 20.6137 12.1115 21 13 21C14.6569 21 16 19.6569 16 18C16 16.3431 14.6569 15 13 15H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/x-circle.svg b/@stellar/design-system/src/assets/icons/x-circle.svg
new file mode 100644
index 00000000..052a4301
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/x-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/x-close.svg b/@stellar/design-system/src/assets/icons/x-close.svg
new file mode 100644
index 00000000..7ec3c4e4
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/x-close.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M18 6L6 18M6 6L18 18" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/x-square.svg b/@stellar/design-system/src/assets/icons/x-square.svg
new file mode 100644
index 00000000..43ef4c81
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/x-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 9L15 15M15 9L9 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/x.svg b/@stellar/design-system/src/assets/icons/x.svg
new file mode 100644
index 00000000..cce1311e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/x.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M17 7L7 17M7 7L17 17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/youtube.svg b/@stellar/design-system/src/assets/icons/youtube.svg
new file mode 100644
index 00000000..c302671e
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/youtube.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21.5813 7.19989C21.4733 6.76846 21.2534 6.37318 20.9438 6.05395C20.6341 5.73473 20.2457 5.50287 19.8178 5.3818C18.2542 5 12 5 12 5C12 5 5.74578 5 4.18222 5.41816C3.75429 5.53923 3.36588 5.77109 3.05623 6.09031C2.74659 6.40954 2.52666 6.80482 2.41868 7.23625C2.13253 8.82303 1.99255 10.4327 2.00052 12.0451C1.99032 13.6696 2.1303 15.2916 2.41868 16.8903C2.53773 17.3083 2.76258 17.6886 3.0715 17.9943C3.38043 18.3 3.76299 18.5209 4.18222 18.6357C5.74578 19.0538 12 19.0538 12 19.0538C12 19.0538 18.2542 19.0538 19.8178 18.6357C20.2457 18.5146 20.6341 18.2827 20.9438 17.9635C21.2534 17.6443 21.4733 17.249 21.5813 16.8176C21.8653 15.2427 22.0052 13.6453 21.9995 12.0451C22.0097 10.4206 21.8697 8.79862 21.5813 7.19989Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.75 9.46533C9.75 8.98805 9.75 8.74941 9.84974 8.61618C9.93666 8.50008 10.0697 8.42744 10.2144 8.4171C10.3804 8.40525 10.5811 8.53429 10.9826 8.79239L14.9254 11.3271C15.2738 11.551 15.448 11.663 15.5082 11.8054C15.5607 11.9298 15.5607 12.0702 15.5082 12.1946C15.448 12.337 15.2738 12.449 14.9254 12.6729L10.9826 15.2076C10.5811 15.4657 10.3804 15.5948 10.2144 15.5829C10.0697 15.5726 9.93666 15.4999 9.84974 15.3838C9.75 15.2506 9.75 15.012 9.75 14.5347V9.46533Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zap-circle.svg b/@stellar/design-system/src/assets/icons/zap-circle.svg
new file mode 100644
index 00000000..beee7201
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zap-circle.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M12 5.5L7.36159 12.2468C7.08236 12.6529 6.94275 12.856 6.95113 13.0248C6.95843 13.1718 7.03015 13.3082 7.14716 13.3975C7.28151 13.5 7.52794 13.5 8.02082 13.5H12V18.5L16.6384 11.7532C16.9176 11.3471 17.0573 11.144 17.0489 10.9752C17.0416 10.8282 16.9699 10.6918 16.8528 10.6025C16.7185 10.5 16.4721 10.5 15.9792 10.5H12V5.5Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zap-fast.svg b/@stellar/design-system/src/assets/icons/zap-fast.svg
new file mode 100644
index 00000000..58af80ba
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zap-fast.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M9 17.5H3.5M6.5 12H2M9 6.5H4M17 3L10.4036 12.235C10.1116 12.6438 9.96562 12.8481 9.97194 13.0185C9.97744 13.1669 10.0486 13.3051 10.1661 13.3958C10.3011 13.5 10.5522 13.5 11.0546 13.5H16L15 21L21.5964 11.765C21.8884 11.3562 22.0344 11.1519 22.0281 10.9815C22.0226 10.8331 21.9514 10.6949 21.8339 10.6042C21.6989 10.5 21.4478 10.5 20.9454 10.5H16L17 3Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zap-off.svg b/@stellar/design-system/src/assets/icons/zap-off.svg
new file mode 100644
index 00000000..a981bfbb
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zap-off.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M8 8L4.09346 12.6879C3.74465 13.1064 3.57024 13.3157 3.56758 13.4925C3.56526 13.6461 3.63373 13.7923 3.75326 13.8889C3.89075 14 4.16318 14 4.70803 14H12L11 22L16 16M15.65 10H19.292C19.8368 10 20.1093 10 20.2467 10.1111C20.3663 10.2077 20.4347 10.3539 20.4324 10.5075C20.4298 10.6843 20.2554 10.8936 19.9065 11.3121L18.5502 12.9397M10.5728 4.91265L13 2L12.4002 6.79771M21 21L3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zap-square.svg b/@stellar/design-system/src/assets/icons/zap-square.svg
new file mode 100644
index 00000000..0d2314fc
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zap-square.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M3 7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 6L7.4336 12.2269C7.13256 12.6374 6.98205 12.8427 6.9869 13.0142C6.99113 13.1634 7.06185 13.303 7.17972 13.3947C7.31514 13.5 7.56967 13.5 8.07872 13.5H12V18L16.5664 11.7731C16.8674 11.3626 17.018 11.1573 17.0131 10.9858C17.0089 10.8366 16.9381 10.697 16.8203 10.6053C16.6849 10.5 16.4303 10.5 15.9213 10.5H12V6Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zap.svg b/@stellar/design-system/src/assets/icons/zap.svg
new file mode 100644
index 00000000..8af71808
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zap.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M13 2L4.09346 12.6879C3.74465 13.1064 3.57024 13.3157 3.56758 13.4925C3.56526 13.6461 3.63373 13.7923 3.75326 13.8889C3.89075 14 4.16318 14 4.70803 14H12L11 22L19.9065 11.3121C20.2554 10.8936 20.4298 10.6843 20.4324 10.5075C20.4347 10.3539 20.3663 10.2077 20.2467 10.1111C20.1093 10 19.8368 10 19.292 10H12L13 2Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zoom-in.svg b/@stellar/design-system/src/assets/icons/zoom-in.svg
new file mode 100644
index 00000000..031c051a
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zoom-in.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L16.65 16.65M11 8V14M8 11H14M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zoom-out-map.svg b/@stellar/design-system/src/assets/icons/zoom-out-map.svg
deleted file mode 100644
index 22bf7b84..00000000
--- a/@stellar/design-system/src/assets/icons/zoom-out-map.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><g clip-path="url(#clip0_1113_6666)"><path d="M4 9C3.71667 9 3.47933 8.904 3.288 8.712C3.096 8.52067 3 8.28333 3 8V4C3 3.71667 3.096 3.479 3.288 3.287C3.47933 3.09567 3.71667 3 4 3H8C8.28333 3 8.521 3.09567 8.713 3.287C8.90433 3.479 9 3.71667 9 4C9 4.28333 8.90433 4.52067 8.713 4.712C8.521 4.904 8.28333 5 8 5H6.4L8.825 7.425C9.00833 7.60833 9.1 7.83333 9.1 8.1C9.1 8.36667 9 8.6 8.8 8.8C8.61667 8.98333 8.38333 9.075 8.1 9.075C7.81667 9.075 7.58333 8.98333 7.4 8.8L5 6.4V8C5 8.28333 4.90433 8.52067 4.713 8.712C4.521 8.904 4.28333 9 4 9ZM15.2 8.8C15.0167 8.61667 14.925 8.38333 14.925 8.1C14.925 7.81667 15.0167 7.58333 15.2 7.4L17.6 5H16C15.7167 5 15.4793 4.904 15.288 4.712C15.096 4.52067 15 4.28333 15 4C15 3.71667 15.096 3.479 15.288 3.287C15.4793 3.09567 15.7167 3 16 3H20C20.2833 3 20.5207 3.09567 20.712 3.287C20.904 3.479 21 3.71667 21 4V8C21 8.28333 20.904 8.52067 20.712 8.712C20.5207 8.904 20.2833 9 20 9C19.7167 9 19.4793 8.904 19.288 8.712C19.096 8.52067 19 8.28333 19 8V6.4L16.575 8.825C16.3917 9.00833 16.1667 9.1 15.9 9.1C15.6333 9.1 15.4 9 15.2 8.8ZM16 21C15.7167 21 15.4793 20.904 15.288 20.712C15.096 20.5207 15 20.2833 15 20C15 19.7167 15.096 19.4793 15.288 19.288C15.4793 19.096 15.7167 19 16 19H17.6L15.175 16.575C14.9917 16.3917 14.9 16.1667 14.9 15.9C14.9 15.6333 15 15.4 15.2 15.2C15.3833 15.0167 15.6167 14.925 15.9 14.925C16.1833 14.925 16.4167 15.0167 16.6 15.2L19 17.6V16C19 15.7167 19.096 15.479 19.288 15.287C19.4793 15.0957 19.7167 15 20 15C20.2833 15 20.5207 15.0957 20.712 15.287C20.904 15.479 21 15.7167 21 16V20C21 20.2833 20.904 20.5207 20.712 20.712C20.5207 20.904 20.2833 21 20 21H16ZM4 21C3.71667 21 3.47933 20.904 3.288 20.712C3.096 20.5207 3 20.2833 3 20V16C3 15.7167 3.096 15.479 3.288 15.287C3.47933 15.0957 3.71667 15 4 15C4.28333 15 4.521 15.0957 4.713 15.287C4.90433 15.479 5 15.7167 5 16V17.6L7.425 15.175C7.60833 14.9917 7.83333 14.9 8.1 14.9C8.36667 14.9 8.6 15 8.8 15.2C8.98333 15.3833 9.075 15.6167 9.075 15.9C9.075 16.1833 8.98333 16.4167 8.8 16.6L6.4 19H8C8.28333 19 8.521 19.096 8.713 19.288C8.90433 19.4793 9 19.7167 9 20C9 20.2833 8.90433 20.5207 8.713 20.712C8.521 20.904 8.28333 21 8 21H4Z"/></g><defs><clipPath id="clip0_1113_6666"><rect width="24" height="24"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/icons/zoom-out.svg b/@stellar/design-system/src/assets/icons/zoom-out.svg
new file mode 100644
index 00000000..c89f3d9c
--- /dev/null
+++ b/@stellar/design-system/src/assets/icons/zoom-out.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" stroke="currentColor"><path d="M21 21L16.65 16.65M8 11H14M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/albedo.svg b/@stellar/design-system/src/assets/logos/albedo.svg
index 2455288a..42e35b59 100644
--- a/@stellar/design-system/src/assets/logos/albedo.svg
+++ b/@stellar/design-system/src/assets/logos/albedo.svg
@@ -1,10 +1 @@
-<svg width="21" height="24" viewBox="0 0 21 24" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_1140_1883)">
-<path d="M10.859 0.168518H9.87061L-0.135254 23.8189L-0.105348 23.8316H2.56472L4.56704 19.0988C8.72804 20.5013 13.2376 20.4779 17.3838 19.032L19.4144 23.8316H20.8349L20.8648 23.8189L10.8589 0.168518H10.859ZM10.8791 19.2399C8.85265 19.2395 6.83954 18.9124 4.91731 18.271L10.9895 3.91847L17.0349 18.2074C15.0546 18.8911 12.9741 19.2401 10.8791 19.2399V19.2399Z" fill="#0691B7"/>
-</g>
-<defs>
-<clipPath id="clip0_1140_1883">
-<rect width="21" height="24" fill="white"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="21" height="24" viewBox="0 0 21 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1140_1883)"><path d="M10.859 0.168518H9.87061L-0.135254 23.8189L-0.105348 23.8316H2.56472L4.56704 19.0988C8.72804 20.5013 13.2376 20.4779 17.3838 19.032L19.4144 23.8316H20.8349L20.8648 23.8189L10.8589 0.168518H10.859ZM10.8791 19.2399C8.85265 19.2395 6.83954 18.9124 4.91731 18.271L10.9895 3.91847L17.0349 18.2074C15.0546 18.8911 12.9741 19.2401 10.8791 19.2399V19.2399Z" fill="#0691B7"/></g><defs><clipPath id="clip0_1140_1883"><rect width="21" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/app-store.svg b/@stellar/design-system/src/assets/logos/app-store.svg
new file mode 100644
index 00000000..d5e7573f
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/app-store.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_573)"><path d="M8.8086 14.9194L14.9193 3.8826C15.003 3.7313 15.0875 3.5806 15.163 3.4242C15.2315 3.2822 15.2897 3.1388 15.3276 2.9839C15.4079 2.658 15.3864 2.3183 15.2616 2.0072C15.1378 1.6977 14.9199 1.4394 14.6415 1.2717C14.3654 1.10458 14.0405 1.0367 13.7205 1.0793C13.3998 1.1223 13.107 1.2728 12.8762 1.5081C12.7668 1.6199 12.6766 1.7442 12.593 1.8771C12.501 2.0234 12.418 2.175 12.334 2.3263L11.9476 3.0242L11.5611 2.3263C11.4774 2.1748 11.3944 2.0233 11.3024 1.8771C11.2187 1.7442 11.1285 1.6199 11.0189 1.5081C10.7884 1.2728 10.4956 1.1224 10.1749 1.0791C9.85493 1.03661 9.53003 1.10455 9.2539 1.2717C8.9755 1.4394 8.7575 1.6977 8.6336 2.0072C8.509 2.3182 8.4875 2.658 8.5676 2.9839C8.6056 3.1389 8.6638 3.2823 8.7324 3.4242C8.8077 3.5806 8.8922 3.7312 8.9761 3.8826L10.2241 6.1369L5.3616 14.9194H2.0295C1.8619 14.9194 1.6944 14.9187 1.5269 14.9286C1.3747 14.9376 1.2265 14.957 1.0789 15C0.7681 15.0906 0.4967 15.2798 0.3006 15.548C0.1056 15.8145 0 16.1409 0 16.4759C0 16.8111 0.1057 17.1371 0.3006 17.4036C0.4966 17.6719 0.7681 17.8611 1.0788 17.9516C1.2265 17.9946 1.3748 18.0139 1.5269 18.0231C1.6944 18.0331 1.8619 18.0321 2.0295 18.0321H15.1269C15.144 17.9964 15.1859 17.9027 15.2269 17.7624C15.6419 16.3473 14.6113 14.9194 13.1922 14.9194H8.8086ZM3.113 18.5418L2.3208 20.0426C2.239 20.1979 2.1564 20.3526 2.0824 20.5131C2.0154 20.6589 1.9584 20.8061 1.9213 20.9651C1.8428 21.2997 1.8637 21.6485 1.9858 21.968C2.107 22.2855 2.3204 22.551 2.5928 22.7229C2.8655 22.8949 3.1819 22.9645 3.4941 22.9204C3.808 22.8764 4.0946 22.7218 4.3204 22.4802C4.4276 22.3654 4.5158 22.2378 4.5976 22.1015C4.6878 21.9512 4.769 21.7956 4.8511 21.6403L6 19.4636C5.9104 19.3146 5.0527 17.9932 3.113 18.5418ZM23.6991 15.5362C23.5063 15.2749 23.2323 15.0848 22.9201 14.9955C22.7725 14.953 22.624 14.9339 22.4718 14.925C22.304 14.9151 22.1366 14.9159 21.9688 14.9159H18.648L14.2589 7.0989C13.5934 7.7994 13.2957 8.5839 13.1816 9.2965C13.0161 10.3298 13.2183 11.3899 13.7276 12.2969L19.0017 21.6902C19.0857 21.8396 19.1687 21.9892 19.2608 22.1337C19.3445 22.2647 19.4347 22.3874 19.5444 22.4977C19.7754 22.73 20.0682 22.8786 20.3893 22.9209C20.7085 22.9633 21.0323 22.8965 21.311 22.731C21.5894 22.5657 21.8078 22.3106 21.932 22.0053C22.0566 21.6981 22.078 21.3628 21.9978 21.0412C21.9597 20.8883 21.9016 20.7467 21.8328 20.6066C21.7575 20.4523 21.673 20.3036 21.589 20.1542L20.373 17.988H21.969C22.1367 17.988 22.3041 17.9889 22.4719 17.979C22.6241 17.97 22.7726 17.951 22.9202 17.9085C23.2324 17.8192 23.5064 17.6291 23.6992 17.3678C23.895 17.1026 24.0004 16.7816 24 16.452C24.0004 16.1224 23.8949 15.8014 23.6991 15.5362Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_573"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/apple.svg b/@stellar/design-system/src/assets/logos/apple.svg
new file mode 100644
index 00000000..42db5d12
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/apple.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_575)"><path d="M12.152 6.896C11.204 6.896 9.73699 5.818 8.19199 5.856C6.15199 5.883 4.28199 7.039 3.23099 8.87C1.11399 12.545 2.68499 17.973 4.74999 20.96C5.76299 22.414 6.95799 24.05 8.54199 23.999C10.062 23.934 10.632 23.012 12.477 23.012C14.308 23.012 14.827 23.999 16.437 23.96C18.074 23.934 19.113 22.48 20.113 21.012C21.269 19.324 21.749 17.687 21.775 17.597C21.736 17.584 18.593 16.376 18.555 12.74C18.529 9.7 21.035 8.246 21.152 8.181C19.723 6.091 17.529 5.857 16.762 5.805C14.762 5.649 13.087 6.896 12.152 6.896ZM15.53 3.83C16.373 2.818 16.93 1.403 16.775 0C15.568 0.052 14.113 0.805 13.243 1.818C12.463 2.714 11.789 4.156 11.97 5.532C13.308 5.636 14.685 4.844 15.529 3.831" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_575"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/discord.svg b/@stellar/design-system/src/assets/logos/discord.svg
new file mode 100644
index 00000000..1c186468
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/discord.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_929)"><path d="M20.317 4.36979C18.761 3.65555 17.119 3.14623 15.4319 2.85459C15.4166 2.85173 15.4007 2.85378 15.3867 2.86044C15.3726 2.8671 15.3609 2.87803 15.3534 2.89169C15.1424 3.26699 14.9087 3.75649 14.7451 4.14119C12.9004 3.86499 11.0651 3.86499 9.2583 4.14119C9.0947 3.74789 8.8525 3.26699 8.6406 2.89169C8.63276 2.87835 8.62107 2.86768 8.60706 2.86108C8.59306 2.85448 8.57739 2.85225 8.5621 2.85469C6.87488 3.14566 5.2327 3.65493 3.6769 4.36969C3.66359 4.37538 3.65238 4.38506 3.6448 4.39739C0.533404 9.04579 -0.318996 13.5799 0.099204 18.0578C0.100386 18.0688 0.103757 18.0794 0.109116 18.089C0.114476 18.0986 0.121714 18.1071 0.130404 18.1139C2.1832 19.6215 4.1717 20.5367 6.1233 21.1433C6.13848 21.1478 6.15468 21.1476 6.16972 21.1427C6.18477 21.1377 6.19795 21.1283 6.2075 21.1157C6.6691 20.4853 7.0806 19.8205 7.4335 19.1215C7.43835 19.1119 7.44112 19.1014 7.44163 19.0907C7.44213 19.08 7.44036 19.0693 7.43643 19.0593C7.4325 19.0493 7.4265 19.0403 7.41883 19.0328C7.41115 19.0253 7.40198 19.0195 7.3919 19.0158C6.7391 18.7682 6.1176 18.4663 5.5197 18.1235C5.5088 18.1171 5.49964 18.1081 5.49304 18.0973C5.48643 18.0865 5.48258 18.0743 5.48183 18.0617C5.48108 18.049 5.48345 18.0364 5.48873 18.0249C5.49401 18.0135 5.50204 18.0034 5.5121 17.9958C5.6379 17.9015 5.7638 17.8035 5.8839 17.7044C5.89458 17.6956 5.9075 17.6899 5.92121 17.6881C5.93492 17.6862 5.94887 17.6882 5.9615 17.6939C9.8893 19.4872 14.1415 19.4872 18.0229 17.6939C18.0355 17.6879 18.0496 17.6856 18.0635 17.6873C18.0774 17.6889 18.0906 17.6945 18.1014 17.7034C18.2216 17.8024 18.3474 17.9015 18.4742 17.9958C18.4843 18.0034 18.4924 18.0133 18.4977 18.0247C18.5031 18.0362 18.5055 18.0487 18.5049 18.0613C18.5042 18.074 18.5005 18.0862 18.494 18.097C18.4875 18.1078 18.4784 18.1169 18.4676 18.1234C17.8695 18.4727 17.2429 18.7709 16.5946 19.0148C16.5845 19.0186 16.5754 19.0246 16.5678 19.0322C16.5602 19.0398 16.5542 19.049 16.5504 19.059C16.5466 19.0691 16.5449 19.0799 16.5455 19.0906C16.5461 19.1014 16.549 19.1119 16.5539 19.1215C16.9143 19.8195 17.3258 20.4843 17.7789 21.1147C17.7882 21.1277 17.8013 21.1375 17.8164 21.1426C17.8315 21.1477 17.8478 21.148 17.8631 21.1433C19.8241 20.5366 21.8126 19.6214 23.8654 18.1139C23.8742 18.1074 23.8816 18.0992 23.887 18.0897C23.8924 18.0801 23.8957 18.0696 23.8967 18.0587C24.3971 12.8817 23.0585 8.38479 20.3482 4.39829C20.3416 4.38534 20.3305 4.37529 20.317 4.36979ZM8.02 15.3312C6.8375 15.3312 5.8631 14.2455 5.8631 12.9122C5.8631 11.579 6.8186 10.4933 8.0201 10.4933C9.2309 10.4933 10.1958 11.5885 10.1769 12.9123C10.1769 14.2455 9.2214 15.3312 8.02 15.3312ZM15.9948 15.3312C14.8123 15.3312 13.8379 14.2455 13.8379 12.9122C13.8379 11.579 14.7933 10.4933 15.9948 10.4933C17.2056 10.4933 18.1705 11.5885 18.1516 12.9123C18.1516 14.2455 17.2056 15.3312 15.9948 15.3312Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_929"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/framer.svg b/@stellar/design-system/src/assets/logos/framer.svg
new file mode 100644
index 00000000..1115d389
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/framer.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 0H20V8H12L4 0ZM4 8H12L20 16H4V8ZM4 16H12V24L4 16Z" fill="#8F8F8F"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/freighter.svg b/@stellar/design-system/src/assets/logos/freighter.svg
index 6bfdf5a1..22e2cbd4 100644
--- a/@stellar/design-system/src/assets/logos/freighter.svg
+++ b/@stellar/design-system/src/assets/logos/freighter.svg
@@ -1,10 +1 @@
-<svg width="18" height="24" viewBox="0 0 18 24" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_1140_1885)">
-<path d="M16.0332 17.2866C15.6145 16.9013 15.1341 16.516 14.6034 16.1381C13.9839 14.1023 12.321 12.517 10.238 11.9935V9.17255H12.8045V6.19793H10.238V5.06693H14.3192V2.09234H10.238V0H7.25383V11.9935C6.89385 12.0841 6.54644 12.2062 6.21507 12.3573C5.62265 12.2207 5.05482 12.1211 4.52264 12.0631C2.03546 11.7918 1.17043 12.4869 0.88225 13.1175C0.59407 13.7485 0.636746 14.8555 2.47476 16.547C2.55812 16.624 2.64446 16.7006 2.73232 16.7772C2.66404 17.1415 2.62739 17.5173 2.62739 17.9012C2.62739 21.2641 5.37213 24 8.74591 24C10.6758 24 12.3993 23.1047 13.5215 21.71C13.6786 21.733 13.8337 21.754 13.9849 21.7705C14.3649 21.8121 14.7068 21.8311 15.015 21.8311C16.7225 21.8311 17.3812 21.2506 17.6252 20.7161C17.914 20.0851 17.8713 18.9781 16.0332 17.2866L16.0332 17.2866ZM8.74593 14.7774C10.474 14.7774 11.8802 16.1792 11.8802 17.9017C11.8802 18.7834 11.5113 19.5806 10.9193 20.1491C10.0523 19.8704 9.1521 19.5221 8.2504 19.1132C7.31106 18.6869 6.42291 18.2189 5.61662 17.7285C5.70748 16.0861 7.07609 14.7774 8.74591 14.7774L8.74593 14.7774ZM1.71666 13.4963C1.88133 13.136 2.51392 12.9203 3.50548 12.9203C3.94928 12.9203 4.4654 12.9638 5.04277 13.0564C4.12702 13.7515 3.41309 14.6974 3.00594 15.7913C1.99581 14.8385 1.50278 13.9642 1.71666 13.4963ZM8.74593 21.0254C7.35977 21.0254 6.18144 20.1236 5.76925 18.8775C6.43196 19.2528 7.13684 19.6117 7.87084 19.9445C8.5682 20.2607 9.26555 20.542 9.94986 20.7852C9.57884 20.9398 9.17218 21.0254 8.74593 21.0254ZM16.7914 20.3373C16.572 20.8182 15.5382 21.0194 14.0938 20.8628C14.5849 19.9855 14.8655 18.9756 14.8655 17.9012C14.8655 17.757 14.86 17.6144 14.8504 17.4733C15.0487 17.6344 15.2365 17.7961 15.4117 17.9577C16.4826 18.9441 17.0113 19.8559 16.7914 20.3373Z" fill="#6969F2"/>
-</g>
-<defs>
-<clipPath id="clip0_1140_1885">
-<rect width="17" height="24" fill="white" transform="translate(0.75)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="18" height="24" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1140_1885)"><path d="M16.0332 17.2866C15.6145 16.9013 15.1341 16.516 14.6034 16.1381C13.9839 14.1023 12.321 12.517 10.238 11.9935V9.17255H12.8045V6.19793H10.238V5.06693H14.3192V2.09234H10.238V0H7.25383V11.9935C6.89385 12.0841 6.54644 12.2062 6.21507 12.3573C5.62265 12.2207 5.05482 12.1211 4.52264 12.0631C2.03546 11.7918 1.17043 12.4869 0.88225 13.1175C0.59407 13.7485 0.636746 14.8555 2.47476 16.547C2.55812 16.624 2.64446 16.7006 2.73232 16.7772C2.66404 17.1415 2.62739 17.5173 2.62739 17.9012C2.62739 21.2641 5.37213 24 8.74591 24C10.6758 24 12.3993 23.1047 13.5215 21.71C13.6786 21.733 13.8337 21.754 13.9849 21.7705C14.3649 21.8121 14.7068 21.8311 15.015 21.8311C16.7225 21.8311 17.3812 21.2506 17.6252 20.7161C17.914 20.0851 17.8713 18.9781 16.0332 17.2866L16.0332 17.2866ZM8.74593 14.7774C10.474 14.7774 11.8802 16.1792 11.8802 17.9017C11.8802 18.7834 11.5113 19.5806 10.9193 20.1491C10.0523 19.8704 9.1521 19.5221 8.2504 19.1132C7.31106 18.6869 6.42291 18.2189 5.61662 17.7285C5.70748 16.0861 7.07609 14.7774 8.74591 14.7774L8.74593 14.7774ZM1.71666 13.4963C1.88133 13.136 2.51392 12.9203 3.50548 12.9203C3.94928 12.9203 4.4654 12.9638 5.04277 13.0564C4.12702 13.7515 3.41309 14.6974 3.00594 15.7913C1.99581 14.8385 1.50278 13.9642 1.71666 13.4963ZM8.74593 21.0254C7.35977 21.0254 6.18144 20.1236 5.76925 18.8775C6.43196 19.2528 7.13684 19.6117 7.87084 19.9445C8.5682 20.2607 9.26555 20.542 9.94986 20.7852C9.57884 20.9398 9.17218 21.0254 8.74593 21.0254ZM16.7914 20.3373C16.572 20.8182 15.5382 21.0194 14.0938 20.8628C14.5849 19.9855 14.8655 18.9756 14.8655 17.9012C14.8655 17.757 14.86 17.6144 14.8504 17.4733C15.0487 17.6344 15.2365 17.7961 15.4117 17.9577C16.4826 18.9441 17.0113 19.8559 16.7914 20.3373Z" fill="#6969F2"/></g><defs><clipPath id="clip0_1140_1885"><rect width="17" height="24" fill="white" transform="translate(0.75)"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/github.svg b/@stellar/design-system/src/assets/logos/github.svg
new file mode 100644
index 00000000..d984bb09
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/github.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_384)"><path d="M12 0.296997C5.37 0.296997 0 5.67 0 12.297C0 17.6 3.438 22.097 8.205 23.682C8.805 23.795 9.025 23.424 9.025 23.105C9.025 22.82 9.015 22.065 9.01 21.065C5.672 21.789 4.968 19.455 4.968 19.455C4.422 18.07 3.633 17.7 3.633 17.7C2.546 16.956 3.717 16.971 3.717 16.971C4.922 17.055 5.555 18.207 5.555 18.207C6.625 20.042 8.364 19.512 9.05 19.205C9.158 18.429 9.467 17.9 9.81 17.6C7.145 17.3 4.344 16.268 4.344 11.67C4.344 10.36 4.809 9.29 5.579 8.45C5.444 8.147 5.039 6.927 5.684 5.274C5.684 5.274 6.689 4.952 8.984 6.504C9.944 6.237 10.964 6.105 11.984 6.099C13.004 6.105 14.024 6.237 14.984 6.504C17.264 4.952 18.269 5.274 18.269 5.274C18.914 6.927 18.509 8.147 18.389 8.45C19.154 9.29 19.619 10.36 19.619 11.67C19.619 16.28 16.814 17.295 14.144 17.59C14.564 17.95 14.954 18.686 14.954 19.81C14.954 21.416 14.939 22.706 14.939 23.096C14.939 23.411 15.149 23.786 15.764 23.666C20.565 22.092 24 17.592 24 12.297C24 5.67 18.627 0.296997 12 0.296997Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_384"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/google-play.svg b/@stellar/design-system/src/assets/logos/google-play.svg
new file mode 100644
index 00000000..f990bf40
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/google-play.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M22.018 13.2981L18.099 15.5161L14.584 12.0231L18.127 8.50206L22.018 10.7041C22.2476 10.8339 22.4387 11.0224 22.5716 11.2503C22.7045 11.4782 22.7746 11.7372 22.7746 12.0011C22.7746 12.2649 22.7045 12.524 22.5716 12.7518C22.4387 12.9797 22.2476 13.1682 22.018 13.2981ZM1.337 0.924058C1.26279 1.10422 1.22473 1.29721 1.225 1.49206V22.5091C1.225 22.7261 1.27 22.9281 1.349 23.1091L12.504 12.0221L1.337 0.924058ZM13.544 10.9891L16.802 7.75106L3.45 0.195058C3.16381 0.0305939 2.83049 -0.0324757 2.504 0.0160585L13.544 10.9891ZM13.544 13.0561L2.544 23.9891C2.842 24.0251 3.156 23.9731 3.45 23.8061L16.774 16.2661L13.544 13.0561Z" fill="#8F8F8F"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/ledger.svg b/@stellar/design-system/src/assets/logos/ledger.svg
index fee8e947..b24fc8ef 100644
--- a/@stellar/design-system/src/assets/logos/ledger.svg
+++ b/@stellar/design-system/src/assets/logos/ledger.svg
@@ -1,10 +1 @@
-<svg width="28" height="24" viewBox="0 0 28 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_1140_1887)">
-<path d="M4.72973e-05 17.1853V24H10.4637V22.4888H1.52468V17.1853H9.45946e-05H4.72973e-05ZM26.2936 17.1853V22.4888H17.3546V23.9996H27.8182V17.1853H26.2936ZM10.4789 6.81473V17.1849H17.3546V15.822H12.0034V6.81473H10.4789ZM4.72973e-05 0V6.81473H1.52463V1.51097H10.4636V0H0L4.72973e-05 0ZM17.3546 0V1.51097H26.2936V6.81473H27.8182V0H17.3546Z" />
-</g>
-<defs>
-<clipPath id="clip0_1140_1887">
-<rect width="28" height="24" fill="white"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="28" height="24" viewBox="0 0 28 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1140_1887)"><path d="M4.72973e-05 17.1853V24H10.4637V22.4888H1.52468V17.1853H9.45946e-05H4.72973e-05ZM26.2936 17.1853V22.4888H17.3546V23.9996H27.8182V17.1853H26.2936ZM10.4789 6.81473V17.1849H17.3546V15.822H12.0034V6.81473H10.4789ZM4.72973e-05 0V6.81473H1.52463V1.51097H10.4636V0H0L4.72973e-05 0ZM17.3546 0V1.51097H26.2936V6.81473H27.8182V0H17.3546Z"/></g><defs><clipPath id="clip0_1140_1887"><rect width="28" height="24" fill="white"/></clipPath></defs></svg>
diff --git a/@stellar/design-system/src/assets/logos/linkedin.svg b/@stellar/design-system/src/assets/logos/linkedin.svg
new file mode 100644
index 00000000..0efe9c22
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/linkedin.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_550)"><path d="M20.447 20.452H16.893V14.883C16.893 13.555 16.866 11.846 15.041 11.846C13.188 11.846 12.905 13.291 12.905 14.785V20.452H9.351V9H12.765V10.561H12.811C13.288 9.661 14.448 8.711 16.181 8.711C19.782 8.711 20.448 11.081 20.448 14.166L20.447 20.452ZM5.337 7.433C4.193 7.433 3.274 6.507 3.274 5.368C3.274 4.23 4.194 3.305 5.337 3.305C6.477 3.305 7.401 4.23 7.401 5.368C7.401 6.507 6.476 7.433 5.337 7.433ZM7.119 20.452H3.555V9H7.119V20.452ZM22.225 0H1.771C0.792 0 0 0.774 0 1.729V22.271C0 23.227 0.792 24 1.771 24H22.222C23.2 24 24 23.227 24 22.271V1.729C24 0.774 23.2 0 22.222 0H22.225Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_550"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/medium.svg b/@stellar/design-system/src/assets/logos/medium.svg
new file mode 100644
index 00000000..ecff5dfc
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/medium.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_612)"><path d="M13.54 12.0001C13.5453 13.8018 12.8354 15.532 11.566 16.8107C10.2967 18.0894 8.57177 18.8121 6.77003 18.8201C4.96829 18.8121 3.24335 18.0894 1.97402 16.8107C0.704678 15.532 -0.00528713 13.8018 2.96483e-05 12.0001C-0.00528713 10.1983 0.704678 8.4681 1.97402 7.18938C3.24335 5.91067 4.96829 5.18799 6.77003 5.18005C8.57177 5.18799 10.2967 5.91067 11.566 7.18938C12.8354 8.4681 13.5453 10.1983 13.54 12.0001ZM20.96 12.0001C20.96 15.5401 19.45 18.4201 17.58 18.4201C15.71 18.4201 14.19 15.5401 14.19 12.0001C14.19 8.46005 15.71 5.58005 17.58 5.58005C19.45 5.58005 20.96 8.46005 20.96 12.0001ZM24 12.0001C24 15.1701 23.47 17.7501 22.81 17.7501C22.15 17.7501 21.62 15.1701 21.62 12.0001C21.62 8.83005 22.15 6.25005 22.81 6.25005C23.47 6.25005 24 8.83005 24 12.0001Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_612"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/reddit.svg b/@stellar/design-system/src/assets/logos/reddit.svg
new file mode 100644
index 00000000..5606f0a3
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/reddit.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_2079_453)"><path d="M12 0C8.8174 0 5.76515 1.26428 3.51472 3.51472C1.26428 5.76515 0 8.8174 0 12C0 15.1826 1.26428 18.2348 3.51472 20.4853C5.76515 22.7357 8.8174 24 12 24C15.1826 24 18.2348 22.7357 20.4853 20.4853C22.7357 18.2348 24 15.1826 24 12C24 8.8174 22.7357 5.76515 20.4853 3.51472C18.2348 1.26428 15.1826 0 12 0ZM17.01 4.744C17.698 4.744 18.26 5.305 18.26 5.993C18.2565 6.31733 18.1271 6.62761 17.8991 6.8583C17.6711 7.08899 17.3624 7.22201 17.0381 7.22928C16.7138 7.23655 16.3994 7.11749 16.1613 6.89726C15.9232 6.67702 15.78 6.37285 15.762 6.049L13.165 5.502L12.365 9.249C14.189 9.319 15.845 9.881 17.039 10.737C17.347 10.428 17.769 10.246 18.246 10.246C19.214 10.246 20 11.032 20 12C20 12.716 19.565 13.333 18.99 13.614C19.0185 13.7859 19.0326 13.9598 19.032 14.134C19.032 16.828 15.902 19.004 12.028 19.004C8.154 19.004 5.024 16.828 5.024 14.134C5.024 13.951 5.039 13.768 5.067 13.6C4.75743 13.4626 4.49443 13.2383 4.30998 12.9542C4.12553 12.6702 4.02757 12.3387 4.028 12C4.028 11.032 4.814 10.246 5.782 10.246C6.245 10.246 6.68 10.442 6.989 10.736C8.196 9.853 9.867 9.306 11.733 9.249L12.618 5.067C12.6391 4.98648 12.6889 4.91644 12.758 4.87C12.8298 4.82819 12.9142 4.8133 12.996 4.828L15.902 5.445C16.0002 5.23435 16.1568 5.05632 16.3532 4.93206C16.5496 4.8078 16.7776 4.74253 17.01 4.744ZM9.25 12C8.561 12 8 12.562 8 13.25C8 13.937 8.561 14.498 9.25 14.498C9.937 14.498 10.498 13.937 10.498 13.249C10.498 12.561 9.937 12 9.249 12H9.25ZM14.75 12C14.063 12 13.502 12.561 13.502 13.25C13.502 13.937 14.063 14.498 14.751 14.498C15.439 14.498 16 13.937 16 13.249C16 12.562 15.438 12 14.75 12ZM9.284 15.99C9.19761 15.9896 9.11456 16.0234 9.053 16.084C8.99223 16.1457 8.95818 16.2289 8.95818 16.3155C8.95818 16.4021 8.99223 16.4853 9.053 16.547C9.895 17.389 11.537 17.46 12.014 17.46C12.491 17.46 14.119 17.404 14.975 16.547C15.0335 16.4855 15.0684 16.4054 15.0737 16.3208C15.079 16.2361 15.0543 16.1523 15.004 16.084C14.9422 16.0229 14.8589 15.9887 14.772 15.9887C14.6851 15.9887 14.6018 16.0229 14.54 16.084C13.993 16.617 12.856 16.814 12.028 16.814C11.2 16.814 10.049 16.618 9.516 16.084C9.48551 16.0536 9.44932 16.0296 9.4095 16.0133C9.36968 15.997 9.32703 15.9897 9.284 15.99Z" fill="#8F8F8F"/></g><defs><clipPath id="clip0_2079_453"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/stellar-short.svg b/@stellar/design-system/src/assets/logos/stellar-short.svg
new file mode 100644
index 00000000..3031477f
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/stellar-short.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M12.283 1.85099C10.9262 1.81316 9.57556 2.04775 8.31097 2.54088C7.04637 3.03401 5.89349 3.77568 4.92046 4.72205C3.94744 5.66841 3.17403 6.80025 2.64596 8.05065C2.11789 9.30106 1.84587 10.6446 1.846 12.002C1.846 12.261 1.856 12.518 1.876 12.775C1.90341 13.1384 1.82271 13.5018 1.64406 13.8194C1.4654 14.137 1.19678 14.3947 0.872 14.56L0 15.005V17.079L2.568 15.77L3.4 15.346L4.22 14.929L18.93 7.43299L20.583 6.59099L24 4.84999V2.77599L20.613 4.50399L17.723 5.97699L3.768 13.085C3.72115 12.7249 3.69777 12.3621 3.698 11.999C3.69992 10.5508 4.08015 9.12819 4.80101 7.87214C5.52187 6.61609 6.55837 5.57014 7.80782 4.8379C9.05728 4.10567 10.4764 3.71255 11.9245 3.69748C13.3726 3.68241 14.7996 4.04591 16.064 4.75199L17.718 3.90899L17.965 3.78299C16.3089 2.5812 14.3284 1.90777 12.283 1.85099ZM24 6.92499L5.055 16.571L3.402 17.415L0 19.15V21.222L3.378 19.5L6.268 18.027L20.238 10.91C20.2848 11.2721 20.3082 11.6369 20.308 12.002C20.3071 13.4519 19.927 14.8763 19.2054 16.1338C18.4839 17.3914 17.4459 18.4384 16.1947 19.1708C14.9435 19.9033 13.5224 20.2958 12.0726 20.3093C10.6228 20.3228 9.1947 19.957 7.93 19.248L7.829 19.302L6.036 20.216C7.55093 21.3157 9.34038 21.9752 11.2066 22.1217C13.0729 22.2681 14.9433 21.8958 16.6112 21.0458C18.2792 20.1959 19.6797 18.9014 20.658 17.3054C21.6363 15.7094 22.1544 13.874 22.155 12.002C22.155 11.742 22.145 11.48 22.125 11.222C22.0976 10.8587 22.1782 10.4955 22.3567 10.1779C22.5352 9.8603 22.8035 9.60253 23.128 9.43699L24 8.99199V6.92499Z" fill="#8F8F8F"/></svg>
diff --git a/@stellar/design-system/src/assets/logos/stellar.svg b/@stellar/design-system/src/assets/logos/stellar.svg
index 699529a3..7ae3abf7 100644
--- a/@stellar/design-system/src/assets/logos/stellar.svg
+++ b/@stellar/design-system/src/assets/logos/stellar.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="128" height="32" viewBox="0 0 128 32" fill="currentColor"><g clip-path="url(#a)"><path d="M18.687 0a15.749 15.749 0 0 1 9.1 2.883l-.198.102-2.533 1.292a13.102 13.102 0 0 0-6.37-1.642h-.102c-1.72.017-3.398.359-4.982 1.018a13.174 13.174 0 0 0-4.22 2.83 13.087 13.087 0 0 0-3.852 9.299c0 .573.034 1.146.111 1.72l.026.179.162-.086L37.356 1.523v2.96l-5.281 2.694-2.594 1.317L6.43 20.256l-.103.06-2.38 1.206v-.009l-.111.051L0 23.524v-2.96l1.301-.66a3.02 3.02 0 0 0 1.644-2.925 18.92 18.92 0 0 1-.043-1.206A15.76 15.76 0 0 1 7.524 4.602a15.742 15.742 0 0 1 5.017-3.387A16.169 16.169 0 0 1 18.687 0Zm37.04 5.055c3.809.009 7.224 1.703 8.046 5.791H60.88c-.728-2.455-3.125-3.276-5.265-3.276-1.635 0-4.502.727-4.502 3.097 0 1.873 1.49 2.805 3.45 3.242l2.456.556c3.245.701 7.13 1.924 7.13 6.193 0 4.148-3.86 6.338-8.071 6.338-5 0-8.158-2.72-8.715-6.954h2.928c.556 2.925 2.602 4.44 5.847 4.44 3.124 0 4.939-1.49 4.939-3.568 0-2.224-1.9-3.156-4.563-3.738l-2.628-.556c-2.893-.641-5.82-2.25-5.82-5.782 0-4.03 4.236-5.783 7.66-5.783ZM71.785 26.62c-3.013 0-3.715-.676-3.715-3.944v-9.64h-2.482v-2.13h2.482V6.963h2.663v3.943h2.978v2.13h-2.978v9.315c0 1.634.12 2.045 1.635 2.045h1.344v2.224h-1.927Z"/><path d="M87.014 22.069c-.676 1.548-1.96 2.6-4.297 2.6-2.337 0-4.734-1.642-4.862-5.03h12.104c.35-4.97-2.543-8.998-7.336-8.998-4.298 0-7.627 3.182-7.627 8.152 0 4.645 2.747 8.212 7.72 8.212 3.827 0 6.318-2.216 7.046-4.936h-2.748Zm-4.383-9.144c2.808 0 4.469 2.215 4.528 4.44h-9.262c.231-3.157 2.363-4.44 4.734-4.44Zm20.913 9.546c-.009-3.704 4.168-4.79 10.631-5.517v-.377c0-2.865-1.609-3.823-3.569-3.823-2.192 0-3.476 1.197-3.596 3.122h-2.747c.265-3.387 3.244-5.286 6.317-5.286 4.323 0 6.283 2.07 6.258 6.483l-.026 3.619c-.026 2.626.12 4.44.411 5.928h-2.688a18.313 18.313 0 0 1-.206-2.165c-.967 1.609-2.602 2.541-5.375 2.541-2.954 0-5.41-1.634-5.41-4.525Zm2.944-.051c0 1.488 1.139 2.48 3.039 2.48 2.483 0 4.854-1.137 4.854-4.85v-.992c-4.828.496-7.893 1.198-7.893 3.362Z" clip-rule="evenodd"/><path d="M122.83 18.39c0-3.446 1.224-4.824 3.681-4.824.344 0 .726.038 1.146.079l.343.033v-2.832c-.291-.025-.522-.025-.788-.025-2.045.06-3.655 1.052-4.442 2.831v-2.746h-2.603v15.722h2.663v-8.237Zm-86.766-6.33 1.301-.658v-2.96L7.858 23.48l-2.593 1.318L0 27.484v2.96l31.527-16.04.163-.085.025.18c.077.573.112 1.155.112 1.728 0 3.507-1.37 6.817-3.852 9.298a13.173 13.173 0 0 1-4.22 2.831 12.939 12.939 0 0 1-4.983 1.018h-.094a13.15 13.15 0 0 1-6.386-1.65l-.102.05-2.62 1.335c.925.65 1.918 1.206 2.962 1.65A15.748 15.748 0 0 0 18.678 32a15.717 15.717 0 0 0 11.163-4.628 15.76 15.76 0 0 0 4.623-11.171c0-.402-.01-.813-.044-1.215a3.02 3.02 0 0 1 1.644-2.925Zm56.42 14.56V5.44h2.662v21.18h-2.662Zm5.932-21.18v21.18h2.662V5.44h-2.662Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h128v32H0z"/></clipPath></defs></svg>
+<svg width="128" height="32" viewBox="0 0 128 32" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_364_4210)"><path d="M18.6868 0C20.8183 0 22.8813 0.419139 24.833 1.24031C25.8688 1.67656 26.8618 2.23256 27.7863 2.88265L27.5894 2.9853L25.0556 4.27693C23.121 3.19914 20.921 2.63459 18.6868 2.63459H18.5841C16.8635 2.6517 15.1857 2.99385 13.6021 3.6525C12.0185 4.3197 10.5975 5.26918 9.38193 6.48383C6.89948 8.973 5.52986 12.2748 5.52986 15.7819C5.52986 16.355 5.5641 16.9281 5.64114 17.5012L5.66682 17.6808L5.82947 17.5953L37.3565 1.52259V4.48222L32.0749 7.17669L29.4812 8.49399L6.42868 20.2555L6.32595 20.3154L3.94623 21.5215V21.513L3.83495 21.5643L0 23.5231V20.5635L1.30114 19.9048C2.38828 19.3488 3.03886 18.2026 2.94469 16.9794C2.91901 16.5774 2.90189 16.1754 2.90189 15.7733C2.90189 13.6434 3.32134 11.5734 4.14312 9.6231C4.93921 7.74125 6.07771 6.05614 7.52438 4.60198C8.97104 3.15638 10.6574 2.01016 12.5406 1.21465C14.4838 0.419139 16.5553 0 18.6868 0Z"/><path d="M55.7266 5.05533C59.5359 5.06389 62.9514 6.75755 63.7732 10.8463H60.8798C60.1522 8.39134 57.7554 7.57017 55.6153 7.57017C53.9803 7.57017 51.1127 8.29725 51.1127 10.6667C51.1127 12.54 52.6022 13.4723 54.5624 13.9086L57.0192 14.4646C60.2635 15.166 64.1498 16.3892 64.1498 20.6576C64.1498 24.8062 60.2892 26.996 56.0776 26.996C51.0784 26.996 47.9198 24.2759 47.3633 20.0417H50.2909C50.8473 22.9671 52.8932 24.4812 56.1375 24.4812C59.262 24.4812 61.0767 22.9928 61.0767 20.9142C61.0767 18.6902 59.1764 17.7578 56.5141 17.1762L53.8862 16.6202C50.9928 15.9786 48.0653 14.3705 48.0653 10.8377C48.0653 6.80888 52.3025 5.05533 55.7266 5.05533Z"/><path d="M71.7855 26.6196C68.7723 26.6196 68.0704 25.9439 68.0704 22.6763V13.0361H65.5879V10.9062H68.0704V6.96285H70.7326V10.9062H73.7115V13.0361H70.7326V22.3512C70.7326 23.985 70.8524 24.3956 72.3676 24.3956H73.7115V26.6196H71.7855Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M87.014 22.069C86.3377 23.6172 85.0537 24.6693 82.7168 24.6693C80.3799 24.6693 77.983 23.027 77.8546 19.6397H89.9587C90.3096 14.6699 87.4163 10.641 82.6226 10.641C78.3254 10.641 74.9955 13.823 74.9955 18.7928C74.9955 23.4376 77.7433 27.0045 82.7168 27.0045C86.5432 27.0045 89.0342 24.7891 89.7618 22.069H87.014ZM82.6312 12.9249C85.4389 12.9249 87.0996 15.1403 87.1595 17.3643H77.8974C78.1285 14.208 80.26 12.9249 82.6312 12.9249Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M103.544 22.471C103.535 18.7672 107.712 17.6808 114.175 16.9538V16.5774C114.175 13.7118 112.566 12.7538 110.606 12.7538C108.414 12.7538 107.13 13.9514 107.01 15.876H104.263C104.528 12.4886 107.507 10.5897 110.58 10.5897C114.903 10.5897 116.863 12.6597 116.838 17.0735L116.812 20.6918C116.786 23.3178 116.932 25.1313 117.223 26.6196H114.535C114.449 26.038 114.364 25.3964 114.329 24.4555C113.362 26.0636 111.727 26.996 108.954 26.996C106 26.996 103.544 25.3622 103.544 22.471ZM106.488 22.4197C106.488 23.908 107.627 24.9003 109.527 24.9003C112.01 24.9003 114.381 23.7626 114.381 20.0503V19.058C109.553 19.5541 106.488 20.2555 106.488 22.4197Z"/><path d="M122.83 18.3908C122.83 14.9436 124.054 13.5664 126.511 13.5664C126.855 13.5664 127.237 13.6037 127.657 13.6447C127.768 13.6556 127.883 13.6668 128 13.6776V10.8463C127.709 10.8206 127.478 10.8206 127.212 10.8206C125.167 10.8805 123.557 11.8728 122.77 13.652V10.9062H120.167V26.6282H122.83V18.3908Z"/><path d="M36.0639 12.0609L37.3651 11.4023V8.44266L7.85822 23.4804L5.2645 24.7976L0 27.4836V30.4432L31.527 14.4047L31.6897 14.3192L31.7154 14.4988C31.7924 15.0719 31.8267 15.6536 31.8267 16.2267C31.8267 19.7338 30.457 23.0441 27.9746 25.5247C26.759 26.7394 25.3381 27.6889 23.7544 28.3561C22.1708 29.0233 20.493 29.3654 18.7724 29.374H18.6783C16.4355 29.374 14.227 28.8009 12.2924 27.7231L12.1897 27.7744L9.57025 29.1088C10.4947 29.7589 11.4877 30.3149 12.5321 30.7597C14.4838 31.5809 16.5468 32 18.6783 32C20.8097 32 22.8813 31.5809 24.8244 30.7597C26.6991 29.9642 28.394 28.8265 29.8407 27.3724C31.2874 25.9182 32.4259 24.2331 33.222 22.3512C34.0437 20.401 34.4632 18.3309 34.4632 16.201C34.4632 15.799 34.4546 15.3884 34.4204 14.9864C34.3262 13.7632 34.9768 12.6169 36.0639 12.0609Z"/><path d="M92.4839 26.6196V5.44026H95.1461V26.6196H92.4839Z"/><path d="M98.4161 5.44026V26.6196H101.078V5.44026H98.4161Z"/></g><defs><clipPath id="clip0_364_4210"><rect width="128" height="32" fill="white"/></clipPath></defs></svg>
diff --git a/@stellar/design-system/src/assets/logos/trezor.svg b/@stellar/design-system/src/assets/logos/trezor.svg
index 0a187cdd..1622f283 100644
--- a/@stellar/design-system/src/assets/logos/trezor.svg
+++ b/@stellar/design-system/src/assets/logos/trezor.svg
@@ -1,10 +1 @@
-<svg width="18" height="24" viewBox="0 0 18 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
-<g clip-path="url(#clip0_1140_1889)">
-<path d="M9.51649 0.00164795C6.12437 0.00164795 3.37918 2.66609 3.37918 5.95845V8.19102C2.188 8.40031 0.993408 8.67938 0.993408 9.04152V20.6927C0.993408 20.6927 0.993408 21.015 1.36651 21.1678C2.71857 21.6993 8.03781 23.5266 9.2598 23.9452C9.41725 24.0017 9.46175 24.0017 9.50285 24.0017C9.56105 24.0017 9.58843 24.0017 9.7459 23.9452C10.9679 23.5266 16.3008 21.6993 17.6529 21.1678C17.9986 21.0282 18.0123 20.706 18.0123 20.706V9.04154C18.0123 8.67941 16.8348 8.38705 15.6402 8.19104V5.95848C15.6573 2.66612 12.895 0.00167139 9.51659 0.00167139L9.51649 0.00164795ZM9.51649 2.84884C11.5155 2.84884 12.7238 4.0216 12.7238 5.9618V7.90201C10.4818 7.74919 8.56836 7.74919 6.31265 7.90201V5.9618C6.31265 4.01827 7.52095 2.84884 9.51652 2.84884H9.51649ZM9.5028 10.7591C12.2925 10.7591 14.6338 10.9684 14.6338 11.3439V18.6129C14.6338 18.7259 14.6201 18.7392 14.5174 18.779C14.4182 18.8222 9.75954 20.4535 9.75954 20.4535C9.75954 20.4535 9.57128 20.51 9.51649 20.51C9.4583 20.51 9.27345 20.4402 9.27345 20.4402C9.27345 20.4402 4.61484 18.809 4.51557 18.7658C4.4163 18.7226 4.3992 18.7093 4.3992 18.5997V11.3306C4.37182 10.9551 6.71311 10.7591 9.5028 10.7591Z" />
-</g>
-<defs>
-<clipPath id="clip0_1140_1889">
-<rect width="17" height="24" fill="white" transform="translate(0.992188)"/>
-</clipPath>
-</defs>
-</svg>
+<svg width="18" height="24" viewBox="0 0 18 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1140_1889)"><path d="M9.51649 0.00164795C6.12437 0.00164795 3.37918 2.66609 3.37918 5.95845V8.19102C2.188 8.40031 0.993408 8.67938 0.993408 9.04152V20.6927C0.993408 20.6927 0.993408 21.015 1.36651 21.1678C2.71857 21.6993 8.03781 23.5266 9.2598 23.9452C9.41725 24.0017 9.46175 24.0017 9.50285 24.0017C9.56105 24.0017 9.58843 24.0017 9.7459 23.9452C10.9679 23.5266 16.3008 21.6993 17.6529 21.1678C17.9986 21.0282 18.0123 20.706 18.0123 20.706V9.04154C18.0123 8.67941 16.8348 8.38705 15.6402 8.19104V5.95848C15.6573 2.66612 12.895 0.00167139 9.51659 0.00167139L9.51649 0.00164795ZM9.51649 2.84884C11.5155 2.84884 12.7238 4.0216 12.7238 5.9618V7.90201C10.4818 7.74919 8.56836 7.74919 6.31265 7.90201V5.9618C6.31265 4.01827 7.52095 2.84884 9.51652 2.84884H9.51649ZM9.5028 10.7591C12.2925 10.7591 14.6338 10.9684 14.6338 11.3439V18.6129C14.6338 18.7259 14.6201 18.7392 14.5174 18.779C14.4182 18.8222 9.75954 20.4535 9.75954 20.4535C9.75954 20.4535 9.57128 20.51 9.51649 20.51C9.4583 20.51 9.27345 20.4402 9.27345 20.4402C9.27345 20.4402 4.61484 18.809 4.51557 18.7658C4.4163 18.7226 4.3992 18.7093 4.3992 18.5997V11.3306C4.37182 10.9551 6.71311 10.7591 9.5028 10.7591Z"/></g><defs><clipPath id="clip0_1140_1889"><rect width="17" height="24" fill="white" transform="translate(0.992188)"/></clipPath></defs></svg>
diff --git a/@stellar/design-system/src/assets/logos/x-twitter.svg b/@stellar/design-system/src/assets/logos/x-twitter.svg
new file mode 100644
index 00000000..bb7307fd
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/x-twitter.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.901 1.15308H22.581L14.541 10.3431L24 22.8461H16.594L10.794 15.2621L4.156 22.8461H0.474L9.074 13.0161L0 1.15408H7.594L12.837 8.08608L18.901 1.15308ZM17.61 20.6441H19.649L6.486 3.24008H4.298L17.61 20.6441Z" fill="#8F8F8F"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/assets/logos/youtube.svg b/@stellar/design-system/src/assets/logos/youtube.svg
new file mode 100644
index 00000000..3b09b282
--- /dev/null
+++ b/@stellar/design-system/src/assets/logos/youtube.svg
@@ -0,0 +1 @@
+<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.498 6.18592C23.3624 5.6752 23.095 5.20906 22.7226 4.83419C22.3502 4.45931 21.8858 4.18886 21.376 4.04992C19.505 3.54492 12 3.54492 12 3.54492C12 3.54492 4.495 3.54492 2.623 4.04992C2.11341 4.18911 1.64929 4.45966 1.27708 4.8345C0.904861 5.20935 0.637591 5.67536 0.502 6.18592C0 8.06992 0 11.9999 0 11.9999C0 11.9999 0 15.9299 0.502 17.8139C0.637586 18.3246 0.904975 18.7908 1.27739 19.1657C1.64981 19.5405 2.11418 19.811 2.624 19.9499C4.495 20.4549 12 20.4549 12 20.4549C12 20.4549 19.505 20.4549 21.377 19.9499C21.8869 19.8111 22.3513 19.5407 22.7237 19.1658C23.0961 18.7909 23.3635 18.3247 23.499 17.8139C24 15.9299 24 11.9999 24 11.9999C24 11.9999 24 8.06992 23.498 6.18592ZM9.545 15.5679V8.43192L15.818 11.9999L9.545 15.5679Z" fill="#8F8F8F"/></svg>
\ No newline at end of file
diff --git a/@stellar/design-system/src/components/Alert/index.tsx b/@stellar/design-system/src/components/Alert/index.tsx
new file mode 100644
index 00000000..20d66fe9
--- /dev/null
+++ b/@stellar/design-system/src/components/Alert/index.tsx
@@ -0,0 +1,175 @@
+import { Button } from "../Button";
+import { Card } from "../Card";
+import { Heading } from "../Typography";
+import { Icon } from "../../icons";
+import { Link } from "../Link";
+import { NavButton } from "../NavButton";
+
+import "./styles.scss";
+
+/** */
+export type AlertBaseProps = {
+  /** Alert variant */
+  variant: "primary" | "secondary" | "success" | "warning" | "error";
+  /** Alert placement */
+  placement: "inline" | "bottom";
+  /** Alert message title */
+  title?: React.ReactNode;
+  /** Dismiss and close action */
+  onClose?: () => void;
+  /** Alert action label @defaultValue `Action` */
+  actionLabel?: string;
+  /** Alert icon @defaultValue `<Icon.InfoCircle />` */
+  icon?: React.ReactNode;
+  /** Alet message */
+  children: React.ReactNode;
+};
+
+/** */
+export type AlertActionButton = {
+  /** Action function */
+  onAction?: () => void;
+  actionLink?: undefined;
+};
+
+/** */
+export type AlertActionLink = {
+  /** Link to open */
+  actionLink?: string;
+  onAction?: undefined;
+};
+
+/** Use `Alert` to show a message with or without an action. Place the alert `inline` to show it anywhere on the UI. `bottom` placement should be used only to show the alert at the bottom of the layout; it's the opposite of {@link Banner} which is used only at the top. */
+export type AlertProps = (AlertActionButton | AlertActionLink) & AlertBaseProps;
+
+/** */
+export const Alert: React.FC<AlertProps> = ({
+  variant,
+  placement,
+  title,
+  onClose,
+  onAction,
+  actionLink,
+  actionLabel = "Action",
+  icon = <Icon.InfoCircle />,
+  children,
+}: AlertProps) => {
+  if (placement === "bottom" && actionLink) {
+    throw Error(
+      "Bottom alert cannot use `actionLink` because it's a button. Use `onAction` instead.",
+    );
+  }
+
+  const getActionVariant = () => {
+    if (placement === "inline") {
+      return variant === "error" ? "error" : "primary";
+    } else {
+      if (variant === "primary") {
+        return "primary";
+      }
+
+      if (variant === "error") {
+        return "error";
+      }
+
+      return "secondary";
+    }
+  };
+
+  const renderDismissElement = () => {
+    if (!onClose) {
+      return null;
+    }
+
+    if (placement === "inline") {
+      return (
+        <Link variant="secondary" role="button" onClick={onClose}>
+          Dismiss
+        </Link>
+      );
+    }
+
+    return (
+      <Button variant="tertiary" onClick={onClose} size="md">
+        Dismiss
+      </Button>
+    );
+  };
+
+  const renderActionElement = () => {
+    if (!(onAction || actionLink)) {
+      return null;
+    }
+
+    if (placement === "inline") {
+      return (
+        <Link
+          variant={getActionVariant()}
+          role={onAction ? "button" : "link"}
+          onClick={onAction}
+          href={actionLink}
+        >
+          {actionLabel}
+        </Link>
+      );
+    }
+
+    return (
+      <Button variant={getActionVariant()} onClick={onClose} size="md">
+        {actionLabel}
+      </Button>
+    );
+  };
+
+  const renderAlert = () => {
+    return (
+      <div
+        role="alert"
+        className={`Alert Alert--${variant} Alert--${placement}`}
+      >
+        <div className="Alert__content">
+          <div className="Alert__content__iconContainer">
+            <div className="Alert__icon">{icon}</div>
+          </div>
+          <div className="Alert__content__contentContainer">
+            <div className="Alert__content__textContainer">
+              {title ? (
+                <Heading as="h2" size="xs">
+                  {title}
+                </Heading>
+              ) : null}
+              <div>{children}</div>
+            </div>
+
+            {onClose || onAction || actionLink ? (
+              <div className="Alert__content__buttons">
+                {renderDismissElement()}
+
+                {renderActionElement()}
+              </div>
+            ) : null}
+          </div>
+        </div>
+        {onClose ? (
+          <div className="Alert__close">
+            <NavButton
+              icon={<Icon.XClose />}
+              onClick={onClose}
+              title="Close alert"
+            />
+          </div>
+        ) : null}
+      </div>
+    );
+  };
+
+  return placement === "inline" ? (
+    <Card noPadding variant={variant === "secondary" ? "secondary" : "primary"}>
+      {renderAlert()}
+    </Card>
+  ) : (
+    <div className="AlertContainer">{renderAlert()}</div>
+  );
+};
+
+Alert.displayName = "Alert";
diff --git a/@stellar/design-system/src/components/Alert/styles.scss b/@stellar/design-system/src/components/Alert/styles.scss
new file mode 100644
index 00000000..e639f6f3
--- /dev/null
+++ b/@stellar/design-system/src/components/Alert/styles.scss
@@ -0,0 +1,171 @@
+@use "../../utils.scss" as *;
+
+.AlertContainer {
+  background-color: var(--sds-clr-gray-01);
+  width: 100%;
+  border-top: 1px solid var(--sds-clr-gray-06);
+}
+
+.Alert {
+  --Alert-icon-color: var(--sds-clr-lilac-09);
+
+  font-size: pxToRem(14px);
+  line-height: pxToRem(20px);
+  color: var(--sds-clr-gray-11);
+  font-weight: var(--sds-fw-regular);
+
+  display: flex;
+  flex-direction: row;
+  gap: pxToRem(12px);
+
+  // Placement
+  &--inline {
+    padding: pxToRem(12px);
+
+    .NavButton {
+      top: pxToRem(-6px);
+      right: pxToRem(-6px);
+      position: absolute;
+    }
+
+    .Alert__close {
+      position: relative;
+      width: pxToRem(24px);
+      flex-shrink: 0;
+      flex-grow: 0;
+    }
+  }
+
+  &--bottom {
+    padding: pxToRem(16px) pxToRem(24px);
+    max-width: pxToRem(1200px);
+    margin: 0 auto;
+
+    @media (max-width: 799px) {
+      .Alert {
+        &__content {
+          gap: pxToRem(16px);
+          flex-direction: column;
+        }
+      }
+    }
+
+    @media (min-width: 800px) {
+      .Alert {
+        &__content {
+          gap: pxToRem(16px);
+
+          &__iconContainer {
+            display: flex;
+            align-items: center;
+          }
+
+          &__contentContainer {
+            display: flex;
+            flex-direction: row;
+            align-items: center;
+          }
+
+          &__textContainer {
+            flex-direction: row;
+            align-items: center;
+            gap: pxToRem(12px);
+          }
+        }
+
+        &__close {
+          display: flex;
+          align-items: center;
+        }
+      }
+    }
+  }
+
+  &__content {
+    flex: 1;
+    display: flex;
+    flex-direction: row;
+    gap: pxToRem(12px);
+
+    &__iconContainer {
+      flex-shrink: 0;
+      flex-grow: 0;
+    }
+
+    &__contentContainer {
+      flex: 1;
+      display: flex;
+      flex-direction: column;
+      gap: pxToRem(12px);
+    }
+
+    &__textContainer {
+      flex: 1;
+      display: flex;
+      flex-direction: column;
+      gap: pxToRem(4px);
+    }
+
+    &__buttons {
+      display: flex;
+      gap: pxToRem(12px);
+
+      .Link {
+        font-weight: var(--sds-fw-semi-bold);
+      }
+    }
+  }
+
+  &__icon {
+    width: pxToRem(32px);
+    height: pxToRem(32px);
+    border: 1px solid var(--sds-clr-gray-06);
+    background-color: var(--sds-clr-gray-02);
+    border-radius: pxToRem(6px);
+    padding: pxToRem(8px);
+    display: flex;
+    align-items: center;
+    justify-content: center;
+
+    svg {
+      display: block;
+      width: pxToRem(16px);
+      height: pxToRem(16px);
+      stroke: var(--Alert-icon-color);
+    }
+  }
+
+  // Variant
+  &--primary {
+    --Alert-icon-color: var(--sds-clr-lilac-09);
+  }
+
+  &--secondary {
+    --Alert-icon-color: var(--sds-clr-lilac-09);
+  }
+
+  &--success {
+    --Alert-icon-color: var(--sds-clr-green-09);
+  }
+
+  &--warning {
+    --Alert-icon-color: var(--sds-clr-amber-09);
+  }
+
+  &--error {
+    --Alert-icon-color: var(--sds-clr-red-09);
+  }
+
+  // SDS overrides
+  .Heading--xs {
+    font-size: pxToRem(14px);
+    line-height: pxToRem(20px);
+    color: var(--sds-clr-gray-12);
+    font-weight: var(--sds-fw-medium);
+    letter-spacing: normal;
+  }
+
+  .NavButton {
+    --NavButton-size: #{pxToRem(32px)};
+  }
+}
diff --git a/@stellar/design-system/src/components/Asset/index.tsx b/@stellar/design-system/src/components/Asset/index.tsx
new file mode 100644
index 00000000..5b187339
--- /dev/null
+++ b/@stellar/design-system/src/components/Asset/index.tsx
@@ -0,0 +1,76 @@
+import "./styles.scss";
+
+/** */
+export type AssetSource = {
+  /** Image URL */
+  image: string;
+  /** Image alt text */
+  altText: string;
+  /** Custom background color */
+  backgroundColor?: string;
+};
+
+/** */
+export type AssetBaseProps = {
+  /** Asset size */
+  size: "sm" | "md" | "lg";
+  /** First asset source */
+  sourceOne: AssetSource;
+};
+
+/** */
+export type SingleAssetProps = {
+  /** Asset or asset pair variant */
+  variant: "single";
+  sourceTwo?: undefined;
+};
+
+/** */
+export type MultiAssetProps = {
+  /** Asset or asset pair variant */
+  variant: "swap" | "pair" | "platform";
+  /** Second asset source */
+  sourceTwo: AssetSource;
+};
+
+/** */
+export type AssetProps = (SingleAssetProps | MultiAssetProps) & AssetBaseProps;
+
+/**
+ * An asset image displayed in a circle from a URL source. The component can accept multiple sources to show a currency pair, for example.
+ */
+export const Asset: React.FC<AssetProps> = ({
+  variant,
+  size,
+  sourceOne,
+  sourceTwo,
+}: AssetProps) => {
+  const additionalClasses = [`Asset--${variant}`, `Asset--${size}`].join(" ");
+
+  const renderImage = (source: AssetSource) => {
+    const customSourceStyle = {
+      ...(source.backgroundColor
+        ? { "--Asset-color-image-background": source.backgroundColor }
+        : {}),
+    } as React.CSSProperties;
+
+    return (
+      <div className="Asset__image">
+        <img
+          src={source.image}
+          alt={source.altText}
+          style={customSourceStyle}
+        />
+      </div>
+    );
+  };
+
+  return (
+    <div className={`Asset ${additionalClasses}`}>
+      {renderImage(sourceOne)}
+      {sourceTwo ? renderImage(sourceTwo) : null}
+    </div>
+  );
+};
+
+Asset.displayName = "Asset";
diff --git a/@stellar/design-system/src/components/Asset/styles.scss b/@stellar/design-system/src/components/Asset/styles.scss
new file mode 100644
index 00000000..57035312
--- /dev/null
+++ b/@stellar/design-system/src/components/Asset/styles.scss
@@ -0,0 +1,143 @@
+@use "../../utils.scss" as *;
+
+.Asset {
+  --Asset-container-width: auto;
+  --Asset-container-height: auto;
+  --Asset-color-background: var(--sds-clr-white);
+  --Asset-color-border: var(--sds-clr-gray-01);
+  --Asset-size: #{pxToRem(16px)};
+  --Asset-border-size: 1px;
+  --Asset-pair-offset: 0.6;
+
+  display: flex;
+  align-items: center;
+  position: relative;
+  width: var(--Asset-container-width);
+  height: var(--Asset-container-height);
+
+  // Variant and size
+  &--single {
+    --Asset-color-border: var(--sds-clr-gray-06);
+    --Asset-border-size: 1px;
+
+    &.Asset--sm {
+      --Asset-size: #{pxToRem(16px)};
+    }
+
+    &.Asset--md {
+      --Asset-size: #{pxToRem(24px)};
+    }
+
+    &.Asset--lg {
+      --Asset-size: #{pxToRem(32px)};
+    }
+  }
+
+  &--swap {
+    &.Asset--sm {
+      --Asset-size: #{pxToRem(12px)};
+      --Asset-container-width: #{pxToRem(16px)};
+      --Asset-container-height: #{pxToRem(16px)};
+    }
+
+    &.Asset--md {
+      --Asset-size: #{pxToRem(18px)};
+      --Asset-container-width: #{pxToRem(24px)};
+      --Asset-container-height: #{pxToRem(24px)};
+    }
+
+    &.Asset--lg {
+      --Asset-size: #{pxToRem(24px)};
+      --Asset-container-width: #{pxToRem(32px)};
+      --Asset-container-height: #{pxToRem(32px)};
+    }
+
+    .Asset__image {
+      &:not(:first-child) {
+        position: absolute;
+        z-index: 1;
+        right: 0;
+        bottom: 0;
+      }
+    }
+  }
+
+  &--pair {
+    &.Asset--sm {
+      --Asset-size: #{pxToRem(12px)};
+      --Asset-container-width: #{pxToRem(20px)};
+      --Asset-container-height: #{pxToRem(12px)};
+    }
+
+    &.Asset--md {
+      --Asset-size: #{pxToRem(18px)};
+      --Asset-container-width: #{pxToRem(28px)};
+      --Asset-container-height: #{pxToRem(18px)};
+    }
+
+    &.Asset--lg {
+      --Asset-size: #{pxToRem(24px)};
+      --Asset-container-width: #{pxToRem(36px)};
+      --Asset-container-height: #{pxToRem(24px)};
+    }
+
+    .Asset__image {
+      &:not(:first-child) {
+        position: absolute;
+        z-index: 1;
+        right: 0;
+        top: 0;
+      }
+    }
+  }
+
+  &--platform {
+    &.Asset--sm {
+      --Asset-size: #{pxToRem(16px)};
+      --Asset-container-width: #{pxToRem(16px)};
+      --Asset-container-height: #{pxToRem(16px)};
+    }
+
+    &.Asset--md {
+      --Asset-size: #{pxToRem(24px)};
+      --Asset-container-width: #{pxToRem(24px)};
+      --Asset-container-height: #{pxToRem(24px)};
+    }
+
+    &.Asset--lg {
+      --Asset-size: #{pxToRem(32px)};
+      --Asset-container-width: #{pxToRem(32px)};
+      --Asset-container-height: #{pxToRem(32px)};
+    }
+
+    .Asset__image {
+      &:not(:first-child) {
+        position: absolute;
+        z-index: 1;
+        left: 0;
+        bottom: 1px;
+        width: #{calc(var(--Asset-size) / 2)};
+        height: #{calc(var(--Asset-size) / 2)};
+      }
+    }
+  }
+
+  &__image {
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    flex-shrink: 0;
+    width: var(--Asset-size);
+    height: var(--Asset-size);
+    border-radius: calc(var(--Asset-size) / 2);
+    background-color: var(--Asset-color-background);
+    border: var(--Asset-border-size) solid var(--Asset-color-border);
+    overflow: hidden;
+
+    img {
+      display: block;
+      width: 100%;
+      height: 100%;
+    }
+  }
+}
diff --git a/@stellar/design-system/src/components/AssetIcon/index.tsx b/@stellar/design-system/src/components/AssetIcon/index.tsx
deleted file mode 100644
index 3a79c4fd..00000000
--- a/@stellar/design-system/src/components/AssetIcon/index.tsx
+++ /dev/null
@@ -1,58 +0,0 @@
-import "./styles.scss";
-
-/** */
-export type AssetIconSource = {
-  /** Image URL */
-  image: string;
-  /** Image alt text */
-  altText: string;
-  /** Custom size of the image inside the circle */
-  imageSize?: string;
-  /** Custom background color */
-  backgroundColor?: string;
-};
-
-/** */
-export interface AssetIconProps {
-  /** Asset source data */
-  source: AssetIconSource[];
-  /** Asset border color */
-  borderColor?: string;
-}
-
-/**
- * An asset image displayed in a circle from a URL source. The component can accept multiple sources to show a currency pair, for example.
- */
-export const AssetIcon: React.FC<AssetIconProps> = ({
-  source,
-  borderColor,
-}: AssetIconProps) => {
-  const customAssetIconStyle = {
-    ...(borderColor ? { "--AssetIcon-color-border": borderColor } : {}),
-  } as React.CSSProperties;
-
-  return (
-    <div className="AssetIcon" style={customAssetIconStyle}>
-      {source.map(({ image, altText, imageSize, backgroundColor }) => {
-        const customSourceStyle = {
-          ...(backgroundColor
-            ? { "--AssetIcon-color-image-background": backgroundColor }
-            : {}),
-          ...(imageSize ? { "--AssetIcon-image-size": imageSize } : {}),
-        } as React.CSSProperties;
-
-        return (
-          <div
-            className="AssetIcon__image"
-            style={customSourceStyle}
-            key={altText}
-          >
-            <img src={image} alt={altText} />
-          </div>
-        );
-      })}
-    </div>
-  );
-};
-
-AssetIcon.displayName = "AssetIcon";
diff --git a/@stellar/design-system/src/components/AssetIcon/styles.scss b/@stellar/design-system/src/components/AssetIcon/styles.scss
deleted file mode 100644
index 4d97530e..00000000
--- a/@stellar/design-system/src/components/AssetIcon/styles.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-@use "../../utils.scss" as *;
-
-.AssetIcon {
-  --AssetIcon-color-border: var(--color-gray-30);
-
-  display: flex;
-  align-items: center;
-
-  &__image {
-    --AssetIcon-image-size: 100%;
-    --AssetIcon-color-image-background: var(--color-white);
-
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    flex-shrink: 0;
-    width: pxToRem(32px);
-    height: pxToRem(32px);
-    border-radius: pxToRem(16px);
-    background-color: var(--AssetIcon-color-image-background);
-    border: 2px solid var(--AssetIcon-color-border);
-    overflow: hidden;
-
-    img {
-      display: block;
-      width: var(--AssetIcon-image-size);
-      height: var(--AssetIcon-image-size);
-    }
-
-    &:not(:first-child) {
-      position: relative;
-      z-index: 1;
-      transform: translateX(-37.5%);
-    }
-  }
-}
diff --git a/@stellar/design-system/src/components/Avatar/index.tsx b/@stellar/design-system/src/components/Avatar/index.tsx
index 9c19b2c2..80d731f2 100644
--- a/@stellar/design-system/src/components/Avatar/index.tsx
+++ b/@stellar/design-system/src/components/Avatar/index.tsx
@@ -1,26 +1,74 @@
 import { createStellarIdenticon } from "../../helpers/createStellarIdenticon";
+import { Icon } from "../../icons";
 import "./styles.scss";
 
 /** */
-export interface AvatarProps {
+export type AvatarBaseProps = {
+  /** Avatar size */
+  size: "sm" | "md" | "lg";
+};
+
+/** */
+export type AvatarStellarAddressProps = {
   /** Public Stellar address */
   publicAddress: string;
-}
+  userName?: undefined;
+};
+
+/** */
+export type AvatarUserNameProps = {
+  /** User name for initials */
+  userName: string;
+  publicAddress?: undefined;
+};
+
+/** */
+export type AvatarProps = (
+  | AvatarStellarAddressProps
+  | AvatarUserNameProps
+  | {
+      userName?: undefined;
+      publicAddress?: undefined;
+    }
+) &
+  AvatarBaseProps;
 
 /**
- * A unique identicon of a public Stellar address. [We’re using stellar-identicon-js](https://github.com/Lobstrco/stellar-identicon-js).
+ * A unique identicon of a public Stellar address, user initials (max two), or a default user icon. [We’re using stellar-identicon-js](https://github.com/Lobstrco/stellar-identicon-js).
  */
 export const Avatar: React.FC<AvatarProps> = ({
+  size,
   publicAddress,
+  userName,
 }: AvatarProps) => {
-  return (
-    <div className="Avatar">
-      <img
-        src={createStellarIdenticon(publicAddress).toDataURL()}
-        alt="Stellar address identicon"
-      />
-    </div>
-  );
+  const getInitials = (userName: string) => {
+    const arr = userName.split(" ");
+
+    if (arr.length >= 2) {
+      return `${arr[0].charAt(0)}${arr[1].charAt(0)}`;
+    }
+
+    return userName.charAt(0);
+  };
+
+  const renderIcon = () => {
+    if (publicAddress) {
+      return (
+        <img
+          src={createStellarIdenticon(publicAddress).toDataURL()}
+          alt="Stellar address identicon"
+        />
+      );
+    }
+
+    if (userName) {
+      return <div className="Avatar__initials">{getInitials(userName)}</div>;
+    }
+
+    return <Icon.User01 />;
+  };
+
+  return <div className={`Avatar Avatar--${size}`}>{renderIcon()}</div>;
 };
 
 Avatar.displayName = "Avatar";
diff --git a/@stellar/design-system/src/components/Avatar/styles.scss b/@stellar/design-system/src/components/Avatar/styles.scss
index 13b79ec8..c1f8aa8e 100644
--- a/@stellar/design-system/src/components/Avatar/styles.scss
+++ b/@stellar/design-system/src/components/Avatar/styles.scss
@@ -1,8 +1,9 @@
 @use "../../utils.scss" as *;
 
 .Avatar {
-  --Avatar-size: #{pxToRem(32px)};
+  --Avatar-size: #{pxToRem(16px)};
   --Avatar-size-image: calc(var(--Avatar-size) / 2);
+  --Avatar-font-size: #{pxToRem(8px)};
 
   display: flex;
   align-items: center;
@@ -11,8 +12,8 @@
   width: var(--Avatar-size);
   height: var(--Avatar-size);
   border-radius: calc(var(--Avatar-size) / 2);
-  background-color: var(--color-gray-00);
-  border: 1px solid var(--color-gray-30);
+  background-color: var(--sds-clr-gray-01);
+  border: 1px solid var(--sds-clr-gray-06);
   overflow: hidden;
 
   img {
@@ -20,4 +21,34 @@
     width: var(--Avatar-size-image);
     height: var(--Avatar-size-image);
   }
+
+  svg {
+    display: block;
+    width: var(--Avatar-size-image);
+    height: var(--Avatar-size-image);
+    stroke: var(--sds-clr-gray-11);
+  }
+
+  &__initials {
+    font-family: var(--sds-ff-base);
+    font-size: var(--Avatar-font-size);
+    line-height: 1;
+    font-weight: var(--sds-fw-semi-bold);
+    color: var(--sds-clr-gray-11);
+  }
+
+  &--sm {
+    --Avatar-size: #{pxToRem(16px)};
+    --Avatar-font-size: #{pxToRem(7px)};
+  }
+
+  &--md {
+    --Avatar-size: #{pxToRem(24px)};
+    --Avatar-font-size: #{pxToRem(11px)};
+  }
+
+  &--lg {
+    --Avatar-size: #{pxToRem(32px)};
+    --Avatar-font-size: #{pxToRem(14px)};
+  }
 }
diff --git a/@stellar/design-system/src/components/Badge/index.tsx b/@stellar/design-system/src/components/Badge/index.tsx
index 5bad4ab7..89fb701a 100644
--- a/@stellar/design-system/src/components/Badge/index.tsx
+++ b/@stellar/design-system/src/components/Badge/index.tsx
@@ -3,18 +3,66 @@ import "./styles.scss";
 
 /** */
 export interface BadgeProps {
-  /** Variant of the badge @defaultValue `default` */
-  variant?: "default" | "success" | "warning" | "pending" | "error";
+  /** Variant of the badge @defaultValue `primary` */
+  variant?:
+    | "primary"
+    | "secondary"
+    | "tertiary"
+    | "success"
+    | "warning"
+    | "error";
+  /** Size of the badge @defaultValue `sm` */
+  size?: "sm" | "md" | "lg";
+  /** Use outlined style */
+  isOutlined?: boolean;
+  /** Use square corners */
+  isSquare?: boolean;
+  /** Icon element */
+  icon?: React.ReactNode;
+  /** Position of the icon @defaultValue `right` */
+  iconPosition?: "left" | "right";
+  /** Add dot icon on the left side */
+  isStatus?: boolean;
   /** Label of the badge */
   children: string;
 }
 
 /**
- * `Badge` is used to label or categorize an item. There are five variants: `default`, `success`, `warning`, `pending`, and `error`.
+ * `Badge` is used to label or categorize an item or show status. There are five variants: `primary`, `secondary`, `tertiary`, `success`, `warning`, and `error`.
  */
 export const Badge: React.FC<BadgeProps> = ({
-  variant = "default",
+  variant = "primary",
+  size = "sm",
+  isOutlined,
+  isSquare,
+  icon,
+  iconPosition = "right",
+  isStatus,
   children,
-}) => <div className={`Badge Badge--${variant}`}>{children}</div>;
+}) => {
+  const additionalClasses = [
+    `Badge--${variant}`,
+    `Badge--${size}`,
+    ...(isOutlined ? [`Badge--outlined`] : []),
+    ...(isSquare ? [`Badge--square`] : []),
+  ].join(" ");
+
+  const renderIcon = (position: "left" | "right") => {
+    if (!isStatus && icon && iconPosition === position) {
+      return <span className="Badge__icon">{icon}</span>;
+    }
+
+    return null;
+  };
+
+  return (
+    <div className={`Badge ${additionalClasses}`}>
+      {isStatus ? <div className="Badge__dot"></div> : null}
+      {renderIcon("left")}
+      {children}
+      {renderIcon("right")}
+    </div>
+  );
+};
 
 Badge.displayName = "Badge";
diff --git a/@stellar/design-system/src/components/Badge/styles.scss b/@stellar/design-system/src/components/Badge/styles.scss
index 729c12d5..b85567b0 100644
--- a/@stellar/design-system/src/components/Badge/styles.scss
+++ b/@stellar/design-system/src/components/Badge/styles.scss
@@ -1,41 +1,161 @@
 @use "../../utils.scss" as *;
 
 .Badge {
-  // Color
-  --Badge-color-background: var(--color-purple-40);
-  --Badge-color-text: var(--color-purple-70);
-
-  font-size: pxToRem(12px);
-  line-height: pxToRem(20px);
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
-  padding: pxToRem(2px) pxToRem(6px);
-  border-radius: pxToRem(4px);
+  --Badge-font-size: #{pxToRem(16px)};
+  --Badge-line-height: #{pxToRem(24px)};
+  --Badge-padding-vertical: #{pxToRem(6px)};
+  --Badge-padding-horizontal: #{pxToRem(12px)};
+  --Badge-gap: #{pxToRem(2px)};
+  --Badge-border-radius: #{pxToRem(100px)};
+
+  --Badge-color-text: var(--sds-clr-gray-12);
+  --Badge-color-icon: var(--sds-clr-gray-09);
+  --Badge-color-background: var(--sds-clr-gray-01);
+  --Badge-color-border: var(--sds-clr-gray-06);
+  --Badge-color-dot: var(--sds-clr-green-09);
+
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  gap: var(--Badge-gap);
+
+  font-size: var(--Badge-font-size);
+  line-height: var(--Badge-line-height);
+  font-family: var(--sds-ff-base);
+  font-weight: var(--sds-fw-medium);
+  padding: var(--Badge-padding-vertical) var(--Badge-padding-horizontal);
+  border-radius: var(--Badge-border-radius);
+  border: 1px solid var(--Badge-color-border);
+
   background-color: var(--Badge-color-background);
   color: var(--Badge-color-text);
 
-  &--default {
-    --Badge-color-background: var(--color-purple-40);
-    --Badge-color-text: var(--color-purple-70);
+  // Icon
+  &__icon {
+    width: var(--Badge-font-size);
+    height: var(--Badge-font-size);
+    display: block;
+
+    svg {
+      display: block;
+      width: 100%;
+      height: 100%;
+      stroke: var(--Badge-color-icon);
+    }
+  }
+
+  &__dot {
+    display: block;
+    width: pxToRem(6px);
+    height: pxToRem(6px);
+    border-radius: pxToRem(6px);
+    margin-right: pxToRem(4px);
+    background-color: var(--Badge-color-dot);
+  }
+
+  // Variant
+  &--primary {
+    --Badge-color-text: var(--sds-clr-gray-12);
+    --Badge-color-icon: var(--sds-clr-gray-09);
+    --Badge-color-background: var(--sds-clr-gray-01);
+    --Badge-color-border: var(--sds-clr-gray-06);
+    --Badge-color-dot: var(--sds-clr-green-09);
+
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-gray-08);
+    }
+  }
+
+  &--secondary {
+    --Badge-color-text: var(--sds-clr-lilac-11);
+    --Badge-color-icon: var(--sds-clr-lilac-09);
+    --Badge-color-background: var(--sds-clr-lilac-02);
+    --Badge-color-border: var(--sds-clr-lilac-06);
+    --Badge-color-dot: var(--sds-clr-lilac-09);
+
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-lilac-08);
+    }
+  }
+
+  &--tertiary {
+    --Badge-color-text: var(--sds-clr-gray-11);
+    --Badge-color-icon: var(--sds-clr-gray-09);
+    --Badge-color-background: var(--sds-clr-gray-03);
+    --Badge-color-border: var(--sds-clr-gray-06);
+    --Badge-color-dot: var(--sds-clr-gray-09);
+
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-gray-08);
+    }
   }
 
   &--success {
-    --Badge-color-background: var(--color-green-40);
-    --Badge-color-text: var(--color-green-70);
+    --Badge-color-text: var(--sds-clr-green-11);
+    --Badge-color-icon: var(--sds-clr-green-09);
+    --Badge-color-background: var(--sds-clr-green-02);
+    --Badge-color-border: var(--sds-clr-green-06);
+    --Badge-color-dot: var(--sds-clr-green-09);
+
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-green-08);
+    }
   }
 
   &--warning {
-    --Badge-color-background: var(--color-yellow-40);
-    --Badge-color-text: var(--color-yellow-70);
-  }
+    --Badge-color-text: var(--sds-clr-amber-11);
+    --Badge-color-icon: var(--sds-clr-amber-09);
+    --Badge-color-background: var(--sds-clr-amber-02);
+    --Badge-color-border: var(--sds-clr-amber-06);
+    --Badge-color-dot: var(--sds-clr-amber-09);
 
-  &--pending {
-    --Badge-color-background: var(--color-gray-40);
-    --Badge-color-text: var(--color-gray-70);
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-amber-08);
+    }
   }
 
   &--error {
-    --Badge-color-background: var(--color-red-40);
-    --Badge-color-text: var(--color-red-70);
+    --Badge-color-text: var(--sds-clr-red-11);
+    --Badge-color-icon: var(--sds-clr-red-09);
+    --Badge-color-background: var(--sds-clr-red-02);
+    --Badge-color-border: var(--sds-clr-red-06);
+    --Badge-color-dot: var(--sds-clr-red-09);
+
+    &.Badge--outlined {
+      --Badge-color-background: transparent;
+      --Badge-color-border: var(--sds-clr-red-08);
+    }
+  }
+
+  // Size
+  &--sm {
+    --Badge-font-size: #{pxToRem(12px)};
+    --Badge-line-height: #{pxToRem(18px)};
+    --Badge-padding-vertical: #{pxToRem(2px)};
+    --Badge-padding-horizontal: #{pxToRem(6px)};
+  }
+
+  &--md {
+    --Badge-font-size: #{pxToRem(14px)};
+    --Badge-line-height: #{pxToRem(20px)};
+    --Badge-padding-vertical: #{pxToRem(2px)};
+    --Badge-padding-horizontal: #{pxToRem(8px)};
+  }
+
+  &--lg {
+    --Badge-font-size: #{pxToRem(16px)};
+    --Badge-line-height: #{pxToRem(24px)};
+    --Badge-padding-vertical: #{pxToRem(2px)};
+    --Badge-padding-horizontal: #{pxToRem(10px)};
+  }
+
+  // Custom
+  &--square {
+    --Badge-border-radius: #{pxToRem(6px)};
   }
 }
diff --git a/@stellar/design-system/src/components/Banner/index.tsx b/@stellar/design-system/src/components/Banner/index.tsx
index 3db662be..e75b606c 100644
--- a/@stellar/design-system/src/components/Banner/index.tsx
+++ b/@stellar/design-system/src/components/Banner/index.tsx
@@ -1,20 +1,30 @@
 import React from "react";
+import { Icon } from "../../icons";
 import "./styles.scss";
 
 /** */
 export interface BannerProps {
   /** Variant of the banner */
-  variant: "default" | "success" | "warning" | "primary" | "error";
+  variant: "primary" | "secondary" | "success" | "warning" | "error";
+  /** Notification icon @defaultValue `<Icon.InfoCircle />` */
+  icon?: React.ReactNode;
   /** Message to display in the banner */
   children: string | React.ReactNode;
 }
 
 /**
- * Use `banner` to display messages at the top of the page, stretching across the whole width. There are five variants `default`, `primary`, `success`, `error`, and `warning`.
+ * Use `Banner` to display messages at the top of the page, stretching across the whole width. There are five variants `primary`, `secondary`, `success`, `warning`, and `error`.
  */
-export const Banner: React.FC<BannerProps> = ({ variant, children }) => (
+export const Banner: React.FC<BannerProps> = ({
+  variant,
+  icon = <Icon.InfoCircle />,
+  children,
+}) => (
   <div className={`Banner Banner--${variant}`}>
-    <div className="Banner__content">{children}</div>
+    <div className="Banner__message Banner__content">
+      <div className="Banner__icon">{icon}</div>
+      {children}
+    </div>
   </div>
 );
 
diff --git a/@stellar/design-system/src/components/Banner/styles.scss b/@stellar/design-system/src/components/Banner/styles.scss
index 36ec1fb5..9dc25a47 100644
--- a/@stellar/design-system/src/components/Banner/styles.scss
+++ b/@stellar/design-system/src/components/Banner/styles.scss
@@ -2,46 +2,66 @@
 
 .Banner {
   // Color
-  --Banner-color-background: var(--color-gray-40);
-  --Banner-color-text: var(--color-gray-70);
+  --Banner-color-background: var(--sds-clr-gray-01);
+  --Banner-color-text: var(--sds-clr-gray-12);
+  --Banner-color-icon: var(--sds-clr-lilac-09);
 
   width: 100%;
-  padding: pxToRem(8px) pxToRem(16px);
-  font-size: pxToRem(12px);
-  line-height: pxToRem(20px);
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
+  padding: pxToRem(6px) pxToRem(32px);
   background-color: var(--Banner-color-background);
-  color: var(--Banner-color-text);
-  text-align: center;
+  border-bottom: 1px solid var(--sds-clr-gray-06);
 
   &__content {
     margin: 0 auto;
+  }
+
+  &__icon {
+    display: inline-block;
+    width: pxToRem(16px);
+    height: pxToRem(16px);
+    margin-right: pxToRem(6px);
+
+    svg {
+      display: block;
+      margin-top: pxToRem(2px);
+      width: 100%;
+      height: 100%;
+      stroke: var(--Banner-color-icon);
+    }
+  }
+
+  &__message {
+    font-size: pxToRem(14px);
+    line-height: pxToRem(20px);
+    font-family: var(--sds-ff-base);
+    font-weight: var(--sds-fw-medium);
+    color: var(--Banner-color-text);
+    text-align: center;
     max-width: 75ch;
   }
 
-  &--default {
-    --Banner-color-background: var(--color-gray-40);
-    --Banner-color-text: var(--color-gray-70);
+  &--primary {
+    --Banner-color-background: var(--sds-clr-gray-01);
+    --Banner-color-icon: var(--sds-clr-lilac-09);
   }
 
-  &--success {
-    --Banner-color-background: var(--color-green-40);
-    --Banner-color-text: var(--color-green-70);
+  &--secondary {
+    --Banner-color-background: var(--sds-clr-gray-03);
+    --Banner-color-icon: var(--sds-clr-lilac-09);
   }
 
-  &--warning {
-    --Banner-color-background: var(--color-yellow-40);
-    --Banner-color-text: var(--color-yellow-70);
+  &--success {
+    --Banner-color-background: var(--sds-clr-green-03);
+    --Banner-color-icon: var(--sds-clr-green-09);
   }
 
-  &--primary {
-    --Banner-color-background: var(--color-purple-40);
-    --Banner-color-text: var(--color-purple-70);
+  &--warning {
+    --Banner-color-background: var(--sds-clr-amber-03);
+    --Banner-color-icon: var(--sds-clr-amber-09);
   }
 
   &--error {
-    --Banner-color-background: var(--color-red-40);
-    --Banner-color-text: var(--color-red-70);
+    --Banner-color-background: var(--sds-clr-red-03);
+    --Banner-color-icon: var(--sds-clr-red-09);
   }
 }
diff --git a/@stellar/design-system/src/components/Button/index.tsx b/@stellar/design-system/src/components/Button/index.tsx
index 225b2cae..a3299afc 100644
--- a/@stellar/design-system/src/components/Button/index.tsx
+++ b/@stellar/design-system/src/components/Button/index.tsx
@@ -1,5 +1,7 @@
-import React from "react";
+import React, { useEffect, useState } from "react";
+import { FloaterPlacement } from "../Floater";
 import { Loader } from "../Loader";
+import { Tooltip } from "../Tooltip";
 import "./styles.scss";
 
 /**
@@ -15,7 +17,7 @@ export interface ButtonProps {
     | "error"
     | "success";
   /** Size of the button */
-  size: "md" | "sm" | "xs";
+  size: "sm" | "md" | "lg";
   /** Label of the button */
   children?: string | React.ReactNode;
   /** Icon element */
@@ -24,14 +26,14 @@ export interface ButtonProps {
   iconPosition?: "left" | "right";
   /** Loading state indicator */
   isLoading?: boolean;
-  /** Make label uppercase */
-  isUppercase?: boolean;
   /** Sets width of the button to match the parent container */
   isFullWidth?: boolean;
-  /** Pill shaped button */
-  isPill?: boolean;
-  /** Button with extra padding */
-  isExtraPadding?: boolean;
+  /** Show onClick action tooltip @defaultValue `false` */
+  showActionTooltip?: boolean;
+  /** Action tooltip text @defaultValue `Done` */
+  actionTooltipText?: string;
+  /** Action tooltip placement @defaultValue `bottom` */
+  actionTooltipPlacement?: FloaterPlacement;
 }
 
 interface Props
@@ -49,20 +51,27 @@ export const Button: React.FC<Props> = ({
   icon,
   iconPosition = "right",
   isLoading,
-  isUppercase,
   isFullWidth,
-  isPill,
-  isExtraPadding,
+  showActionTooltip = false,
+  actionTooltipText = "Done",
+  actionTooltipPlacement = "bottom",
   ...props
 }) => {
+  const [isTooltipVisible, setIsTooltipVisible] = useState(false);
+
+  useEffect(() => {
+    if (isTooltipVisible) {
+      const t = setTimeout(() => {
+        setIsTooltipVisible(false);
+        clearTimeout(t);
+      }, 1000);
+    }
+  }, [isTooltipVisible]);
+
   const additionalClasses = [
     `Button--${variant}`,
     `Button--${size}`,
-    ...(isUppercase ? [`Button--uppercase`] : []),
-    // Button with extra padding will always be full width
-    ...(isFullWidth || isExtraPadding ? [`Button--full-width`] : []),
-    ...(isPill ? [`Button--pill`] : []),
-    ...(isExtraPadding ? [`Button--extra-padding`] : []),
+    ...(isFullWidth ? [`Button--full-width`] : []),
   ].join(" ");
 
   const renderIcon = (position: "left" | "right") => {
@@ -83,17 +92,46 @@ export const Button: React.FC<Props> = ({
     return null;
   };
 
-  return (
-    <button
-      className={`Button ${additionalClasses}`}
-      {...props}
-      {...(isLoading ? { disabled: true } : {})}
-    >
-      {renderIcon("left")}
-      {children ?? null}
-      {renderIcon("right")}
-    </button>
-  );
+  const renderButton = () => {
+    return (
+      <button
+        className={`Button ${additionalClasses}`}
+        {...props}
+        {...(isLoading ? { disabled: true } : {})}
+        {...(props.onClick
+          ? {
+              onClick: (event) => {
+                if (props.onClick) {
+                  props.onClick(event);
+
+                  if (showActionTooltip) {
+                    setIsTooltipVisible(true);
+                  }
+                }
+              },
+            }
+          : {})}
+      >
+        {renderIcon("left")}
+        {children ?? null}
+        {renderIcon("right")}
+      </button>
+    );
+  };
+
+  if (showActionTooltip) {
+    return (
+      <Tooltip
+        triggerEl={renderButton()}
+        isVisible={isTooltipVisible}
+        placement={actionTooltipPlacement}
+      >
+        {actionTooltipText}
+      </Tooltip>
+    );
+  }
+
+  return renderButton();
 };
 
 Button.displayName = "Button";
diff --git a/@stellar/design-system/src/components/Button/styles.scss b/@stellar/design-system/src/components/Button/styles.scss
index 901b7eb5..bbbf4ec0 100644
--- a/@stellar/design-system/src/components/Button/styles.scss
+++ b/@stellar/design-system/src/components/Button/styles.scss
@@ -7,13 +7,35 @@
       color: var(--Button-color-text-hover);
       background-color: var(--Button-color-background-hover);
       border-color: var(--Button-color-border-hover);
+
+      .Button__icon {
+        svg {
+          stroke: var(--Button-color-icon-hover);
+        }
+      }
+
+      .Loader {
+        --Loader-color: var(--Button-color-icon-hover);
+      }
     }
   }
 
-  &:active {
+  &:focus {
+    --Button-box-shadow-size: #{pxToRem(4px)};
+
     color: var(--Button-color-text-active);
     background-color: var(--Button-color-background-active);
     border-color: var(--Button-color-border-active);
+
+    .Button__icon {
+      svg {
+        stroke: var(--Button-color-icon-active);
+      }
+    }
+
+    .Loader {
+      --Loader-color: var(--Button-color-icon-active);
+    }
   }
 
   &:disabled {
@@ -21,48 +43,72 @@
     color: var(--Button-color-text-disabled);
     background-color: var(--Button-color-background-disabled);
     border-color: var(--Button-color-border-disabled);
+
+    .Button__icon {
+      svg {
+        stroke: var(--Button-color-icon-disabled);
+      }
+    }
+
+    .Loader {
+      --Loader-color: var(--Button-color-icon-disabled);
+    }
   }
 }
 
 .Button {
   // Variables
-  --Button-color-text-default: var(--color-white);
-  --Button-color-background-default: var(--color-purple-50);
-  --Button-color-border-default: var(--color-purple-50);
-
-  --Button-color-text-hover: var(--color-white);
-  --Button-color-background-hover: var(--color-purple-50);
-  --Button-color-border-hover: var(--color-purple-50);
-
-  --Button-color-text-active: var(--color-white);
-  --Button-color-background-active: var(--color-purple-50);
-  --Button-color-border-active: var(--color-purple-50);
-
-  --Button-color-text-disabled: var(--color-white);
-  --Button-color-background-disabled: var(--color-purple-50);
-  --Button-color-border-disabled: var(--color-purple-50);
-
+  --Button-color-text-default: var(--sds-clr-white);
+  --Button-color-icon-default: var(--sds-clr-white);
+  --Button-color-background-default: var(--sds-clr-lilac-09);
+  --Button-color-border-default: var(--sds-clr-lilac-09);
+
+  --Button-color-text-hover: var(--sds-clr-white);
+  --Button-color-icon-hover: var(--sds-clr-white);
+  --Button-color-background-hover: var(--sds-clr-lilac-09);
+  --Button-color-border-hover: var(--sds-clr-lilac-09);
+
+  --Button-color-text-active: var(--sds-clr-white);
+  --Button-color-icon-active: var(--sds-clr-white);
+  --Button-color-background-active: var(--sds-clr-lilac-09);
+  --Button-color-border-active: var(--sds-clr-lilac-09);
+
+  --Button-color-text-disabled: var(--sds-clr-white);
+  --Button-color-icon-disabled: var(--sds-clr-white);
+  --Button-color-background-disabled: var(--sds-clr-lilac-09);
+  --Button-color-border-disabled: var(--sds-clr-lilac-09);
+
+  --Button-height: #{pxToRem(26px)};
   --Button-font-size: #{pxToRem(16px)};
   --Button-line-height: #{pxToRem(24px)};
   --Button-gap: #{pxToRem(4px)};
+  --Button-border-radius: #{pxToRem(4px)};
   --Button-padding-vertical: #{pxToRem(6px)};
   --Button-padding-horizontal: #{pxToRem(12px)};
 
+  --Button-box-shadow-size: 0;
+  --Button-box-shadow-color: var(--sds-clr-lilac-06);
+
   // Base
   display: flex;
   justify-content: center;
   align-items: center;
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
+  font-family: var(--sds-ff-base);
+  font-weight: var(--sds-fw-semi-bold);
   border: 1px solid var(--Button-color-border-default);
+  border-radius: var(--Button-border-radius);
   color: var(--Button-color-text-default);
+  box-shadow: 0 0 0 var(--Button-box-shadow-size) var(--Button-box-shadow-color);
   background-color: var(--Button-color-background-default);
-  border-radius: pxToRem(4px);
   cursor: pointer;
-  transition: color var(--anim-transition-default),
-    background-color var(--anim-transition-default),
-    border-color var(--anim-transition-default);
 
+  transition:
+    color var(--sds-anim-transition-default),
+    background-color var(--sds-anim-transition-default),
+    border-color var(--sds-anim-transition-default),
+    box-shadow var(--sds-anim-transition-default);
+
+  height: var(--Button-height);
   font-size: var(--Button-font-size);
   line-height: var(--Button-line-height);
   gap: var(--Button-gap);
@@ -78,199 +124,203 @@
       display: block;
       width: 100%;
       height: 100%;
-      fill: currentColor;
+      stroke: var(--Button-color-icon-default);
     }
   }
 
-  .Loader {
-    --Loader-size: var(--Button-font-size);
-  }
-
   // Variant
   &--primary {
-    --Button-color-text-default: var(--color-white);
-    --Button-color-background-default: var(--color-purple-60);
-    --Button-color-border-default: var(--color-purple-60);
-
-    --Button-color-text-hover: var(--color-white);
-    --Button-color-background-hover: var(--color-purple-70);
-    --Button-color-border-hover: var(--color-purple-70);
-
-    --Button-color-text-active: var(--color-gray-00);
-    --Button-color-background-active: var(--color-purple-80);
-    --Button-color-border-active: var(--color-purple-80);
-
-    --Button-color-text-disabled: var(--color-purple-70);
-    --Button-color-background-disabled: var(--color-purple-50);
-    --Button-color-border-disabled: var(--color-purple-50);
+    --Button-color-text-default: var(--sds-clr-white);
+    --Button-color-icon-default: var(--sds-clr-white);
+    --Button-color-background-default: var(--sds-clr-lilac-09);
+    --Button-color-border-default: var(--sds-clr-lilac-09);
+
+    --Button-color-text-hover: var(--sds-clr-white);
+    --Button-color-icon-hover: var(--sds-clr-white);
+    --Button-color-background-hover: var(--sds-clr-lilac-10);
+    --Button-color-border-hover: var(--sds-clr-lilac-10);
+
+    --Button-color-text-active: var(--sds-clr-white);
+    --Button-color-icon-active: var(--sds-clr-white);
+    --Button-color-background-active: var(--sds-clr-lilac-10);
+    --Button-color-border-active: var(--sds-clr-lilac-10);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-lilac-06);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   &--secondary {
-    --Button-color-text-default: var(--color-gray-90);
-    --Button-color-background-default: var(--color-gray-20);
-    --Button-color-border-default: var(--color-gray-30);
-
-    --Button-color-text-hover: var(--color-gray-90);
-    --Button-color-background-hover: var(--color-gray-30);
-    --Button-color-border-hover: var(--color-gray-40);
-
-    --Button-color-text-active: var(--color-gray-90);
-    --Button-color-background-active: var(--color-gray-40);
-    --Button-color-border-active: var(--color-gray-50);
-
-    --Button-color-text-disabled: var(--color-gray-70);
-    --Button-color-background-disabled: var(--color-gray-50);
-    --Button-color-border-disabled: var(--color-gray-50);
+    --Button-color-text-default: var(--sds-clr-base-00);
+    --Button-color-icon-default: var(--sds-clr-base-00);
+    --Button-color-background-default: var(--sds-clr-gray-12);
+    --Button-color-border-default: var(--sds-clr-gray-12);
+
+    --Button-color-text-hover: var(--sds-clr-base-00);
+    --Button-color-icon-hover: var(--sds-clr-base-00);
+    --Button-color-background-hover: var(--sds-clr-gray-10);
+    --Button-color-border-hover: var(--sds-clr-gray-10);
+
+    --Button-color-text-active: var(--sds-clr-base-00);
+    --Button-color-icon-active: var(--sds-clr-base-00);
+    --Button-color-background-active: var(--sds-clr-gray-10);
+    --Button-color-border-active: var(--sds-clr-gray-10);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-gray-06);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   &--tertiary {
-    --Button-color-text-default: var(--color-gray-00);
-    --Button-color-background-default: var(--color-gray-90);
-    --Button-color-border-default: var(--color-gray-80);
-
-    --Button-color-text-hover: var(--color-gray-00);
-    --Button-color-background-hover: var(--color-gray-80);
-    --Button-color-border-hover: var(--color-gray-70);
-
-    --Button-color-text-active: var(--color-gray-30);
-    --Button-color-background-active: var(--color-gray-80);
-    --Button-color-border-active: var(--color-gray-60);
-
-    --Button-color-text-disabled: var(--color-gray-50);
-    --Button-color-background-disabled: var(--color-gray-70);
-    --Button-color-border-disabled: var(--color-gray-70);
+    --Button-color-text-default: var(--sds-clr-gray-12);
+    --Button-color-icon-default: var(--sds-clr-gray-09);
+    --Button-color-background-default: var(--sds-clr-gray-01);
+    --Button-color-border-default: var(--sds-clr-gray-06);
+
+    --Button-color-text-hover: var(--sds-clr-gray-12);
+    --Button-color-icon-hover: var(--sds-clr-gray-09);
+    --Button-color-background-hover: var(--sds-clr-gray-04);
+    --Button-color-border-hover: var(--sds-clr-gray-07);
+
+    --Button-color-text-active: var(--sds-clr-gray-12);
+    --Button-color-icon-active: var(--sds-clr-gray-09);
+    --Button-color-background-active: var(--sds-clr-gray-04);
+    --Button-color-border-active: var(--sds-clr-gray-06);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-gray-05);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   &--destructive {
-    --Button-color-text-default: var(--color-white);
-    --Button-color-background-default: var(--color-red-60);
-    --Button-color-border-default: var(--color-red-50);
-
-    --Button-color-text-hover: var(--color-white);
-    --Button-color-background-hover: var(--color-red-70);
-    --Button-color-border-hover: var(--color-red-50);
-
-    --Button-color-text-active: var(--color-gray-00);
-    --Button-color-background-active: var(--color-red-80);
-    --Button-color-border-active: var(--color-red-50);
-
-    --Button-color-text-disabled: var(--color-red-70);
-    --Button-color-background-disabled: var(--color-red-50);
-    --Button-color-border-disabled: var(--color-red-50);
+    --Button-color-text-default: var(--sds-clr-white);
+    --Button-color-icon-default: var(--sds-clr-white);
+    --Button-color-background-default: var(--sds-clr-red-09);
+    --Button-color-border-default: var(--sds-clr-red-09);
+
+    --Button-color-text-hover: var(--sds-clr-white);
+    --Button-color-icon-hover: var(--sds-clr-white);
+    --Button-color-background-hover: var(--sds-clr-red-10);
+    --Button-color-border-hover: var(--sds-clr-red-10);
+
+    --Button-color-text-active: var(--sds-clr-white);
+    --Button-color-icon-active: var(--sds-clr-white);
+    --Button-color-background-active: var(--sds-clr-red-10);
+    --Button-color-border-active: var(--sds-clr-red-10);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-red-06);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   &--error {
-    --Button-color-text-default: var(--color-red-60);
-    --Button-color-background-default: var(--color-red-10);
-    --Button-color-border-default: var(--color-red-30);
-
-    --Button-color-text-hover: var(--color-red-60);
-    --Button-color-background-hover: var(--color-red-20);
-    --Button-color-border-hover: var(--color-red-40);
-
-    --Button-color-text-active: var(--color-red-60);
-    --Button-color-background-active: var(--color-red-30);
-    --Button-color-border-active: var(--color-red-50);
-
-    --Button-color-text-disabled: var(--color-red-40);
-    --Button-color-background-disabled: var(--color-red-10);
-    --Button-color-border-disabled: var(--color-red-30);
+    --Button-color-text-default: var(--sds-clr-red-11);
+    --Button-color-icon-default: var(--sds-clr-red-08);
+    --Button-color-background-default: var(--sds-clr-red-01);
+    --Button-color-border-default: var(--sds-clr-red-06);
+
+    --Button-color-text-hover: var(--sds-clr-red-11);
+    --Button-color-icon-hover: var(--sds-clr-red-08);
+    --Button-color-background-hover: var(--sds-clr-red-03);
+    --Button-color-border-hover: var(--sds-clr-red-07);
+
+    --Button-color-text-active: var(--sds-clr-red-11);
+    --Button-color-icon-active: var(--sds-clr-red-08);
+    --Button-color-background-active: var(--sds-clr-red-03);
+    --Button-color-border-active: var(--sds-clr-red-07);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-red-05);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   &--success {
-    --Button-color-text-default: var(--color-green-60);
-    --Button-color-background-default: var(--color-green-10);
-    --Button-color-border-default: var(--color-green-30);
-
-    --Button-color-text-hover: var(--color-green-60);
-    --Button-color-background-hover: var(--color-green-20);
-    --Button-color-border-hover: var(--color-green-40);
-
-    --Button-color-text-active: var(--color-green-60);
-    --Button-color-background-active: var(--color-green-30);
-    --Button-color-border-active: var(--color-green-50);
-
-    --Button-color-text-disabled: var(--color-green-40);
-    --Button-color-background-disabled: var(--color-green-10);
-    --Button-color-border-disabled: var(--color-green-30);
+    --Button-color-text-default: var(--sds-clr-green-11);
+    --Button-color-icon-default: var(--sds-clr-green-08);
+    --Button-color-background-default: var(--sds-clr-green-01);
+    --Button-color-border-default: var(--sds-clr-green-06);
+
+    --Button-color-text-hover: var(--sds-clr-green-11);
+    --Button-color-icon-hover: var(--sds-clr-green-08);
+    --Button-color-background-hover: var(--sds-clr-green-03);
+    --Button-color-border-hover: var(--sds-clr-green-07);
+
+    --Button-color-text-active: var(--sds-clr-green-11);
+    --Button-color-icon-active: var(--sds-clr-green-08);
+    --Button-color-background-active: var(--sds-clr-green-03);
+    --Button-color-border-active: var(--sds-clr-green-07);
+    // TODO:
+    --Button-box-shadow-color: var(--sds-clr-green-05);
+
+    --Button-color-text-disabled: var(--sds-clr-gray-09);
+    --Button-color-icon-disabled: var(--sds-clr-gray-09);
+    --Button-color-background-disabled: var(--sds-clr-gray-03);
+    --Button-color-border-disabled: var(--sds-clr-gray-06);
 
     @include buttonState();
   }
 
   // Size
-  &--md {
-    --Button-font-size: #{pxToRem(16px)};
-    --Button-line-height: #{pxToRem(24px)};
-    --Button-padding-vertical: #{pxToRem(8px)};
-    --Button-padding-horizontal: #{pxToRem(12px)};
-
-    &.Button--pill {
-      --Button-padding-horizontal: #{pxToRem(14px)};
-    }
-
-    &.Button--extra-padding {
-      --Button-padding-vertical: #{pxToRem(12px)};
-      --Button-padding-horizontal: #{pxToRem(16px)};
-    }
+  &--sm {
+    --Button-height: #{pxToRem(26px)};
+    --Button-font-size: #{pxToRem(12px)};
+    --Button-line-height: #{pxToRem(18px)};
+    --Button-padding-vertical: #{pxToRem(4px)};
+    --Button-padding-horizontal: #{pxToRem(8px)};
+    --Button-border-radius: #{pxToRem(4px)};
   }
 
-  &--sm {
+  &--md {
+    --Button-height: #{pxToRem(32px)};
     --Button-font-size: #{pxToRem(14px)};
-    --Button-line-height: #{pxToRem(22px)};
+    --Button-line-height: #{pxToRem(20px)};
     --Button-padding-vertical: #{pxToRem(6px)};
     --Button-padding-horizontal: #{pxToRem(10px)};
-
-    &.Button--pill {
-      --Button-padding-horizontal: #{pxToRem(12px)};
-    }
-
-    &.Button--extra-padding {
-      --Button-padding-vertical: #{pxToRem(10px)};
-      --Button-padding-horizontal: #{pxToRem(14px)};
-    }
+    --Button-border-radius: #{pxToRem(6px)};
   }
 
-  &--xs {
-    --Button-font-size: #{pxToRem(12px)};
-    --Button-line-height: #{pxToRem(20px)};
-    --Button-padding-vertical: #{pxToRem(4px)};
-    --Button-padding-horizontal: #{pxToRem(8px)};
-
-    &.Button--pill {
-      --Button-padding-horizontal: #{pxToRem(10px)};
-    }
-
-    &.Button--extra-padding {
-      --Button-padding-vertical: #{pxToRem(8px)};
-      --Button-padding-horizontal: #{pxToRem(12px)};
-    }
+  &--lg {
+    --Button-height: #{pxToRem(40px)};
+    --Button-font-size: #{pxToRem(16px)};
+    --Button-line-height: #{pxToRem(24px)};
+    --Button-padding-vertical: #{pxToRem(8px)};
+    --Button-padding-horizontal: #{pxToRem(12px)};
+    --Button-border-radius: #{pxToRem(8px)};
   }
 
   // Custom
-  &--uppercase {
-    text-transform: uppercase;
-  }
-
   &--full-width {
     width: 100%;
   }
 
-  &--pill {
-    border-radius: var(--Button-line-height);
-  }
-
   // Loader
   .Loader {
-    --Loader-color: currentColor;
+    --Loader-size: var(--Button-font-size);
+    --Loader-color: var(--Button-color-icon-default);
   }
 }
diff --git a/@stellar/design-system/src/components/ButtonPreset/index.tsx b/@stellar/design-system/src/components/ButtonPreset/index.tsx
index 3504897d..cb65b25a 100644
--- a/@stellar/design-system/src/components/ButtonPreset/index.tsx
+++ b/@stellar/design-system/src/components/ButtonPreset/index.tsx
@@ -25,17 +25,17 @@ const presetDetails = {
   copy: {
     label: "Copy",
     altText: "Copy",
-    icon: <Icon.ContentCopy />,
+    icon: <Icon.Copy01 />,
   },
   download: {
     label: "Download",
     altText: "Download",
-    icon: <Icon.Download />,
+    icon: <Icon.Download01 />,
   },
 };
 
 /**
- * `ButtonPreset` is similar to the {@button Button} component, and is used to trigger an action. There are two presets: `copy` and `download` and two variants 
+ * `ButtonPreset` is similar to the {@link Button} component, and is used to trigger an action. There are two presets: `copy` and `download` and two variants
  * for color: `default` and `highlight`.
  */
 export const ButtonPreset: React.FC<Props> = ({
diff --git a/@stellar/design-system/src/components/Card/styles.scss b/@stellar/design-system/src/components/Card/styles.scss
index c1461a70..e1b9607b 100644
--- a/@stellar/design-system/src/components/Card/styles.scss
+++ b/@stellar/design-system/src/components/Card/styles.scss
@@ -1,8 +1,8 @@
 @use "../../utils.scss" as *;
 
 .Card {
-  --Card-color-background: var(--color-gray-00);
-  --Card-color-border: var(--color-gray-40);
+  --Card-color-background: var(--sds-clr-gray-01);
+  --Card-color-border: var(--sds-clr-gray-06);
   --Card-padding: #{pxToRem(24px)};
   --Card-radius: #{pxToRem(8px)};
 
@@ -18,12 +18,12 @@
   }
 
   &--primary {
-    --Card-color-background: var(--color-gray-00);
-    --Card-color-border: var(--color-gray-40);
+    --Card-color-background: var(--sds-clr-gray-01);
+    --Card-color-border: var(--sds-clr-gray-06);
   }
 
   &--secondary {
-    --Card-color-background: var(--color-gray-10);
-    --Card-color-border: var(--color-gray-40);
+    --Card-color-background: var(--sds-clr-gray-03);
+    --Card-color-border: var(--sds-clr-gray-06);
   }
 }
diff --git a/@stellar/design-system/src/components/Checkbox/index.tsx b/@stellar/design-system/src/components/Checkbox/index.tsx
index 62409813..9be4aed9 100644
--- a/@stellar/design-system/src/components/Checkbox/index.tsx
+++ b/@stellar/design-system/src/components/Checkbox/index.tsx
@@ -9,13 +9,15 @@ export interface CheckboxProps {
   id: string;
   // Note: cannot use "size" here because it's input's native property
   /** Size of the checkbox */
-  fieldSize: "md" | "sm" | "xs";
+  fieldSize: "sm" | "md" | "lg";
   /** Label of the checkbox */
   label?: string | React.ReactNode;
   /** Note message of the checkbox */
   note?: string | React.ReactNode;
   /** Error message of the checkbox */
   error?: string | React.ReactNode;
+  /** Success message of the input */
+  success?: string | React.ReactNode;
   /** Checkbox error without a message */
   isError?: boolean;
 }
@@ -35,6 +37,7 @@ export const Checkbox: React.FC<Props> = ({
   label,
   note,
   error,
+  success,
   isError,
   ...props
 }: Props) => {
@@ -61,8 +64,17 @@ export const Checkbox: React.FC<Props> = ({
         </label>
       </div>
 
-      {note && <FieldNote>{note}</FieldNote>}
-      {error && <FieldNote variant="error">{error}</FieldNote>}
+      {note && <FieldNote size={fieldSize}>{note}</FieldNote>}
+      {error && (
+        <FieldNote size={fieldSize} variant="error">
+          {error}
+        </FieldNote>
+      )}
+      {success && (
+        <FieldNote size={fieldSize} variant="success">
+          {success}
+        </FieldNote>
+      )}
     </div>
   );
 };
diff --git a/@stellar/design-system/src/components/Checkbox/styles.scss b/@stellar/design-system/src/components/Checkbox/styles.scss
index 40e45742..51693087 100644
--- a/@stellar/design-system/src/components/Checkbox/styles.scss
+++ b/@stellar/design-system/src/components/Checkbox/styles.scss
@@ -1,19 +1,19 @@
 @use "../../utils.scss" as *;
 
 .Checkbox {
-  // Color
-  --Checkbox-color-background: var(--color-gray-10);
-  --Checkbox-color-border: var(--color-gray-50);
-  --Checkbox-color-icon: var(--color-gray-00);
-  --Checkbox-color-text: var(--color-gray-80);
-
-  // Size
-  --Checkbox-size: #{pxToRem(16px)};
-  --Checkbox-icon-size: #{pxToRem(12px)};
-  --Checkbox-vertical-gap: #{pxToRem(8px)};
+  --Checkbox-color-background: var(--sds-input-color-background-default);
+  --Checkbox-color-border: var(--sds-input-color-border-default);
+  --Checkbox-color-icon: var(--sds-clr-base-00);
+
+  --Checkbox-size: #{pxToRem(14px)};
+  --Checkbox-icon-size: #{pxToRem(10px)};
+  --Checkbox-vertical-gap: #{pxToRem(2px)};
   --Checkbox-horizontal-gap: #{pxToRem(8px)};
-  --Checkbox-font-size: #{pxToRem(14px)};
-  --Checkbox-line-height: #{pxToRem(22px)};
+  --Checkbox-font-size: #{pxToRem(12px)};
+  --Checkbox-line-height: #{pxToRem(18px)};
+
+  --Checkbox-box-shadow-size: 0;
+  --Checkbox-box-shadow-color: var(--sds-input-box-shadow-color-default);
 
   display: flex;
   flex-direction: column;
@@ -23,30 +23,30 @@
     &:hover {
       input[type="checkbox"] {
         & + label {
-          --Checkbox-color-border: var(--color-gray-60);
+          --Checkbox-color-border: var(--sds-input-color-border-default);
         }
       }
     }
   }
 
-  &--md {
-    --Checkbox-size: #{pxToRem(18px)};
-    --Checkbox-icon-size: #{pxToRem(14px)};
-    --Checkbox-font-size: #{pxToRem(16px)};
-    --Checkbox-line-height: #{pxToRem(24px)};
+  &--sm {
+    --Checkbox-size: #{pxToRem(14px)};
+    --Checkbox-icon-size: #{pxToRem(10px)};
+    --Checkbox-font-size: #{pxToRem(12px)};
+    --Checkbox-line-height: #{pxToRem(18px)};
   }
 
-  &--sm {
+  &--md {
     --Checkbox-size: #{pxToRem(16px)};
     --Checkbox-icon-size: #{pxToRem(12px)};
-    --Checkbox-font-size: #{pxToRem(14px)};
-    --Checkbox-line-height: #{pxToRem(22px)};
+    --Checkbox-font-size: #{pxToRem(12px)};
+    --Checkbox-line-height: #{pxToRem(18px)};
   }
 
-  &--xs {
-    --Checkbox-size: #{pxToRem(14px)};
-    --Checkbox-icon-size: #{pxToRem(10px)};
-    --Checkbox-font-size: #{pxToRem(12px)};
+  &--lg {
+    --Checkbox-size: #{pxToRem(18px)};
+    --Checkbox-icon-size: #{pxToRem(14px)};
+    --Checkbox-font-size: #{pxToRem(14px)};
     --Checkbox-line-height: #{pxToRem(20px)};
   }
 
@@ -61,24 +61,28 @@
       z-index: -1;
 
       &:checked + label {
-        --Checkbox-color-background: var(--color-purple-60);
-        --Checkbox-color-border: var(--color-purple-70);
+        --Checkbox-color-background: var(--sds-clr-lilac-09);
+        --Checkbox-color-border: var(--sds-clr-lilac-09);
 
         span svg {
           opacity: 1;
         }
       }
 
+      &:focus + label {
+        --Checkbox-box-shadow-size: #{pxToRem(2px)};
+      }
+
       &:disabled + label {
-        --Checkbox-color-background: var(--color-gray-40);
-        --Checkbox-color-border: var(--color-gray-50);
+        --Checkbox-color-background: var(--sds-clr-gray-02);
+        --Checkbox-color-border: var(--sds-input-color-border-disabled);
         cursor: not-allowed;
       }
 
       &:checked:disabled + label {
-        --Checkbox-color-background: var(--color-gray-40);
-        --Checkbox-color-border: var(--color-gray-50);
-        --Checkbox-color-icon: var(--color-gray-50);
+        --Checkbox-color-background: var(--sds-clr-gray-04);
+        --Checkbox-color-border: var(--sds-input-color-border-disabled);
+        --Checkbox-color-icon: var(--sds-clr-gray-09);
         cursor: not-allowed;
       }
     }
@@ -86,7 +90,7 @@
     label {
       font-size: var(--Checkbox-font-size);
       line-height: var(--Checkbox-line-height);
-      font-weight: var(--font-weight-medium);
+      font-weight: var(--sds-fw-medium);
       flex: 1;
       position: relative;
       display: flex;
@@ -102,8 +106,11 @@
         border: 1px solid var(--Checkbox-color-border);
         background-color: var(--Checkbox-color-background);
         border-radius: pxToRem(4px);
-        transition: background-color var(--anim-transition-default),
-          border-color var(--anim-transition-default);
+        box-shadow: 0 0 0 var(--Checkbox-box-shadow-size)
+          var(--Checkbox-box-shadow-color);
+        transition: background-color var(--sds-anim-transition-default),
+          border-color var(--sds-anim-transition-default),
+          box-shadow var(--sds-anim-transition-default);
 
         &[data-has-label="true"] {
           margin-top: calc(
@@ -116,7 +123,7 @@
           opacity: 0;
           width: var(--Checkbox-icon-size);
           height: var(--Checkbox-icon-size);
-          fill: var(--Checkbox-color-icon);
+          stroke: var(--Checkbox-color-icon);
         }
       }
     }
@@ -125,8 +132,12 @@
   &--error {
     input[type="checkbox"] {
       & + label {
-        --Checkbox-color-border: var(--color-red-50);
-        --Checkbox-color-background: var(--color-red-10);
+        --Checkbox-color-background: var(--sds-input-color-background-error);
+        --Checkbox-color-border: var(--sds-input-color-border-error);
+      }
+
+      &:focus + label {
+        --Checkbox-box-shadow-color: var(--sds-input-box-shadow-color-error);
       }
     }
 
@@ -134,10 +145,14 @@
       &:hover {
         input[type="checkbox"]:not(:checked) {
           & + label {
-            --Checkbox-color-border: var(--color-red-60);
+            --Checkbox-color-border: var(--sds-input-color-border-error-hover);
           }
         }
       }
     }
   }
+
+  .FieldNote {
+    margin-left: calc(var(--Checkbox-size) + var(--Checkbox-horizontal-gap));
+  }
 }
diff --git a/@stellar/design-system/src/components/CopyText/index.tsx b/@stellar/design-system/src/components/CopyText/index.tsx
index 39824715..ef45611b 100644
--- a/@stellar/design-system/src/components/CopyText/index.tsx
+++ b/@stellar/design-system/src/components/CopyText/index.tsx
@@ -27,6 +27,7 @@ export type CopyTextBaseProps = {
   title?: string;
 };
 
+/** */
 export type CopyTextEllipsisProps = {
   /** Component display variant. `ellipsis` parent must have position relative. */
   variant?: "ellipsis";
@@ -34,6 +35,7 @@ export type CopyTextEllipsisProps = {
   children: string;
 };
 
+/** */
 export type CopyTextVariantProps = {
   /** Component display variant. `headless` parent must have position relative. @defaultValue `inline` */
   variant?: "inline" | "headless";
diff --git a/@stellar/design-system/src/components/CopyText/styles.scss b/@stellar/design-system/src/components/CopyText/styles.scss
index b0f82014..5870aa44 100644
--- a/@stellar/design-system/src/components/CopyText/styles.scss
+++ b/@stellar/design-system/src/components/CopyText/styles.scss
@@ -20,7 +20,7 @@
   &__content {
     cursor: pointer;
     opacity: 1;
-    transition: opacity var(--anim-transition-default);
+    transition: opacity var(--sds-anim-transition-default);
     display: inline-flex;
     align-items: center;
   }
diff --git a/@stellar/design-system/src/components/Floater/arrow.svg b/@stellar/design-system/src/components/Floater/arrow.svg
new file mode 100644
index 00000000..117cb221
--- /dev/null
+++ b/@stellar/design-system/src/components/Floater/arrow.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="40" height="13" viewBox="0 0 40 13" fill="none"><path d="M26.4853 12.6863C28.2671 12.6863 29.1594 10.532 27.8995 9.27206L21.4142 2.78678C20.6332 2.00573 19.3668 2.00573 18.5858 2.78678L12.1005 9.27206C10.8406 10.532 11.7329 12.6863 13.5147 12.6863L26.4853 12.6863Z"/></svg>
diff --git a/@stellar/design-system/src/components/Floater/index.tsx b/@stellar/design-system/src/components/Floater/index.tsx
index 3ea697cf..5bcdd244 100644
--- a/@stellar/design-system/src/components/Floater/index.tsx
+++ b/@stellar/design-system/src/components/Floater/index.tsx
@@ -10,9 +10,11 @@ import {
   flip,
   offset as floatingOffset,
   shift,
+  arrow,
   Placement,
 } from "@floating-ui/dom";
 
+import { ReactComponent as ArrowIcon } from "./arrow.svg";
 import "./styles.scss";
 
 export type FloaterPlacement = Placement;
@@ -26,8 +28,122 @@ interface FloaterProps {
   padding?: number;
   hasActiveInsideClick?: boolean;
   isContrast?: boolean;
+  showArrow?: boolean;
+  callback?: (isOpen: boolean) => void;
 }
 
+// Might need to flip the placement to get the correct arrow style
+const getActualTooltipPlacement = (
+  placement: Placement,
+  floaterX: number,
+  floaterY: number,
+) => {
+  if (placement.includes("bottom") && floaterY < 0) {
+    return placement.replace("bottom", "top") as Placement;
+  }
+
+  if (placement.includes("top") && floaterY > 0) {
+    return placement.replace("top", "bottom") as Placement;
+  }
+
+  if (placement.includes("left") && floaterX > 0) {
+    return placement.replace("left", "right") as Placement;
+  }
+
+  if (placement.includes("right") && floaterX < 0) {
+    return placement.replace("right", "left") as Placement;
+  }
+
+  return placement;
+};
+
+const getArrowStyle = ({
+  x,
+  y,
+  placement,
+  floaterX,
+  floaterY,
+}: {
+  x?: number;
+  y?: number;
+  placement: FloaterPlacement;
+  floaterX?: number;
+  floaterY?: number;
+}) => {
+  const basePos = {
+    top: "auto",
+    bottom: "auto",
+    left: "auto",
+    right: "auto",
+  };
+
+  const actualPlacement = getActualTooltipPlacement(
+    placement,
+    floaterX || 0,
+    floaterY || 0,
+  );
+
+  switch (actualPlacement) {
+    case "top":
+      return {
+        ...basePos,
+        right: `${x}px`,
+        transform: "rotate(180deg)",
+      };
+    case "top-start":
+      return {
+        ...basePos,
+        transform: "rotate(180deg)",
+      };
+    case "top-end":
+      return {
+        ...basePos,
+        right: "0px",
+        transform: "rotate(180deg)",
+      };
+    case "bottom":
+      return {
+        ...basePos,
+        top: "-12px",
+        right: `${x}px`,
+        transform: "rotate(0deg)",
+      };
+    case "bottom-start":
+      return {
+        ...basePos,
+        top: "-12px",
+        transform: "rotate(0deg)",
+      };
+    case "bottom-end":
+      return {
+        ...basePos,
+        top: "-12px",
+        right: `0px`,
+        transform: "rotate(0deg)",
+      };
+    case "left":
+    case "left-start":
+    case "left-end":
+      return {
+        ...basePos,
+        right: `-26px`,
+        top: `${y}px`,
+        transform: "rotate(90deg)",
+      };
+    case "right":
+    case "right-start":
+    case "right-end":
+      return {
+        ...basePos,
+        left: `-26px`,
+        top: `${y}px`,
+        transform: "rotate(270deg)",
+      };
+    default:
+      return basePos;
+  }
+};
+
 export const Floater: React.FC<FloaterProps> = ({
   triggerEl,
   children,
@@ -37,9 +153,12 @@ export const Floater: React.FC<FloaterProps> = ({
   padding = 24,
   hasActiveInsideClick,
   isContrast = true,
+  showArrow = false,
+  callback,
 }: FloaterProps) => {
   const parentRef = useRef<HTMLDivElement | null>(null);
   const floaterRef = useRef<HTMLDivElement | null>(null);
+  const floaterArrowRef = useRef<HTMLDivElement | null>(null);
 
   const [isFloaterOpen, setIsFloaterOpen] = useState(Boolean(isVisible));
   // If components has manual visibility control, we don't want to add clicks
@@ -51,13 +170,20 @@ export const Floater: React.FC<FloaterProps> = ({
 
   const openFloater = useCallback(() => {
     const computeFloaterPosition = async () => {
+      const arrowEl = showArrow && floaterArrowRef?.current;
+
       if (parentRef?.current && floaterRef?.current) {
-        const { x, y } = await computePosition(
+        const { x, y, middlewareData } = await computePosition(
           parentRef.current,
           floaterRef.current,
           {
             placement,
-            middleware: [floatingOffset(offset), flip(), shift({ padding })],
+            middleware: [
+              floatingOffset(arrowEl ? Number(offset + 6) : offset),
+              flip(),
+              shift({ padding }),
+              arrowEl && arrow({ element: arrowEl, padding: 5 }),
+            ],
           },
         );
 
@@ -66,6 +192,21 @@ export const Floater: React.FC<FloaterProps> = ({
           top: `${y}px`,
           transform: "translateX(0)",
         });
+
+        if (arrowEl && middlewareData.arrow) {
+          const { x: arrowX, y: arrowY } = middlewareData.arrow;
+
+          Object.assign(
+            arrowEl.style,
+            getArrowStyle({
+              x: arrowX,
+              y: arrowY,
+              placement,
+              floaterX: x,
+              floaterY: y,
+            }),
+          );
+        }
       }
     };
 
@@ -80,7 +221,7 @@ export const Floater: React.FC<FloaterProps> = ({
         setIsFloaterOpen(true);
       }
     }, delay);
-  }, [offset, padding, placement]);
+  }, [offset, padding, placement, showArrow]);
 
   const closeFloater = useCallback(() => {
     parentRef.current?.classList.remove(triggerActiveClass);
@@ -99,8 +240,12 @@ export const Floater: React.FC<FloaterProps> = ({
       } else {
         closeFloater();
       }
+
+      if (callback) {
+        callback(isOpen);
+      }
     },
-    [openFloater, closeFloater],
+    [callback, openFloater, closeFloater],
   );
 
   const handleClickOutside = useCallback(
@@ -155,6 +300,11 @@ export const Floater: React.FC<FloaterProps> = ({
       </>
       <div ref={floaterRef} className={`Floater__content ${additionalClasses}`}>
         {children}
+        {showArrow ? (
+          <div className="Floater__arrow" ref={floaterArrowRef}>
+            <ArrowIcon />
+          </div>
+        ) : null}
       </div>
     </div>
   );
diff --git a/@stellar/design-system/src/components/Floater/styles.scss b/@stellar/design-system/src/components/Floater/styles.scss
index 1b7c25ad..8e3485b4 100644
--- a/@stellar/design-system/src/components/Floater/styles.scss
+++ b/@stellar/design-system/src/components/Floater/styles.scss
@@ -7,32 +7,57 @@
   &__content {
     position: absolute;
     display: none;
-    transition: all var(--anim-transition-default);
+    transition: all var(--sds-anim-transition-default);
     opacity: 0;
     top: calc(100% + pxToRem(8px));
     left: 50%;
     transform: translateX(-50%);
-    color: var(--color-gray-00);
-    background-color: var(--color-gray-90);
-    border: 1px solid var(--color-gray-90);
     border-radius: pxToRem(6px);
-    box-shadow: 0px pxToRem(2px) pxToRem(4px) rgba(0, 0, 0, 0.08);
+    z-index: 1;
+
+    color: var(--sds-clr-gray-01);
+    background-color: var(--sds-clr-gray-12);
+    border: 1px solid var(--sds-clr-gray-12);
+    box-shadow: 0 pxToRem(12px) pxToRem(12px) pxToRem(-6px) rgba(0, 0, 0, 0.06);
 
     &--light {
-      color: var(--color-gray-80);
-      background-color: var(--color-gray-00);
-      border-color: var(--color-gray-30);
+      color: var(--sds-clr-gray-11);
+      background-color: var(--sds-clr-gray-01);
+      border-color: var(--sds-clr-gray-06);
+      box-shadow: 0 pxToRem(10px) pxToRem(20px) pxToRem(-6px)
+        var(--sds-overlay-01);
+
+      // Target only direct child, not everything nested
+      & > .Floater__arrow svg {
+        fill: var(--sds-clr-gray-06);
+      }
+    }
+  }
+
+  &__arrow {
+    position: absolute;
+    width: pxToRem(40px);
+    height: pxToRem(13px);
+    pointer-events: none;
+
+    svg {
+      display: block;
+      width: 100%;
+      height: 100%;
+      fill: var(--sds-clr-gray-12);
     }
   }
 
   // Floater open/close
   &.trigger {
+    z-index: 2;
+
     .Floater__content {
       display: block;
     }
 
     &--active {
-      z-index: var(--z-index-tooltip);
+      z-index: var(--sds-z-index-tooltip);
 
       .Floater__content {
         opacity: 1;
diff --git a/@stellar/design-system/src/components/IconButton/index.tsx b/@stellar/design-system/src/components/IconButton/index.tsx
index 9ccb2a9b..b735dbfb 100644
--- a/@stellar/design-system/src/components/IconButton/index.tsx
+++ b/@stellar/design-system/src/components/IconButton/index.tsx
@@ -22,7 +22,7 @@ interface Props
     React.ButtonHTMLAttributes<HTMLButtonElement> {}
 
 /**
- * `IconButton` is similar to the {@button Button} component and is used to trigger an action. There are five variants (color is the only difference): `default`, `error`, `success`, `warning`, and `highlight`.
+ * `IconButton` is similar to the {@link Button} component and is used to trigger an action. There are five variants (color is the only difference): `default`, `error`, `success`, `warning`, and `highlight`.
  */
 export const IconButton: React.FC<Props> = ({
   icon,
diff --git a/@stellar/design-system/src/components/IconButton/styles.scss b/@stellar/design-system/src/components/IconButton/styles.scss
index 93d6271c..db6dad23 100644
--- a/@stellar/design-system/src/components/IconButton/styles.scss
+++ b/@stellar/design-system/src/components/IconButton/styles.scss
@@ -12,39 +12,39 @@
   justify-content: center;
   align-items: center;
   opacity: 1;
-  transition: opacity var(--anim-transition-default);
+  transition: opacity var(--sds-anim-transition-default);
 
   svg {
     width: var(--IconButton-size);
     height: var(--IconButton-size);
-    fill: var(--IconButton-color);
+    stroke: var(--IconButton-color);
   }
 
   &__label {
     color: var(--IconButton-color);
     margin-right: 0.5rem;
-    font-weight: var(--font-weight-medium);
+    font-weight: var(--sds-fw-medium);
     font-size: max(1rem, calc(var(--IconButton-size) * 0.75));
   }
 
   &--default {
-    --IconButton-color: var(--color-gray-80);
+    --IconButton-color: var(--sds-clr-gray-11);
   }
 
   &--error {
-    --IconButton-color: var(--color-red-60);
+    --IconButton-color: var(--sds-clr-red-11);
   }
 
   &--success {
-    --IconButton-color: var(--color-green-60);
+    --IconButton-color: var(--sds-clr-green-11);
   }
 
   &--warning {
-    --IconButton-color: var(--color-yellow-60);
+    --IconButton-color: var(--sds-clr-amber-11);
   }
 
   &--highlight {
-    --IconButton-color: var(--color-purple-60);
+    --IconButton-color: var(--sds-clr-lilac-11);
   }
 
   @media (hover: hover) {
@@ -55,6 +55,6 @@
 
   &:disabled {
     cursor: not-allowed;
-    opacity: var(--opacity-disabled-button);
+    opacity: var(--sds-opacity-disabled-button);
   }
 }
diff --git a/@stellar/design-system/src/components/Input/index.tsx b/@stellar/design-system/src/components/Input/index.tsx
index b39c1904..c1a044ab 100644
--- a/@stellar/design-system/src/components/Input/index.tsx
+++ b/@stellar/design-system/src/components/Input/index.tsx
@@ -1,7 +1,8 @@
-import React, { cloneElement, useLayoutEffect, useRef, useState } from "react";
+import React, { cloneElement, useState } from "react";
 import { Label } from "../Label";
 import { Icon } from "../../icons";
 import { FieldNote } from "../utils/FieldNote";
+import { InputCopyButton } from "../utils/InputCopyButton";
 import "./styles.scss";
 
 /** Including all valid [input attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attributes). */
@@ -10,29 +11,45 @@ export interface InputProps {
   id: string;
   // Note: cannot use "size" here because it's input's native property
   /** Size of the input */
-  fieldSize: "md" | "sm" | "xs";
+  fieldSize: "sm" | "md" | "lg";
   /** Label of the input */
   label?: string | React.ReactNode;
+  /** Adds suffix to the label */
+  labelSuffix?: string | React.ReactNode;
   /** Make label uppercase */
   isLabelUppercase?: boolean;
-  /** Pill shaped input */
-  isPill?: boolean;
   /** Input error without a message */
   isError?: boolean;
-  /** Input with extra padding */
-  isExtraPadding?: boolean;
   /** Password input preset with show/hide button */
   isPassword?: boolean;
-  /** Right side element of the input */
+  /** Left side element of the input. */
+  leftElement?: string | React.ReactNode;
+  /** Right side element of the input. */
   rightElement?: string | React.ReactNode;
   /** Note message of the input */
   note?: string | React.ReactNode;
   /** Error message of the input */
   error?: string | React.ReactNode;
+  /** Success message of the input */
+  success?: string | React.ReactNode;
   /** Use a specific input rather than a generic HTML input (useful for Formik or otherwise controlled inputs) */
   customInput?: React.ReactElement;
+  /** Copy button options */
+  copyButton?: InputCopyButton;
+  /** Info text tooltip */
+  infoText?: string | React.ReactNode;
+  /** External link to open in new window */
+  infoLink?: string;
 }
 
+/** */
+export type InputCopyButton = {
+  /** Copy button placement */
+  position: "left" | "right";
+  /** Show "Copy" label */
+  showLabel?: boolean;
+};
+
 interface Props
   extends InputProps,
     React.InputHTMLAttributes<HTMLInputElement> {
@@ -40,72 +57,76 @@ interface Props
 }
 
 /**
- * The `input` component is a form input element that inherits all native HTML `input` element attributes.
+ * The `Input` component is a form input element that inherits all native HTML `input` element attributes.
  */
 export const Input: React.FC<Props> = ({
   customInput,
   id,
   label,
+  labelSuffix,
   fieldSize,
   isLabelUppercase,
-  isPill,
   isError,
-  isExtraPadding,
   isPassword,
   rightElement,
+  leftElement,
   note,
   error,
+  success,
+  copyButton,
+  infoText,
+  infoLink,
   ...props
 }: Props) => {
-  const [sideElWidthRem, setSideElWidthRem] = useState(0);
   const [isPasswordMasked, setIsPasswordMasked] = useState(true);
-  const sideEl = useRef<HTMLDivElement | null>(null);
-
-  const getRightSideElWidth = () => {
-    if (sideEl?.current) {
-      // Dividing by 16 base font size to get em
-      setSideElWidthRem(sideEl.current.getBoundingClientRect().width / 16);
-    }
-  };
-
-  useLayoutEffect(() => {
-    getRightSideElWidth();
-  }, []);
 
   const additionalClasses = [
     `Input--${fieldSize}`,
     ...(props.disabled ? ["Input--disabled"] : []),
     ...(isError || error ? ["Input--error"] : []),
-    ...(isPill ? ["Input--pill"] : []),
-    ...(isExtraPadding ? ["Input--extra-padding"] : []),
   ].join(" ");
 
-  const inputPaddingRight =
-    sideElWidthRem !== 0
-      ? `calc(var(--Input-padding-horizontal) * 2 + ${sideElWidthRem}rem)`
-      : "";
-
   const baseInputProps = {
     id,
     "aria-invalid": !!(isError || error),
-    ...(inputPaddingRight
-      ? { style: { paddingRight: inputPaddingRight } }
-      : {}),
   };
 
+  const renderCopyButton = () => (
+    <InputCopyButton
+      fieldSize={fieldSize}
+      textToCopy={props.value ? props.value.toString() : ""}
+      showLabel={copyButton?.showLabel}
+    />
+  );
+
   return (
     <div className={`Input ${additionalClasses}`}>
       {label && (
         <Label
           htmlFor={id}
           isUppercase={isLabelUppercase}
-          size={fieldSize === "xs" ? "xs" : "sm"}
+          size={fieldSize}
+          labelSuffix={labelSuffix}
+          infoText={infoText}
+          infoLink={infoLink}
         >
           {label}
         </Label>
       )}
 
       <div className="Input__container">
+        {copyButton?.position === "left" ? (
+          <div className="Input__copyButton Input__copyButton--left">
+            {renderCopyButton()}
+          </div>
+        ) : null}
+
+        {leftElement && (
+          <div className="Input__side-element Input__side-element--left">
+            {leftElement}
+          </div>
+        )}
+
         {customInput ? (
           cloneElement(customInput, { ...baseInputProps, ...props })
         ) : (
@@ -118,14 +139,8 @@ export const Input: React.FC<Props> = ({
           />
         )}
 
-        {rightElement && (
-          <div ref={sideEl} className="Input__side-element">
-            {rightElement}
-          </div>
-        )}
-
         {isPassword && (
-          <div className="Input__side-element">
+          <div className="Input__side-element Input__side-element--left">
             <button
               className="PasswordMaskToggle"
               type="button"
@@ -134,14 +149,35 @@ export const Input: React.FC<Props> = ({
                 setIsPasswordMasked(!isPasswordMasked);
               }}
             >
-              {isPasswordMasked ? <Icon.Hide /> : <Icon.Show />}
+              {isPasswordMasked ? <Icon.EyeOff /> : <Icon.Eye />}
             </button>
           </div>
         )}
+
+        {rightElement && (
+          <div className="Input__side-element Input__side-element--right">
+            {rightElement}
+          </div>
+        )}
+
+        {copyButton?.position === "right" ? (
+          <div className="Input__copyButton Input__copyButton--right">
+            {renderCopyButton()}
+          </div>
+        ) : null}
       </div>
 
-      {note && <FieldNote>{note}</FieldNote>}
-      {error && <FieldNote variant="error">{error}</FieldNote>}
+      {note && <FieldNote size={fieldSize}>{note}</FieldNote>}
+      {error && (
+        <FieldNote size={fieldSize} variant="error">
+          {error}
+        </FieldNote>
+      )}
+      {success && (
+        <FieldNote size={fieldSize} variant="success">
+          {success}
+        </FieldNote>
+      )}
     </div>
   );
 };
diff --git a/@stellar/design-system/src/components/Input/styles.scss b/@stellar/design-system/src/components/Input/styles.scss
index ee26daed..95562b24 100644
--- a/@stellar/design-system/src/components/Input/styles.scss
+++ b/@stellar/design-system/src/components/Input/styles.scss
@@ -2,104 +2,87 @@
 
 .Input {
   // Color
-  --Input-color-background: var(--color-gray-00);
-  --Input-color-border: var(--color-gray-30);
-  --Input-color-border-hover: var(--color-gray-40);
-  --Input-color-border-focus: var(--color-gray-50);
-  --Input-color-text: var(--color-gray-80);
+  --Input-color-background: var(--sds-clr-gray-01);
+  --Input-color-border: var(--sds-clr-gray-06);
+  --Input-color-border-hover: var(--sds-clr-gray-06);
+  --Input-color-border-focus: var(--sds-clr-gray-06);
+  --Input-color-text: var(--sds-clr-gray-12);
+  --Input-color-side-element: var(--sds-clr-gray-09);
 
   // Size
-  --Input-font-size: #{pxToRem(16px)};
-  --Input-line-height: #{pxToRem(24px)};
-  --Input-padding-vertical: #{pxToRem(8px)};
-  --Input-padding-horizontal: #{pxToRem(12px)};
-  --Input-gap: #{pxToRem(8px)};
+  --Input-font-size: #{pxToRem(12px)};
+  --Input-line-height: #{pxToRem(18px)};
+  --Input-padding-vertical: #{pxToRem(4px)};
+  --Input-padding-horizontal: #{pxToRem(10px)};
+  --Input-gap: #{pxToRem(6px)};
   --Input-border-radius: #{pxToRem(4px)};
-  --Input-note-font-size: #{pxToRem(14px)};
-  --Input-note-line-height: #{pxToRem(22px)};
+
+  --Input-box-shadow-size: 0;
+  --Input-box-shadow-color: var(--sds-input-box-shadow-color-default);
 
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: var(--Input-gap);
 
-  &--md {
-    --Input-font-size: #{pxToRem(16px)};
-    --Input-line-height: #{pxToRem(24px)};
-    --Input-padding-vertical: #{pxToRem(8px)};
-    --Input-padding-horizontal: #{pxToRem(12px)};
-    --Input-gap: #{pxToRem(8px)};
-    --Input-note-font-size: #{pxToRem(14px)};
-    --Input-note-line-height: #{pxToRem(22px)};
-
-    &.Input--pill {
-      --Input-padding-horizontal: #{pxToRem(14px)};
-    }
-
-    &.Input--extra-padding {
-      --Input-padding-vertical: #{pxToRem(12px)};
-      --Input-padding-horizontal: #{pxToRem(16px)};
-    }
-  }
-
   &--sm {
-    --Input-font-size: #{pxToRem(14px)};
-    --Input-line-height: #{pxToRem(22px)};
-    --Input-padding-vertical: #{pxToRem(6px)};
+    --Input-font-size: #{pxToRem(12px)};
+    --Input-line-height: #{pxToRem(18px)};
+    --Input-padding-vertical: #{pxToRem(4px)};
     --Input-padding-horizontal: #{pxToRem(10px)};
     --Input-gap: #{pxToRem(6px)};
-    --Input-note-font-size: #{pxToRem(14px)};
-    --Input-note-line-height: #{pxToRem(22px)};
-
-    &.Input--pill {
-      --Input-padding-horizontal: #{pxToRem(12px)};
-    }
-
-    &.Input--extra-padding {
-      --Input-padding-vertical: #{pxToRem(10px)};
-      --Input-padding-horizontal: #{pxToRem(14px)};
-    }
+    --Input-border-radius: #{pxToRem(4px)};
   }
 
-  &--xs {
-    --Input-font-size: #{pxToRem(12px)};
+  &--md {
+    --Input-font-size: #{pxToRem(14px)};
     --Input-line-height: #{pxToRem(20px)};
-    --Input-padding-vertical: #{pxToRem(4px)};
-    --Input-padding-horizontal: #{pxToRem(8px)};
-    --Input-gap: #{pxToRem(4px)};
-    --Input-note-font-size: #{pxToRem(12px)};
-    --Input-note-line-height: #{pxToRem(20px)};
-
-    &.Input--pill {
-      --Input-padding-horizontal: #{pxToRem(10px)};
-    }
+    --Input-padding-vertical: #{pxToRem(6px)};
+    --Input-padding-horizontal: #{pxToRem(12px)};
+    --Input-gap: #{pxToRem(6px)};
+    --Input-border-radius: #{pxToRem(6px)};
+  }
 
-    &.Input--extra-padding {
-      --Input-padding-vertical: #{pxToRem(8px)};
-      --Input-padding-horizontal: #{pxToRem(12px)};
-    }
+  &--lg {
+    --Input-font-size: #{pxToRem(16px)};
+    --Input-line-height: #{pxToRem(24px)};
+    --Input-padding-vertical: #{pxToRem(8px)};
+    --Input-padding-horizontal: #{pxToRem(14px)};
+    --Input-gap: #{pxToRem(8px)};
+    --Input-border-radius: #{pxToRem(8px)};
   }
 
   &__container {
     position: relative;
-    font-family: var(--font-family-base);
+    display: flex;
+    justify-content: space-between;
+    gap: var(--Input-padding-horizontal);
+
+    font-family: var(--sds-ff-base);
     background-color: var(--Input-color-background);
     border: 1px solid var(--Input-color-border);
     color: var(--Input-color-text);
     border-radius: var(--Input-border-radius);
-    transition: border-color var(--anim-transition-default);
+    box-shadow: 0 0 0 var(--Input-box-shadow-size) var(--Input-box-shadow-color);
+    transition:
+      border-color var(--sds-anim-transition-default),
+      box-shadow var(--sds-anim-transition-default);
+
+    padding-left: var(--Input-padding-horizontal);
+    padding-right: var(--Input-padding-horizontal);
 
     input {
       display: block;
-      width: 100%;
+      flex: 1;
       color: currentColor;
       border: none;
       background-color: transparent;
-      overflow: hidden;
-      border-radius: var(--Input-border-radius);
-      padding: var(--Input-padding-vertical) var(--Input-padding-horizontal);
+      padding-top: var(--Input-padding-vertical);
+      padding-bottom: var(--Input-padding-vertical);
       font-size: var(--Input-font-size);
       line-height: var(--Input-line-height);
+      outline: none;
+      overflow: hidden;
 
       // Remove spinners (up and down arrows) from number inputs
       &[type="number"]::-webkit-inner-spin-button,
@@ -108,39 +91,42 @@
         margin: 0;
       }
 
-      &:focus-visible {
-        outline: 1px solid var(--Input-color-border-focus);
-        border-color: transparent;
-      }
-
       &::placeholder {
-        color: var(--color-gray-60);
+        color: var(--sds-clr-gray-11);
       }
     }
 
+    &:has(input:focus-visible) {
+      --Input-box-shadow-size: #{pxToRem(4px)};
+    }
+
     @media (hover: hover) {
       &:hover {
         border-color: var(--Input-color-border-hover);
       }
     }
+
+    & > * {
+      min-width: 0;
+    }
   }
 
   &__side-element {
-    color: currentColor;
-    position: absolute;
-    top: var(--Input-padding-vertical);
-    bottom: var(--Input-padding-vertical);
-    right: var(--Input-padding-horizontal);
-    font-size: var(--Input-font-size);
-    line-height: var(--Input-line-height);
     display: flex;
     align-items: center;
-    justify-content: flex-end;
+
+    color: var(--Input-color-side-element);
+    flex-shrink: 0;
+    flex-grow: 0;
+
+    position: relative;
+    font-size: var(--Input-font-size);
+    line-height: var(--Input-line-height);
 
     svg {
-      fill: currentColor;
-      width: var(--Input-font-size);
-      height: var(--Input-font-size);
+      stroke: var(--Input-color-side-element);
+      width: auto;
+      height: auto;
     }
 
     .PasswordMaskToggle {
@@ -153,47 +139,80 @@
       padding: 0;
 
       svg {
-        fill: var(--color-gray-60);
+        stroke: var(--Input-color-side-element);
+      }
+    }
+  }
+
+  &__copyButton {
+    flex-shrink: 0;
+    flex-grow: 0;
+
+    &--left {
+      border-right: 1px solid var(--Input-color-border);
+      margin-left: calc(var(--Input-padding-horizontal) * -1);
+      border-top-left-radius: var(--Input-border-radius);
+      border-bottom-left-radius: var(--Input-border-radius);
+
+      .Button {
+        border-top-left-radius: var(--Input-border-radius);
+        border-bottom-left-radius: var(--Input-border-radius);
+        border-top-right-radius: 0;
+        border-bottom-right-radius: 0;
+      }
+    }
+
+    &--right {
+      border-left: 1px solid var(--Input-color-border);
+      margin-right: calc(var(--Input-padding-horizontal) * -1);
+      border-top-right-radius: var(--Input-border-radius);
+      border-bottom-right-radius: var(--Input-border-radius);
+
+      .Button {
+        border-top-right-radius: var(--Input-border-radius);
+        border-bottom-right-radius: var(--Input-border-radius);
+        border-top-left-radius: 0;
+        border-bottom-left-radius: 0;
       }
     }
+
+    .Button {
+      border: none;
+    }
   }
 
   &--error {
-    --Input-color-background: var(--color-red-20);
-    --Input-color-border: var(--color-red-60);
-    --Input-color-text: var(--color-gray-80);
+    --Input-color-background: var(--sds-input-color-background-error);
+    --Input-color-border: var(--sds-input-color-border-error);
+    --Input-color-text: var(--sds-input-color-text-default);
 
     .Input__container {
-      input {
-        &:focus-visible {
-          --Input-color-border-focus: var(--color-red-70);
-        }
+      &:has(input:focus-visible) {
+        --Input-color-border-focus: var(--sds-input-color-border-error-focus);
+        --Input-box-shadow-color: var(--sds-input-box-shadow-color-error);
       }
 
       @media (hover: hover) {
         &:hover {
-          --Input-color-border-hover: var(--color-red-50);
+          --Input-color-border-hover: var(--sds-input-color-border-error-hover);
         }
       }
     }
   }
 
   &--disabled {
-    --Input-color-background: var(--color-gray-40);
-    --Input-color-border: var(--color-gray-40);
-    --Input-color-text: var(--color-gray-60);
+    --Input-color-background: var(--sds-input-color-background-disabled);
+    --Input-color-border: var(--sds-input-color-border-disabled);
+    --Input-color-text: var(--sds-input-color-text-disabled);
 
     input {
       cursor: not-allowed;
-    }
-  }
 
-  &--pill {
-    --Input-border-radius: var(--Input-line-height);
-  }
-
-  .FieldNote {
-    font-size: var(--Input-note-font-size);
-    line-height: var(--Input-note-line-height);
+      @media (hover: hover) {
+        &:hover {
+          border-color: var(--sds-input-color-border-disabled);
+        }
+      }
+    }
   }
 }
diff --git a/@stellar/design-system/src/components/Label/index.tsx b/@stellar/design-system/src/components/Label/index.tsx
index f2b98aad..c3ca8dba 100644
--- a/@stellar/design-system/src/components/Label/index.tsx
+++ b/@stellar/design-system/src/components/Label/index.tsx
@@ -1,11 +1,16 @@
 import React from "react";
+import { Tooltip } from "../Tooltip";
+import { Icon } from "../../icons";
 import "./styles.scss";
 
 interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {
   children: string | React.ReactNode;
   htmlFor: string;
-  size?: "sm" | "xs";
+  size: "sm" | "md" | "lg";
   isUppercase?: boolean;
+  labelSuffix?: string | React.ReactNode;
+  infoText?: string | React.ReactNode;
+  infoLink?: string;
 }
 
 export const Label: React.FC<LabelProps> = ({
@@ -13,6 +18,9 @@ export const Label: React.FC<LabelProps> = ({
   htmlFor,
   size = "sm",
   isUppercase,
+  labelSuffix,
+  infoText,
+  infoLink,
   ...props
 }: LabelProps) => {
   const additionalClasses = [
@@ -21,13 +29,41 @@ export const Label: React.FC<LabelProps> = ({
   ].join(" ");
 
   return (
-    <label
-      className={`Label ${additionalClasses}`}
-      htmlFor={htmlFor}
-      {...props}
-    >
-      {children}
-    </label>
+    <div className="Label__wrapper">
+      <label
+        className={`Label ${additionalClasses}`}
+        htmlFor={htmlFor}
+        {...props}
+      >
+        {children}
+        {labelSuffix ? (
+          <span className="Label__suffix">({labelSuffix})</span>
+        ) : null}
+      </label>
+
+      {infoLink ? (
+        <a
+          href={infoLink}
+          className="Label__infoButton"
+          rel="noreferrer noopener"
+          target="_blank"
+        >
+          <Icon.BookOpen01 />
+        </a>
+      ) : null}
+
+      {infoText ? (
+        <Tooltip
+          triggerEl={
+            <div className="Label__infoButton" role="button">
+              <Icon.InfoCircle />
+            </div>
+          }
+        >
+          {infoText}
+        </Tooltip>
+      ) : null}
+    </div>
   );
 };
 
diff --git a/@stellar/design-system/src/components/Label/styles.scss b/@stellar/design-system/src/components/Label/styles.scss
index ea7699ea..5bd4a3e3 100644
--- a/@stellar/design-system/src/components/Label/styles.scss
+++ b/@stellar/design-system/src/components/Label/styles.scss
@@ -1,21 +1,56 @@
 @use "../../utils.scss" as *;
 
 .Label {
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
-  color: var(--color-gray-60);
+  --Label-height: #{pxToRem(18px)};
+
+  font-family: var(--sds-ff-base);
+  font-weight: var(--sds-fw-medium);
+  color: var(--sds-clr-gray-11);
+  display: flex;
+  gap: pxToRem(2px);
+
+  &__wrapper {
+    display: inline-flex;
+    align-items: center;
+    gap: pxToRem(4px);
+  }
 
   &--sm {
-    font-size: pxToRem(14px);
-    line-height: pxToRem(22px);
+    --Label-height: #{pxToRem(18px)};
+    font-size: pxToRem(12px);
+    line-height: var(--Label-height);
   }
 
-  &--xs {
+  &--md {
+    --Label-height: #{pxToRem(18px)};
     font-size: pxToRem(12px);
-    line-height: pxToRem(20px);
+    line-height: var(--Label-height);
+  }
+
+  &--lg {
+    --Label-height: #{pxToRem(20px)};
+    font-size: pxToRem(14px);
+    line-height: var(--Label-height);
   }
 
   &--uppercase {
     text-transform: uppercase;
   }
+
+  &__suffix {
+    color: var(--sds-clr-gray-11);
+  }
+
+  &__infoButton {
+    width: var(--Label-height);
+    height: var(--Label-height);
+    cursor: pointer;
+
+    svg {
+      display: block;
+      width: 100%;
+      height: 100%;
+      stroke: var(--sds-clr-gray-08);
+    }
+  }
 }
diff --git a/@stellar/design-system/src/components/Layout/index.tsx b/@stellar/design-system/src/components/Layout/index.tsx
index 28601947..d0bbffb9 100644
--- a/@stellar/design-system/src/components/Layout/index.tsx
+++ b/@stellar/design-system/src/components/Layout/index.tsx
@@ -1,5 +1,6 @@
 import React, { useEffect } from "react";
 import { Icon } from "../../icons";
+import { Logo } from "../../logos";
 import { ProjectLogo } from "../ProjectLogo";
 import { Link } from "../Link";
 import { ThemeMode, ThemeSwitch } from "../ThemeSwitch";
@@ -145,7 +146,7 @@ export const Header: React.FC<HeaderProps> = ({
               id="open-side-nav-button"
               title="Open side navigation"
               onClick={menu.onOpen}
-              icon={<Icon.Menu />}
+              icon={<Icon.Menu01 />}
               showBorder={showButtonBorder}
             />
           ) : null}
@@ -214,7 +215,7 @@ export const Footer: React.FC<FooterProps> = ({
               <Link
                 href={gitHubLink}
                 variant="secondary"
-                icon={<Icon.Github />}
+                icon={<Logo.Github />}
                 iconPosition="left"
               >
                 {gitHubLabel ?? "GitHub"}
diff --git a/@stellar/design-system/src/components/Layout/styles.scss b/@stellar/design-system/src/components/Layout/styles.scss
index 9eedbdb2..383c8191 100644
--- a/@stellar/design-system/src/components/Layout/styles.scss
+++ b/@stellar/design-system/src/components/Layout/styles.scss
@@ -6,7 +6,7 @@
     margin: 0 auto;
     padding-left: var(--Layout-inset-padding-horizontal);
     padding-right: var(--Layout-inset-padding-horizontal);
-    max-width: var(--layout-window-width-max);
+    max-width: var(--sds-window-width-max);
     width: 100%;
 
     @media (min-width: 600px) {
@@ -91,7 +91,7 @@
     --Layout-footer-padding-top: 1rem;
     --Layout-footer-padding-bottom: 1rem;
     --Layout-footer-margin-top: 3rem;
-    --Layout-footer-border-color: var(--color-gray-30);
+    --Layout-footer-border-color: var(--sds-clr-gray-06);
 
     margin-top: var(--Layout-footer-margin-top);
 
diff --git a/@stellar/design-system/src/components/Link/index.tsx b/@stellar/design-system/src/components/Link/index.tsx
index 4089458c..61c3c74b 100644
--- a/@stellar/design-system/src/components/Link/index.tsx
+++ b/@stellar/design-system/src/components/Link/index.tsx
@@ -1,4 +1,4 @@
-import React from "react";
+import React, { cloneElement } from "react";
 import "./styles.scss";
 
 /**
@@ -8,7 +8,7 @@ export interface LinkProps {
   /** Content of the link */
   children?: string | React.ReactNode;
   /** Variant of the link @defaultValue `primary` */
-  variant?: "primary" | "secondary";
+  variant?: "primary" | "secondary" | "success" | "warning" | "error";
   /** Size of the link, will inherit parent size if not set */
   size?: "md" | "sm" | "xs";
   /** Icon element */
@@ -21,9 +21,13 @@ export interface LinkProps {
   isUnderline?: boolean;
   /** Make the link uppercase */
   isUppercase?: boolean;
+  /** Provide a custom anchor element, for example, `Link` from Next.js */
+  customAnchor?: React.ReactElement;
+  /** Additional classes */
+  addlClassName?: string;
 }
 
-interface Props
+export interface Props
   extends LinkProps,
     React.AnchorHTMLAttributes<HTMLAnchorElement> {}
 
@@ -41,6 +45,8 @@ export const Link: React.FC<Props> = ({
   isDisabled,
   isUnderline,
   isUppercase,
+  customAnchor,
+  addlClassName,
   ...props
 }) => {
   const { href, onClick } = props;
@@ -74,6 +80,7 @@ export const Link: React.FC<Props> = ({
     ...(isDisabled ? ["Link--disabled"] : []),
     ...(isUnderline ? ["Link--underline"] : []),
     ...(isUppercase ? ["Link--uppercase"] : []),
+    ...(addlClassName ? addlClassName.split(" ") : []),
   ].join(" ");
 
   const renderIcon = (position: "left" | "right") => {
@@ -84,12 +91,26 @@ export const Link: React.FC<Props> = ({
     return null;
   };
 
-  return (
-    <a className={`Link ${additionalClasses}`} {...props} {...customProps}>
+  const renderAnchorContent = () => (
+    <>
       {renderIcon("left")}
       {children}
       {renderIcon("right")}
-    </a>
+    </>
+  );
+
+  const anchorProps = {
+    className: `Link ${additionalClasses}`,
+    ...props,
+    ...customProps,
+    children: renderAnchorContent(),
+  };
+
+  return customAnchor ? (
+    cloneElement(customAnchor, anchorProps)
+  ) : (
+    // eslint-disable-next-line jsx-a11y/anchor-has-content
+    <a {...anchorProps} />
   );
 };
 
diff --git a/@stellar/design-system/src/components/Link/styles.scss b/@stellar/design-system/src/components/Link/styles.scss
index e989cfa9..672b2940 100644
--- a/@stellar/design-system/src/components/Link/styles.scss
+++ b/@stellar/design-system/src/components/Link/styles.scss
@@ -27,15 +27,15 @@
   align-items: center;
   vertical-align: bottom;
   text-decoration: none;
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
+  font-family: var(--sds-ff-base);
+  font-weight: var(--sds-fw-medium);
 
   font-size: var(--Link-font-size);
   line-height: var(--Link-line-height);
   color: var(--Link-color-default);
   gap: var(--Link-gap);
 
-  transition: color var(--anim-transition-default);
+  transition: color var(--sds-anim-transition-default);
 
   // Icon
   &__icon {
@@ -47,7 +47,7 @@
       display: block;
       width: 100%;
       height: 100%;
-      fill: currentColor;
+      stroke: currentColor;
     }
   }
 
@@ -58,17 +58,41 @@
 
   // Variant
   &--primary {
-    --Link-color-default: var(--color-purple-60);
-    --Link-color-hover: var(--color-purple-70);
-    --Link-color-disabled: var(--color-purple-50);
+    --Link-color-default: var(--sds-clr-lilac-11);
+    --Link-color-hover: var(--sds-clr-lilac-12);
+    --Link-color-disabled: var(--sds-clr-lilac-08);
 
     @include linkState();
   }
 
   &--secondary {
-    --Link-color-default: var(--color-gray-60);
-    --Link-color-hover: var(--color-gray-70);
-    --Link-color-disabled: var(--color-gray-50);
+    --Link-color-default: var(--sds-clr-gray-11);
+    --Link-color-hover: var(--sds-clr-gray-12);
+    --Link-color-disabled: var(--sds-clr-gray-08);
+
+    @include linkState();
+  }
+
+  &--success {
+    --Link-color-default: var(--sds-clr-green-11);
+    --Link-color-hover: var(--sds-clr-green-12);
+    --Link-color-disabled: var(--sds-clr-green-08);
+
+    @include linkState();
+  }
+
+  &--warning {
+    --Link-color-default: var(--sds-clr-amber-11);
+    --Link-color-hover: var(--sds-clr-amber-12);
+    --Link-color-disabled: var(--sds-clr-amber-08);
+
+    @include linkState();
+  }
+
+  &--error {
+    --Link-color-default: var(--sds-clr-red-11);
+    --Link-color-hover: var(--sds-clr-red-12);
+    --Link-color-disabled: var(--sds-clr-red-08);
 
     @include linkState();
   }
diff --git a/@stellar/design-system/src/components/Loader/styles.scss b/@stellar/design-system/src/components/Loader/styles.scss
index d7dbff39..9229a1b2 100644
--- a/@stellar/design-system/src/components/Loader/styles.scss
+++ b/@stellar/design-system/src/components/Loader/styles.scss
@@ -8,7 +8,7 @@
 }
 
 .Loader {
-  --Loader-color: var(--color-gray-80);
+  --Loader-color: var(--sds-clr-gray-11);
   --Loader-size: 1rem;
 
   position: relative;
diff --git a/@stellar/design-system/src/components/Modal/index.tsx b/@stellar/design-system/src/components/Modal/index.tsx
index 5034cc19..883b1aa6 100644
--- a/@stellar/design-system/src/components/Modal/index.tsx
+++ b/@stellar/design-system/src/components/Modal/index.tsx
@@ -34,23 +34,28 @@ export interface ModalBodyProps {
   children: React.ReactNode;
 }
 
-const ModalBody: React.FC<ModalBodyProps> = ({
-  children,
-}: ModalHeadingProps) => <div className="ModalBody">{children}</div>;
+const ModalBody: React.FC<ModalBodyProps> = ({ children }: ModalBodyProps) => (
+  <div className="ModalBody">{children}</div>
+);
 
 /** */
 export interface ModalFooterProps {
   /** Content of the modal footer */
   children: React.ReactNode;
+  /** Item alignment in the footer @defaultValue `right` */
+  itemAlignment?: "right" | "stretch" | "stack";
 }
 
 const ModalFooter: React.FC<ModalFooterProps> = ({
   children,
-}: ModalHeadingProps) => <div className="ModalFooter">{children}</div>;
+  itemAlignment = "right",
+}: ModalFooterProps) => (
+  <div className={`ModalFooter ModalFooter--${itemAlignment}`}>{children}</div>
+);
 
 /** */
 export interface ModalProps {
-  /** ID of the modal parent (affects the position of the modal) @defaultValue root */
+  /** ID of the modal parent (affects the position of the modal) @defaultValue `root` */
   parentId?: string;
   /** State to show or hide the modal */
   visible: boolean;
@@ -128,14 +133,14 @@ export const Modal: React.FC<ModalProps> & ModalComponent = ({
             id="modal-close-button"
             title="Close modal"
             onClick={onClose}
-            icon={<Icon.Close />}
+            icon={<Icon.XClose />}
           />
         </div>
       </div>
       <div className="Modal__background" role="button" onClick={onClose} />
     </div>,
     parent,
-  );
+  ) as React.JSX.Element;
 };
 
 Modal.displayName = "Modal";
diff --git a/@stellar/design-system/src/components/Modal/styles.scss b/@stellar/design-system/src/components/Modal/styles.scss
index 441d3a6a..421087a6 100644
--- a/@stellar/design-system/src/components/Modal/styles.scss
+++ b/@stellar/design-system/src/components/Modal/styles.scss
@@ -8,15 +8,14 @@
   bottom: 0;
   left: 0;
   width: 100%;
-  z-index: var(--z-index-modal);
-  min-width: var(--layout-window-width-min);
+  z-index: var(--sds-z-index-modal);
+  min-width: var(--sds-window-width-min);
   min-height: 100vh;
-  overflow: hidden;
 
   // Align to the bottom on small screen
   &[data-modal-align="bottom"] {
     .Modal__container {
-      @media (max-width: 600px) {
+      @media (max-width: 480px) {
         width: 100%;
         left: 0;
         top: auto;
@@ -31,50 +30,55 @@
   &__container {
     position: absolute;
     width: 96%;
-    max-width: 600px;
-    background-color: var(--color-gray-00);
-    border: 1px solid var(--color-gray-40);
+    max-width: 480px;
+    background-color: var(--sds-clr-gray-01);
+    border: 1px solid var(--sds-clr-gray-06);
+    box-shadow: pxToRem(0) pxToRem(10px) pxToRem(20px) pxToRem(-10px)
+      var(--sds-overlay-01);
     border-radius: pxToRem(8px);
-    z-index: calc(var(--z-index-modal) + 1);
-    padding: pxToRem(24px);
-    padding-right: 0;
+    z-index: calc(var(--sds-z-index-modal) + 1);
+    padding: pxToRem(16px);
     margin-top: var(--Modal-offset-top);
-    overflow: hidden;
     top: 35%;
     left: 50%;
     transform: translate(-50%, -35%);
   }
 
   &__content {
-    overflow-y: auto;
-    max-height: 80vh;
-    padding-right: pxToRem(24px);
-
-    @media (min-width: 600px) {
-      max-height: 70vh;
-    }
+    position: relative;
+    display: grid;
+    grid-template-columns: 1fr;
+    grid-template-rows:
+      minmax(0, max-content)
+      fit-content(20rem)
+      minmax(0, max-content);
 
     .ModalHeading {
-      color: var(--color-gray-80);
-      font-size: pxToRem(18px);
-      line-height: pxToRem(26px);
-      font-weight: var(--font-weight-medium);
+      color: var(--sds-clr-gray-12);
+      font-size: pxToRem(16px);
+      line-height: pxToRem(24px);
+      font-weight: var(--sds-fw-medium);
       margin: 0;
-      margin-bottom: pxToRem(16px);
+      margin-bottom: pxToRem(8px);
       width: calc(100% - 2rem);
     }
 
     .ModalBody {
-      color: var(--color-gray-60);
+      overflow-y: auto;
+      padding-right: pxToRem(12px);
+
+      color: var(--sds-clr-gray-11);
       font-size: pxToRem(14px);
-      line-height: pxToRem(22px);
+      line-height: pxToRem(20px);
+      font-weight: var(--sds-fw-regular);
 
       p,
       ul,
       ol {
-        color: var(--color-gray-60);
-        font-size: pxToRem(14px);
-        line-height: pxToRem(22px);
+        color: inherit;
+        font-size: inherit;
+        line-height: inherit;
+        font-weight: inherit;
       }
 
       & > *:not(:last-child) {
@@ -84,35 +88,61 @@
 
     .ModalFooter {
       display: flex;
-      align-items: center;
-      justify-content: flex-end;
-      flex-wrap: wrap;
       width: 100%;
-      margin-top: pxToRem(24px);
-      gap: pxToRem(12px);
+      margin-top: pxToRem(16px);
+      gap: pxToRem(8px);
+
+      &--right {
+        flex-direction: row;
+        align-items: center;
+        justify-content: flex-end;
+        flex-wrap: wrap;
+      }
+
+      &--stretch {
+        flex-direction: row;
+        align-items: center;
+        justify-content: space-between;
+        flex-wrap: wrap;
+
+        & > * {
+          flex: 1;
+        }
+      }
+
+      &--stack {
+        flex-direction: column;
+
+        & > * {
+          width: 100%;
+        }
+      }
+
+      .Button {
+        white-space: nowrap;
+      }
     }
   }
 
   &__close {
     position: absolute;
-    top: pxToRem(18px);
-    right: pxToRem(18px);
+    top: pxToRem(12px);
+    right: pxToRem(8px);
     cursor: pointer;
 
     .NavButton {
       --NavButton-size: #{pxToRem(32px)};
-      --NavButton-icon-size: #{pxToRem(24px)};
+      --NavButton-icon-size: #{pxToRem(20px)};
 
       svg {
-        fill: var(--color-gray-90);
+        stroke: var(--sds-clr-gray-09);
       }
     }
   }
 
   &__background {
     position: absolute;
-    background-color: #000;
-    opacity: 0.8;
+    background-color: var(--sds-overlay-05);
     top: 0;
     bottom: 0;
     left: 0;
diff --git a/@stellar/design-system/src/components/NavButton/index.tsx b/@stellar/design-system/src/components/NavButton/index.tsx
index 4cb4073b..82867d4a 100644
--- a/@stellar/design-system/src/components/NavButton/index.tsx
+++ b/@stellar/design-system/src/components/NavButton/index.tsx
@@ -4,7 +4,7 @@ import "./styles.scss";
 /** */
 export interface NavButtonProps {
   /** ID of the component (should be unique) */
-  id: string;
+  id?: string;
   /** Title or label to show on hover */
   title: string;
   /** Action to trigger on click */
diff --git a/@stellar/design-system/src/components/NavButton/styles.scss b/@stellar/design-system/src/components/NavButton/styles.scss
index aa1ab58a..c5c3e5f2 100644
--- a/@stellar/design-system/src/components/NavButton/styles.scss
+++ b/@stellar/design-system/src/components/NavButton/styles.scss
@@ -16,16 +16,16 @@
   justify-content: center;
   align-items: center;
   opacity: 1;
-  transition: opacity var(--anim-transition-default);
+  transition: opacity var(--sds-anim-transition-default);
 
   &--border {
-    border-color: var(--color-gray-30);
+    border-color: var(--sds-clr-gray-06);
   }
 
   svg {
     width: var(--NavButton-icon-size);
     height: var(--NavButton-icon-size);
-    fill: var(--color-gray-80);
+    stroke: var(--sds-clr-gray-09);
   }
 
   @media (hover: hover) {
@@ -36,6 +36,6 @@
 
   &:disabled {
     cursor: not-allowed;
-    opacity: var(--opacity-disabled-button);
+    opacity: var(--sds-opacity-disabled-button);
   }
 }
diff --git a/@stellar/design-system/src/components/Notification/index.tsx b/@stellar/design-system/src/components/Notification/index.tsx
index 2adec681..bce844bc 100644
--- a/@stellar/design-system/src/components/Notification/index.tsx
+++ b/@stellar/design-system/src/components/Notification/index.tsx
@@ -8,8 +8,10 @@ export interface NotificationProps {
   variant: "primary" | "secondary" | "success" | "error" | "warning";
   /** Notification title */
   title: string;
-  /** Notification icon @defaultValue `<Icon.Info />` */
+  /** Notification icon @defaultValue `<Icon.InfoCircle />` */
   icon?: React.ReactNode;
+  /** Notification background */
+  isFilled?: boolean;
   /** Notification message */
   children?: string | React.ReactNode;
 }
@@ -20,6 +22,9 @@ interface Props
   title: string;
 }
 
+// TODO: Notification: add action buttons
+// TODO: Notification: floating with max width
+
 /**
  * Use `notification` to draw a user's attention. There are five variants `primary`, `secondary`, `success`, `error`, and `warning`.
  */
@@ -27,13 +32,19 @@ export const Notification: React.FC<Props> = ({
   variant,
   title,
   icon,
+  isFilled,
   children,
 }: NotificationProps) => {
+  const additionalClasses = [
+    `Notification--${variant}`,
+    ...(isFilled ? [`Notification--filled`] : []),
+  ].join(" ");
+
   return (
-    <div className={`Notification Notification--${variant}`}>
+    <div className={`Notification ${additionalClasses}`}>
       <div className="Notification__title">
         <div className="Notification__title__icon">
-          {icon ? icon : <Icon.Info />}
+          {icon ? icon : <Icon.InfoCircle />}
         </div>
         <div className="Notification__title__text">{title}</div>
       </div>
diff --git a/@stellar/design-system/src/components/Notification/styles.scss b/@stellar/design-system/src/components/Notification/styles.scss
index 93ab7a1e..2b37d78c 100644
--- a/@stellar/design-system/src/components/Notification/styles.scss
+++ b/@stellar/design-system/src/components/Notification/styles.scss
@@ -2,19 +2,20 @@
 
 .Notification {
   // Variables
-  --Notification-color-background: var(--color-purple-20);
-  --Notification-color-border: var(--color-purple-30);
-  --Notification-color-icon: var(--color-purple-50);
+  --Notification-color-background: var(--sds-clr-gray-01);
+  --Notification-color-border: var(--sds-clr-gray-06);
+  --Notification-color-icon: var(--sds-clr-lilac-09);
+  --Notification-color-action: var(--sds-clr-lilac-11);
 
   // Base
-  font-family: var(--font-family-base);
+  font-family: var(--sds-ff-base);
   background-color: var(--Notification-color-background);
   border: 1px solid var(--Notification-color-border);
-  border-radius: pxToRem(4px);
+  border-radius: pxToRem(8px);
   display: flex;
   flex-direction: column;
   gap: pxToRem(8px);
-  padding: pxToRem(16px);
+  padding: pxToRem(12px);
   width: 100%;
 
   &__title {
@@ -25,66 +26,90 @@
     &__icon {
       width: pxToRem(16px);
       height: pxToRem(16px);
-      margin-top: pxToRem(3px);
+      margin-top: pxToRem(2px);
       flex-shrink: 0;
 
       svg {
         width: 100%;
         height: 100%;
-        fill: var(--Notification-color-icon);
+        stroke: var(--Notification-color-icon);
       }
     }
 
     &__text {
-      color: var(--color-gray-90);
+      color: var(--sds-clr-gray-12);
       font-size: pxToRem(14px);
-      line-height: pxToRem(22px);
-      font-weight: var(--font-weight-medium);
+      line-height: pxToRem(20px);
+      font-weight: var(--sds-fw-semi-bold);
     }
   }
 
   &__message {
-    color: var(--color-gray-70);
+    color: var(--sds-clr-gray-11);
     font-size: pxToRem(14px);
-    line-height: pxToRem(22px);
-    font-weight: var(--font-weight-regular);
+    line-height: pxToRem(20px);
+    font-weight: var(--sds-fw-regular);
+    display: flex;
+    flex-direction: column;
+    gap: pxToRem(4px);
+
+    p {
+      margin-bottom: 0 !important;
+    }
 
     ul {
-      font-size: pxToRem(14px);
-      line-height: pxToRem(22px);
-      color: var(--color-gray-70);
+      font-size: inherit;
+      line-height: inherit;
+      color: inherit;
       list-style-type: disc;
     }
   }
 
   // Variant
   &--primary {
-    --Notification-color-background: var(--color-purple-20);
-    --Notification-color-border: var(--color-purple-30);
-    --Notification-color-icon: var(--color-purple-50);
+    --Notification-color-background: var(--sds-clr-gray-01);
+    --Notification-color-border: var(--sds-clr-gray-06);
+    --Notification-color-icon: var(--sds-clr-lilac-09);
+    --Notification-color-action: var(--sds-clr-lilac-11);
   }
 
   &--secondary {
-    --Notification-color-background: var(--color-gray-20);
-    --Notification-color-border: var(--color-gray-30);
-    --Notification-color-icon: var(--color-gray-50);
+    --Notification-color-background: var(--sds-clr-gray-03);
+    --Notification-color-border: var(--sds-clr-gray-06);
+    --Notification-color-icon: var(--sds-clr-lilac-09);
+    --Notification-color-action: var(--sds-clr-lilac-11);
   }
 
   &--success {
-    --Notification-color-background: var(--color-green-20);
-    --Notification-color-border: var(--color-green-30);
-    --Notification-color-icon: var(--color-green-50);
+    --Notification-color-background: var(--sds-clr-gray-01);
+    --Notification-color-border: var(--sds-clr-gray-06);
+    --Notification-color-icon: var(--sds-clr-green-09);
+    --Notification-color-action: var(--sds-clr-green-11);
+
+    &.Notification--filled {
+      --Notification-color-background: var(--sds-clr-green-03);
+    }
   }
 
   &--error {
-    --Notification-color-background: var(--color-red-20);
-    --Notification-color-border: var(--color-red-30);
-    --Notification-color-icon: var(--color-red-50);
+    --Notification-color-background: var(--sds-clr-gray-01);
+    --Notification-color-border: var(--sds-clr-gray-06);
+    --Notification-color-icon: var(--sds-clr-red-09);
+    --Notification-color-action: var(--sds-clr-red-11);
+
+    &.Notification--filled {
+      --Notification-color-background: var(--sds-clr-red-02);
+    }
   }
 
   &--warning {
-    --Notification-color-background: var(--color-yellow-20);
-    --Notification-color-border: var(--color-yellow-30);
-    --Notification-color-icon: var(--color-yellow-50);
+    --Notification-color-background: var(--sds-clr-gray-01);
+    --Notification-color-border: var(--sds-clr-gray-06);
+    --Notification-color-icon: var(--sds-clr-amber-09);
+    --Notification-color-action: var(--sds-clr-amber-11);
+
+    &.Notification--filled {
+      --Notification-color-background: var(--sds-clr-amber-03);
+    }
   }
 }
diff --git a/@stellar/design-system/src/components/Pagination/index.tsx b/@stellar/design-system/src/components/Pagination/index.tsx
index 94f29da0..c81286b3 100644
--- a/@stellar/design-system/src/components/Pagination/index.tsx
+++ b/@stellar/design-system/src/components/Pagination/index.tsx
@@ -38,7 +38,7 @@ export const Pagination: React.FC<PaginationProps> = ({
 
   const customProps = {
     customSize: "1rem",
-    customColor: "var(--color-purple-70)",
+    customColor: "var(--sds-clr-lilac-09)",
   };
 
   if (pageCount === 1) {
diff --git a/@stellar/design-system/src/components/PieProgress/index.tsx b/@stellar/design-system/src/components/PieProgress/index.tsx
index 88a947d9..e18bf7e8 100644
--- a/@stellar/design-system/src/components/PieProgress/index.tsx
+++ b/@stellar/design-system/src/components/PieProgress/index.tsx
@@ -1,5 +1,7 @@
 import "./styles.scss";
 
+// TODO: remove component?
+
 interface PieProgressProps {
   total: number;
   passed: number;
@@ -22,9 +24,9 @@ export const PieProgress = ({
   const passedPercentage = Math.round((passed / total) * 100);
   const failedPercentage = Math.round((failed / total) * 100);
   const backgroundPieces = `conic-gradient(
-    var(--color-green-60) ${passedPercentage}%,
-    var(--color-red-60) 0 ${passedPercentage + failedPercentage}%,
-    var(--color-gray-20) 0
+    var(--sds-clr-green-08) ${passedPercentage}%,
+    var(--sds-clr-red-08) 0 ${passedPercentage + failedPercentage}%,
+    var(--sds-clr-gray-04) 0
   )`;
 
   const customStyle = {
diff --git a/@stellar/design-system/src/components/PieProgress/styles.scss b/@stellar/design-system/src/components/PieProgress/styles.scss
index 23c724bc..434acc34 100644
--- a/@stellar/design-system/src/components/PieProgress/styles.scss
+++ b/@stellar/design-system/src/components/PieProgress/styles.scss
@@ -3,7 +3,7 @@
   --PieProgress-inner-size: calc(
     var(--PieProgress-size) - (var(--PieProgress-size) * 0.3)
   );
-  --PieProgress-background-color: var(--color-gray-20);
+  --PieProgress-background-color: var(--sds-clr-gray-04);
 
   width: var(--PieProgress-size);
   height: var(--PieProgress-size);
diff --git a/@stellar/design-system/src/components/Profile/index.tsx b/@stellar/design-system/src/components/Profile/index.tsx
index b0296487..05823b7a 100644
--- a/@stellar/design-system/src/components/Profile/index.tsx
+++ b/@stellar/design-system/src/components/Profile/index.tsx
@@ -1,3 +1,4 @@
+import { cloneElement } from "react";
 import { Avatar } from "../Avatar";
 import { CopyText } from "../CopyText";
 import { Icon } from "../../icons";
@@ -8,7 +9,7 @@ export interface ProfileProps {
   /** Public Stellar address */
   publicAddress: string;
   /** Size of the component */
-  size: "md" | "sm" | "xs";
+  size: "sm" | "md" | "lg";
   /** Federated address to show in place of Stellar address */
   federatedAddress?: string;
   /** Shorten Stellar or federated address */
@@ -21,6 +22,8 @@ export interface ProfileProps {
   hideAvatar?: boolean;
   /** Add copy address functionality */
   isCopy?: boolean;
+  /** Provide a custom anchor element, for example, `Link` from Next.js */
+  customAnchor?: React.ReactElement;
 }
 
 /**
@@ -35,6 +38,7 @@ export const Profile: React.FC<ProfileProps> = ({
   href,
   hideAvatar,
   isCopy,
+  customAnchor,
 }: ProfileProps) => {
   const address = federatedAddress ?? publicAddress;
   const additionalClasses = [
@@ -58,6 +62,9 @@ export const Profile: React.FC<ProfileProps> = ({
     if (onClick) {
       return <button {...componentProps} onClick={onClick} />;
     } else if (href) {
+      if (customAnchor) {
+        return cloneElement(customAnchor, { ...componentProps, href });
+      }
       // eslint-disable-next-line jsx-a11y/anchor-has-content
       return <a {...componentProps} href={href} />;
     }
@@ -68,7 +75,7 @@ export const Profile: React.FC<ProfileProps> = ({
           <div {...componentProps}>
             {props.children}{" "}
             <div className="Profile--copy__icon">
-              <Icon.ContentCopy />
+              <Icon.Copy01 />
             </div>
           </div>
         </CopyText>
@@ -80,7 +87,7 @@ export const Profile: React.FC<ProfileProps> = ({
 
   return (
     <Component>
-      {hideAvatar ? null : <Avatar publicAddress={publicAddress} />}
+      {hideAvatar ? null : <Avatar size={size} publicAddress={publicAddress} />}
 
       <div className="Profile__address" title={address}>
         {isShort ? shortenAddress(address) : address}
diff --git a/@stellar/design-system/src/components/Profile/styles.scss b/@stellar/design-system/src/components/Profile/styles.scss
index 67b5adda..70af41e9 100644
--- a/@stellar/design-system/src/components/Profile/styles.scss
+++ b/@stellar/design-system/src/components/Profile/styles.scss
@@ -2,22 +2,24 @@
 
 .Profile {
   // Variables
-  --Profile-color-background-default: var(--color-gray-00);
-  --Profile-color-border-default: var(--color-gray-30);
+  --Profile-color-background-default: var(--sds-clr-gray-01);
+  --Profile-color-border-default: var(--sds-clr-gray-06);
 
-  --Profile-color-background-hover: var(--color-gray-10);
-  --Profile-color-border-hover: var(--color-gray-40);
+  --Profile-color-background-hover: var(--sds-clr-gray-04);
+  --Profile-color-border-hover: var(--sds-clr-gray-06);
 
-  --Profile-color-background-active: var(--color-gray-20);
-  --Profile-color-border-active: var(--color-gray-50);
+  --Profile-color-background-active: var(--sds-clr-gray-04);
+  --Profile-color-border-active: var(--sds-clr-gray-06);
 
-  --Profile-font-size: #{pxToRem(16px)};
-  --Profile-line-height: #{pxToRem(24px)};
-  --Profile-gap: #{pxToRem(8px)};
-  --Profile-padding-vertical: #{pxToRem(6px)};
-  --Profile-padding-horizontal: #{pxToRem(12px)};
-  --Profile-avatar: #{pxToRem(24px)};
-  --Profile-button-avatar: #{pxToRem(20px)};
+  --Profile-box-shadow-color: var(--sds-clr-gray-05);
+
+  --Profile-font-size: #{pxToRem(12px)};
+  --Profile-line-height: #{pxToRem(16px)};
+  --Profile-border-radius: #{pxToRem(4px)};
+  --Profile-gap: #{pxToRem(4px)};
+  --Profile-padding-vertical: #{pxToRem(4px)};
+  --Profile-padding-horizontal: #{pxToRem(8px)};
+  --Profile-box-shadow-size: 0;
 
   display: flex;
   align-items: center;
@@ -25,32 +27,27 @@
   font-size: var(--Profile-font-size);
   line-height: var(--Profile-line-height);
   padding: 0;
-  color: var(--color-gray-80);
-
-  .Avatar {
-    --Avatar-size: var(--Profile-avatar);
-  }
+  color: var(--sds-clr-gray-12);
 
   &__address {
     word-break: break-all;
-    font-weight: var(--font-weight-regular);
-    font-family: var(--font-family-monospace);
+    font-weight: var(--sds-fw-regular);
+    font-family: var(--sds-ff-monospace);
   }
 
   &--button {
-    transition: color var(--anim-transition-default),
-      background-color var(--anim-transition-default),
-      border-color var(--anim-transition-default);
+    transition: color var(--sds-anim-transition-default),
+      background-color var(--sds-anim-transition-default),
+      border-color var(--sds-anim-transition-default),
+      box-shadow var(--sds-anim-transition-default);
     padding: var(--Profile-padding-vertical) var(--Profile-padding-horizontal);
     background-color: var(--Profile-color-background-default);
     border: 1px solid var(--Profile-color-border-default);
-    border-radius: pxToRem(4px);
+    border-radius: var(--Profile-border-radius);
+    box-shadow: 0 0 0 var(--Profile-box-shadow-size)
+      var(--Profile-box-shadow-color);
     cursor: pointer;
 
-    .Avatar {
-      --Avatar-size: var(--Profile-button-avatar);
-    }
-
     @media (hover: hover) {
       &:hover {
         background-color: var(--Profile-color-background-hover);
@@ -58,30 +55,31 @@
       }
     }
 
-    &:active {
+    &:focus {
+      --Profile-box-shadow-size: #{pxToRem(4px)};
       background-color: var(--Profile-color-background-active);
       border-color: var(--Profile-color-border-active);
     }
   }
 
   &--link {
-    transition: color var(--anim-transition-default),
-      background-color var(--anim-transition-default),
-      border-color var(--anim-transition-default);
+    transition: color var(--sds-anim-transition-default),
+      background-color var(--sds-anim-transition-default),
+      border-color var(--sds-anim-transition-default);
     text-decoration: none;
     cursor: pointer;
 
     @media (hover: hover) {
       &:hover {
-        color: var(--color-gray-70);
+        color: var(--sds-clr-gray-11);
       }
     }
   }
 
   &--copy {
-    transition: color var(--anim-transition-default),
-      background-color var(--anim-transition-default),
-      border-color var(--anim-transition-default);
+    transition: color var(--sds-anim-transition-default),
+      background-color var(--sds-anim-transition-default),
+      border-color var(--sds-anim-transition-default);
     text-decoration: none;
     cursor: pointer;
 
@@ -90,45 +88,42 @@
         display: block;
         width: calc(var(--Profile-font-size) - 2px);
         height: calc(var(--Profile-font-size) - 2px);
-        fill: var(--color-gray-50);
+        stroke: var(--sds-clr-gray-10);
       }
     }
 
     @media (hover: hover) {
       &:hover {
-        color: var(--color-gray-70);
+        color: var(--sds-clr-gray-11);
       }
     }
   }
 
   // Size
-  &--md {
-    --Profile-font-size: #{pxToRem(16px)};
-    --Profile-line-height: #{pxToRem(24px)};
-    --Profile-gap: #{pxToRem(8px)};
-    --Profile-padding-vertical: #{pxToRem(8px)};
-    --Profile-padding-horizontal: #{pxToRem(12px)};
-    --Profile-avatar: #{pxToRem(24px)};
-    --Profile-button-avatar: #{pxToRem(20px)};
+  &--sm {
+    --Profile-font-size: #{pxToRem(12px)};
+    --Profile-line-height: #{pxToRem(16px)};
+    --Profile-border-radius: #{pxToRem(4px)};
+    --Profile-gap: #{pxToRem(4px)};
+    --Profile-padding-vertical: #{pxToRem(4px)};
+    --Profile-padding-horizontal: #{pxToRem(8px)};
   }
 
-  &--sm {
+  &--md {
     --Profile-font-size: #{pxToRem(14px)};
-    --Profile-line-height: #{pxToRem(22px)};
+    --Profile-line-height: #{pxToRem(20px)};
+    --Profile-border-radius: #{pxToRem(6px)};
     --Profile-gap: #{pxToRem(6px)};
     --Profile-padding-vertical: #{pxToRem(6px)};
     --Profile-padding-horizontal: #{pxToRem(10px)};
-    --Profile-avatar: #{pxToRem(22px)};
-    --Profile-button-avatar: #{pxToRem(18px)};
   }
 
-  &--xs {
-    --Profile-font-size: #{pxToRem(12px)};
-    --Profile-line-height: #{pxToRem(20px)};
-    --Profile-gap: #{pxToRem(4px)};
-    --Profile-padding-vertical: #{pxToRem(4px)};
-    --Profile-padding-horizontal: #{pxToRem(8px)};
-    --Profile-avatar: #{pxToRem(20px)};
-    --Profile-button-avatar: #{pxToRem(16px)};
+  &--lg {
+    --Profile-font-size: #{pxToRem(16px)};
+    --Profile-line-height: #{pxToRem(24px)};
+    --Profile-border-radius: #{pxToRem(8px)};
+    --Profile-gap: #{pxToRem(8px)};
+    --Profile-padding-vertical: #{pxToRem(8px)};
+    --Profile-padding-horizontal: #{pxToRem(12px)};
   }
 }
diff --git a/@stellar/design-system/src/components/ProjectLogo/index.tsx b/@stellar/design-system/src/components/ProjectLogo/index.tsx
index 0e8b2480..12f3e678 100644
--- a/@stellar/design-system/src/components/ProjectLogo/index.tsx
+++ b/@stellar/design-system/src/components/ProjectLogo/index.tsx
@@ -1,6 +1,7 @@
-import React from "react";
-import "./styles.scss";
+import React, { cloneElement } from "react";
+import { Badge } from "../Badge";
 import { Logo } from "../../logos";
+import "./styles.scss";
 
 /** */
 export interface ProjectLogoProps {
@@ -8,6 +9,8 @@ export interface ProjectLogoProps {
   title?: string;
   /** Project’s website link @defaultValue `/` */
   link?: string;
+  /** Provide a custom anchor element, for example, `Link` from Next.js */
+  customAnchor?: React.ReactElement;
 }
 
 /**
@@ -16,13 +19,33 @@ export interface ProjectLogoProps {
 export const ProjectLogo: React.FC<ProjectLogoProps> = ({
   title,
   link = "/",
-}) => (
-  <div className="ProjectLogo">
-    <a href={link} rel="noreferrer noopener">
-      <Logo.Stellar />
-    </a>
-    {title ? <div className="ProjectLogo__title">{title}</div> : null}
-  </div>
-);
+  customAnchor,
+}) => {
+  const AnchorComponent = () => {
+    const anchorProps = {
+      href: link,
+      rel: "noreferrer noopener",
+      children: <Logo.Stellar />,
+    };
+
+    if (customAnchor) {
+      return cloneElement(customAnchor, anchorProps);
+    }
+
+    // eslint-disable-next-line jsx-a11y/anchor-has-content
+    return <a {...anchorProps} />;
+  };
+
+  return (
+    <div className="ProjectLogo">
+      <AnchorComponent />
+      {title ? (
+        <Badge variant="secondary" size="md">
+          {title}
+        </Badge>
+      ) : null}
+    </div>
+  );
+};
 
 ProjectLogo.displayName = "ProjectLogo";
diff --git a/@stellar/design-system/src/components/ProjectLogo/styles.scss b/@stellar/design-system/src/components/ProjectLogo/styles.scss
index 3318dc9d..cc443c84 100644
--- a/@stellar/design-system/src/components/ProjectLogo/styles.scss
+++ b/@stellar/design-system/src/components/ProjectLogo/styles.scss
@@ -18,18 +18,7 @@
     svg {
       height: 100%;
       width: 6rem;
-      fill: var(--color-gray-90);
+      fill: var(--sds-clr-base-01);
     }
   }
-
-  &__title {
-    background-color: var(--color-purple-60);
-    color: var(--color-white);
-    text-transform: uppercase;
-    font-size: 0.875rem;
-    line-height: 1.125rem;
-    font-weight: var(--font-weight-medium);
-    padding: 0.2rem 0.375rem;
-    border-radius: 0.25rem;
-  }
 }
diff --git a/@stellar/design-system/src/components/RadioButton/index.tsx b/@stellar/design-system/src/components/RadioButton/index.tsx
index bff9332e..7690cd48 100644
--- a/@stellar/design-system/src/components/RadioButton/index.tsx
+++ b/@stellar/design-system/src/components/RadioButton/index.tsx
@@ -9,7 +9,7 @@ export interface RadioButtonProps {
   label: string | React.ReactNode;
   // Note: cannot use "size" here because it's input's native property
   /** Size of the radio button */
-  fieldSize: "md" | "sm" | "xs";
+  fieldSize: "sm" | "md" | "lg";
 }
 
 interface Props
diff --git a/@stellar/design-system/src/components/RadioButton/styles.scss b/@stellar/design-system/src/components/RadioButton/styles.scss
index e80a6c64..30c8ca7f 100644
--- a/@stellar/design-system/src/components/RadioButton/styles.scss
+++ b/@stellar/design-system/src/components/RadioButton/styles.scss
@@ -1,18 +1,18 @@
 @use "../../utils.scss" as *;
 
 .RadioButton {
-  // Color
-  --RadioButton-color-background: var(--color-gray-10);
-  --RadioButton-color-border: var(--color-gray-50);
-  --RadioButton-color-icon: var(--color-gray-00);
-  --RadioButton-color-text: var(--color-gray-80);
-
-  // Size
-  --RadioButton-size: #{pxToRem(16px)};
-  --RadioButton-icon-size: #{pxToRem(8px)};
+  --RadioButton-color-background: var(--sds-input-color-background-default);
+  --RadioButton-color-border: var(--sds-input-color-border-default);
+  --RadioButton-color-icon: var(--sds-input-color-background-default);
+
+  --RadioButton-size: #{pxToRem(14px)};
+  --RadioButton-icon-size: #{pxToRem(6px)};
   --RadioButton-horizontal-gap: #{pxToRem(8px)};
-  --RadioButton-font-size: #{pxToRem(14px)};
-  --RadioButton-line-height: #{pxToRem(22px)};
+  --RadioButton-font-size: #{pxToRem(12px)};
+  --RadioButton-line-height: #{pxToRem(18px)};
+
+  --RadioButton-box-shadow-size: 0;
+  --RadioButton-box-shadow-color: var(--sds-input-box-shadow-color-default);
 
   display: flex;
   align-items: center;
@@ -23,30 +23,32 @@
     &:hover {
       input[type="radio"] {
         & + label {
-          --RadioButton-color-border: var(--color-gray-60);
+          --RadioButton-color-border: var(
+            --sds-input-color-border-default-hover
+          );
         }
       }
     }
   }
 
-  &--md {
-    --RadioButton-size: #{pxToRem(18px)};
-    --RadioButton-icon-size: #{pxToRem(10px)};
-    --RadioButton-font-size: #{pxToRem(16px)};
-    --RadioButton-line-height: #{pxToRem(24px)};
+  &--sm {
+    --RadioButton-size: #{pxToRem(14px)};
+    --RadioButton-icon-size: #{pxToRem(6px)};
+    --RadioButton-font-size: #{pxToRem(12px)};
+    --RadioButton-line-height: #{pxToRem(18px)};
   }
 
-  &--sm {
+  &--md {
     --RadioButton-size: #{pxToRem(16px)};
     --RadioButton-icon-size: #{pxToRem(8px)};
-    --RadioButton-font-size: #{pxToRem(14px)};
-    --RadioButton-line-height: #{pxToRem(22px)};
+    --RadioButton-font-size: #{pxToRem(12px)};
+    --RadioButton-line-height: #{pxToRem(18px)};
   }
 
-  &--xs {
-    --RadioButton-size: #{pxToRem(14px)};
-    --RadioButton-icon-size: #{pxToRem(6px)};
-    --RadioButton-font-size: #{pxToRem(12px)};
+  &--lg {
+    --RadioButton-size: #{pxToRem(18px)};
+    --RadioButton-icon-size: #{pxToRem(10px)};
+    --RadioButton-font-size: #{pxToRem(14px)};
     --RadioButton-line-height: #{pxToRem(20px)};
   }
 
@@ -56,24 +58,30 @@
     z-index: -1;
 
     &:checked + label {
-      --RadioButton-color-background: var(--color-purple-60);
-      --RadioButton-color-border: var(--color-purple-70);
+      --RadioButton-color-background: var(--sds-clr-lilac-09);
+      --RadioButton-color-border: var(--sds-clr-lilac-09);
 
       span::before {
         opacity: 1;
       }
     }
 
+    &:focus + label {
+      --RadioButton-box-shadow-size: #{pxToRem(2px)};
+    }
+
     &:disabled + label {
-      --RadioButton-color-background: var(--color-gray-40);
-      --RadioButton-color-border: var(--color-gray-50);
+      --RadioButton-color-background: var(
+        --sds-input-color-background-disabled
+      );
+      --RadioButton-color-border: var(--sds-input-color-border-disabled);
       cursor: not-allowed;
     }
 
     &:checked:disabled + label {
-      --RadioButton-color-background: var(--color-gray-40);
-      --RadioButton-color-border: var(--color-gray-50);
-      --RadioButton-color-icon: var(--color-gray-50);
+      --RadioButton-color-background: var(--sds-clr-gray-04);
+      --RadioButton-color-border: var(--sds-input-color-border-disabled);
+      --RadioButton-color-icon: var(--sds-clr-gray-09);
       cursor: not-allowed;
     }
   }
@@ -81,11 +89,12 @@
   label {
     font-size: var(--RadioButton-font-size);
     line-height: var(--RadioButton-line-height);
-    font-weight: var(--font-weight-medium);
+    font-weight: var(--sds-fw-medium);
     flex: 1;
     position: relative;
     display: flex;
     gap: var(--RadioButton-horizontal-gap);
+    color: var(--sds-clr-gray-12);
 
     & > span {
       display: flex;
@@ -97,11 +106,14 @@
       border: 1px solid var(--RadioButton-color-border);
       background-color: var(--RadioButton-color-background);
       border-radius: calc(var(--RadioButton-size) / 2);
+      box-shadow: 0 0 0 var(--RadioButton-box-shadow-size)
+        var(--RadioButton-box-shadow-color);
       margin-top: calc(
         (var(--RadioButton-line-height) - var(--RadioButton-size)) / 2
       );
-      transition: background-color var(--anim-transition-default),
-        border-color var(--anim-transition-default);
+      transition: background-color var(--sds-anim-transition-default),
+        border-color var(--sds-anim-transition-default),
+        box-shadow var(--sds-anim-transition-default);
 
       &::before {
         display: block;
diff --git a/@stellar/design-system/src/components/Select/index.tsx b/@stellar/design-system/src/components/Select/index.tsx
index 681e2e86..4d9284ae 100644
--- a/@stellar/design-system/src/components/Select/index.tsx
+++ b/@stellar/design-system/src/components/Select/index.tsx
@@ -10,23 +10,27 @@ export interface SelectProps {
   id: string;
   // Note: cannot use "size" here because it's input's native property
   /** Size of the select */
-  fieldSize: "md" | "sm" | "xs";
+  fieldSize: "sm" | "md" | "lg";
   /** Select options or optgroup with options */
   children: React.ReactNode;
   /** Label of the select */
   label?: string | React.ReactNode;
+  /** Adds suffix to the label */
+  labelSuffix?: string | React.ReactNode;
   /** Note message of the select */
   note?: string | React.ReactNode;
   /** Error message of the select */
   error?: string | string;
+  /** Success message of the input */
+  success?: string | React.ReactNode;
+  /** Info text tooltip */
+  infoText?: string | React.ReactNode;
+  /** External link to open in new window */
+  infoLink?: string;
   /** Make label uppercase */
   isLabelUppercase?: boolean;
-  /** Pill shaped select */
-  isPill?: boolean;
   /** Select error without a message */
   isError?: boolean;
-  /** Select with extra padding */
-  isExtraPadding?: boolean;
   /** Use a specific select rather than a generic HTML select (useful for Formik or otherwise controlled selects) */
   customSelect?: React.ReactElement;
 }
@@ -46,12 +50,14 @@ export const Select: React.FC<Props> = ({
   fieldSize,
   children,
   label,
+  labelSuffix,
   note,
   error,
+  success,
+  infoText,
+  infoLink,
   isLabelUppercase,
-  isPill,
   isError,
-  isExtraPadding,
   customSelect,
   ...props
 }: Props) => {
@@ -59,8 +65,6 @@ export const Select: React.FC<Props> = ({
     `Select--${fieldSize}`,
     ...(props.disabled ? ["Select--disabled"] : []),
     ...(isError || error ? ["Select--error"] : []),
-    ...(isPill ? ["Select--pill"] : []),
-    ...(isExtraPadding ? ["Select--extra-padding"] : []),
   ].join(" ");
 
   const baseSelectProps = {
@@ -74,7 +78,10 @@ export const Select: React.FC<Props> = ({
         <Label
           htmlFor={id}
           isUppercase={isLabelUppercase}
-          size={fieldSize === "xs" ? "xs" : "sm"}
+          size={fieldSize}
+          labelSuffix={labelSuffix}
+          infoText={infoText}
+          infoLink={infoLink}
         >
           {label}
         </Label>
@@ -95,8 +102,17 @@ export const Select: React.FC<Props> = ({
         )}
       </div>
 
-      {note && <FieldNote>{note}</FieldNote>}
-      {error && <FieldNote variant="error">{error}</FieldNote>}
+      {note && <FieldNote size={fieldSize}>{note}</FieldNote>}
+      {error && (
+        <FieldNote size={fieldSize} variant="error">
+          {error}
+        </FieldNote>
+      )}
+      {success && (
+        <FieldNote size={fieldSize} variant="success">
+          {success}
+        </FieldNote>
+      )}
     </div>
   );
 };
diff --git a/@stellar/design-system/src/components/Select/styles.scss b/@stellar/design-system/src/components/Select/styles.scss
index cc265893..3e31a95d 100644
--- a/@stellar/design-system/src/components/Select/styles.scss
+++ b/@stellar/design-system/src/components/Select/styles.scss
@@ -2,93 +2,69 @@
 
 .Select {
   // Color
-  --Select-color-background: var(--color-gray-00);
-  --Select-color-background-option: var(--color-gray-00);
-  --Select-color-border: var(--color-gray-30);
-  --Select-color-border-hover: var(--color-gray-40);
-  --Select-color-border-focus: var(--color-gray-50);
-  --Select-color-text: var(--color-gray-80);
+  --Select-color-background: var(--sds-clr-gray-01);
+  --Select-color-background-option: var(--sds-clr-gray-01);
+  --Select-color-border: var(--sds-clr-gray-06);
+  --Select-color-border-hover: var(--sds-clr-gray-06);
+  --Select-color-border-focus: var(--sds-clr-gray-06);
+  --Select-color-text: var(--sds-clr-gray-12);
+  --Select-color-icon: var(--sds-clr-gray-09);
 
   // Size
-  --Select-font-size: #{pxToRem(16px)};
-  --Select-line-height: #{pxToRem(24px)};
-  --Select-padding-vertical: #{pxToRem(8px)};
-  --Select-padding-horizontal: #{pxToRem(12px)};
-  --Select-gap: #{pxToRem(8px)};
+  --Select-font-size: #{pxToRem(12px)};
+  --Select-line-height: #{pxToRem(18px)};
+  --Select-padding-vertical: #{pxToRem(4px)};
+  --Select-padding-horizontal: #{pxToRem(10px)};
+  --Select-gap: #{pxToRem(6px)};
   --Select-border-radius: #{pxToRem(4px)};
-  --Select-note-font-size: #{pxToRem(14px)};
-  --Select-note-line-height: #{pxToRem(22px)};
+
+  --Select-box-shadow-size: 0;
+  --Select-box-shadow-color: var(--sds-input-box-shadow-color-default);
 
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: var(--Select-gap);
 
-  &--md {
-    --Select-font-size: #{pxToRem(16px)};
-    --Select-line-height: #{pxToRem(24px)};
-    --Select-padding-vertical: #{pxToRem(8px)};
-    --Select-padding-horizontal: #{pxToRem(12px)};
-    --Select-gap: #{pxToRem(8px)};
-    --Select-note-font-size: #{pxToRem(14px)};
-    --Select-note-line-height: #{pxToRem(22px)};
-
-    &.Select--pill {
-      --Select-padding-horizontal: #{pxToRem(14px)};
-    }
-
-    &.Select--extra-padding {
-      --Select-padding-vertical: #{pxToRem(12px)};
-      --Select-padding-horizontal: #{pxToRem(16px)};
-    }
-  }
-
   &--sm {
-    --Select-font-size: #{pxToRem(14px)};
-    --Select-line-height: #{pxToRem(22px)};
-    --Select-padding-vertical: #{pxToRem(6px)};
+    --Select-font-size: #{pxToRem(12px)};
+    --Select-line-height: #{pxToRem(18px)};
+    --Select-padding-vertical: #{pxToRem(4px)};
     --Select-padding-horizontal: #{pxToRem(10px)};
     --Select-gap: #{pxToRem(6px)};
-    --Select-note-font-size: #{pxToRem(14px)};
-    --Select-note-line-height: #{pxToRem(22px)};
-
-    &.Select--pill {
-      --Select-padding-horizontal: #{pxToRem(12px)};
-    }
-
-    &.Select--extra-padding {
-      --Select-padding-vertical: #{pxToRem(10px)};
-      --Select-padding-horizontal: #{pxToRem(14px)};
-    }
+    --Select-border-radius: #{pxToRem(4px)};
   }
 
-  &--xs {
-    --Select-font-size: #{pxToRem(12px)};
+  &--md {
+    --Select-font-size: #{pxToRem(14px)};
     --Select-line-height: #{pxToRem(20px)};
-    --Select-padding-vertical: #{pxToRem(4px)};
-    --Select-padding-horizontal: #{pxToRem(8px)};
-    --Select-gap: #{pxToRem(4px)};
-    --Select-note-font-size: #{pxToRem(12px)};
-    --Select-note-line-height: #{pxToRem(20px)};
-
-    &.Select--pill {
-      --Select-padding-horizontal: #{pxToRem(10px)};
-    }
+    --Select-padding-vertical: #{pxToRem(6px)};
+    --Select-padding-horizontal: #{pxToRem(12px)};
+    --Select-gap: #{pxToRem(6px)};
+    --Select-border-radius: #{pxToRem(6px)};
+  }
 
-    &.Select--extra-padding {
-      --Select-padding-vertical: #{pxToRem(8px)};
-      --Select-padding-horizontal: #{pxToRem(12px)};
-    }
+  &--lg {
+    --Select-font-size: #{pxToRem(16px)};
+    --Select-line-height: #{pxToRem(24px)};
+    --Select-padding-vertical: #{pxToRem(8px)};
+    --Select-padding-horizontal: #{pxToRem(14px)};
+    --Select-gap: #{pxToRem(8px)};
+    --Select-border-radius: #{pxToRem(8px)};
   }
 
   &__container {
     position: relative;
-    font-family: var(--font-family-base);
+    font-family: var(--sds-ff-base);
     background-color: var(--Select-color-background);
     border: 1px solid var(--Select-color-border);
     color: var(--Select-color-text);
     border-radius: var(--Select-border-radius);
-    transition: border-color var(--anim-transition-default);
+    box-shadow: 0 0 0 var(--Select-box-shadow-size)
+      var(--Select-box-shadow-color);
+    transition:
+      border-color var(--sds-anim-transition-default),
+      box-shadow var(--sds-anim-transition-default);
 
     select {
       appearance: none;
@@ -102,16 +78,17 @@
       padding: var(--Select-padding-vertical) var(--Select-padding-horizontal);
       font-size: var(--Select-font-size);
       line-height: var(--Select-line-height);
+      font-weight: var(--sds-fw-regular);
+      outline: none;
 
       option {
         background-color: var(--Select-color-background-option);
         color: var(--Select-color-text);
       }
+    }
 
-      &:focus-visible {
-        outline: 1px solid var(--Select-color-border-focus);
-        border-color: transparent;
-      }
+    &:has(select:focus-visible) {
+      --Select-box-shadow-size: #{pxToRem(4px)};
     }
 
     @media (hover: hover) {
@@ -133,48 +110,46 @@
     pointer-events: none;
 
     svg {
-      fill: currentColor;
+      stroke: var(--Select-color-icon);
       width: 100%;
       height: 100%;
     }
   }
 
   &--error {
-    --Select-color-background: var(--color-red-20);
-    --Select-color-border: var(--color-red-60);
-    --Select-color-text: var(--color-gray-80);
+    --Select-color-background: var(--sds-input-color-background-error);
+    --Select-color-border: var(--sds-input-color-border-error);
+    --Select-color-text: var(--sds-input-color-text-default);
 
     .Select__container {
-      select {
-        &:focus-visible {
-          --Select-color-border-focus: var(--color-red-70);
-        }
+      &:has(select:focus-visible) {
+        --Select-color-border-focus: var(--sds-input-color-border-error-focus);
+        --Select-box-shadow-color: var(--sds-input-box-shadow-color-error);
       }
 
       @media (hover: hover) {
         &:hover {
-          --Select-color-border-hover: var(--color-red-50);
+          --Select-color-border-hover: var(
+            --sds-input-color-border-error-hover
+          );
         }
       }
     }
   }
 
   &--disabled {
-    --Select-color-background: var(--color-gray-40);
-    --Select-color-border: var(--color-gray-40);
-    --Select-color-text: var(--color-gray-60);
+    --Select-color-background: var(--sds-input-color-background-disabled);
+    --Select-color-border: var(--sds-input-color-border-disabled);
+    --Select-color-text: var(--sds-input-color-text-disabled);
 
     select {
       cursor: not-allowed;
-    }
-  }
-
-  &--pill {
-    --Select-border-radius: var(--Select-line-height);
-  }
 
-  .FieldNote {
-    font-size: var(--Select-note-font-size);
-    line-height: var(--Select-note-line-height);
+      @media (hover: hover) {
+        &:hover {
+          border-color: var(--sds-input-color-border-disabled);
+        }
+      }
+    }
   }
 }
diff --git a/@stellar/design-system/src/components/Table/index.tsx b/@stellar/design-system/src/components/Table/index.tsx
index 2ae394c4..5d237122 100644
--- a/@stellar/design-system/src/components/Table/index.tsx
+++ b/@stellar/design-system/src/components/Table/index.tsx
@@ -19,7 +19,7 @@ export interface TableColumnLabel {
 
 /** */
 export interface TableProps<T> {
-  /** Optional ID used for row keys @defaultValue table */
+  /** Optional ID used for row keys @defaultValue `table` */
   id?: string;
   /** Data to display in table */
   data: T[];
@@ -33,7 +33,7 @@ export interface TableProps<T> {
   hideNumberColumn?: boolean;
   /** Set table in loading state */
   isLoading?: boolean;
-  /** Table empty message @defaultValue No data to show */
+  /** Table empty message @defaultValue `No data to show` */
   emptyMessage?: string;
   /** Page size for pagination */
   pageSize?: number;
diff --git a/@stellar/design-system/src/components/Table/styles.scss b/@stellar/design-system/src/components/Table/styles.scss
index f1fc913b..c3abfe16 100644
--- a/@stellar/design-system/src/components/Table/styles.scss
+++ b/@stellar/design-system/src/components/Table/styles.scss
@@ -3,12 +3,12 @@
   position: relative;
 
   &--loading {
-    opacity: var(--opacity-disabled-button);
+    opacity: var(--sds-opacity-disabled-button);
     pointer-events: none;
     overflow-y: hidden;
 
     .Loader {
-      --Loader-color: var(--color-purple-60);
+      --Loader-color: var(--sds-clr-lilac-08);
 
       position: absolute;
       top: 50%;
@@ -37,7 +37,7 @@
       @media (max-width: #{$bp}px) {
         // Sticky first column
         &:not(:last-child) {
-          background-color: var(--color-gray-10);
+          background-color: var(--sds-clr-gray-03);
           left: 0;
           position: sticky;
           padding-left: 1rem;
@@ -51,14 +51,14 @@
 table.Table {
   width: 100%;
   border-collapse: collapse;
-  font-size: var(--font-size-secondary);
+  font-size: var(--sds-fs-secondary);
   line-height: 1.5rem;
-  color: var(--color-gray-80);
+  color: var(--sds-clr-gray-11);
 
   th {
     line-height: 1.125rem;
-    color: var(--color-gray-90);
-    font-weight: var(--font-weight-medium);
+    color: var(--sds-clr-gray-12);
+    font-weight: var(--sds-fw-medium);
     text-transform: uppercase;
     text-align: left;
     padding-top: 1.0625rem;
@@ -67,7 +67,7 @@ table.Table {
 
   thead,
   tr:not(:last-child) {
-    border-bottom: 1px solid var(--color-gray-30);
+    border-bottom: 1px solid var(--sds-clr-gray-06);
   }
 
   th,
@@ -157,7 +157,7 @@ table.Table {
     transform: translateY(-50%);
 
     svg {
-      fill: currentColor;
+      stroke: currentColor;
       width: 100%;
       height: 100%;
     }
diff --git a/@stellar/design-system/src/components/Textarea/index.tsx b/@stellar/design-system/src/components/Textarea/index.tsx
index 280394d9..9c74920e 100644
--- a/@stellar/design-system/src/components/Textarea/index.tsx
+++ b/@stellar/design-system/src/components/Textarea/index.tsx
@@ -1,6 +1,7 @@
 import React, { cloneElement } from "react";
 import { Label } from "../Label";
 import { FieldNote } from "../utils/FieldNote";
+import { InputCopyButton } from "../utils/InputCopyButton";
 import "./styles.scss";
 
 /** Including all valid [textarea attributes](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea#attributes) */
@@ -9,21 +10,29 @@ export interface TextareaProps {
   id: string;
   // Note: cannot use "size" here because it's input's native property
   /** Size of the textarea */
-  fieldSize: "md" | "sm" | "xs";
+  fieldSize: "sm" | "md" | "lg";
   /** Content of the textarea */
   children?: string;
   /** Label of the textarea */
   label?: string | React.ReactNode;
+  /** Adds suffix to the label */
+  labelSuffix?: string | React.ReactNode;
   /** Note message of the textarea */
   note?: string | React.ReactNode;
   /** Error message of the textarea */
   error?: string | React.ReactNode;
+  /** Success message of the input */
+  success?: string | React.ReactNode;
+  /** Info text tooltip */
+  infoText?: string | React.ReactNode;
+  /** External link to open in new window */
+  infoLink?: string;
   /** Textarea error without a message */
   isError?: boolean;
   /** Make label uppercase */
   isLabelUppercase?: boolean;
-  /** Textarea with extra padding */
-  isExtraPadding?: boolean;
+  /** Show copy text button */
+  hasCopyButton?: boolean;
   /** Use a specific textarea rather than a generic HTML textarea (useful for Formik or otherwise controlled inputs) */
   customTextarea?: React.ReactElement;
 }
@@ -43,11 +52,15 @@ export const Textarea: React.FC<Props> = ({
   fieldSize,
   children = "",
   label,
+  labelSuffix,
   note,
   error,
+  success,
+  infoText,
+  infoLink,
   isError,
   isLabelUppercase,
-  isExtraPadding,
+  hasCopyButton,
   customTextarea,
   spellCheck = false,
   autoComplete = "off",
@@ -57,7 +70,6 @@ export const Textarea: React.FC<Props> = ({
     `Textarea--${fieldSize}`,
     ...(props.disabled ? ["Textarea--disabled"] : []),
     ...(isError || error ? ["Textarea--error"] : []),
-    ...(isExtraPadding ? ["Textarea--extra-padding"] : []),
   ].join(" ");
 
   const baseTextareaProps = {
@@ -67,13 +79,18 @@ export const Textarea: React.FC<Props> = ({
     autoComplete,
   };
 
+  const val = (props.value || children) as string;
+
   return (
     <div className={`Textarea ${additionalClasses}`}>
       {label && (
         <Label
           htmlFor={id}
           isUppercase={isLabelUppercase}
-          size={fieldSize === "xs" ? "xs" : "sm"}
+          size={fieldSize}
+          labelSuffix={labelSuffix}
+          infoText={infoText}
+          infoLink={infoLink}
         >
           {label}
         </Label>
@@ -83,12 +100,30 @@ export const Textarea: React.FC<Props> = ({
         cloneElement(customTextarea, { ...baseTextareaProps, ...props })
       ) : (
         <textarea {...baseTextareaProps} {...props}>
-          {children}
+          {val}
         </textarea>
       )}
 
-      {note && <FieldNote>{note}</FieldNote>}
-      {error && <FieldNote variant="error">{error}</FieldNote>}
+      {(note || error || success || hasCopyButton) && (
+        <div className="Textarea__footer">
+          <div className="Textarea__footer__notes">
+            {note && <FieldNote size={fieldSize}>{note}</FieldNote>}
+            {error && (
+              <FieldNote size={fieldSize} variant="error">
+                {error}
+              </FieldNote>
+            )}
+            {success && (
+              <FieldNote size={fieldSize} variant="success">
+                {success}
+              </FieldNote>
+            )}
+          </div>
+          {hasCopyButton ? (
+            <InputCopyButton fieldSize={fieldSize} textToCopy={val} />
+          ) : null}
+        </div>
+      )}
     </div>
   );
 };
diff --git a/@stellar/design-system/src/components/Textarea/styles.scss b/@stellar/design-system/src/components/Textarea/styles.scss
index 11188b38..2becdc41 100644
--- a/@stellar/design-system/src/components/Textarea/styles.scss
+++ b/@stellar/design-system/src/components/Textarea/styles.scss
@@ -1,85 +1,71 @@
 @use "../../utils.scss" as *;
 
 .Textarea {
-  // Color
-  --Textarea-color-background: var(--color-gray-00);
-  --Textarea-color-border: var(--color-gray-30);
-  --Textarea-color-border-hover: var(--color-gray-40);
-  --Textarea-color-border-focus: var(--color-gray-50);
-  --Textarea-color-text: var(--color-gray-80);
-
-  // Size
-  --Textarea-font-size: #{pxToRem(16px)};
-  --Textarea-line-height: #{pxToRem(24px)};
-  --Textarea-padding-vertical: #{pxToRem(8px)};
-  --Textarea-padding-horizontal: #{pxToRem(12px)};
-  --Textarea-gap: #{pxToRem(8px)};
+  --Textarea-color-background: var(--sds-input-color-background-default);
+  --Textarea-color-border: var(--sds-input-color-border-default);
+  --Textarea-color-border-hover: var(--sds-input-color-border-default-hover);
+  --Textarea-color-border-focus: var(--sds-input-color-border-default-focus);
+  --Textarea-color-text: var(--sds-input-color-text-default);
+
+  --Textarea-font-size: #{pxToRem(12px)};
+  --Textarea-line-height: #{pxToRem(18px)};
+  --Textarea-padding-vertical: #{pxToRem(6px)};
+  --Textarea-padding-horizontal: #{pxToRem(10px)};
   --Textarea-border-radius: #{pxToRem(4px)};
-  --Textarea-note-font-size: #{pxToRem(14px)};
-  --Textarea-note-line-height: #{pxToRem(22px)};
+  --Textarea-gap: #{pxToRem(8px)};
+
+  --Textarea-box-shadow-size: 0;
+  --Textarea-box-shadow-color: var(--sds-input-box-shadow-color-default);
 
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: var(--Textarea-gap);
 
-  &--md {
-    --Textarea-font-size: #{pxToRem(16px)};
-    --Textarea-line-height: #{pxToRem(24px)};
-    --Textarea-padding-vertical: #{pxToRem(8px)};
-    --Textarea-padding-horizontal: #{pxToRem(12px)};
-    --Textarea-gap: #{pxToRem(8px)};
-    --Textarea-note-font-size: #{pxToRem(14px)};
-    --Textarea-note-line-height: #{pxToRem(22px)};
-
-    &.Textarea--extra-padding {
-      --Textarea-padding-vertical: #{pxToRem(12px)};
-      --Textarea-padding-horizontal: #{pxToRem(16px)};
-    }
-  }
-
   &--sm {
-    --Textarea-font-size: #{pxToRem(14px)};
-    --Textarea-line-height: #{pxToRem(22px)};
+    --Textarea-font-size: #{pxToRem(12px)};
+    --Textarea-line-height: #{pxToRem(18px)};
     --Textarea-padding-vertical: #{pxToRem(6px)};
     --Textarea-padding-horizontal: #{pxToRem(10px)};
+    --Textarea-border-radius: #{pxToRem(4px)};
     --Textarea-gap: #{pxToRem(6px)};
-    --Textarea-note-font-size: #{pxToRem(14px)};
-    --Textarea-note-line-height: #{pxToRem(22px)};
-
-    &.Textarea--extra-padding {
-      --Textarea-padding-vertical: #{pxToRem(10px)};
-      --Textarea-padding-horizontal: #{pxToRem(14px)};
-    }
   }
 
-  &--xs {
-    --Textarea-font-size: #{pxToRem(12px)};
+  &--md {
+    --Textarea-font-size: #{pxToRem(14px)};
     --Textarea-line-height: #{pxToRem(20px)};
-    --Textarea-padding-vertical: #{pxToRem(4px)};
-    --Textarea-padding-horizontal: #{pxToRem(8px)};
-    --Textarea-gap: #{pxToRem(4px)};
-    --Textarea-note-font-size: #{pxToRem(12px)};
-    --Textarea-note-line-height: #{pxToRem(20px)};
-
-    &.Textarea--extra-padding {
-      --Textarea-padding-vertical: #{pxToRem(8px)};
-      --Textarea-padding-horizontal: #{pxToRem(12px)};
-    }
+    --Textarea-padding-vertical: #{pxToRem(8px)};
+    --Textarea-padding-horizontal: #{pxToRem(12px)};
+    --Textarea-border-radius: #{pxToRem(6px)};
+    --Textarea-gap: #{pxToRem(8px)};
+  }
+
+  &--lg {
+    --Textarea-font-size: #{pxToRem(16px)};
+    --Textarea-line-height: #{pxToRem(24px)};
+    --Textarea-padding-vertical: #{pxToRem(10px)};
+    --Textarea-padding-horizontal: #{pxToRem(14px)};
+    --Textarea-border-radius: #{pxToRem(8px)};
+    --Textarea-gap: #{pxToRem(8px)};
   }
 
   textarea {
     display: block;
     width: 100%;
-    font-family: var(--font-family-base);
+    font-family: var(--sds-ff-base);
     background-color: var(--Textarea-color-background);
     border: 1px solid var(--Textarea-color-border);
     color: var(--Textarea-color-text);
     border-radius: var(--Textarea-border-radius);
-    transition: border-color var(--anim-transition-default);
+    box-shadow: 0 0 0 var(--Textarea-box-shadow-size)
+      var(--Textarea-box-shadow-color);
     padding: var(--Textarea-padding-vertical) var(--Textarea-padding-horizontal);
     font-size: var(--Textarea-font-size);
     line-height: var(--Textarea-line-height);
+    outline: none;
+    transition:
+      border-color var(--sds-anim-transition-default),
+      box-shadow var(--sds-anim-transition-default);
 
     @media (hover: hover) {
       &:hover {
@@ -88,45 +74,62 @@
     }
 
     &:focus-visible {
-      outline: 1px solid transparent;
-      border-color: var(--Textarea-color-border-focus);
+      --Textarea-box-shadow-size: #{pxToRem(4px)};
     }
 
     &::placeholder {
-      color: var(--color-gray-60);
+      color: var(--sds-input-color-text-placeholder);
+    }
+  }
+
+  &__footer {
+    display: flex;
+    justify-content: space-between;
+    gap: var(--Textarea-gap);
+
+    &__notes {
+      display: flex;
+      flex-direction: column;
+      gap: var(--Textarea-gap);
     }
   }
 
   &--error {
-    --Textarea-color-background: var(--color-red-20);
-    --Textarea-color-border: var(--color-red-60);
-    --Textarea-color-text: var(--color-gray-80);
+    --Textarea-color-background: var(--sds-input-color-background-error);
+    --Textarea-color-border: var(--sds-input-color-border-error);
+    --Textarea-color-text: var(--sds-input-color-text-default);
 
     textarea {
       &:focus-visible {
-        --Textarea-color-border-focus: var(--color-red-70);
+        --Textarea-color-border-focus: var(
+          --sds-input-color-border-error-focus
+        );
+        --Textarea-box-shadow-color: var(--sds-input-box-shadow-color-error);
       }
     }
 
     @media (hover: hover) {
       &:hover {
-        --Textarea-color-border-hover: var(--color-red-50);
+        --Textarea-color-border-hover: var(
+          --sds-input-color-border-error-hover
+        );
       }
     }
   }
 
   &--disabled {
-    --Textarea-color-background: var(--color-gray-40);
-    --Textarea-color-border: var(--color-gray-40);
-    --Textarea-color-text: var(--color-gray-60);
+    --Textarea-color-background: var(--sds-input-color-background-disabled);
+    --Textarea-color-border: var(--sds-input-color-border-disabled);
+    --Textarea-color-text: var(--sds-input-color-text-disabled);
 
     textarea {
       cursor: not-allowed;
-    }
-  }
 
-  .FieldNote {
-    font-size: var(--Textarea-note-font-size);
-    line-height: var(--Textarea-note-line-height);
+      @media (hover: hover) {
+        &:hover {
+          border-color: var(--sds-input-color-border-disabled);
+        }
+      }
+    }
   }
 }
diff --git a/@stellar/design-system/src/components/ThemeSwitch/index.tsx b/@stellar/design-system/src/components/ThemeSwitch/index.tsx
index 99944a19..e1d5eeed 100644
--- a/@stellar/design-system/src/components/ThemeSwitch/index.tsx
+++ b/@stellar/design-system/src/components/ThemeSwitch/index.tsx
@@ -1,8 +1,7 @@
 import { useCallback, useEffect, useState } from "react";
+import { Toggle } from "../Toggle";
 import { Icon } from "../../icons";
 
-import "./styles.scss";
-
 export enum ThemeMode {
   LIGHT = "sds-theme-light",
   DARK = "sds-theme-dark",
@@ -61,9 +60,11 @@ export const ThemeSwitch = ({
     if (isDarkMode) {
       document.body.classList.remove(ThemeMode.LIGHT);
       document.body.classList.add(ThemeMode.DARK);
+      document.body.setAttribute("data-sds-theme", ThemeMode.DARK);
     } else {
       document.body.classList.remove(ThemeMode.DARK);
       document.body.classList.add(ThemeMode.LIGHT);
+      document.body.setAttribute("data-sds-theme", ThemeMode.LIGHT);
     }
   }, [disableSetThemeOnLoad, isDarkMode]);
 
@@ -86,28 +87,15 @@ export const ThemeSwitch = ({
   };
 
   return (
-    <label
-      className="ThemeSwitch"
-      htmlFor="theme-switch"
+    <Toggle
+      id="theme-switch"
+      fieldSize="md"
+      checked={isDarkMode}
+      onChange={handleSwitch}
       title={`Switch to ${isDarkMode ? "light" : "dark"} theme`}
-    >
-      <input
-        type="checkbox"
-        id="theme-switch"
-        name="theme-switch"
-        checked={isDarkMode}
-        onChange={handleSwitch}
-      />
-      <div aria-hidden="true" className="ThemeSwitch__track" />
-      <div aria-hidden="true" className="ThemeSwitch__thumb">
-        <div className="ThemeSwitch__thumb__icon" data-mode={ThemeMode.DARK}>
-          <Icon.ModeDark />
-        </div>
-        <div className="ThemeSwitch__thumb__icon" data-mode={ThemeMode.LIGHT}>
-          <Icon.ModeLight />
-        </div>
-      </div>
-    </label>
+      iconChecked={<Icon.Moon01 />}
+      iconUnchecked={<Icon.Sun />}
+    />
   );
 };
 
diff --git a/@stellar/design-system/src/components/ThemeSwitch/styles.scss b/@stellar/design-system/src/components/ThemeSwitch/styles.scss
deleted file mode 100644
index 186fcb38..00000000
--- a/@stellar/design-system/src/components/ThemeSwitch/styles.scss
+++ /dev/null
@@ -1,79 +0,0 @@
-// TODO: see, if this can be imported once globally
-@use "../../utils.scss" as *;
-
-.ThemeSwitch {
-  width: pxToRem(32px);
-  height: pxToRem(20px);
-  display: flex;
-  align-items: center;
-  margin-bottom: 0;
-  line-height: 1;
-  position: relative;
-  cursor: pointer;
-
-  &__track {
-    width: pxToRem(32px);
-    height: pxToRem(12px);
-    border-radius: pxToRem(6px);
-    background-color: var(--color-gray-40);
-    transition: background-color 0.3s;
-  }
-
-  &__thumb {
-    position: absolute;
-    width: pxToRem(20px);
-    height: pxToRem(20px);
-    border-radius: pxToRem(10px);
-    background-color: var(--color-gray-00);
-    border: 1px solid var(--color-gray-50);
-    transform: translateX(pxToRem(0));
-    transition: background-color 0.3s, transform 0.4s;
-
-    display: flex;
-    flex-direction: column;
-    align-items: center;
-    justify-content: center;
-
-    &__icon {
-      width: pxToRem(12px);
-      height: pxToRem(12px);
-      position: absolute;
-
-      &[data-mode="sds-theme-light"] {
-        opacity: 1;
-        transition: opacity 0.5s;
-      }
-
-      &[data-mode="sds-theme-dark"] {
-        opacity: 0;
-        transition: opacity 0.4s;
-      }
-    }
-
-    svg {
-      display: block;
-      width: 100%;
-      height: 100%;
-      fill: var(--color-purple-60);
-      transition: background-color 0.3s;
-    }
-  }
-
-  input {
-    display: none;
-  }
-
-  input:checked ~ .ThemeSwitch__thumb {
-    transform: translateX(pxToRem(12px));
-  }
-
-  input:checked ~ .ThemeSwitch__thumb .ThemeSwitch__thumb__icon {
-    &[data-mode="sds-theme-light"] {
-      opacity: 0;
-    }
-
-    &[data-mode="sds-theme-dark"] {
-      opacity: 1;
-    }
-  }
-}
diff --git a/@stellar/design-system/src/components/Toggle/index.tsx b/@stellar/design-system/src/components/Toggle/index.tsx
index d6f22282..f9881f5f 100644
--- a/@stellar/design-system/src/components/Toggle/index.tsx
+++ b/@stellar/design-system/src/components/Toggle/index.tsx
@@ -7,12 +7,21 @@ export interface ToggleProps {
   id: string;
   /** If `true` the toggle state is "on" */
   checked: boolean;
+  // Note: cannot use "size" here because it's input's native property
+  /** Size of the toggle */
+  fieldSize: "sm" | "md" | "lg";
   /** Use a specific input rather than a generic HTML input (useful for Formik or otherwise controlled inputs) */
   customInput?: React.ReactElement;
   /** Function to handle the toggle state change */
   onChange?: () => void;
   /** Disable the toggle */
   disabled?: boolean;
+  /** Icon to show when unchecked */
+  iconUnchecked?: React.ReactNode;
+  /** Icon to show when checked */
+  iconChecked?: React.ReactNode;
+  /** Title text */
+  title?: string;
 }
 
 interface Props
@@ -29,9 +38,13 @@ interface Props
 export const Toggle: React.FC<Props> = ({
   id,
   checked,
+  fieldSize,
   customInput,
   onChange,
   disabled,
+  iconChecked,
+  iconUnchecked,
+  title,
 }: Props) => {
   const [checkedValue, setCheckedValue] = useState(checked);
 
@@ -39,9 +52,10 @@ export const Toggle: React.FC<Props> = ({
     setCheckedValue(checked);
   }, [checked]);
 
-  const additionalClasses = [...(disabled ? ["Toggle--disabled"] : [])].join(
-    " ",
-  );
+  const additionalClasses = [
+    `Toggle--${fieldSize}`,
+    ...(disabled ? ["Toggle--disabled"] : []),
+  ].join(" ");
 
   const baseInputProps = {
     className: "Toggle__input",
@@ -52,14 +66,27 @@ export const Toggle: React.FC<Props> = ({
   };
 
   return (
-    <label className={`Toggle ${additionalClasses}`} htmlFor={id}>
+    <label className={`Toggle ${additionalClasses}`} htmlFor={id} title={title}>
       {customInput ? (
         cloneElement(customInput, { ...baseInputProps })
       ) : (
         <input checked={checkedValue} onChange={onChange} {...baseInputProps} />
       )}
 
-      <div className="Toggle__track" />
+      <div className="Toggle__track">
+        <div className="Toggle__track__thumb">
+          {iconChecked ? (
+            <div className="Toggle__track__icon Toggle__track__icon--checked">
+              {iconChecked}
+            </div>
+          ) : null}
+          {iconUnchecked ? (
+            <div className="Toggle__track__icon Toggle__track__icon--unchecked">
+              {iconUnchecked}
+            </div>
+          ) : null}
+        </div>
+      </div>
     </label>
   );
 };
diff --git a/@stellar/design-system/src/components/Toggle/styles.scss b/@stellar/design-system/src/components/Toggle/styles.scss
index be724368..d7b20192 100644
--- a/@stellar/design-system/src/components/Toggle/styles.scss
+++ b/@stellar/design-system/src/components/Toggle/styles.scss
@@ -1,47 +1,97 @@
 @use "../../utils.scss" as *;
 
 .Toggle {
+  --Toggle-track-width: #{pxToRem(28px)};
+  --Toggle-track-height: #{pxToRem(16px)};
+  --Toggle-track-padding: #{pxToRem(2px)};
   --Toggle-circle-size: #{pxToRem(12px)};
-  --Toggle-circle-offset: #{pxToRem(1px)};
+  --Toggle-circle-offset: #{pxToRem(0)};
 
   display: flex;
   align-items: center;
 
   &__track {
-    width: pxToRem(28px);
-    height: pxToRem(16px);
-    border-radius: var(--Toggle-circle-size);
-    background-color: var(--color-gray-40);
-    border: 1px solid var(--color-gray-40);
+    width: var(--Toggle-track-width);
+    height: var(--Toggle-track-height);
+    border-radius: pxToRem(100px);
+    background-color: var(--sds-clr-gray-04);
     cursor: pointer;
     display: flex;
     align-items: center;
     transition: background 0.5s;
+    padding: var(--Toggle-track-padding);
 
-    &::after {
-      display: block;
-      content: "";
+    &__thumb {
+      position: relative;
       width: var(--Toggle-circle-size);
       height: var(--Toggle-circle-size);
       border-radius: var(--Toggle-circle-size);
-      background-color: var(--color-gray-00);
-      border: 1px solid var(--color-gray-50);
+      background-color: var(--sds-clr-base-00);
       transition: all 0.4s;
       transform: translateX(var(--Toggle-circle-offset));
+      box-shadow: 0 pxToRem(1px) pxToRem(2px) pxToRem(0.5px) rgba(0, 0, 0, 0.08);
+    }
+
+    &__icon {
+      transition: opacity 0.5s;
+      width: 100%;
+      height: 100%;
+      position: absolute;
+      border-radius: var(--Toggle-circle-size);
+      overflow: hidden;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+
+      svg {
+        display: block;
+        width: 80%;
+        height: 80%;
+      }
+
+      &--checked {
+        opacity: 0;
+
+        svg {
+          stroke: var(--sds-clr-lilac-09);
+        }
+      }
+
+      &--unchecked {
+        opacity: 1;
+
+        svg {
+          stroke: var(--sds-clr-gray-09);
+        }
+      }
     }
   }
 
   &__input {
-    display: none;
+    height: 0;
+    width: 0;
+
+    &:focus-visible ~ .Toggle__track {
+      box-shadow: 0 0 0 pxToRem(2px) var(--sds-input-color-border-default-focus);
+    }
 
     &:checked ~ .Toggle__track {
-      background-color: var(--color-purple-60);
-      border-color: var(--color-purple-60);
+      background-color: var(--sds-clr-lilac-09);
+    }
 
-      &::after {
-        // 12 = 28 (track width) - 16 (circle size)
-        --Toggle-circle-offset: #{pxToRem(12px)};
-        border-color: var(--color-purple-60);
+    &:checked ~ .Toggle__track .Toggle__track__thumb {
+      // 12 = 24 (track width without padding) - 12 (circle size)
+      --Toggle-circle-offset: #{pxToRem(12px)};
+      border-color: var(--sds-clr-lilac-09);
+    }
+
+    &:checked ~ .Toggle__track .Toggle__track__icon {
+      &--checked {
+        opacity: 1;
+      }
+
+      &--unchecked {
+        opacity: 0;
       }
     }
   }
@@ -49,12 +99,56 @@
   &--disabled .Toggle__track,
   &--disabled .Toggle__input:checked ~ .Toggle__track {
     cursor: not-allowed;
-    background-color: var(--color-gray-50);
-    border-color: var(--color-gray-50);
+    background-color: var(--sds-clr-gray-05);
 
-    &::after {
-      background-color: var(--color-gray-40);
-      border-color: var(--color-gray-50);
+    &__thumb {
+      background-color: var(--sds-clr-gray-08);
+    }
+
+    &__icon {
+      svg {
+        stroke: var(--sds-clr-gray-09) !important;
+      }
+    }
+  }
+
+  // Size
+  &--sm {
+    --Toggle-track-width: #{pxToRem(28px)};
+    --Toggle-track-height: #{pxToRem(16px)};
+    --Toggle-circle-size: #{pxToRem(12px)};
+
+    .Toggle__input {
+      &:checked ~ .Toggle__track .Toggle__track__thumb {
+        // 12 = 24 (track width without padding) - 12 (circle size)
+        --Toggle-circle-offset: #{pxToRem(12px)};
+      }
+    }
+  }
+
+  &--md {
+    --Toggle-track-width: #{pxToRem(48px)};
+    --Toggle-track-height: #{pxToRem(26px)};
+    --Toggle-circle-size: #{pxToRem(22px)};
+
+    .Toggle__input {
+      &:checked ~ .Toggle__track .Toggle__track__thumb {
+        // 22 = 44 (track width without padding) - 22 (circle size)
+        --Toggle-circle-offset: #{pxToRem(22px)};
+      }
+    }
+  }
+
+  &--lg {
+    --Toggle-track-width: #{pxToRem(60px)};
+    --Toggle-track-height: #{pxToRem(32px)};
+    --Toggle-circle-size: #{pxToRem(28px)};
+
+    .Toggle__input {
+      &:checked ~ .Toggle__track .Toggle__track__thumb {
+        // 28 = 56 (track width without padding) - 28 (circle size)
+        --Toggle-circle-offset: #{pxToRem(28px)};
+      }
     }
   }
 }
diff --git a/@stellar/design-system/src/components/Tooltip/index.tsx b/@stellar/design-system/src/components/Tooltip/index.tsx
index a88eff66..05c6c7db 100644
--- a/@stellar/design-system/src/components/Tooltip/index.tsx
+++ b/@stellar/design-system/src/components/Tooltip/index.tsx
@@ -1,3 +1,4 @@
+import { useState } from "react";
 import { Floater } from "../Floater";
 import "./styles.scss";
 
@@ -5,8 +6,10 @@ import "./styles.scss";
 export interface TooltipProps {
   /** Element that shows or hides tooltip */
   triggerEl: JSX.Element;
+  /** Tooltip title */
+  title?: React.ReactNode;
   /** Content of the tooltip */
-  children: React.ReactNode;
+  children?: React.ReactNode;
   /** Placement of tooltip relative to the trigger element @defaultValue `right` */
   placement?:
     | "top"
@@ -32,19 +35,38 @@ export interface TooltipProps {
  */
 export const Tooltip: React.FC<TooltipProps> = ({
   triggerEl,
+  title,
   children,
   placement = "right",
   isVisible,
   isContrast = true,
 }: TooltipProps) => {
+  const [theme, setTheme] = useState("sds-theme-dark");
+
+  const getContrastMode = () =>
+    theme === "sds-theme-dark" ? "sds-theme-light" : "sds-theme-dark";
+
   return (
     <Floater
       placement={placement}
       triggerEl={triggerEl}
       isVisible={isVisible}
       isContrast={isContrast}
+      showArrow={true}
+      callback={(isOpen) => {
+        if (isOpen) {
+          const theme = document.body.getAttribute("data-sds-theme");
+
+          if (theme) {
+            setTheme(theme);
+          }
+        }
+      }}
     >
-      <div className="Tooltip">{children}</div>
+      <div className={`Tooltip ${isContrast ? getContrastMode() : ""}`}>
+        {title ? <div className="Tooltip__title">{title}</div> : null}
+        {children ? <div className="Tooltip__message">{children}</div> : null}
+      </div>
     </Floater>
   );
 };
diff --git a/@stellar/design-system/src/components/Tooltip/styles.scss b/@stellar/design-system/src/components/Tooltip/styles.scss
index 8e6e3c39..877fb3ca 100644
--- a/@stellar/design-system/src/components/Tooltip/styles.scss
+++ b/@stellar/design-system/src/components/Tooltip/styles.scss
@@ -1,10 +1,24 @@
 @use "../../utils.scss" as *;
 
 .Tooltip {
-  padding: pxToRem(8px) pxToRem(12px);
+  padding: pxToRem(12px);
   width: max-content;
-  max-width: pxToRem(232px);
-  font-size: pxToRem(12px);
-  line-height: pxToRem(20px);
-  font-weight: var(--font-weight-medium);
+  max-width: pxToRem(240px);
+  display: flex;
+  flex-direction: column;
+  gap: pxToRem(8px);
+
+  &__title {
+    font-size: pxToRem(12px);
+    line-height: pxToRem(18px);
+    font-weight: var(--sds-fw-semi-bold);
+    color: var(--sds-clr-gray-12);
+  }
+
+  &__message {
+    font-size: pxToRem(12px);
+    line-height: pxToRem(18px);
+    font-weight: var(--sds-fw-medium);
+    color: var(--sds-clr-gray-11);
+  }
 }
diff --git a/@stellar/design-system/src/components/Typography/index.tsx b/@stellar/design-system/src/components/Typography/index.tsx
index e3755d8e..96aa8775 100644
--- a/@stellar/design-system/src/components/Typography/index.tsx
+++ b/@stellar/design-system/src/components/Typography/index.tsx
@@ -1,157 +1,175 @@
 import "./styles.scss";
 
 // =============================================================================
-// Heading
+// Display
 // =============================================================================
 /** */
-export interface HeadingProps {
-  /** Heading level h1-h6 */
-  as: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
+export interface DisplayProps {
+  /** Display as `div` or `span` @defaultValue `div` */
+  as?: "div" | "span";
   /** Additional classes */
   addlClassName?: string;
-  /** Heading size */
-  size: "xxl" | "xl" | "lg" | "md" | "sm" | "xs";
-  /** Heading text */
+  /** Display size */
+  size: "xl" | "lg" | "md" | "sm" | "xs";
+  /** Display font weight @defaultValue `regular` */
+  weight?: "bold" | "semi-bold" | "medium" | "regular";
+  /** Display text */
   children: string | React.ReactNode;
 }
 
-interface HProps
-  extends HeadingProps,
-    React.HtmlHTMLAttributes<HTMLHeadingElement> {
+interface DProps
+  extends DisplayProps,
+    React.HtmlHTMLAttributes<HTMLDivElement | HTMLSpanElement> {
   children: string | React.ReactNode;
 }
 
 /**
- * Use `Heading` for HTML headings `h1` through `h6`.
+ * Use `Display` for generic titles and captions using `div` and `span` elements.
  */
-export const Heading: React.FC<HProps> = ({
+export const Display: React.FC<DProps> = ({
   addlClassName,
-  as: HtmlTag,
+  as: HtmlTag = "div",
   size,
+  weight = "regular",
   children,
   ...props
-}): JSX.Element => (
+}) => (
   <HtmlTag
-    className={`Heading Heading--${size} ${addlClassName || ""}`}
+    className={`Display Display--${size} ${
+      weight !== "regular" ? `Display--w-${weight}` : ""
+    } ${addlClassName || ""}`}
     {...props}
   >
     {children}
   </HtmlTag>
 );
 
-Heading.displayName = "Heading";
+Display.displayName = "Display";
 
 // =============================================================================
-// Caption
+// Heading
 // =============================================================================
 /** */
-export interface CaptionProps {
-  /** Caption size */
-  size: "lg" | "md" | "sm" | "xs";
+export interface HeadingProps {
+  /** Heading level h1-h6 */
+  as: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
   /** Additional classes */
   addlClassName?: string;
-  /** Caption text */
+  /** Heading size */
+  size: "xl" | "lg" | "md" | "sm" | "xs";
+  /** Heading font weight @defaultValue `regular` */
+  weight?: "bold" | "semi-bold" | "medium" | "regular";
+  /** Heading text */
   children: string | React.ReactNode;
 }
 
-interface CProps
-  extends CaptionProps,
-    React.HtmlHTMLAttributes<HTMLDivElement> {
+interface HProps
+  extends HeadingProps,
+    React.HtmlHTMLAttributes<HTMLHeadingElement> {
   children: string | React.ReactNode;
 }
 
 /**
- * Use the `Caption` component for eyebrow subtitles paired with a title and
- * secondary accent text in elements like badges and network status.
+ * Use `Heading` for HTML headings `h1` through `h6`.
  */
-export const Caption: React.FC<CProps> = ({
+export const Heading: React.FC<HProps> = ({
   addlClassName,
+  as: HtmlTag,
   size,
+  weight = "regular",
   children,
   ...props
-}: CaptionProps) => (
-  <div className={`Caption Caption--${size} ${addlClassName || ""}`} {...props}>
+}) => (
+  <HtmlTag
+    className={`Heading Heading--${size} ${
+      weight !== "regular" ? `Heading--w-${weight}` : ""
+    } ${addlClassName || ""}`}
+    {...props}
+  >
     {children}
-  </div>
+  </HtmlTag>
 );
 
-Caption.displayName = "Caption";
+Heading.displayName = "Heading";
 
 // =============================================================================
-// Paragraph
+// Text
 // =============================================================================
 /** */
-export interface ParagraphProps {
+export interface TextProps {
+  /** Text as `p`, `div`, `span`, or `h1` through `h6` */
+  as: "p" | "div" | "span" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
   /** Additional classes */
   addlClassName?: string;
-  /** Paragraph size */
-  size: "lg" | "md" | "sm" | "xs";
-  /** Render paragraph as div */
-  asDiv?: boolean;
-  /** Paragraph text */
+  /** Text size */
+  size: "xl" | "lg" | "md" | "sm" | "xs";
+  /** Text font weight @defaultValue `regular` */
+  weight?: "bold" | "semi-bold" | "medium" | "regular";
+  /** Text content */
   children: string | React.ReactNode;
 }
 
-interface PProps
-  extends ParagraphProps,
-    React.HtmlHTMLAttributes<HTMLParagraphElement | HTMLDivElement> {
+interface TProps
+  extends TextProps,
+    React.HtmlHTMLAttributes<
+      HTMLParagraphElement | HTMLDivElement | HTMLSpanElement
+    > {
   children: string | React.ReactNode;
 }
 
 /**
- * The text paragraph is an HTML `p` (or `div`) tag, not a custom component.
+ * `Text` is an HTML `p`, `div`, `span`, or heading `h1` through `h6` element tag used to display text.
  */
-export const Paragraph: React.FC<PProps> = ({
+export const Text: React.FC<TProps> = ({
+  as: HtmlTag,
   addlClassName,
   size,
+  weight = "regular",
   children,
-  asDiv,
   ...props
-}: ParagraphProps) => {
-  const HtmlTag = asDiv ? "div" : "p";
-
-  return (
-    <HtmlTag
-      className={`Paragraph Paragraph--${size} ${addlClassName || ""}`}
-      {...props}
-    >
-      {children}
-    </HtmlTag>
-  );
-};
+}) => (
+  <HtmlTag
+    className={`Text Text--${size} ${
+      weight !== "regular" ? `Text--w-${weight}` : ""
+    } ${addlClassName || ""}`}
+    {...props}
+  >
+    {children}
+  </HtmlTag>
+);
 
-Paragraph.displayName = "Paragraph";
+Text.displayName = "Text";
 
 // =============================================================================
-// Title
+// Code
 // =============================================================================
 /** */
-export interface TitleProps {
+export interface CodeProps {
   /** Additional classes */
   addlClassName?: string;
-  /** Title size */
-  size: "lg" | "md" | "sm" | "xs";
-  /** Title text */
+  /** Code size */
+  size: "md" | "sm" | "xs";
+  /** Code content */
   children: string | React.ReactNode;
 }
 
-interface TProps extends TitleProps, React.HtmlHTMLAttributes<HTMLDivElement> {
+interface CProps extends CodeProps, React.HtmlHTMLAttributes<HTMLElement> {
   children: string | React.ReactNode;
 }
 
 /**
- * Use the `Title` component when a semantic heading is not needed. For example, in a
- * banner title, navigation item, label, etc.
+ * `Code` is an HTML `code` tag used to display text in computer code style
+ * (monospace font).
  */
-export const Title: React.FC<TProps> = ({
+export const Code: React.FC<CProps> = ({
   addlClassName,
   size,
   children,
   ...props
 }) => (
-  <div className={`Title Title--${size} ${addlClassName || ""}`} {...props}>
+  <code className={`Code Code--${size} ${addlClassName || ""}`} {...props}>
     {children}
-  </div>
+  </code>
 );
 
-Title.displayName = "Title";
+Code.displayName = "code";
diff --git a/@stellar/design-system/src/components/Typography/styles.scss b/@stellar/design-system/src/components/Typography/styles.scss
index 1207c54d..85ec2aa5 100644
--- a/@stellar/design-system/src/components/Typography/styles.scss
+++ b/@stellar/design-system/src/components/Typography/styles.scss
@@ -1,106 +1,114 @@
 @use "../../utils.scss" as *;
 
+.Display,
 .Heading {
-  font-family: var(--font-family-heading);
-  font-weight: var(--font-weight-regular);
-  letter-spacing: 0;
+  --Heading-font-size: #{pxToRem(56px)};
+
+  font-family: var(--sds-ff-heading);
+  font-weight: var(--sds-fw-regular);
+  letter-spacing: calc(var(--Heading-font-size) * 0.04 * -1);
   padding: 0;
+  margin: 0;
 
-  &--xxl {
-    font-size: pxToRem(40px);
-    line-height: pxToRem(48px);
-  }
+  // Size
   &--xl {
-    font-size: pxToRem(36px);
-    line-height: pxToRem(44px);
+    --Heading-font-size: #{pxToRem(56px)};
+    line-height: pxToRem(64px);
   }
   &--lg {
-    font-size: pxToRem(32px);
-    line-height: pxToRem(40px);
+    --Heading-font-size: #{pxToRem(48px)};
+    line-height: pxToRem(56px);
   }
   &--md {
-    font-size: pxToRem(28px);
-    line-height: pxToRem(36px);
+    --Heading-font-size: #{pxToRem(40px)};
+    line-height: pxToRem(48px);
   }
   &--sm {
-    font-size: pxToRem(24px);
-    line-height: pxToRem(32px);
+    --Heading-font-size: #{pxToRem(32px)};
+    line-height: pxToRem(40px);
   }
   &--xs {
-    font-size: pxToRem(20px);
-    line-height: pxToRem(28px);
+    --Heading-font-size: #{pxToRem(24px)};
+    line-height: pxToRem(32px);
   }
-}
 
-.Caption {
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-semi-bold);
-  text-transform: uppercase;
-  letter-spacing: 0;
-
-  &--lg {
-    font-size: pxToRem(16px);
-    line-height: pxToRem(24px);
+  // Font weight
+  &--w-bold {
+    font-weight: var(--sds-fw-bold);
   }
-  &--md {
-    font-size: pxToRem(14px);
-    line-height: pxToRem(22px);
+  &--w-semi-bold {
+    font-weight: var(--sds-fw-semi-bold);
   }
-  &--sm {
-    font-size: pxToRem(12px);
-    line-height: pxToRem(20px);
-  }
-  &--xs {
-    font-size: pxToRem(10px);
-    line-height: pxToRem(16px);
+  &--w-medium {
+    font-weight: var(--sds-fw-medium);
   }
 }
 
-p.Paragraph,
-div.Paragraph {
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-regular);
-  letter-spacing: 0;
-  padding: 0;
-  margin: 0;
+p,
+div,
+span,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+  &.Text {
+    font-family: var(--sds-ff-base);
+    font-weight: var(--sds-fw-regular);
+    letter-spacing: 0;
+    padding: 0;
+    margin: 0;
 
-  &--lg {
-    font-size: pxToRem(18px);
-    line-height: pxToRem(26px);
-  }
-  &--md {
-    font-size: pxToRem(16px);
-    line-height: pxToRem(24px);
-  }
-  &--sm {
-    font-size: pxToRem(14px);
-    line-height: pxToRem(22px);
-  }
-  &--xs {
-    font-size: pxToRem(12px);
-    line-height: pxToRem(20px);
+    &--xl {
+      font-size: pxToRem(20px);
+      line-height: pxToRem(28px);
+    }
+    &--lg {
+      font-size: pxToRem(18px);
+      line-height: pxToRem(26px);
+    }
+    &--md {
+      font-size: pxToRem(16px);
+      line-height: pxToRem(24px);
+    }
+    &--sm {
+      font-size: pxToRem(14px);
+      line-height: pxToRem(22px);
+    }
+    &--xs {
+      font-size: pxToRem(12px);
+      line-height: pxToRem(20px);
+    }
+
+    // Font weight
+    &--w-bold {
+      font-weight: var(--sds-fw-bold);
+    }
+    &--w-semi-bold {
+      font-weight: var(--sds-fw-semi-bold);
+    }
+    &--w-medium {
+      font-weight: var(--sds-fw-medium);
+    }
   }
 }
 
-.Title {
-  font-family: var(--font-family-base);
-  font-weight: var(--font-weight-medium);
+code.Code {
+  font-family: var(--sds-ff-monospace);
+  font-weight: var(--sds-fw-medium);
   letter-spacing: 0;
 
-  &--lg {
-    font-size: pxToRem(18px);
-    line-height: pxToRem(26px);
-  }
   &--md {
     font-size: pxToRem(16px);
-    line-height: pxToRem(24px);
+    line-height: pxToRem(20px);
   }
   &--sm {
     font-size: pxToRem(14px);
-    line-height: pxToRem(22px);
+    line-height: pxToRem(18px);
   }
   &--xs {
     font-size: pxToRem(12px);
-    line-height: pxToRem(20px);
+    line-height: pxToRem(16px);
   }
 }
diff --git a/@stellar/design-system/src/components/index.ts b/@stellar/design-system/src/components/index.ts
index 310fba56..348ae40b 100644
--- a/@stellar/design-system/src/components/index.ts
+++ b/@stellar/design-system/src/components/index.ts
@@ -1,4 +1,5 @@
-export * from "./AssetIcon";
+export * from "./Alert";
+export * from "./Asset";
 export * from "./Avatar";
 export * from "./Badge";
 export * from "./Banner";
@@ -10,6 +11,7 @@ export * from "./CopyText";
 export * from "./Floater";
 export * from "./IconButton";
 export * from "./Input";
+export * from "./Label";
 export * from "./Layout";
 export * from "./Loader";
 export * from "./Modal";
diff --git a/@stellar/design-system/src/components/utils/ButtonIcon/styles.scss b/@stellar/design-system/src/components/utils/ButtonIcon/styles.scss
index d690a62d..78a2d636 100644
--- a/@stellar/design-system/src/components/utils/ButtonIcon/styles.scss
+++ b/@stellar/design-system/src/components/utils/ButtonIcon/styles.scss
@@ -23,6 +23,6 @@
     position: absolute;
     top: 0;
     left: 0;
-    fill: inherit;
+    stroke: inherit;
   }
 }
diff --git a/@stellar/design-system/src/components/utils/FieldElement/styles.scss b/@stellar/design-system/src/components/utils/FieldElement/styles.scss
index bb080258..ca13a46e 100644
--- a/@stellar/design-system/src/components/utils/FieldElement/styles.scss
+++ b/@stellar/design-system/src/components/utils/FieldElement/styles.scss
@@ -1,7 +1,7 @@
 .FieldElement {
   font-size: 1rem;
   line-height: 1.5rem;
-  color: var(--color-gray-90);
+  color: var(--sds-clr-gray-11);
   display: flex;
 
   &--left {
diff --git a/@stellar/design-system/src/components/utils/FieldNote/index.tsx b/@stellar/design-system/src/components/utils/FieldNote/index.tsx
index 4171c042..1cffa47b 100644
--- a/@stellar/design-system/src/components/utils/FieldNote/index.tsx
+++ b/@stellar/design-system/src/components/utils/FieldNote/index.tsx
@@ -2,13 +2,17 @@ import React from "react";
 import "./styles.scss";
 
 interface FieldNoteProps {
-  variant?: "note" | "error";
+  variant?: "note" | "error" | "success";
+  size: "sm" | "md" | "lg";
   children: string | React.ReactNode;
 }
 
 export const FieldNote: React.FC<FieldNoteProps> = ({
   variant = "note",
+  size,
   children,
 }: FieldNoteProps) => (
-  <div className={`FieldNote FieldNote--${variant}`}>{children}</div>
+  <div className={`FieldNote FieldNote--${variant} FieldNote--${size}`}>
+    {children}
+  </div>
 );
diff --git a/@stellar/design-system/src/components/utils/FieldNote/styles.scss b/@stellar/design-system/src/components/utils/FieldNote/styles.scss
index 96cbb77b..7de0f7ad 100644
--- a/@stellar/design-system/src/components/utils/FieldNote/styles.scss
+++ b/@stellar/design-system/src/components/utils/FieldNote/styles.scss
@@ -1,13 +1,37 @@
 @use "../../../utils.scss" as *;
 
 .FieldNote {
-  font-family: var(--font-family-base);
-  font-size: pxToRem(12px);
-  line-height: pxToRem(20px);
-  color: var(--color-gray-60);
-  font-weight: var(--font-weight-medium);
+  --FieldNote-font-size: #{pxToRem(12px)};
+  --FiledNote-line-height: #{pxToRem(18px)};
 
+  font-family: var(--sds-ff-base);
+  font-size: var(--FieldNote-font-size);
+  line-height: var(--FiledNote-line-height);
+  color: var(--sds-clr-gray-11);
+  font-weight: var(--sds-fw-regular);
+
+  // Size
+  &--sm {
+    --FieldNote-font-size: #{pxToRem(12px)};
+    --FiledNote-line-height: #{pxToRem(18px)};
+  }
+
+  &--md {
+    --FieldNote-font-size: #{pxToRem(12px)};
+    --FiledNote-line-height: #{pxToRem(18px)};
+  }
+
+  &--lg {
+    --FieldNote-font-size: #{pxToRem(14px)};
+    --FiledNote-line-height: #{pxToRem(20px)};
+  }
+
+  // Variant
   &--error {
-    color: var(--color-red-60);
+    color: var(--sds-clr-red-11);
+  }
+
+  &--success {
+    color: var(--sds-clr-green-11);
   }
 }
diff --git a/@stellar/design-system/src/components/utils/InputCopyButton.tsx b/@stellar/design-system/src/components/utils/InputCopyButton.tsx
new file mode 100644
index 00000000..197948cb
--- /dev/null
+++ b/@stellar/design-system/src/components/utils/InputCopyButton.tsx
@@ -0,0 +1,34 @@
+import { Button } from "../Button";
+import { CopyText } from "../CopyText";
+import { Icon } from "../../icons";
+
+export type InputCopyButtonProps = {
+  /** Text to copy */
+  textToCopy: string;
+  /** Size of the button */
+  fieldSize: "sm" | "md" | "lg";
+  /** Show "Copy" label */
+  showLabel?: boolean;
+};
+
+export const InputCopyButton = ({
+  textToCopy,
+  fieldSize,
+  showLabel,
+}: InputCopyButtonProps) => (
+  <CopyText textToCopy={textToCopy} doneLabel="Copied">
+    <Button
+      variant="tertiary"
+      size={fieldSize}
+      icon={<Icon.Copy01 />}
+      iconPosition="left"
+      disabled={!textToCopy}
+      type="button"
+      onClick={(e) => {
+        e.preventDefault();
+      }}
+    >
+      {showLabel ? "Copy" : ""}
+    </Button>
+  </CopyText>
+);
diff --git a/@stellar/design-system/src/global.scss b/@stellar/design-system/src/global.scss
index b6eaf3f4..22a89037 100644
--- a/@stellar/design-system/src/global.scss
+++ b/@stellar/design-system/src/global.scss
@@ -5,11 +5,11 @@
 // global styles on every website.
 .sds-theme-light,
 .sds-theme-dark {
-  font-family: var(--font-family-base);
-  font-size: var(--font-size);
+  font-family: var(--sds-ff-base);
+  font-size: var(--sds-fs-primary);
   padding: 0;
   margin: 0;
-  background-color: var(--color-gray-00);
+  background-color: var(--sds-clr-gray-01);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 
@@ -24,7 +24,7 @@
 
   strong,
   b {
-    font-weight: var(--font-weight-medium);
+    font-weight: var(--sds-fw-medium);
   }
 
   // Text block elements
@@ -34,20 +34,13 @@
     font-size: 1rem;
     line-height: 1.75rem;
     margin: 0;
-    color: var(--color-gray-80);
+    color: inherit;
 
     &:not(:last-child) {
       margin-bottom: 1.5rem;
     }
   }
 
-  p {
-    &.Paragraph--secondary {
-      font-size: 0.875rem;
-      line-height: 1.375rem;
-    }
-  }
-
   ul {
     padding: 0 0 0 1rem;
     list-style-type: none;
@@ -64,15 +57,15 @@
   }
 
   code {
-    color: inherit;
-    font-family: var(--font-family-monospace);
-    border-radius: 0.1875rem;
-    border: 0.5px solid var(--color-gray-30);
-    background-color: var(--color-gray-10);
-    padding: 0.125em 0.25em;
+    color: var(--sds-clr-gray-11);
+    font-family: var(--sds-ff-monospace);
+    font-weight: var(--sds-fw-medium);
     font-size: 0.875em;
-    line-height: 1.5em;
-    font-weight: var(--font-weight-medium);
+    line-height: inherit;
+    border-radius: 0.375rem;
+    border: 1px solid var(--sds-clr-gray-06);
+    background-color: var(--sds-clr-gray-03);
+    padding: 0.125rem 0.625rem;
     display: inline;
 
     &[data-break] {
@@ -85,6 +78,6 @@
 div#root {
   display: flex;
   flex-direction: column;
-  min-height: var(--layout-window-height-min);
-  min-width: var(--layout-window-width-min);
+  min-height: var(--sds-window-height-min);
+  min-width: var(--sds-window-width-min);
 }
diff --git a/@stellar/design-system/src/icons.ts b/@stellar/design-system/src/icons.ts
index 885521f4..612b9563 100644
--- a/@stellar/design-system/src/icons.ts
+++ b/@stellar/design-system/src/icons.ts
@@ -1,305 +1,2351 @@
-import { ReactComponent as AccountBalanceWallet } from "./assets/icons/account-balance-wallet.svg";
-import { ReactComponent as AccountBalance } from "./assets/icons/account-balance.svg";
-import { ReactComponent as AccountCircle } from "./assets/icons/account-circle.svg";
-import { ReactComponent as AddCircle } from "./assets/icons/add-circle.svg";
-import { ReactComponent as Add } from "./assets/icons/add.svg";
-import { ReactComponent as AllInbox } from "./assets/icons/all-inbox.svg";
+import { ReactComponent as ActivityHeart } from "./assets/icons/activity-heart.svg";
+import { ReactComponent as Activity } from "./assets/icons/activity.svg";
+import { ReactComponent as Airplay } from "./assets/icons/airplay.svg";
+import { ReactComponent as Airpods } from "./assets/icons/airpods.svg";
+import { ReactComponent as AlarmClockCheck } from "./assets/icons/alarm-clock-check.svg";
+import { ReactComponent as AlarmClockMinus } from "./assets/icons/alarm-clock-minus.svg";
+import { ReactComponent as AlarmClockOff } from "./assets/icons/alarm-clock-off.svg";
+import { ReactComponent as AlarmClockPlus } from "./assets/icons/alarm-clock-plus.svg";
+import { ReactComponent as AlarmClock } from "./assets/icons/alarm-clock.svg";
+import { ReactComponent as AlertCircle } from "./assets/icons/alert-circle.svg";
+import { ReactComponent as AlertHexagon } from "./assets/icons/alert-hexagon.svg";
+import { ReactComponent as AlertOctagon } from "./assets/icons/alert-octagon.svg";
+import { ReactComponent as AlertSquare } from "./assets/icons/alert-square.svg";
+import { ReactComponent as AlertTriangle } from "./assets/icons/alert-triangle.svg";
+import { ReactComponent as AlignBottom01 } from "./assets/icons/align-bottom-01.svg";
+import { ReactComponent as AlignBottom02 } from "./assets/icons/align-bottom-02.svg";
+import { ReactComponent as AlignCenter } from "./assets/icons/align-center.svg";
+import { ReactComponent as AlignHorizontalCentre01 } from "./assets/icons/align-horizontal-centre-01.svg";
+import { ReactComponent as AlignHorizontalCentre02 } from "./assets/icons/align-horizontal-centre-02.svg";
+import { ReactComponent as AlignJustify } from "./assets/icons/align-justify.svg";
+import { ReactComponent as AlignLeft01 } from "./assets/icons/align-left-01.svg";
+import { ReactComponent as AlignLeft02 } from "./assets/icons/align-left-02.svg";
+import { ReactComponent as AlignLeft } from "./assets/icons/align-left.svg";
+import { ReactComponent as AlignRight01 } from "./assets/icons/align-right-01.svg";
+import { ReactComponent as AlignRight02 } from "./assets/icons/align-right-02.svg";
+import { ReactComponent as AlignRight } from "./assets/icons/align-right.svg";
+import { ReactComponent as AlignTop01 } from "./assets/icons/align-top-01.svg";
+import { ReactComponent as AlignTop02 } from "./assets/icons/align-top-02.svg";
+import { ReactComponent as AlignVerticalCenter01 } from "./assets/icons/align-vertical-center-01.svg";
+import { ReactComponent as AlignVerticalCenter02 } from "./assets/icons/align-vertical-center-02.svg";
 import { ReactComponent as Anchor } from "./assets/icons/anchor.svg";
-import { ReactComponent as Aod } from "./assets/icons/aod.svg";
+import { ReactComponent as AnnotationAlert } from "./assets/icons/annotation-alert.svg";
+import { ReactComponent as AnnotationCheck } from "./assets/icons/annotation-check.svg";
+import { ReactComponent as AnnotationDots } from "./assets/icons/annotation-dots.svg";
+import { ReactComponent as AnnotationHeart } from "./assets/icons/annotation-heart.svg";
+import { ReactComponent as AnnotationInfo } from "./assets/icons/annotation-info.svg";
+import { ReactComponent as AnnotationPlus } from "./assets/icons/annotation-plus.svg";
+import { ReactComponent as AnnotationQuestion } from "./assets/icons/annotation-question.svg";
+import { ReactComponent as AnnotationX } from "./assets/icons/annotation-x.svg";
+import { ReactComponent as Annotation } from "./assets/icons/annotation.svg";
+import { ReactComponent as Announcement01 } from "./assets/icons/announcement-01.svg";
+import { ReactComponent as Announcement02 } from "./assets/icons/announcement-02.svg";
+import { ReactComponent as Announcement03 } from "./assets/icons/announcement-03.svg";
+import { ReactComponent as Archive } from "./assets/icons/archive.svg";
+import { ReactComponent as ArrowBlockDown } from "./assets/icons/arrow-block-down.svg";
+import { ReactComponent as ArrowBlockLeft } from "./assets/icons/arrow-block-left.svg";
+import { ReactComponent as ArrowBlockRight } from "./assets/icons/arrow-block-right.svg";
+import { ReactComponent as ArrowBlockUp } from "./assets/icons/arrow-block-up.svg";
+import { ReactComponent as ArrowCircleBrokenDownLeft } from "./assets/icons/arrow-circle-broken-down-left.svg";
+import { ReactComponent as ArrowCircleBrokenDownRight } from "./assets/icons/arrow-circle-broken-down-right.svg";
+import { ReactComponent as ArrowCircleBrokenDown } from "./assets/icons/arrow-circle-broken-down.svg";
+import { ReactComponent as ArrowCircleBrokenLeft } from "./assets/icons/arrow-circle-broken-left.svg";
+import { ReactComponent as ArrowCircleBrokenRight } from "./assets/icons/arrow-circle-broken-right.svg";
+import { ReactComponent as ArrowCircleBrokenUpLeft } from "./assets/icons/arrow-circle-broken-up-left.svg";
+import { ReactComponent as ArrowCircleBrokenUpRight } from "./assets/icons/arrow-circle-broken-up-right.svg";
+import { ReactComponent as ArrowCircleBrokenUp } from "./assets/icons/arrow-circle-broken-up.svg";
+import { ReactComponent as ArrowCircleDownLeft } from "./assets/icons/arrow-circle-down-left.svg";
+import { ReactComponent as ArrowCircleDownRight } from "./assets/icons/arrow-circle-down-right.svg";
 import { ReactComponent as ArrowCircleDown } from "./assets/icons/arrow-circle-down.svg";
 import { ReactComponent as ArrowCircleLeft } from "./assets/icons/arrow-circle-left.svg";
 import { ReactComponent as ArrowCircleRight } from "./assets/icons/arrow-circle-right.svg";
+import { ReactComponent as ArrowCircleUpLeft } from "./assets/icons/arrow-circle-up-left.svg";
+import { ReactComponent as ArrowCircleUpRight } from "./assets/icons/arrow-circle-up-right.svg";
 import { ReactComponent as ArrowCircleUp } from "./assets/icons/arrow-circle-up.svg";
+import { ReactComponent as ArrowDownLeft } from "./assets/icons/arrow-down-left.svg";
+import { ReactComponent as ArrowDownRight } from "./assets/icons/arrow-down-right.svg";
 import { ReactComponent as ArrowDown } from "./assets/icons/arrow-down.svg";
 import { ReactComponent as ArrowLeft } from "./assets/icons/arrow-left.svg";
+import { ReactComponent as ArrowNarrowDownLeft } from "./assets/icons/arrow-narrow-down-left.svg";
+import { ReactComponent as ArrowNarrowDownRight } from "./assets/icons/arrow-narrow-down-right.svg";
+import { ReactComponent as ArrowNarrowDown } from "./assets/icons/arrow-narrow-down.svg";
+import { ReactComponent as ArrowNarrowLeft } from "./assets/icons/arrow-narrow-left.svg";
+import { ReactComponent as ArrowNarrowRight } from "./assets/icons/arrow-narrow-right.svg";
+import { ReactComponent as ArrowNarrowUpLeft } from "./assets/icons/arrow-narrow-up-left.svg";
+import { ReactComponent as ArrowNarrowUpRight } from "./assets/icons/arrow-narrow-up-right.svg";
+import { ReactComponent as ArrowNarrowUp } from "./assets/icons/arrow-narrow-up.svg";
 import { ReactComponent as ArrowRight } from "./assets/icons/arrow-right.svg";
-import { ReactComponent as ArrowSmallDown } from "./assets/icons/arrow-small-down.svg";
-import { ReactComponent as ArrowSmallLeft } from "./assets/icons/arrow-small-left.svg";
-import { ReactComponent as ArrowSmallRight } from "./assets/icons/arrow-small-right.svg";
-import { ReactComponent as ArrowSmallUp } from "./assets/icons/arrow-small-up.svg";
-import { ReactComponent as ArrowTopLeft } from "./assets/icons/arrow-top-left.svg";
-import { ReactComponent as ArrowTopRight } from "./assets/icons/arrow-top-right.svg";
+import { ReactComponent as ArrowSquareDownLeft } from "./assets/icons/arrow-square-down-left.svg";
+import { ReactComponent as ArrowSquareDownRight } from "./assets/icons/arrow-square-down-right.svg";
+import { ReactComponent as ArrowSquareDown } from "./assets/icons/arrow-square-down.svg";
+import { ReactComponent as ArrowSquareLeft } from "./assets/icons/arrow-square-left.svg";
+import { ReactComponent as ArrowSquareRight } from "./assets/icons/arrow-square-right.svg";
+import { ReactComponent as ArrowSquareUpLeft } from "./assets/icons/arrow-square-up-left.svg";
+import { ReactComponent as ArrowSquareUpRight } from "./assets/icons/arrow-square-up-right.svg";
+import { ReactComponent as ArrowSquareUp } from "./assets/icons/arrow-square-up.svg";
+import { ReactComponent as ArrowUpLeft } from "./assets/icons/arrow-up-left.svg";
+import { ReactComponent as ArrowUpRight } from "./assets/icons/arrow-up-right.svg";
 import { ReactComponent as ArrowUp } from "./assets/icons/arrow-up.svg";
-import { ReactComponent as Article } from "./assets/icons/article.svg";
-import { ReactComponent as Assets } from "./assets/icons/assets.svg";
-import { ReactComponent as AttachFile } from "./assets/icons/attach-file.svg";
-import { ReactComponent as Attachment } from "./assets/icons/attachment.svg";
-import { ReactComponent as Backspace } from "./assets/icons/backspace.svg";
-import { ReactComponent as Backup } from "./assets/icons/backup.svg";
-import { ReactComponent as BarChart } from "./assets/icons/bar-chart.svg";
-import { ReactComponent as Block } from "./assets/icons/block.svg";
-import { ReactComponent as Burn } from "./assets/icons/burn.svg";
-import { ReactComponent as CalendarMonth } from "./assets/icons/calendar-month.svg";
-import { ReactComponent as CalendarToday } from "./assets/icons/calendar-today.svg";
-import { ReactComponent as ChatBubble } from "./assets/icons/chat-bubble.svg";
-import { ReactComponent as Chat } from "./assets/icons/chat.svg";
+import { ReactComponent as ArrowsDown } from "./assets/icons/arrows-down.svg";
+import { ReactComponent as ArrowsLeft } from "./assets/icons/arrows-left.svg";
+import { ReactComponent as ArrowsRight } from "./assets/icons/arrows-right.svg";
+import { ReactComponent as ArrowsTriangle } from "./assets/icons/arrows-triangle.svg";
+import { ReactComponent as ArrowsUp } from "./assets/icons/arrows-up.svg";
+import { ReactComponent as Asterisk01 } from "./assets/icons/asterisk-01.svg";
+import { ReactComponent as Asterisk02 } from "./assets/icons/asterisk-02.svg";
+import { ReactComponent as AtSign } from "./assets/icons/at-sign.svg";
+import { ReactComponent as Atom01 } from "./assets/icons/atom-01.svg";
+import { ReactComponent as Atom02 } from "./assets/icons/atom-02.svg";
+import { ReactComponent as Attachment01 } from "./assets/icons/attachment-01.svg";
+import { ReactComponent as Attachment02 } from "./assets/icons/attachment-02.svg";
+import { ReactComponent as Award01 } from "./assets/icons/award-01.svg";
+import { ReactComponent as Award02 } from "./assets/icons/award-02.svg";
+import { ReactComponent as Award03 } from "./assets/icons/award-03.svg";
+import { ReactComponent as Award04 } from "./assets/icons/award-04.svg";
+import { ReactComponent as Award05 } from "./assets/icons/award-05.svg";
+import { ReactComponent as Backpack } from "./assets/icons/backpack.svg";
+import { ReactComponent as BankNote01 } from "./assets/icons/bank-note-01.svg";
+import { ReactComponent as BankNote02 } from "./assets/icons/bank-note-02.svg";
+import { ReactComponent as BankNote03 } from "./assets/icons/bank-note-03.svg";
+import { ReactComponent as Bank } from "./assets/icons/bank.svg";
+import { ReactComponent as BarChart01 } from "./assets/icons/bar-chart-01.svg";
+import { ReactComponent as BarChart02 } from "./assets/icons/bar-chart-02.svg";
+import { ReactComponent as BarChart03 } from "./assets/icons/bar-chart-03.svg";
+import { ReactComponent as BarChart04 } from "./assets/icons/bar-chart-04.svg";
+import { ReactComponent as BarChart05 } from "./assets/icons/bar-chart-05.svg";
+import { ReactComponent as BarChart06 } from "./assets/icons/bar-chart-06.svg";
+import { ReactComponent as BarChart07 } from "./assets/icons/bar-chart-07.svg";
+import { ReactComponent as BarChart08 } from "./assets/icons/bar-chart-08.svg";
+import { ReactComponent as BarChart09 } from "./assets/icons/bar-chart-09.svg";
+import { ReactComponent as BarChart10 } from "./assets/icons/bar-chart-10.svg";
+import { ReactComponent as BarChart11 } from "./assets/icons/bar-chart-11.svg";
+import { ReactComponent as BarChart12 } from "./assets/icons/bar-chart-12.svg";
+import { ReactComponent as BarChartCircle01 } from "./assets/icons/bar-chart-circle-01.svg";
+import { ReactComponent as BarChartCircle02 } from "./assets/icons/bar-chart-circle-02.svg";
+import { ReactComponent as BarChartCircle03 } from "./assets/icons/bar-chart-circle-03.svg";
+import { ReactComponent as BarChartSquare01 } from "./assets/icons/bar-chart-square-01.svg";
+import { ReactComponent as BarChartSquare02 } from "./assets/icons/bar-chart-square-02.svg";
+import { ReactComponent as BarChartSquare03 } from "./assets/icons/bar-chart-square-03.svg";
+import { ReactComponent as BarChartSquareDown } from "./assets/icons/bar-chart-square-down.svg";
+import { ReactComponent as BarChartSquareMinus } from "./assets/icons/bar-chart-square-minus.svg";
+import { ReactComponent as BarChartSquarePlus } from "./assets/icons/bar-chart-square-plus.svg";
+import { ReactComponent as BarChartSquareUp } from "./assets/icons/bar-chart-square-up.svg";
+import { ReactComponent as BarLineChart } from "./assets/icons/bar-line-chart.svg";
+import { ReactComponent as BatteryCharging01 } from "./assets/icons/battery-charging-01.svg";
+import { ReactComponent as BatteryCharging02 } from "./assets/icons/battery-charging-02.svg";
+import { ReactComponent as BatteryEmpty } from "./assets/icons/battery-empty.svg";
+import { ReactComponent as BatteryFull } from "./assets/icons/battery-full.svg";
+import { ReactComponent as BatteryLow } from "./assets/icons/battery-low.svg";
+import { ReactComponent as BatteryMid } from "./assets/icons/battery-mid.svg";
+import { ReactComponent as Beaker01 } from "./assets/icons/beaker-01.svg";
+import { ReactComponent as Beaker02 } from "./assets/icons/beaker-02.svg";
+import { ReactComponent as Bell01 } from "./assets/icons/bell-01.svg";
+import { ReactComponent as Bell02 } from "./assets/icons/bell-02.svg";
+import { ReactComponent as Bell03 } from "./assets/icons/bell-03.svg";
+import { ReactComponent as Bell04 } from "./assets/icons/bell-04.svg";
+import { ReactComponent as BellMinus } from "./assets/icons/bell-minus.svg";
+import { ReactComponent as BellOff01 } from "./assets/icons/bell-off-01.svg";
+import { ReactComponent as BellOff02 } from "./assets/icons/bell-off-02.svg";
+import { ReactComponent as BellOff03 } from "./assets/icons/bell-off-03.svg";
+import { ReactComponent as BellPlus } from "./assets/icons/bell-plus.svg";
+import { ReactComponent as BellRinging01 } from "./assets/icons/bell-ringing-01.svg";
+import { ReactComponent as BellRinging02 } from "./assets/icons/bell-ringing-02.svg";
+import { ReactComponent as BellRinging03 } from "./assets/icons/bell-ringing-03.svg";
+import { ReactComponent as BellRinging04 } from "./assets/icons/bell-ringing-04.svg";
+import { ReactComponent as BezierCurve01 } from "./assets/icons/bezier-curve-01.svg";
+import { ReactComponent as BezierCurve02 } from "./assets/icons/bezier-curve-02.svg";
+import { ReactComponent as BezierCurve03 } from "./assets/icons/bezier-curve-03.svg";
+import { ReactComponent as BluetoothConnect } from "./assets/icons/bluetooth-connect.svg";
+import { ReactComponent as BluetoothOff } from "./assets/icons/bluetooth-off.svg";
+import { ReactComponent as BluetoothOn } from "./assets/icons/bluetooth-on.svg";
+import { ReactComponent as BluetoothSignal } from "./assets/icons/bluetooth-signal.svg";
+import { ReactComponent as Bold01 } from "./assets/icons/bold-01.svg";
+import { ReactComponent as Bold02 } from "./assets/icons/bold-02.svg";
+import { ReactComponent as BoldSquare } from "./assets/icons/bold-square.svg";
+import { ReactComponent as BookClosed } from "./assets/icons/book-closed.svg";
+import { ReactComponent as BookOpen01 } from "./assets/icons/book-open-01.svg";
+import { ReactComponent as BookOpen02 } from "./assets/icons/book-open-02.svg";
+import { ReactComponent as BookmarkAdd } from "./assets/icons/bookmark-add.svg";
+import { ReactComponent as BookmarkCheck } from "./assets/icons/bookmark-check.svg";
+import { ReactComponent as BookmarkMinus } from "./assets/icons/bookmark-minus.svg";
+import { ReactComponent as BookmarkX } from "./assets/icons/bookmark-x.svg";
+import { ReactComponent as Bookmark } from "./assets/icons/bookmark.svg";
+import { ReactComponent as Box } from "./assets/icons/box.svg";
+import { ReactComponent as BracketsCheck } from "./assets/icons/brackets-check.svg";
+import { ReactComponent as BracketsEllipses } from "./assets/icons/brackets-ellipses.svg";
+import { ReactComponent as BracketsMinus } from "./assets/icons/brackets-minus.svg";
+import { ReactComponent as BracketsPlus } from "./assets/icons/brackets-plus.svg";
+import { ReactComponent as BracketsSlash } from "./assets/icons/brackets-slash.svg";
+import { ReactComponent as BracketsX } from "./assets/icons/brackets-x.svg";
+import { ReactComponent as Brackets } from "./assets/icons/brackets.svg";
+import { ReactComponent as Briefcase01 } from "./assets/icons/briefcase-01.svg";
+import { ReactComponent as Briefcase02 } from "./assets/icons/briefcase-02.svg";
+import { ReactComponent as Browser } from "./assets/icons/browser.svg";
+import { ReactComponent as Brush01 } from "./assets/icons/brush-01.svg";
+import { ReactComponent as Brush02 } from "./assets/icons/brush-02.svg";
+import { ReactComponent as Brush03 } from "./assets/icons/brush-03.svg";
+import { ReactComponent as Building01 } from "./assets/icons/building-01.svg";
+import { ReactComponent as Building02 } from "./assets/icons/building-02.svg";
+import { ReactComponent as Building03 } from "./assets/icons/building-03.svg";
+import { ReactComponent as Building04 } from "./assets/icons/building-04.svg";
+import { ReactComponent as Building05 } from "./assets/icons/building-05.svg";
+import { ReactComponent as Building06 } from "./assets/icons/building-06.svg";
+import { ReactComponent as Building07 } from "./assets/icons/building-07.svg";
+import { ReactComponent as Building08 } from "./assets/icons/building-08.svg";
+import { ReactComponent as Bus } from "./assets/icons/bus.svg";
+import { ReactComponent as Calculator } from "./assets/icons/calculator.svg";
+import { ReactComponent as CalendarCheck01 } from "./assets/icons/calendar-check-01.svg";
+import { ReactComponent as CalendarCheck02 } from "./assets/icons/calendar-check-02.svg";
+import { ReactComponent as CalendarDate } from "./assets/icons/calendar-date.svg";
+import { ReactComponent as CalendarHeart01 } from "./assets/icons/calendar-heart-01.svg";
+import { ReactComponent as CalendarHeart02 } from "./assets/icons/calendar-heart-02.svg";
+import { ReactComponent as CalendarMinus01 } from "./assets/icons/calendar-minus-01.svg";
+import { ReactComponent as CalendarMinus02 } from "./assets/icons/calendar-minus-02.svg";
+import { ReactComponent as CalendarPlus01 } from "./assets/icons/calendar-plus-01.svg";
+import { ReactComponent as CalendarPlus02 } from "./assets/icons/calendar-plus-02.svg";
+import { ReactComponent as Calendar } from "./assets/icons/calendar.svg";
+import { ReactComponent as Camera01 } from "./assets/icons/camera-01.svg";
+import { ReactComponent as Camera02 } from "./assets/icons/camera-02.svg";
+import { ReactComponent as Camera03 } from "./assets/icons/camera-03.svg";
+import { ReactComponent as CameraLens } from "./assets/icons/camera-lens.svg";
+import { ReactComponent as CameraOff } from "./assets/icons/camera-off.svg";
+import { ReactComponent as CameraPlus } from "./assets/icons/camera-plus.svg";
+import { ReactComponent as Car01 } from "./assets/icons/car-01.svg";
+import { ReactComponent as Car02 } from "./assets/icons/car-02.svg";
+import { ReactComponent as Certificate01 } from "./assets/icons/certificate-01.svg";
+import { ReactComponent as Certificate02 } from "./assets/icons/certificate-02.svg";
+import { ReactComponent as ChartBreakoutCircle } from "./assets/icons/chart-breakout-circle.svg";
+import { ReactComponent as ChartBreakoutSquare } from "./assets/icons/chart-breakout-square.svg";
+import { ReactComponent as CheckCircleBroken } from "./assets/icons/check-circle-broken.svg";
 import { ReactComponent as CheckCircle } from "./assets/icons/check-circle.svg";
+import { ReactComponent as CheckDone01 } from "./assets/icons/check-done-01.svg";
+import { ReactComponent as CheckDone02 } from "./assets/icons/check-done-02.svg";
+import { ReactComponent as CheckHeart } from "./assets/icons/check-heart.svg";
+import { ReactComponent as CheckSquareBroken } from "./assets/icons/check-square-broken.svg";
+import { ReactComponent as CheckSquare } from "./assets/icons/check-square.svg";
+import { ReactComponent as CheckVerified01 } from "./assets/icons/check-verified-01.svg";
+import { ReactComponent as CheckVerified02 } from "./assets/icons/check-verified-02.svg";
+import { ReactComponent as CheckVerified03 } from "./assets/icons/check-verified-03.svg";
 import { ReactComponent as Check } from "./assets/icons/check.svg";
-import { ReactComponent as ChevronDoubleDown } from "./assets/icons/chevron-double-down.svg";
-import { ReactComponent as ChevronDoubleLeft } from "./assets/icons/chevron-double-left.svg";
-import { ReactComponent as ChevronDoubleRight } from "./assets/icons/chevron-double-right.svg";
-import { ReactComponent as ChevronDoubleUp } from "./assets/icons/chevron-double-up.svg";
+import { ReactComponent as ChevronDownDouble } from "./assets/icons/chevron-down-double.svg";
 import { ReactComponent as ChevronDown } from "./assets/icons/chevron-down.svg";
+import { ReactComponent as ChevronLeftDouble } from "./assets/icons/chevron-left-double.svg";
 import { ReactComponent as ChevronLeft } from "./assets/icons/chevron-left.svg";
+import { ReactComponent as ChevronRightDouble } from "./assets/icons/chevron-right-double.svg";
 import { ReactComponent as ChevronRight } from "./assets/icons/chevron-right.svg";
+import { ReactComponent as ChevronSelectorHorizontal } from "./assets/icons/chevron-selector-horizontal.svg";
+import { ReactComponent as ChevronSelectorVertical } from "./assets/icons/chevron-selector-vertical.svg";
+import { ReactComponent as ChevronUpDouble } from "./assets/icons/chevron-up-double.svg";
 import { ReactComponent as ChevronUp } from "./assets/icons/chevron-up.svg";
+import { ReactComponent as ChromeCast } from "./assets/icons/chrome-cast.svg";
+import { ReactComponent as CircleCut } from "./assets/icons/circle-cut.svg";
+import { ReactComponent as Circle } from "./assets/icons/circle.svg";
+import { ReactComponent as Clapperboard } from "./assets/icons/clapperboard.svg";
+import { ReactComponent as ClipboardAttachment } from "./assets/icons/clipboard-attachment.svg";
+import { ReactComponent as ClipboardCheck } from "./assets/icons/clipboard-check.svg";
+import { ReactComponent as ClipboardDownload } from "./assets/icons/clipboard-download.svg";
+import { ReactComponent as ClipboardMinus } from "./assets/icons/clipboard-minus.svg";
+import { ReactComponent as ClipboardPlus } from "./assets/icons/clipboard-plus.svg";
+import { ReactComponent as ClipboardX } from "./assets/icons/clipboard-x.svg";
+import { ReactComponent as Clipboard } from "./assets/icons/clipboard.svg";
+import { ReactComponent as ClockCheck } from "./assets/icons/clock-check.svg";
+import { ReactComponent as ClockFastForward } from "./assets/icons/clock-fast-forward.svg";
+import { ReactComponent as ClockPlus } from "./assets/icons/clock-plus.svg";
+import { ReactComponent as ClockRefresh } from "./assets/icons/clock-refresh.svg";
+import { ReactComponent as ClockRewind } from "./assets/icons/clock-rewind.svg";
+import { ReactComponent as ClockSnooze } from "./assets/icons/clock-snooze.svg";
+import { ReactComponent as ClockStopwatch } from "./assets/icons/clock-stopwatch.svg";
 import { ReactComponent as Clock } from "./assets/icons/clock.svg";
-import { ReactComponent as Close } from "./assets/icons/close.svg";
-import { ReactComponent as CloudDone } from "./assets/icons/cloud-done.svg";
-import { ReactComponent as CloudDownload } from "./assets/icons/cloud-download.svg";
-import { ReactComponent as Code } from "./assets/icons/code.svg";
-import { ReactComponent as ContactPage } from "./assets/icons/contact-page.svg";
-import { ReactComponent as Contacts } from "./assets/icons/contacts.svg";
-import { ReactComponent as ContentCopy } from "./assets/icons/content-copy.svg";
-import { ReactComponent as ContentPaste } from "./assets/icons/content-paste.svg";
-import { ReactComponent as CopyAll } from "./assets/icons/copy-all.svg";
-import { ReactComponent as CurrencyExchange } from "./assets/icons/currency-exchange.svg";
-import { ReactComponent as Dashboard } from "./assets/icons/dashboard.svg";
-import { ReactComponent as DataArray } from "./assets/icons/data-array.svg";
-import { ReactComponent as DataObject } from "./assets/icons/data-object.svg";
-import { ReactComponent as Database } from "./assets/icons/database.svg";
-import { ReactComponent as DeleteForever } from "./assets/icons/delete-forever.svg";
+import { ReactComponent as Cloud01 } from "./assets/icons/cloud-01.svg";
+import { ReactComponent as Cloud02 } from "./assets/icons/cloud-02.svg";
+import { ReactComponent as Cloud03 } from "./assets/icons/cloud-03.svg";
+import { ReactComponent as CloudBlank01 } from "./assets/icons/cloud-blank-01.svg";
+import { ReactComponent as CloudBlank02 } from "./assets/icons/cloud-blank-02.svg";
+import { ReactComponent as CloudLightning } from "./assets/icons/cloud-lightning.svg";
+import { ReactComponent as CloudMoon } from "./assets/icons/cloud-moon.svg";
+import { ReactComponent as CloudOff } from "./assets/icons/cloud-off.svg";
+import { ReactComponent as CloudRaining01 } from "./assets/icons/cloud-raining-01.svg";
+import { ReactComponent as CloudRaining02 } from "./assets/icons/cloud-raining-02.svg";
+import { ReactComponent as CloudRaining03 } from "./assets/icons/cloud-raining-03.svg";
+import { ReactComponent as CloudRaining04 } from "./assets/icons/cloud-raining-04.svg";
+import { ReactComponent as CloudRaining05 } from "./assets/icons/cloud-raining-05.svg";
+import { ReactComponent as CloudRaining06 } from "./assets/icons/cloud-raining-06.svg";
+import { ReactComponent as CloudSnowing01 } from "./assets/icons/cloud-snowing-01.svg";
+import { ReactComponent as CloudSnowing02 } from "./assets/icons/cloud-snowing-02.svg";
+import { ReactComponent as CloudSun01 } from "./assets/icons/cloud-sun-01.svg";
+import { ReactComponent as CloudSun02 } from "./assets/icons/cloud-sun-02.svg";
+import { ReactComponent as CloudSun03 } from "./assets/icons/cloud-sun-03.svg";
+import { ReactComponent as Code01 } from "./assets/icons/code-01.svg";
+import { ReactComponent as Code02 } from "./assets/icons/code-02.svg";
+import { ReactComponent as CodeBrowser } from "./assets/icons/code-browser.svg";
+import { ReactComponent as CodeCircle01 } from "./assets/icons/code-circle-01.svg";
+import { ReactComponent as CodeCircle02 } from "./assets/icons/code-circle-02.svg";
+import { ReactComponent as CodeCircle03 } from "./assets/icons/code-circle-03.svg";
+import { ReactComponent as CodeSnippet01 } from "./assets/icons/code-snippet-01.svg";
+import { ReactComponent as CodeSnippet02 } from "./assets/icons/code-snippet-02.svg";
+import { ReactComponent as CodeSquare01 } from "./assets/icons/code-square-01.svg";
+import { ReactComponent as CodeSquare02 } from "./assets/icons/code-square-02.svg";
+import { ReactComponent as Codepen } from "./assets/icons/codepen.svg";
+import { ReactComponent as Coins01 } from "./assets/icons/coins-01.svg";
+import { ReactComponent as Coins02 } from "./assets/icons/coins-02.svg";
+import { ReactComponent as Coins03 } from "./assets/icons/coins-03.svg";
+import { ReactComponent as Coins04 } from "./assets/icons/coins-04.svg";
+import { ReactComponent as CoinsHand } from "./assets/icons/coins-hand.svg";
+import { ReactComponent as CoinsStacked01 } from "./assets/icons/coins-stacked-01.svg";
+import { ReactComponent as CoinsStacked02 } from "./assets/icons/coins-stacked-02.svg";
+import { ReactComponent as CoinsStacked03 } from "./assets/icons/coins-stacked-03.svg";
+import { ReactComponent as CoinsStacked04 } from "./assets/icons/coins-stacked-04.svg";
+import { ReactComponent as CoinsSwap01 } from "./assets/icons/coins-swap-01.svg";
+import { ReactComponent as CoinsSwap02 } from "./assets/icons/coins-swap-02.svg";
+import { ReactComponent as Colors } from "./assets/icons/colors.svg";
+import { ReactComponent as Columns01 } from "./assets/icons/columns-01.svg";
+import { ReactComponent as Columns02 } from "./assets/icons/columns-02.svg";
+import { ReactComponent as Columns03 } from "./assets/icons/columns-03.svg";
+import { ReactComponent as Command } from "./assets/icons/command.svg";
+import { ReactComponent as Compass01 } from "./assets/icons/compass-01.svg";
+import { ReactComponent as Compass02 } from "./assets/icons/compass-02.svg";
+import { ReactComponent as Compass03 } from "./assets/icons/compass-03.svg";
+import { ReactComponent as Compass } from "./assets/icons/compass.svg";
+import { ReactComponent as Container } from "./assets/icons/container.svg";
+import { ReactComponent as Contrast01 } from "./assets/icons/contrast-01.svg";
+import { ReactComponent as Contrast02 } from "./assets/icons/contrast-02.svg";
+import { ReactComponent as Contrast03 } from "./assets/icons/contrast-03.svg";
+import { ReactComponent as Copy01 } from "./assets/icons/copy-01.svg";
+import { ReactComponent as Copy02 } from "./assets/icons/copy-02.svg";
+import { ReactComponent as Copy03 } from "./assets/icons/copy-03.svg";
+import { ReactComponent as Copy04 } from "./assets/icons/copy-04.svg";
+import { ReactComponent as Copy05 } from "./assets/icons/copy-05.svg";
+import { ReactComponent as Copy06 } from "./assets/icons/copy-06.svg";
+import { ReactComponent as Copy07 } from "./assets/icons/copy-07.svg";
+import { ReactComponent as CornerDownLeft } from "./assets/icons/corner-down-left.svg";
+import { ReactComponent as CornerDownRight } from "./assets/icons/corner-down-right.svg";
+import { ReactComponent as CornerLeftDown } from "./assets/icons/corner-left-down.svg";
+import { ReactComponent as CornerLeftUp } from "./assets/icons/corner-left-up.svg";
+import { ReactComponent as CornerRightDown } from "./assets/icons/corner-right-down.svg";
+import { ReactComponent as CornerRightUp } from "./assets/icons/corner-right-up.svg";
+import { ReactComponent as CornerUpLeft } from "./assets/icons/corner-up-left.svg";
+import { ReactComponent as CornerUpRight } from "./assets/icons/corner-up-right.svg";
+import { ReactComponent as CpuChip01 } from "./assets/icons/cpu-chip-01.svg";
+import { ReactComponent as CpuChip02 } from "./assets/icons/cpu-chip-02.svg";
+import { ReactComponent as CreditCard01 } from "./assets/icons/credit-card-01.svg";
+import { ReactComponent as CreditCard02 } from "./assets/icons/credit-card-02.svg";
+import { ReactComponent as CreditCardCheck } from "./assets/icons/credit-card-check.svg";
+import { ReactComponent as CreditCardDown } from "./assets/icons/credit-card-down.svg";
+import { ReactComponent as CreditCardDownload } from "./assets/icons/credit-card-download.svg";
+import { ReactComponent as CreditCardEdit } from "./assets/icons/credit-card-edit.svg";
+import { ReactComponent as CreditCardLock } from "./assets/icons/credit-card-lock.svg";
+import { ReactComponent as CreditCardMinus } from "./assets/icons/credit-card-minus.svg";
+import { ReactComponent as CreditCardPlus } from "./assets/icons/credit-card-plus.svg";
+import { ReactComponent as CreditCardRefresh } from "./assets/icons/credit-card-refresh.svg";
+import { ReactComponent as CreditCardSearch } from "./assets/icons/credit-card-search.svg";
+import { ReactComponent as CreditCardShield } from "./assets/icons/credit-card-shield.svg";
+import { ReactComponent as CreditCardUp } from "./assets/icons/credit-card-up.svg";
+import { ReactComponent as CreditCardUpload } from "./assets/icons/credit-card-upload.svg";
+import { ReactComponent as CreditCardX } from "./assets/icons/credit-card-x.svg";
+import { ReactComponent as Crop01 } from "./assets/icons/crop-01.svg";
+import { ReactComponent as Crop02 } from "./assets/icons/crop-02.svg";
+import { ReactComponent as Cryptocurrency01 } from "./assets/icons/cryptocurrency-01.svg";
+import { ReactComponent as Cryptocurrency02 } from "./assets/icons/cryptocurrency-02.svg";
+import { ReactComponent as Cryptocurrency03 } from "./assets/icons/cryptocurrency-03.svg";
+import { ReactComponent as Cryptocurrency04 } from "./assets/icons/cryptocurrency-04.svg";
+import { ReactComponent as Cube01 } from "./assets/icons/cube-01.svg";
+import { ReactComponent as Cube02 } from "./assets/icons/cube-02.svg";
+import { ReactComponent as Cube03 } from "./assets/icons/cube-03.svg";
+import { ReactComponent as Cube04 } from "./assets/icons/cube-04.svg";
+import { ReactComponent as CubeOutline } from "./assets/icons/cube-outline.svg";
+import { ReactComponent as CurrencyBitcoinCircle } from "./assets/icons/currency-bitcoin-circle.svg";
+import { ReactComponent as CurrencyBitcoin } from "./assets/icons/currency-bitcoin.svg";
+import { ReactComponent as CurrencyDollarCircle } from "./assets/icons/currency-dollar-circle.svg";
+import { ReactComponent as CurrencyDollar } from "./assets/icons/currency-dollar.svg";
+import { ReactComponent as CurrencyEthereumCircle } from "./assets/icons/currency-ethereum-circle.svg";
+import { ReactComponent as CurrencyEthereum } from "./assets/icons/currency-ethereum.svg";
+import { ReactComponent as CurrencyEuroCircle } from "./assets/icons/currency-euro-circle.svg";
+import { ReactComponent as CurrencyEuro } from "./assets/icons/currency-euro.svg";
+import { ReactComponent as CurrencyPoundCircle } from "./assets/icons/currency-pound-circle.svg";
+import { ReactComponent as CurrencyPound } from "./assets/icons/currency-pound.svg";
+import { ReactComponent as CurrencyRubleCircle } from "./assets/icons/currency-ruble-circle.svg";
+import { ReactComponent as CurrencyRuble } from "./assets/icons/currency-ruble.svg";
+import { ReactComponent as CurrencyRupeeCircle } from "./assets/icons/currency-rupee-circle.svg";
+import { ReactComponent as CurrencyRupee } from "./assets/icons/currency-rupee.svg";
+import { ReactComponent as CurrencyYenCircle } from "./assets/icons/currency-yen-circle.svg";
+import { ReactComponent as CurrencyYen } from "./assets/icons/currency-yen.svg";
+import { ReactComponent as Cursor01 } from "./assets/icons/cursor-01.svg";
+import { ReactComponent as Cursor02 } from "./assets/icons/cursor-02.svg";
+import { ReactComponent as Cursor03 } from "./assets/icons/cursor-03.svg";
+import { ReactComponent as Cursor04 } from "./assets/icons/cursor-04.svg";
+import { ReactComponent as CursorBox } from "./assets/icons/cursor-box.svg";
+import { ReactComponent as CursorClick01 } from "./assets/icons/cursor-click-01.svg";
+import { ReactComponent as CursorClick02 } from "./assets/icons/cursor-click-02.svg";
+import { ReactComponent as Data } from "./assets/icons/data.svg";
+import { ReactComponent as Database01 } from "./assets/icons/database-01.svg";
+import { ReactComponent as Database02 } from "./assets/icons/database-02.svg";
+import { ReactComponent as Database03 } from "./assets/icons/database-03.svg";
+import { ReactComponent as Dataflow01 } from "./assets/icons/dataflow-01.svg";
+import { ReactComponent as Dataflow02 } from "./assets/icons/dataflow-02.svg";
+import { ReactComponent as Dataflow03 } from "./assets/icons/dataflow-03.svg";
+import { ReactComponent as Dataflow04 } from "./assets/icons/dataflow-04.svg";
 import { ReactComponent as Delete } from "./assets/icons/delete.svg";
-import { ReactComponent as DeployedCode } from "./assets/icons/deployed-code.svg";
-import { ReactComponent as Discord } from "./assets/icons/discord.svg";
-import { ReactComponent as Done } from "./assets/icons/done.svg";
-import { ReactComponent as Dot } from "./assets/icons/dot.svg";
-import { ReactComponent as Download } from "./assets/icons/download.svg";
-import { ReactComponent as Draft } from "./assets/icons/draft.svg";
-import { ReactComponent as DragIndicator } from "./assets/icons/drag-indicator.svg";
-import { ReactComponent as DragPan } from "./assets/icons/drag-pan.svg";
-import { ReactComponent as Edit } from "./assets/icons/edit.svg";
-import { ReactComponent as Error } from "./assets/icons/error.svg";
-import { ReactComponent as ExternalLink } from "./assets/icons/external-link.svg";
-import { ReactComponent as Favorite } from "./assets/icons/favorite.svg";
-import { ReactComponent as Filter } from "./assets/icons/filter.svg";
-import { ReactComponent as Flag } from "./assets/icons/flag.svg";
-import { ReactComponent as FolderCopy } from "./assets/icons/folder-copy.svg";
-import { ReactComponent as Free } from "./assets/icons/free.svg";
-import { ReactComponent as FrontHand } from "./assets/icons/front-hand.svg";
-import { ReactComponent as Github } from "./assets/icons/github.svg";
-import { ReactComponent as Grade } from "./assets/icons/grade.svg";
-import { ReactComponent as GroupAdd } from "./assets/icons/group-add.svg";
-import { ReactComponent as Help } from "./assets/icons/help.svg";
-import { ReactComponent as Hide } from "./assets/icons/hide.svg";
-import { ReactComponent as History } from "./assets/icons/history.svg";
-import { ReactComponent as Home } from "./assets/icons/home.svg";
-import { ReactComponent as HourglassBottom } from "./assets/icons/hourglass-bottom.svg";
-import { ReactComponent as HourglassEmpty } from "./assets/icons/hourglass-empty.svg";
-import { ReactComponent as HourglassFull } from "./assets/icons/hourglass-full.svg";
-import { ReactComponent as HourglassTop } from "./assets/icons/hourglass-top.svg";
-import { ReactComponent as Info } from "./assets/icons/info.svg";
-import { ReactComponent as Insights } from "./assets/icons/insights.svg";
-import { ReactComponent as IosShare } from "./assets/icons/ios-share.svg";
-import { ReactComponent as Join } from "./assets/icons/join.svg";
-import { ReactComponent as KeyVisualizer } from "./assets/icons/key-visualizer.svg";
-import { ReactComponent as Key } from "./assets/icons/key.svg";
-import { ReactComponent as Layers } from "./assets/icons/layers.svg";
-import { ReactComponent as Link } from "./assets/icons/link.svg";
-import { ReactComponent as LocalMall } from "./assets/icons/local-mall.svg";
-import { ReactComponent as LockOpen } from "./assets/icons/lock-open.svg";
-import { ReactComponent as Lock } from "./assets/icons/lock.svg";
-import { ReactComponent as Login } from "./assets/icons/login.svg";
-import { ReactComponent as Logout } from "./assets/icons/logout.svg";
-import { ReactComponent as Mail } from "./assets/icons/mail.svg";
-import { ReactComponent as ManageSearch } from "./assets/icons/manage-search.svg";
-import { ReactComponent as Menu } from "./assets/icons/menu.svg";
-import { ReactComponent as ModeDark } from "./assets/icons/mode-dark.svg";
-import { ReactComponent as ModeLight } from "./assets/icons/mode-light.svg";
-import { ReactComponent as MonetizationOn } from "./assets/icons/monetization-on.svg";
-import { ReactComponent as MoreHoriz } from "./assets/icons/more-horiz.svg";
-import { ReactComponent as MoreVert } from "./assets/icons/more-vert.svg";
-import { ReactComponent as MoveDown } from "./assets/icons/move-down.svg";
-import { ReactComponent as Notifications } from "./assets/icons/notifications.svg";
-import { ReactComponent as Password } from "./assets/icons/password.svg";
-import { ReactComponent as Payments } from "./assets/icons/payments.svg";
-import { ReactComponent as PersonAdd } from "./assets/icons/person-add.svg";
-import { ReactComponent as Public } from "./assets/icons/public.svg";
-import { ReactComponent as QrCode2 } from "./assets/icons/qr-code-2.svg";
-import { ReactComponent as QrCodeScanner } from "./assets/icons/qr-code-scanner.svg";
-import { ReactComponent as QrCode } from "./assets/icons/qr-code.svg";
-import { ReactComponent as Redeem } from "./assets/icons/redeem.svg";
-import { ReactComponent as RefreshHoriz } from "./assets/icons/refresh-horiz.svg";
-import { ReactComponent as RefreshVert } from "./assets/icons/refresh-vert.svg";
-import { ReactComponent as Remove } from "./assets/icons/remove.svg";
-import { ReactComponent as Replay } from "./assets/icons/replay.svg";
-import { ReactComponent as Search } from "./assets/icons/search.svg";
-import { ReactComponent as Send } from "./assets/icons/send.svg";
-import { ReactComponent as Settings } from "./assets/icons/settings.svg";
-import { ReactComponent as Shield } from "./assets/icons/shield.svg";
-import { ReactComponent as ShowChart } from "./assets/icons/show-chart.svg";
-import { ReactComponent as Show } from "./assets/icons/show.svg";
-import { ReactComponent as SignalCellularAlt } from "./assets/icons/signal-cellular-alt.svg";
-import { ReactComponent as Smile } from "./assets/icons/smile.svg";
-import { ReactComponent as SortByAlpha } from "./assets/icons/sort-by-alpha.svg";
-import { ReactComponent as SpaceDashboard } from "./assets/icons/space-dashboard.svg";
-import { ReactComponent as StackedLineChart } from "./assets/icons/stacked-line-chart.svg";
-import { ReactComponent as Status } from "./assets/icons/status.svg";
-import { ReactComponent as Store } from "./assets/icons/store.svg";
-import { ReactComponent as Toll } from "./assets/icons/toll.svg";
-import { ReactComponent as TravelExplore } from "./assets/icons/travel-explore.svg";
-import { ReactComponent as Tune } from "./assets/icons/tune.svg";
-import { ReactComponent as UnfoldLess } from "./assets/icons/unfold-less.svg";
-import { ReactComponent as UnfoldMore } from "./assets/icons/unfold-more.svg";
-import { ReactComponent as User } from "./assets/icons/user.svg";
-import { ReactComponent as Users } from "./assets/icons/users.svg";
-import { ReactComponent as VerifiedUser } from "./assets/icons/verified-user.svg";
-import { ReactComponent as Verified } from "./assets/icons/verified.svg";
-import { ReactComponent as VpnKey } from "./assets/icons/vpn-key.svg";
-import { ReactComponent as Wallet } from "./assets/icons/wallet.svg";
-import { ReactComponent as Warning } from "./assets/icons/warning.svg";
-import { ReactComponent as ZoomOutMap } from "./assets/icons/zoom-out-map.svg";
+import { ReactComponent as Diamond01 } from "./assets/icons/diamond-01.svg";
+import { ReactComponent as Diamond02 } from "./assets/icons/diamond-02.svg";
+import { ReactComponent as Dice1 } from "./assets/icons/dice-1.svg";
+import { ReactComponent as Dice2 } from "./assets/icons/dice-2.svg";
+import { ReactComponent as Dice3 } from "./assets/icons/dice-3.svg";
+import { ReactComponent as Dice4 } from "./assets/icons/dice-4.svg";
+import { ReactComponent as Dice5 } from "./assets/icons/dice-5.svg";
+import { ReactComponent as Dice6 } from "./assets/icons/dice-6.svg";
+import { ReactComponent as Disc01 } from "./assets/icons/disc-01.svg";
+import { ReactComponent as Disc02 } from "./assets/icons/disc-02.svg";
+import { ReactComponent as DistributeSpacingHorizontal } from "./assets/icons/distribute-spacing-horizontal.svg";
+import { ReactComponent as DistributeSpacingVertical } from "./assets/icons/distribute-spacing-vertical.svg";
+import { ReactComponent as Divide01 } from "./assets/icons/divide-01.svg";
+import { ReactComponent as Divide02 } from "./assets/icons/divide-02.svg";
+import { ReactComponent as Divide03 } from "./assets/icons/divide-03.svg";
+import { ReactComponent as Divider } from "./assets/icons/divider.svg";
+import { ReactComponent as Dotpoints01 } from "./assets/icons/dotpoints-01.svg";
+import { ReactComponent as Dotpoints02 } from "./assets/icons/dotpoints-02.svg";
+import { ReactComponent as DotsGrid } from "./assets/icons/dots-grid.svg";
+import { ReactComponent as DotsHorizontal } from "./assets/icons/dots-horizontal.svg";
+import { ReactComponent as DotsVertical } from "./assets/icons/dots-vertical.svg";
+import { ReactComponent as Download01 } from "./assets/icons/download-01.svg";
+import { ReactComponent as Download02 } from "./assets/icons/download-02.svg";
+import { ReactComponent as Download03 } from "./assets/icons/download-03.svg";
+import { ReactComponent as Download04 } from "./assets/icons/download-04.svg";
+import { ReactComponent as DownloadCloud01 } from "./assets/icons/download-cloud-01.svg";
+import { ReactComponent as DownloadCloud02 } from "./assets/icons/download-cloud-02.svg";
+import { ReactComponent as Drop } from "./assets/icons/drop.svg";
+import { ReactComponent as Droplets01 } from "./assets/icons/droplets-01.svg";
+import { ReactComponent as Droplets02 } from "./assets/icons/droplets-02.svg";
+import { ReactComponent as Droplets03 } from "./assets/icons/droplets-03.svg";
+import { ReactComponent as Dropper } from "./assets/icons/dropper.svg";
+import { ReactComponent as Edit01 } from "./assets/icons/edit-01.svg";
+import { ReactComponent as Edit02 } from "./assets/icons/edit-02.svg";
+import { ReactComponent as Edit03 } from "./assets/icons/edit-03.svg";
+import { ReactComponent as Edit04 } from "./assets/icons/edit-04.svg";
+import { ReactComponent as Edit05 } from "./assets/icons/edit-05.svg";
+import { ReactComponent as EqualNot } from "./assets/icons/equal-not.svg";
+import { ReactComponent as Equal } from "./assets/icons/equal.svg";
+import { ReactComponent as Eraser } from "./assets/icons/eraser.svg";
+import { ReactComponent as Expand01 } from "./assets/icons/expand-01.svg";
+import { ReactComponent as Expand02 } from "./assets/icons/expand-02.svg";
+import { ReactComponent as Expand03 } from "./assets/icons/expand-03.svg";
+import { ReactComponent as Expand04 } from "./assets/icons/expand-04.svg";
+import { ReactComponent as Expand05 } from "./assets/icons/expand-05.svg";
+import { ReactComponent as Expand06 } from "./assets/icons/expand-06.svg";
+import { ReactComponent as EyeOff } from "./assets/icons/eye-off.svg";
+import { ReactComponent as Eye } from "./assets/icons/eye.svg";
+import { ReactComponent as FaceContent } from "./assets/icons/face-content.svg";
+import { ReactComponent as FaceFrown } from "./assets/icons/face-frown.svg";
+import { ReactComponent as FaceHappy } from "./assets/icons/face-happy.svg";
+import { ReactComponent as FaceIdSquare } from "./assets/icons/face-id-square.svg";
+import { ReactComponent as FaceId } from "./assets/icons/face-id.svg";
+import { ReactComponent as FaceNeutral } from "./assets/icons/face-neutral.svg";
+import { ReactComponent as FaceSad } from "./assets/icons/face-sad.svg";
+import { ReactComponent as FaceSmile } from "./assets/icons/face-smile.svg";
+import { ReactComponent as FaceWink } from "./assets/icons/face-wink.svg";
+import { ReactComponent as FastBackward } from "./assets/icons/fast-backward.svg";
+import { ReactComponent as FastForward } from "./assets/icons/fast-forward.svg";
+import { ReactComponent as Feather } from "./assets/icons/feather.svg";
+import { ReactComponent as Figma } from "./assets/icons/figma.svg";
+import { ReactComponent as File01 } from "./assets/icons/file-01.svg";
+import { ReactComponent as File02 } from "./assets/icons/file-02.svg";
+import { ReactComponent as File03 } from "./assets/icons/file-03.svg";
+import { ReactComponent as File04 } from "./assets/icons/file-04.svg";
+import { ReactComponent as File05 } from "./assets/icons/file-05.svg";
+import { ReactComponent as File06 } from "./assets/icons/file-06.svg";
+import { ReactComponent as File07 } from "./assets/icons/file-07.svg";
+import { ReactComponent as FileAttachment01 } from "./assets/icons/file-attachment-01.svg";
+import { ReactComponent as FileAttachment02 } from "./assets/icons/file-attachment-02.svg";
+import { ReactComponent as FileAttachment03 } from "./assets/icons/file-attachment-03.svg";
+import { ReactComponent as FileAttachment04 } from "./assets/icons/file-attachment-04.svg";
+import { ReactComponent as FileAttachment05 } from "./assets/icons/file-attachment-05.svg";
+import { ReactComponent as FileCheck01 } from "./assets/icons/file-check-01.svg";
+import { ReactComponent as FileCheck02 } from "./assets/icons/file-check-02.svg";
+import { ReactComponent as FileCheck03 } from "./assets/icons/file-check-03.svg";
+import { ReactComponent as FileCode01 } from "./assets/icons/file-code-01.svg";
+import { ReactComponent as FileCode02 } from "./assets/icons/file-code-02.svg";
+import { ReactComponent as FileDownload01 } from "./assets/icons/file-download-01.svg";
+import { ReactComponent as FileDownload02 } from "./assets/icons/file-download-02.svg";
+import { ReactComponent as FileDownload03 } from "./assets/icons/file-download-03.svg";
+import { ReactComponent as FileHeart01 } from "./assets/icons/file-heart-01.svg";
+import { ReactComponent as FileHeart02 } from "./assets/icons/file-heart-02.svg";
+import { ReactComponent as FileHeart03 } from "./assets/icons/file-heart-03.svg";
+import { ReactComponent as FileLock01 } from "./assets/icons/file-lock-01.svg";
+import { ReactComponent as FileLock02 } from "./assets/icons/file-lock-02.svg";
+import { ReactComponent as FileLock03 } from "./assets/icons/file-lock-03.svg";
+import { ReactComponent as FileMinus01 } from "./assets/icons/file-minus-01.svg";
+import { ReactComponent as FileMinus02 } from "./assets/icons/file-minus-02.svg";
+import { ReactComponent as FileMinus03 } from "./assets/icons/file-minus-03.svg";
+import { ReactComponent as FilePlus01 } from "./assets/icons/file-plus-01.svg";
+import { ReactComponent as FilePlus02 } from "./assets/icons/file-plus-02.svg";
+import { ReactComponent as FilePlus03 } from "./assets/icons/file-plus-03.svg";
+import { ReactComponent as FileQuestion01 } from "./assets/icons/file-question-01.svg";
+import { ReactComponent as FileQuestion02 } from "./assets/icons/file-question-02.svg";
+import { ReactComponent as FileQuestion03 } from "./assets/icons/file-question-03.svg";
+import { ReactComponent as FileSearch01 } from "./assets/icons/file-search-01.svg";
+import { ReactComponent as FileSearch02 } from "./assets/icons/file-search-02.svg";
+import { ReactComponent as FileSearch03 } from "./assets/icons/file-search-03.svg";
+import { ReactComponent as FileShield01 } from "./assets/icons/file-shield-01.svg";
+import { ReactComponent as FileShield02 } from "./assets/icons/file-shield-02.svg";
+import { ReactComponent as FileShield03 } from "./assets/icons/file-shield-03.svg";
+import { ReactComponent as FileX01 } from "./assets/icons/file-x-01.svg";
+import { ReactComponent as FileX02 } from "./assets/icons/file-x-02.svg";
+import { ReactComponent as FileX03 } from "./assets/icons/file-x-03.svg";
+import { ReactComponent as Film01 } from "./assets/icons/film-01.svg";
+import { ReactComponent as Film02 } from "./assets/icons/film-02.svg";
+import { ReactComponent as Film03 } from "./assets/icons/film-03.svg";
+import { ReactComponent as FilterFunnel01 } from "./assets/icons/filter-funnel-01.svg";
+import { ReactComponent as FilterFunnel02 } from "./assets/icons/filter-funnel-02.svg";
+import { ReactComponent as FilterLines } from "./assets/icons/filter-lines.svg";
+import { ReactComponent as Fingerprint01 } from "./assets/icons/fingerprint-01.svg";
+import { ReactComponent as Fingerprint02 } from "./assets/icons/fingerprint-02.svg";
+import { ReactComponent as Fingerprint03 } from "./assets/icons/fingerprint-03.svg";
+import { ReactComponent as Fingerprint04 } from "./assets/icons/fingerprint-04.svg";
+import { ReactComponent as Flag01 } from "./assets/icons/flag-01.svg";
+import { ReactComponent as Flag02 } from "./assets/icons/flag-02.svg";
+import { ReactComponent as Flag03 } from "./assets/icons/flag-03.svg";
+import { ReactComponent as Flag04 } from "./assets/icons/flag-04.svg";
+import { ReactComponent as Flag05 } from "./assets/icons/flag-05.svg";
+import { ReactComponent as Flag06 } from "./assets/icons/flag-06.svg";
+import { ReactComponent as FlashOff } from "./assets/icons/flash-off.svg";
+import { ReactComponent as Flash } from "./assets/icons/flash.svg";
+import { ReactComponent as FlexAlignBottom } from "./assets/icons/flex-align-bottom.svg";
+import { ReactComponent as FlexAlignLeft } from "./assets/icons/flex-align-left.svg";
+import { ReactComponent as FlexAlignRight } from "./assets/icons/flex-align-right.svg";
+import { ReactComponent as FlexAlignTop } from "./assets/icons/flex-align-top.svg";
+import { ReactComponent as FlipBackward } from "./assets/icons/flip-backward.svg";
+import { ReactComponent as FlipForward } from "./assets/icons/flip-forward.svg";
+import { ReactComponent as FolderCheck } from "./assets/icons/folder-check.svg";
+import { ReactComponent as FolderClosed } from "./assets/icons/folder-closed.svg";
+import { ReactComponent as FolderCode } from "./assets/icons/folder-code.svg";
+import { ReactComponent as FolderDownload } from "./assets/icons/folder-download.svg";
+import { ReactComponent as FolderLock } from "./assets/icons/folder-lock.svg";
+import { ReactComponent as FolderMinus } from "./assets/icons/folder-minus.svg";
+import { ReactComponent as FolderPlus } from "./assets/icons/folder-plus.svg";
+import { ReactComponent as FolderQuestion } from "./assets/icons/folder-question.svg";
+import { ReactComponent as FolderSearch } from "./assets/icons/folder-search.svg";
+import { ReactComponent as FolderShield } from "./assets/icons/folder-shield.svg";
+import { ReactComponent as FolderX } from "./assets/icons/folder-x.svg";
+import { ReactComponent as Folder } from "./assets/icons/folder.svg";
+import { ReactComponent as Framer } from "./assets/icons/framer.svg";
+import { ReactComponent as GamingPad01 } from "./assets/icons/gaming-pad-01.svg";
+import { ReactComponent as GamingPad02 } from "./assets/icons/gaming-pad-02.svg";
+import { ReactComponent as Gift01 } from "./assets/icons/gift-01.svg";
+import { ReactComponent as Gift02 } from "./assets/icons/gift-02.svg";
+import { ReactComponent as GitBranch01 } from "./assets/icons/git-branch-01.svg";
+import { ReactComponent as GitBranch02 } from "./assets/icons/git-branch-02.svg";
+import { ReactComponent as GitCommit } from "./assets/icons/git-commit.svg";
+import { ReactComponent as GitMerge } from "./assets/icons/git-merge.svg";
+import { ReactComponent as GitPullRequest } from "./assets/icons/git-pull-request.svg";
+import { ReactComponent as Glasses01 } from "./assets/icons/glasses-01.svg";
+import { ReactComponent as Glasses02 } from "./assets/icons/glasses-02.svg";
+import { ReactComponent as Globe01 } from "./assets/icons/globe-01.svg";
+import { ReactComponent as Globe02 } from "./assets/icons/globe-02.svg";
+import { ReactComponent as Globe03 } from "./assets/icons/globe-03.svg";
+import { ReactComponent as Globe04 } from "./assets/icons/globe-04.svg";
+import { ReactComponent as Globe05 } from "./assets/icons/globe-05.svg";
+import { ReactComponent as Globe06 } from "./assets/icons/globe-06.svg";
+import { ReactComponent as GlobeSlated01 } from "./assets/icons/globe-slated-01.svg";
+import { ReactComponent as GlobeSlated02 } from "./assets/icons/globe-slated-02.svg";
+import { ReactComponent as GoogleChrome } from "./assets/icons/google-chrome.svg";
+import { ReactComponent as GraduationHat01 } from "./assets/icons/graduation-hat-01.svg";
+import { ReactComponent as GraduationHat02 } from "./assets/icons/graduation-hat-02.svg";
+import { ReactComponent as Grid01 } from "./assets/icons/grid-01.svg";
+import { ReactComponent as Grid02 } from "./assets/icons/grid-02.svg";
+import { ReactComponent as Grid03 } from "./assets/icons/grid-03.svg";
+import { ReactComponent as GridDotsBlank } from "./assets/icons/grid-dots-blank.svg";
+import { ReactComponent as GridDotsBottom } from "./assets/icons/grid-dots-bottom.svg";
+import { ReactComponent as GridDotsHorizontalCenter } from "./assets/icons/grid-dots-horizontal-center.svg";
+import { ReactComponent as GridDotsLeft } from "./assets/icons/grid-dots-left.svg";
+import { ReactComponent as GridDotsOuter } from "./assets/icons/grid-dots-outer.svg";
+import { ReactComponent as GridDotsRight } from "./assets/icons/grid-dots-right.svg";
+import { ReactComponent as GridDotsTop } from "./assets/icons/grid-dots-top.svg";
+import { ReactComponent as GridDotsVerticalCenter } from "./assets/icons/grid-dots-vertical-center.svg";
+import { ReactComponent as Hand } from "./assets/icons/hand.svg";
+import { ReactComponent as HardDrive } from "./assets/icons/hard-drive.svg";
+import { ReactComponent as Hash01 } from "./assets/icons/hash-01.svg";
+import { ReactComponent as Hash02 } from "./assets/icons/hash-02.svg";
+import { ReactComponent as Heading01 } from "./assets/icons/heading-01.svg";
+import { ReactComponent as Heading02 } from "./assets/icons/heading-02.svg";
+import { ReactComponent as HeadingSquare } from "./assets/icons/heading-square.svg";
+import { ReactComponent as Headphones01 } from "./assets/icons/headphones-01.svg";
+import { ReactComponent as Headphones02 } from "./assets/icons/headphones-02.svg";
+import { ReactComponent as HeartCircle } from "./assets/icons/heart-circle.svg";
+import { ReactComponent as HeartHand } from "./assets/icons/heart-hand.svg";
+import { ReactComponent as HeartHexagon } from "./assets/icons/heart-hexagon.svg";
+import { ReactComponent as HeartOctagon } from "./assets/icons/heart-octagon.svg";
+import { ReactComponent as HeartRounded } from "./assets/icons/heart-rounded.svg";
+import { ReactComponent as HeartSquare } from "./assets/icons/heart-square.svg";
+import { ReactComponent as Heart } from "./assets/icons/heart.svg";
+import { ReactComponent as Hearts } from "./assets/icons/hearts.svg";
+import { ReactComponent as HelpCircle } from "./assets/icons/help-circle.svg";
+import { ReactComponent as HelpHexagon } from "./assets/icons/help-hexagon.svg";
+import { ReactComponent as HelpOctagon } from "./assets/icons/help-octagon.svg";
+import { ReactComponent as HelpSquare } from "./assets/icons/help-square.svg";
+import { ReactComponent as Hexagon01 } from "./assets/icons/hexagon-01.svg";
+import { ReactComponent as Hexagon02 } from "./assets/icons/hexagon-02.svg";
+import { ReactComponent as Home01 } from "./assets/icons/home-01.svg";
+import { ReactComponent as Home02 } from "./assets/icons/home-02.svg";
+import { ReactComponent as Home03 } from "./assets/icons/home-03.svg";
+import { ReactComponent as Home04 } from "./assets/icons/home-04.svg";
+import { ReactComponent as Home05 } from "./assets/icons/home-05.svg";
+import { ReactComponent as HomeLine } from "./assets/icons/home-line.svg";
+import { ReactComponent as HomeSmile } from "./assets/icons/home-smile.svg";
+import { ReactComponent as HorizontalBarChart01 } from "./assets/icons/horizontal-bar-chart-01.svg";
+import { ReactComponent as HorizontalBarChart02 } from "./assets/icons/horizontal-bar-chart-02.svg";
+import { ReactComponent as HorizontalBarChart03 } from "./assets/icons/horizontal-bar-chart-03.svg";
+import { ReactComponent as Hourglass01 } from "./assets/icons/hourglass-01.svg";
+import { ReactComponent as Hourglass02 } from "./assets/icons/hourglass-02.svg";
+import { ReactComponent as Hourglass03 } from "./assets/icons/hourglass-03.svg";
+import { ReactComponent as Hurricane01 } from "./assets/icons/hurricane-01.svg";
+import { ReactComponent as Hurricane02 } from "./assets/icons/hurricane-02.svg";
+import { ReactComponent as Hurricane03 } from "./assets/icons/hurricane-03.svg";
+import { ReactComponent as Image01 } from "./assets/icons/image-01.svg";
+import { ReactComponent as Image02 } from "./assets/icons/image-02.svg";
+import { ReactComponent as Image03 } from "./assets/icons/image-03.svg";
+import { ReactComponent as Image04 } from "./assets/icons/image-04.svg";
+import { ReactComponent as Image05 } from "./assets/icons/image-05.svg";
+import { ReactComponent as ImageCheck } from "./assets/icons/image-check.svg";
+import { ReactComponent as ImageDown } from "./assets/icons/image-down.svg";
+import { ReactComponent as ImageIndentLeft } from "./assets/icons/image-indent-left.svg";
+import { ReactComponent as ImageIndentRight } from "./assets/icons/image-indent-right.svg";
+import { ReactComponent as ImageLeft } from "./assets/icons/image-left.svg";
+import { ReactComponent as ImagePlus } from "./assets/icons/image-plus.svg";
+import { ReactComponent as ImageRight } from "./assets/icons/image-right.svg";
+import { ReactComponent as ImageUp } from "./assets/icons/image-up.svg";
+import { ReactComponent as ImageUserCheck } from "./assets/icons/image-user-check.svg";
+import { ReactComponent as ImageUserDown } from "./assets/icons/image-user-down.svg";
+import { ReactComponent as ImageUserLeft } from "./assets/icons/image-user-left.svg";
+import { ReactComponent as ImageUserPlus } from "./assets/icons/image-user-plus.svg";
+import { ReactComponent as ImageUserRight } from "./assets/icons/image-user-right.svg";
+import { ReactComponent as ImageUserUp } from "./assets/icons/image-user-up.svg";
+import { ReactComponent as ImageUserX } from "./assets/icons/image-user-x.svg";
+import { ReactComponent as ImageUser } from "./assets/icons/image-user.svg";
+import { ReactComponent as ImageX } from "./assets/icons/image-x.svg";
+import { ReactComponent as Inbox01 } from "./assets/icons/inbox-01.svg";
+import { ReactComponent as Inbox02 } from "./assets/icons/inbox-02.svg";
+import { ReactComponent as Infinity } from "./assets/icons/infinity.svg";
+import { ReactComponent as InfoCircle } from "./assets/icons/info-circle.svg";
+import { ReactComponent as InfoHexagon } from "./assets/icons/info-hexagon.svg";
+import { ReactComponent as InfoOctagon } from "./assets/icons/info-octagon.svg";
+import { ReactComponent as InfoSquare } from "./assets/icons/info-square.svg";
+import { ReactComponent as Instagram } from "./assets/icons/instagram.svg";
+import { ReactComponent as IntersectCircle } from "./assets/icons/intersect-circle.svg";
+import { ReactComponent as IntersectSquare } from "./assets/icons/intersect-square.svg";
+import { ReactComponent as Italic01 } from "./assets/icons/italic-01.svg";
+import { ReactComponent as Italic02 } from "./assets/icons/italic-02.svg";
+import { ReactComponent as ItalicSquare } from "./assets/icons/italic-square.svg";
+import { ReactComponent as Key01 } from "./assets/icons/key-01.svg";
+import { ReactComponent as Key02 } from "./assets/icons/key-02.svg";
+import { ReactComponent as Keyboard01 } from "./assets/icons/keyboard-01.svg";
+import { ReactComponent as Keyboard02 } from "./assets/icons/keyboard-02.svg";
+import { ReactComponent as Laptop01 } from "./assets/icons/laptop-01.svg";
+import { ReactComponent as Laptop02 } from "./assets/icons/laptop-02.svg";
+import { ReactComponent as LayerSingle } from "./assets/icons/layer-single.svg";
+import { ReactComponent as LayersThree01 } from "./assets/icons/layers-three-01.svg";
+import { ReactComponent as LayersThree02 } from "./assets/icons/layers-three-02.svg";
+import { ReactComponent as LayersTwo01 } from "./assets/icons/layers-two-01.svg";
+import { ReactComponent as LayersTwo02 } from "./assets/icons/layers-two-02.svg";
+import { ReactComponent as LayoutAlt01 } from "./assets/icons/layout-alt-01.svg";
+import { ReactComponent as LayoutAlt02 } from "./assets/icons/layout-alt-02.svg";
+import { ReactComponent as LayoutAlt03 } from "./assets/icons/layout-alt-03.svg";
+import { ReactComponent as LayoutAlt04 } from "./assets/icons/layout-alt-04.svg";
+import { ReactComponent as LayoutBottom } from "./assets/icons/layout-bottom.svg";
+import { ReactComponent as LayoutGrid01 } from "./assets/icons/layout-grid-01.svg";
+import { ReactComponent as LayoutGrid02 } from "./assets/icons/layout-grid-02.svg";
+import { ReactComponent as LayoutLeft } from "./assets/icons/layout-left.svg";
+import { ReactComponent as LayoutRight } from "./assets/icons/layout-right.svg";
+import { ReactComponent as LayoutTop } from "./assets/icons/layout-top.svg";
+import { ReactComponent as LeftIndent01 } from "./assets/icons/left-indent-01.svg";
+import { ReactComponent as LeftIndent02 } from "./assets/icons/left-indent-02.svg";
+import { ReactComponent as LetterSpacing01 } from "./assets/icons/letter-spacing-01.svg";
+import { ReactComponent as LetterSpacing02 } from "./assets/icons/letter-spacing-02.svg";
+import { ReactComponent as LifeBuoy01 } from "./assets/icons/life-buoy-01.svg";
+import { ReactComponent as LifeBuoy02 } from "./assets/icons/life-buoy-02.svg";
+import { ReactComponent as Lightbulb01 } from "./assets/icons/lightbulb-01.svg";
+import { ReactComponent as Lightbulb02 } from "./assets/icons/lightbulb-02.svg";
+import { ReactComponent as Lightbulb03 } from "./assets/icons/lightbulb-03.svg";
+import { ReactComponent as Lightbulb04 } from "./assets/icons/lightbulb-04.svg";
+import { ReactComponent as Lightbulb05 } from "./assets/icons/lightbulb-05.svg";
+import { ReactComponent as Lightning01 } from "./assets/icons/lightning-01.svg";
+import { ReactComponent as Lightning02 } from "./assets/icons/lightning-02.svg";
+import { ReactComponent as LineChartDown01 } from "./assets/icons/line-chart-down-01.svg";
+import { ReactComponent as LineChartDown02 } from "./assets/icons/line-chart-down-02.svg";
+import { ReactComponent as LineChartDown03 } from "./assets/icons/line-chart-down-03.svg";
+import { ReactComponent as LineChartDown04 } from "./assets/icons/line-chart-down-04.svg";
+import { ReactComponent as LineChartDown05 } from "./assets/icons/line-chart-down-05.svg";
+import { ReactComponent as LineChartUp01 } from "./assets/icons/line-chart-up-01.svg";
+import { ReactComponent as LineChartUp02 } from "./assets/icons/line-chart-up-02.svg";
+import { ReactComponent as LineChartUp03 } from "./assets/icons/line-chart-up-03.svg";
+import { ReactComponent as LineChartUp04 } from "./assets/icons/line-chart-up-04.svg";
+import { ReactComponent as LineChartUp05 } from "./assets/icons/line-chart-up-05.svg";
+import { ReactComponent as LineHeight } from "./assets/icons/line-height.svg";
+import { ReactComponent as Link01 } from "./assets/icons/link-01.svg";
+import { ReactComponent as Link02 } from "./assets/icons/link-02.svg";
+import { ReactComponent as Link03 } from "./assets/icons/link-03.svg";
+import { ReactComponent as Link04 } from "./assets/icons/link-04.svg";
+import { ReactComponent as Link05 } from "./assets/icons/link-05.svg";
+import { ReactComponent as LinkBroken01 } from "./assets/icons/link-broken-01.svg";
+import { ReactComponent as LinkBroken02 } from "./assets/icons/link-broken-02.svg";
+import { ReactComponent as LinkExternal01 } from "./assets/icons/link-external-01.svg";
+import { ReactComponent as LinkExternal02 } from "./assets/icons/link-external-02.svg";
+import { ReactComponent as List } from "./assets/icons/list.svg";
+import { ReactComponent as Loading01 } from "./assets/icons/loading-01.svg";
+import { ReactComponent as Loading02 } from "./assets/icons/loading-02.svg";
+import { ReactComponent as Loading03 } from "./assets/icons/loading-03.svg";
+import { ReactComponent as Lock01 } from "./assets/icons/lock-01.svg";
+import { ReactComponent as Lock02 } from "./assets/icons/lock-02.svg";
+import { ReactComponent as Lock03 } from "./assets/icons/lock-03.svg";
+import { ReactComponent as Lock04 } from "./assets/icons/lock-04.svg";
+import { ReactComponent as LockKeyholeCircle } from "./assets/icons/lock-keyhole-circle.svg";
+import { ReactComponent as LockKeyholeSquare } from "./assets/icons/lock-keyhole-square.svg";
+import { ReactComponent as LockUnlocked01 } from "./assets/icons/lock-unlocked-01.svg";
+import { ReactComponent as LockUnlocked02 } from "./assets/icons/lock-unlocked-02.svg";
+import { ReactComponent as LockUnlocked03 } from "./assets/icons/lock-unlocked-03.svg";
+import { ReactComponent as LockUnlocked04 } from "./assets/icons/lock-unlocked-04.svg";
+import { ReactComponent as LogIn01 } from "./assets/icons/log-in-01.svg";
+import { ReactComponent as LogIn02 } from "./assets/icons/log-in-02.svg";
+import { ReactComponent as LogIn03 } from "./assets/icons/log-in-03.svg";
+import { ReactComponent as LogIn04 } from "./assets/icons/log-in-04.svg";
+import { ReactComponent as LogOut01 } from "./assets/icons/log-out-01.svg";
+import { ReactComponent as LogOut02 } from "./assets/icons/log-out-02.svg";
+import { ReactComponent as LogOut03 } from "./assets/icons/log-out-03.svg";
+import { ReactComponent as LogOut04 } from "./assets/icons/log-out-04.svg";
+import { ReactComponent as Luggage01 } from "./assets/icons/luggage-01.svg";
+import { ReactComponent as Luggage02 } from "./assets/icons/luggage-02.svg";
+import { ReactComponent as Luggage03 } from "./assets/icons/luggage-03.svg";
+import { ReactComponent as MagicWand01 } from "./assets/icons/magic-wand-01.svg";
+import { ReactComponent as MagicWand02 } from "./assets/icons/magic-wand-02.svg";
+import { ReactComponent as Mail01 } from "./assets/icons/mail-01.svg";
+import { ReactComponent as Mail02 } from "./assets/icons/mail-02.svg";
+import { ReactComponent as Mail03 } from "./assets/icons/mail-03.svg";
+import { ReactComponent as Mail04 } from "./assets/icons/mail-04.svg";
+import { ReactComponent as Mail05 } from "./assets/icons/mail-05.svg";
+import { ReactComponent as Map01 } from "./assets/icons/map-01.svg";
+import { ReactComponent as Map02 } from "./assets/icons/map-02.svg";
+import { ReactComponent as Mark } from "./assets/icons/mark.svg";
+import { ReactComponent as MarkerPin01 } from "./assets/icons/marker-pin-01.svg";
+import { ReactComponent as MarkerPin02 } from "./assets/icons/marker-pin-02.svg";
+import { ReactComponent as MarkerPin03 } from "./assets/icons/marker-pin-03.svg";
+import { ReactComponent as MarkerPin04 } from "./assets/icons/marker-pin-04.svg";
+import { ReactComponent as MarkerPin05 } from "./assets/icons/marker-pin-05.svg";
+import { ReactComponent as MarkerPin06 } from "./assets/icons/marker-pin-06.svg";
+import { ReactComponent as Maximize01 } from "./assets/icons/maximize-01.svg";
+import { ReactComponent as Maximize02 } from "./assets/icons/maximize-02.svg";
+import { ReactComponent as MedicalCircle } from "./assets/icons/medical-circle.svg";
+import { ReactComponent as MedicalCross } from "./assets/icons/medical-cross.svg";
+import { ReactComponent as MedicalSquare } from "./assets/icons/medical-square.svg";
+import { ReactComponent as Menu01 } from "./assets/icons/menu-01.svg";
+import { ReactComponent as Menu02 } from "./assets/icons/menu-02.svg";
+import { ReactComponent as Menu03 } from "./assets/icons/menu-03.svg";
+import { ReactComponent as Menu04 } from "./assets/icons/menu-04.svg";
+import { ReactComponent as Menu05 } from "./assets/icons/menu-05.svg";
+import { ReactComponent as MessageAlertCircle } from "./assets/icons/message-alert-circle.svg";
+import { ReactComponent as MessageAlertSquare } from "./assets/icons/message-alert-square.svg";
+import { ReactComponent as MessageChatCircle } from "./assets/icons/message-chat-circle.svg";
+import { ReactComponent as MessageChatSquare } from "./assets/icons/message-chat-square.svg";
+import { ReactComponent as MessageCheckCircle } from "./assets/icons/message-check-circle.svg";
+import { ReactComponent as MessageCheckSquare } from "./assets/icons/message-check-square.svg";
+import { ReactComponent as MessageCircle01 } from "./assets/icons/message-circle-01.svg";
+import { ReactComponent as MessageCircle02 } from "./assets/icons/message-circle-02.svg";
+import { ReactComponent as MessageDotsCircle } from "./assets/icons/message-dots-circle.svg";
+import { ReactComponent as MessageDotsSquare } from "./assets/icons/message-dots-square.svg";
+import { ReactComponent as MessageHeartCircle } from "./assets/icons/message-heart-circle.svg";
+import { ReactComponent as MessageHeartSquare } from "./assets/icons/message-heart-square.svg";
+import { ReactComponent as MessageNotificationCircle } from "./assets/icons/message-notification-circle.svg";
+import { ReactComponent as MessageNotificationSquare } from "./assets/icons/message-notification-square.svg";
+import { ReactComponent as MessagePlusCircle } from "./assets/icons/message-plus-circle.svg";
+import { ReactComponent as MessagePlusSquare } from "./assets/icons/message-plus-square.svg";
+import { ReactComponent as MessageQuestionCircle } from "./assets/icons/message-question-circle.svg";
+import { ReactComponent as MessageQuestionSquare } from "./assets/icons/message-question-square.svg";
+import { ReactComponent as MessageSmileCircle } from "./assets/icons/message-smile-circle.svg";
+import { ReactComponent as MessageSmileSquare } from "./assets/icons/message-smile-square.svg";
+import { ReactComponent as MessageSquare01 } from "./assets/icons/message-square-01.svg";
+import { ReactComponent as MessageSquare02 } from "./assets/icons/message-square-02.svg";
+import { ReactComponent as MessageTextCircle01 } from "./assets/icons/message-text-circle-01.svg";
+import { ReactComponent as MessageTextCircle02 } from "./assets/icons/message-text-circle-02.svg";
+import { ReactComponent as MessageTextSquare01 } from "./assets/icons/message-text-square-01.svg";
+import { ReactComponent as MessageTextSquare02 } from "./assets/icons/message-text-square-02.svg";
+import { ReactComponent as MessageXCircle } from "./assets/icons/message-x-circle.svg";
+import { ReactComponent as MessageXSquare } from "./assets/icons/message-x-square.svg";
+import { ReactComponent as Meta } from "./assets/icons/meta.svg";
+import { ReactComponent as Microphone01 } from "./assets/icons/microphone-01.svg";
+import { ReactComponent as Microphone02 } from "./assets/icons/microphone-02.svg";
+import { ReactComponent as MicrophoneOff01 } from "./assets/icons/microphone-off-01.svg";
+import { ReactComponent as MicrophoneOff02 } from "./assets/icons/microphone-off-02.svg";
+import { ReactComponent as Microscope } from "./assets/icons/microscope.svg";
+import { ReactComponent as Minimize01 } from "./assets/icons/minimize-01.svg";
+import { ReactComponent as Minimize02 } from "./assets/icons/minimize-02.svg";
+import { ReactComponent as MinusCircle } from "./assets/icons/minus-circle.svg";
+import { ReactComponent as MinusSquare } from "./assets/icons/minus-square.svg";
+import { ReactComponent as Minus } from "./assets/icons/minus.svg";
+import { ReactComponent as Modem01 } from "./assets/icons/modem-01.svg";
+import { ReactComponent as Modem02 } from "./assets/icons/modem-02.svg";
+import { ReactComponent as Monitor01 } from "./assets/icons/monitor-01.svg";
+import { ReactComponent as Monitor02 } from "./assets/icons/monitor-02.svg";
+import { ReactComponent as Monitor03 } from "./assets/icons/monitor-03.svg";
+import { ReactComponent as Monitor04 } from "./assets/icons/monitor-04.svg";
+import { ReactComponent as Monitor05 } from "./assets/icons/monitor-05.svg";
+import { ReactComponent as Moon01 } from "./assets/icons/moon-01.svg";
+import { ReactComponent as Moon02 } from "./assets/icons/moon-02.svg";
+import { ReactComponent as MoonEclipse } from "./assets/icons/moon-eclipse.svg";
+import { ReactComponent as MoonStar } from "./assets/icons/moon-star.svg";
+import { ReactComponent as Mouse } from "./assets/icons/mouse.svg";
+import { ReactComponent as Move } from "./assets/icons/move.svg";
+import { ReactComponent as MusicNote01 } from "./assets/icons/music-note-01.svg";
+import { ReactComponent as MusicNote02 } from "./assets/icons/music-note-02.svg";
+import { ReactComponent as MusicNotePlus } from "./assets/icons/music-note-plus.svg";
+import { ReactComponent as NavigationPointer01 } from "./assets/icons/navigation-pointer-01.svg";
+import { ReactComponent as NavigationPointer02 } from "./assets/icons/navigation-pointer-02.svg";
+import { ReactComponent as NavigationPointerOff01 } from "./assets/icons/navigation-pointer-off-01.svg";
+import { ReactComponent as NavigationPointerOff02 } from "./assets/icons/navigation-pointer-off-02.svg";
+import { ReactComponent as NotificationBox } from "./assets/icons/notification-box.svg";
+import { ReactComponent as NotificationMessage } from "./assets/icons/notification-message.svg";
+import { ReactComponent as NotificationText } from "./assets/icons/notification-text.svg";
+import { ReactComponent as Octagon } from "./assets/icons/octagon.svg";
+import { ReactComponent as PackageCheck } from "./assets/icons/package-check.svg";
+import { ReactComponent as PackageMinus } from "./assets/icons/package-minus.svg";
+import { ReactComponent as PackagePlus } from "./assets/icons/package-plus.svg";
+import { ReactComponent as PackageSearch } from "./assets/icons/package-search.svg";
+import { ReactComponent as PackageX } from "./assets/icons/package-x.svg";
+import { ReactComponent as Package } from "./assets/icons/package.svg";
+import { ReactComponent as PaintPour } from "./assets/icons/paint-pour.svg";
+import { ReactComponent as Paint } from "./assets/icons/paint.svg";
+import { ReactComponent as Palette } from "./assets/icons/palette.svg";
+import { ReactComponent as Paperclip } from "./assets/icons/paperclip.svg";
+import { ReactComponent as ParagraphSpacing } from "./assets/icons/paragraph-spacing.svg";
+import { ReactComponent as ParagraphWrap } from "./assets/icons/paragraph-wrap.svg";
+import { ReactComponent as PasscodeLock } from "./assets/icons/passcode-lock.svg";
+import { ReactComponent as Passcode } from "./assets/icons/passcode.svg";
+import { ReactComponent as Passport } from "./assets/icons/passport.svg";
+import { ReactComponent as PauseCircle } from "./assets/icons/pause-circle.svg";
+import { ReactComponent as PauseSquare } from "./assets/icons/pause-square.svg";
+import { ReactComponent as PenTool01 } from "./assets/icons/pen-tool-01.svg";
+import { ReactComponent as PenTool02 } from "./assets/icons/pen-tool-02.svg";
+import { ReactComponent as PenToolMinus } from "./assets/icons/pen-tool-minus.svg";
+import { ReactComponent as PenToolPlus } from "./assets/icons/pen-tool-plus.svg";
+import { ReactComponent as Pencil01 } from "./assets/icons/pencil-01.svg";
+import { ReactComponent as Pencil02 } from "./assets/icons/pencil-02.svg";
+import { ReactComponent as PencilLine } from "./assets/icons/pencil-line.svg";
+import { ReactComponent as Pentagon } from "./assets/icons/pentagon.svg";
+import { ReactComponent as Percent01 } from "./assets/icons/percent-01.svg";
+import { ReactComponent as Percent02 } from "./assets/icons/percent-02.svg";
+import { ReactComponent as Percent03 } from "./assets/icons/percent-03.svg";
+import { ReactComponent as Perspective01 } from "./assets/icons/perspective-01.svg";
+import { ReactComponent as Perspective02 } from "./assets/icons/perspective-02.svg";
+import { ReactComponent as Phone01 } from "./assets/icons/phone-01.svg";
+import { ReactComponent as Phone02 } from "./assets/icons/phone-02.svg";
+import { ReactComponent as PhoneCall01 } from "./assets/icons/phone-call-01.svg";
+import { ReactComponent as PhoneCall02 } from "./assets/icons/phone-call-02.svg";
+import { ReactComponent as PhoneHangUp } from "./assets/icons/phone-hang-up.svg";
+import { ReactComponent as PhoneIncoming01 } from "./assets/icons/phone-incoming-01.svg";
+import { ReactComponent as PhoneIncoming02 } from "./assets/icons/phone-incoming-02.svg";
+import { ReactComponent as PhoneOutgoing01 } from "./assets/icons/phone-outgoing-01.svg";
+import { ReactComponent as PhoneOutgoing02 } from "./assets/icons/phone-outgoing-02.svg";
+import { ReactComponent as PhonePause } from "./assets/icons/phone-pause.svg";
+import { ReactComponent as PhonePlus } from "./assets/icons/phone-plus.svg";
+import { ReactComponent as PhoneX } from "./assets/icons/phone-x.svg";
+import { ReactComponent as Phone } from "./assets/icons/phone.svg";
+import { ReactComponent as PieChart01 } from "./assets/icons/pie-chart-01.svg";
+import { ReactComponent as PieChart02 } from "./assets/icons/pie-chart-02.svg";
+import { ReactComponent as PieChart03 } from "./assets/icons/pie-chart-03.svg";
+import { ReactComponent as PieChart04 } from "./assets/icons/pie-chart-04.svg";
+import { ReactComponent as PiggyBank01 } from "./assets/icons/piggy-bank-01.svg";
+import { ReactComponent as PiggyBank02 } from "./assets/icons/piggy-bank-02.svg";
+import { ReactComponent as Pilcrow01 } from "./assets/icons/pilcrow-01.svg";
+import { ReactComponent as Pilcrow02 } from "./assets/icons/pilcrow-02.svg";
+import { ReactComponent as PilcrowSquare } from "./assets/icons/pilcrow-square.svg";
+import { ReactComponent as Pin01 } from "./assets/icons/pin-01.svg";
+import { ReactComponent as Pin02 } from "./assets/icons/pin-02.svg";
+import { ReactComponent as Placeholder } from "./assets/icons/placeholder.svg";
+import { ReactComponent as Plane } from "./assets/icons/plane.svg";
+import { ReactComponent as PlayCircle } from "./assets/icons/play-circle.svg";
+import { ReactComponent as PlaySquare } from "./assets/icons/play-square.svg";
+import { ReactComponent as Play } from "./assets/icons/play.svg";
+import { ReactComponent as PlusCircle } from "./assets/icons/plus-circle.svg";
+import { ReactComponent as PlusSquare } from "./assets/icons/plus-square.svg";
+import { ReactComponent as Plus } from "./assets/icons/plus.svg";
+import { ReactComponent as Podcast } from "./assets/icons/podcast.svg";
+import { ReactComponent as Power01 } from "./assets/icons/power-01.svg";
+import { ReactComponent as Power02 } from "./assets/icons/power-02.svg";
+import { ReactComponent as Power03 } from "./assets/icons/power-03.svg";
+import { ReactComponent as PresentationChart01 } from "./assets/icons/presentation-chart-01.svg";
+import { ReactComponent as PresentationChart02 } from "./assets/icons/presentation-chart-02.svg";
+import { ReactComponent as PresentationChart03 } from "./assets/icons/presentation-chart-03.svg";
+import { ReactComponent as Printer } from "./assets/icons/printer.svg";
+import { ReactComponent as PuzzlePiece01 } from "./assets/icons/puzzle-piece-01.svg";
+import { ReactComponent as PuzzlePiece02 } from "./assets/icons/puzzle-piece-02.svg";
+import { ReactComponent as QrCode01 } from "./assets/icons/qr-code-01.svg";
+import { ReactComponent as QrCode02 } from "./assets/icons/qr-code-02.svg";
+import { ReactComponent as ReceiptCheck } from "./assets/icons/receipt-check.svg";
+import { ReactComponent as Receipt } from "./assets/icons/receipt.svg";
+import { ReactComponent as Recording01 } from "./assets/icons/recording-01.svg";
+import { ReactComponent as Recording02 } from "./assets/icons/recording-02.svg";
+import { ReactComponent as Recording03 } from "./assets/icons/recording-03.svg";
+import { ReactComponent as Reflect01 } from "./assets/icons/reflect-01.svg";
+import { ReactComponent as Reflect02 } from "./assets/icons/reflect-02.svg";
+import { ReactComponent as RefreshCcw01 } from "./assets/icons/refresh-ccw-01.svg";
+import { ReactComponent as RefreshCcw02 } from "./assets/icons/refresh-ccw-02.svg";
+import { ReactComponent as RefreshCcw03 } from "./assets/icons/refresh-ccw-03.svg";
+import { ReactComponent as RefreshCcw04 } from "./assets/icons/refresh-ccw-04.svg";
+import { ReactComponent as RefreshCcw05 } from "./assets/icons/refresh-ccw-05.svg";
+import { ReactComponent as RefreshCw01 } from "./assets/icons/refresh-cw-01.svg";
+import { ReactComponent as RefreshCw02 } from "./assets/icons/refresh-cw-02.svg";
+import { ReactComponent as RefreshCw03 } from "./assets/icons/refresh-cw-03.svg";
+import { ReactComponent as RefreshCw04 } from "./assets/icons/refresh-cw-04.svg";
+import { ReactComponent as RefreshCw05 } from "./assets/icons/refresh-cw-05.svg";
+import { ReactComponent as Repeat01 } from "./assets/icons/repeat-01.svg";
+import { ReactComponent as Repeat02 } from "./assets/icons/repeat-02.svg";
+import { ReactComponent as Repeat03 } from "./assets/icons/repeat-03.svg";
+import { ReactComponent as Repeat04 } from "./assets/icons/repeat-04.svg";
+import { ReactComponent as ReverseLeft } from "./assets/icons/reverse-left.svg";
+import { ReactComponent as ReverseRight } from "./assets/icons/reverse-right.svg";
+import { ReactComponent as RightIndent01 } from "./assets/icons/right-indent-01.svg";
+import { ReactComponent as RightIndent02 } from "./assets/icons/right-indent-02.svg";
+import { ReactComponent as Rocket01 } from "./assets/icons/rocket-01.svg";
+import { ReactComponent as Rocket02 } from "./assets/icons/rocket-02.svg";
+import { ReactComponent as RollerBrush } from "./assets/icons/roller-brush.svg";
+import { ReactComponent as Route } from "./assets/icons/route.svg";
+import { ReactComponent as Rows01 } from "./assets/icons/rows-01.svg";
+import { ReactComponent as Rows02 } from "./assets/icons/rows-02.svg";
+import { ReactComponent as Rows03 } from "./assets/icons/rows-03.svg";
+import { ReactComponent as Rss01 } from "./assets/icons/rss-01.svg";
+import { ReactComponent as Rss02 } from "./assets/icons/rss-02.svg";
+import { ReactComponent as Ruler } from "./assets/icons/ruler.svg";
+import { ReactComponent as Safe } from "./assets/icons/safe.svg";
+import { ReactComponent as Sale01 } from "./assets/icons/sale-01.svg";
+import { ReactComponent as Sale02 } from "./assets/icons/sale-02.svg";
+import { ReactComponent as Sale03 } from "./assets/icons/sale-03.svg";
+import { ReactComponent as Sale04 } from "./assets/icons/sale-04.svg";
+import { ReactComponent as Save01 } from "./assets/icons/save-01.svg";
+import { ReactComponent as Save02 } from "./assets/icons/save-02.svg";
+import { ReactComponent as Save03 } from "./assets/icons/save-03.svg";
+import { ReactComponent as Scale01 } from "./assets/icons/scale-01.svg";
+import { ReactComponent as Scale02 } from "./assets/icons/scale-02.svg";
+import { ReactComponent as Scale03 } from "./assets/icons/scale-03.svg";
+import { ReactComponent as Scales01 } from "./assets/icons/scales-01.svg";
+import { ReactComponent as Scales02 } from "./assets/icons/scales-02.svg";
+import { ReactComponent as Scan } from "./assets/icons/scan.svg";
+import { ReactComponent as Scissors01 } from "./assets/icons/scissors-01.svg";
+import { ReactComponent as Scissors02 } from "./assets/icons/scissors-02.svg";
+import { ReactComponent as ScissorsCut01 } from "./assets/icons/scissors-cut-01.svg";
+import { ReactComponent as ScissorsCut02 } from "./assets/icons/scissors-cut-02.svg";
+import { ReactComponent as SearchLg } from "./assets/icons/search-lg.svg";
+import { ReactComponent as SearchMd } from "./assets/icons/search-md.svg";
+import { ReactComponent as SearchRefraction } from "./assets/icons/search-refraction.svg";
+import { ReactComponent as SearchSm } from "./assets/icons/search-sm.svg";
+import { ReactComponent as Send01 } from "./assets/icons/send-01.svg";
+import { ReactComponent as Send02 } from "./assets/icons/send-02.svg";
+import { ReactComponent as Send03 } from "./assets/icons/send-03.svg";
+import { ReactComponent as Server01 } from "./assets/icons/server-01.svg";
+import { ReactComponent as Server02 } from "./assets/icons/server-02.svg";
+import { ReactComponent as Server03 } from "./assets/icons/server-03.svg";
+import { ReactComponent as Server04 } from "./assets/icons/server-04.svg";
+import { ReactComponent as Server05 } from "./assets/icons/server-05.svg";
+import { ReactComponent as Server06 } from "./assets/icons/server-06.svg";
+import { ReactComponent as Settings01 } from "./assets/icons/settings-01.svg";
+import { ReactComponent as Settings02 } from "./assets/icons/settings-02.svg";
+import { ReactComponent as Settings03 } from "./assets/icons/settings-03.svg";
+import { ReactComponent as Settings04 } from "./assets/icons/settings-04.svg";
+import { ReactComponent as Share01 } from "./assets/icons/share-01.svg";
+import { ReactComponent as Share02 } from "./assets/icons/share-02.svg";
+import { ReactComponent as Share03 } from "./assets/icons/share-03.svg";
+import { ReactComponent as Share04 } from "./assets/icons/share-04.svg";
+import { ReactComponent as Share05 } from "./assets/icons/share-05.svg";
+import { ReactComponent as Share06 } from "./assets/icons/share-06.svg";
+import { ReactComponent as Share07 } from "./assets/icons/share-07.svg";
+import { ReactComponent as Shield01 } from "./assets/icons/shield-01.svg";
+import { ReactComponent as Shield02 } from "./assets/icons/shield-02.svg";
+import { ReactComponent as Shield03 } from "./assets/icons/shield-03.svg";
+import { ReactComponent as ShieldDollar } from "./assets/icons/shield-dollar.svg";
+import { ReactComponent as ShieldOff } from "./assets/icons/shield-off.svg";
+import { ReactComponent as ShieldPlus } from "./assets/icons/shield-plus.svg";
+import { ReactComponent as ShieldTick } from "./assets/icons/shield-tick.svg";
+import { ReactComponent as ShieldZap } from "./assets/icons/shield-zap.svg";
+import { ReactComponent as ShoppingBag01 } from "./assets/icons/shopping-bag-01.svg";
+import { ReactComponent as ShoppingBag02 } from "./assets/icons/shopping-bag-02.svg";
+import { ReactComponent as ShoppingBag03 } from "./assets/icons/shopping-bag-03.svg";
+import { ReactComponent as ShoppingCart01 } from "./assets/icons/shopping-cart-01.svg";
+import { ReactComponent as ShoppingCart02 } from "./assets/icons/shopping-cart-02.svg";
+import { ReactComponent as ShoppingCart03 } from "./assets/icons/shopping-cart-03.svg";
+import { ReactComponent as Shuffle01 } from "./assets/icons/shuffle-01.svg";
+import { ReactComponent as Shuffle02 } from "./assets/icons/shuffle-02.svg";
+import { ReactComponent as Signal01 } from "./assets/icons/signal-01.svg";
+import { ReactComponent as Signal02 } from "./assets/icons/signal-02.svg";
+import { ReactComponent as Signal03 } from "./assets/icons/signal-03.svg";
+import { ReactComponent as Simcard } from "./assets/icons/simcard.svg";
+import { ReactComponent as Skew } from "./assets/icons/skew.svg";
+import { ReactComponent as SkipBack } from "./assets/icons/skip-back.svg";
+import { ReactComponent as SkipForward } from "./assets/icons/skip-forward.svg";
+import { ReactComponent as SlashCircle01 } from "./assets/icons/slash-circle-01.svg";
+import { ReactComponent as SlashCircle02 } from "./assets/icons/slash-circle-02.svg";
+import { ReactComponent as SlashDivider } from "./assets/icons/slash-divider.svg";
+import { ReactComponent as SlashOctagon } from "./assets/icons/slash-octagon.svg";
+import { ReactComponent as Sliders01 } from "./assets/icons/sliders-01.svg";
+import { ReactComponent as Sliders02 } from "./assets/icons/sliders-02.svg";
+import { ReactComponent as Sliders03 } from "./assets/icons/sliders-03.svg";
+import { ReactComponent as Sliders04 } from "./assets/icons/sliders-04.svg";
+import { ReactComponent as Snowflake01 } from "./assets/icons/snowflake-01.svg";
+import { ReactComponent as Snowflake02 } from "./assets/icons/snowflake-02.svg";
+import { ReactComponent as SpacingHeight01 } from "./assets/icons/spacing-height-01.svg";
+import { ReactComponent as SpacingHeight02 } from "./assets/icons/spacing-height-02.svg";
+import { ReactComponent as SpacingWidth01 } from "./assets/icons/spacing-width-01.svg";
+import { ReactComponent as SpacingWidth02 } from "./assets/icons/spacing-width-02.svg";
+import { ReactComponent as Speaker01 } from "./assets/icons/speaker-01.svg";
+import { ReactComponent as Speaker02 } from "./assets/icons/speaker-02.svg";
+import { ReactComponent as Speaker03 } from "./assets/icons/speaker-03.svg";
+import { ReactComponent as Speedometer01 } from "./assets/icons/speedometer-01.svg";
+import { ReactComponent as Speedometer02 } from "./assets/icons/speedometer-02.svg";
+import { ReactComponent as Speedometer03 } from "./assets/icons/speedometer-03.svg";
+import { ReactComponent as Speedometer04 } from "./assets/icons/speedometer-04.svg";
+import { ReactComponent as Square } from "./assets/icons/square.svg";
+import { ReactComponent as Stand } from "./assets/icons/stand.svg";
+import { ReactComponent as Star01 } from "./assets/icons/star-01.svg";
+import { ReactComponent as Star02 } from "./assets/icons/star-02.svg";
+import { ReactComponent as Star03 } from "./assets/icons/star-03.svg";
+import { ReactComponent as Star04 } from "./assets/icons/star-04.svg";
+import { ReactComponent as Star05 } from "./assets/icons/star-05.svg";
+import { ReactComponent as Star06 } from "./assets/icons/star-06.svg";
+import { ReactComponent as Star07 } from "./assets/icons/star-07.svg";
+import { ReactComponent as Stars01 } from "./assets/icons/stars-01.svg";
+import { ReactComponent as Stars02 } from "./assets/icons/stars-02.svg";
+import { ReactComponent as Stars03 } from "./assets/icons/stars-03.svg";
+import { ReactComponent as StickerCircle } from "./assets/icons/sticker-circle.svg";
+import { ReactComponent as StickerSquare } from "./assets/icons/sticker-square.svg";
+import { ReactComponent as StopCircle } from "./assets/icons/stop-circle.svg";
+import { ReactComponent as StopSquare } from "./assets/icons/stop-square.svg";
+import { ReactComponent as Stop } from "./assets/icons/stop.svg";
+import { ReactComponent as Strikethrough01 } from "./assets/icons/strikethrough-01.svg";
+import { ReactComponent as Strikethrough02 } from "./assets/icons/strikethrough-02.svg";
+import { ReactComponent as StrikethroughSquare } from "./assets/icons/strikethrough-square.svg";
+import { ReactComponent as Subscript } from "./assets/icons/subscript.svg";
+import { ReactComponent as SunSetting01 } from "./assets/icons/sun-setting-01.svg";
+import { ReactComponent as SunSetting02 } from "./assets/icons/sun-setting-02.svg";
+import { ReactComponent as SunSetting03 } from "./assets/icons/sun-setting-03.svg";
+import { ReactComponent as Sun } from "./assets/icons/sun.svg";
+import { ReactComponent as Sunrise } from "./assets/icons/sunrise.svg";
+import { ReactComponent as Sunset } from "./assets/icons/sunset.svg";
+import { ReactComponent as SwitchHorizontal01 } from "./assets/icons/switch-horizontal-01.svg";
+import { ReactComponent as SwitchHorizontal02 } from "./assets/icons/switch-horizontal-02.svg";
+import { ReactComponent as SwitchVertical01 } from "./assets/icons/switch-vertical-01.svg";
+import { ReactComponent as SwitchVertical02 } from "./assets/icons/switch-vertical-02.svg";
+import { ReactComponent as Table } from "./assets/icons/table.svg";
+import { ReactComponent as Tablet01 } from "./assets/icons/tablet-01.svg";
+import { ReactComponent as Tablet02 } from "./assets/icons/tablet-02.svg";
+import { ReactComponent as Tag01 } from "./assets/icons/tag-01.svg";
+import { ReactComponent as Tag02 } from "./assets/icons/tag-02.svg";
+import { ReactComponent as Tag03 } from "./assets/icons/tag-03.svg";
+import { ReactComponent as Target01 } from "./assets/icons/target-01.svg";
+import { ReactComponent as Target02 } from "./assets/icons/target-02.svg";
+import { ReactComponent as Target03 } from "./assets/icons/target-03.svg";
+import { ReactComponent as Target04 } from "./assets/icons/target-04.svg";
+import { ReactComponent as Target05 } from "./assets/icons/target-05.svg";
+import { ReactComponent as Telescope } from "./assets/icons/telescope.svg";
+import { ReactComponent as TerminalBrowser } from "./assets/icons/terminal-browser.svg";
+import { ReactComponent as TerminalCircle } from "./assets/icons/terminal-circle.svg";
+import { ReactComponent as TerminalSquare } from "./assets/icons/terminal-square.svg";
+import { ReactComponent as Terminal } from "./assets/icons/terminal.svg";
+import { ReactComponent as TextInput } from "./assets/icons/text-input.svg";
+import { ReactComponent as Thermometer01 } from "./assets/icons/thermometer-01.svg";
+import { ReactComponent as Thermometer02 } from "./assets/icons/thermometer-02.svg";
+import { ReactComponent as Thermometer03 } from "./assets/icons/thermometer-03.svg";
+import { ReactComponent as ThermometerCold } from "./assets/icons/thermometer-cold.svg";
+import { ReactComponent as ThermometerWarm } from "./assets/icons/thermometer-warm.svg";
+import { ReactComponent as ThumbsDown } from "./assets/icons/thumbs-down.svg";
+import { ReactComponent as ThumbsUp } from "./assets/icons/thumbs-up.svg";
+import { ReactComponent as Ticket01 } from "./assets/icons/ticket-01.svg";
+import { ReactComponent as Ticket02 } from "./assets/icons/ticket-02.svg";
+import { ReactComponent as Toggle01Left } from "./assets/icons/toggle-01-left.svg";
+import { ReactComponent as Toggle01Right } from "./assets/icons/toggle-01-right.svg";
+import { ReactComponent as Toggle02Left } from "./assets/icons/toggle-02-left.svg";
+import { ReactComponent as Toggle02Right } from "./assets/icons/toggle-02-right.svg";
+import { ReactComponent as Toggle03Left } from "./assets/icons/toggle-03-left.svg";
+import { ReactComponent as Toggle03Right } from "./assets/icons/toggle-03-right.svg";
+import { ReactComponent as Tool01 } from "./assets/icons/tool-01.svg";
+import { ReactComponent as Tool02 } from "./assets/icons/tool-02.svg";
+import { ReactComponent as Train } from "./assets/icons/train.svg";
+import { ReactComponent as Tram } from "./assets/icons/tram.svg";
+import { ReactComponent as Transform } from "./assets/icons/transform.svg";
+import { ReactComponent as Translate01 } from "./assets/icons/translate-01.svg";
+import { ReactComponent as Translate02 } from "./assets/icons/translate-02.svg";
+import { ReactComponent as Trash01 } from "./assets/icons/trash-01.svg";
+import { ReactComponent as Trash02 } from "./assets/icons/trash-02.svg";
+import { ReactComponent as Trash03 } from "./assets/icons/trash-03.svg";
+import { ReactComponent as Trash04 } from "./assets/icons/trash-04.svg";
+import { ReactComponent as TrendDown01 } from "./assets/icons/trend-down-01.svg";
+import { ReactComponent as TrendDown02 } from "./assets/icons/trend-down-02.svg";
+import { ReactComponent as TrendUp01 } from "./assets/icons/trend-up-01.svg";
+import { ReactComponent as TrendUp02 } from "./assets/icons/trend-up-02.svg";
+import { ReactComponent as Triangle } from "./assets/icons/triangle.svg";
+import { ReactComponent as Trophy01 } from "./assets/icons/trophy-01.svg";
+import { ReactComponent as Trophy02 } from "./assets/icons/trophy-02.svg";
+import { ReactComponent as Truck01 } from "./assets/icons/truck-01.svg";
+import { ReactComponent as Truck02 } from "./assets/icons/truck-02.svg";
+import { ReactComponent as Tv01 } from "./assets/icons/tv-01.svg";
+import { ReactComponent as Tv02 } from "./assets/icons/tv-02.svg";
+import { ReactComponent as Tv03 } from "./assets/icons/tv-03.svg";
+import { ReactComponent as Type01 } from "./assets/icons/type-01.svg";
+import { ReactComponent as Type02 } from "./assets/icons/type-02.svg";
+import { ReactComponent as TypeSquare } from "./assets/icons/type-square.svg";
+import { ReactComponent as TypeStrikethrough01 } from "./assets/icons/type-strikethrough-01.svg";
+import { ReactComponent as TypeStrikethrough02 } from "./assets/icons/type-strikethrough-02.svg";
+import { ReactComponent as Umbrella01 } from "./assets/icons/umbrella-01.svg";
+import { ReactComponent as Umbrella02 } from "./assets/icons/umbrella-02.svg";
+import { ReactComponent as Umbrella03 } from "./assets/icons/umbrella-03.svg";
+import { ReactComponent as Underline01 } from "./assets/icons/underline-01.svg";
+import { ReactComponent as Underline02 } from "./assets/icons/underline-02.svg";
+import { ReactComponent as UnderlineSquare } from "./assets/icons/underline-square.svg";
+import { ReactComponent as Upload01 } from "./assets/icons/upload-01.svg";
+import { ReactComponent as Upload02 } from "./assets/icons/upload-02.svg";
+import { ReactComponent as Upload03 } from "./assets/icons/upload-03.svg";
+import { ReactComponent as Upload04 } from "./assets/icons/upload-04.svg";
+import { ReactComponent as UploadCloud01 } from "./assets/icons/upload-cloud-01.svg";
+import { ReactComponent as UploadCloud02 } from "./assets/icons/upload-cloud-02.svg";
+import { ReactComponent as UsbFlashDrive } from "./assets/icons/usb-flash-drive.svg";
+import { ReactComponent as User01 } from "./assets/icons/user-01.svg";
+import { ReactComponent as User02 } from "./assets/icons/user-02.svg";
+import { ReactComponent as User03 } from "./assets/icons/user-03.svg";
+import { ReactComponent as UserCheck01 } from "./assets/icons/user-check-01.svg";
+import { ReactComponent as UserCheck02 } from "./assets/icons/user-check-02.svg";
+import { ReactComponent as UserCircle } from "./assets/icons/user-circle.svg";
+import { ReactComponent as UserDown01 } from "./assets/icons/user-down-01.svg";
+import { ReactComponent as UserDown02 } from "./assets/icons/user-down-02.svg";
+import { ReactComponent as UserEdit } from "./assets/icons/user-edit.svg";
+import { ReactComponent as UserLeft01 } from "./assets/icons/user-left-01.svg";
+import { ReactComponent as UserLeft02 } from "./assets/icons/user-left-02.svg";
+import { ReactComponent as UserMinus01 } from "./assets/icons/user-minus-01.svg";
+import { ReactComponent as UserMinus02 } from "./assets/icons/user-minus-02.svg";
+import { ReactComponent as UserPlus01 } from "./assets/icons/user-plus-01.svg";
+import { ReactComponent as UserPlus02 } from "./assets/icons/user-plus-02.svg";
+import { ReactComponent as UserRight01 } from "./assets/icons/user-right-01.svg";
+import { ReactComponent as UserRight02 } from "./assets/icons/user-right-02.svg";
+import { ReactComponent as UserSquare } from "./assets/icons/user-square.svg";
+import { ReactComponent as UserUp01 } from "./assets/icons/user-up-01.svg";
+import { ReactComponent as UserUp02 } from "./assets/icons/user-up-02.svg";
+import { ReactComponent as UserX01 } from "./assets/icons/user-x-01.svg";
+import { ReactComponent as UserX02 } from "./assets/icons/user-x-02.svg";
+import { ReactComponent as Users01 } from "./assets/icons/users-01.svg";
+import { ReactComponent as Users02 } from "./assets/icons/users-02.svg";
+import { ReactComponent as Users03 } from "./assets/icons/users-03.svg";
+import { ReactComponent as UsersCheck } from "./assets/icons/users-check.svg";
+import { ReactComponent as UsersDown } from "./assets/icons/users-down.svg";
+import { ReactComponent as UsersEdit } from "./assets/icons/users-edit.svg";
+import { ReactComponent as UsersLeft } from "./assets/icons/users-left.svg";
+import { ReactComponent as UsersMinus } from "./assets/icons/users-minus.svg";
+import { ReactComponent as UsersPlus } from "./assets/icons/users-plus.svg";
+import { ReactComponent as UsersRight } from "./assets/icons/users-right.svg";
+import { ReactComponent as UsersUp } from "./assets/icons/users-up.svg";
+import { ReactComponent as UsersX } from "./assets/icons/users-x.svg";
+import { ReactComponent as Variable } from "./assets/icons/variable.svg";
+import { ReactComponent as VideoRecorderOff } from "./assets/icons/video-recorder-off.svg";
+import { ReactComponent as VideoRecorder } from "./assets/icons/video-recorder.svg";
+import { ReactComponent as Virus } from "./assets/icons/virus.svg";
+import { ReactComponent as Voicemail } from "./assets/icons/voicemail.svg";
+import { ReactComponent as VolumeMax } from "./assets/icons/volume-max.svg";
+import { ReactComponent as VolumeMin } from "./assets/icons/volume-min.svg";
+import { ReactComponent as VolumeMinus } from "./assets/icons/volume-minus.svg";
+import { ReactComponent as VolumePlus } from "./assets/icons/volume-plus.svg";
+import { ReactComponent as VolumeX } from "./assets/icons/volume-x.svg";
+import { ReactComponent as Wallet01 } from "./assets/icons/wallet-01.svg";
+import { ReactComponent as Wallet02 } from "./assets/icons/wallet-02.svg";
+import { ReactComponent as Wallet03 } from "./assets/icons/wallet-03.svg";
+import { ReactComponent as Wallet04 } from "./assets/icons/wallet-04.svg";
+import { ReactComponent as Wallet05 } from "./assets/icons/wallet-05.svg";
+import { ReactComponent as WatchCircle } from "./assets/icons/watch-circle.svg";
+import { ReactComponent as WatchSquare } from "./assets/icons/watch-square.svg";
+import { ReactComponent as Waves } from "./assets/icons/waves.svg";
+import { ReactComponent as Webcam01 } from "./assets/icons/webcam-01.svg";
+import { ReactComponent as Webcam02 } from "./assets/icons/webcam-02.svg";
+import { ReactComponent as WifiOff } from "./assets/icons/wifi-off.svg";
+import { ReactComponent as Wifi } from "./assets/icons/wifi.svg";
+import { ReactComponent as Wind01 } from "./assets/icons/wind-01.svg";
+import { ReactComponent as Wind02 } from "./assets/icons/wind-02.svg";
+import { ReactComponent as Wind03 } from "./assets/icons/wind-03.svg";
+import { ReactComponent as XCircle } from "./assets/icons/x-circle.svg";
+import { ReactComponent as XClose } from "./assets/icons/x-close.svg";
+import { ReactComponent as XSquare } from "./assets/icons/x-square.svg";
+import { ReactComponent as X } from "./assets/icons/x.svg";
+import { ReactComponent as Youtube } from "./assets/icons/youtube.svg";
+import { ReactComponent as ZapCircle } from "./assets/icons/zap-circle.svg";
+import { ReactComponent as ZapFast } from "./assets/icons/zap-fast.svg";
+import { ReactComponent as ZapOff } from "./assets/icons/zap-off.svg";
+import { ReactComponent as ZapSquare } from "./assets/icons/zap-square.svg";
+import { ReactComponent as Zap } from "./assets/icons/zap.svg";
+import { ReactComponent as ZoomIn } from "./assets/icons/zoom-in.svg";
+import { ReactComponent as ZoomOut } from "./assets/icons/zoom-out.svg";
 
 export const Icon = {
-  AccountBalanceWallet,
-  AccountBalance,
-  AccountCircle,
-  AddCircle,
-  Add,
-  AllInbox,
+  ActivityHeart,
+  Activity,
+  Airplay,
+  Airpods,
+  AlarmClockCheck,
+  AlarmClockMinus,
+  AlarmClockOff,
+  AlarmClockPlus,
+  AlarmClock,
+  AlertCircle,
+  AlertHexagon,
+  AlertOctagon,
+  AlertSquare,
+  AlertTriangle,
+  AlignBottom01,
+  AlignBottom02,
+  AlignCenter,
+  AlignHorizontalCentre01,
+  AlignHorizontalCentre02,
+  AlignJustify,
+  AlignLeft01,
+  AlignLeft02,
+  AlignLeft,
+  AlignRight01,
+  AlignRight02,
+  AlignRight,
+  AlignTop01,
+  AlignTop02,
+  AlignVerticalCenter01,
+  AlignVerticalCenter02,
   Anchor,
-  Aod,
+  AnnotationAlert,
+  AnnotationCheck,
+  AnnotationDots,
+  AnnotationHeart,
+  AnnotationInfo,
+  AnnotationPlus,
+  AnnotationQuestion,
+  AnnotationX,
+  Annotation,
+  Announcement01,
+  Announcement02,
+  Announcement03,
+  Archive,
+  ArrowBlockDown,
+  ArrowBlockLeft,
+  ArrowBlockRight,
+  ArrowBlockUp,
+  ArrowCircleBrokenDownLeft,
+  ArrowCircleBrokenDownRight,
+  ArrowCircleBrokenDown,
+  ArrowCircleBrokenLeft,
+  ArrowCircleBrokenRight,
+  ArrowCircleBrokenUpLeft,
+  ArrowCircleBrokenUpRight,
+  ArrowCircleBrokenUp,
+  ArrowCircleDownLeft,
+  ArrowCircleDownRight,
   ArrowCircleDown,
   ArrowCircleLeft,
   ArrowCircleRight,
+  ArrowCircleUpLeft,
+  ArrowCircleUpRight,
   ArrowCircleUp,
+  ArrowDownLeft,
+  ArrowDownRight,
   ArrowDown,
   ArrowLeft,
+  ArrowNarrowDownLeft,
+  ArrowNarrowDownRight,
+  ArrowNarrowDown,
+  ArrowNarrowLeft,
+  ArrowNarrowRight,
+  ArrowNarrowUpLeft,
+  ArrowNarrowUpRight,
+  ArrowNarrowUp,
   ArrowRight,
-  ArrowSmallDown,
-  ArrowSmallLeft,
-  ArrowSmallRight,
-  ArrowSmallUp,
-  ArrowTopLeft,
-  ArrowTopRight,
+  ArrowSquareDownLeft,
+  ArrowSquareDownRight,
+  ArrowSquareDown,
+  ArrowSquareLeft,
+  ArrowSquareRight,
+  ArrowSquareUpLeft,
+  ArrowSquareUpRight,
+  ArrowSquareUp,
+  ArrowUpLeft,
+  ArrowUpRight,
   ArrowUp,
-  Article,
-  Assets,
-  AttachFile,
-  Attachment,
-  Backspace,
-  Backup,
-  BarChart,
-  Block,
-  Burn,
-  CalendarMonth,
-  CalendarToday,
-  ChatBubble,
-  Chat,
+  ArrowsDown,
+  ArrowsLeft,
+  ArrowsRight,
+  ArrowsTriangle,
+  ArrowsUp,
+  Asterisk01,
+  Asterisk02,
+  AtSign,
+  Atom01,
+  Atom02,
+  Attachment01,
+  Attachment02,
+  Award01,
+  Award02,
+  Award03,
+  Award04,
+  Award05,
+  Backpack,
+  BankNote01,
+  BankNote02,
+  BankNote03,
+  Bank,
+  BarChart01,
+  BarChart02,
+  BarChart03,
+  BarChart04,
+  BarChart05,
+  BarChart06,
+  BarChart07,
+  BarChart08,
+  BarChart09,
+  BarChart10,
+  BarChart11,
+  BarChart12,
+  BarChartCircle01,
+  BarChartCircle02,
+  BarChartCircle03,
+  BarChartSquare01,
+  BarChartSquare02,
+  BarChartSquare03,
+  BarChartSquareDown,
+  BarChartSquareMinus,
+  BarChartSquarePlus,
+  BarChartSquareUp,
+  BarLineChart,
+  BatteryCharging01,
+  BatteryCharging02,
+  BatteryEmpty,
+  BatteryFull,
+  BatteryLow,
+  BatteryMid,
+  Beaker01,
+  Beaker02,
+  Bell01,
+  Bell02,
+  Bell03,
+  Bell04,
+  BellMinus,
+  BellOff01,
+  BellOff02,
+  BellOff03,
+  BellPlus,
+  BellRinging01,
+  BellRinging02,
+  BellRinging03,
+  BellRinging04,
+  BezierCurve01,
+  BezierCurve02,
+  BezierCurve03,
+  BluetoothConnect,
+  BluetoothOff,
+  BluetoothOn,
+  BluetoothSignal,
+  Bold01,
+  Bold02,
+  BoldSquare,
+  BookClosed,
+  BookOpen01,
+  BookOpen02,
+  BookmarkAdd,
+  BookmarkCheck,
+  BookmarkMinus,
+  BookmarkX,
+  Bookmark,
+  Box,
+  BracketsCheck,
+  BracketsEllipses,
+  BracketsMinus,
+  BracketsPlus,
+  BracketsSlash,
+  BracketsX,
+  Brackets,
+  Briefcase01,
+  Briefcase02,
+  Browser,
+  Brush01,
+  Brush02,
+  Brush03,
+  Building01,
+  Building02,
+  Building03,
+  Building04,
+  Building05,
+  Building06,
+  Building07,
+  Building08,
+  Bus,
+  Calculator,
+  CalendarCheck01,
+  CalendarCheck02,
+  CalendarDate,
+  CalendarHeart01,
+  CalendarHeart02,
+  CalendarMinus01,
+  CalendarMinus02,
+  CalendarPlus01,
+  CalendarPlus02,
+  Calendar,
+  Camera01,
+  Camera02,
+  Camera03,
+  CameraLens,
+  CameraOff,
+  CameraPlus,
+  Car01,
+  Car02,
+  Certificate01,
+  Certificate02,
+  ChartBreakoutCircle,
+  ChartBreakoutSquare,
+  CheckCircleBroken,
   CheckCircle,
+  CheckDone01,
+  CheckDone02,
+  CheckHeart,
+  CheckSquareBroken,
+  CheckSquare,
+  CheckVerified01,
+  CheckVerified02,
+  CheckVerified03,
   Check,
-  ChevronDoubleDown,
-  ChevronDoubleLeft,
-  ChevronDoubleRight,
-  ChevronDoubleUp,
+  ChevronDownDouble,
   ChevronDown,
+  ChevronLeftDouble,
   ChevronLeft,
+  ChevronRightDouble,
   ChevronRight,
+  ChevronSelectorHorizontal,
+  ChevronSelectorVertical,
+  ChevronUpDouble,
   ChevronUp,
+  ChromeCast,
+  CircleCut,
+  Circle,
+  Clapperboard,
+  ClipboardAttachment,
+  ClipboardCheck,
+  ClipboardDownload,
+  ClipboardMinus,
+  ClipboardPlus,
+  ClipboardX,
+  Clipboard,
+  ClockCheck,
+  ClockFastForward,
+  ClockPlus,
+  ClockRefresh,
+  ClockRewind,
+  ClockSnooze,
+  ClockStopwatch,
   Clock,
-  Close,
-  CloudDone,
-  CloudDownload,
-  Code,
-  ContactPage,
-  Contacts,
-  ContentCopy,
-  ContentPaste,
-  CopyAll,
-  CurrencyExchange,
-  Dashboard,
-  DataArray,
-  DataObject,
-  Database,
-  DeleteForever,
+  Cloud01,
+  Cloud02,
+  Cloud03,
+  CloudBlank01,
+  CloudBlank02,
+  CloudLightning,
+  CloudMoon,
+  CloudOff,
+  CloudRaining01,
+  CloudRaining02,
+  CloudRaining03,
+  CloudRaining04,
+  CloudRaining05,
+  CloudRaining06,
+  CloudSnowing01,
+  CloudSnowing02,
+  CloudSun01,
+  CloudSun02,
+  CloudSun03,
+  Code01,
+  Code02,
+  CodeBrowser,
+  CodeCircle01,
+  CodeCircle02,
+  CodeCircle03,
+  CodeSnippet01,
+  CodeSnippet02,
+  CodeSquare01,
+  CodeSquare02,
+  Codepen,
+  Coins01,
+  Coins02,
+  Coins03,
+  Coins04,
+  CoinsHand,
+  CoinsStacked01,
+  CoinsStacked02,
+  CoinsStacked03,
+  CoinsStacked04,
+  CoinsSwap01,
+  CoinsSwap02,
+  Colors,
+  Columns01,
+  Columns02,
+  Columns03,
+  Command,
+  Compass01,
+  Compass02,
+  Compass03,
+  Compass,
+  Container,
+  Contrast01,
+  Contrast02,
+  Contrast03,
+  Copy01,
+  Copy02,
+  Copy03,
+  Copy04,
+  Copy05,
+  Copy06,
+  Copy07,
+  CornerDownLeft,
+  CornerDownRight,
+  CornerLeftDown,
+  CornerLeftUp,
+  CornerRightDown,
+  CornerRightUp,
+  CornerUpLeft,
+  CornerUpRight,
+  CpuChip01,
+  CpuChip02,
+  CreditCard01,
+  CreditCard02,
+  CreditCardCheck,
+  CreditCardDown,
+  CreditCardDownload,
+  CreditCardEdit,
+  CreditCardLock,
+  CreditCardMinus,
+  CreditCardPlus,
+  CreditCardRefresh,
+  CreditCardSearch,
+  CreditCardShield,
+  CreditCardUp,
+  CreditCardUpload,
+  CreditCardX,
+  Crop01,
+  Crop02,
+  Cryptocurrency01,
+  Cryptocurrency02,
+  Cryptocurrency03,
+  Cryptocurrency04,
+  Cube01,
+  Cube02,
+  Cube03,
+  Cube04,
+  CubeOutline,
+  CurrencyBitcoinCircle,
+  CurrencyBitcoin,
+  CurrencyDollarCircle,
+  CurrencyDollar,
+  CurrencyEthereumCircle,
+  CurrencyEthereum,
+  CurrencyEuroCircle,
+  CurrencyEuro,
+  CurrencyPoundCircle,
+  CurrencyPound,
+  CurrencyRubleCircle,
+  CurrencyRuble,
+  CurrencyRupeeCircle,
+  CurrencyRupee,
+  CurrencyYenCircle,
+  CurrencyYen,
+  Cursor01,
+  Cursor02,
+  Cursor03,
+  Cursor04,
+  CursorBox,
+  CursorClick01,
+  CursorClick02,
+  Data,
+  Database01,
+  Database02,
+  Database03,
+  Dataflow01,
+  Dataflow02,
+  Dataflow03,
+  Dataflow04,
   Delete,
-  DeployedCode,
-  Discord,
-  Done,
-  Dot,
-  Download,
-  Draft,
-  DragIndicator,
-  DragPan,
-  Edit,
-  Error,
-  ExternalLink,
-  Favorite,
-  Filter,
-  Flag,
-  FolderCopy,
-  Free,
-  FrontHand,
-  Github,
-  Grade,
-  GroupAdd,
-  Help,
-  Hide,
-  History,
-  Home,
-  HourglassBottom,
-  HourglassEmpty,
-  HourglassFull,
-  HourglassTop,
-  Info,
-  Insights,
-  IosShare,
-  Join,
-  KeyVisualizer,
-  Key,
-  Layers,
-  Link,
-  LocalMall,
-  LockOpen,
-  Lock,
-  Login,
-  Logout,
-  Mail,
-  ManageSearch,
-  Menu,
-  ModeDark,
-  ModeLight,
-  MonetizationOn,
-  MoreHoriz,
-  MoreVert,
-  MoveDown,
-  Notifications,
-  Password,
-  Payments,
-  PersonAdd,
-  Public,
-  QrCode2,
-  QrCodeScanner,
-  QrCode,
-  Redeem,
-  RefreshHoriz,
-  RefreshVert,
-  Remove,
-  Replay,
-  Search,
-  Send,
-  Settings,
-  Shield,
-  ShowChart,
-  Show,
-  SignalCellularAlt,
-  Smile,
-  SortByAlpha,
-  SpaceDashboard,
-  StackedLineChart,
-  Status,
-  Store,
-  Toll,
-  TravelExplore,
-  Tune,
-  UnfoldLess,
-  UnfoldMore,
-  User,
-  Users,
-  VerifiedUser,
-  Verified,
-  VpnKey,
-  Wallet,
-  Warning,
-  ZoomOutMap,
+  Diamond01,
+  Diamond02,
+  Dice1,
+  Dice2,
+  Dice3,
+  Dice4,
+  Dice5,
+  Dice6,
+  Disc01,
+  Disc02,
+  DistributeSpacingHorizontal,
+  DistributeSpacingVertical,
+  Divide01,
+  Divide02,
+  Divide03,
+  Divider,
+  Dotpoints01,
+  Dotpoints02,
+  DotsGrid,
+  DotsHorizontal,
+  DotsVertical,
+  Download01,
+  Download02,
+  Download03,
+  Download04,
+  DownloadCloud01,
+  DownloadCloud02,
+  Drop,
+  Droplets01,
+  Droplets02,
+  Droplets03,
+  Dropper,
+  Edit01,
+  Edit02,
+  Edit03,
+  Edit04,
+  Edit05,
+  EqualNot,
+  Equal,
+  Eraser,
+  Expand01,
+  Expand02,
+  Expand03,
+  Expand04,
+  Expand05,
+  Expand06,
+  EyeOff,
+  Eye,
+  FaceContent,
+  FaceFrown,
+  FaceHappy,
+  FaceIdSquare,
+  FaceId,
+  FaceNeutral,
+  FaceSad,
+  FaceSmile,
+  FaceWink,
+  FastBackward,
+  FastForward,
+  Feather,
+  Figma,
+  File01,
+  File02,
+  File03,
+  File04,
+  File05,
+  File06,
+  File07,
+  FileAttachment01,
+  FileAttachment02,
+  FileAttachment03,
+  FileAttachment04,
+  FileAttachment05,
+  FileCheck01,
+  FileCheck02,
+  FileCheck03,
+  FileCode01,
+  FileCode02,
+  FileDownload01,
+  FileDownload02,
+  FileDownload03,
+  FileHeart01,
+  FileHeart02,
+  FileHeart03,
+  FileLock01,
+  FileLock02,
+  FileLock03,
+  FileMinus01,
+  FileMinus02,
+  FileMinus03,
+  FilePlus01,
+  FilePlus02,
+  FilePlus03,
+  FileQuestion01,
+  FileQuestion02,
+  FileQuestion03,
+  FileSearch01,
+  FileSearch02,
+  FileSearch03,
+  FileShield01,
+  FileShield02,
+  FileShield03,
+  FileX01,
+  FileX02,
+  FileX03,
+  Film01,
+  Film02,
+  Film03,
+  FilterFunnel01,
+  FilterFunnel02,
+  FilterLines,
+  Fingerprint01,
+  Fingerprint02,
+  Fingerprint03,
+  Fingerprint04,
+  Flag01,
+  Flag02,
+  Flag03,
+  Flag04,
+  Flag05,
+  Flag06,
+  FlashOff,
+  Flash,
+  FlexAlignBottom,
+  FlexAlignLeft,
+  FlexAlignRight,
+  FlexAlignTop,
+  FlipBackward,
+  FlipForward,
+  FolderCheck,
+  FolderClosed,
+  FolderCode,
+  FolderDownload,
+  FolderLock,
+  FolderMinus,
+  FolderPlus,
+  FolderQuestion,
+  FolderSearch,
+  FolderShield,
+  FolderX,
+  Folder,
+  Framer,
+  GamingPad01,
+  GamingPad02,
+  Gift01,
+  Gift02,
+  GitBranch01,
+  GitBranch02,
+  GitCommit,
+  GitMerge,
+  GitPullRequest,
+  Glasses01,
+  Glasses02,
+  Globe01,
+  Globe02,
+  Globe03,
+  Globe04,
+  Globe05,
+  Globe06,
+  GlobeSlated01,
+  GlobeSlated02,
+  GoogleChrome,
+  GraduationHat01,
+  GraduationHat02,
+  Grid01,
+  Grid02,
+  Grid03,
+  GridDotsBlank,
+  GridDotsBottom,
+  GridDotsHorizontalCenter,
+  GridDotsLeft,
+  GridDotsOuter,
+  GridDotsRight,
+  GridDotsTop,
+  GridDotsVerticalCenter,
+  Hand,
+  HardDrive,
+  Hash01,
+  Hash02,
+  Heading01,
+  Heading02,
+  HeadingSquare,
+  Headphones01,
+  Headphones02,
+  HeartCircle,
+  HeartHand,
+  HeartHexagon,
+  HeartOctagon,
+  HeartRounded,
+  HeartSquare,
+  Heart,
+  Hearts,
+  HelpCircle,
+  HelpHexagon,
+  HelpOctagon,
+  HelpSquare,
+  Hexagon01,
+  Hexagon02,
+  Home01,
+  Home02,
+  Home03,
+  Home04,
+  Home05,
+  HomeLine,
+  HomeSmile,
+  HorizontalBarChart01,
+  HorizontalBarChart02,
+  HorizontalBarChart03,
+  Hourglass01,
+  Hourglass02,
+  Hourglass03,
+  Hurricane01,
+  Hurricane02,
+  Hurricane03,
+  Image01,
+  Image02,
+  Image03,
+  Image04,
+  Image05,
+  ImageCheck,
+  ImageDown,
+  ImageIndentLeft,
+  ImageIndentRight,
+  ImageLeft,
+  ImagePlus,
+  ImageRight,
+  ImageUp,
+  ImageUserCheck,
+  ImageUserDown,
+  ImageUserLeft,
+  ImageUserPlus,
+  ImageUserRight,
+  ImageUserUp,
+  ImageUserX,
+  ImageUser,
+  ImageX,
+  Inbox01,
+  Inbox02,
+  Infinity,
+  InfoCircle,
+  InfoHexagon,
+  InfoOctagon,
+  InfoSquare,
+  Instagram,
+  IntersectCircle,
+  IntersectSquare,
+  Italic01,
+  Italic02,
+  ItalicSquare,
+  Key01,
+  Key02,
+  Keyboard01,
+  Keyboard02,
+  Laptop01,
+  Laptop02,
+  LayerSingle,
+  LayersThree01,
+  LayersThree02,
+  LayersTwo01,
+  LayersTwo02,
+  LayoutAlt01,
+  LayoutAlt02,
+  LayoutAlt03,
+  LayoutAlt04,
+  LayoutBottom,
+  LayoutGrid01,
+  LayoutGrid02,
+  LayoutLeft,
+  LayoutRight,
+  LayoutTop,
+  LeftIndent01,
+  LeftIndent02,
+  LetterSpacing01,
+  LetterSpacing02,
+  LifeBuoy01,
+  LifeBuoy02,
+  Lightbulb01,
+  Lightbulb02,
+  Lightbulb03,
+  Lightbulb04,
+  Lightbulb05,
+  Lightning01,
+  Lightning02,
+  LineChartDown01,
+  LineChartDown02,
+  LineChartDown03,
+  LineChartDown04,
+  LineChartDown05,
+  LineChartUp01,
+  LineChartUp02,
+  LineChartUp03,
+  LineChartUp04,
+  LineChartUp05,
+  LineHeight,
+  Link01,
+  Link02,
+  Link03,
+  Link04,
+  Link05,
+  LinkBroken01,
+  LinkBroken02,
+  LinkExternal01,
+  LinkExternal02,
+  List,
+  Loading01,
+  Loading02,
+  Loading03,
+  Lock01,
+  Lock02,
+  Lock03,
+  Lock04,
+  LockKeyholeCircle,
+  LockKeyholeSquare,
+  LockUnlocked01,
+  LockUnlocked02,
+  LockUnlocked03,
+  LockUnlocked04,
+  LogIn01,
+  LogIn02,
+  LogIn03,
+  LogIn04,
+  LogOut01,
+  LogOut02,
+  LogOut03,
+  LogOut04,
+  Luggage01,
+  Luggage02,
+  Luggage03,
+  MagicWand01,
+  MagicWand02,
+  Mail01,
+  Mail02,
+  Mail03,
+  Mail04,
+  Mail05,
+  Map01,
+  Map02,
+  Mark,
+  MarkerPin01,
+  MarkerPin02,
+  MarkerPin03,
+  MarkerPin04,
+  MarkerPin05,
+  MarkerPin06,
+  Maximize01,
+  Maximize02,
+  MedicalCircle,
+  MedicalCross,
+  MedicalSquare,
+  Menu01,
+  Menu02,
+  Menu03,
+  Menu04,
+  Menu05,
+  MessageAlertCircle,
+  MessageAlertSquare,
+  MessageChatCircle,
+  MessageChatSquare,
+  MessageCheckCircle,
+  MessageCheckSquare,
+  MessageCircle01,
+  MessageCircle02,
+  MessageDotsCircle,
+  MessageDotsSquare,
+  MessageHeartCircle,
+  MessageHeartSquare,
+  MessageNotificationCircle,
+  MessageNotificationSquare,
+  MessagePlusCircle,
+  MessagePlusSquare,
+  MessageQuestionCircle,
+  MessageQuestionSquare,
+  MessageSmileCircle,
+  MessageSmileSquare,
+  MessageSquare01,
+  MessageSquare02,
+  MessageTextCircle01,
+  MessageTextCircle02,
+  MessageTextSquare01,
+  MessageTextSquare02,
+  MessageXCircle,
+  MessageXSquare,
+  Meta,
+  Microphone01,
+  Microphone02,
+  MicrophoneOff01,
+  MicrophoneOff02,
+  Microscope,
+  Minimize01,
+  Minimize02,
+  MinusCircle,
+  MinusSquare,
+  Minus,
+  Modem01,
+  Modem02,
+  Monitor01,
+  Monitor02,
+  Monitor03,
+  Monitor04,
+  Monitor05,
+  Moon01,
+  Moon02,
+  MoonEclipse,
+  MoonStar,
+  Mouse,
+  Move,
+  MusicNote01,
+  MusicNote02,
+  MusicNotePlus,
+  NavigationPointer01,
+  NavigationPointer02,
+  NavigationPointerOff01,
+  NavigationPointerOff02,
+  NotificationBox,
+  NotificationMessage,
+  NotificationText,
+  Octagon,
+  PackageCheck,
+  PackageMinus,
+  PackagePlus,
+  PackageSearch,
+  PackageX,
+  Package,
+  PaintPour,
+  Paint,
+  Palette,
+  Paperclip,
+  ParagraphSpacing,
+  ParagraphWrap,
+  PasscodeLock,
+  Passcode,
+  Passport,
+  PauseCircle,
+  PauseSquare,
+  PenTool01,
+  PenTool02,
+  PenToolMinus,
+  PenToolPlus,
+  Pencil01,
+  Pencil02,
+  PencilLine,
+  Pentagon,
+  Percent01,
+  Percent02,
+  Percent03,
+  Perspective01,
+  Perspective02,
+  Phone01,
+  Phone02,
+  PhoneCall01,
+  PhoneCall02,
+  PhoneHangUp,
+  PhoneIncoming01,
+  PhoneIncoming02,
+  PhoneOutgoing01,
+  PhoneOutgoing02,
+  PhonePause,
+  PhonePlus,
+  PhoneX,
+  Phone,
+  PieChart01,
+  PieChart02,
+  PieChart03,
+  PieChart04,
+  PiggyBank01,
+  PiggyBank02,
+  Pilcrow01,
+  Pilcrow02,
+  PilcrowSquare,
+  Pin01,
+  Pin02,
+  Placeholder,
+  Plane,
+  PlayCircle,
+  PlaySquare,
+  Play,
+  PlusCircle,
+  PlusSquare,
+  Plus,
+  Podcast,
+  Power01,
+  Power02,
+  Power03,
+  PresentationChart01,
+  PresentationChart02,
+  PresentationChart03,
+  Printer,
+  PuzzlePiece01,
+  PuzzlePiece02,
+  QrCode01,
+  QrCode02,
+  ReceiptCheck,
+  Receipt,
+  Recording01,
+  Recording02,
+  Recording03,
+  Reflect01,
+  Reflect02,
+  RefreshCcw01,
+  RefreshCcw02,
+  RefreshCcw03,
+  RefreshCcw04,
+  RefreshCcw05,
+  RefreshCw01,
+  RefreshCw02,
+  RefreshCw03,
+  RefreshCw04,
+  RefreshCw05,
+  Repeat01,
+  Repeat02,
+  Repeat03,
+  Repeat04,
+  ReverseLeft,
+  ReverseRight,
+  RightIndent01,
+  RightIndent02,
+  Rocket01,
+  Rocket02,
+  RollerBrush,
+  Route,
+  Rows01,
+  Rows02,
+  Rows03,
+  Rss01,
+  Rss02,
+  Ruler,
+  Safe,
+  Sale01,
+  Sale02,
+  Sale03,
+  Sale04,
+  Save01,
+  Save02,
+  Save03,
+  Scale01,
+  Scale02,
+  Scale03,
+  Scales01,
+  Scales02,
+  Scan,
+  Scissors01,
+  Scissors02,
+  ScissorsCut01,
+  ScissorsCut02,
+  SearchLg,
+  SearchMd,
+  SearchRefraction,
+  SearchSm,
+  Send01,
+  Send02,
+  Send03,
+  Server01,
+  Server02,
+  Server03,
+  Server04,
+  Server05,
+  Server06,
+  Settings01,
+  Settings02,
+  Settings03,
+  Settings04,
+  Share01,
+  Share02,
+  Share03,
+  Share04,
+  Share05,
+  Share06,
+  Share07,
+  Shield01,
+  Shield02,
+  Shield03,
+  ShieldDollar,
+  ShieldOff,
+  ShieldPlus,
+  ShieldTick,
+  ShieldZap,
+  ShoppingBag01,
+  ShoppingBag02,
+  ShoppingBag03,
+  ShoppingCart01,
+  ShoppingCart02,
+  ShoppingCart03,
+  Shuffle01,
+  Shuffle02,
+  Signal01,
+  Signal02,
+  Signal03,
+  Simcard,
+  Skew,
+  SkipBack,
+  SkipForward,
+  SlashCircle01,
+  SlashCircle02,
+  SlashDivider,
+  SlashOctagon,
+  Sliders01,
+  Sliders02,
+  Sliders03,
+  Sliders04,
+  Snowflake01,
+  Snowflake02,
+  SpacingHeight01,
+  SpacingHeight02,
+  SpacingWidth01,
+  SpacingWidth02,
+  Speaker01,
+  Speaker02,
+  Speaker03,
+  Speedometer01,
+  Speedometer02,
+  Speedometer03,
+  Speedometer04,
+  Square,
+  Stand,
+  Star01,
+  Star02,
+  Star03,
+  Star04,
+  Star05,
+  Star06,
+  Star07,
+  Stars01,
+  Stars02,
+  Stars03,
+  StickerCircle,
+  StickerSquare,
+  StopCircle,
+  StopSquare,
+  Stop,
+  Strikethrough01,
+  Strikethrough02,
+  StrikethroughSquare,
+  Subscript,
+  SunSetting01,
+  SunSetting02,
+  SunSetting03,
+  Sun,
+  Sunrise,
+  Sunset,
+  SwitchHorizontal01,
+  SwitchHorizontal02,
+  SwitchVertical01,
+  SwitchVertical02,
+  Table,
+  Tablet01,
+  Tablet02,
+  Tag01,
+  Tag02,
+  Tag03,
+  Target01,
+  Target02,
+  Target03,
+  Target04,
+  Target05,
+  Telescope,
+  TerminalBrowser,
+  TerminalCircle,
+  TerminalSquare,
+  Terminal,
+  TextInput,
+  Thermometer01,
+  Thermometer02,
+  Thermometer03,
+  ThermometerCold,
+  ThermometerWarm,
+  ThumbsDown,
+  ThumbsUp,
+  Ticket01,
+  Ticket02,
+  Toggle01Left,
+  Toggle01Right,
+  Toggle02Left,
+  Toggle02Right,
+  Toggle03Left,
+  Toggle03Right,
+  Tool01,
+  Tool02,
+  Train,
+  Tram,
+  Transform,
+  Translate01,
+  Translate02,
+  Trash01,
+  Trash02,
+  Trash03,
+  Trash04,
+  TrendDown01,
+  TrendDown02,
+  TrendUp01,
+  TrendUp02,
+  Triangle,
+  Trophy01,
+  Trophy02,
+  Truck01,
+  Truck02,
+  Tv01,
+  Tv02,
+  Tv03,
+  Type01,
+  Type02,
+  TypeSquare,
+  TypeStrikethrough01,
+  TypeStrikethrough02,
+  Umbrella01,
+  Umbrella02,
+  Umbrella03,
+  Underline01,
+  Underline02,
+  UnderlineSquare,
+  Upload01,
+  Upload02,
+  Upload03,
+  Upload04,
+  UploadCloud01,
+  UploadCloud02,
+  UsbFlashDrive,
+  User01,
+  User02,
+  User03,
+  UserCheck01,
+  UserCheck02,
+  UserCircle,
+  UserDown01,
+  UserDown02,
+  UserEdit,
+  UserLeft01,
+  UserLeft02,
+  UserMinus01,
+  UserMinus02,
+  UserPlus01,
+  UserPlus02,
+  UserRight01,
+  UserRight02,
+  UserSquare,
+  UserUp01,
+  UserUp02,
+  UserX01,
+  UserX02,
+  Users01,
+  Users02,
+  Users03,
+  UsersCheck,
+  UsersDown,
+  UsersEdit,
+  UsersLeft,
+  UsersMinus,
+  UsersPlus,
+  UsersRight,
+  UsersUp,
+  UsersX,
+  Variable,
+  VideoRecorderOff,
+  VideoRecorder,
+  Virus,
+  Voicemail,
+  VolumeMax,
+  VolumeMin,
+  VolumeMinus,
+  VolumePlus,
+  VolumeX,
+  Wallet01,
+  Wallet02,
+  Wallet03,
+  Wallet04,
+  Wallet05,
+  WatchCircle,
+  WatchSquare,
+  Waves,
+  Webcam01,
+  Webcam02,
+  WifiOff,
+  Wifi,
+  Wind01,
+  Wind02,
+  Wind03,
+  XCircle,
+  XClose,
+  XSquare,
+  X,
+  Youtube,
+  ZapCircle,
+  ZapFast,
+  ZapOff,
+  ZapSquare,
+  Zap,
+  ZoomIn,
+  ZoomOut,
 };
diff --git a/@stellar/design-system/src/logos.ts b/@stellar/design-system/src/logos.ts
index 8e4c653a..bc5688c7 100644
--- a/@stellar/design-system/src/logos.ts
+++ b/@stellar/design-system/src/logos.ts
@@ -1,13 +1,37 @@
 import { ReactComponent as Albedo } from "./assets/logos/albedo.svg";
+import { ReactComponent as AppStore } from "./assets/logos/app-store.svg";
+import { ReactComponent as Apple } from "./assets/logos/apple.svg";
+import { ReactComponent as Discord } from "./assets/logos/discord.svg";
+import { ReactComponent as Framer } from "./assets/logos/framer.svg";
 import { ReactComponent as Freighter } from "./assets/logos/freighter.svg";
+import { ReactComponent as Github } from "./assets/logos/github.svg";
+import { ReactComponent as GooglePlay } from "./assets/logos/google-play.svg";
 import { ReactComponent as Ledger } from "./assets/logos/ledger.svg";
+import { ReactComponent as Linkedin } from "./assets/logos/linkedin.svg";
+import { ReactComponent as Medium } from "./assets/logos/medium.svg";
+import { ReactComponent as Reddit } from "./assets/logos/reddit.svg";
+import { ReactComponent as StellarShort } from "./assets/logos/stellar-short.svg";
 import { ReactComponent as Stellar } from "./assets/logos/stellar.svg";
 import { ReactComponent as Trezor } from "./assets/logos/trezor.svg";
+import { ReactComponent as XTwitter } from "./assets/logos/x-twitter.svg";
+import { ReactComponent as Youtube } from "./assets/logos/youtube.svg";
 
 export const Logo = {
   Albedo,
+  AppStore,
+  Apple,
+  Discord,
+  Framer,
   Freighter,
+  Github,
+  GooglePlay,
   Ledger,
+  Linkedin,
+  Medium,
+  Reddit,
+  StellarShort,
   Stellar,
   Trezor,
+  XTwitter,
+  Youtube,
 };
diff --git a/@stellar/design-system/src/theme.scss b/@stellar/design-system/src/theme.scss
index f9cb9aa1..b661ff3a 100644
--- a/@stellar/design-system/src/theme.scss
+++ b/@stellar/design-system/src/theme.scss
@@ -4,160 +4,421 @@
 @mixin theme-light {
   color-scheme: light;
 
-  // Purple
-  --color-purple-10: #fbfaff;
-  --color-purple-20: #f5f2ff;
-  --color-purple-30: #ede9fe;
-  --color-purple-40: #e4defc;
-  --color-purple-50: #aa99ec;
-  --color-purple-60: #6e56cf;
-  --color-purple-70: #5746af;
-  --color-purple-80: #20134b;
+  // Gray
+  --sds-clr-gray-01: #fcfcfc;
+  --sds-clr-gray-02: #f8f8f8;
+  --sds-clr-gray-03: #f3f3f3;
+  --sds-clr-gray-04: #ededed;
+  --sds-clr-gray-05: #e8e8e8;
+  --sds-clr-gray-06: #e2e2e2;
+  --sds-clr-gray-07: #dbdbdb;
+  --sds-clr-gray-08: #c7c7c7;
+  --sds-clr-gray-09: #8f8f8f;
+  --sds-clr-gray-10: #858585;
+  --sds-clr-gray-11: #6f6f6f;
+  --sds-clr-gray-12: #171717;
 
-  // White
-  --color-white: #ffffff;
-
-  // Grayscale
-  --color-gray-00: #ffffff;
-  --color-gray-10: #f9f8f9;
-  --color-gray-20: #f4f2f4;
-  --color-gray-30: #eeedef;
-  --color-gray-40: #e9e8ea;
-  --color-gray-50: #c8c7cb;
-  --color-gray-60: #908e96;
-  --color-gray-70: #6f6e77;
-  --color-gray-80: #1a1523;
-  --color-gray-90: #000000;
+  // Lilac
+  --sds-clr-lilac-01: #fdfcfe;
+  --sds-clr-lilac-02: #fbfaff;
+  --sds-clr-lilac-03: #f5f2ff;
+  --sds-clr-lilac-04: #ede9fe;
+  --sds-clr-lilac-05: #e4defc;
+  --sds-clr-lilac-06: #d7cff9;
+  --sds-clr-lilac-07: #c4b8f3;
+  --sds-clr-lilac-08: #aa99ec;
+  --sds-clr-lilac-09: #6e56cf;
+  --sds-clr-lilac-10: #644fc1;
+  --sds-clr-lilac-11: #5746af;
+  --sds-clr-lilac-12: #20134b;
+
+  // Base
+  --sds-clr-base-00: #ffffff;
+  --sds-clr-base-01: #000000;
+
+  // Overlay
+  --sds-overlay-01: rgba(0, 0, 0, 0.1);
+  --sds-overlay-02: rgba(0, 0, 0, 0.2);
+  --sds-overlay-03: rgba(0, 0, 0, 0.3);
+  --sds-overlay-04: rgba(0, 0, 0, 0.4);
+  --sds-overlay-05: rgba(0, 0, 0, 0.5);
+  --sds-overlay-06: rgba(0, 0, 0, 0.6);
+  --sds-overlay-07: rgba(0, 0, 0, 0.7);
+  --sds-overlay-08: rgba(0, 0, 0, 0.8);
+  --sds-overlay-09: rgba(0, 0, 0, 0.9);
+  --sds-overlay-10: rgba(0, 0, 0, 1);
 
   // Green
-  --color-green-10: #f2fcf5;
-  --color-green-20: #e9f9ee;
-  --color-green-30: #ddf3e4;
-  --color-green-40: #ccebd7;
-  --color-green-50: #5bb98c;
-  --color-green-60: #30a46c;
-  --color-green-70: #18794e;
-  --color-green-80: #153226;
-
-  // Yellow
-  --color-yellow-10: #fff9ed;
-  --color-yellow-20: #fff4d5;
-  --color-yellow-30: #ffecbc;
-  --color-yellow-40: #ffe3a2;
-  --color-yellow-50: #ffb224;
-  --color-yellow-60: #ee9d2b;
-  --color-yellow-70: #ad5700;
-  --color-yellow-80: #4e2009;
+  --sds-clr-green-01: #fbfefc;
+  --sds-clr-green-02: #f2fcf5;
+  --sds-clr-green-03: #e9f9ee;
+  --sds-clr-green-04: #ddf3e4;
+  --sds-clr-green-05: #ccebd7;
+  --sds-clr-green-06: #b4dfc4;
+  --sds-clr-green-07: #92ceac;
+  --sds-clr-green-08: #5bb98c;
+  --sds-clr-green-09: #30a46c;
+  --sds-clr-green-10: #299764;
+  --sds-clr-green-11: #18794e;
+  --sds-clr-green-12: #153226;
+
+  // Amber
+  --sds-clr-amber-01: #fefdfb;
+  --sds-clr-amber-02: #fff9ed;
+  --sds-clr-amber-03: #fff4d5;
+  --sds-clr-amber-04: #ffecbc;
+  --sds-clr-amber-05: #ffe3a2;
+  --sds-clr-amber-06: #ffd386;
+  --sds-clr-amber-07: #f3ba63;
+  --sds-clr-amber-08: #ee9d2b;
+  --sds-clr-amber-09: #ffb224;
+  --sds-clr-amber-10: #ffa01c;
+  --sds-clr-amber-11: #ad5700;
+  --sds-clr-amber-12: #4e2009;
 
   // Red
-  --color-red-10: #fff8f8;
-  --color-red-20: #ffefef;
-  --color-red-30: #ffe5e5;
-  --color-red-40: #fdd8d8;
-  --color-red-50: #eb9091;
-  --color-red-60: #e5484d;
-  --color-red-70: #cd2b31;
-  --color-red-80: #381316;
+  --sds-clr-red-01: #fffcfc;
+  --sds-clr-red-02: #fff8f8;
+  --sds-clr-red-03: #ffefef;
+  --sds-clr-red-04: #ffe5e5;
+  --sds-clr-red-05: #fdd8d8;
+  --sds-clr-red-06: #f9c6c6;
+  --sds-clr-red-07: #f3aeaf;
+  --sds-clr-red-08: #eb9091;
+  --sds-clr-red-09: #e5484d;
+  --sds-clr-red-10: #dc3d43;
+  --sds-clr-red-11: #cd2b31;
+  --sds-clr-red-12: #381316;
+
+  // White
+  --sds-clr-white: #ffffff;
+
+  // Gold
+  --sds-clr-gold-01: #fdfdf9;
+  --sds-clr-gold-02: #fffce8;
+  --sds-clr-gold-03: #fffbd1;
+  --sds-clr-gold-04: #fff8bb;
+  --sds-clr-gold-05: #fef2a4;
+  --sds-clr-gold-06: #f9e68c;
+  --sds-clr-gold-07: #efd36c;
+  --sds-clr-gold-08: #ebbc00;
+  --sds-clr-gold-09: #fdda24;
+  --sds-clr-gold-10: #f7ce00;
+  --sds-clr-gold-11: #946800;
+  --sds-clr-gold-12: #35290f;
+
+  // Navy
+  --sds-clr-navy-01: #fdfdfe;
+  --sds-clr-navy-02: #f8faff;
+  --sds-clr-navy-03: #f0f4ff;
+  --sds-clr-navy-04: #e6edfe;
+  --sds-clr-navy-05: #d9e2fc;
+  --sds-clr-navy-06: #c6d4f9;
+  --sds-clr-navy-07: #aec0f5;
+  --sds-clr-navy-08: #8da4ef;
+  --sds-clr-navy-09: #3e63dd;
+  --sds-clr-navy-10: #3a5ccc;
+  --sds-clr-navy-11: #3451b2;
+  --sds-clr-navy-12: #101d46;
+
+  // Teal
+  --sds-clr-teal-01: #fafdfe;
+  --sds-clr-teal-02: #f2fcfd;
+  --sds-clr-teal-03: #e7f9fb;
+  --sds-clr-teal-04: #d8f3f6;
+  --sds-clr-teal-05: #c4eaef;
+  --sds-clr-teal-06: #aadee6;
+  --sds-clr-teal-07: #84cdda;
+  --sds-clr-teal-08: #3db9cf;
+  --sds-clr-teal-09: #05a2c2;
+  --sds-clr-teal-10: #0894b3;
+  --sds-clr-teal-11: #0c7792;
+  --sds-clr-teal-12: #04313c;
+
+  // Mint
+  --sds-clr-mint-01: #f9fefd;
+  --sds-clr-mint-02: #effefa;
+  --sds-clr-mint-03: #e1fbf4;
+  --sds-clr-mint-04: #d2f7ed;
+  --sds-clr-mint-05: #c0efe3;
+  --sds-clr-mint-06: #a5e4d4;
+  --sds-clr-mint-07: #7dd4c0;
+  --sds-clr-mint-08: #40c4aa;
+  --sds-clr-mint-09: #70e1c8;
+  --sds-clr-mint-10: #69d9c1;
+  --sds-clr-mint-11: #147d6f;
+  --sds-clr-mint-12: #09342e;
+
+  // Lime
+  --sds-clr-lime-01: #fcfdfa;
+  --sds-clr-lime-02: #f7fcf0;
+  --sds-clr-lime-03: #eefadc;
+  --sds-clr-lime-04: #e4f7c7;
+  --sds-clr-lime-05: #d7f2b0;
+  --sds-clr-lime-06: #c9e894;
+  --sds-clr-lime-07: #b1d16a;
+  --sds-clr-lime-08: #94ba2c;
+  --sds-clr-lime-09: #99d52a;
+  --sds-clr-lime-10: #93c926;
+  --sds-clr-lime-11: #5d770d;
+  --sds-clr-lime-12: #263209;
+
+  // Pink
+  --sds-clr-pink-01: #fffcfe;
+  --sds-clr-pink-02: #fff7fc;
+  --sds-clr-pink-03: #feeef8;
+  --sds-clr-pink-04: #fce5f3;
+  --sds-clr-pink-05: #f9d8ec;
+  --sds-clr-pink-06: #f3c6e2;
+  --sds-clr-pink-07: #ecadd4;
+  --sds-clr-pink-08: #e38ec3;
+  --sds-clr-pink-09: #d6409f;
+  --sds-clr-pink-10: #d23197;
+  --sds-clr-pink-11: #cd1d8d;
+  --sds-clr-pink-12: #3b0a2a;
 }
 
 @mixin theme-dark {
   color-scheme: dark;
 
-  // Purple
-  --color-purple-10: #17151f;
-  --color-purple-20: #1c172b;
-  --color-purple-30: #2c2250;
-  --color-purple-40: #32275f;
-  --color-purple-50: #634cc9;
-  --color-purple-60: #7c66dc;
-  --color-purple-70: #9e8cfc;
-  --color-purple-80: #f1eefe;
+  // Gray
+  --sds-clr-gray-01: #161616;
+  --sds-clr-gray-02: #1c1c1c;
+  --sds-clr-gray-03: #232323;
+  --sds-clr-gray-04: #282828;
+  --sds-clr-gray-05: #2e2e2e;
+  --sds-clr-gray-06: #343434;
+  --sds-clr-gray-07: #3e3e3e;
+  --sds-clr-gray-08: #505050;
+  --sds-clr-gray-09: #707070;
+  --sds-clr-gray-10: #7e7e7e;
+  --sds-clr-gray-11: #a0a0a0;
+  --sds-clr-gray-12: #ededed;
 
-  // White
-  --color-white: #ffffff;
-
-  // Grayscale
-  --color-gray-00: #000000;
-  --color-gray-10: #161618;
-  --color-gray-20: #1c1c1f;
-  --color-gray-30: #28282c;
-  --color-gray-40: #2e2e32;
-  --color-gray-50: #706f78;
-  --color-gray-60: #7e7d86;
-  --color-gray-70: #a09fa6;
-  --color-gray-80: #ededef;
-  --color-gray-90: #ffffff;
+  // Lilac
+  --sds-clr-lilac-01: #17151f;
+  --sds-clr-lilac-02: #1c172b;
+  --sds-clr-lilac-03: #251e40;
+  --sds-clr-lilac-04: #2c2250;
+  --sds-clr-lilac-05: #32275f;
+  --sds-clr-lilac-06: #392c72;
+  --sds-clr-lilac-07: #443592;
+  --sds-clr-lilac-08: #5842c3;
+  --sds-clr-lilac-09: #6e56cf;
+  --sds-clr-lilac-10: #7c66dc;
+  --sds-clr-lilac-11: #9e8cfc;
+  --sds-clr-lilac-12: #f1eefe;
+
+  // Base
+  --sds-clr-base-00: #000000;
+  --sds-clr-base-01: #ffffff;
+
+  // Overlay
+  --sds-overlay-01: rgba(255, 255, 255, 0.1);
+  --sds-overlay-02: rgba(255, 255, 255, 0.2);
+  --sds-overlay-03: rgba(255, 255, 255, 0.3);
+  --sds-overlay-04: rgba(255, 255, 255, 0.4);
+  --sds-overlay-05: rgba(255, 255, 255, 0.5);
+  --sds-overlay-06: rgba(255, 255, 255, 0.6);
+  --sds-overlay-07: rgba(255, 255, 255, 0.7);
+  --sds-overlay-08: rgba(255, 255, 255, 0.8);
+  --sds-overlay-09: rgba(255, 255, 255, 0.9);
+  --sds-overlay-10: rgba(255, 255, 255, 1);
 
   // Green
-  --color-green-10: #0d1912;
-  --color-green-20: #0c1f17;
-  --color-green-30: #113123;
-  --color-green-40: #133929;
-  --color-green-50: #30a46c;
-  --color-green-60: #3cb179;
-  --color-green-70: #4cc38a;
-  --color-green-80: #e5fbeb;
-
-  // Yellow
-  --color-yellow-10: #1f1300;
-  --color-yellow-20: #271700;
-  --color-yellow-30: #3f2200;
-  --color-yellow-40: #4a2900;
-  --color-yellow-50: #f1a10d;
-  --color-yellow-60: #ffb224;
-  --color-yellow-70: #ffcb47;
-  --color-yellow-80: #fef3dd;
+  --sds-clr-green-01: #0d1912;
+  --sds-clr-green-02: #0c1f17;
+  --sds-clr-green-03: #0f291e;
+  --sds-clr-green-04: #113123;
+  --sds-clr-green-05: #133929;
+  --sds-clr-green-06: #164430;
+  --sds-clr-green-07: #1b543a;
+  --sds-clr-green-08: #236e4a;
+  --sds-clr-green-09: #30a46c;
+  --sds-clr-green-10: #3cb179;
+  --sds-clr-green-11: #4cc38a;
+  --sds-clr-green-12: #e5fbeb;
+
+  // Amber
+  --sds-clr-amber-01: #1f1300;
+  --sds-clr-amber-02: #271700;
+  --sds-clr-amber-03: #341c00;
+  --sds-clr-amber-04: #3f2200;
+  --sds-clr-amber-05: #4a2900;
+  --sds-clr-amber-06: #573300;
+  --sds-clr-amber-07: #693f05;
+  --sds-clr-amber-08: #824e00;
+  --sds-clr-amber-09: #ffb224;
+  --sds-clr-amber-10: #ffcb47;
+  --sds-clr-amber-11: #f1a10d;
+  --sds-clr-amber-12: #fef3dd;
 
   // Red
-  --color-red-10: #1f1315;
-  --color-red-20: #291415;
-  --color-red-30: #481a1d;
-  --color-red-40: #541b1f;
-  --color-red-50: #e5484d;
-  --color-red-60: #f2555a;
-  --color-red-70: #ff6369;
-  --color-red-80: #feecee;
+  --sds-clr-red-01: #1f1315;
+  --sds-clr-red-02: #291415;
+  --sds-clr-red-03: #3c181a;
+  --sds-clr-red-04: #481a1d;
+  --sds-clr-red-05: #541b1f;
+  --sds-clr-red-06: #671e22;
+  --sds-clr-red-07: #822025;
+  --sds-clr-red-08: #aa2429;
+  --sds-clr-red-09: #e5484d;
+  --sds-clr-red-10: #f2555a;
+  --sds-clr-red-11: #ff6369;
+  --sds-clr-red-12: #feecee;
+
+  // White
+  --sds-clr-white: #ffffff;
+
+  // Gold
+  --sds-clr-gold-01: #1c1500;
+  --sds-clr-gold-02: #221a00;
+  --sds-clr-gold-03: #2c2100;
+  --sds-clr-gold-04: #352800;
+  --sds-clr-gold-05: #3e3000;
+  --sds-clr-gold-06: #493c00;
+  --sds-clr-gold-07: #594a05;
+  --sds-clr-gold-08: #705e00;
+  --sds-clr-gold-09: #fdda24;
+  --sds-clr-gold-10: #ffef5c;
+  --sds-clr-gold-11: #f0c000;
+  --sds-clr-gold-12: #fffad1;
+
+  // Navy
+  --sds-clr-navy-01: #131620;
+  --sds-clr-navy-02: #15192d;
+  --sds-clr-navy-03: #192140;
+  --sds-clr-navy-04: #1c274f;
+  --sds-clr-navy-05: #1f2c5c;
+  --sds-clr-navy-06: #22346e;
+  --sds-clr-navy-07: #273e89;
+  --sds-clr-navy-08: #2f4eb2;
+  --sds-clr-navy-09: #3e63dd;
+  --sds-clr-navy-10: #5373e7;
+  --sds-clr-navy-11: #849dff;
+  --sds-clr-navy-12: #eef1fd;
+
+  // Teal
+  --sds-clr-teal-01: #07191d;
+  --sds-clr-teal-02: #061e24;
+  --sds-clr-teal-03: #072830;
+  --sds-clr-teal-04: #07303b;
+  --sds-clr-teal-05: #073844;
+  --sds-clr-teal-06: #064150;
+  --sds-clr-teal-07: #045063;
+  --sds-clr-teal-08: #00647d;
+  --sds-clr-teal-09: #05a2c2;
+  --sds-clr-teal-10: #00b1cc;
+  --sds-clr-teal-11: #00c2d7;
+  --sds-clr-teal-12: #e1f8fa;
+
+  // Mint
+  --sds-clr-mint-01: #081917;
+  --sds-clr-mint-02: #05201e;
+  --sds-clr-mint-03: #052926;
+  --sds-clr-mint-04: #04312c;
+  --sds-clr-mint-05: #033a34;
+  --sds-clr-mint-06: #01453d;
+  --sds-clr-mint-07: #00564a;
+  --sds-clr-mint-08: #006d5b;
+  --sds-clr-mint-09: #70e1c8;
+  --sds-clr-mint-10: #95f3d9;
+  --sds-clr-mint-11: #25d0ab;
+  --sds-clr-mint-12: #e7fcf7;
+
+  // Lime
+  --sds-clr-lime-01: #141807;
+  --sds-clr-lime-02: #181d08;
+  --sds-clr-lime-03: #1e260d;
+  --sds-clr-lime-04: #252e0f;
+  --sds-clr-lime-05: #2b3711;
+  --sds-clr-lime-06: #344213;
+  --sds-clr-lime-07: #415215;
+  --sds-clr-lime-08: #536716;
+  --sds-clr-lime-09: #99d52a;
+  --sds-clr-lime-10: #c4f042;
+  --sds-clr-lime-11: #87be22;
+  --sds-clr-lime-12: #effbdd;
+
+  // Pink
+  --sds-clr-pink-01: #1f121b;
+  --sds-clr-pink-02: #271421;
+  --sds-clr-pink-03: #3a182f;
+  --sds-clr-pink-04: #451a37;
+  --sds-clr-pink-05: #501b3f;
+  --sds-clr-pink-06: #601d48;
+  --sds-clr-pink-07: #7a1d5a;
+  --sds-clr-pink-08: #a71873;
+  --sds-clr-pink-09: #d6409f;
+  --sds-clr-pink-10: #e34ba9;
+  --sds-clr-pink-11: #f65cb6;
+  --sds-clr-pink-12: #feebf7;
 }
 
 @mixin theme-common {
   // Font size
-  --font-size: 16px;
-  --font-size-secondary: 14px;
+  --sds-fs-primary: 16px;
+  --sds-fs-secondary: 14px;
 
   // Font weight
-  --font-weight-light: 300;
-  --font-weight-regular: 400;
-  --font-weight-medium: 500;
-  --font-weight-semi-bold: 600;
+  --sds-fw-light: 300;
+  --sds-fw-regular: 400;
+  --sds-fw-medium: 500;
+  --sds-fw-semi-bold: 600;
+  --sds-fw-bold: 700;
 
   // Font family
-  --font-family-heading: "Inter Tight", sans-serif;
-  --font-family-base: "Inter", sans-serif;
-  --font-family-monospace: "Roboto Mono", monospace;
+  --sds-ff-heading: "Inter", sans-serif;
+  --sds-ff-base: "Inter", sans-serif;
+  --sds-ff-monospace: "Inconsolata", monospace;
 
   // Z-index
-  --z-index-tooltip: 20;
-  --z-index-modal: 30;
+  --sds-z-index-tooltip: 20;
+  --sds-z-index-modal: 30;
 
   // Opacity
-  --opacity-disabled-button: 0.6;
+  --sds-opacity-disabled-button: 0.6;
 
   // Layout
-  --layout-window-width-min: 360px;
-  --layout-window-width-max: 1296px;
-  --layout-window-height-min: 100vh;
+  --sds-window-width-min: 360px;
+  --sds-window-width-max: 1296px;
+  --sds-window-height-min: 100vh;
 
   // Animations
-  --anim-transition-default: cubic-bezier(0.65, 0.05, 0.36, 1) 200ms;
+  --sds-anim-transition-default: cubic-bezier(0.65, 0.05, 0.36, 1) 100ms;
+
+  // Form element / input colors
+  --sds-input-color-border-default: var(--sds-clr-gray-06);
+  --sds-input-color-border-default-hover: var(--sds-clr-gray-06);
+  --sds-input-color-border-default-focus: var(--sds-clr-gray-06);
+
+  --sds-input-color-border-error: var(--sds-clr-red-06);
+  --sds-input-color-border-error-hover: var(--sds-clr-red-06);
+  --sds-input-color-border-error-focus: var(--sds-clr-red-06);
+
+  --sds-input-color-border-disabled: var(--sds-clr-gray-07);
+  --sds-input-color-border-disabled-hover: var(--sds-clr-gray-07);
+  --sds-input-color-border-disabled-focus: var(--sds-clr-gray-07);
 
-  // Avatar
-  --Avatar-image-size: 100%;
+  --sds-input-color-background-default: var(--sds-clr-gray-01);
+  --sds-input-color-background-error: var(--sds-clr-gray-01);
+  --sds-input-color-background-disabled: var(--sds-clr-gray-03);
+
+  --sds-input-color-text-default: var(--sds-clr-gray-12);
+  --sds-input-color-text-placeholder: var(--sds-clr-gray-11);
+  --sds-input-color-text-disabled: var(--sds-clr-gray-11);
+  --sds-input-color-icon: var(--sds-clr-gray-11);
+
+  --sds-input-box-shadow-color-default: var(--sds-clr-gray-04);
+  --sds-input-box-shadow-color-error: var(--sds-clr-red-04);
 }
 
 // =============================================================================
 // Setting themes
 // =============================================================================
-:root {
+:root,
+.sds-theme-light,
+.sds-theme-dark {
   @include theme-common;
 }
 
diff --git a/@stellar/design-system/src/types/@modules.d.ts b/@stellar/design-system/src/types/@modules.d.ts
index 9880721e..acf9f2eb 100644
--- a/@stellar/design-system/src/types/@modules.d.ts
+++ b/@stellar/design-system/src/types/@modules.d.ts
@@ -5,3 +5,13 @@ declare module "*.svg" {
   const src: string;
   export default src;
 }
+
+declare module "react-copy-to-clipboard" {
+  import React = require("react");
+
+  export default React.PureComponent<{
+    children: React.ReactNode;
+    text: string;
+    onCopy?: () => void;
+  }>;
+}
diff --git a/Dockerfile b/Dockerfile
index 2351345f..55036af5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ WORKDIR /app
 ENV DEBIAN_FRONTEND=noninteractive
 RUN apt-get update && apt-get install --no-install-recommends -y gpg curl git make ca-certificates apt-transport-https && \
     curl -sSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key|gpg --dearmor >/etc/apt/trusted.gpg.d/nodesource-key.gpg && \
-    echo "deb https://deb.nodesource.com/node_18.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \
+    echo "deb https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \
     curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg |gpg --dearmor >/etc/apt/trusted.gpg.d/yarnpkg.gpg && \
     echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
     apt-get update && apt-get install -y nodejs yarn && apt-get clean
diff --git a/TEMP.md b/TEMP.md
new file mode 100644
index 00000000..80b31e65
--- /dev/null
+++ b/TEMP.md
@@ -0,0 +1,3 @@
+# Trigger test PR
+
+TODO: Remove this file before launch
diff --git a/package.json b/package.json
index 03489c4d..8610cd41 100755
--- a/package.json
+++ b/package.json
@@ -19,7 +19,7 @@
     "tsc:sds": "yarn workspace @stellar/design-system lint-tsc",
     "tsc:sds-web": "yarn workspace @stellar/design-system-website lint-tsc",
     "clean": "rm -rf node_modules && rm -rf */**/node_modules && rm -rf */**/build",
-    "prepare": "husky install",
+    "prepare": "husky",
     "install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet yarn.lock && yarn install || exit 0",
     "pre-commit": "concurrently 'pretty-quick --staged' 'lint-staged' 'yarn tsc:sds' 'yarn tsc:sds-web'"
   },
diff --git a/yarn.lock b/yarn.lock
index 4eceb7d2..5e4ce8ec 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -34,218 +34,168 @@
   resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz#2e22e830d36f0a9cf2c0ccd3c7f6d59435b77dfa"
   integrity sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==
 
-"@algolia/cache-browser-local-storage@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.22.0.tgz#548e3f9524988bbe0c14b7fc7b2a66335520eeb7"
-  integrity sha512-uZ1uZMLDZb4qODLfTSNHxSi4fH9RdrQf7DXEzW01dS8XK7QFtFh29N5NGKa9S+Yudf1vUMIF+/RiL4i/J0pWlQ==
-  dependencies:
-    "@algolia/cache-common" "4.22.0"
-
-"@algolia/cache-common@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.22.0.tgz#83d6111caac74a71bebe5fc050a3b64f3e45d037"
-  integrity sha512-TPwUMlIGPN16eW67qamNQUmxNiGHg/WBqWcrOoCddhqNTqGDPVqmgfaM85LPbt24t3r1z0zEz/tdsmuq3Q6oaA==
-
-"@algolia/cache-in-memory@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.22.0.tgz#ff86b08d8c80a9402f39e5c64cef2ba8299bbe1d"
-  integrity sha512-kf4Cio9NpPjzp1+uXQgL4jsMDeck7MP89BYThSvXSjf2A6qV/0KeqQf90TL2ECS02ovLOBXkk98P7qVarM+zGA==
-  dependencies:
-    "@algolia/cache-common" "4.22.0"
-
-"@algolia/client-account@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.22.0.tgz#d7fa001dc062dca446f0620281fc0cec7c850487"
-  integrity sha512-Bjb5UXpWmJT+yGWiqAJL0prkENyEZTBzdC+N1vBuHjwIJcjLMjPB6j1hNBRbT12Lmwi55uzqeMIKS69w+0aPzA==
-  dependencies:
-    "@algolia/client-common" "4.22.0"
-    "@algolia/client-search" "4.22.0"
-    "@algolia/transporter" "4.22.0"
-
-"@algolia/client-analytics@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.22.0.tgz#ea10e73d649aa1b9a1a25a786300d241fd4ad0d1"
-  integrity sha512-os2K+kHUcwwRa4ArFl5p/3YbF9lN3TLOPkbXXXxOvDpqFh62n9IRZuzfxpHxMPKAQS3Et1s0BkKavnNP02E9Hg==
-  dependencies:
-    "@algolia/client-common" "4.22.0"
-    "@algolia/client-search" "4.22.0"
-    "@algolia/requester-common" "4.22.0"
-    "@algolia/transporter" "4.22.0"
-
-"@algolia/client-common@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.22.0.tgz#4bf298acec78fa988a5b829748e6c488b8a6b570"
-  integrity sha512-BlbkF4qXVWuwTmYxVWvqtatCR3lzXwxx628p1wj1Q7QP2+LsTmGt1DiUYRuy9jG7iMsnlExby6kRMOOlbhv2Ag==
-  dependencies:
-    "@algolia/requester-common" "4.22.0"
-    "@algolia/transporter" "4.22.0"
-
-"@algolia/client-personalization@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.22.0.tgz#210c7d196b3c31da45e16db6ed98a7594fcf5e1c"
-  integrity sha512-pEOftCxeBdG5pL97WngOBi9w5Vxr5KCV2j2D+xMVZH8MuU/JX7CglDSDDb0ffQWYqcUN+40Ry+xtXEYaGXTGow==
-  dependencies:
-    "@algolia/client-common" "4.22.0"
-    "@algolia/requester-common" "4.22.0"
-    "@algolia/transporter" "4.22.0"
-
-"@algolia/client-search@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.22.0.tgz#1113332cf973ce69067b741a17e8f798d71e07db"
-  integrity sha512-bn4qQiIdRPBGCwsNuuqB8rdHhGKKWIij9OqidM1UkQxnSG8yzxHdb7CujM30pvp5EnV7jTqDZRbxacbjYVW20Q==
-  dependencies:
-    "@algolia/client-common" "4.22.0"
-    "@algolia/requester-common" "4.22.0"
-    "@algolia/transporter" "4.22.0"
+"@algolia/cache-browser-local-storage@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.23.2.tgz#060d15e89588fcac18e73643201fce0f4f7d5ca0"
+  integrity sha512-PvRQdCmtiU22dw9ZcTJkrVKgNBVAxKgD0/cfiqyxhA5+PHzA2WDt6jOmZ9QASkeM2BpyzClJb/Wr1yt2/t78Kw==
+  dependencies:
+    "@algolia/cache-common" "4.23.2"
+
+"@algolia/cache-common@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.23.2.tgz#c68706ce34b18377e56e71ac13cce2dd5662dcee"
+  integrity sha512-OUK/6mqr6CQWxzl/QY0/mwhlGvS6fMtvEPyn/7AHUx96NjqDA4X4+Ju7aXFQKh+m3jW9VPB0B9xvEQgyAnRPNw==
+
+"@algolia/cache-in-memory@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.23.2.tgz#94cd828275d7a12186959bf1b95a13247e103b23"
+  integrity sha512-rfbi/SnhEa3MmlqQvgYz/9NNJ156NkU6xFxjbxBtLWnHbpj+qnlMoKd+amoiacHRITpajg6zYbLM9dnaD3Bczw==
+  dependencies:
+    "@algolia/cache-common" "4.23.2"
+
+"@algolia/client-account@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.23.2.tgz#b53cb14e730fd8e0a0a227cf650b287b570a08bc"
+  integrity sha512-VbrOCLIN/5I7iIdskSoSw3uOUPF516k4SjDD4Qz3BFwa3of7D9A0lzBMAvQEJJEPHWdVraBJlGgdJq/ttmquJQ==
+  dependencies:
+    "@algolia/client-common" "4.23.2"
+    "@algolia/client-search" "4.23.2"
+    "@algolia/transporter" "4.23.2"
+
+"@algolia/client-analytics@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.23.2.tgz#7fdcf1cb27f0ae93e5da6beb4e612fc06a880b0c"
+  integrity sha512-lLj7irsAztGhMoEx/SwKd1cwLY6Daf1Q5f2AOsZacpppSvuFvuBrmkzT7pap1OD/OePjLKxicJS8wNA0+zKtuw==
+  dependencies:
+    "@algolia/client-common" "4.23.2"
+    "@algolia/client-search" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/transporter" "4.23.2"
+
+"@algolia/client-common@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.23.2.tgz#e5f86fc2de707eb6bf9f1109b70187dae179c72c"
+  integrity sha512-Q2K1FRJBern8kIfZ0EqPvUr3V29ICxCm/q42zInV+VJRjldAD9oTsMGwqUQ26GFMdFYmqkEfCbY4VGAiQhh22g==
+  dependencies:
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/transporter" "4.23.2"
+
+"@algolia/client-personalization@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/client-personalization/-/client-personalization-4.23.2.tgz#0472d9c207402eefcc9c98f7ffba5d26fe8e2fd0"
+  integrity sha512-vwPsgnCGhUcHhhQG5IM27z8q7dWrN9itjdvgA6uKf2e9r7vB+WXt4OocK0CeoYQt3OGEAExryzsB8DWqdMK5wg==
+  dependencies:
+    "@algolia/client-common" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/transporter" "4.23.2"
+
+"@algolia/client-search@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.23.2.tgz#9b2741f0a209596459f06a44583118207ea287f7"
+  integrity sha512-CxSB29OVGSE7l/iyoHvamMonzq7Ev8lnk/OkzleODZ1iBcCs3JC/XgTIKzN/4RSTrJ9QybsnlrN/bYCGufo7qw==
+  dependencies:
+    "@algolia/client-common" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/transporter" "4.23.2"
 
 "@algolia/events@^4.0.1":
   version "4.0.1"
   resolved "https://registry.yarnpkg.com/@algolia/events/-/events-4.0.1.tgz#fd39e7477e7bc703d7f893b556f676c032af3950"
   integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==
 
-"@algolia/logger-common@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.22.0.tgz#f9498729ca5b0e9c0bd1b8dd729edd91ddd02b5c"
-  integrity sha512-HMUQTID0ucxNCXs5d1eBJ5q/HuKg8rFVE/vOiLaM4Abfeq1YnTtGV3+rFEhOPWhRQxNDd+YHa4q864IMc0zHpQ==
-
-"@algolia/logger-console@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.22.0.tgz#52e62b98fc01b40d6677b0ddf656b342e89f13c2"
-  integrity sha512-7JKb6hgcY64H7CRm3u6DRAiiEVXMvCJV5gRE672QFOUgDxo4aiDpfU61g6Uzy8NKjlEzHMmgG4e2fklELmPXhQ==
-  dependencies:
-    "@algolia/logger-common" "4.22.0"
-
-"@algolia/requester-browser-xhr@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.22.0.tgz#ca16e4c6860458477a00b440a407c81591f14b8a"
-  integrity sha512-BHfv1h7P9/SyvcDJDaRuIwDu2yrDLlXlYmjvaLZTtPw6Ok/ZVhBR55JqW832XN/Fsl6k3LjdkYHHR7xnsa5Wvg==
-  dependencies:
-    "@algolia/requester-common" "4.22.0"
-
-"@algolia/requester-common@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.22.0.tgz#d7a8283f5b77550eeab353c571a6566adf552fa7"
-  integrity sha512-Y9cEH/cKjIIZgzvI1aI0ARdtR/xRrOR13g5psCxkdhpgRN0Vcorx+zePhmAa4jdQNqexpxtkUdcKYugBzMZJgQ==
-
-"@algolia/requester-node-http@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.22.0.tgz#41d5e7d5dc7adb930e7fe8dcd9d39bfc378cc5f5"
-  integrity sha512-8xHoGpxVhz3u2MYIieHIB6MsnX+vfd5PS4REgglejJ6lPigftRhTdBCToe6zbwq4p0anZXjjPDvNWMlgK2+xYA==
-  dependencies:
-    "@algolia/requester-common" "4.22.0"
-
-"@algolia/transporter@4.22.0":
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.22.0.tgz#733385f6457408228d2a4d7a4fe4e2b1599a5d33"
-  integrity sha512-ieO1k8x2o77GNvOoC+vAkFKppydQSVfbjM3YrSjLmgywiBejPTvU1R1nEvG59JIIUvtSLrZsLGPkd6vL14zopA==
-  dependencies:
-    "@algolia/cache-common" "4.22.0"
-    "@algolia/logger-common" "4.22.0"
-    "@algolia/requester-common" "4.22.0"
+"@algolia/logger-common@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.23.2.tgz#5441a828f0fad1ceaae3a27caec7b663d40dd27f"
+  integrity sha512-jGM49Q7626cXZ7qRAWXn0jDlzvoA1FvN4rKTi1g0hxKsTTSReyYk0i1ADWjChDPl3Q+nSDhJuosM2bBUAay7xw==
+
+"@algolia/logger-console@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.23.2.tgz#fda4252bb02df7c52a92c63f1e357bf7370cc8db"
+  integrity sha512-oo+lnxxEmlhTBTFZ3fGz1O8PJ+G+8FiAoMY2Qo3Q4w23xocQev6KqDTA1JQAGPDxAewNA2VBwWOsVXeXFjrI/Q==
+  dependencies:
+    "@algolia/logger-common" "4.23.2"
+
+"@algolia/recommend@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/recommend/-/recommend-4.23.2.tgz#02bf57f836ced2c850633239d493a0414be76a7f"
+  integrity sha512-Q75CjnzRCDzgIlgWfPnkLtrfF4t82JCirhalXkSSwe/c1GH5pWh4xUyDOR3KTMo+YxxX3zTlrL/FjHmUJEWEcg==
+  dependencies:
+    "@algolia/cache-browser-local-storage" "4.23.2"
+    "@algolia/cache-common" "4.23.2"
+    "@algolia/cache-in-memory" "4.23.2"
+    "@algolia/client-common" "4.23.2"
+    "@algolia/client-search" "4.23.2"
+    "@algolia/logger-common" "4.23.2"
+    "@algolia/logger-console" "4.23.2"
+    "@algolia/requester-browser-xhr" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/requester-node-http" "4.23.2"
+    "@algolia/transporter" "4.23.2"
+
+"@algolia/requester-browser-xhr@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.23.2.tgz#2d0a6b642e2a2bbfb2e2ff3d1e82158e3e143def"
+  integrity sha512-TO9wLlp8+rvW9LnIfyHsu8mNAMYrqNdQ0oLF6eTWFxXfxG3k8F/Bh7nFYGk2rFAYty4Fw4XUtrv/YjeNDtM5og==
+  dependencies:
+    "@algolia/requester-common" "4.23.2"
+
+"@algolia/requester-common@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.23.2.tgz#9c2e5da4dc15e65f9b9bbe5bedb419cf23092ef1"
+  integrity sha512-3EfpBS0Hri0lGDB5H/BocLt7Vkop0bTTLVUBB844HH6tVycwShmsV6bDR7yXbQvFP1uNpgePRD3cdBCjeHmk6Q==
+
+"@algolia/requester-node-http@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.23.2.tgz#718ae71f58949eab3b5fcfc440be42af41bd640f"
+  integrity sha512-SVzgkZM/malo+2SB0NWDXpnT7nO5IZwuDTaaH6SjLeOHcya1o56LSWXk+3F3rNLz2GVH+I/rpYKiqmHhSOjerw==
+  dependencies:
+    "@algolia/requester-common" "4.23.2"
+
+"@algolia/transporter@4.23.2":
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.23.2.tgz#61e7b9288d4f561b2015ddde689ba31e08c21644"
+  integrity sha512-GY3aGKBy+8AK4vZh8sfkatDciDVKad5rTY2S10Aefyjh7e7UGBP4zigf42qVXwU8VOPwi7l/L7OACGMOFcjB0Q==
+  dependencies:
+    "@algolia/cache-common" "4.23.2"
+    "@algolia/logger-common" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
 
 "@ampproject/remapping@^2.2.0":
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
-  integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
-  dependencies:
-    "@jridgewell/gen-mapping" "^0.3.0"
-    "@jridgewell/trace-mapping" "^0.3.9"
-
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.8.3":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
-  integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
-  dependencies:
-    "@babel/highlight" "^7.22.5"
-
-"@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.4.tgz#03ae5af150be94392cb5c7ccd97db5a19a5da6aa"
-  integrity sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==
-  dependencies:
-    "@babel/highlight" "^7.23.4"
-    chalk "^2.4.2"
-
-"@babel/code-frame@^7.23.5":
-  version "7.23.5"
-  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244"
-  integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
+  integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
   dependencies:
-    "@babel/highlight" "^7.23.4"
-    chalk "^2.4.2"
-
-"@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.6.tgz#15606a20341de59ba02cd2fcc5086fcbe73bf544"
-  integrity sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.24"
 
-"@babel/compat-data@^7.22.9":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.3.tgz#3febd552541e62b5e883a25eb3effd7c7379db11"
-  integrity sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==
-
-"@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5":
-  version "7.23.5"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98"
-  integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==
-
-"@babel/core@^7.16.0", "@babel/core@^7.19.6":
-  version "7.22.8"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.8.tgz#386470abe884302db9c82e8e5e87be9e46c86785"
-  integrity sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2", "@babel/code-frame@^7.8.3":
+  version "7.24.2"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
+  integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==
   dependencies:
-    "@ampproject/remapping" "^2.2.0"
-    "@babel/code-frame" "^7.22.5"
-    "@babel/generator" "^7.22.7"
-    "@babel/helper-compilation-targets" "^7.22.6"
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helpers" "^7.22.6"
-    "@babel/parser" "^7.22.7"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.8"
-    "@babel/types" "^7.22.5"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-    convert-source-map "^1.7.0"
-    debug "^4.1.0"
-    gensync "^1.0.0-beta.2"
-    json5 "^2.2.2"
+    "@babel/highlight" "^7.24.2"
+    picocolors "^1.0.0"
 
-"@babel/core@^7.21.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.3.tgz#5ec09c8803b91f51cc887dedc2654a35852849c9"
-  integrity sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==
-  dependencies:
-    "@ampproject/remapping" "^2.2.0"
-    "@babel/code-frame" "^7.22.13"
-    "@babel/generator" "^7.23.3"
-    "@babel/helper-compilation-targets" "^7.22.15"
-    "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helpers" "^7.23.2"
-    "@babel/parser" "^7.23.3"
-    "@babel/template" "^7.22.15"
-    "@babel/traverse" "^7.23.3"
-    "@babel/types" "^7.23.3"
-    convert-source-map "^2.0.0"
-    debug "^4.1.0"
-    gensync "^1.0.0-beta.2"
-    json5 "^2.2.3"
-    semver "^6.3.1"
+"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5", "@babel/compat-data@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.1.tgz#31c1f66435f2a9c329bb5716a6d6186c516c3742"
+  integrity sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==
 
-"@babel/core@^7.23.3":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.7.tgz#4d8016e06a14b5f92530a13ed0561730b5c6483f"
-  integrity sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==
+"@babel/core@^7.16.0", "@babel/core@^7.21.3", "@babel/core@^7.23.3":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.3.tgz#568864247ea10fbd4eff04dda1e05f9e2ea985c3"
+  integrity sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==
   dependencies:
     "@ampproject/remapping" "^2.2.0"
-    "@babel/code-frame" "^7.23.5"
-    "@babel/generator" "^7.23.6"
+    "@babel/code-frame" "^7.24.2"
+    "@babel/generator" "^7.24.1"
     "@babel/helper-compilation-targets" "^7.23.6"
     "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helpers" "^7.23.7"
-    "@babel/parser" "^7.23.6"
-    "@babel/template" "^7.22.15"
-    "@babel/traverse" "^7.23.7"
-    "@babel/types" "^7.23.6"
+    "@babel/helpers" "^7.24.1"
+    "@babel/parser" "^7.24.1"
+    "@babel/template" "^7.24.0"
+    "@babel/traverse" "^7.24.1"
+    "@babel/types" "^7.24.0"
     convert-source-map "^2.0.0"
     debug "^4.1.0"
     gensync "^1.0.0-beta.2"
@@ -253,42 +203,22 @@
     semver "^6.3.1"
 
 "@babel/eslint-parser@^7.16.3":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.7.tgz#d2807fbd1fa4376162716da63dfd3c69a2249fed"
-  integrity sha512-LH6HJqjOyu/Qtp7LuSycZXK/CYXQ4ohdkliEaL1QTdtOXVdOVpTBKVxAo/+eeyt+x/2SRzB+zUPduVl+xiEvdg==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.24.1.tgz#e27eee93ed1d271637165ef3a86e2b9332395c32"
+  integrity sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==
   dependencies:
     "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
     eslint-visitor-keys "^2.1.0"
+    semver "^6.3.1"
 
-"@babel/generator@^7.22.7":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.7.tgz#a6b8152d5a621893f2c9dacf9a4e286d520633d5"
-  integrity sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ==
-  dependencies:
-    "@babel/types" "^7.22.5"
-    "@jridgewell/gen-mapping" "^0.3.2"
-    "@jridgewell/trace-mapping" "^0.3.17"
-    jsesc "^2.5.1"
-
-"@babel/generator@^7.23.3", "@babel/generator@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.4.tgz#4a41377d8566ec18f807f42962a7f3551de83d1c"
-  integrity sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==
-  dependencies:
-    "@babel/types" "^7.23.4"
-    "@jridgewell/gen-mapping" "^0.3.2"
-    "@jridgewell/trace-mapping" "^0.3.17"
-    jsesc "^2.5.1"
-
-"@babel/generator@^7.23.6":
-  version "7.23.6"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e"
-  integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==
+"@babel/generator@^7.23.3", "@babel/generator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.1.tgz#e67e06f68568a4ebf194d1c6014235344f0476d0"
+  integrity sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==
   dependencies:
-    "@babel/types" "^7.23.6"
-    "@jridgewell/gen-mapping" "^0.3.2"
-    "@jridgewell/trace-mapping" "^0.3.17"
+    "@babel/types" "^7.24.0"
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.25"
     jsesc "^2.5.1"
 
 "@babel/helper-annotate-as-pure@^7.22.5":
@@ -305,36 +235,7 @@
   dependencies:
     "@babel/types" "^7.22.15"
 
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878"
-  integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==
-  dependencies:
-    "@babel/types" "^7.22.5"
-
-"@babel/helper-compilation-targets@^7.22.15":
-  version "7.22.15"
-  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52"
-  integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==
-  dependencies:
-    "@babel/compat-data" "^7.22.9"
-    "@babel/helper-validator-option" "^7.22.15"
-    browserslist "^4.21.9"
-    lru-cache "^5.1.1"
-    semver "^6.3.1"
-
-"@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz#e30d61abe9480aa5a83232eb31c111be922d2e52"
-  integrity sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==
-  dependencies:
-    "@babel/compat-data" "^7.22.6"
-    "@babel/helper-validator-option" "^7.22.5"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-    browserslist "^4.21.9"
-    lru-cache "^5.1.1"
-
-"@babel/helper-compilation-targets@^7.23.6":
+"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6":
   version "7.23.6"
   resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
   integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
@@ -345,46 +246,22 @@
     lru-cache "^5.1.1"
     semver "^6.3.1"
 
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5", "@babel/helper-create-class-features-plugin@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz#58564873c889a6fea05a538e23f9f6d201f10950"
-  integrity sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-member-expression-to-functions" "^7.22.5"
-    "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
-    "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-
-"@babel/helper-create-class-features-plugin@^7.22.15":
-  version "7.22.15"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4"
-  integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.1.tgz#db58bf57137b623b916e24874ab7188d93d7f68f"
+  integrity sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-member-expression-to-functions" "^7.22.15"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
+    "@babel/helper-member-expression-to-functions" "^7.23.0"
     "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.9"
+    "@babel/helper-replace-supers" "^7.24.1"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
     "@babel/helper-split-export-declaration" "^7.22.6"
     semver "^6.3.1"
 
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.6.tgz#87afd63012688ad792de430ceb3b6dc28e4e7a40"
-  integrity sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-    regexpu-core "^5.3.1"
-
-"@babel/helper-create-regexp-features-plugin@^7.22.15":
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5":
   version "7.22.15"
   resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1"
   integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==
@@ -393,21 +270,10 @@
     regexpu-core "^5.3.1"
     semver "^6.3.1"
 
-"@babel/helper-define-polyfill-provider@^0.4.1":
-  version "0.4.1"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.1.tgz#af1429c4a83ac316a6a8c2cc8ff45cb5d2998d3a"
-  integrity sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==
-  dependencies:
-    "@babel/helper-compilation-targets" "^7.22.6"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    debug "^4.1.1"
-    lodash.debounce "^4.0.8"
-    resolve "^1.14.2"
-
-"@babel/helper-define-polyfill-provider@^0.4.4":
-  version "0.4.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz#64df615451cb30e94b59a9696022cffac9a10088"
-  integrity sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==
+"@babel/helper-define-polyfill-provider@^0.6.1":
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz#fadc63f0c2ff3c8d02ed905dcea747c5b0fb74fd"
+  integrity sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==
   dependencies:
     "@babel/helper-compilation-targets" "^7.22.6"
     "@babel/helper-plugin-utils" "^7.22.5"
@@ -420,20 +286,7 @@
   resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
   integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
 
-"@babel/helper-environment-visitor@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
-  integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==
-
-"@babel/helper-function-name@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
-  integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
-  dependencies:
-    "@babel/template" "^7.22.5"
-    "@babel/types" "^7.22.5"
-
-"@babel/helper-function-name@^7.23.0":
+"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
   version "7.23.0"
   resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
   integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
@@ -448,47 +301,19 @@
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-member-expression-to-functions@^7.22.15":
+"@babel/helper-member-expression-to-functions@^7.23.0":
   version "7.23.0"
   resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366"
   integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==
   dependencies:
     "@babel/types" "^7.23.0"
 
-"@babel/helper-member-expression-to-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2"
-  integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==
-  dependencies:
-    "@babel/types" "^7.22.5"
-
-"@babel/helper-module-imports@^7.22.15":
-  version "7.22.15"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
-  integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
-  dependencies:
-    "@babel/types" "^7.22.15"
-
-"@babel/helper-module-imports@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
-  integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
-  dependencies:
-    "@babel/types" "^7.22.5"
-
-"@babel/helper-module-transforms@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef"
-  integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==
+"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.24.1", "@babel/helper-module-imports@^7.24.3":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128"
+  integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==
   dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-module-imports" "^7.22.5"
-    "@babel/helper-simple-access" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/types" "^7.24.0"
 
 "@babel/helper-module-transforms@^7.23.3":
   version "7.23.3"
@@ -508,10 +333,10 @@
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
-  integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+  version "7.24.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz#945681931a52f15ce879fd5b86ce2dae6d3d7f2a"
+  integrity sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==
 
 "@babel/helper-remap-async-to-generator@^7.22.20":
   version "7.22.20"
@@ -522,36 +347,14 @@
     "@babel/helper-environment-visitor" "^7.22.20"
     "@babel/helper-wrap-function" "^7.22.20"
 
-"@babel/helper-remap-async-to-generator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2"
-  integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-wrap-function" "^7.22.5"
-    "@babel/types" "^7.22.5"
-
-"@babel/helper-replace-supers@^7.22.20", "@babel/helper-replace-supers@^7.22.9":
-  version "7.22.20"
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793"
-  integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==
+"@babel/helper-replace-supers@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1"
+  integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==
   dependencies:
     "@babel/helper-environment-visitor" "^7.22.20"
-    "@babel/helper-member-expression-to-functions" "^7.22.15"
-    "@babel/helper-optimise-call-expression" "^7.22.5"
-
-"@babel/helper-replace-supers@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc"
-  integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==
-  dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-member-expression-to-functions" "^7.22.5"
+    "@babel/helper-member-expression-to-functions" "^7.23.0"
     "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
 
 "@babel/helper-simple-access@^7.22.5":
   version "7.22.5"
@@ -567,43 +370,23 @@
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-split-export-declaration@^7.22.5", "@babel/helper-split-export-declaration@^7.22.6":
+"@babel/helper-split-export-declaration@^7.22.6":
   version "7.22.6"
   resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
   integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
   dependencies:
     "@babel/types" "^7.22.5"
 
-"@babel/helper-string-parser@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
-  integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
-
 "@babel/helper-string-parser@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83"
-  integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
+  integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
 
 "@babel/helper-validator-identifier@^7.22.20":
   version "7.22.20"
   resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
   integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
 
-"@babel/helper-validator-identifier@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
-  integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
-
-"@babel/helper-validator-option@^7.22.15":
-  version "7.22.15"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
-  integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==
-
-"@babel/helper-validator-option@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
-  integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
-
 "@babel/helper-validator-option@^7.23.5":
   version "7.23.5"
   resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
@@ -618,115 +401,53 @@
     "@babel/template" "^7.22.15"
     "@babel/types" "^7.22.19"
 
-"@babel/helper-wrap-function@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06"
-  integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw==
-  dependencies:
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.5"
-    "@babel/types" "^7.22.5"
-
-"@babel/helpers@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
-  integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
-  dependencies:
-    "@babel/template" "^7.22.5"
-    "@babel/traverse" "^7.22.6"
-    "@babel/types" "^7.22.5"
-
-"@babel/helpers@^7.23.2":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.4.tgz#7d2cfb969aa43222032193accd7329851facf3c1"
-  integrity sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==
-  dependencies:
-    "@babel/template" "^7.22.15"
-    "@babel/traverse" "^7.23.4"
-    "@babel/types" "^7.23.4"
-
-"@babel/helpers@^7.23.7":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.7.tgz#eb543c36f81da2873e47b76ee032343ac83bba60"
-  integrity sha512-6AMnjCoC8wjqBzDHkuqpa7jAKwvMo4dC+lr/TFBz+ucfulO1XMpDnwWPGBNwClOKZ8h6xn5N81W/R5OrcKtCbQ==
-  dependencies:
-    "@babel/template" "^7.22.15"
-    "@babel/traverse" "^7.23.7"
-    "@babel/types" "^7.23.6"
-
-"@babel/highlight@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
-  integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
+"@babel/helpers@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.1.tgz#183e44714b9eba36c3038e442516587b1e0a1a94"
+  integrity sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==
   dependencies:
-    "@babel/helper-validator-identifier" "^7.22.5"
-    chalk "^2.0.0"
-    js-tokens "^4.0.0"
+    "@babel/template" "^7.24.0"
+    "@babel/traverse" "^7.24.1"
+    "@babel/types" "^7.24.0"
 
-"@babel/highlight@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b"
-  integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==
+"@babel/highlight@^7.24.2":
+  version "7.24.2"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26"
+  integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==
   dependencies:
     "@babel/helper-validator-identifier" "^7.22.20"
     chalk "^2.4.2"
     js-tokens "^4.0.0"
+    picocolors "^1.0.0"
 
-"@babel/parser@^7.22.15", "@babel/parser@^7.23.3", "@babel/parser@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.4.tgz#409fbe690c333bb70187e2de4021e1e47a026661"
-  integrity sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==
-
-"@babel/parser@^7.22.5", "@babel/parser@^7.22.7":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae"
-  integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==
-
-"@babel/parser@^7.23.6":
-  version "7.23.6"
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b"
-  integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==
-
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e"
-  integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a"
-  integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+"@babel/parser@^7.24.0", "@babel/parser@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.1.tgz#1e416d3627393fab1cb5b0f2f1796a100ae9133a"
+  integrity sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==
 
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca"
-  integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz#b645d9ba8c2bc5b7af50f0fe949f9edbeb07c8cf"
+  integrity sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/plugin-transform-optional-chaining" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d"
-  integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz#da8261f2697f0f41b0855b91d3a20a1fbfd271d3"
+  integrity sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/plugin-transform-optional-chaining" "^7.23.3"
+    "@babel/plugin-transform-optional-chaining" "^7.24.1"
 
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b"
-  integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz#1181d9685984c91d657b8ddf14f0487a6bab2988"
+  integrity sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==
   dependencies:
     "@babel/helper-environment-visitor" "^7.22.20"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-proposal-class-properties@^7.16.0":
   version "7.18.6"
@@ -737,15 +458,13 @@
     "@babel/helper-plugin-utils" "^7.18.6"
 
 "@babel/plugin-proposal-decorators@^7.16.4":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.7.tgz#9b5b73c2e404f0869ef8a8a53765f8203c5467a7"
-  integrity sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.1.tgz#bab2b9e174a2680f0a80f341f3ec70f809f8bb4b"
+  integrity sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.6"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    "@babel/plugin-syntax-decorators" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/plugin-syntax-decorators" "^7.24.1"
 
 "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0":
   version "7.18.6"
@@ -785,14 +504,6 @@
   resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
   integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
 
-"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
-  version "7.18.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
-  integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.18.6"
-    "@babel/helper-plugin-utils" "^7.18.6"
-
 "@babel/plugin-syntax-async-generators@^7.8.4":
   version "7.8.4"
   resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
@@ -814,12 +525,12 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.14.5"
 
-"@babel/plugin-syntax-decorators@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz#329fe2907c73de184033775637dbbc507f09116a"
-  integrity sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==
+"@babel/plugin-syntax-decorators@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.1.tgz#71d9ad06063a6ac5430db126b5df48c70ee885fa"
+  integrity sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-syntax-dynamic-import@^7.8.3":
   version "7.8.3"
@@ -835,40 +546,26 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.3"
 
-"@babel/plugin-syntax-flow@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
-  integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-syntax-import-assertions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
-  integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-syntax-import-assertions@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc"
-  integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==
+"@babel/plugin-syntax-flow@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz#875c25e3428d7896c87589765fc8b9d32f24bd8d"
+  integrity sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-syntax-import-attributes@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb"
-  integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==
+"@babel/plugin-syntax-import-assertions@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz#db3aad724153a00eaac115a3fb898de544e34971"
+  integrity sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-syntax-import-attributes@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06"
-  integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==
+"@babel/plugin-syntax-import-attributes@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093"
+  integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-syntax-import-meta@^7.10.4":
   version "7.10.4"
@@ -884,19 +581,12 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.8.0"
 
-"@babel/plugin-syntax-jsx@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
-  integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-syntax-jsx@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473"
-  integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==
+"@babel/plugin-syntax-jsx@^7.23.3", "@babel/plugin-syntax-jsx@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10"
+  integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
   version "7.10.4"
@@ -954,19 +644,12 @@
   dependencies:
     "@babel/helper-plugin-utils" "^7.14.5"
 
-"@babel/plugin-syntax-typescript@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272"
-  integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-syntax-typescript@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f"
-  integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==
+"@babel/plugin-syntax-typescript@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844"
+  integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
   version "7.18.6"
@@ -976,428 +659,220 @@
     "@babel/helper-create-regexp-features-plugin" "^7.18.6"
     "@babel/helper-plugin-utils" "^7.18.6"
 
-"@babel/plugin-transform-arrow-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
-  integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-arrow-functions@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b"
-  integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-async-generator-functions@^7.22.7":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b"
-  integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==
+"@babel/plugin-transform-arrow-functions@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz#2bf263617060c9cc45bcdbf492b8cc805082bf27"
+  integrity sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==
   dependencies:
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-remap-async-to-generator" "^7.22.5"
-    "@babel/plugin-syntax-async-generators" "^7.8.4"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-async-generator-functions@^7.23.7":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.7.tgz#3aa0b4f2fa3788b5226ef9346cf6d16ec61f99cd"
-  integrity sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==
+"@babel/plugin-transform-async-generator-functions@^7.24.3":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz#8fa7ae481b100768cc9842c8617808c5352b8b89"
+  integrity sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==
   dependencies:
     "@babel/helper-environment-visitor" "^7.22.20"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-remap-async-to-generator" "^7.22.20"
     "@babel/plugin-syntax-async-generators" "^7.8.4"
 
-"@babel/plugin-transform-async-to-generator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
-  integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
+"@babel/plugin-transform-async-to-generator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz#0e220703b89f2216800ce7b1c53cb0cf521c37f4"
+  integrity sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-remap-async-to-generator" "^7.22.5"
+    "@babel/helper-module-imports" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/helper-remap-async-to-generator" "^7.22.20"
 
-"@babel/plugin-transform-async-to-generator@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa"
-  integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==
+"@babel/plugin-transform-block-scoped-functions@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz#1c94799e20fcd5c4d4589523bbc57b7692979380"
+  integrity sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-remap-async-to-generator" "^7.22.20"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-block-scoped-functions@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
-  integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
+"@babel/plugin-transform-block-scoping@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.1.tgz#27af183d7f6dad890531256c7a45019df768ac1f"
+  integrity sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-block-scoped-functions@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77"
-  integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==
+"@babel/plugin-transform-class-properties@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz#bcbf1aef6ba6085cfddec9fc8d58871cf011fc29"
+  integrity sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-block-scoping@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b"
-  integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==
+"@babel/plugin-transform-class-static-block@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.1.tgz#4e37efcca1d9f2fcb908d1bae8b56b4b6e9e1cb6"
+  integrity sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/plugin-syntax-class-static-block" "^7.14.5"
 
-"@babel/plugin-transform-block-scoping@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5"
-  integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==
+"@babel/plugin-transform-classes@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz#5bc8fc160ed96378184bc10042af47f50884dcb1"
+  integrity sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-annotate-as-pure" "^7.22.5"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-environment-visitor" "^7.22.20"
+    "@babel/helper-function-name" "^7.23.0"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/helper-replace-supers" "^7.24.1"
+    "@babel/helper-split-export-declaration" "^7.22.6"
+    globals "^11.1.0"
 
-"@babel/plugin-transform-class-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77"
-  integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==
+"@babel/plugin-transform-computed-properties@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz#bc7e787f8e021eccfb677af5f13c29a9934ed8a7"
+  integrity sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/template" "^7.24.0"
 
-"@babel/plugin-transform-class-properties@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48"
-  integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==
+"@babel/plugin-transform-destructuring@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz#b1e8243af4a0206841973786292b8c8dd8447345"
+  integrity sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-class-static-block@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba"
-  integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-transform-class-static-block@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5"
-  integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-transform-classes@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363"
-  integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.6"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    globals "^11.1.0"
-
-"@babel/plugin-transform-classes@^7.23.5":
-  version "7.23.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz#e7a75f815e0c534cc4c9a39c56636c84fc0d64f2"
-  integrity sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.15"
-    "@babel/helper-environment-visitor" "^7.22.20"
-    "@babel/helper-function-name" "^7.23.0"
-    "@babel/helper-optimise-call-expression" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.20"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
-  integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/template" "^7.22.5"
-
-"@babel/plugin-transform-computed-properties@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474"
-  integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/template" "^7.22.15"
-
-"@babel/plugin-transform-destructuring@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc"
-  integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-destructuring@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311"
-  integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
-  integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-dotall-regex@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50"
-  integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==
+"@babel/plugin-transform-dotall-regex@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz#d56913d2f12795cc9930801b84c6f8c47513ac13"
+  integrity sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==
   dependencies:
     "@babel/helper-create-regexp-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-duplicate-keys@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
-  integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
+"@babel/plugin-transform-duplicate-keys@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz#5347a797fe82b8d09749d10e9f5b83665adbca88"
+  integrity sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-duplicate-keys@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce"
-  integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==
+"@babel/plugin-transform-dynamic-import@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz#2a5a49959201970dd09a5fca856cb651e44439dd"
+  integrity sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-dynamic-import@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e"
-  integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-dynamic-import" "^7.8.3"
 
-"@babel/plugin-transform-dynamic-import@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143"
-  integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
-"@babel/plugin-transform-exponentiation-operator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
-  integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
-  dependencies:
-    "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-exponentiation-operator@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18"
-  integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==
+"@babel/plugin-transform-exponentiation-operator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz#6650ebeb5bd5c012d5f5f90a26613a08162e8ba4"
+  integrity sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==
   dependencies:
     "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-export-namespace-from@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b"
-  integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-export-namespace-from@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191"
-  integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==
+"@babel/plugin-transform-export-namespace-from@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz#f033541fc036e3efb2dcb58eedafd4f6b8078acd"
+  integrity sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
 
 "@babel/plugin-transform-flow-strip-types@^7.16.0":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2"
-  integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz#fa8d0a146506ea195da1671d38eed459242b2dcc"
+  integrity sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-flow" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/plugin-syntax-flow" "^7.24.1"
 
-"@babel/plugin-transform-for-of@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
-  integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-for-of@^7.23.6":
-  version "7.23.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e"
-  integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==
+"@babel/plugin-transform-for-of@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz#67448446b67ab6c091360ce3717e7d3a59e202fd"
+  integrity sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
 
-"@babel/plugin-transform-function-name@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
-  integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
+"@babel/plugin-transform-function-name@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz#8cba6f7730626cc4dfe4ca2fa516215a0592b361"
+  integrity sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==
   dependencies:
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-function-name@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc"
-  integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==
-  dependencies:
-    "@babel/helper-compilation-targets" "^7.22.15"
+    "@babel/helper-compilation-targets" "^7.23.6"
     "@babel/helper-function-name" "^7.23.0"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-json-strings@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0"
-  integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==
+"@babel/plugin-transform-json-strings@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz#08e6369b62ab3e8a7b61089151b161180c8299f7"
+  integrity sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-json-strings" "^7.8.3"
 
-"@babel/plugin-transform-json-strings@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d"
-  integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==
+"@babel/plugin-transform-literals@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz#0a1982297af83e6b3c94972686067df588c5c096"
+  integrity sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-json-strings" "^7.8.3"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
-  integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
+"@babel/plugin-transform-logical-assignment-operators@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz#719d8aded1aa94b8fb34e3a785ae8518e24cfa40"
+  integrity sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-literals@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4"
-  integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-logical-assignment-operators@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c"
-  integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-transform-logical-assignment-operators@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5"
-  integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
 
-"@babel/plugin-transform-member-expression-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
-  integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-member-expression-literals@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc"
-  integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-modules-amd@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
-  integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
+"@babel/plugin-transform-member-expression-literals@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz#896d23601c92f437af8b01371ad34beb75df4489"
+  integrity sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==
   dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-modules-amd@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d"
-  integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==
+"@babel/plugin-transform-modules-amd@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz#b6d829ed15258536977e9c7cc6437814871ffa39"
+  integrity sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==
   dependencies:
     "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-modules-commonjs@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa"
-  integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==
-  dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-simple-access" "^7.22.5"
-
-"@babel/plugin-transform-modules-commonjs@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4"
-  integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==
+"@babel/plugin-transform-modules-commonjs@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9"
+  integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==
   dependencies:
     "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-simple-access" "^7.22.5"
 
-"@babel/plugin-transform-modules-systemjs@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
-  integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==
-  dependencies:
-    "@babel/helper-hoist-variables" "^7.22.5"
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
-
-"@babel/plugin-transform-modules-systemjs@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz#fa7e62248931cb15b9404f8052581c302dd9de81"
-  integrity sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==
+"@babel/plugin-transform-modules-systemjs@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz#2b9625a3d4e445babac9788daec39094e6b11e3e"
+  integrity sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==
   dependencies:
     "@babel/helper-hoist-variables" "^7.22.5"
     "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-validator-identifier" "^7.22.20"
 
-"@babel/plugin-transform-modules-umd@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
-  integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
-  dependencies:
-    "@babel/helper-module-transforms" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-modules-umd@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9"
-  integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==
+"@babel/plugin-transform-modules-umd@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz#69220c66653a19cf2c0872b9c762b9a48b8bebef"
+  integrity sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==
   dependencies:
     "@babel/helper-module-transforms" "^7.23.3"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
   version "7.22.5"
@@ -1407,215 +882,109 @@
     "@babel/helper-create-regexp-features-plugin" "^7.22.5"
     "@babel/helper-plugin-utils" "^7.22.5"
 
-"@babel/plugin-transform-new-target@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
-  integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
+"@babel/plugin-transform-new-target@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz#29c59988fa3d0157de1c871a28cd83096363cc34"
+  integrity sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-new-target@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980"
-  integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==
+"@babel/plugin-transform-nullish-coalescing-operator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz#0cd494bb97cb07d428bd651632cb9d4140513988"
+  integrity sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
-  integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
 
-"@babel/plugin-transform-nullish-coalescing-operator@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e"
-  integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-
-"@babel/plugin-transform-numeric-separator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58"
-  integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-transform-numeric-separator@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29"
-  integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==
+"@babel/plugin-transform-numeric-separator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz#5bc019ce5b3435c1cadf37215e55e433d674d4e8"
+  integrity sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-numeric-separator" "^7.10.4"
 
-"@babel/plugin-transform-object-rest-spread@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1"
-  integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==
-  dependencies:
-    "@babel/compat-data" "^7.22.5"
-    "@babel/helper-compilation-targets" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
-    "@babel/plugin-transform-parameters" "^7.22.5"
-
-"@babel/plugin-transform-object-rest-spread@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83"
-  integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==
+"@babel/plugin-transform-object-rest-spread@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz#5a3ce73caf0e7871a02e1c31e8b473093af241ff"
+  integrity sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==
   dependencies:
-    "@babel/compat-data" "^7.23.3"
-    "@babel/helper-compilation-targets" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-compilation-targets" "^7.23.6"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
-    "@babel/plugin-transform-parameters" "^7.23.3"
+    "@babel/plugin-transform-parameters" "^7.24.1"
 
-"@babel/plugin-transform-object-super@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
-  integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
+"@babel/plugin-transform-object-super@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz#e71d6ab13483cca89ed95a474f542bbfc20a0520"
+  integrity sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/helper-replace-supers" "^7.24.1"
 
-"@babel/plugin-transform-object-super@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd"
-  integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==
+"@babel/plugin-transform-optional-catch-binding@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz#92a3d0efe847ba722f1a4508669b23134669e2da"
+  integrity sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-replace-supers" "^7.22.20"
-
-"@babel/plugin-transform-optional-catch-binding@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333"
-  integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
 
-"@babel/plugin-transform-optional-catch-binding@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017"
-  integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==
+"@babel/plugin-transform-optional-chaining@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz#26e588acbedce1ab3519ac40cc748e380c5291e6"
+  integrity sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-
-"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564"
-  integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-
-"@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017"
-  integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
     "@babel/plugin-syntax-optional-chaining" "^7.8.3"
 
-"@babel/plugin-transform-parameters@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
-  integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-parameters@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af"
-  integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-private-methods@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722"
-  integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==
-  dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-private-methods@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4"
-  integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==
+"@babel/plugin-transform-parameters@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz#983c15d114da190506c75b616ceb0f817afcc510"
+  integrity sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==
   dependencies:
-    "@babel/helper-create-class-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-private-property-in-object@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32"
-  integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==
+"@babel/plugin-transform-private-methods@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz#a0faa1ae87eff077e1e47a5ec81c3aef383dc15a"
+  integrity sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==
   dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-private-property-in-object@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5"
-  integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==
+"@babel/plugin-transform-private-property-in-object@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz#756443d400274f8fb7896742962cc1b9f25c1f6a"
+  integrity sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-create-class-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
 
-"@babel/plugin-transform-property-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
-  integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
+"@babel/plugin-transform-property-literals@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz#d6a9aeab96f03749f4eebeb0b6ea8e90ec958825"
+  integrity sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-property-literals@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875"
-  integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-react-constant-elements@^7.18.12":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.22.5.tgz#6dfa7c1c37f7d7279e417ceddf5a04abb8bb9c29"
-  integrity sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-transform-react-constant-elements@^7.21.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz#5efc001d07ef0f7da0d73c3a86c132f73d28e43c"
-  integrity sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b"
-  integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.1.tgz#d493a0918b9fdad7540f5afd9b5eb5c52500d18d"
+  integrity sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-react-display-name@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz#70529f034dd1e561045ad3c8152a267f0d7b6200"
-  integrity sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==
+"@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz#554e3e1a25d181f040cf698b93fd289a03bfdcdb"
+  integrity sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
 "@babel/plugin-transform-react-jsx-development@^7.22.5":
   version "7.22.5"
@@ -1624,7 +993,7 @@
   dependencies:
     "@babel/plugin-transform-react-jsx" "^7.22.5"
 
-"@babel/plugin-transform-react-jsx@^7.22.15":
+"@babel/plugin-transform-react-jsx@^7.22.5", "@babel/plugin-transform-react-jsx@^7.23.4":
   version "7.23.4"
   resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz#393f99185110cea87184ea47bcb4a7b0c2e39312"
   integrity sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==
@@ -1635,347 +1004,138 @@
     "@babel/plugin-syntax-jsx" "^7.23.3"
     "@babel/types" "^7.23.4"
 
-"@babel/plugin-transform-react-jsx@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz#932c291eb6dd1153359e2a90cb5e557dcf068416"
-  integrity sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==
+"@babel/plugin-transform-react-pure-annotations@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz#c86bce22a53956331210d268e49a0ff06e392470"
+  integrity sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==
   dependencies:
     "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-module-imports" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-jsx" "^7.22.5"
-    "@babel/types" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-react-pure-annotations@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0"
-  integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==
+"@babel/plugin-transform-regenerator@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz#625b7545bae52363bdc1fbbdc7252b5046409c8c"
+  integrity sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==
   dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-react-pure-annotations@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz#fabedbdb8ee40edf5da96f3ecfc6958e3783b93c"
-  integrity sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-regenerator@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa"
-  integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    regenerator-transform "^0.15.1"
-
-"@babel/plugin-transform-regenerator@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c"
-  integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     regenerator-transform "^0.15.2"
 
-"@babel/plugin-transform-reserved-words@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
-  integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-reserved-words@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8"
-  integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-runtime@^7.16.4":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.7.tgz#eb9094b5fb756cc2d98d398b2c88aeefa9205de9"
-  integrity sha512-o02xM7iY7mSPI+TvaYDH0aYl+lg3+KT7qrD705JlsB/GrZSNaYO/4i+aDFKPiJ7ubq3hgv8NNLCdyB5MFxT8mg==
+"@babel/plugin-transform-reserved-words@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz#8de729f5ecbaaf5cf83b67de13bad38a21be57c1"
+  integrity sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-    babel-plugin-polyfill-corejs2 "^0.4.4"
-    babel-plugin-polyfill-corejs3 "^0.8.2"
-    babel-plugin-polyfill-regenerator "^0.5.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-runtime@^7.22.9":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.7.tgz#52bbd20054855beb9deae3bee9ceb05289c343e6"
-  integrity sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==
+"@babel/plugin-transform-runtime@^7.16.4", "@babel/plugin-transform-runtime@^7.22.9":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz#dc58ad4a31810a890550365cc922e1ff5acb5d7f"
+  integrity sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==
   dependencies:
-    "@babel/helper-module-imports" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    babel-plugin-polyfill-corejs2 "^0.4.7"
-    babel-plugin-polyfill-corejs3 "^0.8.7"
-    babel-plugin-polyfill-regenerator "^0.5.4"
+    "@babel/helper-module-imports" "^7.24.3"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    babel-plugin-polyfill-corejs2 "^0.4.10"
+    babel-plugin-polyfill-corejs3 "^0.10.1"
+    babel-plugin-polyfill-regenerator "^0.6.1"
     semver "^6.3.1"
 
-"@babel/plugin-transform-shorthand-properties@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
-  integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
+"@babel/plugin-transform-shorthand-properties@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz#ba9a09144cf55d35ec6b93a32253becad8ee5b55"
+  integrity sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-shorthand-properties@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210"
-  integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-spread@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
-  integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
-
-"@babel/plugin-transform-spread@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c"
-  integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==
+"@babel/plugin-transform-spread@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz#a1acf9152cbf690e4da0ba10790b3ac7d2b2b391"
+  integrity sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
 
-"@babel/plugin-transform-sticky-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
-  integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-sticky-regex@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04"
-  integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-template-literals@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
-  integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-template-literals@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07"
-  integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-typeof-symbol@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
-  integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-typeof-symbol@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4"
-  integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-typescript@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d"
-  integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-create-class-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-typescript" "^7.22.5"
-
-"@babel/plugin-transform-typescript@^7.23.3":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.4.tgz#da12914d17b3c4b307f32c5fd91fbfdf17d56f86"
-  integrity sha512-39hCCOl+YUAyMOu6B9SmUTiHUU0t/CxJNUmY3qRdJujbqi+lrQcL11ysYUsAvFWPBdhihrv1z0oRG84Yr3dODQ==
-  dependencies:
-    "@babel/helper-annotate-as-pure" "^7.22.5"
-    "@babel/helper-create-class-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/plugin-syntax-typescript" "^7.23.3"
-
-"@babel/plugin-transform-unicode-escapes@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c"
-  integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-escapes@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925"
-  integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-property-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81"
-  integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-property-regex@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad"
-  integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
-  integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
+"@babel/plugin-transform-sticky-regex@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz#f03e672912c6e203ed8d6e0271d9c2113dc031b9"
+  integrity sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/plugin-transform-unicode-regex@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc"
-  integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==
+"@babel/plugin-transform-template-literals@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz#15e2166873a30d8617e3e2ccadb86643d327aab7"
+  integrity sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==
   dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-sets-regex@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91"
-  integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.5"
-    "@babel/helper-plugin-utils" "^7.22.5"
-
-"@babel/plugin-transform-unicode-sets-regex@^7.23.3":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e"
-  integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==
-  dependencies:
-    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/preset-env@^7.16.4", "@babel/preset-env@^7.19.4", "@babel/preset-env@^7.20.2":
-  version "7.22.7"
-  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.7.tgz#a1ef34b64a80653c22ce4d9c25603cfa76fc168a"
-  integrity sha512-1whfDtW+CzhETuzYXfcgZAh8/GFMeEbz0V5dVgya8YeJyCU6Y/P2Gnx4Qb3MylK68Zu9UiwUvbPMPTpFAOJ+sQ==
+"@babel/plugin-transform-typeof-symbol@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz#6831f78647080dec044f7e9f68003d99424f94c7"
+  integrity sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==
   dependencies:
-    "@babel/compat-data" "^7.22.6"
-    "@babel/helper-compilation-targets" "^7.22.6"
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.5"
-    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
-    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5"
-    "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
-    "@babel/plugin-syntax-async-generators" "^7.8.4"
-    "@babel/plugin-syntax-class-properties" "^7.12.13"
-    "@babel/plugin-syntax-class-static-block" "^7.14.5"
-    "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-    "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-    "@babel/plugin-syntax-import-assertions" "^7.22.5"
-    "@babel/plugin-syntax-import-attributes" "^7.22.5"
-    "@babel/plugin-syntax-import-meta" "^7.10.4"
-    "@babel/plugin-syntax-json-strings" "^7.8.3"
-    "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-    "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-    "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-    "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
-    "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-    "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-    "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-    "@babel/plugin-syntax-top-level-await" "^7.14.5"
-    "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
-    "@babel/plugin-transform-arrow-functions" "^7.22.5"
-    "@babel/plugin-transform-async-generator-functions" "^7.22.7"
-    "@babel/plugin-transform-async-to-generator" "^7.22.5"
-    "@babel/plugin-transform-block-scoped-functions" "^7.22.5"
-    "@babel/plugin-transform-block-scoping" "^7.22.5"
-    "@babel/plugin-transform-class-properties" "^7.22.5"
-    "@babel/plugin-transform-class-static-block" "^7.22.5"
-    "@babel/plugin-transform-classes" "^7.22.6"
-    "@babel/plugin-transform-computed-properties" "^7.22.5"
-    "@babel/plugin-transform-destructuring" "^7.22.5"
-    "@babel/plugin-transform-dotall-regex" "^7.22.5"
-    "@babel/plugin-transform-duplicate-keys" "^7.22.5"
-    "@babel/plugin-transform-dynamic-import" "^7.22.5"
-    "@babel/plugin-transform-exponentiation-operator" "^7.22.5"
-    "@babel/plugin-transform-export-namespace-from" "^7.22.5"
-    "@babel/plugin-transform-for-of" "^7.22.5"
-    "@babel/plugin-transform-function-name" "^7.22.5"
-    "@babel/plugin-transform-json-strings" "^7.22.5"
-    "@babel/plugin-transform-literals" "^7.22.5"
-    "@babel/plugin-transform-logical-assignment-operators" "^7.22.5"
-    "@babel/plugin-transform-member-expression-literals" "^7.22.5"
-    "@babel/plugin-transform-modules-amd" "^7.22.5"
-    "@babel/plugin-transform-modules-commonjs" "^7.22.5"
-    "@babel/plugin-transform-modules-systemjs" "^7.22.5"
-    "@babel/plugin-transform-modules-umd" "^7.22.5"
-    "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
-    "@babel/plugin-transform-new-target" "^7.22.5"
-    "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5"
-    "@babel/plugin-transform-numeric-separator" "^7.22.5"
-    "@babel/plugin-transform-object-rest-spread" "^7.22.5"
-    "@babel/plugin-transform-object-super" "^7.22.5"
-    "@babel/plugin-transform-optional-catch-binding" "^7.22.5"
-    "@babel/plugin-transform-optional-chaining" "^7.22.6"
-    "@babel/plugin-transform-parameters" "^7.22.5"
-    "@babel/plugin-transform-private-methods" "^7.22.5"
-    "@babel/plugin-transform-private-property-in-object" "^7.22.5"
-    "@babel/plugin-transform-property-literals" "^7.22.5"
-    "@babel/plugin-transform-regenerator" "^7.22.5"
-    "@babel/plugin-transform-reserved-words" "^7.22.5"
-    "@babel/plugin-transform-shorthand-properties" "^7.22.5"
-    "@babel/plugin-transform-spread" "^7.22.5"
-    "@babel/plugin-transform-sticky-regex" "^7.22.5"
-    "@babel/plugin-transform-template-literals" "^7.22.5"
-    "@babel/plugin-transform-typeof-symbol" "^7.22.5"
-    "@babel/plugin-transform-unicode-escapes" "^7.22.5"
-    "@babel/plugin-transform-unicode-property-regex" "^7.22.5"
-    "@babel/plugin-transform-unicode-regex" "^7.22.5"
-    "@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
-    "@babel/preset-modules" "^0.1.5"
-    "@babel/types" "^7.22.5"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-    babel-plugin-polyfill-corejs2 "^0.4.4"
-    babel-plugin-polyfill-corejs3 "^0.8.2"
-    babel-plugin-polyfill-regenerator "^0.5.1"
-    core-js-compat "^3.31.0"
+    "@babel/helper-plugin-utils" "^7.24.0"
 
-"@babel/preset-env@^7.22.9":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.7.tgz#e5d69b9f14db8a13bae4d8e5ce7f360973626241"
-  integrity sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==
+"@babel/plugin-transform-typescript@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.1.tgz#5c05e28bb76c7dfe7d6c5bed9951324fd2d3ab07"
+  integrity sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==
   dependencies:
-    "@babel/compat-data" "^7.23.5"
+    "@babel/helper-annotate-as-pure" "^7.22.5"
+    "@babel/helper-create-class-features-plugin" "^7.24.1"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/plugin-syntax-typescript" "^7.24.1"
+
+"@babel/plugin-transform-unicode-escapes@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz#fb3fa16676549ac7c7449db9b342614985c2a3a4"
+  integrity sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==
+  dependencies:
+    "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/plugin-transform-unicode-property-regex@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz#56704fd4d99da81e5e9f0c0c93cabd91dbc4889e"
+  integrity sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
+    "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/plugin-transform-unicode-regex@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz#57c3c191d68f998ac46b708380c1ce4d13536385"
+  integrity sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
+    "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/plugin-transform-unicode-sets-regex@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz#c1ea175b02afcffc9cf57a9c4658326625165b7f"
+  integrity sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==
+  dependencies:
+    "@babel/helper-create-regexp-features-plugin" "^7.22.15"
+    "@babel/helper-plugin-utils" "^7.24.0"
+
+"@babel/preset-env@^7.16.4", "@babel/preset-env@^7.20.2", "@babel/preset-env@^7.22.9":
+  version "7.24.3"
+  resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.3.tgz#f3f138c844ffeeac372597b29c51b5259e8323a3"
+  integrity sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==
+  dependencies:
+    "@babel/compat-data" "^7.24.1"
     "@babel/helper-compilation-targets" "^7.23.6"
-    "@babel/helper-plugin-utils" "^7.22.5"
+    "@babel/helper-plugin-utils" "^7.24.0"
     "@babel/helper-validator-option" "^7.23.5"
-    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3"
-    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3"
-    "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7"
+    "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.1"
+    "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.1"
+    "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.1"
     "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
     "@babel/plugin-syntax-async-generators" "^7.8.4"
     "@babel/plugin-syntax-class-properties" "^7.12.13"
     "@babel/plugin-syntax-class-static-block" "^7.14.5"
     "@babel/plugin-syntax-dynamic-import" "^7.8.3"
     "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-    "@babel/plugin-syntax-import-assertions" "^7.23.3"
-    "@babel/plugin-syntax-import-attributes" "^7.23.3"
+    "@babel/plugin-syntax-import-assertions" "^7.24.1"
+    "@babel/plugin-syntax-import-attributes" "^7.24.1"
     "@babel/plugin-syntax-import-meta" "^7.10.4"
     "@babel/plugin-syntax-json-strings" "^7.8.3"
     "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
@@ -1987,58 +1147,58 @@
     "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
     "@babel/plugin-syntax-top-level-await" "^7.14.5"
     "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
-    "@babel/plugin-transform-arrow-functions" "^7.23.3"
-    "@babel/plugin-transform-async-generator-functions" "^7.23.7"
-    "@babel/plugin-transform-async-to-generator" "^7.23.3"
-    "@babel/plugin-transform-block-scoped-functions" "^7.23.3"
-    "@babel/plugin-transform-block-scoping" "^7.23.4"
-    "@babel/plugin-transform-class-properties" "^7.23.3"
-    "@babel/plugin-transform-class-static-block" "^7.23.4"
-    "@babel/plugin-transform-classes" "^7.23.5"
-    "@babel/plugin-transform-computed-properties" "^7.23.3"
-    "@babel/plugin-transform-destructuring" "^7.23.3"
-    "@babel/plugin-transform-dotall-regex" "^7.23.3"
-    "@babel/plugin-transform-duplicate-keys" "^7.23.3"
-    "@babel/plugin-transform-dynamic-import" "^7.23.4"
-    "@babel/plugin-transform-exponentiation-operator" "^7.23.3"
-    "@babel/plugin-transform-export-namespace-from" "^7.23.4"
-    "@babel/plugin-transform-for-of" "^7.23.6"
-    "@babel/plugin-transform-function-name" "^7.23.3"
-    "@babel/plugin-transform-json-strings" "^7.23.4"
-    "@babel/plugin-transform-literals" "^7.23.3"
-    "@babel/plugin-transform-logical-assignment-operators" "^7.23.4"
-    "@babel/plugin-transform-member-expression-literals" "^7.23.3"
-    "@babel/plugin-transform-modules-amd" "^7.23.3"
-    "@babel/plugin-transform-modules-commonjs" "^7.23.3"
-    "@babel/plugin-transform-modules-systemjs" "^7.23.3"
-    "@babel/plugin-transform-modules-umd" "^7.23.3"
+    "@babel/plugin-transform-arrow-functions" "^7.24.1"
+    "@babel/plugin-transform-async-generator-functions" "^7.24.3"
+    "@babel/plugin-transform-async-to-generator" "^7.24.1"
+    "@babel/plugin-transform-block-scoped-functions" "^7.24.1"
+    "@babel/plugin-transform-block-scoping" "^7.24.1"
+    "@babel/plugin-transform-class-properties" "^7.24.1"
+    "@babel/plugin-transform-class-static-block" "^7.24.1"
+    "@babel/plugin-transform-classes" "^7.24.1"
+    "@babel/plugin-transform-computed-properties" "^7.24.1"
+    "@babel/plugin-transform-destructuring" "^7.24.1"
+    "@babel/plugin-transform-dotall-regex" "^7.24.1"
+    "@babel/plugin-transform-duplicate-keys" "^7.24.1"
+    "@babel/plugin-transform-dynamic-import" "^7.24.1"
+    "@babel/plugin-transform-exponentiation-operator" "^7.24.1"
+    "@babel/plugin-transform-export-namespace-from" "^7.24.1"
+    "@babel/plugin-transform-for-of" "^7.24.1"
+    "@babel/plugin-transform-function-name" "^7.24.1"
+    "@babel/plugin-transform-json-strings" "^7.24.1"
+    "@babel/plugin-transform-literals" "^7.24.1"
+    "@babel/plugin-transform-logical-assignment-operators" "^7.24.1"
+    "@babel/plugin-transform-member-expression-literals" "^7.24.1"
+    "@babel/plugin-transform-modules-amd" "^7.24.1"
+    "@babel/plugin-transform-modules-commonjs" "^7.24.1"
+    "@babel/plugin-transform-modules-systemjs" "^7.24.1"
+    "@babel/plugin-transform-modules-umd" "^7.24.1"
     "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
-    "@babel/plugin-transform-new-target" "^7.23.3"
-    "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4"
-    "@babel/plugin-transform-numeric-separator" "^7.23.4"
-    "@babel/plugin-transform-object-rest-spread" "^7.23.4"
-    "@babel/plugin-transform-object-super" "^7.23.3"
-    "@babel/plugin-transform-optional-catch-binding" "^7.23.4"
-    "@babel/plugin-transform-optional-chaining" "^7.23.4"
-    "@babel/plugin-transform-parameters" "^7.23.3"
-    "@babel/plugin-transform-private-methods" "^7.23.3"
-    "@babel/plugin-transform-private-property-in-object" "^7.23.4"
-    "@babel/plugin-transform-property-literals" "^7.23.3"
-    "@babel/plugin-transform-regenerator" "^7.23.3"
-    "@babel/plugin-transform-reserved-words" "^7.23.3"
-    "@babel/plugin-transform-shorthand-properties" "^7.23.3"
-    "@babel/plugin-transform-spread" "^7.23.3"
-    "@babel/plugin-transform-sticky-regex" "^7.23.3"
-    "@babel/plugin-transform-template-literals" "^7.23.3"
-    "@babel/plugin-transform-typeof-symbol" "^7.23.3"
-    "@babel/plugin-transform-unicode-escapes" "^7.23.3"
-    "@babel/plugin-transform-unicode-property-regex" "^7.23.3"
-    "@babel/plugin-transform-unicode-regex" "^7.23.3"
-    "@babel/plugin-transform-unicode-sets-regex" "^7.23.3"
+    "@babel/plugin-transform-new-target" "^7.24.1"
+    "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1"
+    "@babel/plugin-transform-numeric-separator" "^7.24.1"
+    "@babel/plugin-transform-object-rest-spread" "^7.24.1"
+    "@babel/plugin-transform-object-super" "^7.24.1"
+    "@babel/plugin-transform-optional-catch-binding" "^7.24.1"
+    "@babel/plugin-transform-optional-chaining" "^7.24.1"
+    "@babel/plugin-transform-parameters" "^7.24.1"
+    "@babel/plugin-transform-private-methods" "^7.24.1"
+    "@babel/plugin-transform-private-property-in-object" "^7.24.1"
+    "@babel/plugin-transform-property-literals" "^7.24.1"
+    "@babel/plugin-transform-regenerator" "^7.24.1"
+    "@babel/plugin-transform-reserved-words" "^7.24.1"
+    "@babel/plugin-transform-shorthand-properties" "^7.24.1"
+    "@babel/plugin-transform-spread" "^7.24.1"
+    "@babel/plugin-transform-sticky-regex" "^7.24.1"
+    "@babel/plugin-transform-template-literals" "^7.24.1"
+    "@babel/plugin-transform-typeof-symbol" "^7.24.1"
+    "@babel/plugin-transform-unicode-escapes" "^7.24.1"
+    "@babel/plugin-transform-unicode-property-regex" "^7.24.1"
+    "@babel/plugin-transform-unicode-regex" "^7.24.1"
+    "@babel/plugin-transform-unicode-sets-regex" "^7.24.1"
     "@babel/preset-modules" "0.1.6-no-external-plugins"
-    babel-plugin-polyfill-corejs2 "^0.4.7"
-    babel-plugin-polyfill-corejs3 "^0.8.7"
-    babel-plugin-polyfill-regenerator "^0.5.4"
+    babel-plugin-polyfill-corejs2 "^0.4.10"
+    babel-plugin-polyfill-corejs3 "^0.10.4"
+    babel-plugin-polyfill-regenerator "^0.6.1"
     core-js-compat "^3.31.0"
     semver "^6.3.1"
 
@@ -2051,62 +1211,28 @@
     "@babel/types" "^7.4.4"
     esutils "^2.0.2"
 
-"@babel/preset-modules@^0.1.5":
-  version "0.1.5"
-  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
-  integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
+"@babel/preset-react@^7.16.0", "@babel/preset-react@^7.18.6", "@babel/preset-react@^7.22.5":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.24.1.tgz#2450c2ac5cc498ef6101a6ca5474de251e33aa95"
+  integrity sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.0.0"
-    "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
-    "@babel/plugin-transform-dotall-regex" "^7.4.4"
-    "@babel/types" "^7.4.4"
-    esutils "^2.0.2"
-
-"@babel/preset-react@^7.16.0", "@babel/preset-react@^7.18.6":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6"
-  integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.5"
-    "@babel/plugin-transform-react-display-name" "^7.22.5"
-    "@babel/plugin-transform-react-jsx" "^7.22.5"
-    "@babel/plugin-transform-react-jsx-development" "^7.22.5"
-    "@babel/plugin-transform-react-pure-annotations" "^7.22.5"
-
-"@babel/preset-react@^7.22.5":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.23.3.tgz#f73ca07e7590f977db07eb54dbe46538cc015709"
-  integrity sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.15"
-    "@babel/plugin-transform-react-display-name" "^7.23.3"
-    "@babel/plugin-transform-react-jsx" "^7.22.15"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/helper-validator-option" "^7.23.5"
+    "@babel/plugin-transform-react-display-name" "^7.24.1"
+    "@babel/plugin-transform-react-jsx" "^7.23.4"
     "@babel/plugin-transform-react-jsx-development" "^7.22.5"
-    "@babel/plugin-transform-react-pure-annotations" "^7.23.3"
-
-"@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.18.6":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8"
-  integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==
-  dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.5"
-    "@babel/plugin-syntax-jsx" "^7.22.5"
-    "@babel/plugin-transform-modules-commonjs" "^7.22.5"
-    "@babel/plugin-transform-typescript" "^7.22.5"
+    "@babel/plugin-transform-react-pure-annotations" "^7.24.1"
 
-"@babel/preset-typescript@^7.21.0", "@babel/preset-typescript@^7.22.5":
-  version "7.23.3"
-  resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913"
-  integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==
+"@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.21.0", "@babel/preset-typescript@^7.22.5":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec"
+  integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==
   dependencies:
-    "@babel/helper-plugin-utils" "^7.22.5"
-    "@babel/helper-validator-option" "^7.22.15"
-    "@babel/plugin-syntax-jsx" "^7.23.3"
-    "@babel/plugin-transform-modules-commonjs" "^7.23.3"
-    "@babel/plugin-transform-typescript" "^7.23.3"
+    "@babel/helper-plugin-utils" "^7.24.0"
+    "@babel/helper-validator-option" "^7.23.5"
+    "@babel/plugin-syntax-jsx" "^7.24.1"
+    "@babel/plugin-transform-modules-commonjs" "^7.24.1"
+    "@babel/plugin-transform-typescript" "^7.24.1"
 
 "@babel/regjsgen@^0.8.0":
   version "0.8.0"
@@ -2114,115 +1240,49 @@
   integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
 
 "@babel/runtime-corejs3@^7.22.6":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.23.7.tgz#2c3d323d21569f2950c9126780bfa400632360bd"
-  integrity sha512-ER55qzLREVA5YxeyQ3Qu48tgsF2ZrFjFjUS6V6wF0cikSw+goBJgB9PBRM1T6+Ah4iiM+sxmfS/Sy/jdzFfhiQ==
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.24.1.tgz#f39707b213441dec645ce8285ae14f281a5077c6"
+  integrity sha512-T9ko/35G+Bkl+win48GduaPlhSlOjjE5s1TeiEcD+QpxlLQnoEfb/nO/T+TQqkm+ipFwORn+rB8w14iJ/uD0bg==
   dependencies:
     core-js-pure "^3.30.2"
     regenerator-runtime "^0.14.0"
 
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.8.4":
-  version "7.22.6"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
-  integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
-  dependencies:
-    regenerator-runtime "^0.13.11"
-
-"@babel/runtime@^7.22.6":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.7.tgz#dd7c88deeb218a0f8bd34d5db1aa242e0f203193"
-  integrity sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.22.6", "@babel/runtime@^7.23.2", "@babel/runtime@^7.8.4":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.1.tgz#431f9a794d173b53720e69a6464abc6f0e2a5c57"
+  integrity sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==
   dependencies:
     regenerator-runtime "^0.14.0"
 
-"@babel/template@^7.22.15":
-  version "7.22.15"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
-  integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
-  dependencies:
-    "@babel/code-frame" "^7.22.13"
-    "@babel/parser" "^7.22.15"
-    "@babel/types" "^7.22.15"
-
-"@babel/template@^7.22.5":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
-  integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
-  dependencies:
-    "@babel/code-frame" "^7.22.5"
-    "@babel/parser" "^7.22.5"
-    "@babel/types" "^7.22.5"
-
-"@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
-  version "7.22.8"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e"
-  integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==
-  dependencies:
-    "@babel/code-frame" "^7.22.5"
-    "@babel/generator" "^7.22.7"
-    "@babel/helper-environment-visitor" "^7.22.5"
-    "@babel/helper-function-name" "^7.22.5"
-    "@babel/helper-hoist-variables" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    "@babel/parser" "^7.22.7"
-    "@babel/types" "^7.22.5"
-    debug "^4.1.0"
-    globals "^11.1.0"
-
-"@babel/traverse@^7.23.3", "@babel/traverse@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.4.tgz#c2790f7edf106d059a0098770fe70801417f3f85"
-  integrity sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==
+"@babel/template@^7.22.15", "@babel/template@^7.24.0":
+  version "7.24.0"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50"
+  integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==
   dependencies:
-    "@babel/code-frame" "^7.23.4"
-    "@babel/generator" "^7.23.4"
-    "@babel/helper-environment-visitor" "^7.22.20"
-    "@babel/helper-function-name" "^7.23.0"
-    "@babel/helper-hoist-variables" "^7.22.5"
-    "@babel/helper-split-export-declaration" "^7.22.6"
-    "@babel/parser" "^7.23.4"
-    "@babel/types" "^7.23.4"
-    debug "^4.1.0"
-    globals "^11.1.0"
+    "@babel/code-frame" "^7.23.5"
+    "@babel/parser" "^7.24.0"
+    "@babel/types" "^7.24.0"
 
-"@babel/traverse@^7.23.7":
-  version "7.23.7"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.7.tgz#9a7bf285c928cb99b5ead19c3b1ce5b310c9c305"
-  integrity sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==
+"@babel/traverse@^7.22.8", "@babel/traverse@^7.24.1":
+  version "7.24.1"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c"
+  integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==
   dependencies:
-    "@babel/code-frame" "^7.23.5"
-    "@babel/generator" "^7.23.6"
+    "@babel/code-frame" "^7.24.1"
+    "@babel/generator" "^7.24.1"
     "@babel/helper-environment-visitor" "^7.22.20"
     "@babel/helper-function-name" "^7.23.0"
     "@babel/helper-hoist-variables" "^7.22.5"
     "@babel/helper-split-export-declaration" "^7.22.6"
-    "@babel/parser" "^7.23.6"
-    "@babel/types" "^7.23.6"
+    "@babel/parser" "^7.24.1"
+    "@babel/types" "^7.24.0"
     debug "^4.3.1"
     globals "^11.1.0"
 
-"@babel/types@^7.20.0", "@babel/types@^7.22.5", "@babel/types@^7.4.4":
-  version "7.22.5"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"
-  integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==
-  dependencies:
-    "@babel/helper-string-parser" "^7.22.5"
-    "@babel/helper-validator-identifier" "^7.22.5"
-    to-fast-properties "^2.0.0"
-
-"@babel/types@^7.21.3", "@babel/types@^7.22.15", "@babel/types@^7.23.0", "@babel/types@^7.23.3", "@babel/types@^7.23.4":
-  version "7.23.4"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.4.tgz#7206a1810fc512a7f7f7d4dace4cb4c1c9dbfb8e"
-  integrity sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==
-  dependencies:
-    "@babel/helper-string-parser" "^7.23.4"
-    "@babel/helper-validator-identifier" "^7.22.20"
-    to-fast-properties "^2.0.0"
-
-"@babel/types@^7.22.19", "@babel/types@^7.23.6":
-  version "7.23.6"
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd"
-  integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==
+"@babel/types@^7.21.3", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.4", "@babel/types@^7.24.0", "@babel/types@^7.4.4":
+  version "7.24.0"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf"
+  integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==
   dependencies:
     "@babel/helper-string-parser" "^7.23.4"
     "@babel/helper-validator-identifier" "^7.22.20"
@@ -2238,293 +1298,334 @@
   resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
   integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
 
-"@csstools/cascade-layer-name-parser@^1.0.5":
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.5.tgz#c4d276e32787651df0007af22c9fa70d9c9ca3c2"
-  integrity sha512-v/5ODKNBMfBl0us/WQjlfsvSlYxfZLhNMVIsuCPib2ulTwGKYbKJbwqw671+qH9Y4wvWVnu7LBChvml/wBKjFg==
+"@csstools/cascade-layer-name-parser@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.1.tgz#0369d481ca95bdc9278bc517a68922810b14e8df"
+  integrity sha512-G9ZYN5+yr/E6xYSiy1BwOEFP5p88ZtWo8sL4NztKBkRRAwRkzVGa70M+D+fYHugMID5jkLeNt5X9jYd5EaVuyg==
 
-"@csstools/color-helpers@^3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-3.0.2.tgz#6571d289af8bfcc3a8d75357b35e6d17a8ba6848"
-  integrity sha512-NMVs/l7Y9eIKL5XjbCHEgGcG8LOUT2qVcRjX6EzkCdlvftHVKr2tHIPzHavfrULRZ5Q2gxrJ9f44dAlj6fX97Q==
+"@csstools/color-helpers@^5.0.1":
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-5.0.1.tgz#829f1c76f5800b79c51c709e2f36821b728e0e10"
+  integrity sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==
 
-"@csstools/css-calc@^1.1.4":
-  version "1.1.4"
-  resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.4.tgz#70bf4c5b379cdc256d3936bf4a21e3a3454a3d68"
-  integrity sha512-ZV1TSmToiNcQL1P3hfzlzZzA02mmVkVmXGaUDUqpYUG84PmLhVSZpKX+KfxAuOcK7de04UXSQPBrAvaya6iiGg==
+"@csstools/css-calc@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-2.0.1.tgz#1675297b19f0933c729fdd7f4f5279b855ae724f"
+  integrity sha512-e59V+sNp6e5m+9WnTUydA1DQO70WuKUdseflRpWmXxocF/h5wWGIxUjxfvLtajcmwstH0vm6l0reKMzcyI757Q==
 
-"@csstools/css-color-parser@^1.4.0":
-  version "1.4.0"
-  resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.4.0.tgz#c8517457dcb6ad080848b1583aa029ab61221ce8"
-  integrity sha512-SlGd8E6ron24JYQPQAIzu5tvmWi1H4sDKTdA7UDnwF45oJv7AVESbOlOO1YjfBhrQFuvLWUgKiOY9DwGoAxwTA==
+"@csstools/css-color-parser@^3.0.2":
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-3.0.2.tgz#710abb97142d58bcefc3a5e032a55a246895351c"
+  integrity sha512-mNg7A6HnNjlm0we/pDS9dUafOuBxcanN0TBhEGeIk6zZincuk0+mAbnBqfVs29NlvWHZ8diwTG6g5FeU8246sA==
   dependencies:
-    "@csstools/color-helpers" "^3.0.2"
-    "@csstools/css-calc" "^1.1.4"
+    "@csstools/color-helpers" "^5.0.1"
+    "@csstools/css-calc" "^2.0.1"
 
-"@csstools/css-parser-algorithms@2.3.2", "@csstools/css-parser-algorithms@^2.3.2":
-  version "2.3.2"
-  resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz#1e0d581dbf4518cb3e939c3b863cb7180c8cedad"
-  integrity sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==
+"@csstools/css-parser-algorithms@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.1.tgz#f14ade63bae5f6025ac85c7d03fe47a7ca0e58af"
+  integrity sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==
 
-"@csstools/css-tokenizer@^2.2.1":
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz#9dc431c9a5f61087af626e41ac2a79cce7bb253d"
-  integrity sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==
+"@csstools/css-tokenizer@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.1.tgz#9dd9b10084f3011290f96789598091e5bcb3c29a"
+  integrity sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==
 
-"@csstools/media-query-list-parser@^2.1.5":
-  version "2.1.5"
-  resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.5.tgz#94bc8b3c3fd7112a40b7bf0b483e91eba0654a0f"
-  integrity sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==
+"@csstools/media-query-list-parser@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz#9474e08e6d7767cf68c56bf1581b59d203360cb0"
+  integrity sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==
 
-"@csstools/postcss-cascade-layers@^4.0.1":
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.1.tgz#43d12cb0ffe9ab461bc41143dc554c6e1cb633e6"
-  integrity sha512-UYFuFL9GgVnftg9v7tBvVEBRLaBeAD66euD+yYy5fYCUld9ZIWTJNCE30hm6STMEdt6FL5xzeVw1lAZ1tpvUEg==
+"@csstools/postcss-cascade-layers@^5.0.0":
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.0.tgz#ad9985c2d273554552a546f6b1584d03d8886a8d"
+  integrity sha512-h+VunB3KXaoWTWEPBcdVk8Kz1eZ/CtDD+HXgKw5JLdbsViLEQdKUtFYH73VIQigdodng8s5DCrrwNQY7pnuWBA==
   dependencies:
-    "@csstools/selector-specificity" "^3.0.0"
-    postcss-selector-parser "^6.0.13"
+    "@csstools/selector-specificity" "^4.0.0"
+    postcss-selector-parser "^6.1.0"
 
-"@csstools/postcss-color-function@^3.0.7":
-  version "3.0.7"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.7.tgz#646b0c3e3805e4bb9c1e240bce807f1cc6ccdfea"
-  integrity sha512-/PIB20G1TPCXmQlaJLWIYzTZRZpj6csT4ijgnshIj/kcmniIRroAfDa0xSWnfuO1eNo0NptIaPU7jzUukWn55Q==
+"@csstools/postcss-color-function@^4.0.2":
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-4.0.2.tgz#0b22c912ea97afb20bbffa6a166a2dc5ced9a66f"
+  integrity sha512-q/W3RXh66SM7WqxW3/KU6koL8nOgqyB/wrcU3+ThXnNtXY2+k8UgdE301ISJpMt6PDyYgC7eMaIBo535RvFIgw==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-color-mix-function@^2.0.7":
-  version "2.0.7"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.7.tgz#0fc9b638bd6b9578a52a50e3af66109ae52dc2b6"
-  integrity sha512-57/g8aGo5eKFjEeJMiRKh8Qq43K2rCyk5ZZTvJ34TNl4zUtYU5DvLkIkOnhCtL8/a4z9oMA42aOnFPddRrScUQ==
+"@csstools/postcss-color-mix-function@^3.0.2":
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.2.tgz#e91a58a91c27fcb4fbdebae7616d47ed6bafdcfa"
+  integrity sha512-zG9PHNzZVCRk6eprm+T/ybrnuiwLdO+RR7+GCtNut+NZJGtPJj6bfPOEX23aOlMslLcRAlN6QOpxH3tovn+WpA==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-exponential-functions@^1.0.1":
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.1.tgz#0d938f58ba5ac5c362e09ad22b5768b04ee82650"
-  integrity sha512-ZLK2iSK4DUxeypGce2PnQSdYugUqDTwxnhNiq1o6OyKMNYgYs4eKbvEhFG8JKr1sJWbeqBi5jRr0017l2EWVvg==
+"@csstools/postcss-content-alt-text@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.1.tgz#53950a51b40385d596a1f6d173ee6927b3d7d3f9"
+  integrity sha512-TWjjewVZqdkjavsi8a2THuXgkhUum1k/m4QJpZpzOv72q6WnaoQZGSj5t5uCs7ymJr0H3qj6JcXMwMApSWUOGQ==
   dependencies:
-    "@csstools/css-calc" "^1.1.4"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-font-format-keywords@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.0.tgz#9ca3a3ca67122862addf8a1c0c61a6db02dea1cc"
-  integrity sha512-ntkGj+1uDa/u6lpjPxnkPcjJn7ChO/Kcy08YxctOZI7vwtrdYvFhmE476dq8bj1yna306+jQ9gzXIG/SWfOaRg==
+"@csstools/postcss-exponential-functions@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.1.tgz#ad504c8d648b21d4eb263efaea4f40949c05d3ce"
+  integrity sha512-A/MG8es3ylFzZ30oYIQUyJcMOfTfCs0dqqBMzeuzaPRlx4q/72WG+BbKe/pL9BUNIWsM0Q8jn3e3la8enjHJJA==
+  dependencies:
+    "@csstools/css-calc" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+
+"@csstools/postcss-font-format-keywords@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-4.0.0.tgz#6730836eb0153ff4f3840416cc2322f129c086e6"
+  integrity sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==
   dependencies:
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-gamut-mapping@^1.0.0":
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.0.tgz#a23d2c4bd2bd89b2ed3c5d2e062c069ad18745e0"
-  integrity sha512-6UQyK8l9YaG5Ao5rBDcCnKHrLsHiQ1E0zeFQuqDJqEtinVzAPb/MwSw3TenZXL1Rnd7th3tb+4CBFHBXdW5tbQ==
+"@csstools/postcss-gamut-mapping@^2.0.2":
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.2.tgz#9500b33612407a93d4328c5b0bb85cd7c0477be0"
+  integrity sha512-/1ur3ca9RWg/KnbLlxaDswyjLSGoaHNDruAzrVhkn5axgd7LOH6JHCBRhrKDafdMw9bf4MQrYFoaLfHAPekLFg==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
 
-"@csstools/postcss-gradients-interpolation-method@^4.0.7":
-  version "4.0.7"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.7.tgz#e5c2628157fb9dea9aa8cd9c84fdcc2a842af91b"
-  integrity sha512-GT1CzE/Tyr/ei4j5BwKESkHAgg+Gzys/0mAY7W+UiR+XrcYk5hDbOrE/YJIx1rflfO/7La1bDoZtA0YnLl4qNA==
+"@csstools/postcss-gradients-interpolation-method@^5.0.2":
+  version "5.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.2.tgz#19208385a7b665d7dff3419cf1830ce9f140e20a"
+  integrity sha512-qRpvA4sduAfiV9yZG4OM7q/h2Qhr3lg+GrHe9NZwuzWnfSDLGh+Dh4Ea6fQ+1++jdKXW/Cb4/vHRp0ssQYra4w==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-hwb-function@^3.0.6":
-  version "3.0.6"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.6.tgz#7d56583c6c8607352718a802f87e51edf4f9365e"
-  integrity sha512-uQgWt2Ho2yy2S6qthWY7mD5v57NKxi6dD1NB8nAybU5bJSsm+hLXRGm3/zbOH4xNrqO3Cl60DFSNlSrUME3Xjg==
+"@csstools/postcss-hwb-function@^4.0.2":
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.2.tgz#ebafc6d1f0e60bd88e5c246b4feee6824fc3b3b1"
+  integrity sha512-RUBVCyJE1hTsf9vGp3zrALeMollkAlHRFKm+T36y67nLfOOf+6GNQsdTGFAyLrY65skcm8ddC26Jp1n9ZIauEA==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-ic-unit@^3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.2.tgz#08b62de51a3636ba40ba8e77cef4619a6e636aac"
-  integrity sha512-n28Er7W9qc48zNjJnvTKuVHY26/+6YlA9WzJRksIHiAWOMxSH5IksXkw7FpkIOd+jLi59BMrX/BWrZMgjkLBHg==
+"@csstools/postcss-ic-unit@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.0.tgz#b60ec06500717c337447c39ae7fe7952eeb9d48f"
+  integrity sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-initial@^1.0.0":
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-1.0.0.tgz#e35ec12143a654b384fb81623970deeacedb0769"
-  integrity sha512-1l7iHHjIl5qmVeGItugr4ZOlCREDP71mNKqoEyxlosIoiu3Os1nPWMHpuCvDLCLiWI/ONTOg3nzJh7gwHOrqUA==
+"@csstools/postcss-initial@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-initial/-/postcss-initial-2.0.0.tgz#a86f5fc59ab9f16f1422dade4c58bd941af5df22"
+  integrity sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==
 
-"@csstools/postcss-is-pseudo-class@^4.0.3":
-  version "4.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.3.tgz#d8b04ff5eefb1a9bc8f1ab99b8f3b6b04b704480"
-  integrity sha512-/dt5M9Ty/x3Yiq0Nm/5PJJzwkVFchJgdjKVnryBPtoMCb9ohb/nDIJOwr/Wr3hK3FDs1EA1GE6PyRYsUmQPS8Q==
+"@csstools/postcss-is-pseudo-class@^5.0.0":
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.0.tgz#61a4c74e55eec63c06349cfe8d6f2bab82b6ef69"
+  integrity sha512-E/CjrT03BL06WmrjupnrT0VUBTvxJdoW1hRVeXFa9qatWtvcLLw0j8hP372G4A9PpSGEMXi3/AoHzPf7DNryCQ==
   dependencies:
-    "@csstools/selector-specificity" "^3.0.0"
-    postcss-selector-parser "^6.0.13"
+    "@csstools/selector-specificity" "^4.0.0"
+    postcss-selector-parser "^6.1.0"
 
-"@csstools/postcss-logical-float-and-clear@^2.0.0":
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.0.tgz#15e1b5d16dce01ad1e676167d0909e3958234eb5"
-  integrity sha512-Wki4vxsF6icRvRz8eF9bPpAvwaAt0RHwhVOyzfoFg52XiIMjb6jcbHkGxwpJXP4DVrnFEwpwmrz5aTRqOW82kg==
+"@csstools/postcss-light-dark-function@^2.0.4":
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.4.tgz#90c55ec03f3fb4b69a3156372bbf6d64ab33cd4c"
+  integrity sha512-yHUt5DZ61Irvp72notmAl3Zt4Me50EWToWNocazyIFTVYFwwo/EucmV3hWi9zJehu3rOSvMclL7DzvRDfbak/A==
+  dependencies:
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-logical-overflow@^1.0.0":
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.0.tgz#dbc18226f6cc6a83981184564ed9229a860f6033"
-  integrity sha512-cIrZ8f7bGGvr+W53nEuMspcwaeaI2YTmz6LZ4yiAO5z14/PQgOOv+Pn+qjvPOPoadeY2BmpaoTzZKvdAQuM17w==
+"@csstools/postcss-logical-float-and-clear@^3.0.0":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-3.0.0.tgz#62617564182cf86ab5d4e7485433ad91e4c58571"
+  integrity sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==
 
-"@csstools/postcss-logical-overscroll-behavior@^1.0.0":
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.0.tgz#93f60a71f75dab89b471166e6c3d44c8ef1b76b8"
-  integrity sha512-e89S2LWjnxf0SB2wNUAbqDyFb/Fow/tlOe1XqOLbNx4rf3LrQokM9qldVx7sarnddml3ORE5LDUmlKpPOOeJTA==
+"@csstools/postcss-logical-overflow@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-2.0.0.tgz#c6de7c5f04e3d4233731a847f6c62819bcbcfa1d"
+  integrity sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==
 
-"@csstools/postcss-logical-resize@^2.0.0":
+"@csstools/postcss-logical-overscroll-behavior@^2.0.0":
   version "2.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.0.tgz#751bd5aab335c9973e346e3edacb2a0a16fa8296"
-  integrity sha512-lCQ1aX8c5+WI4t5EoYf3alTzJNNocMqTb+u1J9CINdDhFh1fjovqK+0aHalUHsNstZmzFPNzIkU4Mb3eM9U8SA==
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-2.0.0.tgz#43c03eaecdf34055ef53bfab691db6dc97a53d37"
+  integrity sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==
+
+"@csstools/postcss-logical-resize@^3.0.0":
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-resize/-/postcss-logical-resize-3.0.0.tgz#4df0eeb1a61d7bd85395e56a5cce350b5dbfdca6"
+  integrity sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-logical-viewport-units@^2.0.3":
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.3.tgz#95e7195660bb8b05cd46f13d0495fe427e2db988"
-  integrity sha512-xeVxqND5rlQyqLGdH7rX34sIm/JbbQKxpKQP8oD1YQqUHHCLQR9NUS57WqJKajxKN6AcNAMWJhb5LUH5RfPcyA==
+"@csstools/postcss-logical-viewport-units@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.1.tgz#bae5470a86cc72fe6a7f1b2a9a1386de752646d6"
+  integrity sha512-JsfaoTiBqIuRE+CYL4ZpYKOqJ965GyiMH4b8UrY0Z7i5GfMiHZrK7xtTB29piuyKQzrW+Z8w3PAExhwND9cuAQ==
   dependencies:
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-media-minmax@^1.1.0":
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.0.tgz#8d46317b6686cd49e05870ae3c8993e49a54149c"
-  integrity sha512-t5Li/DPC5QmW/6VFLfUvsw/4dNYYseWR0tOXDeJg/9EKUodBgNawz5tuk5vYKtNvoj+Q08odMuXcpS5YJj0AFA==
+"@csstools/postcss-media-minmax@^2.0.1":
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.1.tgz#23fc4006232693310b42f224e7e27d6d20cfd3a3"
+  integrity sha512-EMa3IgUip+F/MwH4r2KfIA9ym9hQkT2PpR9MOukdomfGGCFuw9V3n/iIOBKziN1qfeddsYoOvtYOKQcHU2yIjg==
   dependencies:
-    "@csstools/css-calc" "^1.1.4"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/media-query-list-parser" "^2.1.5"
+    "@csstools/css-calc" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/media-query-list-parser" "^3.0.1"
 
-"@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.3":
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.3.tgz#a74355c828a13ede8e8390bcf2701a34a60696b3"
-  integrity sha512-IPL8AvnwMYW+cWtp+j8cW3MFN0RyXNT4hLOvs6Rf2N+NcbvXhSyKxZuE3W9Cv4KjaNoNoGx1d0UhT6tktq6tUw==
+"@csstools/postcss-media-queries-aspect-ratio-number-values@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.1.tgz#84dcfbbd268f9b777b5269bea3b98e67dff38496"
+  integrity sha512-JTzMQz//INahTALkvXnC5lC2fJKzwb5PY443T2zaM9hAzM7nzHMLIlEfFgdtBahVIBtBSalMefdxNr99LGW1lQ==
   dependencies:
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/media-query-list-parser" "^2.1.5"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/media-query-list-parser" "^3.0.1"
 
-"@csstools/postcss-nested-calc@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.0.tgz#b9069f5e1c2ea08de3840a5922e39af4e0ecf4b1"
-  integrity sha512-HsB66aDWAouOwD/GcfDTS0a7wCuVWaTpXcjl5VKP0XvFxDiU+r0T8FG7xgb6ovZNZ+qzvGIwRM+CLHhDgXrYgQ==
+"@csstools/postcss-nested-calc@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-4.0.0.tgz#754e10edc6958d664c11cde917f44ba144141c62"
+  integrity sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==
   dependencies:
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-normalize-display-values@^3.0.1":
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.1.tgz#8bacd4fa20434de67a7b1f4f64f6e4476922a98d"
-  integrity sha512-nUvRxI+ALJwkxZdPU4EDyuM380vP91sAGvI3jAOHs/sr3jfcCOzLkY6xKI1Mr526kZ3RivmMoYM/xq+XFyE/bw==
+"@csstools/postcss-normalize-display-values@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.0.tgz#ecdde2daf4e192e5da0c6fd933b6d8aff32f2a36"
+  integrity sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-oklab-function@^3.0.7":
-  version "3.0.7"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.7.tgz#4daff9e85b7f68ea744f2898f73e81d6fe47c0d7"
-  integrity sha512-vBFTQD3CARB3u/XIGO44wWbcO7xG/4GsYqJlcPuUGRSK8mtxes6n4vvNFlIByyAZy2k4d4RY63nyvTbMpeNTaQ==
+"@csstools/postcss-oklab-function@^4.0.2":
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.2.tgz#3d36974fbb7c3a589d52756e4eb029eaa29e4735"
+  integrity sha512-2iSK/T77PHMeorakBAk/WLxSodfIJ/lmi6nxEkuruXfhGH7fByZim4Fw6ZJf4B73SVieRSH2ep8zvYkA2ZfRtA==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-progressive-custom-properties@^3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.2.tgz#0c18152160a425950cb69a12a9add55af4f688e7"
-  integrity sha512-YEvTozk1SxnV/PGL5DllBVDuLQ+jiQhyCSQiZJ6CwBMU5JQ9hFde3i1qqzZHuclZfptjrU0JjlX4ePsOhxNzHw==
+"@csstools/postcss-progressive-custom-properties@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.0.tgz#ecdb85bcdb1852d73970a214a376684a91f82bdc"
+  integrity sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-relative-color-syntax@^2.0.7":
-  version "2.0.7"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.7.tgz#1d017aa25e3cda513cf00401a91899e9d3b83659"
-  integrity sha512-2AiFbJSVF4EyymLxme4JzSrbXykHolx8DdZECHjYKMhoulhKLltx5ccYgtrK3BmXGd3v3nJrWFCc8JM8bjuiOg==
+"@csstools/postcss-relative-color-syntax@^3.0.2":
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.2.tgz#a26cb580c41d01c0de76f4c70c38b3375d050602"
+  integrity sha512-aBpuUdpJBswNGfw6lOkhown2cZ0YXrMjASye56nkoRpgRe9yDF4BM1fvEuakrCDiaeoUzVaI4SF6+344BflXfQ==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-"@csstools/postcss-scope-pseudo-class@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.0.tgz#23f32181b7de9a33e7c7c71f7620b78284955b82"
-  integrity sha512-GFNVsD97OuEcfHmcT0/DAZWAvTM/FFBDQndIOLawNc1Wq8YqpZwBdHa063Lq+Irk7azygTT+Iinyg3Lt76p7rg==
+"@csstools/postcss-scope-pseudo-class@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-4.0.0.tgz#5b975e9e4f96ea8ae6cad4b9ab1be0baa49c61c9"
+  integrity sha512-+ZUOBtVMDcmHZcZqsP/jcNRriEILfWQflTI3tCTA+/RheXAg57VkFGyPDAilpQSqlCpxWLWG8VUFKFtZJPwuOg==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
-"@csstools/postcss-stepped-value-functions@^3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.2.tgz#a902395efbf9c5c30a6d902a7c65549fb3f49309"
-  integrity sha512-I3wX44MZVv+tDuWfrd3BTvRB/YRIM2F5v1MBtTI89sxpFn47mNpTwpPYUOGPVCgKlRDfZSlxIUYhUQmqRQZZFQ==
+"@csstools/postcss-stepped-value-functions@^4.0.1":
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.1.tgz#f4f41565ac69aa98ce40da54db3ce7de5cc36502"
+  integrity sha512-dk3KqVcIEYzy9Mvx8amoBbk123BWgd5DfjXDiPrEqxGma37PG7m/MoMmHQhuVHIjvPDHoJwyIZi2yy7j0RA5fw==
   dependencies:
-    "@csstools/css-calc" "^1.1.4"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-calc" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
 
-"@csstools/postcss-text-decoration-shorthand@^3.0.3":
-  version "3.0.3"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.3.tgz#e0708cf41f94013837edca1c6db23d5d6dd3c10e"
-  integrity sha512-d5J9m49HhqXRcw1S6vTZuviHi/iknUKGjBpChiNK1ARg9sSa3b8m5lsWz5Izs8ISORZdv2bZRwbw5Z2R6gQ9kQ==
+"@csstools/postcss-text-decoration-shorthand@^4.0.1":
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.1.tgz#251fab0939d50c6fd73bb2b830b2574188efa087"
+  integrity sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==
   dependencies:
-    "@csstools/color-helpers" "^3.0.2"
+    "@csstools/color-helpers" "^5.0.1"
     postcss-value-parser "^4.2.0"
 
-"@csstools/postcss-trigonometric-functions@^3.0.2":
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.2.tgz#b03d045015fc6e16d81e36e5783c545b5590a2f2"
-  integrity sha512-AwzNhF4QOKaLOKvMljwwFkeYXwufhRO15G+kKohHkyoNOL75xWkN+W2Y9ik9tSeAyDv+cYNlYaF+o/a79WjVjg==
+"@csstools/postcss-trigonometric-functions@^4.0.1":
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.1.tgz#dad12bcc4306a6c77f54ba62025adda902ef9106"
+  integrity sha512-QHOYuN3bzS/rcpAygFhJxJUtD8GuJEWF6f9Zm518Tq/cSMlcTgU+v0geyi5EqbmYxKMig2oKCKUSGqOj9gehkg==
   dependencies:
-    "@csstools/css-calc" "^1.1.4"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+    "@csstools/css-calc" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
 
-"@csstools/postcss-unset-value@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.0.tgz#6d2f08140b41d3e70d805ccd2baaf64a6f59fdac"
-  integrity sha512-P0JD1WHh3avVyKKRKjd0dZIjCEeaBer8t1BbwGMUDtSZaLhXlLNBqZ8KkqHzYWXOJgHleXAny2/sx8LYl6qhEA==
+"@csstools/postcss-unset-value@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-4.0.0.tgz#7caa981a34196d06a737754864baf77d64de4bba"
+  integrity sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==
 
-"@csstools/selector-specificity@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz#798622546b63847e82389e473fd67f2707d82247"
-  integrity sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==
+"@csstools/selector-resolve-nested@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-2.0.0.tgz#826e05f6971c334a12d86e2394129d62d4f19104"
+  integrity sha512-oklSrRvOxNeeOW1yARd4WNCs/D09cQjunGZUgSq6vM8GpzFswN+8rBZyJA29YFZhOTQ6GFzxgLDNtVbt9wPZMA==
+
+"@csstools/selector-specificity@^4.0.0":
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-4.0.0.tgz#7dfccb9df5499e627e7bfdbb4021a06813a45dba"
+  integrity sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==
+
+"@csstools/utilities@^2.0.0":
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/@csstools/utilities/-/utilities-2.0.0.tgz#f7ff0fee38c9ffb5646d47b6906e0bc8868bde60"
+  integrity sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==
 
 "@discoveryjs/json-ext@0.5.7":
   version "0.5.7"
   resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
   integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
 
-"@docsearch/css@3.5.2":
-  version "3.5.2"
-  resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.5.2.tgz#610f47b48814ca94041df969d9fcc47b91fc5aac"
-  integrity sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==
+"@docsearch/css@3.6.0":
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.0.tgz#0e9f56f704b3a34d044d15fd9962ebc1536ba4fb"
+  integrity sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==
 
 "@docsearch/react@^3.5.2":
-  version "3.5.2"
-  resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.5.2.tgz#2e6bbee00eb67333b64906352734da6aef1232b9"
-  integrity sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.6.0.tgz#b4f25228ecb7fc473741aefac592121e86dd2958"
+  integrity sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==
   dependencies:
     "@algolia/autocomplete-core" "1.9.3"
     "@algolia/autocomplete-preset-algolia" "1.9.3"
-    "@docsearch/css" "3.5.2"
+    "@docsearch/css" "3.6.0"
     algoliasearch "^4.19.1"
 
-"@docusaurus/core@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-3.1.0.tgz#b66e7eaf867c1f44738d725d217a1c0e879629d7"
-  integrity sha512-GWudMGYA9v26ssbAWJNfgeDZk+lrudUTclLPRsmxiknEBk7UMp7Rglonhqbsf3IKHOyHkMU4Fr5jFyg5SBx9jQ==
+"@docusaurus/core@3.5.2", "@docusaurus/core@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-3.5.2.tgz#3adedb90e7b6104592f1231043bd6bf91680c39c"
+  integrity sha512-4Z1WkhCSkX4KO0Fw5m/Vuc7Q3NxBG53NE5u59Rs96fWkMPZVSrzEPP16/Nk6cWb/shK7xXPndTmalJtw7twL/w==
   dependencies:
     "@babel/core" "^7.23.3"
     "@babel/generator" "^7.23.3"
@@ -2536,15 +1637,12 @@
     "@babel/runtime" "^7.22.6"
     "@babel/runtime-corejs3" "^7.22.6"
     "@babel/traverse" "^7.22.8"
-    "@docusaurus/cssnano-preset" "3.1.0"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/react-loadable" "5.5.2"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-common" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
-    "@slorber/static-site-generator-webpack-plugin" "^4.0.7"
-    "@svgr/webpack" "^6.5.1"
+    "@docusaurus/cssnano-preset" "3.5.2"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     autoprefixer "^10.4.14"
     babel-loader "^9.1.3"
     babel-plugin-dynamic-import-node "^2.3.3"
@@ -2558,12 +1656,13 @@
     copy-webpack-plugin "^11.0.0"
     core-js "^3.31.1"
     css-loader "^6.8.1"
-    css-minimizer-webpack-plugin "^4.2.2"
-    cssnano "^5.1.15"
+    css-minimizer-webpack-plugin "^5.0.1"
+    cssnano "^6.1.2"
     del "^6.1.1"
     detect-port "^1.5.1"
     escape-html "^1.0.3"
     eta "^2.2.0"
+    eval "^0.1.8"
     file-loader "^6.2.0"
     fs-extra "^11.1.1"
     html-minifier-terser "^7.2.0"
@@ -2572,12 +1671,13 @@
     leven "^3.1.0"
     lodash "^4.17.21"
     mini-css-extract-plugin "^2.7.6"
+    p-map "^4.0.0"
     postcss "^8.4.26"
     postcss-loader "^7.3.3"
     prompts "^2.4.2"
     react-dev-utils "^12.0.1"
     react-helmet-async "^1.3.0"
-    react-loadable "npm:@docusaurus/react-loadable@5.5.2"
+    react-loadable "npm:@docusaurus/react-loadable@6.0.0"
     react-loadable-ssr-addon-v5-slorber "^1.0.1"
     react-router "^5.3.4"
     react-router-config "^5.1.1"
@@ -2596,34 +1696,32 @@
     webpack-merge "^5.9.0"
     webpackbar "^5.0.2"
 
-"@docusaurus/cssnano-preset@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-3.1.0.tgz#b3fe7134cc4d0c1950eeb1c940089a190591ad4e"
-  integrity sha512-ned7qsgCqSv/e7KyugFNroAfiszuxLwnvMW7gmT2Ywxb/Nyt61yIw7KHyAZCMKglOalrqnYA4gMhLUCK/mVePA==
+"@docusaurus/cssnano-preset@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-3.5.2.tgz#6c1f2b2f9656f978c4694c84ab24592b04dcfab3"
+  integrity sha512-D3KiQXOMA8+O0tqORBrTOEQyQxNIfPm9jEaJoALjjSjc2M/ZAWcUfPQEnwr2JB2TadHw2gqWgpZckQmrVWkytA==
   dependencies:
-    cssnano-preset-advanced "^5.3.10"
-    postcss "^8.4.26"
-    postcss-sort-media-queries "^4.4.1"
+    cssnano-preset-advanced "^6.1.2"
+    postcss "^8.4.38"
+    postcss-sort-media-queries "^5.2.0"
     tslib "^2.6.0"
 
-"@docusaurus/logger@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-3.1.0.tgz#eef6475c2d59a3ae7e138ac1f60007d6fafd76b0"
-  integrity sha512-p740M+HCst1VnKKzL60Hru9xfG4EUYJDarjlEC4hHeBy9+afPmY3BNPoSHx9/8zxuYfUlv/psf7I9NvRVdmdvg==
+"@docusaurus/logger@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-3.5.2.tgz#1150339ad56844b30734115c19c580f3b25cf5ed"
+  integrity sha512-LHC540SGkeLfyT3RHK3gAMK6aS5TRqOD4R72BEU/DE2M/TY8WwEUAMY576UUc/oNJXv8pGhBmQB6N9p3pt8LQw==
   dependencies:
     chalk "^4.1.2"
     tslib "^2.6.0"
 
-"@docusaurus/mdx-loader@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-3.1.0.tgz#61d562ff442f62ef04cc31d3f0d5865a8dd390e4"
-  integrity sha512-D7onDz/3mgBonexWoQXPw3V2E5Bc4+jYRf9gGUUK+KoQwU8xMDaDkUUfsr7t6UBa/xox9p5+/3zwLuXOYMzGSg==
+"@docusaurus/mdx-loader@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-3.5.2.tgz#99781641372c5037bcbe09bb8ade93a0e0ada57d"
+  integrity sha512-ku3xO9vZdwpiMIVd8BzWV0DCqGEbCP5zs1iHfKX50vw6jX8vQo0ylYo1YJMZyz6e+JFJ17HYHT5FzVidz2IflA==
   dependencies:
-    "@babel/parser" "^7.22.7"
-    "@babel/traverse" "^7.22.8"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     "@mdx-js/mdx" "^3.0.0"
     "@slorber/remark-comment" "^1.0.0"
     escape-html "^1.0.3"
@@ -2646,33 +1744,33 @@
     vfile "^6.0.1"
     webpack "^5.88.1"
 
-"@docusaurus/module-type-aliases@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-3.1.0.tgz#f3451702f143557bfde0502287713a08086a0415"
-  integrity sha512-XUl7Z4PWlKg4l6KF05JQ3iDHQxnPxbQUqTNKvviHyuHdlalOFv6qeDAm7IbzyQPJD5VA6y4dpRbTWSqP9ClwPg==
+"@docusaurus/module-type-aliases@3.5.2", "@docusaurus/module-type-aliases@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-3.5.2.tgz#4e8f9c0703e23b2e07ebfce96598ec83e4dd2a9e"
+  integrity sha512-Z+Xu3+2rvKef/YKTMxZHsEXp1y92ac0ngjDiExRdqGTmEKtCUpkbNYH8v5eXo5Ls+dnW88n6WTa+Q54kLOkwPg==
   dependencies:
-    "@docusaurus/react-loadable" "5.5.2"
-    "@docusaurus/types" "3.1.0"
+    "@docusaurus/types" "3.5.2"
     "@types/history" "^4.7.11"
     "@types/react" "*"
     "@types/react-router-config" "*"
     "@types/react-router-dom" "*"
     react-helmet-async "*"
-    react-loadable "npm:@docusaurus/react-loadable@5.5.2"
+    react-loadable "npm:@docusaurus/react-loadable@6.0.0"
 
-"@docusaurus/plugin-content-blog@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.1.0.tgz#d2102e9286486e526dbc0dfc741e53dc5cee0ff0"
-  integrity sha512-iMa6WBaaEdYuxckvJtLcq/HQdlA4oEbCXf/OFfsYJCCULcDX7GDZpKxLF3X1fLsax3sSm5bmsU+CA0WD+R1g3A==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-common" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
-    cheerio "^1.0.0-rc.12"
+"@docusaurus/plugin-content-blog@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.5.2.tgz#649c07c34da7603645f152bcebdf75285baed16b"
+  integrity sha512-R7ghWnMvjSf+aeNDH0K4fjyQnt5L0KzUEnUhmf1e3jZrv3wogeytZNN6n7X8yHcMsuZHPOrctQhXWnmxu+IRRg==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
+    cheerio "1.0.0-rc.12"
     feed "^4.2.2"
     fs-extra "^11.1.1"
     lodash "^4.17.21"
@@ -2683,18 +1781,20 @@
     utility-types "^3.10.0"
     webpack "^5.88.1"
 
-"@docusaurus/plugin-content-docs@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.1.0.tgz#55d7bdb8e14f854ea6c6e256f1b51b8c17963c19"
-  integrity sha512-el5GxhT8BLrsWD0qGa8Rq+Ttb/Ni6V3DGT2oAPio0qcs/mUAxeyXEAmihkvmLCnAgp6xD27Ce7dISZ5c6BXeqA==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/module-type-aliases" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+"@docusaurus/plugin-content-docs@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.5.2.tgz#adcf6c0bd9a9818eb192ab831e0069ee62d31505"
+  integrity sha512-Bt+OXn/CPtVqM3Di44vHjE7rPCEsRCB/DMo2qoOuozB9f7+lsdrHvD0QCHdBs0uhz6deYJDppAr2VgqybKPlVQ==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/module-type-aliases" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     "@types/react-router-config" "^5.0.7"
     combine-promises "^1.1.0"
     fs-extra "^11.1.1"
@@ -2704,137 +1804,129 @@
     utility-types "^3.10.0"
     webpack "^5.88.1"
 
-"@docusaurus/plugin-content-pages@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.1.0.tgz#cdb73c804ded307e81ceea39874dc0bb540c2dc4"
-  integrity sha512-9gntYQFpk+93+Xl7gYczJu8I9uWoyRLnRwS0+NUFcs9iZtHKsdqKWPRrONC9elfN3wJ9ORwTbcVzsTiB8jvYlg==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+"@docusaurus/plugin-content-pages@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.5.2.tgz#2b59e43f5bc5b5176ff01835de706f1c65c2e68b"
+  integrity sha512-WzhHjNpoQAUz/ueO10cnundRz+VUtkjFhhaQ9jApyv1a46FPURO4cef89pyNIOMny1fjDz/NUN2z6Yi+5WUrCw==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     fs-extra "^11.1.1"
     tslib "^2.6.0"
     webpack "^5.88.1"
 
-"@docusaurus/plugin-debug@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-3.1.0.tgz#545872bc8f9cd697d9f1d6c695f8a1674bfc149c"
-  integrity sha512-AbvJwCVRbmQ8w9d8QXbF4Iq/ui0bjPZNYFIhtducGFnm2YQRN1mraK8mCEQb0Aq0T8SqRRvSfC/far4n/s531w==
+"@docusaurus/plugin-debug@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-3.5.2.tgz#c25ca6a59e62a17c797b367173fe80c06fdf2f65"
+  integrity sha512-kBK6GlN0itCkrmHuCS6aX1wmoWc5wpd5KJlqQ1FyrF0cLDnvsYSnh7+ftdwzt7G6lGBho8lrVwkkL9/iQvaSOA==
   dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
     fs-extra "^11.1.1"
     react-json-view-lite "^1.2.0"
     tslib "^2.6.0"
 
-"@docusaurus/plugin-google-analytics@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.1.0.tgz#3035eace3121db16aec7c10852ebb4cd860f4434"
-  integrity sha512-zvUOMzu9Uhz0ciqnSbtnp/5i1zEYlzarQrOXG90P3Is3efQI43p2YLW/rzSGdLb5MfQo2HvKT6Q5+tioMO045Q==
+"@docusaurus/plugin-google-analytics@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.5.2.tgz#1143e78d1461d3c74a2746f036d25b18d4a2608d"
+  integrity sha512-rjEkJH/tJ8OXRE9bwhV2mb/WP93V441rD6XnM6MIluu7rk8qg38iSxS43ga2V2Q/2ib53PcqbDEJDG/yWQRJhQ==
   dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     tslib "^2.6.0"
 
-"@docusaurus/plugin-google-gtag@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.1.0.tgz#2f4040da81d36bfc6324abc1a12b258e6c7f202a"
-  integrity sha512-0txshvaY8qIBdkk2UATdVcfiCLGq3KAUfuRQD2cRNgO39iIf4/ihQxH9NXcRTwKs4Q5d9yYHoix3xT6pFuEYOg==
+"@docusaurus/plugin-google-gtag@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.5.2.tgz#60b5a9e1888c4fa16933f7c5cb5f2f2c31caad3a"
+  integrity sha512-lm8XL3xLkTPHFKKjLjEEAHUrW0SZBSHBE1I+i/tmYMBsjCcUB5UJ52geS5PSiOCFVR74tbPGcPHEV/gaaxFeSA==
   dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     "@types/gtag.js" "^0.0.12"
     tslib "^2.6.0"
 
-"@docusaurus/plugin-google-tag-manager@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.1.0.tgz#4c026e9f65468a332326770f95ccd9c6e12d564b"
-  integrity sha512-zOWPEi8kMyyPtwG0vhyXrdbLs8fIZmY5vlbi9lUU+v8VsroO5iHmfR2V3SMsrsfOanw5oV/ciWqbxezY00qEZg==
+"@docusaurus/plugin-google-tag-manager@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.5.2.tgz#7a37334d2e7f00914d61ad05bc09391c4db3bfda"
+  integrity sha512-QkpX68PMOMu10Mvgvr5CfZAzZQFx8WLlOiUQ/Qmmcl6mjGK6H21WLT5x7xDmcpCoKA/3CegsqIqBR+nA137lQg==
   dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     tslib "^2.6.0"
 
-"@docusaurus/plugin-sitemap@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.1.0.tgz#9d9dbb4d87e6dc46ae9321badf6ac7cd9aa96b23"
-  integrity sha512-TkR5vGBpUooEB9SoW42thahqqwKzfHrQQhkB+JrEGERsl4bKODSuJNle4aA4h6LSkg4IyfXOW8XOI0NIPWb9Cg==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-common" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+"@docusaurus/plugin-sitemap@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.5.2.tgz#9c940b27f3461c54d65295cf4c52cb20538bd360"
+  integrity sha512-DnlqYyRAdQ4NHY28TfHuVk414ft2uruP4QWCH//jzpHjqvKyXjj2fmDtI8RPUBh9K8iZKFMHRnLtzJKySPWvFA==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     fs-extra "^11.1.1"
     sitemap "^7.1.1"
     tslib "^2.6.0"
 
-"@docusaurus/preset-classic@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-3.1.0.tgz#ca67d5e416c211b4c23f0fb01f0e3e36b759dfa0"
-  integrity sha512-xGLQRFmmT9IinAGUDVRYZ54Ys28USNbA3OTXQXnSJLPr1rCY7CYnHI4XoOnKWrNnDiAI4ruMzunXWyaElUYCKQ==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/plugin-content-blog" "3.1.0"
-    "@docusaurus/plugin-content-docs" "3.1.0"
-    "@docusaurus/plugin-content-pages" "3.1.0"
-    "@docusaurus/plugin-debug" "3.1.0"
-    "@docusaurus/plugin-google-analytics" "3.1.0"
-    "@docusaurus/plugin-google-gtag" "3.1.0"
-    "@docusaurus/plugin-google-tag-manager" "3.1.0"
-    "@docusaurus/plugin-sitemap" "3.1.0"
-    "@docusaurus/theme-classic" "3.1.0"
-    "@docusaurus/theme-common" "3.1.0"
-    "@docusaurus/theme-search-algolia" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-
-"@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2":
-  version "5.5.2"
-  resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz#81aae0db81ecafbdaee3651f12804580868fa6ce"
-  integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==
-  dependencies:
-    "@types/react" "*"
-    prop-types "^15.6.2"
-
-"@docusaurus/remark-plugin-npm2yarn@^3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/remark-plugin-npm2yarn/-/remark-plugin-npm2yarn-3.1.0.tgz#357853e42cc23b00b2fce3ed470001dc84f8cc3d"
-  integrity sha512-+dUortlwU8kEmEyrI/b5e1eu6BPIjaS4T/iU54pxVGo4thwj4luB8eqXDLgz2OjBqfUsEFf/Of3dgRueph7mXQ==
+"@docusaurus/preset-classic@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-3.5.2.tgz#977f78510bbc556aa0539149eef960bb7ab52bd9"
+  integrity sha512-3ihfXQ95aOHiLB5uCu+9PRy2gZCeSZoDcqpnDvf3B+sTrMvMTr8qRUzBvWkoIqc82yG5prCboRjk1SVILKx6sg==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/plugin-content-blog" "3.5.2"
+    "@docusaurus/plugin-content-docs" "3.5.2"
+    "@docusaurus/plugin-content-pages" "3.5.2"
+    "@docusaurus/plugin-debug" "3.5.2"
+    "@docusaurus/plugin-google-analytics" "3.5.2"
+    "@docusaurus/plugin-google-gtag" "3.5.2"
+    "@docusaurus/plugin-google-tag-manager" "3.5.2"
+    "@docusaurus/plugin-sitemap" "3.5.2"
+    "@docusaurus/theme-classic" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/theme-search-algolia" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+
+"@docusaurus/remark-plugin-npm2yarn@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/remark-plugin-npm2yarn/-/remark-plugin-npm2yarn-3.5.2.tgz#892a63a9b53475d7c59957bd67277656dcd91079"
+  integrity sha512-EAD7R/skPuhW3lWZyDhRuFs3m2EGaR008tuoe6SrFre7PifoxmSCwXk8Nb4VtVRKnnbn4IgHyqq+ma47gGmKwg==
   dependencies:
     mdast-util-mdx "^3.0.0"
-    npm-to-yarn "^2.0.0"
+    npm-to-yarn "^2.2.1"
     tslib "^2.6.0"
     unified "^11.0.3"
     unist-util-visit "^5.0.0"
 
-"@docusaurus/theme-classic@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-3.1.0.tgz#6ee68bf4d4db53c8d9b18d4866512abadb00a802"
-  integrity sha512-/+jMl2Z9O8QQxves5AtHdt91gWsEZFgOV3La/6eyKEd7QLqQUtM5fxEJ40rq9NKYjqCd1HzZ9egIMeJoWwillw==
-  dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/module-type-aliases" "3.1.0"
-    "@docusaurus/plugin-content-blog" "3.1.0"
-    "@docusaurus/plugin-content-docs" "3.1.0"
-    "@docusaurus/plugin-content-pages" "3.1.0"
-    "@docusaurus/theme-common" "3.1.0"
-    "@docusaurus/theme-translations" "3.1.0"
-    "@docusaurus/types" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-common" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+"@docusaurus/theme-classic@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-3.5.2.tgz#602ddb63d987ab1f939e3760c67bc1880f01c000"
+  integrity sha512-XRpinSix3NBv95Rk7xeMF9k4safMkwnpSgThn0UNQNumKvmcIYjfkwfh2BhwYh/BxMXQHJ/PdmNh22TQFpIaYg==
+  dependencies:
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/module-type-aliases" "3.5.2"
+    "@docusaurus/plugin-content-blog" "3.5.2"
+    "@docusaurus/plugin-content-docs" "3.5.2"
+    "@docusaurus/plugin-content-pages" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/theme-translations" "3.5.2"
+    "@docusaurus/types" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     "@mdx-js/react" "^3.0.0"
     clsx "^2.0.0"
     copy-text-to-clipboard "^3.2.0"
-    infima "0.2.0-alpha.43"
+    infima "0.2.0-alpha.44"
     lodash "^4.17.21"
     nprogress "^0.2.0"
     postcss "^8.4.26"
@@ -2845,18 +1937,15 @@
     tslib "^2.6.0"
     utility-types "^3.10.0"
 
-"@docusaurus/theme-common@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-3.1.0.tgz#d176af1d0fc8ea27fea0afb298157f9a75256336"
-  integrity sha512-YGwEFALLIbF5ocW/Fy6Ae7tFWUOugEN3iwxTx8UkLAcLqYUboDSadesYtVBmRCEB4FVA2qoP7YaW3lu3apUPPw==
-  dependencies:
-    "@docusaurus/mdx-loader" "3.1.0"
-    "@docusaurus/module-type-aliases" "3.1.0"
-    "@docusaurus/plugin-content-blog" "3.1.0"
-    "@docusaurus/plugin-content-docs" "3.1.0"
-    "@docusaurus/plugin-content-pages" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-common" "3.1.0"
+"@docusaurus/theme-common@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-3.5.2.tgz#b507ab869a1fba0be9c3c9d74f2f3d74c3ac78b2"
+  integrity sha512-QXqlm9S6x9Ibwjs7I2yEDgsCocp708DrCrgHgKwg2n2AY0YQ6IjU0gAK35lHRLOvAoJUfCKpQAwUykB0R7+Eew==
+  dependencies:
+    "@docusaurus/mdx-loader" "3.5.2"
+    "@docusaurus/module-type-aliases" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
     "@types/history" "^4.7.11"
     "@types/react" "*"
     "@types/react-router-config" "*"
@@ -2866,34 +1955,34 @@
     tslib "^2.6.0"
     utility-types "^3.10.0"
 
-"@docusaurus/theme-live-codeblock@^3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/theme-live-codeblock/-/theme-live-codeblock-3.1.0.tgz#f25ae96f06b4a669a54b59a842c59148ccd137f8"
-  integrity sha512-wJMa5iIA9LwJxBoPu/bCOiffdOggeU2VfGmu9l83gzLQ2l3CL2zUrdOcZzeU3FqFCns5mUSZfDZXmZp2tbWPiw==
+"@docusaurus/theme-live-codeblock@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/theme-live-codeblock/-/theme-live-codeblock-3.5.2.tgz#1a39505f1b221b76a0860aa8e30437f1f963e929"
+  integrity sha512-/jr+xvmJmvPhZsqUXQ+SGuI38qCb4dR9IZu0e+UA5my4pO63h//Nnf73naTiK3DYeszK+E0dyULPyWszVpjjOw==
   dependencies:
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/theme-common" "3.1.0"
-    "@docusaurus/theme-translations" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/theme-translations" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     "@philpl/buble" "^0.19.7"
     clsx "^2.0.0"
     fs-extra "^11.1.1"
-    react-live "^4.1.5"
+    react-live "^4.1.6"
     tslib "^2.6.0"
 
-"@docusaurus/theme-search-algolia@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.1.0.tgz#3cdb1f0e8d15698a60110856ca5a06f10d3b049d"
-  integrity sha512-8cJH0ZhPsEDjq3jR3I+wHmWzVY2bXMQJ59v2QxUmsTZxbWA4u+IzccJMIJx4ooFl9J6iYynwYsFuHxyx/KUmfQ==
+"@docusaurus/theme-search-algolia@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.5.2.tgz#466c83ca7e8017d95ae6889ccddc5ef8bf6b61c6"
+  integrity sha512-qW53kp3VzMnEqZGjakaV90sst3iN1o32PH+nawv1uepROO8aEGxptcq2R5rsv7aBShSRbZwIobdvSYKsZ5pqvA==
   dependencies:
     "@docsearch/react" "^3.5.2"
-    "@docusaurus/core" "3.1.0"
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/plugin-content-docs" "3.1.0"
-    "@docusaurus/theme-common" "3.1.0"
-    "@docusaurus/theme-translations" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
-    "@docusaurus/utils-validation" "3.1.0"
+    "@docusaurus/core" "3.5.2"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/plugin-content-docs" "3.5.2"
+    "@docusaurus/theme-common" "3.5.2"
+    "@docusaurus/theme-translations" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-validation" "3.5.2"
     algoliasearch "^4.18.0"
     algoliasearch-helper "^3.13.3"
     clsx "^2.0.0"
@@ -2903,18 +1992,23 @@
     tslib "^2.6.0"
     utility-types "^3.10.0"
 
-"@docusaurus/theme-translations@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.1.0.tgz#1c6bdc19723a87e042b5e89b6cdc8b747fdcbc13"
-  integrity sha512-DApE4AbDI+WBajihxB54L4scWQhVGNZAochlC9fkbciPuFAgdRBD3NREb0rgfbKexDC/rioppu/WJA0u8tS+yA==
+"@docusaurus/theme-translations@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-3.5.2.tgz#38f9ebf2a5d860397022206a05fef66c08863c89"
+  integrity sha512-GPZLcu4aT1EmqSTmbdpVrDENGR2yObFEX8ssEFYTCiAIVc0EihNSdOIBTazUvgNqwvnoU1A8vIs1xyzc3LITTw==
   dependencies:
     fs-extra "^11.1.1"
     tslib "^2.6.0"
 
-"@docusaurus/types@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-3.1.0.tgz#1dbb60ea38e98ba869f8d7ea2323e4460f05ab65"
-  integrity sha512-VaczOZf7+re8aFBIWnex1XENomwHdsSTkrdX43zyor7G/FY4OIsP6X28Xc3o0jiY0YdNuvIDyA5TNwOtpgkCVw==
+"@docusaurus/tsconfig@^3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/tsconfig/-/tsconfig-3.5.2.tgz#98878103ba217bff355cd8944926d9ca06e6e153"
+  integrity sha512-rQ7toURCFnWAIn8ubcquDs0ewhPwviMzxh6WpRjBW7sJVCXb6yzwUaY3HMNa0VXCFw+qkIbFywrMTf+Pb4uHWQ==
+
+"@docusaurus/types@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-3.5.2.tgz#058019dbeffbee2d412c3f72569e412a727f9608"
+  integrity sha512-N6GntLXoLVUwkZw7zCxwy9QiuEXIcTVzA9AkmNw16oc0AP3SXLrMmDMMBIfgqwuKWa6Ox6epHol9kMtJqekACw==
   dependencies:
     "@mdx-js/mdx" "^3.0.0"
     "@types/history" "^4.7.11"
@@ -2926,31 +2020,35 @@
     webpack "^5.88.1"
     webpack-merge "^5.9.0"
 
-"@docusaurus/utils-common@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-3.1.0.tgz#846ce9c12b9ebf1ebf513e65303fb8158dcd2e1b"
-  integrity sha512-SfvnRLHoZ9bwTw67knkSs7IcUR0GY2SaGkpdB/J9pChrDiGhwzKNUhcieoPyPYrOWGRPk3rVNYtoy+Bc7psPAw==
+"@docusaurus/utils-common@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-3.5.2.tgz#4d7f5e962fbca3e2239d80457aa0e4bd3d8f7e0a"
+  integrity sha512-i0AZjHiRgJU6d7faQngIhuHKNrszpL/SHQPgF1zH4H+Ij6E9NBYGy6pkcGWToIv7IVPbs+pQLh1P3whn0gWXVg==
   dependencies:
     tslib "^2.6.0"
 
-"@docusaurus/utils-validation@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-3.1.0.tgz#3e88c42caec29cd3eedbbd17af97f88719613340"
-  integrity sha512-dFxhs1NLxPOSzmcTk/eeKxLY5R+U4cua22g9MsAMiRWcwFKStZ2W3/GDY0GmnJGqNS8QAQepJrxQoyxXkJNDeg==
+"@docusaurus/utils-validation@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-3.5.2.tgz#1b2b2f02082781cc8ce713d4c85e88d6d2fc4eb3"
+  integrity sha512-m+Foq7augzXqB6HufdS139PFxDC5d5q2QKZy8q0qYYvGdI6nnlNsGH4cIGsgBnV7smz+mopl3g4asbSDvMV0jA==
   dependencies:
-    "@docusaurus/logger" "3.1.0"
-    "@docusaurus/utils" "3.1.0"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/utils" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    fs-extra "^11.2.0"
     joi "^17.9.2"
     js-yaml "^4.1.0"
+    lodash "^4.17.21"
     tslib "^2.6.0"
 
-"@docusaurus/utils@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-3.1.0.tgz#6ef821bc4c40a91586835a385110b5c0082c590c"
-  integrity sha512-LgZfp0D+UBqAh7PZ//MUNSFBMavmAPku6Si9x8x3V+S318IGCNJ6hUr2O29UO0oLybEWUjD5Jnj9IUN6XyZeeg==
+"@docusaurus/utils@3.5.2":
+  version "3.5.2"
+  resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-3.5.2.tgz#17763130215f18d7269025903588ef7fb373e2cb"
+  integrity sha512-33QvcNFh+Gv+C2dP9Y9xWEzMgf3JzrpL2nW9PopidiohS1nDcyknKRx2DWaFvyVTTYIkkABVSr073VTj/NITNA==
   dependencies:
-    "@docusaurus/logger" "3.1.0"
-    "@svgr/webpack" "^6.5.1"
+    "@docusaurus/logger" "3.5.2"
+    "@docusaurus/utils-common" "3.5.2"
+    "@svgr/webpack" "^8.1.0"
     escape-string-regexp "^4.0.0"
     file-loader "^6.2.0"
     fs-extra "^11.1.1"
@@ -2961,204 +2059,238 @@
     js-yaml "^4.1.0"
     lodash "^4.17.21"
     micromatch "^4.0.5"
+    prompts "^2.4.2"
     resolve-pathname "^3.0.0"
     shelljs "^0.8.5"
     tslib "^2.6.0"
     url-loader "^4.1.1"
+    utility-types "^3.10.0"
     webpack "^5.88.1"
 
-"@esbuild/android-arm64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz#fb7130103835b6d43ea499c3f30cfb2b2ed58456"
-  integrity sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==
-
-"@esbuild/android-arm@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.8.tgz#b46e4d9e984e6d6db6c4224d72c86b7757e35bcb"
-  integrity sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==
-
-"@esbuild/android-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.8.tgz#a13db9441b5a4f4e4fec4a6f8ffacfea07888db7"
-  integrity sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==
-
-"@esbuild/darwin-arm64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz#49f5718d36541f40dd62bfdf84da9c65168a0fc2"
-  integrity sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==
-
-"@esbuild/darwin-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz#75c5c88371eea4bfc1f9ecfd0e75104c74a481ac"
-  integrity sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==
-
-"@esbuild/freebsd-arm64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz#9d7259fea4fd2b5f7437b52b542816e89d7c8575"
-  integrity sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==
-
-"@esbuild/freebsd-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz#abac03e1c4c7c75ee8add6d76ec592f46dbb39e3"
-  integrity sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==
-
-"@esbuild/linux-arm64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz#c577932cf4feeaa43cb9cec27b89cbe0df7d9098"
-  integrity sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==
-
-"@esbuild/linux-arm@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz#d6014d8b98b5cbc96b95dad3d14d75bb364fdc0f"
-  integrity sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==
-
-"@esbuild/linux-ia32@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz#2379a0554307d19ac4a6cdc15b08f0ea28e7a40d"
-  integrity sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==
-
-"@esbuild/linux-loong64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz#e2a5bbffe15748b49356a6cd7b2d5bf60c5a7123"
-  integrity sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==
-
-"@esbuild/linux-mips64el@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz#1359331e6f6214f26f4b08db9b9df661c57cfa24"
-  integrity sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==
-
-"@esbuild/linux-ppc64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz#9ba436addc1646dc89dae48c62d3e951ffe70951"
-  integrity sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==
-
-"@esbuild/linux-riscv64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz#fbcf0c3a0b20f40b5fc31c3b7695f0769f9de66b"
-  integrity sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==
-
-"@esbuild/linux-s390x@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz#989e8a05f7792d139d5564ffa7ff898ac6f20a4a"
-  integrity sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==
-
-"@esbuild/linux-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz#b187295393a59323397fe5ff51e769ec4e72212b"
-  integrity sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==
-
-"@esbuild/netbsd-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz#c1ec0e24ea82313cb1c7bae176bd5acd5bde7137"
-  integrity sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==
-
-"@esbuild/openbsd-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz#0c5b696ac66c6d70cf9ee17073a581a28af9e18d"
-  integrity sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==
-
-"@esbuild/sunos-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz#2a697e1f77926ff09fcc457d8f29916d6cd48fb1"
-  integrity sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==
-
-"@esbuild/win32-arm64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz#ec029e62a2fca8c071842ecb1bc5c2dd20b066f1"
-  integrity sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==
-
-"@esbuild/win32-ia32@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz#cbb9a3146bde64dc15543e48afe418c7a3214851"
-  integrity sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==
-
-"@esbuild/win32-x64@0.19.8":
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz#c8285183dbdb17008578dbacb6e22748709b4822"
-  integrity sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==
-
-"@eslint-community/eslint-utils@^4.2.0":
+"@esbuild/aix-ppc64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz#b57697945b50e99007b4c2521507dc613d4a648c"
+  integrity sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==
+
+"@esbuild/android-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz#1add7e0af67acefd556e407f8497e81fddad79c0"
+  integrity sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==
+
+"@esbuild/android-arm@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.24.0.tgz#ab7263045fa8e090833a8e3c393b60d59a789810"
+  integrity sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==
+
+"@esbuild/android-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.24.0.tgz#e8f8b196cfdfdd5aeaebbdb0110983460440e705"
+  integrity sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==
+
+"@esbuild/darwin-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz#2d0d9414f2acbffd2d86e98253914fca603a53dd"
+  integrity sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==
+
+"@esbuild/darwin-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz#33087aab31a1eb64c89daf3d2cf8ce1775656107"
+  integrity sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==
+
+"@esbuild/freebsd-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz#bb76e5ea9e97fa3c753472f19421075d3a33e8a7"
+  integrity sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==
+
+"@esbuild/freebsd-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz#e0e2ce9249fdf6ee29e5dc3d420c7007fa579b93"
+  integrity sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==
+
+"@esbuild/linux-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz#d1b2aa58085f73ecf45533c07c82d81235388e75"
+  integrity sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==
+
+"@esbuild/linux-arm@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz#8e4915df8ea3e12b690a057e77a47b1d5935ef6d"
+  integrity sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==
+
+"@esbuild/linux-ia32@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz#8200b1110666c39ab316572324b7af63d82013fb"
+  integrity sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==
+
+"@esbuild/linux-loong64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz#6ff0c99cf647504df321d0640f0d32e557da745c"
+  integrity sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==
+
+"@esbuild/linux-mips64el@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz#3f720ccd4d59bfeb4c2ce276a46b77ad380fa1f3"
+  integrity sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==
+
+"@esbuild/linux-ppc64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz#9d6b188b15c25afd2e213474bf5f31e42e3aa09e"
+  integrity sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==
+
+"@esbuild/linux-riscv64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz#f989fdc9752dfda286c9cd87c46248e4dfecbc25"
+  integrity sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==
+
+"@esbuild/linux-s390x@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz#29ebf87e4132ea659c1489fce63cd8509d1c7319"
+  integrity sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==
+
+"@esbuild/linux-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz#4af48c5c0479569b1f359ffbce22d15f261c0cef"
+  integrity sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==
+
+"@esbuild/netbsd-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz#1ae73d23cc044a0ebd4f198334416fb26c31366c"
+  integrity sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==
+
+"@esbuild/openbsd-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz#5d904a4f5158c89859fd902c427f96d6a9e632e2"
+  integrity sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==
+
+"@esbuild/openbsd-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz#4c8aa88c49187c601bae2971e71c6dc5e0ad1cdf"
+  integrity sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==
+
+"@esbuild/sunos-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz#8ddc35a0ea38575fa44eda30a5ee01ae2fa54dd4"
+  integrity sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==
+
+"@esbuild/win32-arm64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz#6e79c8543f282c4539db684a207ae0e174a9007b"
+  integrity sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==
+
+"@esbuild/win32-ia32@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz#057af345da256b7192d18b676a02e95d0fa39103"
+  integrity sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==
+
+"@esbuild/win32-x64@0.24.0":
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz#168ab1c7e1c318b922637fad8f339d48b01e1244"
+  integrity sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==
+
+"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
   version "4.4.0"
   resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
   integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
   dependencies:
     eslint-visitor-keys "^3.3.0"
 
+"@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.11.0":
+  version "4.11.1"
+  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.1.tgz#a547badfc719eb3e5f4b556325e542fbe9d7a18f"
+  integrity sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==
+
 "@eslint-community/regexpp@^4.4.0":
-  version "4.5.1"
-  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
-  integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
+  version "4.10.0"
+  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63"
+  integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==
 
-"@eslint/eslintrc@^2.1.0":
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.0.tgz#82256f164cc9e0b59669efc19d57f8092706841d"
-  integrity sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==
+"@eslint/config-array@^0.18.0":
+  version "0.18.0"
+  resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.18.0.tgz#37d8fe656e0d5e3dbaea7758ea56540867fd074d"
+  integrity sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==
+  dependencies:
+    "@eslint/object-schema" "^2.1.4"
+    debug "^4.3.1"
+    minimatch "^3.1.2"
+
+"@eslint/core@^0.6.0":
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.6.0.tgz#9930b5ba24c406d67a1760e94cdbac616a6eb674"
+  integrity sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==
+
+"@eslint/eslintrc@^3.1.0":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz#dbd3482bfd91efa663cbe7aa1f506839868207b6"
+  integrity sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==
   dependencies:
     ajv "^6.12.4"
     debug "^4.3.2"
-    espree "^9.6.0"
-    globals "^13.19.0"
+    espree "^10.0.1"
+    globals "^14.0.0"
     ignore "^5.2.0"
     import-fresh "^3.2.1"
     js-yaml "^4.1.0"
     minimatch "^3.1.2"
     strip-json-comments "^3.1.1"
 
-"@eslint/js@8.44.0":
-  version "8.44.0"
-  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.44.0.tgz#961a5903c74139390478bdc808bcde3fc45ab7af"
-  integrity sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==
+"@eslint/js@9.11.1":
+  version "9.11.1"
+  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.11.1.tgz#8bcb37436f9854b3d9a561440daf916acd940986"
+  integrity sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==
 
-"@floating-ui/core@^1.4.2":
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.0.tgz#5c05c60d5ae2d05101c3021c1a2a350ddc027f8c"
-  integrity sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==
+"@eslint/object-schema@^2.1.4":
+  version "2.1.4"
+  resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843"
+  integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==
+
+"@eslint/plugin-kit@^0.2.0":
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.0.tgz#8712dccae365d24e9eeecb7b346f85e750ba343d"
+  integrity sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==
   dependencies:
-    "@floating-ui/utils" "^0.1.3"
+    levn "^0.4.1"
+
+"@floating-ui/core@^1.6.0":
+  version "1.6.8"
+  resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.8.tgz#aa43561be075815879305965020f492cdb43da12"
+  integrity sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==
+  dependencies:
+    "@floating-ui/utils" "^0.2.8"
 
-"@floating-ui/dom@^1.5.3":
-  version "1.5.3"
-  resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.5.3.tgz#54e50efcb432c06c23cd33de2b575102005436fa"
-  integrity sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==
+"@floating-ui/dom@^1.6.11":
+  version "1.6.11"
+  resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.11.tgz#8631857838d34ee5712339eb7cbdfb8ad34da723"
+  integrity sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==
   dependencies:
-    "@floating-ui/core" "^1.4.2"
-    "@floating-ui/utils" "^0.1.3"
+    "@floating-ui/core" "^1.6.0"
+    "@floating-ui/utils" "^0.2.8"
 
-"@floating-ui/utils@^0.1.3":
-  version "0.1.6"
-  resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9"
-  integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==
+"@floating-ui/utils@^0.2.8":
+  version "0.2.8"
+  resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.8.tgz#21a907684723bbbaa5f0974cf7730bd797eb8e62"
+  integrity sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==
 
-"@hapi/hoek@^9.0.0":
+"@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0":
   version "9.3.0"
   resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb"
   integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==
 
-"@hapi/topo@^5.0.0":
+"@hapi/topo@^5.1.0":
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012"
   integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==
   dependencies:
     "@hapi/hoek" "^9.0.0"
 
-"@humanwhocodes/config-array@^0.11.10":
-  version "0.11.10"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
-  integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
-  dependencies:
-    "@humanwhocodes/object-schema" "^1.2.1"
-    debug "^4.1.1"
-    minimatch "^3.0.5"
-
 "@humanwhocodes/module-importer@^1.0.1":
   version "1.0.1"
   resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
   integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
 
-"@humanwhocodes/object-schema@^1.2.1":
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
-  integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+"@humanwhocodes/retry@^0.3.0":
+  version "0.3.0"
+  resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.0.tgz#6d86b8cb322660f03d3f0aa94b99bdd8e172d570"
+  integrity sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==
 
 "@isaacs/cliui@^8.0.2":
   version "8.0.2"
@@ -3172,92 +2304,74 @@
     wrap-ansi "^8.1.0"
     wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
 
-"@jest/schemas@^29.6.0":
-  version "29.6.0"
-  resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040"
-  integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
+"@jest/schemas@^29.6.3":
+  version "29.6.3"
+  resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03"
+  integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==
   dependencies:
     "@sinclair/typebox" "^0.27.8"
 
-"@jest/types@^29.6.1":
-  version "29.6.1"
-  resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2"
-  integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==
+"@jest/types@^29.6.3":
+  version "29.6.3"
+  resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59"
+  integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==
   dependencies:
-    "@jest/schemas" "^29.6.0"
+    "@jest/schemas" "^29.6.3"
     "@types/istanbul-lib-coverage" "^2.0.0"
     "@types/istanbul-reports" "^3.0.0"
     "@types/node" "*"
     "@types/yargs" "^17.0.8"
     chalk "^4.0.0"
 
-"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
-  version "0.3.3"
-  resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
-  integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
+"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5":
+  version "0.3.5"
+  resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
+  integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
   dependencies:
-    "@jridgewell/set-array" "^1.0.1"
+    "@jridgewell/set-array" "^1.2.1"
     "@jridgewell/sourcemap-codec" "^1.4.10"
-    "@jridgewell/trace-mapping" "^0.3.9"
-
-"@jridgewell/resolve-uri@3.1.0":
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
-  integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
+    "@jridgewell/trace-mapping" "^0.3.24"
 
 "@jridgewell/resolve-uri@^3.1.0":
-  version "3.1.1"
-  resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
-  integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
+  integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
 
-"@jridgewell/set-array@^1.0.1":
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
-  integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
+"@jridgewell/set-array@^1.2.1":
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
+  integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
 
 "@jridgewell/source-map@^0.3.3":
-  version "0.3.5"
-  resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91"
-  integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==
+  version "0.3.6"
+  resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a"
+  integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==
   dependencies:
-    "@jridgewell/gen-mapping" "^0.3.0"
-    "@jridgewell/trace-mapping" "^0.3.9"
-
-"@jridgewell/sourcemap-codec@1.4.14":
-  version "1.4.14"
-  resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
-  integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
+    "@jridgewell/gen-mapping" "^0.3.5"
+    "@jridgewell/trace-mapping" "^0.3.25"
 
 "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15":
   version "1.4.15"
   resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
   integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
 
-"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
-  version "0.3.18"
-  resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
-  integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
-  dependencies:
-    "@jridgewell/resolve-uri" "3.1.0"
-    "@jridgewell/sourcemap-codec" "1.4.14"
-
-"@jridgewell/trace-mapping@^0.3.20":
-  version "0.3.20"
-  resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f"
-  integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
+"@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
+  version "0.3.25"
+  resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
+  integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
   dependencies:
     "@jridgewell/resolve-uri" "^3.1.0"
     "@jridgewell/sourcemap-codec" "^1.4.14"
 
 "@leichtgewicht/ip-codec@^2.0.1":
-  version "2.0.4"
-  resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
-  integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
+  integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==
 
 "@mdx-js/mdx@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-3.0.0.tgz#37ef87685143fafedf1165f0a79e9fe95fbe5154"
-  integrity sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw==
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-3.0.1.tgz#617bd2629ae561fdca1bb88e3badd947f5a82191"
+  integrity sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==
   dependencies:
     "@types/estree" "^1.0.0"
     "@types/estree-jsx" "^1.0.0"
@@ -3283,10 +2397,10 @@
     unist-util-visit "^5.0.0"
     vfile "^6.0.0"
 
-"@mdx-js/react@^3.0.0":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.0.tgz#eaccaa8d6a7736b19080aff5a70448a7ba692271"
-  integrity sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ==
+"@mdx-js/react@^3.0.0", "@mdx-js/react@^3.0.1":
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-3.0.1.tgz#997a19b3a5b783d936c75ae7c47cfe62f967f746"
+  integrity sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==
   dependencies:
     "@types/mdx" "^2.0.0"
 
@@ -3297,11 +2411,6 @@
   dependencies:
     eslint-scope "5.1.1"
 
-"@nicolo-ribaudo/semver-v6@^6.3.3":
-  version "6.3.3"
-  resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz#ea6d23ade78a325f7a52750aab1526b02b628c29"
-  integrity sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==
-
 "@nodelib/fs.scandir@2.1.5":
   version "2.1.5"
   resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
@@ -3323,13 +2432,18 @@
     "@nodelib/fs.scandir" "2.1.5"
     fastq "^1.6.0"
 
-"@npmcli/config@^6.0.0":
-  version "6.2.1"
-  resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-6.2.1.tgz#954cc09b727b6bfc087cb1d2a48994dc342e45cc"
-  integrity sha512-Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw==
+"@nolyfill/is-core-module@1.0.39":
+  version "1.0.39"
+  resolved "https://registry.yarnpkg.com/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e"
+  integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==
+
+"@npmcli/config@^8.0.0":
+  version "8.2.0"
+  resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-8.2.0.tgz#18774fc7239cfcc124ca9fdc48b1f65bb7bee191"
+  integrity sha512-YoEYZFg0hRSRP/Chmq+J4FvULFvji6SORUYWQc10FiJ+ReAnViXcDCENg6kM6dID04bAoKNUygrby798+gYBbQ==
   dependencies:
     "@npmcli/map-workspaces" "^3.0.2"
-    ci-info "^3.8.0"
+    ci-info "^4.0.0"
     ini "^4.1.0"
     nopt "^7.0.0"
     proc-log "^3.0.0"
@@ -3372,17 +2486,10 @@
   resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
   integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
 
-"@pkgr/utils@^2.3.1":
-  version "2.4.2"
-  resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc"
-  integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==
-  dependencies:
-    cross-spawn "^7.0.3"
-    fast-glob "^3.3.0"
-    is-glob "^4.0.3"
-    open "^9.1.0"
-    picocolors "^1.0.0"
-    tslib "^2.6.0"
+"@pkgr/core@^0.1.0":
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31"
+  integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==
 
 "@pnpm/config.env-replace@^1.1.0":
   version "1.1.0"
@@ -3406,31 +2513,31 @@
     config-chain "^1.1.11"
 
 "@polka/url@^1.0.0-next.24":
-  version "1.0.0-next.24"
-  resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.24.tgz#58601079e11784d20f82d0585865bb42305c4df3"
-  integrity sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==
+  version "1.0.0-next.25"
+  resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.25.tgz#f077fdc0b5d0078d30893396ff4827a13f99e817"
+  integrity sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==
 
-"@rollup/plugin-commonjs@^25.0.7":
-  version "25.0.7"
-  resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz#145cec7589ad952171aeb6a585bbeabd0fd3b4cf"
-  integrity sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==
+"@rollup/plugin-commonjs@^28.0.0":
+  version "28.0.0"
+  resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.0.tgz#44b5e49cb5d5e6233f1e4996013a8649fdbb9557"
+  integrity sha512-BJcu+a+Mpq476DMXG+hevgPSl56bkUoi88dKT8t3RyUp8kGuOh+2bU8Gs7zXDlu+fyZggnJ+iOBGrb/O1SorYg==
   dependencies:
     "@rollup/pluginutils" "^5.0.1"
     commondir "^1.0.1"
     estree-walker "^2.0.2"
-    glob "^8.0.3"
+    fdir "^6.1.1"
     is-reference "1.2.1"
     magic-string "^0.30.3"
+    picomatch "^2.3.1"
 
-"@rollup/plugin-node-resolve@^15.2.3":
-  version "15.2.3"
-  resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9"
-  integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==
+"@rollup/plugin-node-resolve@^15.3.0":
+  version "15.3.0"
+  resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.0.tgz#efbb35515c9672e541c08d59caba2eff492a55d5"
+  integrity sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==
   dependencies:
     "@rollup/pluginutils" "^5.0.1"
     "@types/resolve" "1.20.2"
     deepmerge "^4.2.2"
-    is-builtin-module "^3.2.1"
     is-module "^1.0.0"
     resolve "^1.22.1"
 
@@ -3444,83 +2551,150 @@
     mime "^3.0.0"
 
 "@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2", "@rollup/pluginutils@^5.0.5":
-  version "5.0.5"
-  resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.0.5.tgz#bbb4c175e19ebfeeb8c132c2eea0ecb89941a66c"
-  integrity sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0"
+  integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==
   dependencies:
     "@types/estree" "^1.0.0"
     estree-walker "^2.0.2"
     picomatch "^2.3.1"
 
-"@rollup/rollup-android-arm-eabi@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.6.0.tgz#c08a454d70605aacad17530a953791ea385e37d5"
-  integrity sha512-keHkkWAe7OtdALGoutLY3utvthkGF+Y17ws9LYT8pxMBYXaCoH/8dXS2uzo6e8+sEhY7y/zi5RFo22Dy2lFpDw==
-
-"@rollup/rollup-android-arm64@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.6.0.tgz#e0cf96960405947c1a09a389467e6aa10ae1a226"
-  integrity sha512-y3Kt+34smKQNWilicPbBz/MXEY7QwDzMFNgwEWeYiOhUt9MTWKjHqe3EVkXwT2fR7izOvHpDWZ0o2IyD9SWX7A==
-
-"@rollup/rollup-darwin-arm64@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.6.0.tgz#6d2f53021fbb9fdecf60bfb6fd5d999aef8385e9"
-  integrity sha512-oLzzxcUIHltHxOCmaXl+pkIlU+uhSxef5HfntW7RsLh1eHm+vJzjD9Oo4oUKso4YuP4PpbFJNlZjJuOrxo8dPg==
-
-"@rollup/rollup-darwin-x64@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.6.0.tgz#b7d0a4bbe6fc493efa269a60a66dc070ac10e2bd"
-  integrity sha512-+ANnmjkcOBaV25n0+M0Bere3roeVAnwlKW65qagtuAfIxXF9YxUneRyAn/RDcIdRa7QrjRNJL3jR7T43ObGe8Q==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.6.0.tgz#12fad1802f500a0196ab0bb4dbb776aaabdedcc7"
-  integrity sha512-tBTSIkjSVUyrekddpkAqKOosnj1Fc0ZY0rJL2bIEWPKqlEQk0paORL9pUIlt7lcGJi3LzMIlUGXvtNi1Z6MOCQ==
-
-"@rollup/rollup-linux-arm64-gnu@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.6.0.tgz#6de1caa2c9952d16dafa21dd26da9562d4ea2112"
-  integrity sha512-Ed8uJI3kM11de9S0j67wAV07JUNhbAqIrDYhQBrQW42jGopgheyk/cdcshgGO4fW5Wjq97COCY/BHogdGvKVNQ==
-
-"@rollup/rollup-linux-arm64-musl@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.6.0.tgz#ef9cae3d22c8c44ff4f271e308bf1c013348bdc0"
-  integrity sha512-mZoNQ/qK4D7SSY8v6kEsAAyDgznzLLuSFCA3aBHZTmf3HP/dW4tNLTtWh9+LfyO0Z1aUn+ecpT7IQ3WtIg3ViQ==
-
-"@rollup/rollup-linux-x64-gnu@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.6.0.tgz#e9071050bed7c64a9fd964cde3c8bd139bf8e489"
-  integrity sha512-rouezFHpwCqdEXsqAfNsTgSWO0FoZ5hKv5p+TGO5KFhyN/dvYXNMqMolOb8BkyKcPqjYRBeT+Z6V3aM26rPaYg==
-
-"@rollup/rollup-linux-x64-musl@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.6.0.tgz#a4c7f5e0c363b2c34f6a7566b1c9da00bf0b96d0"
-  integrity sha512-Bbm+fyn3S6u51urfj3YnqBXg5vI2jQPncRRELaucmhBVyZkbWClQ1fEsRmdnCPpQOQfkpg9gZArvtMVkOMsh1w==
-
-"@rollup/rollup-win32-arm64-msvc@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.6.0.tgz#9a7bfc660ac088d447858fc5223984deb979a55a"
-  integrity sha512-+MRMcyx9L2kTrTUzYmR61+XVsliMG4odFb5UmqtiT8xOfEicfYAGEuF/D1Pww1+uZkYhBqAHpvju7VN+GnC3ng==
-
-"@rollup/rollup-win32-ia32-msvc@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.6.0.tgz#7d5fb96e9f0120451da1fece5c74d2bb373f8925"
-  integrity sha512-rxfeE6K6s/Xl2HGeK6cO8SiQq3k/3BYpw7cfhW5Bk2euXNEpuzi2cc7llxx1si1QgwfjNtdRNTGqdBzGlFZGFw==
-
-"@rollup/rollup-win32-x64-msvc@4.6.0":
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.6.0.tgz#15841505c7ec1648020941d04ca0210f88c59e3a"
-  integrity sha512-QqmCsydHS172Y0Kc13bkMXvipbJSvzeglBncJG3LsYJSiPlxYACz7MmJBs4A8l1oU+jfhYEIC/+AUSlvjmiX/g==
+"@rollup/rollup-android-arm-eabi@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.5.tgz#e0f5350845090ca09690fe4a472717f3b8aae225"
+  integrity sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==
+
+"@rollup/rollup-android-arm64@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.5.tgz#08270faef6747e2716d3e978a8bbf479f75fb19a"
+  integrity sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==
+
+"@rollup/rollup-darwin-arm64@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.5.tgz#691671133b350661328d42c8dbdedd56dfb97dfd"
+  integrity sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==
+
+"@rollup/rollup-darwin-x64@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.5.tgz#b2ec52a1615f24b1cd40bc8906ae31af81e8a342"
+  integrity sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.5.tgz#217f01f304808920680bd269002df38e25d9205f"
+  integrity sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==
+
+"@rollup/rollup-linux-arm-musleabihf@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.5.tgz#93ac1c5a1e389f4482a2edaeec41fcffee54a930"
+  integrity sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==
+
+"@rollup/rollup-linux-arm64-gnu@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.5.tgz#a7f146787d6041fecc4ecdf1aa72234661ca94a4"
+  integrity sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==
+
+"@rollup/rollup-linux-arm64-musl@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.5.tgz#6a37236189648e678bd564d6e8ca798f42cf42c5"
+  integrity sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==
+
+"@rollup/rollup-linux-powerpc64le-gnu@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.5.tgz#5661420dc463bec31ecb2d17d113de858cfcfe2d"
+  integrity sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==
+
+"@rollup/rollup-linux-riscv64-gnu@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.5.tgz#cb00342b7432bdef723aa606281de2f522d6dcf7"
+  integrity sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==
+
+"@rollup/rollup-linux-s390x-gnu@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.5.tgz#0708889674dccecccd28e2befccf791e0767fcb7"
+  integrity sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==
+
+"@rollup/rollup-linux-x64-gnu@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.5.tgz#a135b040b21582e91cfed2267ccfc7d589e1dbc6"
+  integrity sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==
+
+"@rollup/rollup-linux-x64-musl@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.5.tgz#88395a81a3ab7ee3dc8dc31a73ff62ed3185f34d"
+  integrity sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==
+
+"@rollup/rollup-win32-arm64-msvc@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.5.tgz#12ee49233b1125f2c1da38392f63b1dbb0c31bba"
+  integrity sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==
+
+"@rollup/rollup-win32-ia32-msvc@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.5.tgz#0f987b134c6b3123c22842b33ba0c2b6fb78cc3b"
+  integrity sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==
+
+"@rollup/rollup-win32-x64-msvc@4.22.5":
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.5.tgz#f2feb149235a5dc1deb5439758f8871255e5a161"
+  integrity sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==
+
+"@rtsao/scc@^1.1.0":
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8"
+  integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==
 
 "@rushstack/eslint-patch@^1.1.0":
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz#31b9c510d8cada9683549e1dbb4284cca5001faf"
-  integrity sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==
+  version "1.10.0"
+  resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.10.0.tgz#b88671c367284bb50b1cb6a842d7e0d98e9f4e55"
+  integrity sha512-ih6xH1dOGBTP/RNc/QbnVLLa/s80SkXydI7tnyq+a2eIdd7gDsmSpD1Jz7T1oCa+GIsVTyQCR3cW0tlYB97iFg==
+
+"@shikijs/core@1.20.0":
+  version "1.20.0"
+  resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.20.0.tgz#e431b69bebf1c1a0dd53fd3fb16eae7e7823d9ba"
+  integrity sha512-KlO3iE0THzSdYkzDFugt8SHe6FR3qNYTkmpbdW1d6xo8juQkMjybxAw/cBi2npL2eb2F4PbbnSs5Z9tDusfvyg==
+  dependencies:
+    "@shikijs/engine-javascript" "1.20.0"
+    "@shikijs/engine-oniguruma" "1.20.0"
+    "@shikijs/types" "1.20.0"
+    "@shikijs/vscode-textmate" "^9.2.2"
+    "@types/hast" "^3.0.4"
+    hast-util-to-html "^9.0.3"
+
+"@shikijs/engine-javascript@1.20.0":
+  version "1.20.0"
+  resolved "https://registry.yarnpkg.com/@shikijs/engine-javascript/-/engine-javascript-1.20.0.tgz#ffb18986aa4d989b0320136202b29739a659778a"
+  integrity sha512-ZUMo758uduM0Tfgzi/kd+0IKMbNdumCxxWjY36uf1DIs2Qyg9HIq3vA1Wfa/vc6HE7tHWFpANRi3mv7UzJ68MQ==
+  dependencies:
+    "@shikijs/types" "1.20.0"
+    "@shikijs/vscode-textmate" "^9.2.2"
+    oniguruma-to-js "0.4.3"
+
+"@shikijs/engine-oniguruma@1.20.0":
+  version "1.20.0"
+  resolved "https://registry.yarnpkg.com/@shikijs/engine-oniguruma/-/engine-oniguruma-1.20.0.tgz#21091c82349109710050169332eec1ec3ff3095b"
+  integrity sha512-MQ40WkVTZk7by33ces4PGK6XNFSo6PYvKTSAr2kTWdRNhFmOcnaX+1XzvFwB26eySXR7U74t91czZ1qJkEgxTA==
+  dependencies:
+    "@shikijs/types" "1.20.0"
+    "@shikijs/vscode-textmate" "^9.2.2"
+
+"@shikijs/types@1.20.0":
+  version "1.20.0"
+  resolved "https://registry.yarnpkg.com/@shikijs/types/-/types-1.20.0.tgz#6ae758cc48cf7e776a538437dc8d17d8f49bdc4e"
+  integrity sha512-y+EaDvU2K6/GaXOKXxJaGnr1XtmZMF7MfS0pSEDdxEq66gCtKsLwQvVwoQFdp7R7dLlNAro3ijEE19sMZ0pzqg==
+  dependencies:
+    "@shikijs/vscode-textmate" "^9.2.2"
+    "@types/hast" "^3.0.4"
+
+"@shikijs/vscode-textmate@^9.2.2":
+  version "9.2.2"
+  resolved "https://registry.yarnpkg.com/@shikijs/vscode-textmate/-/vscode-textmate-9.2.2.tgz#24571f50625c7cd075f9efe0def8b9d2c0930ada"
+  integrity sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==
 
-"@sideway/address@^4.1.3":
-  version "4.1.4"
-  resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0"
-  integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==
+"@sideway/address@^4.1.5":
+  version "4.1.5"
+  resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5"
+  integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==
   dependencies:
     "@hapi/hoek" "^9.0.0"
 
@@ -3558,31 +2732,17 @@
     micromark-util-character "^1.1.0"
     micromark-util-symbol "^1.0.1"
 
-"@slorber/static-site-generator-webpack-plugin@^4.0.7":
-  version "4.0.7"
-  resolved "https://registry.yarnpkg.com/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz#fc1678bddefab014e2145cbe25b3ce4e1cfc36f3"
-  integrity sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==
-  dependencies:
-    eval "^0.1.8"
-    p-map "^4.0.0"
-    webpack-sources "^3.2.2"
-
 "@svgr/babel-plugin-add-jsx-attribute@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22"
   integrity sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==
 
-"@svgr/babel-plugin-add-jsx-attribute@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz#74a5d648bd0347bda99d82409d87b8ca80b9a1ba"
-  integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==
-
-"@svgr/babel-plugin-remove-jsx-attribute@*", "@svgr/babel-plugin-remove-jsx-attribute@8.0.0":
+"@svgr/babel-plugin-remove-jsx-attribute@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186"
   integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==
 
-"@svgr/babel-plugin-remove-jsx-empty-expression@*", "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0":
+"@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44"
   integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==
@@ -3592,51 +2752,26 @@
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz#8fbb6b2e91fa26ac5d4aa25c6b6e4f20f9c0ae27"
   integrity sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==
 
-"@svgr/babel-plugin-replace-jsx-attribute-value@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz#fb9d22ea26d2bc5e0a44b763d4c46d5d3f596c60"
-  integrity sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==
-
 "@svgr/babel-plugin-svg-dynamic-title@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz#1d5ba1d281363fc0f2f29a60d6d936f9bbc657b0"
   integrity sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==
 
-"@svgr/babel-plugin-svg-dynamic-title@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz#01b2024a2b53ffaa5efceaa0bf3e1d5a4c520ce4"
-  integrity sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==
-
 "@svgr/babel-plugin-svg-em-dimensions@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz#35e08df300ea8b1d41cb8f62309c241b0369e501"
   integrity sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==
 
-"@svgr/babel-plugin-svg-em-dimensions@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz#dd3fa9f5b24eb4f93bcf121c3d40ff5facecb217"
-  integrity sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==
-
 "@svgr/babel-plugin-transform-react-native-svg@8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz#90a8b63998b688b284f255c6a5248abd5b28d754"
   integrity sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==
 
-"@svgr/babel-plugin-transform-react-native-svg@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz#1d8e945a03df65b601551097d8f5e34351d3d305"
-  integrity sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==
-
 "@svgr/babel-plugin-transform-svg-component@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz#013b4bfca88779711f0ed2739f3f7efcefcf4f7e"
   integrity sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==
 
-"@svgr/babel-plugin-transform-svg-component@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz#48620b9e590e25ff95a80f811544218d27f8a250"
-  integrity sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==
-
 "@svgr/babel-preset@8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-8.1.0.tgz#0e87119aecdf1c424840b9d4565b7137cabf9ece"
@@ -3651,20 +2786,6 @@
     "@svgr/babel-plugin-transform-react-native-svg" "8.1.0"
     "@svgr/babel-plugin-transform-svg-component" "8.0.0"
 
-"@svgr/babel-preset@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.5.1.tgz#b90de7979c8843c5c580c7e2ec71f024b49eb828"
-  integrity sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==
-  dependencies:
-    "@svgr/babel-plugin-add-jsx-attribute" "^6.5.1"
-    "@svgr/babel-plugin-remove-jsx-attribute" "*"
-    "@svgr/babel-plugin-remove-jsx-empty-expression" "*"
-    "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.5.1"
-    "@svgr/babel-plugin-svg-dynamic-title" "^6.5.1"
-    "@svgr/babel-plugin-svg-em-dimensions" "^6.5.1"
-    "@svgr/babel-plugin-transform-react-native-svg" "^6.5.1"
-    "@svgr/babel-plugin-transform-svg-component" "^6.5.1"
-
 "@svgr/core@8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/core/-/core-8.1.0.tgz#41146f9b40b1a10beaf5cc4f361a16a3c1885e88"
@@ -3676,17 +2797,6 @@
     cosmiconfig "^8.1.3"
     snake-case "^3.0.4"
 
-"@svgr/core@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.5.1.tgz#d3e8aa9dbe3fbd747f9ee4282c1c77a27410488a"
-  integrity sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==
-  dependencies:
-    "@babel/core" "^7.19.6"
-    "@svgr/babel-preset" "^6.5.1"
-    "@svgr/plugin-jsx" "^6.5.1"
-    camelcase "^6.2.0"
-    cosmiconfig "^7.0.1"
-
 "@svgr/hast-util-to-babel-ast@8.0.0":
   version "8.0.0"
   resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz#6952fd9ce0f470e1aded293b792a2705faf4ffd4"
@@ -3695,14 +2805,6 @@
     "@babel/types" "^7.21.3"
     entities "^4.4.0"
 
-"@svgr/hast-util-to-babel-ast@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz#81800bd09b5bcdb968bf6ee7c863d2288fdb80d2"
-  integrity sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==
-  dependencies:
-    "@babel/types" "^7.20.0"
-    entities "^4.4.0"
-
 "@svgr/plugin-jsx@8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz#96969f04a24b58b174ee4cd974c60475acbd6928"
@@ -3713,16 +2815,6 @@
     "@svgr/hast-util-to-babel-ast" "8.0.0"
     svg-parser "^2.0.4"
 
-"@svgr/plugin-jsx@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz#0e30d1878e771ca753c94e69581c7971542a7072"
-  integrity sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==
-  dependencies:
-    "@babel/core" "^7.19.6"
-    "@svgr/babel-preset" "^6.5.1"
-    "@svgr/hast-util-to-babel-ast" "^6.5.1"
-    svg-parser "^2.0.4"
-
 "@svgr/plugin-svgo@8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz#b115b7b967b564f89ac58feae89b88c3decd0f00"
@@ -3732,15 +2824,6 @@
     deepmerge "^4.3.1"
     svgo "^3.0.2"
 
-"@svgr/plugin-svgo@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz#0f91910e988fc0b842f88e0960c2862e022abe84"
-  integrity sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==
-  dependencies:
-    cosmiconfig "^7.0.1"
-    deepmerge "^4.2.2"
-    svgo "^2.8.0"
-
 "@svgr/rollup@^8.1.0":
   version "8.1.0"
   resolved "https://registry.yarnpkg.com/@svgr/rollup/-/rollup-8.1.0.tgz#2c8e09655336cda4b7843799a5d2a5860300b030"
@@ -3756,19 +2839,19 @@
     "@svgr/plugin-jsx" "8.1.0"
     "@svgr/plugin-svgo" "8.1.0"
 
-"@svgr/webpack@^6.5.1":
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-6.5.1.tgz#ecf027814fc1cb2decc29dc92f39c3cf691e40e8"
-  integrity sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==
+"@svgr/webpack@^8.1.0":
+  version "8.1.0"
+  resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-8.1.0.tgz#16f1b5346f102f89fda6ec7338b96a701d8be0c2"
+  integrity sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==
   dependencies:
-    "@babel/core" "^7.19.6"
-    "@babel/plugin-transform-react-constant-elements" "^7.18.12"
-    "@babel/preset-env" "^7.19.4"
+    "@babel/core" "^7.21.3"
+    "@babel/plugin-transform-react-constant-elements" "^7.21.3"
+    "@babel/preset-env" "^7.20.2"
     "@babel/preset-react" "^7.18.6"
-    "@babel/preset-typescript" "^7.18.6"
-    "@svgr/core" "^6.5.1"
-    "@svgr/plugin-jsx" "^6.5.1"
-    "@svgr/plugin-svgo" "^6.5.1"
+    "@babel/preset-typescript" "^7.21.0"
+    "@svgr/core" "8.1.0"
+    "@svgr/plugin-jsx" "8.1.0"
+    "@svgr/plugin-svgo" "8.1.0"
 
 "@szmarczak/http-timer@^5.0.1":
   version "5.0.1"
@@ -3782,11 +2865,6 @@
   resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
   integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
 
-"@tsconfig/docusaurus@^2.0.2":
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/@tsconfig/docusaurus/-/docusaurus-2.0.2.tgz#f96c7453ce9969ef938284eac74441e2d646efd7"
-  integrity sha512-12HWfYmgUl4M2o76/TFufGtI68wl2k/b8qPrIrG7ci9YJLrpAtadpy897Bz5v29Mlkr7a1Hq4KHdQTKtU+2rhQ==
-
 "@types/acorn@^4.0.0":
   version "4.0.6"
   resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22"
@@ -3795,81 +2873,94 @@
     "@types/estree" "*"
 
 "@types/body-parser@*":
-  version "1.19.2"
-  resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0"
-  integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==
+  version "1.19.5"
+  resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4"
+  integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==
   dependencies:
     "@types/connect" "*"
     "@types/node" "*"
 
 "@types/bonjour@^3.5.9":
-  version "3.5.10"
-  resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275"
-  integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==
+  version "3.5.13"
+  resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956"
+  integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==
   dependencies:
     "@types/node" "*"
 
 "@types/concat-stream@^2.0.0":
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/@types/concat-stream/-/concat-stream-2.0.0.tgz#a716f0ba9015014e643addb351da05a73bef425c"
-  integrity sha512-t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw==
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/@types/concat-stream/-/concat-stream-2.0.3.tgz#1f5c2ad26525716c181191f7ed53408f78eb758e"
+  integrity sha512-3qe4oQAPNwVNwK4C9c8u+VJqv9kez+2MR4qJpoPFfXtgxxif1QbFusvXzK0/Wra2VX07smostI2VMmJNSpZjuQ==
   dependencies:
     "@types/node" "*"
 
 "@types/connect-history-api-fallback@^1.3.5":
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#9fd20b3974bdc2bcd4ac6567e2e0f6885cb2cf41"
-  integrity sha512-4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig==
+  version "1.5.4"
+  resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3"
+  integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==
   dependencies:
     "@types/express-serve-static-core" "*"
     "@types/node" "*"
 
 "@types/connect@*":
-  version "3.4.35"
-  resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1"
-  integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==
+  version "3.4.38"
+  resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858"
+  integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==
   dependencies:
     "@types/node" "*"
 
 "@types/debug@^4.0.0":
-  version "4.1.8"
-  resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317"
-  integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==
+  version "4.1.12"
+  resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917"
+  integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==
   dependencies:
     "@types/ms" "*"
 
 "@types/eslint-scope@^3.7.3":
-  version "3.7.4"
-  resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16"
-  integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==
+  version "3.7.7"
+  resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5"
+  integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==
   dependencies:
     "@types/eslint" "*"
     "@types/estree" "*"
 
-"@types/eslint@*", "@types/eslint@^8.37.0":
-  version "8.40.2"
-  resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d"
-  integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==
+"@types/eslint@*":
+  version "8.56.6"
+  resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.6.tgz#d5dc16cac025d313ee101108ba5714ea10eb3ed0"
+  integrity sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==
+  dependencies:
+    "@types/estree" "*"
+    "@types/json-schema" "*"
+
+"@types/eslint@^8.56.10":
+  version "8.56.12"
+  resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.12.tgz#1657c814ffeba4d2f84c0d4ba0f44ca7ea1ca53a"
+  integrity sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==
   dependencies:
     "@types/estree" "*"
     "@types/json-schema" "*"
 
 "@types/estree-jsx@^1.0.0":
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.0.tgz#7bfc979ab9f692b492017df42520f7f765e98df1"
-  integrity sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18"
+  integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==
   dependencies:
     "@types/estree" "*"
 
-"@types/estree@*", "@types/estree@^1.0.0":
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194"
-  integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==
+"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.5":
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
+  integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
+
+"@types/estree@1.0.6", "@types/estree@^1.0.6":
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
+  integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
 
 "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
-  version "4.17.35"
-  resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.35.tgz#c95dd4424f0d32e525d23812aa8ab8e4d3906c4f"
-  integrity sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==
+  version "4.17.43"
+  resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz#10d8444be560cb789c4735aea5eac6e5af45df54"
+  integrity sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==
   dependencies:
     "@types/node" "*"
     "@types/qs" "*"
@@ -3877,9 +2968,9 @@
     "@types/send" "*"
 
 "@types/express@*", "@types/express@^4.17.13":
-  version "4.17.17"
-  resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.17.tgz#01d5437f6ef9cfa8668e616e13c2f2ac9a491ae4"
-  integrity sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==
+  version "4.17.21"
+  resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d"
+  integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==
   dependencies:
     "@types/body-parser" "*"
     "@types/express-serve-static-core" "^4.17.33"
@@ -3891,17 +2982,10 @@
   resolved "https://registry.yarnpkg.com/@types/gtag.js/-/gtag.js-0.0.12.tgz#095122edca896689bdfcdd73b057e23064d23572"
   integrity sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==
 
-"@types/hast@^2.0.0":
-  version "2.3.4"
-  resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
-  integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
-  dependencies:
-    "@types/unist" "*"
-
-"@types/hast@^3.0.0":
-  version "3.0.3"
-  resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.3.tgz#7f75e6b43bc3f90316046a287d9ad3888309f7e1"
-  integrity sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==
+"@types/hast@^3.0.0", "@types/hast@^3.0.4":
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa"
+  integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==
   dependencies:
     "@types/unist" "*"
 
@@ -3921,62 +3005,62 @@
   integrity sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==
 
 "@types/http-errors@*":
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.1.tgz#20172f9578b225f6c7da63446f56d4ce108d5a65"
-  integrity sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f"
+  integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==
 
 "@types/http-proxy@^1.17.8":
-  version "1.17.11"
-  resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293"
-  integrity sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==
+  version "1.17.14"
+  resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec"
+  integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==
   dependencies:
     "@types/node" "*"
 
 "@types/is-empty@^1.0.0":
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/@types/is-empty/-/is-empty-1.2.1.tgz#18d7256a73e43ec51f8b75c25fbdc31350be52a6"
-  integrity sha512-a3xgqnFTuNJDm1fjsTjHocYJ40Cz3t8utYpi5GNaxzrJC2HSD08ym+whIL7fNqiqBCdM9bcqD1H/tORWAFXoZw==
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/@types/is-empty/-/is-empty-1.2.3.tgz#a2d55ea8a5ec57bf61e411ba2a9e5132fe4f0899"
+  integrity sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==
 
 "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
-  version "2.0.4"
-  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
-  integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==
+  version "2.0.6"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7"
+  integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==
 
 "@types/istanbul-lib-report@*":
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
-  integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf"
+  integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==
   dependencies:
     "@types/istanbul-lib-coverage" "*"
 
 "@types/istanbul-reports@^3.0.0":
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
-  integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54"
+  integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==
   dependencies:
     "@types/istanbul-lib-report" "*"
 
-"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
-  version "7.0.12"
-  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
-  integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
+"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+  version "7.0.15"
+  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
+  integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
 
 "@types/json5@^0.0.29":
   version "0.0.29"
   resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
   integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
 
-"@types/lodash@^4.14.195":
-  version "4.14.195"
-  resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.195.tgz#bafc975b252eb6cea78882ce8a7b6bf22a6de632"
-  integrity sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==
+"@types/lodash@^4.17.9":
+  version "4.17.9"
+  resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.9.tgz#0dc4902c229f6b8e2ac5456522104d7b1a230290"
+  integrity sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==
 
 "@types/mdast@^3.0.0":
-  version "3.0.11"
-  resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0"
-  integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==
+  version "3.0.15"
+  resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5"
+  integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==
   dependencies:
-    "@types/unist" "*"
+    "@types/unist" "^2"
 
 "@types/mdast@^4.0.0", "@types/mdast@^4.0.2":
   version "4.0.3"
@@ -3986,49 +3070,48 @@
     "@types/unist" "*"
 
 "@types/mdx@^2.0.0":
-  version "2.0.10"
-  resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.10.tgz#0d7b57fb1d83e27656156e4ee0dfba96532930e4"
-  integrity sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==
+  version "2.0.12"
+  resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.12.tgz#38db34cc8999b982beaec01399620bee6c65ef2e"
+  integrity sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==
 
 "@types/mime@*":
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
-  integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.4.tgz#2198ac274de6017b44d941e00261d5bc6a0e0a45"
+  integrity sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==
 
 "@types/mime@^1":
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
-  integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
-
-"@types/minimatch@^3.0.3":
-  version "3.0.5"
-  resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
-  integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
+  version "1.3.5"
+  resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690"
+  integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
 
 "@types/ms@*":
-  version "0.7.31"
-  resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
-  integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
+  version "0.7.34"
+  resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433"
+  integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==
+
+"@types/node-forge@^1.3.0":
+  version "1.3.11"
+  resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da"
+  integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==
+  dependencies:
+    "@types/node" "*"
 
-"@types/node@*":
-  version "20.4.0"
-  resolved "https://registry.yarnpkg.com/@types/node/-/node-20.4.0.tgz#01d637d1891e419bc85763b46f42809cd2d5addb"
-  integrity sha512-jfT7iTf/4kOQ9S7CHV9BIyRaQqHu67mOjsIQBC3BKZvzvUB6zLxEwJ6sBE3ozcvP8kF6Uk5PXN0Q+c0dfhGX0g==
+"@types/node@*", "@types/node@^20.0.0":
+  version "20.11.30"
+  resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.30.tgz#9c33467fc23167a347e73834f788f4b9f399d66f"
+  integrity sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==
+  dependencies:
+    undici-types "~5.26.4"
 
 "@types/node@^17.0.5":
   version "17.0.45"
   resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190"
   integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==
 
-"@types/node@^18.0.0":
-  version "18.16.19"
-  resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.19.tgz#cb03fca8910fdeb7595b755126a8a78144714eea"
-  integrity sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==
-
 "@types/parse-json@^4.0.0":
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
-  integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239"
+  integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
 
 "@types/prismjs@^1.26.0":
   version "1.26.3"
@@ -4036,44 +3119,28 @@
   integrity sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==
 
 "@types/prop-types@*":
-  version "15.7.5"
-  resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
-  integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
+  version "15.7.12"
+  resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6"
+  integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==
 
 "@types/qs@*":
-  version "6.9.7"
-  resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb"
-  integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==
+  version "6.9.14"
+  resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.14.tgz#169e142bfe493895287bee382af6039795e9b75b"
+  integrity sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==
 
 "@types/range-parser@*":
-  version "1.2.4"
-  resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
-  integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
-
-"@types/react-copy-to-clipboard@^5.0.4":
-  version "5.0.4"
-  resolved "https://registry.yarnpkg.com/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.4.tgz#558f2c38a97f53693e537815f6024f1e41e36a7e"
-  integrity sha512-otTJsJpofYAeaIeOwV5xBUGpo6exXG2HX7X4nseToCB2VgPEBxGBHCm/FecZ676doNR7HCSTVtmohxfG2b3/yQ==
-  dependencies:
-    "@types/react" "*"
-
-"@types/react-dom@^18.0.10":
-  version "18.2.6"
-  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.6.tgz#ad621fa71a8db29af7c31b41b2ea3d8a6f4144d1"
-  integrity sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==
-  dependencies:
-    "@types/react" "*"
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
+  integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
 
-"@types/react-router-config@*":
-  version "5.0.7"
-  resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.7.tgz#36207a3fe08b271abee62b26993ee932d13cbb02"
-  integrity sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w==
+"@types/react-dom@^18.3.0":
+  version "18.3.0"
+  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.0.tgz#0cbc818755d87066ab6ca74fbedb2547d74a82b0"
+  integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==
   dependencies:
-    "@types/history" "^4.7.11"
     "@types/react" "*"
-    "@types/react-router" "^5.1.0"
 
-"@types/react-router-config@^5.0.7":
+"@types/react-router-config@*", "@types/react-router-config@^5.0.7":
   version "5.0.11"
   resolved "https://registry.yarnpkg.com/@types/react-router-config/-/react-router-config-5.0.11.tgz#2761a23acc7905a66a94419ee40294a65aaa483a"
   integrity sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==
@@ -4099,13 +3166,20 @@
     "@types/history" "^4.7.11"
     "@types/react" "*"
 
-"@types/react@*", "@types/react@^18.0.27":
-  version "18.2.14"
-  resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.14.tgz#fa7a6fecf1ce35ca94e74874f70c56ce88f7a127"
-  integrity sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==
+"@types/react@*":
+  version "18.2.73"
+  resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.73.tgz#0579548ad122660d99e00499d22e33b81e73ed94"
+  integrity sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==
+  dependencies:
+    "@types/prop-types" "*"
+    csstype "^3.0.2"
+
+"@types/react@^18.3.9":
+  version "18.3.9"
+  resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.9.tgz#2cdf5f425ec8a133d67e9e3673909738b783db20"
+  integrity sha512-+BpAVyTpJkNWWSSnaLBk6ePpHLOGJKnEQNbINNovPWzvEUyAe3e+/d494QdEh71RekM/qV7lw6jzf1HGrJyAtQ==
   dependencies:
     "@types/prop-types" "*"
-    "@types/scheduler" "*"
     csstype "^3.0.2"
 
 "@types/resolve@1.20.2":
@@ -4119,96 +3193,91 @@
   integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
 
 "@types/sax@^1.2.1":
-  version "1.2.4"
-  resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.4.tgz#8221affa7f4f3cb21abd22f244cfabfa63e6a69e"
-  integrity sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==
+  version "1.2.7"
+  resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.7.tgz#ba5fe7df9aa9c89b6dff7688a19023dd2963091d"
+  integrity sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==
   dependencies:
     "@types/node" "*"
 
-"@types/scheduler@*":
-  version "0.16.3"
-  resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5"
-  integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==
-
 "@types/semver@^7.3.12":
-  version "7.5.0"
-  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
-  integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==
+  version "7.5.8"
+  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
+  integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
 
 "@types/send@*":
-  version "0.17.1"
-  resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.1.tgz#ed4932b8a2a805f1fe362a70f4e62d0ac994e301"
-  integrity sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==
+  version "0.17.4"
+  resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a"
+  integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==
   dependencies:
     "@types/mime" "^1"
     "@types/node" "*"
 
 "@types/serve-index@^1.9.1":
-  version "1.9.1"
-  resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278"
-  integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==
+  version "1.9.4"
+  resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898"
+  integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==
   dependencies:
     "@types/express" "*"
 
 "@types/serve-static@*", "@types/serve-static@^1.13.10":
-  version "1.15.2"
-  resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.2.tgz#3e5419ecd1e40e7405d34093f10befb43f63381a"
-  integrity sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==
+  version "1.15.5"
+  resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.5.tgz#15e67500ec40789a1e8c9defc2d32a896f05b033"
+  integrity sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==
   dependencies:
     "@types/http-errors" "*"
     "@types/mime" "*"
     "@types/node" "*"
 
 "@types/sockjs@^0.3.33":
-  version "0.3.33"
-  resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f"
-  integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==
+  version "0.3.36"
+  resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535"
+  integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==
   dependencies:
     "@types/node" "*"
 
 "@types/supports-color@^8.0.0":
-  version "8.1.1"
-  resolved "https://registry.yarnpkg.com/@types/supports-color/-/supports-color-8.1.1.tgz#1b44b1b096479273adf7f93c75fc4ecc40a61ee4"
-  integrity sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw==
-
-"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2":
-  version "2.0.6"
-  resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
-  integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
+  version "8.1.3"
+  resolved "https://registry.yarnpkg.com/@types/supports-color/-/supports-color-8.1.3.tgz#b769cdce1d1bb1a3fa794e35b62c62acdf93c139"
+  integrity sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==
 
-"@types/unist@^3.0.0":
+"@types/unist@*", "@types/unist@^3.0.0":
   version "3.0.2"
   resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20"
   integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==
 
+"@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2":
+  version "2.0.10"
+  resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc"
+  integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==
+
 "@types/ws@^8.5.5":
-  version "8.5.5"
-  resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.5.tgz#af587964aa06682702ee6dcbc7be41a80e4b28eb"
-  integrity sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==
+  version "8.5.10"
+  resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787"
+  integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==
   dependencies:
     "@types/node" "*"
 
 "@types/yargs-parser@*":
-  version "21.0.0"
-  resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
-  integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
+  version "21.0.3"
+  resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15"
+  integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==
 
 "@types/yargs@^17.0.8":
-  version "17.0.24"
-  resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
-  integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==
+  version "17.0.32"
+  resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229"
+  integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==
   dependencies:
     "@types/yargs-parser" "*"
 
-"@typescript-eslint/eslint-plugin@^5.5.0", "@typescript-eslint/eslint-plugin@^5.50.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.61.0.tgz#a1a5290cf33863b4db3fb79350b3c5275a7b1223"
-  integrity sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==
+"@typescript-eslint/eslint-plugin@^5.5.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db"
+  integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==
   dependencies:
     "@eslint-community/regexpp" "^4.4.0"
-    "@typescript-eslint/scope-manager" "5.61.0"
-    "@typescript-eslint/type-utils" "5.61.0"
-    "@typescript-eslint/utils" "5.61.0"
+    "@typescript-eslint/scope-manager" "5.62.0"
+    "@typescript-eslint/type-utils" "5.62.0"
+    "@typescript-eslint/utils" "5.62.0"
     debug "^4.3.4"
     graphemer "^1.4.0"
     ignore "^5.2.0"
@@ -4216,90 +3285,171 @@
     semver "^7.3.7"
     tsutils "^3.21.0"
 
+"@typescript-eslint/eslint-plugin@^8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.7.0.tgz#d0070f206daad26253bf00ca5b80f9b54f9e2dd0"
+  integrity sha512-RIHOoznhA3CCfSTFiB6kBGLQtB/sox+pJ6jeFu6FxJvqL8qRxq/FfGO/UhsGgQM9oGdXkV4xUgli+dt26biB6A==
+  dependencies:
+    "@eslint-community/regexpp" "^4.10.0"
+    "@typescript-eslint/scope-manager" "8.7.0"
+    "@typescript-eslint/type-utils" "8.7.0"
+    "@typescript-eslint/utils" "8.7.0"
+    "@typescript-eslint/visitor-keys" "8.7.0"
+    graphemer "^1.4.0"
+    ignore "^5.3.1"
+    natural-compare "^1.4.0"
+    ts-api-utils "^1.3.0"
+
 "@typescript-eslint/experimental-utils@^5.0.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.61.0.tgz#5ab9f8f1f7e7a43c68a48c450d972c7e400a2be4"
-  integrity sha512-r4RTnwTcaRRVUyKb7JO4DiOGmcMCat+uNs6HqJBfX7K2nlq5TagYZShhbhAw7hFT3bHaYgxMw6pKP0fhu05VMA==
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz#14559bf73383a308026b427a4a6129bae2146741"
+  integrity sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==
+  dependencies:
+    "@typescript-eslint/utils" "5.62.0"
+
+"@typescript-eslint/parser@^5.5.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7"
+  integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==
   dependencies:
-    "@typescript-eslint/utils" "5.61.0"
+    "@typescript-eslint/scope-manager" "5.62.0"
+    "@typescript-eslint/types" "5.62.0"
+    "@typescript-eslint/typescript-estree" "5.62.0"
+    debug "^4.3.4"
 
-"@typescript-eslint/parser@^5.5.0", "@typescript-eslint/parser@^5.50.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.61.0.tgz#7fbe3e2951904bb843f8932ebedd6e0635bffb70"
-  integrity sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==
+"@typescript-eslint/parser@^8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.7.0.tgz#a567b0890d13db72c7348e1d88442ea8ab4e9173"
+  integrity sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==
   dependencies:
-    "@typescript-eslint/scope-manager" "5.61.0"
-    "@typescript-eslint/types" "5.61.0"
-    "@typescript-eslint/typescript-estree" "5.61.0"
+    "@typescript-eslint/scope-manager" "8.7.0"
+    "@typescript-eslint/types" "8.7.0"
+    "@typescript-eslint/typescript-estree" "8.7.0"
+    "@typescript-eslint/visitor-keys" "8.7.0"
     debug "^4.3.4"
 
-"@typescript-eslint/scope-manager@5.61.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.61.0.tgz#b670006d069c9abe6415c41f754b1b5d949ef2b2"
-  integrity sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==
+"@typescript-eslint/scope-manager@5.62.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c"
+  integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==
   dependencies:
-    "@typescript-eslint/types" "5.61.0"
-    "@typescript-eslint/visitor-keys" "5.61.0"
+    "@typescript-eslint/types" "5.62.0"
+    "@typescript-eslint/visitor-keys" "5.62.0"
 
-"@typescript-eslint/type-utils@5.61.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.61.0.tgz#e90799eb2045c4435ea8378cb31cd8a9fddca47a"
-  integrity sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==
+"@typescript-eslint/scope-manager@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.7.0.tgz#90ee7bf9bc982b9260b93347c01a8bc2b595e0b8"
+  integrity sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==
   dependencies:
-    "@typescript-eslint/typescript-estree" "5.61.0"
-    "@typescript-eslint/utils" "5.61.0"
+    "@typescript-eslint/types" "8.7.0"
+    "@typescript-eslint/visitor-keys" "8.7.0"
+
+"@typescript-eslint/type-utils@5.62.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a"
+  integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==
+  dependencies:
+    "@typescript-eslint/typescript-estree" "5.62.0"
+    "@typescript-eslint/utils" "5.62.0"
     debug "^4.3.4"
     tsutils "^3.21.0"
 
-"@typescript-eslint/types@5.61.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.61.0.tgz#e99ff11b5792d791554abab0f0370936d8ca50c0"
-  integrity sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==
+"@typescript-eslint/type-utils@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.7.0.tgz#d56b104183bdcffcc434a23d1ce26cde5e42df93"
+  integrity sha512-tl0N0Mj3hMSkEYhLkjREp54OSb/FI6qyCzfiiclvJvOqre6hsZTGSnHtmFLDU8TIM62G7ygEa1bI08lcuRwEnQ==
+  dependencies:
+    "@typescript-eslint/typescript-estree" "8.7.0"
+    "@typescript-eslint/utils" "8.7.0"
+    debug "^4.3.4"
+    ts-api-utils "^1.3.0"
+
+"@typescript-eslint/types@5.62.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
+  integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
+
+"@typescript-eslint/types@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.7.0.tgz#21d987201c07b69ce7ddc03451d7196e5445ad19"
+  integrity sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==
 
-"@typescript-eslint/typescript-estree@5.61.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.61.0.tgz#4c7caca84ce95bb41aa585d46a764bcc050b92f3"
-  integrity sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==
+"@typescript-eslint/typescript-estree@5.62.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
+  integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==
   dependencies:
-    "@typescript-eslint/types" "5.61.0"
-    "@typescript-eslint/visitor-keys" "5.61.0"
+    "@typescript-eslint/types" "5.62.0"
+    "@typescript-eslint/visitor-keys" "5.62.0"
     debug "^4.3.4"
     globby "^11.1.0"
     is-glob "^4.0.3"
     semver "^7.3.7"
     tsutils "^3.21.0"
 
-"@typescript-eslint/utils@5.61.0", "@typescript-eslint/utils@^5.58.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.61.0.tgz#5064838a53e91c754fffbddd306adcca3fe0af36"
-  integrity sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==
+"@typescript-eslint/typescript-estree@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.7.0.tgz#6c7db6baa4380b937fa81466c546d052f362d0e8"
+  integrity sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==
+  dependencies:
+    "@typescript-eslint/types" "8.7.0"
+    "@typescript-eslint/visitor-keys" "8.7.0"
+    debug "^4.3.4"
+    fast-glob "^3.3.2"
+    is-glob "^4.0.3"
+    minimatch "^9.0.4"
+    semver "^7.6.0"
+    ts-api-utils "^1.3.0"
+
+"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.58.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86"
+  integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==
   dependencies:
     "@eslint-community/eslint-utils" "^4.2.0"
     "@types/json-schema" "^7.0.9"
     "@types/semver" "^7.3.12"
-    "@typescript-eslint/scope-manager" "5.61.0"
-    "@typescript-eslint/types" "5.61.0"
-    "@typescript-eslint/typescript-estree" "5.61.0"
+    "@typescript-eslint/scope-manager" "5.62.0"
+    "@typescript-eslint/types" "5.62.0"
+    "@typescript-eslint/typescript-estree" "5.62.0"
     eslint-scope "^5.1.1"
     semver "^7.3.7"
 
-"@typescript-eslint/visitor-keys@5.61.0":
-  version "5.61.0"
-  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.61.0.tgz#c79414fa42158fd23bd2bb70952dc5cdbb298140"
-  integrity sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==
+"@typescript-eslint/utils@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.7.0.tgz#cef3f70708b5b5fd7ed8672fc14714472bd8a011"
+  integrity sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==
+  dependencies:
+    "@eslint-community/eslint-utils" "^4.4.0"
+    "@typescript-eslint/scope-manager" "8.7.0"
+    "@typescript-eslint/types" "8.7.0"
+    "@typescript-eslint/typescript-estree" "8.7.0"
+
+"@typescript-eslint/visitor-keys@5.62.0":
+  version "5.62.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
+  integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==
   dependencies:
-    "@typescript-eslint/types" "5.61.0"
+    "@typescript-eslint/types" "5.62.0"
     eslint-visitor-keys "^3.3.0"
 
+"@typescript-eslint/visitor-keys@8.7.0":
+  version "8.7.0"
+  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.7.0.tgz#5e46f1777f9d69360a883c1a56ac3c511c9659a8"
+  integrity sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==
+  dependencies:
+    "@typescript-eslint/types" "8.7.0"
+    eslint-visitor-keys "^3.4.3"
+
 "@ungap/structured-clone@^1.0.0", "@ungap/structured-clone@^1.2.0":
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
   integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
 
-"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24"
-  integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==
+"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb"
+  integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==
   dependencies:
     "@webassemblyjs/helper-numbers" "1.11.6"
     "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
@@ -4314,10 +3464,10 @@
   resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768"
   integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==
 
-"@webassemblyjs/helper-buffer@1.11.6":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093"
-  integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==
+"@webassemblyjs/helper-buffer@1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6"
+  integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==
 
 "@webassemblyjs/helper-numbers@1.11.6":
   version "1.11.6"
@@ -4333,15 +3483,15 @@
   resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9"
   integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==
 
-"@webassemblyjs/helper-wasm-section@1.11.6":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577"
-  integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==
+"@webassemblyjs/helper-wasm-section@1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf"
+  integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==
   dependencies:
-    "@webassemblyjs/ast" "1.11.6"
-    "@webassemblyjs/helper-buffer" "1.11.6"
+    "@webassemblyjs/ast" "1.12.1"
+    "@webassemblyjs/helper-buffer" "1.12.1"
     "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
-    "@webassemblyjs/wasm-gen" "1.11.6"
+    "@webassemblyjs/wasm-gen" "1.12.1"
 
 "@webassemblyjs/ieee754@1.11.6":
   version "1.11.6"
@@ -4362,59 +3512,59 @@
   resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a"
   integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==
 
-"@webassemblyjs/wasm-edit@^1.11.5":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab"
-  integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==
+"@webassemblyjs/wasm-edit@^1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b"
+  integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==
   dependencies:
-    "@webassemblyjs/ast" "1.11.6"
-    "@webassemblyjs/helper-buffer" "1.11.6"
+    "@webassemblyjs/ast" "1.12.1"
+    "@webassemblyjs/helper-buffer" "1.12.1"
     "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
-    "@webassemblyjs/helper-wasm-section" "1.11.6"
-    "@webassemblyjs/wasm-gen" "1.11.6"
-    "@webassemblyjs/wasm-opt" "1.11.6"
-    "@webassemblyjs/wasm-parser" "1.11.6"
-    "@webassemblyjs/wast-printer" "1.11.6"
-
-"@webassemblyjs/wasm-gen@1.11.6":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268"
-  integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==
-  dependencies:
-    "@webassemblyjs/ast" "1.11.6"
+    "@webassemblyjs/helper-wasm-section" "1.12.1"
+    "@webassemblyjs/wasm-gen" "1.12.1"
+    "@webassemblyjs/wasm-opt" "1.12.1"
+    "@webassemblyjs/wasm-parser" "1.12.1"
+    "@webassemblyjs/wast-printer" "1.12.1"
+
+"@webassemblyjs/wasm-gen@1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547"
+  integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==
+  dependencies:
+    "@webassemblyjs/ast" "1.12.1"
     "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
     "@webassemblyjs/ieee754" "1.11.6"
     "@webassemblyjs/leb128" "1.11.6"
     "@webassemblyjs/utf8" "1.11.6"
 
-"@webassemblyjs/wasm-opt@1.11.6":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2"
-  integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==
+"@webassemblyjs/wasm-opt@1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5"
+  integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==
   dependencies:
-    "@webassemblyjs/ast" "1.11.6"
-    "@webassemblyjs/helper-buffer" "1.11.6"
-    "@webassemblyjs/wasm-gen" "1.11.6"
-    "@webassemblyjs/wasm-parser" "1.11.6"
+    "@webassemblyjs/ast" "1.12.1"
+    "@webassemblyjs/helper-buffer" "1.12.1"
+    "@webassemblyjs/wasm-gen" "1.12.1"
+    "@webassemblyjs/wasm-parser" "1.12.1"
 
-"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1"
-  integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==
+"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937"
+  integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==
   dependencies:
-    "@webassemblyjs/ast" "1.11.6"
+    "@webassemblyjs/ast" "1.12.1"
     "@webassemblyjs/helper-api-error" "1.11.6"
     "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
     "@webassemblyjs/ieee754" "1.11.6"
     "@webassemblyjs/leb128" "1.11.6"
     "@webassemblyjs/utf8" "1.11.6"
 
-"@webassemblyjs/wast-printer@1.11.6":
-  version "1.11.6"
-  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20"
-  integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==
+"@webassemblyjs/wast-printer@1.12.1":
+  version "1.12.1"
+  resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac"
+  integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==
   dependencies:
-    "@webassemblyjs/ast" "1.11.6"
+    "@webassemblyjs/ast" "1.12.1"
     "@xtuc/long" "4.2.2"
 
 "@xtuc/ieee754@^1.2.0":
@@ -4461,19 +3611,24 @@ acorn-jsx@^5.0.0, acorn-jsx@^5.0.1, acorn-jsx@^5.3.2:
   integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
 
 acorn-walk@^8.0.0:
-  version "8.2.0"
-  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
-  integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
+  version "8.3.2"
+  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa"
+  integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==
 
 acorn@^6.1.1:
   version "6.4.2"
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
   integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
 
-acorn@^8.0.0, acorn@^8.0.4, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
-  version "8.10.0"
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
-  integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
+acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.3, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
+  version "8.11.3"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a"
+  integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==
+
+acorn@^8.12.0:
+  version "8.12.1"
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248"
+  integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==
 
 address@^1.0.1, address@^1.1.2:
   version "1.2.2"
@@ -4507,7 +3662,7 @@ ajv-keywords@^5.1.0:
   dependencies:
     fast-deep-equal "^3.1.3"
 
-ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
+ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
   version "6.12.6"
   resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
   integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -4528,31 +3683,32 @@ ajv@^8.0.0, ajv@^8.9.0:
     uri-js "^4.2.2"
 
 algoliasearch-helper@^3.13.3:
-  version "3.16.1"
-  resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.16.1.tgz#421e3554ec86e14e60e7e0bf796aef61cf4a06ec"
-  integrity sha512-qxAHVjjmT7USVvrM8q6gZGaJlCK1fl4APfdAA7o8O6iXEc68G0xMNrzRkxoB/HmhhvyHnoteS/iMTiHiTcQQcg==
+  version "3.16.3"
+  resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.16.3.tgz#38c3a18e278306f565823cc7f3dd706825b4bfb9"
+  integrity sha512-1OuJT6sONAa9PxcOmWo5WCAT3jQSpCR9/m5Azujja7nhUQwAUDvaaAYrcmUySsrvHh74usZHbE3jFfGnWtZj8w==
   dependencies:
     "@algolia/events" "^4.0.1"
 
 algoliasearch@^4.18.0, algoliasearch@^4.19.1:
-  version "4.22.0"
-  resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.22.0.tgz#9ece4446b5ab0af941ef97553c18ddcd1b8040a5"
-  integrity sha512-gfceltjkwh7PxXwtkS8KVvdfK+TSNQAWUeNSxf4dA29qW5tf2EGwa8jkJujlT9jLm17cixMVoGNc+GJFO1Mxhg==
-  dependencies:
-    "@algolia/cache-browser-local-storage" "4.22.0"
-    "@algolia/cache-common" "4.22.0"
-    "@algolia/cache-in-memory" "4.22.0"
-    "@algolia/client-account" "4.22.0"
-    "@algolia/client-analytics" "4.22.0"
-    "@algolia/client-common" "4.22.0"
-    "@algolia/client-personalization" "4.22.0"
-    "@algolia/client-search" "4.22.0"
-    "@algolia/logger-common" "4.22.0"
-    "@algolia/logger-console" "4.22.0"
-    "@algolia/requester-browser-xhr" "4.22.0"
-    "@algolia/requester-common" "4.22.0"
-    "@algolia/requester-node-http" "4.22.0"
-    "@algolia/transporter" "4.22.0"
+  version "4.23.2"
+  resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.23.2.tgz#3b7bc93d98f3965628c73a06cbf9203531324a9d"
+  integrity sha512-8aCl055IsokLuPU8BzLjwzXjb7ty9TPcUFFOk0pYOwsE5DMVhE3kwCMFtsCFKcnoPZK7oObm+H5mbnSO/9ioxQ==
+  dependencies:
+    "@algolia/cache-browser-local-storage" "4.23.2"
+    "@algolia/cache-common" "4.23.2"
+    "@algolia/cache-in-memory" "4.23.2"
+    "@algolia/client-account" "4.23.2"
+    "@algolia/client-analytics" "4.23.2"
+    "@algolia/client-common" "4.23.2"
+    "@algolia/client-personalization" "4.23.2"
+    "@algolia/client-search" "4.23.2"
+    "@algolia/logger-common" "4.23.2"
+    "@algolia/logger-console" "4.23.2"
+    "@algolia/recommend" "4.23.2"
+    "@algolia/requester-browser-xhr" "4.23.2"
+    "@algolia/requester-common" "4.23.2"
+    "@algolia/requester-node-http" "4.23.2"
+    "@algolia/transporter" "4.23.2"
 
 ansi-align@^3.0.1:
   version "3.0.1"
@@ -4561,12 +3717,12 @@ ansi-align@^3.0.1:
   dependencies:
     string-width "^4.1.0"
 
-ansi-escapes@^4.3.0:
-  version "4.3.2"
-  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
-  integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+ansi-escapes@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.0.0.tgz#00fc19f491bbb18e1d481b97868204f92109bfe7"
+  integrity sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==
   dependencies:
-    type-fest "^0.21.3"
+    environment "^1.0.0"
 
 ansi-html-community@^0.0.8:
   version "0.0.8"
@@ -4583,11 +3739,6 @@ ansi-regex@^6.0.1:
   resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
   integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
 
-ansi-sequence-parser@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz#4d790f31236ac20366b23b3916b789e1bde39aed"
-  integrity sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==
-
 ansi-styles@^3.2.1:
   version "3.2.1"
   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -4602,7 +3753,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
   dependencies:
     color-convert "^2.0.1"
 
-ansi-styles@^6.0.0, ansi-styles@^6.1.0:
+ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1:
   version "6.2.1"
   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
   integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
@@ -4637,45 +3788,43 @@ argparse@^2.0.1:
   resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
   integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
 
-aria-query@^5.1.3:
+aria-query@^5.3.0:
   version "5.3.0"
   resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e"
   integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
   dependencies:
     dequal "^2.0.3"
 
-array-buffer-byte-length@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
-  integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+aria-query@~5.1.3:
+  version "5.1.3"
+  resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
+  integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==
   dependencies:
-    call-bind "^1.0.2"
-    is-array-buffer "^3.0.1"
+    deep-equal "^2.0.5"
 
-array-differ@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b"
-  integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==
+array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f"
+  integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==
+  dependencies:
+    call-bind "^1.0.5"
+    is-array-buffer "^3.0.4"
 
 array-flatten@1.1.1:
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
   integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
 
-array-flatten@^2.1.2:
-  version "2.1.2"
-  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
-  integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
-
-array-includes@^3.1.6:
-  version "3.1.6"
-  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
-  integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
+array-includes@^3.1.6, array-includes@^3.1.7, array-includes@^3.1.8:
+  version "3.1.8"
+  resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d"
+  integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
-    get-intrinsic "^1.1.3"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-object-atoms "^1.0.0"
+    get-intrinsic "^1.2.4"
     is-string "^1.0.7"
 
 array-union@^2.1.0:
@@ -4683,51 +3832,100 @@ array-union@^2.1.0:
   resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
   integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
 
-array.prototype.flat@^1.3.1:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2"
-  integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==
+array.prototype.findlast@^1.2.4, array.prototype.findlast@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904"
+  integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    es-shim-unscopables "^1.0.2"
+
+array.prototype.findlastindex@^1.2.3, array.prototype.findlastindex@^1.2.5:
+  version "1.2.5"
+  resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d"
+  integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    es-shim-unscopables "^1.0.2"
+
+array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18"
+  integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
   dependencies:
     call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    define-properties "^1.2.0"
+    es-abstract "^1.22.1"
     es-shim-unscopables "^1.0.0"
 
-array.prototype.flatmap@^1.3.1:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183"
-  integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
+array.prototype.flatmap@^1.3.2:
+  version "1.3.2"
+  resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527"
+  integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
   dependencies:
     call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    define-properties "^1.2.0"
+    es-abstract "^1.22.1"
     es-shim-unscopables "^1.0.0"
 
-array.prototype.tosorted@^1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532"
-  integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==
+array.prototype.toreversed@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz#b989a6bf35c4c5051e1dc0325151bf8088954eba"
+  integrity sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==
   dependencies:
     call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    define-properties "^1.2.0"
+    es-abstract "^1.22.1"
     es-shim-unscopables "^1.0.0"
-    get-intrinsic "^1.1.3"
 
-arrify@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
-  integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+array.prototype.tosorted@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz#c8c89348337e51b8a3c48a9227f9ce93ceedcba8"
+  integrity sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==
+  dependencies:
+    call-bind "^1.0.5"
+    define-properties "^1.2.1"
+    es-abstract "^1.22.3"
+    es-errors "^1.1.0"
+    es-shim-unscopables "^1.0.2"
+
+array.prototype.tosorted@^1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc"
+  integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.3"
+    es-errors "^1.3.0"
+    es-shim-unscopables "^1.0.2"
 
-ast-types-flow@^0.0.7:
-  version "0.0.7"
-  resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
-  integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==
+arraybuffer.prototype.slice@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6"
+  integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==
+  dependencies:
+    array-buffer-byte-length "^1.0.1"
+    call-bind "^1.0.5"
+    define-properties "^1.2.1"
+    es-abstract "^1.22.3"
+    es-errors "^1.2.1"
+    get-intrinsic "^1.2.3"
+    is-array-buffer "^3.0.4"
+    is-shared-array-buffer "^1.0.2"
 
-astral-regex@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
-  integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
+ast-types-flow@^0.0.8:
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6"
+  integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==
 
 astring@^1.8.0:
   version "1.8.6"
@@ -4739,47 +3937,59 @@ at-least-node@^1.0.0:
   resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
   integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
 
-autoprefixer@^10.4.12:
-  version "10.4.14"
-  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d"
-  integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==
+autoprefixer@^10.4.14:
+  version "10.4.19"
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f"
+  integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==
   dependencies:
-    browserslist "^4.21.5"
-    caniuse-lite "^1.0.30001464"
-    fraction.js "^4.2.0"
+    browserslist "^4.23.0"
+    caniuse-lite "^1.0.30001599"
+    fraction.js "^4.3.7"
     normalize-range "^0.1.2"
     picocolors "^1.0.0"
     postcss-value-parser "^4.2.0"
 
-autoprefixer@^10.4.14, autoprefixer@^10.4.16:
-  version "10.4.16"
-  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8"
-  integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==
+autoprefixer@^10.4.19:
+  version "10.4.20"
+  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.20.tgz#5caec14d43976ef42e32dcb4bd62878e96be5b3b"
+  integrity sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==
   dependencies:
-    browserslist "^4.21.10"
-    caniuse-lite "^1.0.30001538"
-    fraction.js "^4.3.6"
+    browserslist "^4.23.3"
+    caniuse-lite "^1.0.30001646"
+    fraction.js "^4.3.7"
     normalize-range "^0.1.2"
-    picocolors "^1.0.0"
+    picocolors "^1.0.1"
     postcss-value-parser "^4.2.0"
 
-available-typed-arrays@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
-  integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
+available-typed-arrays@^1.0.7:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846"
+  integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==
+  dependencies:
+    possible-typed-array-names "^1.0.0"
+
+axe-core@=4.7.0:
+  version "4.7.0"
+  resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf"
+  integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==
 
-axe-core@^4.6.2:
-  version "4.7.2"
-  resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0"
-  integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==
+axe-core@^4.10.0:
+  version "4.10.0"
+  resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.10.0.tgz#d9e56ab0147278272739a000880196cdfe113b59"
+  integrity sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==
 
-axobject-query@^3.1.1:
+axobject-query@^3.2.1:
   version "3.2.1"
   resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a"
   integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==
   dependencies:
     dequal "^2.0.3"
 
+axobject-query@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-4.1.0.tgz#28768c76d0e3cff21bc62a9e2d0b6ac30042a1ee"
+  integrity sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==
+
 babel-loader@^9.1.3:
   version "9.1.3"
   resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a"
@@ -4804,53 +4014,29 @@ babel-plugin-macros@^3.1.0:
     cosmiconfig "^7.0.0"
     resolve "^1.19.0"
 
-babel-plugin-polyfill-corejs2@^0.4.4:
-  version "0.4.4"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.4.tgz#9f9a0e1cd9d645cc246a5e094db5c3aa913ccd2b"
-  integrity sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==
-  dependencies:
-    "@babel/compat-data" "^7.22.6"
-    "@babel/helper-define-polyfill-provider" "^0.4.1"
-    "@nicolo-ribaudo/semver-v6" "^6.3.3"
-
-babel-plugin-polyfill-corejs2@^0.4.7:
-  version "0.4.7"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz#679d1b94bf3360f7682e11f2cb2708828a24fe8c"
-  integrity sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==
+babel-plugin-polyfill-corejs2@^0.4.10:
+  version "0.4.10"
+  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz#276f41710b03a64f6467433cab72cbc2653c38b1"
+  integrity sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==
   dependencies:
     "@babel/compat-data" "^7.22.6"
-    "@babel/helper-define-polyfill-provider" "^0.4.4"
+    "@babel/helper-define-polyfill-provider" "^0.6.1"
     semver "^6.3.1"
 
-babel-plugin-polyfill-corejs3@^0.8.2:
-  version "0.8.2"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.2.tgz#d406c5738d298cd9c66f64a94cf8d5904ce4cc5e"
-  integrity sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==
-  dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.1"
-    core-js-compat "^3.31.0"
-
-babel-plugin-polyfill-corejs3@^0.8.7:
-  version "0.8.7"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz#941855aa7fdaac06ed24c730a93450d2b2b76d04"
-  integrity sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==
-  dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.4"
-    core-js-compat "^3.33.1"
-
-babel-plugin-polyfill-regenerator@^0.5.1:
-  version "0.5.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.1.tgz#ace7a5eced6dff7d5060c335c52064778216afd3"
-  integrity sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==
+babel-plugin-polyfill-corejs3@^0.10.1, babel-plugin-polyfill-corejs3@^0.10.4:
+  version "0.10.4"
+  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77"
+  integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==
   dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.1"
+    "@babel/helper-define-polyfill-provider" "^0.6.1"
+    core-js-compat "^3.36.1"
 
-babel-plugin-polyfill-regenerator@^0.5.4:
-  version "0.5.4"
-  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz#c6fc8eab610d3a11eb475391e52584bacfc020f4"
-  integrity sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==
+babel-plugin-polyfill-regenerator@^0.6.1:
+  version "0.6.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz#4f08ef4c62c7a7f66a35ed4c0d75e30506acc6be"
+  integrity sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==
   dependencies:
-    "@babel/helper-define-polyfill-provider" "^0.4.4"
+    "@babel/helper-define-polyfill-provider" "^0.6.1"
 
 babel-plugin-transform-react-remove-prop-types@^0.4.24:
   version "0.4.24"
@@ -4894,33 +4080,28 @@ batch@0.6.1:
   resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
   integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
 
-big-integer@^1.6.44:
-  version "1.6.51"
-  resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686"
-  integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==
-
 big.js@^5.2.2:
   version "5.2.2"
   resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
   integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
 
-bignumber.js@^9.1.1:
-  version "9.1.1"
-  resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6"
-  integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==
+bignumber.js@^9.1.2:
+  version "9.1.2"
+  resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.2.tgz#b7c4242259c008903b13707983b5f4bbd31eda0c"
+  integrity sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==
 
 binary-extensions@^2.0.0:
-  version "2.2.0"
-  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
-  integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
+  version "2.3.0"
+  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
+  integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
 
-body-parser@1.20.1:
-  version "1.20.1"
-  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668"
-  integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==
+body-parser@1.20.2:
+  version "1.20.2"
+  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd"
+  integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
   dependencies:
     bytes "3.1.2"
-    content-type "~1.0.4"
+    content-type "~1.0.5"
     debug "2.6.9"
     depd "2.0.0"
     destroy "1.2.0"
@@ -4928,17 +4109,15 @@ body-parser@1.20.1:
     iconv-lite "0.4.24"
     on-finished "2.4.1"
     qs "6.11.0"
-    raw-body "2.5.1"
+    raw-body "2.5.2"
     type-is "~1.6.18"
     unpipe "1.0.0"
 
 bonjour-service@^1.0.11:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
-  integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.2.1.tgz#eb41b3085183df3321da1264719fbada12478d02"
+  integrity sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==
   dependencies:
-    array-flatten "^2.1.2"
-    dns-equal "^1.0.0"
     fast-deep-equal "^3.1.3"
     multicast-dns "^7.2.5"
 
@@ -4975,13 +4154,6 @@ boxen@^7.0.0:
     widest-line "^4.0.1"
     wrap-ansi "^8.1.0"
 
-bplist-parser@^0.2.0:
-  version "0.2.0"
-  resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e"
-  integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==
-  dependencies:
-    big-integer "^1.6.44"
-
 brace-expansion@^1.1.7:
   version "1.1.11"
   resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -5004,53 +4176,38 @@ braces@^3.0.2, braces@~3.0.2:
   dependencies:
     fill-range "^7.0.1"
 
-browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.21.9:
-  version "4.21.9"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
-  integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
-  dependencies:
-    caniuse-lite "^1.0.30001503"
-    electron-to-chromium "^1.4.431"
-    node-releases "^2.0.12"
-    update-browserslist-db "^1.0.11"
-
-browserslist@^4.21.10, browserslist@^4.22.1:
-  version "4.22.1"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619"
-  integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==
+braces@^3.0.3:
+  version "3.0.3"
+  resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+  integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
   dependencies:
-    caniuse-lite "^1.0.30001541"
-    electron-to-chromium "^1.4.535"
-    node-releases "^2.0.13"
-    update-browserslist-db "^1.0.13"
+    fill-range "^7.1.1"
 
-browserslist@^4.22.2:
-  version "4.22.2"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b"
-  integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==
+browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.22.2, browserslist@^4.23.0:
+  version "4.23.0"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab"
+  integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==
   dependencies:
-    caniuse-lite "^1.0.30001565"
-    electron-to-chromium "^1.4.601"
+    caniuse-lite "^1.0.30001587"
+    electron-to-chromium "^1.4.668"
     node-releases "^2.0.14"
     update-browserslist-db "^1.0.13"
 
+browserslist@^4.23.1, browserslist@^4.23.3:
+  version "4.24.0"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4"
+  integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==
+  dependencies:
+    caniuse-lite "^1.0.30001663"
+    electron-to-chromium "^1.5.28"
+    node-releases "^2.0.18"
+    update-browserslist-db "^1.1.0"
+
 buffer-from@^1.0.0:
   version "1.1.2"
   resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
   integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
 
-builtin-modules@^3.3.0:
-  version "3.3.0"
-  resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
-  integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
-
-bundle-name@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a"
-  integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==
-  dependencies:
-    run-applescript "^5.0.0"
-
 bytes@3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -5079,13 +4236,16 @@ cacheable-request@^10.2.8:
     normalize-url "^8.0.0"
     responselike "^3.0.0"
 
-call-bind@^1.0.0, call-bind@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
-  integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
+  integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
   dependencies:
-    function-bind "^1.1.1"
-    get-intrinsic "^1.0.2"
+    es-define-property "^1.0.0"
+    es-errors "^1.3.0"
+    function-bind "^1.1.2"
+    get-intrinsic "^1.2.4"
+    set-function-length "^1.2.1"
 
 callsites@^3.0.0:
   version "3.1.0"
@@ -5120,22 +4280,17 @@ caniuse-api@^3.0.0:
     lodash.memoize "^4.1.2"
     lodash.uniq "^4.5.0"
 
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001503, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541, caniuse-lite@^1.0.30001565:
-  version "1.0.30001576"
-  resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz"
-  integrity sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001663:
+  version "1.0.30001664"
+  resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001664.tgz"
+  integrity sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==
 
 ccount@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
   integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==
 
-chalk@5.2.0:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
-  integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
-
-chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
+chalk@^2.4.1, chalk@^2.4.2:
   version "2.4.2"
   resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
   integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -5144,14 +4299,6 @@ chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
     escape-string-regexp "^1.0.5"
     supports-color "^5.3.0"
 
-chalk@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
-  integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
-  dependencies:
-    ansi-styles "^4.1.0"
-    supports-color "^7.1.0"
-
 chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2:
   version "4.1.2"
   resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
@@ -5160,7 +4307,7 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2:
     ansi-styles "^4.1.0"
     supports-color "^7.1.0"
 
-chalk@^5.0.1, chalk@^5.2.0:
+chalk@^5.0.1, chalk@^5.2.0, chalk@~5.3.0:
   version "5.3.0"
   resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385"
   integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==
@@ -5217,7 +4364,7 @@ cheerio-select@^2.1.0:
     domhandler "^5.0.3"
     domutils "^3.0.1"
 
-cheerio@^1.0.0-rc.12:
+cheerio@1.0.0-rc.12:
   version "1.0.0-rc.12"
   resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683"
   integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==
@@ -5230,10 +4377,10 @@ cheerio@^1.0.0-rc.12:
     parse5 "^7.0.0"
     parse5-htmlparser2-tree-adapter "^7.0.0"
 
-"chokidar@>=3.0.0 <4.0.0", chokidar@^3.4.2, chokidar@^3.5.3:
-  version "3.5.3"
-  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
-  integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
+chokidar@^3.4.2, chokidar@^3.5.3:
+  version "3.6.0"
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
+  integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
   dependencies:
     anymatch "~3.1.2"
     braces "~3.0.2"
@@ -5245,24 +4392,29 @@ cheerio@^1.0.0-rc.12:
   optionalDependencies:
     fsevents "~2.3.2"
 
+chokidar@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.1.tgz#4a6dff66798fb0f72a94f616abbd7e1a19f31d41"
+  integrity sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==
+  dependencies:
+    readdirp "^4.0.1"
+
 chrome-trace-event@^1.0.2:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
   integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
 
-ci-info@^3.2.0, ci-info@^3.8.0:
-  version "3.8.0"
-  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
-  integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
+ci-info@^3.2.0:
+  version "3.9.0"
+  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
+  integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
 
-clean-css@^5.2.2:
-  version "5.3.2"
-  resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224"
-  integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==
-  dependencies:
-    source-map "~0.6.0"
+ci-info@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.0.0.tgz#65466f8b280fc019b9f50a5388115d17a63a44f2"
+  integrity sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==
 
-clean-css@^5.3.2, clean-css@~5.3.2:
+clean-css@^5.2.2, clean-css@^5.3.2, clean-css@~5.3.2:
   version "5.3.3"
   resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd"
   integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==
@@ -5279,37 +4431,29 @@ cli-boxes@^3.0.0:
   resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145"
   integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==
 
-cli-cursor@^3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
-  integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+cli-cursor@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz#24a4831ecf5a6b01ddeb32fb71a4b2088b0dce38"
+  integrity sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==
   dependencies:
-    restore-cursor "^3.1.0"
+    restore-cursor "^5.0.0"
 
 cli-table3@^0.6.3:
-  version "0.6.3"
-  resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2"
-  integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==
+  version "0.6.4"
+  resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.4.tgz#d1c536b8a3f2e7bec58f67ac9e5769b1b30088b0"
+  integrity sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==
   dependencies:
     string-width "^4.2.0"
   optionalDependencies:
     "@colors/colors" "1.5.0"
 
-cli-truncate@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
-  integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
-  dependencies:
-    slice-ansi "^3.0.0"
-    string-width "^4.2.0"
-
-cli-truncate@^3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389"
-  integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==
+cli-truncate@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a"
+  integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==
   dependencies:
     slice-ansi "^5.0.0"
-    string-width "^5.0.0"
+    string-width "^7.0.0"
 
 cliui@^8.0.1:
   version "8.0.1"
@@ -5329,11 +4473,16 @@ clone-deep@^4.0.1:
     kind-of "^6.0.2"
     shallow-clone "^3.0.0"
 
-clsx@^2.0.0, clsx@^2.1.0:
+clsx@^2.0.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.0.tgz#e851283bcb5c80ee7608db18487433f7b23f77cb"
   integrity sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==
 
+clsx@^2.1.1:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999"
+  integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
+
 collapse-white-space@^2.0.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-2.1.0.tgz#640257174f9f42c740b40f3b55ee752924feefca"
@@ -5363,20 +4512,20 @@ color-name@~1.1.4:
   resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
   integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
 
-colord@^2.9.1:
+colord@^2.9.1, colord@^2.9.3:
   version "2.9.3"
   resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
   integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
 
-colorette@^2.0.10, colorette@^2.0.19:
+colorette@^2.0.10, colorette@^2.0.20:
   version "2.0.20"
   resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
   integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
 
 combine-promises@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.1.0.tgz#72db90743c0ca7aab7d0d8d2052fd7b0f674de71"
-  integrity sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.2.0.tgz#5f2e68451862acf85761ded4d9e2af7769c2ca6a"
+  integrity sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==
 
 comma-separated-tokens@^2.0.0:
   version "2.0.3"
@@ -5413,6 +4562,11 @@ commander@^8.3.0:
   resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
   integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
 
+commander@~12.1.0:
+  version "12.1.0"
+  resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3"
+  integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==
+
 common-path-prefix@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0"
@@ -5465,20 +4619,18 @@ concat-with-sourcemaps@^1.1.0:
   dependencies:
     source-map "^0.6.1"
 
-concurrently@^7.6.0:
-  version "7.6.0"
-  resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.6.0.tgz#531a6f5f30cf616f355a4afb8f8fcb2bba65a49a"
-  integrity sha512-BKtRgvcJGeZ4XttiDiNcFiRlxoAeZOseqUvyYRUp/Vtd+9p1ULmeoSqGsDA+2ivdeDFpqrJvGvmI+StKfKl5hw==
+concurrently@^9.0.1:
+  version "9.0.1"
+  resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-9.0.1.tgz#01e171bf6c7af0c022eb85daef95bff04d8185aa"
+  integrity sha512-wYKvCd/f54sTXJMSfV6Ln/B8UrfLBKOYa+lzc6CHay3Qek+LorVSBdMVfyewFhRbH0Rbabsk4D+3PL/VjQ5gzg==
   dependencies:
-    chalk "^4.1.0"
-    date-fns "^2.29.1"
+    chalk "^4.1.2"
     lodash "^4.17.21"
-    rxjs "^7.0.0"
-    shell-quote "^1.7.3"
-    spawn-command "^0.0.2-1"
-    supports-color "^8.1.0"
+    rxjs "^7.8.1"
+    shell-quote "^1.8.1"
+    supports-color "^8.1.1"
     tree-kill "^1.2.2"
-    yargs "^17.3.1"
+    yargs "^17.7.2"
 
 config-chain@^1.1.11:
   version "1.1.13"
@@ -5526,16 +4678,11 @@ content-disposition@0.5.4:
   dependencies:
     safe-buffer "5.2.1"
 
-content-type@~1.0.4:
+content-type@~1.0.4, content-type@~1.0.5:
   version "1.0.5"
   resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
   integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
 
-convert-source-map@^1.7.0:
-  version "1.9.0"
-  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
-  integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
-
 convert-source-map@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
@@ -5546,10 +4693,10 @@ cookie-signature@1.0.6:
   resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
   integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
 
-cookie@0.5.0:
-  version "0.5.0"
-  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
-  integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
+cookie@0.6.0:
+  version "0.6.0"
+  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051"
+  integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
 
 copy-text-to-clipboard@^3.2.0:
   version "3.2.0"
@@ -5575,29 +4722,22 @@ copy-webpack-plugin@^11.0.0:
     schema-utils "^4.0.0"
     serialize-javascript "^6.0.0"
 
-core-js-compat@^3.31.0:
-  version "3.31.1"
-  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0"
-  integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==
-  dependencies:
-    browserslist "^4.21.9"
-
-core-js-compat@^3.33.1:
-  version "3.35.0"
-  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.35.0.tgz#c149a3d1ab51e743bc1da61e39cb51f461a41873"
-  integrity sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==
+core-js-compat@^3.31.0, core-js-compat@^3.36.1:
+  version "3.36.1"
+  resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.1.tgz#1818695d72c99c25d621dca94e6883e190cea3c8"
+  integrity sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==
   dependencies:
-    browserslist "^4.22.2"
+    browserslist "^4.23.0"
 
 core-js-pure@^3.30.2:
-  version "3.31.1"
-  resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.31.1.tgz#73d154958881873bc19381df80bddb20c8d0cdb5"
-  integrity sha512-w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw==
+  version "3.36.1"
+  resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.36.1.tgz#1461c89e76116528b54eba20a0aff30164087a94"
+  integrity sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==
 
 core-js@^3.31.1:
-  version "3.35.0"
-  resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.35.0.tgz#58e651688484f83c34196ca13f099574ee53d6b4"
-  integrity sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==
+  version "3.36.1"
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.1.tgz#c97a7160ebd00b2de19e62f4bbd3406ab720e578"
+  integrity sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==
 
 core-util-is@~1.0.0:
   version "1.0.3"
@@ -5615,7 +4755,7 @@ cosmiconfig@^6.0.0:
     path-type "^4.0.0"
     yaml "^1.7.2"
 
-cosmiconfig@^7.0.0, cosmiconfig@^7.0.1:
+cosmiconfig@^7.0.0:
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
   integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
@@ -5663,57 +4803,62 @@ crypto-random-string@^4.0.0:
   dependencies:
     type-fest "^1.0.1"
 
-css-blank-pseudo@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.0.tgz#2bc6f812a5f60296c04c55b1696bad4300dcdbcc"
-  integrity sha512-VbfLlOWO7sBHBTn6pwDQzc07Z0SDydgDBfNfCE0nvrehdBNv9RKsuupIRa/qal0+fBZhAALyQDPMKz5lnvcchw==
+css-blank-pseudo@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-7.0.0.tgz#6069ac242aab6a4d52aabbd0287846080ac8e2d9"
+  integrity sha512-v9xXYGdm6LIn4iHEfu3egk/PM1g/yJr8uwTIj6E44kurv5dE/4y3QW7WdVmZ0PVnqfTuK+C0ClZcEEiaKWBL9Q==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
 css-declaration-sorter@^6.3.1:
-  version "6.4.0"
-  resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad"
-  integrity sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71"
+  integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==
 
-css-has-pseudo@^6.0.0:
-  version "6.0.0"
-  resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.0.tgz#b8c8f39a19bc83c5be59fd251510a7e443c47968"
-  integrity sha512-X+r+JBuoO37FBOWVNhVJhxtSBUFHgHbrcc0CjFT28JEdOw1qaDwABv/uunyodUuSy2hMPe9j/HjssxSlvUmKjg==
+css-declaration-sorter@^7.2.0:
+  version "7.2.0"
+  resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz#6dec1c9523bc4a643e088aab8f09e67a54961024"
+  integrity sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==
+
+css-has-pseudo@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-7.0.0.tgz#f07f41ba7b55859ee27b0520888c3e21afe97ebc"
+  integrity sha512-vO6k9bBt4/eEZ2PeHmS2VXjJga5SBy6O1ESyaOkse5/lvp6piFqg8Sh5KTU7X33M7Uh/oqo+M3EeMktQrZoTCQ==
   dependencies:
-    "@csstools/selector-specificity" "^3.0.0"
-    postcss-selector-parser "^6.0.13"
+    "@csstools/selector-specificity" "^4.0.0"
+    postcss-selector-parser "^6.1.0"
     postcss-value-parser "^4.2.0"
 
 css-loader@^6.8.1:
-  version "6.8.1"
-  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88"
-  integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==
+  version "6.10.0"
+  resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.10.0.tgz#7c172b270ec7b833951b52c348861206b184a4b7"
+  integrity sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==
   dependencies:
     icss-utils "^5.1.0"
-    postcss "^8.4.21"
+    postcss "^8.4.33"
     postcss-modules-extract-imports "^3.0.0"
-    postcss-modules-local-by-default "^4.0.3"
-    postcss-modules-scope "^3.0.0"
+    postcss-modules-local-by-default "^4.0.4"
+    postcss-modules-scope "^3.1.1"
     postcss-modules-values "^4.0.0"
     postcss-value-parser "^4.2.0"
-    semver "^7.3.8"
+    semver "^7.5.4"
 
-css-minimizer-webpack-plugin@^4.2.2:
-  version "4.2.2"
-  resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.2.2.tgz#79f6199eb5adf1ff7ba57f105e3752d15211eb35"
-  integrity sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==
-  dependencies:
-    cssnano "^5.1.8"
-    jest-worker "^29.1.2"
-    postcss "^8.4.17"
-    schema-utils "^4.0.0"
-    serialize-javascript "^6.0.0"
-    source-map "^0.6.1"
+css-minimizer-webpack-plugin@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz#33effe662edb1a0bf08ad633c32fa75d0f7ec565"
+  integrity sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==
+  dependencies:
+    "@jridgewell/trace-mapping" "^0.3.18"
+    cssnano "^6.0.1"
+    jest-worker "^29.4.3"
+    postcss "^8.4.24"
+    schema-utils "^4.0.1"
+    serialize-javascript "^6.0.1"
 
-css-prefers-color-scheme@^9.0.0:
-  version "9.0.0"
-  resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.0.tgz#7e9b74062655ea15490e359cb456a3b9f4c93327"
-  integrity sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g==
+css-prefers-color-scheme@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz#ba001b99b8105b8896ca26fc38309ddb2278bd3c"
+  integrity sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==
 
 css-select@^4.1.3:
   version "4.3.0"
@@ -5745,7 +4890,7 @@ css-tree@^1.1.2, css-tree@^1.1.3:
     mdn-data "2.0.14"
     source-map "^0.6.1"
 
-css-tree@^2.2.1:
+css-tree@^2.3.1:
   version "2.3.1"
   resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20"
   integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
@@ -5766,27 +4911,28 @@ css-what@^6.0.1, css-what@^6.1.0:
   resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
   integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
 
-cssdb@^7.9.0:
-  version "7.9.0"
-  resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.9.0.tgz#d42d8269ff3d3e1c366280ab1f9f6207057b262c"
-  integrity sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==
+cssdb@^8.1.1:
+  version "8.1.1"
+  resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-8.1.1.tgz#bb3ea0038a471c61fc89c56d11d168d62fac7829"
+  integrity sha512-kRbSRgZoxtZNl5snb3nOzBkFOt5AwnephcUTIEFc2DebKG9PN50/cHarlwOooTxYQ/gxsnKs3BxykhNLmfvyLg==
 
 cssesc@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
   integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
 
-cssnano-preset-advanced@^5.3.10:
-  version "5.3.10"
-  resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz#25558a1fbf3a871fb6429ce71e41be7f5aca6eef"
-  integrity sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==
+cssnano-preset-advanced@^6.1.2:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz#82b090872b8f98c471f681d541c735acf8b94d3f"
+  integrity sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==
   dependencies:
-    autoprefixer "^10.4.12"
-    cssnano-preset-default "^5.2.14"
-    postcss-discard-unused "^5.1.0"
-    postcss-merge-idents "^5.1.1"
-    postcss-reduce-idents "^5.2.0"
-    postcss-zindex "^5.1.0"
+    autoprefixer "^10.4.19"
+    browserslist "^4.23.0"
+    cssnano-preset-default "^6.1.2"
+    postcss-discard-unused "^6.0.5"
+    postcss-merge-idents "^6.0.3"
+    postcss-reduce-idents "^6.0.3"
+    postcss-zindex "^6.0.2"
 
 cssnano-preset-default@^5.2.14:
   version "5.2.14"
@@ -5823,12 +4969,53 @@ cssnano-preset-default@^5.2.14:
     postcss-svgo "^5.1.0"
     postcss-unique-selectors "^5.1.1"
 
+cssnano-preset-default@^6.1.2:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz#adf4b89b975aa775f2750c89dbaf199bbd9da35e"
+  integrity sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==
+  dependencies:
+    browserslist "^4.23.0"
+    css-declaration-sorter "^7.2.0"
+    cssnano-utils "^4.0.2"
+    postcss-calc "^9.0.1"
+    postcss-colormin "^6.1.0"
+    postcss-convert-values "^6.1.0"
+    postcss-discard-comments "^6.0.2"
+    postcss-discard-duplicates "^6.0.3"
+    postcss-discard-empty "^6.0.3"
+    postcss-discard-overridden "^6.0.2"
+    postcss-merge-longhand "^6.0.5"
+    postcss-merge-rules "^6.1.1"
+    postcss-minify-font-values "^6.1.0"
+    postcss-minify-gradients "^6.0.3"
+    postcss-minify-params "^6.1.0"
+    postcss-minify-selectors "^6.0.4"
+    postcss-normalize-charset "^6.0.2"
+    postcss-normalize-display-values "^6.0.2"
+    postcss-normalize-positions "^6.0.2"
+    postcss-normalize-repeat-style "^6.0.2"
+    postcss-normalize-string "^6.0.2"
+    postcss-normalize-timing-functions "^6.0.2"
+    postcss-normalize-unicode "^6.1.0"
+    postcss-normalize-url "^6.0.2"
+    postcss-normalize-whitespace "^6.0.2"
+    postcss-ordered-values "^6.0.2"
+    postcss-reduce-initial "^6.1.0"
+    postcss-reduce-transforms "^6.0.2"
+    postcss-svgo "^6.0.3"
+    postcss-unique-selectors "^6.0.4"
+
 cssnano-utils@^3.1.0:
   version "3.1.0"
   resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
   integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
 
-cssnano@^5.0.1, cssnano@^5.1.15, cssnano@^5.1.8:
+cssnano-utils@^4.0.2:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-4.0.2.tgz#56f61c126cd0f11f2eef1596239d730d9fceff3c"
+  integrity sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==
+
+cssnano@^5.0.1:
   version "5.1.15"
   resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
   integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
@@ -5837,12 +5024,13 @@ cssnano@^5.0.1, cssnano@^5.1.15, cssnano@^5.1.8:
     lilconfig "^2.0.3"
     yaml "^1.10.2"
 
-csso@5.0.5:
-  version "5.0.5"
-  resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6"
-  integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==
+cssnano@^6.0.1, cssnano@^6.1.2:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-6.1.2.tgz#4bd19e505bd37ee7cf0dc902d3d869f6d79c66b8"
+  integrity sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==
   dependencies:
-    css-tree "~2.2.0"
+    cssnano-preset-default "^6.1.2"
+    lilconfig "^3.1.1"
 
 csso@^4.2.0:
   version "4.2.0"
@@ -5851,22 +5039,49 @@ csso@^4.2.0:
   dependencies:
     css-tree "^1.1.2"
 
+csso@^5.0.5:
+  version "5.0.5"
+  resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6"
+  integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==
+  dependencies:
+    css-tree "~2.2.0"
+
 csstype@^3.0.2:
-  version "3.1.2"
-  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
-  integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
+  version "3.1.3"
+  resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
+  integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
 
 damerau-levenshtein@^1.0.8:
   version "1.0.8"
   resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
   integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
 
-date-fns@^2.29.1:
-  version "2.30.0"
-  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0"
-  integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==
+data-view-buffer@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2"
+  integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==
+  dependencies:
+    call-bind "^1.0.6"
+    es-errors "^1.3.0"
+    is-data-view "^1.0.1"
+
+data-view-byte-length@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2"
+  integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==
+  dependencies:
+    call-bind "^1.0.7"
+    es-errors "^1.3.0"
+    is-data-view "^1.0.1"
+
+data-view-byte-offset@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a"
+  integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==
   dependencies:
-    "@babel/runtime" "^7.21.0"
+    call-bind "^1.0.6"
+    es-errors "^1.3.0"
+    is-data-view "^1.0.1"
 
 debounce@^1.2.1:
   version "1.2.1"
@@ -5894,6 +5109,13 @@ debug@^3.2.7:
   dependencies:
     ms "^2.1.1"
 
+debug@^4.3.5, debug@~4.3.6:
+  version "4.3.7"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
+  integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
+  dependencies:
+    ms "^2.1.3"
+
 decode-named-character-reference@^1.0.0:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e"
@@ -5908,6 +5130,30 @@ decompress-response@^6.0.0:
   dependencies:
     mimic-response "^3.1.0"
 
+deep-equal@^2.0.5:
+  version "2.2.3"
+  resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.3.tgz#af89dafb23a396c7da3e862abc0be27cf51d56e1"
+  integrity sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==
+  dependencies:
+    array-buffer-byte-length "^1.0.0"
+    call-bind "^1.0.5"
+    es-get-iterator "^1.1.3"
+    get-intrinsic "^1.2.2"
+    is-arguments "^1.1.1"
+    is-array-buffer "^3.0.2"
+    is-date-object "^1.0.5"
+    is-regex "^1.1.4"
+    is-shared-array-buffer "^1.0.2"
+    isarray "^2.0.5"
+    object-is "^1.1.5"
+    object-keys "^1.1.1"
+    object.assign "^4.1.4"
+    regexp.prototype.flags "^1.5.1"
+    side-channel "^1.0.4"
+    which-boxed-primitive "^1.0.2"
+    which-collection "^1.0.1"
+    which-typed-array "^1.1.13"
+
 deep-extend@^0.6.0:
   version "0.6.0"
   resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
@@ -5923,24 +5169,6 @@ deepmerge@^4.2.2, deepmerge@^4.3.1:
   resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
   integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
 
-default-browser-id@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c"
-  integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==
-  dependencies:
-    bplist-parser "^0.2.0"
-    untildify "^4.0.0"
-
-default-browser@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da"
-  integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==
-  dependencies:
-    bundle-name "^3.0.0"
-    default-browser-id "^3.0.0"
-    execa "^7.1.1"
-    titleize "^3.0.0"
-
 default-gateway@^6.0.3:
   version "6.0.3"
   resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71"
@@ -5953,21 +5181,26 @@ defer-to-connect@^2.0.1:
   resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
   integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
 
+define-data-property@^1.0.1, define-data-property@^1.1.4:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
+  integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
+  dependencies:
+    es-define-property "^1.0.0"
+    es-errors "^1.3.0"
+    gopd "^1.0.1"
+
 define-lazy-prop@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
   integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
 
-define-lazy-prop@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f"
-  integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==
-
-define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
-  integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
+define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+  integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
   dependencies:
+    define-data-property "^1.0.1"
     has-property-descriptors "^1.0.0"
     object-keys "^1.1.1"
 
@@ -6034,9 +5267,9 @@ devlop@^1.0.0, devlop@^1.1.0:
     dequal "^2.0.0"
 
 diff@^5.0.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
-  integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
+  integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
 
 dir-glob@^3.0.1:
   version "3.0.1"
@@ -6045,15 +5278,10 @@ dir-glob@^3.0.1:
   dependencies:
     path-type "^4.0.0"
 
-dns-equal@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
-  integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
-
 dns-packet@^5.2.2:
-  version "5.6.0"
-  resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.0.tgz#2202c947845c7a63c23ece58f2f70ff6ab4c2f7d"
-  integrity sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==
+  version "5.6.1"
+  resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f"
+  integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==
   dependencies:
     "@leichtgewicht/ip-codec" "^2.0.1"
 
@@ -6064,13 +5292,6 @@ doctrine@^2.1.0:
   dependencies:
     esutils "^2.0.2"
 
-doctrine@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
-  integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
-  dependencies:
-    esutils "^2.0.2"
-
 dom-converter@^0.2.0:
   version "0.2.0"
   resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
@@ -6163,20 +5384,20 @@ ee-first@1.1.1:
   resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
   integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
 
-electron-to-chromium@^1.4.431:
-  version "1.4.451"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.451.tgz#12b63ee5c82cbbc7b4ddd91e90f5a0dfc10de26e"
-  integrity sha512-YYbXHIBxAHe3KWvGOJOuWa6f3tgow44rBW+QAuwVp2DvGqNZeE//K2MowNdWS7XE8li5cgQDrX1LdBr41LufkA==
+electron-to-chromium@^1.4.668:
+  version "1.4.719"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.719.tgz#22a94ce7a5150511ba88e900836039e159efe22c"
+  integrity sha512-FbWy2Q2YgdFzkFUW/W5jBjE9dj+804+98E4Pup78JBPnbdb3pv6IneY2JCPKdeKLh3AOKHQeYf+KwLr7mxGh6Q==
 
-electron-to-chromium@^1.4.535:
-  version "1.4.595"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.595.tgz#fa33309eb9aabb7426915f8e166ec60f664e9ad4"
-  integrity sha512-+ozvXuamBhDOKvMNUQvecxfbyICmIAwS4GpLmR0bsiSBlGnLaOcs2Cj7J8XSbW+YEaN3Xl3ffgpm+srTUWFwFQ==
+electron-to-chromium@^1.5.28:
+  version "1.5.29"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.29.tgz#aa592a3caa95d07cc26a66563accf99fa573a1ee"
+  integrity sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==
 
-electron-to-chromium@^1.4.601:
-  version "1.4.623"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.623.tgz#0f7400114ac3425500e9244d2b0e9c3107c331cb"
-  integrity sha512-lKoz10iCYlP1WtRYdh5MvocQPWVRoI7ysp6qf18bmeBgR8abE6+I2CsfyNKztRDZvhdWc+krKT6wS7Neg8sw3A==
+emoji-regex@^10.2.1, emoji-regex@^10.3.0:
+  version "10.3.0"
+  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23"
+  integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==
 
 emoji-regex@^8.0.0:
   version "8.0.0"
@@ -6208,17 +5429,18 @@ encodeurl@~1.0.2:
   resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
   integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
 
-end-of-stream@^1.1.0:
-  version "1.4.4"
-  resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
-  integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+enhanced-resolve@^5.15.0:
+  version "5.17.1"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15"
+  integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==
   dependencies:
-    once "^1.4.0"
+    graceful-fs "^4.2.4"
+    tapable "^2.2.0"
 
-enhanced-resolve@^5.12.0, enhanced-resolve@^5.15.0:
-  version "5.15.0"
-  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
-  integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
+enhanced-resolve@^5.16.0:
+  version "5.16.0"
+  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz#65ec88778083056cb32487faa9aef82ed0864787"
+  integrity sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==
   dependencies:
     graceful-fs "^4.2.4"
     tapable "^2.2.0"
@@ -6233,6 +5455,11 @@ entities@^4.2.0, entities@^4.4.0:
   resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
   integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
 
+environment@^1.0.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz#8e86c66b180f363c7ab311787e0259665f45a9f1"
+  integrity sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==
+
 error-ex@^1.3.1, error-ex@^1.3.2:
   version "1.3.2"
   resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
@@ -6240,71 +5467,204 @@ error-ex@^1.3.1, error-ex@^1.3.2:
   dependencies:
     is-arrayish "^0.2.1"
 
-es-abstract@^1.19.0, es-abstract@^1.20.4:
-  version "1.21.2"
-  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
-  integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
-  dependencies:
-    array-buffer-byte-length "^1.0.0"
-    available-typed-arrays "^1.0.5"
-    call-bind "^1.0.2"
-    es-set-tostringtag "^2.0.1"
+es-abstract@^1.17.5, es-abstract@^1.23.3:
+  version "1.23.3"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0"
+  integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==
+  dependencies:
+    array-buffer-byte-length "^1.0.1"
+    arraybuffer.prototype.slice "^1.0.3"
+    available-typed-arrays "^1.0.7"
+    call-bind "^1.0.7"
+    data-view-buffer "^1.0.1"
+    data-view-byte-length "^1.0.1"
+    data-view-byte-offset "^1.0.0"
+    es-define-property "^1.0.0"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    es-set-tostringtag "^2.0.3"
     es-to-primitive "^1.2.1"
-    function.prototype.name "^1.1.5"
-    get-intrinsic "^1.2.0"
-    get-symbol-description "^1.0.0"
+    function.prototype.name "^1.1.6"
+    get-intrinsic "^1.2.4"
+    get-symbol-description "^1.0.2"
     globalthis "^1.0.3"
     gopd "^1.0.1"
-    has "^1.0.3"
-    has-property-descriptors "^1.0.0"
-    has-proto "^1.0.1"
+    has-property-descriptors "^1.0.2"
+    has-proto "^1.0.3"
     has-symbols "^1.0.3"
-    internal-slot "^1.0.5"
-    is-array-buffer "^3.0.2"
+    hasown "^2.0.2"
+    internal-slot "^1.0.7"
+    is-array-buffer "^3.0.4"
     is-callable "^1.2.7"
-    is-negative-zero "^2.0.2"
+    is-data-view "^1.0.1"
+    is-negative-zero "^2.0.3"
     is-regex "^1.1.4"
-    is-shared-array-buffer "^1.0.2"
+    is-shared-array-buffer "^1.0.3"
     is-string "^1.0.7"
-    is-typed-array "^1.1.10"
+    is-typed-array "^1.1.13"
     is-weakref "^1.0.2"
-    object-inspect "^1.12.3"
+    object-inspect "^1.13.1"
     object-keys "^1.1.1"
-    object.assign "^4.1.4"
-    regexp.prototype.flags "^1.4.3"
-    safe-regex-test "^1.0.0"
-    string.prototype.trim "^1.2.7"
-    string.prototype.trimend "^1.0.6"
-    string.prototype.trimstart "^1.0.6"
-    typed-array-length "^1.0.4"
+    object.assign "^4.1.5"
+    regexp.prototype.flags "^1.5.2"
+    safe-array-concat "^1.1.2"
+    safe-regex-test "^1.0.3"
+    string.prototype.trim "^1.2.9"
+    string.prototype.trimend "^1.0.8"
+    string.prototype.trimstart "^1.0.8"
+    typed-array-buffer "^1.0.2"
+    typed-array-byte-length "^1.0.1"
+    typed-array-byte-offset "^1.0.2"
+    typed-array-length "^1.0.6"
     unbox-primitive "^1.0.2"
-    which-typed-array "^1.1.9"
+    which-typed-array "^1.1.15"
+
+es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2:
+  version "1.23.2"
+  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.2.tgz#693312f3940f967b8dd3eebacb590b01712622e0"
+  integrity sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==
+  dependencies:
+    array-buffer-byte-length "^1.0.1"
+    arraybuffer.prototype.slice "^1.0.3"
+    available-typed-arrays "^1.0.7"
+    call-bind "^1.0.7"
+    data-view-buffer "^1.0.1"
+    data-view-byte-length "^1.0.1"
+    data-view-byte-offset "^1.0.0"
+    es-define-property "^1.0.0"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    es-set-tostringtag "^2.0.3"
+    es-to-primitive "^1.2.1"
+    function.prototype.name "^1.1.6"
+    get-intrinsic "^1.2.4"
+    get-symbol-description "^1.0.2"
+    globalthis "^1.0.3"
+    gopd "^1.0.1"
+    has-property-descriptors "^1.0.2"
+    has-proto "^1.0.3"
+    has-symbols "^1.0.3"
+    hasown "^2.0.2"
+    internal-slot "^1.0.7"
+    is-array-buffer "^3.0.4"
+    is-callable "^1.2.7"
+    is-data-view "^1.0.1"
+    is-negative-zero "^2.0.3"
+    is-regex "^1.1.4"
+    is-shared-array-buffer "^1.0.3"
+    is-string "^1.0.7"
+    is-typed-array "^1.1.13"
+    is-weakref "^1.0.2"
+    object-inspect "^1.13.1"
+    object-keys "^1.1.1"
+    object.assign "^4.1.5"
+    regexp.prototype.flags "^1.5.2"
+    safe-array-concat "^1.1.2"
+    safe-regex-test "^1.0.3"
+    string.prototype.trim "^1.2.9"
+    string.prototype.trimend "^1.0.8"
+    string.prototype.trimstart "^1.0.7"
+    typed-array-buffer "^1.0.2"
+    typed-array-byte-length "^1.0.1"
+    typed-array-byte-offset "^1.0.2"
+    typed-array-length "^1.0.5"
+    unbox-primitive "^1.0.2"
+    which-typed-array "^1.1.15"
 
-es-module-lexer@^1.2.1:
-  version "1.3.0"
-  resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f"
-  integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==
+es-define-property@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845"
+  integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
+  dependencies:
+    get-intrinsic "^1.2.4"
 
-es-module-lexer@^1.3.1:
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5"
-  integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==
+es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
+  integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
 
-es-set-tostringtag@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
-  integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+es-get-iterator@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+  integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
   dependencies:
+    call-bind "^1.0.2"
     get-intrinsic "^1.1.3"
-    has "^1.0.3"
-    has-tostringtag "^1.0.0"
+    has-symbols "^1.0.3"
+    is-arguments "^1.1.1"
+    is-map "^2.0.2"
+    is-set "^2.0.2"
+    is-string "^1.0.7"
+    isarray "^2.0.5"
+    stop-iteration-iterator "^1.0.0"
+
+es-iterator-helpers@^1.0.15, es-iterator-helpers@^1.0.17:
+  version "1.0.18"
+  resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz#4d3424f46b24df38d064af6fbbc89274e29ea69d"
+  integrity sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.0"
+    es-errors "^1.3.0"
+    es-set-tostringtag "^2.0.3"
+    function-bind "^1.1.2"
+    get-intrinsic "^1.2.4"
+    globalthis "^1.0.3"
+    has-property-descriptors "^1.0.2"
+    has-proto "^1.0.3"
+    has-symbols "^1.0.3"
+    internal-slot "^1.0.7"
+    iterator.prototype "^1.1.2"
+    safe-array-concat "^1.1.2"
+
+es-iterator-helpers@^1.0.19:
+  version "1.0.19"
+  resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz#117003d0e5fec237b4b5c08aded722e0c6d50ca8"
+  integrity sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.3"
+    es-errors "^1.3.0"
+    es-set-tostringtag "^2.0.3"
+    function-bind "^1.1.2"
+    get-intrinsic "^1.2.4"
+    globalthis "^1.0.3"
+    has-property-descriptors "^1.0.2"
+    has-proto "^1.0.3"
+    has-symbols "^1.0.3"
+    internal-slot "^1.0.7"
+    iterator.prototype "^1.1.2"
+    safe-array-concat "^1.1.2"
 
-es-shim-unscopables@^1.0.0:
+es-module-lexer@^1.2.1, es-module-lexer@^1.3.1:
+  version "1.5.0"
+  resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.0.tgz#4878fee3789ad99e065f975fdd3c645529ff0236"
+  integrity sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==
+
+es-object-atoms@^1.0.0:
   version "1.0.0"
-  resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
-  integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
+  resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941"
+  integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==
+  dependencies:
+    es-errors "^1.3.0"
+
+es-set-tostringtag@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777"
+  integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==
+  dependencies:
+    get-intrinsic "^1.2.4"
+    has-tostringtag "^1.0.2"
+    hasown "^2.0.1"
+
+es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763"
+  integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==
   dependencies:
-    has "^1.0.3"
+    hasown "^2.0.0"
 
 es-to-primitive@^1.2.1:
   version "1.2.1"
@@ -6315,38 +5675,45 @@ es-to-primitive@^1.2.1:
     is-date-object "^1.0.1"
     is-symbol "^1.0.2"
 
-esbuild@^0.19.8:
-  version "0.19.8"
-  resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.8.tgz#ad05b72281d84483fa6b5345bd246c27a207b8f1"
-  integrity sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==
+esbuild@^0.24.0:
+  version "0.24.0"
+  resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.24.0.tgz#f2d470596885fcb2e91c21eb3da3b3c89c0b55e7"
+  integrity sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==
   optionalDependencies:
-    "@esbuild/android-arm" "0.19.8"
-    "@esbuild/android-arm64" "0.19.8"
-    "@esbuild/android-x64" "0.19.8"
-    "@esbuild/darwin-arm64" "0.19.8"
-    "@esbuild/darwin-x64" "0.19.8"
-    "@esbuild/freebsd-arm64" "0.19.8"
-    "@esbuild/freebsd-x64" "0.19.8"
-    "@esbuild/linux-arm" "0.19.8"
-    "@esbuild/linux-arm64" "0.19.8"
-    "@esbuild/linux-ia32" "0.19.8"
-    "@esbuild/linux-loong64" "0.19.8"
-    "@esbuild/linux-mips64el" "0.19.8"
-    "@esbuild/linux-ppc64" "0.19.8"
-    "@esbuild/linux-riscv64" "0.19.8"
-    "@esbuild/linux-s390x" "0.19.8"
-    "@esbuild/linux-x64" "0.19.8"
-    "@esbuild/netbsd-x64" "0.19.8"
-    "@esbuild/openbsd-x64" "0.19.8"
-    "@esbuild/sunos-x64" "0.19.8"
-    "@esbuild/win32-arm64" "0.19.8"
-    "@esbuild/win32-ia32" "0.19.8"
-    "@esbuild/win32-x64" "0.19.8"
+    "@esbuild/aix-ppc64" "0.24.0"
+    "@esbuild/android-arm" "0.24.0"
+    "@esbuild/android-arm64" "0.24.0"
+    "@esbuild/android-x64" "0.24.0"
+    "@esbuild/darwin-arm64" "0.24.0"
+    "@esbuild/darwin-x64" "0.24.0"
+    "@esbuild/freebsd-arm64" "0.24.0"
+    "@esbuild/freebsd-x64" "0.24.0"
+    "@esbuild/linux-arm" "0.24.0"
+    "@esbuild/linux-arm64" "0.24.0"
+    "@esbuild/linux-ia32" "0.24.0"
+    "@esbuild/linux-loong64" "0.24.0"
+    "@esbuild/linux-mips64el" "0.24.0"
+    "@esbuild/linux-ppc64" "0.24.0"
+    "@esbuild/linux-riscv64" "0.24.0"
+    "@esbuild/linux-s390x" "0.24.0"
+    "@esbuild/linux-x64" "0.24.0"
+    "@esbuild/netbsd-x64" "0.24.0"
+    "@esbuild/openbsd-arm64" "0.24.0"
+    "@esbuild/openbsd-x64" "0.24.0"
+    "@esbuild/sunos-x64" "0.24.0"
+    "@esbuild/win32-arm64" "0.24.0"
+    "@esbuild/win32-ia32" "0.24.0"
+    "@esbuild/win32-x64" "0.24.0"
 
 escalade@^3.1.1:
-  version "3.1.1"
-  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
-  integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
+  integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
+
+escalade@^3.2.0:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
+  integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
 
 escape-goat@^4.0.0:
   version "4.0.0"
@@ -6373,10 +5740,10 @@ escape-string-regexp@^5.0.0:
   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
   integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
 
-eslint-config-prettier@^8.6.0, eslint-config-prettier@^8.8.0:
-  version "8.8.0"
-  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
-  integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
+eslint-config-prettier@^9.1.0:
+  version "9.1.0"
+  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
+  integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
 
 eslint-config-react-app@^7.0.1:
   version "7.0.1"
@@ -6403,53 +5770,60 @@ eslint-config-react@^1.1.7:
   resolved "https://registry.yarnpkg.com/eslint-config-react/-/eslint-config-react-1.1.7.tgz#a0918d0fc47d0e9bd161a47308021da85d2585b3"
   integrity sha512-P4Z6u68wf0BvIvZNu+U8uQsk3DcZ1CcCI1XpUkJlG6vOa+iVcSQLgE01f2DB2kXlKRcT8/3dsH+wveLgvEgbkQ==
 
-eslint-import-resolver-node@^0.3.7:
-  version "0.3.7"
-  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7"
-  integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==
+eslint-import-resolver-node@^0.3.9:
+  version "0.3.9"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac"
+  integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
   dependencies:
     debug "^3.2.7"
-    is-core-module "^2.11.0"
-    resolve "^1.22.1"
+    is-core-module "^2.13.0"
+    resolve "^1.22.4"
 
-eslint-import-resolver-typescript@^3.5.3:
-  version "3.5.5"
-  resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz#0a9034ae7ed94b254a360fbea89187b60ea7456d"
-  integrity sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==
+eslint-import-resolver-typescript@^3.6.3:
+  version "3.6.3"
+  resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz#bb8e388f6afc0f940ce5d2c5fd4a3d147f038d9e"
+  integrity sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==
   dependencies:
-    debug "^4.3.4"
-    enhanced-resolve "^5.12.0"
-    eslint-module-utils "^2.7.4"
-    get-tsconfig "^4.5.0"
-    globby "^13.1.3"
-    is-core-module "^2.11.0"
+    "@nolyfill/is-core-module" "1.0.39"
+    debug "^4.3.5"
+    enhanced-resolve "^5.15.0"
+    eslint-module-utils "^2.8.1"
+    fast-glob "^3.3.2"
+    get-tsconfig "^4.7.5"
+    is-bun-module "^1.0.2"
     is-glob "^4.0.3"
-    synckit "^0.8.5"
 
-eslint-mdx@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/eslint-mdx/-/eslint-mdx-2.1.0.tgz#fd03b3aef07ba443f2a3b00c62d0e33b06674fe7"
-  integrity sha512-dVLHDcpCFJRXZhxEQx8nKc68KT1qm+9JOeMD+j1/WW2h+oco1j7Qq+CLrX2kP64LI3fF9TUtj7a0AvncHUME6w==
+eslint-mdx@^3.1.5:
+  version "3.1.5"
+  resolved "https://registry.yarnpkg.com/eslint-mdx/-/eslint-mdx-3.1.5.tgz#e0276cad5649a4a174ffb27a7fbca83be7f580cb"
+  integrity sha512-ynztX0k7CQ3iDL7fDEIeg3g0O/d6QPv7IBI9fdYLhXp5fAp0fi8X22xF/D3+Pk0f90R27uwqa1clHpay6t0l8Q==
   dependencies:
-    acorn "^8.8.2"
+    acorn "^8.11.3"
     acorn-jsx "^5.3.2"
-    espree "^9.5.1"
-    estree-util-visit "^1.2.1"
-    remark-mdx "^2.3.0"
-    remark-parse "^10.0.1"
-    remark-stringify "^10.0.2"
-    synckit "^0.8.5"
-    tslib "^2.5.0"
-    unified "^10.1.2"
-    unified-engine "^10.1.0"
-    unist-util-visit "^4.1.2"
+    espree "^9.6.1"
+    estree-util-visit "^2.0.0"
+    remark-mdx "^3.0.0"
+    remark-parse "^11.0.0"
+    remark-stringify "^11.0.0"
+    synckit "^0.9.0"
+    tslib "^2.6.2"
+    unified "^11.0.4"
+    unified-engine "^11.2.0"
+    unist-util-visit "^5.0.0"
     uvu "^0.5.6"
-    vfile "^5.3.7"
+    vfile "^6.0.1"
 
-eslint-module-utils@^2.7.4:
-  version "2.8.0"
-  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49"
-  integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
+eslint-module-utils@^2.8.0:
+  version "2.8.1"
+  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34"
+  integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==
+  dependencies:
+    debug "^3.2.7"
+
+eslint-module-utils@^2.8.1, eslint-module-utils@^2.9.0:
+  version "2.12.0"
+  resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b"
+  integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==
   dependencies:
     debug "^3.2.7"
 
@@ -6461,26 +5835,52 @@ eslint-plugin-flowtype@^8.0.3:
     lodash "^4.17.21"
     string-natural-compare "^3.0.1"
 
-eslint-plugin-import@^2.25.3, eslint-plugin-import@^2.27.5:
-  version "2.27.5"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65"
-  integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==
+eslint-plugin-import@^2.25.3:
+  version "2.29.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643"
+  integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
   dependencies:
-    array-includes "^3.1.6"
-    array.prototype.flat "^1.3.1"
-    array.prototype.flatmap "^1.3.1"
+    array-includes "^3.1.7"
+    array.prototype.findlastindex "^1.2.3"
+    array.prototype.flat "^1.3.2"
+    array.prototype.flatmap "^1.3.2"
     debug "^3.2.7"
     doctrine "^2.1.0"
-    eslint-import-resolver-node "^0.3.7"
-    eslint-module-utils "^2.7.4"
-    has "^1.0.3"
-    is-core-module "^2.11.0"
+    eslint-import-resolver-node "^0.3.9"
+    eslint-module-utils "^2.8.0"
+    hasown "^2.0.0"
+    is-core-module "^2.13.1"
     is-glob "^4.0.3"
     minimatch "^3.1.2"
-    object.values "^1.1.6"
-    resolve "^1.22.1"
-    semver "^6.3.0"
-    tsconfig-paths "^3.14.1"
+    object.fromentries "^2.0.7"
+    object.groupby "^1.0.1"
+    object.values "^1.1.7"
+    semver "^6.3.1"
+    tsconfig-paths "^3.15.0"
+
+eslint-plugin-import@^2.30.0:
+  version "2.30.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz#21ceea0fc462657195989dd780e50c92fe95f449"
+  integrity sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==
+  dependencies:
+    "@rtsao/scc" "^1.1.0"
+    array-includes "^3.1.8"
+    array.prototype.findlastindex "^1.2.5"
+    array.prototype.flat "^1.3.2"
+    array.prototype.flatmap "^1.3.2"
+    debug "^3.2.7"
+    doctrine "^2.1.0"
+    eslint-import-resolver-node "^0.3.9"
+    eslint-module-utils "^2.9.0"
+    hasown "^2.0.2"
+    is-core-module "^2.15.1"
+    is-glob "^4.0.3"
+    minimatch "^3.1.2"
+    object.fromentries "^2.0.8"
+    object.groupby "^1.0.3"
+    object.values "^1.2.0"
+    semver "^6.3.1"
+    tsconfig-paths "^3.15.0"
 
 eslint-plugin-jest@^25.3.0:
   version "25.7.0"
@@ -6489,79 +5889,133 @@ eslint-plugin-jest@^25.3.0:
   dependencies:
     "@typescript-eslint/experimental-utils" "^5.0.0"
 
-eslint-plugin-jsx-a11y@^6.5.1, eslint-plugin-jsx-a11y@^6.7.1:
-  version "6.7.1"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976"
-  integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==
-  dependencies:
-    "@babel/runtime" "^7.20.7"
-    aria-query "^5.1.3"
-    array-includes "^3.1.6"
-    array.prototype.flatmap "^1.3.1"
-    ast-types-flow "^0.0.7"
-    axe-core "^4.6.2"
-    axobject-query "^3.1.1"
+eslint-plugin-jsx-a11y@^6.10.0:
+  version "6.10.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.0.tgz#36fb9dead91cafd085ddbe3829602fb10ef28339"
+  integrity sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==
+  dependencies:
+    aria-query "~5.1.3"
+    array-includes "^3.1.8"
+    array.prototype.flatmap "^1.3.2"
+    ast-types-flow "^0.0.8"
+    axe-core "^4.10.0"
+    axobject-query "^4.1.0"
     damerau-levenshtein "^1.0.8"
     emoji-regex "^9.2.2"
-    has "^1.0.3"
-    jsx-ast-utils "^3.3.3"
-    language-tags "=1.0.5"
+    es-iterator-helpers "^1.0.19"
+    hasown "^2.0.2"
+    jsx-ast-utils "^3.3.5"
+    language-tags "^1.0.9"
     minimatch "^3.1.2"
-    object.entries "^1.1.6"
-    object.fromentries "^2.0.6"
-    semver "^6.3.0"
+    object.fromentries "^2.0.8"
+    safe-regex-test "^1.0.3"
+    string.prototype.includes "^2.0.0"
+
+eslint-plugin-jsx-a11y@^6.5.1:
+  version "6.8.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz#2fa9c701d44fcd722b7c771ec322432857fcbad2"
+  integrity sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==
+  dependencies:
+    "@babel/runtime" "^7.23.2"
+    aria-query "^5.3.0"
+    array-includes "^3.1.7"
+    array.prototype.flatmap "^1.3.2"
+    ast-types-flow "^0.0.8"
+    axe-core "=4.7.0"
+    axobject-query "^3.2.1"
+    damerau-levenshtein "^1.0.8"
+    emoji-regex "^9.2.2"
+    es-iterator-helpers "^1.0.15"
+    hasown "^2.0.0"
+    jsx-ast-utils "^3.3.5"
+    language-tags "^1.0.9"
+    minimatch "^3.1.2"
+    object.entries "^1.1.7"
+    object.fromentries "^2.0.7"
 
-eslint-plugin-markdown@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.0.tgz#69a63ab3445076a3c2eb6fce6f5114785b19d318"
-  integrity sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg==
+eslint-plugin-markdown@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.1.tgz#fc6765bdb5f82a75e2438d7fac619602f2abc38c"
+  integrity sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==
   dependencies:
     mdast-util-from-markdown "^0.8.5"
 
-eslint-plugin-mdx@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-mdx/-/eslint-plugin-mdx-2.1.0.tgz#5650cd57428ead6be3a60b52f34bf00af45ceece"
-  integrity sha512-Q8P1JXv+OrD+xhWT95ZyV30MMdnqJ1voKtXfxWrJJ2XihJRI15gPmXbIWY9t8CjA8C//isfzNOmnVY9e3GTL0g==
-  dependencies:
-    eslint-mdx "^2.1.0"
-    eslint-plugin-markdown "^3.0.0"
-    remark-mdx "^2.3.0"
-    remark-parse "^10.0.1"
-    remark-stringify "^10.0.2"
-    tslib "^2.5.0"
-    unified "^10.1.2"
-    vfile "^5.3.7"
-
-eslint-plugin-react-hooks@^4.3.0, eslint-plugin-react-hooks@^4.6.0:
+eslint-plugin-mdx@^3.1.5:
+  version "3.1.5"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-mdx/-/eslint-plugin-mdx-3.1.5.tgz#8f20d899c24272c0d471715c1f80d1332ec933c4"
+  integrity sha512-lUE7tP7IrIRHU3gTtASDe5u4YM2SvQveYVJfuo82yn3MLh/B/v05FNySURCK4aIxIYF1QYo3IRemQG/lyQzpAg==
+  dependencies:
+    eslint-mdx "^3.1.5"
+    eslint-plugin-markdown "^3.0.1"
+    remark-mdx "^3.0.0"
+    remark-parse "^11.0.0"
+    remark-stringify "^11.0.0"
+    tslib "^2.6.2"
+    unified "^11.0.4"
+    vfile "^6.0.1"
+
+eslint-plugin-react-hooks@^4.3.0:
   version "4.6.0"
   resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
   integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
 
-eslint-plugin-react@^7.27.1, eslint-plugin-react@^7.32.2:
-  version "7.32.2"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10"
-  integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==
+eslint-plugin-react-hooks@^4.6.2:
+  version "4.6.2"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596"
+  integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
+
+eslint-plugin-react@^7.27.1:
+  version "7.34.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz#6806b70c97796f5bbfb235a5d3379ece5f4da997"
+  integrity sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==
+  dependencies:
+    array-includes "^3.1.7"
+    array.prototype.findlast "^1.2.4"
+    array.prototype.flatmap "^1.3.2"
+    array.prototype.toreversed "^1.1.2"
+    array.prototype.tosorted "^1.1.3"
+    doctrine "^2.1.0"
+    es-iterator-helpers "^1.0.17"
+    estraverse "^5.3.0"
+    jsx-ast-utils "^2.4.1 || ^3.0.0"
+    minimatch "^3.1.2"
+    object.entries "^1.1.7"
+    object.fromentries "^2.0.7"
+    object.hasown "^1.1.3"
+    object.values "^1.1.7"
+    prop-types "^15.8.1"
+    resolve "^2.0.0-next.5"
+    semver "^6.3.1"
+    string.prototype.matchall "^4.0.10"
+
+eslint-plugin-react@^7.37.0:
+  version "7.37.0"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.0.tgz#c21f64a32fc34df1eaeca571ec8f70bdc40dd20a"
+  integrity sha512-IHBePmfWH5lKhJnJ7WB1V+v/GolbB0rjS8XYVCSQCZKaQCAUhMoVoOEn1Ef8Z8Wf0a7l8KTJvuZg5/e4qrZ6nA==
   dependencies:
-    array-includes "^3.1.6"
-    array.prototype.flatmap "^1.3.1"
-    array.prototype.tosorted "^1.1.1"
+    array-includes "^3.1.8"
+    array.prototype.findlast "^1.2.5"
+    array.prototype.flatmap "^1.3.2"
+    array.prototype.tosorted "^1.1.4"
     doctrine "^2.1.0"
+    es-iterator-helpers "^1.0.19"
     estraverse "^5.3.0"
+    hasown "^2.0.2"
     jsx-ast-utils "^2.4.1 || ^3.0.0"
     minimatch "^3.1.2"
-    object.entries "^1.1.6"
-    object.fromentries "^2.0.6"
-    object.hasown "^1.1.2"
-    object.values "^1.1.6"
+    object.entries "^1.1.8"
+    object.fromentries "^2.0.8"
+    object.values "^1.2.0"
     prop-types "^15.8.1"
-    resolve "^2.0.0-next.4"
-    semver "^6.3.0"
-    string.prototype.matchall "^4.0.8"
+    resolve "^2.0.0-next.5"
+    semver "^6.3.1"
+    string.prototype.matchall "^4.0.11"
+    string.prototype.repeat "^1.0.0"
 
 eslint-plugin-testing-library@^5.0.1:
-  version "5.11.0"
-  resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.0.tgz#0bad7668e216e20dd12f8c3652ca353009163121"
-  integrity sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==
+  version "5.11.1"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz#5b46cdae96d4a78918711c0b4792f90088e62d20"
+  integrity sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==
   dependencies:
     "@typescript-eslint/utils" "^5.58.0"
 
@@ -6573,10 +6027,10 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1:
     esrecurse "^4.3.0"
     estraverse "^4.1.1"
 
-eslint-scope@^7.2.0:
-  version "7.2.0"
-  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b"
-  integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
+eslint-scope@^8.0.2:
+  version "8.0.2"
+  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.0.2.tgz#5cbb33d4384c9136083a71190d548158fe128f94"
+  integrity sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==
   dependencies:
     esrecurse "^4.3.0"
     estraverse "^5.2.0"
@@ -6586,71 +6040,83 @@ eslint-visitor-keys@^2.1.0:
   resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
   integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
 
-eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
-  version "3.4.1"
-  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994"
-  integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+  version "3.4.3"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+  integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
 
-eslint-webpack-plugin@^4.0.1:
-  version "4.0.1"
-  resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-4.0.1.tgz#f0f0e9afff2801d8bd41eac88e5409821ecbaccb"
-  integrity sha512-fUFcXpui/FftGx3NzvWgLZXlLbu+m74sUxGEgxgoxYcUtkIQbS6SdNNZkS99m5ycb23TfoNYrDpp1k/CK5j6Hw==
+eslint-visitor-keys@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz#e3adc021aa038a2a8e0b2f8b0ce8f66b9483b1fb"
+  integrity sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==
+
+eslint-webpack-plugin@^4.2.0:
+  version "4.2.0"
+  resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-4.2.0.tgz#41f54b25379908eb9eca8645bc997c90cfdbd34e"
+  integrity sha512-rsfpFQ01AWQbqtjgPRr2usVRxhWDuG0YDYcG8DJOteD3EFnpeuYuOwk0PQiN7PRBTqS6ElNdtPZPggj8If9WnA==
   dependencies:
-    "@types/eslint" "^8.37.0"
-    jest-worker "^29.5.0"
+    "@types/eslint" "^8.56.10"
+    jest-worker "^29.7.0"
     micromatch "^4.0.5"
     normalize-path "^3.0.0"
-    schema-utils "^4.0.0"
+    schema-utils "^4.2.0"
 
-eslint@^8.33.0, eslint@^8.44.0:
-  version "8.44.0"
-  resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.44.0.tgz#51246e3889b259bbcd1d7d736a0c10add4f0e500"
-  integrity sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==
+eslint@^9.11.1:
+  version "9.11.1"
+  resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.11.1.tgz#701e5fc528990153f9cef696d8427003b5206567"
+  integrity sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==
   dependencies:
     "@eslint-community/eslint-utils" "^4.2.0"
-    "@eslint-community/regexpp" "^4.4.0"
-    "@eslint/eslintrc" "^2.1.0"
-    "@eslint/js" "8.44.0"
-    "@humanwhocodes/config-array" "^0.11.10"
+    "@eslint-community/regexpp" "^4.11.0"
+    "@eslint/config-array" "^0.18.0"
+    "@eslint/core" "^0.6.0"
+    "@eslint/eslintrc" "^3.1.0"
+    "@eslint/js" "9.11.1"
+    "@eslint/plugin-kit" "^0.2.0"
     "@humanwhocodes/module-importer" "^1.0.1"
+    "@humanwhocodes/retry" "^0.3.0"
     "@nodelib/fs.walk" "^1.2.8"
-    ajv "^6.10.0"
+    "@types/estree" "^1.0.6"
+    "@types/json-schema" "^7.0.15"
+    ajv "^6.12.4"
     chalk "^4.0.0"
     cross-spawn "^7.0.2"
     debug "^4.3.2"
-    doctrine "^3.0.0"
     escape-string-regexp "^4.0.0"
-    eslint-scope "^7.2.0"
-    eslint-visitor-keys "^3.4.1"
-    espree "^9.6.0"
-    esquery "^1.4.2"
+    eslint-scope "^8.0.2"
+    eslint-visitor-keys "^4.0.0"
+    espree "^10.1.0"
+    esquery "^1.5.0"
     esutils "^2.0.2"
     fast-deep-equal "^3.1.3"
-    file-entry-cache "^6.0.1"
+    file-entry-cache "^8.0.0"
     find-up "^5.0.0"
     glob-parent "^6.0.2"
-    globals "^13.19.0"
-    graphemer "^1.4.0"
     ignore "^5.2.0"
-    import-fresh "^3.0.0"
     imurmurhash "^0.1.4"
     is-glob "^4.0.0"
     is-path-inside "^3.0.3"
-    js-yaml "^4.1.0"
     json-stable-stringify-without-jsonify "^1.0.1"
-    levn "^0.4.1"
     lodash.merge "^4.6.2"
     minimatch "^3.1.2"
     natural-compare "^1.4.0"
     optionator "^0.9.3"
     strip-ansi "^6.0.1"
-    strip-json-comments "^3.1.0"
     text-table "^0.2.0"
 
-espree@^9.5.1, espree@^9.6.0:
-  version "9.6.0"
-  resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.0.tgz#80869754b1c6560f32e3b6929194a3fe07c5b82f"
-  integrity sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==
+espree@^10.0.1, espree@^10.1.0:
+  version "10.1.0"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-10.1.0.tgz#8788dae611574c0f070691f522e4116c5a11fc56"
+  integrity sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==
+  dependencies:
+    acorn "^8.12.0"
+    acorn-jsx "^5.3.2"
+    eslint-visitor-keys "^4.0.0"
+
+espree@^9.6.1:
+  version "9.6.1"
+  resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+  integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
   dependencies:
     acorn "^8.9.0"
     acorn-jsx "^5.3.2"
@@ -6661,10 +6127,10 @@ esprima@^4.0.0:
   resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
   integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
 
-esquery@^1.4.2:
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
-  integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
+esquery@^1.5.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
+  integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
   dependencies:
     estraverse "^5.1.0"
 
@@ -6702,11 +6168,6 @@ estree-util-build-jsx@^3.0.0:
     estree-util-is-identifier-name "^3.0.0"
     estree-walker "^3.0.0"
 
-estree-util-is-identifier-name@^2.0.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2"
-  integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==
-
 estree-util-is-identifier-name@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd"
@@ -6729,14 +6190,6 @@ estree-util-value-to-estree@^3.0.1:
     "@types/estree" "^1.0.0"
     is-plain-obj "^4.0.0"
 
-estree-util-visit@^1.0.0, estree-util-visit@^1.2.1:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d"
-  integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==
-  dependencies:
-    "@types/estree-jsx" "^1.0.0"
-    "@types/unist" "^2.0.0"
-
 estree-util-visit@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-2.0.0.tgz#13a9a9f40ff50ed0c022f831ddf4b58d05446feb"
@@ -6790,27 +6243,17 @@ eventemitter3@^4.0.0, eventemitter3@^4.0.4:
   resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
   integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
 
+eventemitter3@^5.0.1:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
+  integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
+
 events@^3.2.0:
   version "3.3.0"
   resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
   integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
 
-execa@^4.0.0:
-  version "4.1.0"
-  resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
-  integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
-  dependencies:
-    cross-spawn "^7.0.0"
-    get-stream "^5.0.0"
-    human-signals "^1.1.1"
-    is-stream "^2.0.0"
-    merge-stream "^2.0.0"
-    npm-run-path "^4.0.0"
-    onetime "^5.1.0"
-    signal-exit "^3.0.2"
-    strip-final-newline "^2.0.0"
-
-execa@^5.0.0:
+execa@^5.0.0, execa@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
   integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
@@ -6825,32 +6268,32 @@ execa@^5.0.0:
     signal-exit "^3.0.3"
     strip-final-newline "^2.0.0"
 
-execa@^7.0.0, execa@^7.1.1:
-  version "7.1.1"
-  resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.1.tgz#3eb3c83d239488e7b409d48e8813b76bb55c9c43"
-  integrity sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==
+execa@~8.0.1:
+  version "8.0.1"
+  resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c"
+  integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==
   dependencies:
     cross-spawn "^7.0.3"
-    get-stream "^6.0.1"
-    human-signals "^4.3.0"
+    get-stream "^8.0.1"
+    human-signals "^5.0.0"
     is-stream "^3.0.0"
     merge-stream "^2.0.0"
     npm-run-path "^5.1.0"
     onetime "^6.0.0"
-    signal-exit "^3.0.7"
+    signal-exit "^4.1.0"
     strip-final-newline "^3.0.0"
 
 express@^4.17.3:
-  version "4.18.2"
-  resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"
-  integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==
+  version "4.19.2"
+  resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465"
+  integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==
   dependencies:
     accepts "~1.3.8"
     array-flatten "1.1.1"
-    body-parser "1.20.1"
+    body-parser "1.20.2"
     content-disposition "0.5.4"
     content-type "~1.0.4"
-    cookie "0.5.0"
+    cookie "0.6.0"
     cookie-signature "1.0.6"
     debug "2.6.9"
     depd "2.0.0"
@@ -6894,10 +6337,10 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
   resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
   integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
 
-fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0:
-  version "3.3.0"
-  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.0.tgz#7c40cb491e1e2ed5664749e87bfb516dbe8727c0"
-  integrity sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==
+fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
+  integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
   dependencies:
     "@nodelib/fs.stat" "^2.0.2"
     "@nodelib/fs.walk" "^1.2.3"
@@ -6923,9 +6366,9 @@ fast-url-parser@1.1.3:
     punycode "^1.3.2"
 
 fastq@^1.6.0:
-  version "1.15.0"
-  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
-  integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
+  version "1.17.1"
+  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
+  integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
   dependencies:
     reusify "^1.0.4"
 
@@ -6943,6 +6386,11 @@ faye-websocket@^0.11.3:
   dependencies:
     websocket-driver ">=0.5.1"
 
+fdir@^6.1.1:
+  version "6.3.0"
+  resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.3.0.tgz#fcca5a23ea20e767b15e081ee13b3e6488ee0bb0"
+  integrity sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==
+
 feed@^4.2.2:
   version "4.2.2"
   resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.2.tgz#865783ef6ed12579e2c44bbef3c9113bc4956a7e"
@@ -6950,12 +6398,12 @@ feed@^4.2.2:
   dependencies:
     xml-js "^1.6.11"
 
-file-entry-cache@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
-  integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+file-entry-cache@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f"
+  integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==
   dependencies:
-    flat-cache "^3.0.4"
+    flat-cache "^4.0.0"
 
 file-loader@^6.2.0:
   version "6.2.0"
@@ -6977,6 +6425,13 @@ fill-range@^7.0.1:
   dependencies:
     to-regex-range "^5.0.1"
 
+fill-range@^7.1.1:
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+  integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
+  dependencies:
+    to-regex-range "^5.0.1"
+
 finalhandler@1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32"
@@ -7005,14 +6460,6 @@ find-up@^3.0.0:
   dependencies:
     locate-path "^3.0.0"
 
-find-up@^4.1.0:
-  version "4.1.0"
-  resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
-  integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
-  dependencies:
-    locate-path "^5.0.0"
-    path-exists "^4.0.0"
-
 find-up@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
@@ -7029,28 +6476,28 @@ find-up@^6.3.0:
     locate-path "^7.1.0"
     path-exists "^5.0.0"
 
-flat-cache@^3.0.4:
-  version "3.0.4"
-  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
-  integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+flat-cache@^4.0.0:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c"
+  integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==
   dependencies:
-    flatted "^3.1.0"
-    rimraf "^3.0.2"
+    flatted "^3.2.9"
+    keyv "^4.5.4"
 
 flat@^5.0.2:
   version "5.0.2"
   resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
   integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
 
-flatted@^3.1.0:
-  version "3.2.7"
-  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
-  integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
+flatted@^3.2.9:
+  version "3.3.1"
+  resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a"
+  integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==
 
 follow-redirects@^1.0.0:
-  version "1.15.2"
-  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
-  integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
+  version "1.15.6"
+  resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b"
+  integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==
 
 for-each@^0.3.3:
   version "0.3.3"
@@ -7101,12 +6548,7 @@ forwarded@0.2.0:
   resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
   integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
 
-fraction.js@^4.2.0:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
-  integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
-
-fraction.js@^4.3.6:
+fraction.js@^4.3.7:
   version "4.3.7"
   resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
   integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
@@ -7116,7 +6558,7 @@ fresh@0.5.2:
   resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
   integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
 
-fs-extra@^11.1.1:
+fs-extra@^11.1.1, fs-extra@^11.2.0:
   version "11.2.0"
   resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b"
   integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==
@@ -7136,9 +6578,9 @@ fs-extra@^9.0.0:
     universalify "^2.0.0"
 
 fs-monkey@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747"
-  integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788"
+  integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==
 
 fs.realpath@^1.0.0:
   version "1.0.0"
@@ -7146,26 +6588,26 @@ fs.realpath@^1.0.0:
   integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
 
 fsevents@~2.3.2:
-  version "2.3.2"
-  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
-  integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+  version "2.3.3"
+  resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+  integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
 
-function-bind@^1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
-  integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+function-bind@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+  integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
 
-function.prototype.name@^1.1.5:
-  version "1.1.5"
-  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
-  integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
+function.prototype.name@^1.1.5, function.prototype.name@^1.1.6:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
+  integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
   dependencies:
     call-bind "^1.0.2"
-    define-properties "^1.1.3"
-    es-abstract "^1.19.0"
-    functions-have-names "^1.2.2"
+    define-properties "^1.2.0"
+    es-abstract "^1.22.1"
+    functions-have-names "^1.2.3"
 
-functions-have-names@^1.2.2, functions-have-names@^1.2.3:
+functions-have-names@^1.2.3:
   version "1.2.3"
   resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
   integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
@@ -7187,52 +6629,57 @@ get-caller-file@^2.0.5:
   resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
   integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
 
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
-  integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
+get-east-asian-width@^1.0.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e"
+  integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==
+
+get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd"
+  integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
   dependencies:
-    function-bind "^1.1.1"
-    has "^1.0.3"
+    es-errors "^1.3.0"
+    function-bind "^1.1.2"
     has-proto "^1.0.1"
     has-symbols "^1.0.3"
+    hasown "^2.0.0"
 
 get-own-enumerable-property-symbols@^3.0.0:
   version "3.0.2"
   resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
   integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
 
-get-stream@^5.0.0:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
-  integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
-  dependencies:
-    pump "^3.0.0"
-
 get-stream@^6.0.0, get-stream@^6.0.1:
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
   integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
 
-get-symbol-description@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
-  integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
+get-stream@^8.0.1:
+  version "8.0.1"
+  resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
+  integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
+
+get-symbol-description@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5"
+  integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==
   dependencies:
-    call-bind "^1.0.2"
-    get-intrinsic "^1.1.1"
+    call-bind "^1.0.5"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.4"
 
-get-tsconfig@^4.5.0:
-  version "4.6.2"
-  resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.6.2.tgz#831879a5e6c2aa24fe79b60340e2233a1e0f472e"
-  integrity sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==
+get-tsconfig@^4.7.2:
+  version "4.7.3"
+  resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.3.tgz#0498163d98f7b58484dd4906999c0c9d5f103f83"
+  integrity sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==
   dependencies:
     resolve-pkg-maps "^1.0.0"
 
-get-tsconfig@^4.7.2:
-  version "4.7.2"
-  resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce"
-  integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==
+get-tsconfig@^4.7.5:
+  version "4.8.1"
+  resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.8.1.tgz#8995eb391ae6e1638d251118c7b56de7eb425471"
+  integrity sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==
   dependencies:
     resolve-pkg-maps "^1.0.0"
 
@@ -7260,27 +6707,28 @@ glob-to-regexp@^0.4.1:
   resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
   integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
 
-glob@^10.2.2:
-  version "10.3.1"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.1.tgz#9789cb1b994515bedb811a6deca735b5c37d2bf4"
-  integrity sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==
+glob@^10.0.0, glob@^10.2.2, glob@^10.3.10:
+  version "10.3.12"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b"
+  integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==
   dependencies:
     foreground-child "^3.1.0"
-    jackspeak "^2.0.3"
+    jackspeak "^2.3.6"
     minimatch "^9.0.1"
-    minipass "^5.0.0 || ^6.0.2"
-    path-scurry "^1.10.0"
+    minipass "^7.0.4"
+    path-scurry "^1.10.2"
 
-glob@^10.3.10:
-  version "10.3.10"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
-  integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
+glob@^11.0.0:
+  version "11.0.0"
+  resolved "https://registry.yarnpkg.com/glob/-/glob-11.0.0.tgz#6031df0d7b65eaa1ccb9b29b5ced16cea658e77e"
+  integrity sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==
   dependencies:
     foreground-child "^3.1.0"
-    jackspeak "^2.3.5"
-    minimatch "^9.0.1"
-    minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
-    path-scurry "^1.10.1"
+    jackspeak "^4.0.1"
+    minimatch "^10.0.0"
+    minipass "^7.1.2"
+    package-json-from-dist "^1.0.0"
+    path-scurry "^2.0.0"
 
 glob@^7.0.0, glob@^7.1.3, glob@^7.1.6:
   version "7.2.3"
@@ -7294,27 +6742,6 @@ glob@^7.0.0, glob@^7.1.3, glob@^7.1.6:
     once "^1.3.0"
     path-is-absolute "^1.0.0"
 
-glob@^8.0.0, glob@^8.0.3:
-  version "8.1.0"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
-  integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
-  dependencies:
-    fs.realpath "^1.0.0"
-    inflight "^1.0.4"
-    inherits "2"
-    minimatch "^5.0.1"
-    once "^1.3.0"
-
-glob@^9.2.0:
-  version "9.3.5"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21"
-  integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==
-  dependencies:
-    fs.realpath "^1.0.0"
-    minimatch "^8.0.2"
-    minipass "^4.2.4"
-    path-scurry "^1.6.1"
-
 global-dirs@^3.0.0:
   version "3.0.1"
   resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485"
@@ -7343,12 +6770,10 @@ globals@^11.1.0:
   resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
   integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
 
-globals@^13.19.0:
-  version "13.20.0"
-  resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82"
-  integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==
-  dependencies:
-    type-fest "^0.20.2"
+globals@^14.0.0:
+  version "14.0.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e"
+  integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==
 
 globalthis@^1.0.3:
   version "1.0.3"
@@ -7369,7 +6794,7 @@ globby@^11.0.1, globby@^11.0.4, globby@^11.1.0:
     merge2 "^1.4.1"
     slash "^3.0.0"
 
-globby@^13.1.1, globby@^13.1.3:
+globby@^13.1.1:
   version "13.2.2"
   resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592"
   integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==
@@ -7409,7 +6834,7 @@ graceful-fs@4.2.10:
   resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
   integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
 
-graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
+graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
   version "4.2.11"
   resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
   integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
@@ -7456,41 +6881,41 @@ has-flag@^4.0.0:
   resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
   integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
 
-has-property-descriptors@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
-  integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
+has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
+  integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
   dependencies:
-    get-intrinsic "^1.1.1"
+    es-define-property "^1.0.0"
 
-has-proto@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
-  integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+has-proto@^1.0.1, has-proto@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd"
+  integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==
 
 has-symbols@^1.0.2, has-symbols@^1.0.3:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
   integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
 
-has-tostringtag@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
-  integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
+has-tostringtag@^1.0.0, has-tostringtag@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc"
+  integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
   dependencies:
-    has-symbols "^1.0.2"
+    has-symbols "^1.0.3"
 
 has-yarn@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-3.0.0.tgz#c3c21e559730d1d3b57e28af1f30d06fac38147d"
   integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==
 
-has@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
-  integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
+  integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
   dependencies:
-    function-bind "^1.1.1"
+    function-bind "^1.1.2"
 
 hast-util-from-html@^2.0.0:
   version "2.0.1"
@@ -7526,9 +6951,9 @@ hast-util-parse-selector@^4.0.0:
     "@types/hast" "^3.0.0"
 
 hast-util-raw@^9.0.0:
-  version "9.0.1"
-  resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.0.1.tgz#2ba8510e4ed2a1e541cde2a4ebb5c38ab4c82c2d"
-  integrity sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==
+  version "9.0.2"
+  resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.0.2.tgz#39b4a4886bd9f0a5dd42e86d02c966c2c152884c"
+  integrity sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==
   dependencies:
     "@types/hast" "^3.0.0"
     "@types/unist" "^3.0.0"
@@ -7575,6 +7000,23 @@ hast-util-to-estree@^3.0.0:
     unist-util-position "^5.0.0"
     zwitch "^2.0.0"
 
+hast-util-to-html@^9.0.3:
+  version "9.0.3"
+  resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-9.0.3.tgz#a9999a0ba6b4919576a9105129fead85d37f302b"
+  integrity sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==
+  dependencies:
+    "@types/hast" "^3.0.0"
+    "@types/unist" "^3.0.0"
+    ccount "^2.0.0"
+    comma-separated-tokens "^2.0.0"
+    hast-util-whitespace "^3.0.0"
+    html-void-elements "^3.0.0"
+    mdast-util-to-hast "^13.0.0"
+    property-information "^6.0.0"
+    space-separated-tokens "^2.0.0"
+    stringify-entities "^4.0.0"
+    zwitch "^2.0.4"
+
 hast-util-to-jsx-runtime@^2.0.0:
   version "2.3.0"
   resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.0.tgz#3ed27caf8dc175080117706bf7269404a0aa4f7c"
@@ -7667,9 +7109,9 @@ hpack.js@^2.1.6:
     wbuf "^1.1.0"
 
 html-entities@^2.3.2:
-  version "2.4.0"
-  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061"
-  integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==
+  version "2.5.2"
+  resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f"
+  integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==
 
 html-escaper@^2.0.2:
   version "2.0.2"
@@ -7807,25 +7249,20 @@ http2-wrapper@^2.1.10:
     quick-lru "^5.1.1"
     resolve-alpn "^1.2.0"
 
-human-signals@^1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
-  integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
-
 human-signals@^2.1.0:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
   integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
 
-human-signals@^4.3.0:
-  version "4.3.1"
-  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2"
-  integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==
+human-signals@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
+  integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
 
-husky@^8.0.3:
-  version "8.0.3"
-  resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184"
-  integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==
+husky@^9.1.6:
+  version "9.1.6"
+  resolved "https://registry.yarnpkg.com/husky/-/husky-9.1.6.tgz#e23aa996b6203ab33534bdc82306b0cf2cb07d6c"
+  integrity sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==
 
 iconv-lite@0.4.24:
   version "0.4.24"
@@ -7844,10 +7281,15 @@ icss-utils@^5.0.0, icss-utils@^5.1.0:
   resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
   integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
 
-ignore@^5.0.0, ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4:
-  version "5.2.4"
-  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
-  integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
+ignore@^5.0.0, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.0:
+  version "5.3.1"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
+  integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
+
+ignore@^5.3.1:
+  version "5.3.2"
+  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
+  integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
 
 image-size@^1.0.2:
   version "1.1.1"
@@ -7862,9 +7304,9 @@ immer@^9.0.7:
   integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==
 
 immutable@^4.0.0:
-  version "4.3.4"
-  resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.4.tgz#2e07b33837b4bb7662f288c244d1ced1ef65a78f"
-  integrity sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==
+  version "4.3.5"
+  resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.5.tgz#f8b436e66d59f99760dc577f5c99a4fd2a5cc5a0"
+  integrity sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==
 
 import-cwd@^3.0.0:
   version "3.0.0"
@@ -7873,7 +7315,7 @@ import-cwd@^3.0.0:
   dependencies:
     import-from "^3.0.0"
 
-import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
+import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
   version "3.3.0"
   resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
   integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
@@ -7893,10 +7335,10 @@ import-lazy@^4.0.0:
   resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153"
   integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==
 
-import-meta-resolve@^2.0.0:
-  version "2.2.2"
-  resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz#75237301e72d1f0fbd74dbc6cca9324b164c2cc9"
-  integrity sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==
+import-meta-resolve@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz#0b1195915689f60ab00f830af0f15cc841e8919e"
+  integrity sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==
 
 imurmurhash@^0.1.4:
   version "0.1.4"
@@ -7908,10 +7350,10 @@ indent-string@^4.0.0:
   resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
   integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
 
-infima@0.2.0-alpha.43:
-  version "0.2.0-alpha.43"
-  resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.43.tgz#f7aa1d7b30b6c08afef441c726bac6150228cbe0"
-  integrity sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==
+infima@0.2.0-alpha.44:
+  version "0.2.0-alpha.44"
+  resolved "https://registry.yarnpkg.com/infima/-/infima-0.2.0-alpha.44.tgz#9cd9446e473b44d49763f48efabe31f32440861d"
+  integrity sha512-tuRkUSO/lB3rEhLJk25atwAjgLuzq070+pOW8XcvpHky/YbENnRRdPd85IBkyeTgttmOy5ah+yHYsK1HhUd4lQ==
 
 inflight@^1.0.4:
   version "1.0.6"
@@ -7942,27 +7384,27 @@ ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
   integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
 
 ini@^4.1.0:
-  version "4.1.1"
-  resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1"
-  integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==
+  version "4.1.2"
+  resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.2.tgz#7f646dbd9caea595e61f88ef60bfff8b01f8130a"
+  integrity sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==
 
 inline-style-parser@0.1.1:
   version "0.1.1"
   resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
   integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
 
-inline-style-parser@0.2.2:
-  version "0.2.2"
-  resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.2.tgz#d498b4e6de0373458fc610ff793f6b14ebf45633"
-  integrity sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ==
+inline-style-parser@0.2.3:
+  version "0.2.3"
+  resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.3.tgz#e35c5fb45f3a83ed7849fe487336eb7efa25971c"
+  integrity sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==
 
-internal-slot@^1.0.3, internal-slot@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
-  integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
+internal-slot@^1.0.4, internal-slot@^1.0.7:
+  version "1.0.7"
+  resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802"
+  integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==
   dependencies:
-    get-intrinsic "^1.2.0"
-    has "^1.0.3"
+    es-errors "^1.3.0"
+    hasown "^2.0.0"
     side-channel "^1.0.4"
 
 interpret@^1.0.0:
@@ -8013,20 +7455,34 @@ is-alphanumerical@^2.0.0:
     is-alphabetical "^2.0.0"
     is-decimal "^2.0.0"
 
-is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
-  integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+is-arguments@^1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
+  integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
+  dependencies:
+    call-bind "^1.0.2"
+    has-tostringtag "^1.0.0"
+
+is-array-buffer@^3.0.2, is-array-buffer@^3.0.4:
+  version "3.0.4"
+  resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98"
+  integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==
   dependencies:
     call-bind "^1.0.2"
-    get-intrinsic "^1.2.0"
-    is-typed-array "^1.1.10"
+    get-intrinsic "^1.2.1"
 
 is-arrayish@^0.2.1:
   version "0.2.1"
   resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
   integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
 
+is-async-function@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646"
+  integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==
+  dependencies:
+    has-tostringtag "^1.0.0"
+
 is-bigint@^1.0.1:
   version "1.0.4"
   resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
@@ -8049,17 +7505,12 @@ is-boolean-object@^1.1.0:
     call-bind "^1.0.2"
     has-tostringtag "^1.0.0"
 
-is-buffer@^2.0.0:
-  version "2.0.5"
-  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
-  integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
-
-is-builtin-module@^3.2.1:
-  version "3.2.1"
-  resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169"
-  integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
+is-bun-module@^1.0.2:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-1.2.1.tgz#495e706f42e29f086fd5fe1ac3c51f106062b9fc"
+  integrity sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==
   dependencies:
-    builtin-modules "^3.3.0"
+    semver "^7.6.3"
 
 is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
   version "1.2.7"
@@ -8073,14 +7524,28 @@ is-ci@^3.0.1:
   dependencies:
     ci-info "^3.2.0"
 
-is-core-module@^2.11.0, is-core-module@^2.9.0:
-  version "2.12.1"
-  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
-  integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
+is-core-module@^2.13.0, is-core-module@^2.13.1:
+  version "2.13.1"
+  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
+  integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
+  dependencies:
+    hasown "^2.0.0"
+
+is-core-module@^2.15.1:
+  version "2.15.1"
+  resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37"
+  integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==
   dependencies:
-    has "^1.0.3"
+    hasown "^2.0.2"
 
-is-date-object@^1.0.1:
+is-data-view@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f"
+  integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==
+  dependencies:
+    is-typed-array "^1.1.13"
+
+is-date-object@^1.0.1, is-date-object@^1.0.5:
   version "1.0.5"
   resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
   integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
@@ -8102,11 +7567,6 @@ is-docker@^2.0.0, is-docker@^2.1.1:
   resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
   integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
 
-is-docker@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200"
-  integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==
-
 is-empty@^1.0.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b"
@@ -8122,6 +7582,13 @@ is-extglob@^2.1.1:
   resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
   integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
 
+is-finalizationregistry@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6"
+  integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==
+  dependencies:
+    call-bind "^1.0.2"
+
 is-fullwidth-code-point@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
@@ -8132,6 +7599,20 @@ is-fullwidth-code-point@^4.0.0:
   resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88"
   integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==
 
+is-fullwidth-code-point@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704"
+  integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==
+  dependencies:
+    get-east-asian-width "^1.0.0"
+
+is-generator-function@^1.0.10:
+  version "1.0.10"
+  resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
+  integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
+  dependencies:
+    has-tostringtag "^1.0.0"
+
 is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
   version "4.0.3"
   resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -8149,13 +7630,6 @@ is-hexadecimal@^2.0.0:
   resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027"
   integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==
 
-is-inside-container@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4"
-  integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==
-  dependencies:
-    is-docker "^3.0.0"
-
 is-installed-globally@^0.4.0:
   version "0.4.0"
   resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520"
@@ -8164,15 +7638,20 @@ is-installed-globally@^0.4.0:
     global-dirs "^3.0.0"
     is-path-inside "^3.0.2"
 
+is-map@^2.0.2, is-map@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
+  integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
+
 is-module@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
   integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
 
-is-negative-zero@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
-  integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
+is-negative-zero@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747"
+  integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
 
 is-npm@^6.0.0:
   version "6.0.0"
@@ -8265,12 +7744,17 @@ is-root@^2.1.0:
   resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
   integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
 
-is-shared-array-buffer@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
-  integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
+is-set@^2.0.2, is-set@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d"
+  integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
+
+is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688"
+  integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==
   dependencies:
-    call-bind "^1.0.2"
+    call-bind "^1.0.7"
 
 is-stream@^2.0.0:
   version "2.0.1"
@@ -8296,22 +7780,23 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
   dependencies:
     has-symbols "^1.0.2"
 
-is-typed-array@^1.1.10, is-typed-array@^1.1.9:
-  version "1.1.10"
-  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
-  integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
+is-typed-array@^1.1.13:
+  version "1.1.13"
+  resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229"
+  integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==
   dependencies:
-    available-typed-arrays "^1.0.5"
-    call-bind "^1.0.2"
-    for-each "^0.3.3"
-    gopd "^1.0.1"
-    has-tostringtag "^1.0.0"
+    which-typed-array "^1.1.14"
 
 is-typedarray@^1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
   integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
 
+is-weakmap@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd"
+  integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
+
 is-weakref@^1.0.2:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
@@ -8319,6 +7804,14 @@ is-weakref@^1.0.2:
   dependencies:
     call-bind "^1.0.2"
 
+is-weakset@^2.0.3:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007"
+  integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==
+  dependencies:
+    call-bind "^1.0.7"
+    get-intrinsic "^1.2.4"
+
 is-wsl@^2.2.0:
   version "2.2.0"
   resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
@@ -8336,6 +7829,11 @@ isarray@0.0.1:
   resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
   integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
 
+isarray@^2.0.5:
+  version "2.0.5"
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+  integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
 isarray@~1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
@@ -8351,16 +7849,18 @@ isobject@^3.0.1:
   resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
   integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
 
-jackspeak@^2.0.3:
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6"
-  integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==
+iterator.prototype@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0"
+  integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==
   dependencies:
-    "@isaacs/cliui" "^8.0.2"
-  optionalDependencies:
-    "@pkgjs/parseargs" "^0.11.0"
+    define-properties "^1.2.1"
+    get-intrinsic "^1.2.1"
+    has-symbols "^1.0.3"
+    reflect.getprototypeof "^1.0.4"
+    set-function-name "^2.0.1"
 
-jackspeak@^2.3.5:
+jackspeak@^2.3.6:
   version "2.3.6"
   resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
   integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
@@ -8369,12 +7869,19 @@ jackspeak@^2.3.5:
   optionalDependencies:
     "@pkgjs/parseargs" "^0.11.0"
 
-jest-util@^29.6.1:
-  version "29.6.1"
-  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.1.tgz#c9e29a87a6edbf1e39e6dee2b4689b8a146679cb"
-  integrity sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==
+jackspeak@^4.0.1:
+  version "4.0.2"
+  resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.0.2.tgz#11f9468a3730c6ff6f56823a820d7e3be9bef015"
+  integrity sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==
+  dependencies:
+    "@isaacs/cliui" "^8.0.2"
+
+jest-util@^29.7.0:
+  version "29.7.0"
+  resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
+  integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==
   dependencies:
-    "@jest/types" "^29.6.1"
+    "@jest/types" "^29.6.3"
     "@types/node" "*"
     chalk "^4.0.0"
     ci-info "^3.2.0"
@@ -8390,13 +7897,13 @@ jest-worker@^27.4.5:
     merge-stream "^2.0.0"
     supports-color "^8.0.0"
 
-jest-worker@^29.1.2, jest-worker@^29.5.0:
-  version "29.6.1"
-  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.6.1.tgz#64b015f0e985ef3a8ad049b61fe92b3db74a5319"
-  integrity sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==
+jest-worker@^29.4.3, jest-worker@^29.7.0:
+  version "29.7.0"
+  resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a"
+  integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==
   dependencies:
     "@types/node" "*"
-    jest-util "^29.6.1"
+    jest-util "^29.7.0"
     merge-stream "^2.0.0"
     supports-color "^8.0.0"
 
@@ -8406,13 +7913,13 @@ jiti@^1.20.0:
   integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
 
 joi@^17.9.2:
-  version "17.11.0"
-  resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a"
-  integrity sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==
+  version "17.12.2"
+  resolved "https://registry.yarnpkg.com/joi/-/joi-17.12.2.tgz#283a664dabb80c7e52943c557aab82faea09f521"
+  integrity sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==
   dependencies:
-    "@hapi/hoek" "^9.0.0"
-    "@hapi/topo" "^5.0.0"
-    "@sideway/address" "^4.1.3"
+    "@hapi/hoek" "^9.3.0"
+    "@hapi/topo" "^5.1.0"
+    "@sideway/address" "^4.1.5"
     "@sideway/formula" "^3.0.1"
     "@sideway/pinpoint" "^2.0.0"
 
@@ -8462,9 +7969,9 @@ json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
   integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
 
 json-parse-even-better-errors@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz#2cb2ee33069a78870a0c7e3da560026b89669cf7"
-  integrity sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz#02bb29fb5da90b5444581749c22cedd3597c6cb0"
+  integrity sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==
 
 json-schema-traverse@^0.4.1:
   version "0.4.1"
@@ -8488,16 +7995,11 @@ json5@^1.0.2:
   dependencies:
     minimist "^1.2.0"
 
-json5@^2.1.2, json5@^2.2.2, json5@^2.2.3:
+json5@^2.1.2, json5@^2.2.3:
   version "2.2.3"
   resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
   integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
 
-jsonc-parser@^3.2.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
-  integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
-
 jsonfile@^6.0.1:
   version "6.1.0"
   resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
@@ -8507,17 +8009,17 @@ jsonfile@^6.0.1:
   optionalDependencies:
     graceful-fs "^4.1.6"
 
-"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3:
-  version "3.3.4"
-  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz#b896535fed5b867650acce5a9bd4135ffc7b3bf9"
-  integrity sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5:
+  version "3.3.5"
+  resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a"
+  integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==
   dependencies:
     array-includes "^3.1.6"
     array.prototype.flat "^1.3.1"
     object.assign "^4.1.4"
     object.values "^1.1.6"
 
-keyv@^4.5.3:
+keyv@^4.5.3, keyv@^4.5.4:
   version "4.5.4"
   resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
   integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
@@ -8539,17 +8041,17 @@ kleur@^4.0.3:
   resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
   integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
 
-language-subtag-registry@~0.3.2:
+language-subtag-registry@^0.3.20:
   version "0.3.22"
   resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d"
   integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
 
-language-tags@=1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
-  integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
+language-tags@^1.0.9:
+  version "1.0.9"
+  resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777"
+  integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==
   dependencies:
-    language-subtag-registry "~0.3.2"
+    language-subtag-registry "^0.3.20"
 
 latest-version@^7.0.0:
   version "7.0.0"
@@ -8559,12 +8061,12 @@ latest-version@^7.0.0:
     package-json "^8.1.0"
 
 launch-editor@^2.6.0:
-  version "2.6.0"
-  resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7"
-  integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==
+  version "2.6.1"
+  resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c"
+  integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==
   dependencies:
     picocolors "^1.0.0"
-    shell-quote "^1.7.3"
+    shell-quote "^1.8.1"
 
 leven@^3.1.0:
   version "3.1.0"
@@ -8579,53 +8081,60 @@ levn@^0.4.1:
     prelude-ls "^1.2.1"
     type-check "~0.4.0"
 
-lilconfig@2.1.0, lilconfig@^2.0.3, lilconfig@^2.0.5:
+lilconfig@^2.0.3, lilconfig@^2.0.5:
   version "2.1.0"
   resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
   integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
 
+lilconfig@^3.1.1, lilconfig@~3.1.2:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb"
+  integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==
+
 lines-and-columns@^1.1.6:
   version "1.2.4"
   resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
   integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
 
-lines-and-columns@^2.0.2:
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b"
-  integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==
-
-lint-staged@^13.1.0:
-  version "13.2.3"
-  resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.3.tgz#f899aad6c093473467e9c9e316e3c2d8a28f87a7"
-  integrity sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==
-  dependencies:
-    chalk "5.2.0"
-    cli-truncate "^3.1.0"
-    commander "^10.0.0"
-    debug "^4.3.4"
-    execa "^7.0.0"
-    lilconfig "2.1.0"
-    listr2 "^5.0.7"
-    micromatch "^4.0.5"
-    normalize-path "^3.0.0"
-    object-inspect "^1.12.3"
-    pidtree "^0.6.0"
-    string-argv "^0.3.1"
-    yaml "^2.2.2"
+lines-and-columns@^2.0.3:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.4.tgz#d00318855905d2660d8c0822e3f5a4715855fc42"
+  integrity sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==
 
-listr2@^5.0.7:
-  version "5.0.8"
-  resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23"
-  integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==
+linkify-it@^5.0.0:
+  version "5.0.0"
+  resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421"
+  integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==
+  dependencies:
+    uc.micro "^2.0.0"
+
+lint-staged@^15.2.10:
+  version "15.2.10"
+  resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.10.tgz#92ac222f802ba911897dcf23671da5bb80643cd2"
+  integrity sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==
+  dependencies:
+    chalk "~5.3.0"
+    commander "~12.1.0"
+    debug "~4.3.6"
+    execa "~8.0.1"
+    lilconfig "~3.1.2"
+    listr2 "~8.2.4"
+    micromatch "~4.0.8"
+    pidtree "~0.6.0"
+    string-argv "~0.3.2"
+    yaml "~2.5.0"
+
+listr2@~8.2.4:
+  version "8.2.4"
+  resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.2.4.tgz#486b51cbdb41889108cb7e2c90eeb44519f5a77f"
+  integrity sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==
   dependencies:
-    cli-truncate "^2.1.0"
-    colorette "^2.0.19"
-    log-update "^4.0.0"
-    p-map "^4.0.0"
-    rfdc "^1.3.0"
-    rxjs "^7.8.0"
-    through "^2.3.8"
-    wrap-ansi "^7.0.0"
+    cli-truncate "^4.0.0"
+    colorette "^2.0.20"
+    eventemitter3 "^5.0.1"
+    log-update "^6.1.0"
+    rfdc "^1.4.1"
+    wrap-ansi "^9.0.0"
 
 load-json-file@^4.0.0:
   version "4.0.0"
@@ -8637,13 +8146,13 @@ load-json-file@^4.0.0:
     pify "^3.0.0"
     strip-bom "^3.0.0"
 
-load-plugin@^5.0.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/load-plugin/-/load-plugin-5.1.0.tgz#15600f5191c742b16e058cfc908c227c13db0104"
-  integrity sha512-Lg1CZa1CFj2CbNaxijTL6PCbzd4qGTlZov+iH2p5Xwy/ApcZJh+i6jMN2cYePouTfjJfrNu3nXFdEw8LvbjPFQ==
+load-plugin@^6.0.0:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/load-plugin/-/load-plugin-6.0.2.tgz#a3ec9e04fb6009cf97f226e4695bc0f7037a9280"
+  integrity sha512-3KRkTvCOsyNrx4zvBl/+ZMqPdVyp26TIf6xkmfEGuGwCfNQ/HzhktwbJCxd1KJpzPbK42t/WVOL3cX+TDaMRuQ==
   dependencies:
-    "@npmcli/config" "^6.0.0"
-    import-meta-resolve "^2.0.0"
+    "@npmcli/config" "^8.0.0"
+    import-meta-resolve "^4.0.0"
 
 loader-runner@^4.2.0:
   version "4.3.0"
@@ -8672,13 +8181,6 @@ locate-path@^3.0.0:
     p-locate "^3.0.0"
     path-exists "^3.0.0"
 
-locate-path@^5.0.0:
-  version "5.0.0"
-  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
-  integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
-  dependencies:
-    p-locate "^4.1.0"
-
 locate-path@^6.0.0:
   version "6.0.0"
   resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
@@ -8723,15 +8225,16 @@ lodash@^4.17.20, lodash@^4.17.21:
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
   integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
 
-log-update@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
-  integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
+log-update@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz#1a04ff38166f94647ae1af562f4bd6a15b1b7cd4"
+  integrity sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==
   dependencies:
-    ansi-escapes "^4.3.0"
-    cli-cursor "^3.1.0"
-    slice-ansi "^4.0.0"
-    wrap-ansi "^6.2.0"
+    ansi-escapes "^7.0.0"
+    cli-cursor "^5.0.0"
+    slice-ansi "^7.1.0"
+    strip-ansi "^7.1.0"
+    wrap-ansi "^9.0.0"
 
 longest-streak@^3.0.0:
   version "3.1.0"
@@ -8757,6 +8260,16 @@ lowercase-keys@^3.0.0:
   resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2"
   integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==
 
+lru-cache@^10.2.0:
+  version "10.2.0"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3"
+  integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==
+
+lru-cache@^11.0.0:
+  version "11.0.1"
+  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.1.tgz#3a732fbfedb82c5ba7bca6564ad3f42afcb6e147"
+  integrity sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==
+
 lru-cache@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -8771,11 +8284,6 @@ lru-cache@^6.0.0:
   dependencies:
     yallist "^4.0.0"
 
-"lru-cache@^9.1.1 || ^10.0.0":
-  version "10.0.0"
-  resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61"
-  integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==
-
 lunr@^2.3.9:
   version "2.3.9"
   resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1"
@@ -8789,9 +8297,9 @@ magic-string@^0.25.2:
     sourcemap-codec "^1.4.8"
 
 magic-string@^0.30.3:
-  version "0.30.5"
-  resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9"
-  integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==
+  version "0.30.8"
+  resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.8.tgz#14e8624246d2bedba70d5462aa99ac9681844613"
+  integrity sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==
   dependencies:
     "@jridgewell/sourcemap-codec" "^1.4.15"
 
@@ -8807,16 +8315,23 @@ markdown-extensions@^2.0.0:
   resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-2.0.0.tgz#34bebc83e9938cae16e0e017e4a9814a8330d3c4"
   integrity sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==
 
+markdown-it@^14.1.0:
+  version "14.1.0"
+  resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45"
+  integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==
+  dependencies:
+    argparse "^2.0.1"
+    entities "^4.4.0"
+    linkify-it "^5.0.0"
+    mdurl "^2.0.0"
+    punycode.js "^2.3.1"
+    uc.micro "^2.1.0"
+
 markdown-table@^3.0.0:
   version "3.0.3"
   resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd"
   integrity sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==
 
-marked@^4.3.0:
-  version "4.3.0"
-  resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
-  integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==
-
 mdast-util-directive@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz#3fb1764e705bbdf0afb0d3f889e4404c3e82561f"
@@ -8852,24 +8367,6 @@ mdast-util-from-markdown@^0.8.5:
     parse-entities "^2.0.0"
     unist-util-stringify-position "^2.0.0"
 
-mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0"
-  integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-    "@types/unist" "^2.0.0"
-    decode-named-character-reference "^1.0.0"
-    mdast-util-to-string "^3.1.0"
-    micromark "^3.0.0"
-    micromark-util-decode-numeric-character-reference "^1.0.0"
-    micromark-util-decode-string "^1.0.0"
-    micromark-util-normalize-identifier "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    unist-util-stringify-position "^3.0.0"
-    uvu "^0.5.0"
-
 mdast-util-from-markdown@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz#52f14815ec291ed061f2922fd14d6689c810cb88"
@@ -8965,17 +8462,6 @@ mdast-util-gfm@^3.0.0:
     mdast-util-gfm-task-list-item "^2.0.0"
     mdast-util-to-markdown "^2.0.0"
 
-mdast-util-mdx-expression@^1.0.0:
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220"
-  integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==
-  dependencies:
-    "@types/estree-jsx" "^1.0.0"
-    "@types/hast" "^2.0.0"
-    "@types/mdast" "^3.0.0"
-    mdast-util-from-markdown "^1.0.0"
-    mdast-util-to-markdown "^1.0.0"
-
 mdast-util-mdx-expression@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz#4968b73724d320a379110d853e943a501bfd9d87"
@@ -8988,28 +8474,10 @@ mdast-util-mdx-expression@^2.0.0:
     mdast-util-from-markdown "^2.0.0"
     mdast-util-to-markdown "^2.0.0"
 
-mdast-util-mdx-jsx@^2.0.0:
-  version "2.1.4"
-  resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz#7c1f07f10751a78963cfabee38017cbc8b7786d1"
-  integrity sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==
-  dependencies:
-    "@types/estree-jsx" "^1.0.0"
-    "@types/hast" "^2.0.0"
-    "@types/mdast" "^3.0.0"
-    "@types/unist" "^2.0.0"
-    ccount "^2.0.0"
-    mdast-util-from-markdown "^1.1.0"
-    mdast-util-to-markdown "^1.3.0"
-    parse-entities "^4.0.0"
-    stringify-entities "^4.0.0"
-    unist-util-remove-position "^4.0.0"
-    unist-util-stringify-position "^3.0.0"
-    vfile-message "^3.0.0"
-
 mdast-util-mdx-jsx@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.0.0.tgz#f73631fa5bb7a36712ff1e9cedec0cafed03401c"
-  integrity sha512-XZuPPzQNBPAlaqsTTgRrcJnyFbSOBovSadFgbFu8SnuNgm+6Bdx1K+IWoitsmj6Lq6MNtI+ytOqwN70n//NaBA==
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.2.tgz#daae777c72f9c4a106592e3025aa50fb26068e1b"
+  integrity sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==
   dependencies:
     "@types/estree-jsx" "^1.0.0"
     "@types/hast" "^3.0.0"
@@ -9025,17 +8493,6 @@ mdast-util-mdx-jsx@^3.0.0:
     unist-util-stringify-position "^4.0.0"
     vfile-message "^4.0.0"
 
-mdast-util-mdx@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz#49b6e70819b99bb615d7223c088d295e53bb810f"
-  integrity sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==
-  dependencies:
-    mdast-util-from-markdown "^1.0.0"
-    mdast-util-mdx-expression "^1.0.0"
-    mdast-util-mdx-jsx "^2.0.0"
-    mdast-util-mdxjs-esm "^1.0.0"
-    mdast-util-to-markdown "^1.0.0"
-
 mdast-util-mdx@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz#792f9cf0361b46bee1fdf1ef36beac424a099c41"
@@ -9047,17 +8504,6 @@ mdast-util-mdx@^3.0.0:
     mdast-util-mdxjs-esm "^2.0.0"
     mdast-util-to-markdown "^2.0.0"
 
-mdast-util-mdxjs-esm@^1.0.0:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b"
-  integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==
-  dependencies:
-    "@types/estree-jsx" "^1.0.0"
-    "@types/hast" "^2.0.0"
-    "@types/mdast" "^3.0.0"
-    mdast-util-from-markdown "^1.0.0"
-    mdast-util-to-markdown "^1.0.0"
-
 mdast-util-mdxjs-esm@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97"
@@ -9070,26 +8516,18 @@ mdast-util-mdxjs-esm@^2.0.0:
     mdast-util-from-markdown "^2.0.0"
     mdast-util-to-markdown "^2.0.0"
 
-mdast-util-phrasing@^3.0.0:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz#c7c21d0d435d7fb90956038f02e8702781f95463"
-  integrity sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-    unist-util-is "^5.0.0"
-
 mdast-util-phrasing@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.0.0.tgz#468cbbb277375523de807248b8ad969feb02a5c7"
-  integrity sha512-xadSsJayQIucJ9n053dfQwVu1kuXg7jCTdYsMK8rqzKZh52nLfSH/k0sAxE0u+pj/zKZX+o5wB+ML5mRayOxFA==
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz#7cc0a8dec30eaf04b7b1a9661a92adb3382aa6e3"
+  integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==
   dependencies:
     "@types/mdast" "^4.0.0"
     unist-util-is "^6.0.0"
 
 mdast-util-to-hast@^13.0.0:
-  version "13.0.2"
-  resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.0.2.tgz#74c0a9f014bb2340cae6118f6fccd75467792be7"
-  integrity sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==
+  version "13.1.0"
+  resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.1.0.tgz#1ae54d903150a10fe04d59f03b2b95fd210b2124"
+  integrity sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==
   dependencies:
     "@types/hast" "^3.0.0"
     "@types/mdast" "^4.0.0"
@@ -9099,20 +8537,7 @@ mdast-util-to-hast@^13.0.0:
     trim-lines "^3.0.0"
     unist-util-position "^5.0.0"
     unist-util-visit "^5.0.0"
-
-mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0:
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6"
-  integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-    "@types/unist" "^2.0.0"
-    longest-streak "^3.0.0"
-    mdast-util-phrasing "^3.0.0"
-    mdast-util-to-string "^3.0.0"
-    micromark-util-decode-string "^1.0.0"
-    unist-util-visit "^4.0.0"
-    zwitch "^2.0.0"
+    vfile "^6.0.0"
 
 mdast-util-to-markdown@^2.0.0:
   version "2.1.0"
@@ -9133,13 +8558,6 @@ mdast-util-to-string@^2.0.0:
   resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b"
   integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==
 
-mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789"
-  integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-
 mdast-util-to-string@^4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814"
@@ -9162,6 +8580,11 @@ mdn-data@2.0.30:
   resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc"
   integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
 
+mdurl@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0"
+  integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==
+
 media-typer@0.3.0:
   version "0.3.0"
   resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
@@ -9199,28 +8622,6 @@ methods@~1.1.2:
   resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
   integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
 
-micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8"
-  integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==
-  dependencies:
-    decode-named-character-reference "^1.0.0"
-    micromark-factory-destination "^1.0.0"
-    micromark-factory-label "^1.0.0"
-    micromark-factory-space "^1.0.0"
-    micromark-factory-title "^1.0.0"
-    micromark-factory-whitespace "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-chunked "^1.0.0"
-    micromark-util-classify-character "^1.0.0"
-    micromark-util-html-tag-name "^1.0.0"
-    micromark-util-normalize-identifier "^1.0.0"
-    micromark-util-resolve-all "^1.0.0"
-    micromark-util-subtokenize "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.1"
-    uvu "^0.5.0"
-
 micromark-core-commonmark@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.0.tgz#50740201f0ee78c12a675bf3e68ffebc0bf931a3"
@@ -9345,20 +8746,6 @@ micromark-extension-gfm@^3.0.0:
     micromark-util-combine-extensions "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-extension-mdx-expression@^1.0.0:
-  version "1.0.8"
-  resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314"
-  integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==
-  dependencies:
-    "@types/estree" "^1.0.0"
-    micromark-factory-mdx-expression "^1.0.0"
-    micromark-factory-space "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-events-to-acorn "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    uvu "^0.5.0"
-
 micromark-extension-mdx-expression@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.0.tgz#1407b9ce69916cf5e03a196ad9586889df25302a"
@@ -9373,22 +8760,6 @@ micromark-extension-mdx-expression@^3.0.0:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-extension-mdx-jsx@^1.0.0:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82"
-  integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==
-  dependencies:
-    "@types/acorn" "^4.0.0"
-    "@types/estree" "^1.0.0"
-    estree-util-is-identifier-name "^2.0.0"
-    micromark-factory-mdx-expression "^1.0.0"
-    micromark-factory-space "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    uvu "^0.5.0"
-    vfile-message "^3.0.0"
-
 micromark-extension-mdx-jsx@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.0.tgz#4aba0797c25efb2366a3fd2d367c6b1c1159f4f5"
@@ -9405,13 +8776,6 @@ micromark-extension-mdx-jsx@^3.0.0:
     micromark-util-types "^2.0.0"
     vfile-message "^4.0.0"
 
-micromark-extension-mdx-md@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a"
-  integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==
-  dependencies:
-    micromark-util-types "^1.0.0"
-
 micromark-extension-mdx-md@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz#1d252881ea35d74698423ab44917e1f5b197b92d"
@@ -9419,21 +8783,6 @@ micromark-extension-mdx-md@^2.0.0:
   dependencies:
     micromark-util-types "^2.0.0"
 
-micromark-extension-mdxjs-esm@^1.0.0:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1"
-  integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==
-  dependencies:
-    "@types/estree" "^1.0.0"
-    micromark-core-commonmark "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-events-to-acorn "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    unist-util-position-from-estree "^1.1.0"
-    uvu "^0.5.0"
-    vfile-message "^3.0.0"
-
 micromark-extension-mdxjs-esm@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz#de21b2b045fd2059bd00d36746081de38390d54a"
@@ -9449,20 +8798,6 @@ micromark-extension-mdxjs-esm@^3.0.0:
     unist-util-position-from-estree "^2.0.0"
     vfile-message "^4.0.0"
 
-micromark-extension-mdxjs@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8"
-  integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==
-  dependencies:
-    acorn "^8.0.0"
-    acorn-jsx "^5.0.0"
-    micromark-extension-mdx-expression "^1.0.0"
-    micromark-extension-mdx-jsx "^1.0.0"
-    micromark-extension-mdx-md "^1.0.0"
-    micromark-extension-mdxjs-esm "^1.0.0"
-    micromark-util-combine-extensions "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-extension-mdxjs@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz#b5a2e0ed449288f3f6f6c544358159557549de18"
@@ -9477,15 +8812,6 @@ micromark-extension-mdxjs@^3.0.0:
     micromark-util-combine-extensions "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-factory-destination@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f"
-  integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==
-  dependencies:
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-factory-destination@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz#857c94debd2c873cba34e0445ab26b74f6a6ec07"
@@ -9495,16 +8821,6 @@ micromark-factory-destination@^2.0.0:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-factory-label@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68"
-  integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==
-  dependencies:
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    uvu "^0.5.0"
-
 micromark-factory-label@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz#17c5c2e66ce39ad6f4fc4cbf40d972f9096f726a"
@@ -9515,20 +8831,6 @@ micromark-factory-label@^2.0.0:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-factory-mdx-expression@^1.0.0:
-  version "1.0.9"
-  resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976"
-  integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==
-  dependencies:
-    "@types/estree" "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-events-to-acorn "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    unist-util-position-from-estree "^1.0.0"
-    uvu "^0.5.0"
-    vfile-message "^3.0.0"
-
 micromark-factory-mdx-expression@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.1.tgz#f2a9724ce174f1751173beb2c1f88062d3373b1b"
@@ -9559,16 +8861,6 @@ micromark-factory-space@^2.0.0:
     micromark-util-character "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-factory-title@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1"
-  integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==
-  dependencies:
-    micromark-factory-space "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-factory-title@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz#726140fc77892af524705d689e1cf06c8a83ea95"
@@ -9579,16 +8871,6 @@ micromark-factory-title@^2.0.0:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-factory-whitespace@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705"
-  integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==
-  dependencies:
-    micromark-factory-space "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-factory-whitespace@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz#9e92eb0f5468083381f923d9653632b3cfb5f763"
@@ -9608,20 +8890,13 @@ micromark-util-character@^1.0.0, micromark-util-character@^1.1.0:
     micromark-util-types "^1.0.0"
 
 micromark-util-character@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.0.1.tgz#52b824c2e2633b6fb33399d2ec78ee2a90d6b298"
-  integrity sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.0.tgz#31320ace16b4644316f6bf057531689c71e2aee1"
+  integrity sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==
   dependencies:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-util-chunked@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b"
-  integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==
-  dependencies:
-    micromark-util-symbol "^1.0.0"
-
 micromark-util-chunked@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz#e51f4db85fb203a79dbfef23fd41b2f03dc2ef89"
@@ -9629,15 +8904,6 @@ micromark-util-chunked@^2.0.0:
   dependencies:
     micromark-util-symbol "^2.0.0"
 
-micromark-util-classify-character@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d"
-  integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==
-  dependencies:
-    micromark-util-character "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-util-classify-character@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz#8c7537c20d0750b12df31f86e976d1d951165f34"
@@ -9647,14 +8913,6 @@ micromark-util-classify-character@^2.0.0:
     micromark-util-symbol "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-util-combine-extensions@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84"
-  integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==
-  dependencies:
-    micromark-util-chunked "^1.0.0"
-    micromark-util-types "^1.0.0"
-
 micromark-util-combine-extensions@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz#75d6ab65c58b7403616db8d6b31315013bfb7ee5"
@@ -9663,13 +8921,6 @@ micromark-util-combine-extensions@^2.0.0:
     micromark-util-chunked "^2.0.0"
     micromark-util-types "^2.0.0"
 
-micromark-util-decode-numeric-character-reference@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6"
-  integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==
-  dependencies:
-    micromark-util-symbol "^1.0.0"
-
 micromark-util-decode-numeric-character-reference@^2.0.0:
   version "2.0.1"
   resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz#2698bbb38f2a9ba6310e359f99fcb2b35a0d2bd5"
@@ -9677,16 +8928,6 @@ micromark-util-decode-numeric-character-reference@^2.0.0:
   dependencies:
     micromark-util-symbol "^2.0.0"
 
-micromark-util-decode-string@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c"
-  integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==
-  dependencies:
-    decode-named-character-reference "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-decode-numeric-character-reference "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-
 micromark-util-decode-string@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz#7dfa3a63c45aecaa17824e656bcdb01f9737154a"
@@ -9697,30 +8938,11 @@ micromark-util-decode-string@^2.0.0:
     micromark-util-decode-numeric-character-reference "^2.0.0"
     micromark-util-symbol "^2.0.0"
 
-micromark-util-encode@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5"
-  integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==
-
 micromark-util-encode@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1"
   integrity sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==
 
-micromark-util-events-to-acorn@^1.0.0:
-  version "1.2.3"
-  resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557"
-  integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==
-  dependencies:
-    "@types/acorn" "^4.0.0"
-    "@types/estree" "^1.0.0"
-    "@types/unist" "^2.0.0"
-    estree-util-visit "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    uvu "^0.5.0"
-    vfile-message "^3.0.0"
-
 micromark-util-events-to-acorn@^2.0.0:
   version "2.0.2"
   resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.2.tgz#4275834f5453c088bd29cd72dfbf80e3327cec07"
@@ -9735,23 +8957,11 @@ micromark-util-events-to-acorn@^2.0.0:
     micromark-util-types "^2.0.0"
     vfile-message "^4.0.0"
 
-micromark-util-html-tag-name@^1.0.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588"
-  integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==
-
 micromark-util-html-tag-name@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz#ae34b01cbe063363847670284c6255bb12138ec4"
   integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==
 
-micromark-util-normalize-identifier@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7"
-  integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==
-  dependencies:
-    micromark-util-symbol "^1.0.0"
-
 micromark-util-normalize-identifier@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz#91f9a4e65fe66cc80c53b35b0254ad67aa431d8b"
@@ -9759,13 +8969,6 @@ micromark-util-normalize-identifier@^2.0.0:
   dependencies:
     micromark-util-symbol "^2.0.0"
 
-micromark-util-resolve-all@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188"
-  integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==
-  dependencies:
-    micromark-util-types "^1.0.0"
-
 micromark-util-resolve-all@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz#189656e7e1a53d0c86a38a652b284a252389f364"
@@ -9773,15 +8976,6 @@ micromark-util-resolve-all@^2.0.0:
   dependencies:
     micromark-util-types "^2.0.0"
 
-micromark-util-sanitize-uri@^1.0.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d"
-  integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==
-  dependencies:
-    micromark-util-character "^1.0.0"
-    micromark-util-encode "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-
 micromark-util-sanitize-uri@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de"
@@ -9791,16 +8985,6 @@ micromark-util-sanitize-uri@^2.0.0:
     micromark-util-encode "^2.0.0"
     micromark-util-symbol "^2.0.0"
 
-micromark-util-subtokenize@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1"
-  integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==
-  dependencies:
-    micromark-util-chunked "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.0"
-    uvu "^0.5.0"
-
 micromark-util-subtokenize@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.0.tgz#9f412442d77e0c5789ffdf42377fa8a2bcbdf581"
@@ -9821,7 +9005,7 @@ micromark-util-symbol@^2.0.0:
   resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044"
   integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==
 
-micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
+micromark-util-types@^1.0.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283"
   integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==
@@ -9831,29 +9015,6 @@ micromark-util-types@^2.0.0:
   resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e"
   integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==
 
-micromark@^3.0.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9"
-  integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==
-  dependencies:
-    "@types/debug" "^4.0.0"
-    debug "^4.0.0"
-    decode-named-character-reference "^1.0.0"
-    micromark-core-commonmark "^1.0.1"
-    micromark-factory-space "^1.0.0"
-    micromark-util-character "^1.0.0"
-    micromark-util-chunked "^1.0.0"
-    micromark-util-combine-extensions "^1.0.0"
-    micromark-util-decode-numeric-character-reference "^1.0.0"
-    micromark-util-encode "^1.0.0"
-    micromark-util-normalize-identifier "^1.0.0"
-    micromark-util-resolve-all "^1.0.0"
-    micromark-util-sanitize-uri "^1.0.0"
-    micromark-util-subtokenize "^1.0.0"
-    micromark-util-symbol "^1.0.0"
-    micromark-util-types "^1.0.1"
-    uvu "^0.5.0"
-
 micromark@^4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.0.tgz#84746a249ebd904d9658cfabc1e8e5f32cbc6249"
@@ -9893,6 +9054,14 @@ micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
     braces "^3.0.2"
     picomatch "^2.3.1"
 
+micromatch@~4.0.8:
+  version "4.0.8"
+  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
+  integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
+  dependencies:
+    braces "^3.0.3"
+    picomatch "^2.3.1"
+
 mime-db@1.52.0, "mime-db@>= 1.43.0 < 2":
   version "1.52.0"
   resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
@@ -9937,6 +9106,11 @@ mimic-fn@^4.0.0:
   resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
   integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
 
+mimic-function@^5.0.0:
+  version "5.0.1"
+  resolved "https://registry.yarnpkg.com/mimic-function/-/mimic-function-5.0.1.tgz#acbe2b3349f99b9deaca7fb70e48b83e94e67076"
+  integrity sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==
+
 mimic-response@^3.1.0:
   version "3.1.0"
   resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
@@ -9948,11 +9122,12 @@ mimic-response@^4.0.0:
   integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==
 
 mini-css-extract-plugin@^2.7.6:
-  version "2.7.6"
-  resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d"
-  integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==
+  version "2.8.1"
+  resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.1.tgz#75245f3f30ce3a56dbdd478084df6fe475f02dc7"
+  integrity sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==
   dependencies:
     schema-utils "^4.0.0"
+    tapable "^2.2.1"
 
 minimalistic-assert@^1.0.0:
   version "1.0.1"
@@ -9966,55 +9141,43 @@ minimatch@3.1.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch
   dependencies:
     brace-expansion "^1.1.7"
 
-minimatch@^5.0.1:
-  version "5.1.6"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
-  integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
-  dependencies:
-    brace-expansion "^2.0.1"
-
-minimatch@^8.0.2:
-  version "8.0.4"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-8.0.4.tgz#847c1b25c014d4e9a7f68aaf63dedd668a626229"
-  integrity sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==
+minimatch@^10.0.0:
+  version "10.0.1"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz#ce0521856b453c86e25f2c4c0d03e6ff7ddc440b"
+  integrity sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==
   dependencies:
     brace-expansion "^2.0.1"
 
 minimatch@^9.0.0, minimatch@^9.0.1:
-  version "9.0.2"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.2.tgz#397e387fff22f6795844d00badc903a3d5de7057"
-  integrity sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==
-  dependencies:
-    brace-expansion "^2.0.1"
-
-minimatch@^9.0.3:
   version "9.0.3"
   resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
   integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
   dependencies:
     brace-expansion "^2.0.1"
 
+minimatch@^9.0.4, minimatch@^9.0.5:
+  version "9.0.5"
+  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
+  integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
+  dependencies:
+    brace-expansion "^2.0.1"
+
 minimist@^1.2.0, minimist@^1.2.6:
   version "1.2.8"
   resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
   integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
 
-minipass@^4.2.4:
-  version "4.2.8"
-  resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a"
-  integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==
-
-"minipass@^5.0.0 || ^6.0.2":
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81"
-  integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==
-
-"minipass@^5.0.0 || ^6.0.2 || ^7.0.0":
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4:
   version "7.0.4"
   resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
   integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
 
-mri@^1.1.0, mri@^1.1.5:
+minipass@^7.1.2:
+  version "7.1.2"
+  resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
+  integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
+
+mri@^1.1.0, mri@^1.2.0:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
   integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
@@ -10034,7 +9197,7 @@ ms@2.1.2:
   resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
   integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
 
-ms@2.1.3, ms@^2.1.1:
+ms@2.1.3, ms@^2.1.1, ms@^2.1.3:
   version "2.1.3"
   resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
   integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
@@ -10047,17 +9210,6 @@ multicast-dns@^7.2.5:
     dns-packet "^5.2.2"
     thunky "^1.0.2"
 
-multimatch@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-4.0.0.tgz#8c3c0f6e3e8449ada0af3dd29efb491a375191b3"
-  integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==
-  dependencies:
-    "@types/minimatch" "^3.0.3"
-    array-differ "^3.0.0"
-    array-union "^2.1.0"
-    arrify "^2.0.1"
-    minimatch "^3.0.4"
-
 mz@^2.7.0:
   version "2.7.0"
   resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
@@ -10067,11 +9219,6 @@ mz@^2.7.0:
     object-assign "^4.0.1"
     thenify-all "^1.0.0"
 
-nanoid@^3.3.6:
-  version "3.3.6"
-  resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
-  integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
-
 nanoid@^3.3.7:
   version "3.3.7"
   resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
@@ -10125,21 +9272,16 @@ node-forge@^1:
   resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
   integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
 
-node-releases@^2.0.12:
-  version "2.0.12"
-  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039"
-  integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
-
-node-releases@^2.0.13:
-  version "2.0.13"
-  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
-  integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
-
 node-releases@^2.0.14:
   version "2.0.14"
   resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
   integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
 
+node-releases@^2.0.18:
+  version "2.0.18"
+  resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
+  integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
+
 nopt@^7.0.0:
   version "7.2.0"
   resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7"
@@ -10173,9 +9315,9 @@ normalize-url@^6.0.1:
   integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
 
 normalize-url@^8.0.0:
-  version "8.0.0"
-  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.0.tgz#593dbd284f743e8dcf6a5ddf8fadff149c82701a"
-  integrity sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==
+  version "8.0.1"
+  resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-8.0.1.tgz#9b7d96af9836577c58f5883e939365fa15623a4a"
+  integrity sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==
 
 npm-normalize-package-bin@^3.0.0:
   version "3.0.1"
@@ -10197,7 +9339,7 @@ npm-run-all@^4.1.5:
     shell-quote "^1.6.1"
     string.prototype.padend "^3.0.0"
 
-npm-run-path@^4.0.0, npm-run-path@^4.0.1:
+npm-run-path@^4.0.1:
   version "4.0.1"
   resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
   integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
@@ -10205,16 +9347,16 @@ npm-run-path@^4.0.0, npm-run-path@^4.0.1:
     path-key "^3.0.0"
 
 npm-run-path@^5.1.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00"
-  integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==
+  version "5.3.0"
+  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f"
+  integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==
   dependencies:
     path-key "^4.0.0"
 
-npm-to-yarn@^2.0.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-2.1.0.tgz#ff4e18028d18eb844691f1ccb556be5f3ccfde34"
-  integrity sha512-2C1IgJLdJngq1bSER7K7CGFszRr9s2rijEwvENPEgI0eK9xlD3tNwDc0UJnRj7FIT2aydWm72jB88uVswAhXHA==
+npm-to-yarn@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-2.2.1.tgz#048843a6630621daffc6a239dfc89698b8abf7e8"
+  integrity sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==
 
 nprogress@^0.2.0:
   version "0.2.0"
@@ -10233,60 +9375,79 @@ object-assign@^4.0.1, object-assign@^4.1.1:
   resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
   integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
 
-object-inspect@^1.12.3, object-inspect@^1.9.0:
-  version "1.12.3"
-  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
-  integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+object-inspect@^1.13.1:
+  version "1.13.1"
+  resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
+  integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
+
+object-is@^1.1.5:
+  version "1.1.6"
+  resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07"
+  integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
 
 object-keys@^1.1.1:
   version "1.1.1"
   resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
   integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
 
-object.assign@^4.1.0, object.assign@^4.1.4:
-  version "4.1.4"
-  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
-  integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
+object.assign@^4.1.0, object.assign@^4.1.4, object.assign@^4.1.5:
+  version "4.1.5"
+  resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0"
+  integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
+    call-bind "^1.0.5"
+    define-properties "^1.2.1"
     has-symbols "^1.0.3"
     object-keys "^1.1.1"
 
-object.entries@^1.1.6:
-  version "1.1.6"
-  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23"
-  integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
+object.entries@^1.1.7, object.entries@^1.1.8:
+  version "1.1.8"
+  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41"
+  integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-object-atoms "^1.0.0"
 
-object.fromentries@^2.0.6:
-  version "2.0.6"
-  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73"
-  integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
+object.fromentries@^2.0.7, object.fromentries@^2.0.8:
+  version "2.0.8"
+  resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65"
+  integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-object-atoms "^1.0.0"
 
-object.hasown@^1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92"
-  integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
+object.groupby@^1.0.1, object.groupby@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e"
+  integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==
   dependencies:
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
 
-object.values@^1.1.6:
-  version "1.1.6"
-  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
-  integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
+object.hasown@^1.1.3:
+  version "1.1.4"
+  resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.4.tgz#e270ae377e4c120cdcb7656ce66884a6218283dc"
+  integrity sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-object-atoms "^1.0.0"
+
+object.values@^1.1.6, object.values@^1.1.7, object.values@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b"
+  integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-object-atoms "^1.0.0"
 
 obuf@^1.0.0, obuf@^1.1.2:
   version "1.1.2"
@@ -10305,14 +9466,14 @@ on-headers@~1.0.2:
   resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
   integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
 
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
+once@^1.3.0:
   version "1.4.0"
   resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
   integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
   dependencies:
     wrappy "1"
 
-onetime@^5.1.0, onetime@^5.1.2:
+onetime@^5.1.2:
   version "5.1.2"
   resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
   integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
@@ -10326,6 +9487,20 @@ onetime@^6.0.0:
   dependencies:
     mimic-fn "^4.0.0"
 
+onetime@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/onetime/-/onetime-7.0.0.tgz#9f16c92d8c9ef5120e3acd9dd9957cceecc1ab60"
+  integrity sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==
+  dependencies:
+    mimic-function "^5.0.0"
+
+oniguruma-to-js@0.4.3:
+  version "0.4.3"
+  resolved "https://registry.yarnpkg.com/oniguruma-to-js/-/oniguruma-to-js-0.4.3.tgz#8d899714c21f5c7d59a3c0008ca50e848086d740"
+  integrity sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==
+  dependencies:
+    regex "^4.3.2"
+
 open@^8.0.9, open@^8.4.0:
   version "8.4.2"
   resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
@@ -10335,16 +9510,6 @@ open@^8.0.9, open@^8.4.0:
     is-docker "^2.1.1"
     is-wsl "^2.2.0"
 
-open@^9.1.0:
-  version "9.1.0"
-  resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6"
-  integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==
-  dependencies:
-    default-browser "^4.0.0"
-    define-lazy-prop "^3.0.0"
-    is-inside-container "^1.0.0"
-    is-wsl "^2.2.0"
-
 opener@^1.5.2:
   version "1.5.2"
   resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
@@ -10377,7 +9542,7 @@ p-finally@^1.0.0:
   resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
   integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
 
-p-limit@^2.0.0, p-limit@^2.2.0:
+p-limit@^2.0.0:
   version "2.3.0"
   resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
   integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
@@ -10405,13 +9570,6 @@ p-locate@^3.0.0:
   dependencies:
     p-limit "^2.0.0"
 
-p-locate@^4.1.0:
-  version "4.1.0"
-  resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
-  integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
-  dependencies:
-    p-limit "^2.2.0"
-
 p-locate@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
@@ -10461,6 +9619,11 @@ p-try@^2.0.0:
   resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
   integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
 
+package-json-from-dist@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
+  integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
+
 package-json@^8.1.0:
   version "8.1.1"
   resolved "https://registry.yarnpkg.com/package-json/-/package-json-8.1.1.tgz#3e9948e43df40d1e8e78a85485f1070bf8f03dc8"
@@ -10530,15 +9693,16 @@ parse-json@^5.0.0, parse-json@^5.2.0:
     json-parse-even-better-errors "^2.3.0"
     lines-and-columns "^1.1.6"
 
-parse-json@^6.0.0:
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-6.0.2.tgz#6bf79c201351cc12d5d66eba48d5a097c13dc200"
-  integrity sha512-SA5aMiaIjXkAiBrW/yPgLgQAQg42f7K3ACO+2l/zOvtQBwX58DMUsFJXelW2fx3yMBmWOVkR6j1MGsdSbCA4UA==
+parse-json@^7.0.0:
+  version "7.1.1"
+  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-7.1.1.tgz#68f7e6f0edf88c54ab14c00eb700b753b14e2120"
+  integrity sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==
   dependencies:
-    "@babel/code-frame" "^7.16.0"
+    "@babel/code-frame" "^7.21.4"
     error-ex "^1.3.2"
-    json-parse-even-better-errors "^2.3.1"
-    lines-and-columns "^2.0.2"
+    json-parse-even-better-errors "^3.0.0"
+    lines-and-columns "^2.0.3"
+    type-fest "^3.8.0"
 
 parse-numeric-range@^1.3.0:
   version "1.3.0"
@@ -10618,21 +9782,21 @@ path-parse@^1.0.7:
   resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
   integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
 
-path-scurry@^1.10.0, path-scurry@^1.6.1:
-  version "1.10.0"
-  resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.0.tgz#0ffbd4c1f7de9600f98a1405507d9f9acb438ab3"
-  integrity sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==
+path-scurry@^1.10.2:
+  version "1.10.2"
+  resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7"
+  integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==
   dependencies:
-    lru-cache "^9.1.1 || ^10.0.0"
-    minipass "^5.0.0 || ^6.0.2"
+    lru-cache "^10.2.0"
+    minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
 
-path-scurry@^1.10.1:
-  version "1.10.1"
-  resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
-  integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
+path-scurry@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz#9f052289f23ad8bf9397a2a0425e7b8615c58580"
+  integrity sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==
   dependencies:
-    lru-cache "^9.1.1 || ^10.0.0"
-    minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+    lru-cache "^11.0.0"
+    minipass "^7.1.2"
 
 path-to-regexp@0.1.7:
   version "0.1.7"
@@ -10685,17 +9849,27 @@ picocolors@^1.0.0:
   resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
   integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
 
+picocolors@^1.0.1, picocolors@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
+  integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
+
 picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1:
   version "2.3.1"
   resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
   integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
 
+picomatch@^3.0.1:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516"
+  integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==
+
 pidtree@^0.3.0:
   version "0.3.1"
   resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a"
   integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==
 
-pidtree@^0.6.0:
+pidtree@~0.6.0:
   version "0.6.0"
   resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c"
   integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==
@@ -10729,12 +9903,17 @@ pkg-up@^3.1.0:
   dependencies:
     find-up "^3.0.0"
 
-postcss-attribute-case-insensitive@^6.0.2:
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-6.0.2.tgz#e843091859323342e461878d201ee70278809e01"
-  integrity sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==
+possible-typed-array-names@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f"
+  integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==
+
+postcss-attribute-case-insensitive@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.0.tgz#500034cdea39836a406626ce0f83686f2af52ffa"
+  integrity sha512-ETMUHIw67Kyv9Q81nden/NuJbRh+4/S963giXpfSLd5eaKK8kd1UdAHMVRV/NG/w/N6Cq8B0qZIZbZZWU/67+A==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.1.0"
 
 postcss-calc@^8.2.3:
   version "8.2.4"
@@ -10744,6 +9923,14 @@ postcss-calc@^8.2.3:
     postcss-selector-parser "^6.0.9"
     postcss-value-parser "^4.2.0"
 
+postcss-calc@^9.0.1:
+  version "9.0.1"
+  resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-9.0.1.tgz#a744fd592438a93d6de0f1434c572670361eb6c6"
+  integrity sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==
+  dependencies:
+    postcss-selector-parser "^6.0.11"
+    postcss-value-parser "^4.2.0"
+
 postcss-clamp@^4.1.0:
   version "4.1.0"
   resolved "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz#7263e95abadd8c2ba1bd911b0b5a5c9c93e02363"
@@ -10751,26 +9938,31 @@ postcss-clamp@^4.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-color-functional-notation@^6.0.2:
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.2.tgz#5fa38d36cd0e2ea9db7fd6f2f2a1ffb2c0796a8d"
-  integrity sha512-FsjSmlSufuiFBsIqQ++VxFmvX7zKndZpBkHmfXr4wqhvzM92FTEkAh703iqWTl1U3faTgqioIqCbfqdWiFVwtw==
+postcss-color-functional-notation@^7.0.2:
+  version "7.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.2.tgz#c9f025dc99de7235ca728e39eb69544948878a15"
+  integrity sha512-c2WkR0MS73s+P5SgY1KBaSEE61Rj+miW095rkWDnMQxbTCQkp6y/jft8U0QMxEsI4k1Pd4PdV+TP9/1zIDR6XQ==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
-    postcss-value-parser "^4.2.0"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
-postcss-color-hex-alpha@^9.0.2:
-  version "9.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.2.tgz#6d3ed50342802469880981a1999515d003ff7d79"
-  integrity sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==
+postcss-color-hex-alpha@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-10.0.0.tgz#5dd3eba1f8facb4ea306cba6e3f7712e876b0c76"
+  integrity sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==
   dependencies:
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-postcss-color-rebeccapurple@^9.0.1:
-  version "9.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.1.tgz#d1266b9a9571ca478c8ce7ad97a15727eac3c6b2"
-  integrity sha512-ds4cq5BjRieizVb2PnvbJ0omg9VCo2/KzluvoFZbxuGpsGJ5BQSD93CHBooinEtangCM5YqUOerGDl4xGmOb6Q==
+postcss-color-rebeccapurple@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-10.0.0.tgz#5ada28406ac47e0796dff4056b0a9d5a6ecead98"
+  integrity sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==
   dependencies:
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
 postcss-colormin@^5.3.1:
@@ -10783,6 +9975,16 @@ postcss-colormin@^5.3.1:
     colord "^2.9.1"
     postcss-value-parser "^4.2.0"
 
+postcss-colormin@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-6.1.0.tgz#076e8d3fb291fbff7b10e6b063be9da42ff6488d"
+  integrity sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==
+  dependencies:
+    browserslist "^4.23.0"
+    caniuse-api "^3.0.0"
+    colord "^2.9.3"
+    postcss-value-parser "^4.2.0"
+
 postcss-convert-values@^5.1.3:
   version "5.1.3"
   resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393"
@@ -10791,118 +9993,150 @@ postcss-convert-values@^5.1.3:
     browserslist "^4.21.4"
     postcss-value-parser "^4.2.0"
 
-postcss-custom-media@^10.0.2:
-  version "10.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz#70a244bbc59fc953ab6573e4e2c9624639aef08a"
-  integrity sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==
+postcss-convert-values@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz#3498387f8efedb817cbc63901d45bd1ceaa40f48"
+  integrity sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==
   dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.5"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/media-query-list-parser" "^2.1.5"
+    browserslist "^4.23.0"
+    postcss-value-parser "^4.2.0"
 
-postcss-custom-properties@^13.3.2:
-  version "13.3.2"
-  resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.2.tgz#88952f883003d897ade5c836e1e005b09a12f02b"
-  integrity sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA==
-  dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.5"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
+postcss-custom-media@^11.0.1:
+  version "11.0.1"
+  resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-11.0.1.tgz#7f7157a9235d78432b20a722d8f3844a85043eb8"
+  integrity sha512-vfBliYVgEEJUFXCRPQ7jYt1wlD322u+/5GT0tZqMVYFInkpDHfjhU3nk2quTRW4uFc/umOOqLlxvrEOZRvloMw==
+  dependencies:
+    "@csstools/cascade-layer-name-parser" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/media-query-list-parser" "^3.0.1"
+
+postcss-custom-properties@^14.0.1:
+  version "14.0.1"
+  resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-14.0.1.tgz#4374f6a39f6b91d26f10e994fb12d14de518e481"
+  integrity sha512-SB4GjuZjIq5GQFNbxFrirQPbkdbJooyNy8bh+fcJ8ZG0oasJTflTTtR4geb56h+FBVDIb9Hx4v/NiG2caOj8nQ==
+  dependencies:
+    "@csstools/cascade-layer-name-parser" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-postcss-custom-selectors@^7.1.6:
-  version "7.1.6"
-  resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz#6d28812998dcd48f61a6a538141fc16cf2c42123"
-  integrity sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==
+postcss-custom-selectors@^8.0.1:
+  version "8.0.1"
+  resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-8.0.1.tgz#05d2b6b3482ad4765a125f41b956a5a15a25ecab"
+  integrity sha512-2McIpyhAeKhUzVqrP4ZyMBpK5FuD+Y9tpQwhcof49652s7gez8057cSaOg/epYcKlztSYxb0GHfi7W5h3JoGUg==
   dependencies:
-    "@csstools/cascade-layer-name-parser" "^1.0.5"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    postcss-selector-parser "^6.0.13"
+    "@csstools/cascade-layer-name-parser" "^2.0.1"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    postcss-selector-parser "^6.1.0"
 
-postcss-dir-pseudo-class@^8.0.0:
-  version "8.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.0.tgz#9e4e37d170f672520d3f38fd8376db0ca04d4e9c"
-  integrity sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg==
+postcss-dir-pseudo-class@^9.0.0:
+  version "9.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-9.0.0.tgz#44e2bc44e32d05a8a92723cb7d7e23da493b6859"
+  integrity sha512-T59BG9lURiXmhcJMyKbyjNAK3KCyEQYEhaz9GAETHXfIy9XbGQeyz+H0zIwRJlrP4KKRPJolNYe3QjQPemMjBA==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
 postcss-discard-comments@^5.1.2:
   version "5.1.2"
   resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696"
   integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==
 
+postcss-discard-comments@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz#e768dcfdc33e0216380623652b0a4f69f4678b6c"
+  integrity sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==
+
 postcss-discard-duplicates@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
   integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
 
+postcss-discard-duplicates@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz#d121e893c38dc58a67277f75bb58ba43fce4c3eb"
+  integrity sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==
+
 postcss-discard-empty@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c"
   integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==
 
+postcss-discard-empty@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz#ee39c327219bb70473a066f772621f81435a79d9"
+  integrity sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==
+
 postcss-discard-overridden@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
   integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
 
-postcss-discard-unused@^5.1.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz#8974e9b143d887677304e558c1166d3762501142"
-  integrity sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==
+postcss-discard-overridden@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz#4e9f9c62ecd2df46e8fdb44dc17e189776572e2d"
+  integrity sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==
+
+postcss-discard-unused@^6.0.5:
+  version "6.0.5"
+  resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-6.0.5.tgz#c1b0e8c032c6054c3fbd22aaddba5b248136f338"
+  integrity sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==
   dependencies:
-    postcss-selector-parser "^6.0.5"
+    postcss-selector-parser "^6.0.16"
 
-postcss-double-position-gradients@^5.0.2:
-  version "5.0.2"
-  resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.2.tgz#a55ed4d6a395f324aa5535ea8c42c74e8ace2651"
-  integrity sha512-KTbvdOOy8z8zb0BTkEg4/1vqlRlApdvjw8/pFoehgQl0WVO+fezDGlvo0B8xRA+XccA7ohkQCULKNsiNOx70Cw==
+postcss-double-position-gradients@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.0.tgz#eddd424ec754bb543d057d4d2180b1848095d4d2"
+  integrity sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==
   dependencies:
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-postcss-focus-visible@^9.0.0:
-  version "9.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-9.0.0.tgz#a81227428d6f1e524099c6581f7c7132f987e382"
-  integrity sha512-zA4TbVaIaT8npZBEROhZmlc+GBKE8AELPHXE7i4TmIUEQhw/P/mSJfY9t6tBzpQ1rABeGtEOHYrW4SboQeONMQ==
+postcss-focus-visible@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-10.0.0.tgz#54435d9bba825165377cae4eef2a8028440d344c"
+  integrity sha512-GJjzvTj7JY+zN7wVBQ4osdKX53QLUdr6r2rSEkBUqrEMDKu3fHMHKOY9rirdirbHCx3IETnK25EtpPARR2KWNw==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
-postcss-focus-within@^8.0.0:
-  version "8.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-8.0.0.tgz#8304380dd2dadc1c2dcfa52816ff86be7736fc16"
-  integrity sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==
+postcss-focus-within@^9.0.0:
+  version "9.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-9.0.0.tgz#cb281d1c700178bf21b9ae2f4f3a515f53b959b2"
+  integrity sha512-QwflAWUToNZvQLGbc4qJhrQO8yZ5617L6hSNzNWDoqRX4FoIh9fbJbEjy0nvFPciaaOoCaeqcxBwYPbFU0HvBw==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
 postcss-font-variant@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz#efd59b4b7ea8bb06127f2d031bfbb7f24d32fa66"
   integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==
 
-postcss-gap-properties@^5.0.0:
-  version "5.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-5.0.0.tgz#3bd77f3d51facb1da404b4edd72b8203929385a5"
-  integrity sha512-YjsEEL6890P7MCv6fch6Am1yq0EhQCJMXyT4LBohiu87+4/WqR7y5W3RIv53WdA901hhytgRvjlrAhibhW4qsA==
+postcss-gap-properties@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-6.0.0.tgz#d5ff0bdf923c06686499ed2b12e125fe64054fed"
+  integrity sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==
 
-postcss-image-set-function@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-6.0.1.tgz#e2bba0a0536a0c70f63933f7c5df68742e9615ca"
-  integrity sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ==
+postcss-image-set-function@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-7.0.0.tgz#538e94e16716be47f9df0573b56bbaca86e1da53"
+  integrity sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==
   dependencies:
+    "@csstools/utilities" "^2.0.0"
     postcss-value-parser "^4.2.0"
 
-postcss-lab-function@^6.0.7:
-  version "6.0.7"
-  resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.7.tgz#b1dd0ad5a4c993b7695614239754b9be48f3b24b"
-  integrity sha512-4d1lhDVPukHFqkMv4G5vVcK+tgY52vwb5uR1SWKOaO5389r2q8fMxBWuXSW+YtbCOEGP0/X9KERi9E9le2pJuw==
+postcss-lab-function@^7.0.2:
+  version "7.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-7.0.2.tgz#c127ffaac928a8f25d150c34ca10ed535228f827"
+  integrity sha512-h4ARGLIBtC1PmCHsLgTWWj8j1i1CXoaht4A5RlITDX2z9AeFBak0YlY6sdF4oJGljrep+Dg2SSccIj4QnFbRDg==
   dependencies:
-    "@csstools/css-color-parser" "^1.4.0"
-    "@csstools/css-parser-algorithms" "^2.3.2"
-    "@csstools/css-tokenizer" "^2.2.1"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
+    "@csstools/css-color-parser" "^3.0.2"
+    "@csstools/css-parser-algorithms" "^3.0.1"
+    "@csstools/css-tokenizer" "^3.0.1"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/utilities" "^2.0.0"
 
 postcss-load-config@^3.0.0:
   version "3.1.4"
@@ -10921,19 +10155,19 @@ postcss-loader@^7.3.3:
     jiti "^1.20.0"
     semver "^7.5.4"
 
-postcss-logical@^7.0.0:
-  version "7.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-7.0.0.tgz#9a83426e716e3c8f957dda3fd874edbcf22c754e"
-  integrity sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw==
+postcss-logical@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-8.0.0.tgz#0db0b90c2dc53b485a8074a4b7a906297544f58d"
+  integrity sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-merge-idents@^5.1.1:
-  version "5.1.1"
-  resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz#7753817c2e0b75d0853b56f78a89771e15ca04a1"
-  integrity sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==
+postcss-merge-idents@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-6.0.3.tgz#7b9c31c7bc823c94bec50f297f04e3c2b838ea65"
+  integrity sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==
   dependencies:
-    cssnano-utils "^3.1.0"
+    cssnano-utils "^4.0.2"
     postcss-value-parser "^4.2.0"
 
 postcss-merge-longhand@^5.1.7:
@@ -10944,6 +10178,14 @@ postcss-merge-longhand@^5.1.7:
     postcss-value-parser "^4.2.0"
     stylehacks "^5.1.1"
 
+postcss-merge-longhand@^6.0.5:
+  version "6.0.5"
+  resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz#ba8a8d473617c34a36abbea8dda2b215750a065a"
+  integrity sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+    stylehacks "^6.1.1"
+
 postcss-merge-rules@^5.1.4:
   version "5.1.4"
   resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
@@ -10954,6 +10196,16 @@ postcss-merge-rules@^5.1.4:
     cssnano-utils "^3.1.0"
     postcss-selector-parser "^6.0.5"
 
+postcss-merge-rules@^6.1.1:
+  version "6.1.1"
+  resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz#7aa539dceddab56019469c0edd7d22b64c3dea9d"
+  integrity sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==
+  dependencies:
+    browserslist "^4.23.0"
+    caniuse-api "^3.0.0"
+    cssnano-utils "^4.0.2"
+    postcss-selector-parser "^6.0.16"
+
 postcss-minify-font-values@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
@@ -10961,6 +10213,13 @@ postcss-minify-font-values@^5.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-minify-font-values@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz#a0e574c02ee3f299be2846369211f3b957ea4c59"
+  integrity sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-minify-gradients@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c"
@@ -10970,6 +10229,15 @@ postcss-minify-gradients@^5.1.1:
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
+postcss-minify-gradients@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz#ca3eb55a7bdb48a1e187a55c6377be918743dbd6"
+  integrity sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==
+  dependencies:
+    colord "^2.9.3"
+    cssnano-utils "^4.0.2"
+    postcss-value-parser "^4.2.0"
+
 postcss-minify-params@^5.1.4:
   version "5.1.4"
   resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352"
@@ -10979,6 +10247,15 @@ postcss-minify-params@^5.1.4:
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
+postcss-minify-params@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz#54551dec77b9a45a29c3cb5953bf7325a399ba08"
+  integrity sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==
+  dependencies:
+    browserslist "^4.23.0"
+    cssnano-utils "^4.0.2"
+    postcss-value-parser "^4.2.0"
+
 postcss-minify-selectors@^5.2.1:
   version "5.2.1"
   resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6"
@@ -10986,24 +10263,31 @@ postcss-minify-selectors@^5.2.1:
   dependencies:
     postcss-selector-parser "^6.0.5"
 
+postcss-minify-selectors@^6.0.4:
+  version "6.0.4"
+  resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz#197f7d72e6dd19eed47916d575d69dc38b396aff"
+  integrity sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==
+  dependencies:
+    postcss-selector-parser "^6.0.16"
+
 postcss-modules-extract-imports@^3.0.0:
   version "3.0.0"
   resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
   integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
 
-postcss-modules-local-by-default@^4.0.0, postcss-modules-local-by-default@^4.0.3:
-  version "4.0.3"
-  resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524"
-  integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==
+postcss-modules-local-by-default@^4.0.0, postcss-modules-local-by-default@^4.0.4:
+  version "4.0.4"
+  resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz#7cbed92abd312b94aaea85b68226d3dec39a14e6"
+  integrity sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==
   dependencies:
     icss-utils "^5.0.0"
     postcss-selector-parser "^6.0.2"
     postcss-value-parser "^4.1.0"
 
-postcss-modules-scope@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
-  integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
+postcss-modules-scope@^3.0.0, postcss-modules-scope@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz#32cfab55e84887c079a19bbb215e721d683ef134"
+  integrity sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==
   dependencies:
     postcss-selector-parser "^6.0.4"
 
@@ -11028,19 +10312,25 @@ postcss-modules@^4.0.0:
     postcss-modules-values "^4.0.0"
     string-hash "^1.1.1"
 
-postcss-nesting@^12.0.1:
-  version "12.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.1.tgz#abb76d15dfd59a9f7d03b4464f53b60a4d3795c4"
-  integrity sha512-6LCqCWP9pqwXw/njMvNK0hGY44Fxc4B2EsGbn6xDcxbNRzP8GYoxT7yabVVMLrX3quqOJ9hg2jYMsnkedOf8pA==
+postcss-nesting@^13.0.0:
+  version "13.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-13.0.0.tgz#4393158faa33f56674167b3556981c9216892ab2"
+  integrity sha512-TCGQOizyqvEkdeTPM+t6NYwJ3EJszYE/8t8ILxw/YoeUvz2rz7aM8XTAmBWh9/DJjfaaabL88fWrsVHSPF2zgA==
   dependencies:
-    "@csstools/selector-specificity" "^3.0.0"
-    postcss-selector-parser "^6.0.13"
+    "@csstools/selector-resolve-nested" "^2.0.0"
+    "@csstools/selector-specificity" "^4.0.0"
+    postcss-selector-parser "^6.1.0"
 
 postcss-normalize-charset@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
   integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
 
+postcss-normalize-charset@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz#1ec25c435057a8001dac942942a95ffe66f721e1"
+  integrity sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==
+
 postcss-normalize-display-values@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
@@ -11048,6 +10338,13 @@ postcss-normalize-display-values@^5.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-display-values@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz#54f02764fed0b288d5363cbb140d6950dbbdd535"
+  integrity sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-positions@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92"
@@ -11055,6 +10352,13 @@ postcss-normalize-positions@^5.1.1:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-positions@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz#e982d284ec878b9b819796266f640852dbbb723a"
+  integrity sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-repeat-style@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2"
@@ -11062,6 +10366,13 @@ postcss-normalize-repeat-style@^5.1.1:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-repeat-style@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz#f8006942fd0617c73f049dd8b6201c3a3040ecf3"
+  integrity sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-string@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
@@ -11069,6 +10380,13 @@ postcss-normalize-string@^5.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-string@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz#e3cc6ad5c95581acd1fc8774b309dd7c06e5e363"
+  integrity sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-timing-functions@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
@@ -11076,6 +10394,13 @@ postcss-normalize-timing-functions@^5.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-timing-functions@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz#40cb8726cef999de984527cbd9d1db1f3e9062c0"
+  integrity sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-unicode@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030"
@@ -11084,6 +10409,14 @@ postcss-normalize-unicode@^5.1.1:
     browserslist "^4.21.4"
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-unicode@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz#aaf8bbd34c306e230777e80f7f12a4b7d27ce06e"
+  integrity sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==
+  dependencies:
+    browserslist "^4.23.0"
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-url@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
@@ -11092,6 +10425,13 @@ postcss-normalize-url@^5.1.0:
     normalize-url "^6.0.1"
     postcss-value-parser "^4.2.0"
 
+postcss-normalize-url@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz#292792386be51a8de9a454cb7b5c58ae22db0f79"
+  integrity sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-normalize-whitespace@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa"
@@ -11099,10 +10439,17 @@ postcss-normalize-whitespace@^5.1.1:
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-opacity-percentage@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-2.0.0.tgz#c0a56060cd4586e3f954dbde1efffc2deed53002"
-  integrity sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==
+postcss-normalize-whitespace@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz#fbb009e6ebd312f8b2efb225c2fcc7cf32b400cd"
+  integrity sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
+postcss-opacity-percentage@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz#0b0db5ed5db5670e067044b8030b89c216e1eb0a"
+  integrity sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==
 
 postcss-ordered-values@^5.1.3:
   version "5.1.3"
@@ -11112,10 +10459,18 @@ postcss-ordered-values@^5.1.3:
     cssnano-utils "^3.1.0"
     postcss-value-parser "^4.2.0"
 
-postcss-overflow-shorthand@^5.0.0:
-  version "5.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.0.tgz#1ed6d6c532cdf52b5dabec06662dc63f9207855c"
-  integrity sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ==
+postcss-ordered-values@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz#366bb663919707093451ab70c3f99c05672aaae5"
+  integrity sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==
+  dependencies:
+    cssnano-utils "^4.0.2"
+    postcss-value-parser "^4.2.0"
+
+postcss-overflow-shorthand@^6.0.0:
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-6.0.0.tgz#f5252b4a2ee16c68cd8a9029edb5370c4a9808af"
+  integrity sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==
   dependencies:
     postcss-value-parser "^4.2.0"
 
@@ -11124,90 +10479,91 @@ postcss-page-break@^3.0.4:
   resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz#7fbf741c233621622b68d435babfb70dd8c1ee5f"
   integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==
 
-postcss-place@^9.0.0:
-  version "9.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-9.0.0.tgz#7e47851bf40d16ce06f6013453b706100ca6c102"
-  integrity sha512-qLEPD9VPH5opDVemwmRaujODF9nExn24VOC3ghgVLEvfYN7VZLwJHes0q/C9YR5hI2UC3VgBE8Wkdp1TxCXhtg==
+postcss-place@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-10.0.0.tgz#ba36ee4786ca401377ced17a39d9050ed772e5a9"
+  integrity sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==
   dependencies:
     postcss-value-parser "^4.2.0"
 
-postcss-preset-env@^9.3.0:
-  version "9.3.0"
-  resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz#58f296087cf3dc18cb75af11954c6c5822220327"
-  integrity sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==
-  dependencies:
-    "@csstools/postcss-cascade-layers" "^4.0.1"
-    "@csstools/postcss-color-function" "^3.0.7"
-    "@csstools/postcss-color-mix-function" "^2.0.7"
-    "@csstools/postcss-exponential-functions" "^1.0.1"
-    "@csstools/postcss-font-format-keywords" "^3.0.0"
-    "@csstools/postcss-gamut-mapping" "^1.0.0"
-    "@csstools/postcss-gradients-interpolation-method" "^4.0.7"
-    "@csstools/postcss-hwb-function" "^3.0.6"
-    "@csstools/postcss-ic-unit" "^3.0.2"
-    "@csstools/postcss-initial" "^1.0.0"
-    "@csstools/postcss-is-pseudo-class" "^4.0.3"
-    "@csstools/postcss-logical-float-and-clear" "^2.0.0"
-    "@csstools/postcss-logical-overflow" "^1.0.0"
-    "@csstools/postcss-logical-overscroll-behavior" "^1.0.0"
-    "@csstools/postcss-logical-resize" "^2.0.0"
-    "@csstools/postcss-logical-viewport-units" "^2.0.3"
-    "@csstools/postcss-media-minmax" "^1.1.0"
-    "@csstools/postcss-media-queries-aspect-ratio-number-values" "^2.0.3"
-    "@csstools/postcss-nested-calc" "^3.0.0"
-    "@csstools/postcss-normalize-display-values" "^3.0.1"
-    "@csstools/postcss-oklab-function" "^3.0.7"
-    "@csstools/postcss-progressive-custom-properties" "^3.0.2"
-    "@csstools/postcss-relative-color-syntax" "^2.0.7"
-    "@csstools/postcss-scope-pseudo-class" "^3.0.0"
-    "@csstools/postcss-stepped-value-functions" "^3.0.2"
-    "@csstools/postcss-text-decoration-shorthand" "^3.0.3"
-    "@csstools/postcss-trigonometric-functions" "^3.0.2"
-    "@csstools/postcss-unset-value" "^3.0.0"
-    autoprefixer "^10.4.16"
-    browserslist "^4.22.1"
-    css-blank-pseudo "^6.0.0"
-    css-has-pseudo "^6.0.0"
-    css-prefers-color-scheme "^9.0.0"
-    cssdb "^7.9.0"
-    postcss-attribute-case-insensitive "^6.0.2"
+postcss-preset-env@^10.0.5:
+  version "10.0.5"
+  resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-10.0.5.tgz#f7bf8d5fdbc2d40627dccf07e7af5a48c2b61e6a"
+  integrity sha512-ipPOgr3RY0utgJDbNoCX2dxKoQ4e4WO1pC21QhDlxCAX8+qC8O2Ezkzb54fd+8XtZ1UveA5gLjBsVo6dJDoWIg==
+  dependencies:
+    "@csstools/postcss-cascade-layers" "^5.0.0"
+    "@csstools/postcss-color-function" "^4.0.2"
+    "@csstools/postcss-color-mix-function" "^3.0.2"
+    "@csstools/postcss-content-alt-text" "^2.0.1"
+    "@csstools/postcss-exponential-functions" "^2.0.1"
+    "@csstools/postcss-font-format-keywords" "^4.0.0"
+    "@csstools/postcss-gamut-mapping" "^2.0.2"
+    "@csstools/postcss-gradients-interpolation-method" "^5.0.2"
+    "@csstools/postcss-hwb-function" "^4.0.2"
+    "@csstools/postcss-ic-unit" "^4.0.0"
+    "@csstools/postcss-initial" "^2.0.0"
+    "@csstools/postcss-is-pseudo-class" "^5.0.0"
+    "@csstools/postcss-light-dark-function" "^2.0.4"
+    "@csstools/postcss-logical-float-and-clear" "^3.0.0"
+    "@csstools/postcss-logical-overflow" "^2.0.0"
+    "@csstools/postcss-logical-overscroll-behavior" "^2.0.0"
+    "@csstools/postcss-logical-resize" "^3.0.0"
+    "@csstools/postcss-logical-viewport-units" "^3.0.1"
+    "@csstools/postcss-media-minmax" "^2.0.1"
+    "@csstools/postcss-media-queries-aspect-ratio-number-values" "^3.0.1"
+    "@csstools/postcss-nested-calc" "^4.0.0"
+    "@csstools/postcss-normalize-display-values" "^4.0.0"
+    "@csstools/postcss-oklab-function" "^4.0.2"
+    "@csstools/postcss-progressive-custom-properties" "^4.0.0"
+    "@csstools/postcss-relative-color-syntax" "^3.0.2"
+    "@csstools/postcss-scope-pseudo-class" "^4.0.0"
+    "@csstools/postcss-stepped-value-functions" "^4.0.1"
+    "@csstools/postcss-text-decoration-shorthand" "^4.0.1"
+    "@csstools/postcss-trigonometric-functions" "^4.0.1"
+    "@csstools/postcss-unset-value" "^4.0.0"
+    autoprefixer "^10.4.19"
+    browserslist "^4.23.1"
+    css-blank-pseudo "^7.0.0"
+    css-has-pseudo "^7.0.0"
+    css-prefers-color-scheme "^10.0.0"
+    cssdb "^8.1.1"
+    postcss-attribute-case-insensitive "^7.0.0"
     postcss-clamp "^4.1.0"
-    postcss-color-functional-notation "^6.0.2"
-    postcss-color-hex-alpha "^9.0.2"
-    postcss-color-rebeccapurple "^9.0.1"
-    postcss-custom-media "^10.0.2"
-    postcss-custom-properties "^13.3.2"
-    postcss-custom-selectors "^7.1.6"
-    postcss-dir-pseudo-class "^8.0.0"
-    postcss-double-position-gradients "^5.0.2"
-    postcss-focus-visible "^9.0.0"
-    postcss-focus-within "^8.0.0"
+    postcss-color-functional-notation "^7.0.2"
+    postcss-color-hex-alpha "^10.0.0"
+    postcss-color-rebeccapurple "^10.0.0"
+    postcss-custom-media "^11.0.1"
+    postcss-custom-properties "^14.0.1"
+    postcss-custom-selectors "^8.0.1"
+    postcss-dir-pseudo-class "^9.0.0"
+    postcss-double-position-gradients "^6.0.0"
+    postcss-focus-visible "^10.0.0"
+    postcss-focus-within "^9.0.0"
     postcss-font-variant "^5.0.0"
-    postcss-gap-properties "^5.0.0"
-    postcss-image-set-function "^6.0.1"
-    postcss-lab-function "^6.0.7"
-    postcss-logical "^7.0.0"
-    postcss-nesting "^12.0.1"
-    postcss-opacity-percentage "^2.0.0"
-    postcss-overflow-shorthand "^5.0.0"
+    postcss-gap-properties "^6.0.0"
+    postcss-image-set-function "^7.0.0"
+    postcss-lab-function "^7.0.2"
+    postcss-logical "^8.0.0"
+    postcss-nesting "^13.0.0"
+    postcss-opacity-percentage "^3.0.0"
+    postcss-overflow-shorthand "^6.0.0"
     postcss-page-break "^3.0.4"
-    postcss-place "^9.0.0"
-    postcss-pseudo-class-any-link "^9.0.0"
+    postcss-place "^10.0.0"
+    postcss-pseudo-class-any-link "^10.0.0"
     postcss-replace-overflow-wrap "^4.0.0"
-    postcss-selector-not "^7.0.1"
-    postcss-value-parser "^4.2.0"
+    postcss-selector-not "^8.0.0"
 
-postcss-pseudo-class-any-link@^9.0.0:
-  version "9.0.0"
-  resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.0.tgz#5fb5b700e0ecdc845a94eb433b8ccff756cbf660"
-  integrity sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA==
+postcss-pseudo-class-any-link@^10.0.0:
+  version "10.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-10.0.0.tgz#ca8a1392c0ae207ccfa44f4de84984bf7cfdf93a"
+  integrity sha512-bde8VE08Gq3ekKDq2BQ0ESOjNX54lrFDK3U9zABPINaqHblbZL/4Wfo5Y2vk6U64yVd/sjDwTzuiisFBpGNNIQ==
   dependencies:
-    postcss-selector-parser "^6.0.13"
+    postcss-selector-parser "^6.1.0"
 
-postcss-reduce-idents@^5.2.0:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz#c89c11336c432ac4b28792f24778859a67dfba95"
-  integrity sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==
+postcss-reduce-idents@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-6.0.3.tgz#b0d9c84316d2a547714ebab523ec7d13704cd486"
+  integrity sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==
   dependencies:
     postcss-value-parser "^4.2.0"
 
@@ -11219,6 +10575,14 @@ postcss-reduce-initial@^5.1.2:
     browserslist "^4.21.4"
     caniuse-api "^3.0.0"
 
+postcss-reduce-initial@^6.1.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz#4401297d8e35cb6e92c8e9586963e267105586ba"
+  integrity sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==
+  dependencies:
+    browserslist "^4.23.0"
+    caniuse-api "^3.0.0"
+
 postcss-reduce-transforms@^5.1.0:
   version "5.1.0"
   resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
@@ -11226,32 +10590,47 @@ postcss-reduce-transforms@^5.1.0:
   dependencies:
     postcss-value-parser "^4.2.0"
 
+postcss-reduce-transforms@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz#6fa2c586bdc091a7373caeee4be75a0f3e12965d"
+  integrity sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+
 postcss-replace-overflow-wrap@^4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz#d2df6bed10b477bf9c52fab28c568b4b29ca4319"
   integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==
 
-postcss-selector-not@^7.0.1:
-  version "7.0.1"
-  resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-7.0.1.tgz#8142e90c8eb6c8c5faecb3e9d96d4353d02e94fb"
-  integrity sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==
+postcss-selector-not@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-8.0.0.tgz#370e76ec27d417d944be966e924656a1ce624e49"
+  integrity sha512-g/juh7A83GWc3+kWL8BiS3YUIJb3XNqIVKz1kGvgN3OhoGCsPncy1qo/+q61tjy5r87OxBhSY1+hcH3yOhEW+g==
   dependencies:
-    postcss-selector-parser "^6.0.10"
+    postcss-selector-parser "^6.1.0"
 
-postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
-  version "6.0.13"
-  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
-  integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
+postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.16, postcss-selector-parser@^6.1.0:
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
+  integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
   dependencies:
     cssesc "^3.0.0"
     util-deprecate "^1.0.2"
 
-postcss-sort-media-queries@^4.4.1:
-  version "4.4.1"
-  resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz#04a5a78db3921eb78f28a1a781a2e68e65258128"
-  integrity sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==
+postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9:
+  version "6.0.16"
+  resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
+  integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==
+  dependencies:
+    cssesc "^3.0.0"
+    util-deprecate "^1.0.2"
+
+postcss-sort-media-queries@^5.2.0:
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/postcss-sort-media-queries/-/postcss-sort-media-queries-5.2.0.tgz#4556b3f982ef27d3bac526b99b6c0d3359a6cf97"
+  integrity sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==
   dependencies:
-    sort-css-media-queries "2.1.0"
+    sort-css-media-queries "2.2.0"
 
 postcss-svgo@^5.1.0:
   version "5.1.0"
@@ -11261,6 +10640,14 @@ postcss-svgo@^5.1.0:
     postcss-value-parser "^4.2.0"
     svgo "^2.7.0"
 
+postcss-svgo@^6.0.3:
+  version "6.0.3"
+  resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-6.0.3.tgz#1d6e180d6df1fa8a3b30b729aaa9161e94f04eaa"
+  integrity sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==
+  dependencies:
+    postcss-value-parser "^4.2.0"
+    svgo "^3.2.0"
+
 postcss-unique-selectors@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6"
@@ -11268,43 +10655,50 @@ postcss-unique-selectors@^5.1.1:
   dependencies:
     postcss-selector-parser "^6.0.5"
 
+postcss-unique-selectors@^6.0.4:
+  version "6.0.4"
+  resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz#983ab308896b4bf3f2baaf2336e14e52c11a2088"
+  integrity sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==
+  dependencies:
+    postcss-selector-parser "^6.0.16"
+
 postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
   version "4.2.0"
   resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
   integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
 
-postcss-zindex@^5.1.0:
-  version "5.1.0"
-  resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-5.1.0.tgz#4a5c7e5ff1050bd4c01d95b1847dfdcc58a496ff"
-  integrity sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==
+postcss-zindex@^6.0.2:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-6.0.2.tgz#e498304b83a8b165755f53db40e2ea65a99b56e1"
+  integrity sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==
 
-postcss@^8.4.17, postcss@^8.4.21:
-  version "8.4.25"
-  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.25.tgz#4a133f5e379eda7f61e906c3b1aaa9b81292726f"
-  integrity sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==
+postcss@^8.4.21, postcss@^8.4.26, postcss@^8.4.33:
+  version "8.4.38"
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
+  integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
   dependencies:
-    nanoid "^3.3.6"
+    nanoid "^3.3.7"
     picocolors "^1.0.0"
-    source-map-js "^1.0.2"
+    source-map-js "^1.2.0"
 
-postcss@^8.4.26:
-  version "8.4.33"
-  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.33.tgz#1378e859c9f69bf6f638b990a0212f43e2aaa742"
-  integrity sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==
+postcss@^8.4.24, postcss@^8.4.38:
+  version "8.4.47"
+  resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
+  integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
   dependencies:
     nanoid "^3.3.7"
-    picocolors "^1.0.0"
-    source-map-js "^1.0.2"
+    picocolors "^1.1.0"
+    source-map-js "^1.2.1"
 
 prelude-ls@^1.2.1:
   version "1.2.1"
   resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
   integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
 
-prettier@^2.8.3:
-  version "2.8.8"
-  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
-  integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
+prettier@^3.3.3:
+  version "3.3.3"
+  resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105"
+  integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==
 
 pretty-error@^4.0.0:
   version "4.0.0"
@@ -11314,24 +10708,25 @@ pretty-error@^4.0.0:
     lodash "^4.17.20"
     renderkid "^3.0.0"
 
-pretty-quick@^3.1.3:
-  version "3.1.3"
-  resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-3.1.3.tgz#15281108c0ddf446675157ca40240099157b638e"
-  integrity sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==
+pretty-quick@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-4.0.0.tgz#ea5cce85a5804bfbec7327b0e064509155d03f39"
+  integrity sha512-M+2MmeufXb/M7Xw3Afh1gxcYpj+sK0AxEfnfF958ktFeAyi5MsKY5brymVURQLgPLV1QaF5P4pb2oFJ54H3yzQ==
   dependencies:
-    chalk "^3.0.0"
-    execa "^4.0.0"
-    find-up "^4.1.0"
-    ignore "^5.1.4"
-    mri "^1.1.5"
-    multimatch "^4.0.0"
+    execa "^5.1.1"
+    find-up "^5.0.0"
+    ignore "^5.3.0"
+    mri "^1.2.0"
+    picocolors "^1.0.0"
+    picomatch "^3.0.1"
+    tslib "^2.6.2"
 
 pretty-time@^1.1.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-1.1.0.tgz#ffb7429afabb8535c346a34e41873adf3d74dd0e"
   integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==
 
-prism-react-renderer@^2.0.6, prism-react-renderer@^2.3.0, prism-react-renderer@^2.3.1:
+prism-react-renderer@^2.0.6, prism-react-renderer@^2.3.0:
   version "2.3.1"
   resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.3.1.tgz#e59e5450052ede17488f6bc85de1553f584ff8d5"
   integrity sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==
@@ -11339,6 +10734,14 @@ prism-react-renderer@^2.0.6, prism-react-renderer@^2.3.0, prism-react-renderer@^
     "@types/prismjs" "^1.26.0"
     clsx "^2.0.0"
 
+prism-react-renderer@^2.4.0:
+  version "2.4.0"
+  resolved "https://registry.yarnpkg.com/prism-react-renderer/-/prism-react-renderer-2.4.0.tgz#c5ea692029c2f8b3fd04f63662d04ffd4eaf10a0"
+  integrity sha512-327BsVCD/unU4CNLZTWVHyUHKnsqcvj2qbPlQ8MiBE2eq2rgctjigPA1Gp9HLF83kZ20zNN6jgizHJeEsyFYOw==
+  dependencies:
+    "@types/prismjs" "^1.26.0"
+    clsx "^2.0.0"
+
 prismjs@^1.29.0:
   version "1.29.0"
   resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12"
@@ -11382,9 +10785,9 @@ prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
     react-is "^16.13.1"
 
 property-information@^6.0.0:
-  version "6.2.0"
-  resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d"
-  integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.4.1.tgz#de8b79a7415fd2107dfbe65758bb2cc9dfcf60ac"
+  integrity sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==
 
 proto-list@~1.2.1:
   version "1.2.4"
@@ -11399,13 +10802,10 @@ proxy-addr@~2.0.7:
     forwarded "0.2.0"
     ipaddr.js "1.9.1"
 
-pump@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
-  integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
-  dependencies:
-    end-of-stream "^1.1.0"
-    once "^1.3.1"
+punycode.js@^2.3.1:
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7"
+  integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==
 
 punycode@^1.3.2:
   version "1.4.1"
@@ -11413,9 +10813,9 @@ punycode@^1.3.2:
   integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
 
 punycode@^2.1.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
-  integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
+  version "2.3.1"
+  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
+  integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
 
 pupa@^3.1.0:
   version "3.1.0"
@@ -11465,10 +10865,10 @@ range-parser@^1.2.1, range-parser@~1.2.1:
   resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
   integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
 
-raw-body@2.5.1:
-  version "2.5.1"
-  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857"
-  integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==
+raw-body@2.5.2:
+  version "2.5.2"
+  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
+  integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
   dependencies:
     bytes "3.1.2"
     http-errors "2.0.0"
@@ -11523,13 +10923,13 @@ react-dev-utils@^12.0.1:
     strip-ansi "^6.0.1"
     text-table "^0.2.0"
 
-react-dom@^18.2.0:
-  version "18.2.0"
-  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
-  integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
+react-dom@^18.3.1:
+  version "18.3.1"
+  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4"
+  integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==
   dependencies:
     loose-envify "^1.1.0"
-    scheduler "^0.23.0"
+    scheduler "^0.23.2"
 
 react-element-to-jsx-string@^15.0.0:
   version "15.0.0"
@@ -11545,12 +10945,21 @@ react-error-overlay@^6.0.11:
   resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb"
   integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==
 
-react-fast-compare@^3.2.0:
+react-fast-compare@^3.2.0, react-fast-compare@^3.2.2:
   version "3.2.2"
   resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49"
   integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==
 
-react-helmet-async@*, react-helmet-async@^1.3.0:
+react-helmet-async@*:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-2.0.4.tgz#50a4377778f380ed1d0136303916b38eff1bf153"
+  integrity sha512-yxjQMWposw+akRfvpl5+8xejl4JtUlHnEBcji6u8/e6oc7ozT+P9PNTWMhCbz2y9tc5zPegw2BvKjQA+NwdEjQ==
+  dependencies:
+    invariant "^2.2.4"
+    react-fast-compare "^3.2.2"
+    shallowequal "^1.1.0"
+
+react-helmet-async@^1.3.0:
   version "1.3.0"
   resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.3.0.tgz#7bd5bf8c5c69ea9f02f6083f14ce33ef545c222e"
   integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==
@@ -11572,14 +10981,14 @@ react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0:
   integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
 
 react-json-view-lite@^1.2.0:
-  version "1.2.1"
-  resolved "https://registry.yarnpkg.com/react-json-view-lite/-/react-json-view-lite-1.2.1.tgz#c59a0bea4ede394db331d482ee02e293d38f8218"
-  integrity sha512-Itc0g86fytOmKZoIoJyGgvNqohWSbh3NXIKNgH6W6FT9PC1ck4xas1tT3Rr/b3UlFXyA9Jjaw9QSXdZy2JwGMQ==
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/react-json-view-lite/-/react-json-view-lite-1.3.0.tgz#1f1feee6f1b1d75cc498cd57812f441b88b51e21"
+  integrity sha512-aN1biKC5v4DQkmQBlZjuMFR09MKZGMPtIg+cut8zEeg2HXd6gl2gRy0n4HMacHf0dznQgo0SVXN7eT8zV3hEuQ==
 
-react-live@^4.1.5:
-  version "4.1.5"
-  resolved "https://registry.yarnpkg.com/react-live/-/react-live-4.1.5.tgz#a4fa4cfdcad763503a209a29bace3339764fdfb1"
-  integrity sha512-ul3Zwvqvh6KTg8j7xGCT26+c8J9vQ+LFUrZCbrrrzEExuVB/39s1GKG3NsywnL+aGAjpfnUTaVCe7KlKIvVPiw==
+react-live@^4.1.6:
+  version "4.1.7"
+  resolved "https://registry.yarnpkg.com/react-live/-/react-live-4.1.7.tgz#a451054bee78e6c9b4410dfc3940b318d9bc7880"
+  integrity sha512-NTzl0POOAW3dkp7+QL30duOrIu2Vzf2LHdx4TaQ0BqOAtQcSTKEXujfm9jR2VoCHko0oi35PYp38yKQBXz4mrg==
   dependencies:
     prism-react-renderer "^2.0.6"
     sucrase "^3.31.0"
@@ -11592,6 +11001,13 @@ react-loadable-ssr-addon-v5-slorber@^1.0.1:
   dependencies:
     "@babel/runtime" "^7.10.3"
 
+"react-loadable@npm:@docusaurus/react-loadable@6.0.0":
+  version "6.0.0"
+  resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-6.0.0.tgz#de6c7f73c96542bd70786b8e522d535d69069dc4"
+  integrity sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==
+  dependencies:
+    "@types/react" "*"
+
 react-router-config@^5.1.1:
   version "5.1.1"
   resolved "https://registry.yarnpkg.com/react-router-config/-/react-router-config-5.1.1.tgz#0f4263d1a80c6b2dc7b9c1902c9526478194a988"
@@ -11627,10 +11043,10 @@ react-router@5.3.4, react-router@^5.3.4:
     tiny-invariant "^1.0.2"
     tiny-warning "^1.0.0"
 
-react@^18.2.0:
-  version "18.2.0"
-  resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
-  integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
+react@^18.3.1:
+  version "18.3.1"
+  resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891"
+  integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==
   dependencies:
     loose-envify "^1.1.0"
 
@@ -11673,6 +11089,11 @@ readable-stream@^3.0.2, readable-stream@^3.0.6:
     string_decoder "^1.1.1"
     util-deprecate "^1.0.1"
 
+readdirp@^4.0.1:
+  version "4.0.1"
+  resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.0.1.tgz#b2fe35f8dca63183cd3b86883ecc8f720ea96ae6"
+  integrity sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==
+
 readdirp@~3.6.0:
   version "3.6.0"
   resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
@@ -11699,10 +11120,23 @@ recursive-readdir@^2.2.2:
   dependencies:
     minimatch "^3.0.5"
 
+reflect.getprototypeof@^1.0.4:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859"
+  integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.1"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.4"
+    globalthis "^1.0.3"
+    which-builtin-type "^1.1.3"
+
 regenerate-unicode-properties@^10.1.0:
-  version "10.1.0"
-  resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
-  integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
+  version "10.1.1"
+  resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480"
+  integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==
   dependencies:
     regenerate "^1.4.2"
 
@@ -11718,23 +11152,11 @@ regenerate@^1.4.2:
   resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
   integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
 
-regenerator-runtime@^0.13.11:
-  version "0.13.11"
-  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
-  integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-
 regenerator-runtime@^0.14.0:
   version "0.14.1"
   resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f"
   integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==
 
-regenerator-transform@^0.15.1:
-  version "0.15.1"
-  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
-  integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
-  dependencies:
-    "@babel/runtime" "^7.8.4"
-
 regenerator-transform@^0.15.2:
   version "0.15.2"
   resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4"
@@ -11742,14 +11164,20 @@ regenerator-transform@^0.15.2:
   dependencies:
     "@babel/runtime" "^7.8.4"
 
-regexp.prototype.flags@^1.4.3:
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
-  integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
+regex@^4.3.2:
+  version "4.3.2"
+  resolved "https://registry.yarnpkg.com/regex/-/regex-4.3.2.tgz#a68a68c9b337a77bf4ce4ed0b4b1a49d97cb3b7b"
+  integrity sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==
+
+regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2:
+  version "1.5.2"
+  resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334"
+  integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.2.0"
-    functions-have-names "^1.2.3"
+    call-bind "^1.0.6"
+    define-properties "^1.2.1"
+    es-errors "^1.3.0"
+    set-function-name "^2.0.1"
 
 regexpu-core@^4.5.4:
   version "4.8.0"
@@ -11891,31 +11319,14 @@ remark-gfm@^4.0.0:
     remark-stringify "^11.0.0"
     unified "^11.0.0"
 
-remark-mdx@^2.3.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.3.0.tgz#efe678025a8c2726681bde8bf111af4a93943db4"
-  integrity sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==
-  dependencies:
-    mdast-util-mdx "^2.0.0"
-    micromark-extension-mdxjs "^1.0.0"
-
 remark-mdx@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-3.0.0.tgz#146905a3925b078970e05fc89b0e16b9cc3bfddd"
-  integrity sha512-O7yfjuC6ra3NHPbRVxfflafAj3LTwx3b73aBvkEFU5z4PsD6FD4vrqJAkE5iNGLz71GdjXfgRqm3SQ0h0VuE7g==
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-3.0.1.tgz#8f73dd635c1874e44426e243f72c0977cf60e212"
+  integrity sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==
   dependencies:
     mdast-util-mdx "^3.0.0"
     micromark-extension-mdxjs "^3.0.0"
 
-remark-parse@^10.0.1:
-  version "10.0.2"
-  resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262"
-  integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-    mdast-util-from-markdown "^1.0.0"
-    unified "^10.0.0"
-
 remark-parse@^11.0.0:
   version "11.0.0"
   resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1"
@@ -11927,9 +11338,9 @@ remark-parse@^11.0.0:
     unified "^11.0.0"
 
 remark-rehype@^11.0.0:
-  version "11.0.0"
-  resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.0.0.tgz#7f21c08738bde024be5f16e4a8b13e5d7a04cf6b"
-  integrity sha512-vx8x2MDMcxuE4lBmQ46zYUDfcFMmvg80WYX+UNLeG6ixjdCCLcw1lrgAukwBTuOFsS78eoAedHGn9sNM0w7TPw==
+  version "11.1.0"
+  resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.0.tgz#d5f264f42bcbd4d300f030975609d01a1697ccdc"
+  integrity sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==
   dependencies:
     "@types/hast" "^3.0.0"
     "@types/mdast" "^4.0.0"
@@ -11937,15 +11348,6 @@ remark-rehype@^11.0.0:
     unified "^11.0.0"
     vfile "^6.0.0"
 
-remark-stringify@^10.0.2:
-  version "10.0.3"
-  resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-10.0.3.tgz#83b43f2445c4ffbb35b606f967d121b2b6d69717"
-  integrity sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==
-  dependencies:
-    "@types/mdast" "^3.0.0"
-    mdast-util-to-markdown "^1.0.0"
-    unified "^10.0.0"
-
 remark-stringify@^11.0.0:
   version "11.0.0"
   resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-11.0.0.tgz#4c5b01dd711c269df1aaae11743eb7e2e7636fd3"
@@ -12011,21 +11413,21 @@ resolve-pkg-maps@^1.0.0:
   resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
   integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
 
-resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.22.1:
-  version "1.22.2"
-  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
-  integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
+resolve@^1.1.6, resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.22.1, resolve@^1.22.4:
+  version "1.22.8"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+  integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
   dependencies:
-    is-core-module "^2.11.0"
+    is-core-module "^2.13.0"
     path-parse "^1.0.7"
     supports-preserve-symlinks-flag "^1.0.0"
 
-resolve@^2.0.0-next.4:
-  version "2.0.0-next.4"
-  resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
-  integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
+resolve@^2.0.0-next.5:
+  version "2.0.0-next.5"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
+  integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
   dependencies:
-    is-core-module "^2.9.0"
+    is-core-module "^2.13.0"
     path-parse "^1.0.7"
     supports-preserve-symlinks-flag "^1.0.0"
 
@@ -12036,13 +11438,13 @@ responselike@^3.0.0:
   dependencies:
     lowercase-keys "^3.0.0"
 
-restore-cursor@^3.1.0:
-  version "3.1.0"
-  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
-  integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+restore-cursor@^5.0.0:
+  version "5.1.0"
+  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-5.1.0.tgz#0766d95699efacb14150993f55baf0953ea1ebe7"
+  integrity sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==
   dependencies:
-    onetime "^5.1.0"
-    signal-exit "^3.0.2"
+    onetime "^7.0.0"
+    signal-exit "^4.1.0"
 
 retry@^0.13.1:
   version "0.13.1"
@@ -12054,10 +11456,10 @@ reusify@^1.0.4:
   resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
   integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
 
-rfdc@^1.3.0:
-  version "1.3.0"
-  resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
-  integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
+rfdc@^1.4.1:
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca"
+  integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==
 
 rimraf@^3.0.2:
   version "3.0.2"
@@ -12066,17 +11468,18 @@ rimraf@^3.0.2:
   dependencies:
     glob "^7.1.3"
 
-rimraf@^4.1.2:
-  version "4.4.1"
-  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755"
-  integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==
+rimraf@^6.0.1:
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-6.0.1.tgz#ffb8ad8844dd60332ab15f52bc104bc3ed71ea4e"
+  integrity sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==
   dependencies:
-    glob "^9.2.0"
+    glob "^11.0.0"
+    package-json-from-dist "^1.0.0"
 
-rollup-plugin-esbuild@^6.1.0:
-  version "6.1.0"
-  resolved "https://registry.yarnpkg.com/rollup-plugin-esbuild/-/rollup-plugin-esbuild-6.1.0.tgz#966d297fe9edea3e6ba5dfd8ca3208825c82d7ce"
-  integrity sha512-HPpXU65V8bSpW8eSYPahtUJaJHmbxJGybuf/M8B3bz/6i11YaYHlNNJIQ38gSEV0FyohQOgVxJ2YMEEZtEmwvA==
+rollup-plugin-esbuild@^6.1.1:
+  version "6.1.1"
+  resolved "https://registry.yarnpkg.com/rollup-plugin-esbuild/-/rollup-plugin-esbuild-6.1.1.tgz#ec1dba647dbe1974f76192c75e907aa6eb636399"
+  integrity sha512-CehMY9FAqJD5OUaE/Mi1r5z0kNeYxItmRO2zG4Qnv2qWKF09J2lTy5GUzjJR354ZPrLkCj4fiBN41lo8PzBUhw==
   dependencies:
     "@rollup/pluginutils" "^5.0.5"
     debug "^4.3.4"
@@ -12114,29 +11517,35 @@ rollup-pluginutils@^2.8.2:
   dependencies:
     estree-walker "^0.6.1"
 
-rollup@^4.6.0:
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.6.0.tgz#4f966f6dd3f6bafd01b864d68ba078d308b864fa"
-  integrity sha512-R8i5Her4oO1LiMQ3jKf7MUglYV/mhQ5g5OKeld5CnkmPdIGo79FDDQYqPhq/PCVuTQVuxsWgIbDy9F+zdHn80w==
+rollup@^4.22.5:
+  version "4.22.5"
+  resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.5.tgz#d5108cc470249417e50492456253884d19f5d40f"
+  integrity sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==
+  dependencies:
+    "@types/estree" "1.0.6"
   optionalDependencies:
-    "@rollup/rollup-android-arm-eabi" "4.6.0"
-    "@rollup/rollup-android-arm64" "4.6.0"
-    "@rollup/rollup-darwin-arm64" "4.6.0"
-    "@rollup/rollup-darwin-x64" "4.6.0"
-    "@rollup/rollup-linux-arm-gnueabihf" "4.6.0"
-    "@rollup/rollup-linux-arm64-gnu" "4.6.0"
-    "@rollup/rollup-linux-arm64-musl" "4.6.0"
-    "@rollup/rollup-linux-x64-gnu" "4.6.0"
-    "@rollup/rollup-linux-x64-musl" "4.6.0"
-    "@rollup/rollup-win32-arm64-msvc" "4.6.0"
-    "@rollup/rollup-win32-ia32-msvc" "4.6.0"
-    "@rollup/rollup-win32-x64-msvc" "4.6.0"
+    "@rollup/rollup-android-arm-eabi" "4.22.5"
+    "@rollup/rollup-android-arm64" "4.22.5"
+    "@rollup/rollup-darwin-arm64" "4.22.5"
+    "@rollup/rollup-darwin-x64" "4.22.5"
+    "@rollup/rollup-linux-arm-gnueabihf" "4.22.5"
+    "@rollup/rollup-linux-arm-musleabihf" "4.22.5"
+    "@rollup/rollup-linux-arm64-gnu" "4.22.5"
+    "@rollup/rollup-linux-arm64-musl" "4.22.5"
+    "@rollup/rollup-linux-powerpc64le-gnu" "4.22.5"
+    "@rollup/rollup-linux-riscv64-gnu" "4.22.5"
+    "@rollup/rollup-linux-s390x-gnu" "4.22.5"
+    "@rollup/rollup-linux-x64-gnu" "4.22.5"
+    "@rollup/rollup-linux-x64-musl" "4.22.5"
+    "@rollup/rollup-win32-arm64-msvc" "4.22.5"
+    "@rollup/rollup-win32-ia32-msvc" "4.22.5"
+    "@rollup/rollup-win32-x64-msvc" "4.22.5"
     fsevents "~2.3.2"
 
 rtl-detect@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.0.4.tgz#40ae0ea7302a150b96bc75af7d749607392ecac6"
-  integrity sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.1.2.tgz#ca7f0330af5c6bb626c15675c642ba85ad6273c6"
+  integrity sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==
 
 rtlcss@^4.1.0:
   version "4.1.1"
@@ -12148,13 +11557,6 @@ rtlcss@^4.1.0:
     postcss "^8.4.21"
     strip-json-comments "^3.1.1"
 
-run-applescript@^5.0.0:
-  version "5.0.0"
-  resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c"
-  integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==
-  dependencies:
-    execa "^5.0.0"
-
 run-parallel@^1.1.9:
   version "1.2.0"
   resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
@@ -12162,7 +11564,7 @@ run-parallel@^1.1.9:
   dependencies:
     queue-microtask "^1.2.2"
 
-rxjs@^7.0.0, rxjs@^7.8.0:
+rxjs@^7.8.1:
   version "7.8.1"
   resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
   integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
@@ -12176,6 +11578,16 @@ sade@^1.7.3:
   dependencies:
     mri "^1.1.0"
 
+safe-array-concat@^1.1.2:
+  version "1.1.2"
+  resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb"
+  integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==
+  dependencies:
+    call-bind "^1.0.7"
+    get-intrinsic "^1.2.4"
+    has-symbols "^1.0.3"
+    isarray "^2.0.5"
+
 safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
   version "5.1.2"
   resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -12191,13 +11603,13 @@ safe-identifier@^0.4.2:
   resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb"
   integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==
 
-safe-regex-test@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
-  integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
+safe-regex-test@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377"
+  integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==
   dependencies:
-    call-bind "^1.0.2"
-    get-intrinsic "^1.1.3"
+    call-bind "^1.0.6"
+    es-errors "^1.3.0"
     is-regex "^1.1.4"
 
 "safer-buffer@>= 2.1.2 < 3":
@@ -12205,24 +11617,24 @@ safe-regex-test@^1.0.0:
   resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
   integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
 
-sass@^1.69.5:
-  version "1.69.5"
-  resolved "https://registry.yarnpkg.com/sass/-/sass-1.69.5.tgz#23e18d1c757a35f2e52cc81871060b9ad653dfde"
-  integrity sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==
+sass@^1.79.3:
+  version "1.79.3"
+  resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.3.tgz#7811b000eb68195fe51dea89177e73e7ef7f546f"
+  integrity sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==
   dependencies:
-    chokidar ">=3.0.0 <4.0.0"
+    chokidar "^4.0.0"
     immutable "^4.0.0"
     source-map-js ">=0.6.2 <2.0.0"
 
 sax@^1.2.4:
-  version "1.2.4"
-  resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
-  integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0"
+  integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==
 
-scheduler@^0.23.0:
-  version "0.23.0"
-  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
-  integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
+scheduler@^0.23.2:
+  version "0.23.2"
+  resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3"
+  integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==
   dependencies:
     loose-envify "^1.1.0"
 
@@ -12244,7 +11656,7 @@ schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0:
     ajv "^6.12.5"
     ajv-keywords "^3.5.2"
 
-schema-utils@^4.0.0:
+schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.2.0:
   version "4.2.0"
   resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
   integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
@@ -12268,10 +11680,11 @@ select-hose@^2.0.0:
   integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==
 
 selfsigned@^2.1.1:
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61"
-  integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0"
+  integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==
   dependencies:
+    "@types/node-forge" "^1.3.0"
     node-forge "^1"
 
 semver-diff@^4.0.0:
@@ -12282,33 +11695,26 @@ semver-diff@^4.0.0:
     semver "^7.3.5"
 
 "semver@2 || 3 || 4 || 5", semver@^5.5.0:
-  version "5.7.1"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
-  integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-
-semver@^6.0.0, semver@^6.3.0:
-  version "6.3.0"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
-  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+  version "5.7.2"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
+  integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
 
-semver@^6.3.1:
+semver@^6.0.0, semver@^6.3.1:
   version "6.3.1"
   resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
   integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
 
-semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
-  version "7.5.3"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e"
-  integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==
+semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.5.4:
+  version "7.6.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
+  integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
   dependencies:
     lru-cache "^6.0.0"
 
-semver@^7.5.4:
-  version "7.5.4"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
-  integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
-  dependencies:
-    lru-cache "^6.0.0"
+semver@^7.6.0, semver@^7.6.3:
+  version "7.6.3"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
+  integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
 
 send@0.18.0:
   version "0.18.0"
@@ -12330,9 +11736,9 @@ send@0.18.0:
     statuses "2.0.1"
 
 serialize-javascript@^6.0.0, serialize-javascript@^6.0.1:
-  version "6.0.1"
-  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
-  integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2"
+  integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
   dependencies:
     randombytes "^2.1.0"
 
@@ -12373,6 +11779,28 @@ serve-static@1.15.0:
     parseurl "~1.3.3"
     send "0.18.0"
 
+set-function-length@^1.2.1:
+  version "1.2.2"
+  resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
+  integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
+  dependencies:
+    define-data-property "^1.1.4"
+    es-errors "^1.3.0"
+    function-bind "^1.1.2"
+    get-intrinsic "^1.2.4"
+    gopd "^1.0.1"
+    has-property-descriptors "^1.0.2"
+
+set-function-name@^2.0.1, set-function-name@^2.0.2:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985"
+  integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==
+  dependencies:
+    define-data-property "^1.1.4"
+    es-errors "^1.3.0"
+    functions-have-names "^1.2.3"
+    has-property-descriptors "^1.0.2"
+
 setprototypeof@1.1.0:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
@@ -12419,7 +11847,7 @@ shebang-regex@^3.0.0:
   resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
   integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
 
-shell-quote@^1.6.1, shell-quote@^1.7.3:
+shell-quote@^1.6.1, shell-quote@^1.7.3, shell-quote@^1.8.1:
   version "1.8.1"
   resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
   integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
@@ -12433,34 +11861,37 @@ shelljs@^0.8.5:
     interpret "^1.0.0"
     rechoir "^0.6.2"
 
-shiki@^0.14.7:
-  version "0.14.7"
-  resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.7.tgz#c3c9e1853e9737845f1d2ef81b31bcfb07056d4e"
-  integrity sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==
+shiki@^1.16.2:
+  version "1.20.0"
+  resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.20.0.tgz#ea04cf622234c5cf8f8b6c993f8b7b05009a085e"
+  integrity sha512-MZJJ1PCFsQB1Piq+25wiz0a75yUv8Q3/fzy7SzRx5ONdjdtGdyiKwYn8vb/FnK5kjS0voWGnPpjG16POauUR+g==
   dependencies:
-    ansi-sequence-parser "^1.1.0"
-    jsonc-parser "^3.2.0"
-    vscode-oniguruma "^1.7.0"
-    vscode-textmate "^8.0.0"
+    "@shikijs/core" "1.20.0"
+    "@shikijs/engine-javascript" "1.20.0"
+    "@shikijs/engine-oniguruma" "1.20.0"
+    "@shikijs/types" "1.20.0"
+    "@shikijs/vscode-textmate" "^9.2.2"
+    "@types/hast" "^3.0.4"
 
-side-channel@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
-  integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
+side-channel@^1.0.4, side-channel@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2"
+  integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==
   dependencies:
-    call-bind "^1.0.0"
-    get-intrinsic "^1.0.2"
-    object-inspect "^1.9.0"
+    call-bind "^1.0.7"
+    es-errors "^1.3.0"
+    get-intrinsic "^1.2.4"
+    object-inspect "^1.13.1"
 
-signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
+signal-exit@^3.0.2, signal-exit@^3.0.3:
   version "3.0.7"
   resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
   integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
 
-signal-exit@^4.0.1:
-  version "4.0.2"
-  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967"
-  integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==
+signal-exit@^4.0.1, signal-exit@^4.1.0:
+  version "4.1.0"
+  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
+  integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
 
 sirv@^2.0.3:
   version "2.0.4"
@@ -12503,24 +11934,6 @@ slash@^4.0.0:
   resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
   integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
 
-slice-ansi@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
-  integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
-  dependencies:
-    ansi-styles "^4.0.0"
-    astral-regex "^2.0.0"
-    is-fullwidth-code-point "^3.0.0"
-
-slice-ansi@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
-  integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
-  dependencies:
-    ansi-styles "^4.0.0"
-    astral-regex "^2.0.0"
-    is-fullwidth-code-point "^3.0.0"
-
 slice-ansi@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a"
@@ -12529,6 +11942,14 @@ slice-ansi@^5.0.0:
     ansi-styles "^6.0.0"
     is-fullwidth-code-point "^4.0.0"
 
+slice-ansi@^7.1.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9"
+  integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==
+  dependencies:
+    ansi-styles "^6.2.1"
+    is-fullwidth-code-point "^5.0.0"
+
 snake-case@^3.0.4:
   version "3.0.4"
   resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c"
@@ -12546,15 +11967,20 @@ sockjs@^0.3.24:
     uuid "^8.3.2"
     websocket-driver "^0.7.4"
 
-sort-css-media-queries@2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/sort-css-media-queries/-/sort-css-media-queries-2.1.0.tgz#7c85e06f79826baabb232f5560e9745d7a78c4ce"
-  integrity sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==
+sort-css-media-queries@2.2.0:
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/sort-css-media-queries/-/sort-css-media-queries-2.2.0.tgz#aa33cf4a08e0225059448b6c40eddbf9f1c8334c"
+  integrity sha512-0xtkGhWCC9MGt/EzgnvbbbKhqWjl1+/rncmhTh5qCpbYguXh6S/qwePfv/JQ8jePXXmqingylxoC49pCkSPIbA==
 
-"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
-  integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
+"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
+  integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
+
+source-map-js@^1.2.1:
+  version "1.2.1"
+  resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
+  integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
 
 source-map-support@~0.5.20:
   version "0.5.21"
@@ -12584,11 +12010,6 @@ space-separated-tokens@^2.0.0:
   resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f"
   integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==
 
-spawn-command@^0.0.2-1:
-  version "0.0.2-1"
-  resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0"
-  integrity sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==
-
 spdx-correct@^3.0.0:
   version "3.2.0"
   resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
@@ -12598,9 +12019,9 @@ spdx-correct@^3.0.0:
     spdx-license-ids "^3.0.0"
 
 spdx-exceptions@^2.1.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
-  integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
+  version "2.5.0"
+  resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66"
+  integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==
 
 spdx-expression-parse@^3.0.0:
   version "3.0.1"
@@ -12611,9 +12032,9 @@ spdx-expression-parse@^3.0.0:
     spdx-license-ids "^3.0.0"
 
 spdx-license-ids@^3.0.0:
-  version "3.0.13"
-  resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5"
-  integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==
+  version "3.0.17"
+  resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c"
+  integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==
 
 spdy-transport@^3.0.0:
   version "3.0.0"
@@ -12664,11 +12085,18 @@ statuses@2.0.1:
   integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
 
 std-env@^3.0.1:
-  version "3.3.3"
-  resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.3.3.tgz#a54f06eb245fdcfef53d56f3c0251f1d5c3d01fe"
-  integrity sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg==
+  version "3.7.0"
+  resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2"
+  integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==
 
-string-argv@^0.3.1:
+stop-iteration-iterator@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+  integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
+  dependencies:
+    internal-slot "^1.0.4"
+
+string-argv@~0.3.2:
   version "0.3.2"
   resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6"
   integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==
@@ -12683,7 +12111,16 @@ string-natural-compare@^3.0.1:
   resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4"
   integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
 
-"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0":
+  version "4.2.3"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+  integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+  dependencies:
+    emoji-regex "^8.0.0"
+    is-fullwidth-code-point "^3.0.0"
+    strip-ansi "^6.0.1"
+
+string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
   version "4.2.3"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
   integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -12692,7 +12129,7 @@ string-natural-compare@^3.0.1:
     is-fullwidth-code-point "^3.0.0"
     strip-ansi "^6.0.1"
 
-string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2:
+string-width@^5.0.1, string-width@^5.1.2:
   version "5.1.2"
   resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
   integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
@@ -12701,55 +12138,95 @@ string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2:
     emoji-regex "^9.2.2"
     strip-ansi "^7.0.1"
 
-string.prototype.matchall@^4.0.8:
-  version "4.0.8"
-  resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
-  integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
+string-width@^6.0.0:
+  version "6.1.0"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-6.1.0.tgz#96488d6ed23f9ad5d82d13522af9e4c4c3fd7518"
+  integrity sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
-    get-intrinsic "^1.1.3"
+    eastasianwidth "^0.2.0"
+    emoji-regex "^10.2.1"
+    strip-ansi "^7.0.1"
+
+string-width@^7.0.0:
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.1.0.tgz#d994252935224729ea3719c49f7206dc9c46550a"
+  integrity sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==
+  dependencies:
+    emoji-regex "^10.3.0"
+    get-east-asian-width "^1.0.0"
+    strip-ansi "^7.1.0"
+
+string.prototype.includes@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz#8986d57aee66d5460c144620a6d873778ad7289f"
+  integrity sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==
+  dependencies:
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
+
+string.prototype.matchall@^4.0.10, string.prototype.matchall@^4.0.11:
+  version "4.0.11"
+  resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a"
+  integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-errors "^1.3.0"
+    es-object-atoms "^1.0.0"
+    get-intrinsic "^1.2.4"
+    gopd "^1.0.1"
     has-symbols "^1.0.3"
-    internal-slot "^1.0.3"
-    regexp.prototype.flags "^1.4.3"
-    side-channel "^1.0.4"
+    internal-slot "^1.0.7"
+    regexp.prototype.flags "^1.5.2"
+    set-function-name "^2.0.2"
+    side-channel "^1.0.6"
 
 string.prototype.padend@^3.0.0:
-  version "3.1.4"
-  resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz#2c43bb3a89eb54b6750de5942c123d6c98dd65b6"
-  integrity sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==
+  version "3.1.6"
+  resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz#ba79cf8992609a91c872daa47c6bb144ee7f62a5"
+  integrity sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.2"
+    es-object-atoms "^1.0.0"
 
-string.prototype.trim@^1.2.7:
-  version "1.2.7"
-  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
-  integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
+string.prototype.repeat@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a"
+  integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    define-properties "^1.1.3"
+    es-abstract "^1.17.5"
 
-string.prototype.trimend@^1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
-  integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
+string.prototype.trim@^1.2.9:
+  version "1.2.9"
+  resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4"
+  integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-abstract "^1.23.0"
+    es-object-atoms "^1.0.0"
 
-string.prototype.trimstart@^1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
-  integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+string.prototype.trimend@^1.0.8:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229"
+  integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==
   dependencies:
-    call-bind "^1.0.2"
-    define-properties "^1.1.4"
-    es-abstract "^1.20.4"
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-object-atoms "^1.0.0"
+
+string.prototype.trimstart@^1.0.7, string.prototype.trimstart@^1.0.8:
+  version "1.0.8"
+  resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde"
+  integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==
+  dependencies:
+    call-bind "^1.0.7"
+    define-properties "^1.2.1"
+    es-object-atoms "^1.0.0"
 
 string_decoder@^1.1.1:
   version "1.3.0"
@@ -12782,14 +12259,21 @@ stringify-object@^3.3.0:
     is-obj "^1.0.1"
     is-regexp "^1.0.0"
 
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+  dependencies:
+    ansi-regex "^5.0.1"
+
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
   integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
   dependencies:
     ansi-regex "^5.0.1"
 
-strip-ansi@^7.0.1:
+strip-ansi@^7.0.1, strip-ansi@^7.1.0:
   version "7.1.0"
   resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
   integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
@@ -12816,7 +12300,7 @@ strip-final-newline@^3.0.0:
   resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
   integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
 
-strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+strip-json-comments@^3.1.1:
   version "3.1.1"
   resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
   integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@@ -12839,11 +12323,11 @@ style-to-object@^0.4.0:
     inline-style-parser "0.1.1"
 
 style-to-object@^1.0.0:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.5.tgz#5e918349bc3a39eee3a804497d97fcbbf2f0d7c0"
-  integrity sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.6.tgz#0c28aed8be1813d166c60d962719b2907c26547b"
+  integrity sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==
   dependencies:
-    inline-style-parser "0.2.2"
+    inline-style-parser "0.2.3"
 
 stylehacks@^5.1.1:
   version "5.1.1"
@@ -12853,6 +12337,14 @@ stylehacks@^5.1.1:
     browserslist "^4.21.4"
     postcss-selector-parser "^6.0.4"
 
+stylehacks@^6.1.1:
+  version "6.1.1"
+  resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-6.1.1.tgz#543f91c10d17d00a440430362d419f79c25545a6"
+  integrity sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==
+  dependencies:
+    browserslist "^4.23.0"
+    postcss-selector-parser "^6.0.16"
+
 sucrase@^3.31.0:
   version "3.35.0"
   resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
@@ -12880,7 +12372,7 @@ supports-color@^7.1.0:
   dependencies:
     has-flag "^4.0.0"
 
-supports-color@^8.0.0, supports-color@^8.1.0:
+supports-color@^8.0.0, supports-color@^8.1.1:
   version "8.1.1"
   resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
   integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
@@ -12902,7 +12394,7 @@ svg-parser@^2.0.4:
   resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
   integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
 
-svgo@^2.7.0, svgo@^2.8.0:
+svgo@^2.7.0:
   version "2.8.0"
   resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
   integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
@@ -12916,48 +12408,50 @@ svgo@^2.7.0, svgo@^2.8.0:
     stable "^0.1.8"
 
 svgo@^3.0.2:
-  version "3.0.4"
-  resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.4.tgz#67b40a710743e358e8d19ec288de8f1e388afbb4"
-  integrity sha512-T+Xul3JwuJ6VGXKo/p2ndqx1ibxNKnLTvRc1ZTWKCfyKS/GgNjRZcYsK84fxTsy/izr91g/Rwx6fGnVgaFSI5g==
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.2.0.tgz#7a5dff2938d8c6096e00295c2390e8e652fa805d"
+  integrity sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==
   dependencies:
     "@trysound/sax" "0.2.0"
     commander "^7.2.0"
     css-select "^5.1.0"
-    css-tree "^2.2.1"
+    css-tree "^2.3.1"
     css-what "^6.1.0"
-    csso "5.0.5"
+    csso "^5.0.5"
     picocolors "^1.0.0"
 
-synckit@^0.8.5:
-  version "0.8.5"
-  resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3"
-  integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==
+svgo@^3.2.0:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8"
+  integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==
+  dependencies:
+    "@trysound/sax" "0.2.0"
+    commander "^7.2.0"
+    css-select "^5.1.0"
+    css-tree "^2.3.1"
+    css-what "^6.1.0"
+    csso "^5.0.5"
+    picocolors "^1.0.0"
+
+synckit@^0.9.0:
+  version "0.9.0"
+  resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.9.0.tgz#5b33b458b3775e4466a5b377fba69c63572ae449"
+  integrity sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==
   dependencies:
-    "@pkgr/utils" "^2.3.1"
-    tslib "^2.5.0"
+    "@pkgr/core" "^0.1.0"
+    tslib "^2.6.2"
 
 tapable@^1.0.0:
   version "1.1.3"
   resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
   integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
 
-tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
+tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1:
   version "2.2.1"
   resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
   integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
 
-terser-webpack-plugin@^5.3.7:
-  version "5.3.9"
-  resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1"
-  integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==
-  dependencies:
-    "@jridgewell/trace-mapping" "^0.3.17"
-    jest-worker "^27.4.5"
-    schema-utils "^3.1.1"
-    serialize-javascript "^6.0.1"
-    terser "^5.16.8"
-
-terser-webpack-plugin@^5.3.9:
+terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.9:
   version "5.3.10"
   resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199"
   integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==
@@ -12968,20 +12462,10 @@ terser-webpack-plugin@^5.3.9:
     serialize-javascript "^6.0.1"
     terser "^5.26.0"
 
-terser@^5.10.0, terser@^5.16.8:
-  version "5.18.2"
-  resolved "https://registry.yarnpkg.com/terser/-/terser-5.18.2.tgz#ff3072a0faf21ffd38f99acc9a0ddf7b5f07b948"
-  integrity sha512-Ah19JS86ypbJzTzvUCX7KOsEIhDaRONungA4aYBjEP3JZRf4ocuDzTg4QWZnPn9DEMiMYGJPiSOy7aykoCc70w==
-  dependencies:
-    "@jridgewell/source-map" "^0.3.3"
-    acorn "^8.8.2"
-    commander "^2.20.0"
-    source-map-support "~0.5.20"
-
-terser@^5.15.1, terser@^5.26.0:
-  version "5.26.0"
-  resolved "https://registry.yarnpkg.com/terser/-/terser-5.26.0.tgz#ee9f05d929f4189a9c28a0feb889d96d50126fe1"
-  integrity sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==
+terser@^5.10.0, terser@^5.15.1, terser@^5.26.0:
+  version "5.30.0"
+  resolved "https://registry.yarnpkg.com/terser/-/terser-5.30.0.tgz#64cb2af71e16ea3d32153f84d990f9be0cdc22bf"
+  integrity sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==
   dependencies:
     "@jridgewell/source-map" "^0.3.3"
     acorn "^8.8.2"
@@ -13007,31 +12491,21 @@ thenify-all@^1.0.0:
   dependencies:
     any-promise "^1.0.0"
 
-through@^2.3.8:
-  version "2.3.8"
-  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
-  integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
-
 thunky@^1.0.2:
   version "1.1.0"
   resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
   integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
 
 tiny-invariant@^1.0.2:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642"
-  integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127"
+  integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==
 
 tiny-warning@^1.0.0:
   version "1.0.3"
   resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
   integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
 
-titleize@^3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53"
-  integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==
-
 to-fast-properties@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
@@ -13044,14 +12518,6 @@ to-regex-range@^5.0.1:
   dependencies:
     is-number "^7.0.0"
 
-to-vfile@^7.0.0:
-  version "7.2.4"
-  resolved "https://registry.yarnpkg.com/to-vfile/-/to-vfile-7.2.4.tgz#b97ecfcc15905ffe020bc975879053928b671378"
-  integrity sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==
-  dependencies:
-    is-buffer "^2.0.0"
-    vfile "^5.1.0"
-
 toggle-selection@^1.0.6:
   version "1.0.6"
   resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
@@ -13078,19 +12544,24 @@ trim-lines@^3.0.0:
   integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
 
 trough@^2.0.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
-  integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==
+  version "2.2.0"
+  resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f"
+  integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==
+
+ts-api-utils@^1.3.0:
+  version "1.3.0"
+  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
+  integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
 
 ts-interface-checker@^0.1.9:
   version "0.1.13"
   resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
   integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
 
-tsconfig-paths@^3.14.1:
-  version "3.14.2"
-  resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
-  integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
+tsconfig-paths@^3.15.0:
+  version "3.15.0"
+  resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
+  integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
   dependencies:
     "@types/json5" "^0.0.29"
     json5 "^1.0.2"
@@ -13102,10 +12573,15 @@ tslib@^1.8.1:
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
-tslib@^2.0.3, tslib@^2.1.0, tslib@^2.5.0, tslib@^2.6.0:
-  version "2.6.0"
-  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3"
-  integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==
+tslib@^2.0.3, tslib@^2.1.0, tslib@^2.6.0, tslib@^2.6.2:
+  version "2.6.2"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
+  integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+
+tslib@^2.7.0:
+  version "2.7.0"
+  resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01"
+  integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==
 
 tsutils@^3.21.0:
   version "3.21.0"
@@ -13121,16 +12597,6 @@ type-check@^0.4.0, type-check@~0.4.0:
   dependencies:
     prelude-ls "^1.2.1"
 
-type-fest@^0.20.2:
-  version "0.20.2"
-  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
-  integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
-
-type-fest@^0.21.3:
-  version "0.21.3"
-  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
-  integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
-
 type-fest@^1.0.1:
   version "1.4.0"
   resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
@@ -13141,6 +12607,11 @@ type-fest@^2.13.0, type-fest@^2.5.0:
   resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b"
   integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==
 
+type-fest@^3.8.0:
+  version "3.13.1"
+  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706"
+  integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==
+
 type-is@~1.6.18:
   version "1.6.18"
   resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
@@ -13149,14 +12620,49 @@ type-is@~1.6.18:
     media-typer "0.3.0"
     mime-types "~2.1.24"
 
-typed-array-length@^1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
-  integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+typed-array-buffer@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3"
+  integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==
   dependencies:
-    call-bind "^1.0.2"
+    call-bind "^1.0.7"
+    es-errors "^1.3.0"
+    is-typed-array "^1.1.13"
+
+typed-array-byte-length@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67"
+  integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==
+  dependencies:
+    call-bind "^1.0.7"
+    for-each "^0.3.3"
+    gopd "^1.0.1"
+    has-proto "^1.0.3"
+    is-typed-array "^1.1.13"
+
+typed-array-byte-offset@^1.0.2:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063"
+  integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==
+  dependencies:
+    available-typed-arrays "^1.0.7"
+    call-bind "^1.0.7"
+    for-each "^0.3.3"
+    gopd "^1.0.1"
+    has-proto "^1.0.3"
+    is-typed-array "^1.1.13"
+
+typed-array-length@^1.0.5, typed-array-length@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3"
+  integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==
+  dependencies:
+    call-bind "^1.0.7"
     for-each "^0.3.3"
-    is-typed-array "^1.1.9"
+    gopd "^1.0.1"
+    has-proto "^1.0.3"
+    is-typed-array "^1.1.13"
+    possible-typed-array-names "^1.0.0"
 
 typedarray-to-buffer@^3.1.5:
   version "3.1.5"
@@ -13170,20 +12676,26 @@ typedarray@^0.0.6:
   resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
   integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
 
-typedoc@^0.25.7:
-  version "0.25.7"
-  resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.7.tgz#11e3f527ca80ca3c029cb8e15f362e6d9f715e25"
-  integrity sha512-m6A6JjQRg39p2ZVRIN3NKXgrN8vzlHhOS+r9ymUYtcUP/TIQPvWSq7YgE5ZjASfv5Vd5BW5xrir6Gm2XNNcOow==
+typedoc@^0.26.7:
+  version "0.26.7"
+  resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.26.7.tgz#1980e3ed51c6c315b7a09786b2b9af1106a3aa80"
+  integrity sha512-gUeI/Wk99vjXXMi8kanwzyhmeFEGv1LTdTQsiyIsmSYsBebvFxhbcyAx7Zjo4cMbpLGxM4Uz3jVIjksu/I2v6Q==
   dependencies:
     lunr "^2.3.9"
-    marked "^4.3.0"
-    minimatch "^9.0.3"
-    shiki "^0.14.7"
+    markdown-it "^14.1.0"
+    minimatch "^9.0.5"
+    shiki "^1.16.2"
+    yaml "^2.5.1"
 
-typescript@^5.3.3:
-  version "5.3.3"
-  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
-  integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
+typescript@^5.6.2:
+  version "5.6.2"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
+  integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==
+
+uc.micro@^2.0.0, uc.micro@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee"
+  integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==
 
 unbox-primitive@^1.0.2:
   version "1.0.2"
@@ -13195,6 +12707,11 @@ unbox-primitive@^1.0.2:
     has-symbols "^1.0.3"
     which-boxed-primitive "^1.0.2"
 
+undici-types@~5.26.4:
+  version "5.26.5"
+  resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
+  integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
+
 unicode-canonical-property-names-ecmascript@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -13223,51 +12740,50 @@ unicode-property-aliases-ecmascript@^2.0.0:
   resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
   integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
 
-unified-engine@^10.1.0:
-  version "10.1.0"
-  resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-10.1.0.tgz#6899f00d1f53ee9af94f7abd0ec21242aae3f56c"
-  integrity sha512-5+JDIs4hqKfHnJcVCxTid1yBoI/++FfF/1PFdSMpaftZZZY+qg2JFruRbf7PaIwa9KgLotXQV3gSjtY0IdcFGQ==
+unified-engine@^11.2.0:
+  version "11.2.0"
+  resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-11.2.0.tgz#bfd7296368a3b9cf7c36e1ab1d9db8327260a39f"
+  integrity sha512-H9wEDpBSM0cpEUuuYAOIiPzLCVN0pjASZZ6FFNzgzYS/HHzl9tArk/ereOMGtcF8m8vgjzw+HrU3YN7oenT7Ww==
   dependencies:
     "@types/concat-stream" "^2.0.0"
     "@types/debug" "^4.0.0"
     "@types/is-empty" "^1.0.0"
-    "@types/node" "^18.0.0"
-    "@types/unist" "^2.0.0"
+    "@types/node" "^20.0.0"
+    "@types/unist" "^3.0.0"
+    "@ungap/structured-clone" "^1.0.0"
     concat-stream "^2.0.0"
     debug "^4.0.0"
-    fault "^2.0.0"
-    glob "^8.0.0"
+    glob "^10.0.0"
     ignore "^5.0.0"
-    is-buffer "^2.0.0"
     is-empty "^1.0.0"
     is-plain-obj "^4.0.0"
-    load-plugin "^5.0.0"
-    parse-json "^6.0.0"
-    to-vfile "^7.0.0"
+    load-plugin "^6.0.0"
+    parse-json "^7.0.0"
     trough "^2.0.0"
-    unist-util-inspect "^7.0.0"
-    vfile-message "^3.0.0"
-    vfile-reporter "^7.0.0"
-    vfile-statistics "^2.0.0"
+    unist-util-inspect "^8.0.0"
+    vfile "^6.0.0"
+    vfile-message "^4.0.0"
+    vfile-reporter "^8.0.0"
+    vfile-statistics "^3.0.0"
     yaml "^2.0.0"
 
-unified@^10.0.0, unified@^10.1.2:
-  version "10.1.2"
-  resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df"
-  integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
+unified@^11.0.0, unified@^11.0.3, unified@^11.0.4:
+  version "11.0.4"
+  resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.4.tgz#f4be0ac0fe4c88cb873687c07c64c49ed5969015"
+  integrity sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==
   dependencies:
-    "@types/unist" "^2.0.0"
+    "@types/unist" "^3.0.0"
     bail "^2.0.0"
+    devlop "^1.0.0"
     extend "^3.0.0"
-    is-buffer "^2.0.0"
     is-plain-obj "^4.0.0"
     trough "^2.0.0"
-    vfile "^5.0.0"
+    vfile "^6.0.0"
 
-unified@^11.0.0, unified@^11.0.3, unified@^11.0.4:
-  version "11.0.4"
-  resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.4.tgz#f4be0ac0fe4c88cb873687c07c64c49ed5969015"
-  integrity sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==
+unified@^11.0.5:
+  version "11.0.5"
+  resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.5.tgz#f66677610a5c0a9ee90cab2b8d4d66037026d9e1"
+  integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==
   dependencies:
     "@types/unist" "^3.0.0"
     bail "^2.0.0"
@@ -13284,19 +12800,12 @@ unique-string@^3.0.0:
   dependencies:
     crypto-random-string "^4.0.0"
 
-unist-util-inspect@^7.0.0:
-  version "7.0.2"
-  resolved "https://registry.yarnpkg.com/unist-util-inspect/-/unist-util-inspect-7.0.2.tgz#858e4f02ee4053f7c6ada8bc81662901a0ee1893"
-  integrity sha512-Op0XnmHUl6C2zo/yJCwhXQSm/SmW22eDZdWP2qdf4WpGrgO1ZxFodq+5zFyeRGasFjJotAnLgfuD1jkcKqiH1Q==
-  dependencies:
-    "@types/unist" "^2.0.0"
-
-unist-util-is@^5.0.0:
-  version "5.2.1"
-  resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.1.tgz#b74960e145c18dcb6226bc57933597f5486deae9"
-  integrity sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==
+unist-util-inspect@^8.0.0:
+  version "8.0.0"
+  resolved "https://registry.yarnpkg.com/unist-util-inspect/-/unist-util-inspect-8.0.0.tgz#dcc6475bb7219ce410c6f3d03c7ab068cc2e351d"
+  integrity sha512-/3Wn/wU6/H6UEo4FoYUeo8KUePN8ERiZpQYFWYoihOsr1DoDuv80PeB0hobVZyYSvALa2e556bG1A1/AbwU4yg==
   dependencies:
-    "@types/unist" "^2.0.0"
+    "@types/unist" "^3.0.0"
 
 unist-util-is@^6.0.0:
   version "6.0.0"
@@ -13305,13 +12814,6 @@ unist-util-is@^6.0.0:
   dependencies:
     "@types/unist" "^3.0.0"
 
-unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22"
-  integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==
-  dependencies:
-    "@types/unist" "^2.0.0"
-
 unist-util-position-from-estree@^2.0.0:
   version "2.0.0"
   resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz#d94da4df596529d1faa3de506202f0c9a23f2200"
@@ -13326,14 +12828,6 @@ unist-util-position@^5.0.0:
   dependencies:
     "@types/unist" "^3.0.0"
 
-unist-util-remove-position@^4.0.0:
-  version "4.0.2"
-  resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51"
-  integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==
-  dependencies:
-    "@types/unist" "^2.0.0"
-    unist-util-visit "^4.0.0"
-
 unist-util-remove-position@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz#fea68a25658409c9460408bc6b4991b965b52163"
@@ -13349,13 +12843,6 @@ unist-util-stringify-position@^2.0.0:
   dependencies:
     "@types/unist" "^2.0.2"
 
-unist-util-stringify-position@^3.0.0:
-  version "3.0.3"
-  resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d"
-  integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==
-  dependencies:
-    "@types/unist" "^2.0.0"
-
 unist-util-stringify-position@^4.0.0:
   version "4.0.0"
   resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2"
@@ -13363,14 +12850,6 @@ unist-util-stringify-position@^4.0.0:
   dependencies:
     "@types/unist" "^3.0.0"
 
-unist-util-visit-parents@^5.1.1:
-  version "5.1.3"
-  resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz#b4520811b0ca34285633785045df7a8d6776cfeb"
-  integrity sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==
-  dependencies:
-    "@types/unist" "^2.0.0"
-    unist-util-is "^5.0.0"
-
 unist-util-visit-parents@^6.0.0:
   version "6.0.1"
   resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815"
@@ -13379,15 +12858,6 @@ unist-util-visit-parents@^6.0.0:
     "@types/unist" "^3.0.0"
     unist-util-is "^6.0.0"
 
-unist-util-visit@^4.0.0, unist-util-visit@^4.1.2:
-  version "4.1.2"
-  resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2"
-  integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==
-  dependencies:
-    "@types/unist" "^2.0.0"
-    unist-util-is "^5.0.0"
-    unist-util-visit-parents "^5.1.1"
-
 unist-util-visit@^5.0.0:
   version "5.0.0"
   resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6"
@@ -13398,28 +12868,15 @@ unist-util-visit@^5.0.0:
     unist-util-visit-parents "^6.0.0"
 
 universalify@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
-  integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d"
+  integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
 
 unpipe@1.0.0, unpipe@~1.0.0:
   version "1.0.0"
   resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
   integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
 
-untildify@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
-  integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
-
-update-browserslist-db@^1.0.11:
-  version "1.0.11"
-  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
-  integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
-  dependencies:
-    escalade "^3.1.1"
-    picocolors "^1.0.0"
-
 update-browserslist-db@^1.0.13:
   version "1.0.13"
   resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
@@ -13428,6 +12885,14 @@ update-browserslist-db@^1.0.13:
     escalade "^3.1.1"
     picocolors "^1.0.0"
 
+update-browserslist-db@^1.1.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5"
+  integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==
+  dependencies:
+    escalade "^3.2.0"
+    picocolors "^1.1.0"
+
 update-notifier@^6.0.2:
   version "6.0.2"
   resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60"
@@ -13487,9 +12952,9 @@ utila@~0.4:
   integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==
 
 utility-types@^3.10.0:
-  version "3.10.0"
-  resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.10.0.tgz#ea4148f9a741015f05ed74fd615e1d20e6bed82b"
-  integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==
+  version "3.11.0"
+  resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.11.0.tgz#607c40edb4f258915e901ea7995607fdf319424c"
+  integrity sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==
 
 utils-merge@1.0.1:
   version "1.0.1"
@@ -13501,7 +12966,7 @@ uuid@^8.3.2:
   resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
   integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
 
-uvu@^0.5.0, uvu@^0.5.6:
+uvu@^0.5.6:
   version "0.5.6"
   resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df"
   integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==
@@ -13537,14 +13002,6 @@ vfile-location@^5.0.0:
     "@types/unist" "^3.0.0"
     vfile "^6.0.0"
 
-vfile-message@^3.0.0:
-  version "3.1.4"
-  resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea"
-  integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==
-  dependencies:
-    "@types/unist" "^2.0.0"
-    unist-util-stringify-position "^3.0.0"
-
 vfile-message@^4.0.0:
   version "4.0.2"
   resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.2.tgz#c883c9f677c72c166362fd635f21fc165a7d1181"
@@ -13553,45 +13010,35 @@ vfile-message@^4.0.0:
     "@types/unist" "^3.0.0"
     unist-util-stringify-position "^4.0.0"
 
-vfile-reporter@^7.0.0:
-  version "7.0.5"
-  resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-7.0.5.tgz#a0cbf3922c08ad428d6db1161ec64a53b5725785"
-  integrity sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==
+vfile-reporter@^8.0.0:
+  version "8.1.0"
+  resolved "https://registry.yarnpkg.com/vfile-reporter/-/vfile-reporter-8.1.0.tgz#8d6057035c7133a1ea0da04c82bfef31c0756fa3"
+  integrity sha512-NfHyHdkCcy0BsXiLA3nId29TY7W7hgpc8nd8Soe3imATx5N4/+mkLYdMR+Y6Zvu6BXMMi0FZsD4FLCm1dN85Pg==
   dependencies:
     "@types/supports-color" "^8.0.0"
-    string-width "^5.0.0"
+    string-width "^6.0.0"
     supports-color "^9.0.0"
-    unist-util-stringify-position "^3.0.0"
-    vfile "^5.0.0"
-    vfile-message "^3.0.0"
-    vfile-sort "^3.0.0"
-    vfile-statistics "^2.0.0"
-
-vfile-sort@^3.0.0:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-3.0.1.tgz#4b06ec63e2946749b0bb514e736554cd75e441a2"
-  integrity sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==
-  dependencies:
-    vfile "^5.0.0"
-    vfile-message "^3.0.0"
+    unist-util-stringify-position "^4.0.0"
+    vfile "^6.0.0"
+    vfile-message "^4.0.0"
+    vfile-sort "^4.0.0"
+    vfile-statistics "^3.0.0"
 
-vfile-statistics@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-2.0.1.tgz#2e1adae1cd3a45c1ed4f2a24bd103c3d71e4bce3"
-  integrity sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==
+vfile-sort@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/vfile-sort/-/vfile-sort-4.0.0.tgz#fa1929065b62fe5311e5391c9434f745e8641703"
+  integrity sha512-lffPI1JrbHDTToJwcq0rl6rBmkjQmMuXkAxsZPRS9DXbaJQvc642eCg6EGxcX2i1L+esbuhq+2l9tBll5v8AeQ==
   dependencies:
-    vfile "^5.0.0"
-    vfile-message "^3.0.0"
+    vfile "^6.0.0"
+    vfile-message "^4.0.0"
 
-vfile@^5.0.0, vfile@^5.1.0, vfile@^5.3.7:
-  version "5.3.7"
-  resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7"
-  integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==
+vfile-statistics@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/vfile-statistics/-/vfile-statistics-3.0.0.tgz#0f5cd00c611c1862b13a9b5bc5599efaf465f2cf"
+  integrity sha512-/qlwqwWBWFOmpXujL/20P+Iuydil0rZZNglR+VNm6J0gpLHwuVM5s7g2TfVoswbXjZ4HuIhLMySEyIw5i7/D8w==
   dependencies:
-    "@types/unist" "^2.0.0"
-    is-buffer "^2.0.0"
-    unist-util-stringify-position "^3.0.0"
-    vfile-message "^3.0.0"
+    vfile "^6.0.0"
+    vfile-message "^4.0.0"
 
 vfile@^6.0.0, vfile@^6.0.1:
   version "6.0.1"
@@ -13602,25 +13049,15 @@ vfile@^6.0.0, vfile@^6.0.1:
     unist-util-stringify-position "^4.0.0"
     vfile-message "^4.0.0"
 
-vscode-oniguruma@^1.7.0:
-  version "1.7.0"
-  resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
-  integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
-
-vscode-textmate@^8.0.0:
-  version "8.0.0"
-  resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
-  integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
-
 walk-up-path@^3.0.1:
   version "3.0.1"
   resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-3.0.1.tgz#c8d78d5375b4966c717eb17ada73dbd41490e886"
   integrity sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==
 
-watchpack@^2.4.0:
-  version "2.4.0"
-  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
-  integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
+watchpack@^2.4.1:
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff"
+  integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==
   dependencies:
     glob-to-regexp "^0.4.1"
     graceful-fs "^4.1.2"
@@ -13656,10 +13093,10 @@ webpack-bundle-analyzer@^4.9.0:
     sirv "^2.0.3"
     ws "^7.3.1"
 
-webpack-dev-middleware@^5.3.1:
-  version "5.3.3"
-  resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f"
-  integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==
+webpack-dev-middleware@^5.3.4:
+  version "5.3.4"
+  resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz#eb7b39281cbce10e104eb2b8bf2b63fce49a3517"
+  integrity sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==
   dependencies:
     colorette "^2.0.10"
     memfs "^3.4.3"
@@ -13668,9 +13105,9 @@ webpack-dev-middleware@^5.3.1:
     schema-utils "^4.0.0"
 
 webpack-dev-server@^4.15.1:
-  version "4.15.1"
-  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7"
-  integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==
+  version "4.15.2"
+  resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz#9e0c70a42a012560860adb186986da1248333173"
+  integrity sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==
   dependencies:
     "@types/bonjour" "^3.5.9"
     "@types/connect-history-api-fallback" "^1.3.5"
@@ -13700,7 +13137,7 @@ webpack-dev-server@^4.15.1:
     serve-index "^1.9.1"
     sockjs "^0.3.24"
     spdy "^4.0.2"
-    webpack-dev-middleware "^5.3.1"
+    webpack-dev-middleware "^5.3.4"
     ws "^8.13.0"
 
 webpack-merge@^5.9.0:
@@ -13712,39 +13149,39 @@ webpack-merge@^5.9.0:
     flat "^5.0.2"
     wildcard "^2.0.0"
 
-webpack-sources@^3.2.2, webpack-sources@^3.2.3:
+webpack-sources@^3.2.3:
   version "3.2.3"
   resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
   integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
 
 webpack@^5.88.1:
-  version "5.89.0"
-  resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc"
-  integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==
+  version "5.91.0"
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.91.0.tgz#ffa92c1c618d18c878f06892bbdc3373c71a01d9"
+  integrity sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==
   dependencies:
     "@types/eslint-scope" "^3.7.3"
-    "@types/estree" "^1.0.0"
-    "@webassemblyjs/ast" "^1.11.5"
-    "@webassemblyjs/wasm-edit" "^1.11.5"
-    "@webassemblyjs/wasm-parser" "^1.11.5"
+    "@types/estree" "^1.0.5"
+    "@webassemblyjs/ast" "^1.12.1"
+    "@webassemblyjs/wasm-edit" "^1.12.1"
+    "@webassemblyjs/wasm-parser" "^1.12.1"
     acorn "^8.7.1"
     acorn-import-assertions "^1.9.0"
-    browserslist "^4.14.5"
+    browserslist "^4.21.10"
     chrome-trace-event "^1.0.2"
-    enhanced-resolve "^5.15.0"
+    enhanced-resolve "^5.16.0"
     es-module-lexer "^1.2.1"
     eslint-scope "5.1.1"
     events "^3.2.0"
     glob-to-regexp "^0.4.1"
-    graceful-fs "^4.2.9"
+    graceful-fs "^4.2.11"
     json-parse-even-better-errors "^2.3.1"
     loader-runner "^4.2.0"
     mime-types "^2.1.27"
     neo-async "^2.6.2"
     schema-utils "^3.2.0"
     tapable "^2.1.1"
-    terser-webpack-plugin "^5.3.7"
-    watchpack "^2.4.0"
+    terser-webpack-plugin "^5.3.10"
+    watchpack "^2.4.1"
     webpack-sources "^3.2.3"
 
 webpackbar@^5.0.2:
@@ -13782,17 +13219,44 @@ which-boxed-primitive@^1.0.2:
     is-string "^1.0.5"
     is-symbol "^1.0.3"
 
-which-typed-array@^1.1.9:
-  version "1.1.9"
-  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
-  integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
+which-builtin-type@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b"
+  integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==
   dependencies:
-    available-typed-arrays "^1.0.5"
-    call-bind "^1.0.2"
+    function.prototype.name "^1.1.5"
+    has-tostringtag "^1.0.0"
+    is-async-function "^2.0.0"
+    is-date-object "^1.0.5"
+    is-finalizationregistry "^1.0.2"
+    is-generator-function "^1.0.10"
+    is-regex "^1.1.4"
+    is-weakref "^1.0.2"
+    isarray "^2.0.5"
+    which-boxed-primitive "^1.0.2"
+    which-collection "^1.0.1"
+    which-typed-array "^1.1.9"
+
+which-collection@^1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0"
+  integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==
+  dependencies:
+    is-map "^2.0.3"
+    is-set "^2.0.3"
+    is-weakmap "^2.0.2"
+    is-weakset "^2.0.3"
+
+which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.9:
+  version "1.1.15"
+  resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d"
+  integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==
+  dependencies:
+    available-typed-arrays "^1.0.7"
+    call-bind "^1.0.7"
     for-each "^0.3.3"
     gopd "^1.0.1"
-    has-tostringtag "^1.0.0"
-    is-typed-array "^1.1.10"
+    has-tostringtag "^1.0.2"
 
 which@^1.2.9, which@^1.3.1:
   version "1.3.1"
@@ -13820,7 +13284,7 @@ wildcard@^2.0.0:
   resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
   integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==
 
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
   version "7.0.0"
   resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
   integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -13829,10 +13293,10 @@ wildcard@^2.0.0:
     string-width "^4.1.0"
     strip-ansi "^6.0.0"
 
-wrap-ansi@^6.2.0:
-  version "6.2.0"
-  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
-  integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+wrap-ansi@^7.0.0:
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+  integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
   dependencies:
     ansi-styles "^4.0.0"
     string-width "^4.1.0"
@@ -13847,6 +13311,15 @@ wrap-ansi@^8.0.1, wrap-ansi@^8.1.0:
     string-width "^5.0.1"
     strip-ansi "^7.0.1"
 
+wrap-ansi@^9.0.0:
+  version "9.0.0"
+  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e"
+  integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==
+  dependencies:
+    ansi-styles "^6.2.1"
+    string-width "^7.0.0"
+    strip-ansi "^7.1.0"
+
 wrappy@1:
   version "1.0.2"
   resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
@@ -13868,9 +13341,9 @@ ws@^7.3.1:
   integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
 
 ws@^8.13.0:
-  version "8.13.0"
-  resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
-  integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
+  version "8.16.0"
+  resolved "https://registry.yarnpkg.com/ws/-/ws-8.16.0.tgz#d1cd774f36fbc07165066a60e40323eab6446fd4"
+  integrity sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==
 
 xdg-basedir@^5.0.1, xdg-basedir@^5.1.0:
   version "5.1.0"
@@ -13904,17 +13377,22 @@ yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2:
   resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
   integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
 
-yaml@^2.0.0, yaml@^2.2.2:
-  version "2.3.1"
-  resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b"
-  integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==
+yaml@^2.0.0:
+  version "2.4.1"
+  resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.1.tgz#2e57e0b5e995292c25c75d2658f0664765210eed"
+  integrity sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==
+
+yaml@^2.5.1, yaml@~2.5.0:
+  version "2.5.1"
+  resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.1.tgz#c9772aacf62cb7494a95b0c4f1fb065b563db130"
+  integrity sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==
 
 yargs-parser@^21.1.1:
   version "21.1.1"
   resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
   integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
 
-yargs@^17.3.1:
+yargs@^17.7.2:
   version "17.7.2"
   resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
   integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
@@ -13937,7 +13415,7 @@ yocto-queue@^1.0.0:
   resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251"
   integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==
 
-zwitch@^2.0.0:
+zwitch@^2.0.0, zwitch@^2.0.4:
   version "2.0.4"
   resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7"
   integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==