UNPKG

@clerk/clerk-js

Version:
7 lines (6 loc) 411 B
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 {};