discord-card-react
Version:
React Discord profile card component
15 lines (14 loc) • 546 B
TypeScript
/**
* Renders a status section component with an optional icon, emoji, and status text.
*
* @param {string} iconUrl - The URL for the icon image.
* @param {string} emoji - The emoji to display.
* @param {string} status - The status text to display.
* @return {JSX.Element} The rendered status section component.
*/
declare const StatusSection: ({ iconUrl, emoji, status, }: {
iconUrl?: string | undefined;
emoji?: string | undefined;
status: string;
}) => import("react/jsx-runtime").JSX.Element;
export default StatusSection;