|
<script setup lang="ts">
|
|
import type { BaseControl } from '@/components/inspector/controls'
|
|
|
|
defineProps<{
|
|
control: BaseControl
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="tw:col-span-full">
|
|
Not Implemented: {{ control.kind }}
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|