mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
feat: reset password (#1092)
This commit is contained in:
16
ui/src/components/common/CatalystLogo.vue
Normal file
16
ui/src/components/common/CatalystLogo.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
import { cn } from '@/lib/utils'
|
||||
|
||||
const props = defineProps<{
|
||||
class?: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<img src="@/assets/flask.svg" alt="Catalyst Logo" :class="cn('dark:hidden', props.class)" />
|
||||
<img
|
||||
src="@/assets/flask_white.svg"
|
||||
alt="Catalyst Logo"
|
||||
:class="cn('hidden dark:flex', props.class)"
|
||||
/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user