@onimuxha/oxycons 1.0.1 → 1.0.2

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.
@@ -0,0 +1,3 @@
1
+ // Export icon metadata and categories information
2
+ export * from "./categories-info";
3
+ export * from "./types";
@@ -0,0 +1,7 @@
1
+ // Barrel export for all icons
2
+ export * from "./categories/app/index";
3
+ export * from "./categories/design-tools/index";
4
+ export * from "./categories/framework/index";
5
+ export * from "./categories/programming/index";
6
+ export * from "./categories/tools/index";
7
+ export * from "./categories/ai/index";
@@ -0,0 +1,13 @@
1
+ // Export all icon categories
2
+ export * from "./categories/app/index";
3
+ export * from "./categories/design-tools/index";
4
+ export * from "./categories/framework/index";
5
+ export * from "./categories/programming/index";
6
+ export * from "./categories/tools/index";
7
+ export * from "./categories/ai/index";
8
+
9
+ // Export utilities
10
+ export * from "./types";
11
+ export * from "./create-icon";
12
+ export * from "./icon";
13
+ export * from "./categories-info";
package/lib/icons.svg ADDED
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="#000000"
2
+ style="opacity:1;">
3
+ <path
4
+ d="M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978c.401 0 .955.042 1.468.103a9 9 0 0 1 1.141.195v3.325a9 9 0 0 0-.653-.036a27 27 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.7 1.7 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103l-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647" />
5
+ </svg>
package/lib/utils.ts ADDED
@@ -0,0 +1,6 @@
1
+ import { clsx, type ClassValue } from 'clsx'
2
+ import { twMerge } from 'tailwind-merge'
3
+
4
+ export function cn(...inputs: ClassValue[]) {
5
+ return twMerge(clsx(inputs))
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onimuxha/oxycons",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A modern, comprehensive icon library for React applications with TypeScript support",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -23,7 +23,7 @@
23
23
  "design-system"
24
24
  ],
25
25
  "files": [
26
- "lib/icons",
26
+ "lib",
27
27
  "README.md",
28
28
  "LICENSE"
29
29
  ],
@@ -31,14 +31,16 @@
31
31
  "types": "./lib/icons/index.ts",
32
32
  "exports": {
33
33
  ".": {
34
- "types": "./lib/icons/index.ts",
35
- "default": "./lib/icons/index.ts"
34
+ "import": "./lib/icons/index.ts",
35
+ "types": "./lib/icons/index.ts"
36
36
  },
37
37
  "./icons": {
38
- "default": "./lib/icons/icons.ts"
38
+ "import": "./lib/icons/icons.ts",
39
+ "types": "./lib/icons/icons.ts"
39
40
  },
40
41
  "./data": {
41
- "default": "./lib/icons/data.ts"
42
+ "import": "./lib/icons/data.ts",
43
+ "types": "./lib/icons/data.ts"
42
44
  }
43
45
  },
44
46
  "dependencies": {