Skip to content

Commit 5bb4fbd

Browse files
authored
Update all star count icons to use GitHub icon (#153)
Co-authored-by: Chris Tate <ctate@users.noreply.github.com>
1 parent fde5a6a commit 5bb4fbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/home-page-mobile-footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22

33
import { Button } from '@/components/ui/button'
4-
import { Star } from 'lucide-react'
4+
import { GitHubIcon } from '@/components/icons/github-icon'
55
import { VERCEL_DEPLOY_URL } from '@/lib/constants'
66

77
const GITHUB_REPO_URL = 'https://github.com/vercel-labs/coding-agent-template'
@@ -22,7 +22,7 @@ export function HomePageMobileFooter({ initialStars = 1056 }: HomePageMobileFoot
2222
rel="noopener noreferrer"
2323
className="flex items-center justify-center gap-2"
2424
>
25-
<Star className="h-4 w-4" />
25+
<GitHubIcon className="h-4 w-4" />
2626
<span className="text-sm font-medium">{initialStars.toLocaleString()}</span>
2727
</a>
2828
</Button>

0 commit comments

Comments
 (0)