mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
17 lines
462 B
Svelte
17 lines
462 B
Svelte
<script>
|
|
import Container from '@/components/container.svelte';
|
|
import { ArrowLeft } from 'lucide-svelte';
|
|
</script>
|
|
|
|
<Container>
|
|
<a href="/">
|
|
<div
|
|
class="flex items-center space-x-2 duration-100 hover:text-neutral-500 dark:text-neutral-400 dark:hover:text-white group md:mt-2"
|
|
>
|
|
<ArrowLeft size={20} class="group-hover:-translate-x-[2px] group-hover:duration-200" />
|
|
<span>View all</span>
|
|
</div>
|
|
</a>
|
|
</Container>
|
|
<slot />
|