@webiny/app-admin-cognito 0.0.0-mt-2 → 0.0.0-unstable.06b2ede40f
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/components/Divider.d.ts +2 -0
- package/components/Divider.js +16 -0
- package/components/Divider.js.map +1 -0
- package/components/FederatedProviders.d.ts +44 -0
- package/components/FederatedProviders.js +14 -0
- package/components/FederatedProviders.js.map +1 -0
- package/components/View.d.ts +98 -0
- package/components/View.js +66 -0
- package/components/View.js.map +1 -0
- package/federatedIdentityProviders.d.ts +9 -0
- package/federatedIdentityProviders.js +9 -0
- package/federatedIdentityProviders.js.map +1 -0
- package/index.d.ts +136 -8
- package/index.js +130 -150
- package/index.js.map +1 -0
- package/package.json +22 -29
- package/types.js +3 -0
- package/types.js.map +1 -0
- package/views/FederatedLogin.d.ts +7 -0
- package/views/FederatedLogin.js +32 -0
- package/views/FederatedLogin.js.map +1 -0
- package/views/ForgotPassword.d.ts +2 -3
- package/views/ForgotPassword.js +91 -98
- package/views/ForgotPassword.js.map +1 -0
- package/views/LoggingIn.d.ts +2 -0
- package/views/LoggingIn.js +9 -0
- package/views/LoggingIn.js.map +1 -0
- package/views/RequireNewPassword.d.ts +2 -3
- package/views/RequireNewPassword.js +61 -70
- package/views/RequireNewPassword.js.map +1 -0
- package/views/SetNewPassword.d.ts +2 -3
- package/views/SetNewPassword.js +56 -63
- package/views/SetNewPassword.js.map +1 -0
- package/views/SignIn.d.ts +36 -3
- package/views/SignIn.js +94 -82
- package/views/SignIn.js.map +1 -0
- package/views/SignedIn.d.ts +6 -4
- package/views/SignedIn.js +7 -8
- package/views/SignedIn.js.map +1 -0
- package/views/CheckingUser.d.ts +0 -3
- package/views/CheckingUser.js +0 -14
- package/views/StateContainer.d.ts +0 -5
- package/views/StateContainer.js +0 -12
- package/views/StyledComponents.d.ts +0 -10
- package/views/StyledComponents.js +0 -74
- package/views/webiny-orange-logo.svg +0 -23
package/views/SignIn.d.ts
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { FederatedIdentityProvider } from "../federatedIdentityProviders";
|
|
3
|
+
export interface SignInProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: React.ReactNode;
|
|
6
|
+
/**
|
|
7
|
+
* This prop lets you override the entire content of the view.
|
|
8
|
+
* You'll need to implement your own title, description, and content rendering.
|
|
9
|
+
*/
|
|
10
|
+
content?: React.ReactNode;
|
|
11
|
+
footer?: React.ReactNode;
|
|
12
|
+
allowSignInWithCredentials?: boolean;
|
|
13
|
+
federatedProviders?: FederatedIdentityProvider[];
|
|
14
|
+
}
|
|
15
|
+
export interface SignInDefaultContentProps extends SignInProps {
|
|
16
|
+
error?: Error | null;
|
|
17
|
+
}
|
|
18
|
+
export declare const SignIn: ((props: SignInProps) => React.JSX.Element | null) & {
|
|
19
|
+
original: (props: SignInProps) => React.JSX.Element | null;
|
|
20
|
+
originalName: string;
|
|
21
|
+
displayName: string;
|
|
22
|
+
} & {
|
|
23
|
+
original: ((props: SignInProps) => React.JSX.Element | null) & {
|
|
24
|
+
original: (props: SignInProps) => React.JSX.Element | null;
|
|
25
|
+
originalName: string;
|
|
26
|
+
displayName: string;
|
|
27
|
+
};
|
|
28
|
+
originalName: string;
|
|
29
|
+
displayName: string;
|
|
30
|
+
} & {
|
|
31
|
+
createDecorator: (decorator: import("@webiny/app-admin").ComponentDecorator<((props: SignInProps) => React.JSX.Element | null) & {
|
|
32
|
+
original: (props: SignInProps) => React.JSX.Element | null;
|
|
33
|
+
originalName: string;
|
|
34
|
+
displayName: string;
|
|
35
|
+
}>) => (props: unknown) => React.JSX.Element;
|
|
36
|
+
};
|
package/views/SignIn.js
CHANGED
|
@@ -1,89 +1,101 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Grid, Input, Alert, Link, OverlayLoader, Button, Text } from "@webiny/admin-ui";
|
|
3
|
+
import { makeDecoratable } from "@webiny/app-admin";
|
|
4
|
+
import { Form, Bind, useForm } from "@webiny/form";
|
|
3
5
|
import { validation } from "@webiny/validation";
|
|
4
|
-
import { ButtonPrimary } from "@webiny/ui/Button";
|
|
5
|
-
import { Input } from "@webiny/ui/Input";
|
|
6
|
-
import { Grid, Cell } from "@webiny/ui/Grid";
|
|
7
|
-
import { Typography } from "@webiny/ui/Typography";
|
|
8
|
-
import { Elevation } from "@webiny/ui/Elevation";
|
|
9
|
-
import { Alert } from "@webiny/ui/Alert";
|
|
10
|
-
import { CircularProgress } from "@webiny/ui/Progress";
|
|
11
6
|
import { useAuthenticator } from "@webiny/app-cognito-authenticator/hooks/useAuthenticator";
|
|
12
7
|
import { useSignIn } from "@webiny/app-cognito-authenticator/hooks/useSignIn";
|
|
13
|
-
import
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
8
|
+
import { View } from "../components/View";
|
|
9
|
+
import { FederatedLogin } from "./FederatedLogin";
|
|
10
|
+
import { Divider } from "../components/Divider";
|
|
11
|
+
const DefaultContent = props => {
|
|
12
|
+
const {
|
|
13
|
+
submit
|
|
14
|
+
} = useForm();
|
|
15
|
+
const {
|
|
16
|
+
message,
|
|
17
|
+
changeState
|
|
18
|
+
} = useAuthenticator();
|
|
19
|
+
const {
|
|
20
|
+
title = "Login",
|
|
21
|
+
description,
|
|
22
|
+
federatedProviders = [],
|
|
23
|
+
allowSignInWithCredentials = true,
|
|
24
|
+
error = null
|
|
25
|
+
} = props;
|
|
26
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(View.Title, {
|
|
27
|
+
title: title,
|
|
28
|
+
description: description
|
|
29
|
+
}), message && !error && /*#__PURE__*/React.createElement("div", {
|
|
30
|
+
className: "wby-mb-lg"
|
|
31
|
+
}, /*#__PURE__*/React.createElement(Alert, {
|
|
32
|
+
title: message.title,
|
|
33
|
+
type: message.type
|
|
34
|
+
}, message.text)), /*#__PURE__*/React.createElement(View.Error, {
|
|
35
|
+
title: "Authentication error",
|
|
36
|
+
description: error?.message
|
|
37
|
+
}), allowSignInWithCredentials ? /*#__PURE__*/React.createElement(Grid, null, /*#__PURE__*/React.createElement(Grid.Column, {
|
|
38
|
+
span: 12
|
|
39
|
+
}, /*#__PURE__*/React.createElement(Bind, {
|
|
40
|
+
name: "username",
|
|
41
|
+
validators: validation.create("required,email"),
|
|
42
|
+
beforeChange: (val, cb) => cb(val.toLowerCase())
|
|
43
|
+
}, /*#__PURE__*/React.createElement(Input, {
|
|
44
|
+
label: "Email",
|
|
45
|
+
size: "lg"
|
|
46
|
+
}))), /*#__PURE__*/React.createElement(Grid.Column, {
|
|
47
|
+
span: 12
|
|
48
|
+
}, /*#__PURE__*/React.createElement(Bind, {
|
|
49
|
+
name: "password",
|
|
50
|
+
validators: validation.create("required")
|
|
51
|
+
}, /*#__PURE__*/React.createElement(Input, {
|
|
52
|
+
type: "password",
|
|
53
|
+
label: "Password",
|
|
54
|
+
size: "lg",
|
|
55
|
+
autoComplete: "off"
|
|
56
|
+
}))), /*#__PURE__*/React.createElement(Grid.Column, {
|
|
57
|
+
span: 12
|
|
58
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
59
|
+
className: "wby-flex wby-flex-row-reverse wby-items-center wby-justify-between"
|
|
60
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
61
|
+
text: "Submit",
|
|
62
|
+
"data-testid": "submit-sign-in-form-button",
|
|
63
|
+
onClick: ev => {
|
|
64
|
+
submit(ev);
|
|
65
|
+
},
|
|
66
|
+
size: "lg"
|
|
67
|
+
}), /*#__PURE__*/React.createElement(Text, {
|
|
68
|
+
as: "div",
|
|
69
|
+
size: "sm"
|
|
70
|
+
}, /*#__PURE__*/React.createElement(Link, {
|
|
71
|
+
to: "#",
|
|
72
|
+
onClick: () => changeState("forgotPassword")
|
|
73
|
+
}, "Forgot password?"))))) : null, federatedProviders.length ? /*#__PURE__*/React.createElement(React.Fragment, null, allowSignInWithCredentials ? /*#__PURE__*/React.createElement(Divider, null) : null, /*#__PURE__*/React.createElement(FederatedLogin, {
|
|
74
|
+
providers: federatedProviders
|
|
75
|
+
})) : null);
|
|
76
|
+
};
|
|
77
|
+
export const SignIn = makeDecoratable("SignIn", props => {
|
|
78
|
+
const {
|
|
79
|
+
signIn,
|
|
80
|
+
loading,
|
|
81
|
+
shouldRender,
|
|
82
|
+
error
|
|
83
|
+
} = useSignIn();
|
|
84
|
+
const {
|
|
85
|
+
content = undefined,
|
|
86
|
+
footer = undefined
|
|
87
|
+
} = props;
|
|
88
|
+
if (!shouldRender) {
|
|
29
89
|
return null;
|
|
30
90
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
onSubmit: signIn,
|
|
91
|
+
return /*#__PURE__*/React.createElement(View.Container, null, /*#__PURE__*/React.createElement(Form, {
|
|
92
|
+
onSubmit: data => signIn(data),
|
|
34
93
|
submitOnEnter: true
|
|
35
|
-
},
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
use: "headline4"
|
|
42
|
-
}, "Sign In"))), message && !error && /*#__PURE__*/React.createElement(Grid, null, /*#__PURE__*/React.createElement(Cell, {
|
|
43
|
-
span: 12
|
|
44
|
-
}, /*#__PURE__*/React.createElement(Alert, {
|
|
45
|
-
title: message.title,
|
|
46
|
-
type: message.type
|
|
47
|
-
}, message.text))), error && /*#__PURE__*/React.createElement(Grid, null, /*#__PURE__*/React.createElement(Cell, {
|
|
48
|
-
span: 12,
|
|
49
|
-
className: errorMessage
|
|
50
|
-
}, /*#__PURE__*/React.createElement(Alert, {
|
|
51
|
-
title: "Authentication error",
|
|
52
|
-
type: "danger"
|
|
53
|
-
}, error.message))), /*#__PURE__*/React.createElement(Grid, null, /*#__PURE__*/React.createElement(Cell, {
|
|
54
|
-
span: 12
|
|
55
|
-
}, /*#__PURE__*/React.createElement(Bind, {
|
|
56
|
-
name: "username",
|
|
57
|
-
validators: validation.create("required,email"),
|
|
58
|
-
beforeChange: function beforeChange(val, cb) {
|
|
59
|
-
return cb(val.toLowerCase());
|
|
60
|
-
}
|
|
61
|
-
}, /*#__PURE__*/React.createElement(Input, {
|
|
62
|
-
label: "Your e-mail"
|
|
63
|
-
}))), /*#__PURE__*/React.createElement(Cell, {
|
|
64
|
-
span: 12
|
|
65
|
-
}, /*#__PURE__*/React.createElement(Bind, {
|
|
66
|
-
name: "password",
|
|
67
|
-
validators: validation.create("required")
|
|
68
|
-
}, /*#__PURE__*/React.createElement(Input, {
|
|
69
|
-
type: "password",
|
|
70
|
-
label: "Your password"
|
|
71
|
-
}))), /*#__PURE__*/React.createElement(Cell, {
|
|
72
|
-
span: 12,
|
|
73
|
-
className: alignRight
|
|
74
|
-
}, /*#__PURE__*/React.createElement(ButtonPrimary, {
|
|
75
|
-
"data-testid": "submit-sign-in-form-button",
|
|
76
|
-
onClick: submit
|
|
77
|
-
}, "Submit")), /*#__PURE__*/React.createElement(Cell, {
|
|
78
|
-
span: 12,
|
|
79
|
-
className: alignCenter
|
|
80
|
-
}, /*#__PURE__*/React.createElement("a", {
|
|
81
|
-
href: "#",
|
|
82
|
-
onClick: function onClick() {
|
|
83
|
-
return changeState("forgotPassword");
|
|
84
|
-
}
|
|
85
|
-
}, "Forgot password?")))));
|
|
86
|
-
}));
|
|
87
|
-
};
|
|
94
|
+
}, () => /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(View.Content, null, loading && /*#__PURE__*/React.createElement(OverlayLoader, {
|
|
95
|
+
text: "Signing in..."
|
|
96
|
+
}), content ? content : /*#__PURE__*/React.createElement(DefaultContent, Object.assign({}, props, {
|
|
97
|
+
error: error
|
|
98
|
+
}))), footer ? /*#__PURE__*/React.createElement(View.Footer, null, footer) : null)));
|
|
99
|
+
});
|
|
88
100
|
|
|
89
|
-
|
|
101
|
+
//# sourceMappingURL=SignIn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","Grid","Input","Alert","Link","OverlayLoader","Button","Text","makeDecoratable","Form","Bind","useForm","validation","useAuthenticator","useSignIn","View","FederatedLogin","Divider","DefaultContent","props","submit","message","changeState","title","description","federatedProviders","allowSignInWithCredentials","error","createElement","Fragment","Title","className","type","text","Error","Column","span","name","validators","create","beforeChange","val","cb","toLowerCase","label","size","autoComplete","onClick","ev","as","to","length","providers","SignIn","signIn","loading","shouldRender","content","undefined","footer","Container","onSubmit","data","submitOnEnter","Content","Object","assign","Footer"],"sources":["SignIn.tsx"],"sourcesContent":["import React from \"react\";\nimport { Grid, Input, Alert, Link, OverlayLoader, Button, Text } from \"@webiny/admin-ui\";\nimport { makeDecoratable } from \"@webiny/app-admin\";\nimport { Form, Bind, useForm } from \"@webiny/form\";\nimport { validation } from \"@webiny/validation\";\nimport { useAuthenticator } from \"@webiny/app-cognito-authenticator/hooks/useAuthenticator\";\nimport type { UseSignInCallableParams } from \"@webiny/app-cognito-authenticator/hooks/useSignIn\";\nimport { useSignIn } from \"@webiny/app-cognito-authenticator/hooks/useSignIn\";\nimport { View } from \"~/components/View\";\nimport { FederatedLogin } from \"./FederatedLogin\";\nimport type { FederatedIdentityProvider } from \"~/federatedIdentityProviders\";\nimport { Divider } from \"~/components/Divider\";\n\nexport interface SignInProps {\n title?: string;\n description?: React.ReactNode;\n /**\n * This prop lets you override the entire content of the view.\n * You'll need to implement your own title, description, and content rendering.\n */\n content?: React.ReactNode;\n footer?: React.ReactNode;\n allowSignInWithCredentials?: boolean;\n federatedProviders?: FederatedIdentityProvider[];\n}\n\nexport interface SignInDefaultContentProps extends SignInProps {\n error?: Error | null;\n}\n\nconst DefaultContent = (props: SignInDefaultContentProps) => {\n const { submit } = useForm();\n const { message, changeState } = useAuthenticator();\n const {\n title = \"Login\",\n description,\n federatedProviders = [],\n allowSignInWithCredentials = true,\n error = null\n } = props;\n\n return (\n <>\n <View.Title title={title} description={description} />\n {message && !error && (\n <div className={\"wby-mb-lg\"}>\n <Alert title={message.title} type={message.type}>\n {message.text}\n </Alert>\n </div>\n )}\n\n <View.Error title=\"Authentication error\" description={error?.message} />\n\n {allowSignInWithCredentials ? (\n <Grid>\n <Grid.Column span={12}>\n <Bind\n name=\"username\"\n validators={validation.create(\"required,email\")}\n beforeChange={(val: string, cb: (value: string) => void) =>\n cb(val.toLowerCase())\n }\n >\n <Input label={\"Email\"} size={\"lg\"} />\n </Bind>\n </Grid.Column>\n <Grid.Column span={12}>\n <Bind name=\"password\" validators={validation.create(\"required\")}>\n <Input\n type={\"password\"}\n label={\"Password\"}\n size={\"lg\"}\n autoComplete={\"off\"}\n />\n </Bind>\n </Grid.Column>\n <Grid.Column span={12}>\n <div\n className={\n \"wby-flex wby-flex-row-reverse wby-items-center wby-justify-between\"\n }\n >\n <Button\n text={\"Submit\"}\n data-testid=\"submit-sign-in-form-button\"\n onClick={ev => {\n submit(ev);\n }}\n size=\"lg\"\n />\n <Text as={\"div\"} size={\"sm\"}>\n <Link to=\"#\" onClick={() => changeState(\"forgotPassword\")}>\n Forgot password?\n </Link>\n </Text>\n </div>\n </Grid.Column>\n </Grid>\n ) : null}\n {federatedProviders.length ? (\n <>\n {allowSignInWithCredentials ? <Divider /> : null}\n <FederatedLogin providers={federatedProviders} />\n </>\n ) : null}\n </>\n );\n};\n\nexport const SignIn = makeDecoratable(\"SignIn\", (props: SignInProps) => {\n const { signIn, loading, shouldRender, error } = useSignIn();\n const { content = undefined, footer = undefined } = props;\n\n if (!shouldRender) {\n return null;\n }\n\n return (\n <View.Container>\n <Form<UseSignInCallableParams> onSubmit={data => signIn(data)} submitOnEnter>\n {() => (\n <>\n <View.Content>\n {loading && <OverlayLoader text={\"Signing in...\"} />}\n {content ? content : <DefaultContent {...props} error={error} />}\n </View.Content>\n {footer ? <View.Footer>{footer}</View.Footer> : null}\n </>\n )}\n </Form>\n </View.Container>\n );\n});\n"],"mappings":"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","ignoreList":[]}
|
package/views/SignedIn.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import type React from "react";
|
|
2
|
+
interface SignedInProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
}
|
|
5
|
+
export declare const SignedIn: ({ children }: SignedInProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
6
|
+
export {};
|
package/views/SignedIn.js
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { useSignedIn } from "@webiny/app-cognito-authenticator/hooks/useSignedIn";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
export const SignedIn = ({
|
|
3
|
+
children
|
|
4
|
+
}) => {
|
|
5
|
+
const {
|
|
6
|
+
shouldRender
|
|
7
|
+
} = useSignedIn();
|
|
9
8
|
return shouldRender ? children : null;
|
|
10
9
|
};
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
//# sourceMappingURL=SignedIn.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["useSignedIn","SignedIn","children","shouldRender"],"sources":["SignedIn.tsx"],"sourcesContent":["import type React from \"react\";\nimport { useSignedIn } from \"@webiny/app-cognito-authenticator/hooks/useSignedIn\";\n\ninterface SignedInProps {\n children: React.ReactNode;\n}\n\nexport const SignedIn = ({ children }: SignedInProps) => {\n const { shouldRender } = useSignedIn();\n\n return shouldRender ? (children as unknown as React.ReactElement) : null;\n};\n"],"mappings":"AACA,SAASA,WAAW,QAAQ,qDAAqD;AAMjF,OAAO,MAAMC,QAAQ,GAAGA,CAAC;EAAEC;AAAwB,CAAC,KAAK;EACrD,MAAM;IAAEC;EAAa,CAAC,GAAGH,WAAW,CAAC,CAAC;EAEtC,OAAOG,YAAY,GAAID,QAAQ,GAAqC,IAAI;AAC5E,CAAC","ignoreList":[]}
|
package/views/CheckingUser.d.ts
DELETED
package/views/CheckingUser.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { useAuthenticator } from "@webiny/app-cognito-authenticator/hooks/useAuthenticator";
|
|
3
|
-
import { CircularProgress } from "@webiny/ui/Progress";
|
|
4
|
-
|
|
5
|
-
var CheckingUser = function CheckingUser() {
|
|
6
|
-
var _useAuthenticator = useAuthenticator(),
|
|
7
|
-
checkingUser = _useAuthenticator.checkingUser;
|
|
8
|
-
|
|
9
|
-
return checkingUser ? /*#__PURE__*/React.createElement(CircularProgress, {
|
|
10
|
-
label: "Verifying user..."
|
|
11
|
-
}) : null;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export default CheckingUser;
|
package/views/StateContainer.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { LoginContent, Logo, Wrapper } from "./StyledComponents";
|
|
3
|
-
import logoOrange from "./webiny-orange-logo.svg";
|
|
4
|
-
|
|
5
|
-
var StateContainer = function StateContainer(_ref) {
|
|
6
|
-
var children = _ref.children;
|
|
7
|
-
return /*#__PURE__*/React.createElement(Wrapper, null, /*#__PURE__*/React.createElement(Logo, {
|
|
8
|
-
src: logoOrange
|
|
9
|
-
}), /*#__PURE__*/React.createElement(LoginContent, null, children));
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export default StateContainer;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const Wrapper: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "translate" | "children" | "defaultValue" | "id" | "onError" | "className" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, object>;
|
|
3
|
-
export declare const Logo: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, Pick<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "loading" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "height" | "translate" | "width" | "children" | "defaultValue" | "id" | "onError" | "className" | "alt" | "crossOrigin" | "placeholder" | "sizes" | "src" | "srcSet" | "useMap" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "decoding" | "referrerPolicy">, object>;
|
|
4
|
-
export declare const LoginContent: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "translate" | "children" | "defaultValue" | "id" | "onError" | "className" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, object>;
|
|
5
|
-
export declare const InnerContent: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "translate" | "children" | "defaultValue" | "id" | "onError" | "className" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, object>;
|
|
6
|
-
export declare const Footer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "translate" | "children" | "defaultValue" | "id" | "onError" | "className" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, object>;
|
|
7
|
-
export declare const Title: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "translate" | "children" | "defaultValue" | "id" | "onError" | "className" | "placeholder" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture">, object>;
|
|
8
|
-
export declare const alignRight: string;
|
|
9
|
-
export declare const alignCenter: string;
|
|
10
|
-
export declare const errorMessage: string;
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
import styled from "@emotion/styled";
|
|
2
|
-
import { css } from "emotion";
|
|
3
|
-
export var Wrapper = /*#__PURE__*/styled("section", {
|
|
4
|
-
target: "exiqwj40",
|
|
5
|
-
label: "Wrapper"
|
|
6
|
-
})({
|
|
7
|
-
display: "flex",
|
|
8
|
-
flexDirection: "column",
|
|
9
|
-
justifyContent: "center",
|
|
10
|
-
minHeight: "100vh",
|
|
11
|
-
color: "var(--mdc-theme-on-surface)"
|
|
12
|
-
});
|
|
13
|
-
export var Logo = /*#__PURE__*/styled("img", {
|
|
14
|
-
target: "exiqwj41",
|
|
15
|
-
label: "Logo"
|
|
16
|
-
})({
|
|
17
|
-
margin: "0 auto",
|
|
18
|
-
marginBottom: 30,
|
|
19
|
-
width: 125
|
|
20
|
-
});
|
|
21
|
-
export var LoginContent = /*#__PURE__*/styled("div", {
|
|
22
|
-
target: "exiqwj42",
|
|
23
|
-
label: "LoginContent"
|
|
24
|
-
})({
|
|
25
|
-
width: "100%",
|
|
26
|
-
maxWidth: 500,
|
|
27
|
-
margin: "0 auto 25px auto",
|
|
28
|
-
".mdc-elevation--z2": {
|
|
29
|
-
borderRadius: 4,
|
|
30
|
-
boxShadow: "0 1px 3px 0 rgba(0,0,0,0.15)"
|
|
31
|
-
},
|
|
32
|
-
a: {
|
|
33
|
-
textDecoration: "none",
|
|
34
|
-
color: "var(--mdc-theme-primary)",
|
|
35
|
-
fontWeight: 600,
|
|
36
|
-
"&:hover": {
|
|
37
|
-
textDecoration: "underline"
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
});
|
|
41
|
-
export var InnerContent = /*#__PURE__*/styled("div", {
|
|
42
|
-
target: "exiqwj43",
|
|
43
|
-
label: "InnerContent"
|
|
44
|
-
})({
|
|
45
|
-
position: "relative",
|
|
46
|
-
padding: 25
|
|
47
|
-
});
|
|
48
|
-
export var Footer = /*#__PURE__*/styled("div", {
|
|
49
|
-
target: "exiqwj44",
|
|
50
|
-
label: "Footer"
|
|
51
|
-
})({
|
|
52
|
-
textAlign: "center",
|
|
53
|
-
marginBottom: 75,
|
|
54
|
-
a: {
|
|
55
|
-
textDecoration: "none",
|
|
56
|
-
color: "var(--mdc-theme-primary)"
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
export var Title = /*#__PURE__*/styled("div", {
|
|
60
|
-
target: "exiqwj45",
|
|
61
|
-
label: "Title"
|
|
62
|
-
})({
|
|
63
|
-
textAlign: "center",
|
|
64
|
-
margin: "10px 25px"
|
|
65
|
-
});
|
|
66
|
-
export var alignRight = /*#__PURE__*/css({
|
|
67
|
-
textAlign: "right"
|
|
68
|
-
}, "label:alignRight;");
|
|
69
|
-
export var alignCenter = /*#__PURE__*/css({
|
|
70
|
-
textAlign: "center"
|
|
71
|
-
}, "label:alignCenter;");
|
|
72
|
-
export var errorMessage = /*#__PURE__*/css({
|
|
73
|
-
color: "red"
|
|
74
|
-
}, "label:errorMessage;");
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="413px" height="136px" viewBox="0 0 413 136" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<!-- Generator: Sketch 55.2 (78181) - https://sketchapp.com -->
|
|
4
|
-
<title>Logo</title>
|
|
5
|
-
<desc>Created with Sketch.</desc>
|
|
6
|
-
<defs>
|
|
7
|
-
<path d="M113.8653,106.64105 L67.5565,133.37785 C63.1738,135.90765 57.7745,135.90765 53.3919,133.37785 L7.0822,106.64105 C2.6996,104.11045 -4.91085111e-15,99.43505 -4.60099098e-15,94.37465 L-1.32667732e-15,40.90105 C-1.01681719e-15,35.84065 2.6996,31.16455 7.0822,28.63475 L53.3919,1.89795 C57.7745,-0.63265 63.1738,-0.63265 67.5565,1.89795 L113.8653,28.63475 C118.248,31.16455 120.9476,35.84065 120.9476,40.90105 L120.9476,94.37465 C120.9476,99.43505 118.248,104.11045 113.8653,106.64105 Z M88.4639,45.0833 C84.9908,54.8825 81.4929,64.7065 77.9959,74.5412 L76.886,74.5412 C73.4006,64.6826 69.9035,54.8347 66.4181,45 L55.5444,45 C52.0111,54.9427 48.5141,64.7897 45.0171,74.6492 L44.002,74.6492 C40.4572,64.6941 36.9124,54.7398 33.4862,45.1311 L20.5,45.1311 C26.8146,63.214 32.9734,80.8434 39.1321,98.4728 L49.8507,98.4728 L60.4622,68.6446 L61.5366,68.6446 C65.0814,78.6475 68.6147,88.662 72.0878,98.4488 L82.8304,98.4488 C89.013,80.7477 95.1718,63.1068 101.4625,45.0833 L88.4639,45.0833 Z" id="path-1"></path>
|
|
8
|
-
</defs>
|
|
9
|
-
<g id="Page-3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
10
|
-
<g id="Webiny-Logo-Icon" transform="translate(-95.000000, -227.000000)">
|
|
11
|
-
<g id="Logo" transform="translate(95.000000, 226.598492)">
|
|
12
|
-
<path d="M266.606118,87.28355 L266.606118,96.05205 L306.300318,96.05205 L306.300318,87.28355 L266.606118,87.28355 Z M306.344818,184.06705 L306.344818,174.89865 C298.508918,174.89865 291.063818,174.91595 283.618718,174.88955 C278.670418,174.86315 275.188318,171.34475 275.232818,166.50285 C275.268318,161.61645 277.746918,159.35135 283.255118,159.31585 C289.766718,159.27135 296.287518,159.31585 302.799918,159.28945 C303.981618,159.28045 305.163218,159.08495 306.291218,158.97865 L306.291218,150.41375 C305.935818,150.26285 305.749418,150.11195 305.562318,150.11195 C296.261118,150.08555 286.941718,149.93385 277.639718,150.11195 C273.109518,150.20105 269.564718,152.33255 267.663218,156.80175 C270.710818,161.37645 270.443718,166.44095 269.821918,171.51375 C269.306618,175.65395 269.591118,179.70425 270.488218,184.15535 C282.481618,184.11985 294.386818,184.25345 306.344818,184.06705 L306.344818,184.06705 Z M296.980918,141.51245 C300.836618,141.40525 303.670718,138.93565 305.305018,135.39085 C306.992918,131.73055 307.721818,127.83035 306.797518,123.92185 C306.033118,120.68785 304.638718,117.60475 303.483518,114.36255 C304.700618,112.95835 306.086718,111.35045 307.623718,109.59155 C305.651318,107.39735 303.954418,105.49595 302.258218,103.60355 C297.176418,107.65465 297.176418,107.65465 290.557518,107.65465 C283.734218,107.65465 276.902618,107.65465 270.080018,107.66375 C268.978418,107.66375 267.867718,107.76185 266.623418,107.82375 L266.623418,116.86765 L288.860518,116.86765 C293.693418,116.86765 296.936418,119.39085 298.153518,124.09915 C299.575018,129.60725 297.398218,132.48585 291.730018,132.50405 C284.498518,132.53045 277.258018,132.50405 270.017418,132.52135 C268.915718,132.52135 267.814118,132.62775 266.695218,132.69035 L266.695218,141.59245 C276.947118,141.59245 286.968118,141.76975 296.980918,141.51245 L296.980918,141.51245 Z M298.615218,22.89265 C298.313418,27.28095 296.536518,28.97795 292.085418,28.67535 C287.617118,24.23335 289.509518,18.71695 289.206918,13.51965 C294.724118,13.89235 298.935218,18.21895 298.615218,22.89265 L298.615218,22.89265 Z M278.475018,35.66775 C277.497918,33.41995 276.591718,31.45665 275.800918,29.44875 C274.548418,26.30385 274.183918,23.04355 274.859318,19.70315 C275.525518,16.38015 277.116118,14.78125 280.624718,14.15045 C280.624718,16.04285 280.633818,17.87265 280.624718,19.69405 C280.581018,23.99425 281.184618,28.16905 283.227918,32.00745 C287.412618,39.85165 298.242518,40.82045 303.430718,33.72175 C308.938918,26.19665 308.468118,14.96765 300.729418,8.46425 C294.928618,3.59595 288.140718,2.64525 280.873718,3.80955 C274.939318,4.76845 270.452718,7.83345 267.778718,13.17335 C263.976518,20.76025 265.993518,33.50895 271.980718,40.13605 C274.131218,38.65265 276.307218,37.15115 278.475018,35.66775 L278.475018,35.66775 Z M283.272418,203.75375 C289.118618,201.22155 293.018018,194.18545 292.111818,187.73565 C292.031818,187.15845 291.668218,186.62575 291.383718,185.96775 L282.339818,185.96775 C282.535218,187.18485 282.775218,188.18915 282.837018,189.20175 C282.997018,191.74225 281.619918,194.22995 279.639318,195.13615 C277.417918,196.15785 274.246618,195.57155 272.531518,193.61735 C271.669818,192.63115 270.799118,191.45855 270.470918,190.22335 C269.680118,187.25575 268.826718,184.21795 268.703018,181.17035 C268.463018,175.60035 268.826718,170.00315 268.658518,164.42405 C268.515818,159.91125 266.206218,155.66465 262.350518,153.31875 C255.651618,149.25025 246.359518,151.15995 241.845818,157.30805 C237.466518,163.27795 238.248218,172.18005 243.685418,177.46555 C247.603018,181.27755 252.489418,182.92095 258.103918,183.78265 L258.103918,174.46325 C257.091418,174.14335 255.891618,173.85885 254.763618,173.39715 C253.528418,172.89085 252.267618,172.36635 251.174218,171.62015 C248.473718,169.77225 247.585718,166.45005 248.891018,163.68695 C249.921718,161.50095 252.915718,160.06205 255.429818,160.54195 C258.512918,161.12825 259.605518,162.70985 259.614518,166.72545 C259.631918,172.41095 259.436418,178.09635 259.623618,183.77355 C259.819018,189.45975 261.453318,194.77175 265.042718,199.31185 C269.271118,204.66905 276.928918,206.49875 283.272418,203.75375 L283.272418,203.75375 Z M278.448618,69.76465 C275.330118,67.39235 274.530318,64.05205 274.548418,60.41815 C274.557518,58.66835 274.832918,56.91785 275.028318,54.65275 C281.238218,54.65275 287.226218,54.42185 293.187118,54.75085 C296.145618,54.90995 297.789018,57.48675 298.553418,60.16085 C299.450518,63.27945 299.192418,66.34435 296.651918,68.78755 C292.307218,72.94505 283.255118,73.41585 278.448618,69.76465 L278.448618,69.76465 Z M291.863618,81.19825 C302.133718,79.71485 308.308118,71.94075 307.703718,61.64425 C307.570118,59.41465 306.851118,57.22045 306.317618,54.63455 L323.117418,54.63455 L323.117418,45.24435 L268.045018,45.24435 C266.579718,49.45545 265.513518,57.99305 265.859918,62.26605 C266.686118,72.48325 271.847918,78.95045 281.415518,80.94915 C284.783018,81.65995 288.451518,81.69545 291.863618,81.19825 L291.863618,81.19825 Z M306.309318,-6.53145 C299.015218,-9.11735 291.703718,-11.71965 284.383118,-14.32285 L284.383118,-15.14905 C291.721018,-17.74325 299.050618,-20.34635 306.371218,-22.94045 L306.371218,-31.03365 C298.970618,-33.66405 291.641018,-36.26645 284.303118,-38.86965 L284.303118,-39.62495 C291.712718,-42.26355 299.121518,-44.90215 306.273118,-47.45175 L306.273118,-57.11745 C292.814418,-52.41815 279.692118,-47.83355 266.570718,-43.24975 L266.570718,-35.27195 L288.771518,-27.37345 L288.771518,-26.57435 C281.327218,-23.93575 273.873118,-21.30615 266.588018,-18.72035 L266.588018,-10.72525 C279.763018,-6.12335 292.894318,-1.53865 306.309318,3.14325 L306.309318,-6.53145 Z" id="Fill-15" fill="#FA5A28" transform="translate(281.068188, 73.950738) rotate(-90.000000) translate(-281.068188, -73.950738) "></path>
|
|
13
|
-
<g id="Webiny-Icon-Orange" transform="translate(-0.000000, 0.901508)">
|
|
14
|
-
<mask id="mask-2" fill="white">
|
|
15
|
-
<use xlink:href="#path-1"></use>
|
|
16
|
-
</mask>
|
|
17
|
-
<use id="Mask" fill="#FA5A28" fill-rule="evenodd" xlink:href="#path-1"></use>
|
|
18
|
-
<g id="Orange" mask="url(#mask-2)"></g>
|
|
19
|
-
</g>
|
|
20
|
-
</g>
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
</svg>
|