Skip to content

Commit

Permalink
Add circled check and cross icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Sep 12, 2024
1 parent 796c992 commit e3627ce
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions shared/common/newui/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -526,3 +526,43 @@ export function MigrationsListIcon() {
</svg>
);
}

export function CircledCrossIcon() {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8.5 8.5L12 12M12 12L15.5 15.5M12 12L15.5 8.5M12 12L8.5 15.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}

export function CircledCheckIcon() {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16 10.0675L11.0038 15.0638L8.44 12.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}

0 comments on commit e3627ce

Please sign in to comment.