Metadata-Version: 2.4
Name: justmyresource-material-icons
Version: 4.0.0
Summary: JustMyResource pack: Material Design Icons (Official)
Project-URL: Homepage, https://github.com/kws/justmyresource-icons
Project-URL: Repository, https://github.com/kws/justmyresource-icons
Project-URL: Issues, https://github.com/kws/justmyresource-icons/issues
Author-email: Kaj Siebert <kaj@k-si.com>
License: MIT AND Apache-2.0
License-File: LICENSE
License-File: LICENSES/MATERIAL-ICONS-LICENSE
License-File: LICENSES/MATERIAL-ICONS-NOTICE
Keywords: icons,justmyresource,material-design,resources,svg
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: justmyresource<2.0.0,>=1.0.0
Description-Content-Type: text/markdown

<!-- This file is auto-generated from upstream.toml. Do not edit manually. -->

# Material Official

Material Design Icons (Official) — 2500+ Google design system icons with 5 style variants

## Installation

```bash
pip install justmyresource-material-icons
```

## Usage

```python
from justmyresource import ResourceRegistry

registry = ResourceRegistry()
content = registry.get_resource("material-icons:icon-name")
print(content.text)  # SVG content
```

## Prefixes

This pack can be accessed using the following prefixes:

- `material-icons` (primary)

- `mi` (alias)



## Variants


This pack includes the following variants:

- `filled`

- `outlined` (default)

- `rounded`

- `sharp`

- `two-tone`


To access a specific variant, use the format `material-icons:variant/icon-name`:

```python
# Access default variant (outlined)
content = registry.get_resource("material-icons:icon-name")

# Access specific variant
content = registry.get_resource("material-icons:filled/icon-name")
```


## License

- **Upstream License**: Apache-2.0
- **Copyright**: Copyright (c) Google LLC
- **Upstream Source**: https://github.com/google/material-design-icons

For full license details, see the [LICENSE](../LICENSE) file.

## Upstream

This pack bundles icons from:
- **Source**: https://github.com/google/material-design-icons
- **Version**: 4.0.0

## Development

To build this pack from source:

```bash
# 1. Fetch upstream archive (downloads to cache/)
pack-tools fetch <pack-name>

# 2. Build icons.zip and manifest (processes from cache)
pack-tools build <pack-name>

# 3. Create distribution wheel
pack-tools dist <pack-name>
```

The cache persists across builds. To force a fresh download, delete the `cache/` directory.

