diff options
Diffstat (limited to 'pages/components/media/aniList.js')
| -rw-r--r-- | pages/components/media/aniList.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pages/components/media/aniList.js b/pages/components/media/aniList.js new file mode 100644 index 0000000..5cf65ba --- /dev/null +++ b/pages/components/media/aniList.js @@ -0,0 +1,33 @@ +function AniList() { + return ( + <svg + xmlns="http://www.w3.org/2000/svg" + width="41" + height="30" + fill="none" + viewBox="0 0 41 30" + > + <g clipPath="url(#clip0_312_151)"> + <path + fill="#00A8FF" + d="M27.825 21.773V2.977c0-1.077-.613-1.672-1.725-1.672h-3.795c-1.111 0-1.725.595-1.725 1.672v8.927c0 .251 2.5 1.418 2.565 1.665 1.904 7.21.414 12.982-1.392 13.251 2.952.142 3.277 1.517 1.078.578.337-3.848 1.65-3.84 5.422-.142.032.032.774 1.539.82 1.539h8.91c1.113 0 1.726-.594 1.726-1.672v-3.677c0-1.078-.614-1.672-1.725-1.672H27.825z" + ></path> + <path + fill="#fff" + d="M12.07 1.306l-9.966 27.49h7.743l1.687-4.756h8.433l1.649 4.755h7.705l-9.929-27.49H12.07zm1.227 16.642l2.415-7.615 2.645 7.615h-5.06z" + ></path> + </g> + <defs> + <clipPath id="clip0_312_151"> + <path + fill="#fff" + d="M0 0H40V29H0z" + transform="translate(.957 .5)" + ></path> + </clipPath> + </defs> + </svg> + ); +} + +export default AniList; |