mx-icons 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # 🎨 MX Icons
2
-
3
1
  <div align="center">
4
2
 
5
- ![npm version](https://img.shields.io/npm/v/mx-icons)
6
- ![npm downloads](https://img.shields.io/npm/dm/mx-icons)
7
- ![license](https://img.shields.io/github/license/ig-imanish/mx-icons)
8
- ![bundle size](https://img.shields.io/bundlephobia/minzip/mx-icons)
3
+ ![Preview](/imgs/mxicons-banner-ts.png)
4
+
5
+ ![npm version](https://img.shields.io/npm/v/mx-icons)
6
+ ![npm downloads](https://img.shields.io/npm/dm/mx-icons)
7
+ ![license](https://img.shields.io/github/license/ig-imanish/mx-icons)
8
+ ![bundle size](https://img.shields.io/bundlephobia/minzip/mx-icons)
9
9
 
10
- **A modern, lightweight React icon library with beautiful hand-crafted SVG icons**
10
+ **A modern, lightweight React icon library with beautiful SVG icons**
11
11
 
12
- Inspired by Heroicons • Built with React • Optimized for Production
12
+ Built with React • Optimized for Production
13
13
 
14
14
  [Live Demo](https://mx-icons.vercel.app/) • [Browse Icons](#-available-icons) • [Documentation](#-usage) • [Contributing](#-contributing)
15
15
 
@@ -23,9 +23,7 @@ Inspired by Heroicons • Built with React • Optimized for Production
23
23
  - ⚡ **Lightweight & Fast** - Tree-shakeable, only imports what you use
24
24
  - 🔧 **Fully Customizable** - Control size, color, and all SVG attributes
25
25
  - 📦 **Zero Dependencies** - Only React as a peer dependency (18.x or 19.x)
26
- - 🌐 **Social Media Ready** - Includes popular platform icons (YouTube, Instagram, Twitter, GitHub, etc.)
27
26
  - 💅 **Modern Design** - Clean, professional icons optimized for light-mode interfaces
28
- - 🚀 **Developer Friendly** - Simple API, works with Next.js, Vite, CRA
29
27
  - 📱 **Responsive** - Built-in support for different sizes (24px standard, 16px mini)
30
28
 
31
29
  ## 📦 Installation
@@ -34,27 +32,17 @@ Inspired by Heroicons • Built with React • Optimized for Production
34
32
  npm install mx-icons
35
33
  ```
36
34
 
37
- ```bash
38
- yarn add mx-icons
39
- ```
40
-
41
- ```bash
42
- pnpm add mx-icons
43
- ```
44
-
45
35
  ## 🚀 Quick Start
46
36
 
47
37
  ```jsx
48
- import { HomeOutline, YouTubeOutline } from "mx-icons";
38
+ import { NoteTextLinear } from "mx-icons";
49
39
 
50
40
  function App() {
51
41
  return (
52
42
  <div>
53
- {/* Basic usage */}
54
- <HomeOutline />
43
+ <NoteTextLinear />
55
44
 
56
- {/* Custom size and color */}
57
- <YouTubeOutline size={32} color="#FF0000" />
45
+ <NoteTextLinear size={24} color="#292D32" />
58
46
  </div>
59
47
  );
60
48
  }
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mx-icons",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Beautiful hand-crafted SVG icons for React - light mode only",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",