discord-card-react
Version:
React Discord profile card component
13 lines (12 loc) • 540 B
TypeScript
/**
* 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;