import Link from "next/link";
type Props = {
href?: string;
size?: "sm" | "md";
};
export function Logo({ href = "/", size = "md" }: Props) {
const textSize = size === "sm" ? "text-xl" : "text-2xl";
const content = (
Songs
2YT
);
if (href) {
return (
{content}
);
}
return (
{content}
);
}