Metadata-Version: 2.4
Name: ttkbootstrap-icons-fa
Version: 1.0.2
Summary: Font Awesome Free (font-based) provider for ttkbootstrap-icons
Author: Israel Dryer
License: MIT
Project-URL: Homepage, https://github.com/israel-dryer/ttkbootstrap-icons
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: Pillow>=9.1
Requires-Dist: ttkbootstrap-icons>=3.0.0

# ttkbootstrap-icons-fa

An icon provider for the `ttkbootstrap-icons` library.  
Font Awesome Free offers large, well-known icon sets across solid, regular, and brand categories.

[![PyPI](https://img.shields.io/pypi/v/ttkbootstrap-icons-fa.svg)](https://pypi.org/project/ttkbootstrap-icons-fa/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](#license-and-attribution)

---

## Install

```bash
pip install ttkbootstrap-icons-fa
```

---

## Quick start

```python
import tkinter as tk
from ttkbootstrap_icons_fa import FAIcon

root = tk.Tk()

solid = FAIcon("house", size=24, color="#0d6efd", style="solid")
regular = FAIcon("house", size=24, color="#0d6efd", style="regular")
brand = FAIcon("github", size=24, color="#0d6efd", style="brands")

tk.Button(root, image=solid.image, text="Solid", compound="left").pack()
tk.Button(root, image=regular.image, text="Regular", compound="left").pack()
tk.Button(root, image=brand.image, text="Brand", compound="left").pack()

root.mainloop()
```

---

## Styles

| Variant   | Description                   |
|:----------|:------------------------------|
| `solid`   | Filled style (most common)    |
| `regular` | Outline/line style            |
| `brands`  | Brand and logo glyphs         |

---

## Icon Browser

Browse available icons with the built-in browser. From your terminal run:

```bash
ttkbootstrap-icons
```

Use **Copy Name** in the browser to copy the icon name and style directly for use in your code.

![Icon Browser](https://raw.githubusercontent.com/israel-dryer/ttkbootstrap-icons/main/packages/ttkbootstrap-icons-fa/browser.png)

---

## License and Attribution

- **Upstream license:** Font Awesome (varies by asset) — https://fontawesome.com/
- **Wrapper license:** MIT © Israel Dryer

