# ProfileImage

Display a profile picture. Supports images (URLs), icons (FontAwesome, Phosphor patterns), and initials.

## Installation

```tsx
import { ProfileImage } from 'uxp/components';
```

## Signature

```tsx
const ProfileImage: React.FunctionComponent<IProfileImageProps>
```

## Properties

| Name        | Type                                                                    | Mandatory | Default Value | Example Value |
| ----------- | ----------------------------------------------------------------------- | --------- | ------------- | ------------- |
| image       | string \| IconProp                                                      | No        | -             | -             |
| name        | string                                                                  | No        | -             | -             |
| bgColor     | string                                                                  | No        | -             | -             |
| textColor   | string                                                                  | No        | -             | -             |
| className   | string                                                                  | No        | -             | -             |
| style       | React.CSSProperties                                                     | No        | -             | -             |
| size        | [Size](https://help.iviva.com/uxp/v5/additional-resources/types/size)   | No        | -             | -             |
| shape       | [Shape](https://help.iviva.com/uxp/v5/additional-resources/types/shape) | No        | -             | -             |
| skipAcronym | boolean                                                                 | No        | -             | -             |
| borderColor | string                                                                  | No        | -             | -             |
| borderWidth | string                                                                  | No        | -             | -             |

## Related Types

* [IProfileImageProps](https://help.iviva.com/uxp/v5/additional-resources/types/iprofileimageprops)
* [Size](https://help.iviva.com/uxp/v5/additional-resources/types/size)
* [Shape](https://help.iviva.com/uxp/v5/additional-resources/types/shape)
