Fixes For Some Icons

This commit is contained in:
thororen1234 2025-01-29 08:28:13 -05:00
parent e2ae53a2df
commit 302eccacc2
3 changed files with 53 additions and 46 deletions

View file

@ -46,20 +46,22 @@ interface Emoji {
id: bigint | null;
name: string;
}
const CircleXIcon = <svg
xmlns="http://www.w3.org/2000/svg"
width="16" height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="12" cy="12" r="10" />
<line x1="15" y1="9" x2="9" y2="15" />
<line x1="9" y1="9" x2="15" y2="15" />
</svg>;
function CircleXIcon() {
return <svg
xmlns="http://www.w3.org/2000/svg"
width="16" height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="12" cy="12" r="10" />
<line x1="15" y1="9" x2="9" y2="15" />
<line x1="9" y1="9" x2="15" y2="15" />
</svg>;
}
interface DiscordStatus {
emojiInfo: Emoji | null;
text: string;