Metadata-Version: 2.4
Name: AgIcons
Version: 0.1.0
Summary: A Python icons module.
Author: AG
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openagideepthink>=0.1.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# AgIcons

A Python icons module.
## Installation

```bash
pip install AgIcons
```

## Usage

```python
from AgIcons import *

icon = Icon('camera', 'outline')
if icon:
    print(f"Icon found: {icon}")
else:
    print("Icon not found.")
```
