https://github.com/mskelton/icons
Material icons packaged as React components.
https://github.com/mskelton/icons
icons material-icons material-symbols npm
Last synced: 4 months ago
JSON representation
Material icons packaged as React components.
- Host: GitHub
- URL: https://github.com/mskelton/icons
- Owner: mskelton
- Created: 2023-03-19T22:39:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T02:53:26.000Z (over 1 year ago)
- Last Synced: 2024-10-18T08:17:46.965Z (9 months ago)
- Topics: icons, material-icons, material-symbols, npm
- Language: JavaScript
- Homepage:
- Size: 158 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# @mskelton/icons
[](https://github.com/mskelton/icons/actions)
[](https://www.npmjs.com/package/@mskelton/icons)
[](https://github.com/semantic-release/semantic-release)Material icons packaged as React components.
## Installation
### npm
```bash
npm install @mskelton/icons
```### Yarn
```bash
yarn add @mskelton/icons
```### pnpm
```bash
pnpm add @mskelton/icons
```### Bun
```bash
bun add @mskelton/icons
```## Usage
This package provides rounded
[material symbols](https://fonts.google.com/icons?icon.style=Rounded) with a
weight of 700. Solid and outlined variations are included for each icon.```javascript
import { MdFileCopy } from "@mskelton/icons/solid"
import { MdFileCopy } from "@mskelton/icons/outline"
```