mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-03-05 12:48:58 +00:00
laravel inertia
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
import Input from '@/components/ui/input/Input.vue';
|
||||
import { cn } from '@/lib/utils';
|
||||
import type { HTMLAttributes } from 'vue';
|
||||
|
||||
const props = defineProps<{
|
||||
class?: HTMLAttributes['class'];
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Input data-sidebar="input" :class="cn('h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring', props.class)">
|
||||
<slot />
|
||||
</Input>
|
||||
</template>
|
||||
Reference in New Issue
Block a user