mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
358 B
14 lines
358 B
2 months ago
|
<script setup lang="ts"></script>
|
||
|
|
||
|
<template>
|
||
|
<div class="w-full px-3 h-12 border-b-1 border-gray-200 py-2">
|
||
|
<div class="flex items-center gap-3">
|
||
|
<GeneralIcon icon="magic" class="text-yellow-500" />
|
||
|
|
||
|
<span class="text-gray-800 text-xl font-medium"> What’s New! </span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|