Skip to content

Commit

Permalink
releasef inv button icon change
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammers21 committed Apr 22, 2024
1 parent f1f09e6 commit 23da45a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/containers/Profile/PlayerHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import OpenInNewIcon from "@mui/icons-material/OpenInNew";
import CopyButton from "@/components/CopyButton";
import type { IPlayer } from "@/types";
import EmailIcon from "@mui/icons-material/Email";
import GroupAddIcon from '@mui/icons-material/GroupAdd';

interface IProps {
player: IPlayer;
Expand Down Expand Up @@ -44,7 +45,7 @@ const InviteButtons = ({ player }: { player: IPlayer }) => {
return (
<div className="flex gap-2 !text-xs">
<CopyButton content={copyCommand} displayCopyIcon={false} copiedText="/INV Copied!">
<EmailIcon fontSize="small" className="!w-4 !h-4 mr-1" />
<GroupAddIcon fontSize="small" className="!w-4 !h-4 mr-1" />
Invite
</CopyButton>
</div>
Expand Down

0 comments on commit 23da45a

Please sign in to comment.