mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-29 03:44:20 +01:00
6 lines
353 B
TypeScript
6 lines
353 B
TypeScript
import { A } from "solid-start";
|
|
import { Back } from "~/assets/svg/Back";
|
|
|
|
export function BackButton(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>)
|
|
} |