@payfit/unity-components
Version:
9 lines (8 loc) • 433 B
TypeScript
import { AvatarImageProps as RadixAvatarImageProps } from '@radix-ui/react-avatar';
import * as React from 'react';
type AvatarImageProps = Omit<RadixAvatarImageProps, 'style' | 'width' | 'height' | 'slot' | 'asChild'>;
/**
* The AvatarImage component displays an image for the avatar.
*/
declare const AvatarImage: React.ForwardRefExoticComponent<AvatarImageProps & React.RefAttributes<HTMLImageElement>>;
export { AvatarImage };