diff options
| author | nexxeln <[email protected]> | 2025-12-02 18:37:24 +0000 |
|---|---|---|
| committer | nexxeln <[email protected]> | 2025-12-02 18:37:24 +0000 |
| commit | dfb0c05ab33cb20537002eaeb896e6b2ab35af25 (patch) | |
| tree | 49ecaa46903671d96f2f9ebc5af688ab2ea2c7bd /packages/memory-graph/src/assets | |
| parent | Fix: Update discord links in README.md and CONTRIBUTING.md (#598) (diff) | |
| download | supermemory-update-memory-graph.tar.xz supermemory-update-memory-graph.zip | |
add spaces selector with search (#600)update-memory-graph
relevant files to review:
\- memory-graph.tsx
\- spaces-dropdown.tsx
\- spaces-dropdown.css.ts
Diffstat (limited to 'packages/memory-graph/src/assets')
| -rw-r--r-- | packages/memory-graph/src/assets/icons.tsx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/packages/memory-graph/src/assets/icons.tsx b/packages/memory-graph/src/assets/icons.tsx index 5383f690..5eb38b42 100644 --- a/packages/memory-graph/src/assets/icons.tsx +++ b/packages/memory-graph/src/assets/icons.tsx @@ -22,7 +22,7 @@ export const OneDrive = ({ className }: { className?: string }) => ( fill="#28A8EA" /> </svg> -); +) export const GoogleDrive = ({ className }: { className?: string }) => ( <svg @@ -56,7 +56,7 @@ export const GoogleDrive = ({ className }: { className?: string }) => ( fill="#FFBA00" /> </svg> -); +) export const Notion = ({ className }: { className?: string }) => ( <svg @@ -71,7 +71,7 @@ export const Notion = ({ className }: { className?: string }) => ( /> <path d="M164.09.608L16.092 11.538C4.155 12.573 0 20.374 0 29.726v162.245c0 7.284 2.585 13.516 8.826 21.843l34.789 45.237c5.715 7.284 10.912 8.844 21.825 8.327l171.864-10.404c14.532-1.035 18.696-7.801 18.696-19.24V55.207c0-5.911-2.336-7.614-9.21-12.66l-1.185-.856L198.37 8.409C186.94.1 182.27-.952 164.09.608M69.327 52.22c-14.033.945-17.216 1.159-25.186-5.323L23.876 30.778c-2.06-2.086-1.026-4.69 4.163-5.207l142.274-10.395c11.947-1.043 18.17 3.12 22.842 6.758l24.401 17.68c1.043.525 3.638 3.637.517 3.637L71.146 52.095zm-16.36 183.954V81.222c0-6.767 2.077-9.887 8.3-10.413L230.02 60.93c5.724-.517 8.31 3.12 8.31 9.879v153.917c0 6.767-1.044 12.49-10.387 13.008l-161.487 9.361c-9.343.517-13.489-2.594-13.489-10.921M212.377 89.53c1.034 4.681 0 9.362-4.681 9.897l-7.783 1.542v114.404c-6.758 3.637-12.981 5.715-18.18 5.715c-8.308 0-10.386-2.604-16.609-10.396l-50.898-80.079v77.476l16.1 3.646s0 9.362-12.989 9.362l-35.814 2.077c-1.043-2.086 0-7.284 3.63-8.318l9.351-2.595V109.823l-12.98-1.052c-1.044-4.68 1.55-11.439 8.826-11.965l38.426-2.585l52.958 81.113v-71.76l-13.498-1.552c-1.043-5.733 3.111-9.896 8.3-10.404z" /> </svg> -); +) export const GoogleDocs = ({ className }: { className?: string }) => ( <svg @@ -85,7 +85,7 @@ export const GoogleDocs = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const GoogleSheets = ({ className }: { className?: string }) => ( <svg @@ -99,7 +99,7 @@ export const GoogleSheets = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const GoogleSlides = ({ className }: { className?: string }) => ( <svg @@ -113,7 +113,7 @@ export const GoogleSlides = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const NotionDoc = ({ className }: { className?: string }) => ( <svg @@ -127,7 +127,7 @@ export const NotionDoc = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const MicrosoftWord = ({ className }: { className?: string }) => ( <svg @@ -141,7 +141,7 @@ export const MicrosoftWord = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const MicrosoftExcel = ({ className }: { className?: string }) => ( <svg @@ -155,7 +155,7 @@ export const MicrosoftExcel = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const MicrosoftPowerpoint = ({ className }: { className?: string }) => ( <svg @@ -169,7 +169,7 @@ export const MicrosoftPowerpoint = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const MicrosoftOneNote = ({ className }: { className?: string }) => ( <svg @@ -183,7 +183,7 @@ export const MicrosoftOneNote = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) export const PDF = ({ className }: { className?: string }) => ( <svg @@ -205,4 +205,4 @@ export const PDF = ({ className }: { className?: string }) => ( fill="currentColor" /> </svg> -); +) |