this repo has no description
1<script setup lang="ts">
2import type { HTMLAttributes } from 'vue'
3import { cn } from '@/lib/utils'
4import { Input } from '@/components/ui/input'
5
6const props = defineProps<{
7 class?: HTMLAttributes['class']
8}>()
9</script>
10
11<template>
12 <Input
13 data-slot="sidebar-input"
14 data-sidebar="input"
15 :class="cn(
16 'bg-background h-8 w-full shadow-none',
17 props.class,
18 )"
19 >
20 <slot />
21 </Input>
22</template>