Răsfoiți Sursa

chore(dashboard): Update icon for DetailPageButton

Michael Bromley 8 luni în urmă
părinte
comite
bce092ea1b

+ 2 - 2
packages/dashboard/src/lib/components/shared/detail-page-button.tsx

@@ -1,6 +1,6 @@
 import { Link } from '@tanstack/react-router';
+import { ChevronRight } from 'lucide-react';
 import { Button } from '../ui/button.js';
-import { SquareArrowOutUpRightIcon } from 'lucide-react';
 
 export function DetailPageButton({
     id,
@@ -15,7 +15,7 @@ export function DetailPageButton({
         <Button asChild variant="ghost" disabled={disabled}>
             <Link to={`./${id}`}>
                 {label}
-                {!disabled && <SquareArrowOutUpRightIcon className="h-3 w-3 text-muted-foreground" />}
+                {!disabled && <ChevronRight className="h-3 w-3 text-muted-foreground" />}
             </Link>
         </Button>
     );