File tree 4 files changed +11
-7
lines changed
4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Link, useLocation } from '@remix-run/react';
2
2
3
3
import { DocsRoutes } from '@/docs.routes' ;
4
4
import { cn } from '@/utils/index' ;
5
- import { ArrowUpRight } from '@phosphor-icons/ react' ;
5
+ import { ArrowUpRight } from 'lucide- react' ;
6
6
7
7
const SidebarContent = ( ) => {
8
8
const location = useLocation ( ) ;
@@ -51,7 +51,7 @@ const SidebarContent = () => {
51
51
className = "flex items-center py-1 text-neutral-600 transition-colors duration-100 hover:text-black dark:text-neutral-400 dark:decoration-neutral-700 dark:hover:text-white"
52
52
>
53
53
< span > Create an issue</ span >
54
- < ArrowUpRight height = { 10 } />
54
+ < ArrowUpRight height = { 14 } />
55
55
</ a >
56
56
</ div >
57
57
</ nav >
Original file line number Diff line number Diff line change 1
- import { Moon , Sun } from '@phosphor-icons/ react' ;
1
+ import { Moon , Sun } from 'lucide- react' ;
2
2
import { Theme , useTheme } from 'remix-themes' ;
3
3
4
4
import {
@@ -16,7 +16,11 @@ export function ModeToggle() {
16
16
< DropdownMenu >
17
17
< DropdownMenuTrigger asChild >
18
18
< Button variant = "ghost" size = "icon" >
19
- { theme === Theme . LIGHT ? < Moon size = { 20 } /> : < Sun size = { 20 } /> }
19
+ { theme === Theme . LIGHT ? (
20
+ < Moon size = { 22 } strokeWidth = { 1.5 } />
21
+ ) : (
22
+ < Sun size = { 22 } strokeWidth = { 1.5 } />
23
+ ) }
20
24
< span className = "sr-only" > Toggle theme</ span >
21
25
</ Button >
22
26
</ DropdownMenuTrigger >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { MetaFunction } from '@vercel/remix';
2
2
import { useToast } from '@pheralb/toast' ;
3
3
import { SparkleCard } from '@/ui/sparkle-card' ;
4
4
import { Button } from '@/ui/button' ;
5
- import { Sparkle } from '@phosphor-icons/ react' ;
5
+ import { Sparkles } from 'lucide- react' ;
6
6
7
7
export const meta : MetaFunction = ( ) => {
8
8
return [
@@ -35,7 +35,7 @@ export default function Index() {
35
35
} )
36
36
}
37
37
>
38
- < Sparkle height = { 14 } width = { 14 } />
38
+ < Sparkles height = { 14 } width = { 14 } />
39
39
< span > Render a toast</ span >
40
40
</ Button >
41
41
< Button
Original file line number Diff line number Diff line change 2
2
3
3
import * as React from 'react' ;
4
4
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu' ;
5
- import { Check , ArrowRight , CheckCircle } from '@phosphor-icons/ react' ;
5
+ import { Check , ArrowRight , CheckCircle } from 'lucide- react' ;
6
6
7
7
import { cn } from '@/utils' ;
8
8
You can’t perform that action at this time.
0 commit comments