mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* update: convert imports to named imports * add: function to check if current screen is settings page * update: rename elementor logo to app logo * add: url mismatch flow and components * update: remove obsolete code * Update modules/connect/rest/authorize.php Co-authored-by: Pavlo Kniazevych <139438463+pkniazevych@users.noreply.github.com> * Update modules/settings/module.php Co-authored-by: Pavlo Kniazevych <139438463+pkniazevych@users.noreply.github.com> * fix: modal was not closing * update: remove url mismatch notice * update: mismatch modal and rendering logic * add: toast notifications for errors * update: convert components into styled components * update: remove bottom border from the dialog * update: text copy * fix: logo alignment * update: renamed styled component --------- Co-authored-by: Pavlo Kniazevych <139438463+pkniazevych@users.noreply.github.com>
29 lines
844 B
JavaScript
29 lines
844 B
JavaScript
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const AppLogo = () => {
|
|
return (
|
|
<SvgIcon viewBox="0 0 20 20" width="24" height="24" fill="none">
|
|
<path
|
|
fill="#000"
|
|
d="M0 9.998a9.994 9.994 0 0 0 6.171 9.237 9.993 9.993 0 0 0 7.654 0 10.005 10.005 0 0 0 3.244-2.166 10.005 10.005 0 0 0 0-14.142 10.005 10.005 0 0 0-14.142 0A10.004 10.004 0 0 0 0 9.998Z"
|
|
/>
|
|
<path
|
|
stroke="#fff"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.821"
|
|
d="m7.775 15.001 2.221-3.335M9.996 11.666 12.221 15M9.996 11.666V9.445M9.996 9.445l3.335-1.11M9.997 9.445l-3.332-1.11"
|
|
/>
|
|
<path
|
|
fill="#fff"
|
|
stroke="#fff"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.456"
|
|
d="M10.47 6.186a.557.557 0 1 0-.944-.593.557.557 0 0 0 .943.593Z"
|
|
/>
|
|
</SvgIcon>
|
|
);
|
|
};
|
|
|
|
export default AppLogo;
|