Skip to content

Commit

Permalink
change user groups icon to be a Plus sign (#70)
Browse files Browse the repository at this point in the history
* change user groups icon to be a Plus sign

* correct plus Icon
  • Loading branch information
brenol authored Jun 27, 2024
1 parent 370d54a commit b01b6cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/pages/groups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Head from 'next/head';
import MainLayout from '~/components/Layout/MainLayout';
import clsx from 'clsx';
import { Button } from '~/components/ui/button';
import { UserPlusIcon } from '@heroicons/react/24/solid';
import { PlusIcon } from '@heroicons/react/24/solid';
import { getServerAuthSessionForSSG } from '~/server/auth';
import { type User } from '@prisma/client';
import { api } from '~/utils/api';
Expand All @@ -26,7 +26,7 @@ const BalancePage: NextPageWithUser = () => {
title="Groups"
actions={
<CreateGroup>
<UserPlusIcon className="h-6 w-6 text-primary" />
<PlusIcon className="h-6 w-6 text-primary" />
</CreateGroup>
}
>
Expand All @@ -40,7 +40,7 @@ const BalancePage: NextPageWithUser = () => {
>
<CreateGroup>
<Button>
<UserPlusIcon className="mr-2 h-4 w-4" />
<PlusIcon className="mr-2 h-4 w-4" />
Create Group
</Button>
</CreateGroup>
Expand Down Expand Up @@ -109,4 +109,4 @@ const GroupBalance: React.FC<{

BalancePage.auth = true;

export default BalancePage;
export default BalancePage;
2 changes: 1 addition & 1 deletion src/pages/groups/[groupId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,4 +386,4 @@ const BalancePage: NextPageWithUser = ({ user }) => {

BalancePage.auth = true;

export default BalancePage;
export default BalancePage;

0 comments on commit b01b6cf

Please sign in to comment.