<h1 align="center">
  Mozaic-Icons-Angular
</h1>

<p align="center">
  <a href="https://mozaic.adeo.cloud/">
    <img src="assets/images/adeo-design-system.svg"/>
  </a>
  <a href="https://developer.mozilla.org/en-US/docs/Web/SVG">
    <img src="assets/images/made-with-angular.svg"/>
  </a>
</p>

<p align="center">
  <a href="/CONTRIBUTING.md">
    <img src="https://img.shields.io/badge/PRs-welcome-blue.svg?logo=github" alt="PRs welcome" />
  </a>
  <a href="https://mozaic.adeo.cloud/foundations/icons/catalog/">
    <img src="https://img.shields.io/badge/Icons-364-orange.svg?style=" alt="number of icons" />
  </a>
  <a href="https://app.slack.com/client/T4R6RCZFA/CKQJZL7C4/">
    <img src="https://img.shields.io/badge/Slack-mozaic_support-611f69.svg?logo=slack" alt="Slack mozaic support" />
  </a>
  <a href="https://adeo.workplace.com/groups/427492661454646/">
    <img src="https://img.shields.io/badge/Workplace-Adeo_Design_System-4526ce.svg?logo=workplace" alt="Workplace ADEO Design system" />
  </a>
</p>

<p align="center">
  This project contains all of the icons of the <a href="https://mozaic.adeo.cloud/">ADEO Design system</a> to be used in Angular applications.
</p>

## 🎨 Getting started

**ADEO Design system** is a global and collaborative design system that facilitates the designer and developer experience, enabling them to create universal interfaces perfectly aligned with the business strategy of [Adeo](https://www.adeo.com/).

Learn more about the vision and guidelines by visiting the [main documentation website](https://mozaic.adeo.cloud/).

## 📦 Install

You must first install the [npm package](https://www.npmjs.com/package/mozaic-icons-angular):

```bash
npm install @mozaic-ds/icons-angular
```

Or with **Yarn**:

```bash
yarn add @mozaic-ds/icons-angular
```

## 📝 Usage

After the installation, you can start importing the icon component needed:

```typescript
// In your component file

import { Component } from "@angular/core";
import { Wrench24 } from "@mozaic-ds/icons-angular";

@Component({
  selector: "app-example",
  template: `<Wrench24 fill="#333"></Wrench24>`,
  standalone: true,
  imports: [Wrench24],
})
export class ExampleComponent {}
```

## 📰 Changelog

Releases are managed with **GitHub Releases**, including the changelog for each one.<br/>
Access to the [Changelog](/CHANGELOG.md) to find out about the detailed changes to each release.

## 📣 Stay in touch

- Join the [#mozaic-support](https://app.slack.com/client/T4R6RCZFA/CKQJZL7C4/) channel on **Slack**
- Join our [Workplace group](https://adeo.workplace.com/groups/427492661454646/)

## 🐞 Bugs and feature requests

Have a bug or a feature request?<br/>
Please [open an issue](https://github.com/adeo/mozaic-icons-angular/issues/new/choose) and use the template associated with your request.

However, if you are able to contribute and fix bugs, build new features, or help to improve the project documentation, feel free to do it! _(more information below)_

## ✍️ Contributing

Setup the project to start contributing.

```bash
// Clone mozaic-icons-angular repo
git clone git@github.com:adeo/mozaic-icons-angular.git

// Go to the cloned directory
cd mozaic-icons-angular

// Checkout the branch you are working on
$ git checkout <branch name>

// Install dependencies
npm install

// Build icons
npm run icons:build

// Build project
npm run build
```

We're always looking for contributors to help us fix bugs, build features, or help us improve the documentation. If you're intersted check out our [Code of Conduct](/CODE_OF_CONDUCT.md) and [Contribution Guide](/CONTRIBUTING.md).

## 🧑‍💻 Contributors

**Owners**

**[ADEO Design system Team](https://github.com/orgs/adeo/teams/adeo-design-system)**

**Maintainers**

- **[Maxime Moiroux](https://github.com/maksnaga)**

## 📄 Licensing

This project is licensed under the Apache V2 License. See [LICENSE](LICENSE) for more information.
