UPD: UI Animations

This commit is contained in:
Robert Kossessa
2024-02-06 23:53:14 +01:00
parent ed21ccabf0
commit 58f0509d87
6 changed files with 157 additions and 95 deletions

View File

@@ -0,0 +1,10 @@
<template>
<ConfigSection title="Key Mapping" :icon-component="Keyboard">
<WIP />
</ConfigSection>
</template>
<script setup>
import { Keyboard } from 'lucide-vue-next'
import ConfigSection from '@/components/common/ConfigSection.vue'
import WIP from '@/components/WIP.vue'
</script>

View File

@@ -0,0 +1,10 @@
<template>
<ConfigSection title="Knob Mapping" :icon-component="GaugeCircle">
<WIP />
</ConfigSection>
</template>
<script setup>
import { GaugeCircle } from 'lucide-vue-next'
import ConfigSection from '@/components/common/ConfigSection.vue'
import WIP from '@/components/WIP.vue'
</script>