diff --git a/src/app/_components/spotify-icon.tsx b/src/app/_components/spotify-icon.tsx new file mode 100644 index 0000000..c87860c --- /dev/null +++ b/src/app/_components/spotify-icon.tsx @@ -0,0 +1,19 @@ +import React from "react"; +import type { SVGProps } from "react"; + +export function MdiSpotify(props: SVGProps) { + return ( + + + + ); +} diff --git a/src/app/_components/spotify-login.tsx b/src/app/_components/spotify-login.tsx index 195c27e..b4e579f 100644 --- a/src/app/_components/spotify-login.tsx +++ b/src/app/_components/spotify-login.tsx @@ -1,5 +1,7 @@ "use client"; +import { MdiSpotify } from "./spotify-icon"; + export default function SpotifyLogin() { const loginToSpotify = () => { window.location.href = "/api/spotify-login"; @@ -7,9 +9,10 @@ export default function SpotifyLogin() { return ( );