Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make both icons on add passkey modal the same color #975

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions account-kit/react/src/icons/illustrations/passkeys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ const PasskeyShieldOutlineLight = ({
width="20"
height="20"
viewBox="0 0 20 20"
fill="#363FF9"
color="#363FF9"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand Down Expand Up @@ -354,7 +354,7 @@ const PasskeyShieldFilledLight = ({
width="21"
height="20"
viewBox="0 0 21 20"
fill="#363FF9"
color="#363FF9"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand All @@ -374,7 +374,7 @@ const PasskeyShieldFlatLight = ({
width="20"
height="20"
viewBox="0 0 20 20"
fill="#363FF9"
color="#363FF9"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand Down Expand Up @@ -404,7 +404,7 @@ const PasskeyShieldOutlineDark = ({
width="20"
height="20"
viewBox="0 0 20 20"
fill="#9AB7FF"
color="#9AB7FF"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand Down Expand Up @@ -444,7 +444,7 @@ const PasskeyShieldFilledDark = ({
width="21"
height="20"
viewBox="0 0 21 20"
fill="#9AB7FF"
color="#9AB7FF"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand All @@ -464,7 +464,7 @@ const PasskeyShieldFlatDark = ({
width="20"
height="20"
viewBox="0 0 20 20"
fill="#9AB7FF"
color="#9AB7FF"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
Expand Down
Loading