Skip to content

Commit

Permalink
chore: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
patricio0312rev committed Feb 11, 2025
1 parent 78c9ca8 commit f93728a
Show file tree
Hide file tree
Showing 6 changed files with 680 additions and 167 deletions.
18 changes: 9 additions & 9 deletions src/app/components/Avatar/__snapshots__/Avatar.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`Avatar > should render 1`] = `
<DocumentFragment>
<div
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-6 ring-theme-background shrink-0"
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -22,7 +22,7 @@ exports[`Avatar > should render 1`] = `
exports[`Avatar > should render with custom shadow color 1`] = `
<DocumentFragment>
<div
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-6 ring-theme-black shrink-0"
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-0 ring-theme-black shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -41,7 +41,7 @@ exports[`Avatar > should render with custom shadow color 1`] = `
exports[`Avatar > should render with highlight 1`] = `
<DocumentFragment>
<div
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-6 ring-theme-background shrink-0"
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -60,7 +60,7 @@ exports[`Avatar > should render with highlight 1`] = `
exports[`Avatar > should render with highlight and custom shadow color 1`] = `
<DocumentFragment>
<div
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-6 ring-theme-black shrink-0"
class="relative inline-flex h-10 w-10 items-center justify-center rounded-full align-middle transition-all duration-100 ring-0 ring-theme-black shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -79,7 +79,7 @@ exports[`Avatar > should render with highlight and custom shadow color 1`] = `
exports[`Avatar > should render with size 1`] = `
<DocumentFragment>
<div
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-5 w-5 text-sm ring-6 ring-theme-background shrink-0"
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-5 w-5 text-sm ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -98,7 +98,7 @@ exports[`Avatar > should render with size 1`] = `
exports[`Avatar > should render with size 2`] = `
<DocumentFragment>
<div
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-8 w-8 text-sm ring-6 ring-theme-background shrink-0"
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-8 w-8 text-sm ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -117,7 +117,7 @@ exports[`Avatar > should render with size 2`] = `
exports[`Avatar > should render with size 3`] = `
<DocumentFragment>
<div
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-6 w-6 text-xs ring-6 ring-theme-background shrink-0"
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-6 w-6 text-xs ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -136,7 +136,7 @@ exports[`Avatar > should render with size 3`] = `
exports[`Avatar > should render with size 4`] = `
<DocumentFragment>
<div
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-11 w-11 text-sm ring-6 ring-theme-background shrink-0"
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-11 w-11 text-sm ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand All @@ -155,7 +155,7 @@ exports[`Avatar > should render with size 4`] = `
exports[`Avatar > should render with size 5`] = `
<DocumentFragment>
<div
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-16 w-16 text-xl ring-6 ring-theme-background shrink-0"
class="relative inline-flex items-center justify-center rounded-full align-middle transition-all duration-100 h-16 w-16 text-xl ring-0 ring-theme-background shrink-0"
data-testid="Avatar"
>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { useProfileBalance } from "@/app/hooks/use-profile-balance";
import { Amount } from "@/app/components/Amount";
import { assertString } from "@/utils/assertions";
import { HideBalance } from "@/app/components/NavigationBar/components/HideBalance/HideBalance";
import { Contracts } from "@ardenthq/sdk-profiles";

export const UserMenu: FC<UserMenuProperties> = ({ onUserAction, avatarImage, userInitials }) => {
const { t } = useTranslation();
Expand Down
Loading

0 comments on commit f93728a

Please sign in to comment.