Skip to content

Commit

Permalink
fix(core): update icons on the account page (#941)
Browse files Browse the repository at this point in the history
Co-authored-by: “bc-yevhenii-buliuk” <“yevhenii.buliuk@bigcommerce.com”>
  • Loading branch information
bc-yevhenii-buliuk and “bc-yevhenii-buliuk” committed May 23, 2024
1 parent 956d738 commit 19a3d14
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/stupid-hairs-clean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bigcommerce/catalyst-core": patch
---

update icons on the account page
12 changes: 6 additions & 6 deletions core/app/[locale]/(default)/account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ export default async function AccountPage({ params: { locale } }: Props) {

<div className="mb-14 grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<AccountItem href="/account/orders" title={t('orders')}>
<Package className="me-8" height={48} width={48} />
<Package className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
<AccountItem href="/account/messages" title={t('messages')}>
<Mail className="me-8" height={48} width={48} />
<Mail className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
<AccountItem href="/account/addresses" title={t('addresses')}>
<BookUser className="me-8" height={48} width={48} />
<BookUser className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
<AccountItem href="/account/wishlists" title={t('wishlists')}>
<Gift className="me-8" height={48} width={48} />
<Gift className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
<AccountItem href="/account/recently-viewed" title={t('recentlyViewed')}>
<Eye className="me-8" height={48} width={48} />
<Eye className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
<AccountItem href="/account/settings" title={t('settings')}>
<Settings className="me-8" height={48} width={48} />
<Settings className="me-8" size={48} strokeWidth={1.5} />
</AccountItem>
</div>
</div>
Expand Down

0 comments on commit 19a3d14

Please sign in to comment.