@bigbinary/neeto-icons 1.17.13 → 1.18.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/.vscode/settings.json +3 -0
- package/dist/app-icons.cjs.js +171 -48
- package/dist/app-icons.cjs.js.map +1 -1
- package/dist/app-icons.js +171 -49
- package/dist/app-icons.js.map +1 -1
- package/dist/neeto-logos.cjs.js +123 -46
- package/dist/neeto-logos.cjs.js.map +1 -1
- package/dist/neeto-logos.js +123 -47
- package/dist/neeto-logos.js.map +1 -1
- package/dist/typeface-logos.cjs.js +127 -40
- package/dist/typeface-logos.cjs.js.map +1 -1
- package/dist/typeface-logos.js +127 -41
- package/dist/typeface-logos.js.map +1 -1
- package/index.d.ts +18 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -235,3 +235,21 @@ export const Warning: React.FC<IconProps>;
|
|
|
235
235
|
export const WarningFilled: React.FC<IconProps>;
|
|
236
236
|
export const Whatsapp: React.FC<IconProps>;
|
|
237
237
|
export const WidgetModes: React.FC<IconProps>;
|
|
238
|
+
export const Address: React.FC<IconProps>;
|
|
239
|
+
export const DropdownClosed:React.FC<IconProps>;
|
|
240
|
+
export const Captcha:React.FC<IconProps>;
|
|
241
|
+
export const Divider:React.FC<IconProps>;
|
|
242
|
+
export const FileUpload:React.FC<IconProps>;
|
|
243
|
+
export const Hash:React.FC<IconProps>;
|
|
244
|
+
export const HashChecked:React.FC<IconProps>;
|
|
245
|
+
export const HashInSet:React.FC<IconProps>;
|
|
246
|
+
export const Header:React.FC<IconProps>;
|
|
247
|
+
export const IpAddress:React.FC<IconProps>;
|
|
248
|
+
export const MatrixDotsClear:React.FC<IconProps>;
|
|
249
|
+
export const PhoneRing:React.FC<IconProps>;
|
|
250
|
+
export const Scale:React.FC<IconProps>;
|
|
251
|
+
export const Terms:React.FC<IconProps>;
|
|
252
|
+
export const TextLines:React.FC<IconProps>;
|
|
253
|
+
export const UserRoundedRect:React.FC<IconProps>;
|
|
254
|
+
export const YesNo:React.FC<IconProps>;
|
|
255
|
+
export const Youtube:React.FC<IconProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.0",
|
|
4
4
|
"main": "./dist/neeto-icons.cjs.js",
|
|
5
5
|
"module": "./dist/neeto-icons.js",
|
|
6
6
|
"author": "vinay0x",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"prebuild": "rimraf generate && rimraf dist",
|
|
33
33
|
"start": "yarn build && NODE_ENV=development webpack serve --open --mode development --config webpack.dev.config.cjs",
|
|
34
|
-
"build-preview": "
|
|
34
|
+
"build-preview": "NODE_ENV=production webpack serve --open --mode production --config webpack.dev.config.cjs --port 3000",
|
|
35
35
|
"build": "NODE_ENV=production rollup -c"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|