@clerk/clerk-js
Version:
Clerk JS library
7 lines (6 loc) • 411 B
TypeScript
import type { OrganizationResource } from '@clerk/types';
import type { PropsOfComponent } from '../styledSystem';
import { Avatar } from './Avatar';
type OrganizationAvatarProps = PropsOfComponent<typeof Avatar> & Partial<Pick<OrganizationResource, 'name' | 'imageUrl'>>;
export declare const OrganizationAvatar: (props: OrganizationAvatarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};