diff options
| author | codetorso <[email protected]> | 2024-07-25 10:56:32 +0530 |
|---|---|---|
| committer | codetorso <[email protected]> | 2024-07-25 10:56:32 +0530 |
| commit | c7b98a39b8024c96f1230a513a6d64d763b74277 (patch) | |
| tree | 0bc3260cfce7cbf5666948f21864806b6d2a9760 /packages | |
| parent | parse suggestions for handling edge case (diff) | |
| download | supermemory-c7b98a39b8024c96f1230a513a6d64d763b74277.tar.xz supermemory-c7b98a39b8024c96f1230a513a6d64d763b74277.zip | |
let's go boys!! canvas
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/icons/bottomleft.svg | 14 | ||||
| -rw-r--r-- | packages/ui/icons/bottomright.svg | 14 | ||||
| -rw-r--r-- | packages/ui/icons/index.ts | 8 | ||||
| -rw-r--r-- | packages/ui/icons/topleft.svg | 14 | ||||
| -rw-r--r-- | packages/ui/icons/topright.svg | 14 |
5 files changed, 64 insertions, 0 deletions
diff --git a/packages/ui/icons/bottomleft.svg b/packages/ui/icons/bottomleft.svg new file mode 100644 index 00000000..7f1558f7 --- /dev/null +++ b/packages/ui/icons/bottomleft.svg @@ -0,0 +1,14 @@ + <svg + width="48" + height="48" + viewBox="0 0 48 48" + fill="none" + xmlns="http://www.w3.org/2000/svg" + > + <path + d="M44 44H12C7.58172 44 4 40.4183 4 36V4" + stroke="#5f777f" + stroke-width="8" + stroke-linecap="round" + /> + </svg>
\ No newline at end of file diff --git a/packages/ui/icons/bottomright.svg b/packages/ui/icons/bottomright.svg new file mode 100644 index 00000000..69c350b2 --- /dev/null +++ b/packages/ui/icons/bottomright.svg @@ -0,0 +1,14 @@ + <svg + width="48" + height="48" + viewBox="0 0 48 48" + fill="none" + xmlns="http://www.w3.org/2000/svg" + > + <path + d="M4 44H36C40.4183 44 44 40.4183 44 36V4" + stroke="#5f777f" + stroke-width="8" + stroke-linecap="round" + /> + </svg>
\ No newline at end of file diff --git a/packages/ui/icons/index.ts b/packages/ui/icons/index.ts index cdbc0024..13f75a7c 100644 --- a/packages/ui/icons/index.ts +++ b/packages/ui/icons/index.ts @@ -15,6 +15,10 @@ import BlockIcon from "./block.svg"; import DragIcon from "./drag.svg"; import SettingsIcon from "./settings.svg"; import HomeIcon from "./home.svg"; +import TopRightIcon from "./topright.svg" +import TopLeftIcon from "./topleft.svg" +import BomttomRightIcon from "./bottomright.svg" +import BomttomLeftIcon from "./bottomleft.svg" export { AddIcon, @@ -34,4 +38,8 @@ export { DragIcon, SettingsIcon, HomeIcon, + TopRightIcon, + TopLeftIcon, + BomttomRightIcon, + BomttomLeftIcon, }; diff --git a/packages/ui/icons/topleft.svg b/packages/ui/icons/topleft.svg new file mode 100644 index 00000000..8b43f1fc --- /dev/null +++ b/packages/ui/icons/topleft.svg @@ -0,0 +1,14 @@ + <svg + width="48" + height="48" + viewBox="0 0 48 48" + fill="none" + xmlns="http://www.w3.org/2000/svg" + > + <path + d="M4 4H36C40.4183 4 44 7.58172 44 12V44" + stroke="#5f777f" + stroke-width="8" + stroke-linecap="round" + /> + </svg>
\ No newline at end of file diff --git a/packages/ui/icons/topright.svg b/packages/ui/icons/topright.svg new file mode 100644 index 00000000..4ec3649b --- /dev/null +++ b/packages/ui/icons/topright.svg @@ -0,0 +1,14 @@ + <svg + width="48" + height="48" + viewBox="0 0 48 48" + fill="none" + xmlns="http://www.w3.org/2000/svg" + > + <path + d="M44 4H12C7.58172 4 4 7.58172 4 12V44" + stroke="#5f777f" + stroke-width="8" + stroke-linecap="round" + /> + </svg>
\ No newline at end of file |