one-click-accessibility/modules/settings/assets/js/icons/logo-icon.js
2026-01-07 09:16:39 +02: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;