@new-black/lyra 0.0.12 → 0.0.13

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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -69,7 +69,13 @@ To copy the SVG sprite to your public folder, execute the following command in y
69
69
  cp node_modules/@new-black/lyra/dist/icons public
70
70
  ```
71
71
 
72
- SVG sprites are a convenient way to use icons in web development. Here's why they are nice to use: 1. Reduced HTTP requests: SVG sprites allow multiple icons to be combined into a single file. This eliminates the need for separate HTTP requests for each individual icon, resulting in faster page loading times. 2. Scalability: SVG icons are vector-based, meaning they can be scaled up or down without losing quality. With an SVG sprite, you have access to a collection of scalable icons. 3. Ease of use: By using an SVG sprite, you can reference specific symbols within the sprite using their IDs. This makes it simple to insert and style icons within your HTML or CSS. 4. Efficient caching: When an SVG sprite is used, it can be cached by the browser, allowing subsequent page loads to utilize the cached sprite. This improves performance and reduces bandwidth usage.
72
+ SVG sprites are a convenient way to use icons in web development. Here's why they are nice to use:
73
+
74
+ 1. Reduced HTTP requests: SVG sprites allow multiple icons to be combined into a single file. This eliminates the need for separate HTTP requests for each individual icon, resulting in faster page loading times.
75
+ 2. Scalability: SVG icons are vector-based, meaning they can be scaled up or down without losing quality. With an SVG sprite, you have access to a collection of scalable icons.
76
+ 3. Ease of use: By using an SVG sprite, you can reference specific symbols within the sprite using their IDs. This makes it simple to insert and style icons within your HTML or CSS.
77
+ 4. Efficient caching: When an SVG sprite is used, it can be cached by the browser, allowing subsequent page loads to utilize the cached sprite. This improves performance and reduces bandwidth usage.
78
+
73
79
  Overall, SVG sprites offer a lightweight, flexible, and performant solution for incorporating icons into web projects.
74
80
 
75
81
  ```tsx
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "url": "https://github.com/new-black/lyra/issues"
13
13
  },
14
14
  "homepage": "https://github.com/new-black/lyra#readme",
15
- "version": "0.0.12",
15
+ "version": "0.0.13",
16
16
  "type": "module",
17
17
  "main": "dist/lyra.cjs",
18
18
  "module": "dist/lyra.js",