UNPKG

discord-card-react

Version:
25 lines (24 loc) 1.38 kB
/// <reference types="react" /> import { BasicInfoSectionProps, Badge, StatusSectionProps, AboutMeSectionProps, MemberSinceSectionProps, RoleSectionProps, NoteSectionProps, MessageSectionProps, LanyardActivitySectionProps, LanyardSpotifySectionProps, ActivityPriority } from "../types"; declare const LanyardDiscordCard: ({ userId, apiUrl, imageUrl, bannerUrl, primaryColor, accentColor, basicInfo, badges, status, aboutMe, memberSince, activity, spotify, roles, note, message, priority, maxActivities, children, }: { userId: string; apiUrl?: string | undefined; imageUrl: string; bannerUrl: string; primaryColor: string; accentColor: string; basicInfo: BasicInfoSectionProps; badges?: Badge[] | undefined; status?: StatusSectionProps | undefined; aboutMe?: AboutMeSectionProps | undefined; memberSince?: MemberSinceSectionProps | undefined; activity?: LanyardActivitySectionProps | undefined; spotify?: LanyardSpotifySectionProps | undefined; roles?: RoleSectionProps | undefined; note?: NoteSectionProps | undefined; message?: MessageSectionProps | undefined; priority?: ActivityPriority | undefined; maxActivities?: number | undefined; children?: import("react").JSX.Element | import("react").JSX.Element[] | undefined; }) => import("react/jsx-runtime").JSX.Element; export default LanyardDiscordCard;