import { A } from "solid-start"; import { Back } from "~/assets/svg/Back"; export function BackButton(props: { href?: string, title?: string }) { return ({props.title ? props.title : "Home"}) }