mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 17:43:30 +01:00
chore: upgrade deps (#10824)
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user