@rynu221/icons 1.0.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 +15 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +23 -0
- package/package.json +17 -0
package/README.md
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const IconSuccess = "https://rynu221.github.io/dev.io/img/success.png";
|
|
2
|
+
export declare const IconError = "https://rynu221.github.io/dev.io/img/error.png";
|
|
3
|
+
export declare const IconQuestion = "https://rynu221.github.io/dev.io/img/question.png";
|
|
4
|
+
export declare const IconWarning = "https://rynu221.github.io/dev.io/img/warning.png";
|
|
5
|
+
export declare const IconSetting = "https://rynu221.github.io/dev.io/img/setting.png";
|
|
6
|
+
export declare const IconBell = "https://rynu221.github.io/dev.io/img/bell.png";
|
|
7
|
+
export declare const IconBlock = "https://rynu221.github.io/dev.io/img/block.png";
|
|
8
|
+
export declare const IconMonkey = "https://rynu221.github.io/dev.io/img/monkey.png";
|
|
9
|
+
export declare const IconTicket = "https://rynu221.github.io/dev.io/img/ticket.png";
|
|
10
|
+
export declare const IconSecurity = "https://rynu221.github.io/dev.io/img/security.png";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
var IconSuccess = "https://rynu221.github.io/dev.io/img/success.png";
|
|
3
|
+
var IconError = "https://rynu221.github.io/dev.io/img/error.png";
|
|
4
|
+
var IconQuestion = "https://rynu221.github.io/dev.io/img/question.png";
|
|
5
|
+
var IconWarning = "https://rynu221.github.io/dev.io/img/warning.png";
|
|
6
|
+
var IconSetting = "https://rynu221.github.io/dev.io/img/setting.png";
|
|
7
|
+
var IconBell = "https://rynu221.github.io/dev.io/img/bell.png";
|
|
8
|
+
var IconBlock = "https://rynu221.github.io/dev.io/img/block.png";
|
|
9
|
+
var IconMonkey = "https://rynu221.github.io/dev.io/img/monkey.png";
|
|
10
|
+
var IconTicket = "https://rynu221.github.io/dev.io/img/ticket.png";
|
|
11
|
+
var IconSecurity = "https://rynu221.github.io/dev.io/img/security.png";
|
|
12
|
+
export {
|
|
13
|
+
IconWarning,
|
|
14
|
+
IconTicket,
|
|
15
|
+
IconSuccess,
|
|
16
|
+
IconSetting,
|
|
17
|
+
IconSecurity,
|
|
18
|
+
IconQuestion,
|
|
19
|
+
IconMonkey,
|
|
20
|
+
IconError,
|
|
21
|
+
IconBlock,
|
|
22
|
+
IconBell
|
|
23
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rynu221/icons",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "bun build ./src/index.ts --outdir ./dist && tsc"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"typescript": "^6.0.3"
|
|
16
|
+
}
|
|
17
|
+
}
|