mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 01:10:02 +02:00
The changes show migration from Lucide to custom icon components. The change touches multiple components and includes adding new icon files.
20 lines
358 B
Text
20 lines
358 B
Text
---
|
|
import ArrowLeftIcon from '~/icons/ArrowLeftIcon.astro'
|
|
import { getLocale, getUI } from '~/utils/i18n'
|
|
|
|
const locale = getLocale(Astro)
|
|
|
|
const {
|
|
routes: {
|
|
mods: { slug },
|
|
},
|
|
} = getUI(locale)
|
|
---
|
|
|
|
<button
|
|
onclick="window.history.back()"
|
|
class="mb-8 flex w-min items-center gap-2"
|
|
>
|
|
<ArrowLeftIcon class="size-4" />
|
|
{slug.back}
|
|
</button>
|