import { component$ } from '@builder.io/qwik'
export const ButtonLink = component$((props: { name: string; link: string; direction: 'left' | 'right' }) => {
const ArrowRight = () => (
)
const ArrowLeft = () => (
)
return (
{props.direction === 'left' ? (
<>