@testgorilla/tgo-ui 7.10.0 → 7.11.1

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 (44) hide show
  1. package/components/badge/badge.component.d.ts +20 -2
  2. package/components/icon/icon-svg-content.d.ts +1 -1
  3. package/components/icon/icon.config.d.ts +1 -1
  4. package/components/inline-field/inline-field.component.d.ts +2 -2
  5. package/fesm2022/testgorilla-tgo-ui-components-badge.mjs +26 -4
  6. package/fesm2022/testgorilla-tgo-ui-components-badge.mjs.map +1 -1
  7. package/fesm2022/testgorilla-tgo-ui-components-button.mjs +1 -1
  8. package/fesm2022/testgorilla-tgo-ui-components-button.mjs.map +1 -1
  9. package/fesm2022/testgorilla-tgo-ui-components-field.mjs +1 -1
  10. package/fesm2022/testgorilla-tgo-ui-components-field.mjs.map +1 -1
  11. package/fesm2022/testgorilla-tgo-ui-components-icon.mjs +63 -3
  12. package/fesm2022/testgorilla-tgo-ui-components-icon.mjs.map +1 -1
  13. package/fesm2022/testgorilla-tgo-ui-components-navbar.mjs +1 -1
  14. package/fesm2022/testgorilla-tgo-ui-components-navbar.mjs.map +1 -1
  15. package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs +1 -1
  16. package/fesm2022/testgorilla-tgo-ui-components-prompt.mjs.map +1 -1
  17. package/fesm2022/testgorilla-tgo-ui-components-tag.mjs +1 -1
  18. package/fesm2022/testgorilla-tgo-ui-components-tag.mjs.map +1 -1
  19. package/fesm2022/testgorilla-tgo-ui-components-universal-skills.mjs +1 -1
  20. package/fesm2022/testgorilla-tgo-ui-components-universal-skills.mjs.map +1 -1
  21. package/mcp/catalog.json +1 -1
  22. package/package.json +13 -13
  23. package/projects/tgo-canopy-ui/assets/icons/rebrand/Ai-fluent-filled.svg +3 -0
  24. package/projects/tgo-canopy-ui/assets/icons/rebrand/Ai-fluent-in-line.svg +3 -0
  25. package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-filled-AI.svg +7 -0
  26. package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-in-line-AI.svg +7 -0
  27. package/projects/tgo-canopy-ui/assets/icons/rebrand/Chat-filled-AI.svg +12 -0
  28. package/projects/tgo-canopy-ui/assets/icons/rebrand/Chat-in-line-AI.svg +12 -0
  29. package/projects/tgo-canopy-ui/assets/icons/rebrand/Document-filled-AI.svg +12 -0
  30. package/projects/tgo-canopy-ui/assets/icons/rebrand/Document-in-line-AI.svg +14 -0
  31. package/projects/tgo-canopy-ui/assets/icons/rebrand/Edit-filled-AI.svg +7 -0
  32. package/projects/tgo-canopy-ui/assets/icons/rebrand/Edit-in-line-AI.svg +7 -0
  33. package/projects/tgo-canopy-ui/assets/icons/rebrand/Mic-filled-AI.svg +7 -0
  34. package/projects/tgo-canopy-ui/assets/icons/rebrand/Mic-in-line-AI.svg +7 -0
  35. package/projects/tgo-canopy-ui/assets/icons/rebrand/Search-filled-AI.svg +7 -0
  36. package/projects/tgo-canopy-ui/assets/icons/rebrand/Search-in-line-AI.svg +7 -0
  37. package/projects/tgo-canopy-ui/assets/icons/rebrand/Summary-filled-AI.svg +12 -0
  38. package/projects/tgo-canopy-ui/assets/icons/rebrand/Summary-filled.svg +3 -0
  39. package/projects/tgo-canopy-ui/assets/icons/rebrand/Summary-in-line-AI.svg +15 -0
  40. package/projects/tgo-canopy-ui/assets/icons/rebrand/Summary-in-line.svg +3 -0
  41. package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-filled-AI.svg +7 -0
  42. package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-in-line-AI.svg +7 -0
  43. package/projects/tgo-canopy-ui/assets/icons/rebrand/Video-filled-AI.svg +12 -0
  44. package/projects/tgo-canopy-ui/assets/icons/rebrand/Video-in-line-AI.svg +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-ui",
3
- "version": "7.10.0",
3
+ "version": "7.11.1",
4
4
  "license": "proprietary-license",
5
5
  "lint-staged": {
6
6
  "{projects,components}/**/*.ts": [
@@ -80,14 +80,14 @@
80
80
  "types": "./components/ai-audio-circle/index.d.ts",
81
81
  "default": "./fesm2022/testgorilla-tgo-ui-components-ai-audio-circle.mjs"
82
82
  },
83
- "./components/ai-caveat": {
84
- "types": "./components/ai-caveat/index.d.ts",
85
- "default": "./fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs"
86
- },
87
83
  "./components/ai-feedback": {
88
84
  "types": "./components/ai-feedback/index.d.ts",
89
85
  "default": "./fesm2022/testgorilla-tgo-ui-components-ai-feedback.mjs"
90
86
  },
87
+ "./components/ai-caveat": {
88
+ "types": "./components/ai-caveat/index.d.ts",
89
+ "default": "./fesm2022/testgorilla-tgo-ui-components-ai-caveat.mjs"
90
+ },
91
91
  "./components/alert-banner": {
92
92
  "types": "./components/alert-banner/index.d.ts",
93
93
  "default": "./fesm2022/testgorilla-tgo-ui-components-alert-banner.mjs"
@@ -112,14 +112,14 @@
112
112
  "types": "./components/badge/index.d.ts",
113
113
  "default": "./fesm2022/testgorilla-tgo-ui-components-badge.mjs"
114
114
  },
115
- "./components/button": {
116
- "types": "./components/button/index.d.ts",
117
- "default": "./fesm2022/testgorilla-tgo-ui-components-button.mjs"
118
- },
119
115
  "./components/breadcrumb": {
120
116
  "types": "./components/breadcrumb/index.d.ts",
121
117
  "default": "./fesm2022/testgorilla-tgo-ui-components-breadcrumb.mjs"
122
118
  },
119
+ "./components/button": {
120
+ "types": "./components/button/index.d.ts",
121
+ "default": "./fesm2022/testgorilla-tgo-ui-components-button.mjs"
122
+ },
123
123
  "./components/card": {
124
124
  "types": "./components/card/index.d.ts",
125
125
  "default": "./fesm2022/testgorilla-tgo-ui-components-card.mjs"
@@ -188,14 +188,14 @@
188
188
  "types": "./components/icon-label/index.d.ts",
189
189
  "default": "./fesm2022/testgorilla-tgo-ui-components-icon-label.mjs"
190
190
  },
191
- "./components/inline-field": {
192
- "types": "./components/inline-field/index.d.ts",
193
- "default": "./fesm2022/testgorilla-tgo-ui-components-inline-field.mjs"
194
- },
195
191
  "./components/logo": {
196
192
  "types": "./components/logo/index.d.ts",
197
193
  "default": "./fesm2022/testgorilla-tgo-ui-components-logo.mjs"
198
194
  },
195
+ "./components/inline-field": {
196
+ "types": "./components/inline-field/index.d.ts",
197
+ "default": "./fesm2022/testgorilla-tgo-ui-components-inline-field.mjs"
198
+ },
199
199
  "./components/media-card": {
200
200
  "types": "./components/media-card/index.d.ts",
201
201
  "default": "./fesm2022/testgorilla-tgo-ui-components-media-card.mjs"
@@ -2,4 +2,7 @@
2
2
  <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
3
3
  <path d="M3 14L2.37 15.375L1 16L2.37 16.63L3 18L3.625 16.63L5 16L3.625 15.375" fill="currentColor"/>
4
4
  <path d="M12 2C12.7918 2 13.5402 2.09912 14.2461 2.29395C14.086 2.83471 14 3.40731 14 4C14 4.10845 14.0031 4.21621 14.0088 4.32324C13.3852 4.10807 12.7158 4 12 4C10.3333 4 8.91667 4.58333 7.75 5.75C6.58333 6.91667 6 8.33333 6 10C6 11.6667 6.58333 13.0833 7.75 14.25C8.91667 15.4167 10.3333 16 12 16C13.6667 16 15.0833 15.4167 16.25 14.25C17.4167 13.0833 18 11.6667 18 10C18 9.88319 17.996 9.76767 17.9902 9.65332C18.6187 9.87676 19.2949 10 20 10C20 11.0167 19.8246 11.975 19.4746 12.875C19.1246 13.7749 18.6333 14.5754 18 15.2754V23L12 21L6 23V15.2754C5.3667 14.5754 4.87539 13.7749 4.52539 12.875C4.17539 11.975 4 11.0167 4 10C4 7.76667 4.7752 5.8752 6.3252 4.3252C7.8752 2.7752 9.76667 2 12 2ZM12.9004 9H15.75L13.4248 10.8496L14.2998 13.7002L12 11.9248L9.6748 13.7002L10.5498 10.8496L8.25 9H11.0996L12 6.2002L12.9004 9Z" fill="currentColor"/>
5
+ <defs>
6
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
7
+ </defs>
5
8
  </svg>
@@ -2,4 +2,7 @@
2
2
  <path d="M12 2C12.7918 2 13.5402 2.09912 14.2461 2.29395C14.086 2.83471 14 3.40731 14 4C14 4.10845 14.0031 4.21621 14.0088 4.32324C13.3852 4.10807 12.7158 4 12 4C10.3333 4 8.91667 4.58333 7.75 5.75C6.58333 6.91667 6 8.33333 6 10C6 11.6667 6.58333 13.0833 7.75 14.25C8.91667 15.4167 10.3333 16 12 16C13.6667 16 15.0833 15.4167 16.25 14.25C17.4167 13.0833 18 11.6667 18 10C18 9.88319 17.996 9.76767 17.9902 9.65332C18.6187 9.87676 19.2949 10 20 10C20 11.0167 19.8246 11.975 19.4746 12.875C19.1246 13.7749 18.6333 14.5754 18 15.2754V23L12 21L6 23V15.2754C5.3667 14.5754 4.87539 13.7749 4.52539 12.875C4.17539 11.975 4 11.0167 4 10C4 7.76667 4.7752 5.8752 6.3252 4.3252C7.8752 2.7752 9.76667 2 12 2ZM16 16.9248C15.4167 17.2581 14.7873 17.5212 14.1123 17.7129C13.4374 17.9045 12.7332 18 12 18C11.2668 18 10.5626 17.9045 9.8877 17.7129C9.2127 17.5212 8.58333 17.2581 8 16.9248V20.0254L12 19L16 20.0254V16.9248ZM12.9004 9H15.75L13.4248 10.8496L14.2998 13.7002L12 11.9248L9.6748 13.7002L10.5498 10.8496L8.25 9H11.0996L12 6.2002L12.9004 9Z" fill="currentColor"/>
3
3
  <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
4
  <path d="M3 14L2.37 15.375L1 16L2.37 16.63L3 18L3.625 16.63L5 16L3.625 15.375" fill="currentColor"/>
5
+ <defs>
6
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
7
+ </defs>
5
8
  </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 20V13H20V20H16ZM10 20V4H14V20H10ZM4 20V9H8V20H4Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 20V13H20V20H16ZM10 20V4H14V20H10ZM4 20V9H8V20H4Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87851)">
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <path d="M14.3428 2C14.1216 2.62568 14 3.29857 14 4C14 7.31371 16.6863 10 20 10C20.7014 10 21.3743 9.87843 22 9.65723V18H6L2 22V2H14.3428Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87851">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87852)">
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <path d="M14.3428 2C14.1216 2.62568 14 3.29857 14 4H4V17.125L5.15039 16H20V10C20.7014 10 21.3743 9.87843 22 9.65723V18H6L2 22V2H14.3428Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87852">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87853)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20 8V22H4V10C7.31371 10 10 7.31371 10 4C10 3.29857 9.87843 2.62568 9.65723 2H14L20 8ZM8 18H16V16H8V18ZM8 14H16V12H8V14ZM13 9H18L13 4V9Z" fill="currentColor"/>
4
+ <path d="M4 0L2.74 2.75L0 4L2.74 5.26L4 8L5.25 5.26L8 4L5.25 2.75" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87853">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87854)">
3
+ <path d="M20 8V22H4V10C4.70143 10 5.37432 9.87843 6 9.65723V20H18V9H13V4H10C10 3.29857 9.87843 2.62568 9.65723 2H14L20 8Z" fill="currentColor"/>
4
+ <path d="M16 16V18H8V16H16Z" fill="currentColor"/>
5
+ <path d="M16 12V14H8V12H16Z" fill="currentColor"/>
6
+ <path d="M4 0L2.74 2.75L0 4L2.74 5.26L4 8L5.25 5.26L8 4L5.25 2.75" fill="currentColor"/>
7
+ </g>
8
+ <defs>
9
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
10
+ <clipPath id="clip0_21413_87854">
11
+ <rect width="24" height="24" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 20.9998V16.7498L17.625 2.1748L21.8 6.4498L7.25 20.9998H3ZM17.6 7.7998L19 6.3998L17.6 4.9998L16.2 6.3998L17.6 7.7998Z" fill="currentColor"/>
3
+ <path d="M5 1L3.74 3.75L1 5L3.74 6.26L5 9L6.25 6.26L9 5L6.25 3.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 18.9998H6.425L16.2 9.2248L14.775 7.7998L5 17.5748V18.9998ZM3 20.9998V16.7498L17.625 2.1748L21.8 6.4498L7.25 20.9998H3ZM15.475 8.5248L14.775 7.7998L16.2 9.2248L15.475 8.5248Z" fill="currentColor"/>
3
+ <path d="M5 1L3.74 3.75L1 5L3.74 6.26L5 9L6.25 6.26L9 5L6.25 3.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 14C11.1667 14 10.4583 13.7083 9.875 13.125C9.29167 12.5417 9 11.8333 9 11V5C9 4.16667 9.29167 3.45833 9.875 2.875C10.4583 2.29167 11.1667 2 12 2C12.8333 2 13.5417 2.29167 14.125 2.875C14.7083 3.45833 15 4.16667 15 5V11C15 11.8333 14.7083 12.5417 14.125 13.125C13.5417 13.7083 12.8333 14 12 14ZM11 21V17.925C9.26667 17.6917 7.83333 16.9167 6.7 15.6C5.56667 14.2833 5 12.75 5 11H7C7 12.3833 7.4875 13.5625 8.4625 14.5375C9.4375 15.5125 10.6167 16 12 16C13.3833 16 14.5625 15.5125 15.5375 14.5375C16.5125 13.5625 17 12.3833 17 11H19C19 12.75 18.4333 14.2833 17.3 15.6C16.1667 16.9167 14.7333 17.6917 13 17.925V21H11Z" fill="currentColor"/>
3
+ <path d="M4 0L2.74 2.75L0 4L2.74 5.26L4 8L5.25 5.26L8 4L5.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 14C11.1667 14 10.4583 13.7083 9.875 13.125C9.29167 12.5417 9 11.8333 9 11V5C9 4.16667 9.29167 3.45833 9.875 2.875C10.4583 2.29167 11.1667 2 12 2C12.8333 2 13.5417 2.29167 14.125 2.875C14.7083 3.45833 15 4.16667 15 5V11C15 11.8333 14.7083 12.5417 14.125 13.125C13.5417 13.7083 12.8333 14 12 14ZM11 21V17.925C9.26667 17.6917 7.83333 16.9167 6.7 15.6C5.56667 14.2833 5 12.75 5 11H7C7 12.3833 7.4875 13.5625 8.4625 14.5375C9.4375 15.5125 10.6167 16 12 16C13.3833 16 14.5625 15.5125 15.5375 14.5375C16.5125 13.5625 17 12.3833 17 11H19C19 12.75 18.4333 14.2833 17.3 15.6C16.1667 16.9167 14.7333 17.6917 13 17.925V21H11ZM12 12C12.2833 12 12.5208 11.9042 12.7125 11.7125C12.9042 11.5208 13 11.2833 13 11V5C13 4.71667 12.9042 4.47917 12.7125 4.2875C12.5208 4.09583 12.2833 4 12 4C11.7167 4 11.4792 4.09583 11.2875 4.2875C11.0958 4.47917 11 4.71667 11 5V11C11 11.2833 11.0958 11.5208 11.2875 11.7125C11.4792 11.9042 11.7167 12 12 12Z" fill="currentColor"/>
3
+ <path d="M4 0L2.74 2.75L0 4L2.74 5.26L4 8L5.25 5.26L8 4L5.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.6 21L13.3 14.7C12.8 15.1 12.225 15.4167 11.575 15.65C10.925 15.8833 10.2333 16 9.5 16C7.68333 16 6.14583 15.3708 4.8875 14.1125C3.62917 12.8542 3 11.3167 3 9.5C3 7.68333 3.62917 6.14583 4.8875 4.8875C6.14583 3.62917 7.68333 3 9.5 3C11.3167 3 12.8542 3.62917 14.1125 4.8875C15.3708 6.14583 16 7.68333 16 9.5C16 10.2333 15.8833 10.925 15.65 11.575C15.4167 12.225 15.1 12.8 14.7 13.3L21 19.6L19.6 21ZM9.5 14C10.75 14 11.8125 13.5625 12.6875 12.6875C13.5625 11.8125 14 10.75 14 9.5C14 8.25 13.5625 7.1875 12.6875 6.3125C11.8125 5.4375 10.75 5 9.5 5C8.25 5 7.1875 5.4375 6.3125 6.3125C5.4375 7.1875 5 8.25 5 9.5C5 10.75 5.4375 11.8125 6.3125 12.6875C7.1875 13.5625 8.25 14 9.5 14Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.6 21L13.3 14.7C12.8 15.1 12.225 15.4167 11.575 15.65C10.925 15.8833 10.2333 16 9.5 16C7.68333 16 6.14583 15.3708 4.8875 14.1125C3.62917 12.8542 3 11.3167 3 9.5C3 7.68333 3.62917 6.14583 4.8875 4.8875C6.14583 3.62917 7.68333 3 9.5 3C11.3167 3 12.8542 3.62917 14.1125 4.8875C15.3708 6.14583 16 7.68333 16 9.5C16 10.2333 15.8833 10.925 15.65 11.575C15.4167 12.225 15.1 12.8 14.7 13.3L21 19.6L19.6 21ZM9.5 14C10.75 14 11.8125 13.5625 12.6875 12.6875C13.5625 11.8125 14 10.75 14 9.5C14 8.25 13.5625 7.1875 12.6875 6.3125C11.8125 5.4375 10.75 5 9.5 5C8.25 5 7.1875 5.4375 6.3125 6.3125C5.4375 7.1875 5 8.25 5 9.5C5 10.75 5.4375 11.8125 6.3125 12.6875C7.1875 13.5625 8.25 14 9.5 14Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87977)">
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.085 3C14.0304 3.32531 14 3.65917 14 4C14 7.31371 16.6863 10 20 10C20.3408 10 20.6747 9.96963 21 9.91504V21H3V3H14.085ZM7 17H17V15H7V17ZM7 13H17V11H7V13ZM7 9H14V7H7V9Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87977">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 21V3H15L21 9V21H3ZM7 17H17V15H7V17ZM7 13H17V11H7V13ZM7 9H14V7H7V9Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87978)">
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <path d="M14.085 3C14.0304 3.32531 14 3.65917 14 4C14 4.34083 14.0304 4.67469 14.085 5H5V19H19V9.91504C19.3253 9.96963 19.6592 10 20 10C20.3408 10 20.6747 9.96963 21 9.91504V21H3V3H14.085Z" fill="currentColor"/>
5
+ <path d="M17 15V17H7V15H17Z" fill="currentColor"/>
6
+ <path d="M17 11V13H7V11H17Z" fill="currentColor"/>
7
+ <path d="M14 7V9H7V7H14Z" fill="currentColor"/>
8
+ </g>
9
+ <defs>
10
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
11
+ <clipPath id="clip0_21413_87978">
12
+ <rect width="24" height="24" fill="white"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 19H19V9.825L14.175 5H5V19ZM3 21V3H15L21 9V21H3ZM7 17H17V15H7V17ZM7 13H17V11H7V13ZM7 9H14V7H7V9Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.825 22.2786L2 11.4536V1.45361H12L22.8 12.3036L12.825 22.2786ZM6.5 7.45361C6.91667 7.45361 7.27083 7.30778 7.5625 7.01611C7.85417 6.72445 8 6.37028 8 5.95361C8 5.53695 7.85417 5.18278 7.5625 4.89111C7.27083 4.59945 6.91667 4.45361 6.5 4.45361C6.08333 4.45361 5.72917 4.59945 5.4375 4.89111C5.14583 5.18278 5 5.53695 5 5.95361C5 6.37028 5.14583 6.72445 5.4375 7.01611C5.72917 7.30778 6.08333 7.45361 6.5 7.45361Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.825 22.2786L2 11.4536V1.45361H12L22.8 12.3036L12.825 22.2786ZM12.825 19.4536L19.975 12.3036L11.15 3.45361H4V10.6036L12.825 19.4536ZM6.5 7.45361C6.91667 7.45361 7.27083 7.30778 7.5625 7.01611C7.85417 6.72445 8 6.37028 8 5.95361C8 5.53695 7.85417 5.18278 7.5625 4.89111C7.27083 4.59945 6.91667 4.45361 6.5 4.45361C6.08333 4.45361 5.72917 4.59945 5.4375 4.89111C5.14583 5.18278 5 5.53695 5 5.95361C5 6.37028 5.14583 6.72445 5.4375 7.01611C5.72917 7.30778 6.08333 7.45361 6.5 7.45361Z" fill="currentColor"/>
3
+ <path d="M20 0L18.74 2.75L16 4L18.74 5.26L20 8L21.25 5.26L24 4L21.25 2.75" fill="currentColor"/>
4
+ <defs>
5
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
6
+ </defs>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87855)">
3
+ <path d="M18 10.5L22 6.5V17.5L18 13.5V20H2V10.1104C2.62571 10.3316 3.29853 10.4531 4 10.4531C7.31371 10.4531 10 7.76683 10 4.45312C9.99999 4.30065 9.99263 4.14962 9.98145 4H18V10.5Z" fill="currentColor"/>
4
+ <path d="M4 0.453613L2.74 3.20361L0 4.45361L2.74 5.71361L4 8.45361L5.25 5.71361L8 4.45361L5.25 3.20361" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87855">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_21413_87856)">
3
+ <path d="M18 10.5L22 6.5V17.5L18 13.5V20H2V10.1104C2.62571 10.3316 3.29853 10.4531 4 10.4531V18H16V6H9.79785C9.92914 5.50653 10 4.98793 10 4.45312C9.99999 4.30065 9.99263 4.14962 9.98145 4H18V10.5Z" fill="currentColor"/>
4
+ <path d="M4 0.453613L2.74 3.20361L0 4.45361L2.74 5.71361L4 8.45361L5.25 5.71361L8 4.45361L5.25 3.20361" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="reusableAiInlineGradient" x1="2.5279" y1="1" x2="21.9592" y2="1.70564" gradientUnits="userSpaceOnUse"><stop offset="0.3" stop-color="#D410AA"/><stop offset="1" stop-color="#0165FC"/></linearGradient>
8
+ <clipPath id="clip0_21413_87856">
9
+ <rect width="24" height="24" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>