chore: upgrade deps (#10824)

This commit is contained in:
Noel
2025-04-05 13:18:56 +02:00
committed by GitHub
parent 432aba3df7
commit f580de8025
200 changed files with 6756 additions and 12893 deletions

View File

@@ -2,7 +2,7 @@
import { VscChevronDown } from '@react-icons/all-files/vsc/VscChevronDown';
import { Disclosure, DisclosureContent, useDisclosureState } from 'ariakit/disclosure';
import type { PropsWithChildren } from 'react';
import type { JSX, PropsWithChildren } from 'react';
export interface SectionOptions {
readonly background?: boolean | undefined;

View File

@@ -7,7 +7,7 @@ export interface IDiscordMessageEmbedFooter {
export function DiscordMessageEmbedFooter({ content, icon, timestamp }: IDiscordMessageEmbedFooter) {
return (
<div className="mt-2 flex items-center text-xs">
{icon ? <img className="mr-2 rounded-full" height="20" src={icon} width="20" /> : null}
{icon ? <img alt="Icon" className="mr-2 rounded-full" height="20" src={icon} width="20" /> : null}
{content}
{content && timestamp ? <span className="mx-1 font-medium"></span> : null}