UNPKG

discord-card-react

Version:
13 lines (12 loc) 540 B
/** * Renders a basic info section with display name, username, and pronouns. * * @param {{displayname?: string; username?: string; pronouns?: string;}} - Object with optional display name, username, and pronouns * @return {JSX.Element} - The rendered basic info section */ declare const BasicInfoSection: ({ displayname, username, pronouns, }: { displayname?: string | undefined; username?: string | undefined; pronouns?: string | undefined; }) => import("react/jsx-runtime").JSX.Element; export default BasicInfoSection;