@org-design-system/icons 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/LICENSE +19 -0
  2. package/README.md +40 -0
  3. package/dist/index.cjs +2 -0
  4. package/dist/index.d.cts +107 -0
  5. package/dist/index.d.ts +107 -0
  6. package/dist/index.js +2 -0
  7. package/package.json +45 -0
  8. package/src/AccordianCaretCloseIcon.tsx +25 -0
  9. package/src/AccordianCaretOpenIcon.tsx +25 -0
  10. package/src/AdcsIcon.tsx +22 -0
  11. package/src/AddIcon.tsx +22 -0
  12. package/src/AddcustomIcon.tsx +25 -0
  13. package/src/AxisIcon.tsx +26 -0
  14. package/src/BatteryIcon.tsx +25 -0
  15. package/src/BusIcon.tsx +22 -0
  16. package/src/CatalogIcon.tsx +25 -0
  17. package/src/CheckIcon.tsx +22 -0
  18. package/src/ChevronDownIcon.tsx +25 -0
  19. package/src/ChevronLeftIcon.tsx +25 -0
  20. package/src/ChevronRightIcon.tsx +25 -0
  21. package/src/ChevronUpIcon.tsx +25 -0
  22. package/src/ComboIcon.tsx +22 -0
  23. package/src/CommsIcon.tsx +22 -0
  24. package/src/CrossIcon.tsx +22 -0
  25. package/src/CustomIcon.tsx +22 -0
  26. package/src/DashIcon.tsx +19 -0
  27. package/src/DashboardIcon.tsx +25 -0
  28. package/src/DocsIcon.tsx +22 -0
  29. package/src/DownloadIcon.tsx +25 -0
  30. package/src/EarthobservationIcon.tsx +25 -0
  31. package/src/EclipseIcon.tsx +25 -0
  32. package/src/EdgeIcon.tsx +22 -0
  33. package/src/EditIcon.tsx +22 -0
  34. package/src/EpsIcon.tsx +22 -0
  35. package/src/EyeCloseIcon.tsx +25 -0
  36. package/src/EyeOpenIcon.tsx +25 -0
  37. package/src/FilterIcon.tsx +22 -0
  38. package/src/GpsIcon.tsx +22 -0
  39. package/src/GroundStationIcon.tsx +25 -0
  40. package/src/InfoIcon.tsx +22 -0
  41. package/src/LoadComponentsIcon.tsx +25 -0
  42. package/src/MassIcon.tsx +22 -0
  43. package/src/MissionDesignIcon.tsx +25 -0
  44. package/src/MissionIcon.tsx +25 -0
  45. package/src/NotificationsIcon.tsx +25 -0
  46. package/src/PayloadIcon.tsx +25 -0
  47. package/src/ProcessorIcon.tsx +25 -0
  48. package/src/RadioIcon.tsx +22 -0
  49. package/src/ReviewSatelliteIcon.tsx +25 -0
  50. package/src/RocketIcon.tsx +22 -0
  51. package/src/SatelliteIcon.tsx +25 -0
  52. package/src/SearchIcon.tsx +22 -0
  53. package/src/SettingsIcon.tsx +33 -0
  54. package/src/SizeIcon.tsx +22 -0
  55. package/src/SolarGenerationIcon.tsx +25 -0
  56. package/src/SunlitIcon.tsx +22 -0
  57. package/src/TempIcon.tsx +22 -0
  58. package/src/ThrusterIcon.tsx +25 -0
  59. package/src/UploadIcon.tsx +22 -0
  60. package/src/UsersIcon.tsx +22 -0
  61. package/src/index.ts +53 -0
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2026 koushikmondal
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # @org-design-system/icons
2
+
3
+ A collection of high-quality SVG icons optimized as React components.
4
+
5
+ ## 🛰️ Features
6
+ - **'Icon' Suffix**: All components are named with an `Icon` suffix (e.g., `SatelliteIcon`) to avoid conflicts.
7
+ - **Dynamic Coloring**: Uses `currentColor` so you can color icons using standard CSS `color` or Tailwind text classes.
8
+ - **Optimized**: Tiny bundle size with full tree-shaking support.
9
+
10
+ ## 🛠️ How it Works
11
+
12
+ ### 1. Source SVGs
13
+ Add new SVG files to the `svg/` directory.
14
+
15
+ ### 2. Build Process
16
+ Run `npm run build` to trigger the `build.js` script.
17
+ - It cleans the `src/` folder.
18
+ - Uses `SVGR` to transform SVGs into standard React components.
19
+ - Automatically appends the `Icon` suffix to filenames and component names.
20
+ - Generates a central `src/index.ts` for clean exports.
21
+
22
+ ## 📦 Usage
23
+
24
+ ```tsx
25
+ import { RocketIcon, SatelliteIcon } from "@org-design-system/icons";
26
+
27
+ function App() {
28
+ return (
29
+ <div className="flex gap-4 text-blue-500">
30
+ <RocketIcon width={24} height={24} />
31
+ <SatelliteIcon className="animate-spin" />
32
+ </div>
33
+ );
34
+ }
35
+ ```
36
+
37
+ ## 📝 Best Practices
38
+ - **Consistency**: Always use the `Icon` suffixed names.
39
+ - **Sizing**: Use `width` and `height` props for precise control.
40
+ - **Color**: Control colors via parent text classes (e.g., `text-red-500`).
package/dist/index.cjs ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict';var a=require('react');function _interopNamespace(e){if(e&&e.__esModule)return e;var n=Object.create(null);if(e){Object.keys(e).forEach(function(k){if(k!=='default'){var d=Object.getOwnPropertyDescriptor(e,k);Object.defineProperty(n,k,d.get?d:{enumerable:true,get:function(){return e[k]}});}})}n.default=e;return Object.freeze(n)}var a__namespace=/*#__PURE__*/_interopNamespace(a);var a0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"m9.63 8.424-2.662 2.662a.6.6 0 0 1-1.024-.424V5.338a.6.6 0 0 1 1.024-.425l2.663 2.663a.6.6 0 0 1 0 .848"})),t0=a.forwardRef(a0),r0=t0;var m0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M7.575 9.631 4.913 6.97a.6.6 0 0 1 .424-1.024h5.325a.6.6 0 0 1 .424 1.024L8.424 9.63a.6.6 0 0 1-.849 0"})),s0=a.forwardRef(m0),n0=s0;var c0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8.452 4.074a.536.536 0 0 1 .78-.02l1.282 1.28.571-.57a.4.4 0 0 1 .565.566l-.57.57 1.282 1.282a.54.54 0 0 1-.017.778c-.528.479-1.153.718-1.834.694l-.538.538 1.053 1.053a.54.54 0 0 1 0 .767l-1.601 1.603a.543.543 0 0 1-.768 0L7.604 11.56l-.096.097a1.35 1.35 0 0 1-1.907 0l-.844-.844a1.35 1.35 0 0 1 0-1.907l.096-.097L3.8 7.757a.543.543 0 0 1 0-.766l1.602-1.603.085-.07c.181-.119.417-.119.598 0l.085.07 1.053 1.053.543-.544a2.73 2.73 0 0 1 .686-1.823m-.282 6.922.87.87 1.238-1.238-.87-.87zm-.664-3.707L5.702 9.093l-.38.38a.55.55 0 0 0 0 .775l.844.844a.55.55 0 0 0 .776 0L9.125 8.91l.445-.447a2.8 2.8 0 0 1-.998-.62 2.75 2.75 0 0 1-.633-.988zM2.77 5.61a.4.4 0 0 1 .566.566l-.772.77.772.772a.4.4 0 0 1 0 .566l-.772.77.772.772a.4.4 0 0 1-.566.565L1.717 9.336a.4.4 0 0 1 0-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566zm9.892 0a.4.4 0 0 1 .567 0l1.053 1.055a.4.4 0 0 1 0 .565l-.771.77.771.772a.4.4 0 0 1 0 .565L13.23 10.39a.401.401 0 0 1-.567-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566l.77-.771-.77-.77a.4.4 0 0 1 0-.566M4.548 7.374l.871.872 1.237-1.239-.87-.87zM8.879 4.83a1.951 1.951 0 0 0 .259 2.446c.319.32.817.523 1.26.571q.645.072 1.19-.308z"})),p0=a.forwardRef(c0),i0=p0;var h0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M7.6 12.666V8.4H3.333a.4.4 0 1 1 0-.8H7.6V3.333a.4.4 0 0 1 .8 0V7.6h4.266a.4.4 0 0 1 0 .8H8.4v4.266a.4.4 0 1 1-.8 0"})),v0=a.forwardRef(h0),V0=v0;var w0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM7.6 10.668V8.4H5.334a.4.4 0 0 1 0-.8H7.6V5.335a.4.4 0 0 1 .8 0V7.6h2.268a.4.4 0 0 1 0 .8H8.4v2.268a.4.4 0 0 1-.8 0m6.8-.001-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),G0=a.forwardRef(w0),d0=G0;var x0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.933 2a.4.4 0 0 1 .8 0v10.267H14a.4.4 0 0 1 0 .8H3.333a.4.4 0 0 1-.4-.4z"}),a__namespace.createElement("path",{fill:"currentColor",d:"M7.05 8.383a.4.4 0 0 1 .567.567l-4 4a.4.4 0 0 1-.567-.566zM3.114 1.666a.4.4 0 0 1 .503.05l2 2a.4.4 0 0 1-.567.567L3.333 2.566 1.617 4.283a.4.4 0 0 1-.567-.566l2-2zM11.717 10.384a.4.4 0 0 1 .566 0l2 2a.4.4 0 0 1 0 .566l-2 2a.4.4 0 0 1-.566-.566l1.717-1.717-1.717-1.717a.4.4 0 0 1 0-.566"})),u0=a.forwardRef(x0),I0=u0;var y0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.2 6.2a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h7.2a.8.8 0 0 0 .8-.8zM4 8.6V7.4a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m4.8 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M12 9.8a1.6 1.6 0 0 1-1.6 1.6H3.2c-.883 0-1.6-.716-1.6-1.6V6.2c0-.883.717-1.6 1.6-1.6h7.2A1.6 1.6 0 0 1 12 6.2z"})),M0=a.forwardRef(y0),P0=M0;var C0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8 1.8c.29 0 .575.08.823.229l1.8 1.08h.001a1.6 1.6 0 0 1 .775 1.368v2.397l2.225 1.335c.23.138.42.332.555.563l.009.012.003.007.09.185a1.6 1.6 0 0 1 .12.602v1.945a1.6 1.6 0 0 1-.608 1.25l-.169.118-1.8 1.08c-.228.137-.487.211-.753.223q-.034.008-.07.009a.4.4 0 0 1-.071-.008 1.6 1.6 0 0 1-.56-.125l-.194-.099L8 12.666l-2.176 1.305a1.6 1.6 0 0 1-.755.224.4.4 0 0 1-.069.008q-.038-.001-.072-.01a1.6 1.6 0 0 1-.559-.123l-.193-.099-1.8-1.08a1.6 1.6 0 0 1-.776-1.368V9.578a1.6 1.6 0 0 1 .776-1.369L4.6 6.874V4.477a1.6 1.6 0 0 1 .776-1.368l1.8-1.08.192-.099c.2-.085.414-.13.632-.13m-5.6 9.721.007.102a.8.8 0 0 0 .381.583l1.8 1.08.012.005v-2.366L2.4 9.603zm3-.595v2.365l.012-.005v-.001l2.189-1.312V9.606zm3 1.047 2.188 1.313.012.005v-2.365l-2.2-1.32zm3-1.047v2.365l.012-.005 1.8-1.08a.8.8 0 0 0 .388-.684V9.603zM2.788 8.895l-.007.004 2.22 1.334L7.22 8.9l-2.22-1.334zm5.99.005 2.221 1.333 2.219-1.334-.006-.004-2.213-1.33zM5.4 6.874l2.2 1.319V5.826L5.4 4.503zm3-1.048v2.367l2.2-1.32v-2.37zM8 2.6a.8.8 0 0 0-.412.114l-1.8 1.08q-.003.001-.007.004l2.22 1.334L10.217 3.8q-.003 0-.006-.004l-1.8-1.08A.8.8 0 0 0 8 2.601"})),H0=a.forwardRef(C0),L0=H0;var B0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M5.593 6.8c.302.001.597.086.855.243l.002.001 1.938 1.193.094.063a1.7 1.7 0 0 1 .515.587c.14.263.21.56.202.858v2.124c.004.3-.071.598-.217.86a1.7 1.7 0 0 1-.611.633l-1.9 1.187-.006.005-.001-.001a1.66 1.66 0 0 1-.761.231.4.4 0 0 1-.103.016.4.4 0 0 1-.111-.018c-.26-.02-.513-.1-.737-.237H4.75L2.812 13.35a1.7 1.7 0 0 1-.61-.65 1.74 1.74 0 0 1-.201-.87V9.718c-.004-.3.07-.598.216-.86.147-.265.36-.485.62-.638l1.892-1.182.007-.005.099-.054c.234-.12.494-.181.758-.18m6.807 6V3.2A1.2 1.2 0 0 0 11.2 2H4.8a1.2 1.2 0 0 0-1.2 1.2v2.267a.4.4 0 0 1-.8 0V3.199a2 2 0 0 1 2-2h6.4a2 2 0 0 1 2 2v9.6a2 2 0 0 1-2 2H9.44a.4.4 0 0 1 0-.799h1.76a1.2 1.2 0 0 0 1.2-1.2M6 11.346v2.548q.026-.013.05-.027l1.906-1.188a.9.9 0 0 0 .327-.338.94.94 0 0 0 .116-.466V9.881zm-3.2.51a.94.94 0 0 0 .109.47.9.9 0 0 0 .322.343l1.937 1.192.032.016v-2.531L2.8 9.88zM5.59 7.6a.86.86 0 0 0-.444.122V7.72L3.252 8.904l-.01.005a.9.9 0 0 0-.21.176l2.566 1.567 2.568-1.566a.9.9 0 0 0-.198-.167L6.03 7.726a.86.86 0 0 0-.44-.126"})),N0=a.forwardRef(B0),q0=N0;var b0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.926 3.363a.4.4 0 1 1 .648.467l-5.62 7.807a.4.4 0 0 1-.605.052l-3.38-3.322a.4.4 0 1 1 .561-.57l3.046 2.994z"})),U0=a.forwardRef(b0),k0=U0;var T0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.66 4.66a.481.481 0 0 1 .68.68l-6 6a.48.48 0 0 1-.68 0l-6-6a.481.481 0 0 1 .68-.68L8 10.32z"})),F0=a.forwardRef(T0),j0=F0;var K0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M4.66 1.66a.48.48 0 0 1 .68 0l6 6a.48.48 0 0 1 0 .68l-6 6a.481.481 0 0 1-.68-.68L10.32 8 4.66 2.34a.48.48 0 0 1 0-.68"})),Q0=a.forwardRef(K0),W0=Q0;var Y0=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M10.66 1.66a.481.481 0 0 1 .68.68L5.68 8l5.66 5.66a.481.481 0 0 1-.68.68l-6-6a.48.48 0 0 1 0-.68z"})),Z0=a.forwardRef(Y0),_0=Z0;var o1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M7.736 4.599a.48.48 0 0 1 .604.061l6 6a.481.481 0 0 1-.68.68L8 5.68l-5.66 5.66a.481.481 0 0 1-.68-.68l6-6z"})),e1=a.forwardRef(o1),a1=e1;var r1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.717 9.717a.4.4 0 0 1 .566.566l-4 4a.4.4 0 0 1-.566 0l-4-4a.4.4 0 0 1 .566-.566L8 13.434zM8 1.6a.4.4 0 0 1 .283.117l4 4a.4.4 0 0 1-.566.566L8 2.566 4.283 6.283a.4.4 0 0 1-.566-.566l4-4 .061-.05A.4.4 0 0 1 8 1.6"})),l1=a.forwardRef(r1),m1=l1;var n1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.616 6.27a.4.4 0 0 1 .334.114L6 9.434l1.718-1.717a.4.4 0 0 1 .565.566L6.565 10l3.051 3.05a.4.4 0 0 1-.08.629 5.274 5.274 0 0 1-7.214-7.214l.055-.073a.4.4 0 0 1 .239-.121m.157 1.068a4.474 4.474 0 0 0 5.888 5.889zm8.16 1.329a3.6 3.6 0 0 0-3.6-3.6.4.4 0 1 1 0-.8 4.4 4.4 0 0 1 4.4 4.4.4.4 0 1 1-.8 0m2.667 0A6.27 6.27 0 0 0 7.334 2.4a.4.4 0 0 1 0-.8A7.07 7.07 0 0 1 14.4 8.667a.4.4 0 0 1-.8 0"})),f1=a.forwardRef(n1),c1=f1;var i1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.888 3.403a.5.5 0 1 1 .707.707L8.705 8l3.89 3.892a.501.501 0 0 1-.707.708L7.997 8.708 4.11 12.596a.5.5 0 0 1-.707-.707L7.29 8 3.403 4.114a.501.501 0 0 1 .707-.708l3.888 3.888z"})),S1=a.forwardRef(i1),h1=S1;var V1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM9.2 8A1.2 1.2 0 1 0 6.8 8 1.2 1.2 0 0 0 9.2 8m.8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4.4 2.667-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),g1=a.forwardRef(V1),w1=g1;var d1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 0 1 0-.8z"})),R1=a.forwardRef(d1),x1=R1;var I1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M5.646 13.859v.8H2.852v-.8zm7.507 0v.8H10.36v-.8zm.7-.7v-2.794a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7v2.794a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.339l-.008-.153v-2.794a1.5 1.5 0 0 1 1.347-1.492l.153-.008h2.794l.154.008a1.5 1.5 0 0 1 1.346 1.492v2.794l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7m-7.507 0V2.828a.7.7 0 0 0-.7-.7H2.852a.7.7 0 0 0-.7.7v10.33a.7.7 0 0 0 .7.7v.8l-.154-.007a1.5 1.5 0 0 1-1.339-1.339l-.007-.153V2.828a1.5 1.5 0 0 1 1.5-1.5h2.794a1.5 1.5 0 0 1 1.5 1.5v10.33l-.008.154a1.5 1.5 0 0 1-1.34 1.339l-.152.008v-.8a.7.7 0 0 0 .7-.7m6.807-6.838v.8H10.36v-.8zm.7-.7V2.828a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7V5.62a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.34l-.008-.152V2.828a1.5 1.5 0 0 1 1.347-1.493l.153-.007h2.794l.154.007a1.5 1.5 0 0 1 1.346 1.493V5.62l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7"})),E1=a.forwardRef(I1),y1=E1;var P1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.276 13.333V2.666A1.72 1.72 0 0 1 3.999.943h6c.103 0 .203.041.276.114l3.333 3.333a.4.4 0 0 1 .114.276v.647l.002.02-.002.02v7.98A1.724 1.724 0 0 1 12 15.056h-8a1.724 1.724 0 0 1-1.723-1.723m8.392-2.39a.39.39 0 1 1 0 .78H5.335a.39.39 0 1 1 0-.78zm0-2.666a.39.39 0 0 1 0 .78H5.335a.391.391 0 0 1 0-.78zm-4-2.667a.39.39 0 1 1 0 .78H5.335a.391.391 0 0 1 0-.78zM9.724 4a.944.944 0 0 0 .944.943h2.274v-.116L9.837 1.722h-.113zm-6.669 9.333a.944.944 0 0 0 .944.943h8a.944.944 0 0 0 .943-.943v-7.61h-2.274A1.724 1.724 0 0 1 8.944 4V1.722H3.999a.944.944 0 0 0-.944.944z"})),z1=a.forwardRef(P1),C1=z1;var L1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M1.6 12.667V10a.4.4 0 0 1 .8 0v2.667a.93.93 0 0 0 .933.933h9.334a.933.933 0 0 0 .933-.933V10a.4.4 0 0 1 .8 0v2.667a1.734 1.734 0 0 1-1.733 1.733H3.333A1.734 1.734 0 0 1 1.6 12.667M7.6 2a.4.4 0 0 1 .8 0v7.033l2.65-2.65a.4.4 0 0 1 .566.566l-3.333 3.334a.4.4 0 0 1-.566 0L4.384 6.95a.4.4 0 0 1 .565-.565l2.65 2.65z"})),A1=a.forwardRef(L1),B1=A1;var q1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.691 3.074c.662 0 1.228.48 1.336 1.133l1.184 7.144c.136.825-.5 1.574-1.336 1.574h-9.75c-.836 0-1.472-.75-1.336-1.574l1.185-7.144a1.354 1.354 0 0 1 1.335-1.133zm-4.15.8c.288.27.603.58.904.9.322.34.636.7.892 1.036.249.328.467.668.567.965.482 1.427.052 2.73-.907 3.702-.556.564-1.138.88-1.723.986a2.6 2.6 0 0 1-1.617-.242c-.947-.46-1.66-1.403-1.965-2.23-.08-.219-.178-.338-.26-.404a.5.5 0 0 0-.247-.11 1 1 0 0 0-.108-.007l-.499 3.012a.554.554 0 0 0 .547.644h2l.085-.002a11.801 11.801 0 0 0 1.392-.126c.858-.131 1.827-.387 2.464-.859.937-.694 1.85-1.684 1.995-2.824.06-.474.049-.851-.061-1.198-.11-.345-.326-.696-.732-1.095-.473-.466-.688-1.064-.578-1.637.035-.182.106-.353.2-.51zm3.546 0c-.38.158-.563.413-.61.662-.052.266.036.604.352.916.473.465.775.924.934 1.425.157.497.16 1.002.092 1.539-.187 1.476-1.33 2.638-2.313 3.366q-.264.194-.566.344h3.899a.554.554 0 0 0 .547-.644l-1.185-7.144a.55.55 0 0 0-.546-.463zm-4.89 0c.585.498 1.264 1.103 1.798 1.748.413.5.77 1.054.928 1.636.163.599.115 1.225-.273 1.815-.312.475-.677.811-1.089.986-.419.178-.852.175-1.261.033-.793-.273-1.486-1.056-1.99-2.03a1.31 1.31 0 0 0-.833-.68 2 2 0 0 0-.212-.046l-.056.34q.047.003.097.01c.202.03.427.111.635.282.208.172.38.417.501.746.248.672.839 1.434 1.566 1.788.355.172.734.244 1.125.173.391-.07.83-.29 1.294-.76.777-.788 1.091-1.783.72-2.884-.057-.168-.209-.421-.448-.736a12 12 0 0 0-.836-.973c-.566-.6-1.17-1.155-1.531-1.447zm-1.888 0a.55.55 0 0 0-.546.464l-.368 2.209q.142.02.304.067c.441.127.98.423 1.32 1.08.468.901 1.034 1.467 1.541 1.643q.359.126.688-.014c.227-.097.48-.304.734-.69.245-.372.28-.755.168-1.165-.116-.425-.391-.877-.771-1.337-.725-.875-1.724-1.664-2.417-2.256z"})),D1=a.forwardRef(q1),b1=D1;var k1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8 2.4a.401.401 0 0 1 .282.683c-1.259 1.26-1.258 3.375.001 4.634 1.26 1.26 3.374 1.26 4.633 0A.401.401 0 0 1 13.6 8 5.601 5.601 0 0 1 2.4 8 5.6 5.6 0 0 1 8 2.4M3.2 8a4.8 4.8 0 0 0 9.517.878c-1.564.94-3.66.743-4.999-.595S6.18 4.845 7.12 3.28A4.8 4.8 0 0 0 3.2 7.999"})),O1=a.forwardRef(k1),T1=O1;var j1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M4 10.4q.001-.109.055-.2H2.401v.8a.8.8 0 0 0 .8.8H4zm1.2-3V6.2a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 1 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M13.6 5a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v.371a1.6 1.6 0 0 1 .543 2.376c-.145.193-.33.349-.542.46V9.4H13.6V8.228a1.6 1.6 0 0 1-.542-.458 1.602 1.602 0 0 1 .542-2.377zm-8.8 6.8h1.6v-1.4q.002-.109.054-.2H4.745a.4.4 0 0 1 .055.2zm2.4 0h1.6v-1.4a.4.4 0 0 1 .055-.2h-1.71a.4.4 0 0 1 .054.2zm2.4 0h1.6v-1.4c0-.072.021-.14.055-.2h-1.71a.4.4 0 0 1 .055.2zm2.4 0h.8a.8.8 0 0 0 .8-.8v-.8h-1.654a.4.4 0 0 1 .054.2zm2.4-6.14a.4.4 0 0 1-.286.384.8.8 0 0 0-.416 1.246c.104.138.25.24.416.288a.4.4 0 0 1 .287.384V11a1.6 1.6 0 0 1-1.6 1.6H3.2A1.6 1.6 0 0 1 1.6 11V7.94a.4.4 0 0 1 .287-.384.8.8 0 0 0 0-1.534.4.4 0 0 1-.287-.384V5a1.6 1.6 0 0 1 1.6-1.6h9.6A1.6 1.6 0 0 1 14.4 5z"})),J1=a.forwardRef(j1),K1=J1;var W1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M9.003 13.6a.4.4 0 0 1 0 .8H3.169a.4.4 0 0 1 0-.8zm2.93-9.186a1.014 1.014 0 0 0-1.73-.717l-6.01 6.01a.93.93 0 0 0-.236.397l-.525 1.797 1.797-.525a.93.93 0 0 0 .399-.235l6.009-6.01c.19-.19.297-.448.297-.717m.8 0c0 .481-.19.943-.53 1.283l-6.01 6.01c-.205.205-.46.356-.739.438l-1.915.56a.735.735 0 0 1-.916-.522.74.74 0 0 1 .007-.388l.56-1.916.074-.204c.086-.199.21-.38.364-.534l6.009-6.01a1.814 1.814 0 0 1 3.096 1.283"})),X1=a.forwardRef(W1),Y1=X1;var _1=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M1.6 9.8V6.2a1.6 1.6 0 0 1 1.6-1.6h1.2a.4.4 0 0 1 0 .8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h.6a.4.4 0 1 1 0 .8h-.6a1.6 1.6 0 0 1-1.6-1.6m9.6 0V6.2a.8.8 0 0 0-.8-.8h-.6a.4.4 0 0 1 0-.8h.6A1.6 1.6 0 0 1 12 6.2v3.6a1.6 1.6 0 0 1-1.6 1.6H9.2a.4.4 0 0 1 0-.8h1.2a.8.8 0 0 0 .8-.8M7.058 4.794a.4.4 0 0 1 .685.412L6.307 7.601H8a.4.4 0 0 1 .343.605l-1.8 3a.4.4 0 0 1-.686-.412L7.293 8.4H5.601a.401.401 0 0 1-.344-.606zM13.6 8.6V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0"})),$1=a.forwardRef(_1),o4=$1;var a4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.624 5.68a.4.4 0 0 1 .752.274A6.79 6.79 0 0 1 4.109 9.189a6.8 6.8 0 0 1-2.485-3.235.4.4 0 0 1 .752-.273 5.987 5.987 0 0 0 11.248 0"})),t4=a.forwardRef(a4),r4=t4;var m4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8 3.4a6.85 6.85 0 0 1 6.332 4.238l.006.014c.083.225.083.472 0 .696l-.006.013a6.85 6.85 0 0 1-6.078 4.233L8 12.6a6.85 6.85 0 0 1-6.332-4.238l-.006-.013a1 1 0 0 1 0-.696l.006-.014A6.85 6.85 0 0 1 8 3.4m0 .8a6.05 6.05 0 0 0-5.589 3.734.2.2 0 0 0 0 .132A6.05 6.05 0 0 0 8 11.8l.225-.004a6.05 6.05 0 0 0 5.363-3.73.2.2 0 0 0 0-.132A6.05 6.05 0 0 0 8 4.201M8.8 8a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0m.8 0a1.6 1.6 0 1 1-3.2 0 1.6 1.6 0 0 1 3.2 0"})),s4=a.forwardRef(m4),n4=s4;var c4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M10 12.267a.4.4 0 1 1 0 .8H6a.4.4 0 0 1 0-.8zM12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 1 1 0-.8zm2.666-4.667a.4.4 0 0 1 0 .8H1.333a.4.4 0 0 1 0-.8z"})),p4=a.forwardRef(c4),i4=p4;var h4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M7.6 14v-1.418A4.6 4.6 0 0 1 3.419 8.4H2a.4.4 0 0 1 0-.8h1.419a4.6 4.6 0 0 1 4.18-4.182V2A.4.4 0 0 1 8.4 2v1.418A4.6 4.6 0 0 1 12.581 7.6H14a.4.4 0 1 1 0 .8h-1.419a4.6 4.6 0 0 1-4.18 4.182V14a.4.4 0 0 1-.801 0M8 4.2a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 0 0 0-7.6M9.4 8a1.4 1.4 0 1 0-2.8 0 1.4 1.4 0 0 0 2.8 0m.8 0a2.2 2.2 0 1 1-4.4 0 2.2 2.2 0 0 1 4.4 0"})),v4=a.forwardRef(h4),V4=v4;var w4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.786 9.797c0-1.072 1.3-1.607 2.054-.845l4.328 4.376h.28a.4.4 0 0 1 0 .8H2.742a.4.4 0 1 1 0-.8h.044zm3.109-6.152a.4.4 0 0 1 .565 0l.315.316 2.34 2.34 1.374-1.373a.4.4 0 0 1 .566.565L9.681 6.866l2.34 2.34.315.316a.4.4 0 1 1-.565.566l-.043-.043c-.818.715-1.712 1.084-2.63 1.073-1.024-.013-2.007-.498-2.871-1.362-.865-.865-1.35-1.848-1.363-2.873-.012-.917.357-1.812 1.072-2.63l-.041-.041a.4.4 0 0 1 0-.567m.607 1.174c-.588.688-.847 1.387-.839 2.054.01.764.371 1.559 1.13 2.317.757.758 1.551 1.119 2.316 1.128.667.008 1.366-.25 2.053-.839zm4.071-2.748a3.41 3.41 0 0 1 3.377 3.376.4.4 0 1 1-.8.008 2.61 2.61 0 0 0-2.584-2.583.4.4 0 0 1 .007-.8M3.587 13.328h4.456L4.271 9.515a.4.4 0 0 0-.684.282z"})),G4=a.forwardRef(w4),d4=G4;var x4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.6 8A5.6 5.6 0 1 0 2.4 8 5.6 5.6 0 0 0 13.6 8m-6 2.4V8a.4.4 0 0 1 .8 0v2.4a.4.4 0 0 1-.8 0m.407-5.2a.4.4 0 0 1 0 .8H8a.4.4 0 1 1 0-.8zM14.4 8A6.4 6.4 0 1 1 1.6 8 6.4 6.4 0 0 1 14.4 8"})),u4=a.forwardRef(x4),I4=u4;var y4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.192 8a4.613 4.613 0 0 0-5.805-4.455.4.4 0 0 1-.207-.773 5.412 5.412 0 1 1 0 10.456.4.4 0 1 1 .207-.773A4.613 4.613 0 0 0 13.192 8M1.83 3.023a.4.4 0 0 1 .426.054l5.539 4.616a.4.4 0 0 1 0 .615l-5.54 4.615a.4.4 0 0 1-.655-.308v-9.23a.4.4 0 0 1 .23-.362m.57 8.737L6.913 8 2.4 4.237z"})),M4=a.forwardRef(y4),P4=M4;var C4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M9.123 3.76a1.403 1.403 0 1 0-2.806 0 1.403 1.403 0 0 0 2.806 0M4.29 5.975a.8.8 0 0 0-.635.57v.002l-1.499 5.427h.001a.804.804 0 0 0 .762 1.003h9.61a.804.804 0 0 0 .792-.928l-.019-.09-1.518-5.386-.002-.009a.8.8 0 0 0-.64-.59l-.13-.011H4.418zM9.923 3.76c0 .533-.19 1.022-.505 1.403h1.6a1.6 1.6 0 0 1 1.538 1.201h-.001l1.517 5.378.039.18a1.6 1.6 0 0 1-1.582 1.855H2.905a1.602 1.602 0 0 1-1.522-2.003l.001-.005 1.5-5.435.001-.002a1.6 1.6 0 0 1 1.525-1.169h1.613A2.204 2.204 0 1 1 9.923 3.76"})),H4=a.forwardRef(C4),L4=H4;var B4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M5.653 2.43a6.2 6.2 0 0 1 4.013-.18l-.113.383-.112.384a5.401 5.401 0 1 0 3.672 3.693l.769-.221A6.2 6.2 0 1 1 5.653 2.43m.496 2.41a3.8 3.8 0 0 1 2.29-.405l-.055.397-.054.396a3 3 0 1 0 2.57 2.595l.793-.102a3.8 3.8 0 0 1-2.106 3.895A3.8 3.8 0 0 1 6.15 4.84m2.374 3.33-.334.335a.4.4 0 1 1-.566-.566l.338-.339c-.013 0-.025-.004-.038-.004a.605.605 0 1 0 .604.605c0-.01-.004-.021-.004-.031m.803.03a1.403 1.403 0 1 1-.731-1.234l1.81-1.81V3.975a.9.9 0 0 1 .264-.635l.918-.92.044-.038a.42.42 0 0 1 .633.156l.021.053.3.953.952.3a.42.42 0 0 1 .171.697l-.919.919a.9.9 0 0 1-.636.263H10.97L9.158 7.534c.108.198.168.426.168.667m1.88-3.277h.947c.026 0 .052-.011.07-.03l.475-.475-.543-.17a.42.42 0 0 1-.275-.276l-.17-.544-.476.476a.1.1 0 0 0-.029.07z"})),N4=a.forwardRef(B4),q4=N4;var b4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M13.6 13.143a.457.457 0 1 0-.915 0 .457.457 0 0 0 .915 0M7.02 7.363A8.9 8.9 0 0 1 3.257 8.39v3.561c.372.125.667.42.792.792h7.902c.125-.373.42-.667.792-.792v-.139a5.54 5.54 0 0 1-4.034-2.2zm5.722-2.382a8.1 8.1 0 0 0-4.09 1.35l-.863.575-.075.048 1.634 2.178a4.74 4.74 0 0 0 3.394 1.878zM3.257 7.59a8.1 8.1 0 0 0 3.273-.872 4.74 4.74 0 0 0-3.273-1.728zm.792-4.332c-.125.372-.42.666-.792.79v.14A5.54 5.54 0 0 1 7.23 6.314l.116-.073.863-.576a8.9 8.9 0 0 1 4.533-1.484v-.133a1.26 1.26 0 0 1-.792-.791zM2.4 13.143a.457.457 0 1 0 .914 0 .457.457 0 0 0-.914 0M13.6 2.857a.457.457 0 1 0-.914 0 .457.457 0 0 0 .914 0m-11.2 0a.457.457 0 1 0 .915 0 .457.457 0 0 0-.915 0m12 0c0 .555-.36 1.024-.857 1.19v7.904a1.257 1.257 0 1 1-1.59 1.592H4.047a1.257 1.257 0 1 1-1.591-1.592V4.048a1.257 1.257 0 1 1 1.59-1.591h7.905a1.257 1.257 0 0 1 2.448.4"})),U4=a.forwardRef(b4),k4=U4;var T4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M6.674 13.517a.4.4 0 0 1 .543.158.894.894 0 0 0 1.565 0 .4.4 0 0 1 .701.385 1.694 1.694 0 0 1-2.968 0 .4.4 0 0 1 .159-.543M11.6 6a3.601 3.601 0 0 0-7.2 0c0 2.627-.619 4.26-1.206 5.213a.2.2 0 0 0-.01.076.5.5 0 0 0 .041.175c.028.06.06.102.086.124q.013.01.018.012h9.342q.006-.002.017-.012a.474.474 0 0 0 .129-.299c.002-.053-.01-.075-.011-.076C12.219 10.259 11.6 8.627 11.6 6m.807.456c.066 2.223.61 3.574 1.08 4.337.2.325.14.727.017.999-.12.266-.395.608-.825.608H3.32c-.43 0-.704-.342-.824-.608-.123-.272-.185-.674.015-.999.47-.763 1.015-2.114 1.082-4.337L3.6 6a4.4 4.4 0 1 1 8.8 0z"})),F4=a.forwardRef(T4),j4=F4;var K4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"m13.594 5.246-1.059.61a.4.4 0 0 1-.398-.695l1.046-.602-.048-.032-4.667-2.666h-.001a.93.93 0 0 0-.934 0L2.864 4.527l-.049.032 1.047.602a.4.4 0 0 1-.398.694l-1.06-.61a1 1 0 0 0-.005.089v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001q.033.018.067.033V13a.4.4 0 0 1 .8 0v1.173q.034-.015.067-.033l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM10.329 8a1.32 1.32 0 0 1 .556-1.073.516.516 0 0 0 .146-.676.515.515 0 0 0-.658-.211v-.001a1.32 1.32 0 0 1-1.209-.054 1.32 1.32 0 0 1-.652-1.022v-.001a.515.515 0 0 0-1.024.003 1.316 1.316 0 0 1-1.861 1.074.516.516 0 0 0-.512.888 1.315 1.315 0 0 1 .408 1.68 1.3 1.3 0 0 1-.409.466.515.515 0 0 0 .51.889 1.32 1.32 0 0 1 1.663.484c.113.177.182.38.201.589l.018.094a.515.515 0 0 0 1.006-.091 1.32 1.32 0 0 1 .652-1.024 1.32 1.32 0 0 1 1.213-.052h-.001a.516.516 0 0 0 .713-.578.52.52 0 0 0-.204-.31v-.001A1.31 1.31 0 0 1 10.329 8M8.772 8a.773.773 0 1 0-1.545 0 .773.773 0 0 0 1.545 0m.8 0a1.572 1.572 0 1 1-3.144 0 1.572 1.572 0 0 1 3.144 0m1.557 0a.52.52 0 0 0 .219.42l.003.004a1.315 1.315 0 0 1-1.309 2.264h-.003a.52.52 0 0 0-.651.189.5.5 0 0 0-.08.231v.003a1.314 1.314 0 0 1-2.617 0v-.003a.515.515 0 0 0-.73-.42h-.003a1.316 1.316 0 0 1-1.682-.539 1.314 1.314 0 0 1 .373-1.725l.003-.003a.515.515 0 0 0 0-.842l-.004-.003a1.315 1.315 0 0 1 1.196-2.31l.113.045.004.002a.516.516 0 0 0 .73-.422V4.89a1.317 1.317 0 0 1 2.194-.848c.212.192.354.448.407.727l.017.121v.002a.517.517 0 0 0 .73.422l.003-.002a1.316 1.316 0 0 1 1.309 2.266l-.003.002a.52.52 0 0 0-.22.42m3.271 2.667-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-.835.23l-.03.003q-.015-.001-.031-.004a1.73 1.73 0 0 1-.834-.23v.002l-4.667-2.666-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),Q4=a.forwardRef(K4),W4=Q4;var Y4=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M12.4 4.4a.8.8 0 0 0-.8-.8H4.4a.8.8 0 0 0-.8.8v7.2a.8.8 0 0 0 .8.8h7.2a.8.8 0 0 0 .8-.8zm-3 2.4a.2.2 0 0 0-.2-.2H6.8a.2.2 0 0 0-.2.2v2.4c0 .11.09.2.2.2h2.4a.2.2 0 0 0 .2-.2zm.8 2.4a1 1 0 0 1-1 1H6.8a1 1 0 0 1-1-1V6.8a1 1 0 0 1 1-1h2.4a1 1 0 0 1 1 1zm3-3.4h.8a.4.4 0 0 1 0 .8h-.8v2.8h.8a.4.4 0 1 1 0 .8h-.8v1.4a1.6 1.6 0 0 1-1.6 1.6h-1.4v.8a.4.4 0 0 1-.8 0v-.8H6.6v.8a.4.4 0 1 1-.8 0v-.8H4.4a1.6 1.6 0 0 1-1.6-1.6v-1.4H2a.4.4 0 0 1 0-.8h.8V6.6H2a.4.4 0 1 1 0-.8h.8V4.4a1.6 1.6 0 0 1 1.6-1.6h1.4V2a.4.4 0 0 1 .8 0v.8h2.8V2a.4.4 0 0 1 .8 0v.8h1.4a1.6 1.6 0 0 1 1.6 1.6z"})),Z4=a.forwardRef(Y4),_4=Z4;var o6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M3.468 3.468a.4.4 0 0 1 .565.566c-2.177 2.178-2.178 5.755 0 7.933a.4.4 0 1 1-.565.565c-2.49-2.49-2.49-6.574 0-9.064m8.499 0a.4.4 0 0 1 .565 0 6.36 6.36 0 0 1 0 9.005.4.4 0 1 1-.565-.567 5.56 5.56 0 0 0 0-7.872.4.4 0 0 1 0-.566M10.23 5.203a.4.4 0 0 1 .567 0c1.536 1.536 1.527 4.06.006 5.647a.4.4 0 0 1-.578-.553c1.231-1.285 1.223-3.31.005-4.528a.4.4 0 0 1 0-.566m-5.033-.054a.4.4 0 0 1 .578.554c-1.231 1.285-1.223 3.31-.005 4.527a.4.4 0 0 1-.567.567c-1.536-1.536-1.527-4.06-.006-5.648M8.797 8A.797.797 0 1 0 7.202 8a.797.797 0 0 0 1.595 0m.8 0a1.597 1.597 0 1 1-3.194 0 1.597 1.597 0 0 1 3.194 0"})),e6=a.forwardRef(o6),a6=e6;var r6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.35 14V2a.4.4 0 0 1 .8 0v12a.4.4 0 0 1-.8 0M5.576 1.64A.4.4 0 0 1 6 1.688l7.5 6a.4.4 0 0 1 0 .625l-7.5 6A.401.401 0 0 1 5.35 14V2a.4.4 0 0 1 .226-.36m.574 11.528L12.61 8 6.15 2.832z"})),l6=a.forwardRef(r6),m6=l6;var n6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M3.994 10.259c.4.012.783.153 1.094.4l.128.112.005.005c.686.677.681 1.772.084 2.48l.001.001c-.26.31-.63.55-1.006.732-.38.186-.794.329-1.171.437a11 11 0 0 1-1.29.286l-.086.013-.024.004h-.01a.4.4 0 0 1-.449-.449v-.002l.001-.007.004-.024.013-.085a11.314 11.314 0 0 1 .286-1.291c.108-.377.25-.792.436-1.172.184-.375.422-.744.733-1.005.349-.295.795-.45 1.25-.435m-.025.8c-.227-.007-.45.06-.634.188l-.078.059c-.189.159-.367.417-.528.745-.158.324-.286.69-.387 1.041-.077.272-.135.53-.18.744.214-.044.473-.1.746-.179.35-.1.717-.228 1.04-.386.33-.16.587-.34.746-.529h.001c.346-.411.33-1.03-.031-1.392l-.074-.065a1.05 1.05 0 0 0-.62-.226M7.6 13.333v-3.168L5.835 8.4H2.667a.4.4 0 0 1-.394-.471l.001-.003.001-.006.003-.02a5 5 0 0 1 .073-.322c.052-.209.131-.496.243-.805C2.81 6.18 3.18 5.403 3.778 5c.346-.23.762-.333 1.161-.37a5.5 5.5 0 0 1 1.184.035c.368.048.699.12.937.178l.116.03A8.99 8.99 0 0 1 14.67.934a.4.4 0 0 1 .397.4c0 1.849-.525 5.08-3.94 7.498q.015.051.029.108c.059.238.13.569.178.937.047.367.072.781.035 1.184-.037.399-.139.815-.37 1.16v.002c-.401.599-1.18.968-1.772 1.182a8 8 0 0 1-1.128.317l-.02.004h-.007a.401.401 0 0 1-.472-.393m2.813-4.047a15 15 0 0 1-2.013.986v2.553c.162-.044.354-.099.555-.171.58-.21 1.134-.51 1.38-.876.129-.194.206-.465.237-.792.03-.323.01-.675-.032-1.006a8 8 0 0 0-.127-.694m3.842-7.545a8.19 8.19 0 0 0-6.582 3.837l-.002.004a14.3 14.3 0 0 0-1.203 2.32L8.096 9.53a14.5 14.5 0 0 0 2.357-1.202c3.075-2.066 3.723-4.814 3.803-6.587M5.013 5.428a2 2 0 0 0-.632.15l-.159.088c-.367.246-.665.8-.875 1.38-.072.2-.128.392-.173.554H5.73q.424-1.043.998-2.011a8 8 0 0 0-.707-.129 4.7 4.7 0 0 0-1.007-.032"})),f6=a.forwardRef(n6),c6=f6;var i6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8.794 1.712a.6.6 0 0 1 .685-.01l.094.076 2.041 2.041.986-.984a.4.4 0 0 1 .565.565l-.985.985 2.042 2.042a.603.603 0 0 1-.019.874c-.771.699-1.68 1.037-2.673.98l-.994.993 1.702 1.703a.61.61 0 0 1 0 .864l-2.38 2.38a.61.61 0 0 1-.865 0l-1.701-1.703-.28.282c-.368.367-.799.483-1.233.379-.397-.096-.751-.364-1.046-.659L3.48 11.268c-.294-.295-.562-.65-.658-1.046-.104-.434.012-.865.38-1.233l.28-.281-1.702-1.7a.61.61 0 0 1 0-.865l2.38-2.38.096-.078a.61.61 0 0 1 .673 0l.095.078 1.702 1.7.999-1a3.87 3.87 0 0 1 .973-2.661zm-.937 10.241 1.569 1.569 2.113-2.114L9.971 9.84zm-4.091-2.4c-.183.183-.203.334-.167.481.044.184.191.411.447.667l1.253 1.253c.256.256.483.403.667.447.147.036.298.016.48-.167l3.242-3.242.884-.886c-.617-.183-1.237-.505-1.705-.973a3.9 3.9 0 0 1-.994-1.687zm-1.288-2.98 1.568 1.569 2.113-2.114L4.591 4.46zm6.681-4.077a3.08 3.08 0 0 0-.628 2.098c.051.718.351 1.423.902 1.973.51.511 1.294.828 1.988.904.762.083 1.46-.126 2.085-.628z"})),S6=a.forwardRef(i6),h6=S6;var V6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M12.067 7.133a4.933 4.933 0 1 0-9.867.001 4.933 4.933 0 0 0 9.867 0m.8 0a5.7 5.7 0 0 1-1.408 3.76l2.624 2.624a.401.401 0 0 1-.566.566l-2.623-2.624a5.734 5.734 0 1 1 1.973-4.326"})),g6=a.forwardRef(V6),w6=g6;var d6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M12.148 13.266a.4.4 0 0 1-.8 0v-4.37a.4.4 0 0 1 .8 0zM12.152 4.085a.4.4 0 0 1-.801 0V2.4a.4.4 0 0 1 .8 0z"}),a__namespace.createElement("path",{fill:"currentColor",d:"M11.751 8.367a1.849 1.849 0 1 0 0-3.697 1.849 1.849 0 0 0 0 3.697m0 .8a2.648 2.648 0 1 1 0-5.296 2.648 2.648 0 0 1 0 5.296M3.849 2.398a.4.4 0 0 1 .8 0v4.37a.4.4 0 0 1-.8 0zM3.849 11.579a.4.4 0 0 1 .8 0v1.686a.4.4 0 0 1-.8 0z"}),a__namespace.createElement("path",{fill:"currentColor",d:"M4.249 7.297a1.849 1.849 0 1 0 0 3.697 1.849 1.849 0 0 0 0-3.697m0-.8a2.648 2.648 0 1 1 0 5.296 2.648 2.648 0 0 1 0-5.296"})),R6=a.forwardRef(d6),x6=R6;var I6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M2.6 1a.4.4 0 0 1 .8 0v11.033l5.317-5.316a.4.4 0 0 1 .566.566L3.967 12.6H15a.4.4 0 0 1 0 .8H3a.4.4 0 0 1-.4-.4z"})),E6=a.forwardRef(I6),y6=E6;var P6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M11.598 7.6q.134 0 .257.052l.08.04.073.05a.7.7 0 0 1 .123.126l.048.074 2.354 4.238a.666.666 0 0 1-.58.989H3.726a.666.666 0 0 1-.581-.989L5.5 7.942l.048-.074q.08-.107.196-.176l.08-.04A.7.7 0 0 1 6.08 7.6zm-.319 4.769h2.444l-.439-.79h-2.18zm-4.06 0h3.241l-.175-.79H7.394zm-3.263 0h2.443l.176-.79h-2.18zm6.97-1.59h1.914l-.439-.79H10.75zm-3.355 0h2.536l-.175-.79H7.747zm-2.732 0h1.914l.176-.79H5.277zm.877-6.121a3.58 3.58 0 0 1 3.945.97.4.4 0 0 1-.598.53 2.779 2.779 0 0 0-4.857 1.843c0 .308.052.613.154.904a.4.4 0 1 1-.755.266 3.5 3.5 0 0 1-.186-.873L3.406 8a3.58 3.58 0 0 1 2.31-3.342m4.856 4.531h1.384l-.438-.789h-1.12zm-2.647 0h1.829L9.578 8.4H8.101zm-2.202 0h1.383l.175-.789h-1.12zM2.747 7.6a.4.4 0 0 1 0 .8h-.53a.4.4 0 1 1 0-.8zm.246-3.59a.4.4 0 0 1 .566 0l.529.53a.4.4 0 1 1-.566.565l-.529-.53a.4.4 0 0 1 0-.566m3.592-.248v-.53a.4.4 0 0 1 .8 0v.53a.4.4 0 0 1-.8 0"})),z6=a.forwardRef(P6),C6=z6;var L6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M7.6 14v-1.2a.4.4 0 0 1 .8 0V14a.4.4 0 0 1-.8 0m-3.278-2.887a.401.401 0 0 1 .566.566l-.846.846a.4.4 0 0 1-.566-.566zm6.792 0a.4.4 0 0 1 .565 0l.846.846a.4.4 0 1 1-.566.566l-.845-.846a.4.4 0 0 1 0-.566M10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-6.8-.4a.4.4 0 0 1 0 .8H2a.4.4 0 1 1 0-.8zm10.8 0a.4.4 0 0 1 0 .8h-1.2a.4.4 0 1 1 0-.8zM3.476 3.475a.4.4 0 0 1 .566 0l.846.847a.4.4 0 0 1-.566.565l-.846-.846a.4.4 0 0 1 0-.566m8.484 0a.4.4 0 0 1 .565.566l-.846.846a.4.4 0 0 1-.565-.565zM7.6 3.201V2a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M10.8 8a2.8 2.8 0 1 1-5.6-.002A2.8 2.8 0 0 1 10.8 8"})),A6=a.forwardRef(L6),B6=A6;var q6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8.8 3.202a.8.8 0 0 0-.8-.8.8.8 0 0 0-.8.8v6.322a.4.4 0 0 1-.2.346 2 2 0 1 0 2 0 .4.4 0 0 1-.2-.346zm.8 6.101A2.801 2.801 0 0 1 8 14.402a2.8 2.8 0 0 1-1.6-5.098V3.202A1.6 1.6 0 0 1 8 1.6a1.6 1.6 0 0 1 1.6 1.6z"})),D6=a.forwardRef(q6),b6=D6;var k6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8 7.1c1.36 0 2.4 1.24 2.4 2.61 0 .443-.148.887-.363 1.183a.4.4 0 0 1-.723-.235.38.38 0 0 0-.211-.356.25.25 0 0 0-.312.066c-.094.105-.123.228-.092.412.033.202.128.419.237.66.192.425.217.848.083 1.26-.13.398-.4.756-.741 1.087a.4.4 0 0 1-.671-.216c-.117-.644-.533-1.118-1.019-1.704-.46-.555-.988-1.22-.988-2.156C5.6 8.34 6.64 7.1 8 7.1m1.26-5c1.22 0 2.346.654 2.951 1.713l1.243 2.176c.466.815-.403 1.742-1.246 1.33a9.61 9.61 0 0 0-8.401-.002c-.828.402-1.737-.496-1.26-1.332L3.79 3.813A3.4 3.4 0 0 1 6.741 2.1zm-2.52.8a2.6 2.6 0 0 0-2.256 1.31L3.243 6.382a.14.14 0 0 0-.022.096q.007.042.045.085c.051.053.12.07.191.035a10.41 10.41 0 0 1 9.103.002c.135.066.275-.083.2-.214L11.517 4.21A2.6 2.6 0 0 0 9.259 2.9zM6.4 9.71c0 .618.334 1.08.803 1.646.311.375.688.805.943 1.334a1.3 1.3 0 0 0 .112-.238.9.9 0 0 0-.05-.681c-.101-.223-.246-.538-.3-.862-.055-.341-.017-.739.29-1.078a1.05 1.05 0 0 1 1.399-.163C9.577 8.676 8.828 7.901 8 7.9c-.84 0-1.6.798-1.6 1.81"})),O6=a.forwardRef(k6),T6=O6;var j6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M1.6 12.667V10a.4.4 0 0 1 .8 0v2.667a.93.93 0 0 0 .933.933h9.334a.93.93 0 0 0 .933-.933V10a.4.4 0 0 1 .8 0v2.667a1.734 1.734 0 0 1-1.733 1.733H3.333A1.734 1.734 0 0 1 1.6 12.667M7.6 10V2.966l-2.65 2.65a.4.4 0 0 1-.566-.565l3.333-3.334.063-.051a.4.4 0 0 1 .503.05l3.333 3.335a.4.4 0 1 1-.565.565L8.4 2.966V10a.4.4 0 0 1-.801 0"})),J6=a.forwardRef(j6),K6=J6;var W6=(o,e)=>a__namespace.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a__namespace.createElement("path",{fill:"currentColor",d:"M8.076 6.968A2.315 2.315 0 0 0 5.754 4.66a2.315 2.315 0 0 0-2.322 2.308c0 1.193.911 2.177 2.084 2.295l.238.012.237-.012a2.314 2.314 0 0 0 2.085-2.295m4.474 0a2.316 2.316 0 0 0-2.323-2.308c-.265 0-.52.043-.755.124a.4.4 0 0 1-.26-.757c.32-.109.66-.168 1.015-.168a3.116 3.116 0 0 1 3.123 3.109c0 1.1-.576 2.062-1.44 2.614a4.95 4.95 0 0 1 2.407 1.892.4.4 0 1 1-.663.448 4.16 4.16 0 0 0-3.417-1.848l-.01.001a.4.4 0 1 1 .002-.8h.01a2.314 2.314 0 0 0 2.31-2.307m-3.674 0c0 1.099-.575 2.06-1.438 2.613a4.95 4.95 0 0 1 2.406 1.893.4.4 0 1 1-.663.448c-1.664-2.464-5.292-2.464-6.955 0a.4.4 0 1 1-.663-.448 4.94 4.94 0 0 1 2.47-1.915 3.1 3.1 0 0 1-1.402-2.591c0-1.719 1.4-3.109 3.123-3.109a3.116 3.116 0 0 1 3.122 3.109"})),X6=a.forwardRef(W6),Y6=X6;
2
+ exports.AccordianCaretCloseIcon=r0;exports.AccordianCaretOpenIcon=n0;exports.AdcsIcon=i0;exports.AddIcon=V0;exports.AddcustomIcon=d0;exports.AxisIcon=I0;exports.BatteryIcon=P0;exports.BusIcon=L0;exports.CatalogIcon=q0;exports.CheckIcon=k0;exports.ChevronDownIcon=j0;exports.ChevronLeftIcon=W0;exports.ChevronRightIcon=_0;exports.ChevronUpIcon=a1;exports.ComboIcon=m1;exports.CommsIcon=c1;exports.CrossIcon=h1;exports.CustomIcon=w1;exports.DashIcon=x1;exports.DashboardIcon=y1;exports.DocsIcon=C1;exports.DownloadIcon=B1;exports.EarthobservationIcon=b1;exports.EclipseIcon=T1;exports.EdgeIcon=K1;exports.EditIcon=Y1;exports.EpsIcon=o4;exports.EyeCloseIcon=r4;exports.EyeOpenIcon=n4;exports.FilterIcon=i4;exports.GpsIcon=V4;exports.GroundStationIcon=d4;exports.InfoIcon=I4;exports.LoadComponentsIcon=P4;exports.MassIcon=L4;exports.MissionDesignIcon=k4;exports.MissionIcon=q4;exports.NotificationsIcon=j4;exports.PayloadIcon=W4;exports.ProcessorIcon=_4;exports.RadioIcon=a6;exports.ReviewSatelliteIcon=m6;exports.RocketIcon=c6;exports.SatelliteIcon=h6;exports.SearchIcon=w6;exports.SettingsIcon=x6;exports.SizeIcon=y6;exports.SolarGenerationIcon=C6;exports.SunlitIcon=B6;exports.TempIcon=b6;exports.ThrusterIcon=T6;exports.UploadIcon=K6;exports.UsersIcon=Y6;
@@ -0,0 +1,107 @@
1
+ declare const AccordianCaretCloseIcon: any;
2
+
3
+ declare const AccordianCaretOpenIcon: any;
4
+
5
+ declare const AdcsIcon: any;
6
+
7
+ declare const AddIcon: any;
8
+
9
+ declare const AddcustomIcon: any;
10
+
11
+ declare const AxisIcon: any;
12
+
13
+ declare const BatteryIcon: any;
14
+
15
+ declare const BusIcon: any;
16
+
17
+ declare const CatalogIcon: any;
18
+
19
+ declare const CheckIcon: any;
20
+
21
+ declare const ChevronDownIcon: any;
22
+
23
+ declare const ChevronLeftIcon: any;
24
+
25
+ declare const ChevronRightIcon: any;
26
+
27
+ declare const ChevronUpIcon: any;
28
+
29
+ declare const ComboIcon: any;
30
+
31
+ declare const CommsIcon: any;
32
+
33
+ declare const CrossIcon: any;
34
+
35
+ declare const CustomIcon: any;
36
+
37
+ declare const DashIcon: any;
38
+
39
+ declare const DashboardIcon: any;
40
+
41
+ declare const DocsIcon: any;
42
+
43
+ declare const DownloadIcon: any;
44
+
45
+ declare const EarthobservationIcon: any;
46
+
47
+ declare const EclipseIcon: any;
48
+
49
+ declare const EdgeIcon: any;
50
+
51
+ declare const EditIcon: any;
52
+
53
+ declare const EpsIcon: any;
54
+
55
+ declare const EyeCloseIcon: any;
56
+
57
+ declare const EyeOpenIcon: any;
58
+
59
+ declare const FilterIcon: any;
60
+
61
+ declare const GpsIcon: any;
62
+
63
+ declare const GroundStationIcon: any;
64
+
65
+ declare const InfoIcon: any;
66
+
67
+ declare const LoadComponentsIcon: any;
68
+
69
+ declare const MassIcon: any;
70
+
71
+ declare const MissionIcon: any;
72
+
73
+ declare const MissionDesignIcon: any;
74
+
75
+ declare const NotificationsIcon: any;
76
+
77
+ declare const PayloadIcon: any;
78
+
79
+ declare const ProcessorIcon: any;
80
+
81
+ declare const RadioIcon: any;
82
+
83
+ declare const ReviewSatelliteIcon: any;
84
+
85
+ declare const RocketIcon: any;
86
+
87
+ declare const SatelliteIcon: any;
88
+
89
+ declare const SearchIcon: any;
90
+
91
+ declare const SettingsIcon: any;
92
+
93
+ declare const SizeIcon: any;
94
+
95
+ declare const SolarGenerationIcon: any;
96
+
97
+ declare const SunlitIcon: any;
98
+
99
+ declare const TempIcon: any;
100
+
101
+ declare const ThrusterIcon: any;
102
+
103
+ declare const UploadIcon: any;
104
+
105
+ declare const UsersIcon: any;
106
+
107
+ export { AccordianCaretCloseIcon, AccordianCaretOpenIcon, AdcsIcon, AddIcon, AddcustomIcon, AxisIcon, BatteryIcon, BusIcon, CatalogIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ComboIcon, CommsIcon, CrossIcon, CustomIcon, DashIcon, DashboardIcon, DocsIcon, DownloadIcon, EarthobservationIcon, EclipseIcon, EdgeIcon, EditIcon, EpsIcon, EyeCloseIcon, EyeOpenIcon, FilterIcon, GpsIcon, GroundStationIcon, InfoIcon, LoadComponentsIcon, MassIcon, MissionDesignIcon, MissionIcon, NotificationsIcon, PayloadIcon, ProcessorIcon, RadioIcon, ReviewSatelliteIcon, RocketIcon, SatelliteIcon, SearchIcon, SettingsIcon, SizeIcon, SolarGenerationIcon, SunlitIcon, TempIcon, ThrusterIcon, UploadIcon, UsersIcon };
@@ -0,0 +1,107 @@
1
+ declare const AccordianCaretCloseIcon: any;
2
+
3
+ declare const AccordianCaretOpenIcon: any;
4
+
5
+ declare const AdcsIcon: any;
6
+
7
+ declare const AddIcon: any;
8
+
9
+ declare const AddcustomIcon: any;
10
+
11
+ declare const AxisIcon: any;
12
+
13
+ declare const BatteryIcon: any;
14
+
15
+ declare const BusIcon: any;
16
+
17
+ declare const CatalogIcon: any;
18
+
19
+ declare const CheckIcon: any;
20
+
21
+ declare const ChevronDownIcon: any;
22
+
23
+ declare const ChevronLeftIcon: any;
24
+
25
+ declare const ChevronRightIcon: any;
26
+
27
+ declare const ChevronUpIcon: any;
28
+
29
+ declare const ComboIcon: any;
30
+
31
+ declare const CommsIcon: any;
32
+
33
+ declare const CrossIcon: any;
34
+
35
+ declare const CustomIcon: any;
36
+
37
+ declare const DashIcon: any;
38
+
39
+ declare const DashboardIcon: any;
40
+
41
+ declare const DocsIcon: any;
42
+
43
+ declare const DownloadIcon: any;
44
+
45
+ declare const EarthobservationIcon: any;
46
+
47
+ declare const EclipseIcon: any;
48
+
49
+ declare const EdgeIcon: any;
50
+
51
+ declare const EditIcon: any;
52
+
53
+ declare const EpsIcon: any;
54
+
55
+ declare const EyeCloseIcon: any;
56
+
57
+ declare const EyeOpenIcon: any;
58
+
59
+ declare const FilterIcon: any;
60
+
61
+ declare const GpsIcon: any;
62
+
63
+ declare const GroundStationIcon: any;
64
+
65
+ declare const InfoIcon: any;
66
+
67
+ declare const LoadComponentsIcon: any;
68
+
69
+ declare const MassIcon: any;
70
+
71
+ declare const MissionIcon: any;
72
+
73
+ declare const MissionDesignIcon: any;
74
+
75
+ declare const NotificationsIcon: any;
76
+
77
+ declare const PayloadIcon: any;
78
+
79
+ declare const ProcessorIcon: any;
80
+
81
+ declare const RadioIcon: any;
82
+
83
+ declare const ReviewSatelliteIcon: any;
84
+
85
+ declare const RocketIcon: any;
86
+
87
+ declare const SatelliteIcon: any;
88
+
89
+ declare const SearchIcon: any;
90
+
91
+ declare const SettingsIcon: any;
92
+
93
+ declare const SizeIcon: any;
94
+
95
+ declare const SolarGenerationIcon: any;
96
+
97
+ declare const SunlitIcon: any;
98
+
99
+ declare const TempIcon: any;
100
+
101
+ declare const ThrusterIcon: any;
102
+
103
+ declare const UploadIcon: any;
104
+
105
+ declare const UsersIcon: any;
106
+
107
+ export { AccordianCaretCloseIcon, AccordianCaretOpenIcon, AdcsIcon, AddIcon, AddcustomIcon, AxisIcon, BatteryIcon, BusIcon, CatalogIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ComboIcon, CommsIcon, CrossIcon, CustomIcon, DashIcon, DashboardIcon, DocsIcon, DownloadIcon, EarthobservationIcon, EclipseIcon, EdgeIcon, EditIcon, EpsIcon, EyeCloseIcon, EyeOpenIcon, FilterIcon, GpsIcon, GroundStationIcon, InfoIcon, LoadComponentsIcon, MassIcon, MissionDesignIcon, MissionIcon, NotificationsIcon, PayloadIcon, ProcessorIcon, RadioIcon, ReviewSatelliteIcon, RocketIcon, SatelliteIcon, SearchIcon, SettingsIcon, SizeIcon, SolarGenerationIcon, SunlitIcon, TempIcon, ThrusterIcon, UploadIcon, UsersIcon };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ import*as a from'react';import {forwardRef}from'react';var a0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"m9.63 8.424-2.662 2.662a.6.6 0 0 1-1.024-.424V5.338a.6.6 0 0 1 1.024-.425l2.663 2.663a.6.6 0 0 1 0 .848"})),t0=forwardRef(a0),r0=t0;var m0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M7.575 9.631 4.913 6.97a.6.6 0 0 1 .424-1.024h5.325a.6.6 0 0 1 .424 1.024L8.424 9.63a.6.6 0 0 1-.849 0"})),s0=forwardRef(m0),n0=s0;var c0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8.452 4.074a.536.536 0 0 1 .78-.02l1.282 1.28.571-.57a.4.4 0 0 1 .565.566l-.57.57 1.282 1.282a.54.54 0 0 1-.017.778c-.528.479-1.153.718-1.834.694l-.538.538 1.053 1.053a.54.54 0 0 1 0 .767l-1.601 1.603a.543.543 0 0 1-.768 0L7.604 11.56l-.096.097a1.35 1.35 0 0 1-1.907 0l-.844-.844a1.35 1.35 0 0 1 0-1.907l.096-.097L3.8 7.757a.543.543 0 0 1 0-.766l1.602-1.603.085-.07c.181-.119.417-.119.598 0l.085.07 1.053 1.053.543-.544a2.73 2.73 0 0 1 .686-1.823m-.282 6.922.87.87 1.238-1.238-.87-.87zm-.664-3.707L5.702 9.093l-.38.38a.55.55 0 0 0 0 .775l.844.844a.55.55 0 0 0 .776 0L9.125 8.91l.445-.447a2.8 2.8 0 0 1-.998-.62 2.75 2.75 0 0 1-.633-.988zM2.77 5.61a.4.4 0 0 1 .566.566l-.772.77.772.772a.4.4 0 0 1 0 .566l-.772.77.772.772a.4.4 0 0 1-.566.565L1.717 9.336a.4.4 0 0 1 0-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566zm9.892 0a.4.4 0 0 1 .567 0l1.053 1.055a.4.4 0 0 1 0 .565l-.771.77.771.772a.4.4 0 0 1 0 .565L13.23 10.39a.401.401 0 0 1-.567-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566l.77-.771-.77-.77a.4.4 0 0 1 0-.566M4.548 7.374l.871.872 1.237-1.239-.87-.87zM8.879 4.83a1.951 1.951 0 0 0 .259 2.446c.319.32.817.523 1.26.571q.645.072 1.19-.308z"})),p0=forwardRef(c0),i0=p0;var h0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M7.6 12.666V8.4H3.333a.4.4 0 1 1 0-.8H7.6V3.333a.4.4 0 0 1 .8 0V7.6h4.266a.4.4 0 0 1 0 .8H8.4v4.266a.4.4 0 1 1-.8 0"})),v0=forwardRef(h0),V0=v0;var w0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM7.6 10.668V8.4H5.334a.4.4 0 0 1 0-.8H7.6V5.335a.4.4 0 0 1 .8 0V7.6h2.268a.4.4 0 0 1 0 .8H8.4v2.268a.4.4 0 0 1-.8 0m6.8-.001-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),G0=forwardRef(w0),d0=G0;var x0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.933 2a.4.4 0 0 1 .8 0v10.267H14a.4.4 0 0 1 0 .8H3.333a.4.4 0 0 1-.4-.4z"}),a.createElement("path",{fill:"currentColor",d:"M7.05 8.383a.4.4 0 0 1 .567.567l-4 4a.4.4 0 0 1-.567-.566zM3.114 1.666a.4.4 0 0 1 .503.05l2 2a.4.4 0 0 1-.567.567L3.333 2.566 1.617 4.283a.4.4 0 0 1-.567-.566l2-2zM11.717 10.384a.4.4 0 0 1 .566 0l2 2a.4.4 0 0 1 0 .566l-2 2a.4.4 0 0 1-.566-.566l1.717-1.717-1.717-1.717a.4.4 0 0 1 0-.566"})),u0=forwardRef(x0),I0=u0;var y0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.2 6.2a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h7.2a.8.8 0 0 0 .8-.8zM4 8.6V7.4a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m4.8 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M12 9.8a1.6 1.6 0 0 1-1.6 1.6H3.2c-.883 0-1.6-.716-1.6-1.6V6.2c0-.883.717-1.6 1.6-1.6h7.2A1.6 1.6 0 0 1 12 6.2z"})),M0=forwardRef(y0),P0=M0;var C0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8 1.8c.29 0 .575.08.823.229l1.8 1.08h.001a1.6 1.6 0 0 1 .775 1.368v2.397l2.225 1.335c.23.138.42.332.555.563l.009.012.003.007.09.185a1.6 1.6 0 0 1 .12.602v1.945a1.6 1.6 0 0 1-.608 1.25l-.169.118-1.8 1.08c-.228.137-.487.211-.753.223q-.034.008-.07.009a.4.4 0 0 1-.071-.008 1.6 1.6 0 0 1-.56-.125l-.194-.099L8 12.666l-2.176 1.305a1.6 1.6 0 0 1-.755.224.4.4 0 0 1-.069.008q-.038-.001-.072-.01a1.6 1.6 0 0 1-.559-.123l-.193-.099-1.8-1.08a1.6 1.6 0 0 1-.776-1.368V9.578a1.6 1.6 0 0 1 .776-1.369L4.6 6.874V4.477a1.6 1.6 0 0 1 .776-1.368l1.8-1.08.192-.099c.2-.085.414-.13.632-.13m-5.6 9.721.007.102a.8.8 0 0 0 .381.583l1.8 1.08.012.005v-2.366L2.4 9.603zm3-.595v2.365l.012-.005v-.001l2.189-1.312V9.606zm3 1.047 2.188 1.313.012.005v-2.365l-2.2-1.32zm3-1.047v2.365l.012-.005 1.8-1.08a.8.8 0 0 0 .388-.684V9.603zM2.788 8.895l-.007.004 2.22 1.334L7.22 8.9l-2.22-1.334zm5.99.005 2.221 1.333 2.219-1.334-.006-.004-2.213-1.33zM5.4 6.874l2.2 1.319V5.826L5.4 4.503zm3-1.048v2.367l2.2-1.32v-2.37zM8 2.6a.8.8 0 0 0-.412.114l-1.8 1.08q-.003.001-.007.004l2.22 1.334L10.217 3.8q-.003 0-.006-.004l-1.8-1.08A.8.8 0 0 0 8 2.601"})),H0=forwardRef(C0),L0=H0;var B0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M5.593 6.8c.302.001.597.086.855.243l.002.001 1.938 1.193.094.063a1.7 1.7 0 0 1 .515.587c.14.263.21.56.202.858v2.124c.004.3-.071.598-.217.86a1.7 1.7 0 0 1-.611.633l-1.9 1.187-.006.005-.001-.001a1.66 1.66 0 0 1-.761.231.4.4 0 0 1-.103.016.4.4 0 0 1-.111-.018c-.26-.02-.513-.1-.737-.237H4.75L2.812 13.35a1.7 1.7 0 0 1-.61-.65 1.74 1.74 0 0 1-.201-.87V9.718c-.004-.3.07-.598.216-.86.147-.265.36-.485.62-.638l1.892-1.182.007-.005.099-.054c.234-.12.494-.181.758-.18m6.807 6V3.2A1.2 1.2 0 0 0 11.2 2H4.8a1.2 1.2 0 0 0-1.2 1.2v2.267a.4.4 0 0 1-.8 0V3.199a2 2 0 0 1 2-2h6.4a2 2 0 0 1 2 2v9.6a2 2 0 0 1-2 2H9.44a.4.4 0 0 1 0-.799h1.76a1.2 1.2 0 0 0 1.2-1.2M6 11.346v2.548q.026-.013.05-.027l1.906-1.188a.9.9 0 0 0 .327-.338.94.94 0 0 0 .116-.466V9.881zm-3.2.51a.94.94 0 0 0 .109.47.9.9 0 0 0 .322.343l1.937 1.192.032.016v-2.531L2.8 9.88zM5.59 7.6a.86.86 0 0 0-.444.122V7.72L3.252 8.904l-.01.005a.9.9 0 0 0-.21.176l2.566 1.567 2.568-1.566a.9.9 0 0 0-.198-.167L6.03 7.726a.86.86 0 0 0-.44-.126"})),N0=forwardRef(B0),q0=N0;var b0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.926 3.363a.4.4 0 1 1 .648.467l-5.62 7.807a.4.4 0 0 1-.605.052l-3.38-3.322a.4.4 0 1 1 .561-.57l3.046 2.994z"})),U0=forwardRef(b0),k0=U0;var T0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.66 4.66a.481.481 0 0 1 .68.68l-6 6a.48.48 0 0 1-.68 0l-6-6a.481.481 0 0 1 .68-.68L8 10.32z"})),F0=forwardRef(T0),j0=F0;var K0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M4.66 1.66a.48.48 0 0 1 .68 0l6 6a.48.48 0 0 1 0 .68l-6 6a.481.481 0 0 1-.68-.68L10.32 8 4.66 2.34a.48.48 0 0 1 0-.68"})),Q0=forwardRef(K0),W0=Q0;var Y0=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M10.66 1.66a.481.481 0 0 1 .68.68L5.68 8l5.66 5.66a.481.481 0 0 1-.68.68l-6-6a.48.48 0 0 1 0-.68z"})),Z0=forwardRef(Y0),_0=Z0;var o1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M7.736 4.599a.48.48 0 0 1 .604.061l6 6a.481.481 0 0 1-.68.68L8 5.68l-5.66 5.66a.481.481 0 0 1-.68-.68l6-6z"})),e1=forwardRef(o1),a1=e1;var r1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.717 9.717a.4.4 0 0 1 .566.566l-4 4a.4.4 0 0 1-.566 0l-4-4a.4.4 0 0 1 .566-.566L8 13.434zM8 1.6a.4.4 0 0 1 .283.117l4 4a.4.4 0 0 1-.566.566L8 2.566 4.283 6.283a.4.4 0 0 1-.566-.566l4-4 .061-.05A.4.4 0 0 1 8 1.6"})),l1=forwardRef(r1),m1=l1;var n1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.616 6.27a.4.4 0 0 1 .334.114L6 9.434l1.718-1.717a.4.4 0 0 1 .565.566L6.565 10l3.051 3.05a.4.4 0 0 1-.08.629 5.274 5.274 0 0 1-7.214-7.214l.055-.073a.4.4 0 0 1 .239-.121m.157 1.068a4.474 4.474 0 0 0 5.888 5.889zm8.16 1.329a3.6 3.6 0 0 0-3.6-3.6.4.4 0 1 1 0-.8 4.4 4.4 0 0 1 4.4 4.4.4.4 0 1 1-.8 0m2.667 0A6.27 6.27 0 0 0 7.334 2.4a.4.4 0 0 1 0-.8A7.07 7.07 0 0 1 14.4 8.667a.4.4 0 0 1-.8 0"})),f1=forwardRef(n1),c1=f1;var i1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.888 3.403a.5.5 0 1 1 .707.707L8.705 8l3.89 3.892a.501.501 0 0 1-.707.708L7.997 8.708 4.11 12.596a.5.5 0 0 1-.707-.707L7.29 8 3.403 4.114a.501.501 0 0 1 .707-.708l3.888 3.888z"})),S1=forwardRef(i1),h1=S1;var V1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM9.2 8A1.2 1.2 0 1 0 6.8 8 1.2 1.2 0 0 0 9.2 8m.8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4.4 2.667-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),g1=forwardRef(V1),w1=g1;var d1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 0 1 0-.8z"})),R1=forwardRef(d1),x1=R1;var I1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M5.646 13.859v.8H2.852v-.8zm7.507 0v.8H10.36v-.8zm.7-.7v-2.794a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7v2.794a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.339l-.008-.153v-2.794a1.5 1.5 0 0 1 1.347-1.492l.153-.008h2.794l.154.008a1.5 1.5 0 0 1 1.346 1.492v2.794l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7m-7.507 0V2.828a.7.7 0 0 0-.7-.7H2.852a.7.7 0 0 0-.7.7v10.33a.7.7 0 0 0 .7.7v.8l-.154-.007a1.5 1.5 0 0 1-1.339-1.339l-.007-.153V2.828a1.5 1.5 0 0 1 1.5-1.5h2.794a1.5 1.5 0 0 1 1.5 1.5v10.33l-.008.154a1.5 1.5 0 0 1-1.34 1.339l-.152.008v-.8a.7.7 0 0 0 .7-.7m6.807-6.838v.8H10.36v-.8zm.7-.7V2.828a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7V5.62a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.34l-.008-.152V2.828a1.5 1.5 0 0 1 1.347-1.493l.153-.007h2.794l.154.007a1.5 1.5 0 0 1 1.346 1.493V5.62l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7"})),E1=forwardRef(I1),y1=E1;var P1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.276 13.333V2.666A1.72 1.72 0 0 1 3.999.943h6c.103 0 .203.041.276.114l3.333 3.333a.4.4 0 0 1 .114.276v.647l.002.02-.002.02v7.98A1.724 1.724 0 0 1 12 15.056h-8a1.724 1.724 0 0 1-1.723-1.723m8.392-2.39a.39.39 0 1 1 0 .78H5.335a.39.39 0 1 1 0-.78zm0-2.666a.39.39 0 0 1 0 .78H5.335a.391.391 0 0 1 0-.78zm-4-2.667a.39.39 0 1 1 0 .78H5.335a.391.391 0 0 1 0-.78zM9.724 4a.944.944 0 0 0 .944.943h2.274v-.116L9.837 1.722h-.113zm-6.669 9.333a.944.944 0 0 0 .944.943h8a.944.944 0 0 0 .943-.943v-7.61h-2.274A1.724 1.724 0 0 1 8.944 4V1.722H3.999a.944.944 0 0 0-.944.944z"})),z1=forwardRef(P1),C1=z1;var L1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M1.6 12.667V10a.4.4 0 0 1 .8 0v2.667a.93.93 0 0 0 .933.933h9.334a.933.933 0 0 0 .933-.933V10a.4.4 0 0 1 .8 0v2.667a1.734 1.734 0 0 1-1.733 1.733H3.333A1.734 1.734 0 0 1 1.6 12.667M7.6 2a.4.4 0 0 1 .8 0v7.033l2.65-2.65a.4.4 0 0 1 .566.566l-3.333 3.334a.4.4 0 0 1-.566 0L4.384 6.95a.4.4 0 0 1 .565-.565l2.65 2.65z"})),A1=forwardRef(L1),B1=A1;var q1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.691 3.074c.662 0 1.228.48 1.336 1.133l1.184 7.144c.136.825-.5 1.574-1.336 1.574h-9.75c-.836 0-1.472-.75-1.336-1.574l1.185-7.144a1.354 1.354 0 0 1 1.335-1.133zm-4.15.8c.288.27.603.58.904.9.322.34.636.7.892 1.036.249.328.467.668.567.965.482 1.427.052 2.73-.907 3.702-.556.564-1.138.88-1.723.986a2.6 2.6 0 0 1-1.617-.242c-.947-.46-1.66-1.403-1.965-2.23-.08-.219-.178-.338-.26-.404a.5.5 0 0 0-.247-.11 1 1 0 0 0-.108-.007l-.499 3.012a.554.554 0 0 0 .547.644h2l.085-.002a11.801 11.801 0 0 0 1.392-.126c.858-.131 1.827-.387 2.464-.859.937-.694 1.85-1.684 1.995-2.824.06-.474.049-.851-.061-1.198-.11-.345-.326-.696-.732-1.095-.473-.466-.688-1.064-.578-1.637.035-.182.106-.353.2-.51zm3.546 0c-.38.158-.563.413-.61.662-.052.266.036.604.352.916.473.465.775.924.934 1.425.157.497.16 1.002.092 1.539-.187 1.476-1.33 2.638-2.313 3.366q-.264.194-.566.344h3.899a.554.554 0 0 0 .547-.644l-1.185-7.144a.55.55 0 0 0-.546-.463zm-4.89 0c.585.498 1.264 1.103 1.798 1.748.413.5.77 1.054.928 1.636.163.599.115 1.225-.273 1.815-.312.475-.677.811-1.089.986-.419.178-.852.175-1.261.033-.793-.273-1.486-1.056-1.99-2.03a1.31 1.31 0 0 0-.833-.68 2 2 0 0 0-.212-.046l-.056.34q.047.003.097.01c.202.03.427.111.635.282.208.172.38.417.501.746.248.672.839 1.434 1.566 1.788.355.172.734.244 1.125.173.391-.07.83-.29 1.294-.76.777-.788 1.091-1.783.72-2.884-.057-.168-.209-.421-.448-.736a12 12 0 0 0-.836-.973c-.566-.6-1.17-1.155-1.531-1.447zm-1.888 0a.55.55 0 0 0-.546.464l-.368 2.209q.142.02.304.067c.441.127.98.423 1.32 1.08.468.901 1.034 1.467 1.541 1.643q.359.126.688-.014c.227-.097.48-.304.734-.69.245-.372.28-.755.168-1.165-.116-.425-.391-.877-.771-1.337-.725-.875-1.724-1.664-2.417-2.256z"})),D1=forwardRef(q1),b1=D1;var k1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8 2.4a.401.401 0 0 1 .282.683c-1.259 1.26-1.258 3.375.001 4.634 1.26 1.26 3.374 1.26 4.633 0A.401.401 0 0 1 13.6 8 5.601 5.601 0 0 1 2.4 8 5.6 5.6 0 0 1 8 2.4M3.2 8a4.8 4.8 0 0 0 9.517.878c-1.564.94-3.66.743-4.999-.595S6.18 4.845 7.12 3.28A4.8 4.8 0 0 0 3.2 7.999"})),O1=forwardRef(k1),T1=O1;var j1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M4 10.4q.001-.109.055-.2H2.401v.8a.8.8 0 0 0 .8.8H4zm1.2-3V6.2a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 1 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M13.6 5a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v.371a1.6 1.6 0 0 1 .543 2.376c-.145.193-.33.349-.542.46V9.4H13.6V8.228a1.6 1.6 0 0 1-.542-.458 1.602 1.602 0 0 1 .542-2.377zm-8.8 6.8h1.6v-1.4q.002-.109.054-.2H4.745a.4.4 0 0 1 .055.2zm2.4 0h1.6v-1.4a.4.4 0 0 1 .055-.2h-1.71a.4.4 0 0 1 .054.2zm2.4 0h1.6v-1.4c0-.072.021-.14.055-.2h-1.71a.4.4 0 0 1 .055.2zm2.4 0h.8a.8.8 0 0 0 .8-.8v-.8h-1.654a.4.4 0 0 1 .054.2zm2.4-6.14a.4.4 0 0 1-.286.384.8.8 0 0 0-.416 1.246c.104.138.25.24.416.288a.4.4 0 0 1 .287.384V11a1.6 1.6 0 0 1-1.6 1.6H3.2A1.6 1.6 0 0 1 1.6 11V7.94a.4.4 0 0 1 .287-.384.8.8 0 0 0 0-1.534.4.4 0 0 1-.287-.384V5a1.6 1.6 0 0 1 1.6-1.6h9.6A1.6 1.6 0 0 1 14.4 5z"})),J1=forwardRef(j1),K1=J1;var W1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M9.003 13.6a.4.4 0 0 1 0 .8H3.169a.4.4 0 0 1 0-.8zm2.93-9.186a1.014 1.014 0 0 0-1.73-.717l-6.01 6.01a.93.93 0 0 0-.236.397l-.525 1.797 1.797-.525a.93.93 0 0 0 .399-.235l6.009-6.01c.19-.19.297-.448.297-.717m.8 0c0 .481-.19.943-.53 1.283l-6.01 6.01c-.205.205-.46.356-.739.438l-1.915.56a.735.735 0 0 1-.916-.522.74.74 0 0 1 .007-.388l.56-1.916.074-.204c.086-.199.21-.38.364-.534l6.009-6.01a1.814 1.814 0 0 1 3.096 1.283"})),X1=forwardRef(W1),Y1=X1;var _1=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M1.6 9.8V6.2a1.6 1.6 0 0 1 1.6-1.6h1.2a.4.4 0 0 1 0 .8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h.6a.4.4 0 1 1 0 .8h-.6a1.6 1.6 0 0 1-1.6-1.6m9.6 0V6.2a.8.8 0 0 0-.8-.8h-.6a.4.4 0 0 1 0-.8h.6A1.6 1.6 0 0 1 12 6.2v3.6a1.6 1.6 0 0 1-1.6 1.6H9.2a.4.4 0 0 1 0-.8h1.2a.8.8 0 0 0 .8-.8M7.058 4.794a.4.4 0 0 1 .685.412L6.307 7.601H8a.4.4 0 0 1 .343.605l-1.8 3a.4.4 0 0 1-.686-.412L7.293 8.4H5.601a.401.401 0 0 1-.344-.606zM13.6 8.6V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0"})),$1=forwardRef(_1),o4=$1;var a4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.624 5.68a.4.4 0 0 1 .752.274A6.79 6.79 0 0 1 4.109 9.189a6.8 6.8 0 0 1-2.485-3.235.4.4 0 0 1 .752-.273 5.987 5.987 0 0 0 11.248 0"})),t4=forwardRef(a4),r4=t4;var m4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8 3.4a6.85 6.85 0 0 1 6.332 4.238l.006.014c.083.225.083.472 0 .696l-.006.013a6.85 6.85 0 0 1-6.078 4.233L8 12.6a6.85 6.85 0 0 1-6.332-4.238l-.006-.013a1 1 0 0 1 0-.696l.006-.014A6.85 6.85 0 0 1 8 3.4m0 .8a6.05 6.05 0 0 0-5.589 3.734.2.2 0 0 0 0 .132A6.05 6.05 0 0 0 8 11.8l.225-.004a6.05 6.05 0 0 0 5.363-3.73.2.2 0 0 0 0-.132A6.05 6.05 0 0 0 8 4.201M8.8 8a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0m.8 0a1.6 1.6 0 1 1-3.2 0 1.6 1.6 0 0 1 3.2 0"})),s4=forwardRef(m4),n4=s4;var c4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M10 12.267a.4.4 0 1 1 0 .8H6a.4.4 0 0 1 0-.8zM12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 1 1 0-.8zm2.666-4.667a.4.4 0 0 1 0 .8H1.333a.4.4 0 0 1 0-.8z"})),p4=forwardRef(c4),i4=p4;var h4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M7.6 14v-1.418A4.6 4.6 0 0 1 3.419 8.4H2a.4.4 0 0 1 0-.8h1.419a4.6 4.6 0 0 1 4.18-4.182V2A.4.4 0 0 1 8.4 2v1.418A4.6 4.6 0 0 1 12.581 7.6H14a.4.4 0 1 1 0 .8h-1.419a4.6 4.6 0 0 1-4.18 4.182V14a.4.4 0 0 1-.801 0M8 4.2a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 0 0 0-7.6M9.4 8a1.4 1.4 0 1 0-2.8 0 1.4 1.4 0 0 0 2.8 0m.8 0a2.2 2.2 0 1 1-4.4 0 2.2 2.2 0 0 1 4.4 0"})),v4=forwardRef(h4),V4=v4;var w4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.786 9.797c0-1.072 1.3-1.607 2.054-.845l4.328 4.376h.28a.4.4 0 0 1 0 .8H2.742a.4.4 0 1 1 0-.8h.044zm3.109-6.152a.4.4 0 0 1 .565 0l.315.316 2.34 2.34 1.374-1.373a.4.4 0 0 1 .566.565L9.681 6.866l2.34 2.34.315.316a.4.4 0 1 1-.565.566l-.043-.043c-.818.715-1.712 1.084-2.63 1.073-1.024-.013-2.007-.498-2.871-1.362-.865-.865-1.35-1.848-1.363-2.873-.012-.917.357-1.812 1.072-2.63l-.041-.041a.4.4 0 0 1 0-.567m.607 1.174c-.588.688-.847 1.387-.839 2.054.01.764.371 1.559 1.13 2.317.757.758 1.551 1.119 2.316 1.128.667.008 1.366-.25 2.053-.839zm4.071-2.748a3.41 3.41 0 0 1 3.377 3.376.4.4 0 1 1-.8.008 2.61 2.61 0 0 0-2.584-2.583.4.4 0 0 1 .007-.8M3.587 13.328h4.456L4.271 9.515a.4.4 0 0 0-.684.282z"})),G4=forwardRef(w4),d4=G4;var x4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.6 8A5.6 5.6 0 1 0 2.4 8 5.6 5.6 0 0 0 13.6 8m-6 2.4V8a.4.4 0 0 1 .8 0v2.4a.4.4 0 0 1-.8 0m.407-5.2a.4.4 0 0 1 0 .8H8a.4.4 0 1 1 0-.8zM14.4 8A6.4 6.4 0 1 1 1.6 8 6.4 6.4 0 0 1 14.4 8"})),u4=forwardRef(x4),I4=u4;var y4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.192 8a4.613 4.613 0 0 0-5.805-4.455.4.4 0 0 1-.207-.773 5.412 5.412 0 1 1 0 10.456.4.4 0 1 1 .207-.773A4.613 4.613 0 0 0 13.192 8M1.83 3.023a.4.4 0 0 1 .426.054l5.539 4.616a.4.4 0 0 1 0 .615l-5.54 4.615a.4.4 0 0 1-.655-.308v-9.23a.4.4 0 0 1 .23-.362m.57 8.737L6.913 8 2.4 4.237z"})),M4=forwardRef(y4),P4=M4;var C4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M9.123 3.76a1.403 1.403 0 1 0-2.806 0 1.403 1.403 0 0 0 2.806 0M4.29 5.975a.8.8 0 0 0-.635.57v.002l-1.499 5.427h.001a.804.804 0 0 0 .762 1.003h9.61a.804.804 0 0 0 .792-.928l-.019-.09-1.518-5.386-.002-.009a.8.8 0 0 0-.64-.59l-.13-.011H4.418zM9.923 3.76c0 .533-.19 1.022-.505 1.403h1.6a1.6 1.6 0 0 1 1.538 1.201h-.001l1.517 5.378.039.18a1.6 1.6 0 0 1-1.582 1.855H2.905a1.602 1.602 0 0 1-1.522-2.003l.001-.005 1.5-5.435.001-.002a1.6 1.6 0 0 1 1.525-1.169h1.613A2.204 2.204 0 1 1 9.923 3.76"})),H4=forwardRef(C4),L4=H4;var B4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M5.653 2.43a6.2 6.2 0 0 1 4.013-.18l-.113.383-.112.384a5.401 5.401 0 1 0 3.672 3.693l.769-.221A6.2 6.2 0 1 1 5.653 2.43m.496 2.41a3.8 3.8 0 0 1 2.29-.405l-.055.397-.054.396a3 3 0 1 0 2.57 2.595l.793-.102a3.8 3.8 0 0 1-2.106 3.895A3.8 3.8 0 0 1 6.15 4.84m2.374 3.33-.334.335a.4.4 0 1 1-.566-.566l.338-.339c-.013 0-.025-.004-.038-.004a.605.605 0 1 0 .604.605c0-.01-.004-.021-.004-.031m.803.03a1.403 1.403 0 1 1-.731-1.234l1.81-1.81V3.975a.9.9 0 0 1 .264-.635l.918-.92.044-.038a.42.42 0 0 1 .633.156l.021.053.3.953.952.3a.42.42 0 0 1 .171.697l-.919.919a.9.9 0 0 1-.636.263H10.97L9.158 7.534c.108.198.168.426.168.667m1.88-3.277h.947c.026 0 .052-.011.07-.03l.475-.475-.543-.17a.42.42 0 0 1-.275-.276l-.17-.544-.476.476a.1.1 0 0 0-.029.07z"})),N4=forwardRef(B4),q4=N4;var b4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M13.6 13.143a.457.457 0 1 0-.915 0 .457.457 0 0 0 .915 0M7.02 7.363A8.9 8.9 0 0 1 3.257 8.39v3.561c.372.125.667.42.792.792h7.902c.125-.373.42-.667.792-.792v-.139a5.54 5.54 0 0 1-4.034-2.2zm5.722-2.382a8.1 8.1 0 0 0-4.09 1.35l-.863.575-.075.048 1.634 2.178a4.74 4.74 0 0 0 3.394 1.878zM3.257 7.59a8.1 8.1 0 0 0 3.273-.872 4.74 4.74 0 0 0-3.273-1.728zm.792-4.332c-.125.372-.42.666-.792.79v.14A5.54 5.54 0 0 1 7.23 6.314l.116-.073.863-.576a8.9 8.9 0 0 1 4.533-1.484v-.133a1.26 1.26 0 0 1-.792-.791zM2.4 13.143a.457.457 0 1 0 .914 0 .457.457 0 0 0-.914 0M13.6 2.857a.457.457 0 1 0-.914 0 .457.457 0 0 0 .914 0m-11.2 0a.457.457 0 1 0 .915 0 .457.457 0 0 0-.915 0m12 0c0 .555-.36 1.024-.857 1.19v7.904a1.257 1.257 0 1 1-1.59 1.592H4.047a1.257 1.257 0 1 1-1.591-1.592V4.048a1.257 1.257 0 1 1 1.59-1.591h7.905a1.257 1.257 0 0 1 2.448.4"})),U4=forwardRef(b4),k4=U4;var T4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M6.674 13.517a.4.4 0 0 1 .543.158.894.894 0 0 0 1.565 0 .4.4 0 0 1 .701.385 1.694 1.694 0 0 1-2.968 0 .4.4 0 0 1 .159-.543M11.6 6a3.601 3.601 0 0 0-7.2 0c0 2.627-.619 4.26-1.206 5.213a.2.2 0 0 0-.01.076.5.5 0 0 0 .041.175c.028.06.06.102.086.124q.013.01.018.012h9.342q.006-.002.017-.012a.474.474 0 0 0 .129-.299c.002-.053-.01-.075-.011-.076C12.219 10.259 11.6 8.627 11.6 6m.807.456c.066 2.223.61 3.574 1.08 4.337.2.325.14.727.017.999-.12.266-.395.608-.825.608H3.32c-.43 0-.704-.342-.824-.608-.123-.272-.185-.674.015-.999.47-.763 1.015-2.114 1.082-4.337L3.6 6a4.4 4.4 0 1 1 8.8 0z"})),F4=forwardRef(T4),j4=F4;var K4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"m13.594 5.246-1.059.61a.4.4 0 0 1-.398-.695l1.046-.602-.048-.032-4.667-2.666h-.001a.93.93 0 0 0-.934 0L2.864 4.527l-.049.032 1.047.602a.4.4 0 0 1-.398.694l-1.06-.61a1 1 0 0 0-.005.089v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001q.033.018.067.033V13a.4.4 0 0 1 .8 0v1.173q.034-.015.067-.033l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM10.329 8a1.32 1.32 0 0 1 .556-1.073.516.516 0 0 0 .146-.676.515.515 0 0 0-.658-.211v-.001a1.32 1.32 0 0 1-1.209-.054 1.32 1.32 0 0 1-.652-1.022v-.001a.515.515 0 0 0-1.024.003 1.316 1.316 0 0 1-1.861 1.074.516.516 0 0 0-.512.888 1.315 1.315 0 0 1 .408 1.68 1.3 1.3 0 0 1-.409.466.515.515 0 0 0 .51.889 1.32 1.32 0 0 1 1.663.484c.113.177.182.38.201.589l.018.094a.515.515 0 0 0 1.006-.091 1.32 1.32 0 0 1 .652-1.024 1.32 1.32 0 0 1 1.213-.052h-.001a.516.516 0 0 0 .713-.578.52.52 0 0 0-.204-.31v-.001A1.31 1.31 0 0 1 10.329 8M8.772 8a.773.773 0 1 0-1.545 0 .773.773 0 0 0 1.545 0m.8 0a1.572 1.572 0 1 1-3.144 0 1.572 1.572 0 0 1 3.144 0m1.557 0a.52.52 0 0 0 .219.42l.003.004a1.315 1.315 0 0 1-1.309 2.264h-.003a.52.52 0 0 0-.651.189.5.5 0 0 0-.08.231v.003a1.314 1.314 0 0 1-2.617 0v-.003a.515.515 0 0 0-.73-.42h-.003a1.316 1.316 0 0 1-1.682-.539 1.314 1.314 0 0 1 .373-1.725l.003-.003a.515.515 0 0 0 0-.842l-.004-.003a1.315 1.315 0 0 1 1.196-2.31l.113.045.004.002a.516.516 0 0 0 .73-.422V4.89a1.317 1.317 0 0 1 2.194-.848c.212.192.354.448.407.727l.017.121v.002a.517.517 0 0 0 .73.422l.003-.002a1.316 1.316 0 0 1 1.309 2.266l-.003.002a.52.52 0 0 0-.22.42m3.271 2.667-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-.835.23l-.03.003q-.015-.001-.031-.004a1.73 1.73 0 0 1-.834-.23v.002l-4.667-2.666-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"})),Q4=forwardRef(K4),W4=Q4;var Y4=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M12.4 4.4a.8.8 0 0 0-.8-.8H4.4a.8.8 0 0 0-.8.8v7.2a.8.8 0 0 0 .8.8h7.2a.8.8 0 0 0 .8-.8zm-3 2.4a.2.2 0 0 0-.2-.2H6.8a.2.2 0 0 0-.2.2v2.4c0 .11.09.2.2.2h2.4a.2.2 0 0 0 .2-.2zm.8 2.4a1 1 0 0 1-1 1H6.8a1 1 0 0 1-1-1V6.8a1 1 0 0 1 1-1h2.4a1 1 0 0 1 1 1zm3-3.4h.8a.4.4 0 0 1 0 .8h-.8v2.8h.8a.4.4 0 1 1 0 .8h-.8v1.4a1.6 1.6 0 0 1-1.6 1.6h-1.4v.8a.4.4 0 0 1-.8 0v-.8H6.6v.8a.4.4 0 1 1-.8 0v-.8H4.4a1.6 1.6 0 0 1-1.6-1.6v-1.4H2a.4.4 0 0 1 0-.8h.8V6.6H2a.4.4 0 1 1 0-.8h.8V4.4a1.6 1.6 0 0 1 1.6-1.6h1.4V2a.4.4 0 0 1 .8 0v.8h2.8V2a.4.4 0 0 1 .8 0v.8h1.4a1.6 1.6 0 0 1 1.6 1.6z"})),Z4=forwardRef(Y4),_4=Z4;var o6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M3.468 3.468a.4.4 0 0 1 .565.566c-2.177 2.178-2.178 5.755 0 7.933a.4.4 0 1 1-.565.565c-2.49-2.49-2.49-6.574 0-9.064m8.499 0a.4.4 0 0 1 .565 0 6.36 6.36 0 0 1 0 9.005.4.4 0 1 1-.565-.567 5.56 5.56 0 0 0 0-7.872.4.4 0 0 1 0-.566M10.23 5.203a.4.4 0 0 1 .567 0c1.536 1.536 1.527 4.06.006 5.647a.4.4 0 0 1-.578-.553c1.231-1.285 1.223-3.31.005-4.528a.4.4 0 0 1 0-.566m-5.033-.054a.4.4 0 0 1 .578.554c-1.231 1.285-1.223 3.31-.005 4.527a.4.4 0 0 1-.567.567c-1.536-1.536-1.527-4.06-.006-5.648M8.797 8A.797.797 0 1 0 7.202 8a.797.797 0 0 0 1.595 0m.8 0a1.597 1.597 0 1 1-3.194 0 1.597 1.597 0 0 1 3.194 0"})),e6=forwardRef(o6),a6=e6;var r6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.35 14V2a.4.4 0 0 1 .8 0v12a.4.4 0 0 1-.8 0M5.576 1.64A.4.4 0 0 1 6 1.688l7.5 6a.4.4 0 0 1 0 .625l-7.5 6A.401.401 0 0 1 5.35 14V2a.4.4 0 0 1 .226-.36m.574 11.528L12.61 8 6.15 2.832z"})),l6=forwardRef(r6),m6=l6;var n6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M3.994 10.259c.4.012.783.153 1.094.4l.128.112.005.005c.686.677.681 1.772.084 2.48l.001.001c-.26.31-.63.55-1.006.732-.38.186-.794.329-1.171.437a11 11 0 0 1-1.29.286l-.086.013-.024.004h-.01a.4.4 0 0 1-.449-.449v-.002l.001-.007.004-.024.013-.085a11.314 11.314 0 0 1 .286-1.291c.108-.377.25-.792.436-1.172.184-.375.422-.744.733-1.005.349-.295.795-.45 1.25-.435m-.025.8c-.227-.007-.45.06-.634.188l-.078.059c-.189.159-.367.417-.528.745-.158.324-.286.69-.387 1.041-.077.272-.135.53-.18.744.214-.044.473-.1.746-.179.35-.1.717-.228 1.04-.386.33-.16.587-.34.746-.529h.001c.346-.411.33-1.03-.031-1.392l-.074-.065a1.05 1.05 0 0 0-.62-.226M7.6 13.333v-3.168L5.835 8.4H2.667a.4.4 0 0 1-.394-.471l.001-.003.001-.006.003-.02a5 5 0 0 1 .073-.322c.052-.209.131-.496.243-.805C2.81 6.18 3.18 5.403 3.778 5c.346-.23.762-.333 1.161-.37a5.5 5.5 0 0 1 1.184.035c.368.048.699.12.937.178l.116.03A8.99 8.99 0 0 1 14.67.934a.4.4 0 0 1 .397.4c0 1.849-.525 5.08-3.94 7.498q.015.051.029.108c.059.238.13.569.178.937.047.367.072.781.035 1.184-.037.399-.139.815-.37 1.16v.002c-.401.599-1.18.968-1.772 1.182a8 8 0 0 1-1.128.317l-.02.004h-.007a.401.401 0 0 1-.472-.393m2.813-4.047a15 15 0 0 1-2.013.986v2.553c.162-.044.354-.099.555-.171.58-.21 1.134-.51 1.38-.876.129-.194.206-.465.237-.792.03-.323.01-.675-.032-1.006a8 8 0 0 0-.127-.694m3.842-7.545a8.19 8.19 0 0 0-6.582 3.837l-.002.004a14.3 14.3 0 0 0-1.203 2.32L8.096 9.53a14.5 14.5 0 0 0 2.357-1.202c3.075-2.066 3.723-4.814 3.803-6.587M5.013 5.428a2 2 0 0 0-.632.15l-.159.088c-.367.246-.665.8-.875 1.38-.072.2-.128.392-.173.554H5.73q.424-1.043.998-2.011a8 8 0 0 0-.707-.129 4.7 4.7 0 0 0-1.007-.032"})),f6=forwardRef(n6),c6=f6;var i6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8.794 1.712a.6.6 0 0 1 .685-.01l.094.076 2.041 2.041.986-.984a.4.4 0 0 1 .565.565l-.985.985 2.042 2.042a.603.603 0 0 1-.019.874c-.771.699-1.68 1.037-2.673.98l-.994.993 1.702 1.703a.61.61 0 0 1 0 .864l-2.38 2.38a.61.61 0 0 1-.865 0l-1.701-1.703-.28.282c-.368.367-.799.483-1.233.379-.397-.096-.751-.364-1.046-.659L3.48 11.268c-.294-.295-.562-.65-.658-1.046-.104-.434.012-.865.38-1.233l.28-.281-1.702-1.7a.61.61 0 0 1 0-.865l2.38-2.38.096-.078a.61.61 0 0 1 .673 0l.095.078 1.702 1.7.999-1a3.87 3.87 0 0 1 .973-2.661zm-.937 10.241 1.569 1.569 2.113-2.114L9.971 9.84zm-4.091-2.4c-.183.183-.203.334-.167.481.044.184.191.411.447.667l1.253 1.253c.256.256.483.403.667.447.147.036.298.016.48-.167l3.242-3.242.884-.886c-.617-.183-1.237-.505-1.705-.973a3.9 3.9 0 0 1-.994-1.687zm-1.288-2.98 1.568 1.569 2.113-2.114L4.591 4.46zm6.681-4.077a3.08 3.08 0 0 0-.628 2.098c.051.718.351 1.423.902 1.973.51.511 1.294.828 1.988.904.762.083 1.46-.126 2.085-.628z"})),S6=forwardRef(i6),h6=S6;var V6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M12.067 7.133a4.933 4.933 0 1 0-9.867.001 4.933 4.933 0 0 0 9.867 0m.8 0a5.7 5.7 0 0 1-1.408 3.76l2.624 2.624a.401.401 0 0 1-.566.566l-2.623-2.624a5.734 5.734 0 1 1 1.973-4.326"})),g6=forwardRef(V6),w6=g6;var d6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M12.148 13.266a.4.4 0 0 1-.8 0v-4.37a.4.4 0 0 1 .8 0zM12.152 4.085a.4.4 0 0 1-.801 0V2.4a.4.4 0 0 1 .8 0z"}),a.createElement("path",{fill:"currentColor",d:"M11.751 8.367a1.849 1.849 0 1 0 0-3.697 1.849 1.849 0 0 0 0 3.697m0 .8a2.648 2.648 0 1 1 0-5.296 2.648 2.648 0 0 1 0 5.296M3.849 2.398a.4.4 0 0 1 .8 0v4.37a.4.4 0 0 1-.8 0zM3.849 11.579a.4.4 0 0 1 .8 0v1.686a.4.4 0 0 1-.8 0z"}),a.createElement("path",{fill:"currentColor",d:"M4.249 7.297a1.849 1.849 0 1 0 0 3.697 1.849 1.849 0 0 0 0-3.697m0-.8a2.648 2.648 0 1 1 0 5.296 2.648 2.648 0 0 1 0-5.296"})),R6=forwardRef(d6),x6=R6;var I6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M2.6 1a.4.4 0 0 1 .8 0v11.033l5.317-5.316a.4.4 0 0 1 .566.566L3.967 12.6H15a.4.4 0 0 1 0 .8H3a.4.4 0 0 1-.4-.4z"})),E6=forwardRef(I6),y6=E6;var P6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M11.598 7.6q.134 0 .257.052l.08.04.073.05a.7.7 0 0 1 .123.126l.048.074 2.354 4.238a.666.666 0 0 1-.58.989H3.726a.666.666 0 0 1-.581-.989L5.5 7.942l.048-.074q.08-.107.196-.176l.08-.04A.7.7 0 0 1 6.08 7.6zm-.319 4.769h2.444l-.439-.79h-2.18zm-4.06 0h3.241l-.175-.79H7.394zm-3.263 0h2.443l.176-.79h-2.18zm6.97-1.59h1.914l-.439-.79H10.75zm-3.355 0h2.536l-.175-.79H7.747zm-2.732 0h1.914l.176-.79H5.277zm.877-6.121a3.58 3.58 0 0 1 3.945.97.4.4 0 0 1-.598.53 2.779 2.779 0 0 0-4.857 1.843c0 .308.052.613.154.904a.4.4 0 1 1-.755.266 3.5 3.5 0 0 1-.186-.873L3.406 8a3.58 3.58 0 0 1 2.31-3.342m4.856 4.531h1.384l-.438-.789h-1.12zm-2.647 0h1.829L9.578 8.4H8.101zm-2.202 0h1.383l.175-.789h-1.12zM2.747 7.6a.4.4 0 0 1 0 .8h-.53a.4.4 0 1 1 0-.8zm.246-3.59a.4.4 0 0 1 .566 0l.529.53a.4.4 0 1 1-.566.565l-.529-.53a.4.4 0 0 1 0-.566m3.592-.248v-.53a.4.4 0 0 1 .8 0v.53a.4.4 0 0 1-.8 0"})),z6=forwardRef(P6),C6=z6;var L6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M7.6 14v-1.2a.4.4 0 0 1 .8 0V14a.4.4 0 0 1-.8 0m-3.278-2.887a.401.401 0 0 1 .566.566l-.846.846a.4.4 0 0 1-.566-.566zm6.792 0a.4.4 0 0 1 .565 0l.846.846a.4.4 0 1 1-.566.566l-.845-.846a.4.4 0 0 1 0-.566M10 8a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-6.8-.4a.4.4 0 0 1 0 .8H2a.4.4 0 1 1 0-.8zm10.8 0a.4.4 0 0 1 0 .8h-1.2a.4.4 0 1 1 0-.8zM3.476 3.475a.4.4 0 0 1 .566 0l.846.847a.4.4 0 0 1-.566.565l-.846-.846a.4.4 0 0 1 0-.566m8.484 0a.4.4 0 0 1 .565.566l-.846.846a.4.4 0 0 1-.565-.565zM7.6 3.201V2a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M10.8 8a2.8 2.8 0 1 1-5.6-.002A2.8 2.8 0 0 1 10.8 8"})),A6=forwardRef(L6),B6=A6;var q6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8.8 3.202a.8.8 0 0 0-.8-.8.8.8 0 0 0-.8.8v6.322a.4.4 0 0 1-.2.346 2 2 0 1 0 2 0 .4.4 0 0 1-.2-.346zm.8 6.101A2.801 2.801 0 0 1 8 14.402a2.8 2.8 0 0 1-1.6-5.098V3.202A1.6 1.6 0 0 1 8 1.6a1.6 1.6 0 0 1 1.6 1.6z"})),D6=forwardRef(q6),b6=D6;var k6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8 7.1c1.36 0 2.4 1.24 2.4 2.61 0 .443-.148.887-.363 1.183a.4.4 0 0 1-.723-.235.38.38 0 0 0-.211-.356.25.25 0 0 0-.312.066c-.094.105-.123.228-.092.412.033.202.128.419.237.66.192.425.217.848.083 1.26-.13.398-.4.756-.741 1.087a.4.4 0 0 1-.671-.216c-.117-.644-.533-1.118-1.019-1.704-.46-.555-.988-1.22-.988-2.156C5.6 8.34 6.64 7.1 8 7.1m1.26-5c1.22 0 2.346.654 2.951 1.713l1.243 2.176c.466.815-.403 1.742-1.246 1.33a9.61 9.61 0 0 0-8.401-.002c-.828.402-1.737-.496-1.26-1.332L3.79 3.813A3.4 3.4 0 0 1 6.741 2.1zm-2.52.8a2.6 2.6 0 0 0-2.256 1.31L3.243 6.382a.14.14 0 0 0-.022.096q.007.042.045.085c.051.053.12.07.191.035a10.41 10.41 0 0 1 9.103.002c.135.066.275-.083.2-.214L11.517 4.21A2.6 2.6 0 0 0 9.259 2.9zM6.4 9.71c0 .618.334 1.08.803 1.646.311.375.688.805.943 1.334a1.3 1.3 0 0 0 .112-.238.9.9 0 0 0-.05-.681c-.101-.223-.246-.538-.3-.862-.055-.341-.017-.739.29-1.078a1.05 1.05 0 0 1 1.399-.163C9.577 8.676 8.828 7.901 8 7.9c-.84 0-1.6.798-1.6 1.81"})),O6=forwardRef(k6),T6=O6;var j6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M1.6 12.667V10a.4.4 0 0 1 .8 0v2.667a.93.93 0 0 0 .933.933h9.334a.93.93 0 0 0 .933-.933V10a.4.4 0 0 1 .8 0v2.667a1.734 1.734 0 0 1-1.733 1.733H3.333A1.734 1.734 0 0 1 1.6 12.667M7.6 10V2.966l-2.65 2.65a.4.4 0 0 1-.566-.565l3.333-3.334.063-.051a.4.4 0 0 1 .503.05l3.333 3.335a.4.4 0 1 1-.565.565L8.4 2.966V10a.4.4 0 0 1-.801 0"})),J6=forwardRef(j6),K6=J6;var W6=(o,e)=>a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",className:"org-icon",ref:e,...o},a.createElement("path",{fill:"currentColor",d:"M8.076 6.968A2.315 2.315 0 0 0 5.754 4.66a2.315 2.315 0 0 0-2.322 2.308c0 1.193.911 2.177 2.084 2.295l.238.012.237-.012a2.314 2.314 0 0 0 2.085-2.295m4.474 0a2.316 2.316 0 0 0-2.323-2.308c-.265 0-.52.043-.755.124a.4.4 0 0 1-.26-.757c.32-.109.66-.168 1.015-.168a3.116 3.116 0 0 1 3.123 3.109c0 1.1-.576 2.062-1.44 2.614a4.95 4.95 0 0 1 2.407 1.892.4.4 0 1 1-.663.448 4.16 4.16 0 0 0-3.417-1.848l-.01.001a.4.4 0 1 1 .002-.8h.01a2.314 2.314 0 0 0 2.31-2.307m-3.674 0c0 1.099-.575 2.06-1.438 2.613a4.95 4.95 0 0 1 2.406 1.893.4.4 0 1 1-.663.448c-1.664-2.464-5.292-2.464-6.955 0a.4.4 0 1 1-.663-.448 4.94 4.94 0 0 1 2.47-1.915 3.1 3.1 0 0 1-1.402-2.591c0-1.719 1.4-3.109 3.123-3.109a3.116 3.116 0 0 1 3.122 3.109"})),X6=forwardRef(W6),Y6=X6;
2
+ export{r0 as AccordianCaretCloseIcon,n0 as AccordianCaretOpenIcon,i0 as AdcsIcon,V0 as AddIcon,d0 as AddcustomIcon,I0 as AxisIcon,P0 as BatteryIcon,L0 as BusIcon,q0 as CatalogIcon,k0 as CheckIcon,j0 as ChevronDownIcon,W0 as ChevronLeftIcon,_0 as ChevronRightIcon,a1 as ChevronUpIcon,m1 as ComboIcon,c1 as CommsIcon,h1 as CrossIcon,w1 as CustomIcon,x1 as DashIcon,y1 as DashboardIcon,C1 as DocsIcon,B1 as DownloadIcon,b1 as EarthobservationIcon,T1 as EclipseIcon,K1 as EdgeIcon,Y1 as EditIcon,o4 as EpsIcon,r4 as EyeCloseIcon,n4 as EyeOpenIcon,i4 as FilterIcon,V4 as GpsIcon,d4 as GroundStationIcon,I4 as InfoIcon,P4 as LoadComponentsIcon,L4 as MassIcon,k4 as MissionDesignIcon,q4 as MissionIcon,j4 as NotificationsIcon,W4 as PayloadIcon,_4 as ProcessorIcon,a6 as RadioIcon,m6 as ReviewSatelliteIcon,c6 as RocketIcon,h6 as SatelliteIcon,w6 as SearchIcon,x6 as SettingsIcon,y6 as SizeIcon,C6 as SolarGenerationIcon,B6 as SunlitIcon,b6 as TempIcon,T6 as ThrusterIcon,K6 as UploadIcon,Y6 as UsersIcon};
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@org-design-system/icons",
3
+ "version": "0.1.0",
4
+ "description": "Icon components for the @org-design-system/design-system Design System",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "type": "module",
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.mjs",
11
+ "style": "./src/index.css",
12
+ "source": "./src/index.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.cjs",
18
+ "default": "./src/index.ts"
19
+ },
20
+ "./*": "./*"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "src"
25
+ ],
26
+ "devDependencies": {
27
+ "@svgr/cli": "^8.1.0",
28
+ "svgo": "^3.2.0",
29
+ "tsup": "^8.5.1",
30
+ "typescript": "^5.3.3",
31
+ "@types/react": "19.0.10",
32
+ "@types/react-dom": "19.0.4"
33
+ },
34
+ "dependencies": {
35
+ "tailwindcss": "^4.0.0",
36
+ "@org-design-system/tokens": "0.1.0"
37
+ },
38
+ "peerDependencies": {
39
+ "react": ">=18"
40
+ },
41
+ "scripts": {
42
+ "build": "node build.js && tsup && cp src/index.css dist/index.css || true",
43
+ "dev": "node build.js && tsup --watch"
44
+ }
45
+ }
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAccordianCaretCloseIcon = (
5
+ props: SVGProps<SVGSVGElement>,
6
+ ref: Ref<SVGSVGElement>
7
+ ) => (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ width="1em"
11
+ height="1em"
12
+ fill="none"
13
+ viewBox="0 0 16 16"
14
+ className="org-icon"
15
+ ref={ref}
16
+ {...props}
17
+ >
18
+ <path
19
+ fill="currentColor"
20
+ d="m9.63 8.424-2.662 2.662a.6.6 0 0 1-1.024-.424V5.338a.6.6 0 0 1 1.024-.425l2.663 2.663a.6.6 0 0 1 0 .848"
21
+ />
22
+ </svg>
23
+ );
24
+ const AccordianCaretCloseIcon = forwardRef(SvgAccordianCaretCloseIcon) as any;
25
+ export default AccordianCaretCloseIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAccordianCaretOpenIcon = (
5
+ props: SVGProps<SVGSVGElement>,
6
+ ref: Ref<SVGSVGElement>
7
+ ) => (
8
+ <svg
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ width="1em"
11
+ height="1em"
12
+ fill="none"
13
+ viewBox="0 0 16 16"
14
+ className="org-icon"
15
+ ref={ref}
16
+ {...props}
17
+ >
18
+ <path
19
+ fill="currentColor"
20
+ d="M7.575 9.631 4.913 6.97a.6.6 0 0 1 .424-1.024h5.325a.6.6 0 0 1 .424 1.024L8.424 9.63a.6.6 0 0 1-.849 0"
21
+ />
22
+ </svg>
23
+ );
24
+ const AccordianCaretOpenIcon = forwardRef(SvgAccordianCaretOpenIcon) as any;
25
+ export default AccordianCaretOpenIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAdcsIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="1em"
8
+ height="1em"
9
+ fill="none"
10
+ viewBox="0 0 16 16"
11
+ className="org-icon"
12
+ ref={ref}
13
+ {...props}
14
+ >
15
+ <path
16
+ fill="currentColor"
17
+ d="M8.452 4.074a.536.536 0 0 1 .78-.02l1.282 1.28.571-.57a.4.4 0 0 1 .565.566l-.57.57 1.282 1.282a.54.54 0 0 1-.017.778c-.528.479-1.153.718-1.834.694l-.538.538 1.053 1.053a.54.54 0 0 1 0 .767l-1.601 1.603a.543.543 0 0 1-.768 0L7.604 11.56l-.096.097a1.35 1.35 0 0 1-1.907 0l-.844-.844a1.35 1.35 0 0 1 0-1.907l.096-.097L3.8 7.757a.543.543 0 0 1 0-.766l1.602-1.603.085-.07c.181-.119.417-.119.598 0l.085.07 1.053 1.053.543-.544a2.73 2.73 0 0 1 .686-1.823m-.282 6.922.87.87 1.238-1.238-.87-.87zm-.664-3.707L5.702 9.093l-.38.38a.55.55 0 0 0 0 .775l.844.844a.55.55 0 0 0 .776 0L9.125 8.91l.445-.447a2.8 2.8 0 0 1-.998-.62 2.75 2.75 0 0 1-.633-.988zM2.77 5.61a.4.4 0 0 1 .566.566l-.772.77.772.772a.4.4 0 0 1 0 .566l-.772.77.772.772a.4.4 0 0 1-.566.565L1.717 9.336a.4.4 0 0 1 0-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566zm9.892 0a.4.4 0 0 1 .567 0l1.053 1.055a.4.4 0 0 1 0 .565l-.771.77.771.772a.4.4 0 0 1 0 .565L13.23 10.39a.401.401 0 0 1-.567-.565l.77-.772-.77-.77a.4.4 0 0 1 0-.566l.77-.771-.77-.77a.4.4 0 0 1 0-.566M4.548 7.374l.871.872 1.237-1.239-.87-.87zM8.879 4.83a1.951 1.951 0 0 0 .259 2.446c.319.32.817.523 1.26.571q.645.072 1.19-.308z"
18
+ />
19
+ </svg>
20
+ );
21
+ const AdcsIcon = forwardRef(SvgAdcsIcon) as any;
22
+ export default AdcsIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ import { Ref, forwardRef } from "react";
4
+ const SvgAddIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="1em"
8
+ height="1em"
9
+ fill="none"
10
+ viewBox="0 0 16 16"
11
+ className="org-icon"
12
+ ref={ref}
13
+ {...props}
14
+ >
15
+ <path
16
+ fill="currentColor"
17
+ d="M7.6 12.666V8.4H3.333a.4.4 0 1 1 0-.8H7.6V3.333a.4.4 0 0 1 .8 0V7.6h4.266a.4.4 0 0 1 0 .8H8.4v4.266a.4.4 0 1 1-.8 0"
18
+ />
19
+ </svg>
20
+ );
21
+ const AddIcon = forwardRef(SvgAddIcon) as any;
22
+ export default AddIcon;