import React from "react" interface LogoProps { size?: "small" | "medium" | "large" showText?: boolean } export const Logo: React.FC = ({ size = "medium", showText = true }) => { const sizes = { small: { circle: "w-10 h-10", text: "text-lg", font: 43 }, medium: { circle: "w-12 h-12", text: "text-xl", font: 52 }, large: { circle: "w-16 h-16", text: "text-2xl", font: "text-3xl" }, } const currentSize = sizes[size] return (
{/* Static circle with T */}
T
{/* Timeline Studio */} {/* Text */} {showText && (
imeline Studio BETA
)}
) } export default Logo