# PhosphorIconProps

Props for Phosphor icons

## Definition

```tsx
export interface PhosphorIconProps extends BaseIconProps {
    /**
     * Phosphor icon in PHIconProp format or string format
     * @example ['phb', 'house']
     * @example "phb house"
     * @example "house"
     */
    icon: PHIconProp | string;

    /**
     * Icon size - supports FontAwesome size strings, numbers, or CSS units
     */
    size?: SizeProp | number | string;
}
```

## Usage

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

## Related Types

* [BaseIconProps](https://help.iviva.com/uxp/v5/additional-resources/types/baseiconprops)
* [AnimationProps](https://help.iviva.com/uxp/v5/additional-resources/types/animationprops)
* [SkeletonLoaderProps](https://help.iviva.com/uxp/v5/additional-resources/types/skeletonloaderprops)
* [PHIconProp](https://help.iviva.com/uxp/v5/additional-resources/types/phiconprop)
* [PHIconPrefix](https://help.iviva.com/uxp/v5/additional-resources/types/phiconprefix)
