@expo/styleguide-icons 1.0.0 → 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.
- package/dist/index.js +1 -39257
- package/dist/mergeClasses.d.ts +1 -1
- package/dist/tmp/custom/BuildArtifactIcon.d.ts +7 -0
- package/dist/tmp/custom/index.d.ts +1 -0
- package/package.json +4 -12
package/dist/mergeClasses.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const mergeClasses: (...classLists: import("tailwind-merge
|
|
1
|
+
export declare const mergeClasses: (...classLists: import("tailwind-merge").ClassNameValue[]) => string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
declare function BuildArtifactIcon({ className, ...props }: SVGProps<SVGSVGElement> & React.HTMLAttributes<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
declare namespace BuildArtifactIcon {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default BuildArtifactIcon;
|
|
@@ -46,6 +46,7 @@ export { default as BuildSolidIcon } from './BuildSolidIcon';
|
|
|
46
46
|
export { default as PersonalTrainerIcon } from './PersonalTrainerIcon';
|
|
47
47
|
export { default as BranchIcon } from './BranchIcon';
|
|
48
48
|
export { default as PlanOnDemandIcon } from './PlanOnDemandIcon';
|
|
49
|
+
export { default as BuildArtifactIcon } from './BuildArtifactIcon';
|
|
49
50
|
export { default as AndroidIcon } from './AndroidIcon';
|
|
50
51
|
export { default as AppleIcon } from './AppleIcon';
|
|
51
52
|
export { default as AppleAppStoreIcon } from './AppleAppStoreIcon';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/styleguide-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Expo's icons for use on the web.",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,22 +28,14 @@
|
|
|
28
28
|
"url": "https://github.com/expo/styleguide/issues"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"tailwind-merge": "^1.
|
|
31
|
+
"tailwind-merge": "^1.13.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@figma-export/cli": "^4.5.0",
|
|
35
35
|
"@figma-export/output-components-as-svgr": "^4.5.0",
|
|
36
36
|
"@figma-export/transform-svg-with-svgo": "^4.5.0",
|
|
37
|
-
"@rollup/plugin-typescript": "^11.0.0",
|
|
38
|
-
"@types/react": "^18.2.6",
|
|
39
37
|
"dotenv": "^16.0.3",
|
|
40
|
-
"
|
|
41
|
-
"react": "^18.2.0",
|
|
42
|
-
"rimraf": "^5.0.0",
|
|
43
|
-
"rollup": "^3.21.5",
|
|
44
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
45
|
-
"tslib": "^2.5.0",
|
|
46
|
-
"typescript": "^4.9.5"
|
|
38
|
+
"tslib": "^2.5.0"
|
|
47
39
|
},
|
|
48
40
|
"peerDependencies": {
|
|
49
41
|
"react": ">= 16"
|
|
@@ -54,5 +46,5 @@
|
|
|
54
46
|
"universe/node"
|
|
55
47
|
]
|
|
56
48
|
},
|
|
57
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "a8093703b241210c360a09ef41b950aebc0fa096"
|
|
58
50
|
}
|