# FontAwesomeIconProps

Props for FontAwesome icons Extends FontAwesome's own props with our base props

## Definition

```tsx
export interface FontAwesomeIconProps extends BaseIconProps {
    /**
     * FontAwesome icon in IconProp format or string format
     * @example ['fas', 'save']
     * @example "fas save"
     */
    icon: IconProp | string;

    /**
     * Icon size - FontAwesome size prop
     */
    size?: FAIconProps['size'];
}
```

## Usage

```tsx
import { FontAwesomeIconProps } 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)
