mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
27 lines
868 B
JavaScript
27 lines
868 B
JavaScript
function OpenIDLogo() {
|
|
return (
|
|
<svg
|
|
width="40"
|
|
height="40"
|
|
viewBox="0 0 40 40"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect width="40" height="40" fill="white" />
|
|
<path
|
|
d="M18.185415 36.042565 23.298193 32.35627 23.060446 3.090316 18.185415 6.8918455Z"
|
|
fill="#ff8e00"
|
|
/>
|
|
<path
|
|
d="M18.246064 36.042565C-0.37463741 32.997945 -1.0248032 15.054095 18.13083 11.143396l0.05944 3.322396 c -13.3672163 2.225847 -11.6629563 14.187201 0 15.92785l0.05944 3.127104Z"
|
|
fill="#626262"
|
|
/>
|
|
<path
|
|
d="M23.219348 14.720521c2.279219 0.01577 4.262468 1.057732 6.237225 2.117891l-2.917255 2.176115h9.317022l0.05701 -6.371868 -2.917255 2.176115C30.03396 13.32315 27.308358 11.530342 23.169615 11.496378Z"
|
|
fill="#626262"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default OpenIDLogo
|
|
|