@tfdesign/b-end 1.0.4
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.
- package/AI_READ_FIRST.md +131 -0
- package/LICENSE +21 -0
- package/README.md +353 -0
- package/package.json +67 -0
- package/scripts/check-tfds-contract.mjs +334 -0
- package/scripts/check-tfds-integration.mjs +263 -0
- package/scripts/postinstall-cursor-skill.mjs +382 -0
- package/scripts/setup.mjs +520 -0
- package/skills/tfds/CHECKLIST.md +205 -0
- package/skills/tfds/COMMON_FAILURES.md +238 -0
- package/skills/tfds/DESIGN_PRINCIPLES.md +477 -0
- package/skills/tfds/GLOBAL_DESIGN_RULES.md +636 -0
- package/skills/tfds/LAYOUT_RECIPES.md +140 -0
- package/skills/tfds/LAYOUT_RULES.md +1355 -0
- package/skills/tfds/PAGE_ARCHETYPES.md +201 -0
- package/skills/tfds/SKILL.md +188 -0
- package/skills/tfds/components.index.json +7305 -0
- package/skills/tfds/components.summary.json +1809 -0
- package/src/_b_end_runtime/components/AiSuggestionShared.jsx +166 -0
- package/src/_b_end_runtime/components/Avatar.jsx +325 -0
- package/src/_b_end_runtime/components/Avatar.tokens.js +76 -0
- package/src/_b_end_runtime/components/AvatarGridPreview.jsx +56 -0
- package/src/_b_end_runtime/components/AvatarGroup.jsx +80 -0
- package/src/_b_end_runtime/components/AvatarGroup.tokens.js +28 -0
- package/src/_b_end_runtime/components/Button.jsx +144 -0
- package/src/_b_end_runtime/components/Button.tokens.js +90 -0
- package/src/_b_end_runtime/components/Card.jsx +460 -0
- package/src/_b_end_runtime/components/Card.tokens.js +124 -0
- package/src/_b_end_runtime/components/CardPreview.jsx +51 -0
- package/src/_b_end_runtime/components/ChatBubble.jsx +384 -0
- package/src/_b_end_runtime/components/ChatBubble.tokens.js +60 -0
- package/src/_b_end_runtime/components/ChatBubblePreview.jsx +129 -0
- package/src/_b_end_runtime/components/ChatInput.jsx +1399 -0
- package/src/_b_end_runtime/components/ChatInput.tokens.js +75 -0
- package/src/_b_end_runtime/components/ChatMessage.jsx +2215 -0
- package/src/_b_end_runtime/components/ChatMessage.tokens.js +257 -0
- package/src/_b_end_runtime/components/ChatMessagePreview.jsx +388 -0
- package/src/_b_end_runtime/components/Checkbox.jsx +317 -0
- package/src/_b_end_runtime/components/Checkbox.tokens.js +59 -0
- package/src/_b_end_runtime/components/ConversationList.jsx +1264 -0
- package/src/_b_end_runtime/components/ConversationList.tokens.js +135 -0
- package/src/_b_end_runtime/components/ConversationListPreview.jsx +108 -0
- package/src/_b_end_runtime/components/CustomerServiceWorkspaceFrame.jsx +324 -0
- package/src/_b_end_runtime/components/CustomerServiceWorkspaceFrame.tokens.js +69 -0
- package/src/_b_end_runtime/components/DatePicker.jsx +739 -0
- package/src/_b_end_runtime/components/DatePicker.tokens.js +99 -0
- package/src/_b_end_runtime/components/Empty.jsx +141 -0
- package/src/_b_end_runtime/components/Empty.tokens.js +40 -0
- package/src/_b_end_runtime/components/Form.jsx +609 -0
- package/src/_b_end_runtime/components/Form.tokens.js +77 -0
- package/src/_b_end_runtime/components/FormFieldStack.jsx +123 -0
- package/src/_b_end_runtime/components/FormFieldStack.tokens.js +12 -0
- package/src/_b_end_runtime/components/FormTitle.jsx +119 -0
- package/src/_b_end_runtime/components/FormTitle.tokens.js +87 -0
- package/src/_b_end_runtime/components/FullScreenPage.jsx +97 -0
- package/src/_b_end_runtime/components/FullScreenPage.tokens.js +19 -0
- package/src/_b_end_runtime/components/Icon.jsx +172 -0
- package/src/_b_end_runtime/components/Icon.tokens.js +26 -0
- package/src/_b_end_runtime/components/IconGridPreview.jsx +277 -0
- package/src/_b_end_runtime/components/InfoDisplayPanel.jsx +620 -0
- package/src/_b_end_runtime/components/InfoDisplayPanel.tokens.js +71 -0
- package/src/_b_end_runtime/components/InfoDisplayPanelPreview.jsx +133 -0
- package/src/_b_end_runtime/components/Input.jsx +258 -0
- package/src/_b_end_runtime/components/Input.tokens.js +68 -0
- package/src/_b_end_runtime/components/InputNumber.jsx +242 -0
- package/src/_b_end_runtime/components/InputNumber.tokens.js +55 -0
- package/src/_b_end_runtime/components/Modal.jsx +155 -0
- package/src/_b_end_runtime/components/Modal.tokens.js +73 -0
- package/src/_b_end_runtime/components/NavBar.jsx +842 -0
- package/src/_b_end_runtime/components/NavBar.tokens.js +97 -0
- package/src/_b_end_runtime/components/NavBarPreview.jsx +11 -0
- package/src/_b_end_runtime/components/Radio.jsx +227 -0
- package/src/_b_end_runtime/components/Radio.tokens.js +59 -0
- package/src/_b_end_runtime/components/Select.jsx +766 -0
- package/src/_b_end_runtime/components/Select.tokens.js +99 -0
- package/src/_b_end_runtime/components/Sheet.jsx +132 -0
- package/src/_b_end_runtime/components/Sheet.tokens.js +61 -0
- package/src/_b_end_runtime/components/Slider.jsx +346 -0
- package/src/_b_end_runtime/components/Slider.tokens.js +47 -0
- package/src/_b_end_runtime/components/Switch.jsx +124 -0
- package/src/_b_end_runtime/components/Switch.tokens.js +38 -0
- package/src/_b_end_runtime/components/Table.jsx +1338 -0
- package/src/_b_end_runtime/components/Table.tokens.js +147 -0
- package/src/_b_end_runtime/components/TablePreview.jsx +599 -0
- package/src/_b_end_runtime/components/Tabs.jsx +149 -0
- package/src/_b_end_runtime/components/Tabs.tokens.js +102 -0
- package/src/_b_end_runtime/components/Tag.jsx +199 -0
- package/src/_b_end_runtime/components/Tag.tokens.js +171 -0
- package/src/_b_end_runtime/components/TagBar.jsx +1134 -0
- package/src/_b_end_runtime/components/TagBar.tokens.js +75 -0
- package/src/_b_end_runtime/components/TagGridPreview.jsx +23 -0
- package/src/_b_end_runtime/components/TagInput.jsx +382 -0
- package/src/_b_end_runtime/components/TagInput.tokens.js +52 -0
- package/src/_b_end_runtime/components/TextArea.jsx +363 -0
- package/src/_b_end_runtime/components/TextArea.tokens.js +65 -0
- package/src/_b_end_runtime/components/TimePicker.jsx +444 -0
- package/src/_b_end_runtime/components/TimePicker.tokens.js +77 -0
- package/src/_b_end_runtime/components/Toast.jsx +120 -0
- package/src/_b_end_runtime/components/Toast.tokens.js +146 -0
- package/src/_b_end_runtime/components/Tooltip.jsx +282 -0
- package/src/_b_end_runtime/components/Tooltip.tokens.js +48 -0
- package/src/_b_end_runtime/components/TooltipPreview.jsx +50 -0
- package/src/_b_end_runtime/components/Upload.jsx +455 -0
- package/src/_b_end_runtime/components/Upload.tokens.js +47 -0
- package/src/_b_end_runtime/components/avatar-assets/avatar-default.png +0 -0
- package/src/_b_end_runtime/components/avatar-group-assets/avatar-group-1.png +0 -0
- package/src/_b_end_runtime/components/avatar-group-assets/avatar-group-2.png +0 -0
- package/src/_b_end_runtime/components/avatar-group-assets/avatar-group-3.png +0 -0
- package/src/_b_end_runtime/components/avatar-group-assets/avatar-group-4.png +0 -0
- package/src/_b_end_runtime/components/avatar-group-assets/avatar-group-5.png +0 -0
- package/src/_b_end_runtime/components/empty-assets/administrator-1.svg +40 -0
- package/src/_b_end_runtime/components/empty-assets/administrator-2.svg +33 -0
- package/src/_b_end_runtime/components/empty-assets/construction.svg +33 -0
- package/src/_b_end_runtime/components/empty-assets/failure.svg +49 -0
- package/src/_b_end_runtime/components/empty-assets/idle.svg +34 -0
- package/src/_b_end_runtime/components/empty-assets/no-access.svg +36 -0
- package/src/_b_end_runtime/components/empty-assets/no-content.svg +77 -0
- package/src/_b_end_runtime/components/empty-assets/no-result.svg +61 -0
- package/src/_b_end_runtime/components/empty-assets/not-found.svg +46 -0
- package/src/_b_end_runtime/components/empty-assets/success.svg +38 -0
- package/src/_b_end_runtime/components/file-type-assets/batch-report.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/catcat.svg +21 -0
- package/src/_b_end_runtime/components/file-type-assets/code.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/conversation.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/document.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/feishu-card.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/feishu-sheet.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/feishu.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/image.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/index.js +105 -0
- package/src/_b_end_runtime/components/file-type-assets/knowledge.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/pdf.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/pe.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/strategy.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/table.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/webpage.png +0 -0
- package/src/_b_end_runtime/components/file-type-assets/xmind.png +0 -0
- package/src/_b_end_runtime/components/icons/icon-data.js +12496 -0
- package/src/_b_end_runtime/components/nav-bar-assets/bytehi-logo-mark.svg +21 -0
- package/src/_b_end_runtime/components/table-assets/avatar.png +0 -0
- package/src/_b_end_runtime/components/table-assets/button.png +0 -0
- package/src/_b_end_runtime/components/table-assets/icon-chevron-down.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/avatar.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/button.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/checkbox.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/icon-chevron-right.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/icon.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/semi-icons-handle.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/semi-icons-tree-triangle-right.png +0 -0
- package/src/_b_end_runtime/components/table-cell-assets/switch.png +0 -0
- package/src/_b_end_runtime/components/tagShared.js +3 -0
- package/src/_b_end_runtime/components/team-avatar-assets/chengcheng-murphy.png +0 -0
- package/src/_b_end_runtime/components/team-avatar-assets/duan-ran.png +0 -0
- package/src/_b_end_runtime/components/team-avatar-assets/guo-zhezhi.png +0 -0
- package/src/_b_end_runtime/components/team-avatar-assets/li-siru.png +0 -0
- package/src/_b_end_runtime/components/team-avatar-assets/liu-delin.png +0 -0
- package/src/_b_end_runtime/components.js +3499 -0
- package/src/_b_end_runtime/index.js +9 -0
- package/src/_b_end_runtime/page-patterns/BasePageFramePattern.jsx +395 -0
- package/src/_b_end_runtime/page-patterns/ChatConversationPattern.jsx +989 -0
- package/src/_b_end_runtime/page-patterns/ChatHomePagePattern.jsx +281 -0
- package/src/_b_end_runtime/page-patterns/CopilotPagePattern.jsx +380 -0
- package/src/_b_end_runtime/page-patterns/CustomerServiceWorkspaceFramePattern.jsx +392 -0
- package/src/_b_end_runtime/page-patterns/IMConversationPattern.jsx +590 -0
- package/src/_b_end_runtime/page-patterns/McpManagementPage.jsx +237 -0
- package/src/_b_end_runtime/page-patterns/StrategyListPage.jsx +189 -0
- package/src/_b_end_runtime/page-patterns/TabTopBarListPage.jsx +594 -0
- package/src/_b_end_runtime/page-patterns/VariableManagementPage.jsx +87 -0
- package/src/_b_end_runtime/page-patterns/pageListShared.jsx +177 -0
- package/src/_b_end_runtime/patterns.js +428 -0
- package/src/_b_end_runtime/preview-registry.jsx +4719 -0
- package/src/_b_end_runtime/teamMembers.js +56 -0
- package/src/_b_end_runtime/tokens.js +500 -0
- package/src/index.d.ts +1073 -0
- package/src/index.js +52 -0
- package/theme.css +350 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3709)">
|
|
3
|
+
<path d="M80.8326 155.647L86.9554 145.695C87.4054 144.963 88.5075 145.102 88.7621 145.923L92.1597 156.87C92.3726 157.556 91.8147 158.236 91.1006 158.161L81.5802 157.165C80.848 157.088 80.4468 156.274 80.8326 155.647Z" fill="#0AD5AB"/>
|
|
4
|
+
<path d="M163.255 67.6741L169.597 62.1647C170.185 61.6535 171.106 61.9821 171.238 62.7502L172.702 71.2648C172.833 72.0296 172.081 72.6462 171.357 72.3674L163.552 69.3622C162.848 69.0913 162.686 68.1686 163.255 67.6741Z" fill="#0AD5AB"/>
|
|
5
|
+
<path d="M70.5 57.8076L78.5 117L118 113.5L120.12 118.094C120.599 119.132 120.113 120.358 119.054 120.787L78.5 137.181L73.5 134L70.5 131.843L41.428 72.3975C40.9239 71.3667 41.3886 70.124 42.4454 69.6769L70.5 57.8076Z" fill="url(#paint0_linear_261_3709)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M132.964 35.2959H139.849C141.019 35.2959 141.967 36.2443 141.967 37.4142V110.497C141.967 111.667 141.019 112.615 139.849 112.615H81.5276C80.3841 112.615 79.447 111.708 79.4103 110.565L76.8982 32.1862C76.8599 30.9903 77.8189 30 79.0155 30H137.73" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
<path d="M75.9387 117.539L62.3934 43.7924C62.1779 42.6192 62.9733 41.4994 64.1521 41.3165L76.2988 39.4316L80.0059 112.615H132.965L78.2777 119.259C77.1659 119.394 76.141 118.64 75.9387 117.539Z" fill="black"/>
|
|
8
|
+
<path d="M79.7708 157.319L36.1929 122.884C36.1387 122.841 36.0894 122.793 36.0481 122.738C35.6751 122.236 33.8523 119.482 36.1113 116.32C38.3681 113.161 42.2534 114.075 42.9891 114.283C43.0714 114.306 43.1476 114.343 43.2192 114.39L88.7942 144.113C88.9985 144.246 89.1471 144.449 89.212 144.684L92.7231 157.412C92.91 158.09 92.3582 158.744 91.659 158.673L80.2907 157.529C80.1008 157.51 79.9205 157.437 79.7708 157.319Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
9
|
+
<path d="M87.6094 145.319L81.5 155" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
10
|
+
<path d="M40.5003 93.4999C34.5075 97.7243 24.9215 105.676 18 116M51.5003 148C37.3336 153.667 9.1003 160 9.5003 140C9.54389 137.82 9.82539 135.649 10.3056 133.5M149 84.9999C161.833 83.4999 188.3 83.6999 191.5 96.4999C195.5 112.5 171.5 140.5 135 152M149 65.4998C152.355 64.8174 156.902 64.3096 161.5 64.4928M150.5 124.5C168 115 182.5 94.4999 180.5 76.9998C180.144 73.8817 178.371 70.8232 176.5 69" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M17.4224 53.3207C20.1572 51.5952 21.278 48.3164 21.883 45.6886C21.981 45.2631 22.6795 45.2426 22.8314 45.6521C24.1313 49.157 26.6622 51.2445 28.9432 52.0992C29.2518 52.2149 29.3408 52.6398 29.1014 52.8664C27.272 54.5976 25.6046 57.4912 24.8576 61.1037C24.7759 61.499 24.1925 61.5827 24.0061 61.2247C22.5582 58.4435 20.3766 55.6627 17.4471 54.1354C17.1398 53.9752 17.1293 53.5056 17.4224 53.3207Z" fill="black"/>
|
|
12
|
+
<path d="M157.135 157.576C159.985 156.826 161.895 154.329 163.184 152.204C163.411 151.831 164.088 152.028 164.111 152.464C164.287 155.865 165.892 158.393 167.635 159.802C167.892 160.009 167.845 160.442 167.548 160.585C165.453 161.595 163.178 163.649 161.486 166.581C161.285 166.931 160.701 166.83 160.633 166.432C160.144 163.584 159.02 160.543 156.906 158.364C156.664 158.116 156.8 157.664 157.135 157.576Z" fill="black"/>
|
|
13
|
+
<circle cx="13.5" cy="123.5" r="4.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
14
|
+
<line x1="88.9492" y1="75.6035" x2="122.961" y2="75.6035" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
15
|
+
<line x1="88.9492" y1="85.1357" x2="122.961" y2="85.1357" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
16
|
+
<line x1="88.9492" y1="94.6689" x2="122.961" y2="94.6689" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<rect x="97.4492" y="49.8545" width="13.9205" height="13.9205" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<rect x="87.0117" y="39.4141" width="16.2406" height="16.2406" fill="#0AD5AB"/>
|
|
19
|
+
<path d="M97.4492 56.2347V49.8545H103.249" stroke="white" stroke-width="2"/>
|
|
20
|
+
</g>
|
|
21
|
+
<defs>
|
|
22
|
+
<linearGradient id="paint0_linear_261_3709" x1="94.7558" y1="38.0406" x2="57.3653" y2="134.172" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#FFD38F"/>
|
|
24
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
25
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
26
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
27
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<clipPath id="clip0_261_3709">
|
|
30
|
+
<rect width="200" height="200" fill="white"/>
|
|
31
|
+
</clipPath>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3681)">
|
|
3
|
+
<rect x="174.246" y="74.4658" width="7.33452" height="7.33452" rx="1" transform="rotate(57.6921 174.246 74.4658)" fill="#0AD5AB"/>
|
|
4
|
+
<path d="M51.0851 63.5C50.2851 57.9 50.7518 55.1667 51.0851 54.5C43.4854 63.3 43.2517 72.8333 44.0848 76.5C46.4182 90.6667 51.385 120.1 52.5848 124.5C53.7845 128.9 56.418 131 57.5848 131.5C59.0848 128.833 62.4848 122.8 64.0848 120C59.6848 118.8 57.9181 114.167 57.5848 112C55.7516 98.1667 51.8851 69.1 51.0851 63.5Z" fill="url(#paint0_linear_261_3681)"/>
|
|
5
|
+
<path d="M114.584 39.5L58.9026 47.5758C53.4675 48.364 49.6851 53.3882 50.4305 58.8294L57.6751 111.715C58.4446 117.332 63.7247 121.186 69.3089 120.208L146.607 106.661C151.899 105.733 155.513 100.79 154.79 95.466L148.891 51.9998C148.891 51.9998 148.584 49 147.084 47" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M154.584 99L153.626 105.706C152.707 112.142 147.746 117.252 141.341 118.364L63.9039 131.797C58.4752 132.738 53.3075 129.111 52.3476 123.686L44.1499 77.3511C43.1377 71.6296 44.1499 65.7343 47.0126 60.6782L50.7937 54" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
<path d="M140.629 58.0004L144.898 86.1738C145.555 90.5096 142.599 94.5661 138.27 95.2688L77.0763 105.203C72.6779 105.917 68.5439 102.9 67.8829 98.493L62.764 64.3668C62.1112 60.0151 65.0956 55.9531 69.4436 55.2755L113.584 48.3965" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<circle cx="72.0078" cy="112.533" r="3" transform="rotate(-8.58058 72.0078 112.533)" fill="#0AD5AB"/>
|
|
9
|
+
<circle cx="81.8964" cy="111.041" r="3" transform="rotate(-8.58058 81.8964 111.041)" fill="#0AD5AB"/>
|
|
10
|
+
<circle cx="91.7851" cy="109.549" r="3" transform="rotate(-8.58058 91.7851 109.549)" fill="#0AD5AB"/>
|
|
11
|
+
<path d="M44.0838 94C39.9366 95.7695 34.4686 98.7534 29.0856 102.784M39.5856 157C28.0856 159 10.3557 153 9.0838 138.5C8.28292 129.37 13.3564 118.771 18.582 112" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
12
|
+
<path d="M69.584 146.5L74.084 142.5M70.584 158L75.084 160" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
13
|
+
<path d="M157.084 73.5C159.398 73.9365 162.379 74.7206 165.584 75.8846M142.084 144.5C171.584 134.5 192.584 112.5 188.084 95.5C186.903 91.0398 184.113 87.3181 180.584 84.2715" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
14
|
+
<path d="M162.584 99.5C170.584 100.833 187.284 106.6 190.084 119C193.584 134.5 163.084 152.5 153.584 156" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
15
|
+
<path d="M58.7995 142.042C51.7808 141.972 38.7192 146.279 40.1294 156.211C41.5397 166.143 52.8417 167.455 60.7656 165.967" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
16
|
+
<path d="M65.5131 153.643C66.1954 160.235 63.9725 165.866 61.7751 166.094C59.5777 166.321 56.7459 161.213 56.0636 154.621C55.3813 148.029 57.1068 142.449 59.3042 142.221C61.5016 141.994 64.8308 147.051 65.5131 153.643Z" fill="black" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<path d="M59.8153 150.496L61.8116 150.374M60.085 157.5L62.2398 157.361" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<path d="M141.584 143.5C138.347 133.789 128.485 134.339 122.319 136.551C120.985 137.03 120.34 138.481 120.698 139.853L125.455 158.087C125.819 159.485 127.134 160.442 128.543 160.12C135.504 158.527 144.551 152.4 141.584 143.5Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
19
|
+
<path d="M120.584 143L113.584 144.5M123.584 152.5L116.584 154.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
20
|
+
<circle cx="132.084" cy="40.5" r="13.5" fill="url(#paint1_linear_261_3681)"/>
|
|
21
|
+
<circle cx="131.428" cy="40.844" r="13.844" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
22
|
+
<path d="M126.316 57.5C113.116 52.3 116.149 40 119.316 34.5C115.317 47.5 123.314 52.5 127.314 54C137.814 56 141.314 51 143.814 48C143.314 51.5 136.816 61 126.316 57.5Z" fill="black"/>
|
|
23
|
+
<path d="M17.0824 55.406C18.5862 53.5628 20.6603 50.5203 20.3148 45.7484C20.2817 45.2914 21.0772 44.9882 21.3475 45.3581C24.6457 49.8716 27.5413 50.139 30.534 50.592C30.8792 50.6443 30.9927 51.0902 30.7388 51.3298C27.9869 53.9268 27.7266 57.7858 28.0259 61.4901C28.0605 61.9176 27.3705 62.1933 27.0753 61.8821C24.8119 59.4964 20.4774 56.5239 17.5042 56.2597C17.1213 56.2257 16.8394 55.7039 17.0824 55.406Z" fill="black"/>
|
|
24
|
+
<path d="M164.371 162.876C166.86 162.151 168.532 159.965 169.67 158.059C169.894 157.684 170.585 157.872 170.62 158.307C170.864 161.293 172.306 163.507 173.868 164.757C174.125 164.963 174.084 165.397 173.79 165.547C171.93 166.494 169.933 168.35 168.447 170.966C168.247 171.317 167.659 171.223 167.582 170.827C167.094 168.29 166.047 165.606 164.152 163.675C163.909 163.428 164.039 162.973 164.371 162.876Z" fill="black"/>
|
|
25
|
+
<circle cx="23.584" cy="107" r="3" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
26
|
+
<path d="M72.084 83L85.2428 81.0262C89.7482 80.3504 94.2229 78.852 97.3718 75.5597C100.282 72.517 102.576 68.7317 101.084 65.5C98.084 59 93.584 63.5 94.584 66.5C95.584 69.5 100.084 70.5 102.584 72.5C105.084 74.5 109.584 83 104.084 85C98.584 87 98.084 82.5 99.584 80C101.084 77.5 107.584 69 109.584 70C111.584 71 111.084 73.5 111.084 75.5C111.084 77.5 108.084 80 111.084 81.5C114.084 83 118.584 78.5 117.584 73.5C116.584 68.5 112.743 61.5 107.084 64C105.084 65.5 104.084 71.5 108.084 74.5C112.084 77.5 117.084 76.5 121.084 75.5C124.284 74.7 132.751 73.1667 136.584 72.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
27
|
+
<path d="M57.584 130.5L62.584 119.5C65.384 121.1 68.7507 120.833 70.084 120.5C92.084 116.5 137.584 108.2 143.584 107C151.084 105.5 151.584 104.5 154.084 102C153.684 114 145.584 118 141.584 118.5C119.251 122.5 73.084 130.7 67.084 131.5C61.084 132.3 58.2507 131.167 57.584 130.5Z" fill="black"/>
|
|
28
|
+
<path d="M124.084 41.5L138.584 39.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
29
|
+
</g>
|
|
30
|
+
<defs>
|
|
31
|
+
<linearGradient id="paint0_linear_261_3681" x1="57.4573" y1="45.6008" x2="12.0449" y2="80.2548" gradientUnits="userSpaceOnUse">
|
|
32
|
+
<stop stop-color="#FFD38F"/>
|
|
33
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
34
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
35
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
36
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
37
|
+
</linearGradient>
|
|
38
|
+
<linearGradient id="paint1_linear_261_3681" x1="136.782" y1="23.8795" x2="126.579" y2="53.3685" gradientUnits="userSpaceOnUse">
|
|
39
|
+
<stop stop-color="#FFD38F"/>
|
|
40
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
41
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
42
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
43
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
44
|
+
</linearGradient>
|
|
45
|
+
<clipPath id="clip0_261_3681">
|
|
46
|
+
<rect width="200" height="200" fill="white"/>
|
|
47
|
+
</clipPath>
|
|
48
|
+
</defs>
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3572)">
|
|
3
|
+
<path d="M47.1914 160.123C45.1914 158.123 45.0248 151.623 45.1914 148.623C49.9915 156.223 64.1914 162.123 70.6914 164.123C70.8581 164.29 71.0914 164.823 70.6914 165.623C63.1914 170.123 49.1914 162.623 47.1914 160.123Z" fill="#0AD5AB"/>
|
|
4
|
+
<path d="M150.115 103.059L142.685 112.965C142.09 113.758 140.828 113.296 140.886 112.307L141.191 107.123L126.691 61.123L123.191 58.623L128.772 47.0334C129.271 45.9969 130.539 45.594 131.545 46.1528L134.191 47.623L151.252 95.5771C152.151 98.1039 151.724 100.913 150.115 103.059Z" fill="black"/>
|
|
5
|
+
<path d="M53.1914 78.123L69.6914 62.123L130.191 45.123L124.691 58.123L53.1914 78.123Z" fill="url(#paint0_linear_261_3572)"/>
|
|
6
|
+
<circle cx="176.691" cy="104.123" r="4" fill="#0AD5AB"/>
|
|
7
|
+
<path d="M52.6914 78.623L120.541 59.2375C123.68 58.3405 126.961 60.1186 127.923 63.2387L141.042 105.787C143.038 112.262 139.281 119.105 132.745 120.896L82.7421 134.595C76.5581 136.29 70.1347 132.823 68.1566 126.724L53.6914 82.123" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<path d="M54.6914 75.623L68.1319 63.1095C68.8283 62.4612 69.6688 61.9877 70.5841 61.7283L127.371 45.6312C130.377 44.7791 133.529 46.3676 134.612 49.2985C138.935 61.0058 149.177 89.0536 150.691 96.123C152.62 105.123 139.191 116.623 139.191 116.623" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
9
|
+
<path d="M90.6914 61.623C93.8581 55.7897 100.191 44.023 100.191 43.623" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
10
|
+
<path d="M101.19 33.6231C99.3567 34.2897 95.9901 36.6231 97.1901 40.6231C98.2424 44.1308 102.191 44.8188 104.72 44.7102C105.365 44.6826 105.995 44.4925 106.518 44.1148C108.175 42.9176 110.208 40.3592 109.189 36.6231C108.644 34.623 105.023 32.4564 103.689 33.1231" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M72.1914 92.123C76.6914 93.123 83.8914 92.723 88.6914 89.123" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
12
|
+
<path d="M101.691 85.123C106.358 85.7897 114.091 85.723 117.691 80.123" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
13
|
+
<path d="M89.1914 112.623C95.1914 114.123 108.791 112.523 113.191 106.123" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
14
|
+
<ellipse cx="76.102" cy="110.571" rx="5.81999" ry="2.99176" transform="rotate(-15.6188 76.102 110.571)" fill="#0AD5AB"/>
|
|
15
|
+
<ellipse cx="125.102" cy="98.5712" rx="5.81999" ry="2.99176" transform="rotate(-15.6188 125.102 98.5712)" fill="#0AD5AB"/>
|
|
16
|
+
<path d="M51.6925 99.6228C47.6034 101.019 42.3804 103.37 37.1752 106.623M46.6919 90.1228C37.7719 93.5536 20.4227 102.114 11 112.623M178.692 117.123C167.192 129.123 135.192 154.223 99.1919 158.623M147.192 65.1228C158.192 63.4562 181.592 63.1228 187.192 75.1228C190.214 81.5979 188.265 90.5979 182.192 99.1228M132.692 136.623C147.192 130.623 162.692 119.123 172.192 109.623M22.6919 119.122C17.3424 125.818 14.0934 134.028 15.6925 143.623C19.0362 156.161 30.6092 159.849 42.1914 159.532" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<circle cx="29.6914" cy="112.123" r="4" fill="black"/>
|
|
18
|
+
<path d="M167.185 150.949C169.563 149.917 170.946 147.538 171.837 145.504C172.012 145.104 172.72 145.204 172.81 145.632C173.427 148.563 175.136 150.578 176.842 151.622C177.123 151.794 177.137 152.23 176.865 152.415C175.139 153.588 173.391 155.681 172.245 158.463C172.091 158.836 171.495 158.817 171.37 158.434C170.566 155.978 169.19 153.447 167.067 151.77C166.795 151.555 166.867 151.087 167.185 150.949Z" fill="black"/>
|
|
19
|
+
<path d="M48.6922 161.623C44.817 158.452 44.5358 152.204 44.9793 148.482C45.0828 147.614 45.6261 146.861 46.4213 146.497C54.0964 142.983 62.3951 146.377 66.1914 151.123C69.6068 155.392 70.835 159.297 71.1211 164.082C71.2086 165.546 70.1319 166.814 68.6722 166.954C60.7043 167.723 53.6733 165.698 48.6922 161.623Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
20
|
+
<path d="M40.1914 138.623C42.8581 145.623 49.3914 156.423 68.1914 163.623" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
21
|
+
</g>
|
|
22
|
+
<defs>
|
|
23
|
+
<linearGradient id="paint0_linear_261_3572" x1="105.088" y1="41.3091" x2="99.2331" y2="80.7973" gradientUnits="userSpaceOnUse">
|
|
24
|
+
<stop stop-color="#FFD38F"/>
|
|
25
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
26
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
27
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
28
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
<clipPath id="clip0_261_3572">
|
|
31
|
+
<rect width="200" height="200" fill="white"/>
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3728)">
|
|
3
|
+
<path d="M60.1584 67.1216C58.7922 64.4085 54.5109 52.6217 54.5109 52.6217C53.0107 47.1216 52.986 36.6322 61.511 32.2912C72.1672 26.865 85.2597 24.6041 93.0097 25.0563C100.76 25.5085 105.788 31.9625 107.01 34.1218C109.034 37.7013 111.51 43.6218 113.01 49.6218M105.51 51.1218C104.51 48.5698 103.572 44.6218 102.01 41.1218C100.979 38.8118 98.8222 33.3765 93.0097 32.2912C87.1972 31.206 73.7922 34.052 67.0109 38.1217C61.5859 41.3774 61.1377 44.6217 62.5109 50.6217L67.0109 62.6216" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M130.012 52.6221C128.512 51.1221 127.012 50.1221 123.512 50.1221C108.876 50.2493 85.5574 53.5124 64.1434 64.8506C58.3436 67.9214 56.2262 74.9656 58.6358 81.0699L74.2484 120.622C75.8011 124.555 80.1468 126.601 84.1676 125.291L136.262 108.321C140.113 107.066 142.419 103.132 141.632 99.159L134.489 63.1221C134.489 63.1221 133.874 60.2903 132.871 57.6219" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
5
|
+
<circle cx="159.012" cy="62.1221" r="4" fill="#0AD5AB"/>
|
|
6
|
+
<path d="M73.0121 118.122C75.8121 125.322 77.5121 125.455 78.0121 124.622C77.6786 128.622 76.9117 137.622 76.5117 141.622C74.5117 141.622 71.3451 138.289 70.0117 136.622C65.5123 127.289 55.8136 106.922 53.0136 100.122C48.015 84.6221 55.5121 75.6221 58.0121 70.6221C56.8121 73.8221 57.5121 77.9554 58.0121 79.6221C61.8454 89.4554 70.2121 110.922 73.0121 118.122Z" fill="url(#paint0_linear_261_3728)"/>
|
|
7
|
+
<path d="M60.0117 68.6221C58.433 70.2008 55.3283 74.4958 52.8658 81.5689C50.1834 89.2736 51.4681 97.6039 54.8695 105.019C58.8021 113.593 64.3125 124.974 69.0059 134.515C72.1301 140.866 79.5241 143.835 86.1908 141.457L133.875 124.454C137.032 123.328 139.302 120.541 139.765 117.22L142.012 101.122C141.845 102.955 140.312 107.022 135.512 108.622C130.712 110.222 100.178 119.955 85.5117 124.622C82.6784 125.789 76.4117 126.522 74.0117 120.122C71.6117 113.722 62.3451 90.1221 58.0117 79.1221C57.5117 77.1221 57.6117 72.2221 60.0117 68.6221Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<rect x="91.0117" y="77.8818" width="19" height="8" rx="4" transform="rotate(-14.5083 91.0117 77.8818)" fill="black"/>
|
|
9
|
+
<rect x="105.738" y="78.1221" width="19" height="8" rx="4" transform="rotate(75 105.738 78.1221)" fill="black"/>
|
|
10
|
+
<path d="M143.513 79.122C148.18 78.122 158.613 76.722 163.013 79.122C165.643 80.5564 169.513 82.622 168.513 90.622M151.513 117.122C157.513 113.122 160.014 110.622 163.013 105.122M139.014 63.1221C142.249 62.4031 147.829 61.7804 151.513 61.6221M141.013 143.622C147.513 139.955 163.313 129.822 174.513 118.622C199.013 93.1221 190.013 75.6221 180.013 68.1221C177.022 65.8789 171.424 63.1948 166.133 62.1221M47.013 97.1221C45.8448 97.771 43.992 98.7119 42.5112 99.6221M27.5126 106.622C1.51188 123.622 10.5117 149.122 16.5117 151.122M67.0138 163.622C63.4404 163.76 59.9899 163.53 56.0138 163.122" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M23.3837 61.6701C25.1057 60.7225 27.5145 59.0688 28.7974 55.5544C28.9545 55.124 29.8427 55.1483 29.961 55.5908C31.0966 59.8393 33.1785 61.0025 35.2918 62.2704C35.5911 62.45 35.526 62.9068 35.2024 63.0376C32.354 64.1892 30.9183 66.9769 29.9613 69.8647C29.8264 70.2718 29.0649 70.268 28.9028 69.8709C27.8658 67.3298 25.5833 63.8739 23.4386 62.6504C23.1047 62.4599 23.0469 61.8554 23.3837 61.6701Z" fill="black"/>
|
|
12
|
+
<path d="M166.473 145.303C169.041 144.952 171.016 143.035 172.423 141.318C172.699 140.98 173.355 141.267 173.326 141.703C173.127 144.692 174.229 147.094 175.589 148.56C175.813 148.802 175.709 149.226 175.396 149.33C173.417 149.993 171.169 151.536 169.314 153.905C169.065 154.222 168.497 154.043 168.48 153.64C168.37 151.058 167.729 148.25 166.138 146.062C165.934 145.781 166.13 145.35 166.473 145.303Z" fill="black"/>
|
|
13
|
+
<circle cx="166.012" cy="98.1221" r="4" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
14
|
+
<rect x="34.6777" y="98.1768" width="6.5305" height="6.5305" rx="1" transform="rotate(33.5516 34.6777 98.1768)" fill="black"/>
|
|
15
|
+
<rect x="27.4492" y="123.008" width="30" height="41" rx="2" transform="rotate(14.7482 27.4492 123.008)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
16
|
+
<circle cx="38.1374" cy="141.334" r="8" transform="rotate(14.7482 38.1374 141.334)" fill="#0AD5AB"/>
|
|
17
|
+
<path d="M22.0131 127.121L24.0615 120C24.362 118.956 25.4416 118.343 26.4927 118.619L32.3384 120.158" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<path d="M53.3623 158.003L49.5437 172.509C49.2625 173.577 48.1686 174.215 47.1005 173.934L41.7817 172.534" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
19
|
+
<path d="M37.553 139.627L35.8222 142.273L38.2399 142.91" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
|
|
20
|
+
<path d="M34.7031 144.565C35.4241 145.1 37.2072 146.052 38.5713 145.584" stroke="black" stroke-width="1.5" stroke-linecap="round"/>
|
|
21
|
+
<path d="M35.3625 149.909C27.2392 147.771 21.8485 154.107 20.5757 158.943L44.752 165.307C46.2794 159.505 44.0659 152.2 35.3625 149.909Z" fill="#0AD5AB"/>
|
|
22
|
+
<path d="M76.0117 141.122L77.5117 124.622C81.5117 125.822 83.5117 125.122 84.0117 124.622C98.5117 120.122 128.912 110.722 134.512 109.122C139.692 107.642 141.564 104.621 141.947 102.99C141.97 102.861 141.991 102.738 142.012 102.622C141.999 102.734 141.978 102.857 141.947 102.99C141.414 106.014 140.279 112.518 139.512 117.122C138.712 121.922 135.178 124.122 133.512 124.622C121.012 129.122 94.3117 138.722 87.5117 141.122C80.7117 143.522 77.0117 142.122 76.0117 141.122Z" fill="black"/>
|
|
23
|
+
</g>
|
|
24
|
+
<defs>
|
|
25
|
+
<linearGradient id="paint0_linear_261_3728" x1="69.314" y1="62.4163" x2="26.0482" y2="109.409" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop stop-color="#FFD38F"/>
|
|
27
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
28
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
29
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
30
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<clipPath id="clip0_261_3728">
|
|
33
|
+
<rect width="200" height="200" fill="white"/>
|
|
34
|
+
</clipPath>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3750)">
|
|
3
|
+
<path d="M143.41 65.5621L147.696 70.9293C147.838 71.1065 147.948 71.3064 148.023 71.5206L150.933 79.8914C151.1 80.3738 151.077 80.902 150.868 81.3678L126.126 136.436C125.933 136.867 125.593 137.215 125.168 137.419L115.471 142.078C114.96 142.324 114.369 142.341 113.845 142.125L58.3461 119.309C57.8675 119.112 57.4838 118.738 57.2756 118.264L53.2658 109.139C53.1178 108.803 53.0656 108.431 53.1148 108.067L54.1949 100.071" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M52.8882 109.102L54.3679 101.176L59.4251 113.287L113.007 136.161L124.794 130.476L147.212 78.3227L144.384 67.4482L147.911 71.198L151.195 80.6435L125.827 137.104L114.193 142.313L57.7529 118.527L52.8882 109.102Z" fill="black"/>
|
|
5
|
+
<path d="M74.5007 52.3582L75.91 48.9395C76.3047 47.982 77.0554 47.2149 78.0042 46.7996L86.9373 42.8897C87.9435 42.4493 89.0865 42.442 90.0983 42.8696L141.673 64.6657C142.721 65.1087 143.531 65.9772 143.9 67.0538L146.956 75.9756C147.275 76.9067 147.24 77.9226 146.857 78.8291L125.468 129.439C125.085 130.345 124.381 131.079 123.491 131.499L114.963 135.525C113.934 136.01 112.746 136.035 111.698 135.592L60.1238 113.796C59.1121 113.368 58.3207 112.543 57.9353 111.515L54.5063 102.364C54.1472 101.406 54.1691 100.346 54.5675 99.4037L72.7592 56.3582" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M101.215 40.8491C101.645 39.8316 102.819 39.3554 103.836 39.7854L108.442 41.7318C109.459 42.1618 109.935 43.3351 109.505 44.3526L106.78 50.8004L98.4904 47.2969L101.215 40.8491Z" fill="black"/>
|
|
7
|
+
<path d="M115.032 46.6879C115.462 45.6705 116.635 45.1943 117.653 45.6243L122.258 47.5707C123.276 48.0006 123.752 49.174 123.322 50.1915L120.597 56.6393L112.307 53.1358L115.032 46.6879Z" fill="black"/>
|
|
8
|
+
<path d="M128.847 52.5258C129.277 51.5084 130.451 51.0322 131.468 51.4622L136.074 53.4085C137.091 53.8385 137.567 55.0119 137.137 56.0293L134.412 62.4772L126.122 58.9737L128.847 52.5258Z" fill="black"/>
|
|
9
|
+
<g filter="url(#filter0_i_261_3750)">
|
|
10
|
+
<path d="M101.982 142.39C101.552 143.408 100.378 143.884 99.3609 143.454L94.7553 141.507C93.7378 141.077 93.2616 139.904 93.6916 138.887L96.8058 131.518L105.096 135.021L101.982 142.39Z" fill="black"/>
|
|
11
|
+
</g>
|
|
12
|
+
<path d="M99.5555 142.993L94.9499 141.047C94.1868 140.724 93.8297 139.844 94.1522 139.081L97.0718 132.173L104.441 135.287L101.521 142.196C101.199 142.959 100.319 143.316 99.5555 142.993Z" stroke="black"/>
|
|
13
|
+
<g filter="url(#filter1_i_261_3750)">
|
|
14
|
+
<path d="M88.1653 136.55C87.7353 137.568 86.5619 138.044 85.5445 137.614L80.9389 135.668C79.9214 135.238 79.4452 134.064 79.8752 133.047L82.9894 125.678L91.2795 129.181L88.1653 136.55Z" fill="black"/>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M85.7391 137.153L81.1335 135.207C80.3704 134.885 80.0133 134.005 80.3358 133.241L83.2554 126.333L90.6243 129.447L87.7047 136.356C87.3822 137.119 86.5022 137.476 85.7391 137.153Z" stroke="black"/>
|
|
17
|
+
<g filter="url(#filter2_i_261_3750)">
|
|
18
|
+
<path d="M74.3508 130.712C73.9208 131.73 72.7475 132.206 71.73 131.776L67.1244 129.83C66.107 129.4 65.6308 128.226 66.0607 127.209L69.175 119.84L77.4651 123.343L74.3508 130.712Z" fill="black"/>
|
|
19
|
+
</g>
|
|
20
|
+
<path d="M71.9247 131.316L67.3191 129.369C66.556 129.047 66.1988 128.167 66.5213 127.404L69.4409 120.495L76.8099 123.609L73.8903 130.518C73.5678 131.281 72.6877 131.638 71.9247 131.316Z" stroke="black"/>
|
|
21
|
+
<circle cx="86.0735" cy="53.1109" r="3" transform="rotate(22.9096 86.0735 53.1109)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
22
|
+
<circle cx="65.0526" cy="102.851" r="3" transform="rotate(22.9096 65.0526 102.851)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
23
|
+
<path d="M117.814 66.791C134.362 67.6021 147.12 81.6751 146.309 98.2237C145.498 114.772 131.425 127.53 114.876 126.719C98.3275 125.908 85.5697 111.835 86.3809 95.2863C87.192 78.7376 101.265 65.9798 117.814 66.791ZM117.324 76.779C106.292 76.2382 96.9097 84.7434 96.3689 95.7759C95.8281 106.808 104.333 116.19 115.366 116.731C126.398 117.272 135.78 108.767 136.321 97.7342C136.862 86.7017 128.357 77.3198 117.324 76.779Z" fill="url(#paint0_linear_261_3750)"/>
|
|
24
|
+
<path d="M139.789 78.0367C144.193 83.5474 146.681 90.6245 146.309 98.2237C145.498 114.772 131.425 127.53 114.876 126.719C98.3275 125.908 85.5697 111.835 86.3809 95.2863C87.192 78.7376 101.265 65.9798 117.814 66.791C124.559 67.1216 130.675 69.6557 135.498 73.6628" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
25
|
+
<circle cx="116.345" cy="96.755" r="20" transform="rotate(2.80618 116.345 96.755)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
26
|
+
<path d="M135.17 121.206L157.27 139.997C158.89 141.375 161.305 141.244 162.767 139.699L166.65 135.594C168.268 133.884 168.066 131.153 166.215 129.699L143.151 111.585" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
27
|
+
<circle cx="121.859" cy="106.267" r="2.5" transform="rotate(3.93841 121.859 106.267)" fill="black"/>
|
|
28
|
+
<path d="M110.079 95.432C108.72 93.3337 107.34 88.6278 112.692 86.5906C118.044 84.5534 120.368 89.1238 120.861 91.6637C120.959 92.6727 120.514 95.2482 117.955 97.4777C117.047 99.019 117.462 99.7826 117.749 100.471" stroke="black" stroke-width="5" stroke-linecap="round"/>
|
|
29
|
+
<path d="M57.0006 78.3589C44.67 77.0778 19.3839 80.6588 13.1641 104.359M39.0006 140.359C31.9573 137.424 20.3004 130.389 15.0013 120.754" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
30
|
+
<path d="M52 66.3584C43.8333 66.8584 25.2 70.1584 16 79.3584" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
31
|
+
<path d="M156.5 84.8584C170.5 91.0251 190.5 106.358 187.5 124.858C184.776 141.654 173.978 151.163 150 155.492M112.5 158.358C122.05 158.265 129.518 158.099 137 157.358" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
32
|
+
<path d="M168 111.858C184.036 119.369 202.217 138.273 184.427 154.358M143 170.358C151.344 169.691 161.916 167.687 171.741 162.858" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
33
|
+
<rect x="12.1602" y="107.764" width="7" height="7" rx="2" transform="rotate(36.4671 12.1602 107.764)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
34
|
+
<circle cx="143.5" cy="155.858" r="3.5" fill="#0AD5AB"/>
|
|
35
|
+
<circle cx="178.5" cy="157.858" r="3.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
36
|
+
<path d="M49.4224 45.6791C52.1572 43.9536 53.278 40.6748 53.883 38.047C53.981 37.6214 54.6795 37.601 54.8314 38.0105C56.1313 41.5154 58.6622 43.6029 60.9432 44.4576C61.2518 44.5733 61.3408 44.9982 61.1014 45.2247C59.272 46.956 57.6046 49.8496 56.8576 53.4621C56.7759 53.8574 56.1925 53.9411 56.0061 53.5831C54.5582 50.8019 52.3766 48.0211 49.4471 46.4938C49.1398 46.3336 49.1293 45.864 49.4224 45.6791Z" fill="black"/>
|
|
37
|
+
</g>
|
|
38
|
+
<defs>
|
|
39
|
+
<filter id="filter0_i_261_3750" x="93.5333" y="131.518" width="11.5626" height="12.0942" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
40
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
41
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
42
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
43
|
+
<feOffset dx="-1" dy="3"/>
|
|
44
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
45
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
46
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_261_3750"/>
|
|
47
|
+
</filter>
|
|
48
|
+
<filter id="filter1_i_261_3750" x="79.7169" y="125.678" width="11.5626" height="12.0942" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
49
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
50
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
51
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
52
|
+
<feOffset dx="-1" dy="3"/>
|
|
53
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
54
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
55
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_261_3750"/>
|
|
56
|
+
</filter>
|
|
57
|
+
<filter id="filter2_i_261_3750" x="65.9025" y="119.84" width="11.5626" height="12.0942" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
58
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
59
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
60
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
61
|
+
<feOffset dx="-1" dy="3"/>
|
|
62
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
63
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
|
|
64
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_261_3750"/>
|
|
65
|
+
</filter>
|
|
66
|
+
<linearGradient id="paint0_linear_261_3750" x1="128.58" y1="60.376" x2="102.727" y2="124.719" gradientUnits="userSpaceOnUse">
|
|
67
|
+
<stop stop-color="#FFD38F"/>
|
|
68
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
69
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
70
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
71
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
72
|
+
</linearGradient>
|
|
73
|
+
<clipPath id="clip0_261_3750">
|
|
74
|
+
<rect width="200" height="200" fill="white"/>
|
|
75
|
+
</clipPath>
|
|
76
|
+
</defs>
|
|
77
|
+
</svg>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3592)">
|
|
3
|
+
<path d="M45 86.5L49.5 84C49.9 91.6 53 99.8333 54.5 103L51 104L48 102.5L43 93.5L42.5 91L45 86.5Z" fill="url(#paint0_linear_261_3592)"/>
|
|
4
|
+
<path d="M109 60.0005C107.4 58.4005 103.333 55.3338 101.5 54.0005C102.5 53.1671 105 51.4005 107 51.0005C109 50.6005 111.167 52.8338 112 54.0005C113.333 55.5005 116.2 59.1005 117 61.5005C117.8 63.9005 116 66.1671 115 67.0005C113.667 65.3338 110.6 61.6005 109 60.0005Z" fill="url(#paint1_linear_261_3592)"/>
|
|
5
|
+
<path d="M72.0016 128.956C91.2176 149.291 115.844 154.326 130.001 143.001C147.501 129.001 139.501 97.5006 120.001 72.5006C100.501 47.5006 85.5009 41.0007 63.5013 56.0005C40.5 70.0005 46.5008 91.0006 58.5007 110.501" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M65 74L68.5 79" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
<path d="M85 63L88.5 68" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<path d="M71 88.5C80.5 88.5 93 79 95.5 73" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
9
|
+
<path d="M48 85L45.6962 86.481C43.0496 88.1824 42.1668 91.6391 43.6734 94.4012L47.6057 101.611C48.8684 103.925 51.8905 104.582 54 103M101.5 53L103.524 51.7545C106.086 50.1778 109.42 50.7422 111.32 53.0744L115.873 58.6628C117.649 60.8423 117.488 64.012 115.5 66" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
10
|
+
<path d="M115.022 85.7868L77.6642 113.209C74.8684 115.261 74.3606 119.284 76.8401 121.709C87.0212 131.665 100.803 137.414 119.5 123.5C134.127 112.615 129.059 96.62 122.808 86.9527C121.106 84.3205 117.549 83.932 115.022 85.7868Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M82 111.5L95.5 125.5V131" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
12
|
+
<path d="M96 125.5L128 104.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
13
|
+
<ellipse cx="60.7505" cy="118.161" rx="12" ry="5" transform="rotate(8.21327 60.7505 118.161)" fill="black"/>
|
|
14
|
+
<path d="M49.7207 117.58L48.935 123.024C50.3941 124.581 54.5714 127.373 59.3222 128.059C64.0729 128.745 68.8693 127.248 70.7093 126.167L71.4951 120.723" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
15
|
+
<path d="M55.7852 128.054L52.2137 152.797C52.2137 152.797 53.0606 153.93 55.0401 154.216C57.0196 154.501 58.1522 153.654 58.1522 153.654L61.7236 128.911" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
16
|
+
<path d="M55.4238 134.063C55.4238 134.063 56.2707 135.196 57.7553 135.41C59.2399 135.625 60.3725 134.778 60.3725 134.778" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<path d="M54.5664 140.002C54.5664 140.002 55.4133 141.135 56.8979 141.349C58.3825 141.563 59.5151 140.716 59.5151 140.716" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<path d="M53.709 145.94C53.709 145.94 54.5559 147.073 56.0405 147.287C57.5251 147.502 58.6577 146.655 58.6577 146.655" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
19
|
+
<path d="M172.5 72.5C181.167 73.6667 192.5 85 187.5 102.5M147.5 143.5C158.77 140.495 172.58 129.869 181.084 116.5M190.5 124.5C189.638 130.106 183.95 140.508 169 150.188M135.5 164.5C143.544 162.292 150.502 159.737 156.5 156.99M36.5 75.5C27.3333 78.3333 9 90.4 9 106C9 113.885 13.6837 119.825 19.5 125.277M36.5 136.5C34.3763 135.573 31.7605 134.223 28.9948 132.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
20
|
+
<rect x="161.609" y="149" width="6.5305" height="6.5305" rx="1" transform="rotate(33.5516 161.609 149)" fill="black"/>
|
|
21
|
+
<circle cx="24.5" cy="128.5" r="3.5" fill="#0AD5AB"/>
|
|
22
|
+
<circle cx="184.5" cy="109.5" r="3.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
23
|
+
<path d="M9 127.5C14.5 137.5 26.9 145.9 40.5 149.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
24
|
+
<ellipse cx="144" cy="90" rx="25" ry="23" fill="black"/>
|
|
25
|
+
<ellipse cx="144" cy="85" rx="25" ry="23" fill="url(#paint2_linear_261_3592)"/>
|
|
26
|
+
<path d="M133.191 85.0277L155.274 85.0277M144.446 73.7523L144.446 97.4181" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
27
|
+
<path d="M95.4997 125.5L81.4997 111C74.9997 114.5 74.4997 118.5 75.9997 120.5C83.9997 129.7 92.3331 131.333 95.4997 131V125.5Z" fill="black"/>
|
|
28
|
+
<path d="M95.5 131.5V125.5L123.5 107L128 105.5C129.5 114 125 118 119 124C109.8 130.8 99.5 131.833 95.5 131.5Z" fill="black"/>
|
|
29
|
+
<path d="M95.5 126.5L95 130" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
|
30
|
+
<path d="M58.3477 117.31L64.2861 118.167" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
|
31
|
+
<path d="M61.0312 119.718L61.6027 115.759" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
|
32
|
+
<path d="M126.149 42.3723C129.251 41.4602 131.226 38.6128 132.526 36.2505C132.737 35.8679 133.414 36.0393 133.448 36.4747C133.741 40.2014 135.604 42.9013 137.565 44.3471C137.83 44.5427 137.799 44.9757 137.507 45.1282C135.274 46.2934 132.879 48.6209 131.173 51.8916C130.986 52.2494 130.402 52.1704 130.321 51.7751C129.688 48.704 128.35 45.4328 125.95 43.1627C125.698 42.9246 125.816 42.4701 126.149 42.3723Z" fill="black"/>
|
|
33
|
+
<path d="M69.6759 155.897C72.2591 155.68 74.3312 153.869 75.8255 152.227C76.1194 151.904 76.7586 152.226 76.707 152.66C76.3533 155.634 77.3278 158.09 78.6099 159.625C78.8212 159.878 78.6947 160.296 78.3771 160.384C76.3663 160.943 74.0405 162.366 72.0643 164.635C71.7993 164.94 71.2411 164.731 71.245 164.327C71.2699 161.744 70.7763 158.906 69.3017 156.637C69.1128 156.347 69.3305 155.926 69.6759 155.897Z" fill="black"/>
|
|
34
|
+
</g>
|
|
35
|
+
<defs>
|
|
36
|
+
<linearGradient id="paint0_linear_261_3592" x1="50.5878" y1="81.6885" x2="40.0037" y2="100.044" gradientUnits="userSpaceOnUse">
|
|
37
|
+
<stop stop-color="#FFD38F"/>
|
|
38
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
39
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
40
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
41
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
42
|
+
</linearGradient>
|
|
43
|
+
<linearGradient id="paint1_linear_261_3592" x1="112.081" y1="49.0985" x2="105.912" y2="66.5416" gradientUnits="userSpaceOnUse">
|
|
44
|
+
<stop stop-color="#FFD38F"/>
|
|
45
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
46
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
47
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
48
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
49
|
+
</linearGradient>
|
|
50
|
+
<linearGradient id="paint2_linear_261_3592" x1="152.699" y1="56.6836" x2="136.441" y2="107.763" gradientUnits="userSpaceOnUse">
|
|
51
|
+
<stop stop-color="#FFD38F"/>
|
|
52
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
53
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
54
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
55
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
56
|
+
</linearGradient>
|
|
57
|
+
<clipPath id="clip0_261_3592">
|
|
58
|
+
<rect width="200" height="200" fill="white"/>
|
|
59
|
+
</clipPath>
|
|
60
|
+
</defs>
|
|
61
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3625)">
|
|
3
|
+
<path d="M31.85 113.828L34.2165 85.1605C34.2432 84.8372 34.4251 84.5469 34.7044 84.3819L43.6566 79.092C44.3433 78.6862 45.2055 79.2084 45.164 80.005L44.1181 100.094C44.0768 100.888 44.9328 101.41 45.6196 101.011L51.8045 97.4122C52.1658 97.202 52.3582 96.7893 52.287 96.3775L50.8166 87.8703C50.7343 87.3942 51.0042 86.9273 51.4579 86.761L60.0816 83.6012C60.6606 83.389 61.2918 83.7463 61.4078 84.352L62.6594 90.8872C62.7823 91.529 63.4777 91.8823 64.0685 91.6033L73.0432 87.3653C73.7009 87.0547 74.4595 87.5277 74.4701 88.255L74.6542 100.906C74.6595 101.269 74.4675 101.606 74.1527 101.787L65.8602 106.554C65.4847 106.769 65.2908 107.202 65.3799 107.626L69.6068 127.728C69.7033 128.187 69.4677 128.652 69.0402 128.845L58.8116 133.47C58.236 133.73 57.5662 133.398 57.4249 132.783L52.9066 113.1C52.7613 112.467 52.0602 112.138 51.4805 112.432L39.0903 118.7C35.6018 120.465 31.5284 117.724 31.85 113.828Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M61.1936 136.145L58.2634 133.948C58.2027 133.902 58.2128 133.808 58.2817 133.777L69.4032 128.679C69.8277 128.485 70.061 128.022 69.9654 127.565L65.776 107.549C65.6881 107.129 65.8779 106.7 66.2478 106.483L74.1289 101.847L76.1289 107.847L70.1289 110.847L74.4533 130.547C74.5554 131.012 74.3153 131.485 73.8793 131.677L63.1991 136.376C62.538 136.667 61.7714 136.579 61.1936 136.145Z" fill="black" stroke="black" stroke-width="2"/>
|
|
5
|
+
<path d="M125.269 83.2407L130.118 55.1757C130.173 54.856 130.38 54.5829 130.673 54.4433L139.973 50.0083C140.693 49.6649 141.506 50.2614 141.394 51.0512L138.597 70.7937C138.485 71.5805 139.292 72.1767 140.011 71.8395L146.426 68.8337C146.804 68.6564 147.032 68.2624 146.998 67.8459L146.293 59.317C146.253 58.8355 146.564 58.3943 147.03 58.269L155.82 55.9071C156.415 55.7471 157.012 56.159 157.074 56.7726L157.735 63.3255C157.801 63.9757 158.462 64.3893 159.075 64.1637L168.301 60.7702C168.984 60.5192 169.697 61.0576 169.644 61.7829L168.714 74.2908C168.687 74.653 168.466 74.9721 168.136 75.1245L159.528 79.1032C159.134 79.285 158.903 79.6991 158.954 80.1292L161.364 100.364C161.419 100.829 161.144 101.271 160.701 101.426L150.195 105.094C149.599 105.303 148.961 104.913 148.875 104.287L146.141 84.4481C146.053 83.8045 145.384 83.415 144.78 83.6558L132.049 88.7358C128.418 90.1848 124.604 87.0932 125.269 83.2407Z" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M144.129 54.3467L141.779 51.0569C141.726 50.9825 141.609 51.0125 141.598 51.1032L139.348 70.0043C139.254 70.7947 140.076 71.3729 140.788 71.0169L142.129 70.3467L144.129 54.3467Z" fill="black" stroke="black" stroke-width="2"/>
|
|
7
|
+
<path d="M130.129 95.3467L123.629 91.8467L144.484 83.7891C145.075 83.5607 145.727 83.9325 145.831 84.5575L146.629 89.3467L130.129 95.3467Z" fill="black" stroke="black" stroke-width="2"/>
|
|
8
|
+
<ellipse cx="100.871" cy="93.6058" rx="30.6964" ry="30.1061" transform="rotate(11.3674 100.871 93.6058)" fill="black"/>
|
|
9
|
+
<ellipse cx="100.761" cy="88.1647" rx="30.6964" ry="29.5158" transform="rotate(11.3674 100.761 88.1647)" fill="url(#paint0_linear_261_3625)"/>
|
|
10
|
+
<ellipse cx="100.761" cy="88.1647" rx="30.6964" ry="29.5158" transform="rotate(11.3674 100.761 88.1647)" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
11
|
+
<path d="M96.1055 64.3203L93.6289 53.3467" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
12
|
+
<path d="M95.6289 44.4597C96.5979 45.3036 97.2432 46.5187 97.3334 47.9022C97.5131 50.6556 95.4267 53.0333 92.6733 53.213C89.9199 53.3927 87.5421 51.3063 87.3625 48.5529C87.1828 45.7995 89.2692 43.4217 92.0226 43.242C92.3388 43.2214 92.65 43.2307 92.9535 43.2674" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
13
|
+
<path d="M81.9948 43.9232C81.9948 43.9232 78.7339 46.9677 79.6299 50.1992C80.526 53.4306 84.1157 54.6557 84.1157 54.6557M73.8479 39.8339C73.8479 39.8339 68.413 44.9081 69.142 51.855C69.871 58.8019 77.0264 61.7829 77.0264 61.7829M101.388 41.0723C101.388 41.0723 103.684 41.506 104.858 44.9513C106.033 48.3965 102.493 51.2272 102.493 51.2272M105.312 34.8664C105.312 34.8664 111.475 36.7391 112.701 44.2402C113.926 51.7412 108.586 54.6922 108.586 54.6922" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
14
|
+
<path d="M89.5605 79.8467L90.9447 84.942" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
15
|
+
<path d="M109.338 75.4385L110.722 80.5338" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
16
|
+
<path d="M93.7938 104.828C93.7938 104.828 95.0225 98.7164 104.693 96.4216C114.363 94.1268 119.401 97.259 119.401 97.259" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<path d="M161.129 134.661C161.79 134.733 162.457 134.836 163.129 134.97C164.045 135.154 164.97 135.397 165.9 135.705C166.312 135.842 166.578 136.251 166.554 136.684C165.442 156.859 150.214 159.613 142.28 158.421C142.023 158.382 141.799 158.24 141.646 158.031L136.138 150.496C135.953 150.243 135.894 149.918 135.996 149.622C138.125 143.445 145.884 136.057 155.629 134.736C156.287 134.646 156.954 134.585 157.629 134.553" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<circle cx="153.889" cy="144.781" r="5.32133" transform="rotate(-8.27354 153.889 144.781)" fill="#0AD5AB"/>
|
|
19
|
+
<path d="M147.38 159.172L148.376 164.496C148.501 165.163 149.245 165.525 149.861 165.24C152.986 163.795 156.99 162.268 156.129 156.347M137.863 145.5L133.299 142.194C132.733 141.784 132.744 140.927 133.317 140.527C136.072 138.607 139.921 136.093 144.47 139.162" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
20
|
+
<path d="M24.9838 91.8467C17.2883 95.183 7.00003 104.174 10.2431 123.454C10.7139 126.253 11.7162 128.805 13.1289 131.124M57.6289 150.847C49.3301 150.847 34.5438 148.046 23.6289 141.212" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
21
|
+
<circle cx="17.6289" cy="136.847" r="4" fill="black"/>
|
|
22
|
+
<path d="M7.00038 97.7607C9.22828 93.3503 14.9644 85.6214 27.2942 82.1592" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
23
|
+
<path d="M178.629 81.8467C181.997 82.2046 190.188 85.3467 192.935 92.9742C195.683 100.602 193.467 117.672 171.13 135.39M133.902 157.941C129.825 159.372 120.713 162.988 112.629 163.847" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
24
|
+
<path d="M172.129 120.347C175.462 117.743 178.242 114.857 180.541 111.847M187.026 100.347C190.141 92.4669 189.768 85.1087 188.629 80.8467C187.026 74.8467 183.629 71.3467 178.512 68.3467" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
25
|
+
<path d="M38.6656 122.49L35.1289 119.347C35.1289 119.347 37.9179 119.202 39.6289 118.347C40.9948 117.664 48.1454 114.248 50.9748 112.897C51.5629 112.617 52.253 112.967 52.3808 113.606L53.1289 117.347L40.8066 122.823C40.0895 123.142 39.2522 123.012 38.6656 122.49Z" fill="black" stroke="black" stroke-width="2"/>
|
|
26
|
+
<path d="M47.3442 80.2961L45.2616 79.4036C45.1974 79.376 45.1255 79.4212 45.1223 79.4909L44.2114 99.5315C44.1756 100.319 45.0222 100.836 45.7065 100.445L47.6289 99.3467L48.5535 82.2423C48.5988 81.4041 48.1158 80.6268 47.3442 80.2961Z" fill="black" stroke="black" stroke-width="2"/>
|
|
27
|
+
<path d="M64.1212 84.6774L61.7901 83.9004C61.7178 83.8763 61.6462 83.9388 61.6602 84.0137L62.8846 90.5437C63.007 91.1967 63.7204 91.5509 64.3147 91.2538L66.1289 90.3467L64.7697 85.363C64.6817 85.0404 64.4384 84.7832 64.1212 84.6774Z" fill="black" stroke="black" stroke-width="2"/>
|
|
28
|
+
<path d="M153.216 108.486L149.76 105.462C149.702 105.411 149.721 105.316 149.794 105.291L161.629 101.347L159.211 80.072C159.162 79.6399 159.398 79.2256 159.795 79.0471L169.129 74.8467L169.62 61.5758C169.624 61.4886 169.729 61.4471 169.791 61.5088L173.791 65.5085C174.005 65.7224 174.11 66.0215 174.078 66.3222L172.752 78.7004C172.676 79.4099 172.227 80.0251 171.575 80.3149L163.629 83.8467L165.476 103.704C165.565 104.658 164.964 105.54 164.045 105.809L154.155 108.693C153.827 108.789 153.473 108.711 153.216 108.486Z" fill="black" stroke="black" stroke-width="2"/>
|
|
29
|
+
<path d="M160.081 57.6118L157.289 56.4154C157.218 56.3849 157.141 56.443 157.151 56.5197L157.826 61.9259C157.983 63.1783 159.246 63.9743 160.443 63.5752L161.129 63.3467L160.683 58.4404C160.65 58.0746 160.419 57.7565 160.081 57.6118Z" fill="black" stroke="black" stroke-width="2"/>
|
|
30
|
+
<path d="M152.629 147.347C154.129 147.847 156.129 147.347 156.629 145.347" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
|
31
|
+
<path d="M36.9857 42.561C38.6801 41.5648 41.0408 39.8432 42.2232 36.2937C42.368 35.8591 43.2565 35.858 43.3873 36.2971C44.6434 40.5115 46.7576 41.615 48.906 42.8223C49.2104 42.9933 49.1583 43.4517 48.8385 43.5917C46.0241 44.8239 44.6683 47.6513 43.7938 50.5652C43.6705 50.976 42.9092 50.9938 42.7359 50.6015C41.627 48.0909 39.2472 44.7013 37.0685 43.5394C36.7294 43.3585 36.6543 42.7559 36.9857 42.561Z" fill="black"/>
|
|
32
|
+
<path d="M177.608 107.312L180.894 99.5807C181.198 98.8634 182.17 98.755 182.626 99.3876L187.673 106.4C188.126 107.029 187.72 107.913 186.947 107.98L178.614 108.7C177.863 108.764 177.313 108.006 177.608 107.312Z" fill="#0AD5AB"/>
|
|
33
|
+
</g>
|
|
34
|
+
<defs>
|
|
35
|
+
<linearGradient id="paint0_linear_261_3625" x1="111.442" y1="51.8265" x2="89.8199" y2="116.824" gradientUnits="userSpaceOnUse">
|
|
36
|
+
<stop stop-color="#FFD38F"/>
|
|
37
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
38
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
39
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
40
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
41
|
+
</linearGradient>
|
|
42
|
+
<clipPath id="clip0_261_3625">
|
|
43
|
+
<rect width="200" height="200" fill="white"/>
|
|
44
|
+
</clipPath>
|
|
45
|
+
</defs>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_261_3657)">
|
|
3
|
+
<path d="M67.6847 127.802C74.9273 123.663 79 127 85 132C78.5 141.5 78.1838 142.302 68.6838 148.802C61.3407 138.406 63.9254 130.726 67.6847 127.802Z" fill="black"/>
|
|
4
|
+
<path d="M101.683 147.5C108 155.5 105.474 163.028 101.683 165.302C93.9686 168.241 87.3338 165.782 81.1836 161.097C87.6836 159.302 95 154 101.683 147.5Z" fill="black"/>
|
|
5
|
+
<path d="M88 122C86.3333 130.167 82 138.5 69.5 148.5C73 153.5 77 157 82.5 161C90.5 158.5 105.5 148.5 110 125.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
6
|
+
<path d="M93.9995 107.5C87.8328 104.667 77.6991 99.2 76.4991 94C75.4146 89.3006 78.8766 84.2473 81.2755 81.7187C81.7167 81.2535 81.9532 80.6232 81.8756 79.9868L79.7135 62.2579C79.5911 61.2544 78.7337 60.4895 77.7424 60.688C71.8436 61.8689 62.16 68.7456 58.9994 85C57.5 102 74.8333 112.667 87 116" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
7
|
+
<path d="M115 114C123.8 115.956 140.248 114.087 136.769 96.7101C136.621 95.9718 136.862 95.1939 137.396 94.6634C139.885 92.1914 143.819 87.3138 146.171 84.5284C146.891 83.6759 148.166 83.6255 148.849 84.5076C154.849 92.2513 158.7 111.787 141 122.5C130.5 128 116.5 126.5 111.5 125" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
8
|
+
<ellipse cx="101" cy="117" rx="14" ry="11" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
9
|
+
<ellipse cx="101" cy="117" rx="5" ry="4" fill="#0AD5AB"/>
|
|
10
|
+
<ellipse cx="115" cy="73" rx="35" ry="32" fill="black"/>
|
|
11
|
+
<path d="M149 67.5C149 84.897 133.33 99 114 99C94.67 99 79 84.897 79 67.5C79 50.103 94.67 36 114 36C122.521 36 130.33 38.7403 136.4 43.2952C137.913 44.4309 139.319 45.6795 140.6 47.0265C141.864 48.3554 143.007 49.78 144.014 51.2868C147.179 56.0231 149 61.5702 149 67.5Z" fill="url(#paint0_linear_261_3657)"/>
|
|
12
|
+
<path d="M138.792 45.2647C138.029 44.5758 137.231 43.9185 136.4 43.2952C130.33 38.7403 122.521 36 114 36C94.67 36 79 50.103 79 67.5C79 84.897 94.67 99 114 99C133.33 99 149 84.897 149 67.5C149 61.5702 147.179 56.0231 144.014 51.2868C143.482 50.4912 142.913 49.7184 142.307 48.9706" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
13
|
+
<path d="M104 69.9491L110.43 77.1222C111.29 78.0817 112.82 77.9894 113.558 76.9333L124 62" stroke="black" stroke-width="6" stroke-linecap="round"/>
|
|
14
|
+
<path d="M87.5001 122.5C63 114.5 56.9998 97.3333 57.9998 88.5C62.9996 107.265 77.9996 112.5 86.9994 116C86.9994 117 87.5001 121.3 87.5001 122.5Z" fill="black"/>
|
|
15
|
+
<path d="M153 107C148.2 134.2 122.333 133 110 129L111.5 124.5C141 132 149 115.5 153 107Z" fill="black"/>
|
|
16
|
+
<path d="M53 73C38.9167 73 14 84.2895 14 104.36C14 108.469 14.4387 111.151 16 114.5M44.3333 138C40.017 136.554 31.9367 132.962 25 126.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
17
|
+
<path d="M161 92C165.743 92.8696 172.736 95.4788 178.777 100.5M163 155C178 151.5 191 140 191 127C191 120.891 189.66 115.722 187.5 111.385M165 105C169.5 107.667 178.4 115.8 178 127C177.797 129.035 177.117 131.235 175.818 133.5M123.5 157C144.62 153.909 158.177 148.696 166.496 143" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
18
|
+
<path d="M165.255 137.674L171.597 132.165C172.185 131.654 173.106 131.982 173.238 132.75L174.702 141.265C174.833 142.03 174.081 142.646 173.357 142.367L165.552 139.362C164.848 139.091 164.686 138.169 165.255 137.674Z" fill="#0AD5AB"/>
|
|
19
|
+
<path d="M39 67C32.8333 68.5 18.4 74.2 10 85" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
20
|
+
<path d="M89 58C90.8537 53.6344 97.2488 44.7226 108 44" stroke="white" stroke-width="4" stroke-linecap="round"/>
|
|
21
|
+
<circle cx="20.5" cy="120.5" r="3.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
22
|
+
<path d="M157.329 41.9561C160.82 41.5799 163.447 38.8681 165.248 36.5971C165.52 36.255 166.153 36.5363 166.109 36.9708C165.694 41.0102 167.191 44.2373 169.017 46.1207C169.246 46.3574 169.143 46.7778 168.828 46.8767C166.248 47.6888 163.272 49.7223 160.869 52.8985C160.625 53.2204 160.066 53.0438 160.054 52.6404C159.959 49.2686 159.146 45.5389 157 42.6964C156.791 42.4198 156.984 41.9932 157.329 41.9561Z" fill="black"/>
|
|
23
|
+
<path d="M64.4118 41.0174C66.4263 39.8292 67.4463 37.5775 68.057 35.6443C68.1886 35.2278 68.9128 35.247 69.0559 35.6597C69.9407 38.2114 71.6793 39.8501 73.3275 40.6348C73.6251 40.7765 73.6881 41.2096 73.4394 41.426C71.9953 42.683 70.6292 44.7571 69.8612 47.3861C69.7481 47.7735 69.1508 47.8213 68.981 47.4552C67.9865 45.3112 66.4756 43.1694 64.3879 41.853C64.0947 41.6681 64.1133 41.1935 64.4118 41.0174Z" fill="black"/>
|
|
24
|
+
<circle cx="183.5" cy="105.5" r="3.5" stroke="black" stroke-width="2" stroke-linecap="round"/>
|
|
25
|
+
</g>
|
|
26
|
+
<defs>
|
|
27
|
+
<linearGradient id="paint0_linear_261_3657" x1="126.179" y1="28.7189" x2="104.31" y2="98.9531" gradientUnits="userSpaceOnUse">
|
|
28
|
+
<stop stop-color="#FFD38F"/>
|
|
29
|
+
<stop offset="0.306473" stop-color="#BFFFF0"/>
|
|
30
|
+
<stop offset="0.578125" stop-color="#6BFFC9"/>
|
|
31
|
+
<stop offset="0.817708" stop-color="#2EE9F3"/>
|
|
32
|
+
<stop offset="1" stop-color="#DAB4FF"/>
|
|
33
|
+
</linearGradient>
|
|
34
|
+
<clipPath id="clip0_261_3657">
|
|
35
|
+
<rect width="200" height="200" fill="white"/>
|
|
36
|
+
</clipPath>
|
|
37
|
+
</defs>
|
|
38
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.341606 12.1702C0.164207 6.81807 2.90089 2.38019 5.03062 2.38019C6.20063 2.38019 7.86061 4.29798 8.42077 6.26045H12.4847C15.6213 6.26045 17.8091 8.5043 17.8091 11.6573C17.8091 14.8967 16.1206 18.3333 12.4847 18.3333H6.45049C3.21503 18.3333 0.343011 15.3458 0.341606 12.1702Z" fill="url(#paint0_linear_243_9736)"/>
|
|
3
|
+
<path d="M19.6586 11.326C19.836 5.97383 17.0992 1.66663 14.9695 1.66663C13.8964 1.66663 12.4978 3.20583 11.7618 4.57196H7.51544C3.87959 4.57196 2.1911 8.06114 2.1911 11.3006C2.1911 14.4535 4.37885 16.6448 7.51544 16.6448H13.5497C16.9612 16.6448 19.6476 14.7743 19.6586 11.326Z" fill="url(#paint1_linear_243_9736)"/>
|
|
4
|
+
<path d="M7.6718 4.57196H7.51544C3.87959 4.57196 2.1911 8.06114 2.1911 11.3006C2.1911 14.4536 4.37885 16.6448 7.51544 16.6448H13.5497C14.6762 16.6448 15.7237 16.4409 16.6218 16.0435C17.4228 14.8014 17.8091 13.2068 17.8091 11.6573C17.8091 8.50433 15.6214 6.26047 12.4848 6.26047H8.4208C8.25435 5.67731 7.99077 5.09809 7.6718 4.57196Z" fill="url(#paint2_linear_243_9736)"/>
|
|
5
|
+
<ellipse cx="6.27816" cy="10.7888" rx="1.24071" ry="1.99551" fill="white"/>
|
|
6
|
+
<ellipse cx="13.7223" cy="10.7888" rx="1.24071" ry="1.99551" fill="white"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<linearGradient id="paint0_linear_243_9736" x1="14.8855" y1="18.3333" x2="3.92538" y2="2.44459" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#B5A9FF"/>
|
|
10
|
+
<stop offset="1" stop-color="#00FF9D"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="paint1_linear_243_9736" x1="17.2956" y1="15.9894" x2="17.079" y2="1.66991" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop offset="0.248572" stop-color="#EBB3FF"/>
|
|
14
|
+
<stop offset="1" stop-color="#B081FD"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<linearGradient id="paint2_linear_243_9736" x1="15.2366" y1="6.69199" x2="5.08875" y2="15.9096" gradientUnits="userSpaceOnUse">
|
|
17
|
+
<stop stop-color="#5B0147"/>
|
|
18
|
+
<stop offset="1" stop-color="#00255C"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 文件 / 产物图标统一 lookup
|
|
3
|
+
*
|
|
4
|
+
* - 同一份资源被 ChatInput 的「附件 chip」和 ChatMessage 的「用户消息附件卡 / 产物卡」共用
|
|
5
|
+
* - 优先级(getFileTypeIcon):file.iconSrc → file.iconType → 文件扩展名 → fallback (pdf)
|
|
6
|
+
*
|
|
7
|
+
* 业务类型字典(iconType / 显式语义):
|
|
8
|
+
* pdf | code | xmind | pe | conversation | image | batch-report | document
|
|
9
|
+
* knowledge | strategy | webpage | table | feishu | feishu-card | feishu-sheet
|
|
10
|
+
*
|
|
11
|
+
* 扩展名兜底字典:
|
|
12
|
+
* .pdf → pdf
|
|
13
|
+
* .png/.jpg/.jpeg/.gif/.webp/.svg → image
|
|
14
|
+
* .doc/.docx/.txt/.md → document
|
|
15
|
+
* .xls/.xlsx/.csv → table
|
|
16
|
+
* .xmind → xmind
|
|
17
|
+
* .js/.ts/.jsx/.tsx/.py/.json/.html/.css → code
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
import pdfIcon from './pdf.png';
|
|
21
|
+
import codeIcon from './code.png';
|
|
22
|
+
import peIcon from './pe.png';
|
|
23
|
+
import xmindIcon from './xmind.png';
|
|
24
|
+
import conversationIcon from './conversation.png';
|
|
25
|
+
import imageIcon from './image.png';
|
|
26
|
+
import batchReportIcon from './batch-report.png';
|
|
27
|
+
import documentIcon from './document.png';
|
|
28
|
+
import knowledgeIcon from './knowledge.png';
|
|
29
|
+
import strategyIcon from './strategy.png';
|
|
30
|
+
import webpageIcon from './webpage.png';
|
|
31
|
+
import tableIcon from './table.png';
|
|
32
|
+
import feishuIcon from './feishu.png';
|
|
33
|
+
import feishuCardIcon from './feishu-card.png';
|
|
34
|
+
import feishuSheetIcon from './feishu-sheet.png';
|
|
35
|
+
|
|
36
|
+
/* 业务语义 → 图标资源(用于产物 / 自定义场景显式指定) */
|
|
37
|
+
export const FILE_TYPE_ICONS = {
|
|
38
|
+
pdf: pdfIcon,
|
|
39
|
+
code: codeIcon,
|
|
40
|
+
pe: peIcon,
|
|
41
|
+
xmind: xmindIcon,
|
|
42
|
+
conversation: conversationIcon,
|
|
43
|
+
image: imageIcon,
|
|
44
|
+
'batch-report': batchReportIcon,
|
|
45
|
+
document: documentIcon,
|
|
46
|
+
knowledge: knowledgeIcon,
|
|
47
|
+
strategy: strategyIcon,
|
|
48
|
+
webpage: webpageIcon,
|
|
49
|
+
table: tableIcon,
|
|
50
|
+
feishu: feishuIcon,
|
|
51
|
+
'feishu-card': feishuCardIcon,
|
|
52
|
+
'feishu-sheet': feishuSheetIcon,
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
/* 文件扩展名 → 业务语义类型(兜底使用) */
|
|
56
|
+
const EXT_TO_TYPE = {
|
|
57
|
+
pdf: 'pdf',
|
|
58
|
+
png: 'image',
|
|
59
|
+
jpg: 'image',
|
|
60
|
+
jpeg: 'image',
|
|
61
|
+
gif: 'image',
|
|
62
|
+
webp: 'image',
|
|
63
|
+
svg: 'image',
|
|
64
|
+
doc: 'document',
|
|
65
|
+
docx: 'document',
|
|
66
|
+
txt: 'document',
|
|
67
|
+
md: 'document',
|
|
68
|
+
xls: 'table',
|
|
69
|
+
xlsx: 'table',
|
|
70
|
+
csv: 'table',
|
|
71
|
+
xmind: 'xmind',
|
|
72
|
+
js: 'code',
|
|
73
|
+
ts: 'code',
|
|
74
|
+
jsx: 'code',
|
|
75
|
+
tsx: 'code',
|
|
76
|
+
py: 'code',
|
|
77
|
+
json: 'code',
|
|
78
|
+
html: 'code',
|
|
79
|
+
css: 'code',
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
export const FILE_TYPE_FALLBACK = pdfIcon;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* 统一文件图标解析
|
|
86
|
+
* @param {object|string} fileOrName - 文件对象 { name, iconSrc?, iconType? } 或裸文件名字符串
|
|
87
|
+
* @returns {string} 图标资源 URL
|
|
88
|
+
*/
|
|
89
|
+
export function getFileTypeIcon(fileOrName) {
|
|
90
|
+
if (!fileOrName) return FILE_TYPE_FALLBACK;
|
|
91
|
+
if (typeof fileOrName === 'string') {
|
|
92
|
+
return resolveByName(fileOrName);
|
|
93
|
+
}
|
|
94
|
+
if (fileOrName.iconSrc) return fileOrName.iconSrc;
|
|
95
|
+
if (fileOrName.iconType && FILE_TYPE_ICONS[fileOrName.iconType]) {
|
|
96
|
+
return FILE_TYPE_ICONS[fileOrName.iconType];
|
|
97
|
+
}
|
|
98
|
+
return resolveByName(fileOrName.name);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function resolveByName(name) {
|
|
102
|
+
const ext = String(name ?? '').split('.').pop()?.toLowerCase();
|
|
103
|
+
const type = EXT_TO_TYPE[ext];
|
|
104
|
+
return (type && FILE_TYPE_ICONS[type]) || FILE_TYPE_FALLBACK;
|
|
105
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|