Files
mutiny-web/src/components/layout/BackLink.tsx
2023-06-06 10:05:43 -05:00

15 lines
435 B
TypeScript

import { A } from "solid-start";
import { Back } from "~/assets/svg/Back";
export function BackLink(props: { href?: string; title?: string }) {
return (
<A
href={props.href ? props.href : "/"}
class="text-m-red active:text-m-red/80 text-xl font-semibold no-underline md:hidden flex items-center"
>
<Back />
{props.title ? props.title : "Home"}
</A>
);
}