# FontAwesome 6 Pro

## Overview
FontAwesome 6 Pro is a comprehensive icon library that provides a wide range of icons for use in web projects. This package gives you access to the premium Pro version with thousands of icons across multiple styles.

## Installation

### Using Package Manager
For better version control and dependency management, use a package manager like npm or yarn:

```
# Using npm
npm install fontawesome6pro

# Using yarn
yarn add fontawesome6pro
```

### Using CDN
To quickly add FontAwesome to your project, you can use a CDN. Add the following line to your HTML file:

```
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/atul22g/CDN@latest/liberies/FontAwesome6Pro@6.2.0/css/all.min.css">
```

## Usage

### Basic Usage
Once installed, import the CSS in your JavaScript or TypeScript file:

```
import 'fontawesome6pro/css/all.min.css'
```

Then, use icons by adding the appropriate classes to your HTML elements:

```
<!-- Solid Style -->
<i class="fas fa-camera"></i>

<!-- Regular Style -->
<i class="far fa-camera"></i>

<!-- Light Style -->
<i class="fal fa-camera"></i>

<!-- Thin Style -->
<i class="fat fa-camera"></i>

<!-- Duotone Style -->
<i class="fad fa-camera"></i>
```

### Advanced Usage
FontAwesome provides additional features such as:

#### Icon Sizing
```
<i class="fas fa-camera fa-xs"></i>
<i class="fas fa-camera fa-sm"></i>
<i class="fas fa-camera fa-lg"></i>
<i class="fas fa-camera fa-2x"></i>
<i class="fas fa-camera fa-3x"></i>
```

#### Icon Transformations
```
<i class="fas fa-camera fa-rotate-90"></i>
<i class="fas fa-camera fa-flip-horizontal"></i>
```

#### Icon Animations
```
<i class="fas fa-spinner fa-spin"></i>
<i class="fas fa-circle-notch fa-pulse"></i>
```

## Best Practices
- Always use the latest version to ensure you have the latest icons and features
- Minimize the number of icons loaded to improve performance
- Consider using the JS version for more dynamic control over icons

## Support
For support and further information, visit the official FontAwesome documentation.
