Metadata-Version: 2.1
Name: iconkit
Version: 1.0.1
Summary: IconKit — 3000+ monochrome vector icons (outline & solid), single source of truth, currentColor, for every stack.
Home-page: https://suils.es
Author: Ferran Suils Mora
Author-email: ferran@suils.es
License: MIT
Project-URL: Homepage, https://suils.es
Project-URL: Documentation, https://iconkit.suils.es
Keywords: icons,svg,vector,outline,solid,currentcolor
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# IconKit for Python

IconKit — 3000+ monochrome vector icons (outline & solid), single source of truth, currentColor, for every stack.

- **3039 icons** (1570 with a solid variant) across 73 categories, 24×24 grid.
- `iconkit.svg()` returns a self-contained `<svg>` string — drop it into any template.
- Browse and search all icons: **[iconkit.suils.es](https://iconkit.suils.es)**

## Install

```sh
pip install iconkit
```

## Usage

```python
import iconkit

iconkit.svg("home")                                        # outline, 24px, currentColor
iconkit.svg("heart", mode="solid", size=32, color="#e05b4c")
iconkit.names()                                            # all 3039 icon names
iconkit.manifest()                                         # full manifest (categories, keywords, aliases)
```

Works with Django, Flask, Jinja2, FastAPI… mark the string as safe HTML in your template engine.

## License

MIT © Ferran Suils Mora · [suils.es](https://suils.es)
