@cascivo/icons 0.1.2 → 0.2.0

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
@@ -16,7 +16,9 @@
16
16
 
17
17
  ---
18
18
 
19
- A curated set of React SVG icon components that inherit the cascivo token system — `currentColor` fills, token-driven sizing, and tree-shakeable named exports.
19
+ A set of **~440** React SVG icon components that inherit the cascivo token system — stroked 24×24 `currentColor` geometry, token-driven sizing, and tree-shakeable named exports.
20
+
21
+ Browse and search the full catalog — with click-to-copy imports and live size/color/theme previews — in the **[/icons gallery](https://docs.cascivo.com/icons)**.
20
22
 
21
23
  ## Usage
22
24
 
@@ -43,6 +45,12 @@ button svg {
43
45
 
44
46
  Import only the icons you use — named exports are individually tree-shakeable, so bundle cost scales with usage, not catalog size.
45
47
 
48
+ ## Catalog & generation
49
+
50
+ The catalog combines the original hand-authored [Feather](https://github.com/feathericons/feather)-derived icons with the [chromicons](https://github.com/lifeomic/chromicons.com) set, both MIT-licensed (see [`NOTICE`](https://github.com/cascivo/cascivo/blob/main/NOTICE)). The chromicons are vendored as SVG source under `packages/icons/svg/` and transformed into `createIcon` exports by `scripts/icons/generate.mjs` (run via `pnpm icons:generate` / `pnpm regen`) — owned code, no runtime dependency. On a name collision the existing export always wins, so the surface is purely additive.
51
+
52
+ `icons.catalog.json` is the machine-readable manifest — one entry per icon (`name`, `pascalName`, `category`, `tags`, `keywords`, inner-SVG markup) — and feeds the docs gallery, the global search index, and `llms.txt`.
53
+
46
54
  ## Install
47
55
 
48
56
  ```sh