import { component$ } from '@builder.io/qwik' export const heightsMap = { small: '2.4rem', medium: '3.5rem', large: '6rem', } as const type Props = { size: keyof typeof heightsMap } export const WildebeestLogo = component$(({ size }) => { const linearGradientId = `wildebeest_linear_gradient_${Math.round(Math.random() * 9999)}` return ( ) })