@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 684 B
TypeScript
import { SizeValue } from '../../utils';
import { SkeletonShapeProps } from './SkeletonShape';
export interface SkeletonAvatarOwnProps {
/** A skeleton avatar can be sized. */
size?: SizeValue;
}
export interface SkeletonAvatarProps extends SkeletonAvatarOwnProps, SkeletonShapeProps {
}
export declare type SkeletonAvatarStylesProps = Required<Pick<SkeletonAvatarOwnProps, 'size'>>;
export declare const skeletonAvatarClassName = "ui-skeleton__avatar";
/**
* An SkeletonAvatar represents an avatar component that will be loaded
*/
export declare const SkeletonAvatar: import("@fluentui/react-bindings").ComponentWithAs<"span", SkeletonAvatarOwnProps & SkeletonShapeProps>;