import Typography from "./Typography";


export interface LogoProps {
  brand?: string;
  theme?: "light" | "dark" | "gradient";
  intent?: "title" | "body";
  className?: string;
}

export default function Logo({
  brand,
  theme = "gradient",
  intent = "body",
  className,
}: LogoProps) {
  return (
      <Typography intent={intent} theme={theme} className={className}>
        {brand || "educrib"}
      </Typography>
  );
}
