mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
|
function OrcidLogo() {
|
||
|
return (
|
||
|
<svg
|
||
|
width="40"
|
||
|
height="40"
|
||
|
viewBox="0 0 40 40"
|
||
|
fill="none"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
>
|
||
|
<rect width="40" height="40" fill="white" />
|
||
|
<g clipPath="url(#clip0_10_162)">
|
||
|
<path
|
||
|
d="M36.6666 20C36.6666 29.2057 29.2056 36.6667 19.9999 36.6667C10.7942 36.6667 3.33325 29.2057 3.33325 20C3.33325 10.7943 10.7942 3.33334 19.9999 3.33334C29.2056 3.33334 36.6666 10.7943 36.6666 20Z"
|
||
|
fill="#A6CE39"
|
||
|
/>
|
||
|
<path
|
||
|
d="M14.5702 27.5781H12.5649V13.6328H14.5702V19.9349V27.5781Z"
|
||
|
fill="white"
|
||
|
/>
|
||
|
<path
|
||
|
d="M17.5129 13.6328H22.9296C28.0859 13.6328 30.3515 17.3177 30.3515 20.612C30.3515 24.1927 27.552 27.5911 22.9556 27.5911H17.5129V13.6328ZM19.5181 25.7812H22.7083C27.2525 25.7812 28.2942 22.3307 28.2942 20.612C28.2942 17.8125 26.5103 15.4427 22.6041 15.4427H19.5181V25.7812Z"
|
||
|
fill="white"
|
||
|
/>
|
||
|
<path
|
||
|
d="M14.8826 10.7292C14.8826 11.4453 14.2967 12.0443 13.5675 12.0443C12.8384 12.0443 12.2524 11.4453 12.2524 10.7292C12.2524 10 12.8384 9.41406 13.5675 9.41406C14.2967 9.41406 14.8826 10.013 14.8826 10.7292Z"
|
||
|
fill="white"
|
||
|
/>
|
||
|
</g>
|
||
|
<defs>
|
||
|
<clipPath id="clip0_10_162">
|
||
|
<rect
|
||
|
width="33.3333"
|
||
|
height="33.3333"
|
||
|
fill="white"
|
||
|
transform="translate(3.33325 3.33334)"
|
||
|
/>
|
||
|
</clipPath>
|
||
|
</defs>
|
||
|
</svg>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default OrcidLogo
|