@atlaskit/profilecard
Version:
A React component to display a card with user information.
13 lines (12 loc) • 411 B
TypeScript
import React, { type ReactNode } from 'react';
export declare const CardWrapper: ({ children, role, testId, labelledBy, ariaLabel, }: {
children: ReactNode;
role?: string;
testId?: string;
labelledBy?: string;
ariaLabel?: string;
}) => React.JSX.Element;
export declare const SpinnerContainer: ({ children, testId, }: {
children: ReactNode;
testId?: string;
}) => React.JSX.Element;