one-click-accessibility/modules/settings/assets/js/icons/logo-icon.js
VasylD 9c9536cbeb
[APP-2130] add elementor one (#433)
* [APP-0000] add elementor one

* [APP-0000] add elementor one

* [APP-2207] add dashboard widget

* [APP-2207] add dashboard widget

* [APP-2207] add dashboard widget

* [APP-2207] add dashboard widget

* [APP-0000] Add slug to the connect config

* [APP-0000] Update connect config

* [APP-0000] Update connect config

* [APP-0000] Update connect config

* [APP-0000] Update connect config

* [APP-0000] Update connect config

* Hide sidebar footer if Elementor One is connected

* fix: import errors on opening the scanner

* [APP-0000] Update connect config

* Update modules/settings/module.php

Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com>

* [APP-2270] Top bar implementation (#458)

* [APP-2270] Top bar implementation

* Update top bar title

* Update packages

* fix: env for top bar

* update: ally menu location

* Fix pointer

* Update

* Update

* Update

* Update

* Update

* Fix design saving

* Add missing pro icon to sidebar menu

* Sidebar icons sizes

* Fix link to "Manage subscription"

* fix: header name

* Update logo icon in the sidebar

* Remove logos from modal/dialog headers

* Update button colors

* Make the "Get started" modal dismissible

* Update crown icon

* Update

* Role attribute

* Update logo icon

* Update list item padding

* [APP-0000] Update connect config

* [ACD-7909] Enable Pro features on One

* Update menu order

* [ACD-7909] Enable Pro features on One

* [ACD-7909] Enable Pro features on One

* Hide pointers from Elementor One users

* [ACD-7909] Enable Pro features on One

* fix: don't show notices in some cases (#466)

* [ACD-7794] Fix subitem color and spacing, info and pro icon size (#464)

* fix: subitem color and spacing, info and pro icon size

* chore: update elementor-one-assets package to 0.4.16

* fix: PLG margin and button style issue (#463)

---------

Co-authored-by: Nirbhay Singh <nirbhayr@elementor.com>
Co-authored-by: vasyldinets <vasyld@elementor.red>
Co-authored-by: Nirbhay Singh <121793120+nirbhayel@users.noreply.github.com>

---------

Co-authored-by: Rami Yushuvaev <ramiy@elementor.com>
Co-authored-by: Nirbhay Singh <nirbhayr@elementor.com>
Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com>
Co-authored-by: Nirbhay Singh <121793120+nirbhayel@users.noreply.github.com>
2026-01-12 12:26:38 +01:00

30 lines
1.3 KiB
JavaScript

import SvgIcon from '@elementor/ui/SvgIcon';
const LogoIcon = (props, { size }) => {
return (
<SvgIcon
viewBox="0 0 24 24"
width="24"
height="24"
fontSize={size}
{...props}
>
<circle
cx="12"
cy="4"
r="2"
fill="none"
stroke="currentColor"
strokeWidth="1.5"
/>
<path
d="M20.8389 8.17843C21.4492 8.08884 22 8.56054 22 9.17745V10.1804C21.9999 10.6569 21.6658 11.066 21.1963 11.1472C20.1561 11.3266 18.2052 11.6291 15.9323 11.8213C15.408 11.8657 15 12.301 15 12.8271V14.9997C15 15.0999 15.0239 15.2008 15.0892 15.2768L19.1816 20.0466C19.5413 20.4657 19.4932 21.0971 19.0742 21.4567L18.3154 22.1081C17.8964 22.4677 17.265 22.4194 16.9053 22.0007L12.675 17.0707C12.2759 16.6057 11.5562 16.6057 11.1571 17.0708L6.92773 22.0007C6.56804 22.4195 5.9366 22.4677 5.51758 22.1081L4.75879 21.4567C4.33967 21.0971 4.29171 20.4657 4.65137 20.0466L8.75894 15.2592C8.91449 15.0779 9 14.8469 9 14.608V12.8271C9 12.301 8.59198 11.8657 8.06768 11.8213C5.79521 11.6291 3.84493 11.3266 2.80469 11.1472C2.335 11.0661 2.00008 10.657 2 10.1804V9.17745C2.00001 8.56055 2.55078 8.08887 3.16113 8.17843C5.11958 8.46589 9.14494 8.9997 12 8.99972C14.855 8.99972 18.8803 8.46589 20.8389 8.17843Z"
fill="none"
stroke="currentColor"
strokeWidth="1.5"
/>
</SvgIcon>
);
};
export default LogoIcon;