interface Props { height?: number; className?: string; } export default function OrbitWordmark({ height = 14, className }: Props) { const aspect = 196.08815 / 57.845078; return ( ); }