diff options
| author | codetorso <[email protected]> | 2024-07-18 23:14:48 +0530 |
|---|---|---|
| committer | codetorso <[email protected]> | 2024-07-18 23:14:48 +0530 |
| commit | ebf5b29cc7ab22e7d70574b1b2519df924878f85 (patch) | |
| tree | fd9b4bba0f067714322fa93a35fd35dc2d385315 /packages | |
| parent | searchparams refactor (diff) | |
| download | supermemory-ebf5b29cc7ab22e7d70574b1b2519df924878f85.tar.xz supermemory-ebf5b29cc7ab22e7d70574b1b2519df924878f85.zip | |
improved textarea layout + home page imrpovemnts
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/icons/arrowright.svg | 4 | ||||
| -rw-r--r-- | packages/ui/shadcn/command.tsx | 2 | ||||
| -rw-r--r-- | packages/ui/shadcn/divider.tsx | 7 |
3 files changed, 4 insertions, 9 deletions
diff --git a/packages/ui/icons/arrowright.svg b/packages/ui/icons/arrowright.svg index 2263251c..13d24bf5 100644 --- a/packages/ui/icons/arrowright.svg +++ b/packages/ui/icons/arrowright.svg @@ -1 +1,3 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="#989EA4" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M11.25 16.25L17.5 10M17.5 10L11.25 3.75M17.5 10H2.5"/></svg>
\ No newline at end of file +<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M10.25 13.25L16.5 7M16.5 7L10.25 0.75M16.5 7H1.5" stroke="#369DFD" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> +</svg> diff --git a/packages/ui/shadcn/command.tsx b/packages/ui/shadcn/command.tsx index 94c4434f..9b95f4c7 100644 --- a/packages/ui/shadcn/command.tsx +++ b/packages/ui/shadcn/command.tsx @@ -38,7 +38,7 @@ const CommandInput = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Input>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input> >(({ className , ...props }, ref) => ( - <div className="flex items-center px-3" cmdk-input-wrapper=""> + <div className="" cmdk-input-wrapper=""> <CommandPrimitive.Input ref={ref} className={cn( diff --git a/packages/ui/shadcn/divider.tsx b/packages/ui/shadcn/divider.tsx deleted file mode 100644 index a6dc9933..00000000 --- a/packages/ui/shadcn/divider.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import { cn } from "@repo/ui/lib/utils"; - -function Divider({ className }: { className?: string }) { - return <div className={cn("bg-[#2D343A] h-[1px] w-full", className)}></div>; -} - -export default Divider; |