@mittwald/flow-icons-pro 0.2.0-alpha.852 → 0.2.0-alpha.854
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,7 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
/* auto-generated file */
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { faStack as icon } from "@fortawesome/sharp-regular-svg-icons";
|
|
6
|
+
import { FontAwesomeIcon, } from "@fortawesome/react-fontawesome";
|
|
7
|
+
export const IconStack = (props) => (_jsx(FontAwesomeIcon, { icon: icon, ...props }));
|
|
@@ -111,6 +111,7 @@ export { IconServer } from "./IconServer.js";
|
|
|
111
111
|
export { IconSsh } from "./IconSsh.js";
|
|
112
112
|
export { IconSshKey } from "./IconSshKey.js";
|
|
113
113
|
export { IconSshSftp } from "./IconSshSftp.js";
|
|
114
|
+
export { IconStack } from "./IconStack.js";
|
|
114
115
|
export { IconStar } from "./IconStar.js";
|
|
115
116
|
export { IconStarFilled } from "./IconStarFilled.js";
|
|
116
117
|
export { IconSubdomain } from "./IconSubdomain.js";
|
package/dist/esm/iconSet.js
CHANGED
|
@@ -111,6 +111,7 @@ import { IconServer as Server } from "./components/IconServer.js";
|
|
|
111
111
|
import { IconSsh as Ssh } from "./components/IconSsh.js";
|
|
112
112
|
import { IconSshKey as SshKey } from "./components/IconSshKey.js";
|
|
113
113
|
import { IconSshSftp as SshSftp } from "./components/IconSshSftp.js";
|
|
114
|
+
import { IconStack as Stack } from "./components/IconStack.js";
|
|
114
115
|
import { IconStar as Star } from "./components/IconStar.js";
|
|
115
116
|
import { IconStarFilled as StarFilled } from "./components/IconStarFilled.js";
|
|
116
117
|
import { IconSubdomain as Subdomain } from "./components/IconSubdomain.js";
|
|
@@ -242,6 +243,7 @@ export const proIconSet = {
|
|
|
242
243
|
Ssh,
|
|
243
244
|
SshKey,
|
|
244
245
|
SshSftp,
|
|
246
|
+
Stack,
|
|
245
247
|
Star,
|
|
246
248
|
StarFilled,
|
|
247
249
|
Subdomain,
|
|
@@ -110,6 +110,7 @@ export { IconServer } from "./IconServer.tsx";
|
|
|
110
110
|
export { IconSsh } from "./IconSsh.tsx";
|
|
111
111
|
export { IconSshKey } from "./IconSshKey.tsx";
|
|
112
112
|
export { IconSshSftp } from "./IconSshSftp.tsx";
|
|
113
|
+
export { IconStack } from "./IconStack.tsx";
|
|
113
114
|
export { IconStar } from "./IconStar.tsx";
|
|
114
115
|
export { IconStarFilled } from "./IconStarFilled.tsx";
|
|
115
116
|
export { IconSubdomain } from "./IconSubdomain.tsx";
|
package/dist/types/iconSet.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ export declare const proIconSet: {
|
|
|
111
111
|
readonly Ssh: import("react").FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon">>;
|
|
112
112
|
readonly SshKey: import("react").FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon">>;
|
|
113
113
|
readonly SshSftp: import("react").FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon">>;
|
|
114
|
+
readonly Stack: import("react").FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon">>;
|
|
114
115
|
readonly Star: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
|
|
115
116
|
readonly StarFilled: import("react").FC<import("react").SVGProps<SVGSVGElement>>;
|
|
116
117
|
readonly Subdomain: import("react").FC<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "icon">>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-icons-pro",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.854",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Pro iconset for Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@fortawesome/sharp-regular-svg-icons": "^7.2.0",
|
|
38
38
|
"react": "^19.2.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "544ee09fbdbef472accf9c51cb9211fe6db879e0"
|
|
41
41
|
}
|