Skip to content

Instantly share code, notes, and snippets.

@avoajaugochukwu
Created March 10, 2022 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avoajaugochukwu/61c4adced537a8b085d94596efc271e5 to your computer and use it in GitHub Desktop.
Save avoajaugochukwu/61c4adced537a8b085d94596efc271e5 to your computer and use it in GitHub Desktop.
This gist provides illustration on how to fix logo.svg error my podcast app tutorial
import React from "react";
function Logo() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="60"
height="40"
viewBox="0 0 60 60"
>
<g fill="none" fillRule="evenodd" stroke="none">
<g>
<path
fill="#000"
d="M30 60c16.569 0 30-13.431 30-30C60 13.431 46.569 0 30 0 13.431 0 0 13.431 0 30c0 16.569 13.431 30 30 30z"
></path>
<path
fill="#FFF"
d="M30 29.21c2.074 0 3.755-1.584 3.755-3.537 0-1.953-1.681-3.537-3.755-3.537s-3.755 1.584-3.755 3.537c0 1.953 1.681 3.537 3.755 3.537zm0-12.375c-5.182 0-9.383 3.957-9.383 8.838 0 2.373.994 4.528 2.61 6.116a5.925 5.925 0 011.983-1.882c-1.104-1.107-1.781-2.596-1.781-4.234 0-3.419 2.942-6.19 6.57-6.19 3.63 0 6.572 2.771 6.572 6.19 0 1.642-.68 3.134-1.788 4.242A5.924 5.924 0 0136.76 31.8c1.624-1.59 2.622-3.749 2.622-6.128 0-4.88-4.2-8.838-9.382-8.838zm0-5.29c-8.284 0-15 6.325-15 14.128 0 5.092 2.86 9.555 7.15 12.041a14.15 14.15 0 01-.14-1.95s-.004-.526.146-1.286c-2.665-2.108-4.36-5.27-4.36-8.805 0-6.348 5.464-11.495 12.204-11.495s12.204 5.147 12.204 11.495c0 3.542-1.702 6.71-4.377 8.819.147.752.143 1.272.143 1.272 0 .685-.055 1.347-.142 1.962C42.13 35.242 45 30.774 45 25.673c0-7.803-6.716-14.129-15-14.129zm0 19.433c-2.851 0-5.163 2.177-5.163 4.863 0 2.686 2.311 11.472 5.163 11.472 2.851 0 5.163-8.786 5.163-11.472S32.851 30.978 30 30.978z"
></path>
</g>
</g>
</svg>
);
}
export default Logo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment