Metadata-Version: 2.4
Name: ttkbootstrap-icons-bs
Version: 1.0.0
Summary: Bootstrap Icons (font-based) provider for ttkbootstrap-icons
Author: Israel Dryer
License-Expression: 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>=4.0.0

# ttkbootstrap-icons-bs

Bootstrap Icons provider for ttkbootstrap-icons.

## Installation

```bash
pip install ttkbootstrap-icons-bs
```

## Usage

```python
from ttkbootstrap_icons_bs import BootstrapIcon

# Create an icon
icon = BootstrapIcon("house", size=24, color="black", style="outline")

# Use in a tkinter widget
import tkinter as tk
from tkinter import ttk

root = tk.Tk()
label = ttk.Label(root, text="Home", image=icon.image, compound="left")
label.pack()
root.mainloop()
```

## Styles

Bootstrap Icons supports two styles:
- `outline` (default)
- `fill`

You can specify the style either as a parameter or as part of the icon name:

```python
# Using style parameter
icon1 = BootstrapIcon("house", style="fill")

# Using style in name
icon2 = BootstrapIcon("house-fill")
```

## License

MIT License

Bootstrap Icons are licensed under the MIT License.
See https://github.com/twbs/icons/blob/main/LICENSE
