crm/frontend/src/pages/InvalidPage.vue
Shariq Ansari d0dc642b12 refactor: Button components across multiple files to use icon/left-icon/right-icon prop
(cherry picked from commit 672c5eb7333fe4c48055f0acc2d287d545015970)
2025-08-18 17:10:21 +00:00

19 lines
441 B
Vue

<template>
<div
class="grid h-full place-items-center px-4 py-20 text-center text-lg text-ink-gray-5"
>
<div class="space-y-2">
<div>{{ __('Invalid page or not permitted to access') }}</div>
<Button
:route="{ name: 'Leads' }"
:label="__('Leads')"
:iconLeft="LeadsIcon"
/>
</div>
</div>
</template>
<script setup>
import LeadsIcon from '@/components/Icons/LeadsIcon.vue'
</script>