Created
July 9, 2024 04:25
-
-
Save koolkishan/8b590127ab27e3bdea1f39649f3ee8e9 to your computer and use it in GitHub Desktop.
Logo component for the Realtime Chat App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Logo = () => { | |
return ( | |
<div className="flex p-5 justify-start items-center gap-2"> | |
<svg | |
id="logo-38" | |
width="78" | |
height="32" | |
viewBox="0 0 78 32" | |
fill="none" | |
xmlns="http://www.w3.org/2000/svg" | |
> | |
{" "} | |
<path | |
d="M55.5 0H77.5L58.5 32H36.5L55.5 0Z" | |
className="ccustom" | |
fill="#8338ec" | |
></path>{" "} | |
<path | |
d="M35.5 0H51.5L32.5 32H16.5L35.5 0Z" | |
className="ccompli1" | |
fill="#975aed" | |
></path>{" "} | |
<path | |
d="M19.5 0H31.5L12.5 32H0.5L19.5 0Z" | |
className="ccompli2" | |
fill="#a16ee8" | |
></path>{" "} | |
</svg> | |
<span className="text-3xl font-semibold ">Syncronus</span> | |
</div> | |
); | |
}; | |
export default Logo; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment