grep-components 1.24.0-GREPF-2060.2 → 1.24.0-GREPF-2060.4
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/components/GDPR/index.d.ts +4 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4059,13 +4059,14 @@ var useStyles$7 = makeStyles()(function (theme) {
|
|
|
4059
4059
|
});
|
|
4060
4060
|
});
|
|
4061
4061
|
|
|
4062
|
-
var GDPR = function (
|
|
4062
|
+
var GDPR = function (_a) {
|
|
4063
|
+
var children = _a.children;
|
|
4063
4064
|
var classes = useStyles$7().classes;
|
|
4064
4065
|
return (React.createElement(Box, { className: classes.container },
|
|
4065
4066
|
React.createElement(Info, { className: classes.icon }),
|
|
4066
4067
|
React.createElement(Box, { className: classes.content },
|
|
4067
4068
|
React.createElement(Typography, { className: classes.title }, "Personlig informasjon og personvern"),
|
|
4068
|
-
React.createElement(Typography, { className: classes.body },
|
|
4069
|
+
React.createElement(Typography, { className: classes.body }, children))));
|
|
4069
4070
|
};
|
|
4070
4071
|
|
|
4071
4072
|
var GrepInput = function (_a) {
|