Skip to content

Commit

Permalink
docs: explain how to install icon sets (#2045)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofer-Julian authored Feb 2, 2025
1 parent 8f530f7 commit 56d43b2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion docs/features/icons.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,23 @@ The naming follows [Iconify](https://iconify.design/)'s convention of `{collecti
- `<logos-vue />` - <logos-vue /> from [SVG Logos](https://github.com/gilbarbara/logos) - [`@iconify-json/logos`](https://npmjs.com/package/@iconify-json/logos)
- And much more...

Browse and search for all the icons available with [Icônes](https://icones.js.org/).
::: code-group

```bash [pnpm]
pnpm add @iconify-json/[the-collection-you-want]
```

```bash [npm]
npm install @iconify-json/[the-collection-you-want]
```

```bash [yarn]
yarn add @iconify-json/[the-collection-you-want]
```

:::

We use [Iconify](https://iconify.design) as our data source of icons. You need to install the corresponding icon-set in `dependencies` by following the `@iconify-json/*` pattern. For example, `@iconify-json/mdi` for [Material Design Icons](https://materialdesignicons.com/), `@iconify-json/tabler` for [Tabler](https://tabler-icons.io/). You can refer to [Icônes](https://icones.js.org/) or [Iconify](https://icon-sets.iconify.design/) for all the collections available.

### Styling Icons

Expand Down

0 comments on commit 56d43b2

Please sign in to comment.