import type { Component } from 'solid-js' import { A } from '@solidjs/router' import { Show } from 'solid-js' import { Iconify } from './mini-components' export const BackLink: Component<{ text?: string, href?: string, onClick?: (event: MouseEvent) => any }> = function BackLink(props) { return ( {props.text || 'Back to home'} ) }