| 12345678910111213141516171819202122 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- import { Input } from '@/Packages/Shadcn/Components/ui/input'
- const props = defineProps<{
- class?: HTMLAttributes["class"]
- }>()
- </script>
- <template>
- <Input
- data-slot="sidebar-input"
- data-sidebar="input"
- :class="cn(
- 'bg-background h-8 w-full shadow-none',
- props.class,
- )"
- >
- <slot />
- </Input>
- </template>
|