@pronto-tools-and-more/components 7.2.0 → 7.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/main.js +1 -1
- package/dist/parts/Button/Button.d.ts +3 -9
- package/package.json +1 -1
package/dist/main.js
CHANGED
@@ -72,7 +72,7 @@ var FooterItemsList = ({
|
|
72
72
|
// src/parts/FooterSocialLink/FooterSocialLink.tsx
|
73
73
|
var FooterSocialLink = ({ item }) => {
|
74
74
|
const iconClass = `MaskIcon MaskIcon${item.label}`;
|
75
|
-
return /* @__PURE__ */ React.createElement("li", { className: "FooterSocialLink" }, /* @__PURE__ */ React.createElement("a", { href: item.url, "aria-label": item.label }, /* @__PURE__ */ React.createElement("div", { className: iconClass })));
|
75
|
+
return /* @__PURE__ */ React.createElement("li", { className: "FooterSocialLink" }, /* @__PURE__ */ React.createElement("a", { href: item.url, "aria-label": item.label, target: "_blank" }, /* @__PURE__ */ React.createElement("div", { className: iconClass })));
|
76
76
|
};
|
77
77
|
|
78
78
|
// src/parts/FooterSocialLinks/FooterSocialLinks.tsx
|
@@ -1,10 +1,4 @@
|
|
1
|
-
export declare const Button: ({ message }: {
|
1
|
+
export declare const Button: ({ message, to }: {
|
2
2
|
message: string;
|
3
|
-
|
4
|
-
|
5
|
-
message: string;
|
6
|
-
tap: {
|
7
|
-
type: string;
|
8
|
-
path: string;
|
9
|
-
};
|
10
|
-
};
|
3
|
+
to: string;
|
4
|
+
}) => import("react").JSX.Element;
|