rayine-ui/.playground/components/TitleBar.vue
2024-11-16 02:51:16 +08:00

16 lines
435 B
Vue

<script lang="ts" setup>
</script>
<template>
<header class="w-full flex justify-between items-center py-2 border-b border-b-neutral-100 dark:border-b-neutral-800">
<div class="text-neutral-900 dark:text-neutral-100">
<h1 class="font-medium text-xl">RayineSoft<sup class="text-sm"> &copy;</sup></h1>
<h2 class="font-normal text-xs">Common Components</h2>
</div>
</header>
</template>
<style scoped>
</style>