Skip to content

Commit

Permalink
make socials all bold
Browse files Browse the repository at this point in the history
  • Loading branch information
sphinxrave committed Jun 29, 2024
1 parent 2a38f8e commit 262eefc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/react/src/components/channel/ChannelCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { ChannelMenu } from "./ChannelMenu";
import { ChannelImg } from "./ChannelImg";
import { TopicBadge } from "../topic/TopicBadge";
import { ChannelSocials } from "./ChannelSocials";
import type { SetOptional } from "type-fest";
import { Link, useNavigate } from "react-router-dom";

type WithNonOptional<T, NonOptionalKeys extends keyof T> = Pick<
Expand Down
8 changes: 4 additions & 4 deletions packages/react/src/components/channel/ChannelSocials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function ChannelSocials({
asChild
>
<Link to={`https://x.com/${twitter}`}>
<div className="i-lucide:twitter" />
<div className="i-mdi:twitter" />
</Link>
</Button>
)}
Expand All @@ -55,7 +55,7 @@ export function ChannelSocials({
asChild
>
<Link to={`https://twitch.tv/${twitch}`}>
<div className="i-lucide:twitch" />
<div className="i-mdi:twitch" />
</Link>
</Button>
)}
Expand Down Expand Up @@ -120,14 +120,14 @@ export function ChannelSocials({
{twitter && (
<Button asChild className="w-full" variant="ghost" size="icon-lg">
<Link to={`https://x.com/${twitter}`} target="_blank">
<div className="i-lucide:twitter" />
<div className="i-mdi:twitter" />
</Link>
</Button>
)}
{twitch && (
<Button asChild className="w-full" variant="ghost" size="icon-lg">
<Link to={`https://twitch.tv/${twitch}`} target="_blank">
<div className="i-lucide:twitch" />
<div className="i-mdi:twitch" />
</Link>
</Button>
)}
Expand Down

0 comments on commit 262eefc

Please sign in to comment.