Skip to content

Commit 5ef8dfa

Browse files
committed
fix: check icon from profile pic
1 parent 95ac56b commit 5ef8dfa

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/themes/alpha/components/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import UserProps from '@interfaces/user';
22
import Image from 'next/image';
3-
import { CircleWavyCheck } from '@phosphor-icons/react';
3+
import { CircleWavyCheckIcon } from '@phosphor-icons/react';
44
import { SocialLinks } from './SocialLinks';
55

66
function Header({ fullname, image, role, socialLinks }: UserProps) {
@@ -22,7 +22,7 @@ function Header({ fullname, image, role, socialLinks }: UserProps) {
2222
)}
2323

2424
<div className="text-orange-300 absolute bottom-3 right-0 ">
25-
<CircleWavyCheck weight="fill" size={28} />
25+
<CircleWavyCheckIcon weight="fill" size={28} />
2626
</div>
2727
</div>
2828

src/themes/dracula/components/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import UserProps from '@interfaces/user';
22
import Image from 'next/image';
3-
import { CircleWavyCheck } from '@phosphor-icons/react';
3+
import { CircleWavyCheckIcon } from '@phosphor-icons/react';
44
import { SocialLinks } from './SocialLinks';
55

66
function Header({ fullname, image, role, socialLinks }: UserProps) {
@@ -20,7 +20,7 @@ function Header({ fullname, image, role, socialLinks }: UserProps) {
2020
)}
2121

2222
<div className="text-dracula-orange absolute bottom-3 right-0 ">
23-
<CircleWavyCheck weight="fill" size={28} />
23+
<CircleWavyCheckIcon weight="fill" size={28} />
2424
</div>
2525
</div>
2626

0 commit comments

Comments
 (0)