Skip to content

Commit

Permalink
feat: increase icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
mwskwong committed Dec 17, 2024
1 parent f5066e1 commit 1ab0757
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const Footer: FC<FooterProps> = async (props) => {
rel="noopener"
target="_blank"
>
<Icon size={18} />
<Icon size={20} />
</a>
</IconButton>
))}
Expand Down
4 changes: 2 additions & 2 deletions src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ export const Header: FC<HeaderProps> = async (props) => {
{socialMedia.map(({ Icon, href, name }) => (
<IconButton key={href} asChild color="gray" variant="ghost">
<a aria-label={name} href={href} rel="noopener" target="_blank">
<Icon size={18} />
<Icon size={20} />
</a>
</IconButton>
))}
<Popover.Root>
<Popover.Trigger className="sm:hidden">
<IconButton aria-label="nav menu" color="gray" variant="ghost">
<IconMenu size={18} />
<IconMenu size={20} />
</IconButton>
</Popover.Trigger>
<Popover.Content asChild align="end">
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const About: FC = async (props) => {
{links.map(({ Icon, href, name }) => (
<Flex key={href} asChild align="center" gap="3">
<Link href={href} target="_blank">
<Icon size={18} />
<Icon size={20} />
{name}
</Link>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Hero: FC<HeroProps> = async (props) => {
</Button>
<Button asChild highContrast size="4" variant="soft">
<a href={linkedin} rel="noopener" target="_blank">
<IconBrandLinkedin size={18} />
<IconBrandLinkedin size={20} />
LinkedIn
</a>
</Button>
Expand Down

0 comments on commit 1ab0757

Please sign in to comment.