PHP Classes

File: resources/js/components/ui/sidebar/SidebarInput.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/sidebar/SidebarInput.vue   Download  
File: resources/js/components/ui/sidebar/SidebarInput.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 451 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { HTMLAttributes } from "vue" import { cn } from "@/lib/utils" import { Input } from '@/components/ui/input' 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>